diff -u linux-oracle-6.5-6.5.0/Makefile linux-oracle-6.5-6.5.0/Makefile --- linux-oracle-6.5-6.5.0/Makefile +++ linux-oracle-6.5-6.5.0/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 6 PATCHLEVEL = 5 -SUBLEVEL = 3 +SUBLEVEL = 8 EXTRAVERSION = NAME = Hurr durr I'ma ninja sloth @@ -1967,7 +1967,9 @@ modules_install: $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modinst +ifndef modules_sign_only $(call cmd,depmod) +endif else # CONFIG_MODULES diff -u linux-oracle-6.5-6.5.0/arch/arm64/Kconfig linux-oracle-6.5-6.5.0/arch/arm64/Kconfig --- linux-oracle-6.5-6.5.0/arch/arm64/Kconfig +++ linux-oracle-6.5-6.5.0/arch/arm64/Kconfig @@ -1038,6 +1038,19 @@ If unsure, say Y. +config ARM64_ERRATUM_2966298 + bool "Cortex-A520: 2966298: workaround for speculatively executed unprivileged load" + default y + help + This option adds the workaround for ARM Cortex-A520 erratum 2966298. + + On an affected Cortex-A520 core, a speculatively executed unprivileged + load might leak data from a privileged level via a cache side channel. + + Work around this problem by executing a TLBI before returning to EL0. + + If unsure, say Y. + config CAVIUM_ERRATUM_22375 bool "Cavium erratum 22375, 24313" default y diff -u linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/msm8953-xiaomi-vince.dts linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/msm8953-xiaomi-vince.dts --- linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/msm8953-xiaomi-vince.dts +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/msm8953-xiaomi-vince.dts @@ -132,7 +132,6 @@ touchscreen@20 { reg = <0x20>; compatible = "syna,rmi4-i2c"; - interrupts-parent = <&tlmm>; interrupts-extended = <&tlmm 65 IRQ_TYPE_EDGE_FALLING>; #address-cells = <1>; diff -u linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts --- linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts @@ -12,6 +12,7 @@ #include #include #include +#include #include #include "sc8280xp.dtsi" @@ -78,6 +79,21 @@ }; }; + leds { + compatible = "gpio-leds"; + + led-camera-indicator { + label = "white:camera-indicator"; + function = LED_FUNCTION_INDICATOR; + color = ; + gpios = <&tlmm 28 GPIO_ACTIVE_HIGH>; + linux,default-trigger = "none"; + default-state = "off"; + /* Reuse as a panic indicator until we get a "camera on" trigger */ + panic-indicator; + }; + }; + pmic-glink { compatible = "qcom,sc8280xp-pmic-glink", "qcom,pmic-glink"; diff -u linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm6350.dtsi linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm6350.dtsi --- linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm6350.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm6350.dtsi @@ -673,7 +673,7 @@ reg = <0 0xffc00000 0 0x100000>; record-size = <0x1000>; console-size = <0x40000>; - msg-size = <0x20000 0x20000>; + pmsg-size = <0x20000>; ecc-size = <16>; no-map; }; diff -u linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8150.dtsi linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8150.dtsi --- linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8150.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8150.dtsi @@ -3958,7 +3958,7 @@ pdc: interrupt-controller@b220000 { compatible = "qcom,sm8150-pdc", "qcom,pdc"; - reg = <0 0x0b220000 0 0x400>; + reg = <0 0x0b220000 0 0x30000>; qcom,pdc-ranges = <0 480 94>, <94 609 31>, <125 63 1>; #interrupt-cells = <2>; diff -u linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo.dtsi linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo.dtsi --- linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo.dtsi @@ -126,7 +126,7 @@ reg = <0x0 0xffc00000 0x0 0x100000>; record-size = <0x1000>; console-size = <0x40000>; - msg-size = <0x20000 0x20000>; + pmsg-size = <0x20000>; ecc-size = <16>; no-map; }; diff -u linux-oracle-6.5-6.5.0/arch/arm64/configs/defconfig linux-oracle-6.5-6.5.0/arch/arm64/configs/defconfig --- linux-oracle-6.5-6.5.0/arch/arm64/configs/defconfig +++ linux-oracle-6.5-6.5.0/arch/arm64/configs/defconfig @@ -1145,7 +1145,6 @@ CONFIG_COMMON_CLK_PWM=y CONFIG_COMMON_CLK_RS9_PCIE=y CONFIG_COMMON_CLK_VC5=y -CONFIG_COMMON_CLK_NPCM8XX=y CONFIG_COMMON_CLK_BD718XX=m CONFIG_CLK_RASPBERRYPI=m CONFIG_CLK_IMX8MM=y diff -u linux-oracle-6.5-6.5.0/arch/arm64/kernel/entry.S linux-oracle-6.5-6.5.0/arch/arm64/kernel/entry.S --- linux-oracle-6.5-6.5.0/arch/arm64/kernel/entry.S +++ linux-oracle-6.5-6.5.0/arch/arm64/kernel/entry.S @@ -428,6 +428,10 @@ ldp x28, x29, [sp, #16 * 14] .if \el == 0 +alternative_if ARM64_WORKAROUND_2966298 + tlbi vale1, xzr + dsb nsh +alternative_else_nop_endif alternative_if_not ARM64_UNMAP_KERNEL_AT_EL0 ldr lr, [sp, #S_LR] add sp, sp, #PT_REGS_SIZE // restore sp diff -u linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1000.c linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1000.c --- linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1000.c +++ linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1000.c @@ -164,6 +164,7 @@ /******************************************************************************/ +#ifdef CONFIG_MMC_AU1X static irqreturn_t db1100_mmc_cd(int irq, void *ptr) { mmc_detect_change(ptr, msecs_to_jiffies(500)); @@ -369,6 +370,7 @@ .num_resources = ARRAY_SIZE(au1100_mmc1_res), .resource = au1100_mmc1_res, }; +#endif /* CONFIG_MMC_AU1X */ /******************************************************************************/ @@ -440,8 +442,10 @@ static struct platform_device *db1100_devs[] = { &au1100_lcd_device, +#ifdef CONFIG_MMC_AU1X &db1100_mmc0_dev, &db1100_mmc1_dev, +#endif }; int __init db1000_dev_setup(void) diff -u linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1200.c linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1200.c --- linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1200.c +++ linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1200.c @@ -326,6 +326,7 @@ /**********************************************************************/ +#ifdef CONFIG_MMC_AU1X /* SD carddetects: they're supposed to be edge-triggered, but ack * doesn't seem to work (CPLD Rev 2). Instead, the screaming one * is disabled and its counterpart enabled. The 200ms timeout is @@ -584,6 +585,7 @@ .num_resources = ARRAY_SIZE(au1200_mmc1_res), .resource = au1200_mmc1_res, }; +#endif /* CONFIG_MMC_AU1X */ /**********************************************************************/ @@ -751,7 +753,9 @@ static struct platform_device *db1200_devs[] __initdata = { NULL, /* PSC0, selected by S6.8 */ &db1200_ide_dev, +#ifdef CONFIG_MMC_AU1X &db1200_mmc0_dev, +#endif &au1200_lcd_dev, &db1200_eth_dev, &db1200_nand_dev, @@ -762,7 +766,9 @@ }; static struct platform_device *pb1200_devs[] __initdata = { +#ifdef CONFIG_MMC_AU1X &pb1200_mmc1_dev, +#endif }; /* Some peripheral base addresses differ on the PB1200 */ diff -u linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1300.c linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1300.c --- linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1300.c +++ linux-oracle-6.5-6.5.0/arch/mips/alchemy/devboards/db1300.c @@ -450,6 +450,7 @@ /**********************************************************************/ +#ifdef CONFIG_MMC_AU1X static irqreturn_t db1300_mmc_cd(int irq, void *ptr) { disable_irq_nosync(irq); @@ -632,6 +633,7 @@ .resource = au1300_sd0_res, .num_resources = ARRAY_SIZE(au1300_sd0_res), }; +#endif /* CONFIG_MMC_AU1X */ /**********************************************************************/ @@ -767,8 +769,10 @@ &db1300_5waysw_dev, &db1300_nand_dev, &db1300_ide_dev, +#ifdef CONFIG_MMC_AU1X &db1300_sd0_dev, &db1300_sd1_dev, +#endif &db1300_lcd_dev, &db1300_ac97_dev, &db1300_i2s_dev, diff -u linux-oracle-6.5-6.5.0/arch/powerpc/kernel/stacktrace.c linux-oracle-6.5-6.5.0/arch/powerpc/kernel/stacktrace.c --- linux-oracle-6.5-6.5.0/arch/powerpc/kernel/stacktrace.c +++ linux-oracle-6.5-6.5.0/arch/powerpc/kernel/stacktrace.c @@ -73,29 +73,12 @@ bool firstframe; stack_end = stack_page + THREAD_SIZE; - if (!is_idle_task(task)) { - /* - * For user tasks, this is the SP value loaded on - * kernel entry, see "PACAKSAVE(r13)" in _switch() and - * system_call_common(). - * - * Likewise for non-swapper kernel threads, - * this also happens to be the top of the stack - * as setup by copy_thread(). - * - * Note that stack backlinks are not properly setup by - * copy_thread() and thus, a forked task() will have - * an unreliable stack trace until it's been - * _switch()'ed to for the first time. - */ - stack_end -= STACK_USER_INT_FRAME_SIZE; - } else { - /* - * idle tasks have a custom stack layout, - * c.f. cpu_idle_thread_init(). - */ + + // See copy_thread() for details. + if (task->flags & PF_KTHREAD) stack_end -= STACK_FRAME_MIN_SIZE; - } + else + stack_end -= STACK_USER_INT_FRAME_SIZE; if (task == current) sp = current_stack_frame(); diff -u linux-oracle-6.5-6.5.0/arch/powerpc/platforms/pseries/hvCall.S linux-oracle-6.5-6.5.0/arch/powerpc/platforms/pseries/hvCall.S --- linux-oracle-6.5-6.5.0/arch/powerpc/platforms/pseries/hvCall.S +++ linux-oracle-6.5-6.5.0/arch/powerpc/platforms/pseries/hvCall.S @@ -185,7 +185,6 @@ plpar_hcall_trace: HCALL_INST_PRECALL(R5) - std r4,STK_PARAM(R4)(r1) mr r0,r4 mr r4,r5 @@ -197,7 +196,7 @@ HVSC - ld r12,STK_PARAM(R4)(r1) + ld r12,STACK_FRAME_MIN_SIZE+STK_PARAM(R4)(r1) std r4,0(r12) std r5,8(r12) std r6,16(r12) @@ -297,7 +296,6 @@ plpar_hcall9_trace: HCALL_INST_PRECALL(R5) - std r4,STK_PARAM(R4)(r1) mr r0,r4 mr r4,r5 diff -u linux-oracle-6.5-6.5.0/arch/riscv/Makefile linux-oracle-6.5-6.5.0/arch/riscv/Makefile --- linux-oracle-6.5-6.5.0/arch/riscv/Makefile +++ linux-oracle-6.5-6.5.0/arch/riscv/Makefile @@ -6,7 +6,6 @@ # for more details. # -OBJCOPYFLAGS := -O binary LDFLAGS_vmlinux := -z norelro ifeq ($(CONFIG_RELOCATABLE),y) LDFLAGS_vmlinux += -shared -Bsymbolic -z notext --emit-relocs diff -u linux-oracle-6.5-6.5.0/arch/x86/kernel/cpu/common.c linux-oracle-6.5-6.5.0/arch/x86/kernel/cpu/common.c --- linux-oracle-6.5-6.5.0/arch/x86/kernel/cpu/common.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/cpu/common.c @@ -1288,7 +1288,7 @@ VULNBL_AMD(0x15, RETBLEED), VULNBL_AMD(0x16, RETBLEED), VULNBL_AMD(0x17, RETBLEED | SMT_RSB | SRSO), - VULNBL_HYGON(0x18, RETBLEED | SMT_RSB), + VULNBL_HYGON(0x18, RETBLEED | SMT_RSB | SRSO), VULNBL_AMD(0x19, SRSO), {} }; diff -u linux-oracle-6.5-6.5.0/arch/x86/kernel/reboot.c linux-oracle-6.5-6.5.0/arch/x86/kernel/reboot.c --- linux-oracle-6.5-6.5.0/arch/x86/kernel/reboot.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/reboot.c @@ -827,6 +827,26 @@ } #endif +/* + * This is used to VMCLEAR all VMCSs loaded on the + * processor. And when loading kvm_intel module, the + * callback function pointer will be assigned. + * + * protected by rcu. + */ +crash_vmclear_fn __rcu *crash_vmclear_loaded_vmcss; +EXPORT_SYMBOL_GPL(crash_vmclear_loaded_vmcss); + +static inline void cpu_crash_vmclear_loaded_vmcss(void) +{ + crash_vmclear_fn *do_vmclear_operation = NULL; + + rcu_read_lock(); + do_vmclear_operation = rcu_dereference(crash_vmclear_loaded_vmcss); + if (do_vmclear_operation) + do_vmclear_operation(); + rcu_read_unlock(); +} /* This is the CPU performing the emergency shutdown work. */ int crashing_cpu = -1; @@ -838,6 +858,8 @@ */ void cpu_emergency_disable_virtualization(void) { + cpu_crash_vmclear_loaded_vmcss(); + cpu_emergency_vmxoff(); cpu_emergency_svm_disable(); } diff -u linux-oracle-6.5-6.5.0/arch/x86/kernel/setup.c linux-oracle-6.5-6.5.0/arch/x86/kernel/setup.c --- linux-oracle-6.5-6.5.0/arch/x86/kernel/setup.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/setup.c @@ -360,15 +360,11 @@ #if defined(CONFIG_HAVE_IMA_KEXEC) && !defined(CONFIG_OF_FLATTREE) int __init ima_free_kexec_buffer(void) { - int rc; - if (!ima_kexec_buffer_size) return -ENOENT; - rc = memblock_phys_free(ima_kexec_buffer_phys, - ima_kexec_buffer_size); - if (rc) - return rc; + memblock_free_late(ima_kexec_buffer_phys, + ima_kexec_buffer_size); ima_kexec_buffer_phys = 0; ima_kexec_buffer_size = 0; diff -u linux-oracle-6.5-6.5.0/arch/x86/kernel/smpboot.c linux-oracle-6.5-6.5.0/arch/x86/kernel/smpboot.c --- linux-oracle-6.5-6.5.0/arch/x86/kernel/smpboot.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/smpboot.c @@ -587,7 +587,6 @@ } -#if defined(CONFIG_SCHED_SMT) || defined(CONFIG_SCHED_CLUSTER) || defined(CONFIG_SCHED_MC) static inline int x86_sched_itmt_flags(void) { return sysctl_sched_itmt_enabled ? SD_ASYM_PACKING : 0; @@ -611,7 +610,14 @@ return cpu_cluster_flags() | x86_sched_itmt_flags(); } #endif -#endif + +static int x86_die_flags(void) +{ + if (cpu_feature_enabled(X86_FEATURE_HYBRID_CPU)) + return x86_sched_itmt_flags(); + + return 0; +} /* * Set if a package/die has multiple NUMA nodes inside. @@ -653,7 +659,7 @@ */ if (!x86_has_numa_in_package) { x86_topology[i++] = (struct sched_domain_topology_level){ - cpu_cpu_mask, SD_INIT_NAME(DIE) + cpu_cpu_mask, x86_die_flags, SD_INIT_NAME(DIE) }; } diff -u linux-oracle-6.5-6.5.0/arch/x86/kvm/svm/svm.c linux-oracle-6.5-6.5.0/arch/x86/kvm/svm/svm.c --- linux-oracle-6.5-6.5.0/arch/x86/kvm/svm/svm.c +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/svm/svm.c @@ -365,6 +365,8 @@ svm->vmcb->control.int_state |= SVM_INTERRUPT_SHADOW_MASK; } +static bool svm_can_emulate_instruction(struct kvm_vcpu *vcpu, int emul_type, + void *insn, int insn_len); static int __svm_skip_emulated_instruction(struct kvm_vcpu *vcpu, bool commit_side_effects) @@ -385,6 +387,14 @@ } if (!svm->next_rip) { + /* + * FIXME: Drop this when kvm_emulate_instruction() does the + * right thing and treats "can't emulate" as outright failure + * for EMULTYPE_SKIP. + */ + if (!svm_can_emulate_instruction(vcpu, EMULTYPE_SKIP, NULL, 0)) + return 0; + if (unlikely(!commit_side_effects)) old_rflags = svm->vmcb->save.rflags; @@ -2509,12 +2519,13 @@ { struct vcpu_svm *svm = to_svm(vcpu); + WARN_ON_ONCE(sev_es_guest(vcpu->kvm)); + ++vcpu->stat.nmi_window_exits; svm->awaiting_iret_completion = true; svm_clr_iret_intercept(svm); - if (!sev_es_guest(vcpu->kvm)) - svm->nmi_iret_rip = kvm_rip_read(vcpu); + svm->nmi_iret_rip = kvm_rip_read(vcpu); kvm_make_request(KVM_REQ_EVENT, vcpu); return 1; @@ -3917,12 +3928,11 @@ svm->soft_int_injected = false; /* - * If we've made progress since setting HF_IRET_MASK, we've + * If we've made progress since setting awaiting_iret_completion, we've * executed an IRET and can allow NMI injection. */ if (svm->awaiting_iret_completion && - (sev_es_guest(vcpu->kvm) || - kvm_rip_read(vcpu) != svm->nmi_iret_rip)) { + kvm_rip_read(vcpu) != svm->nmi_iret_rip) { svm->awaiting_iret_completion = false; svm->nmi_masked = false; kvm_make_request(KVM_REQ_EVENT, vcpu); @@ -4206,7 +4216,6 @@ static void svm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu) { struct vcpu_svm *svm = to_svm(vcpu); - struct kvm_cpuid_entry2 *best; vcpu->arch.xsaves_enabled = guest_cpuid_has(vcpu, X86_FEATURE_XSAVE) && boot_cpu_has(X86_FEATURE_XSAVE) && @@ -4241,12 +4250,8 @@ set_msr_interception(vcpu, svm->msrpm, MSR_IA32_FLUSH_CMD, 0, !!guest_cpuid_has(vcpu, X86_FEATURE_FLUSH_L1D)); - /* For sev guests, the memory encryption bit is not reserved in CR3. */ - if (sev_guest(vcpu->kvm)) { - best = kvm_find_cpuid_entry(vcpu, 0x8000001F); - if (best) - vcpu->arch.reserved_gpa_bits &= ~(1UL << (best->ebx & 0x3f)); - } + if (sev_guest(vcpu->kvm)) + sev_vcpu_after_set_cpuid(svm); init_vmcb_after_set_cpuid(vcpu); } @@ -4650,16 +4655,25 @@ * and cannot be decrypted by KVM, i.e. KVM would read cyphertext and * decode garbage. * - * Inject #UD if KVM reached this point without an instruction buffer. - * In practice, this path should never be hit by a well-behaved guest, - * e.g. KVM doesn't intercept #UD or #GP for SEV guests, but this path - * is still theoretically reachable, e.g. via unaccelerated fault-like - * AVIC access, and needs to be handled by KVM to avoid putting the - * guest into an infinite loop. Injecting #UD is somewhat arbitrary, - * but its the least awful option given lack of insight into the guest. + * If KVM is NOT trying to simply skip an instruction, inject #UD if + * KVM reached this point without an instruction buffer. In practice, + * this path should never be hit by a well-behaved guest, e.g. KVM + * doesn't intercept #UD or #GP for SEV guests, but this path is still + * theoretically reachable, e.g. via unaccelerated fault-like AVIC + * access, and needs to be handled by KVM to avoid putting the guest + * into an infinite loop. Injecting #UD is somewhat arbitrary, but + * its the least awful option given lack of insight into the guest. + * + * If KVM is trying to skip an instruction, simply resume the guest. + * If a #NPF occurs while the guest is vectoring an INT3/INTO, then KVM + * will attempt to re-inject the INT3/INTO and skip the instruction. + * In that scenario, retrying the INT3/INTO and hoping the guest will + * make forward progress is the only option that has a chance of + * success (and in practice it will work the vast majority of the time). */ if (unlikely(!insn)) { - kvm_queue_exception(vcpu, UD_VECTOR); + if (!(emul_type & EMULTYPE_SKIP)) + kvm_queue_exception(vcpu, UD_VECTOR); return false; } diff -u linux-oracle-6.5-6.5.0/arch/xtensa/include/asm/core.h linux-oracle-6.5-6.5.0/arch/xtensa/include/asm/core.h --- linux-oracle-6.5-6.5.0/arch/xtensa/include/asm/core.h +++ linux-oracle-6.5-6.5.0/arch/xtensa/include/asm/core.h @@ -6,6 +6,10 @@ #include +#ifndef XCHAL_HAVE_DIV32 +#define XCHAL_HAVE_DIV32 0 +#endif + #ifndef XCHAL_HAVE_EXCLUSIVE #define XCHAL_HAVE_EXCLUSIVE 0 #endif diff -u linux-oracle-6.5-6.5.0/debian.master/abi/abiname linux-oracle-6.5-6.5.0/debian.master/abi/abiname --- linux-oracle-6.5-6.5.0/debian.master/abi/abiname +++ linux-oracle-6.5-6.5.0/debian.master/abi/abiname @@ -1 +1 @@ -12 +16 diff -u linux-oracle-6.5-6.5.0/debian.master/abi/amd64/generic linux-oracle-6.5-6.5.0/debian.master/abi/amd64/generic --- linux-oracle-6.5-6.5.0/debian.master/abi/amd64/generic +++ linux-oracle-6.5-6.5.0/debian.master/abi/amd64/generic @@ -1,130 +1,130 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x383fd709 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0x5a4129d1 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x043bf18a counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x23934564 counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x2c710722 counter_put drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x34a7d110 counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x47cd1769 counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x4cd8398f devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xa900e31d devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xc0c537ab counter_add drivers/counter/counter -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x12931f0b crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4c10ac91 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xc3a88572 crypto_cipher_decrypt_one vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0xaa706c48 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xd51deb10 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x103ffb8b counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x1aed2bce counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x47e3f330 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x9855d4b2 counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa0d8e223 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa2446036 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xc63045a2 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xd266d6e2 devm_counter_add drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x670d9379 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x70594475 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xea90af60 crypto_cipher_decrypt_one vmlinux CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x09d5fc52 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x09d6bfb9 cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0a237be4 cxl_poison_state_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0c2333e9 is_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0c981cf3 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0ca9fa95 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0da9af5e to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0db5e18b is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0f5adeae cxl_set_timestamp drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0feaf2ea devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x107f747b clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x15739fdb to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x18c1cf95 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1b810abb is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x221b3283 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x26a3d86f is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x28bc9b16 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x29a5b116 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2a0441af is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2ab16e5d to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2c123887 cxl_setup_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2c464f7c cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2cea35c3 cxl_mem_sanitize drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2d89d02a is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x058f5b27 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x08cfa982 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0a56c95d cxl_trigger_poison_list drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0b96b9b8 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0e4ab37c devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x10f4a10e cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1461a19f cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1761029d is_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x180bc76d is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1d077958 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x24987f11 cxl_mem_sanitize drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x291eb8fc is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29d5d972 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2c17b556 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2fa2acd1 to_cxl_dax_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x32813285 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x339624d6 cxl_mem_get_event_records drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x3709900c cxl_mem_get_event_records drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x38817c1e cxl_find_regblock_instance drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3d0e1574 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3d9a457c cxl_port_to_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3deba1db cxl_clear_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3ff8a2c5 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x41a981c0 cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4260412a devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x46adab7f cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4b637a0e cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5aef0f1c cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5e967422 cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6a902eac devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6b0b3e9b cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6f3138fb cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x34e35d0b cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x371424d2 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3dcc6f8d cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3f65d568 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x41fff35e devm_cxl_dpa_reserve drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x429e11ee find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x436b26ee cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x43a7bc37 cxl_add_to_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x46c483bb cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x49fcb24b devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4f55a030 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x508a20ef cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x57805f5e cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59b65e24 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5ba78fe1 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5f0bc4b0 cxl_clear_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x60dd623e cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x63b70944 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x68b3367c cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x692d3636 cxl_pci_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6cb28783 cxl_setup_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6e0c6507 cxl_find_regblock_instance drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6e60fde2 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6f1ed0e7 is_switch_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7408c3b0 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x74ebf642 cxl_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x79956ec1 cxl_map_pmu_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7b2b8760 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x714854bd is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x71c1175d cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73a99b8a to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7aedd619 cxl_cor_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7d05a6ef cxl_mem_get_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7d39b40e cxl_debugfs_create_dir drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x806505d1 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x80f31f12 cxl_memdev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x827652eb cxl_probe_device_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x871ff5ba cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x97b4f6a2 cxl_cor_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x851258d2 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x899bccba read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8a2d09c8 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x937a3986 cxl_poison_state_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x94c5fbae cxl_inject_poison drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9910ef89 devm_cxl_dpa_reserve drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9a2cba91 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9d46118d cxl_count_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa59fe7d4 devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa5ca3fd3 to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xaa47dc7b cxl_pci_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xae03abaa devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb088c843 to_cxl_dax_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb7e23213 set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbbe1034b cxl_inject_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbd176dc0 cxl_mem_get_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc350d3ea to_cxl_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc4637e6c is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc5d1c11e cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc8a56822 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcc2f9cea cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcde29f36 cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd449e58d cxl_add_to_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd79e95b0 cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xda054689 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdd2b11f9 devm_cxl_pmu_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xde3e2374 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdea505ac devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe43e8e92 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe45b321b cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe484a89e cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe58dac1c cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe8576a46 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe85e8f84 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xee9addef to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf4b40784 cxl_trigger_poison_list drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5d81b2a devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf6cf3d0f find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfa1db0e4 read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfe64f0c3 is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfeed0eec is_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b1d5b36 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa1b3a8f5 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa1b7d3b1 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa30d6ce9 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6ea34d4 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa84bfa95 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaa112ba1 cxl_set_timestamp drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xac3d61d6 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xac9635dd cxl_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb0d1a084 cxl_memdev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb2e40983 cxl_count_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb8e0519b cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb9fbae2b cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc415ff43 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc6235d71 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc62d4a87 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc7f63d63 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd04aef4a schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd07725cc to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd13f506e to_cxl_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd17923e6 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd2be496c to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd8933a76 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdc027e58 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdc7b5aeb devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe1fff293 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe2de40e4 devm_cxl_pmu_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe4d6cbdd is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xebd0da17 cxl_map_pmu_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf4544429 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf8ccab2e cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf962f689 __cxl_driver_register drivers/cxl/core/cxl_core DEVMEM EXPORT_SYMBOL_GPL 0x3c804b25 cpu_cache_invalidate_memregion vmlinux DEVMEM EXPORT_SYMBOL_GPL 0xd6551b9c cpu_cache_has_invalidate_memregion vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x02d214a5 dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x22fd7744 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x4f3fc3b9 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x60c56080 dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x7d2c0201 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8a2c04f6 dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8a7c9c87 dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9d22f9d9 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9e24e125 dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xae2a9c2b dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xaf6018db dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc662c1b3 dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc7c070f1 dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc883672a dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xcbcfd08f dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd385a2ef dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xe5efe64c dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xef3c5711 dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf07f8cdc dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf0a4db5b dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xfc50716b dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x01e21b22 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x02316143 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x03991b6c dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x066cc9a0 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1421ed78 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2261dc78 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x234c29ae dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x34631fdd dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x36f45b40 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3a666900 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8202464d dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x89021dde dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa9e0fb50 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xaa60842e dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc8e7deb9 dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xcf0d5049 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdc6c6825 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdc7759d5 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe55dcfc5 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe57169e8 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf8cf0d85 dma_buf_export vmlinux DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux @@ -174,30 +174,29 @@ EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x03835be6 acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight -EXPORT_SYMBOL drivers/acpi/video 0x56a36b01 acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses EXPORT_SYMBOL drivers/acpi/video 0x7de7bf50 __acpi_video_get_backlight_type EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xadc74b5d acpi_video_get_edid -EXPORT_SYMBOL drivers/atm/suni 0x0d50e1e1 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x29a01285 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x73f8296c bcma_core_dma_translation +EXPORT_SYMBOL drivers/acpi/video 0xc1be3807 acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0xc8d4f041 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x71c81360 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xa6e29e03 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 0xd7f014e5 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x1fcef777 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x0a7f88f9 mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x5e538330 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x62222ccc rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x0391d6bc mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x33a1cead ipmi_add_smi -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4393cd30 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x23ed19c3 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str @@ -205,728 +204,729 @@ EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8d66eafc ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb5b905d4 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xce743ea4 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe7e88229 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe98c507d ipmb_checksum EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xee840a3c ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8b09d744 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xad8b0ef5 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb815d847 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfe590a8b st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x932b7128 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa0c56380 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe858932d xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1fbf34c1 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1a5e7e73 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x36ae4ace st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf8a76a10 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf9de69c7 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x3785290a xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x65c7d4c5 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x73617732 xillybus_init_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x867ca72d xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xfbbafed7 xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x19dd3023 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x4f11591a atmel_i2c_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x33abcf8a xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x45448c2b xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6600a865 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x0f24e1fb atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x37ae5de9 atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x948faca8 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf424776b atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/ccp/ccp 0x47d3c97f psp_check_tee_status EXPORT_SYMBOL drivers/crypto/ccp/ccp 0x4a937398 psp_check_platform_access_status EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x72d095d9 xdma_disable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x7dea9db5 xdma_enable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xe73d4bfd xdma_get_user_irq -EXPORT_SYMBOL drivers/firewire/firewire-core 0x020290f0 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x032b45e4 fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x03b918ab fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x066969bf fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x08b004e4 xdma_enable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x766ec977 xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x91f10d83 xdma_get_user_irq EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1960bb2b fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a0c277f fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a8b5ca7 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x26e23740 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10680fd2 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1a43a65c fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1af609d8 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x267c484f fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x28103cda fw_iso_context_queue EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x36ad3392 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3830b589 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x28b93adb fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x31b0bfd8 fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x46373bbe fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5673bb19 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e6913be fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f7826c9 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x64a3d015 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d962e57 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3e529355 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x486e53e7 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x526401e4 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b50b46a fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65452439 fw_iso_buffer_init EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7318ce5d fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cf74c57 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x83f320a2 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e8aefed fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7d151042 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fd88148 fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d8bf846 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e8fbe3e fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa5948a64 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8de5b12 fw_iso_context_start EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc19f612f fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3133cf6 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb33263cc fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xde32c34e fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xde4e28eb fw_iso_context_create EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe400c6a0 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe605a17a fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe807aa49 fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea0c343c fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xff961717 fw_run_transaction -EXPORT_SYMBOL drivers/fpga/dfl 0xd5d8caab dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xfb4d54ea __dfl_driver_register +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeac2e877 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf0dfdc4f fw_schedule_bus_reset +EXPORT_SYMBOL drivers/fpga/dfl 0xd7a922e5 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xf35430b2 __dfl_driver_register EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0xc3f92c21 sysconfig_probe EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0ea5d74b amdgpu_xcp_drv_release EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x6737bf87 amdgpu_xcp_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01037ab5 drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x037676a3 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07fce33a drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0ae61ce4 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b838561 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0c13edb0 drm_dp_remove_payload -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0c2dfa33 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0c4020d3 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x10d18287 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15987cb6 drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x049f6811 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x04ad310a drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0a901879 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b159ad8 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0ee9f56c drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0fed17d7 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13e0558b drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x141a0d5d drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14efb76d drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15f63b2c drm_dp_read_downstream_info EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x16574b1c drm_dp_aux_register EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19674b36 drm_dp_read_downstream_info EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d01a932 drm_dp_mst_atomic_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d8aac9d drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e7eb755 drm_dp_add_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f3052c2 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f59435d drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x200c6f2c drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20dd9668 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x238d5ffe drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e5e0c8e drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20d9aba6 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2372e8c9 drm_dp_pcon_pps_override_buf EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24ada755 drm_dsc_set_rc_buf_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x259c0d77 drm_dp_read_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25bf83db drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x263ffab8 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x257ad911 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25854196 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x259fb9ff drm_dp_downstream_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28e720b3 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28fc6736 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29b4949f drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28ffd71e drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c3e5029 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f04a170 drm_dp_remote_aux_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x37feb766 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32625538 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x352daeed drm_connector_attach_content_protection_property EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x39eb1d82 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8bb63a drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3bb7170f drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3c94486d drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d7f75f2 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4148ef30 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4254d0c9 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a90b820 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3dbbf96a drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x423ed4bc drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x427bac45 drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x427f9571 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x429d8af1 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42b1bcfe drm_hdmi_avi_infoframe_content_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x46c6f055 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x496512d5 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4adbc49f drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ed0ca76 drm_dp_mst_update_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x50e6eeb3 drm_atomic_get_new_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x52181656 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4c40f69c drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4f822ec5 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53f6ff7a drm_dp_read_sink_count_cap EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x54c622aa drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x553ace56 drm_scdc_set_scrambling EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58797d02 drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59e52f30 drm_dp_dpcd_probe EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a50d820 drm_dp_mst_put_port_malloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b26596b drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b70f292 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5bf9bba1 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5caa90c5 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5d5e9511 drm_dp_dual_mode_detect EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627ba04b drm_dsc_set_const_params EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6657be16 drm_dp_mst_hpd_irq_send_new_request +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x666f403b drm_atomic_get_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69a69277 drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a84368c drm_atomic_get_mst_payload_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e52d285 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f5f08a4 drm_dp_mst_topology_mgr_resume EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x709e88a2 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x712040ca drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x72ef1e47 drm_dp_pcon_is_frl_ready EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73ef9892 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7583d052 drm_dp_dpcd_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7814f541 drm_dp_mst_hpd_irq_handle_event +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7739eb36 drm_scdc_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79008c7e drm_dsc_setup_rc_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7eef9fad drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7c7961d1 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8253cdfe drm_edp_backlight_disable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82de9ffa drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x840787a5 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8487deb8 drm_dp_read_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86fab928 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8be6aba0 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8c2fdfda drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8c6231ef drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82d943e5 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85084990 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86eaae5e drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x891af26e drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a05dc2d drm_dp_mst_dump_topology EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x915fd0dd drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d98e31b drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e062ebc drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e0ce405 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f52cc76 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x909b002c drm_dp_add_payload_part2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95883bb4 drm_dsc_initial_scale_value -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x959453c2 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x98761fe2 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x987eb10f drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9aa77cb6 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9cb841a3 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d24b76f drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9dc588a1 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1a79996 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x98614318 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9985c3a0 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9e4e46cd drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f421ead drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0d18770 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0d5cfb2 drm_dp_add_payload_part1 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2ffee88 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4b59fbb drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa510128c drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6d2dcf3 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6afa83a drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa768f211 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa792ebd9 drm_dp_pcon_frl_configure_1 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa8af16e8 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab5ba8fb drm_dp_add_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xacc237ea drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa9a4bea2 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaa6c2347 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab71386c drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xac33bf4d drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xad7c9cc3 drm_dp_mst_edid_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xadbf47d8 drm_dp_mst_hpd_irq_handle_event +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf202b30 drm_dp_mst_atomic_setup_commit EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xafa20317 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2266421 drm_dp_mst_hpd_irq_send_new_request -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb27beab2 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb30c2670 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3f3011c drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb462e15e drm_dp_mst_edid_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4a8a9bc drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb526b140 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7eef436 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba65044e drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbac719b1 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbaf83c50 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcbf1357 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbd5748cc drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0d023b9 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3bb2b04 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcaed80d drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcd51d0d drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcf00dad drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbe5f751c drm_atomic_get_old_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc19bd735 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc35c9cfe drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc413c384 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc299234f drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc33dbf8b drm_dp_mst_connector_early_unregister EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc608ebaf drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7578e9c drm_dp_dual_mode_get_tmds_output EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca9e4935 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcca42456 drm_dp_send_query_stream_enc_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd002a86b drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd794faf drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf16900c drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf6c9cea drm_atomic_get_mst_payload_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0e95456 drm_dsc_get_bpp_int -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd54974bc drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd3dc7c72 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd4afc7c1 drm_dp_cec_unset_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb591006 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe16525bb drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc573a05 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd2b43b6 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdefeeace drm_dp_get_vc_payload_bw EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2468a48 drm_dsc_flatness_det_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3629e6a drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2ac1874 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3393d99 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3ce9fd2 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe504dc47 drm_dp_128b132b_read_aux_rd_interval EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe53ec83c drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe573df10 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5988810 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5d74748 drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe68e3fab drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe9143ab5 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xea76c9dd drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe596e30d drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe669982e drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe6b25d06 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe70e4691 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe726de02 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe81d4a93 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeac5b340 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb200013 drm_dp_remove_payload EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeebe78d2 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0e9ce78 drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf139c072 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf17bbc37 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xee445a9f drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeef705d7 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf33fc318 drm_dp_read_clock_recovery_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf9c24aca drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf72cc534 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf7a9acc3 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8511939 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8a23f60 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa415a5e drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb04e2b2 drm_scdc_get_scrambling_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfbab2780 drm_dp_mst_add_affected_dsc_crtcs EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00868614 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00dc7290 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f5785d drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0212c2e2 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0218c97d drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe432037 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff8ca049 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0054c75f drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00822b56 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0105919e drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02289b9b drm_mode_validate_ycbcr420 EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03f0a28e __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x045c7011 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a0f22a drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05f08c61 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0622af6d drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x065ac8e5 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0733a80d drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x074e48d3 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e8ec20 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0533d29b drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d9f27a drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e8da53 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f3997e drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0726792c drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07569114 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b7f342 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07cb71f1 drm_atomic_get_old_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x097cdd45 drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x099b2042 drm_privacy_screen_unregister_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b7b822 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a643079 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08781407 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088a1f6f drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08a048c1 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08df3e9b drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09161b45 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b8c2ed drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a705c44 drm_state_dump EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c1e4235 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c52167e drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c9a3be8 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0acabcd3 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aeab6ae drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7d8b43 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d65506d drm_connector_attach_privacy_screen_provider EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e635642 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e81bc7c drm_gem_vm_open EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1cbf38 drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f720a34 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x104f0884 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10594051 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fef0a9a drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10409271 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10520e26 drm_connector_oob_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x119239af drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x135a83a6 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1629d486 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1649d15b drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10a15dd8 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11312aca drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11623fd4 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x118e1e65 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ba3823 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14632615 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a68a8a drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15941b29 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16665953 drm_edid_read_custom EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16dd16cf drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17eb28c6 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18731c25 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a29677b drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16e31258 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16fa80d8 drm_edid_read_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17799f99 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17afb883 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x184196ab drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x199db9f0 drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a6413ed drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b1d9afb drm_privacy_screen_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1badba46 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bed25f5 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e3bd524 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f461559 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f893fc2 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20955a6e drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a64253 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x215b87cb drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a4e22f5 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8a64a4 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1adcac25 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b1fa9e7 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b2e704b drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf404dc drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dab017b drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f48b588 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f7f931a drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20dce4b0 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x211e2cb0 drm_client_modeset_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x222aa99b __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x226ca904 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c3255b drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23d44b25 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24408e7c drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21ff0d94 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x227a5512 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22b5a4cc drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2448b697 drm_gem_vm_close EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c2ad0e drm_connector_set_tile_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25524a64 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2567c676 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a0d33e drm_framebuffer_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daffe8 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25e0cb8f drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x266a7cd5 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26fc3afd drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2704b644 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2735a0f8 drm_connector_update_privacy_screen EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28316606 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2863c577 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27aeb25a drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d872bf drm_gem_lock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f9364a drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x288a05d1 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28cf33e6 drm_mode_config_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a90ad2f drm_prime_pages_to_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b33d564 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b4a8dfb drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b58cb90 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b7306b5 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb32e5f drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bfca501 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ce3ade8 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7f0485 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b4038c8 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b8796bc drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bacda6a drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c85a7a9 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d557d1e drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e53f48f drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7f371a drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ece9b42 drm_connector_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f050009 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3205a0 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f33f215 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eebb41c drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2efd2a62 drm_gem_prime_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f84db16 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8cf1b7 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x305f2756 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f480cfa drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f865c1d drm_edid_connector_add_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x303adb8d drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3050e495 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ae2e2f drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b2ed5e drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3157946d drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x316d5cd1 drm_plane_create_alpha_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d902bf drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x322b1f45 drm_privacy_screen_get_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3282695b drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x328b39df drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3212f80b drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32936f72 drm_release_noglobal EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32bf29d0 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ac694f drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34865c6c drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fa8176 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37869900 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x381f0c7d drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3330cb60 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x347480f9 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3486daa5 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34cbd49b drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x350062b0 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3507f28b drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3614ce5c drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x377ef57c drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x379aba50 drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x391fed79 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x389753f7 drm_modeset_unlock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a53f30a drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a76719d drm_edid_read_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3992d103 drm_crtc_enable_color_mgmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3af1d990 drm_vblank_work_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3becbd5e drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c2050c2 drm_syncobj_get_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4fffea drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc24627 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c6d09fb drm_writeback_prepare_job EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d058983 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d122553 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2fff2c drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d778cd8 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db3091c drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dfd5d0a drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e605ef4 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d29075c drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8b4209 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e0677b5 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e72cefd drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f1749e7 drm_atomic_bridge_chain_pre_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f4900ab drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fcf9b35 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41279e62 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4135e1b7 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x414c4de7 devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x416df81d drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4255f62b drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42adfe00 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d3d642 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43af583c drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f4f69e0 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4102b5aa drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41202219 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x432835e5 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43aba7b5 drm_compat_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4470777b drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44486002 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x445f02ec drm_panel_prepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw +EXPORT_SYMBOL drivers/gpu/drm/drm 0x449ea830 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45139fb8 drm_gem_map_attach EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45a674c4 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45b1f990 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46340e6c drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48195c40 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46345589 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x468fe2e3 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x474be2b8 drm_mode_object_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48fcac06 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x492add71 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x492f38b4 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49365470 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f208fd drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a08e4f2 drm_atomic_set_fb_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae3312e drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab619cc drm_gem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd9a1b2 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0331e5 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ba6b8b6 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d2ed459 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e1f4e07 drm_property_blob_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e8c0722 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eca400d drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efebf48 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f57487a drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5032a026 drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5039b5c3 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e396c57 drm_gem_mmap_obj EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x509c127d drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50bcb587 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d1c32f drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5107a3c6 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51028a47 drm_writeback_signal_completion EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5192cf65 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51ae48da drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51d77a87 drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526a0f20 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x538e415d drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5423220b drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54da2015 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e9e8d8 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x523f8c07 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x524324e8 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52892adf drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b949d9 drm_privacy_screen_get_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x567c300f drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x561dd104 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5633c529 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5669b45a drm_calc_timestamping_constants EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5786e9c2 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x578d659d drm_modeset_lock_single_interruptible EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57fcaa84 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58785b9c drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x589d4698 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b96908 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57eaf16a drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x584d5016 drm_poll EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f754f3 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a7a9dd3 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b21302f drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b272417 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be8fc3c drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eeb2598 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59459942 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a97504b drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa796bc drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b638234 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c32290f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca1e50a __drmm_mutex_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cca73ec drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd904d5 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d88e185 drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dec0f77 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e15b368 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee838c4 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f409862 drm_vblank_work_cancel_sync EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5feda184 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60244d90 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x611537d8 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x612decb6 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x619a5080 drm_debugfs_add_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x631a1fcc drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc5d021 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd0f1e8 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x605d53bb drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6091206c drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d0a329 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6159ae9b drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61cab836 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6305ade5 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63815758 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b3b076 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b6530c drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c3ce3f drm_crtc_send_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6576fb91 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65961dc5 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66b01fff drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66be2ff8 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6705ecc0 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x670dfd02 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6745549d drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68886ca3 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e2d79d drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65aa0d36 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x660c0a1f drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6610d8e5 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x661405ee drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67dcabcb drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68eae898 drm_mode_prune_invalid EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x692486c0 drmm_mode_config_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x693fc7f6 drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69855ee4 drm_mode_find_dmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a2d282c drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69f830fc drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a61f7a1 drm_gem_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ae80eea drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b5fe119 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b850f21 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6becf00b drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c22d32c drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d197823 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef30317 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f7d0ee0 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71091d80 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71af3a74 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f5a6df drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72500697 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x726f2dc5 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a8694e drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x733cdd62 drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x738e1a97 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x740bd75b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6af423fa drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b194dbc drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bc780d6 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c141f57 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cbc17d6 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d54139a drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d7ae39e drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d92d8c5 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f1c3983 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7064377e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70866d1b drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x719777b8 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a534fd drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73af02a0 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74beb491 drm_mode_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x752e6f88 drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75d67859 drm_privacy_screen_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75f22d92 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x787ee154 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7938e7e3 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b271f8 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7544823f drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x757c09f6 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77d9eb7a drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78552be1 drm_crtc_vblank_waitqueue EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79db0dc3 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aebec6a drm_connector_oob_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bcbcd88 drm_atomic_set_crtc_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c76e289 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7866dd drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ded4b42 drm_privacy_screen_set_sw_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e2f95f0 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc9d24c drm_crtc_vblank_restore EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e761d7e drm_atomic_get_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate EXPORT_SYMBOL drivers/gpu/drm/drm 0x7efdb251 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa28b4e drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fcc7c4f drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7faf38cb drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb823a0 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fde6919 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c1fa78 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8178c878 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff30b3b drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x804dffe5 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c4a4a2 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e4ae81 drm_crtc_arm_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8412fcf7 drm_analog_tv_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x849c92f3 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84eb65d7 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8524155c drm_mode_create_tv_properties_legacy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x857c34b9 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8711abf0 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x877859c1 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x877f0a6a drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x897bdc5e drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a92f797 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c48040f drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8354ba22 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84691360 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8495c24e drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8544ca61 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a151a2 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a99acb drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85bf2b2d drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de2afc drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86ba33e6 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87dd4c86 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8850d164 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x888257c2 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88e9f3f0 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88fc4fac drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a2698cf drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a37b0f4 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3ead4a drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a4ee2f3 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ba6efc2 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0529d4 drm_crtc_next_vblank_start EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df8e369 drm_gem_private_object_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fcf1a09 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fd0741c drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9143a78a drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9157d03e drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f9b972 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93b1c2d9 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x945d7415 drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9478da56 drm_gem_vmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ede525 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95beac3f drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x967dfb91 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x975e9b24 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x976dc7fe drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x976ffcb8 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d7a850 drm_privacy_screen_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9819d0be drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d92698a drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f0078f5 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f42a114 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8ca9d7 drm_analog_tv_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9020705c drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x904bcdac drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x909cb240 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b68e05 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x938b832c drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94250d20 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x949fd7ed drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x965a9a3f drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e98068 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97845f72 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x981ed554 drm_atomic_normalize_zpos EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9845e118 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9896cda8 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98cbe633 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98e6b1dc drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a381dd8 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a510e15 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9addfff3 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a9c28d8 drm_atomic_nonblocking_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b4bea17 drm_panel_get_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c70cbc3 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bcde580 drm_universal_plane_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d44d1ba drm_edid_connector_add_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d839159 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d9dd8a7 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e6a79b8 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e80f0e0 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f289d48 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa00b4b16 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a4fcbf drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa10b17c4 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa140e15b drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1cb6798 drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e45c646 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f1dd0d5 drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fcb075c drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd3ace9 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ff6f3f8 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c83b05 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0dd33c3 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a0b3ea drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d83e8d drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa21271b2 __drm_dev_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa30fa23f drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3538931 drm_atomic_get_old_crtc_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4483cb8 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4fed530 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa568f8fb drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa575cfcf drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fdefaa drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6529f80 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6576837 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b4819d drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74fb0dc drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74fe856 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9012123 drm_atomic_get_new_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4049daa drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa62857dd drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7110aab drm_warn_on_modeset_not_all_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa97ea7f1 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9cb954c __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa3e29d9 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa63eca8 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab0c47c9 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabf0576c drm_debugfs_add_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4047f4 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9e2fbdd drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa65cac8 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac1bb6c drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaeacda0 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaafd9759 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab11d23a drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab1a97e8 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab7ae5d0 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac01a3bb drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0afbed drm_property_create_object EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf0ade4 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae0362f3 drm_mode_config_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae2b9011 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf3276c3 drm_show_fdinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf4372e7 drm_edid_override_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf53fd7a drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafbb73a7 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb01f2f0c drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb041216b drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a33655 drm_sysfs_connector_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb14f9f9b drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb15ba9a3 drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22625d5 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb240187c drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d3d6fc drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb302ad98 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb308198e __drm_dev_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb40d4ace drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb413b260 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb50e32c7 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb440fe54 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb531be6e drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb570a205 drm_gem_lru_move_tail_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7181052 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a91343 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb86cbb4a drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8700619 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8cb25b3 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb94cc643 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7771b01 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8789e52 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8bb75b6 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb969802e drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb999c20e drm_atomic_get_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8f9360 drm_crtc_next_vblank_start -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba943c7f drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb44ba31 drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbba57876 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce31239 drm_edid_read_custom -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcfddfc2 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdde880e drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe5e1889 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfa133c8 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbffde705 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0389866 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc169e64c drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc20a5f38 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc26a215f drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d4c298 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f27807 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc49e0afc drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9ce7cc0 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba24f4c3 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcb8aa47 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc2c466 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd51cf5a __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd93e6f1 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe004d4c drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf81ace0 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfeb891e drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc12c0dbb drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1b04544 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2eb9c8d drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3ae033c drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc44872db drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc573f5d1 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7051bde drm_client_rotation EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c0ccc8 drm_property_add_enum EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d833ab drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8204a78 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9299d36 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9554e98 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca3991ec drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5e986a drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd96ec8e drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81da9ec drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca516f90 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcab5ba64 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb67779c drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc07791f drm_show_fdinfo EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdde0f03 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb9c403 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcecd590d drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf2ffa77 drm_gem_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd7822c __drmm_mutex_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0988305 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9f4b6a drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcea63f8b drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff7b6b0 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0045b23 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0c3298d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0cb9b5a drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0d601c8 drm_modeset_drop_locks EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd197c275 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1bea427 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1c1c9c5 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd213fc6c drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd23f4afc drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd24486d6 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd29d8fa6 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd31a602f drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4953bef drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1ae1de6 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd290e076 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd37696a8 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3d46fcc drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ab4598 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52f5b7d drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5783ac5 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd679c9dc drm_plane_force_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70a0b06 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c397d drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75b96fd drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda840abc drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8139119 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd87c6f9b drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8cb1e1d devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd991a945 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c2ce8c drm_vblank_work_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb31daa4 drm_property_create_bool EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb4af764 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc40b242 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb38ecfc drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb855f71 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb9039c5 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbda7fce drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc63bfa4 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc679a14 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd23273a drm_gem_dmabuf_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd75b86d drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddbb4f80 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde6fc722 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde8126ab drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd637e60 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd83eb30 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddbf12b4 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde451419 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf0b339a drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf359082 drm_gem_handle_create EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfbc645c drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfc82d54 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe05286a6 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18223a1 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe23dcd2d drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf799f4f drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b07308 drm_crtc_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe38a6649 drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4413285 drm_gem_lru_move_tail_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe45da866 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe536ff37 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5864109 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b2f077 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e40a31 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe44b9e68 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe55c219b drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5e37ee9 drm_connector_attach_scaling_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe643b8e8 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e54f35 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe83df05d drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe681df6b drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ca0da4 drm_gem_private_object_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e8c48a drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe79acc7f drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7b5472b drm_privacy_screen_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8cd93d1 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8fb179e drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe976690c drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9969119 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe906d3f3 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe90bae58 drm_client_framebuffer_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea611737 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb93c6d6 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebfe3bfa drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecb12e48 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedcdbdb9 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeddf6e82 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee19469b drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefb12e0f drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf02e5f7e drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0496682 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea5ba7da drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb0c5e6f drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba4985a drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec2a919e drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedae1da0 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedde5780 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef853b01 drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0773d75 drm_crtc_vblank_on EXPORT_SYMBOL drivers/gpu/drm/drm 0xf095dc96 drm_get_tv_mode_from_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf10c0547 __drmm_add_action EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ae1e39 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2dfc139 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3214480 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3557357 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2fb4f74 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf309e653 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf337213f drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35305aa drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35a23bf drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b32567 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3feac01 drm_atomic_get_connector_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4b24772 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4d87746 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf67f1e34 drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf797f39b drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4b435e8 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf55b0b94 drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57eb992 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5813c1d drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60454f6 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf605f375 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf623c44a drm_gem_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6793239 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf695c657 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf702c5c7 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e4562e drm_object_property_get_default_value EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c333ef drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa4b369f drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa67c51e drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb3f7d3b drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb05540 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4b4745 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd18f245 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2a8829 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd82bdf6 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd953627 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe662dd2 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfea4732b drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ac379c drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9088bad drm_atomic_get_new_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa49272b drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb9ed944 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc02269c drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfce0361e drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd0d78b7 drm_hdmi_avi_infoframe_quant_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc2e878 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfede7adc drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffbb78e0 drm_connector_set_link_status_property EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy @@ -936,420 +936,420 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x34f2a2ce drm_fbdev_dma_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x49d6872d drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x85de9df9 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00fa5b50 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0177b39c drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x029d9065 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04dd466b drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05700552 drm_connector_helper_tv_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05caf89d drm_fb_xrgb8888_to_argb8888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05f5d5f6 drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0883362d drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x088afc2b drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0917d1b1 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f0e35e drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad2a0d8 drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0afc7422 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bff1d97 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c318a3f drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6cd23b drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6dbd0b devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d77128d __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f6de83d drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x2455df25 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x8a014e02 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xc15c6308 drm_fbdev_dma_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00c774ad drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00dff218 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x025b3020 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03d59991 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06ae02ee drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06bc1bb6 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07db5281 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c43864 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09539016 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b951ce4 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb25fcd drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb9a5c6 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e175564 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1214a242 drm_gem_fb_end_cpu_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d51767 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15cb900e drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17919dce drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17bd6241 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18453ed7 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ab304a6 drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d13118f drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ddcc35e drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e1e3d75 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e309362 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x203f0ef4 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20ce2d25 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1674fcef drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17a38564 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18665ceb drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18911e37 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b9ea79b drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c4efdcc drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21270662 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x216e1a1c drm_self_refresh_helper_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x245f3652 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25d497cf drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27f652c5 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28b70383 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x296aa43c drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d46056 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c5acbdc drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c89a6f4 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc7cb1c drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22482e08 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25799a86 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2694abbb drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26a9f7d0 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26d0a171 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27819133 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28748ee9 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a34ad0f __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d2403af drm_fb_helper_set_par EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e572d3e drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ec930d6 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30000419 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x317db712 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34715b00 drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x360632b1 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3684ffad drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38257fba drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3829c4d9 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c3bca11 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c60d7ac devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3db470cf drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f71fe43 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42bd8f56 drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42c5596f drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46b89e92 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d12f9c drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x485609c6 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49e26612 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c62aaa7 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ca7222b drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4da5fec8 drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4da623ad drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ef8e053 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x505e5fca drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x517b84f7 drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x524fd31a drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x525505e9 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529c3192 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d858a5a drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f82e5c4 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30036ddf drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30e8e552 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3169d93a drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36846177 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x372d489a drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3778637b drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x383df2cf __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x391ca717 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a336164 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ad4aa57 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3adeb43f drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3be36061 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e156fb9 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42162825 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x425fb729 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4323ba7a drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f9cbee drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x440be795 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x452eea3b __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x455b0491 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x462a039e drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4be0c4ff devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c3e446c drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e02d088 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f9f6a8f drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fcf51c1 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50768b89 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x538e3970 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53e24626 drm_atomic_helper_set_config EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x568ecc29 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57eb6bbf drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x598b8748 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55ca52d7 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x569aeb7c drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a4dbeb drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57d111ce drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x585e2bc7 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x594fa4a6 drm_kms_helper_poll_disable EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a6d0693 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ae5aa1b drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5afbee1d drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cb2b225 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d0d267a drm_fb_xrgb8888_to_argb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d35c51a drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61226432 drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x617a330a __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6385f1cf drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64d2d12c drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65fd9a8f drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668bf30d drm_fb_helper_damage_area -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67dd9bd4 drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a2a857f drm_fb_xrgb8888_to_rgba5551 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a344615 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a59fbd3 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b43fe0e drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c8e94e2 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f0e0d84 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fc23c79 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61696c66 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6199d648 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62c5dd47 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62ec1d5c drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6453802a drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64c59e2b drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67738014 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x696fd41c drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6abe901c drm_panel_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7e216e drm_mode_config_helper_resume EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f076a32 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f52d085 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fc6d0bf __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70d20348 drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71916c44 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7297e802 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72cd65e9 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74aa2397 drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76c75bab drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x789e727d drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78fad6eb drm_fb_helper_damage_range -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f25f583 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x802e138e drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x802ec457 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8192ed6d drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8195a994 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e630dcf drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e89fc44 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ec80b55 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ffd1d56 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7007bfc1 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70e51572 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71750c51 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71b14406 drm_connector_helper_tv_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x769494e2 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76f7a0cf drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7875c1e6 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78adb23c drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x798e112f drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bf88e4f drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d8abeea drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7edeb229 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f1fc951 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8141f5ab drm_crtc_helper_set_config EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e04a06 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8536f959 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86b3739a drm_helper_force_disable_all EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x874cfd59 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88ac3b37 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e1759f2 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fec50a8 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff8e0d2 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x903209c1 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90c3896a __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x913869a5 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8894e6f6 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88aaf47b drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88b11e18 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c38eeda drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cee07cb __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cfe2948 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f9b2292 __drm_gem_reset_shadow_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92799125 drm_fb_xrgb8888_to_argb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9333b971 drm_atomic_helper_connector_tv_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93814c3c drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9410597c drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94eaa557 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x955aa766 drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97bc9247 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99f29b29 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91ff9013 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93efab96 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x945a1ed8 drm_atomic_helper_commit_modeset_disables EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a3ae867 drm_fb_xrgb8888_to_xrgb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b50e402 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e0781e5 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e668576 drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fcae9b2 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa24143c9 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa334e75f drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa54fd0c4 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5d243e4 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa68358a5 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa738367d drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7481d12 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7c8d375 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9835e0c drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab5cfdec drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac0e102a drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaccdfe3e drm_fb_helper_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae396b14 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaec56e47 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaef0dd88 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a167636 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b171bb0 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b38894d drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c43a217 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d821d89 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e8cb35e drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fd9a6ea drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1447b2c drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa27d4af8 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa40c932b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa580cd37 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6528bb4 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaf26736 drm_fb_helper_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf04ceaf drm_panel_bridge_remove EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2afa838 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb321dadd drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3862b96 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52b6ab3 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb44afe5e drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4776cb3 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4b808be drm_fb_xrgb8888_to_xrgb1555 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb6e82df drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc1da69a drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd1209f6 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd80d675 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe93a2fd drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbefda40b drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf649b3c drm_kms_helper_poll_reschedule -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0668beb drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5da119d drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8c22afe drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ceff00 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb90f7088 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb996753f drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb26813e drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbf0d79c drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbde725d2 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe2ff64f drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf26a43d drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf3eec56 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2655144 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3d6c4a0 drm_atomic_helper_connector_tv_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc40091f5 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc40d7367 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4c49a57 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc570c3ff drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c79345 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc610e8af drm_gem_destroy_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7f8e0e3 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca4c121d drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6aa1aaf drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7cdec42 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e79c59 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaaf4b21 drm_atomic_helper_cleanup_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbce1c1f drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcca9969f drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd978423 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb4d7c30 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb767137 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc0d0620 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc1bdc79 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdff8df9 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcec353f0 __drm_atomic_helper_plane_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2023211 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4b37862 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd59dd261 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd71f946e __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7ba53f5 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7cfde66 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7fb7250 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd823d7bb drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8305cb4 drm_fb_helper_release_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a25035 drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9230698 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda9e477a __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc1f9b9a __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcff6d76 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde5335d9 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf16ef94 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe120aebd __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe18c536c drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1f2bff3 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe20656ec drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe23cfab2 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2e12c87 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe35a53dc drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5ef2bd5 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6460378 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb3cb4e8 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebad2535 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee98dce7 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf032349f drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf12441c7 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf20070e7 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf31fc9d8 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf377d7c1 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf41c0442 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7387d41 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcd3a711 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x02af6ae8 mipi_dbi_pipe_duplicate_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1a484b16 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1bbb2c40 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1e2578b5 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2134d660 mipi_dbi_pipe_reset_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x33242986 mipi_dbi_pipe_end_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x353e44ec mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4820842b mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x55db89c6 mipi_dbi_pipe_destroy_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5d4fb09c mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5d52fa4e mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6bd954d2 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6e800b49 mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8fb2977a mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9960e591 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa080e10c mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa2d653c0 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc7f8307c mipi_dbi_pipe_begin_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcab64231 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd8c57acc mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdf54e38c mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xecbcc7d9 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeec5d998 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0b412e45 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x19acf8be drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2c0a86cf drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x44ceb0d7 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x47f67577 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7c3d4058 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa5820030 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdc537856 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xefb59d94 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf7f4f3e7 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0e4416b drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1ac871e drm_fb_helper_damage_area +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2719eeb drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3cd721d drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd479dfb3 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5ed3629 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd83e5e2c drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda5228f2 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda7c8fde drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc27da05 drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf8acb31 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0242bcd drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0b3adf8 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30b94da drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe399e427 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3e082c6 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe433d099 drm_fb_xrgb8888_to_rgba5551 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4cfe0e3 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4fe9b13 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe56a882f drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe58abd77 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe72e30e9 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8d8053c drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea38f5a1 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaa15236 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb57a5fc drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeda44989 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedc64f77 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee3042e9 drm_fb_xrgb8888_to_argb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee584998 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeefb5392 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0422d3e __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0431ba6 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a3c6e9 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0db9b67 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf36dba92 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf54417cb drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9722a4d drm_kms_helper_poll_reschedule +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa137aaf drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeb8a4f5 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff52d99b drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff8ed9d5 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x02b781d1 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x06d297ea mipi_dbi_pipe_duplicate_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x086347e7 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0a32aa64 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x104f9b0f mipi_dbi_pipe_end_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x16d3e1b8 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x21139e1b mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2736e88b mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x31ca12d4 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3279a129 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5a4f3114 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6024f083 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6c64ca00 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7c1652f8 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8a74372b mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8e8fc0b9 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9bb34b03 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa14349f3 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xae68e711 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xba559920 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbdb506d6 mipi_dbi_pipe_reset_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd49d1bd1 mipi_dbi_pipe_begin_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfdb4d270 mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x351e19b1 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3a034c2a drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x42af03ea drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x4e0399d1 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x63f39281 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x708bc8dd drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x74038683 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa94ae9d3 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb2e50ac6 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xced885a9 drm_gem_shmem_purge EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x048a510f drm_suballoc_manager_init EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x0bad1988 drm_suballoc_new EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x8debd4c9 drm_suballoc_free EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xcfea1bec drm_suballoc_dump_debug_info EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xdd9c3522 drm_suballoc_manager_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6a165ab5 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6c2a0ac2 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9157315f drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xafed470f drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf293007e drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x00275f4f drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x03bc2233 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0a88dea2 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0e2fd59a drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1559e7b3 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1abdf4d6 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x73be2c73 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x80994dc3 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9fe0fcae drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa0cb877b drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb2289314 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb807bf6e drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcd285428 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcf01cb77 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdfc8fa54 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfe735f51 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0281baa3 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1dcdbd77 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1e0bfeec drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x26f8e793 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2787c72e drm_sched_entity_error -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2a15e61f drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x342776dd drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3989b1b9 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5cb9699f drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x60b4de01 drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6c649297 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75568726 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e42c102 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x84272963 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88cc2321 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8a1a16a1 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9acbf473 drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xad397201 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb028f3d3 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcc0f0d63 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd0cd76d1 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe1e13faa drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1b36dac6 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3c9cb41a drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x6aedae1a drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb293bdd4 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc8892b3e drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x023f076c drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x12c9cade drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2d75acff drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x33e6de6f drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x53a67924 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7921c0e1 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x808a177d drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9084ec63 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9edda79c drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9f5adc45 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa04ade8f drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa96f7a3a drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbf612819 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcbc2ceb7 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd0dad53b drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd51262a6 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0798f3ad drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0de89795 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27dd7ba9 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x30a20b90 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a55477f drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x423cf58e drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x684666ec drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x75901a72 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8342a0ba drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x85a59f0c drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x86077756 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x90dae71f drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x98f88105 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x99bdb428 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa630cf78 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xab71480b drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbe3abfbe drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd0443731 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd3bcdcef drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdd873fb8 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe4d5ce86 drm_sched_job_cleanup EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe4f3568a to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xee1a4fae drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf03ae91b drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf236d34a drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03a973ec ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b18c96b ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d2e0e96 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10b6014e ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10c42b30 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1437faf1 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x173ac7b4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe7b32167 drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe816e09c drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe934572d drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfedeaaaf drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01444ee2 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x081e8624 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09784159 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a72bb99 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bbfeae4 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18ae9a3a ttm_bo_unmap_virtual EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22dceb6b ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23863a12 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e9d4b14 ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f0f8c3d ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x302300fe ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b90c882 ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44f53c90 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x471ddd19 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5019eb22 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55745cdf ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x593fe8be ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a158315 ttm_bo_wait_ctx -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b4f5744 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5df69d8a ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e3fec10 ttm_pool_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e737f18 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x629e20b1 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x651cd779 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d9598e7 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e241246 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22aa1c7d ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2682fc8d ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x280f2875 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2af7ddc7 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33885ada ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e4b8345 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x407feca9 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42f82183 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44b63373 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a757222 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4db8f3b7 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f40c1fa ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50defbd2 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5204d864 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56fa36c9 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fbf1ccd ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6069fd88 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x633a3e74 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64ba1cc4 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6721d442 ttm_kmap_iter_tt_init EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a847134 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e9c50bc ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x753e84fd ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75893795 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c57849c ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ee1a2ea ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a9e4b5c ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90db8c9f ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x924bdeec ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98deedf3 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e7988dd ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e8e4594 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f2de1a3 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7e97dc4 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac5911bd ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaec1e04b ttm_pool_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafa1e45c ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3befce1 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb419516e ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6530239 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb753db8d ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9466d25 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd6ead9e ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbec19832 ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc824bef9 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcab44d10 ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd4decc1 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf290c22 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1ad1189 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2e7283d ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd410ec84 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5498d18 ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd84697e3 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc63dd9b ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe242cd78 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7588cc6 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7a3a7c3 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9aa92e2 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfefb98cd ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/hid/hid 0xc90b3dc4 hid_bus_type +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ef8c0e3 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fcffad5 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72e1c54f ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73d71f34 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7725659d ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b5195cc ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8828402b ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89b7f819 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bdc6065 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91740f3b ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ac85f2e ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b843c42 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b9cf03b ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bb5e5ef ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa28549d0 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa803833e ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb25991bc ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3c809b7 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8661469 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe9d94ba ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbef482c4 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc662f2cd ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc803ddf8 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8e157dc ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6f2f31 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd010dd19 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7d6ca2f ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd515426 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1ab3ce2 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5a5fdcc ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7aabd1c ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8ede3eb ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9c5d5b9 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb5062db ttm_bo_wait_ctx +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfef0e75a ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/hid/hid 0x56046c2d hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x02853ad6 ishtp_cl_link EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x06a678e6 ishtp_trace_callback -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x074c811e ishtp_cl_connect EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0ec047c5 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x10b2ef30 ishtp_get_ishtp_device EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1155a021 ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1a963ec3 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x27229dec ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2addda29 ishtp_cl_unlink EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2c60dfaa ishtp_dev_to_cl_device EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2f8d6dc3 ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x31d047f6 ishtp_set_tx_ring_size EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x35f1ad37 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3b19da24 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x48c88c2f ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4abbda1f ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4e84cb40 ishtp_set_connection_state EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x550e646d ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f11c204 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x58a1f931 ishtp_cl_flush_queues EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x64f81880 ishtp_cl_tx_empty EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6787b674 ishtp_put_device EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6f991d66 ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x74852961 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x762e8153 ishtp_cl_unlink EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x76553075 ishtp_cl_io_rb_recycle EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x77e713eb ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7c400843 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7db7c981 ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7e0a4612 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7aa9f18c ishtp_cl_connect EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8000e19f ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8243ca0d ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x82d01fa7 ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8a200cc9 ishtp_set_client_data EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x985746f8 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x98b6309c ishtp_set_tx_ring_size EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa348d24d ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa5fc12c1 ishtp_cl_set_fw_client_id EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa64b63af ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa6b54702 ishtp_cl_allocate EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa71c2077 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa84b1057 ishtp_set_rx_ring_size EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xaae3ec84 ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xab288ebb ishtp_cl_get_tx_free_rings EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xad13de6e ishtp_get_pci_device EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbfe1b2f6 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc0533ca3 ishtp_cl_get_tx_free_buffer_size EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc8dbcde6 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcb733b23 ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcf9b43f6 ishtp_cl_send EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd3404ec7 ishtp_device EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd6a81cf3 ishtp_fw_cl_get_client EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe07de4a6 ishtp_recv EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe3092109 ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe7b4932c ishtp_set_connection_state -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xed910329 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf15c3466 ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfacc16dc ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x2a3ae3a6 vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa1231981 vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbf1a2ec7 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x05a5a06e vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa342ee32 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe75efcdd vmbus_sendpacket_getid EXPORT_SYMBOL drivers/hwmon/adt7x10 0x40e0c0a7 adt7x10_dev_pm_ops EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg @@ -1358,13 +1358,13 @@ EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xbe964722 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x119a1759 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x48959abb i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x60a54758 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x668e3b4e i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf363daec i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7fdcf3e9 amd756_smbus +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xf59c9a25 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x25073297 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x84afc5c3 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf655325e i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7c475a1c i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7ed13b84 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9f22a541 amd756_smbus EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1376,33 +1376,33 @@ EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x07c54af5 iio_triggered_buffer_cleanup EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x98146fae iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5ff4cceb iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfd2f3532 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5b9a57c9 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe67bacf7 iio_kfifo_allocate EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xd2ec1e90 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x14e11d96 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x14fcc41e iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x1a7bccbf __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1fa1a573 iio_device_free EXPORT_SYMBOL drivers/iio/industrialio 0x26712bc4 iio_trigger_poll_nested -EXPORT_SYMBOL drivers/iio/industrialio 0x27c3819d iio_device_set_clock EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll EXPORT_SYMBOL drivers/iio/industrialio 0x4518dc24 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x4e933715 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x5a869929 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x79089b4b iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x7932960b iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x86c7237a __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x51b4d274 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x7ba882ca iio_read_const_attr EXPORT_SYMBOL drivers/iio/industrialio 0x92fdd85f iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x96fc118b iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x9ae9af11 iio_bus_type EXPORT_SYMBOL drivers/iio/industrialio 0xa23583fc iio_trigger_using_own EXPORT_SYMBOL drivers/iio/industrialio 0xb3f3e968 __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xb7b2dc61 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xb5bfbb03 iio_read_mount_matrix EXPORT_SYMBOL drivers/iio/industrialio 0xc014d800 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xc17b4f01 iio_device_free EXPORT_SYMBOL drivers/iio/industrialio 0xc73ac4b5 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xcc9636de iio_read_const_attr EXPORT_SYMBOL drivers/iio/industrialio 0xccf5ef5b iio_trigger_validate_own_device EXPORT_SYMBOL drivers/iio/industrialio 0xcf7ca422 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd613b34d iio_get_time_ns EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xec1d1167 iio_push_event EXPORT_SYMBOL drivers/iio/industrialio 0xf300fd15 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xfa21e1dc iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xf8a3f2f1 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xfaf5ae12 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xffe63b3f iio_device_unregister EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x0a950492 iio_configfs_subsys EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3b88c3e3 iio_register_sw_device_type EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb1426bab iio_sw_device_create @@ -1414,378 +1414,378 @@ EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd6bba1c0 iio_sw_trigger_destroy EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x367c0e77 iio_triggered_event_setup EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x49c24046 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd2e967b0 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ca9e118 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1a511ede ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x289f2427 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2aea3794 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x43212d02 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4a75af40 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x50faf3b7 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5296c0e7 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5da9f2ad ib_send_cm_dreq +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x4ee0cbda bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12122ebb ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d6c444b ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x252cc98b ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ad81eee ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4545322e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4e446a84 ib_send_cm_mra EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x91e95df7 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9407de2e ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c6d68c2 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd52d3b9d ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe8a8ac41 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeb8c411c ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00121d41 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x004dc9f9 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6bd68bdb ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x830ccd40 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x855ead3a ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x969308f5 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x96c81eec ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcdbfdc3b ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd60cdcea ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdceebb56 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe828c960 ib_cm_insert_listen EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01a4d913 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01f8b6ee ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02a48595 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03dc9405 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x043fe45f ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0628c9fd rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07b4f875 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x094aff0b rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0aa44215 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0738deae ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x078cdb7e rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x089d29dc rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a7c6472 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b303d66 ib_resize_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0de365f5 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0edcccd2 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10870f49 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1374c4ce rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x138c0f46 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1461db75 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14cfeb6b ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1522330f ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1774d71f rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ebbd414 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f07a783 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ff93e9f ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11062ca7 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12201c62 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1468894c rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14c212be ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1588b3dc ib_port_register_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cbac0b8 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e270f22 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e9d3776 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20c6f264 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217713c2 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a2b659 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22b198e1 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1af7c58a ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1af918e2 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f968e45 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fdd4a4a ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x215973a4 ib_drain_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f4e232 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28f01740 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a66bcdc ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ab1c5e7 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e01a87b ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fb95918 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23b277d2 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24140610 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d79d70 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x280113e0 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a3080d5 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ce1a6c8 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f4dd23e ib_sa_join_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x318e0c5d ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x334b9291 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x336209dd rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35de0b3d rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36647e36 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3675e92f rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36d7feec ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37845834 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3909e7fd ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3982eeab rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b9ca861 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bad65c7 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c9b28c4 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x315a5b67 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3171a74a rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31e4f618 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3223b54a ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3287f5b5 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x329b274c rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32d6cf6b rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3371b1fe ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34c12551 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x359b0383 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35a55390 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37f1d036 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c4542f rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39c6d068 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a309ed5 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a3889e2 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e88f0c4 ib_device_get_by_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x410c9e0a ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4164e159 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418ec7dc ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4290ae89 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x430a3ca4 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fff9904 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4077ee52 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4081aa10 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x432a8c34 ib_init_ah_attr_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45c48e31 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45b446a7 rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4698c932 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46bf5e73 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46ece556 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x488063a2 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49bd2fc6 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a3b2beb rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b1af286 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d5a50c0 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x461be9e3 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4641e071 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4808226c ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48af5f4e ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48c05fb2 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x495f35a2 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49ba2f0b rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e098523 ib_register_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ea5e7cc ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x507c0a36 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5156c525 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x519e1e14 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x521d00e1 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52c2be3e ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b9d254 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5508513b rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x551410fb rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f516fe8 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50072694 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x521c3677 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x523d055c rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53035da7 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5359bb75 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53d57dcf rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55a547de ib_unregister_device_queued EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55d7e16c ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56a17704 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x563a1724 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x566efd04 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56a5254d ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ff7733 rdma_restrack_new EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58c1fdf5 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x574ad8f6 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5815412c ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5827c831 rdma_dev_access_netns EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a18bc16 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5aad9d94 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d6e2855 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c8d76cc rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f8ed1b7 ib_dealloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6155f5d4 ib_rdmacg_try_charge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x626ba5a5 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6393952d ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65eea408 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68368ff0 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68dbbd05 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6920a41d ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x624957ed ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62b4481f rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6446dbe4 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x682f5527 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x683b326a ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a897791 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ac0d661 rdma_rw_ctx_post EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cc71ffb ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6db340b0 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e1b6b5e rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bcaa721 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c23f341 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d6e7a9c ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ed6a0bb ib_mr_pool_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fac423c ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fe1ccbc rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70c057ee ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72e300b2 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x731df703 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x712334bd ib_process_cq_direct EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x752002d7 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x758ea93f ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x740bd5b0 rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a9e19a __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77af572f rdma_read_gid_attr_ndev_rcu EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79123de8 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7918f4ac rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a309c69 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5ae844 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c11299f rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f28259d rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x812b1340 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83f9f2d5 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87901f22 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a1a0156 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c9fff1b rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ef31304 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f7565b5 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90805fc8 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b36de3e ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bc5b395 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c61b001 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cb2cb15 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cca4826 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d49a942 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f2c7ccd ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8309c95f ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x833c9c35 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83b66c56 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86a7c720 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87b3ad9c rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8862a2b6 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89a41573 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89c86836 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a2f2cfb rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c07a4b0 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c73f51d rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cac0aee rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fceb923 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x909a129e ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e2aa4a ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93c0358e ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93d831d7 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9431da5e ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95fa2b8e ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98f83c30 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a850f32 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b2345c6 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d2ae306 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eccf6d9 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f38dc9a ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa125a54e rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1ee88b7 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9481df77 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94af62b3 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x951ae5dd ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9635400e ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96558075 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96debc73 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9708e6ab ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9848f54b ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98c96aeb ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b9e76c8 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bb87e8c ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c652ad0 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c7c8f16 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fdd38b7 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa18991cc rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa26a292a rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2825aab ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2aa34bf ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3274ff7 ib_modify_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4d47dd0 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c58f61 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7eea530 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa93afb11 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa972dea1 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa53f9f5 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac40d1ef rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad5a0cb7 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae51e64c rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa44f812d __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa567bbb0 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa59718c5 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa77541b8 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa977ff90 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9db6346 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9e733a8 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa6329b5 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaa9374a ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab139b5a ib_query_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafed808f rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb22384ae ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3195c4b ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb031add2 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb082b097 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3c3d785 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3ecbe7a ib_get_cached_subnet_prefix EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb60d1919 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb693654d ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7044fcf rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb91e816a ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb92cdec6 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb09adca rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd254051 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdc03b2c ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe0a548a ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc026f052 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0f51153 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc110bb68 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5a43a2e ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc78baa30 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb870c26b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9efdc1f ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbe5fe26 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfb1eb44 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc04c5e70 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0c43167 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1ef89a2 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32a79d7 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc38293b8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc50f1cfb ib_mr_pool_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9555cbb __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9a10fbf ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb4b5688 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb901a0d ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce20d135 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbbb022d ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc86fd0c __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcda4fbf9 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce02c237 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3a5032 ib_get_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0f2960d ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd176e043 ib_find_exact_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3071917 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd32c5a78 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd32dba03 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd42e6e5c ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5582a4c ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2a134d2 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3b5410c rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd43117e2 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4d4e635 rdma_restrack_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd734d7ce rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7caf7d2 ib_free_recv_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda6adc47 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbff55c9 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcacd4bb ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddc01dca ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddc17b8c ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6948fc ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6a03cd rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde737890 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdead9eb0 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf107cef rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdff8a554 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe085faf4 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0d114a5 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe10ca51e rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2e7d34a ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4ba4240 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4badc5c ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4d7dfe9 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda335d0e ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb0cebf6 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbeeeff7 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdddf8600 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf145907 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe24cb19d rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3a2fc24 ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe63201ae ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe662faeb rdma_read_gid_hw_context EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe93013d0 ib_destroy_cq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ebca6b rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb79ce4a rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb912471 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefb8040b ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf03f05ed ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0e327bc ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2aa27af rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3ff15b8 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf46128b0 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea27ef45 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec649f4b ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2f2b167 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3fbc0b6 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf47d5b17 rdma_query_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf713fa47 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf94753a1 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9b903ec ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa682b2b ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbe3a440 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd4cd86d ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfee09018 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0bbbb404 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0e814803 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b294057 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ebf88d3 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2801d7c8 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x369258bf _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf81d02b6 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8a27e2a roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaf27852 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff8e52eb rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02a6e18a ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x13dd0f68 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a1dbc84 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x258389c7 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30a7adda ib_umem_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x38ea7949 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x412a9561 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x431f872e ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x460ceb17 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4d04712a uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59123c1c ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c6d3681 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6cef1fac ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3a34e244 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c108df8 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d49cf6d uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68e1d40c ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6bda1baf ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6edfaf92 uverbs_finalize_uobj_create EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x77a820d6 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80688ca7 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x818b56af ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8a9d9631 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93944e39 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9bcf49b1 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4207bd2 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa963a07f _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb0a2974a ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb2465e61 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf8919b5 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc1cb6cb7 ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2d49fce ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf541ea1 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd30bc0b7 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe04f3d05 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe62df249 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf14f7cad ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb598c2b ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x13460393 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b48e272 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x89c9b75b iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9771ce0e iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd2915cc9 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe1c2f004 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f537dba ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d58910b uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9d9d473a ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8af1943 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9dd14b6 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbd00e328 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc01f3862 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc55a0cee uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6b83fc9 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb57e164 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd2f2f39 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd125e986 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd304e4da ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd714a7ac ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd979f9d7 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde0f5352 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7d65fb7 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xecb69873 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf035d138 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5454dfe _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd3b7047 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd6b57e6 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1729cd88 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1b1b8f20 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x37081e1b iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x574731ad iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5c43f6f8 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa058769b iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xac9f7135 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xec9434c1 iw_cm_init_qp_attr EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf6465010 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xffacf756 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03798f69 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c95fb0f rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d918424 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x311847b1 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36df5972 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x48b8109a rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b1da8ed rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4bed0a23 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51f1e903 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x565eca26 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ba92b3d rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f0efb14 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5feeb215 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x637a4cbe rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x764b940c rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77f2ce40 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x89305606 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8a741612 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ce04362 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06a22423 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c2c9dd4 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e34eef1 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10cb7dea rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x117168d7 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x142664f3 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19a49cc8 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a34f4ae __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x407b99b4 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x449da0d4 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x452691bd rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x524a2a69 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x560c2d35 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59a2abe7 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c316222 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6acef4cd rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c4218c5 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7471d3d6 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7498b867 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7cc4ea0c rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e1b4a03 rdma_join_multicast EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9716bc9e rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e69a71d rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa55f74ce rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa69231f1 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa6446ac rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab216d6b rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc00fec81 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc23963b3 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd36977a8 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdac62611 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc78f5e6 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8a70dd0 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee366b49 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf3cb8b82 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe526e51 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x07e2ffb1 rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0a0bc073 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9713b50b rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d83d4fb rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa250212b rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5acd441 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6be6db7 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad191da2 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb09a404b rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbdd4fa0d rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc109d938 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc567596d rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd403dbb7 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeea37e0f rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf0401b5d rdma_create_qp EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1165c27a rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1487af6a rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x179a9acf rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2004ab9b rvt_del_timers_sync -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3174457a rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x31cc2cdf rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3e4e571c rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x45f9cfa7 rvt_fast_reg_mr -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x462dd160 rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x489c2694 rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x50790c48 rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x53ad79b6 rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x54d942d9 rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5938c51d rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8558b221 rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x85f6d5f7 rvt_qp_iter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x86715a12 rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8ffe9bdf rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9540c208 rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xab43d1cc rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x137051bb rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x13d39f71 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x14275e9b rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1e732b0d rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1f52f11e rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x262423d1 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2d5732cd rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2dc5119a rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3b152bc6 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3ba650e6 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4259ffaa rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6a6a3ed7 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x70e03c30 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7d01f957 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7f58e18c rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x80e56f3c rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x81c6ef62 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x87ba59cc rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x953a8d10 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9a001561 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa46614c5 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa53cc91f rvt_dealloc_device EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbec3caa8 rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc0a4a5f5 rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc129c7d8 rvt_init_port -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xcb35e1bf rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd53e466f rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xce512bb7 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd24599a4 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe8a1c2d8 rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe948e89a rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9b8a580 rvt_ruc_loopback EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xeaaeda48 rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf88cc03d rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x024f42fe rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3d055d8d rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb406eb15 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd95731f6 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe930ad5d rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf3945435 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfdd7ed26 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xef7b09a5 rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf31e6e97 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1caa4180 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2456b6fe rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2638121e rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x94ae12cf rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb92d294b rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbf7703e6 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcedbf7ec rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f4d412f rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b8fc87d rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2555d5a2 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x64e62ad0 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6ca181a4 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa5939f9d rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe4f37804 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe6bf079d rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x48210e28 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x59a2745e rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x62ea24b1 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x74b61214 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb67874a3 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xec40753d rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x489ffd21 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7bd4f53e rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9c9f992a rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9ec670f9 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc594995e rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdc371395 rtrs_srv_close EXPORT_SYMBOL drivers/input/gameport/gameport 0x48c1927c gameport_unregister_port EXPORT_SYMBOL drivers/input/gameport/gameport 0x54568b89 gameport_stop_polling EXPORT_SYMBOL drivers/input/gameport/gameport 0x5adf2e50 __gameport_register_driver @@ -1795,81 +1795,81 @@ EXPORT_SYMBOL drivers/input/gameport/gameport 0x9ab8d422 gameport_open EXPORT_SYMBOL drivers/input/gameport/gameport 0xd97ea369 gameport_close EXPORT_SYMBOL drivers/input/gameport/gameport 0xf403dec3 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2b055d29 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x4279b6ed iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xd67554bd iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x52991a56 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x0ad34b05 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0xe994b078 ad714x_pm -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x205383ca cma3000_init +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x07389d60 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x157d3275 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe82519e7 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x61fe6d88 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xbf94bcf2 ad714x_pm +EXPORT_SYMBOL drivers/input/misc/ad714x 0xccac931c ad714x_probe EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x219863fa rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x10528cde sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x7c8aa82b sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x867eb776 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd44c4d80 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xe13dd8fc sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7a6b0e5b ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x82e0826c ad7879_probe -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x2c4a2b36 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x325625c2 amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x5ed85188 amd_iommu_init_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xa1ba7eff amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xbad94e0a amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xe26ec8bf amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0868fd08 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4e94b17a attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x508a4f4f detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x54f04327 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7aad4329 capi_ctr_down +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf3e3d3b3 cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x55b930e1 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x02346e15 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x153091c6 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9720a56c sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd54d6504 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf8a361d5 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x74eaa3ba ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbfe10b7e ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x00acc2f9 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x25f1d80e amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x3b573ba6 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x4acf9663 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xde9d7fe1 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf94fa0d4 amd_iommu_free_device +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x285861c5 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x348b6bdc capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa026719e capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa87e405 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe7114bf3 detach_capi_ctr EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x563ee539 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5ac45378 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9d8fe157 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa5d1fd7d mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x26dde95b mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3263e220 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7dbbd08e mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xcbdb2c64 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf06be930 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf5b00f97 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x2ca44ceb mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3ff5eae5 mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x157525e7 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19a15f39 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1b4e0c7b recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1de5698b mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c31a637 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1009e27e mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x15bb3869 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x15f70e4e mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x187948de mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1c4be92d recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2ea56c0e get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x301b264c recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3cd3ac38 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x45d25cd1 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f6844c7 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x31d3db78 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4193c1f4 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x49e53e00 recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x545ea672 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6a7aeb00 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6ff5a7e9 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7884feeb mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c4e65d3 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6fdb0318 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x730408cb dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7603e349 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x778cbe4a create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7b135d82 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ee998dd mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d46e6ba bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x93057555 mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0a0aa5c bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xabf30248 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae0a3cf2 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb98bd87a mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2c6f7c8 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb872e89f recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb039589 mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd6e47947 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xda15496c create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdb7915e8 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe595e0fc mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa78e0e9 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdeffc72 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xecc00ddb get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf780bf7b mISDN_clear_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law @@ -1879,529 +1879,529 @@ EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x906331ce ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range -EXPORT_SYMBOL drivers/md/dm-log 0x852131f2 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xa07da9d1 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xa485e0b5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xa889b4e5 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0696a39c dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x2affcf33 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3c987833 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x3de7e4b2 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x694e52c7 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xdf25daa2 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x20597e09 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x8841a41f r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x00cb9c06 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b0ec445 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2241d885 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x30c00bc9 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x350b3bba flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x38c752a6 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3ee7a24d flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x55a2f279 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x99bf2344 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb0c0c910 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc0e66e9e flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdba3eef1 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb49dffc flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/md/dm-log 0x0b31bf9b dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x3a4f1889 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc8352e71 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xe5ffdd25 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x36821258 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8bfc6ea3 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9100fe4d dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa8a7f15a dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xeb276fb7 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf37c183f dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x53501d8f raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0xf1f116ce r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1333db1c flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x76838213 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x793531e3 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8244fb95 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa2c7e49c flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa490be6a flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcbe93250 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd8e3c65b flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe41bcb18 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe5d5a2f5 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeecd36c4 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf10a660c flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf410444c flexcop_device_initialize EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x19d9fdc5 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x375c2909 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b5cc43e cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x6b5cb617 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x86c9c839 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8eb2d897 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa4e2d1d5 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xaba4a2f5 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xa328a1e5 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x5b94b41e ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf93ccdda cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xce6cbe97 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x5beb05ea ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x7401bc4d tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x700da4bb tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d915fe8 vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xd12bc058 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xfb009f41 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3fcd29a0 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x63bca8fb vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x89b8d03c vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x96f52ae0 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x98f80886 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc7de8698 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xfb917637 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6d918804 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8d6b8abb vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb2e004e5 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb5b347ef vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf0d79f46 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf83399ae vb2_dvb_register_bus EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a8e8b73 vb2_querybuf +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d98bb3c vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e89d9f8 dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23fcc74f dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x258e601a dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d32e448 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21caf955 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x25c53e5e dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2b022c93 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2d78f331 dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3a31f34a dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f570758 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4170a89a dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4681059b dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a987313 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5133e424 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7db9e763 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x84ac6ab7 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x84d52cb2 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x861bd8b9 dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ab7b142 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x735dfc33 dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e35eb0e dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x90a052bb dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d09c60d dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2b30c20 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xadf5e9e2 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa76f81f6 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab40bf47 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xafd33a76 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8d11b76 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb42ce941 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb450542b dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbab14e4c dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc24da09e dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc54fe5c6 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc9f69726 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcdebb2f7 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd09b2431 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc2fa77b dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe05cb1ea dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdba55076 dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe987ca35 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe18f1711 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe2cd5474 dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedad0846 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef22096d dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf7855ee5 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4253a57 dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x06170a04 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2090c27c au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x24e02832 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x32916350 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6d1c3e0a au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x963be3ff au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc389c833 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe22e4f23 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe87ec40f au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x969bb362 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x568643fe cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3a5d9b62 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x99884c3e dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa20b0d25 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa934eeef dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0946a9d5 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2c923bfa dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2ec14279 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x31db9dda dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x38966b2f dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5052f2fd dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x81357574 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafa45fb2 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb814f94b dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc52fe138 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5f15328 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd6fca07b dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfe343282 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x11dc0a9b dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2191e835 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x441c8f76 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5a7b0edf dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x723ad699 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x535d826a dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6a0a7671 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc8566001 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1b22536b dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2280e47d dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x22cba784 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4e324db4 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6b75d96c dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8c9f151b dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x93c30795 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb55a011e dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc7cfb44c dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcf1352b7 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdcb320a0 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xeb2c6a1f dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3452c5c6 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5b03643d dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5e854c45 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8d245587 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf31c102a dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3a7a3e1b dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x85ae09f6 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x91b41a73 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xd3b2cf1c lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xcb186f9c lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa293e31e m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4169ae65 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x5d979d3c zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xe80e2b5d zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2a052175 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x35ff8dea flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x52e0b8f9 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6f29837f flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa0198a6e flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xab78f7f6 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf0305760 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x786178d0 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb7401ed9 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd489a720 bt878 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe77deb5 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x127ac432 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x39f86554 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x463ce08d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x61a4fe02 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x97c19c43 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa1e0f520 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb5473ec8 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc63ce56b au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdb3c26b0 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x9f3f9112 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4339b089 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7c722b17 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe4789c95 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xeab58704 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xedcf2857 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0e4f8c72 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x10125de9 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1389044a dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1d940359 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x42e63c24 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x46f70c6e dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x50897d23 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x69a5b0ac dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc06aed9c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc2d10846 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc6be6e19 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf6e756bf dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfb55b6af dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0b85320c dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1066fcbb dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3b425b52 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4832bf99 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x87ae3aeb dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x15603142 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8ed7814b dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfdf8f7b5 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x055d896b dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x111c5ef5 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1b4bb5e7 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5b809c20 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x75ac65e3 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x81809cef dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x99ae1c00 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9deee53e dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa1f4c9ef dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb8ee6046 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd001e070 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec36eab3 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x04a5eeb0 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x860764d6 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8c452a68 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcf46cf73 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf6313939 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x543da618 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb629dc4e dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xfff38270 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x41b96d0b lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x6c552199 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xbd93cfa9 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x54d65d12 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x01c533a3 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7a796445 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x19aa7a42 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1da5cc31 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x401ca01d flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6c43f9e5 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x73a82cbb flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x807c73b3 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9d59d642 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x964ade5e bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcae550ea bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcf20934c bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdac375c8 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf823e7a5 bt878_start EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x334c1160 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x405606e2 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa54b913f bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbd462402 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd312e4b1 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x12ea596d read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x28b9017b dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xfdc67d76 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x093e6cfb dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x37f2b617 dst_comm_init EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x53e15a06 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x68281a02 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa08908fd dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaa1b3dec dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb53c52e6 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcf2c4c42 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x078a79fb cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x77c67192 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7b144577 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa00fd338 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaf61f840 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd75a7bec rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xea3849ae dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0425da6d cx18_ext_init EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5adf1584 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x807c75ee cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc7805f6f cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe3ba095a cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x57030094 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb0ee5242 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc677da9d cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf84bc690 cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc 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 0x0d2a15a8 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x172d2dcd cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0d2d2b14 cx25821_dev_get EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x46313236 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4e1249c6 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x57427e1a cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6435f66f cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb88ba393 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa5546d5d cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xceaa5b57 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcf0426d3 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd12ea3b8 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd21ddef3 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x11e75ea3 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfae40ac0 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x11574401 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x88104736 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa1a3acc6 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc0af7160 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0a5becc0 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0e85c936 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x26102850 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2c24a149 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3202e4d3 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x46a7b8b8 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb0c84cd8 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d906f49 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x26bff690 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x302bfde0 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x308b5549 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3278ee6e cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x41abe60e cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44598d99 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4bd0ae7f cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf214da52 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x76f2a001 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xaa62a46b vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0b21467d cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7d9acdea cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa78f0edb cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc571752f cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x04ad06aa cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4bcdce9b cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x739c5784 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8c7d77e3 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd2b0fe12 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe9656c4f cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf2aee1db cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11bc8be3 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1363e8f4 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1502f882 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1c78df6a cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1cffab8f cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3465c6c7 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4204cd2f cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50deaf2c cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x54588ff9 cx88_sram_channel_dump EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f03ccfe cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f38f2bd cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f8030a6 cx88_reset EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6817d009 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e10b7be cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x819e659f cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x806398d5 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x807dc64f cx88_set_tvaudio EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa1b73937 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc98a1954 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xce133436 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdd4a161d cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdf724297 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xffb9e8ba cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x08c4a561 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93597719 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x973012e3 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x997274bd cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc8e5abd cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc8d6b3e1 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcbfff7da cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe7e4dd37 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xebc24092 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xece3f329 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0421d01a ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x057a7114 ivtv_clear_irq_mask EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x24c7be35 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3c24d5e6 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4385e713 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a2a8aa0 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4d146c91 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5751f305 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71cf36bf ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8f8032e8 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x959b4388 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb2708a5d ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbc0f5af2 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbd5e02f3 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcd28836f ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe5028e9d ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf2ede282 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf7b5eb63 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x248b9891 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3eebe655 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x46c35bd3 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5fa0ec7a ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x632c8198 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6b802ac4 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x86b35f75 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x97afbb08 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa88f1d3b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbda1c25a ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc4c1f0ff ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcaa44d80 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe30bf0ab ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf1826a16 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf2fdc405 ivtv_release_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 0x2515e390 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x30abee4a saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x38fb7850 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x353c4695 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x504f5ed2 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x56ebd302 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59623fc3 saa_dsp_writel EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f89820c saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x85983f5a saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x87092a49 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75b81faa saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x86a9f07c saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x87fe7881 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8874649c saa7134_ts_unregister EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc5e54acf saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd5a3acfb saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdf120c13 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xedae5d09 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xee7882b9 saa_dsp_writel -EXPORT_SYMBOL drivers/media/radio/tea575x 0x24c0518f snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5e138ac5 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6e23f171 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x734847ad snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7eb413b5 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb422b336 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc85a63a6 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb64bea4b saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdeceaf7e saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe7d6b325 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/radio/tea575x 0x002499d6 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x13a3f45b snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x158b654e snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5206bcd5 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7afcfab8 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb0dfce94 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfe66c804 snd_tea575x_hw_init EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x85b683f5 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc05d4e2f ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0xdb8e5bc1 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1d5a9b08 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7c72368d fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe38b7aa2 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc0c7f43e fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe6a66c9f fc0013_rc_cal_reset EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4bf78648 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x6f144315 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5459ea43 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x706a70a6 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x859de75f dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x89a32435 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb4220000 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbcf995c4 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc4cf8c21 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd8d91181 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfbaab790 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0f8d601b dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x144cea7a usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x15af2fbd dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x19830594 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3891f257 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5b8ff8df dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x23985c00 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x42753f3b cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4952ee2c dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x770faa11 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x796b3f29 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa994216c dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xac272993 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb5394f72 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb962f00a dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xddb9a541 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xde09978c dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x004ed28d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0d565afc usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1b917619 dvb_usb_generic_rw EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc13b58e1 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdddfb9bd dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf57a760b dvb_usb_generic_write EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd27abf8d af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x4b9a56a4 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 0x0decb3df dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x131bde8e dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1386f3ac dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x21c34791 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x23b287be dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x91217b44 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x12cfdf0e dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f315df6 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6da274ce dibusb_read_eeprom_byte EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa2f2d9bc dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xca2f8cef dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe8271039 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x4a98267e dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x979c1171 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6dd7f683 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xc18d7dc5 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x03d7d178 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0b6afc82 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0ee0b0b9 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x244efff3 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8b5cae57 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa9c91b32 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb0d63afc go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbd29daf0 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf75d6212 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1541352e gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1617ca37 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1c74fb0b gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x38073ff6 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x78f80f2e gspca_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa3525358 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbcde0999 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcce44fab dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd0309b39 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf73a3ea5 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfcfd2344 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x748f9f25 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe53a9b3b dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x92ff6c37 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe3fe853d em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f2fd032 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3fe60eab go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x603eeae8 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x871e21fe go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x93b8cef4 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9db2cfaf go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc714b7fd go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xed6f5710 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfadf239f go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x15ec4cd9 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x237534fa gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5ada5704 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x83935995 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8d4159ac gspca_frame_add EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb2b3332f gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbe39f3fb gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd0b5401c gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x026650c8 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x29a15102 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0321c0bd v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0aee6fdd v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x56b9dbae v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xa2ca9bf7 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc2a2adda v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd7415549 v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3d38a70c v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb46addca gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc5c22aac gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe8554925 gspca_resume +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x50e953e5 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x7b2e522f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3969d61e v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x443e1957 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xaf25c54c v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb85a3418 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc988b172 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf43868ae v4l2_async_subdev_nf_register EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xaef07ac0 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdbcea1dc v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdfb92aad v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x87ec24a9 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbd20b2cf v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcc7c093b v4l2_m2m_mmap EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x012409d9 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xffc082be v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00206323 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01e7c37e v4l2_ctrl_request_complete EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0651ee35 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x066c8368 v4l2_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a768a7f v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f515a5d v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x106a2785 video_devdata EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12752d95 v4l2_ctrl_type_op_log EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1658d22b v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17e061ad v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b9187a7 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cc51b1f __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f8fc741 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ffe0c9e __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e957e7e v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22306870 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23256799 video_device_release EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25996512 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b7297be __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2598ccf6 v4l2_ctrl_new_std_menu_items EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ff98bf v4l2_format_info EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b86cd9a v4l2_ctrl_fill EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d1b13bf video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f0a8315 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f3bad24 v4l2_ctrl_type_op_validate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d57fecd v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56e0e514 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57c81825 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x594211d4 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5abbb566 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x648139a1 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68af09f0 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d88d2d4 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x708da24e v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72c625bb v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x761e8fbc __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e274868 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d9c4466 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48833b89 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a6decbf video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52181e45 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52d5a263 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53ef8277 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x557fefc2 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56ed74a1 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ce741c5 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5efa99ef v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61e2ceae v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62ae373f v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x662c4f3a __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7352896f v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7470b49a v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76816514 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b9cdcc9 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f3631c1 v4l2_queryctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x828bd415 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85ea61fb __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89d806e2 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81628fa5 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83b2c0e5 v4l2_ctrl_handler_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a4c8709 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bc8f618 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c32a470 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f6a6bcd video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93ffa006 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x972318d5 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97f45b05 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ba807fe v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ce6c403 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5cafd10 __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa97bd853 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabb66c31 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafb2100e v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c464e00 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9393cdec video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9766d9f6 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a7d84ee v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa022f53b v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa202a3f1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6895abe v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa83e8014 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8864c2f v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa956c53 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae2372d8 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5a0752d video_unregister_device 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 0xbfea1228 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbd75193 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcc9b859 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcd9edf3 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0f47313 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc12c6c3c __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2745441 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc292c6ba v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc4da9f18 v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7532c25 v4l2_ctrl_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd05f7583 v4l2_ctrl_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd36e8eca v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd790cf88 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe26982ea v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd315c983 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0475bfb v4l2_ctrl_poll EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe724ae8c v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec127912 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe48bf53d v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe50fe77b v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb10a0a0 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed285f91 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0a5d831 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf14a3e43 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf2df81f7 v4l2_subdev_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf97f7b39 v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfffbdd50 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0af752d6 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x14a17f0a memstick_alloc_host +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xff40206e v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0c9e8908 memstick_detect_change EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1cf83204 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e81065c memstick_suspend_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2b5d0748 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x68c70166 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x87fd0a78 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8de4643e memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xac2bbd21 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd0d47ca9 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd6c3b34f memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xeac145fd memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xebd599e7 memstick_free_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18bffe44 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18e16d9c mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dba5a00 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ded78b6 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f2fc37d mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x207fe4ab mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2dd01228 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35dbf06e mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36094a11 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f31d000 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x44abc25d mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/memstick/core/memstick 0x33efb2bf memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x51917597 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6f764cb1 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x755f87ee memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7a75c14f memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x91c8ae98 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xca753fef memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd7bbe433 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc4a9b0f memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe9362a3d memstick_next_req +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0151d8db mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d07ccba mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10097a20 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f111df8 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22be25f1 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c89f6a6 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2dfa48fc mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30afba86 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3cec0428 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f08a34b mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x41ef29f1 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x45115985 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b3c7ad7 mpt_raid_phys_disk_pg0 EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ed47c62 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5fd8174c mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502ab2c7 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d8d9db3 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e5f4cda mpt_alloc_fw_memory EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e8c0d8d mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6af3e469 mpt_findImVolumes EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x797568ed mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7dfb81c5 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e2b871c mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7f017001 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x878771cf mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7cb873d6 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ae16a47 mpt_HardResetHandler EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9c57c5b3 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9e21d64c mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa24394f1 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb02b7742 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x98cace3d mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4101d9f mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab8b5515 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae023bee mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7707a63 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9815f7d mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca336230 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcaf50b00 mpt_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe220d853 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5520349 mpt_put_msg_frame_hi_pri EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea277a6a mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xedf2a924 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf022c801 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0d74610 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00e2fab2 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x139a2585 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ba87382 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x201f108d mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x22b2c2d4 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d3f5989 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32be0d9a mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42f3bb7a mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e0430a4 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e68be82 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x799c78e8 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7ceb1680 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x82313740 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8333df64 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8eed7994 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9097743e mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a37e72e mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab465e4b mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf7d8b75 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd298558a mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd5335960 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe28da910 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeb27cd7b mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeda0f483 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf577d3d9 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6cf915d mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7568bbf mptscsih_io_done -EXPORT_SYMBOL drivers/mfd/axp20x 0x01fd517a axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x0c18b517 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xe5fa8289 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x1bc63a70 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x8584ac42 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xe0deb9b3 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef907ca4 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf21c2db1 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e794087 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1665d40a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x170a4843 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a64c31f mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1b7f136e mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x28485626 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bc4a7a9 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3ff031a1 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a2aa540 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d15401a mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f71b0b2 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x516b8e57 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x543ce5dd mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71e93d93 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81f1713c mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ba0c610 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaef6b281 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9a70806 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc22adfca mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc72ae24d mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc954f195 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd08d178c mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd7818426 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef431b4b mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf18be641 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf3b54528 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfbef00b3 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/mfd/axp20x 0x47834223 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x4b9f7d35 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xdfde2ac6 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x735f8948 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xa54121b2 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xcfb232d9 dln2_register_event_cb EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x05eee80d mc13xxx_irq_mask EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x26b5fa0d mc13xxx_unlock EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x26c19cb0 mc13xxx_irq_status @@ -2423,9 +2423,9 @@ EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value EXPORT_SYMBOL drivers/mfd/wm8994 0x1bc46e7b wm8958_regmap_config EXPORT_SYMBOL drivers/mfd/wm8994 0x29fed5e2 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x3251696f wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x3cf78487 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x5ced156e wm8994_irq_exit EXPORT_SYMBOL drivers/mfd/wm8994 0x84a66c56 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xddf05010 wm8994_irq_init EXPORT_SYMBOL drivers/mfd/wm8994 0xde5fb8a5 wm8994_base_regmap_config EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x98119d8f ad_dpot_probe EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xa0dcc732 ad_dpot_remove @@ -2433,37 +2433,37 @@ EXPORT_SYMBOL drivers/misc/c2port/core 0x7122e222 c2port_device_unregister EXPORT_SYMBOL drivers/misc/c2port/core 0xcbbeeb24 c2port_device_register EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x14c2e0f0 __tracepoint_mei_reg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x1839aca7 __traceiter_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x35596464 __tracepoint_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x47a08e88 __SCK__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x64c9bc29 __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x7c320356 __SCK__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x82541547 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xdcd98e27 __SCK__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0xea1ecda5 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x3fd389ba __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x7390835b __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x8aa4143e __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x9510c5b5 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xacb344f3 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xbbb32100 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xc385cd3a __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xe7ac516e __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xf93279c4 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/tifm_core 0x05ae40ac tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ae1b5eb tifm_remove_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x6d69bb12 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x78af2fd8 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x989d184d tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xb515f6b8 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xb700e493 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xc0b71858 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xc1f87a6f tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xc2fd6568 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xcd5a97eb tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xd111007f tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xe0420395 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xf9bcaff4 tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4845179d cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x775b6c80 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x79329365 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8636e42a cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa24fd197 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x5cde8492 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf57e735f mmc_spi_get_pdata +EXPORT_SYMBOL drivers/misc/tifm_core 0x30c88d7d tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3651d2e8 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x572677eb tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x609bb7c6 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7e83a62a tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x942d346b tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xb63b8bbf tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xcf53f038 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd98948af tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xdf8c0102 tifm_free_device +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x445334ec cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5e8d7245 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6fa2db04 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x95683fd2 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb2905c2d cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x58eca13a mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xa4ec7803 mmc_spi_get_pdata EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0845fed9 cfi_build_cmd EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3a6fe114 cfi_fixup EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x531d2489 cfi_varsize_frob @@ -2479,8 +2479,8 @@ EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xab404164 mtd_do_chip_probe EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xfe209a86 lpddr_cmdset EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xde77b0a4 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x72dddf7e mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xcdc182f4 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x05cf4f1a mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xfd722371 mtd_concat_destroy EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0843d10b nand_ecc_is_strong_enough EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x11cebc6e of_get_nand_ecc_user_config EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1a6cd310 nand_ecc_sw_bch_cleanup_ctx @@ -2507,129 +2507,129 @@ EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x047be76e onenand_addr EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x1bb284ac flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x117970b3 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x15e8f0d2 denali_init EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xc9c154c9 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1cc972b8 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1e89b0fa nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x23a2b88c nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2e80ed3a nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x43ef05b2 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4804f79d nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4a112e42 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4bf76072 rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x52600a8c nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5b60b6a5 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7253aaad rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x56429f8b denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x058449de rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x10af7049 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2bec385a nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3f446bc6 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x455219a1 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x50238421 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5a174004 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x68434c42 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6a03bf38 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6e4bf088 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8c25957f nand_write_oob_std EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9a8e0dab rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xae11ae02 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbf6b8047 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa1990229 rawnand_sw_bch_correct EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc01a83e5 nand_get_set_features_notsupp EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe240d7e5 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf6538c64 nand_write_oob_std -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x25cb7214 arc_proto_map +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf723af63 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfba41f49 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfede6a9c nand_read_oob_std +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3d285a7a arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x48d10567 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5c35db8a arcnet_close EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x69f06ae2 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6c8c7e3e alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x71605079 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7f659e19 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8c0040fd free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8d756d41 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8f18ff56 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa7703cf5 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xce011dda arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdff9ca13 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x93daa98a arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9c5eaf14 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9ca0f178 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbfedae82 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd3d303f0 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe77713f7 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xea745eb3 arcnet_unregister_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x27ee6928 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x4776b95e com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x795c5862 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x16a1d0b1 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x27db030c ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xab8d20fe ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x7b41a067 can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x9caff7c0 can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0462066e b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x073b2926 b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0df6ae7d b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0ec2722e b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1471c595 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16ee2eef b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f90e730 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x245108f4 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x257f2f96 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3ed82f0f b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4313162f b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4bac3531 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x577fdcc1 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59c246e4 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x613956ec b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6474447f b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x649d27a3 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x785037fe b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x87f6e7fc b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8a62080c b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8bce7ba1 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8ff29044 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91500014 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x918ebf99 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9648ceac b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x99ad202c b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa30a811d b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa98286fb b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb5463f0e b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb62b4a08 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcbfff201 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf1ea23f b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdbdea93d b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde8e94bc b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe3c1eded b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe7e8697e b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf27193be b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfaa8392a b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3ca66769 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x624624db b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x844feda8 b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9f8b52c6 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5442f16a lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf41c1525 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x061e02c8 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3bd0f3fd com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf12b080a com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x895cfd70 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xd1c9ec4f ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xe45a2764 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x3b8cff1f can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x612d1826 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x02c568d6 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0564caf0 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0689f708 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x120a94bf b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x134e569c b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1c046323 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x292eb482 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2e9432a1 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x306b2f52 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x31e797fe b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x36882157 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3e4b3117 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x44e0423a b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x493964e8 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x563850d7 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57188a0e b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65539214 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e23af4c b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x745b61fc b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7c157fb0 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8000dc12 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85c6e80a b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9465d3b0 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x98f43c0d b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9fc962cd b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa170ec01 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa2c2d6d3 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa6a8b3e6 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa77e95e3 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb70b4095 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe4caacb b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfcfa6ea b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc183b196 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde569c7d b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xec6cbe0f b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeca86570 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf6ee77ec b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfaa0a855 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x02c9f0e3 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x32a697d7 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x36828756 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd800d23e b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7bcc31cc lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x8f1f49f6 lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xec91a00c lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xffaa1418 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x13dcc8f6 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x455ba62f ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x6cae9dbe ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x25705f27 vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7525da44 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd9a885d2 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x6a9cbaf2 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xbde0e7d4 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xce41cdc0 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8c7bdd84 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe87a13af vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5ab8e740 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x623bd8d7 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xa8f8aef0 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe8f150e6 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1646cb8b xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7ff3dc9a xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xcc97d2db xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe5ee15b3 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe08ca725 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe1dd8ddd xrs700x_switch_register +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x08a1a3a0 ei_tx_timeout EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x224cdb9b ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x28cb1829 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3cf7797a ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x427f07c2 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x763409fb ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8b63b64f ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9343136e ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x96891034 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb9fddefa __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf10d7149 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x26111d5f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2ebde7bc ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7393a27b ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7a0dcf11 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x94f7b72b ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd38795b8 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdf330126 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe2aa8ad6 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfd3f7684 ei_start_xmit EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x1427a4e1 bnxt_register_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xaa337cd1 bnxt_register_async_events -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xeb566cfa bnxt_unregister_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xf7283a0e bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x36755d37 bnxt_register_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x9505dbbf bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xd6cd0d0c bnxt_unregister_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xdccf8015 bnxt_register_async_events +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x339cd9fe cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xbfbff27e cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x0a212312 cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x89e5414c cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x63b4bf3d cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x69b6af59 cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count @@ -2647,322 +2647,322 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0dcccb8e cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1066e17e t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1597b8ff t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1e64e6d8 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x423e54b8 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4ef55e30 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x57d16629 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x79e7e1f0 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x86c68f5b cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9293b701 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa912d763 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca223c3c cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd085e41f t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd2a3b225 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf3704abc cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfbee3e84 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00d16358 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02ecc208 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x07a91f5c cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d1cc69c cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ef3d385 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x105b3bc0 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x12883e9f cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c6524c3 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x51751cbf cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5847fa35 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x59a3cc66 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6aec65d3 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6bd06314 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x74cbc8ee t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x821597dd cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9091d923 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa5440578 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb9e315bb cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdaac9b2f cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdda41f2c cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe31c372c cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0016f5bc cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09a97b9e cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ab0f81b cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b5dc6bb cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0b649d98 cxgb4_create_server_filter EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1195bd20 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1945d675 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1be60e9e cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ef0e655 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f158797 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28bda583 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c23f864 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ecbd6e2 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x332fd8cd cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x336c9bc8 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c9dc6d2 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ddc15d6 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ecbcef3 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46abbb29 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49ee85df cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4bb3a1e2 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1171deb8 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1566405c cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x17879a1b cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x181119ea cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bba3030 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ce7443d cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2033a8ac cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24bb6b66 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2b0d565f cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32c2039e cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c154ad7 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f49dca9 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4172b02f cxgb4_free_stid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73ec923d cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74f4e51e cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80370976 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80f3f1c3 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x84ffa7e6 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8659eba9 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8763d27b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96785a34 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ce74b11 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6f6361f cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57294463 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x72cdaa59 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7673da0a cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x770bcb7e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7749d3e3 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ccaf1e2 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x956bd64f cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a33ac82 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a4f599a cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ae1fa3e cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c8d9c35 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d1c059c cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ec328f1 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9fbcbf89 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5d49312 cxgb4_remove_tid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9c5ca94 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa2d526a cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0c4a6b2 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbee34477 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc20dc618 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb3a9861 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdaff17d cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd243420f cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2540ccc cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaaa60c12 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb408b66 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7a7343d cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd36db4d6 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5509abc cxgb4_immdata_send EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0f34024 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe2408e00 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe65c0929 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7c36aac cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8eef026 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf47f9299 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0d2ec4ab cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb97cd75 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde1c2a43 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4802b48 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8c208cc t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecb64db0 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee16de9b cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfabbf5ef cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffe534fa cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x16344031 cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x248a6d3e cxgbi_ppm_ppod_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5906d583 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa9fa6303 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaa128b8e cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb42dd9e0 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbb260d64 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc95ea1e7 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2c9496d1 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x461db534 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x88f86063 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd82232af vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xea584cb5 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xefe50c8b vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x460c2cf5 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4fde9eff cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5cea545d cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x94e4cead cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x956a2cd8 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd2b09879 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2188f481 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x28a27549 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5b15c470 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x89fae6a3 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa30de791 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf50e6372 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1cb5bd20 be_roce_register_driver EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5ca5c6fe be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x13c8b954 fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7041ad39 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7d4a6dcb fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xa1ca1072 fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x37e05a4b iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb3ba2648 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb768c216 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x002b156e fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x8a5a3f5d fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb0a4c97e fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xe0a31419 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x0d62841c iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x43900a34 iavf_register_client EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xc5e7e878 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe7ee572d prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011272de set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02741309 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03b280ef mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1013e789 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x189085fb mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d6f76ad mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34d60949 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d15279f mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41893553 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d1aeb0a mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56bca101 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d9503f7 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x614478b4 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x631825f8 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x653b4830 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d5a047b mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71e6b686 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x739db309 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75761734 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x00eed043 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xaa7400eb prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x043942d4 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1083959e set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1228a931 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12d28530 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13402bef mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x163f24ac mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16656b66 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b6e3b2b mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x222341aa mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bf9bf55 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d1077a9 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3663755f get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3df0ba57 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41969377 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f785626 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ef804e mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x598f72b6 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c10e87d mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x620ac977 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x652b5674 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734fe9e5 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a63a618 mlx4_get_cpu_rmap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b04c864 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b849f6c mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bafb374 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dc3a144 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9163f5c8 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2fd4bc3 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa623d793 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba02a105 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbae534f3 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb912346 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe537b06 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc15a0fc6 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc76b01c3 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcde1ec36 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce91559e mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8858a49 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd16ca8f mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xede657d3 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf19d5ba5 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf271634b mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f2519a mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf48634b9 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9bd84a1 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb4b6b7b mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfba38a77 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03bbb0aa mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06c53989 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07a99936 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08004f12 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08550367 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80d9b907 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8374eab5 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8539ed48 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8590dd4e mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x894ebcb7 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8baa4097 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x908c4f7c mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96b9576f mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa01f03b6 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa56627a4 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa61b1ba8 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad718901 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaec0409a mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3379249 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb66aa595 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7308f7a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7c73f0a mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcfbe3cc mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9344849 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4d118cc mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7fba76b mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe15775b mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x012b89dd mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05f4fa58 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07034cd1 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07392cac mlx5_core_dealloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089f1089 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0abcd122 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c283d56 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e49f5b8 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fdfa826 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x106d2ae8 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10fd4d25 mlx5_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x128991ed mlx5_msix_free -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12da59e0 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x140686db __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18125492 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1872fe6b mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b3ab93 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19eb5ca3 mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a3be8d3 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0954afc1 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a36970d __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0acfdbcd mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ec276aa mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1012297d mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x123d81cb mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13e65a42 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15b5e971 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16e67d08 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19b26be5 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aa54ccc mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bae680a mlx5_create_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cbd9372 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e6c4d29 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ebc6a22 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f120c22 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f618209 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fa55217 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d4ce7b0 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1eca7b32 mlx5_debug_qp_remove EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x200269a7 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x216ee7a6 mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x217446ee mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2197d277 mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23f28c49 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x251d5f70 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2862aef8 mlx5_core_uplink_netdev_event_replay -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x298d7816 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b4841c9 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7631ff __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c325f12 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e227f7c mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ea01b67 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fa12570 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30be7dd0 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31500af7 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3189c6e5 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x329daac4 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x346b9139 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37cc00a5 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x388faf25 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x395ed6a0 __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39e57a36 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7654af mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cfc4253 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d0925c8 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f5d08a5 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x420476b6 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x445a245e mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x468c9846 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c9417a4 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e068acc mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e44de35 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f5da945 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x518eb7c5 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54cce134 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56111852 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b19732 __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bd16a22 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a222308 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31ba64c5 mlx5_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3424980d mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34a3effc mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34d9c0b2 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x355f60e1 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x357a9103 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x386b5530 mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38d45387 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x393e501d mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d3cf1ac __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d668798 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fe5ef97 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4295cace mlx5_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4395ba69 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43f50937 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x469ae5e8 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4db2fda6 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e7c7f2c mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ea8318d mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f0f18c5 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50b64d3b mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51325ecc mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x513dd13c mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52be06e9 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52e6d305 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53e9a545 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55adf5e3 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5644e13c mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5672fc6c __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a541bba mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a68e793 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5df075 mlx5_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5db4ef6d mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e0aae05 __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6020a521 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60c3d66a mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x613a4848 mlx5_eq_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61be6976 mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x621ca5f5 mlx5_get_flow_namespace EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62ff623a mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x634ef5e4 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63557f19 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64d531dd mlx5_core_get_terminate_scatter_list_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65cff925 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x676f313a mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68ab4278 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68b28438 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69d3e34b __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a2910cb mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b735e66 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b77c50d mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ca53537 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d13377f mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71812c2d mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x749d950f mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x754f20e3 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7588c505 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75e9c749 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76cb0901 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77f37c76 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79bc741d mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bf5b767 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x814d498f mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8318f429 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83cb6af6 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x849c7d01 mlx5_msix_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86679c5b mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63452596 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64e713f4 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6539973a mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x675fabb3 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67dce9dc mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72091bd0 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78ca1226 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79fc90b3 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b78a510 mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c06c864 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7de00ded mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80db2fdb mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81077dec mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x815bf055 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81a3e294 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x823793e8 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83656222 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8541323e mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86f8b3d9 mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e68171 mlx5_del_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x904a6163 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88eefa1a __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89166d8b mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a69c710 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8aca171d mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c723e11 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d065831 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d459326 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d51904d mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8deb99b2 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90b615ea mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91d4ec12 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e44b44 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x926b8005 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929cdc89 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93cd2fc9 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95401752 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x960b7aeb mlx5_cmd_exec_cb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97249875 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a690e59 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f15854 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98a49d25 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bc81dd6 mlx5_alloc_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d36ddd0 __SCT__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d57b3f3 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5df324b mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7085256 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e11b639 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f97c91d mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0119447 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa03cefcd mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa22f1879 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa334c2b9 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa42d7bad mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6b409f4 mlx5_core_alloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa860187b mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b536f4 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa27c6d2 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa2dd70b mlx5_core_query_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac80bf93 mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad5f0753 mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb04223ff mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadd264e0 mlx5_lag_get_slave_port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ca18d0 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28d893b __SCK__tp_func_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb41aec72 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb49c1044 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2a90cb4 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3e904e3 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6a4094d mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba431730 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5792ff5 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70a70b0 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9b4ed8c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5323a9 mlx5_msix_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbacec404 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd123118 __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd784855 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeee2380 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc042178c mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc28e43d4 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc39214d4 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4ce24e0 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc87ea7b3 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8cdeef0 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc977c849 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca0ddfea mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaf2ed81 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc6bb9e3 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdfa894a mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf01399b __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfc1fa31 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f9508f mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc18ec392 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc276d682 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc59be216 mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc85f7c6a mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8ab2d9a mlx5_core_create_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcaf8e63c mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb41979f mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbb52ef2 mlx5_lag_is_master EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc1b143b mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf319a0d mlx5_fpga_mem_read EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd221b7e3 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32a0efe mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd437f025 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd56a6d46 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7017090 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7b45f0e __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8343828 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd95638e8 mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9d6b1e5 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd05958a2 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6e83d82 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7254266 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdab020b3 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdafe16c9 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb1dac13 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb4df09e mlx5_rl_add_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb622108 __SCT__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcfd708a __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde25da94 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfbc08aa __SCT__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e14630 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe29d0d8d mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0072877 __tracepoint_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4945efb mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe51c717a mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3915357 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe43571e4 mlx5_core_query_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe640646c mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb680b00 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebc5cc18 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebe6c7df mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeea4c112 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf01abdf1 mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0285b8f __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1a520f1 __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf44675a2 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf57d5d80 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf628b8fc mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7d67d00 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8bcb494 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9b165a7 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb41fe9f mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb437299 mlx5_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb6890c5 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeb83bee mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe89e220a mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea5df89b mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1e66e3f mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b6f68a mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf71e19c6 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9227bd3 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb3c687c mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe1b3687 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff12e07a mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get @@ -2971,41 +2971,41 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1102a1b6 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x119ea86c mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x141886a4 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16673aec mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x17698dd1 mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19426b21 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18d9f990 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19263c0a mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2911c355 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x299e2562 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3bb366a1 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3fcc8bca mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x40f2d740 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4166dedc mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x489bf360 mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b6b403b mlxsw_env_reset_module -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4f89c9a0 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51d8b15b mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5285a8aa mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5880e18e mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a953849 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf06995 mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy @@ -3013,38 +3013,37 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6f411359 mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6fe999eb mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ce0cb49 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86092706 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x874f5c41 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8e3d20ae mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x960faf31 mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9b1f2770 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x99d46254 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9da97806 mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8c00aa2 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0ac7515 mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb402e564 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb98a32a0 mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc366629e mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register @@ -3052,174 +3051,175 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71a3f99 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd8424a05 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc5c95df mlxsw_core_resources_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe0ce910e mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe39afb52 mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe602e001 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1d4a5142 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x86630cfc mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa9e5d7d9 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xfdd0add5 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2487038d mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5133ceaf mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x2ad6e6df mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x3b762b2c mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x035a8eee ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03724811 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x044934ab ocelot_mrp_del_ring_role EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08791cd6 ocelot_wm_enc -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09b547d5 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0da0387e ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x188ea434 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e9b1d74 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ed1e065 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f1e4d4f ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20311266 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2111c272 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x219b7b0f ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x236cb578 ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x253f54f1 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x254aee9e ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26affeeb ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x270ebc4a ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a689b60 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a7ee013 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0cc14920 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d032dee ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x131d3083 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1cb7b39c ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e655dac ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x222106f5 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x278eebf8 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2845e906 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29f89f69 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c5cbd33 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d788752 ocelot_sb_occ_tc_port_bind_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35c327a7 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3957aff7 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d1c6ba1 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48250f12 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48d2b0e2 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4aeaa7d2 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c80dfc5 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f6f552f ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x639b2f29 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x643fb073 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x669d6e02 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bdc6935 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fc04cf8 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31c00331 ocelot_pll5_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3383aaa4 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b602563 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b78768d ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4002e399 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c772f9f ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d5a9516 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50f32d41 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5171e60b ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5246a4a1 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5339e9f1 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54b1f74b ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d49830c ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e24c1e7 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f433243 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x659ed1db ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66805d21 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68a30d9d ocelot_port_lag_leave EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce19e2a vsc7514_vcap_props -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6feeed0f ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73ad172b ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a086fe2 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f7083f9 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70837275 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72a895e2 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7803f4f3 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x780c4703 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7923d748 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a5e4047 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b9cdd73 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e2164db ocelot_xtr_poll_frame EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5aec55 vsc7514_regfields -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7eba1f9c ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ffe16af ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83dd2fd3 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x876fcf6e ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b2cff13 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b96130b ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8bf28e40 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fe831c0 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93ee9334 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5a1142d ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9f2c6b8 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac28c898 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacfc6600 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad178c18 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad50439f ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0a19320 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0dc55ed ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f906a20 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81d0abe3 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83f2b21a ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x867fd5af ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87d7a3f7 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a831461 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b27604c ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b4b7d02 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e641983 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fc0bc99 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90b5674d ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a7354fd ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c2987cf ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9efa8e50 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f3fad01 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2b40673 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa37d86b1 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5fe24c0 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa89a405a ocelot_port_mdb_del EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0fdd7fd ocelot_wm_dec -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb15da7a3 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4011df4 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb685026b ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd982210 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdb3cdac ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfd8b220 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc005e884 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0b19263 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1019742 ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc27d777d ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc58e6e68 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6760108 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc77df4ef ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8a57c09 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc011ca3 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1b196db ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf7ef21d ocelot_mact_learn_streamdata EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1730057 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2be5dff ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdda86065 ocelot_reset -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdff84e88 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0414d50 ocelot_pll5_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe11695fe ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd184cbd8 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6a341c9 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6d04bc4 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd70e54ba ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdea213c4 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0ef3919 ocelot_mrp_add EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe30fc619 ocelot_wm_stat -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4064c13 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed532a43 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed5e8368 ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf36fe040 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3a49939 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf459ed21 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5663d51 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3431823 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6e236f3 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed85c382 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef3c873d ocelot_reset EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80fc88d vsc7514_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf99414a6 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe345973 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x07b75cfb qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x27d0f199 qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x39d8dc56 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb907d41 ocelot_deinit_port EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5ccb594a qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x68d170f8 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x842ff880 qed_get_rdma_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x1c52d76e qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x807fa56c qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0eff5acb wx_set_features -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x12e77897 wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1b552f3e wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1c848724 wx_napi_enable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x251cb0c3 wx_clear_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x288732aa wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2ee7d0a6 wx_setup_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x36daeaff wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x38dc158c wx_irq_disable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3dbc030c wx_flush_sw_mac_table -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3fceffa3 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4430b696 wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x46442f66 wx_setup_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb2532db3 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xddbe8f3f qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3ee5ba12 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xe35e9d4e qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x08a1700a wx_set_rx_mode +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x08aee071 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x098f66ce wx_napi_disable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0e26cc33 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0e8a4967 wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x10b50241 wx_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x15bf905c wx_set_features +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x162d2c0e wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1d97f81e wx_change_mtu +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1e68ca90 wx_clear_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1ebbb06f wx_clean_all_tx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x232d72b3 wx_configure +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2f06afb5 wx_set_mac +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3392f51e wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3be2429f wx_disable_rx_queue +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4965f783 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4a3904af wx_init_rx_addrs EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3398bd wx_msix_clean_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3eb1e6 wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4d517bf3 wx_set_mac -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x509542f7 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5401f0e2 wx_mac_set_default_filter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5cf1f075 wx_disable_rx_queue -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6bf2533e wx_change_mtu -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6cf8cc4b wx_intr_enable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7355fc89 wx_set_rx_mode -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7fe1c3c7 wx_napi_disable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8168d407 wx_init_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x90a8d9eb wx_start_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x90f96986 wx_vlan_rx_add_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9168437c wx_free_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x94b23a96 wx_configure_vectors -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa4f8ba18 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaf08cb1c wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaff3ad87 wx_get_drvinfo -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb7f89726 wx_xmit_frame -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbab637d4 wx_vlan_rx_kill_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc1ad78dc wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc47c0356 wx_free_irq -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc75e3e76 wx_reset_interrupt_capability -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcacae33a wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcd4d4439 wx_configure -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd09649ca wx_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd4f45ea6 wx_free_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe2a1f0bc wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe34de398 wx_misc_isb -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe3770b4c wx_clean_all_tx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf0bd61f5 wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf4fdceb5 wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf67ba4e5 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xffd8f5a3 wx_clean_all_rx_rings -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0c071f4b hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x24fc6116 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x288b0f8e hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbb2deb8d hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf9349e67 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4ebb230b wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6ecf4fde wx_get_drvinfo +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x74c944f9 wx_flush_sw_mac_table +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7bf495b7 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7c43b904 wx_vlan_rx_add_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7da79921 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7e31ba9e wx_setup_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x85207b27 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9474445c wx_configure_vectors +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x963cd766 wx_setup_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x97e7a972 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa06565f8 wx_reset_interrupt_capability +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xad9713b3 wx_free_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb1b7355c wx_misc_isb +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb35772a4 wx_intr_enable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb9d723df wx_start_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbca272ee wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc0414512 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc299a15d wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc32d290d wx_init_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc79e9128 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc854425d wx_clean_all_rx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe12ac7ab wx_irq_disable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe5a1ec7f wx_vlan_rx_kill_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xeff2255a wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf0486377 wx_xmit_frame +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf3608d28 wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf4820bd2 wx_free_irq +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf54a5e6b wx_free_isb_resources +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0c2a6631 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5d8d3289 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x71d8e7c1 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xebab9623 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf063d525 hdlcdrv_register EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x62eb612a mdio45_ethtool_ksettings_get_npage @@ -3227,1164 +3227,1164 @@ EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x01d11426 mdiobb_write_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x06462a5d mdiobb_read_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x5fc0bfbb mdiobb_read_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x7759bd1f mdiobb_write_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xc12fb052 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xebbdad0e free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x202b6bf9 cavium_mdiobus_read_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x4d528836 cavium_mdiobus_read_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x92ca798c cavium_mdiobus_write_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd631ea5c cavium_mdiobus_write_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x1d03f84b mscc_miim_setup -EXPORT_SYMBOL drivers/net/mii 0x2f626035 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x3a5b2edc mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x6908b3c9 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x76499bc0 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x8f3c9f49 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x9fff9ecf mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0xc174fa80 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xc72586fc mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xcacafc54 mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xfee53727 mii_link_ok +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x11aedfb4 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x357f3aa9 mdiobb_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x4f8a038f mdiobb_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x6c96f14f mdiobb_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xa62582ce mdiobb_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xc5b5a723 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x4232c466 cavium_mdiobus_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x43ec4d27 cavium_mdiobus_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xea6b1723 cavium_mdiobus_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xecebdbcf cavium_mdiobus_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x55e0cf96 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x182e54c6 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x1e3a5b46 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x2857fe21 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x38054a1a mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x473c6b03 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x61f4e253 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x89b5b712 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xa243f1b2 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xbd96e507 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xf7f741ce mii_check_media EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x6d933508 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x9390cff9 lynx_pcs_create_mdiodev -EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xc21f4ec7 mtk_pcs_lynxi_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xd68d009b lynx_pcs_create_mdiodev +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xa6c8f436 mtk_pcs_lynxi_create EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe9221a05 mtk_pcs_lynxi_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x114c4afc bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0c547c86 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x6f18bdcc pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x7dde1fa1 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8685c80a pppox_ioctl +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x47da58e3 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0f992193 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x256b69c5 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9700a5e2 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd4dd2dd8 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xa55f3004 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x037bd6cf team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x1635603e team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x6f09e7fb team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x86344270 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x9d3ffcd2 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xa7e288d7 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xb837ec2d team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0xfd2d4556 team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x55f5f76b usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xbc8d0f4f usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0xf6943d36 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x121f277a register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1f246b05 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x49d3ad2f alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x531f43fe unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7de6cc8a hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa235b1cb detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xca235d15 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd7d81313 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe0e11535 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xea7dfb68 hdlc_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0x7a245ca2 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2f941e69 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x311eae84 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x3c8ad66a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x62e784f4 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x688d0984 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa4229222 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xc642fe90 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xdef3f057 team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0ebf379e usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xae848fdc usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbe0e71cb usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x12987144 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x299dfcd1 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x585ac675 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6144e0a9 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x65cc7838 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6bc8706f unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x793e2147 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa4bb6140 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe329424c hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfb961cf9 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0274b8a5 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x04ed0aa1 ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b71412d ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1a8e19c0 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x25d12884 ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6c0b4c33 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7dd170e9 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x80eb6202 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81374563 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4a127481 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x54a11fe0 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81ef5e19 ath_rxbuf_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa2a70bca ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2fd7c63 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf9db52e ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc011ba36 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc9139e04 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe1b8d6ee dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe709d237 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe946a828 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf4e5f1e4 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe5dcdc2 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0133ea54 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc26091d3 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc4eb89d1 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb40f693 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdbdc293b ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0124b4ee ath10k_ce_dump_registers EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0222cc37 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0267364e ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02706f45 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05ad6599 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b245ae4 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c1dcf28 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0cc4aecb ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d220628 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d5c5fd4 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e8293a1 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f7470c8 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10d40522 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14ae3b17 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28063c5d ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31cb3ea1 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33154942 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35f5a427 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c700fa6 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3fb8ec0b ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41b6cb7f ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4345d81b ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46cd0fcd ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x529a826b ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x530e762a ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b687e49 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e80ae4f ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6adc43bf ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6dd9a87d ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70d56df2 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7478c7d6 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x798ca0eb ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a92e8b9 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b1dd39e ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e5f1d11 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8de18542 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b70d7ef ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9cd03a19 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa416f466 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8dcfe1a ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8f288f3 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa93ccf82 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb30eb253 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf9c0253 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc667c5a6 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd1bd51f ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd428118 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd28e2ee0 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc9ed9be ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe011d0c8 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe632b662 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6397d9c ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8fe64d5 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9583a30 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf71ca84e ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe3791d6 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfee3cd8d ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x02a08add ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x09867a66 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0a825584 __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0ef94449 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1b34b68d ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e4c78b5 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x23ea110c ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x313a74c3 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x35694987 ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x428e37d4 ath11k_pcic_ext_irq_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42a53b7c ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x56ce7494 ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5d34f295 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f71ce14 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x62c9f959 ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67200f3b ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7274b21d ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x774840df ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7ead5303 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x81e8ec86 ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x85659037 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x85e06b95 ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8cf51629 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8f13a1ab ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x92072ff8 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x040b8c6e ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x076a7075 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07b6398a ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08138837 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09c7271b ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x173e8f57 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ed80ee7 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x23de0b78 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2737a3a1 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a45b8a4 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2fbace10 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c6c1401 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46d7ad0e ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48e22814 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bcbb670 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x518f6692 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55974a61 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x565ff68d ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58d78150 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63241c48 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67a02840 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6f6de6dc ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x709ce481 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7661aac3 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77a40294 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a9fde89 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f8f9215 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x818e1bbd ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x839fd8ef ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x891adde7 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f29c119 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90ec6cb1 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9609f10c ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4903c8b ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa513ba72 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa5ee140b ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa66a597b ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad5806f8 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb31505dc ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb65e05b5 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6c21120 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb831bc12 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb735e4d ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc021e02a ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc413c106 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc715faac ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca776b93 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1e4d89b ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd3455516 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdca28a5e ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8523795 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8fdfa38 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe91775df ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebcd0eac ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xef885c0f ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2099b31 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x05af2e7d __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b10f564 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0dbbb85c ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x13493fd1 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1618bbfa ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25f31166 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x26b97e80 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2bc56828 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ef0c5de ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3970a453 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x43b29ea9 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x44d22664 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x471b1f7d ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x47b5568c ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x496eee43 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5ba83e0c ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x653e5e12 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x693069b8 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e28f234 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x76a30178 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7e77b357 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7ec80611 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x822f43a0 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x85f35a73 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8bdf0613 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9acf5cb7 ath11k_pci_disable_ce_irqs_except_wake_irq EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa1ab74b8 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa27b5b86 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa28f311c ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad84901f ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb51aa521 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb8011d55 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc5d6be88 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc7043b3a ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc7ed5039 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xce62cc25 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcf98f53a ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd85dba48 ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe100bd24 ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe48a3a1f ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xea3707a9 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb964f0d ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa58dcc47 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xab3084fa ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb04f2030 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb8af3087 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbafa9f0d ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd3545f7 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd185a8c9 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd2d62651 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe0166f7c ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe0ed51c7 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe46c9c4b ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb49769d ath11k_core_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfe29d215 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf1af3a0b ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf8c0e63c ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfcf8c9d4 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfcfc4a3c ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0063802d ath6kl_hif_intr_bh_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x15b8d358 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1b6f8c1d ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x25148047 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2a73f828 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1f7ea474 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x296e3cb4 ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4be8e8e3 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6011e649 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x78a403f3 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x528a5a4a ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5978b8eb ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6e24bab5 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 0xa6024447 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xaf88548e ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x95bdd9e8 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x96035307 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa69952c4 ath6kl_read_tgt_stats EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb8d1b836 ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf0302aa4 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd66ee1f7 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe07fd0c7 ath6kl_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a0aa030 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x203b18f0 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2301216b ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x393c1647 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3963f2d2 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3aad647c ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3bb92b4a ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x433375d1 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x551efddf ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x57a3fda0 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x667ff137 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6807143c ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77621c0a ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b10726a ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e8d18be ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91a1a830 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa67ce1f6 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7be3b90 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa97c7bb4 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb478c612 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc69af405 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ea622b5 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2079e616 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x20a58a46 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x24169925 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2675efe4 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2e04de41 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38c12d3b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x643c8608 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77c515e9 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7f0277ab ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91f156cf ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2859f11 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9044a6a ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc01c73d0 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc02a4598 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc82b3cfa ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc9afcb72 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 0xd56d10f9 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf79b4c7c ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf9b18b49 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x001a8627 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00dda37b ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x016c5dbe ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01eaf200 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01f0858e ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0318a38b ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05915d45 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06434c84 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x099424e1 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd4479839 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7d6f2af ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd85b4925 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb6b2f4f ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe484f931 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfb63138d ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02bd4087 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0378a0c3 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04cf9214 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0531507d ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05d03f9c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05f5c972 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x068828f1 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x073496d9 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07706a16 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e86d93f ath9k_hw_bstuck_nfcal EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10586975 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13f2c776 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18241708 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18f168c7 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2088c612 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27281258 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27639109 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28739003 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e249195 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f3e0bcc ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f8f802a ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ff7d271 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x312d9532 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32b1ab76 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3984ed7f ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a4386f8 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a478efa ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b897f3b ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c0ac8e9 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40ddd217 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45624224 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4628b4cb ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4984d4a9 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4be2834a ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e6166b9 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4edc0235 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fe7d138 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51ca9368 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52144285 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5225afff ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54b59fc0 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55536e25 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59ba10db ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c708390 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e4e24ee ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63afc2aa ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64a40630 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x651d83e4 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66097ad6 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x661dea6f ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66fbf193 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x682d7762 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6941f982 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b810d62 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7345f335 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x746fe86d ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74d64cde ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a22f0e3 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a9de138 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bd1c1cf ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e6f9ecc ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80bac748 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8245998b ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x837a7df8 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86bee09e ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87508d8e ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88e3d186 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e511060 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e713dee ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x958ccfb9 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9708dd80 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x999788da ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a7d7adf ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d39351c ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa250a954 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6e2cfa5 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa969b7f3 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac7e44d5 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf1bcdbe ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb31587fc ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb36f96d8 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb39bc297 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb59c920f ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5cc079c ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb2aa865 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1c52a2b ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc68625c2 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc83feee3 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca249e50 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca273f7d ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd08506e1 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd15646ae ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd190f193 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2b0c5a7 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7538a2f ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda6a9ac0 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf4f9a0c ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe210ad32 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe22b8d92 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4ea2c3f ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5b5163b ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe629b92b ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb73bd3f ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeda4c61d ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef0e6d4d ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefede930 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4644a77 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe680cf4 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x29be73f7 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb84e247a init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcb5a1d73 atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x022f98e4 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16d37be4 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a11d4f8 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e853e77 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20e7ab35 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x248a607c ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27513056 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a2be3fc ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bc65525 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x330b8c4b ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36117452 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x375fecb7 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38a0ad3a ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x395c1b49 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x396d0fec ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c112d50 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e18bbe1 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42e74c5e ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45884f7b ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49c375e4 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a5557d0 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dc9ceb7 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e26b2d5 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51d60d0c ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53be728f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54128591 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54a52755 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59d52503 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e2239be ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60d4ea09 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x625cf16c ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x653bfdfd ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67272e3d ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x676733f7 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67978cad ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6952aff2 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e6f2a9c ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70a4278b ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x744c4034 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7495a06d ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74f20206 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7614769a ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x761df4af ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7664b884 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x770884a5 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c68bb32 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e030fee ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ee0a0c7 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82548c99 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82d41f66 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84395699 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x854afdda ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x895cf38d ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a1baf4d ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dce1034 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92e19da8 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x992a3a29 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f685484 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fbc8749 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa136ca1c ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3e0eb7b ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2004673 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb630914 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd0d04af ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbde2378f ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe0309bf ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe949863 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc015382a ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1537272 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2817953 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3944d08 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7cfa8a1 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7d4a5d9 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc86aa217 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9884a26 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9de965d ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca5e4401 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaf11929 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd40d875 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce2529fe ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf33572b ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1f30b1a ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3633cb5 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8d37498 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd1e282d ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd90fc3d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf008e63 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0f2d5ed ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe19ec0d7 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5823273 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9575a03 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea65c8a8 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefada75f ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf18ab1cc ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1af84ba ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf62bf0c8 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf79cd369 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfad2d64c ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x35c42bcd atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x41a09c97 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd45bd167 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11966aa9 brcmu_pktq_pdeq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x388fda41 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e39dbea brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4676071c brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4933b73b brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x59dbf667 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x68cf0e8a brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2d6770f8 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x36a79905 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x44627baa brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x70591be2 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7534fa14 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7f732cd3 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8bd2718c brcmu_pktq_penq_head EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xba6d2698 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc56d7c70 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc7015f33 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa8085f98 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcaa515c2 brcmu_pktq_peek_tail EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xed3084fa brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf2578721 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf345289f brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x51e879ba stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x7c692d62 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xc7ab29c5 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x048fe912 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x084c3e75 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x24ed072e libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x33ebd4e8 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4110e038 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4640d07d libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4b8008cc libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5fbe7e8b libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x774e33c2 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x80eedfdb libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa4b635f3 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa99c483d libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaa09f440 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb9303673 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb9d4664a libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbc1717a3 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe1af7410 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xea2e6965 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeede2666 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xff4a925c libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x007f5a21 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00f22d52 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0137e7a3 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0520b011 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0944eb7a il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c904352 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ebd7d06 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x114a8cb3 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13bb0f5a il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14b4024c _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14b69c5f il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18e02cc1 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x197403aa il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a1f7173 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1db283f8 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e1849ec il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ee21e8d il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25203eaa il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe2e80a93 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe5c46d81 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfc45a9f0 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x642e2bc5 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x8ca6b775 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xa4bd67e1 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c5da06a libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3d4be0ce libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x470beed6 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4f138cff libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x55f5800f free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x56564650 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5a6dbc5e libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5e45d484 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x65fbde64 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x81c3f563 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x98369254 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa0569e98 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb0048847 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb3fd1c5d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb7ee4a6b libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcc8ac1c1 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde745857 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe8fdca7d libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6665f51 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7fe4dfa libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00099944 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00e07fda il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0229b54e il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04ca9dd2 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0afc31f6 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13638205 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x137acf4d il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1449fa6d il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16c35146 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x179e74a3 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1af4bc81 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2050a548 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2406c27d il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26c25913 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a578dce il_init_channel_map EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d6b344c il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e3ef067 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3050645e il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3142ce57 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33653da3 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x375a8cf5 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38a638aa il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39c2ddc0 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b55e189 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c3dece2 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f7d39bb il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c6fc41b il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c763b69 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2da034b2 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x308ed1ad il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30c553e9 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x337311be il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33f91320 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3443012d il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x379685de il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b0e60d8 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c705c74 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e28931e il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x400e514e il_set_rxon_hwcrypto EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4331408d il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x448b3f64 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x462fc4f0 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47fb2891 il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49842d66 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c48cab4 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5061e23f il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5393e7ed il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x568a36e3 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56abca69 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57583bf1 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a1307c6 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ad81962 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ba4d5ab il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d382a89 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5eebcbad il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64ec9a8d il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fb248b7 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x717fa159 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x724880b4 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7377e075 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76eccf1f il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7767d525 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79f65b9c il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bb067ab _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f8be785 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fdec24f il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fed1809 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81ae96ed il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8432afed il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x871de691 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ee1d57b il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x930b7b90 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x477082d3 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4891f320 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c14f32e il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fffa37f il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50fbb611 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51382abc il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51baf8dd il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x534cc87b il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a9c40f3 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cb50df1 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d631a48 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60a9aa51 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x668612ae il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dad3ea1 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ee9dd8a il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72108443 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7784fb3b il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x818dee84 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x824b207c il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8470e15d il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84ae08c1 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x928463ea il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9363d6f5 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99f408ff il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b962727 il_free_txq_mem EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8b81495 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac2ab783 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadfd1ed3 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaede7beb il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb19fe923 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb302632a il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e0499c6 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ff576f4 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa35d1e4f il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5676708 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6408ae7 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa776b8f3 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7fea380 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaadcb047 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadf7d8c5 il_cancel_scan_deferred_work EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6b68736 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6fb5329 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb78f6600 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb67a7d9a il_send_add_sta EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7ebeccb il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb805db34 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbcf583a il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc079dca7 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0d21ae1 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc41b989d il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8975073 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca25184e il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca684859 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb012eb5 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb4be2b1 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb5cc222 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcdd29ffe il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd25640d3 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2f8133d il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd836a52f il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc58fdee il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde1ceabe il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe06fff44 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe10add71 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe44817c9 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe851ff54 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe905474d il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef93591d il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0977f21 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8ff4ec5 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba55386f il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd1915a9 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc15d26d0 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2884343 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc44151e8 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc613b1e6 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6986abd il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc70757d3 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd4665c7 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce805b73 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcfc5cb02 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2bea12d il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd66c7fa0 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda52fb23 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc9c2455 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd8c9939 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddf57036 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe04b94f3 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1ca8d0b il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe43be86f il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe69e7631 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe771650d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb2ad425 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebf53333 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef32f2e3 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef9c9222 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf097ee76 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf53fd699 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6368629 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf68f8c56 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6f0c2ef il_send_cmd_pdu_async EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8843156 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc1288fb il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16550877 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8d3614a il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc5e026a il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff05a169 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0547cdc8 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x364471b8 __tracepoint_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4fe8de62 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f8c880f iwl_trans_pcie_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x81d9744d __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x82b7fd30 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x83c1859e __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa7a3e459 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc4eafceb __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x734612c3 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8eb23821 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x92cbb1f2 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa1c80d82 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa4581d5b __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xade56d95 iwl_trans_pcie_remove EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd864a258 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe20fcb2f __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x00a13b16 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x05f35393 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c0b48b2 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x146cc77b hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x27529a1d hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3296c010 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x33070f70 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x342a9a3e hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3e29f9a2 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4f1b77f5 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4fb20c24 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5d431479 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5f582741 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x641f5bd8 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6f18dcc1 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x72ffd134 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x736fdc55 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda04708a __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf8b71245 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x080265e7 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0860f6ba hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b5d8ffa hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x14e5902c hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3042f908 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x308bca0d hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x316768bf hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3332beb7 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52ee643c hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ac1113b hostap_info_process EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75f4bf60 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7b53fb60 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7d6a9338 hostap_remove_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa39f2ec8 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa9aa3198 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x88f9f4d1 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8a627ccb hostap_add_interface EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbbe4a378 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbf01f8a7 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc73249b6 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf6635b88 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4f260f9 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb60bda02 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb6595c50 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb84c7ca0 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb90788df hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5e2240d hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc74b88d5 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd4533cdc hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd6278cbb hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdb46e753 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xefbaa60b prism2_update_comms_qual EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xff0fd555 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2d53f038 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4c8ff674 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x66a20858 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x66e7c0c6 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7c1f9961 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x84f0686e orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8aecbf8f alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1ab52310 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3a6d70bc orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x43075cc3 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4b4e31c7 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4ba01233 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6bea6edd orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7621c058 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x82199292 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x88cdb31a orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa64a0c57 orinoco_open EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb7b6feea orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xccc46eeb __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd5ced6a3 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdbb7fcd3 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xde4b5acd orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xea17f5b2 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf7e706b8 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfac96fa8 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa860d4c7 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xab3db60a orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xbb2d3e87 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdf9dc0eb __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfb78b6b4 orinoco_change_mtu EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x3ce6b533 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x94736ba8 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x040038fb rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b0939d5 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1fbd4bed _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xacba0714 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x0d558543 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0369b5bb rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x065146c2 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18e90133 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d6cdce7 rtl92c_download_fw EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a07427d rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b2a6f81 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2bc92035 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35347a7d _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39b0b7ad rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d7aa146 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x459155cd rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47947a8b rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cec4d74 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57f55d68 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59abcf1f rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ead1d2b rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x650e9e08 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66bd7216 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70316c85 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x716cf39a _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x797c0053 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dca9344 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x881ed3fd rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88d7b5b6 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b787428 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e4b69c2 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98c3489d rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2598050 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2d81338 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa86c752f rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac3c6e77 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8546da2 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb95cd50b rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc28ea99c _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcad6036d rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd14b98c3 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xddb42c8b _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf62afce rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeaba886d rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeda7b3ff rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf07689a5 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0bb1e5d rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0c54cf7a rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x439af818 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6ad660bb rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb0d7e7af rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4585a8fd rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb3cc1d5c rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcc38a129 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xce452eab rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x058fa609 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07ce67e7 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08e72116 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a212b5b rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2eef169c rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32445179 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x395fd333 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42cf4f80 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46cb07de rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cfd0103 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d6a1a0f rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50aa707f rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f4934fc rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a8b5b75 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c3133d0 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73837a34 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7995bd0d rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b80a11a rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c95c779 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c0602b2 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ef3aa26 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91e65f40 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97176cb2 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4c122f5 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8151224 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbed14840 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc796ede1 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc92f35d8 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcecd5502 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd0a2fdb2 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd7522ab5 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd998d743 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda5ddd67 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc15a7dd rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1f0c11d rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7d62ea2 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf830d788 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf84babb1 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf85325e0 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9aa864d _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc025af0 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x64c7d7f6 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x979d5e04 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa72a8c13 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc294cba0 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x70972375 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbc4ce502 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcbc55a90 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf0c01d38 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x011a2732 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08b3501e rtlwifi_rate_mapping EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c308b43 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1037326c rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1172dd18 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12cf23af rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x17a4184a rtl_init_sw_leds +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x181aebca rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a0fa0fa rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b82ce35 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f2daefb rtl_init_sw_leds +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d398d57 rtl_cam_del_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49327aa6 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34d22577 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35cbe4a5 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x416e2caf rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a466db1 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b6bb8e0 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ee2a2bd rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4fbcf378 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5081b3be efuse_one_byte_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a482f0c rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x600a6758 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x627c13b8 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63ee9b3d rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x732e7c1a rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7398c710 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76f907de efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x877eaf5d rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ee0af7c rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62d0c865 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78142a18 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81297ce0 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8737e7f3 rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9de075bc efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0a8d859 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa986b930 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb41aac2f rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbae76861 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbf34a34 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca0ade21 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd26d97b0 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3ffd653 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa30d75fd rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabe91642 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2bb8cd9 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb3f82f75 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9246056 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3cdee0c rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd56ab2c2 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6d33cee rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7614a83 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe102eef6 rtl_hal_pwrseqcmdparsing EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf093f203 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2ab330a rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf86363c0 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd3a4df3 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x433cf7e5 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xdefc8068 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xa8dc8d57 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x471ee669 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b6dc2e1 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ddd0c37 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0e5d6bb8 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10ccaed0 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11d44554 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1675f55a rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17f466ab rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x189688c8 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x192146ad rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19dd7301 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1d3e4c3 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xdb449f14 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x4684e899 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x30a4e5a6 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xdf668e98 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0aa424e7 rtw_bf_cfg_csi_rate EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc2d072 rtw_tx_ac_to_hwq -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x203c9584 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27161101 rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f63df61 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2013a781 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27ab22d3 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27d3263e rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2a6802ff rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d032c43 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3166565b rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x31dc13a9 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x32c67377 rtw_phy_get_tx_power_index EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a0ce2db rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3730e712 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x391c0042 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3df4827d rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41fc6af0 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42517d45 rtw_core_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x452b7df6 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45e78b5e rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x479acc51 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ad29959 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ce4829c rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4daf085a rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4efb7a6c rtw_phy_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52a1b04b rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5332c5a7 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57b6b42a rtw_tx_write_data_h2c_get EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58293c80 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58c42c66 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x596b3ede rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x63903adb rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65355856 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x663640d3 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c8ec236 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fda9a5f rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7155ac86 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x766eb6aa rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7bccc5cd rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7f138010 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x915a587a rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b2f4ae4 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9bf6fd46 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c3ceb51 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa34e52f6 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5c7c730 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa95be71f rtw_tx_queue_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9d7c35c rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xabcff974 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xacff6a7b rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb03acfba rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc2c422c rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc06ae81f rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc294c9b5 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc62efaa7 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcce1bc6d rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf47f38c rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0de8f26 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd2b565de rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd653dcb5 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1af5b28 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5e9ec9d rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe83808f4 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeefc54ce rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf28f28f0 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf89bd3ea rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb4b1a05 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfbf2d77c rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6d644e91 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x73619ed1 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x774b8aec rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc130a5f3 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x2340c467 rtw_sdio_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x3364c2a8 rtw_sdio_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xb5ace292 rtw_sdio_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xd61dafbc rtw_sdio_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x893a2ef3 rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xa840ee05 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0x4b02405f rtw8851b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x8156fe61 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xf6c82c91 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x6d6d60fe rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03ec700f rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x08633eb8 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x091c278e rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e751e79 rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1b9504fd rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1cfa8b46 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x21acec4f rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25e61ca5 rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x269f65bb rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2b895eae rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x35c9882c rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x362a1bc3 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a67e87a rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x40e98cc6 rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46301e03 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a4f83e7 rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x549ed08e rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x57e58348 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5c1c2fb5 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5cd2ee0a rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d6b5fed rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5e831bbf rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5f1536dc rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61325bfa rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6eeaa084 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75b14bbb rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7af0ef06 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x94f4137e rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9535348f rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x95ca0193 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x95f7947d rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x966b8b7e rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x97102299 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x988abaf1 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5acd6ea9 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5be76374 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5cbb184a rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d2d72fb rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d5408f9 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x670345aa rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e0912ef rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6faeec23 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71771d70 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7b815dd4 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c89ade7 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x877095bd rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87e0df92 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9013b7e8 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94aba175 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96dd28a0 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99e8d0a7 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a399536 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1fa0985 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa248739d rtw_tx_queue_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa31d511b rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7497f3d rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa86caec7 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab6c5d01 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb563658f rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7417458 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb969cd30 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbaf9fe47 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe363d68 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf8de616 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbff8602a rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc171c157 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcba51f86 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd65f3b03 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd71e40e4 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7f02964 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9c88226 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdba380c1 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdcf50a50 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe331023f rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4d464a7 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe561623e rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9ede2ed rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2097583 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6acd9f0e rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xde6b14ba rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xea8dc629 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xfc8cd51f rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x5da1b5ef rtw_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x87feecc8 rtw_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x91ac756b rtw_sdio_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xdc925e29 rtw_sdio_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x4691fa5f rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xcbc06a1e rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0x1176dcf3 rtw8851b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xdb2262cd rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xacbcb03d rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x3719fc52 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02214e64 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x095d766f rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0afa6a79 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0db80e15 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1a42def1 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d30cedd rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25abe484 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x26bfa904 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x279fd9f6 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e785fda rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x325b9100 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x33ea879f rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3f17ef6d rtw89_encode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x431279fb rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x450e702b rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d6d1ec1 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4dc34560 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x57cd3477 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d41d203 rtw89_decode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5e7ea552 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66c38db0 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a568a71 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d83c3fa rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x73cd3237 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7536b494 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c7c7f51 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ef3db9d rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7f9edfda rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x80a80f72 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x80e108fa rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8407f67c rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8bcc6fea rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91351458 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9640dd10 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9992cc43 rtw89_mac_cfg_ctrl_path EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac85705 rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9bac97ee rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ea7c64e rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa26835b6 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa5cd9dd5 rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa983852a rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb1947728 rtw89_read_efuse_ver -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb2cb66c8 rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3ace2f5 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb49455c3 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb94e3423 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb9c9d16d rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb9d96f99 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba06fc0e rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb65f291 rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe54f3c5 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbf4c4b53 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc475f725 rtw89_encode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc6cfa6bc rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc7706130 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdf01a909 rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdf11e418 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa1a4d33d rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa448bf72 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa6b28f63 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa6ea2508 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xab0ef8ce rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xafa262b2 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb2a57730 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb375e1cf rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0250662 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc706c48f rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8400874 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd8f0914 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xce1b8814 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcf095846 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd49f12f2 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xda12f94e rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc816a02 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe2913000 rtw89_phy_load_txpwr_byrate EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe44f4d59 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe93227cb rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef1647ae rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf2a83c8c rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf357a05f rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf724277d rtw89_decode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xffb5dfa3 rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0d440e5a rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x11d1486e rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1487c47a rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2290ac99 rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3328eee6 rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x360c4917 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x478e9344 rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x62252565 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe5d87873 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6d8bbf7 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe9cd089c rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf1b7af3e rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf8f43884 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf97dc33f rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa8b2af9 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfc4283cc rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfff64075 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0425cf0c rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0f25b2b7 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x100aed9f rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2bdaf66d rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x38c290b8 rtw89_pci_fill_txaddr_info EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8eef8add rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x95bf38cd rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7be999a3 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8fd96288 rtw89_pm_ops EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbecbea84 rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcbc197b4 rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdbcb2003 rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe2a78ef7 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf60e9c2e rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb2967601 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb4538108 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xba3373bd rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbeae7959 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc0780316 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xce3f5760 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd54deeff rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd9de19b4 rtw89_pci_enable_intr_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x3aee9e1c rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2135c1a1 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8859e925 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd4959113 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe150e26c wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x39b7f6ec fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9144800f fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x91efb772 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xfed5650b microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4fe3d7ec nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9a6f2740 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe718395f nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x583b3574 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x1d6cfe45 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7aa9f38d pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2cdb6295 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5dd02493 s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x607c3c9e s3fwrn5_probe +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x76831b4d rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x07662beb wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x269f11b7 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2e22f323 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6011cc54 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x34f7817c fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3847d2bb fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe6b5acd7 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xecdd8ae7 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x3961fe5f nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x70afdc80 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb508b891 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xccbb3511 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3c13fa9c pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa99d9da0 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0b59618a s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x48923e55 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x76a27681 s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xcd9d738f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb09c3ba2 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x04ac4516 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2764fa9a st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x59336760 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x66e13095 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fe23dc0 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9f9d8017 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb4c7afc7 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc4ea2090 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xce494fee ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe99c6095 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0544176d st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x07f93437 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1737005a st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1a72a97e st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x398a1d15 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x560f97dc st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e8a4adc st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x765cf0cf st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbd8a3222 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc1e660ea st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd1d22f1e st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdb37a017 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe43b06a3 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xedd74a60 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf2261432 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf496df2f st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf89531eb st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfcd42e95 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/ntb/ntb 0x006c2ee6 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x00e7f37b ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x3010a962 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x4b824cd5 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x59095815 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x5d61bb43 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x926e1e45 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x99764247 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xae9b9318 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xba5219ea ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xbcdd20fc ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xbd52b9b5 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xbd8b3259 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xbf68509d ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc317b760 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xd7a9b7d9 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf0e690d6 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xf720a6ae ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xfe109a5e ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xffd99d4a ntb_default_port_number -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x824b2d30 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xc1d34bdb nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x043cbcec parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x10390077 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x10c626ce parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x1d6489cf parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x22e9aa78 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x2f25f2ad parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x30e8a0f5 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x34eb0748 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3694bf1d parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x3c341432 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x3eb65122 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x440ac0be parport_del_port +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x38d66a8c ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5eba9caf ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6f2dab96 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a4bc660 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x99f176fe ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa52ceb4a st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc7374cf5 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc9801a0d st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf2b6af4b ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe67f23c st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01dd178f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x02fd5d52 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x05db8cf4 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x11a50616 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x38608767 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3e7c2d47 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4d53c7cd st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x62b17405 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69d7d517 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6ba61590 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7191c33a st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c465ab8 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d68b862 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb652efe2 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd205c548 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6361453 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd64cfb20 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe2f2cb25 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x034b1a87 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x0cc9dbdd ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x17a8927c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x2261a658 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x34cebc0c ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x43579d0c ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x4d7a1c79 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x51533ac7 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x550a0f60 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x58ffd01d ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5ad05b32 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x62f87814 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x8abcb04b ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x9505ccd8 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x951911c7 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x980f9bbd ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xd0d1cd2c ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe977619a ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xf377ed8b ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xfc02ecbb ntb_register_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x304edcad nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe7f2f6db nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0040d5f5 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x0050b713 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x022e0471 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x02664934 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x1c67b60c parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x22685129 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x3eb4985c parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x467eae97 parport_unregister_driver EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5564d3da parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x50b4ece4 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x594e566b parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x5b69a3d5 parport_ieee1284_read_nibble EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x67431f35 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x6a29fcab parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x71e78dcf parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x752505ce parport_read -EXPORT_SYMBOL drivers/parport/parport 0x7842c606 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x7952d64b parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x7f7b4ce1 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x8fa136fb parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x983ec028 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x9b5dcbab parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xb29c6050 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xb8aee369 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0xbabaa50c __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xcf755257 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xe814c721 parport_release -EXPORT_SYMBOL drivers/parport/parport 0xeef8a662 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xf70248ec parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xfd5f1e86 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport_pc 0x2f4e64a9 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xc5921b09 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x016f5580 pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x02d17574 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1524fe9b pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1b1d1021 pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x283c33ae pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2e30f18b pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x31c2c5f5 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4a6461a1 pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5ef7284c pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x765eb28b pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x784e8d78 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x86861126 pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x88ec3009 pcmcia_loop_config -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaf209bab pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb60e1599 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/parport/parport 0x60b4501b parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x64d9dcc2 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x72dd62aa parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x8b9bc599 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x8d7bc5b6 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x9208af71 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x98e34e0d parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x993fbdd9 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xa52a2be7 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa60f7f16 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb413a78b parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xbaf5409d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd4f74083 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe0d30abf parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xe2751af4 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xe3256a16 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xebea2334 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xecf0ede0 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xf05980cc parport_release +EXPORT_SYMBOL drivers/parport/parport 0xf6f124dd parport_negotiate +EXPORT_SYMBOL drivers/parport/parport_pc 0x20cbad2a parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x772d4bd5 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x13925899 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x42f1d129 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x48fabef7 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4db2a0d9 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x643bb0e9 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x691cbe07 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6ded6a7e pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8a656aab pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9068a6fc pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaed67a00 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb05680f3 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb41d807b pcmcia_get_mac_from_cis EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc4dfafae pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xed917448 pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf5d3db6f pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x194b0576 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd326aea6 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd8742802 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe513e225 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe5e77e5b pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe6fefe01 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfdae5324 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x19dbb569 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1c86f415 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2010208b pcmcia_register_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2413832b pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5e94aa60 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x91b07096 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9399e1a9 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x953f93cc pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc540eebb pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6866b5a5 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6f884e26 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9df5a053 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xba273707 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbdb0e952 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc80d93d8 pcmcia_get_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xde0317c1 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe30c9b4c pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe40678fc pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf8cef8e7 pcmcia_unregister_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x28d714cb pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9f681e17 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x43455990 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x544cbf3a cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x60656b83 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x9953370e cros_ec_register +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x25ca7a17 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x4f80fd7c pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x60d2a8b6 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x695b0f97 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x74aa9a0a cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xbbf2e2a4 cros_ec_register EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init EXPORT_SYMBOL drivers/platform/x86/dell/dcdbas 0xa75079d6 dcdbas_smi_request EXPORT_SYMBOL drivers/platform/x86/intel/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command -EXPORT_SYMBOL drivers/platform/x86/wmi 0x202609e3 __wmi_driver_register -EXPORT_SYMBOL drivers/platform/x86/wmi 0x84ed113d wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0x3ebda48b wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0xc1e89a0f __wmi_driver_register EXPORT_SYMBOL drivers/rpmsg/qcom_glink 0xd7119b40 qcom_glink_native_rx -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x38933f7e rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x514da422 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x05e00c14 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x06a3af81 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1a71b57b __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1b39da13 rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1bcdd479 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x417c5c96 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x67056cf4 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6728bc38 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x903ab7ea rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x923eb3e7 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa84efd63 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xca84ccb1 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcac7c5bd rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xceac1fbc rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd597181d rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe1d805d1 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe90d12a0 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeafe1e88 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfce3a7e9 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x32a0691d rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/53c700 0x2a4da16f NCR_700_release +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x4c13dd76 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x786677d3 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x03415468 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1c2b7697 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x232e213c rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2c84d5f4 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x379ed42d rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x454d2f89 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4e584e4e rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4e61697f rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5f7a818c rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b256cb4 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x73cf80c7 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x99a4f74d rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa298d4ff rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa2a21906 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb6f22966 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc47f22c9 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc5545aec rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe8d7cf84 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfbf00bd9 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xa8f2a35d rpmsg_ns_register_device EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x7c530d7c NCR_700_detect -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x095a3998 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/53c700 0xa7793015 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0xbabb4b83 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0c62b432 scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5edaf007 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb7d00f6d scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd6a698ce scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1eb17769 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x307f9e48 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x50720bed fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6e785475 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8364cd4d fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89d2caf5 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8e74221b fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb230d46c fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd4182f12 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd59ecef6 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdb143399 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x051a141b fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06ccea39 fc_disc_init +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x521b58fb scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6eb8c3fb scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd0de1e27 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x287dc931 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x430b5fd2 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4b4d7f72 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4c590b3f fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bdf926f fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69cc4590 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x75eb0624 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb8be2f8c fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb9312b0a fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf1c07541 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xff701376 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04da3e1e fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0aaeb811 fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c588c9b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x189644b3 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x192e0531 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e6d17b2 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2116fa44 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21cc0e0f fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21f5122e fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11cabc3f fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c17c388 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d3bec5d fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e0c8487 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x227a4e62 fc_rport_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23ba7d52 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25b18cef fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x279d7b0f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29460b3c fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a876eb1 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d848b72 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2db6fa64 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ed5095d fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32c919ab fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a87c9fd fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f4c5e73 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f99a872 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3369cd9c fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33dc265f fc_fcp_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b4e1949 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a00e20a fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a5c765e fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bc884bd fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x505c7dfe fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x554fe731 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a88d8cb fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6bb215c4 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70666874 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x763f92f2 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77dcb874 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79805d6b libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ed49497 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41622023 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x424edde7 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48bdffec fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a184718 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60fc8803 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6504861c fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65132f44 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69023656 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6cc1e23c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d014b6b fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71019d0d fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73ee6703 fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79fb9b65 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b0e4738 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cc79287 fc_exch_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cf1bf5a fc_frame_crc_check EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fa8015d fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f4ff80c fc_rport_recv_req EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8063427c fc_seq_set_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87ff0089 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88ef415a fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e9dc31b fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90cadae1 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c4f8d8e fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8629fb84 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88cbdd06 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d43b011 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x977f93f9 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cbf72c6 fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d544ca0 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d7c0320 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0ccb81c fc_eh_host_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa33acbca fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb016f6d1 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa548be31 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa746cf79 fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2761f9f fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbbd38f1b fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbeb70181 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0228de6 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1ace862 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb280f351 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7806d9e fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0c5682d fc_eh_device_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1e80ad9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5ced960 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc835572c fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcefd69d5 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd02e1c9a fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2797a5c fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd75408a4 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4455aea fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc987de2d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdd20282 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd419af8c fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5913029 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe44ea4bb fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4cd2450 fc_vport_setlink EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8cf2ad2 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebf79de6 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8d05f96 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8710de3 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebd9e0da fc_eh_abort EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfccd01af fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe565b12 fc_exch_init EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x60cae802 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6d463ca2 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a46bd99 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc2b5c1aa sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x97c3ae78 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x98bb3722 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa4b7e295 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa55e096c sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdf7d92af sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x8e61e4a0 mraid_mm_register_adp EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0605559c qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3381cc60 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3d7a9e19 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x61317316 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x65e1edde qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6671c072 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x79a893e4 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8ed29478 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe2155a4f qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe9c00a77 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfd874414 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xff4bc495 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x23813421 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x257ff5fc qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x67af5192 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x79632841 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x89fdf492 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9655e4de qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa2d870c2 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaacc72ba qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xafcba781 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb399b219 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb4bee8de qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xee1fce62 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1b2aa1fa qlogicfas408_host_reset EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2d9d7d9a qlogicfas408_disable_ints EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x47564ac5 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x71241d0f qlogicfas408_host_reset -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x77276934 qlogicfas408_biosparam -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa2c936fe qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcb8ee786 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe27ec933 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8a92c88f qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x911e8e5d qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb3855171 qlogicfas408_queuecommand EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xef8b4166 qlogicfas408_biosparam EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x8b2090f4 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xba1bdca8 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x00a5d439 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02612db7 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0ec24e74 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2fd67843 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/raid_class 0x16b316d1 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xa0c42bb1 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29617856 fc_attach_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x51b06529 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x637495de fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x689b9815 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b444e56 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81107d09 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaed95f5b fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbf4abeaf fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcf1e5308 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd29c3bf4 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe0620933 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe54277dc fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xebc7c564 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf20492ba fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x06498b71 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x120dfdda sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x284e59d4 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d6a5cd3 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x43113c25 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49795e13 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c84867d sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4fa44a56 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x575f6aa2 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57d59338 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57d78128 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6de6605f sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x720c53ba sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x80956fd6 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x863975bd sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x989af6e4 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ab7795e sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae98a69c sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf86496c scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0b805cd sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb134bd23 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3773147 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb653e39d scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb6d06a9f sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbdb37203 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xccb42de4 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe91f4603 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef243cd2 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf79d1a7a sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x29e8ca2c spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x423965bc fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c496571 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x64ab1417 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x65131155 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8044795f fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8263f9ac fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x87670cee fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8982f0e4 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x92bb67ac fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1c74227 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd2c93f38 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdae03998 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xedb30c99 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xefff68e1 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf3fec1fa fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf900200e fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10a2d748 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1c87f984 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1cdffa81 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f9aa155 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2178163d sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b4b9910 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d6c4cdc sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2dd4592f scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x34b5075e sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ed95829 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44312ab2 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c93fc54 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5127f7a6 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5328f57d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67e4e245 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e50120e sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c30627c sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x805ebff8 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82fc7676 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ae11606 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9493b014 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x99de12ef sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9b7babc7 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6c19b74 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7b21255 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc12f8e63 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc66fa587 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4254a29 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfac2ac5b sas_release_transport EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3f572392 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4be68e96 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb4eb11fd spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc7f486db spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1c3e675a srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x766e6860 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa67733a9 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa6dab844 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb26eb9ed spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd0ff1bc3 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2cce8071 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6fc5a422 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x873fc87f srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9d11fc92 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9e91aad8 srp_timed_out -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0115dbf3 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x14d85fba qmi_txn_wait +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5404b840 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x825d6d96 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe05392a3 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfcbc4362 srp_reconnect_rport +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x18b0c8a5 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x234102b6 qmi_send_request EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x36c25505 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x44edba2a qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x45654550 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4984d709 qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x506bf07f qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5c4aa835 qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6a73959d qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x743d361f qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc8abf389 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xeef7e122 qmi_handle_init -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x11ace918 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x836112de qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa1f4ccde qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa22ea64b qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb28f0065 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc8ddf91b qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfdb489a4 qmi_handle_release EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1adc2feb sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x347746c1 sdw_nwrite EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x376156ec sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4562c0ab sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x41548666 sdw_stream_remove_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x49347e1f sdw_read_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x49b08e18 sdw_update EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4a0a148c sdw_extract_slave_id @@ -4395,20 +4395,20 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5d39cc06 sdw_bus_master_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x64019de4 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6bf9dccc sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x74df50d3 sdw_bread_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x75c6a6ef sdw_bus_prep_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7dab0746 sdw_bus_exit_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7f795876 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x89f4685f sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8a38d204 sdw_nread_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8e165cfc sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x971bd546 sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9b65888d sdw_update_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f665957 sdw_show_ping_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa637a539 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa6fad4ea sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xac706d38 sdw_bwrite_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb9e87a78 sdw_read EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols @@ -4419,352 +4419,352 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeb3b283f sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0e4f53c4 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1117610a sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2532f354 cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x26445f77 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2b76bfea sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0a17d4c6 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1be89612 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1ede6224 sdw_cdns_check_self_clearing_bits EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5b593068 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5bbe712f cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x672158bc sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6ccf1d9f sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6f77c637 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x89e4d791 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x925d6d4a sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x978ea9ec cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa3b6d8cc sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa5e38a26 cdns_read_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaa7437db sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc6e9118c sdw_cdns_config_update_set_wait -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xedc38192 sdw_cdns_config_update +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x35c2237d sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x46165a7b sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x46e49e13 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4d474dea cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x541a7a4b sdw_cdns_config_update +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5a922398 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7054d816 cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x705b91b6 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x77c603c3 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9ec3efbf sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa5e0de3c cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb426bf5e cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdda73055 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe795dcf2 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe7fe66be sdw_cdns_config_update_set_wait EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x4b09f9f9 sdw_compute_params EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xe00cf0df sdw_compute_slave_ports -EXPORT_SYMBOL drivers/ssb/ssb 0x0e0b6f7b ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x28f72010 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x34d428da ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x47b3bef1 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x59ce324d ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x5ab794f2 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x5e8e8dd9 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x79ce559a ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x8670c814 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x92bcfde3 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x971e381f ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xaa762cb6 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xaf18c37f ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xb5dc1803 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xb6cc11a3 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0xbca2ead4 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x0071d9c2 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x05f663f9 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x0da30ed8 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x1498030b ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x2858ea11 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x2b31616d ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x32df232c ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x3b3f1871 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4be81d9b ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x686429c0 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x6d9732b0 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x6e347fcc ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xa11a2922 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xa2da7801 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc64e8643 ssb_device_disable EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xce6d50a7 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xdbc3223f ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xdc9a3eb6 __ssb_driver_register EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xeb509926 ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xee3e0826 ssb_device_is_enabled -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x02840d51 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x054d9356 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0b375adb fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d768b48 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2532fa65 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f9b0cfc fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x339a3cdf fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37705e8e fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a701822 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5d9163b7 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68530761 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fcd9911 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8602c26e fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x93ddce97 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95d59061 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9882254f fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ef2ba1f fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab459cec fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb3e40a4d fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb64db5a6 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2a27779 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdcf5ab50 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf971cd5 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe02855c9 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8441d91 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x97b8b599 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x9ddba4b0 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb6472a87 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xbbf9dc99 adt7316_probe -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x058c9547 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x065f8e1a rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x176a70af rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18987538 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18b65024 rtllib_wx_get_name +EXPORT_SYMBOL drivers/ssb/ssb 0xe167fd57 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xe2556e24 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xf605e28f ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xfd70be3e ssb_device_is_enabled +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0b7b34a6 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x272cdd32 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b0617d7 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e8d6ffd fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x59c6bd7b fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ccfb4cd fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5fcd4716 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67b87f4b fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68bcc4c8 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70e01e6d fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83ee831f fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8b5f1872 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8bfc08ba fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9265380e fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa54628b1 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9f0097e fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb280f1bd fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5f5fd6d fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc6f4a5d0 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcabd9a94 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce7f2a18 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda089afa fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc886643 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3c4dcd3 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe43c7494 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x32724219 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x71b68706 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xffebab59 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x73b82646 adt7316_probe +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04acd12f rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06cf2e7e rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x092f6c37 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b289453 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x119e0a1d rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1770b442 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a970e6f rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2204d507 rtllib_stop_send_beacons EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22833b67 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27aea571 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b49dac6 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3130c133 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31cc910f rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33b4e36d rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36b5c1c3 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39a66c46 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a9eedb6 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43115b31 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d7d0ef3 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56270a79 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d797c6d rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ea187f2 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66850c54 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73f188d2 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73fd0291 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74c68505 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x763b2d0b rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x818c7cc7 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85205432 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9192d742 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x949f8e5d rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94f8869c rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9acc7369 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa37ae5ae rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa73e022c rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2a23700 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2c53fc1 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb47b5ce3 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb53ef1f9 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbdea3ac6 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2e1944c free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7c3c310 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc85314d1 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcde833b2 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5a63a49 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfe007d9 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdffb3d66 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe0f2dd96 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf070b8e2 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfce35b84 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe3776a4 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff8f57fb notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06b987dd is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d48c67a ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d71ed9e ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d78ce7f ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2076bb69 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25df794c rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3040e163 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3aecc586 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cc5e1b5 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4509cdf0 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x485caa19 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x500d9eff rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50a96b23 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51588d5d rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55fb38d0 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f8c071d rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6170bded alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x638314e5 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x639c0569 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x644cedae rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6571b0d9 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b75db4f rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c338b7f rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88b8fc99 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88e5594c dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e89aa8f HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x916b7519 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c569ab4 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4f9a352 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6986c87 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7dc2269 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8b07fc9 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab383ca9 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb7601cb8 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9eeae1a rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf0b0346 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2c91699 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2eafab7 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc90c9e42 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb3561b8 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb4a0bf0 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce55db80 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd7bc1cc6 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde913688 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2b6653f rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf16b3d4a rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x061c2b94 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b523f19 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10557929 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1282ba02 ieee80211_wx_get_essid EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24b60d03 ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24e54614 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2591212a ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x259cdf65 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28861d4e ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fa62a61 ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31484f97 ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32592d4f ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x354c7f2b ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e1b173f ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4157584b ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b37ec0c ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d026ad5 ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d54532e ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f34aeb5 ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62140a6c ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x242be733 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d69c99f dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3148ba82 ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a3ad034 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c50b76f ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ddf3b28 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e13e6ee ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e5417ee ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x451736c2 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f2884d1 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51b4e303 ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54c9b0fc ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x599c99fc ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b4b5ad7 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d07ee23 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60f53480 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x628f756d to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62fb7f7a dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6490edb7 ieee80211_wx_get_mode EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6816e99a ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f45d2d3 ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71069f12 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75803545 ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x761330b4 ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x804cc2a2 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ee5e910 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9132ef27 ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94db75ba notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99118c7a ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a72a73b SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa30c9800 ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa602f9c7 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0326a1a ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0eb81af dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba6cf466 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc375b84f dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc69aa8dd ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc890cd4a ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc89233d0 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd08cdbeb ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1bca0b2 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x666fe095 ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b02074c ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ba93700 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7e0b2c0a ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83cf4d21 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83f24597 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x860096ac ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e2c3aed SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92ea396d ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98e46226 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bf4c6a8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f101c1b ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5b4d642 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae6d78e7 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafc97ed8 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb15f7c76 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb992c76b HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb92cbaa ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd49e75a is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc12cc074 ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7d06012 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdf2bcb3 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf7b0fb2 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd021c407 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdec0cc74 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe03c043d rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0e2f274 ieee80211_wx_set_rts EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe36e2fe1 ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe375466c ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe536c4a8 ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe76a1f5d ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed7f23fb ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf18a4e3e ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf4e0a147 ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6a6a943 ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf93f5c51 ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd1f66bb ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x036707fb iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06b46704 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0757a1f9 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x097172ff iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b668520 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1efd5548 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20fb720b iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24e1a6fa iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x267d40c7 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32b69d1f iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f1ddc0c iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40204703 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4054710f iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42ea7fcd iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c1f3e64 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fc366ad iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53eda4c1 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54dcf58e iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e3516cd iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6493525f iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7818b4ec iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c06489e iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8465197a iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bed0a5c iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8dc36547 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90ccf7cd iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94f7e994 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x978760e5 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c061f46 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e07d630 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaeea7e7b iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8d216de iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8fc737d iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbca588f8 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9b5779f iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcdc5e7c0 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd3e9d56 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecddbe0c iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed61401b iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeed6f3a3 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef9fe6c8 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xefef0d6c iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf16dc677 iscsit_immediate_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe757cfe0 ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee99913f ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbf73614 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x029e95e7 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0773004e iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d04d92f iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1fe4d88f iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27f4205a iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31af4055 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31ba99c4 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3659a947 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f202344 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x467dab92 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f337470 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52b3428f iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5530a4e2 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x570a0f85 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6034e59d iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x659f76e0 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6645b98c iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6656a8c8 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d0bb127 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e612599 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81cd44da iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x857218fa iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86b93e88 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93e5344b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97aedd34 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa30a90a5 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa53dcfc9 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9adee3b iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa40276b iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad295817 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb79849b7 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb821f581 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbac9d79b iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcab14e33 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd07fdd1a iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7e2cf0f iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb068bc2 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbe0ea80 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe29aa94a iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2f97e7a iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe67722be iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7ffd35c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf3069084 iscsit_handle_logout_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4ccfbcb iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc19d570 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/target_core_mod 0x051aea5a target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x07777ef4 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6fea421 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf91bff73 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x06dd53a0 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x07e0469c target_tpg_has_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0934adf2 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x0cede082 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x12cac88e target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x13eaf8df spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x08af78b2 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x0983813a sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x09b54716 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bdb102d target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f193761 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ff71fd9 target_cmd_init_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1749b6b3 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x176ac348 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x19cdbe98 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x208d801e target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x21c7028e core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x250274c8 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e82a3f8 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2f992534 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x18be18e5 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x18c14639 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x18fd25ae sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x1936e786 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ac9c717 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2027bb7a __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x22685d11 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2346efa7 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x27f013e1 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d21e2ae target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e44d0d6 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2eabd735 target_show_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x3350d87b core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x36a8c704 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x36ab4408 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x36b6fdff target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x373c4d09 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x339453f0 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3895d0c1 sbc_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b03b339 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x3bb28b2f sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ceeb8af target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d12ff23 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x47fc6d3b transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x483ce292 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ba5e162 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x4cef3959 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d582d16 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x4e6baa9c transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x53f05d6d target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x544c9adf transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x57164249 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3dadf79c transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x400af1c4 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x43de4139 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ba7d542 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bafdb4f spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x508d3fef transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a81a13e core_tpg_deregister EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ca4a102 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5cfd9334 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d8396ff target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f576edd spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x61ba5fcd core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6948567a transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x69a2d722 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x724d0420 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x797228ec transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x82aee51d sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x87c47f67 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d3c7f4c __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x91220518 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x937c68f1 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x9400b4e9 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9595a67c core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x95eddb3a transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9ab81eb0 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x9b50a2f1 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xa0002322 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa3f5ee6f target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xae6751f8 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x62b42385 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x634b991f transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x674c2438 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6dd8cd00 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x754d97b6 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x78fed1ca transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a552848 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8176602a spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x82400eb3 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x840febda transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x85a47d76 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b99845b transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x93fb86d1 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x96ed76fb transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x99c18d07 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a6bc20c transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ceb2e57 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2413bf3 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa25d0603 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5229a2e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xa91782b8 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xac22ff68 target_put_nacl EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf80056e target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xb147b402 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb9a0a21f spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xba691b7d target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbcc6daa2 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1212a78 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc245d21a __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcb303843 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc039833 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xce924cb9 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xcedc61e9 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5d04983 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8765be3 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe07d0551 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xe608c616 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xe636d98c sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xebd522b0 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xee4f9e9e target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb18f5150 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5b1d42a target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd449c68 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe741cf1 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfc56f21 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xc10cf45e passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcef5128d core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3ef1d59 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8c6ab4b target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xde336b94 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1c4db52 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe24cdbae target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4867fbe sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xe67eb578 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9cace82 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb520f23 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xec72dcc0 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xf161387b transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xf16af914 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xf28a6962 transport_send_check_condition_and_sense EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6b0def9 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf58db51f target_remove_session EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x9103c585 acpi_parse_art EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1c38a7a0 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x427464d1 ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x43ad0a94 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x97f0720d ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xa43c1fb2 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb2d21d4b ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xa89155bf tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xf42f6ede tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x2e83c72f ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x88ebf36b ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xa3b04690 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x5183fdad usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x6512a274 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0807e983 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x266b3ea4 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2c5c1182 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4555ff8e usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4ff63660 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x55664d6e usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x666e4989 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x676132a2 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaf503ad4 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc6f41d6d usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe12f7222 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x321b9238 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3dc304b1 usb_serial_resume -EXPORT_SYMBOL drivers/vdpa/vdpa 0x63bdcb6e vdpa_set_status -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x219731bc mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6e94eb0a mdev_unregister_driver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x58ff2cc7 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x920c7e34 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xa94bad1a ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xcc7a725b ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xf26fe1e5 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xf3047653 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x59234c45 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xd609741b tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x1a3369e5 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x440487d8 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x48dec8ac usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x25a0da1b usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x4cf6af65 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00fb2a6a usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x23bdcffa usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x275e826c usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x37d7c1f3 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4287c292 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x80dcabbd usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbd7548f9 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xce124a25 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd48a2cee usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xee5372c4 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf12950c2 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3d3dcd66 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdcca61b1 usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0xec0dc45b vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5c14fe3c mdev_register_driver EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x72a328ac mdev_register_parent EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x791a9dcc mdev_unregister_parent -EXPORT_SYMBOL drivers/vfio/vfio 0x02b73c2e vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa3eefaf0 mdev_unregister_driver EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x2a37ed3e vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x567d11f4 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x89b40e91 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x8fa7082f vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vhost/vhost 0x3d312683 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0x68b3b0c2 vhost_chr_poll +EXPORT_SYMBOL drivers/vfio/vfio 0xf637c64b vfio_pin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x330b87ff vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x88bb9179 vhost_chr_write_iter EXPORT_SYMBOL drivers/vhost/vringh 0x22535a6e vringh_abandon_user EXPORT_SYMBOL drivers/vhost/vringh 0x22f44e7d vringh_getdesc_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x31848eae vringh_notify_enable_user @@ -4796,148 +4796,148 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xd8535ad6 vringh_init_kern EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern EXPORT_SYMBOL drivers/vhost/vringh 0xe08ccbed vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/video/backlight/lcd 0x2c5ff166 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x486d2877 lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xb923ade2 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xb9d04dc6 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x04ed87ce svga_tilecopy +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4ec47df9 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x72531d69 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9d0f5524 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf0df24ce 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 0x1d8c957f svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1cccf847 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x34c67a87 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4c2559d6 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6beb95b2 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4c159d0d svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80db31b6 svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9487480e svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xba4dbd30 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc574210b svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb602d3bf svga_tilecopy EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf3b1640c svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf418af0b svga_get_caps 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 0x65240e58 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xced3a955 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x5699fc27 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x17722816 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4dfb9081 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x8aa761af matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0d724be7 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x22c6b39b DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x371527d0 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4e296b50 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x330785ec matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x8de68d91 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x604d3e09 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xab016238 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbcaf7559 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xee174eb2 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x600c4002 matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf582d51e matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0eb07710 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xf6033291 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x68f454fb g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdbef2802 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfbe590f6 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x16f3375d matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x38a62f7b DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbe9e9ffc DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc01ec2d5 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe474bea4 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xea7dfd85 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x24c5a8c2 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x770719b7 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7d9920a5 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcb34410d matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x5e26ccf5 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb9da930d matroxfb_g450_shutdown EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3f84e623 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x84882a4a matroxfb_DAC_out -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb7e1df79 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xad42154b matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xad5abaa5 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb61b9d76 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc62037ca matroxfb_DAC_in EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe0b37ade matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf564749c matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x0e7e8fb1 vbg_hgcm_call -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x12e721e8 vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x124862c8 vbg_hgcm_connect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x161a9143 vbg_get_gdev EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x569b312f vbg_info +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x64326a82 vbg_hgcm_call EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x68f1cf1a vbg_err_ratelimited EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x70cdcbfd vbg_warn -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x74ed8758 vbg_put_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x76c91128 vbg_hgcm_connect EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xc7e9f0d0 vbg_get_gdev -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7769c7a9 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb41e838c virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb6d0be96 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf2dff1a4 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xfae05008 vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xfff29f3f vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x223d71a8 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3c4e3714 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x41349d1b is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x6f55f0ec virtio_dma_buf_attach EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x137b4c38 w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x67861243 w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x0a579b42 w1_ds2781_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1699cab5 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x2b160a59 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0x3292c909 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x2686a323 w1_remove_master_device EXPORT_SYMBOL drivers/w1/wire 0x5a366ce7 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xabf7dd37 w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0xc076ed6c w1_unregister_family EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport -EXPORT_SYMBOL fs/fscache/fscache 0x1490e0b3 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x1016e9da fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x190f02e3 __fscache_acquire_cookie EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write -EXPORT_SYMBOL fs/fscache/fscache 0x1a497711 fscache_withdraw_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x20692d08 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x1f2dcef3 __fscache_begin_read_operation EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x28f5d828 fscache_end_cookie_access -EXPORT_SYMBOL fs/fscache/fscache 0x2a89d6fd fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x28bbd0f4 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x29396e79 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x34cf1a47 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x39cf82a4 __fscache_invalidate EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates -EXPORT_SYMBOL fs/fscache/fscache 0x4ad7f1d7 fscache_put_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x53a22191 __fscache_acquire_cookie EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem EXPORT_SYMBOL fs/fscache/fscache 0x5954d7ac __SCT__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x60abd0ca fscache_resume_after_invalidation -EXPORT_SYMBOL fs/fscache/fscache 0x61b480bc __SCK__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x73153188 fscache_wait_for_operation -EXPORT_SYMBOL fs/fscache/fscache 0x73368db3 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x615845ab fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x68f23ac6 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6d356e90 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7aab352a fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x7be2bf51 fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x83893cf9 __fscache_resize_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x8708a410 __SCK__tp_func_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x87d24002 __fscache_use_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x8b7575a5 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7ccd236b __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7f0a847a __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8a418b6e __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x90665945 fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x9c29ae3e fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x913a0ec1 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9734f0b7 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9c7a8d25 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x9d9ff35a __SCK__tp_func_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa23cbf14 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xaa7e0d77 __tracepoint_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xab8159a0 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xae328597 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xa44fc3b1 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xa712562c __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa7d2fc9f __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0xa804e135 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xa862f2f4 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xaceb38c9 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xad6206b5 fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xaf5de74a fscache_relinquish_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb188bd32 fscache_end_volume_access -EXPORT_SYMBOL fs/fscache/fscache 0xb2462a44 __tracepoint_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xb250fd48 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xbaac6a06 __fscache_acquire_volume -EXPORT_SYMBOL fs/fscache/fscache 0xbbf9b913 __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc3577286 fscache_caching_failed -EXPORT_SYMBOL fs/fscache/fscache 0xc5f04a93 fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc92ce2a6 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbdd04fd6 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc5a6bf3a fscache_resume_after_invalidation EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xd4634a50 __fscache_clear_page_bits -EXPORT_SYMBOL fs/fscache/fscache 0xd99e4aa0 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xda9b74e0 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd469bcc9 __tracepoint_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xf8e6f7e7 __fscache_begin_write_operation -EXPORT_SYMBOL fs/netfs/netfs 0x0023a9cd netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x5602f9e9 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x65741341 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x7135f58c netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0xc46139cf netfs_read_folio +EXPORT_SYMBOL fs/fscache/fscache 0xe1d3c47c fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xeb3b5163 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xf29de7aa fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf5117d91 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0xfe071804 fscache_relinquish_cache +EXPORT_SYMBOL fs/netfs/netfs 0x0fd6d870 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x40c82d16 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x4aff3df3 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x81ff6e34 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xf886f43d netfs_readahead EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x181fb481 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x88ecbcc7 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9e0a14af qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xcd590b94 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xd1a745b4 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xe10be464 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x0eb1cce7 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x1aa77e6c qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3402e9eb qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x769145c1 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe3d4107d qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xfd36b4f0 qtree_read_dquot EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -4963,14 +4963,14 @@ EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x18c94fe1 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del -EXPORT_SYMBOL lib/lru_cache 0x4e5d31ea lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2cc92efb lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create -EXPORT_SYMBOL lib/lru_cache 0xbe50e1d0 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index @@ -5012,877 +5012,877 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x2d07d8f2 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x375d5f21 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6f284299 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x9ba5ec57 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa713a78f lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb0cb9b52 lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0x08b30001 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xc4ff8d0f unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0xa2fa776d register_snap_client -EXPORT_SYMBOL net/802/psnap 0xcbf4fd99 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0478902a p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x05d76d06 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x084f3224 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x0a7324d5 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x0fa9657a p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x1665d0b5 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1f0422c3 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x21df104b p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x257af2ad p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x30ae9bdb p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x36f045e3 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x395352c8 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x3c3fc314 do_trace_9p_fid_put +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2cfe65c6 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4c22eae7 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5ffb06dd lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8a61b2f2 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa42fd3b2 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xca983952 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x2647a942 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xaf74a81e unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x2729eeb4 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x7da75f03 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x098fa5c9 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x0aa2201a p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0e503e88 __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x16ca9822 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1a3cf014 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x21b13a35 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x2384504c p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x274aaae5 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x283970bb p9_client_renameat EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41bb12f9 p9_client_destroy EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x47a1d1bc p9_client_statfs EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x4c19b85c v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x4fdaaa67 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x572c6ee4 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x5b41080a p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x5dc0413e p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x6d33cc81 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x560a7071 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x562a08a1 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x6e295d53 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6f5673d9 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x71455c47 v9fs_register_trans EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x77fd3e29 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x815c882f p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x86172faa p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x86b243d9 do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0x87f52152 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x92dbcc5c v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x771e1743 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x7fe3a70b p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x82572791 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x82a54920 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x8f98866c p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x9102dd57 p9_client_link EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9a9d0829 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9d0bd0d0 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x9d8baa00 __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xa0b86f15 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xa92bd70e p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xaceb2893 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xad07da77 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x9a331354 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa342d6a2 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xa8adc8cc p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaa27c766 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xaa6876e6 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xac730045 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xaefb39a6 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xb1d652a8 p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0xb798a888 __SCT__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xc4ee0f65 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc8042102 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xca28e2c3 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xcec99593 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbbde43a9 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbf101f25 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xc084fdc6 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xc5797486 __SCK__tp_func_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xc8067f7a p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcb5287c1 __traceiter_9p_fid_ref EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd388a4c3 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xd8ac2434 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xda45997c p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xe2e1fe35 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xd5ea0ced p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xd6d16e16 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd8480663 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xdd79558e p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xe3409341 p9_release_pages EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe6977abb p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xeb73df35 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xee162bab p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xee5cd0bf __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xf6b6f9dd p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0xf700105b p9_client_remove -EXPORT_SYMBOL net/appletalk/appletalk 0x0d61b260 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x423b0ca2 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x8ccae099 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xa8c1b2df atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x00ebeced atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x01d1cb08 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x11b64800 atm_charge +EXPORT_SYMBOL net/9p/9pnet 0xe67e95ef p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xedc2e494 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xef19cbba p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xf7a36f51 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf95138a1 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xfad6e3d9 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xfc1d07e2 p9_client_readdir +EXPORT_SYMBOL net/appletalk/appletalk 0x16d04550 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x2eca902c atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x6cbde316 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x75f7a2d0 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0ee4893d atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x184e3342 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2b8b7dbe vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3d3ab3ba vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x3e2a8e69 atm_dev_register EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x4990efc0 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x7977e247 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x83446c1a register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x5791607e atm_charge +EXPORT_SYMBOL net/atm/atm 0x5e91c33b atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x60da466a deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x656d2388 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x8e838377 atm_dev_deregister EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa74a69b1 vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb61e3e71 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xbed5e5bd deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xc3bb27a0 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0xe51d8694 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xe87e4b8d atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xaedcb614 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xcf59293a vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xd80ad624 atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x05d6dde5 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x06c89096 ax25_find_cb +EXPORT_SYMBOL net/atm/atm 0xf4b7271c register_atm_ioctl +EXPORT_SYMBOL net/ax25/ax25 0x12007ec3 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x12db9656 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1cbcb8e8 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3394eb6b ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4560d8a4 ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x51f1a08b ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x46093105 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x7378609a ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x8647b9a3 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x812e44dd ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcdd0f649 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe9767177 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x01064126 hci_recv_frame +EXPORT_SYMBOL net/ax25/ax25 0xf771b14c ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xf8917f25 ax25_listen_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01cf32f1 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02c33327 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02c6374c hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x032da743 l2cap_unregister_user EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e4b5e8f bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x109a3141 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1693426d hci_devcd_abort -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16e33575 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ce3bd68 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e407173 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20d8b80c hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x071ae763 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0872da56 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0aa24505 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x117f2ab1 hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13d8336b hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15d6e7d3 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x19b988e8 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1db6da01 hci_devcd_append +EXPORT_SYMBOL net/bluetooth/bluetooth 0x200b8fee hci_cmd_sync EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2461a3fc bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x255b9f07 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x265642b6 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b2100cb hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b953f4f l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c8fc9fb bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x31e8617a bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x331984b6 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d985a62 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fb2b4f0 hci_devcd_complete -EXPORT_SYMBOL net/bluetooth/bluetooth 0x45bc1dd0 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x468e5521 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x48fc19f8 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e6eeaf0 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5eb7f523 __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6192d0ef bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x661d9a4a bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d48645f hci_devcd_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7237d18d hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0x796efbb2 hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25834511 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ada7edb bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x302b3522 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4045b734 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x406ce4bc hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4360cd7a __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46ad96e9 hci_devcd_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48f9f625 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e4ef664 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5504a436 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58162cc1 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x587e6ff1 hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f644ae6 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60dfc1ba bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62ca3aaa bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6621eba0 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c709ae7 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e9594f4 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70666b0b l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7184bb45 bt_sock_wait_ready EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x83c4e846 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a289777 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89251975 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a3e5691 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d3cb812 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ecc5f33 hci_devcd_abort EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x90312e1a bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x95d8de58 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f9e54ba __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9aba050c hci_resume_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xa36d67be hci_devcd_rx +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa456c51f bt_procfs_cleanup EXPORT_SYMBOL net/bluetooth/bluetooth 0xa60137a1 hci_devcd_timeout -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa639e4f5 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6cd8b8c hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xac557497 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb07b57ca __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1003c21 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb291c2d0 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2e852d6 hci_devcd_append -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb45c9f00 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb563f21e __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5c1f1cd bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb909df0e hci_devcd_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe1e9436 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc53412e4 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9373635 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca84ccd0 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd44cdbe3 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9e7802f hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb28c4ee7 hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9774776 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc22c572 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0100d04 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc194a716 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8c246e3 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc520222 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcffa1662 l2cap_chan_close EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7940e9b bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8d08449 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8e9f87f hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8627a59 hci_devcd_complete EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe930a152 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xea65fdae hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf55cda01 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa8eae58 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfec11deb __hci_cmd_sync_ev -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2b09af75 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x50e0b4a1 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x554ac13d ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x835cc71e ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x86bd3e15 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc0715156 ebt_unregister_template +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5d390db bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe98c89c5 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec0d1b9a l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xee67d826 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6666e95 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9ce054b hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9e6c1a0 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff45c426 hci_reset_dev +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x36448303 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5f7193fe ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6e468fec ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x84f3b404 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8fb0ca8d ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd128ec0a ebt_do_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer -EXPORT_SYMBOL net/caif/caif 0x3a48e327 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x68ab2e00 caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x7a6aea36 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6231573b caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6d5859ea caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xa4125cf9 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xab6cc7c1 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xdef93007 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0xf1301ef5 get_cfcnfg -EXPORT_SYMBOL net/can/can 0x5069b5d5 can_proto_unregister -EXPORT_SYMBOL net/can/can 0x70438ec2 can_rx_register -EXPORT_SYMBOL net/can/can 0xa6d4f0cc can_send -EXPORT_SYMBOL net/can/can 0xd056bd93 can_proto_register -EXPORT_SYMBOL net/can/can 0xfa3955a5 can_rx_unregister -EXPORT_SYMBOL net/can/can 0xfe658359 can_sock_destruct -EXPORT_SYMBOL net/ceph/libceph 0x045add3d ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x0470b945 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/caif/caif 0xc27aafb1 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x4e3c28e4 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x5c7b57e6 can_send +EXPORT_SYMBOL net/can/can 0x6ed1ddbe can_proto_register +EXPORT_SYMBOL net/can/can 0xa28cba5e can_sock_destruct +EXPORT_SYMBOL net/can/can 0xaefcf38c can_rx_register +EXPORT_SYMBOL net/can/can 0xd80aecb0 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00e6fed6 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x016a8191 osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x06690223 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x072bc4aa ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x07791d3f ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x08602b72 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x093b81be osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x0d6202f7 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x0d7dc8e0 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x0e2ec0c1 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x0f8e6eca osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0f967fce ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x11fad245 ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x12118f3e ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x128bf92b osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x07272382 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x0d21d123 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x0dc11514 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x11c6a965 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x13145774 ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x155f6e44 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x139a9a93 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x13a25f6b ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x1985ef21 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x1ac57e6b ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x1def1987 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x1e065658 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x184cbd17 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x1a517cc1 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1ea946f6 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x20711778 osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x215fcc7b osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x224ab69b ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x234b9d93 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x242ae7a0 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x2943455f ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x2a75b140 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x22323b83 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x22570368 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x22c03660 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x23481776 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x23cc6a7d ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x27afa8c9 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x2a50c974 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2fc0b685 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x307b3122 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x321ced8d ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x322a26e4 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x35ed63a3 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x37ada640 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x381759ff osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3a9233d4 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d2f37f3 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x40ef7044 ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42f11538 ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x44e29440 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x45bed3fd ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x45e2d249 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x42b14518 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x43e3945c osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x44714f32 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x460196f8 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4cb4c162 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4da57ca8 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x4fa01bb0 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x4b4a7078 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x4c7d77ef ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x4ec7bacf ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x50b4f3ed ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x54009da5 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x55fdcd8d osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x5636c075 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x518fba73 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x5352aae0 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x53edbbf1 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x5474ba48 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x57812949 ceph_destroy_client EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5a9cdc0f ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x57e5733f ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5d061aa5 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x5d184112 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x5b29a359 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x5c3feadf ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x694fb380 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x6a0bf826 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x63a1aa57 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x65751c2c ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x6686445b ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x669c8fe7 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x679b71ed __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x69640558 __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6a7ea7cd ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x6b4af9b0 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x6eb2c207 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x6ef1e0f7 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x703ba03f ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x779bdc11 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x783f35f6 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x81fd7c28 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x842c30e8 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x6a94c7c9 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x6de1cbc7 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x70a668b8 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x75e30300 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x75f78973 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x792f72b3 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7973e1fd ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x79fc234b ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x808f740c ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x811bb6e5 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x82ee52f2 osd_req_op_cls_response_data_pages EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x879701b3 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x880c7405 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x882e7e2f ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8d2f9dac ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x8d731855 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x9285f5eb ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x880754bf ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x91e4d924 ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x94bbe427 osd_req_op_extent_osd_iter -EXPORT_SYMBOL net/ceph/libceph 0x9509c52a osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x9557a09d __ceph_alloc_sparse_ext_map -EXPORT_SYMBOL net/ceph/libceph 0x9565d7f1 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x96ce0aa1 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x97771e53 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9a5a20aa ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x98cafe82 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9a156ce5 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x9a804d75 ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c9ea8c1 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9e640edc ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x9f74597d ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9d64f232 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa2854e91 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xa5ab46a3 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa739c76c ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xa757d51b ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xa91f358a osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xad100c17 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xa739e92e ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xa780c4f9 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xaa26e943 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xabcbcccc ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xadd45156 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xae98b153 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xaef605cb ceph_parse_param EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xaff7487c ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb27a8601 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xb4a11ca1 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xafffd5aa ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb0224bfd ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xb075884c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb38c38b4 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xb4cac379 osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb68e540f ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7483e4d ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xb79c788a ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xb82d97c6 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xba38e592 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xba41e0bf osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbd4c5933 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbe9f3e0f ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xc112b2dd ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xc11bdd21 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xbe50eb5a ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbe95a401 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc5943e35 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xc85e7bcb ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xc8a59bae osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0xca1aca17 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xc823672a osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xccdd4349 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xcdfbf72b ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xd26ed05f ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xd332d2f2 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xd3cfd8bf ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xccafec43 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xd46a6fc5 __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0xd4c982a6 osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xdac6ab83 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xdcc24d7e osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd60e5547 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xdafd9df2 osd_req_op_copy_from_init EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe283452d ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xe1bcbc45 osd_req_op_extent_osd_iter EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe6f0030e osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe43cb493 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xea1a2691 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe88ea90a ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xeb7d1e9a ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee361577 osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef1a97e7 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xeefe3000 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xef4f55f8 ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf26a3dd3 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xf287440f ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xfd048ee9 ceph_monc_want_map -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x747a29c8 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xba4ce991 dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x3e113b01 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xde881bd4 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x563adb7d wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x82b9f3ba wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x8961f724 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc14953ad wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe116c10b wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfceb3cd6 wpan_phy_for_each +EXPORT_SYMBOL net/ceph/libceph 0xf455fc9a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf4b584cf ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xf5cfe6bc ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xf70fd8a2 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xfb102ea9 ceph_auth_is_authenticated +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2cd9f831 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd22483a6 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0xfab7dd3d is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xfaf12fb7 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x019411eb wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x258d77e4 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4701d8a7 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6393023e wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd949781a wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe35376a3 wpan_phy_free EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x6c97a993 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xe306418d __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x8d824b97 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc15eee6a __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xd58ff538 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x44272ebd ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x76321ee6 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x95ccbb5b ip_tunnel_md_udp_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9d9fe667 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb080a79a ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x00ad692a arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x45e9dd9d arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6fff610c arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x899db844 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb2c49e20 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xca3620a4 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdf774c2c ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf881e984 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0xcd1b00cf xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xfc694ee8 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5c4d6f23 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1a6a9170 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x31d55b3a ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3f460c4c ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6476c418 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9a9872d7 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa6e01971 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc77affe9 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfe42d765 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xff8ce8f2 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x38e16676 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9ea92bac ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa7ef4735 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xeb76995d ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x8aebeaf6 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x90c0b408 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3eac3280 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9293c4c9 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x1d63de3a lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x22d75565 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x6b8aedf4 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x71b5ca5d lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x8ad499bd lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xd1c0d1c1 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xf8228dc8 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xfeae42ca lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x283e889a llc_set_station_handler +EXPORT_SYMBOL net/ipv4/gre 0x25d1aef5 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x10178cb5 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x317bde61 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x36648544 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5be30fdf ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa1a3e57c ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x005833a0 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x01a94df3 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4091b27b arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x88771c23 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x01b41fab ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x89cf66a6 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcf722590 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf2696fcb ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0xa540c1ae xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xeb67f121 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x272f3aa0 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x062dbbe6 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x208920ed ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x54107a7d ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5b8ae54e ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xab5c87b4 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc4a300a9 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcfffd50a ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd9d2f006 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf5efb73a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x63a67764 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x766c4ebb ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xbca15606 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xea3f91dd ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x49162086 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x7d060187 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x03bee4a2 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xbc42377f xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x2168fbeb lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x3f404ea2 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x487988b5 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x5820b534 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x5ee1201e lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x89136a6f lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xa1a3c5dd lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xded80a8a lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x0d2d5f5d llc_sap_find EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x4a66c1e4 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x42f1fd98 llc_add_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x585026d9 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xa5df1d28 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xb47b75c1 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xbd300157 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xc69de0b9 llc_mac_hdr_init -EXPORT_SYMBOL net/mac80211/mac80211 0x004410ef ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x030d6d0e ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x0459f345 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x08df5d3c ieee80211_beacon_get_template_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0x0952106f ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x0ae04e47 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x0d41d27e ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x0d6c36e5 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x0fe0c23b ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x107b2062 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x1246606e ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x12750cce ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x1684867b ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x176114c7 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x19658dd0 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/llc/llc 0xc3008a37 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xc9c1afc4 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xdbe3df84 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xdf7b0230 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xf4b501ba llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x00930d50 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x00972e3a ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x017ae7f1 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x088b5df4 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x09ba5114 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0b785efe ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x0c13a49b __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0d728375 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x11385e6f ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x14f19b0b ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x16e878d7 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x17a43b74 ieee80211_queue_delayed_work EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1a8f0f3c ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1ca299f5 ieee80211_tdls_oper_request EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1e31dbdc ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0x219549d7 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x21f4b0e9 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x23757a39 ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x240d3429 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x2443772a ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x26828653 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x2a22cc6a ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x2c21e350 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x2e827269 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x343b0c5c ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x35b3af17 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x36144afd ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0x21209bf3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x222fbcd4 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x2321f620 ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0x26f77291 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x28b95985 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x2c73bce8 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2d80375e ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x32a4cfbf ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3371f42e ieee80211_get_tkip_p2k EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3ae71784 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x3db79e91 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3f4739f5 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x405fe8ca __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x417f8d7a ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x427756cf ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x4368ca23 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x4561845e ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x4575ea7d ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x48ef93ae ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x4a26d2f5 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x4d1a0806 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x5567c1df ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x56e23618 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x5cb4ec1d ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x5f613d73 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x5f9501fc ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x609bc53a ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x64bdd2f8 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x67c5f42f ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x68f34574 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x6b0f64f2 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x6ce0d1c7 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x712432c3 ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x73e131cb ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x74f9dad8 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x80acb2ad ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x846a5a39 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x88325252 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8cb57cee ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x8e8df857 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x94b11cb8 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x3a17c13b ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x3a8b0a29 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4249e919 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x449b4090 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x44b31513 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x469f86e4 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x46edefee ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x490edf54 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x4bc64c0a ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x4c15c9fb ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x57f8dfe5 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x5fd36284 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x62d86590 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x62e9e191 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x64be5175 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x65d17706 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x68f0c07f ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x68f6369a ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x69c2cb77 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x6b85c2b1 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6c556cdb ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x6d7cd38f ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6f76e9e0 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7291268c ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x74601344 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x76162962 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7d6839b9 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7d7ab3c2 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7dd75644 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x7fac2085 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x803143e8 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x82bdb489 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x88ec56d6 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x8d28cb13 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x8e63c820 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x8ff6f127 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x94f1fbd9 ieee80211_get_fils_discovery_tmpl EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x982e266a wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x98f1e1ae ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x9875fb48 ieee80211_beacon_update_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9a1623ed __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x9cd48564 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x9d891ad6 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9ed4a142 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xa0116fee ieee80211_refresh_tx_agg_session_timer -EXPORT_SYMBOL net/mac80211/mac80211 0xa6a47ed5 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xac61fc14 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xaea814aa ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x9ac6afe9 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x9c4518f2 ieee80211_beacon_get_template_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x9d0fa544 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x9e976728 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x9f83e837 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xa09fdf1f ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa40b0051 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xaa4d0e5f ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xabf19ea8 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xae519821 ieee80211_report_wowlan_wakeup EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb10969f3 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xb458c510 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xb72c8d67 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb7b24a11 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xb931aa4d ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0xb99e3161 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xba879958 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xbdfc3ad2 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xc390f8e0 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xc4471851 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xc615865d ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xc67a6a19 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xc745d3e2 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xc7bedfd7 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc8a11b46 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc9d0b927 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xccf8319d ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xcdfe9595 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xcf48d24b ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xd0adbb31 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xd4e33c5d ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xe09e4844 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xe353f902 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xe4576b8a ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xe7494d36 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xe8e5afd2 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xea8a32f8 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xebf05f9c ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xf0aa0b1f ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf7342ccb ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xf8fd64dc ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xfc59180d ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xfe227597 ieee80211_rts_get -EXPORT_SYMBOL net/mac802154/mac802154 0x02ef7554 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0x5fa9cff1 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb4bec14d ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xbe670d97 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdaa487b9 ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0xdbe071a9 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdd0e80e3 ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0xf63a5098 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xfe019eb0 ieee802154_register_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x26e75324 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3afa7802 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5050cd50 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x57ed1eb7 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6a061cec ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8682a8c4 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95b06240 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9913adab ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa3759f0a register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaf17f47f ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xce92579e ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd2a1f6c0 ip_vs_conn_put +EXPORT_SYMBOL net/mac80211/mac80211 0xb0e88858 ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0xb1f3bda3 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb5285ecc ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb5b9d32f ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xb8f0e69f ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xb9182e42 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xba97898f ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc627aec9 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc88d1315 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc8a8238b ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xcc9d747b ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xce8185c5 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd04ea5a8 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd0d1b3f6 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xd164055b ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd5238cd3 ieee80211_refresh_tx_agg_session_timer +EXPORT_SYMBOL net/mac80211/mac80211 0xd8b6db69 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xdbcc2c0f ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xe13fb55a ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xe1eeea1e __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe435dc87 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xe47fc159 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xe6c2ba63 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe9df8f6c wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xec58ff45 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xec8453d9 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xedc813bc ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xf3b58bc9 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf5350f93 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf5bf9a4a ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xf6984df1 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf80ae5a2 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xfa219d01 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xfb72e9b2 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac802154/mac802154 0x0a75a03c ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x1e7834eb ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3abc741a ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x3bb55a78 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x78edc189 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xa0962839 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa8ce23fa ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xb37d29fc ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xca9b0ac3 ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x051be4d0 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d88b21b ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1efd6ff6 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2e9f621e unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x337ed984 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3b01a600 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5d144cf7 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d497ac1 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8764c8c3 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x887d775a ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8cf7115d unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa325c61b ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaea34492 ip_vs_tcp_conn_listen EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4ba3ccb register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe501d8e6 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf71a85fb ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xde07e8cf ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6eb0665 ip_vs_conn_in_get EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x425430f8 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb125356c nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x1a7919de __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x30d9b7a0 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x32dfbd7c nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xfbe61c1c nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x7199f8e0 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xc5e69f2e nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xc605a777 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdb0d818a __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0886c7db xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x0fb661f5 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x1c1a41ca xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x2ccd12f6 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x118e0535 xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x4e5abf79 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x7702512c xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x96d17b11 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x89858d1f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9075bfa5 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xade681a4 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xaf0b1625 xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd35e6cfe xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd32a1f4d xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd35719ee xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xda7c3ec6 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe253c389 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xf0838182 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xf7b13d14 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xf3a12985 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x06000c46 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x180b2f96 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x40a1ab74 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x59e76040 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x5a779e81 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x5df7d443 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x00a1e2fc nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x01fced4c nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x020880c1 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x17b9f128 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1ba2dd5a nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x2dc8ad64 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x37798763 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x4f75a15a nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x515691c8 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x521e2e3f nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6cdbedc0 nfc_hci_send_cmd EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x7d956081 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x840774dc nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x8539acfb nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x86ea89b1 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x937f7c62 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x93cb54ee nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x9c6aabe7 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xbd391892 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xc6b290ee nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xc8322538 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0xdbb17430 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8f87e0d9 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa3ed46c2 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xb6caa8da nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xb7818524 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb7bce0ae nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xba3093bb nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xbcbcc165 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xd08a05f8 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xd18a2d27 nfc_hci_target_discovered EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe0874674 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xe9fb2ba1 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xf641d545 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xf9ea75cd nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x05967f8c nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x216207c0 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x2919e4be nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x31ad6948 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x4ec5ea40 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x50ce2224 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x5706462e nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x6334198d nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x6625efd5 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x6d62b6ae nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x75bf622d nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x77decdc0 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7fbca2ff nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x88fad82c nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8fa98f04 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x92e677a6 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x9318bae4 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9e774c24 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9eaec113 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xa42a2f74 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa91fbc90 nci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xeeaefe88 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x0d04fed6 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x273f8ee9 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x2c3050eb nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x2d4284fd nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3ca87196 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x4a172cf7 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x51eb6c6b nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x56dd68d1 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x591ceacf nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x609003c9 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x630c2ee6 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x67521ae7 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x79897a0c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x82f0a51b nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x99616857 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x9c796c1d nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xa6e2375b nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xaf200e5b nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xaf9ab037 nci_hci_clear_all_pipes EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc465ca3c nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xc944ac7d nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xcc055657 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xd8f1338b nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xdfb5469b nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xdfe6313e nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xe5f0f177 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xfb89cc00 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nfc 0x125e7168 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x248871f5 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x3b1a93c3 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x3bdbfea9 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x3d6c6d01 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x3e4ad681 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x417413ef nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x440836e4 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x463f0157 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x47f61a96 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x4f7d5dbc nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x5856580e nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x60cd7834 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x680cb9ca nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x81144604 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa4377ac5 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xb9ea49d3 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xba4965c1 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xc43f2f14 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xdfb3b235 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xe3130e7d nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xe68f31c6 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xeaa62b4f nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xebe547b0 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xfaa74ae1 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc_digital 0x3389c7d1 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x47e6cf30 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb1501dfe nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xb76aa582 nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x08ca1838 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x6ac6d62f pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x781847b5 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xa6a8ca0e phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xaed937ef phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xb14cffec pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xd36ae217 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xd4636a9b phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/rxrpc 0x06c730b0 rxrpc_kernel_put_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x097895de rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x296deb54 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/nfc/nci/nci 0xbc75ad8c nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc126dc11 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd303ca88 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xdbf7b489 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xdca23b41 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xddfbeaad nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe8957b79 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xee3887d5 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf81ea89d nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xf906e4b5 nci_free_device +EXPORT_SYMBOL net/nfc/nfc 0x029b7e90 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x0a5cd3b9 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x29c12d1d nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x48b597f0 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x5b44f432 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x8ccfc148 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x96b141de nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9f082e7e nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xaaf76091 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xac0d78c9 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xad39b489 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xadbc7923 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xb11d7af3 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xb1db79ca nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xb52543cd nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xbbdaee65 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xbc8a12a1 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xbd8ac0ab nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc28ac344 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xd3373197 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xd9df7499 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xe2a58266 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xf3640199 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xf6e96a3c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xfe444ae4 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x09a2520c nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x3bd726aa nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xbf031aad nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe2050fd2 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x34eae1e3 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x43f43505 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x70557444 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7a584d56 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xca550224 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xcf5fabaa pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xe41f2604 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xf79ed07b pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0118d566 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x02d78b72 rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0d08a181 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x294a1cff rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b9a4beb rxrpc_kernel_check_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x64734226 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8a97d23f key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9118a66f rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9972edbf rxrpc_kernel_shutdown_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa16ea050 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa74a76f6 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xaeb3a917 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbca44f22 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbdf6b077 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xce4d7433 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcf723e90 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd39fb6bc rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd99e2177 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe35056ad rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe5ef94f2 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xecb59d5a rxrpc_kernel_get_peer -EXPORT_SYMBOL net/sctp/sctp 0xbe64a517 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x0b418b60 __tracepoint_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x18750100 __SCK__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x1b26027b __traceiter_smcr_link_down +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4ef266b7 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x52e19c73 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x55a59702 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x68cce62a rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6df9014a rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6fe6c840 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x74bcd959 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fc60e45 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8b94bee4 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x95c4c996 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x967f1d0b rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb25da02d rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xce57e3eb rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfb99ec3c rxrpc_kernel_begin_call +EXPORT_SYMBOL net/sctp/sctp 0xf502a267 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x092a2367 __SCK__tp_func_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x20ea4a17 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x27498276 __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x3ac4e1c7 __SCT__tp_func_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x3bcd3bb9 __SCT__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x4c5d1bfe __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x62e1f578 __tracepoint_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x688651ab __traceiter_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x79f19a76 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x548634d9 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x5d023999 __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x6bd406f6 __tracepoint_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x89e09681 __tracepoint_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xb52ea66f __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xcefc061f __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0xddc88c7f __tracepoint_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xfb034f09 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x40b795a1 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x448fd470 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb7accb44 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x2ad81f4c xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x31dd30c3 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x8ca23648 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x382d0e6b tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x5a367089 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x8ed94d87 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xa82a7fa6 tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x94f094b2 tls_get_record +EXPORT_SYMBOL net/smc/smc 0x8a529cbc __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x8b8b3e86 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xa24b57f6 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xabfb3248 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xcaed7dbe __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xf6634d08 __tracepoint_smcr_link_down +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2c8eaab8 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6bd9398d gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xec088809 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x45966225 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x75288912 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9bb3b040 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x58b7943b tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x99630daf tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xc38a118b tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xeca9db1b tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x8623a6d4 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x05f180c3 cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0b3ebc07 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x08331b37 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x0c85388c cfg80211_ibss_joined EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x0e86579d cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x0fdf8bf9 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x10c2b67f wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x0f4b52a3 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0fb51e4f cfg80211_rx_control_port EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile EXPORT_SYMBOL net/wireless/cfg80211 0x13c58e52 ieee80211_get_8023_tunnel_proto +EXPORT_SYMBOL net/wireless/cfg80211 0x146c079e cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x15ec7e2d wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x184d62e0 cfg80211_any_usable_channels EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1a5b8466 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x1b718870 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1a6c41bd cfg80211_rx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x1b82a85a cfg80211_valid_disable_subchannel_bitmap -EXPORT_SYMBOL net/wireless/cfg80211 0x1c7ed37e cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1c71f8be cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1f507657 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1f922a0f __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x2445422f cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2567f778 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2741e662 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x1dd12507 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x20c158a3 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x224abe95 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x22a821d7 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x259f97ce cfg80211_nan_match EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x2a1d2f1c regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x31b80702 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x327c61fb cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x2afbfe83 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x2e2ebcb0 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x33e31805 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3575a757 cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x36545d9b cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x36f7e74c ieee80211_strip_8023_mesh_hdr -EXPORT_SYMBOL net/wireless/cfg80211 0x380acb78 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x3a1bc95d cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x378020a5 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3951a73e wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x3982a217 cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0x3aca71a1 cfg80211_get_ies_channel_number -EXPORT_SYMBOL net/wireless/cfg80211 0x3bacb2b5 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3b94db4f cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x3c744e95 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x3c86019a cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x408cd430 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x3d088d07 cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x42d0dc3e cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x44dd2675 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x4563982b regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x47618cc7 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x499a4a16 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x4a89221f cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x44c03380 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x44e110e0 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x45629d04 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x46c53c9d cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x4939354f cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x4abed7d4 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x501cf423 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x51b93620 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x5489b8bf ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4b1ff1f4 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x4b63845d wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x4c0125b0 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x4d390d8d cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x500fdef3 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x5254283a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x545e4e2c cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x59969b08 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x5f96ce82 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x62ee4e2d cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x6413ad26 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x671e87b1 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x67f59ef4 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x56b327d2 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x57c867dd regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x5898e3c9 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x59d024c5 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5b283257 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5bb35d62 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x608f861f wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x650a7a49 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x6784156a ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x67a26187 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x692635c7 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x695b338d cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c5f4ac3 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x6d4e4114 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x6eb224a7 cfg80211_links_removed -EXPORT_SYMBOL net/wireless/cfg80211 0x71ebb9c6 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x73753ba0 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x749e051c cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0x7690f6ca cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x7812c28f cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x79285fbf ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x6cf92a3b cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x6e8324fd cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6f2a4798 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x714a6ee1 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x71755b6d cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x71f8ec2e cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x72881e07 cfg80211_pmksa_candidate_notify EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7a9d974e cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x79e807fc cfg80211_sta_opmode_change_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7b4d36d3 wdev_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x80c03462 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x80ecaa0f cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x81725a27 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x820ff583 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x7f2b8bbb cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x80eff2e4 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x854f8b55 ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0x85de3f6f wiphy_delayed_work_timer -EXPORT_SYMBOL net/wireless/cfg80211 0x88f06969 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x87bc681f cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x886c10f6 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x89c22ce7 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x8dfed14a get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x93fd7caa cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x94eb5f0c cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x94f05000 ieee80211_is_valid_amsdu -EXPORT_SYMBOL net/wireless/cfg80211 0x9588b64a cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x9a92cc25 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x9be0330a cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9c11b7e0 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x9041401d cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x9a820b0e cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9f9bd197 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xa0ff8240 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xa88447ab cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xaabac6b9 cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0xadbb5de4 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xae49adfc cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0xb0415ad1 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xb1c7046d cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xb276ebe0 cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xb2e9b3ff __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb42b4c1c cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb48fe3e8 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0xb4eca424 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xb7e5a6a4 cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xb87a48f1 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xb9c5f2de cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xba0a0600 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x9e510121 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xa166604c ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xa25f8b50 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb6b9a94c wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xb98e2556 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xba9a9050 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xbb200c85 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0xbc470e39 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbeb0b75e cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xc01b7440 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xc13d8641 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xc2f1f2db __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0xc3fb97ca ieee80211_get_response_rate EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc5324c4f cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc5b5fa1b cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xc5db7f74 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xc6db41bf cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xc763e1a6 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xc7b97295 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xc8d5318b cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0xca3f551e __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc5b505af regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xc789bb46 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xc7ea5108 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd2dbfcb cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xce7dfbf7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xcd038a07 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xd17d404a __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd4b1eb86 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen EXPORT_SYMBOL net/wireless/cfg80211 0xd6c87a05 cfg80211_defragment_element -EXPORT_SYMBOL net/wireless/cfg80211 0xd8166cf4 wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0xdaa5c7f6 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xda3b7fd2 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xda7405bc nl80211_send_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0xdb33209e cfg80211_auth_timeout EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe22caf82 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe2f71f51 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xe3071c1d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xe794ad71 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0xea6f54f7 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xebbf80bc freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xec1c919f cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xed8eb548 nl80211_send_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0xee87db48 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0xef1cce2f wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xf002fa0f cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xf0a9789c cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xf163c975 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xf1c2288e cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0xf3cca129 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xdd7a41a5 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xe1398949 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe63109b1 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe6b214af cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe7291c0f cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xe85728a5 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe87fa19d cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe9b73c23 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xeafb0248 ieee80211_is_valid_amsdu +EXPORT_SYMBOL net/wireless/cfg80211 0xeb321f5e cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6c91f4 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf375fe60 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xf38efb83 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xf3997662 ieee80211_strip_8023_mesh_hdr EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf54647bc cfg80211_cqm_beacon_loss_notify EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/lib80211 0x2c3fed52 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x4aa73da6 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x60d2337a lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x7bf7e640 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xa05173a6 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xbc7a7a91 lib80211_register_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x769b3d12 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x158afaaa snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x00351a93 snd_seq_create_kernel_client +EXPORT_SYMBOL net/wireless/cfg80211 0xf6c91e53 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xfa6c7277 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xfde7c6cf cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xff9df069 cfg80211_links_removed +EXPORT_SYMBOL net/wireless/lib80211 0x74552502 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x78330dae lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7c579769 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x88b1e7f7 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xb96ea856 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xde305933 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x51684997 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x57cc2fc4 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 0x23738926 snd_seq_dump_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x4ef3c679 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 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x7e66f6f8 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x85cd59a8 snd_seq_kernel_client_dispatch EXPORT_SYMBOL sound/core/seq/snd-seq 0xa6e19f8e snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xcd9c9166 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc463363f snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe5b3097f snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xeaf31c4a snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xebd6ac4f snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x74769de9 snd_midi_process_event EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -5894,444 +5894,444 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x5ee5f52c snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x0865eab3 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x09d2e7d6 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x09f3f037 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x0c20dc5d snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x0e38e0fe snd_jack_set_parent +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb97ccdb0 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02bf55ee snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x0336e9da snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x077543a2 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x0802db51 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x0ca48416 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x0e3375bc snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x10456712 snd_ctl_free_one 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 0x1a8dbe2c snd_card_free -EXPORT_SYMBOL sound/core/snd 0x1f067052 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x1fd33dc3 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x1c5eb474 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x1f2d75e3 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x20dfa2c8 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x2144f4d3 snd_ctl_notify EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x28f341b0 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x27fb83be snd_component_add EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x36731240 snd_ctl_boolean_stereo_info EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3df347c7 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x3a458e51 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x3c37fd91 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x3d2471bd snd_ctl_rename EXPORT_SYMBOL sound/core/snd 0x3f33113c snd_device_register +EXPORT_SYMBOL sound/core/snd 0x4013f03f snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x46dcda14 snd_ctl_unregister_ioctl_compat EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4ca5e069 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x4ca9f5be snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x584835f6 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x5cda42fc snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x6401f102 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x65b2772a snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x57ec8500 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x62bbb7cd snd_ctl_find_numid EXPORT_SYMBOL sound/core/snd 0x67cab2cd snd_device_free -EXPORT_SYMBOL sound/core/snd 0x69399f3e snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x688a853c snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x692dc686 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x6d45df5d snd_info_create_module_entry EXPORT_SYMBOL sound/core/snd 0x6ee8b226 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x6f44aa33 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x6fb5ce25 snd_ctl_new1 EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable -EXPORT_SYMBOL sound/core/snd 0x715a5e81 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x715b4594 snd_card_disconnect EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x73084131 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x76c8656c snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x7a48a5f2 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x8390d64e snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x879b217e snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x88ffa9c4 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x8cc42683 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x8d6392e7 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x8dde7774 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x73b7dfe0 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x8b267b24 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x8bb824be snd_card_file_remove EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x98362e83 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x98d9093a snd_ctl_remove EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0x9f7a1a4c snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xa694b09c snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xb27d8caf snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x9fea9eed snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xa747115e snd_register_device +EXPORT_SYMBOL sound/core/snd 0xa9a1e948 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xaaa7e48a snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xb0e3baa0 snd_jack_set_parent EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb72021ef snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xbfbfed3d snd_card_new -EXPORT_SYMBOL sound/core/snd 0xc042f13c snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xc0ace4a0 snd_ctl_rename EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc865e3a4 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xc99789bc snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xc5d9e2e3 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xc7a04150 snd_card_new EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd0b68cd9 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xd1ea8ee2 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xd54e5a82 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xd25caa6b snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xd339c755 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xd3baaeb1 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xd716b39b snd_mixer_oss_notify_callback EXPORT_SYMBOL sound/core/snd 0xd7868c3e snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xde814ead snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xdb527112 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xe50a5519 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xf053f516 snd_ctl_register_ioctl_compat EXPORT_SYMBOL sound/core/snd 0xf2826eea _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0xf5d28ec9 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xfe09bd12 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xfc2f0bfb snd_card_file_add EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x26f66b5c snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0x8be12b03 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xed930db6 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0xb9c207d4 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xcef041ca snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xc9781729 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 0x100ece89 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x11703117 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x079da3d9 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x09749b6a snd_pcm_lib_malloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x13c92993 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x14324df2 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x17eed917 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x14122749 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x1943e497 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x1bfd2c13 snd_pcm_release_substream EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x2147603d snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x253fa6af __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x292b4c66 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x27ca741d snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x28a833ec snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x2947f170 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x2f293987 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x30d50bcf snd_pcm_hw_constraint_mask64 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 0x3a914f6e snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x3b9a566d snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x3bb54735 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0x3fca92ec _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x408f7fa0 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x4b3cc52b snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x4cddb1c6 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x4d718871 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x3f0c1963 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4a2ff25e snd_pcm_hw_constraint_list 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 0x50749092 snd_pcm_set_ops EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x54709cc0 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x58932ebf snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x5a6fda75 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x578b4a4f snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x59c4029a snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x5aa46f24 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x5b467243 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x5c0f369b snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x5e6fc6e4 snd_pcm_hw_constraint_ratnums EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5fd92509 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x64205eac snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x64fd2f43 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x6075471a snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x61ff03d8 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6446c513 snd_pcm_stop 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 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x69cd6e93 snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x6b452ae7 snd_pcm_release_substream EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x73b54d96 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x74d58258 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x75a1630e snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x7898395b snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x7a23a04b snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7f9807d8 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x81c32496 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x710a94e0 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x734e29c7 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x7449e1e8 snd_pcm_mmap_data EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x85a3b228 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x8c327ebc snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x8fb99b77 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x93d563ea snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x83b2c8da snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x85154bb7 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x865c7f63 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x868f48eb snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8a34a041 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x8cce314c snd_pcm_create_iec958_consumer EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9b071e07 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x9d86dcae snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x9fdc990b snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x9be59e8f snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa2640957 snd_pcm_hw_constraint_step EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6412a8f snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa91c171a __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xadd476d9 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xb091d9c9 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xb1b2f1aa snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xb875aaf2 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xb20b1ef8 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb217f4dd snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb45c45c6 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xb78c12b8 snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbac22ecf snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0xc5b24952 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xcd72455f snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xe069db50 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xe4fc612c snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xc32e6a71 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xc4140dc2 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xc99cb623 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xcd12abba snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xde5eb9e9 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe12c1294 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xe539eeab snd_pcm_hw_rule_noresample EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xfc6670c0 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xfe972ad6 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xeaaad8d2 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf0596336 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xfda135e5 snd_pcm_hw_rule_add EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0682a5b0 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x123b739d snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x39960910 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4384c45c snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x45a9643e snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e12788b snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x77cb848b snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b32543a snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8e87cfdb snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8fd57927 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9599e649 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0c1a41a snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0d86d06 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xca344eb7 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcc76730c snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2e21157 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd6f01b32 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfe659c7a snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x031e76fd snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x08405441 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x127a517f snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3d5824d5 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x492ef91e snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x49dcc555 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x50925f04 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x50ee4c02 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5b37a6f2 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d343535 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x68c756fa snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8cae6bb1 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8dee1df5 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x91c25fba snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9a0452c2 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb7135a1c snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe5d71530 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfe14b159 snd_rawmidi_input_params EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x540b9ace snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x04f8739e snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x066ccab6 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x0b971f71 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x165d18ec snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x52262c12 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0x751ad501 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x7c5539db snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x811e0359 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x83988386 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x9661edf4 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xaaa3d5e7 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0xade55333 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xc03ee6cb snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xd19c7dc7 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xdd27bb44 snd_timer_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x623e4227 snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0xc6b2c2b9 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0419fe6d snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x216f6f0e snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x320f70c4 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x3d5d74f2 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x584b4bba snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x7f686d9b snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x80e7dab4 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x880595c3 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x91369481 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xa1c53b8a snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xa95c8b74 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xb02a2c67 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xb3d85299 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xe663d0f5 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xfe3065ef 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 0x7f9e33bd 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 0x21d529ce snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5b57ec9d snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a51fe70 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x882b607d snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8a315142 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8ffc6a61 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaa2457c5 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xad1b88d9 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd86b4c6 snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1d8fb668 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x29f3fab8 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x414e60f7 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x46253d0b snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4af0bf71 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x658ef166 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8347fe06 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8cb6f115 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc608fa23 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xea07e0b2 snd_opl3_reset EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3c24ab9f snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5e23ab3e snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6cf9e70e snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7092294a snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8a004504 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc14dc2ee snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe67498c9 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xef0ab455 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x374c0c9b snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x55937c21 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5ba5223f snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x86983006 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa0e86bfa snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa18567f9 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb772821c snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbced51ef snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf0341aaf snd_vx_setup_firmware EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0edae59a cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e21dacb avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08a38f75 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x16e665e8 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x194b5972 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3059452b cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30c489a8 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x373f13fd amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39642fc2 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3eff99dd cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43c848da cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23c063a6 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2502a4c2 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30f549be cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x414ffdf3 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43ce7a73 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48da86fd fw_iso_resources_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x576fa8ff fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6b1debc6 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7dd39460 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8272e08b fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8cf5bf98 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x90940d1b cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92196cf3 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa886d5d8 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae71937d fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbbc5a2e3 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc176f444 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcabf61ec amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd22b4a8 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf5f0e2b iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb4efcc1 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbcd6aad fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbd2d744 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb657a8a amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee28f0b8 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfbc88a76 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcda3fbe snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5bc6af39 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66f3f27c cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77a00293 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78f48a4f fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x832edeae fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87d885e7 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8dde14bd avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xada18933 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3f365e9 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc112974b fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc60dc1c2 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9fa7114 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce164832 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xda1ff135 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe331f5d7 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9448ee4 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xea41c0fa amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeda89ebc cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1da992e amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf53f5475 cmp_connection_init EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x1efacaab intel_nhlt_get_endpoint_blob EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb7b836b3 intel_nhlt_ssp_mclk_mask -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x4125b60b snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7820c2a3 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x13e2114c snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x159845ab snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1a5f0efb snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6f3cb81b snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa7fe1336 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa92920d1 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd9d12327 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf3a07461 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x04cd511c snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x07a4e734 snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x184830e0 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x22089f83 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x712cc352 snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc1b7b592 snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x41b63214 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5e9d171c snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x68a06bf8 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd1f1fa8c snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8aa9ab4d snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xfcc39176 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2c7df925 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x83aaf9d8 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x85d19db4 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8f5ec528 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x95e10426 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa9650927 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb0be1add snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xba4ab038 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x05cfb653 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x20da065f snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2eb6c661 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x796d28c6 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb2d54018 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xef8be28a snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x10b02ea7 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x14d7f2d5 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x3c00f8ed snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdb931bf7 snd_akm4xxx_reset EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x9475bd3b snd_pt2258_reset EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf7d5c490 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0912c42e snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x43cb83d9 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x536fd642 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7696fb25 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7862439c snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa2189884 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x03cf6353 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x20eb8217 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x80fef0bc snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe1c6e835 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe72c11f7 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf784238d snd_cs8427_create EXPORT_SYMBOL sound/i2c/snd-i2c 0x96a9c47b snd_i2c_readbytes EXPORT_SYMBOL sound/i2c/snd-i2c 0xa65c1c3c snd_i2c_bus_create EXPORT_SYMBOL sound/i2c/snd-i2c 0xbda79511 snd_i2c_probeaddr EXPORT_SYMBOL sound/i2c/snd-i2c 0xce1e0fdf snd_i2c_device_create EXPORT_SYMBOL sound/i2c/snd-i2c 0xea70538e snd_i2c_sendbytes EXPORT_SYMBOL sound/i2c/snd-i2c 0xec6365fc snd_i2c_device_free -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2f457465 snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x32ff70b1 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5ff2ad93 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa74d33ee snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb0836316 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd1393a19 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd83eed0b snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xeb89885e snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xec019b25 snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfdeccd9b snd_sbmixer_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x09a1fa54 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1437f9b1 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1df74f71 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e9cc871 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x21d87eaa snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d157bec snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x368d4fff snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45de401e snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4be4fb1c snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x636b1b12 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x828fe304 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89e57d72 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x934f2af1 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9a9505fc snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdeaff691 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5c86998 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5ccc45d snd_ac97_write -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xf14ac6a6 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x244a9d99 snd_emu10k1_ptr_write_multiple -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x33905b53 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5b67aaac snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6b2245b4 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8f2a6049 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb285922b snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb9c49aa7 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd34e61f6 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd9f04c52 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdc6d3ef2 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x61ebd9fd snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x726f17ed snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9abd6562 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0581ef4f oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x30ae7640 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x334d927f oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33db3dd5 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x384c8b68 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d5412da oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x412424cd oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x59013ba7 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5b1bf04a oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x649b39f3 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88b1dfea oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa06e9028 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa159432f oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa670e0f4 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7723ca1 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdde4e03f oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe0713666 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef1fe5f8 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf5b9e2a8 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa300f9d oxygen_write8_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1730da07 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3480c71b snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4f141b08 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x784d2594 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8dc1d347 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x12cfdf27 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x53a4bcae snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x69c6d203 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7d816295 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x82682acd snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa2715038 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbbfd27c2 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc44752b7 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf1788bb6 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf45f4d87 snd_sbmixer_new +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b4a7240 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a74e196 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e7ce408 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x627fa07d snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6796a943 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x73a404ce snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x753c164e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x930c3743 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x98ae4839 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb182478e snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb3a9d216 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb460b7c8 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb79f689f snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbcdb18e8 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc7517f9c snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf39ff470 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe783a61 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xe7f8af11 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1c87ba5e snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1d64c2c9 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x41ebde65 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x72ca8882 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x87ecb8c1 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb4f10a29 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb8653585 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd311efc3 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xde8b370a snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe362964b snd_emu10k1_ptr_write_multiple +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5b7e9c79 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5f937b08 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7e4f1841 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21f5937a oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21fcf497 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ec6e845 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x393a5347 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x41f96004 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x453ea32a oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x564226a2 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70b38cda oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7120f1ec oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9c0a74d7 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa05db9a0 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa5451f48 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa8b374b5 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb2ca6388 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc13e608e oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdb1073d2 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7fa5b31 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeeb36bc0 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf841a2ca oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfea283a6 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x14a4cee0 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x47c4310a snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc5f0b2b1 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcaf04d4b snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd11393a7 snd_trident_stop_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x6e68bdd5 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x7187860a snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xcc1437bf snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x79802b66 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5d8b5709 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8d2b2d2f pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xdec752c3 pcm3060_regmap +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x37c0191b snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x40d68384 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xa1e7eccb snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xc2da642b adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x7b2403b5 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x0393451a pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa36eda90 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x33ca176c tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xaac4fd3f tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x10e5a80c aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6dde1547 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xbfce2b72 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x07db1c31 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x3741e3ff aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x01b98240 wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3824ec85 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x93e1f6a8 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xce4488e0 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc3b63de8 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xca63c3d9 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd7570415 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xaa16fd95 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xc244be92 aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x59707361 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa7e2db63 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xdd4d488b wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe8ee1e00 wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x0c70cb56 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x5379c8fd fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xff67873d fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/snd-soc-core 0x7f943ffd snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0bbeaf85 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0bf82c24 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1162e5b8 sof_ipc4_set_pipeline_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x12a898b4 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x132a72c7 snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x15f63075 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17790462 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x183eb141 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b64f5b3 sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cbd99c7 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21eabb9b snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23a8698c snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x240ee5dd sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x24c9eba4 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x263afcc4 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x2924973c fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x86517ebb fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xe31f1362 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/snd-soc-core 0xa4a998de snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e286b1e snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f16c156 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1acf93a7 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1bb77b8d snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x24d390c6 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x29483052 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2bc842c3 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e753c1e sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30db5961 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34bc186e sof_machine_check EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x391c132f sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3c13ffc1 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3de82f8d snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3f3b8530 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4091c19f sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42bdfba7 sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42fcc27e snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45cf5889 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4ba3b548 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c761943 sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4cd40403 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4cdae275 sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5d676652 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x66e64cfe sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x690bb8d0 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6bb6bd0f snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a4d2551 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d0d5dc1 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ae4d3e5 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8e384335 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9378514a snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96ce9d7f snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9cf79c44 sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9cfc69d0 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0b9fef1 sof_ipc3_do_rx_work -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab797df5 snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac27c02f snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xada33504 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb9b1ce96 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0b2561a sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4c6f2d7 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd5afd7a snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5e9e6f9 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd662684a sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdfd87914 sof_ipc_set_get_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe78fb14d snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe93ee47f snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea55c86c sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf06f5d45 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2dfc18e snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf5c6925a snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8723e47 sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa888729 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40ac236a sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42619d6c snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44a7c37f snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4913ad19 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e31699f snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x50ea014a sof_ipc4_set_pipeline_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5302f993 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x559ca79e sof_ipc3_do_rx_work +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x577ca5ee snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5918f705 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5eba0ff8 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6245cbf2 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a6520e6 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ad8ba93 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x722299d0 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x785b510c sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x79d019e9 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a012205 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7be91b10 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f0085b8 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92082e9a snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92fa5b00 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9388ccf0 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x965a48b3 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9728b683 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98786223 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x996f05b3 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9bad7897 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9e2eb05a sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa4b73e9f snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa6c55afd snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac143c79 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xafb21472 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb0495f5d snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbd0e2711 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc8a676b7 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb0d2c25 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdad443ff snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdbf05ce0 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xde82b868 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdf268b25 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe2901afa snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xedd4b0f0 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0138ec1 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf4fdd505 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8643e0e sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9a149e3 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd49ff7d snd_sof_runtime_suspend EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xa21a761c snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x2d53223e register_sound_dsp EXPORT_SYMBOL sound/soundcore 0x32d795c4 sound_class -EXPORT_SYMBOL sound/soundcore 0x51c3834d register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x637f4fb9 register_sound_special EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x7d128e82 register_sound_mixer EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9e89a1d1 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xba251bea register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xbd2eb231 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x46f5f712 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6137b74c snd_emux_register +EXPORT_SYMBOL sound/soundcore 0xdbd18e89 register_sound_special +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5ba1937b snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5f34cd6f 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 0x6efc6204 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa62d4892 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa9703601 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xde6a47e6 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x89935906 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc45b88a5 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xdaf17480 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe05ba4cc snd_emux_unlock_voice EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6341,5800 +6341,5801 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x57bbd3dc __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 sound/usb/snd-usbmidi-lib 0xdbdbe23c __snd_usbmidi_create -EXPORT_SYMBOL vmlinux 0x00000330 stop_tty -EXPORT_SYMBOL vmlinux 0x00084e81 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x000fc478 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x00142abc dev_remove_pack EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x00224aa4 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x00498f53 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x0049c878 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x00559887 pci_free_irq -EXPORT_SYMBOL vmlinux 0x00693d5d bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x006a86ae agp_generic_type_to_mask_type -EXPORT_SYMBOL vmlinux 0x00827c63 inode_io_list_del -EXPORT_SYMBOL vmlinux 0x008d1ea5 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x00a18cdb ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x00a3df2f rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x001f4d26 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x002c6e85 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x002e59bb param_set_ulong +EXPORT_SYMBOL vmlinux 0x004935cf dcb_getapp +EXPORT_SYMBOL vmlinux 0x004bc399 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x005ace87 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x006c1325 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x008408cc i2c_clients_command +EXPORT_SYMBOL vmlinux 0x008f38da migrate_vma_pages EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00ae7609 task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00bc4b35 nf_getsockopt EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00ea3ac9 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x00ead7e5 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x00ec372e kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x00d8a293 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x00dee7f6 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x00efdc17 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x00f434a3 skb_clone_sk EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0103c908 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x013c9fd4 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0116c605 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x01294c1e iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x0140dcf5 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01509120 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x014f72e3 dcb_delrewr EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x01a57544 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x01a31683 __phy_write_mmd EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01be8f5f input_get_keycode EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c6fa4a mfd_add_devices -EXPORT_SYMBOL vmlinux 0x01d28cde make_kuid -EXPORT_SYMBOL vmlinux 0x01d64357 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x01daddf9 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x01c284c4 param_get_byte +EXPORT_SYMBOL vmlinux 0x01cb0fdc elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x01d69c84 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x01e61d6c __x86_indirect_call_thunk_r12 -EXPORT_SYMBOL vmlinux 0x01f8b09b fb_io_read +EXPORT_SYMBOL vmlinux 0x01e87ed5 __devm_request_region +EXPORT_SYMBOL vmlinux 0x01f64e8a disk_check_media_change +EXPORT_SYMBOL vmlinux 0x01fb9373 posix_test_lock +EXPORT_SYMBOL vmlinux 0x020618dc fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x0208b1e3 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x0208f440 icmp6_send EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020a8567 phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x0214724b from_kprojid +EXPORT_SYMBOL vmlinux 0x021a3dc2 get_phy_device +EXPORT_SYMBOL vmlinux 0x021c6806 scsi_report_device_reset EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x0231762d truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x0269ecf9 vfs_readlink -EXPORT_SYMBOL vmlinux 0x026e2b57 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x02573ea8 vme_bus_type +EXPORT_SYMBOL vmlinux 0x025dfc08 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02758520 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x0288bdc9 user_path_at_empty EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02ae1bf2 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0x02ba1187 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x02bab3d8 folio_end_writeback EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02d56f46 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x02e63729 __bread_gfp -EXPORT_SYMBOL vmlinux 0x02ed23db pci_iounmap -EXPORT_SYMBOL vmlinux 0x03080457 mdiobus_read +EXPORT_SYMBOL vmlinux 0x0302c161 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0312e85e md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x0318dba3 acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x031d7b49 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0346e451 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x035d25ab memcg_kmem_online_key +EXPORT_SYMBOL vmlinux 0x035e5573 tcf_exts_init_ex +EXPORT_SYMBOL vmlinux 0x03603d73 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x0360bd97 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0362f9a8 __x86_indirect_thunk_r12 -EXPORT_SYMBOL vmlinux 0x03642d3d __mmc_claim_host EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0369ea2c genphy_c45_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x03771dc3 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03931b6b dev_get_mac_address EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a8f7dd phy_attach_direct EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03b9682e napi_complete_done -EXPORT_SYMBOL vmlinux 0x03c5d445 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0x03caf75c tcf_action_exec -EXPORT_SYMBOL vmlinux 0x03d7ae6f acpi_device_hid -EXPORT_SYMBOL vmlinux 0x03e03620 dst_dev_put +EXPORT_SYMBOL vmlinux 0x03c1c4c1 bpf_map_get +EXPORT_SYMBOL vmlinux 0x03ed0818 scsi_scan_host EXPORT_SYMBOL vmlinux 0x03f57960 serio_rescan +EXPORT_SYMBOL vmlinux 0x03fb87ad phy_driver_unregister EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0405752f dma_resv_init -EXPORT_SYMBOL vmlinux 0x042b93bc qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x0438eb26 udp_poll +EXPORT_SYMBOL vmlinux 0x0422aec7 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x04485691 is_bad_inode EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x045191dd xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x04571395 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x046afe60 key_unlink +EXPORT_SYMBOL vmlinux 0x045a889f netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x0471f15f configfs_register_group EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x04789d34 __nla_put_64bit EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x04856d52 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x0487de3e phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x048d49dd __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x04942e6a inode_get_bytes EXPORT_SYMBOL vmlinux 0x0499ea0d watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x04b1abff input_grab_device +EXPORT_SYMBOL vmlinux 0x04a5d5bf genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x04c4d8e4 get_cached_acl EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04cbe895 tcf_action_exec EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04ddc53a fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x04e17f7f writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x04e9fa0f key_task_permission EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04fa1960 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x0501fc1b alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x04f00d11 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x04f55df9 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05282463 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x052b6425 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x053441bf param_set_uint EXPORT_SYMBOL vmlinux 0x053671d4 amd_iommu_snp_en -EXPORT_SYMBOL vmlinux 0x053900e8 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x05432b41 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0550f777 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x0557b7c7 mount_bdev +EXPORT_SYMBOL vmlinux 0x055c7528 inode_query_iversion EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x05682d0b tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x05698dba genl_notify EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x056bd86d tty_port_close_start -EXPORT_SYMBOL vmlinux 0x05cb254f skb_free_datagram -EXPORT_SYMBOL vmlinux 0x05dc1b00 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x05e64748 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x05f42316 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x05f6c2ca ram_aops -EXPORT_SYMBOL vmlinux 0x05fc78fb tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x0600f26a tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x06028d80 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x058babc3 __ps2_command +EXPORT_SYMBOL vmlinux 0x05902960 cdev_init +EXPORT_SYMBOL vmlinux 0x05930b11 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x05974f43 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x05b2170b rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x05b9553c compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x05bb72df ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x05cf54f0 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x05e6f8d0 user_revoke EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060a28ef scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x060df7f8 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x06145e7f mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06176293 md_error +EXPORT_SYMBOL vmlinux 0x061fe985 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x06232b99 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x062a1abe sk_mc_loop EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063d0c0c param_get_byte -EXPORT_SYMBOL vmlinux 0x06406eda devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x0640056d sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x06600f10 dput EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x0671fcb4 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x067549da xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x068c4347 iov_iter_init -EXPORT_SYMBOL vmlinux 0x069ad1f9 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x066c7c32 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x06799718 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06b0aeec devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x06b4ccdb dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x06ab89a0 pci_release_region +EXPORT_SYMBOL vmlinux 0x06b358ce vlan_for_each +EXPORT_SYMBOL vmlinux 0x06b6a27d iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x06b7f3d0 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06ca4223 genphy_update_link -EXPORT_SYMBOL vmlinux 0x06cf96c6 pci_dev_get +EXPORT_SYMBOL vmlinux 0x06c5f4ba i2c_register_driver EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d78137 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x06e549b6 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x06f7d307 filp_close -EXPORT_SYMBOL vmlinux 0x07054889 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x06e6ffe1 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x06fcb50f page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x0701c7ff handshake_req_private +EXPORT_SYMBOL vmlinux 0x07085fa4 ps2_sendbyte EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x070cfa64 tty_port_close -EXPORT_SYMBOL vmlinux 0x0716b075 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x072404cb tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x070baf5b genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0742e2d6 ip_local_deliver EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x075aa007 skb_tx_error -EXPORT_SYMBOL vmlinux 0x077139c5 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x0775fd7a tcf_classify -EXPORT_SYMBOL vmlinux 0x07802bd9 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x0785496b fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x07a0a278 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x078a9ad3 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x078b4c35 uart_match_port EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07c4201a pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x07b2a0ac skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x07be7392 param_set_invbool EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d3e888 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x07d9ff8d jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x07dd2666 nd_integrity_init EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f833a6 tcp_poll -EXPORT_SYMBOL vmlinux 0x07f85a48 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x07f8c7b3 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x07f8ce47 get_agp_version +EXPORT_SYMBOL vmlinux 0x07f9c4cd pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x07ff45ac flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0802f243 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x08053918 mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0810001e input_free_device EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x081e9440 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x081821e6 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x082a82d2 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082e8f0c uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x0838fde9 alloc_anon_inode EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0853796a xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x08645c36 udplite_prot -EXPORT_SYMBOL vmlinux 0x086f5726 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x084c1553 __bread_gfp +EXPORT_SYMBOL vmlinux 0x084ced1e pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x085e3e26 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit -EXPORT_SYMBOL vmlinux 0x08a342eb pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x08a7a281 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x08b56881 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x08baee75 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0x08c049e7 param_set_int -EXPORT_SYMBOL vmlinux 0x08f1cd75 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x08ff1fb9 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x0903de41 buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0x090e13b3 phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x091d7bb9 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x0879c3aa ppp_dev_name +EXPORT_SYMBOL vmlinux 0x08860997 vfs_fsync +EXPORT_SYMBOL vmlinux 0x08e7a7dd register_console +EXPORT_SYMBOL vmlinux 0x09054b8c __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x09096d5d dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x092956e4 netif_tx_unlock EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093a1a5d d_set_fallthru -EXPORT_SYMBOL vmlinux 0x093e5f72 filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0x094ca4a5 tty_name -EXPORT_SYMBOL vmlinux 0x09509dff blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x0965c14e pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x09415adf blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x0948165e ptp_clock_event +EXPORT_SYMBOL vmlinux 0x09491d55 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x095c236a d_instantiate EXPORT_SYMBOL vmlinux 0x0966e107 __x86_indirect_call_thunk_r9 -EXPORT_SYMBOL vmlinux 0x09749653 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x096dd862 fb_pan_display EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x09877655 scsi_partsize EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09955590 folio_set_bh -EXPORT_SYMBOL vmlinux 0x09a2a817 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x09c8a16e phy_loopback +EXPORT_SYMBOL vmlinux 0x099d6507 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x09aa55ff __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x09ac31bb input_reset_device +EXPORT_SYMBOL vmlinux 0x09c6981f kernel_connect +EXPORT_SYMBOL vmlinux 0x09c7d6ad agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x09d0283b mdiobus_free EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09edc543 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x09ee2435 default_llseek -EXPORT_SYMBOL vmlinux 0x09ee8c58 posix_lock_file -EXPORT_SYMBOL vmlinux 0x09f1150f bio_endio +EXPORT_SYMBOL vmlinux 0x09e611df vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x09f60d24 max8998_write_reg EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a01e6f0 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x0a04c667 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x0a091d5f udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1a028a dquot_free_inode EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a2b2b29 mntget -EXPORT_SYMBOL vmlinux 0x0a3d6d78 eth_header_cache -EXPORT_SYMBOL vmlinux 0x0a3dd9e8 trace_event_printf -EXPORT_SYMBOL vmlinux 0x0a549fdb __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x0a27992d skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x0a3c345c cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x0a57e04f ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x0a6069d8 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a834dbe netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x0a7cf8fc dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a85b8c7 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x0a90dace rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x0a961408 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x0a9b6acf skb_set_owner_w EXPORT_SYMBOL vmlinux 0x0a9ba04f srso_untrain_ret EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa74a47 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ac8c9cc get_tree_single +EXPORT_SYMBOL vmlinux 0x0aacf8c1 inet_offloads +EXPORT_SYMBOL vmlinux 0x0ab43ea9 inet_getname +EXPORT_SYMBOL vmlinux 0x0ab90d65 io_uring_destruct_scm +EXPORT_SYMBOL vmlinux 0x0ac511fb bio_split_to_limits EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0acfdd58 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x0ad2d8b9 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x0adb97eb flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x0ae6ef29 thaw_bdev -EXPORT_SYMBOL vmlinux 0x0ae7bd1b xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x0afa5d5a folio_migrate_flags -EXPORT_SYMBOL vmlinux 0x0b0404bd sk_wait_data -EXPORT_SYMBOL vmlinux 0x0b0aeed9 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x0b199088 pid_task +EXPORT_SYMBOL vmlinux 0x0b0ccbb2 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b24db85 mdiobus_c45_write EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b5346cd iunique -EXPORT_SYMBOL vmlinux 0x0b5718a7 ipv4_mtu +EXPORT_SYMBOL vmlinux 0x0b2e78c9 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x0b4d7804 sock_no_connect EXPORT_SYMBOL vmlinux 0x0b58ec5c textsearch_register -EXPORT_SYMBOL vmlinux 0x0b5b77cd rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x0b5bb28f tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x0b5ce038 vga_switcheroo_unlock_ddc EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b762554 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x0b788572 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x0b94d56a nd_pfn_probe EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0bb2bd6d genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0baf5e2f register_netdev EXPORT_SYMBOL vmlinux 0x0bb5dd4a dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0bb636e8 truncate_setsize -EXPORT_SYMBOL vmlinux 0x0bbda0bb find_inode_nowait -EXPORT_SYMBOL vmlinux 0x0bbf0a1f release_pages EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc8ad55 free_buffer_head +EXPORT_SYMBOL vmlinux 0x0bca0957 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0bd6cd1b simple_link -EXPORT_SYMBOL vmlinux 0x0bd7d173 devm_mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x0be6eeb0 touch_buffer -EXPORT_SYMBOL vmlinux 0x0bed74f2 genphy_c45_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x0bf28943 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x0bfa89b2 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x0be69e00 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x0bf0a037 netdev_change_features +EXPORT_SYMBOL vmlinux 0x0bf5ca3b __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x0bf975bf udp6_set_csum EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c1aef69 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x0c1af59f mdiobus_c45_write_nested -EXPORT_SYMBOL vmlinux 0x0c1dbd12 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x0c0f5368 blkdev_issue_secure_erase EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c355261 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x0c29a09b unregister_key_type +EXPORT_SYMBOL vmlinux 0x0c2b9ebc vif_device_init EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c3b9740 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x0c417bf4 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x0c41dc61 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x0c4d2265 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x0c4e455c vfs_ioctl +EXPORT_SYMBOL vmlinux 0x0c44c3c0 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x0c54c800 param_array_ops EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c644f11 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x0c6948ba pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x0c57fa6a param_ops_bool +EXPORT_SYMBOL vmlinux 0x0c5be4e9 skb_push EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7249f9 submit_bh -EXPORT_SYMBOL vmlinux 0x0c806a84 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x0c8fc57b generic_file_open -EXPORT_SYMBOL vmlinux 0x0c945947 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x0caca876 file_open_root -EXPORT_SYMBOL vmlinux 0x0cb2dd49 vlan_for_each +EXPORT_SYMBOL vmlinux 0x0c7a06bc i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x0c9e0f8c km_new_mapping +EXPORT_SYMBOL vmlinux 0x0caad7ab ihold +EXPORT_SYMBOL vmlinux 0x0cb15210 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x0cb3dc3a scsi_register_interface +EXPORT_SYMBOL vmlinux 0x0cb5d53b acpi_match_device_ids EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd873c5 udp_pre_connect EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0d0078ac locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x0d04eedc dquot_drop EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d089424 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x0d104293 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x0d136c5c ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x0d271cc9 has_capability -EXPORT_SYMBOL vmlinux 0x0d294d06 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x0d331800 ps2_interrupt EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d49aeb0 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x0d39ad6c d_alloc_anon EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d6a94cb inet6_release -EXPORT_SYMBOL vmlinux 0x0d6e6278 devm_aperture_acquire_for_platform_device -EXPORT_SYMBOL vmlinux 0x0d836abd skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x0d8a7154 audit_log -EXPORT_SYMBOL vmlinux 0x0d9735b5 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x0d68fd74 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x0d74bbf7 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x0d92457e page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x0da37acd dma_fence_array_first -EXPORT_SYMBOL vmlinux 0x0daeafde xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x0dbcb768 inet6_getname -EXPORT_SYMBOL vmlinux 0x0dce6ca8 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x0dddb9e3 simple_empty -EXPORT_SYMBOL vmlinux 0x0de5b453 proc_symlink +EXPORT_SYMBOL vmlinux 0x0da62d01 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x0dd1bca6 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x0dd43cc5 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x0dd899d3 dquot_initialize EXPORT_SYMBOL vmlinux 0x0deb72fc __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0e01b447 dquot_release -EXPORT_SYMBOL vmlinux 0x0e026c17 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x0e0b2489 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x0e02f7bf sock_efree EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e189834 framebuffer_release EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e2a4f15 skb_dump +EXPORT_SYMBOL vmlinux 0x0e26e57c tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e563c45 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x0e5f51fa fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x0e6ba48d mmc_request_done +EXPORT_SYMBOL vmlinux 0x0e58c040 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x0e5d4bb6 page_get_link +EXPORT_SYMBOL vmlinux 0x0e63da17 tty_port_put +EXPORT_SYMBOL vmlinux 0x0e6c4345 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x0e7cee99 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eadbb4f freeze_super -EXPORT_SYMBOL vmlinux 0x0eb36f32 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x0eadb594 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x0eb67d62 fqdir_init EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed18a3c __bh_read -EXPORT_SYMBOL vmlinux 0x0ed8d86f netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x0ee19639 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x0eebd2be tty_unthrottle +EXPORT_SYMBOL vmlinux 0x0ec64e78 security_path_mknod +EXPORT_SYMBOL vmlinux 0x0ee90136 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x0efbc47e file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x0effd35e jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x0f02dfee i2c_verify_client EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f18596e adjust_managed_page_count EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f2d9872 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x0f3537f8 nf_log_unset -EXPORT_SYMBOL vmlinux 0x0f353a77 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x0f1f03fa kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x0f35e486 rtnl_notify EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f56ae92 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x0f4ae274 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f6e3375 __napi_schedule -EXPORT_SYMBOL vmlinux 0x0f785e5e rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x0f65b0df filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x0f70be0d rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store +EXPORT_SYMBOL vmlinux 0x0f839a04 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9c2afd pci_find_bus EXPORT_SYMBOL vmlinux 0x0f9fe992 sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0x0fa95a64 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x0faa7043 iget5_locked EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb11673 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x0face77c sg_miter_skip EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd75ef3 inet_accept +EXPORT_SYMBOL vmlinux 0x0fb5280c tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x0fc81592 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x0fcdc966 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x0fd13e53 param_set_long EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0feeb59a register_framebuffer EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x100ac660 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x100bddf8 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x10142e03 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x10188167 default_llseek +EXPORT_SYMBOL vmlinux 0x101d2f09 __SetPageMovable EXPORT_SYMBOL vmlinux 0x101d7ff5 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x1021b18c agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x1027305d nd_device_unregister +EXPORT_SYMBOL vmlinux 0x1029e33c __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1041ff28 from_kuid +EXPORT_SYMBOL vmlinux 0x103ecf29 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x104f6b96 genlmsg_put EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x1059f369 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x10587c31 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106ac4cb input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x107826f9 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x1079f31b vga_switcheroo_client_probe_defer EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0x107dae4d inode_set_flags EXPORT_SYMBOL vmlinux 0x107dd046 __x86_indirect_call_thunk_r8 EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10bb0c37 disk_check_media_change -EXPORT_SYMBOL vmlinux 0x10cdb938 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x10d1c364 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x108ae336 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x109d1fbe vfs_rename +EXPORT_SYMBOL vmlinux 0x10a37df9 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x10d9080a md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10f35256 complete_request_key +EXPORT_SYMBOL vmlinux 0x10f4bc31 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x10faf471 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x110091c2 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x11039e0c dev_set_mac_address EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x111dc391 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x1126da0e mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x113cad20 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x11518d21 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x115b8217 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x115e7e00 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x1110fa24 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x1110ff9c proc_remove +EXPORT_SYMBOL vmlinux 0x11290c5e scsi_block_requests +EXPORT_SYMBOL vmlinux 0x1136a1e8 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x113a698e serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117bde61 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x118a1c66 rproc_put -EXPORT_SYMBOL vmlinux 0x119cd234 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x11a3c4d2 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x11ab39e8 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x11b862e1 inet_sk_get_local_port_range +EXPORT_SYMBOL vmlinux 0x1170cddd t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x117f6b1f call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x11a4fd60 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x11c39e87 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0x11cd1949 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x11d561fe _dev_notice -EXPORT_SYMBOL vmlinux 0x11de0d8c xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x11dd5a83 phy_write_paged EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11e4ad4a iov_iter_zero -EXPORT_SYMBOL vmlinux 0x12073fa4 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x1204535c node_data EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120c5d2e crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x121cc014 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x1227a290 input_set_keycode EXPORT_SYMBOL vmlinux 0x122c3a7e _printk -EXPORT_SYMBOL vmlinux 0x122d4c17 generic_write_end -EXPORT_SYMBOL vmlinux 0x1242ddd5 blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x12719f0b md_bitmap_free +EXPORT_SYMBOL vmlinux 0x1265d98d block_dirty_folio +EXPORT_SYMBOL vmlinux 0x12792702 framebuffer_release EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x12870f59 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x1295720a nf_log_set -EXPORT_SYMBOL vmlinux 0x12c9e59a dev_mc_del +EXPORT_SYMBOL vmlinux 0x1285dd45 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x12908681 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x12b04fea peernet2id EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e8d279 seq_dentry -EXPORT_SYMBOL vmlinux 0x12efd383 nf_log_trace EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x130277a9 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x1309110a dqput EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x13110126 request_resource EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x1328add0 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x132aaccf register_quota_format -EXPORT_SYMBOL vmlinux 0x13307126 bdi_unregister -EXPORT_SYMBOL vmlinux 0x1340079c tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x1323dca3 kill_litter_super EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x13503e04 udp_read_skb -EXPORT_SYMBOL vmlinux 0x135bea37 napi_get_frags -EXPORT_SYMBOL vmlinux 0x13603c22 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x136a94a3 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x136e4091 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x1357a541 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x1371cbe8 dentry_open +EXPORT_SYMBOL vmlinux 0x1385cb95 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x13892dcc follow_up EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x139c12b1 ethtool_aggregate_phy_stats EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13ab7c80 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x13a6cd1e pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x13ac1438 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x13b0d4ae generic_ro_fops +EXPORT_SYMBOL vmlinux 0x13b12503 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d16007 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x13e49663 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x13ecc42b get_task_cred EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fd5184 proc_create_data +EXPORT_SYMBOL vmlinux 0x14118ab5 vme_irq_request EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14143fbe serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x143c4b44 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x14136c0b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x14178353 pci_set_master +EXPORT_SYMBOL vmlinux 0x14279308 unregister_console +EXPORT_SYMBOL vmlinux 0x142fee20 skb_trim +EXPORT_SYMBOL vmlinux 0x14372aa1 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x143e9e9f __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x1442d517 current_time +EXPORT_SYMBOL vmlinux 0x14438895 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1449fd50 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x144ebadd key_unlink EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1466e3aa phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x147057d7 simple_open -EXPORT_SYMBOL vmlinux 0x1471926d generic_delete_inode -EXPORT_SYMBOL vmlinux 0x148e0f3e elevator_alloc -EXPORT_SYMBOL vmlinux 0x149f4352 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x14821a1c dev_trans_start EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg +EXPORT_SYMBOL vmlinux 0x14a996d8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x14c5e12b sk_net_capable EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14d05661 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x14cae9aa ppp_input_error EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14e0fb16 mr_dump EXPORT_SYMBOL vmlinux 0x14ea5485 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x151157a6 request_key_tag -EXPORT_SYMBOL vmlinux 0x151b3b4a mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x151bee1e sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x14fffe56 fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x15301465 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x15344ab5 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x15480910 ip6_mtu +EXPORT_SYMBOL vmlinux 0x152a8d83 __folio_put +EXPORT_SYMBOL vmlinux 0x152fa229 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x15378d7a genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x153a5d26 simple_transaction_release EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x1566dc45 __aperture_remove_legacy_vga_devices -EXPORT_SYMBOL vmlinux 0x15673e80 vfs_symlink -EXPORT_SYMBOL vmlinux 0x156ed8e4 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x159eb6f5 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x154c9ead scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x1564a684 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x1596b8fa phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x159c1e85 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x15a09107 da903x_query_status +EXPORT_SYMBOL vmlinux 0x15ab0be5 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c5712e folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15dc2a67 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x15db78e0 tcf_em_register +EXPORT_SYMBOL vmlinux 0x15e25556 tcp_setsockopt EXPORT_SYMBOL vmlinux 0x15f6e524 pnp_activate_dev EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x15ffa4ae padata_do_parallel -EXPORT_SYMBOL vmlinux 0x16237fea lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x16263d4a get_cached_acl +EXPORT_SYMBOL vmlinux 0x160dabb1 d_find_alias EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162f7c8a dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163bdba8 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x1665fd4b __alloc_pages -EXPORT_SYMBOL vmlinux 0x166a8046 vfs_setpos -EXPORT_SYMBOL vmlinux 0x166f444c blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x16445b8d fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x164acc72 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x165f9fd1 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x1676ea71 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x1681f098 param_ops_long -EXPORT_SYMBOL vmlinux 0x169217e2 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x1694c314 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16998475 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x169a0b1d clear_inode +EXPORT_SYMBOL vmlinux 0x16a71c5e blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16aa3a94 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x16b34f61 __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x16bcdfec posix_acl_update_mode EXPORT_SYMBOL vmlinux 0x16bef9d5 kobject_init EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16cfacc5 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x16d3cb9b stop_tty EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e84ae8 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x16f9491b i8042_install_filter -EXPORT_SYMBOL vmlinux 0x16fb40c1 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x16fdc40e ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x170958a7 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x170c11db __skb_gso_segment EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x17119914 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x1718beeb __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x1729dc28 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x17334ef9 dev_set_alias EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x176fb0ed pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x17725f1f in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x175e3cd6 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x17718b1c blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0x177a82c3 entry_untrain_ret -EXPORT_SYMBOL vmlinux 0x1785514f ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x17965cd4 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x1788cbc0 dquot_disable +EXPORT_SYMBOL vmlinux 0x1789263b devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x17967a22 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x1798a0e6 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x1798b485 inet_addr_type +EXPORT_SYMBOL vmlinux 0x17a1293c inet_protos +EXPORT_SYMBOL vmlinux 0x17a2bd51 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x17a414e9 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x17b4b9eb fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0x17b69a37 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x17b96964 tls_server_hello_x509 -EXPORT_SYMBOL vmlinux 0x17be28f4 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x17a54272 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x17a63bd4 d_splice_alias +EXPORT_SYMBOL vmlinux 0x17acc8db input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x17b1e2f5 simple_transaction_get EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17c067b2 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x17c228b5 module_layout -EXPORT_SYMBOL vmlinux 0x17d873c8 neigh_for_each -EXPORT_SYMBOL vmlinux 0x17dc0b30 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x17dd1fb7 phy_suspend -EXPORT_SYMBOL vmlinux 0x17e35425 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x17ef2cbf path_has_submounts -EXPORT_SYMBOL vmlinux 0x17f2708d mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x17cd8500 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x17e49c27 phy_loopback EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f651b0 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x1816d09e pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x1819a3f5 register_sysctl -EXPORT_SYMBOL vmlinux 0x1823274c mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x182e9ae8 nf_log_packet +EXPORT_SYMBOL vmlinux 0x181dea71 sk_error_report +EXPORT_SYMBOL vmlinux 0x18233f28 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1864680f blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x186b5182 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x18710854 dm_put_device -EXPORT_SYMBOL vmlinux 0x18765873 dev_mc_init -EXPORT_SYMBOL vmlinux 0x187b40aa netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x185288bf tcp_child_process +EXPORT_SYMBOL vmlinux 0x187c9252 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write -EXPORT_SYMBOL vmlinux 0x188a368f page_pool_get_stats -EXPORT_SYMBOL vmlinux 0x188e9144 netlink_unicast EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18915283 get_inode_acl -EXPORT_SYMBOL vmlinux 0x1895076e mod_node_page_state +EXPORT_SYMBOL vmlinux 0x18b0cedf unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18d64f11 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x18c7d782 __napi_schedule +EXPORT_SYMBOL vmlinux 0x18d2a4b4 generic_delete_inode EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e6e1e5 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x18e71962 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x18ec36fb nd_device_unregister -EXPORT_SYMBOL vmlinux 0x18ee153e ipv6_select_ident EXPORT_SYMBOL vmlinux 0x18fd2c2d __x86_indirect_call_thunk_r13 -EXPORT_SYMBOL vmlinux 0x19049e22 key_alloc -EXPORT_SYMBOL vmlinux 0x1905d66a pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x1915e84a __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x191f02f2 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x191206b9 genphy_read_status +EXPORT_SYMBOL vmlinux 0x19278374 blk_set_runtime_active EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x1937533d elv_rb_add -EXPORT_SYMBOL vmlinux 0x193929c0 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x19439841 ata_print_version +EXPORT_SYMBOL vmlinux 0x194732a4 __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x19480df3 dev_mc_del EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x19544595 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x19548b1c sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x196353a8 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x195cf042 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x197b0cb7 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x197d5b60 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x197d63f6 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x19850758 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x1986b5da kernel_accept EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a0b72b devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x19a525f9 udplite_prot +EXPORT_SYMBOL vmlinux 0x19ad2554 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x19b1db37 skb_pull EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19db064b dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe EXPORT_SYMBOL vmlinux 0x19ee7398 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x1a040212 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x1a16690a poll_initwait -EXPORT_SYMBOL vmlinux 0x1a3c6b84 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x19ef408a iov_iter_zero +EXPORT_SYMBOL vmlinux 0x19fc71b4 blk_put_queue +EXPORT_SYMBOL vmlinux 0x19ff945c proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x1a058799 free_netdev +EXPORT_SYMBOL vmlinux 0x1a126927 inode_init_once +EXPORT_SYMBOL vmlinux 0x1a17a49a phy_init_eee EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4c6304 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x1a4dd6ca mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x1a549e97 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch -EXPORT_SYMBOL vmlinux 0x1a66611d security_inode_copy_up EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1a8ec5ac __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x1a7a52f3 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x1a7d121a scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x1a90efbf pci_select_bars +EXPORT_SYMBOL vmlinux 0x1a93fe51 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aab4274 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x1ab2bb1b has_capability_noaudit -EXPORT_SYMBOL vmlinux 0x1ac4b987 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1a9e1e9d make_kprojid +EXPORT_SYMBOL vmlinux 0x1aa65071 xp_free EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ad7bf26 scsi_device_get -EXPORT_SYMBOL vmlinux 0x1addfbcf pcim_iomap -EXPORT_SYMBOL vmlinux 0x1aeadfeb jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x1af67356 dm_get_device -EXPORT_SYMBOL vmlinux 0x1afc893a skb_append +EXPORT_SYMBOL vmlinux 0x1ac67e87 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x1ae96d01 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x1aff18ca generic_perform_write +EXPORT_SYMBOL vmlinux 0x1b00475c kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b065d36 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x1b092e47 alloc_pages -EXPORT_SYMBOL vmlinux 0x1b09c12a pcpu_hot -EXPORT_SYMBOL vmlinux 0x1b1650af skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x1b363c6c __sk_dst_check -EXPORT_SYMBOL vmlinux 0x1b390978 dst_destroy -EXPORT_SYMBOL vmlinux 0x1b48299e mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x1b484bd3 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0x1b4a915a vfs_get_tree -EXPORT_SYMBOL vmlinux 0x1b4b11c7 pv_ops -EXPORT_SYMBOL vmlinux 0x1b581380 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x1b01cea3 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x1b0a55ff ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x1b1049ce agp_put_bridge +EXPORT_SYMBOL vmlinux 0x1b181de9 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x1b2d8ccb fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5e1193 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b67511b t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x1b6f904c vfs_create_mount -EXPORT_SYMBOL vmlinux 0x1b755791 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x1b75faac dcache_readdir EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b79ca69 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x1b79f29a md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x1b83e767 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x1b86bb1c __phy_resume EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip -EXPORT_SYMBOL vmlinux 0x1b8d034f iommu_get_msi_cookie EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested -EXPORT_SYMBOL vmlinux 0x1b9c90db get_task_cred EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bac44a8 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x1bab21f8 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x1bb15477 folio_unlock EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bbea6ee ilookup5 -EXPORT_SYMBOL vmlinux 0x1bc3e76c netdev_change_features -EXPORT_SYMBOL vmlinux 0x1bc995f3 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x1bd2ea37 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x1bd3f3b9 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1c06c247 param_set_invbool -EXPORT_SYMBOL vmlinux 0x1c0acd38 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x1bd5c0fa set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x1be1ac4c vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x1bfcd946 ps2_begin_command EXPORT_SYMBOL vmlinux 0x1c0dd58c kobject_put -EXPORT_SYMBOL vmlinux 0x1c10c3db get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x1c125ef8 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x1c14e42e generic_read_dir -EXPORT_SYMBOL vmlinux 0x1c1fcecd rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x1c36798d __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x1c456651 param_set_short -EXPORT_SYMBOL vmlinux 0x1c462126 update_region -EXPORT_SYMBOL vmlinux 0x1c48146d kernel_param_lock +EXPORT_SYMBOL vmlinux 0x1c1f122e kmem_cache_free +EXPORT_SYMBOL vmlinux 0x1c288853 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1c29aedf devm_release_resource +EXPORT_SYMBOL vmlinux 0x1c3718df genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x1c5ef8ef dst_release_immediate -EXPORT_SYMBOL vmlinux 0x1c70fa18 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x1c9f866a request_key_rcu +EXPORT_SYMBOL vmlinux 0x1c5a8799 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x1c693e4d blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x1c760df7 set_create_files_as +EXPORT_SYMBOL vmlinux 0x1c7e4f71 seq_file_path +EXPORT_SYMBOL vmlinux 0x1c9bb913 nf_getsockopt EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb7b73f tty_unthrottle +EXPORT_SYMBOL vmlinux 0x1cbff356 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cda0f2e bioset_init -EXPORT_SYMBOL vmlinux 0x1cdb1b2e phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x1cdb6bf7 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x1cf7a8a6 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d0c518d setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d215c5c inode_update_time -EXPORT_SYMBOL vmlinux 0x1d237f03 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d2bf330 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x1d3db984 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x1d3af75b seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d4c1dd8 netdev_crit -EXPORT_SYMBOL vmlinux 0x1d901d75 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1d510aec security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x1d5d70d5 netdev_state_change +EXPORT_SYMBOL vmlinux 0x1d71a377 input_unregister_device +EXPORT_SYMBOL vmlinux 0x1d74cfbd mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x1d750777 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1d9f7d98 fb_show_logo -EXPORT_SYMBOL vmlinux 0x1da1e640 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x1dc3ff0a dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x1dc4762b secpath_set +EXPORT_SYMBOL vmlinux 0x1d97bdf6 register_quota_format +EXPORT_SYMBOL vmlinux 0x1d9ff717 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x1da02000 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x1db7f418 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dce582d phy_get_eee_err EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1ddb138d d_instantiate -EXPORT_SYMBOL vmlinux 0x1de105f7 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1df774e2 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x1debf909 __block_write_full_folio +EXPORT_SYMBOL vmlinux 0x1df1ded2 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e38a47f i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x1e4ed7ac qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x1e54e474 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x1e13363a devm_register_netdev +EXPORT_SYMBOL vmlinux 0x1e17550b simple_statfs +EXPORT_SYMBOL vmlinux 0x1e1c4811 tcp_read_done +EXPORT_SYMBOL vmlinux 0x1e1d8e3d pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x1e2b423a alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x1e3d675c mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e8a92d1 page_pool_unlink_napi +EXPORT_SYMBOL vmlinux 0x1e6fb052 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x1e91f64e vfs_llseek +EXPORT_SYMBOL vmlinux 0x1e9b7702 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea1a75f filemap_alloc_folio EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ec88afc inet_frags_init +EXPORT_SYMBOL vmlinux 0x1eb9aee9 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1eeb191f __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x1ef4cd18 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x1ef4f13d __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1f00c19c pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x1f29c67d noop_llseek -EXPORT_SYMBOL vmlinux 0x1f3b4415 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x1ee7bebd dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x1f1da658 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x1f2460b5 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x1f28194a xfrm_state_update +EXPORT_SYMBOL vmlinux 0x1f325fc4 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x1f4151d7 mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f5b5756 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x1f75642e xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x1f763835 __d_drop -EXPORT_SYMBOL vmlinux 0x1f8c63cd neigh_event_ns -EXPORT_SYMBOL vmlinux 0x1f95b4d0 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x1f5f6d84 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x1f645110 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x1f929c45 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x1f958562 vc_cons +EXPORT_SYMBOL vmlinux 0x1f9d9497 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x1fa40054 skb_find_text +EXPORT_SYMBOL vmlinux 0x1fb7901a __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc1109e proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x1fcb03b0 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x1fce8740 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x1fc79260 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd718c1 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x1fd92016 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x1fe9f1ea skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x1feb4a8b __sock_i_ino +EXPORT_SYMBOL vmlinux 0x1fd0adc3 rt6_lookup +EXPORT_SYMBOL vmlinux 0x1fd71fcf scsi_host_put +EXPORT_SYMBOL vmlinux 0x1fd89f4e udp_gro_complete +EXPORT_SYMBOL vmlinux 0x1fd9e3b1 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x1fe4f4f5 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x1fe594e9 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x1feaab0d twl6040_get_pll EXPORT_SYMBOL vmlinux 0x1fedd71e padata_alloc_shell EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x20026760 ipv4_specific -EXPORT_SYMBOL vmlinux 0x2004feef phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200fc481 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x201bf658 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x202e3705 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x2033da4e xfrm_state_add -EXPORT_SYMBOL vmlinux 0x20457681 dm_io EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x20585e68 devm_iounmap -EXPORT_SYMBOL vmlinux 0x20926ee9 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x20a048d1 rproc_free +EXPORT_SYMBOL vmlinux 0x204d9e3d tcf_idr_create +EXPORT_SYMBOL vmlinux 0x2062d7c6 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x20633fb0 ram_aops +EXPORT_SYMBOL vmlinux 0x20649b4c scmd_printk +EXPORT_SYMBOL vmlinux 0x2067300d dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x20781850 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x20846cfd hmm_range_fault +EXPORT_SYMBOL vmlinux 0x20991092 __inet_hash EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a98edd tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x20b86f9d tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress -EXPORT_SYMBOL vmlinux 0x20bd1c57 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x20c4ff26 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x20cb8fed skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20cf56a3 vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x20d11cc0 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x20cdf2fc netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20de414e seq_escape_mem -EXPORT_SYMBOL vmlinux 0x20e9f3bb sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x20d93851 sync_file_create EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20f1fc6d udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x212a57a5 console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0x21320dd0 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x2122ea4b nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x213fe15f dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x214537cd vfs_fsync -EXPORT_SYMBOL vmlinux 0x21454639 netlink_ack -EXPORT_SYMBOL vmlinux 0x21482183 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x214d3481 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x215364a7 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x2147c128 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x2149367e setattr_prepare EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event -EXPORT_SYMBOL vmlinux 0x2179d179 skb_pull_data -EXPORT_SYMBOL vmlinux 0x21830774 input_set_capability -EXPORT_SYMBOL vmlinux 0x2183b4c2 ip_frag_init -EXPORT_SYMBOL vmlinux 0x218b599f inet6_del_offload -EXPORT_SYMBOL vmlinux 0x218e3781 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21a5ebaa vif_device_init EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21cfeb57 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x21d4556d ip_defrag +EXPORT_SYMBOL vmlinux 0x21d69cdc mmc_free_host +EXPORT_SYMBOL vmlinux 0x21e010b5 phy_find_first EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e2c6d9 __tracepoint_read_msr EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21fe6dfa mdiobus_scan_c22 -EXPORT_SYMBOL vmlinux 0x2204bec4 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x220b77b7 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x222b2243 dquot_resume +EXPORT_SYMBOL vmlinux 0x21fdb0e2 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x220693bf jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x220c4ff9 put_fs_context +EXPORT_SYMBOL vmlinux 0x221f4254 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x2225488d fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x222abaa5 sock_no_listen EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2231aa55 dev_open EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x22414f0a bioset_exit -EXPORT_SYMBOL vmlinux 0x225c6166 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x2279d9ce __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x227a2098 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x22971ac8 block_write_end -EXPORT_SYMBOL vmlinux 0x22982a88 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x229e3bb0 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x2243bc4c wireless_send_event +EXPORT_SYMBOL vmlinux 0x22530bf7 __f_setown +EXPORT_SYMBOL vmlinux 0x22536107 nd_device_register +EXPORT_SYMBOL vmlinux 0x2258adc3 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x225a177e agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x22694647 getname_kernel +EXPORT_SYMBOL vmlinux 0x226a3737 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x226a9b15 generic_update_time +EXPORT_SYMBOL vmlinux 0x226dc0fa unpin_user_page +EXPORT_SYMBOL vmlinux 0x226e43a5 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x227971e0 free_task +EXPORT_SYMBOL vmlinux 0x2282d15d filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x2287b2a2 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x228bcb70 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x22988956 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c7ade8 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x22d3898b fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x22dcd542 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x22b795d1 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x230e3fc5 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x2319885c dmam_pool_create -EXPORT_SYMBOL vmlinux 0x231d823a uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x23353d20 kill_litter_super -EXPORT_SYMBOL vmlinux 0x235a8496 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x235a9f5c bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x2363057c tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x22e323a5 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x22e80d88 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x22f0f989 mr_table_dump +EXPORT_SYMBOL vmlinux 0x22f4eaca phy_disconnect +EXPORT_SYMBOL vmlinux 0x22f90c1a dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x230349e0 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x23044711 I_BDEV +EXPORT_SYMBOL vmlinux 0x232311ca register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x23278104 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x23408b01 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x2344c067 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x235ca9e2 neigh_destroy EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x23793e0d max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x237978f7 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x237aabab cdrom_open -EXPORT_SYMBOL vmlinux 0x237eedfe security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x2372530f dev_addr_add EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x239a5807 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x23b8d99d __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x23b9645d scsi_register_driver +EXPORT_SYMBOL vmlinux 0x2397e76c fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x23a79a17 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x23afa41d mdio_device_reset EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bf8f9d tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet EXPORT_SYMBOL vmlinux 0x23dc7f6c hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x23ded0a4 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x23ef3bbc d_obtain_root +EXPORT_SYMBOL vmlinux 0x23f1b644 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count -EXPORT_SYMBOL vmlinux 0x23f63b10 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x23f587d2 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x23fa3bfb alloc_pages EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x241797ca iput -EXPORT_SYMBOL vmlinux 0x2445da27 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x244ddf7c address_space_init_once +EXPORT_SYMBOL vmlinux 0x2418e11e devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x24211d34 empty_aops +EXPORT_SYMBOL vmlinux 0x242679eb mmc_remove_host +EXPORT_SYMBOL vmlinux 0x243b1da6 __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x24553df3 acpi_bus_register_driver EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2463aeaf sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x24835685 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248fc8f1 skb_copy EXPORT_SYMBOL vmlinux 0x24a11e17 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x24d106f3 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x24c1a1ee skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x24cdff09 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24dea07e proc_create_data +EXPORT_SYMBOL vmlinux 0x24d84cba pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x250f75aa ppp_input -EXPORT_SYMBOL vmlinux 0x25152e38 pps_register_source -EXPORT_SYMBOL vmlinux 0x251b5005 tcp_filter -EXPORT_SYMBOL vmlinux 0x252b7428 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x2507a46f nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x251f5126 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x251fff79 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x25209498 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x252cd7d8 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x25321eef prepare_creds -EXPORT_SYMBOL vmlinux 0x25478744 seq_puts -EXPORT_SYMBOL vmlinux 0x2557935c sock_no_accept -EXPORT_SYMBOL vmlinux 0x255d4961 __tracepoint_write_msr -EXPORT_SYMBOL vmlinux 0x2572c6b8 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x2543a609 mpage_writepages +EXPORT_SYMBOL vmlinux 0x254e262e fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x2564b09c ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x256d48ef netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x25703f56 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2584ba25 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x25865c11 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25923789 drop_super EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25a60fdb file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x25d76a73 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x25b6e13d dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x25cd0a06 xfrm_input EXPORT_SYMBOL vmlinux 0x25d7ceb4 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x25d9d1e6 d_move EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr -EXPORT_SYMBOL vmlinux 0x25dd9103 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f72ed3 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x25f97bac dev_deactivate +EXPORT_SYMBOL vmlinux 0x25ef9e83 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x25fa7e14 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x26006152 tcp_shutdown EXPORT_SYMBOL vmlinux 0x26060d14 set_groups -EXPORT_SYMBOL vmlinux 0x260b006b inet6_bind -EXPORT_SYMBOL vmlinux 0x261de7f7 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x260d6790 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x26104324 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x2610516d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x26228b2a proto_unregister +EXPORT_SYMBOL vmlinux 0x2622a7cb sock_no_shutdown EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x26441aa8 lookup_one_qstr_excl -EXPORT_SYMBOL vmlinux 0x266510d6 follow_down_one -EXPORT_SYMBOL vmlinux 0x267140a1 rtnl_notify -EXPORT_SYMBOL vmlinux 0x2680b141 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x2644776d mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x2648cce8 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x26686dfe dst_discard_out +EXPORT_SYMBOL vmlinux 0x266e4dfe security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x2670c1a8 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x2680b2cb skb_copy_expand EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x2693a4b8 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x26c657bc iov_iter_advance +EXPORT_SYMBOL vmlinux 0x268d4378 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x268dbca9 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x2693f13e file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x26b7fd67 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x26d291bc __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x26d93d8f noop_fsync +EXPORT_SYMBOL vmlinux 0x26dff8d8 security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e3814b tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0x26e8492c phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x26efe231 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x26f0a9f7 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x26e32aad tcp_close +EXPORT_SYMBOL vmlinux 0x26f257ab sockopt_lock_sock EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x26fa438e __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x26ff1a2f sock_alloc_file +EXPORT_SYMBOL vmlinux 0x27043bd0 skb_seq_read +EXPORT_SYMBOL vmlinux 0x2706bf70 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x271e407a alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x272062ce mdio_bus_type EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272e1119 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x272af458 d_alloc_name +EXPORT_SYMBOL vmlinux 0x27327e77 seq_open_private EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2746214e elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x27466ad7 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x275e33ef jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x275ffc5f inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x276006fc file_path +EXPORT_SYMBOL vmlinux 0x276b0d4c scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x276e247e fixed_size_llseek EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x278671ea __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x27ad97bd nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x2787f5e5 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x278c824e netdev_info +EXPORT_SYMBOL vmlinux 0x27934e73 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x279587dc phy_attach_direct +EXPORT_SYMBOL vmlinux 0x27a3d26f devm_aperture_acquire_for_platform_device EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c55a5a udp_seq_start +EXPORT_SYMBOL vmlinux 0x27c10bb8 skb_split +EXPORT_SYMBOL vmlinux 0x27c4d682 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d60f14 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x27d6fc5c bio_reset -EXPORT_SYMBOL vmlinux 0x27e67c23 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x27d4968d pcim_iounmap +EXPORT_SYMBOL vmlinux 0x27d4a1d0 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x27e80ba8 tcp_read_skb +EXPORT_SYMBOL vmlinux 0x27f69305 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x27fc97db icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x2801a22f proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x280a47ae seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x2812091e ata_print_version -EXPORT_SYMBOL vmlinux 0x28128f9a twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x2806a59f register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x284d0873 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x281f0690 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 EXPORT_SYMBOL vmlinux 0x28500e13 proc_douintvec -EXPORT_SYMBOL vmlinux 0x285896da __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x28646540 processors -EXPORT_SYMBOL vmlinux 0x28739f3d generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x286a9629 param_get_string EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x289adb08 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x28c29f3f sock_efree +EXPORT_SYMBOL vmlinux 0x28a66416 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x28aa118c inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x28b2e592 blk_start_plug EXPORT_SYMBOL vmlinux 0x28c89d25 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x28d4dce1 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x28dd5e0f bio_init +EXPORT_SYMBOL vmlinux 0x28d2fefe tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e8f541 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x290fd4e6 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x291baeb9 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x28fc3970 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x290330cb tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x2909df0f kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x292578c2 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x29547dc3 seq_read_iter EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x29671256 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x296aa688 udp_ioctl EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x2974b2a5 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x297befda qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29de74ec mmc_gpio_set_cd_irq +EXPORT_SYMBOL vmlinux 0x29b8a008 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x2a082899 acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0x2a0a06db inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x29e740e2 sock_pfree +EXPORT_SYMBOL vmlinux 0x29fb6e21 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x2a0f6d09 pci_get_device +EXPORT_SYMBOL vmlinux 0x2a11eefc blk_sync_queue +EXPORT_SYMBOL vmlinux 0x2a28c549 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x2a2a0f3f pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a304a6e pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x2a3e3912 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x2a459329 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x2a4693dd __find_get_block -EXPORT_SYMBOL vmlinux 0x2a526cad ppp_channel_index -EXPORT_SYMBOL vmlinux 0x2a637510 netdev_core_stats_alloc -EXPORT_SYMBOL vmlinux 0x2a659e1a dev_activate +EXPORT_SYMBOL vmlinux 0x2a3443a3 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2a3f1bd0 phy_device_register EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable +EXPORT_SYMBOL vmlinux 0x2a6d6532 tty_port_close EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a73d565 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x2a77a125 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x2a7cee74 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x2a81caef inode_needs_sync -EXPORT_SYMBOL vmlinux 0x2a82a845 send_sig_info EXPORT_SYMBOL vmlinux 0x2a85b203 cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a92acc9 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab0208b iov_iter_discard -EXPORT_SYMBOL vmlinux 0x2ab625d0 simple_getattr -EXPORT_SYMBOL vmlinux 0x2ac4079f input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x2ab4eedb netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x2ac06123 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0x2acb4eaf __x86_indirect_call_thunk_r11 -EXPORT_SYMBOL vmlinux 0x2ad78204 follow_down -EXPORT_SYMBOL vmlinux 0x2add87d3 finalize_exec -EXPORT_SYMBOL vmlinux 0x2aeed53d km_state_notify -EXPORT_SYMBOL vmlinux 0x2b08e603 unregister_netdev -EXPORT_SYMBOL vmlinux 0x2b13eff0 do_SAK -EXPORT_SYMBOL vmlinux 0x2b292d02 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x2b3462f4 blk_finish_plug -EXPORT_SYMBOL vmlinux 0x2b3a6b8d jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x2b40cf18 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x2b44a251 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x2b463f44 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x2aeac92d get_tree_single +EXPORT_SYMBOL vmlinux 0x2b05b4e7 sget_fc +EXPORT_SYMBOL vmlinux 0x2b12a077 tcp_connect +EXPORT_SYMBOL vmlinux 0x2b1abdc0 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2b2345ac pci_find_resource +EXPORT_SYMBOL vmlinux 0x2b247fdc acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x2b324edd skb_free_datagram +EXPORT_SYMBOL vmlinux 0x2b3abc53 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x2b4e9bcb tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b5b504b devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x2b5dd3cd dev_printk_emit EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b7f12a7 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x2b88a733 param_ops_short -EXPORT_SYMBOL vmlinux 0x2b98b633 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x2b72b961 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x2b73bcaa jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x2b896242 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x2b8df3d8 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x2b9504c6 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x2b95f8e8 skb_checksum EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock EXPORT_SYMBOL vmlinux 0x2bae204e mt_find EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock EXPORT_SYMBOL vmlinux 0x2bb7c05d __x86_indirect_call_thunk_rsi -EXPORT_SYMBOL vmlinux 0x2bcf2d44 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x2bd0bf18 tcf_classify EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2be10b84 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x2bfb8b7e mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x2bfee1ef tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x2bde99f3 __module_get EXPORT_SYMBOL vmlinux 0x2c03dd6d __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x2c045092 netif_tx_lock -EXPORT_SYMBOL vmlinux 0x2c155aa7 release_sock -EXPORT_SYMBOL vmlinux 0x2c1e5136 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x2c1ea137 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x2c24909b md_bitmap_unplug_async EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c53c398 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c633826 build_skb_around -EXPORT_SYMBOL vmlinux 0x2c7ea426 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x2c5d73ee md_update_sb +EXPORT_SYMBOL vmlinux 0x2c5ee971 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x2c624198 proc_set_user +EXPORT_SYMBOL vmlinux 0x2c7388a2 misc_register +EXPORT_SYMBOL vmlinux 0x2c744820 neigh_xmit EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c83aba6 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x2c8bada7 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x2c98ba34 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2c8d5bf5 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x2c9a6337 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x2ca6f559 serio_unregister_port EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd7d901 file_update_time -EXPORT_SYMBOL vmlinux 0x2ce6f103 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x2ce22615 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table -EXPORT_SYMBOL vmlinux 0x2cf19736 inode_permission EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2cfb8eaa rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x2cfd7858 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x2d12e6ac __skb_checksum +EXPORT_SYMBOL vmlinux 0x2cfb17a7 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x2cfb808a mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1c02e7 param_get_long +EXPORT_SYMBOL vmlinux 0x2d1f4693 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x2d2f8027 __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged -EXPORT_SYMBOL vmlinux 0x2d3239f5 sock_edemux EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d44ee35 device_get_mac_address EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d4ee695 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x2d689960 sget_fc +EXPORT_SYMBOL vmlinux 0x2d5d12d0 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x2d67447b max8998_bulk_write EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2daf8d37 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x2db2af99 tty_register_driver -EXPORT_SYMBOL vmlinux 0x2dcf04a7 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x2d9c9b5c netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x2db1c00d tty_port_open +EXPORT_SYMBOL vmlinux 0x2dcc4648 ndisc_ns_create EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de39b4c fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2dfe068d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x2df96467 pps_register_source +EXPORT_SYMBOL vmlinux 0x2dfe841f tcp_init_sock EXPORT_SYMBOL vmlinux 0x2e0a637d acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x2e1233ba udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2fe847 ilookup5_nowait EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e4e8bfe xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e689ed5 dma_set_mask -EXPORT_SYMBOL vmlinux 0x2ea9548f sync_blockdev -EXPORT_SYMBOL vmlinux 0x2ec402cd dump_align +EXPORT_SYMBOL vmlinux 0x2e68f025 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x2e71c25e i2c_transfer +EXPORT_SYMBOL vmlinux 0x2e9311fe simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2e9a947c drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x2ea5bb77 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x2eb73b9a skb_vlan_untag EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ef40ec3 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x2ef83302 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x2ecf2855 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x2ed6988c mdio_device_remove +EXPORT_SYMBOL vmlinux 0x2edf463c do_splice_direct +EXPORT_SYMBOL vmlinux 0x2efc88b8 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f10439b xfrm_register_km -EXPORT_SYMBOL vmlinux 0x2f26891e d_alloc_name +EXPORT_SYMBOL vmlinux 0x2f1704fb tty_name +EXPORT_SYMBOL vmlinux 0x2f17395b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x2f212405 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f335ba3 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3f3e30 kernel_listen -EXPORT_SYMBOL vmlinux 0x2f5fb42a fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x2f454a81 param_get_int +EXPORT_SYMBOL vmlinux 0x2f498f94 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x2f51eabd tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x2f691029 blk_finish_plug EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f8159ed con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x2f891a9a bio_put -EXPORT_SYMBOL vmlinux 0x2f8c5468 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x2f8300a9 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x2f845220 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x2f8a2533 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x2f8be2d9 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x2f8fd634 register_md_personality +EXPORT_SYMBOL vmlinux 0x2facb165 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x2fb17ef3 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x2fb56393 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x2fbd1d61 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x2fcbfcd0 vm_insert_page +EXPORT_SYMBOL vmlinux 0x2fd435ce tls_server_hello_x509 +EXPORT_SYMBOL vmlinux 0x2fe1333c vmalloc_to_page EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x30123f91 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x2ff04dc3 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x3000d329 unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x30147875 pcie_capability_clear_and_set_word_locked -EXPORT_SYMBOL vmlinux 0x30158e1a pci_enable_link_state -EXPORT_SYMBOL vmlinux 0x301b9859 register_netdevice -EXPORT_SYMBOL vmlinux 0x302b2c1a empty_aops -EXPORT_SYMBOL vmlinux 0x302c982c tls_handshake_cancel -EXPORT_SYMBOL vmlinux 0x302fbd07 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x303452b3 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x3020145f skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x3031587b eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x303c04a4 eth_header +EXPORT_SYMBOL vmlinux 0x303e91c8 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x304d3ffa configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x30568df6 vfs_ioctl EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0x308fe883 skb_push +EXPORT_SYMBOL vmlinux 0x305cfb4b mmc_command_done +EXPORT_SYMBOL vmlinux 0x3064110f iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x307f6f05 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x308acc50 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x3096c33a mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x309e1dc2 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x309eb844 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x30a3ee7e pci_map_rom EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b344a6 agp_backend_release -EXPORT_SYMBOL vmlinux 0x30b9f653 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x30c9bd15 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x30d7e4ee scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x30ea4d3c simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x30ef8c1d dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x30f8e238 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x310d4557 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x310da439 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x30d066fc xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x30fa3ae8 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x31063771 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x31071626 proc_create +EXPORT_SYMBOL vmlinux 0x31187b57 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x312fcd5b devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x31453546 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x3148a923 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x3132c8ea copy_splice_read +EXPORT_SYMBOL vmlinux 0x313763e5 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x31409790 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x314a12f6 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x3156249e netdev_pick_tx EXPORT_SYMBOL vmlinux 0x315a2bf5 asm_load_gs_index -EXPORT_SYMBOL vmlinux 0x315ab9b8 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x3173292c finish_swait -EXPORT_SYMBOL vmlinux 0x317587e3 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x3195c1ba sock_no_listen -EXPORT_SYMBOL vmlinux 0x319e73ec param_get_string -EXPORT_SYMBOL vmlinux 0x31a66bfa bio_kmalloc -EXPORT_SYMBOL vmlinux 0x31c1f606 skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0x31cbd690 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x31ce4ee3 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x31d6b49d __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x31db08cf page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x31755654 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x317aa6e5 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x318f7e66 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x31a1aeff genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x31af78b5 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x31b880fe import_single_range +EXPORT_SYMBOL vmlinux 0x31c7390c netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x31d64d1f mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x31e0240e inc_node_page_state +EXPORT_SYMBOL vmlinux 0x31e2fdea eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x31e57e4c kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x320198e7 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x320ceb0f ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x3212d788 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x31f8678c pci_disable_msix +EXPORT_SYMBOL vmlinux 0x31f8b83e ptp_clock_register +EXPORT_SYMBOL vmlinux 0x32130de6 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x32156e34 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset -EXPORT_SYMBOL vmlinux 0x322eccb9 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x323eafb3 devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0x3245c274 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x32546272 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x324d4d14 input_grab_device EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop -EXPORT_SYMBOL vmlinux 0x326f3aad rtnl_create_link -EXPORT_SYMBOL vmlinux 0x3270ab1d mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach -EXPORT_SYMBOL vmlinux 0x3281a515 vme_dma_request EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3295ad65 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x329c08a3 may_umount -EXPORT_SYMBOL vmlinux 0x32ae339a vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x32b4001a md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x32b6c2a8 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x32bd7aac xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x32c012bf param_get_int -EXPORT_SYMBOL vmlinux 0x32ca4501 bio_uninit +EXPORT_SYMBOL vmlinux 0x32a455c7 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x32a618ae ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x32ca4336 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x32cb70b9 amd_iommu_domain_set_gcr3 EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d2ab6a flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x32d0e674 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x32de75a8 __x86_indirect_call_thunk_rdi +EXPORT_SYMBOL vmlinux 0x32e56e4a ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32efcc5c invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x32f14830 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x3321b116 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x32fc9a2f netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x3311d595 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector EXPORT_SYMBOL vmlinux 0x3329a360 crypto_sha3_final EXPORT_SYMBOL vmlinux 0x333bfca1 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x33404f39 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x335884c9 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x33594586 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x33690be6 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x335c3b83 inet_frags_init EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x339508b8 scsi_add_device -EXPORT_SYMBOL vmlinux 0x33a58d25 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x338aca54 build_skb +EXPORT_SYMBOL vmlinux 0x338f619d sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x33b21d8e sock_no_linger EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c703d5 tcp_add_backlog EXPORT_SYMBOL vmlinux 0x33d07fee __x86_indirect_call_thunk_r10 -EXPORT_SYMBOL vmlinux 0x33e0f89a xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x33e24848 freeze_bdev +EXPORT_SYMBOL vmlinux 0x33d46ac1 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x33eb5e5c filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x340ac294 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x340fef48 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x341b646a dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x34213789 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x343dc310 mmc_start_request +EXPORT_SYMBOL vmlinux 0x343187fa pci_read_config_word +EXPORT_SYMBOL vmlinux 0x343cebd4 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x344740ce skb_queue_tail EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34b772e1 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x34c4e2ed netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x34aaa1fc bio_init EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cbcea2 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x34d8a817 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x34d92c0b blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x34d59f6c key_link +EXPORT_SYMBOL vmlinux 0x34d5df0b dquot_release EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34deebaa filemap_fault -EXPORT_SYMBOL vmlinux 0x34e616d5 __breadahead +EXPORT_SYMBOL vmlinux 0x34f3234a pagecache_get_page EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34f8565b pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger -EXPORT_SYMBOL vmlinux 0x34fcf794 xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0x3501d17e inet6_getname EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35207c2d dma_fence_describe -EXPORT_SYMBOL vmlinux 0x352b66be consume_skb EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3541c3e7 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x35475267 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace -EXPORT_SYMBOL vmlinux 0x355e2a8b tcp_read_sock EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356636e3 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x3566d92b md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x35735c68 ppp_dev_name -EXPORT_SYMBOL vmlinux 0x358571f8 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x358b79eb handshake_req_submit +EXPORT_SYMBOL vmlinux 0x35a55aea unpin_user_pages EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35d21017 try_module_get -EXPORT_SYMBOL vmlinux 0x35e61d57 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x35e7fde4 twl6040_power -EXPORT_SYMBOL vmlinux 0x35ee98a4 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x3603f23e netdev_alert +EXPORT_SYMBOL vmlinux 0x35b02d62 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x35ba2dd6 is_subdir +EXPORT_SYMBOL vmlinux 0x35dabad5 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x35f7c742 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x36096d9a set_anon_super EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x360e04fa unregister_console -EXPORT_SYMBOL vmlinux 0x3638fc28 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x363f9c42 vc_cons +EXPORT_SYMBOL vmlinux 0x3630a4be pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x36381987 ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked -EXPORT_SYMBOL vmlinux 0x364d8d71 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x3652051d from_kuid +EXPORT_SYMBOL vmlinux 0x365a4d80 ipmr_rule_default EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init -EXPORT_SYMBOL vmlinux 0x367e3489 backlight_device_register -EXPORT_SYMBOL vmlinux 0x36aaccaa jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x3684c85d mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x36a514da invalidate_disk EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36c4b534 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x36d3843e flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x36d51f99 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x36e11e9f d_delete -EXPORT_SYMBOL vmlinux 0x36fd3713 page_get_link -EXPORT_SYMBOL vmlinux 0x3705fe2e input_get_timestamp +EXPORT_SYMBOL vmlinux 0x36c064a1 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x36d2a5e6 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x36d3be11 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x36d45ea7 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x36d7deb0 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x370e39d8 tcf_block_put EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x37157d2a kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x371cab46 skb_condense EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x37288f74 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x373b0750 param_set_bool EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374972b5 sock_no_connect +EXPORT_SYMBOL vmlinux 0x3749bbc2 param_set_bool +EXPORT_SYMBOL vmlinux 0x37508937 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3758de9b __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x3769c0ac key_type_keyring +EXPORT_SYMBOL vmlinux 0x376f10f0 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x377564c8 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x377b349a ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x37895344 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x37a38b0b __destroy_inode EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37baf8bb max8998_read_reg EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37bf4908 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x37cf8012 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x37d5f3ac write_dirty_buffer EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37dca1cc sk_common_release -EXPORT_SYMBOL vmlinux 0x37e2656c lookup_one_len -EXPORT_SYMBOL vmlinux 0x37e7c59b gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x37fcd2f9 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x3810a0de cdev_del -EXPORT_SYMBOL vmlinux 0x38112f8f param_set_ulong -EXPORT_SYMBOL vmlinux 0x3812f6a5 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0x37dcd80a file_path EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382f3412 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x3840ffce inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x38214223 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x3840b253 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x384facef pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x385460c1 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x38585f8b simple_nosetlease -EXPORT_SYMBOL vmlinux 0x386d971d pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x385a77d1 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x387c805c phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x387e6776 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38899fcf md_handle_request EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x38944108 nd_device_register EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x389a108d dump_skip_to -EXPORT_SYMBOL vmlinux 0x389d4409 mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38d4d46f jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x38af69ed netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x38bb0363 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x38e32599 pci_request_region EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38ef013f inet_ioctl EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39183613 napi_complete_done EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x391ed779 dev_load -EXPORT_SYMBOL vmlinux 0x391eeb1f xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x3920bd93 inode_init_owner +EXPORT_SYMBOL vmlinux 0x3921d1d6 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x3927c7d8 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x3939d912 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x3932cc42 softnet_data EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39434854 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394f8ccc misc_register -EXPORT_SYMBOL vmlinux 0x395130fc blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x3957de52 phy_device_remove -EXPORT_SYMBOL vmlinux 0x3959354f phy_attached_info -EXPORT_SYMBOL vmlinux 0x395fecb4 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x396aa804 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x3977b659 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a17fad mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x39a87311 pcie_capability_clear_and_set_word_locked EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x39b1bce5 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x39b47b7f devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x39b767e3 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x39ccdb28 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x39d877ba qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39e66144 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0x39fc0fff unpin_user_page +EXPORT_SYMBOL vmlinux 0x39e829fd dquot_alloc EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 -EXPORT_SYMBOL vmlinux 0x3a127d6c fb_class +EXPORT_SYMBOL vmlinux 0x3a0e202f __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x3a156571 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x3a178561 sg_miter_stop EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x3a4f3067 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x3a3de8cf put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x3a42a5a2 iptun_encaps EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x3a5fb87d sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x3a79b417 qdisc_reset -EXPORT_SYMBOL vmlinux 0x3a87ec20 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x3a9cc826 seq_path -EXPORT_SYMBOL vmlinux 0x3aa8c698 to_nd_btt +EXPORT_SYMBOL vmlinux 0x3a576f69 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x3a6eb7f2 eth_type_trans +EXPORT_SYMBOL vmlinux 0x3a8439aa backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x3a934125 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x3a97a3c9 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x3a9aa7d2 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x3aa76c4c scsi_dma_map +EXPORT_SYMBOL vmlinux 0x3aaf1cce filemap_get_folios EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock -EXPORT_SYMBOL vmlinux 0x3ab73989 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abf49c2 dev_kfree_skb_any_reason +EXPORT_SYMBOL vmlinux 0x3abff4e2 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x3ac18270 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x3ac5390d netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3acc2404 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3ae16e60 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x3ae0944f nf_reinject +EXPORT_SYMBOL vmlinux 0x3ae2bac4 get_agp_version EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3ae53280 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x3ae74721 d_drop +EXPORT_SYMBOL vmlinux 0x3aea9479 elv_rb_add EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b0e2b9f security_path_rename -EXPORT_SYMBOL vmlinux 0x3b20f703 param_get_ushort +EXPORT_SYMBOL vmlinux 0x3b106b74 locks_delete_block +EXPORT_SYMBOL vmlinux 0x3b1d7c02 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3b236572 d_add_ci EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b357e49 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x3b3582ec sock_set_priority +EXPORT_SYMBOL vmlinux 0x3b39a5bb i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x3b423410 __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x3b5a7fb5 max8925_bulk_read EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6b4949 __netif_schedule +EXPORT_SYMBOL vmlinux 0x3b69391d elv_rb_former_request EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b72f08d preempt_schedule_notrace_thunk +EXPORT_SYMBOL vmlinux 0x3b80368a scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b8689d9 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x3b88dfe5 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3ba71e2f dma_find_channel +EXPORT_SYMBOL vmlinux 0x3b973e6b dev_remove_offload +EXPORT_SYMBOL vmlinux 0x3ba5eeec nf_log_trace +EXPORT_SYMBOL vmlinux 0x3ba93e7b ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x3ba9ff09 has_capability +EXPORT_SYMBOL vmlinux 0x3bc205a2 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x3bc691dc devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x3bcc1610 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x3bcd0f46 mmc_put_card -EXPORT_SYMBOL vmlinux 0x3bcf871b inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x3be7050e tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x3bec9ac2 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x3bef16fb mpage_writepages -EXPORT_SYMBOL vmlinux 0x3bf0a0f0 sync_blockdev_range -EXPORT_SYMBOL vmlinux 0x3bf1f04e genphy_loopback -EXPORT_SYMBOL vmlinux 0x3c001212 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x3c0e67f7 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x3c1327be sk_alloc +EXPORT_SYMBOL vmlinux 0x3be13a13 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x3bf4cf59 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x3c116231 param_get_short +EXPORT_SYMBOL vmlinux 0x3c1705b3 unix_get_socket EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c39803d input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x3c3a2ee2 udp_disconnect +EXPORT_SYMBOL vmlinux 0x3c3fb99e gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c4670d0 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x3c5e8a2f dquot_get_state -EXPORT_SYMBOL vmlinux 0x3c6b0797 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x3c7933d1 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x3c848c5f iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x3ca03bda pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x3cae6099 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x3caffdb9 devm_ioremap +EXPORT_SYMBOL vmlinux 0x3c4f7f14 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3c89797c __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3c8a8c73 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x3cacadb5 submit_bh +EXPORT_SYMBOL vmlinux 0x3cae9e4e init_special_inode EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3cc05eeb copy_splice_read -EXPORT_SYMBOL vmlinux 0x3cc517c9 dquot_alloc -EXPORT_SYMBOL vmlinux 0x3cd06d1b tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x3cbe2286 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x3ccb7835 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x3cd932b9 file_remove_privs EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce8649b sock_ioctl_inout -EXPORT_SYMBOL vmlinux 0x3cefc845 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x3d051ace netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x3ce4d0da unregister_qdisc +EXPORT_SYMBOL vmlinux 0x3cf10047 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x3cf42a78 d_add +EXPORT_SYMBOL vmlinux 0x3cfff7af devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d26516c md_write_end -EXPORT_SYMBOL vmlinux 0x3d2b67c5 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x3d316e36 del_gendisk -EXPORT_SYMBOL vmlinux 0x3d436b25 km_new_mapping -EXPORT_SYMBOL vmlinux 0x3d5c8b39 sock_pfree -EXPORT_SYMBOL vmlinux 0x3d7625bc filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x3d5ad3cc nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x3d6fd327 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x3d7bac46 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x3d826254 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x3d8aca73 seq_read_iter +EXPORT_SYMBOL vmlinux 0x3d9109fc __destroy_inode +EXPORT_SYMBOL vmlinux 0x3d928444 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x3d9a9e45 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x3da092b8 dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3da4d18e pci_match_id +EXPORT_SYMBOL vmlinux 0x3da73c16 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3da7644c tty_kref_put EXPORT_SYMBOL vmlinux 0x3daae96c dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3dbba8ad tty_port_hangup -EXPORT_SYMBOL vmlinux 0x3dc4d8f8 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcdff3a inet_addr_type_table EXPORT_SYMBOL vmlinux 0x3dcefe2e load_nls_default EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3de940f9 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x3de4cb70 sk_capable +EXPORT_SYMBOL vmlinux 0x3de4fa39 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x3dfb2dc9 vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc55cd mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e09e935 dma_pool_create -EXPORT_SYMBOL vmlinux 0x3e2534ef splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x3e2cd173 pci_save_state +EXPORT_SYMBOL vmlinux 0x3e378938 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e40acf3 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x3e4f8b10 vme_irq_request -EXPORT_SYMBOL vmlinux 0x3e70337c netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x3e800602 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x3e8d6dcb vme_slave_request -EXPORT_SYMBOL vmlinux 0x3e8ff099 dev_uc_add -EXPORT_SYMBOL vmlinux 0x3e94b19b sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x3e95b9c7 mmc_get_card -EXPORT_SYMBOL vmlinux 0x3ea549b5 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x3ec54b1d fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x3e3da29d agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x3e44d6f9 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x3e475f47 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x3e551d45 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x3e6592b7 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x3e6aa030 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x3e8dfa5e tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x3e974190 file_open_root +EXPORT_SYMBOL vmlinux 0x3eb31832 genl_register_family +EXPORT_SYMBOL vmlinux 0x3ebf2f43 phy_device_create EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ecf7172 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x3ef1d729 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x3ecd321c sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f06221e tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x3f075508 copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0x3f05bbe0 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f0ef343 seq_release -EXPORT_SYMBOL vmlinux 0x3f12ab9c folio_mark_accessed -EXPORT_SYMBOL vmlinux 0x3f2e3d0e mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x3f2fe8a9 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x3f10858d pci_bus_type +EXPORT_SYMBOL vmlinux 0x3f11884b mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x3f152aa7 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x3f2a2819 fs_context_for_mount EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x3f3e9847 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4639c1 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x3f4677de ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x3f4a0906 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x3f4b4bc0 init_task +EXPORT_SYMBOL vmlinux 0x3f498271 to_nd_pfn EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f537f8b xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x3f542cb7 __seq_open_private -EXPORT_SYMBOL vmlinux 0x3f642f53 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x3f6c2d7f nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x3f4d2126 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x3f5603d1 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x3f563e66 tty_unlock +EXPORT_SYMBOL vmlinux 0x3f586149 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x3f60dd67 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x3f7e04c6 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x3f838003 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f8e2979 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x3fb23bde pci_get_class -EXPORT_SYMBOL vmlinux 0x3fbb4521 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x3fbbe093 folio_alloc -EXPORT_SYMBOL vmlinux 0x3fbc6f3e twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x3fb647fe mmc_erase EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fcdb29c page_pool_create -EXPORT_SYMBOL vmlinux 0x3fd73bfd fb_pgprotect +EXPORT_SYMBOL vmlinux 0x3fc23ed0 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x3fcabbd4 amd_iommu_device_info EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe1b22a write_cache_pages EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3ff51b25 param_ops_uint -EXPORT_SYMBOL vmlinux 0x4016deff dquot_scan_active -EXPORT_SYMBOL vmlinux 0x401a4596 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x3fe3f33d iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x4000ee3c current_in_userns EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x404a4555 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x40552f26 register_key_type +EXPORT_SYMBOL vmlinux 0x40393efa netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x403952a2 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x40552fc2 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x40562245 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0x4068964d sys_fillrect -EXPORT_SYMBOL vmlinux 0x408899e7 folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x408c30d5 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x408ea995 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x408fdcec udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x40784389 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x407ba824 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409f2125 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate +EXPORT_SYMBOL vmlinux 0x40a806be pneigh_lookup EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c6e795 tcp_read_done +EXPORT_SYMBOL vmlinux 0x40adc87d xen_free_ballooned_pages EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c8bf44 blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d15f07 simple_pin_fs EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d6196d mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x40dd1e29 dev_close EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x410a9d35 fc_mount +EXPORT_SYMBOL vmlinux 0x40fd82c7 scsi_print_command +EXPORT_SYMBOL vmlinux 0x41187bf0 fddi_type_trans EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41383ae6 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x4142517d cont_write_begin +EXPORT_SYMBOL vmlinux 0x412fd3be xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x4134a35d make_kuid EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414a633e __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x415b80f3 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0x417096e2 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x41709c40 kthread_stop -EXPORT_SYMBOL vmlinux 0x417db3f6 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x418432c7 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x4150c13e devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x416ef767 tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0x41814bc0 proc_symlink EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x4190ce96 tcf_block_put -EXPORT_SYMBOL vmlinux 0x41983605 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x4199033b shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x4191bb68 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x41924cb9 __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41bbb0ce csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x41cf90e4 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x41cf9f69 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x41b38dc7 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x41bee626 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x41c9a210 netdev_warn +EXPORT_SYMBOL vmlinux 0x41d36f19 to_nd_dax +EXPORT_SYMBOL vmlinux 0x41e5054a page_cache_next_miss EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f11e5e device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x4204af3e nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x4204cb4c prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x4207f844 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x421cca8b netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x422a643f dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x42334d4c vfs_statfs -EXPORT_SYMBOL vmlinux 0x42463cb5 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x4208517c sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0x421419cf reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x42167421 wake_up_process +EXPORT_SYMBOL vmlinux 0x421fbc9a jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x42248d24 igrab +EXPORT_SYMBOL vmlinux 0x42312569 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x423f4b2f finalize_exec +EXPORT_SYMBOL vmlinux 0x42423740 register_md_cluster_operations EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424d3487 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x424d4d18 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x425423ec rtnl_unicast +EXPORT_SYMBOL vmlinux 0x424e191e unix_detach_fds +EXPORT_SYMBOL vmlinux 0x424fb34a agp_generic_enable +EXPORT_SYMBOL vmlinux 0x425507bf fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4266e35a vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x426ecacb netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x427c4853 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x429d5ec9 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x429d9bac free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x428309ed skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x428b9fb5 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x4290d609 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x4291a9d9 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x4295ff0e dm_get_device +EXPORT_SYMBOL vmlinux 0x42a6b3c0 key_move +EXPORT_SYMBOL vmlinux 0x42a80900 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x42ad6732 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x42b4a590 ip6_mtu +EXPORT_SYMBOL vmlinux 0x42b66b4d __sock_create EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42bf9c64 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x42bf7094 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x42c11735 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x42df191b elevator_alloc EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f244d6 phy_read_paged +EXPORT_SYMBOL vmlinux 0x42fc369c skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x42ff5f44 neigh_for_each +EXPORT_SYMBOL vmlinux 0x4301f34a configfs_depend_item EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43236edd mark_page_accessed -EXPORT_SYMBOL vmlinux 0x432818fb xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x432c7a53 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x43104102 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x4315c376 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x4317f296 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x43236448 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x432e11f2 con_set_default_unimap EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x43373a27 set_user_nice EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x43441a27 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x43459cc4 tty_hangup -EXPORT_SYMBOL vmlinux 0x43465a47 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x43476e2a nd_pfn_validate EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435b35dd netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x43782c66 pci_enable_device +EXPORT_SYMBOL vmlinux 0x4362443b __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a60af3 path_is_mountpoint EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b70bfa ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43c46fce md_set_array_sectors EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43e4e01c md_flush_request -EXPORT_SYMBOL vmlinux 0x43ecc4b6 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x43e51fb3 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x43f1a2b3 find_inode_nowait EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x43ff88b8 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x4403bc21 param_get_bool -EXPORT_SYMBOL vmlinux 0x440fa35f cdev_alloc -EXPORT_SYMBOL vmlinux 0x4418e270 phy_attached_print -EXPORT_SYMBOL vmlinux 0x4419b7a6 mdio_device_free -EXPORT_SYMBOL vmlinux 0x442161d6 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x44273e62 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x443023aa mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x43fcfacb dquot_scan_active EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x444ab41c xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x444c0cd2 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x4459e9a0 sock_init_data EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x447bacb6 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x44841313 sock_create_kern +EXPORT_SYMBOL vmlinux 0x44641c6d km_policy_notify +EXPORT_SYMBOL vmlinux 0x446fe4b1 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x447ea88d fb_show_logo EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x4494b5f6 sock_create EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a9f898 dquot_quota_sync EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44bf1fa3 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x44c24450 __mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x44d48cc1 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x44e07876 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x44e8e9fd flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44edc97d jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x44fde6b4 udp_prot EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45041b65 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x450639ab sg_last EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x4509c0ac keyring_alloc -EXPORT_SYMBOL vmlinux 0x452798c0 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x4515ba48 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x451d7035 sock_kmalloc EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x453ead9f vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x454769db folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x456d7201 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x456ea988 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x45719d23 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4583bd67 thaw_super -EXPORT_SYMBOL vmlinux 0x459707de sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x45d00d2f deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x45829c4d inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x458af6b2 retire_super +EXPORT_SYMBOL vmlinux 0x4598c6fd finish_swait +EXPORT_SYMBOL vmlinux 0x45aafd9b vfs_rmdir +EXPORT_SYMBOL vmlinux 0x45befb06 napi_get_frags +EXPORT_SYMBOL vmlinux 0x45c0cdd1 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x45c81d1a copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0x45ce637d kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45d6c634 update_region +EXPORT_SYMBOL vmlinux 0x45db0269 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x45e1943e netdev_get_by_index EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x45ea7433 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x45e9ab15 pps_event +EXPORT_SYMBOL vmlinux 0x45f9cfa6 sk_stream_error EXPORT_SYMBOL vmlinux 0x45fc19d2 retbleed_untrain_ret -EXPORT_SYMBOL vmlinux 0x46046ada input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x45fe0e46 mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x4617222d blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x463c172f mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x4610c5cd remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x46166ef1 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x46294511 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header -EXPORT_SYMBOL vmlinux 0x465c92c3 bio_free_pages +EXPORT_SYMBOL vmlinux 0x464a4bbf pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x465a0245 freeze_super EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x465f147f __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x4666a87a netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x466ada64 dma_pool_create EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466e4042 devm_memunmap -EXPORT_SYMBOL vmlinux 0x4674efa5 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x467523b7 __block_write_begin -EXPORT_SYMBOL vmlinux 0x46762bfc blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x46771ddb blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4677168c tty_driver_kref_put EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46b08f19 amd_iommu_domain_set_gcr3 EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options +EXPORT_SYMBOL vmlinux 0x46c42d26 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46ce0dac xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval EXPORT_SYMBOL vmlinux 0x46d63f47 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x46e16467 block_write_begin +EXPORT_SYMBOL vmlinux 0x46dab5a3 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x46f3d824 sock_rfree EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4723319b __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x473697d3 get_user_pages EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x4756e48b page_mapping -EXPORT_SYMBOL vmlinux 0x475e6b31 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x475fe6d8 _dev_err -EXPORT_SYMBOL vmlinux 0x4764d3dd set_nlink -EXPORT_SYMBOL vmlinux 0x476db9ac scsi_done +EXPORT_SYMBOL vmlinux 0x4745ad0b __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x4750414a sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x47516eec read_cache_folio +EXPORT_SYMBOL vmlinux 0x475c95c1 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x476a2ab7 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x476b6ff0 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x479caf24 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x47a80734 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x47ba7747 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x47bf0ac8 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x478874b1 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x47937dd7 param_set_byte +EXPORT_SYMBOL vmlinux 0x47a19b34 vga_client_register +EXPORT_SYMBOL vmlinux 0x47bcdbb2 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x47c18307 set_user_nice EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d79039 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47ec29a5 flush_signals -EXPORT_SYMBOL vmlinux 0x47f02d85 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x481008b2 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x48037617 agp_bridge +EXPORT_SYMBOL vmlinux 0x480d1784 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x480f7fdb simple_unlink EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x48118ff3 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x48169e0a dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x48246b88 folio_mapping +EXPORT_SYMBOL vmlinux 0x481e2dbe folio_migrate_copy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x48394555 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x48378be7 pci_choose_state EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x48445270 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x4867630c xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x48996f17 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x48797faa kern_path +EXPORT_SYMBOL vmlinux 0x48846a05 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x4890b109 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x489d0461 eth_validate_addr EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a1eecd nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b52770 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x48b907bf netdev_get_by_name EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48ca85a3 blk_get_queue EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier EXPORT_SYMBOL vmlinux 0x48d88a2c __SCT__preempt_schedule -EXPORT_SYMBOL vmlinux 0x48dd8836 napi_disable -EXPORT_SYMBOL vmlinux 0x48eaf1f8 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x48f0a4b6 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x48fcb0a5 phy_detach -EXPORT_SYMBOL vmlinux 0x48fccf9c debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x48e43d48 vfs_create +EXPORT_SYMBOL vmlinux 0x48ec7ab1 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x48fcc5b8 pci_reenable_device EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x4909a790 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x490faabe eth_type_trans -EXPORT_SYMBOL vmlinux 0x49251182 inet6_offloads -EXPORT_SYMBOL vmlinux 0x4933552e pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x490f4e43 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x493b9b29 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x49425386 fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x4953cf97 phy_driver_register EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x49657d41 pci_dev_put +EXPORT_SYMBOL vmlinux 0x49642bd8 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x49643f0b mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x496f515f __inc_node_page_state EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x4982acf8 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x4999b30d page_symlink -EXPORT_SYMBOL vmlinux 0x499a3edc configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x499d39a0 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x499ed6e6 may_umount_tree EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a1796a pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x49a07eb9 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x49a2d79b crypto_sha3_init +EXPORT_SYMBOL vmlinux 0x49a50b1a fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x49a6bdde page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x49afc63a twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49bb72e4 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x49ca9143 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x49d2bf8d rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x49e63c3c scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x49fe30b5 vfs_create -EXPORT_SYMBOL vmlinux 0x4a0147ad param_set_ullong -EXPORT_SYMBOL vmlinux 0x4a1b04d5 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x4a1f013c pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x49c1677a single_open +EXPORT_SYMBOL vmlinux 0x49c3b6ca folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x49dd0ee8 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x49e297a8 dentry_create +EXPORT_SYMBOL vmlinux 0x49ed847c jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x49f39b94 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x4a22108b ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4a2351c5 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x4a242d77 vme_irq_free +EXPORT_SYMBOL vmlinux 0x4a2913fc neigh_app_ns +EXPORT_SYMBOL vmlinux 0x4a3a4221 vma_alloc_folio EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a52cf56 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x4a88bc31 con_is_bound -EXPORT_SYMBOL vmlinux 0x4a949f4a put_ipc_ns +EXPORT_SYMBOL vmlinux 0x4a47c7a6 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x4a657a32 rtc_add_group +EXPORT_SYMBOL vmlinux 0x4a94ce9f netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa40240 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x4aa6e58d genl_register_family -EXPORT_SYMBOL vmlinux 0x4aa70bca set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x4aaea2fe uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x4ab44270 netif_device_detach -EXPORT_SYMBOL vmlinux 0x4ab535ce generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x4ae077b0 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x4ae5557e unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x4aa8ef03 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x4aafedc3 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x4acf4c67 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x4ad4b4f5 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4af88d77 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afc52e6 md_write_start EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b2a52b8 keyring_search -EXPORT_SYMBOL vmlinux 0x4b31cd7d neigh_connected_output +EXPORT_SYMBOL vmlinux 0x4b1e052f tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x4b38faea phy_attached_print +EXPORT_SYMBOL vmlinux 0x4b3c3908 cdev_device_add +EXPORT_SYMBOL vmlinux 0x4b3d57f0 __aperture_remove_legacy_vga_devices EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b571a5c try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x4b580d11 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x4b5d94d5 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 -EXPORT_SYMBOL vmlinux 0x4b635315 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b74d2a5 handshake_genl_put EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4b81ecef mount_nodev -EXPORT_SYMBOL vmlinux 0x4b825bed agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x4b85e8b2 twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x4b87fd05 param_ops_bool -EXPORT_SYMBOL vmlinux 0x4b8acc75 handshake_req_cancel -EXPORT_SYMBOL vmlinux 0x4ba95be4 register_console -EXPORT_SYMBOL vmlinux 0x4bba32bc flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x4ba1ddb6 arp_send +EXPORT_SYMBOL vmlinux 0x4bad14c2 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bdf61c5 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x4be5733d netif_carrier_on -EXPORT_SYMBOL vmlinux 0x4bed7423 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4be3c1c1 fifo_create_dflt EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf9646e sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x4c07912b vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x4bfa6917 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4bfd04ee mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c21475b mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x4c1065f3 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x4c107c46 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x4c1d95d6 _dev_info EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4c2eb4f3 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x4c351559 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x4c3984e0 setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x4c3c2f13 set_blocksize EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4da52c remove_arg_zero -EXPORT_SYMBOL vmlinux 0x4c713ab8 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x4c84afff vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x4c42d64b flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x4c4b071f mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x4c4cd6dc mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x4c54ec27 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x4c5645f8 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4c5eea88 cdrom_open +EXPORT_SYMBOL vmlinux 0x4c6a4864 inet_release +EXPORT_SYMBOL vmlinux 0x4c6d3793 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x4c7a16e6 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x4c87ae17 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4caddf82 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x4cb71de3 __fs_parse +EXPORT_SYMBOL vmlinux 0x4cba5972 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x4cbe71f8 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x4cc72026 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4cf8fe58 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x4cfab73c xfrm_lookup -EXPORT_SYMBOL vmlinux 0x4d0cf83c unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x4d133b17 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x4d1a81b8 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x4d1d9537 icmp6_send -EXPORT_SYMBOL vmlinux 0x4d2b6c86 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x4cd67165 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x4ce1df4c inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x4ced0ad6 inet_add_offload +EXPORT_SYMBOL vmlinux 0x4cf1d659 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x4cfd1fd0 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x4d08ea0d no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x4d0e8ffe dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x4d1365f2 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d4ab53a __netif_rx -EXPORT_SYMBOL vmlinux 0x4d6a6c68 d_tmpfile +EXPORT_SYMBOL vmlinux 0x4d3e139a neigh_connected_output +EXPORT_SYMBOL vmlinux 0x4d4041c6 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4db6eb1b dev_get_iflink -EXPORT_SYMBOL vmlinux 0x4dba4c1b i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x4ddb7835 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x4ddcb508 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x4dabf483 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4db09902 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x4dc2a9d1 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x4dc3a72c devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x4dddb2a1 fb_get_mode +EXPORT_SYMBOL vmlinux 0x4de35b2e block_write_end +EXPORT_SYMBOL vmlinux 0x4de7d6bf dev_open EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df167fb unlock_buffer EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e04c74c phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x4e055e52 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x4e0733a2 simple_rmdir -EXPORT_SYMBOL vmlinux 0x4e0fbd0c mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x4e1824bd netif_carrier_off EXPORT_SYMBOL vmlinux 0x4e19df9a config_item_get -EXPORT_SYMBOL vmlinux 0x4e1c64d9 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x4e1e5ace mmc_can_erase +EXPORT_SYMBOL vmlinux 0x4e203b6d key_alloc EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e2ca811 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e4ec759 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x4e4eef45 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x4e4d5ba6 ip_do_fragment EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e59a5d8 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x4e616aff tty_register_device +EXPORT_SYMBOL vmlinux 0x4e59640c nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x4e5c767d pci_scan_slot EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e931df0 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x4e97dc09 bmap -EXPORT_SYMBOL vmlinux 0x4e988306 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x4e6f3163 input_open_device +EXPORT_SYMBOL vmlinux 0x4e852090 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x4e8b3ecb pcie_capability_clear_and_set_word_unlocked +EXPORT_SYMBOL vmlinux 0x4e9b1183 keyring_alloc EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea442c0 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x4ea78bab __x86_indirect_call_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4ea7d6c2 tty_vhangup -EXPORT_SYMBOL vmlinux 0x4eacf7c3 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eaf6afa ipv6_dev_find EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x4ec06eb4 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x4ec2c0fe security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4f0d3e10 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x4f18fec5 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x4ed61fb2 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x4ee3812b nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x4ef303a0 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x4efcd479 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x4f1c72ec jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f456e3f xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x4f4825c4 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x4f4987cd input_unregister_handle -EXPORT_SYMBOL vmlinux 0x4f4a312f vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x4f33bf77 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f5e9352 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x4f6776ad vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x4f6cc384 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x4f6e02de vga_con EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 -EXPORT_SYMBOL vmlinux 0x4f76739d get_fs_type -EXPORT_SYMBOL vmlinux 0x4f81227d kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x4fa34bb0 param_get_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x4faf900e blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x4fb29c2a get_unmapped_area -EXPORT_SYMBOL vmlinux 0x4fbf5980 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x4fda0f0d sock_register +EXPORT_SYMBOL vmlinux 0x4f764981 twl6040_power +EXPORT_SYMBOL vmlinux 0x4f776a98 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x4f7ab3e6 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x4f7b9c77 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x4f98a117 vfs_mknod +EXPORT_SYMBOL vmlinux 0x4f9b4381 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x4fd2bd1e md_write_inc +EXPORT_SYMBOL vmlinux 0x4fdd3d07 tty_do_resize EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4ff853ef genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x4ff88cb8 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x4ff764ec phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x4ff7a36e __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x4ffc0765 readahead_expand +EXPORT_SYMBOL vmlinux 0x50024aa4 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security -EXPORT_SYMBOL vmlinux 0x50098b6d pci_iomap_range EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5011a604 udp_prot -EXPORT_SYMBOL vmlinux 0x5013a5c5 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x50246ed3 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5039718c blk_integrity_register -EXPORT_SYMBOL vmlinux 0x50397e0f pnp_get_resource -EXPORT_SYMBOL vmlinux 0x505ff4f2 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x506079b0 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x506080b8 md_handle_request +EXPORT_SYMBOL vmlinux 0x503c795e kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x505f5a27 can_nice +EXPORT_SYMBOL vmlinux 0x50618814 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5076706d mr_table_alloc +EXPORT_SYMBOL vmlinux 0x5075f86d mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x507c9e4f phy_attach EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508fc2af get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x509c78f8 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x50a22866 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x50a39bbd xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a70887 gro_cells_init +EXPORT_SYMBOL vmlinux 0x50a8758d __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c4e884 netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d5f6e9 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50de2e0d seq_write -EXPORT_SYMBOL vmlinux 0x50f117b9 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x50d9ce24 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x50e0f95e xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x50e42c7a pcie_print_link_status EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5104290e ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x511a76b3 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x512699a7 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x5138b183 folio_wait_bit -EXPORT_SYMBOL vmlinux 0x513aac0e devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x512059cc skb_tx_error +EXPORT_SYMBOL vmlinux 0x51305405 mmc_alloc_host EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec -EXPORT_SYMBOL vmlinux 0x513f5812 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x514542f5 sock_bind_add +EXPORT_SYMBOL vmlinux 0x5145adb5 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5148832d page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x5151972b blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0x51568c19 single_open +EXPORT_SYMBOL vmlinux 0x5151f7f7 param_ops_long +EXPORT_SYMBOL vmlinux 0x5159fa74 elv_rb_del EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51651399 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x517c6cbc bpf_link_put -EXPORT_SYMBOL vmlinux 0x5193cabb fd_install +EXPORT_SYMBOL vmlinux 0x5189a82c redraw_screen +EXPORT_SYMBOL vmlinux 0x519f30ac skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x51a267ee flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51c11733 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x51c718a7 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x51cca822 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x51c421d5 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x51c5c9a2 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x51c5e9b7 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51ddff29 init_net +EXPORT_SYMBOL vmlinux 0x51d6f83c fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x51d787dc inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 -EXPORT_SYMBOL vmlinux 0x51f44e51 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x52093db0 ilookup +EXPORT_SYMBOL vmlinux 0x51f36b5d __alloc_skb EXPORT_SYMBOL vmlinux 0x520e97c4 proc_dostring -EXPORT_SYMBOL vmlinux 0x5216c3e9 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x521a61e0 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x5249b07f mmc_detect_change -EXPORT_SYMBOL vmlinux 0x52558429 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x525b4206 d_rehash -EXPORT_SYMBOL vmlinux 0x5269c0ee ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x526ed93f qdisc_put +EXPORT_SYMBOL vmlinux 0x52181369 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x5237670d md_bitmap_unplug_async EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52715d49 napi_enable -EXPORT_SYMBOL vmlinux 0x528f346c rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x5277a762 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x527c2b15 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x527c5798 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x5290c0b5 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write EXPORT_SYMBOL vmlinux 0x5299f5bb serio_bus -EXPORT_SYMBOL vmlinux 0x52bc89df bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x52ca67ee jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x52a02782 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x52aa8bc2 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x52afcf11 sock_no_getname +EXPORT_SYMBOL vmlinux 0x52c2bbe3 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x52c6f31a cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x52cd9187 dma_fence_chain_init EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52da71cf kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x52e3fd89 __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x52e41a97 padata_do_serial -EXPORT_SYMBOL vmlinux 0x52e913a2 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x52eaebb2 netdev_err +EXPORT_SYMBOL vmlinux 0x52ea8648 ipv4_dst_check EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52ef3173 __module_get +EXPORT_SYMBOL vmlinux 0x52fa6c9b folio_add_lru +EXPORT_SYMBOL vmlinux 0x53005b35 devfreq_get_freq_range EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530c4533 block_commit_write EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid EXPORT_SYMBOL vmlinux 0x5322663e acpi_get_handle -EXPORT_SYMBOL vmlinux 0x532e62b9 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x53298ba2 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x532e82b1 netlink_unicast +EXPORT_SYMBOL vmlinux 0x532f5c6c phy_device_free EXPORT_SYMBOL vmlinux 0x532fcbe4 __nla_put_nohdr EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533b94ad jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x533ee263 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x53480d89 dev_addr_del -EXPORT_SYMBOL vmlinux 0x534c8c53 init_pseudo -EXPORT_SYMBOL vmlinux 0x534de07b fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x534e3e63 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x534ee850 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x536a5005 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x536cd429 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x536ff4b3 generic_permission -EXPORT_SYMBOL vmlinux 0x538573c8 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x539303d2 inet_listen +EXPORT_SYMBOL vmlinux 0x5368cb0b i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x5371a262 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x53806aa3 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x5385ebaa i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x538f0c40 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x5398dda5 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53a9f51f security_path_mknod +EXPORT_SYMBOL vmlinux 0x53af6c72 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x53b204db remap_pfn_range EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53c860e7 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x53cb3396 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x53d5a417 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x53d83fc1 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x53e07e21 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x53e3259d __module_put_and_kthread_exit -EXPORT_SYMBOL vmlinux 0x53e35fce iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x53f103c2 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x53f2d0b0 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x53f5266c __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings -EXPORT_SYMBOL vmlinux 0x54084a7f inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x5408e393 d_path +EXPORT_SYMBOL vmlinux 0x54006b21 brioctl_set +EXPORT_SYMBOL vmlinux 0x540f2280 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x542f9afb eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x541b39bb blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x541ee085 scsi_print_result EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544e0ebc pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x544205db devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x54421b7b pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x545142e4 unload_nls -EXPORT_SYMBOL vmlinux 0x545373e5 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x546761db sock_no_mmap +EXPORT_SYMBOL vmlinux 0x545724d8 devm_ioremap EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x547f0fb7 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x548792e9 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x54a080a4 __register_binfmt -EXPORT_SYMBOL vmlinux 0x54aa9cae fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x54b08252 thread_group_exited +EXPORT_SYMBOL vmlinux 0x547e4487 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x549b6252 __check_sticky +EXPORT_SYMBOL vmlinux 0x54ad5393 dma_sync_wait EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54ce246f tty_unregister_device +EXPORT_SYMBOL vmlinux 0x54c30c10 dev_graft_qdisc EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54d24e44 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x54e466d6 dmam_pool_create EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54ea55a8 begin_new_exec EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54f592ac pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x54fee34b configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x5503cde8 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x5505440d __tracepoint_kfree EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x550ff9d1 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x550a3843 vfs_mkobj EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552ed482 netpoll_cleanup EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x55391ee1 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x553e3f5b tcf_em_unregister EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x5557e5e2 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x55576c7c blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x55621720 vma_set_file EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x557bcf54 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x5571faa6 kill_pgrp +EXPORT_SYMBOL vmlinux 0x55854535 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x558bb411 sock_rfree -EXPORT_SYMBOL vmlinux 0x5595bf62 arp_create -EXPORT_SYMBOL vmlinux 0x55af828c datagram_poll -EXPORT_SYMBOL vmlinux 0x55bdef4a __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x55a22fbc blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x55b174f1 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x55b8b29d zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x55d3f62d blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x55dcb248 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x55dd98ed tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e9475f nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x55e9f42d vfs_iter_write -EXPORT_SYMBOL vmlinux 0x55ef8943 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x55efb4c3 pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0x55f5e6a0 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x55e50fb8 __phy_read_mmd EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x5608591e flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x5627132f lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x55fca398 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x55ff032e devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x561cd7ed page_pool_unlink_napi +EXPORT_SYMBOL vmlinux 0x561ce241 mmc_run_bkops EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5644dc21 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x56370d0f generic_file_open EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5649af2b devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x564d76b3 inode_insert5 EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x5653ae4d mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x5659dc99 netdev_notice +EXPORT_SYMBOL vmlinux 0x56579b20 md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0x565caca8 abort_creds -EXPORT_SYMBOL vmlinux 0x56631b1e sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x566e3978 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x5664c7c0 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x566ac11b devm_rproc_add +EXPORT_SYMBOL vmlinux 0x5672bc20 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x56747968 pci_enable_device_io EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x569f9f60 put_fs_context -EXPORT_SYMBOL vmlinux 0x56a5791a get_tree_nodev -EXPORT_SYMBOL vmlinux 0x56aff010 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x56a0c2e7 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x56a75297 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x56a7cf05 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x56b67b14 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x56b89049 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56da3a5b tcf_idr_release -EXPORT_SYMBOL vmlinux 0x56dd6d18 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x56e3a378 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x571e9220 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x5727e1db unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x57290e11 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x57432417 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x5724f5fe fs_param_is_string +EXPORT_SYMBOL vmlinux 0x573b2e8a i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x5745458c fb_prepare_logo EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x576567f8 putname -EXPORT_SYMBOL vmlinux 0x577a8f82 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x57591323 ip6_dst_check +EXPORT_SYMBOL vmlinux 0x575ac1b8 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x575f8501 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x57603b62 scsi_device_get +EXPORT_SYMBOL vmlinux 0x57785dce unregister_filesystem +EXPORT_SYMBOL vmlinux 0x577d564f sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579e0008 d_splice_alias -EXPORT_SYMBOL vmlinux 0x57a06064 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x57a2f9d0 nf_ct_attach -EXPORT_SYMBOL vmlinux 0x57a74c16 import_iovec -EXPORT_SYMBOL vmlinux 0x57b9c7b3 d_alloc -EXPORT_SYMBOL vmlinux 0x57bbf9c6 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x57971fe5 netdev_crit +EXPORT_SYMBOL vmlinux 0x579d1c3c ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write EXPORT_SYMBOL vmlinux 0x57bcbaea __x86_indirect_call_thunk_r14 EXPORT_SYMBOL vmlinux 0x57cbb9bb serio_reconnect -EXPORT_SYMBOL vmlinux 0x57cd9b85 skb_split -EXPORT_SYMBOL vmlinux 0x57da4f6c i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x57d0b241 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x57d45247 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize -EXPORT_SYMBOL vmlinux 0x57f21ee3 input_set_timestamp -EXPORT_SYMBOL vmlinux 0x58101396 sys_copyarea -EXPORT_SYMBOL vmlinux 0x581055bb fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x57f0b23f __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x57f4fb2d devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x57fac659 mount_single +EXPORT_SYMBOL vmlinux 0x5818d7d1 nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581cfa27 set_binfmt EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x583176cb tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0x5830aa91 __SCK__tp_func_rdpmc EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58499f5f pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x5854d929 agp_find_bridge -EXPORT_SYMBOL vmlinux 0x585adfd6 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x585e2334 get_user_pages -EXPORT_SYMBOL vmlinux 0x58652ac5 rproc_del +EXPORT_SYMBOL vmlinux 0x585420b0 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x5869fe68 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x5889033e rt_dst_clone -EXPORT_SYMBOL vmlinux 0x588be1b9 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x5892591c iptun_encaps +EXPORT_SYMBOL vmlinux 0x588bdfff inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x588dda18 agp_generic_create_gatt_table EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x589b73d5 vfs_link +EXPORT_SYMBOL vmlinux 0x589c3cf7 ipv4_mtu EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bc58df flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x58cd8891 vme_lm_request EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x5921a935 md_check_recovery -EXPORT_SYMBOL vmlinux 0x592412ff tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x5928a8c7 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x58e42612 tcp_mmap +EXPORT_SYMBOL vmlinux 0x58e43017 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x58fe7679 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x5918c705 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x5951879f devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x59544c62 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x596133be dm_table_get_md +EXPORT_SYMBOL vmlinux 0x59623977 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x59660716 input_copy_abs EXPORT_SYMBOL vmlinux 0x5968dc6d proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5983a43e make_kgid -EXPORT_SYMBOL vmlinux 0x59879211 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x596b0ab8 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x59794c26 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x5984d923 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x5993aee4 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x599715ca read_cache_page EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59d839a8 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x59f0d73d xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x59c8caca mdio_device_register +EXPORT_SYMBOL vmlinux 0x59cea16e vga_put +EXPORT_SYMBOL vmlinux 0x59d7482f filemap_check_errors +EXPORT_SYMBOL vmlinux 0x59e0247e xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x59e614ae max8925_reg_read +EXPORT_SYMBOL vmlinux 0x59f54a23 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a102ea9 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x5a22d4bc send_sig +EXPORT_SYMBOL vmlinux 0x5a234839 __skb_checksum EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a3efff3 is_nd_btt +EXPORT_SYMBOL vmlinux 0x5a306d27 napi_schedule_prep EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a671c3f configfs_depend_item -EXPORT_SYMBOL vmlinux 0x5a6fce72 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x5a8f190e sock_release +EXPORT_SYMBOL vmlinux 0x5a625e7a __sock_i_ino +EXPORT_SYMBOL vmlinux 0x5a716dec unlock_rename EXPORT_SYMBOL vmlinux 0x5a921311 strncmp EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5ab45319 simple_rmdir +EXPORT_SYMBOL vmlinux 0x5ab7f95f kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x5abccf34 vfs_get_link EXPORT_SYMBOL vmlinux 0x5ac01b95 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x5ac08071 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x5ad5c78f pci_disable_ptm -EXPORT_SYMBOL vmlinux 0x5adb7d30 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x5ade51c2 icmp_ndo_send EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5b1e41e5 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x5b220c88 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b3881e5 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x5b3940e8 rio_query_mport EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b45049a audit_log_start +EXPORT_SYMBOL vmlinux 0x5b49bcb2 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x5b55d6ed fb_find_mode EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b56d3ee tty_port_hangup EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b7b01a0 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x5b7e3167 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk -EXPORT_SYMBOL vmlinux 0x5b8d90c1 scsi_print_result -EXPORT_SYMBOL vmlinux 0x5bac498f ipmi_platform_add -EXPORT_SYMBOL vmlinux 0x5bb02838 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x5bb849ca ps2_end_command -EXPORT_SYMBOL vmlinux 0x5bbc7bd0 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x5b91d850 set_posix_acl +EXPORT_SYMBOL vmlinux 0x5b96dc64 skb_unlink +EXPORT_SYMBOL vmlinux 0x5ba0fe18 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x5bb6f746 seq_release_private +EXPORT_SYMBOL vmlinux 0x5bba0919 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x5bbe801d __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x5bbf31e2 request_key_with_auxdata EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bda81d5 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval -EXPORT_SYMBOL vmlinux 0x5be17342 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x5be270bd blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5be84353 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x5bffa342 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x5c02a468 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x5c02f8fa ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x5c04a2ec pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x5c19daca dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x5c2149df agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x5c03e850 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x5c14d757 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x5c213848 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x5c25b9df d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c26da0a folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x5c340acb dev_mc_sync EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c55f6e7 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x5c7c9775 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x5ca68404 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x5cbdecf8 dcb_delrewr -EXPORT_SYMBOL vmlinux 0x5cca7b9a tcf_exts_init_ex -EXPORT_SYMBOL vmlinux 0x5cd2d8ac mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x5c430335 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x5c4b628f udp_read_skb +EXPORT_SYMBOL vmlinux 0x5c7e5f2e pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5c8be012 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x5c9affdf tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x5c9c8c29 agp_backend_release +EXPORT_SYMBOL vmlinux 0x5ca2d61f pci_dev_put +EXPORT_SYMBOL vmlinux 0x5caadf15 inode_insert5 +EXPORT_SYMBOL vmlinux 0x5cabe85c generic_listxattr +EXPORT_SYMBOL vmlinux 0x5cb69004 kill_block_super +EXPORT_SYMBOL vmlinux 0x5cbc1943 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x5cdec839 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x5ce2818c sock_no_bind -EXPORT_SYMBOL vmlinux 0x5cf2bacc phy_print_status +EXPORT_SYMBOL vmlinux 0x5ce16a26 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x5ce69882 kthread_stop EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf600a5 __scm_send +EXPORT_SYMBOL vmlinux 0x5cf888ea from_kgid_munged EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5cff3d35 skb_seq_read -EXPORT_SYMBOL vmlinux 0x5d0b3ec6 to_nd_dax -EXPORT_SYMBOL vmlinux 0x5d14a589 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x5d27ccf4 sockopt_lock_sock -EXPORT_SYMBOL vmlinux 0x5d311aac security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x5d36a598 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x5d100e13 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x5d3ec17b ip_queue_xmit EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4ab467 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x5d4ad2de __getblk_gfp EXPORT_SYMBOL vmlinux 0x5d58ff0a acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x5d75ff39 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x5d9ec78b __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x5da5c35f phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0x5dac0241 param_set_long -EXPORT_SYMBOL vmlinux 0x5dafa231 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x5db6ebab mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x5db96fd8 param_set_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x5dc0583e unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x5dd3fd64 mount_single -EXPORT_SYMBOL vmlinux 0x5dddc8a0 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x5de5d523 scsi_execute_cmd -EXPORT_SYMBOL vmlinux 0x5de91394 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x5dff56f1 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x5e024736 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x5d744d5e clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x5d745d14 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x5dafc01f scsi_done +EXPORT_SYMBOL vmlinux 0x5dbf8edc jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x5dd07a49 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x5de37385 disk_stack_limits EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e126c0f agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x5e2ba2a6 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x5e11b6e7 fs_bio_set +EXPORT_SYMBOL vmlinux 0x5e1b206c __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5e2e1b3b ethtool_aggregate_phy_stats EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e367097 tls_handshake_cancel EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e4d6bce input_set_abs_params +EXPORT_SYMBOL vmlinux 0x5e556f73 phy_start +EXPORT_SYMBOL vmlinux 0x5e5805ba agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x5e5de40b vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x5e67b855 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x5e68bab8 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8b1e4a uart_add_one_port EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc +EXPORT_SYMBOL vmlinux 0x5e95431d netlink_set_err EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5eac74b3 hid_bpf_ops -EXPORT_SYMBOL vmlinux 0x5eb18557 page_readlink -EXPORT_SYMBOL vmlinux 0x5ec44b93 vfs_rename EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed335d7 d_make_root EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5ed93d9a blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x5ef3fbc6 unregister_nls EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5ef7cfb4 d_lookup EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f1123e8 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x5f123380 put_cmsg EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f2f3f8f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x5f3a44e1 d_make_root EXPORT_SYMBOL vmlinux 0x5f4cba02 textsearch_prepare -EXPORT_SYMBOL vmlinux 0x5f50ef5b generic_write_checks_count -EXPORT_SYMBOL vmlinux 0x5f5160a5 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f55473a cdev_device_del +EXPORT_SYMBOL vmlinux 0x5f560728 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5fa9250c devm_memremap -EXPORT_SYMBOL vmlinux 0x5fbb215c unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd179c6 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5ff1361f flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6001dcd4 tso_start EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x600780f5 bio_add_pc_page EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x6009d513 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x601352c9 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x6013d4ec __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x6018d3ad dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6032cc3d scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603aaf7b blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x60756c1f dev_addr_mod +EXPORT_SYMBOL vmlinux 0x60601dad blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x60705d96 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x6076703c copy_page_to_iter EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6087e23b inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6097cdac touch_atime -EXPORT_SYMBOL vmlinux 0x6099963e input_match_device_id EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609d4934 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60ac0f7a input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x60b4a106 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x60a6f454 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x60b9040b devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0x60bbb124 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x60d12e6b dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x60c11b06 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x60d0118b mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60ef5dab agp_enable -EXPORT_SYMBOL vmlinux 0x60fc34cb param_set_ushort -EXPORT_SYMBOL vmlinux 0x6104d06e amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x60d8b693 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x60eed380 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x6104981a sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x6106e8ba iterate_fd EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address EXPORT_SYMBOL vmlinux 0x610756b8 __x86_indirect_call_thunk_rdx -EXPORT_SYMBOL vmlinux 0x61178065 mdio_device_register -EXPORT_SYMBOL vmlinux 0x6127b212 netdev_state_change +EXPORT_SYMBOL vmlinux 0x611d5aea jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x612380fb xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x61247385 ip_frag_next EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612b1cb5 inode_init_always +EXPORT_SYMBOL vmlinux 0x61323441 poll_freewait EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x6145cecb napi_consume_skb -EXPORT_SYMBOL vmlinux 0x6155f1d5 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x614fd565 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x6157830a ppp_unit_number EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x616ece62 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0x616fe008 mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x61658a0b submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x617135fc flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x61829015 submit_bio_wait EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618dc88c unregister_key_type -EXPORT_SYMBOL vmlinux 0x619ac459 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x61903e31 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x619d38d0 __nd_driver_register EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv -EXPORT_SYMBOL vmlinux 0x61a96c6b sock_from_file +EXPORT_SYMBOL vmlinux 0x61ae1f65 vfs_unlink +EXPORT_SYMBOL vmlinux 0x61ae5ea2 sock_bind_add +EXPORT_SYMBOL vmlinux 0x61b3ad8b sk_dst_check EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c10ee9 netif_device_attach EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x620c23ee __fput_sync +EXPORT_SYMBOL vmlinux 0x61f1b200 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x61f8c9eb nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x620413cd sock_create_lite +EXPORT_SYMBOL vmlinux 0x620f24dc udp_lib_get_port EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6217fc69 flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0x6220c6e5 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x6220de18 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x6225affe cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x6214f661 mount_nodev +EXPORT_SYMBOL vmlinux 0x62243dc5 pci_get_subsys EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622c9259 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x6234964d phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x62418b06 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x623f15cc tcf_exts_change +EXPORT_SYMBOL vmlinux 0x624aa4c0 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6267cbf0 dev_addr_mod EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range -EXPORT_SYMBOL vmlinux 0x6279ee0c __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628a67e6 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x628a8bab remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x628c0f8f dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x629040a0 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x62a26186 agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0x62a9657b vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0x62b4002a scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x62e82f9d freezing_slow_path -EXPORT_SYMBOL vmlinux 0x62f463b3 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x6292c72b param_set_int +EXPORT_SYMBOL vmlinux 0x62af6b76 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x62bdb7ab __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x62d8e597 sk_reset_timer EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x6300029f dquot_destroy +EXPORT_SYMBOL vmlinux 0x63052bdc audit_log_start EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x632c7eab get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x633d0bf6 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x6349670c kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x6359f248 current_time -EXPORT_SYMBOL vmlinux 0x635a4719 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x63211cf1 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x633ca986 file_modified +EXPORT_SYMBOL vmlinux 0x6358fa9b inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x635d8155 xattr_supports_user_prefix EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x6364a672 discard_new_inode +EXPORT_SYMBOL vmlinux 0x63680592 __icmp_send +EXPORT_SYMBOL vmlinux 0x6374df67 simple_rename EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0x638810bb mdio_device_remove -EXPORT_SYMBOL vmlinux 0x638dc9cb tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x6398e688 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x63994b0c tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a8a7cf truncate_pagecache -EXPORT_SYMBOL vmlinux 0x63ca4f71 __scm_send -EXPORT_SYMBOL vmlinux 0x63e094ce __SCK__tp_func_write_msr -EXPORT_SYMBOL vmlinux 0x63e097c9 can_nice +EXPORT_SYMBOL vmlinux 0x63dd5e4c md_done_sync +EXPORT_SYMBOL vmlinux 0x63de261d tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x63e6154d tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x63ea2792 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63f36f19 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x63f4ab16 md_check_recovery EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x64050644 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x640b5824 begin_new_exec +EXPORT_SYMBOL vmlinux 0x640e8bb6 ps2_interrupt EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x64396fda sync_file_create +EXPORT_SYMBOL vmlinux 0x643080b6 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x64324130 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x6446b041 dma_find_channel EXPORT_SYMBOL vmlinux 0x6448403d __x86_indirect_call_thunk_rcx EXPORT_SYMBOL vmlinux 0x6449a2fe serio_open -EXPORT_SYMBOL vmlinux 0x644a4bd1 tcp_recv_skb -EXPORT_SYMBOL vmlinux 0x6453a3e0 file_ns_capable EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x6462e89a vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x64798a91 set_page_writeback +EXPORT_SYMBOL vmlinux 0x6463cd42 follow_down +EXPORT_SYMBOL vmlinux 0x64654c33 tcf_block_get +EXPORT_SYMBOL vmlinux 0x6467ce7a vme_irq_handler +EXPORT_SYMBOL vmlinux 0x6475cac4 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x647a0a2b security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648d311e kernel_bind EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64929e64 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x6492f256 dev_uc_init -EXPORT_SYMBOL vmlinux 0x6495f7d9 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x64a823bd tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x6498dc59 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x64997e10 inode_update_time EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64bb6ba2 input_setup_polling EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape EXPORT_SYMBOL vmlinux 0x64d11af1 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x64e3135b scsi_remove_target -EXPORT_SYMBOL vmlinux 0x64eac21b unix_get_socket -EXPORT_SYMBOL vmlinux 0x64f65170 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x64fc486c bdi_alloc -EXPORT_SYMBOL vmlinux 0x6510e560 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x64d52973 __folio_batch_release +EXPORT_SYMBOL vmlinux 0x64f6ee38 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x64faaaf7 tcf_register_action +EXPORT_SYMBOL vmlinux 0x6510f740 bio_add_pc_page EXPORT_SYMBOL vmlinux 0x65125528 kset_unregister EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651545bb cros_ec_check_result EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6520272f tty_port_destroy EXPORT_SYMBOL vmlinux 0x652032cb mac_pton EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x65394101 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x653dae6e proc_remove +EXPORT_SYMBOL vmlinux 0x6532d8a9 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6545d3a6 user_path_create EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x655c04c1 unlock_page -EXPORT_SYMBOL vmlinux 0x656bc64c fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x654f56ec __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x656357da pldmfw_flash_image EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x6580de0e pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x65704b8f __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x65708648 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x65754de5 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x657d49e3 ethtool_aggregate_rmon_stats +EXPORT_SYMBOL vmlinux 0x657f5e45 tty_register_driver +EXPORT_SYMBOL vmlinux 0x6584d1c0 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x658a2a0a __x86_indirect_call_thunk_rbx +EXPORT_SYMBOL vmlinux 0x658bab30 ___pskb_trim EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65906b4c skb_queue_purge EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659b951d mdiobus_write EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65adb55f phy_aneg_done -EXPORT_SYMBOL vmlinux 0x65b6a030 dst_release +EXPORT_SYMBOL vmlinux 0x65a9f1a7 xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry -EXPORT_SYMBOL vmlinux 0x65cd49fd register_framebuffer +EXPORT_SYMBOL vmlinux 0x65c2ea7f skb_clone EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65de0b9d xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x65dee527 pnp_possible_config EXPORT_SYMBOL vmlinux 0x65df35ca __put_user_nocheck_2 EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65ec1ac9 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x65e1963a cdrom_check_events +EXPORT_SYMBOL vmlinux 0x65fabdef sync_inode_metadata EXPORT_SYMBOL vmlinux 0x65fc0505 crypto_kdf108_setkey -EXPORT_SYMBOL vmlinux 0x66004fd3 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0x660422f3 notify_change +EXPORT_SYMBOL vmlinux 0x6600cd7b __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x6620d5d5 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x6626afca down EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x6635e8ad proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x663988bf inode_to_bdi +EXPORT_SYMBOL vmlinux 0x6632b8fd pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x6632d2a1 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x66453ad9 nla_reserve -EXPORT_SYMBOL vmlinux 0x6648692a __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666712ad jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x666c14c0 __traceiter_dma_fence_emit EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x668252ba bdi_put +EXPORT_SYMBOL vmlinux 0x667f5ea6 tty_write_room +EXPORT_SYMBOL vmlinux 0x668551e3 flow_rule_match_control EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x6695fb77 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x6699e918 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x669b51c3 tty_port_close_end EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x669cb53b netpoll_setup EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66bbd486 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x66cd363f fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x66d75ec0 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x66e09fb5 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x66e753b2 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x66d1a1c9 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x66d215f1 pci_match_id +EXPORT_SYMBOL vmlinux 0x66e41c14 udp_poll +EXPORT_SYMBOL vmlinux 0x66e52034 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit -EXPORT_SYMBOL vmlinux 0x66fbc435 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x6701b03a genphy_read_status EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x6716bfc7 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x6726925f tty_register_device +EXPORT_SYMBOL vmlinux 0x6729b059 cdev_del EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x6734b9ec pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x6729fc20 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x6738afef pps_lookup_dev EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x6762f2f0 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x676fb9c0 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x67730f78 pci_choose_state -EXPORT_SYMBOL vmlinux 0x6788265a backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x67896107 md_integrity_register +EXPORT_SYMBOL vmlinux 0x67507b55 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x6769d708 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x676da1db block_write_begin +EXPORT_SYMBOL vmlinux 0x678397a0 mmc_sw_reset EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67957b79 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x6797d568 intel_gmch_gtt_get +EXPORT_SYMBOL vmlinux 0x67a13e00 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bacb3c add_to_pipe EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c16f52 __devm_release_region EXPORT_SYMBOL vmlinux 0x67cc9453 __x86_indirect_call_thunk_rax -EXPORT_SYMBOL vmlinux 0x67d5e9dd vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x67d58c3a simple_open +EXPORT_SYMBOL vmlinux 0x67d94229 insert_inode_locked EXPORT_SYMBOL vmlinux 0x67de3f94 acpi_dev_uid_to_integer -EXPORT_SYMBOL vmlinux 0x67e0415f vme_slot_num -EXPORT_SYMBOL vmlinux 0x680dd64b scsi_device_resume -EXPORT_SYMBOL vmlinux 0x680e309a bpf_map_get -EXPORT_SYMBOL vmlinux 0x68135dbf __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x682dbf25 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x683b34c1 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x683e9461 param_set_charp -EXPORT_SYMBOL vmlinux 0x683ff819 ip_output -EXPORT_SYMBOL vmlinux 0x684465d1 blk_rq_init -EXPORT_SYMBOL vmlinux 0x684685a3 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x67e6bdbc buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x67e7bd5a pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x67f8420c is_nd_btt +EXPORT_SYMBOL vmlinux 0x67f9b849 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x681bf415 generic_write_end +EXPORT_SYMBOL vmlinux 0x681e0069 dquot_operations +EXPORT_SYMBOL vmlinux 0x681e7cec jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x682dabae filemap_fault +EXPORT_SYMBOL vmlinux 0x683287a9 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x68461971 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x68484d2b pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x684941f9 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x684c9fd4 mpage_readahead EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x685eb808 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x68739055 phy_device_free +EXPORT_SYMBOL vmlinux 0x6878484e init_task EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688b6151 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x687b7688 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x688e72e1 __SCT__preempt_schedule_notrace EXPORT_SYMBOL vmlinux 0x689067dd dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x689f9ca3 agp_bind_memory EXPORT_SYMBOL vmlinux 0x68a12ab8 rep_movs_alternative -EXPORT_SYMBOL vmlinux 0x68a6c472 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x68d8b940 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x68fe675a cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x68ac0be7 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x68c34be7 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x68ca99b7 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x68cc5c09 wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0x68dc543e i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x68ddc05d pci_claim_resource +EXPORT_SYMBOL vmlinux 0x68e346b7 d_genocide +EXPORT_SYMBOL vmlinux 0x68edd251 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x69267545 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x6928679e i2c_transfer -EXPORT_SYMBOL vmlinux 0x692d36e3 d_set_d_op -EXPORT_SYMBOL vmlinux 0x692f1cb6 set_bh_page +EXPORT_SYMBOL vmlinux 0x690bd724 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x690e82e8 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x69224fed security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x692ac0ba freeze_bdev +EXPORT_SYMBOL vmlinux 0x692fec6a block_commit_write +EXPORT_SYMBOL vmlinux 0x6940dcb1 page_mapping +EXPORT_SYMBOL vmlinux 0x6941f51f find_vma_intersection +EXPORT_SYMBOL vmlinux 0x69525fc5 sock_i_ino EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696f7dff param_ops_hexint EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days -EXPORT_SYMBOL vmlinux 0x6972406a nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and -EXPORT_SYMBOL vmlinux 0x6974129d configfs_register_group -EXPORT_SYMBOL vmlinux 0x697dc16e unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x69847dc8 __netif_rx EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69981490 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69d0943d vm_insert_pages EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e26a83 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x69e8d33d dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x69e9c8a1 __skb_pad EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a0664b7 mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x6a106fcf inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x6a2959c9 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x6a36b6f1 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x6a469381 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x6a567695 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x6a230f92 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x6a23bf4a udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x6a274a76 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x6a2d0ada nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x6a336171 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x6a338e32 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6a9b5b input_set_abs_params +EXPORT_SYMBOL vmlinux 0x6a6430e1 tcp_time_wait EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a76e81f dget_parent -EXPORT_SYMBOL vmlinux 0x6a99fbe2 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x6abd7e6a kill_pgrp -EXPORT_SYMBOL vmlinux 0x6ac98fbb agp_unbind_memory -EXPORT_SYMBOL vmlinux 0x6ad5b394 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x6aa21051 bdi_register +EXPORT_SYMBOL vmlinux 0x6aa98051 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6acfa867 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aec408e fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x6addbd17 put_watch_queue +EXPORT_SYMBOL vmlinux 0x6ae137af inet6_bind +EXPORT_SYMBOL vmlinux 0x6ae46f96 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b0b4f44 dcb_getrewr_prio_pcp_mask_map +EXPORT_SYMBOL vmlinux 0x6afbee66 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x6afcd32a alloc_fddidev +EXPORT_SYMBOL vmlinux 0x6b0cf180 fc_mount EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b1a8eee kernel_bind +EXPORT_SYMBOL vmlinux 0x6b1256cc xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4ba79f fb_pan_display -EXPORT_SYMBOL vmlinux 0x6b51a548 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x6b535e53 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6b32fb7c devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x6b51d442 con_is_visible EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b60297e neigh_lookup -EXPORT_SYMBOL vmlinux 0x6b80e418 dentry_open +EXPORT_SYMBOL vmlinux 0x6b5da21a mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x6b6c28cd ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x6b73bd34 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b86455c rproc_report_crash -EXPORT_SYMBOL vmlinux 0x6b86ebd1 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x6b8ae048 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6ba4f6c0 genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x6bab273d netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x6bb5160b sock_no_getname -EXPORT_SYMBOL vmlinux 0x6bb59f52 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x6ba3f6f0 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x6bb09ebd t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcf0a1b cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd432c2 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bea3ba3 dev_get_flags -EXPORT_SYMBOL vmlinux 0x6bfd2f7b qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x6c06c218 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x6be6c963 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x6beed3ba phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x6c0964aa eisa_bus_type -EXPORT_SYMBOL vmlinux 0x6c0d9a46 tls_client_hello_anon -EXPORT_SYMBOL vmlinux 0x6c18164c pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x6c09a798 vmap +EXPORT_SYMBOL vmlinux 0x6c152784 vm_map_pages +EXPORT_SYMBOL vmlinux 0x6c160c2c dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c3c91aa __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x6c5b56f2 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x6c5c75db iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x6c248855 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x6c3ac0f4 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x6c5272fa register_filesystem EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6279d8 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x6c6fc89b security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x6c7aff99 neigh_table_init +EXPORT_SYMBOL vmlinux 0x6c6a2d16 pci_iounmap +EXPORT_SYMBOL vmlinux 0x6c6b02e6 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x6c6c8d42 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x6c712424 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x6c747fcc inode_io_list_del EXPORT_SYMBOL vmlinux 0x6c83bed6 devm_clk_put -EXPORT_SYMBOL vmlinux 0x6c86f2dc sk_mc_loop -EXPORT_SYMBOL vmlinux 0x6c98e41e __devm_request_region -EXPORT_SYMBOL vmlinux 0x6c9dfc4e security_sk_clone -EXPORT_SYMBOL vmlinux 0x6cacae5a agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x6cb1ff72 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x6cb3e027 dquot_disable +EXPORT_SYMBOL vmlinux 0x6c87d8a8 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x6c9e880e start_tty +EXPORT_SYMBOL vmlinux 0x6ca42fa7 blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cc04040 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cd07f8b xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x6cee51a7 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x6cf5632b __i2c_transfer -EXPORT_SYMBOL vmlinux 0x6d033bad logfc -EXPORT_SYMBOL vmlinux 0x6d0970be folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x6cc73bf7 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x6ccb84b0 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x6cec62a0 ip_output +EXPORT_SYMBOL vmlinux 0x6d091342 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6d095801 from_kgid +EXPORT_SYMBOL vmlinux 0x6d166640 pcie_set_mps EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1aa64d bio_add_page EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d3a53f6 input_open_device -EXPORT_SYMBOL vmlinux 0x6d3c49e8 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x6d3d1ce2 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d5f3fb2 simple_transaction_set EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged EXPORT_SYMBOL vmlinux 0x6d5fb4a5 __x86_indirect_jump_thunk_rsp -EXPORT_SYMBOL vmlinux 0x6d60e0f0 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x6d680cf8 register_shrinker EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7f1678 __ps2_command -EXPORT_SYMBOL vmlinux 0x6d953d8c twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x6d9c665c fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x6daa6e65 mmc_add_host +EXPORT_SYMBOL vmlinux 0x6d8e3fbf fb_io_write +EXPORT_SYMBOL vmlinux 0x6d9d5494 qdisc_reset EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc3a81e phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x6dc4e7c1 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6dd432a8 skb_pull_data EXPORT_SYMBOL vmlinux 0x6ddfd09c unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x6ded19a5 vga_switcheroo_register_client EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6df31390 intel_gmch_gtt_clear_range -EXPORT_SYMBOL vmlinux 0x6e082a4c xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6e1312ea dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x6e1436d0 input_register_handle -EXPORT_SYMBOL vmlinux 0x6e165cf6 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x6e2a6c6b seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x6e36e1cc rw_verify_area -EXPORT_SYMBOL vmlinux 0x6e3f0053 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x6e4a2c4a end_page_writeback -EXPORT_SYMBOL vmlinux 0x6e54dcca ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x6df974a2 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x6dfa850e pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x6e0cc1c9 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6e29f870 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x6e476b8e mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e6ee0f2 simple_rename +EXPORT_SYMBOL vmlinux 0x6e5dae74 fs_param_is_bool EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e996ce1 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x6e872004 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x6e955ac5 pci_disable_device EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea5ba14 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x6ea2ff74 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x6ea4d445 iov_iter_alignment EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe -EXPORT_SYMBOL vmlinux 0x6ea8806d nf_register_sockopt EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eaeb5e4 iput +EXPORT_SYMBOL vmlinux 0x6eaf01c0 pci_find_capability EXPORT_SYMBOL vmlinux 0x6ebee4d7 textsearch_unregister -EXPORT_SYMBOL vmlinux 0x6ed2dad9 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x6ed6648a uart_resume_port -EXPORT_SYMBOL vmlinux 0x6edd3ee8 free_buffer_head +EXPORT_SYMBOL vmlinux 0x6ece052b pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6efd0767 km_state_expired -EXPORT_SYMBOL vmlinux 0x6efd88db pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x6f0920bb md_reload_sb +EXPORT_SYMBOL vmlinux 0x6efc54f2 component_match_add_typed EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f188b73 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x6f1a103f seq_release_private -EXPORT_SYMBOL vmlinux 0x6f29b66d vfs_fadvise -EXPORT_SYMBOL vmlinux 0x6f3b3788 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x6f3d3ff7 find_vma_intersection EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove EXPORT_SYMBOL vmlinux 0x6f46c35d cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x6f4a3cf7 blkdev_put EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r -EXPORT_SYMBOL vmlinux 0x6f565976 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x6f593305 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x6f4a9960 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x6f5160ec misc_deregister EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f697cd8 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x6f6923f1 __d_lookup_unhash_wake EXPORT_SYMBOL vmlinux 0x6f7793a5 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x6f7fa05e init_net EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f952c3e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x6f97c4b1 submit_bio +EXPORT_SYMBOL vmlinux 0x6fa3e2ad generic_shutdown_super EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb853d5 inet_accept EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fbd5e93 sock_set_mark -EXPORT_SYMBOL vmlinux 0x6fbd638c genphy_suspend -EXPORT_SYMBOL vmlinux 0x6fbf0477 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x6fbf71eb xsk_tx_completed EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcd1123 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x6fe437ef devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x6ffea1e0 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x6fcbf5f2 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x6fd625ee __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6fe18fbf rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7003235a dquot_commit +EXPORT_SYMBOL vmlinux 0x70093833 tcp_release_cb EXPORT_SYMBOL vmlinux 0x700c6c17 key_create +EXPORT_SYMBOL vmlinux 0x70223e06 get_vm_area EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702b8491 phy_write_paged -EXPORT_SYMBOL vmlinux 0x703182e2 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x70344e3a dev_mc_init EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x70447f7c phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x704ac20c seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x7053c965 phy_print_status +EXPORT_SYMBOL vmlinux 0x70541600 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x705d7eb5 __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x7061ec96 brioctl_set -EXPORT_SYMBOL vmlinux 0x709bc817 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x70a46f3c fb_find_mode -EXPORT_SYMBOL vmlinux 0x70aa78df find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x70905926 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7091f930 genphy_loopback EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b929be tcp_req_err EXPORT_SYMBOL vmlinux 0x70bb7de2 __x86_indirect_jump_thunk_rbp -EXPORT_SYMBOL vmlinux 0x70be626f da903x_query_status +EXPORT_SYMBOL vmlinux 0x70c57b44 skb_dump EXPORT_SYMBOL vmlinux 0x70daa11e dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x70db60a2 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x70e01db0 __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x70ee9296 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x7109467e sys_imageblit +EXPORT_SYMBOL vmlinux 0x70e25d03 simple_release_fs +EXPORT_SYMBOL vmlinux 0x70eb6fc4 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x70ed5e5b __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x710ee221 padata_free EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x7137008a dev_mc_flush -EXPORT_SYMBOL vmlinux 0x713fd100 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x714d1e91 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x71414b3c sock_alloc +EXPORT_SYMBOL vmlinux 0x714c01fb sk_wait_data +EXPORT_SYMBOL vmlinux 0x714e2b30 security_sock_graft EXPORT_SYMBOL vmlinux 0x7155bcf8 sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x7157ceb6 module_put EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x71654917 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x716fec46 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x716bf9d2 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7173c540 i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x71813ded pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x71827990 dcb_setrewr EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x71a6501f phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a7bb51 param_ops_charp +EXPORT_SYMBOL vmlinux 0x71ac0c06 set_anon_super_fc EXPORT_SYMBOL vmlinux 0x71bcd5e0 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x71bd33a9 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x71cc6b19 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x71ddaf72 inode_nohighmem -EXPORT_SYMBOL vmlinux 0x71e31168 __fs_parse -EXPORT_SYMBOL vmlinux 0x71e7f3d1 pci_set_master +EXPORT_SYMBOL vmlinux 0x71bd87bb simple_get_link +EXPORT_SYMBOL vmlinux 0x71e18f04 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x71e71e24 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x71e908d5 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x71fb6892 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x7208b561 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x722f60eb tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x72487c90 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x72499162 to_ndd -EXPORT_SYMBOL vmlinux 0x724d7033 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x72640fd5 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x7223d17e sock_kfree_s +EXPORT_SYMBOL vmlinux 0x723b7f21 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x7250e51e device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x725be2da filemap_range_has_page EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x7276feb8 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x727cc716 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x7283a08a agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x72adae00 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x728c5fac tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x72990f82 deactivate_super EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma -EXPORT_SYMBOL vmlinux 0x72b6b1fe param_set_copystring +EXPORT_SYMBOL vmlinux 0x72b47bbc pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bccc29 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x72c2a2ad generic_file_llseek +EXPORT_SYMBOL vmlinux 0x72cfa5f9 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x72d1737c import_iovec EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift -EXPORT_SYMBOL vmlinux 0x72e115c9 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x72e4b475 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72ecf15e i2c_find_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0x72ee6e3f iterate_supers_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f4142e ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x73079423 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x72f260f0 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x73029594 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x73238702 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x7317703c qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x732942fa tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x73502863 write_inode_now +EXPORT_SYMBOL vmlinux 0x733cfa47 __break_lease +EXPORT_SYMBOL vmlinux 0x734c5c98 devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x735e7668 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x7376ecc0 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x737e6431 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x73614816 set_nlink +EXPORT_SYMBOL vmlinux 0x736d6128 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x737c9673 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7397d91a _dev_warn -EXPORT_SYMBOL vmlinux 0x739c28c0 generic_perform_write +EXPORT_SYMBOL vmlinux 0x73820b7d wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x739cb7fc flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b9d708 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x73b04631 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x73bd78e4 twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73ec67b6 input_release_device -EXPORT_SYMBOL vmlinux 0x73f1db54 tso_start -EXPORT_SYMBOL vmlinux 0x73f33039 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x73e580c0 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x73f5cdba seq_printf EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x74132835 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x742684b8 dquot_transfer EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742b67ba blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x742d2532 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x7444e8bd mmc_retune_release -EXPORT_SYMBOL vmlinux 0x7448e01f scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x744c3d89 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x743d7deb genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x74434c88 __netif_schedule +EXPORT_SYMBOL vmlinux 0x74443d61 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74565905 tty_devnum -EXPORT_SYMBOL vmlinux 0x7456cd04 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x74586fa5 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x745531b1 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x74571ddf end_buffer_async_write EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x7478f6a4 lock_rename_child -EXPORT_SYMBOL vmlinux 0x7479f25e dev_set_alias EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748bb1cc tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x74ac44ab fb_set_cmap +EXPORT_SYMBOL vmlinux 0x74b4b023 bio_copy_data +EXPORT_SYMBOL vmlinux 0x74b66333 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x74b7e2b5 napi_enable EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bfce71 _dev_alert EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c4979b genphy_soft_reset EXPORT_SYMBOL vmlinux 0x74da064a set_security_override EXPORT_SYMBOL vmlinux 0x74dd9e0b dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f74216 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x74e66309 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x74f3a048 pci_save_state +EXPORT_SYMBOL vmlinux 0x7507cd11 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x750f53d0 input_free_device +EXPORT_SYMBOL vmlinux 0x750fe569 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x751a50de vc_resize +EXPORT_SYMBOL vmlinux 0x7521d004 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x752222ec ps2_command EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x753482a7 stream_open EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753dfade xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x755b73ff fddi_type_trans +EXPORT_SYMBOL vmlinux 0x75575791 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x7559927a __brelse EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x756a44b8 nonseekable_open EXPORT_SYMBOL vmlinux 0x75710120 vm_event_states -EXPORT_SYMBOL vmlinux 0x757a58e6 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x7572a881 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x75748ca4 notify_change +EXPORT_SYMBOL vmlinux 0x757832c8 d_exact_alias EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x7589d91a napi_gro_frags -EXPORT_SYMBOL vmlinux 0x75936dea truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x75b39460 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x75bb4c5a simple_dir_operations +EXPORT_SYMBOL vmlinux 0x75a1f069 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x75b9df93 mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c0b11f param_set_hexint -EXPORT_SYMBOL vmlinux 0x75c75fa0 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x75cdb74e pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e46234 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x75ea2aba simple_transaction_read +EXPORT_SYMBOL vmlinux 0x75ea3fc9 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x7601125f rt_mutex_base_init EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x7612624b dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0x7619a7b3 key_invalidate +EXPORT_SYMBOL vmlinux 0x76156790 sk_alloc +EXPORT_SYMBOL vmlinux 0x761bd18e mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7640b34c bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x7644f20b posix_acl_chmod EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76766127 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x766baf67 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc -EXPORT_SYMBOL vmlinux 0x767f866b from_kgid_munged EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x7685807d phy_sfp_probe EXPORT_SYMBOL vmlinux 0x768ee329 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x7690cc9e vfs_rmdir +EXPORT_SYMBOL vmlinux 0x768f9339 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x769063c3 inc_nlink EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ba3603 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x76b98778 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x76d19382 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d48e0e ip6_xmit +EXPORT_SYMBOL vmlinux 0x76d6ddbd set_page_dirty +EXPORT_SYMBOL vmlinux 0x76e54349 genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave +EXPORT_SYMBOL vmlinux 0x76f481ca seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x76f936f7 kernel_getpeername EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x76ff6320 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x77052d18 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x77080364 agp_free_memory -EXPORT_SYMBOL vmlinux 0x77250137 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x76fff1a5 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x7707cf48 __register_chrdev +EXPORT_SYMBOL vmlinux 0x770a75e3 vfs_symlink +EXPORT_SYMBOL vmlinux 0x772e93b1 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773d53ee dquot_quota_off +EXPORT_SYMBOL vmlinux 0x7735e464 netdev_notify_peers EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x7742a2d0 __check_sticky EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x774b2d64 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x7755d911 user_path_create -EXPORT_SYMBOL vmlinux 0x775a345c d_obtain_alias -EXPORT_SYMBOL vmlinux 0x7763393c unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x774e35e9 tty_hangup +EXPORT_SYMBOL vmlinux 0x775e58cc rproc_shutdown +EXPORT_SYMBOL vmlinux 0x775e5b97 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x7766dcc8 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x776aef6f dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777470aa proc_set_user -EXPORT_SYMBOL vmlinux 0x7794aad4 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x77ad5a8b pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x7779e9ef set_pages_uc +EXPORT_SYMBOL vmlinux 0x779f2af2 mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0x77bc13a0 strim EXPORT_SYMBOL vmlinux 0x77db9555 kobject_add -EXPORT_SYMBOL vmlinux 0x77e643d3 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x77de89ae param_set_short EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f3d627 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x78042696 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78087d40 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x78161f39 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x781a65cf block_write_full_page -EXPORT_SYMBOL vmlinux 0x782417c3 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x7828d2c1 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x782c0721 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x782f3f72 dcb_getapp +EXPORT_SYMBOL vmlinux 0x7818ccca tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x78251c4a param_ops_uint EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x785dfd1e make_kprojid -EXPORT_SYMBOL vmlinux 0x78616f55 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x787229b6 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x78785e1f blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x784e39eb __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x784fb67c ip_setsockopt +EXPORT_SYMBOL vmlinux 0x7856710a ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x7868951a touch_buffer +EXPORT_SYMBOL vmlinux 0x786c1a69 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x7872eeef tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x7876af53 pci_dev_get +EXPORT_SYMBOL vmlinux 0x7876dd02 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x7878e3d3 rproc_alloc EXPORT_SYMBOL vmlinux 0x787bcbb2 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x789e8554 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x78a09f5a ethtool_aggregate_pause_stats +EXPORT_SYMBOL vmlinux 0x7880cbaa gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a81eb1 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x78a95337 scsi_host_get +EXPORT_SYMBOL vmlinux 0x78acfc03 blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf EXPORT_SYMBOL vmlinux 0x78bed4aa config_item_set_name -EXPORT_SYMBOL vmlinux 0x78c5d9ed tcp_close +EXPORT_SYMBOL vmlinux 0x78c556ef scsi_done_direct +EXPORT_SYMBOL vmlinux 0x78d8a6f0 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x78dbbb2c write_inode_now EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e16ad5 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x78f0ec25 i2c_find_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x79006648 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x7908ad7a tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x7910ec71 phy_error EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x792ca9af max8925_reg_write -EXPORT_SYMBOL vmlinux 0x794a51ff __folio_batch_release -EXPORT_SYMBOL vmlinux 0x79722429 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x7925675b input_release_device +EXPORT_SYMBOL vmlinux 0x79306246 xp_dma_map +EXPORT_SYMBOL vmlinux 0x7931d494 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x794077bc fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x7987ae96 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x79917a32 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x79949cea input_register_device +EXPORT_SYMBOL vmlinux 0x798720fc slab_build_skb +EXPORT_SYMBOL vmlinux 0x798b3e8a dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79ac40b8 inet_select_addr -EXPORT_SYMBOL vmlinux 0x79d4c544 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x79b7f372 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted EXPORT_SYMBOL vmlinux 0x79e4cbe8 override_creds -EXPORT_SYMBOL vmlinux 0x7a02c1e1 vfs_llseek +EXPORT_SYMBOL vmlinux 0x79e5998a neigh_seq_next +EXPORT_SYMBOL vmlinux 0x79f6b4a8 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x7a07efac sock_register EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2017c8 dev_kfree_skb_irq_reason EXPORT_SYMBOL vmlinux 0x7a277ede watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x7a2dee22 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7a2d53de locks_remove_posix EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a413998 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a77ce6c elv_rb_find -EXPORT_SYMBOL vmlinux 0x7a78a265 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x7a7f4aa4 mntput +EXPORT_SYMBOL vmlinux 0x7a796e6a udp_lib_rehash EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x7a9db77e simple_get_link EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aab67d4 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x7ab1b24e blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x7ab35f51 seq_file_path -EXPORT_SYMBOL vmlinux 0x7abe1a14 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x7aa59205 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x7ab4f61d bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad9b7ad dcb_setapp EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7aeae4fd start_tty +EXPORT_SYMBOL vmlinux 0x7aeedfa3 udp_set_csum +EXPORT_SYMBOL vmlinux 0x7af28ef5 mpage_read_folio EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b02f765 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store -EXPORT_SYMBOL vmlinux 0x7b14aa18 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x7b25f7ab fqdir_init +EXPORT_SYMBOL vmlinux 0x7b11c104 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x7b1743fa acpi_device_hid +EXPORT_SYMBOL vmlinux 0x7b258419 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x7b27292e dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b38635a unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x7b466f19 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7b3833d8 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x7b4b8daa con_is_bound EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5002bd phy_modify_paged EXPORT_SYMBOL vmlinux 0x7b54f270 posix_acl_valid EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b76ee76 sock_init_data -EXPORT_SYMBOL vmlinux 0x7b7e8c79 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7b62ce2b netif_carrier_on +EXPORT_SYMBOL vmlinux 0x7b64499a __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7b657b25 sock_set_mark +EXPORT_SYMBOL vmlinux 0x7b670374 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7b827553 truncate_setsize EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7bafcd47 __dev_get_by_index EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write -EXPORT_SYMBOL vmlinux 0x7bb98fc3 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc07d64 pskb_extract -EXPORT_SYMBOL vmlinux 0x7bc12f78 path_put -EXPORT_SYMBOL vmlinux 0x7be21e36 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x7be33566 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x7be8a049 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x7bef1dec generic_file_mmap -EXPORT_SYMBOL vmlinux 0x7bfb3c10 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x7c060959 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x7c14b653 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x7bd8496b tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x7bddb4fa pci_resize_resource +EXPORT_SYMBOL vmlinux 0x7bf4b142 fwnode_irq_get EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c23152c rproc_alloc +EXPORT_SYMBOL vmlinux 0x7c17e7e9 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x7c208116 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x7c268333 dev_uc_add EXPORT_SYMBOL vmlinux 0x7c2d03a6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x7c3b17de tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c82f968 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x7c9b38f6 phy_device_register +EXPORT_SYMBOL vmlinux 0x7c687ea7 bio_chain +EXPORT_SYMBOL vmlinux 0x7c93523d tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0x7c99ebcf filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x7c9a16e2 trace_event_printf EXPORT_SYMBOL vmlinux 0x7cbe0cd2 drop_reasons_by_subsys EXPORT_SYMBOL vmlinux 0x7cc18181 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7cc4b2a6 sock_from_file +EXPORT_SYMBOL vmlinux 0x7cc988cc devfreq_update_target EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7cdd3550 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce3675b __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7ce98295 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7ce59cb8 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x7cee680e neigh_update EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf5a5b0 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x7cfa009c dev_add_pack EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0da6cf amd_iommu_complete_ppr EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d232a06 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x7d14d57c register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7d19ebfd mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x7d1d9386 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7d2499a0 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d41cd9c inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x7d455aea pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x7d4794c9 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x7d3a941d ip_getsockopt +EXPORT_SYMBOL vmlinux 0x7d3a9577 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x7d48f50e bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio EXPORT_SYMBOL vmlinux 0x7d65d049 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x7d6f0fdc flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d78495a fqdir_exit -EXPORT_SYMBOL vmlinux 0x7d7b5116 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x7d83cebb simple_transaction_get -EXPORT_SYMBOL vmlinux 0x7d8c7315 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x7d7c82e0 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x7d8959e0 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7d9c90d0 pci_clear_mwi EXPORT_SYMBOL vmlinux 0x7d9f9f0b cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dca03b5 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd1acb6 touch_atime EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe -EXPORT_SYMBOL vmlinux 0x7dddd1b1 inet_del_offload -EXPORT_SYMBOL vmlinux 0x7de6d764 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x7dfac995 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x7e004662 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x7df45239 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x7df5279e filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x7e04ffe0 d_invalidate +EXPORT_SYMBOL vmlinux 0x7e0569ae __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0x7e282261 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x7e137db9 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x7e1ebc14 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x7e255b93 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x7e26aac1 dst_destroy +EXPORT_SYMBOL vmlinux 0x7e2ca7de filp_open EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3f2392 kern_path -EXPORT_SYMBOL vmlinux 0x7e497b68 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x7e4b133e jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x7e51ab86 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x7e384b47 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e6faeb4 inet_sk_set_state EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e7de074 complete_request_key -EXPORT_SYMBOL vmlinux 0x7e99b1db cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x7ea45ff8 dev_add_offload -EXPORT_SYMBOL vmlinux 0x7eca5f74 phy_start -EXPORT_SYMBOL vmlinux 0x7ed175fc sock_set_priority -EXPORT_SYMBOL vmlinux 0x7ed7eb6c arp_tbl +EXPORT_SYMBOL vmlinux 0x7e7e4706 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x7e8c2a16 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x7e99226a iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x7ebecc6b tcp_peek_len +EXPORT_SYMBOL vmlinux 0x7ebf785c register_cdrom +EXPORT_SYMBOL vmlinux 0x7edc3153 devm_request_resource +EXPORT_SYMBOL vmlinux 0x7edcfc18 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7eff2536 iterate_fd -EXPORT_SYMBOL vmlinux 0x7f00c8be nd_btt_version +EXPORT_SYMBOL vmlinux 0x7f005e32 set_capacity EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f14cf42 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7f068867 simple_link +EXPORT_SYMBOL vmlinux 0x7f0f0263 xp_alloc EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f295e94 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x7f342d96 flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0x7f430ade fget +EXPORT_SYMBOL vmlinux 0x7f2e3123 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7f3265d9 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x7f35a9cb jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f549e3c tcp_peek_len -EXPORT_SYMBOL vmlinux 0x7f62216e ndisc_send_skb EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8320f3 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x7f96fc6a insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x7faab943 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x7fc2fe2c reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x7fdb233a console_start +EXPORT_SYMBOL vmlinux 0x7f848191 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x7f8a7f5e skb_copy_header +EXPORT_SYMBOL vmlinux 0x7f93255d __quota_error +EXPORT_SYMBOL vmlinux 0x7f9a7f42 nd_btt_version +EXPORT_SYMBOL vmlinux 0x7fa84e10 clear_nlink +EXPORT_SYMBOL vmlinux 0x7fac6c14 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fc070e2 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x7fc718b6 dquot_drop +EXPORT_SYMBOL vmlinux 0x7fcbf797 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x7fde1fbc acpi_walk_resource_buffer EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x8007f875 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x80129c1d sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x8025ddb7 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x802b1f85 pci_get_slot +EXPORT_SYMBOL vmlinux 0x7fe9a121 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x7fed2b7f neigh_lookup +EXPORT_SYMBOL vmlinux 0x80134026 pcpu_hot +EXPORT_SYMBOL vmlinux 0x80248d5c dma_ops +EXPORT_SYMBOL vmlinux 0x8025f89c setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x80493b5f inet_csk_accept EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x805109e7 inet_protos -EXPORT_SYMBOL vmlinux 0x80545efc eth_gro_receive -EXPORT_SYMBOL vmlinux 0x806095da netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x806e78ab drop_nlink EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80b72d0b bio_integrity_trim EXPORT_SYMBOL vmlinux 0x80c0a364 pnp_stop_dev EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e32dbd pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80ec75c8 flow_rule_match_l2tpv3 -EXPORT_SYMBOL vmlinux 0x80f71ed9 km_report -EXPORT_SYMBOL vmlinux 0x80f95b18 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x81049557 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x80f11001 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x80f2eda5 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x8106e72f seq_write EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8114c4b9 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x81238bd0 put_cmsg -EXPORT_SYMBOL vmlinux 0x814893d7 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x811bb548 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x8121abf7 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x81367333 starget_for_each_device EXPORT_SYMBOL vmlinux 0x81491054 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x8149c4f5 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x814e5b94 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x8151339f reuseport_add_sock EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x8154a8f6 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x815fb4b1 eth_gro_complete EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x8163eca9 dst_init +EXPORT_SYMBOL vmlinux 0x817ae160 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x817b6525 kern_unmount EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8186473a skb_copy_header -EXPORT_SYMBOL vmlinux 0x81976d9e dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x819b043d skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x819ab170 generic_file_read_iter EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload -EXPORT_SYMBOL vmlinux 0x81a8c479 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x81a8f6ad param_get_charp +EXPORT_SYMBOL vmlinux 0x81abc431 fasync_helper EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x81c7ff69 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev EXPORT_SYMBOL vmlinux 0x81d6c28b acpi_buffer_to_resource EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dce0c9 register_netdev -EXPORT_SYMBOL vmlinux 0x81e66680 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fe7d68 component_match_add_release +EXPORT_SYMBOL vmlinux 0x82058211 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x8213d3c8 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x821a0fad xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x8248fbb3 skb_copy -EXPORT_SYMBOL vmlinux 0x824de6e1 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x823d8286 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x82409f46 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x8243d05a xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x824c4902 tty_devnum EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk -EXPORT_SYMBOL vmlinux 0x82724821 sock_create_lite -EXPORT_SYMBOL vmlinux 0x82769595 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x8292fc29 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x82a0cb85 set_pages_uc -EXPORT_SYMBOL vmlinux 0x82b71ea7 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x82606095 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x828a5c21 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x8292ecbc pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x82991ab1 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x829fa9a8 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x82adae27 task_work_add +EXPORT_SYMBOL vmlinux 0x82b4fc14 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82ca5e9a ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x82cdb9e6 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x82d517e7 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x82d8a62d eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x82e02379 agp3_generic_tlbflush -EXPORT_SYMBOL vmlinux 0x82e49252 set_posix_acl +EXPORT_SYMBOL vmlinux 0x82da7900 sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x82ebc2e4 qdisc_hash_add EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x830bacac tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x83137bda pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x83230580 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x8349bad4 task_work_add -EXPORT_SYMBOL vmlinux 0x8351fec7 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x8323e820 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x8326dea9 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x83286bb1 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x83499c32 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x83533e99 max8925_bulk_read EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835a565f twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x835b2a0e tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x8372894a phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x8363dcd5 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x83823dd9 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x83887ffe qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83a464d5 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x83a81e52 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0x83cc1159 __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0x83d42434 get_watch_queue -EXPORT_SYMBOL vmlinux 0x83e2a537 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x83ec97a8 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x83f3db16 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x840345f3 folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0x8425b99c phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x83a9b6e9 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x83ac6b7f inet_put_port +EXPORT_SYMBOL vmlinux 0x83b0793b path_is_under +EXPORT_SYMBOL vmlinux 0x83b2557b md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x83be8108 scsi_device_put +EXPORT_SYMBOL vmlinux 0x83c29aba hid_bpf_ops +EXPORT_SYMBOL vmlinux 0x83c66c49 uart_resume_port +EXPORT_SYMBOL vmlinux 0x83eecfab has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x841126c5 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x84123375 make_bad_inode +EXPORT_SYMBOL vmlinux 0x84156501 d_rehash +EXPORT_SYMBOL vmlinux 0x841581d2 path_put +EXPORT_SYMBOL vmlinux 0x8416c60e scsi_device_resume +EXPORT_SYMBOL vmlinux 0x841e3f2a pci_scan_single_device EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x843be1e1 gro_cells_init -EXPORT_SYMBOL vmlinux 0x8467076c done_path_create -EXPORT_SYMBOL vmlinux 0x8473d98b skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x842e5cd3 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x842ffaee dev_alloc_name +EXPORT_SYMBOL vmlinux 0x8459a2cf iov_iter_revert +EXPORT_SYMBOL vmlinux 0x845d70f3 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x846150f5 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x8464529a dm_put_device EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x8487b789 sock_wmalloc EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x8499dd63 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x849c750d ps2_init +EXPORT_SYMBOL vmlinux 0x84935199 mmc_detect_change EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84b49cf6 cfb_copyarea -EXPORT_SYMBOL vmlinux 0x84c63973 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x84c6e4a5 skb_find_text +EXPORT_SYMBOL vmlinux 0x84a905bb input_close_device +EXPORT_SYMBOL vmlinux 0x84ac4e8f ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x84ce5469 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x84d64169 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x84dca0ef handle_edge_irq -EXPORT_SYMBOL vmlinux 0x84dd7e5f zero_fill_bio -EXPORT_SYMBOL vmlinux 0x84e045b3 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x84eb479a dst_alloc -EXPORT_SYMBOL vmlinux 0x84f39d01 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x84f5092b dev_uc_del +EXPORT_SYMBOL vmlinux 0x84e02baf iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x84ef9587 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x84efc1c6 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x84fe8728 __scm_destroy +EXPORT_SYMBOL vmlinux 0x8501332c dev_get_by_name +EXPORT_SYMBOL vmlinux 0x850ad190 phy_get_eee_err EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851ab888 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x851bcc8a phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x851c5fb9 xfrm_register_type EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -EXPORT_SYMBOL vmlinux 0x852bafca mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel -EXPORT_SYMBOL vmlinux 0x8549b8a8 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x852c6114 pipe_unlock +EXPORT_SYMBOL vmlinux 0x85379e3c vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8567bb5f scsi_print_sense -EXPORT_SYMBOL vmlinux 0x8588e8e8 dump_emit +EXPORT_SYMBOL vmlinux 0x85803566 phy_resume EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85943d49 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x85ad9b20 ethtool_aggregate_ctrl_stats EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85cb49e9 _dev_crit -EXPORT_SYMBOL vmlinux 0x85cfcd69 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x85d3b75a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x85c37224 address_space_init_once +EXPORT_SYMBOL vmlinux 0x85cfd89e scm_detach_fds EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85e29513 kobject_get -EXPORT_SYMBOL vmlinux 0x85e48fe5 input_flush_device EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f28026 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x85f5414e tcp_recvmsg EXPORT_SYMBOL vmlinux 0x85f596a4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x86053647 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x862241f7 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x85f7ea02 param_set_copystring +EXPORT_SYMBOL vmlinux 0x85f85a28 dma_resv_init +EXPORT_SYMBOL vmlinux 0x860dddfa netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x860e3edf bdi_put +EXPORT_SYMBOL vmlinux 0x861a7ba9 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x861cad04 ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node -EXPORT_SYMBOL vmlinux 0x86307ae8 tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0x8632c610 genl_notify EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x86412d05 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x8661e16e __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x8656fb81 set_pages_array_uc EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x8671ffee scsi_remove_host +EXPORT_SYMBOL vmlinux 0x86816eed vme_dma_request EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86ae3833 sock_wake_async -EXPORT_SYMBOL vmlinux 0x86af4ac9 single_open_size -EXPORT_SYMBOL vmlinux 0x86b5553c __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x86b9851a __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x86c5ba16 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x868cdffb pci_irq_vector +EXPORT_SYMBOL vmlinux 0x86951efd jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x869e6d20 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x86a93dda mdio_device_free EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86ce8200 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x86d16ee5 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x86d38698 nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d75fbd blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86de5b0c __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x86ee20ee generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x86f07d5b __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86ffc37e seq_bprintf -EXPORT_SYMBOL vmlinux 0x87029941 xattr_full_name -EXPORT_SYMBOL vmlinux 0x8706ca3b pcim_iounmap -EXPORT_SYMBOL vmlinux 0x87119584 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x8717b680 amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0x871a1aa3 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x87295e57 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x873b414c md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x870bfbf6 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x87187cce napi_gro_frags +EXPORT_SYMBOL vmlinux 0x872c846c dst_dev_put +EXPORT_SYMBOL vmlinux 0x873835e2 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x875af0fb pm860x_reg_write EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8763f116 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x87677c96 sk_free EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x879f37a6 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x878164ba skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87a98041 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x87afdcf7 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x87b2823c fasync_helper -EXPORT_SYMBOL vmlinux 0x87b8457a blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x87a9b8b2 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x87c8c92f dma_fence_match_context EXPORT_SYMBOL vmlinux 0x87c95dff __nla_put -EXPORT_SYMBOL vmlinux 0x87ed7f18 slab_build_skb -EXPORT_SYMBOL vmlinux 0x87f23683 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x87d3ef09 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x87d74d7b udp_seq_stop +EXPORT_SYMBOL vmlinux 0x87d9f73a unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x87e5e291 truncate_pagecache EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8819ee64 flow_block_cb_free EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit EXPORT_SYMBOL vmlinux 0x8823ef75 intel_gmch_gtt_insert_page -EXPORT_SYMBOL vmlinux 0x883fc7e0 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x8840983e __skb_pad -EXPORT_SYMBOL vmlinux 0x884b87fc netlink_broadcast -EXPORT_SYMBOL vmlinux 0x885c44e1 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x888017bc ethtool_aggregate_mac_stats +EXPORT_SYMBOL vmlinux 0x88359140 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x8843b60f phy_connect_direct +EXPORT_SYMBOL vmlinux 0x884695d4 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x88722205 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x887629b8 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88850135 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x8888db65 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888e0a7d blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a1e548 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x88affdb8 bprm_change_interp EXPORT_SYMBOL vmlinux 0x88d902f2 cros_ec_get_host_event EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f7bc4c backlight_force_update -EXPORT_SYMBOL vmlinux 0x88fd7141 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x8900ecd0 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x890b8755 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x891da9a3 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x88efca6d vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x88f0454b fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x88f48434 migrate_folio +EXPORT_SYMBOL vmlinux 0x88f7f9b0 key_task_permission +EXPORT_SYMBOL vmlinux 0x88fcd943 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x89030c43 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order -EXPORT_SYMBOL vmlinux 0x8930d06b generic_fillattr -EXPORT_SYMBOL vmlinux 0x893b0a25 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x89405357 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x893061a1 arp_tbl EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x894f3769 follow_pfn -EXPORT_SYMBOL vmlinux 0x896983eb generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x8988e24d set_pages_wb -EXPORT_SYMBOL vmlinux 0x898cdb16 cdrom_release +EXPORT_SYMBOL vmlinux 0x894e8558 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x896d87ec netif_skb_features +EXPORT_SYMBOL vmlinux 0x89788864 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x898633b4 blk_rq_init +EXPORT_SYMBOL vmlinux 0x898cf15d dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x89931146 is_bad_inode EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x899fb2bc seq_printf -EXPORT_SYMBOL vmlinux 0x89b0b271 get_phy_device -EXPORT_SYMBOL vmlinux 0x89b4a6d1 param_get_ulong +EXPORT_SYMBOL vmlinux 0x899a61dd scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x899d1155 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x89aa2db7 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0x89b5ffe4 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x89bd762d security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x89c56955 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x89ca1b35 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x89dde8c9 init_special_inode -EXPORT_SYMBOL vmlinux 0x89efd6ed dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x8a004edf tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x8a0b9b65 km_query -EXPORT_SYMBOL vmlinux 0x8a166496 neigh_xmit -EXPORT_SYMBOL vmlinux 0x8a1aceeb xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x8a233f26 ip6_dst_check -EXPORT_SYMBOL vmlinux 0x8a2a699c tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x8a336479 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x89b91bf5 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x89bfe451 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x89cec217 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x89d92a1c unregister_binfmt +EXPORT_SYMBOL vmlinux 0x89de8251 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x89fa4e7b tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x8a086a87 param_set_ullong +EXPORT_SYMBOL vmlinux 0x8a0c869b ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x8a21533a phy_driver_register +EXPORT_SYMBOL vmlinux 0x8a29ac15 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x8a2ca09c folio_mark_dirty EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a40f979 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x8a41e88e skb_expand_head +EXPORT_SYMBOL vmlinux 0x8a422e54 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x8a42367f input_set_timestamp +EXPORT_SYMBOL vmlinux 0x8a428057 arp_xmit EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4a4783 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x8a4cac32 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x8a5235a4 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x8a4f20a1 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x8a54670a __x86_indirect_jump_thunk_r14 -EXPORT_SYMBOL vmlinux 0x8a552509 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x8a59ce12 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x8a65389d __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x8a661d49 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x8a6bade7 fb_is_primary_device EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a6f9687 pmem_should_map_pages EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a76c8de ilookup +EXPORT_SYMBOL vmlinux 0x8a77840c sock_release EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a831753 skb_store_bits EXPORT_SYMBOL vmlinux 0x8a833583 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8a97aea2 __page_frag_cache_drain EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa55dfc __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8aa72875 inet6_protos +EXPORT_SYMBOL vmlinux 0x8aa929f0 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x8aaecd60 __put_cred +EXPORT_SYMBOL vmlinux 0x8ab903f4 nd_device_notify +EXPORT_SYMBOL vmlinux 0x8abbbfb1 unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ae13ca3 udp_disconnect -EXPORT_SYMBOL vmlinux 0x8ae5be25 seq_read +EXPORT_SYMBOL vmlinux 0x8ae16482 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x8aeb6660 regset_get +EXPORT_SYMBOL vmlinux 0x8aee99f8 pin_user_pages EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b2427de pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x8b26c8b9 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x8b2e391f tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x8b3405ed tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x8b3657ec copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x8b4ebbce devfreq_update_target +EXPORT_SYMBOL vmlinux 0x8b3472cb __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x8b3af328 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x8b488b97 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x8b522c54 vfs_link +EXPORT_SYMBOL vmlinux 0x8b5a66d6 generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6d773b xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x8b6ae75a skb_put EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b843dee migrate_folio +EXPORT_SYMBOL vmlinux 0x8b85e455 skb_ext_add EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bab7f57 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x8bbde782 __phy_resume -EXPORT_SYMBOL vmlinux 0x8bd03b05 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x8bab6d36 _dev_printk +EXPORT_SYMBOL vmlinux 0x8bb6c93b acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x8bba9030 dcb_getrewr_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x8bc724b8 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8bf8d6eb skb_expand_head -EXPORT_SYMBOL vmlinux 0x8bffdc8a drop_super_exclusive EXPORT_SYMBOL vmlinux 0x8c031f3d textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x8c1f24a6 udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0x8c204415 __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c334363 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x8c43efc6 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x8c5962db con_copy_unimap -EXPORT_SYMBOL vmlinux 0x8c6204d7 sock_no_linger -EXPORT_SYMBOL vmlinux 0x8c6ec291 free_task -EXPORT_SYMBOL vmlinux 0x8c72c009 skb_eth_push -EXPORT_SYMBOL vmlinux 0x8c7a5ff6 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x8c7bedb0 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x8c3699ad __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x8c437b88 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x8c5db79b rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c984466 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x8c8a901b blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x8c8c7b0a generic_buffers_fsync_noflush EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8caf81f4 bioset_exit EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb37220 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x8cc5a68c read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x8cba1314 __fput_sync +EXPORT_SYMBOL vmlinux 0x8cbd7d65 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdb953f sk_dst_check -EXPORT_SYMBOL vmlinux 0x8cdc1934 param_ops_int -EXPORT_SYMBOL vmlinux 0x8cdcc5c1 vmap -EXPORT_SYMBOL vmlinux 0x8cf2bd6f md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8cf85c1b scsi_print_command -EXPORT_SYMBOL vmlinux 0x8cfa6091 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x8d08be90 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x8d09991c fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x8d071474 generic_setlease +EXPORT_SYMBOL vmlinux 0x8d152f00 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x8d1a5900 netif_tx_lock EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d3a507f xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x8d4726bc inet_frags_fini -EXPORT_SYMBOL vmlinux 0x8d53cdff input_copy_abs +EXPORT_SYMBOL vmlinux 0x8d3f8811 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d60ee68 inet_shutdown +EXPORT_SYMBOL vmlinux 0x8d64039b _dev_notice EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d7091a3 scsi_target_resume EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d78b4b4 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x8d8277ba mmc_gpio_set_cd_irq +EXPORT_SYMBOL vmlinux 0x8d938069 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x8da1e13a ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x8da6b1c0 kthread_destroy_worker EXPORT_SYMBOL vmlinux 0x8dafaf22 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x8db0b504 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8db8c028 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x8dc2a0a0 phy_start_cable_test EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x8df1ea8a d_obtain_root +EXPORT_SYMBOL vmlinux 0x8defb3c0 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e06d5ba set_create_files_as -EXPORT_SYMBOL vmlinux 0x8e077dd6 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x8e07d492 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x8e081ae7 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1d4748 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x8e3c8d5b generic_write_checks +EXPORT_SYMBOL vmlinux 0x8e2af227 vfs_statfs EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e47c611 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x8e586fc7 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x8e6be426 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x8e735ee2 open_exec +EXPORT_SYMBOL vmlinux 0x8e69b70b neigh_parms_release EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ea5e6b7 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x8e9d860a invalidate_bdev +EXPORT_SYMBOL vmlinux 0x8eaa5625 zero_fill_bio EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ed822a9 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x8eda287c con_is_visible +EXPORT_SYMBOL vmlinux 0x8ee75272 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x8ef4e6cc md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x8ef97b50 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x8f00cb22 poll_initwait EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f109b49 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x8f111041 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x8f1eacf8 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x8f2700e2 dev_mc_add EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f4c75d9 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x8f51ca45 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x8f76c94c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x8f28e298 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x8f3c519c kmem_cache_size +EXPORT_SYMBOL vmlinux 0x8f4e3067 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x8f6459a4 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x8f6696b0 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x8f79a9d1 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x8f7b9147 pci_disable_ptm EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x8f89e5d0 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x8f93f8ed scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x8f94fa05 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x8f8b3271 kmalloc_node_trace EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa040bc mmc_register_driver +EXPORT_SYMBOL vmlinux 0x8fa127c4 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fa4eb66 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x8fb47bb7 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x8fbff630 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x8fc86159 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x8fd1e50b __folio_alloc -EXPORT_SYMBOL vmlinux 0x8ff115c9 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x8fa497a1 fget +EXPORT_SYMBOL vmlinux 0x8fa95529 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x8facfedb security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x8fb3d6a1 rio_query_mport +EXPORT_SYMBOL vmlinux 0x8fc26ed5 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x8fe65bc6 pci_get_slot +EXPORT_SYMBOL vmlinux 0x8fed6b71 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x8ff564df mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0x8ff57220 pci_clear_master EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900e7c95 arp_send -EXPORT_SYMBOL vmlinux 0x901f95aa tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x90154039 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x90162913 seq_vprintf EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x90430c09 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x904cd682 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x904d6d11 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x906f86d9 iget_failed +EXPORT_SYMBOL vmlinux 0x907bb815 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x9088d129 filemap_get_folios_tag +EXPORT_SYMBOL vmlinux 0x908a6f2d bio_init_clone EXPORT_SYMBOL vmlinux 0x9092defd proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x909b07cd mmc_free_host -EXPORT_SYMBOL vmlinux 0x90ab310d pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x90bf8d1e dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x90e44dbe proc_create -EXPORT_SYMBOL vmlinux 0x90f70ba3 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x90fa853d agp_create_memory -EXPORT_SYMBOL vmlinux 0x90fd49dc ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x90fd82f6 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x90a0238d __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x90a68e76 register_key_type +EXPORT_SYMBOL vmlinux 0x90c0c9a3 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x90df74e0 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x90e3bd9d blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x90e89c81 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x90faf828 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x9105bf2d capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x9108d76c vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x910c6fed end_page_writeback EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x9145194b __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x91461c5d ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x915072fb skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x91550f1b wireless_spy_update +EXPORT_SYMBOL vmlinux 0x912169f3 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x913c9dd6 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x9156d7da block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91660008 nf_log_register EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x91708be7 _dev_crit EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x91831026 alloc_buffer_head EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 -EXPORT_SYMBOL vmlinux 0x919d5d40 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x919fafa3 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b5e2ff phy_connect -EXPORT_SYMBOL vmlinux 0x91bc2469 rproc_detach -EXPORT_SYMBOL vmlinux 0x91bef749 sg_miter_start -EXPORT_SYMBOL vmlinux 0x91bf39a6 block_read_full_folio -EXPORT_SYMBOL vmlinux 0x91c49517 __block_write_full_folio -EXPORT_SYMBOL vmlinux 0x91e4b320 tcf_block_get -EXPORT_SYMBOL vmlinux 0x91e82a57 arp_xmit +EXPORT_SYMBOL vmlinux 0x91b6044a folio_mapping +EXPORT_SYMBOL vmlinux 0x91b9d135 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x91d65336 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x91de2e72 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f99b63 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x91fc3be6 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x922882cf inet_addr_type +EXPORT_SYMBOL vmlinux 0x9223f36d inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923ee444 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x9242e24b d_find_any_alias -EXPORT_SYMBOL vmlinux 0x92488822 d_exact_alias +EXPORT_SYMBOL vmlinux 0x92436d5f cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x92689d42 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x926f2dd0 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x926c2baf dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x927b6a03 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x927dc757 md_register_thread -EXPORT_SYMBOL vmlinux 0x9281609c filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x927ae8b9 sock_no_accept +EXPORT_SYMBOL vmlinux 0x927ba886 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x92840031 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x92910cae blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x92902a6a build_skb_around EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9292b675 generic_block_bmap EXPORT_SYMBOL vmlinux 0x929878b2 posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw -EXPORT_SYMBOL vmlinux 0x92b1497b invalidate_bdev EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c83bc0 drop_super +EXPORT_SYMBOL vmlinux 0x92bde8b4 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x92c072bd inet6_del_protocol EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x92d47482 tty_write_room EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92dcdcc4 bio_copy_data +EXPORT_SYMBOL vmlinux 0x92dfcd15 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x92e5d986 simple_pin_fs EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92ebf77f netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f13a92 filemap_check_errors EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9307a200 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x9310762f sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x9324da50 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x932e8860 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x9342af9f __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x93473a8a setattr_prepare +EXPORT_SYMBOL vmlinux 0x9319904f __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x932064a4 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x932bb172 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x93329c32 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x934ef89d neigh_carrier_down EXPORT_SYMBOL vmlinux 0x934f564b __x86_indirect_jump_thunk_r15 -EXPORT_SYMBOL vmlinux 0x93618ded pci_map_rom -EXPORT_SYMBOL vmlinux 0x936298dd param_ops_string -EXPORT_SYMBOL vmlinux 0x93651dce max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x936abcb3 ip_frag_next +EXPORT_SYMBOL vmlinux 0x93532fe4 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x935510bc xfrm_register_km +EXPORT_SYMBOL vmlinux 0x936d6377 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x938d986f mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x938f2c93 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x93a10a56 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x937790ab rproc_put +EXPORT_SYMBOL vmlinux 0x939f8c9b tcp_check_req +EXPORT_SYMBOL vmlinux 0x93a09946 get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93aea310 sg_miter_next EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b731d4 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x93b86ddb fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x93ccdde1 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x93ce454e folio_account_redirty -EXPORT_SYMBOL vmlinux 0x93d66eb3 fb_io_write +EXPORT_SYMBOL vmlinux 0x93b47efe mmc_request_done +EXPORT_SYMBOL vmlinux 0x93b5da4d dma_async_device_register +EXPORT_SYMBOL vmlinux 0x93cc11cd pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x93cd4f59 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x93d12c8a xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93d97331 filemap_splice_read -EXPORT_SYMBOL vmlinux 0x93e285df jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x93eb146c nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x93f1e4f9 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x93f7fdd1 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x93fb64b8 vga_client_register EXPORT_SYMBOL vmlinux 0x940d188f eisa_driver_register -EXPORT_SYMBOL vmlinux 0x940f232b intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x94240d53 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x9427b6d3 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x94275115 dcache_readdir EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x943a3928 locks_free_lock +EXPORT_SYMBOL vmlinux 0x9431ebcc unmap_mapping_range EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x9447baa6 vfs_create_mount EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x946b1d7d tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x94722dd6 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x9474a607 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x948057e0 inode_query_iversion +EXPORT_SYMBOL vmlinux 0x944c202d dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x944f5562 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x94578dfe handshake_req_alloc +EXPORT_SYMBOL vmlinux 0x947a190f generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x9493fc86 node_states EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94acdde1 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x94a1b205 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x94b9a50e netlink_capable EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94beda5b inet6_offloads EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c253d8 phy_resume -EXPORT_SYMBOL vmlinux 0x94c6c8da scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x94e56e6b tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x94fdd5d5 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x95030848 pci_request_irq EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x952aedb1 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x952ea48c make_bad_inode +EXPORT_SYMBOL vmlinux 0x952233b7 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x9524fb1b mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x952cbe5e tcp_read_sock +EXPORT_SYMBOL vmlinux 0x952ce2df sync_blockdev +EXPORT_SYMBOL vmlinux 0x953c1d02 mmc_start_request EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954a8d93 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x954fefe6 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x955a0003 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x956ec565 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x957977fd unlock_buffer +EXPORT_SYMBOL vmlinux 0x955bbf9c xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x956b7789 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x957873df dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0x957c9ebf neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x9582447d dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x95a01797 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x958300a1 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x95837732 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x959b8400 xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods -EXPORT_SYMBOL vmlinux 0x95a0f2b5 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95cd7205 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x95f5eb7b reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0x960066d3 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x95c13344 iget_failed +EXPORT_SYMBOL vmlinux 0x95cb3de8 putname +EXPORT_SYMBOL vmlinux 0x95ce5d3d skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0x95e2ac23 generic_write_checks +EXPORT_SYMBOL vmlinux 0x9611149d input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x962366f1 input_get_poll_interval EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x96281efa generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x9630acab __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x965da6ac mdio_driver_register -EXPORT_SYMBOL vmlinux 0x965f5626 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x96709028 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x962b882a filemap_splice_read +EXPORT_SYMBOL vmlinux 0x964aa7a6 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x964dee02 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x966c1813 agp_collect_device_status EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x968517ec pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x9692d5f2 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x9696c167 noop_qdisc +EXPORT_SYMBOL vmlinux 0x96969f13 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x969b2544 block_truncate_page EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b636e6 netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96ca2915 _dev_info EXPORT_SYMBOL vmlinux 0x96cc4d63 devm_clk_get EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96ce6f2c ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x96ced822 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x96dd5e2a netdev_warn EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify -EXPORT_SYMBOL vmlinux 0x96ec6255 iget5_locked -EXPORT_SYMBOL vmlinux 0x96f71379 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x96ef3967 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9706af1e pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x9708d187 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x970fe76c inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x9728f58e blk_get_queue +EXPORT_SYMBOL vmlinux 0x96fb537a dm_register_target +EXPORT_SYMBOL vmlinux 0x973e4b20 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x97645815 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x97562058 thaw_super EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x97747f21 fget_raw EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat +EXPORT_SYMBOL vmlinux 0x97a2bc46 ip6_frag_init EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b0e9af netdev_printk -EXPORT_SYMBOL vmlinux 0x97b2acce devfreq_add_device -EXPORT_SYMBOL vmlinux 0x97b3426f agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0x97b88138 tty_do_resize +EXPORT_SYMBOL vmlinux 0x97b794bf elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97d2bd26 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x97d816e7 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x97e7aaec netif_carrier_off -EXPORT_SYMBOL vmlinux 0x97ee7836 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x980ab583 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x981a344d kthread_create_worker +EXPORT_SYMBOL vmlinux 0x981a07a4 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x983a38ac tcp_init_sock -EXPORT_SYMBOL vmlinux 0x9846212d mdio_device_reset EXPORT_SYMBOL vmlinux 0x984d9c39 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x985159b0 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x98555a05 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x9856bdae vme_bus_num EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x987623b7 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x987671f0 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x98c44afa dcb_getrewr +EXPORT_SYMBOL vmlinux 0x9861e154 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x98883e7e __block_write_begin +EXPORT_SYMBOL vmlinux 0x98979ca8 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x98a87f01 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x98aa4b6a phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x98baff0b tcp_prot +EXPORT_SYMBOL vmlinux 0x98bccff6 page_readlink +EXPORT_SYMBOL vmlinux 0x98bd4f68 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x98c02f2c kernel_param_unlock EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98cb878e proc_dobool -EXPORT_SYMBOL vmlinux 0x98d2146c jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x98e042b8 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x98d06e4a dquot_destroy +EXPORT_SYMBOL vmlinux 0x98d6cf59 pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e8970a to_nd_btt EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x99093fdd pnp_register_driver -EXPORT_SYMBOL vmlinux 0x992cc922 tcp_mmap +EXPORT_SYMBOL vmlinux 0x99206839 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x9925877b phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9949dfcb __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x994874f7 serial8250_do_pm EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9968000f __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0x996956c3 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x99786b15 param_get_hexint -EXPORT_SYMBOL vmlinux 0x9980263c from_kgid -EXPORT_SYMBOL vmlinux 0x998c7039 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x99616d6a flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x9965b0ba setup_new_exec +EXPORT_SYMBOL vmlinux 0x997dea6d pci_set_mwi +EXPORT_SYMBOL vmlinux 0x9989aa55 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x998dfe35 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x999805ca __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x999e8297 vfree EXPORT_SYMBOL vmlinux 0x99a8fb64 pnp_is_active -EXPORT_SYMBOL vmlinux 0x99b0ef2f genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x99bdd814 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d55df2 seq_pad EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e7b190 ethtool_notify EXPORT_SYMBOL vmlinux 0x99eeeb23 pnp_start_dev EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map -EXPORT_SYMBOL vmlinux 0x99f385a1 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x99f78a3a scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99f996f7 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x99ff7327 netdev_offload_xstats_enabled -EXPORT_SYMBOL vmlinux 0x9a0b380b skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x9a1740a5 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9a089280 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x9a089765 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x9a0cd87c freezing_slow_path +EXPORT_SYMBOL vmlinux 0x9a0db855 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x9a179214 seq_release EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a232cc5 reuseport_alloc EXPORT_SYMBOL vmlinux 0x9a259c8c kset_register EXPORT_SYMBOL vmlinux 0x9a2c088f irq_stat -EXPORT_SYMBOL vmlinux 0x9a3245bb dev_set_threaded -EXPORT_SYMBOL vmlinux 0x9a367129 amd_iommu_flush_tlb -EXPORT_SYMBOL vmlinux 0x9a449c0c get_tree_bdev -EXPORT_SYMBOL vmlinux 0x9a4751b5 dquot_initialize -EXPORT_SYMBOL vmlinux 0x9a52b7e6 inode_init_owner +EXPORT_SYMBOL vmlinux 0x9a3d0bd2 netpoll_setup +EXPORT_SYMBOL vmlinux 0x9a518b43 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a686f1d __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x9a771971 __bforget -EXPORT_SYMBOL vmlinux 0x9a809131 phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x9a9b95be phy_disconnect -EXPORT_SYMBOL vmlinux 0x9a9e9369 rtc_add_group -EXPORT_SYMBOL vmlinux 0x9aa65f82 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x9a62a9a1 backlight_device_register +EXPORT_SYMBOL vmlinux 0x9a65c33d inet6_ioctl +EXPORT_SYMBOL vmlinux 0x9a8c0d59 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x9a9be4fa i2c_get_match_data EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab9de06 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x9ab8148a vme_master_request +EXPORT_SYMBOL vmlinux 0x9abebc6f unlock_new_inode EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area -EXPORT_SYMBOL vmlinux 0x9ad1a275 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x9ad77da2 edac_mc_find EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae520a4 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x9af70e4f qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x9b0634d9 lease_modify +EXPORT_SYMBOL vmlinux 0x9b1a41e5 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x9b1d1815 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b27799d generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x9b2606cd tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9b29573c rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b398803 console_stop +EXPORT_SYMBOL vmlinux 0x9b43d0b1 scsi_host_busy EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5c1a73 filemap_alloc_folio -EXPORT_SYMBOL vmlinux 0x9b679802 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x9b4c480e handshake_req_cancel +EXPORT_SYMBOL vmlinux 0x9b5180a4 dqget +EXPORT_SYMBOL vmlinux 0x9b550779 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x9b577377 md_integrity_register +EXPORT_SYMBOL vmlinux 0x9b5b6e0c rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x9b63f373 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b8075cd tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x9b84f48a vm_map_pages -EXPORT_SYMBOL vmlinux 0x9b8c21ab d_alloc_anon -EXPORT_SYMBOL vmlinux 0x9b8d8b3d input_unregister_device -EXPORT_SYMBOL vmlinux 0x9b8e4639 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0x9b94a131 skb_condense -EXPORT_SYMBOL vmlinux 0x9ba0065c tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x9baae264 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x9bab6142 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x9b96fa08 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x9ba274e8 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x9ba42989 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x9ba99317 finish_no_open +EXPORT_SYMBOL vmlinux 0x9baaca3b sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x9bafc6d3 __tracepoint_spi_transfer_start EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bd85b53 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x9c07df47 netdev_emerg -EXPORT_SYMBOL vmlinux 0x9c10cf92 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x9bb5a248 release_pages EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1be8ae inet_offloads +EXPORT_SYMBOL vmlinux 0x9c15d8c2 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x9c2728ce __do_once_done -EXPORT_SYMBOL vmlinux 0x9c4cbbbf scsi_host_get +EXPORT_SYMBOL vmlinux 0x9c3f6b01 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x9c47f160 mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0x9c5fa989 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c76b115 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x9c83750d try_lookup_one_len EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c898025 dma_resv_fini EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user -EXPORT_SYMBOL vmlinux 0x9ca66b17 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x9ca30f4b mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cad6c7d tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x9cae0168 dump_skip_to EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9ccc192d cfb_fillrect +EXPORT_SYMBOL vmlinux 0x9cc19bc1 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x9cc21eef mmc_of_parse EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd846dc phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x9cd2b392 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x9cd95ab9 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x9cd9bfdb key_invalidate EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ce92157 padata_free_shell EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9cf96e65 d_path EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0c1b62 param_set_uint EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d0d985d devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x9d14c4ed vfs_mkdir -EXPORT_SYMBOL vmlinux 0x9d1a4ab3 tcp_connect +EXPORT_SYMBOL vmlinux 0x9d19c3a3 agp_generic_alloc_pages EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x9d281414 udp_gro_receive EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d3bbe28 pci_clear_master -EXPORT_SYMBOL vmlinux 0x9d3bddbb input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x9d484faf udp6_set_csum -EXPORT_SYMBOL vmlinux 0x9d5430b2 mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x9d56dce6 input_reset_device +EXPORT_SYMBOL vmlinux 0x9d351a0b bio_reset EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp EXPORT_SYMBOL vmlinux 0x9d62fb66 config_group_init EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl -EXPORT_SYMBOL vmlinux 0x9d8a2941 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x9d78c573 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x9d834bf5 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d93e8ed __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x9d9e7e9d devm_release_resource -EXPORT_SYMBOL vmlinux 0x9dc5372c dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x9d98880e neigh_table_clear +EXPORT_SYMBOL vmlinux 0x9d98bd07 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x9d9bfb5e pci_read_vpd +EXPORT_SYMBOL vmlinux 0x9daefef6 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x9dc9eb7a genphy_resume +EXPORT_SYMBOL vmlinux 0x9dcbb77b bioset_init EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9ddfd84f framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x9de73a0d netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits -EXPORT_SYMBOL vmlinux 0x9dfb788f blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x9e029cbc scmd_printk +EXPORT_SYMBOL vmlinux 0x9e0b7c5d pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node -EXPORT_SYMBOL vmlinux 0x9e0de2a9 d_drop EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e12a6e5 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e14af05 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x9e17578a cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x9e1f3827 setattr_copy +EXPORT_SYMBOL vmlinux 0x9e1f53f6 dcache_dir_close EXPORT_SYMBOL vmlinux 0x9e2186a2 kobject_del EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e381cc1 dm_table_get_md -EXPORT_SYMBOL vmlinux 0x9e3d0a8d __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x9e468928 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x9e476fe3 follow_up +EXPORT_SYMBOL vmlinux 0x9e2f0cd9 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x9e2f8a8e scsi_mode_sense EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5724f4 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x9e5b2ba4 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x9e5b8f2d pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x9e76f142 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x9e7887d3 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e84d2ca pci_disable_device +EXPORT_SYMBOL vmlinux 0x9e9d662b d_prune_aliases EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eae1e62 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x9eb8d214 ps2_drain EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec3add6 module_refcount EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9eca594e scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x9ecf8742 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9eeefdad param_get_invbool EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9ef81a66 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x9f0288a9 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x9f176f7e bio_chain -EXPORT_SYMBOL vmlinux 0x9f1d3475 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x9f1e7e96 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0x9ef311d5 lease_modify +EXPORT_SYMBOL vmlinux 0x9f00c07b km_policy_expired +EXPORT_SYMBOL vmlinux 0x9f153404 key_put EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4ae62d tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f575645 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x9f61c227 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x9f68c487 __bio_advance +EXPORT_SYMBOL vmlinux 0x9f65f90d folio_set_bh EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f7e6cd1 devfreq_resume_device EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa24f94 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x9f9e1e5b vm_mmap EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fae3a16 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x9fa90712 pci_write_vpd EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fbbf388 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x9fc3dd65 scsi_device_put -EXPORT_SYMBOL vmlinux 0x9fc7aa02 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x9fcdcef7 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x9fb4712b tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x9fc654f4 ethtool_aggregate_pause_stats EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe69600 fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff37469 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa009adc5 i2c_get_adapter EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0180d91 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xa0114ad7 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xa0138e61 folio_alloc +EXPORT_SYMBOL vmlinux 0xa016f14e flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa023e9e2 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033471f audit_log EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa0344eb1 kill_fasync +EXPORT_SYMBOL vmlinux 0xa0415325 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa043a7b1 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xa0568729 convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0xa04ae99d filemap_release_folio +EXPORT_SYMBOL vmlinux 0xa04e8cee netif_rx EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa06df82a dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08a8a92 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xa093ed07 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xa0918088 sock_cmsg_send EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09e1a91 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xa0a606a6 dst_alloc +EXPORT_SYMBOL vmlinux 0xa0a9cdd7 xfrm_user_policy EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0ba47fa input_close_device +EXPORT_SYMBOL vmlinux 0xa0cd90d6 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e5fa51 scsi_register_driver EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0xa0ec7b38 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table +EXPORT_SYMBOL vmlinux 0xa0fb4c25 netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fc88d1 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa106d403 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xa1074d6f seq_path EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11dbc6e register_cdrom -EXPORT_SYMBOL vmlinux 0xa1291924 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xa14e3d53 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xa113cc27 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xa14b3b08 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xa1683dc4 cdev_add +EXPORT_SYMBOL vmlinux 0xa170b148 jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0xa182afea acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0xa19f55d2 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xa185b92d xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xa18a2809 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xa1b1f8ce phy_stop EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1bf5fe3 pci_release_resource -EXPORT_SYMBOL vmlinux 0xa1c40a97 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0xa1e891d0 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xa1f92062 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa1c855a6 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa1d4bbbc mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xa1dbf8d4 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xa1dca4e2 param_get_hexint +EXPORT_SYMBOL vmlinux 0xa1f02866 generic_read_dir +EXPORT_SYMBOL vmlinux 0xa1f69cd3 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xa1fa85b0 thaw_bdev EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20dc930 submit_bio -EXPORT_SYMBOL vmlinux 0xa20de8f8 input_get_keycode -EXPORT_SYMBOL vmlinux 0xa2324ca5 set_page_dirty +EXPORT_SYMBOL vmlinux 0xa210dd39 netdev_alert +EXPORT_SYMBOL vmlinux 0xa22bfe94 pskb_extract EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa23cb6b8 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa24d6896 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa2583b07 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xa250d8f9 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2676f5a dquot_file_open -EXPORT_SYMBOL vmlinux 0xa279b55f vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xa27554ee bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xa27ec45f vga_get EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa296826c dev_uc_sync -EXPORT_SYMBOL vmlinux 0xa2d4313b netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xa2dfb970 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xa3194927 dma_map_resource -EXPORT_SYMBOL vmlinux 0xa33bd753 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xa35bf44b security_path_mkdir -EXPORT_SYMBOL vmlinux 0xa35cc6cd pci_restore_state -EXPORT_SYMBOL vmlinux 0xa374ba1a filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xa376c384 igrab -EXPORT_SYMBOL vmlinux 0xa37e5d58 agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0xa37fc0a9 vm_map_ram -EXPORT_SYMBOL vmlinux 0xa387e1af fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xa2973a4b locks_init_lock +EXPORT_SYMBOL vmlinux 0xa2c42647 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xa2e01d4a dev_driver_string +EXPORT_SYMBOL vmlinux 0xa30056ba fb_set_var +EXPORT_SYMBOL vmlinux 0xa300e135 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xa30b35d8 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xa32b606e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xa33d969c pci_request_irq +EXPORT_SYMBOL vmlinux 0xa34bd0bd inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa34fb20b xp_can_alloc +EXPORT_SYMBOL vmlinux 0xa37f3f48 input_flush_device EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga -EXPORT_SYMBOL vmlinux 0xa3ae36e8 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xa392301e param_get_charp +EXPORT_SYMBOL vmlinux 0xa3963c3a dm_kobject_release +EXPORT_SYMBOL vmlinux 0xa3bd7e5a iov_iter_get_pages2 EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c33131 eth_header_parse +EXPORT_SYMBOL vmlinux 0xa3c8f628 vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3d946a5 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xa3d3969c phy_validate_pause +EXPORT_SYMBOL vmlinux 0xa3e09167 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3e97ec0 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xa3ef6153 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xa3fe494e pci_get_subsys EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ec8da skb_append EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa410466d writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa415462b give_up_console EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa41b77ef convert_art_ns_to_tsc -EXPORT_SYMBOL vmlinux 0xa42a7b09 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xa43b2671 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xa43ee50b sk_ioctl EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa457c2e6 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xa46b46e2 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xa47936ca xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xa493e4dd skb_put -EXPORT_SYMBOL vmlinux 0xa496b0a2 __register_chrdev -EXPORT_SYMBOL vmlinux 0xa4970fa6 single_release +EXPORT_SYMBOL vmlinux 0xa460589a secpath_set +EXPORT_SYMBOL vmlinux 0xa467bf94 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xa46b05e4 netdev_emerg +EXPORT_SYMBOL vmlinux 0xa46b720e simple_transaction_read +EXPORT_SYMBOL vmlinux 0xa48822a6 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xa4a03a31 add_to_page_cache_lru EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4cb426f sock_sendmsg -EXPORT_SYMBOL vmlinux 0xa4cc2f43 phy_attach -EXPORT_SYMBOL vmlinux 0xa4d0a758 mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4d8b48c genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xa4e2d823 ethtool_aggregate_rmon_stats -EXPORT_SYMBOL vmlinux 0xa4f2f66e alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xa4da1962 tls_client_hello_x509 +EXPORT_SYMBOL vmlinux 0xa4e1b5b4 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xa4e495c8 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xa4f4a54d shrink_dcache_parent EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa503bcdb sock_init_data_uid EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa50d5ea3 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xa519f246 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa5141e75 add_to_pipe EXPORT_SYMBOL vmlinux 0xa520df64 devm_free_irq -EXPORT_SYMBOL vmlinux 0xa521f761 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xa5264d41 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xa52a1375 blackhole_netdev EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa5354a90 simple_fill_super -EXPORT_SYMBOL vmlinux 0xa53f8ab3 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xa541ed65 nf_setsockopt EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa55a43fb nla_put -EXPORT_SYMBOL vmlinux 0xa5756c36 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xa56df5f0 flush_signals +EXPORT_SYMBOL vmlinux 0xa5750c7d __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xa57f5726 agp_generic_alloc_by_type EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa58e6bdd rproc_del EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa598e53e pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xa5aa9cef is_nd_pfn +EXPORT_SYMBOL vmlinux 0xa5ac1b42 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xa5cd94f7 dget_parent EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5f4a44e security_sb_remount -EXPORT_SYMBOL vmlinux 0xa5fe63cd vme_irq_handler -EXPORT_SYMBOL vmlinux 0xa5ff7770 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xa60dfdfb fput +EXPORT_SYMBOL vmlinux 0xa5eb9cc1 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xa5f79dfd unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa5f85549 dcb_getrewr_prio_pcp_mask_map +EXPORT_SYMBOL vmlinux 0xa5f9113e blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xa5fbb5f7 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xa602c36f kernel_tmpfile_open +EXPORT_SYMBOL vmlinux 0xa60700f9 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xa60ec5b7 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa61ddb1a inet6_add_offload +EXPORT_SYMBOL vmlinux 0xa62457eb fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa624f1e2 phy_advertise_supported EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa629ecce bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xa63e1bec blk_integrity_unregister EXPORT_SYMBOL vmlinux 0xa6457c89 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa6469ec3 dev_add_pack EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64a5fb9 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa65b5ab1 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xa65e3184 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xa67013a0 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xa675ec29 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xa672392d t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xa6757d4d sock_bindtoindex EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa69465a5 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xa6a401ee nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xa6c4e4bc fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xa6cd2abe qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xa6d3bdbd __mdiobus_c45_write -EXPORT_SYMBOL vmlinux 0xa6dec6a0 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xa6e46823 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xa6f67a0c __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xa7004172 phy_init_hw -EXPORT_SYMBOL vmlinux 0xa70a2d45 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa692142a seq_bprintf +EXPORT_SYMBOL vmlinux 0xa694913e __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xa699a7dd fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xa69d933c ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xa6c1c46b km_state_expired +EXPORT_SYMBOL vmlinux 0xa6e6e18f simple_getattr +EXPORT_SYMBOL vmlinux 0xa6fc9d7d sys_fillrect EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa7147b06 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa72ccf8c md_done_sync +EXPORT_SYMBOL vmlinux 0xa72380e5 __vfs_removexattr EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa738e113 unregister_quota_format -EXPORT_SYMBOL vmlinux 0xa742afa5 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xa748a4f4 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xa74c21b0 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xa73aac46 d_tmpfile +EXPORT_SYMBOL vmlinux 0xa73bc965 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xa7411f67 module_put +EXPORT_SYMBOL vmlinux 0xa7419cae xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xa7453b5d security_sb_remount EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa753ab95 mr_table_dump -EXPORT_SYMBOL vmlinux 0xa772f36d fb_blank +EXPORT_SYMBOL vmlinux 0xa76243c1 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xa77845c3 pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa78785ba device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xa789b91c mdiobus_c45_read_nested EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 -EXPORT_SYMBOL vmlinux 0xa78b15fa sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa7982af2 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xa7a272af crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xa7aa07a9 d_set_d_op +EXPORT_SYMBOL vmlinux 0xa7acf43b jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xa7ba0cb7 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xa7c2263c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xa7cae7be bdi_unregister EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7d6609e pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xa7d6b6f5 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f3a25d tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xa804bc99 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0xa82d050d i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xa813f7d5 proc_set_size +EXPORT_SYMBOL vmlinux 0xa81ddb0e pci_write_config_word +EXPORT_SYMBOL vmlinux 0xa8256be5 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xa82bacc7 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xa831aec6 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa8395a47 pipe_lock +EXPORT_SYMBOL vmlinux 0xa8385623 consume_skb EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8467c1b truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0xa8497603 xfrm_input +EXPORT_SYMBOL vmlinux 0xa8470437 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xa847b388 bio_endio EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84cfab2 udp_sendmsg EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85cae9c alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xa85d31ff dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa873cdf4 md_write_start -EXPORT_SYMBOL vmlinux 0xa87d25e1 skb_splice_from_iter -EXPORT_SYMBOL vmlinux 0xa88f281b seq_open_private -EXPORT_SYMBOL vmlinux 0xa8923ab7 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xa874eae6 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xa87f60c4 input_setup_polling EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free -EXPORT_SYMBOL vmlinux 0xa898300d tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa8b31c28 dev_mc_add -EXPORT_SYMBOL vmlinux 0xa8c710aa jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xa8ae3840 sync_filesystem +EXPORT_SYMBOL vmlinux 0xa8bc3179 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xa8be3e94 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8ceedca revert_creds -EXPORT_SYMBOL vmlinux 0xa8d20643 __nlmsg_put EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa90922b9 vme_slave_request EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90e12b0 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xa91441c4 tcp_parse_options EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xa91e31aa devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xa922855a sync_filesystem -EXPORT_SYMBOL vmlinux 0xa9248cc3 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xa9386f95 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xa93fcc18 key_validate EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa94fe6e8 pci_find_capability EXPORT_SYMBOL vmlinux 0xa95e7993 clocksource_change_rating EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa973e158 tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa9a20dcc dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0xa9b08492 uart_match_port -EXPORT_SYMBOL vmlinux 0xa9c66dbe d_instantiate_new +EXPORT_SYMBOL vmlinux 0xa9807da3 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xa982cec8 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xa98e9595 kern_path_create +EXPORT_SYMBOL vmlinux 0xa9917976 fsync_bdev +EXPORT_SYMBOL vmlinux 0xa9ab57a7 page_symlink +EXPORT_SYMBOL vmlinux 0xa9b40cb4 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xa9bc5030 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xa9bd5dff rproc_remove_subdev EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9d97350 rproc_boot -EXPORT_SYMBOL vmlinux 0xa9dbf8e4 vma_alloc_folio -EXPORT_SYMBOL vmlinux 0xa9dc8209 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xa9f614fb filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xa9c9b6c0 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa9eac3d1 __dquot_free_space EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa010e83 phy_modify_paged -EXPORT_SYMBOL vmlinux 0xaa084032 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xaa0b6511 __inc_zone_page_state EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa212d04 rproc_set_firmware EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa46887a page_pool_release_page -EXPORT_SYMBOL vmlinux 0xaa46b3ed __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xaa62edc9 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xaa35fc59 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xaa3d2be6 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xaa3dc119 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xaa6ba1e0 vfs_getattr EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa7d7ff8 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xaa7d0331 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaaaeb9dd udp_seq_next +EXPORT_SYMBOL vmlinux 0xaaabff76 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xaab65ac3 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xaacf03c1 dma_fence_signal EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae26ba2 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xaae557d8 param_ops_bint EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf165ea dev_change_flags -EXPORT_SYMBOL vmlinux 0xaaf83609 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xaaee230d key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xaaf43ba3 pcim_iomap_table EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0b2734 gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0xab0ceb68 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0xab0e62bc aperture_remove_conflicting_pci_devices -EXPORT_SYMBOL vmlinux 0xab231c28 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab37ecd1 from_kprojid_munged EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab3b911a inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xab3bbae6 input_set_keycode -EXPORT_SYMBOL vmlinux 0xab44ab34 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xab4903db deactivate_super +EXPORT_SYMBOL vmlinux 0xab5c32f4 inode_maybe_inc_iversion EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab631866 pcie_get_mps EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6786ab path_get EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab6cb918 dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7e3aae fs_bio_set EXPORT_SYMBOL vmlinux 0xaba95ccf kobject_set_name -EXPORT_SYMBOL vmlinux 0xabd1b72b fsync_bdev -EXPORT_SYMBOL vmlinux 0xabd2ab22 nonseekable_open -EXPORT_SYMBOL vmlinux 0xabd4fa66 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xabf1d6da sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xabaf0083 posix_lock_file +EXPORT_SYMBOL vmlinux 0xabb604e7 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xabcf9f61 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xabd01d50 input_inject_event +EXPORT_SYMBOL vmlinux 0xabdf9880 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xabe19935 devfreq_update_status EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xabf53b48 rep_stos_alternative -EXPORT_SYMBOL vmlinux 0xabf7f267 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xac14f951 tcp_sendmsg EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac3150d1 netif_device_attach +EXPORT_SYMBOL vmlinux 0xac225585 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xac285aa5 bio_put EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac4195e5 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xac35a084 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xac45bb37 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xac50065f nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac546db0 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xac5b12b5 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xac5b39d8 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6a14b6 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xac6c3739 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xac6fa5ac kill_block_super -EXPORT_SYMBOL vmlinux 0xac76c906 phy_read_paged +EXPORT_SYMBOL vmlinux 0xac6fa452 dev_get_by_index EXPORT_SYMBOL vmlinux 0xac92dd7f config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xaca1a385 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0xaca1ccfb sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0xaca7a25a genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xac9e15b9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xaca57572 lookup_one_len EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb8ad78 __inet_hash +EXPORT_SYMBOL vmlinux 0xacc0c1a7 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xacd06c5b __remove_inode_hash EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacdae370 stream_open +EXPORT_SYMBOL vmlinux 0xacd89ca8 blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace248a4 get_vm_area +EXPORT_SYMBOL vmlinux 0xace7d15a devm_memremap EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print -EXPORT_SYMBOL vmlinux 0xaced179f param_ops_charp EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfb7860 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0xacfcdad5 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xacfe84c7 dentry_create +EXPORT_SYMBOL vmlinux 0xacf7353c neigh_resolve_output EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad33e279 dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0xad39ff69 inet_shutdown -EXPORT_SYMBOL vmlinux 0xad529717 pps_event +EXPORT_SYMBOL vmlinux 0xad210829 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xad2685ba netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad537953 filp_close EXPORT_SYMBOL vmlinux 0xad53a002 __x86_indirect_call_thunk_rbp +EXPORT_SYMBOL vmlinux 0xad63fabb vga_switcheroo_init_domain_pm_ops EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad73701d import_single_range -EXPORT_SYMBOL vmlinux 0xad749395 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0xad90bdd2 tcp_seq_start EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada137a3 seq_dentry EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xada9cabd key_payload_reserve +EXPORT_SYMBOL vmlinux 0xada8ef71 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xadab3452 _dev_err EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadbeaefe file_update_time EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc3ad42 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xadc50ee2 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd6b9dd generic_buffers_fsync -EXPORT_SYMBOL vmlinux 0xadda9977 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xade9c64b phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xadeb4d65 fput EXPORT_SYMBOL vmlinux 0xadf1c5a6 __serio_register_port -EXPORT_SYMBOL vmlinux 0xadfc9288 pci_find_resource +EXPORT_SYMBOL vmlinux 0xadf41877 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae0ad5b5 starget_for_each_device -EXPORT_SYMBOL vmlinux 0xae160578 pci_enable_wake -EXPORT_SYMBOL vmlinux 0xae17415d __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xae1bea06 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xae152536 nd_btt_probe EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae1e9ecb security_inode_init_security -EXPORT_SYMBOL vmlinux 0xae220642 vme_irq_free EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae352c43 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xae3efadb netif_skb_features -EXPORT_SYMBOL vmlinux 0xae598590 xp_alloc_batch EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae619641 tcf_em_register EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae66f1a9 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xae771470 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xae7bcdcc retire_super -EXPORT_SYMBOL vmlinux 0xae80071f tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xae8c140f pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xae8c4c38 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xae9df4e0 tcp_req_err EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeaea886 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeb1565b security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaebfa5cc forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xaeeac5e1 nd_device_notify +EXPORT_SYMBOL vmlinux 0xaed0a9c2 scsi_print_sense EXPORT_SYMBOL vmlinux 0xaeebc7d6 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xaef9e056 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xaf352559 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xaf066b11 inode_permission +EXPORT_SYMBOL vmlinux 0xaf0757cb uart_get_divisor +EXPORT_SYMBOL vmlinux 0xaf25ae1b dquot_transfer +EXPORT_SYMBOL vmlinux 0xaf2c73d6 __invalidate_device +EXPORT_SYMBOL vmlinux 0xaf33f63f vga_switcheroo_register_client EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf3a6357 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4131e2 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xaf55371b netdev_update_features -EXPORT_SYMBOL vmlinux 0xaf7a9cef pipe_unlock -EXPORT_SYMBOL vmlinux 0xaf8b15b7 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xaf910543 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0xaf91b1a9 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xaf50a5cb sock_wfree +EXPORT_SYMBOL vmlinux 0xaf6c8fd2 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xaf80644e i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xaf83fd37 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xaf9d1cbc configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xafa43a84 cdrom_release EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit -EXPORT_SYMBOL vmlinux 0xafac2786 sock_alloc EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafbc8de9 nd_pfn_validate EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc34388 skb_ext_add EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error -EXPORT_SYMBOL vmlinux 0xafcd0ac4 inet_bind +EXPORT_SYMBOL vmlinux 0xafc8f687 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xafd0a382 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xb0008592 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xb00201ec rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xb009b7bd sock_bindtoindex -EXPORT_SYMBOL vmlinux 0xb01197d2 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0xb015791b input_register_handler +EXPORT_SYMBOL vmlinux 0xafd8a47b request_firmware +EXPORT_SYMBOL vmlinux 0xafe8f04e migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xafe904e9 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xafe9b9a2 follow_down_one +EXPORT_SYMBOL vmlinux 0xafeb603a genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xaff5b511 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xaff9fc66 bio_split +EXPORT_SYMBOL vmlinux 0xaffc2305 __d_drop +EXPORT_SYMBOL vmlinux 0xb002c908 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xb0044ed8 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xb0108e48 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xb013649f param_get_ullong EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02ccf66 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb0443553 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xb047c1db input_register_device EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb04e55d5 sock_wfree -EXPORT_SYMBOL vmlinux 0xb0553335 scsi_partsize EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05f5f99 lease_get_mtime EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xb06be9a3 simple_release_fs -EXPORT_SYMBOL vmlinux 0xb094dacb dev_kfree_skb_any_reason -EXPORT_SYMBOL vmlinux 0xb0954cf0 tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0xb09ba850 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xb0678ba2 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xb06ba9bd inet6_release +EXPORT_SYMBOL vmlinux 0xb08e7075 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xb09cdaa2 blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0ae0feb mmc_can_trim +EXPORT_SYMBOL vmlinux 0xb0afa279 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xb0b273cd skb_vlan_pop EXPORT_SYMBOL vmlinux 0xb0b36471 dma_fence_array_create EXPORT_SYMBOL vmlinux 0xb0b76945 __x86_indirect_call_thunk_rsp -EXPORT_SYMBOL vmlinux 0xb0bda111 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xb0b857f1 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xb0bdc21f security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0ca1695 param_get_short +EXPORT_SYMBOL vmlinux 0xb0c8abb2 devm_memunmap EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0ef04c3 uart_register_driver -EXPORT_SYMBOL vmlinux 0xb0f4b8d6 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0xb0f8b0b5 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xb1011723 netdev_offload_xstats_push_delta -EXPORT_SYMBOL vmlinux 0xb10c6a54 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xb1104c3d crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xb0eaadd7 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xb10251bd nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xb107a41b rproc_add_carveout EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb132cc8c iterate_dir EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb136a2c9 generic_update_time +EXPORT_SYMBOL vmlinux 0xb1440369 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xb14410ac fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xb148ba62 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb15536a5 scsi_remove_host -EXPORT_SYMBOL vmlinux 0xb17ae8ad rfkill_alloc +EXPORT_SYMBOL vmlinux 0xb1600ea2 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xb18f132d twl6040_set_pll EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0xb19f2ddd devm_request_resource EXPORT_SYMBOL vmlinux 0xb1a3e221 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xb1c074b2 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xb1a9c17d put_disk EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1cb16bb tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xb1cc69f7 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xb1d538b0 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e3aae2 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xb1e5229f rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xb1ea27f0 ip6_output EXPORT_SYMBOL vmlinux 0xb1ef2d50 cred_fscmp -EXPORT_SYMBOL vmlinux 0xb1fbe79f __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xb212fbe7 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xb204c878 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xb2068647 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xb217b9c8 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xb21902b1 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb2291b20 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xb21a3e4b filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xb229ae92 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xb22b8b72 max8925_bulk_write EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb2324f26 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xb2338d81 __x86_indirect_thunk_rsp -EXPORT_SYMBOL vmlinux 0xb248512b ip_options_compile +EXPORT_SYMBOL vmlinux 0xb2445906 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb2632d3d ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xb27306a9 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xb277ea0e mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xb2872d61 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xb28a9d21 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xb28b2951 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0xb2a55326 lookup_one +EXPORT_SYMBOL vmlinux 0xb2738496 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xb27e0f63 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xb2a7989f mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0xb2a9cf10 neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0xb2aac638 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xb2aeb641 folio_unlock EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c7848a security_path_rename +EXPORT_SYMBOL vmlinux 0xb2cd8911 arp_create +EXPORT_SYMBOL vmlinux 0xb2d874c0 dump_skip EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb2ffb544 fb_validate_mode EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb3159377 napi_build_skb -EXPORT_SYMBOL vmlinux 0xb315eb3a jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xb3181b8b vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xb3199ddf pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb327485a __i2c_transfer EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit -EXPORT_SYMBOL vmlinux 0xb3584188 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xb34f17d2 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36b8653 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xb375ec03 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xb3820457 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xb383c518 md_write_inc +EXPORT_SYMBOL vmlinux 0xb373604d param_ops_invbool EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert -EXPORT_SYMBOL vmlinux 0xb3888555 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xb38cf34a inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xb3a23c27 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xb387a73d input_unregister_handle +EXPORT_SYMBOL vmlinux 0xb39d0226 __sk_dst_check EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic -EXPORT_SYMBOL vmlinux 0xb3a71b50 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xb3aa9831 may_setattr +EXPORT_SYMBOL vmlinux 0xb3aad450 udp_seq_start +EXPORT_SYMBOL vmlinux 0xb3b89dfa ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb3ca9e6f open_exec EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3e74ff4 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xb3ec87a6 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xb3e25ea4 remove_arg_zero EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb41a2365 generic_fadvise -EXPORT_SYMBOL vmlinux 0xb41e8e1f inet_add_offload +EXPORT_SYMBOL vmlinux 0xb40898a3 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xb414ca9e mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xb41ad153 sys_copyarea EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4496558 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xb43a13dd flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xb43dabe0 may_umount EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb45cfcd8 netdev_info -EXPORT_SYMBOL vmlinux 0xb46e5029 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xb475fdb7 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xb46d184d ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xb4767210 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb4827e7d mmc_erase +EXPORT_SYMBOL vmlinux 0xb48a9963 pci_scan_bus EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb48df033 pci_enable_ptm EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xb4b2f49b jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xb4c1c262 inet6_ioctl -EXPORT_SYMBOL vmlinux 0xb4db5b90 finish_no_open -EXPORT_SYMBOL vmlinux 0xb4dd9537 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xb4f65206 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0xb4a283e9 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xb4b0ee0c ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xb4bb9415 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xb4c037fd proc_create_single_data +EXPORT_SYMBOL vmlinux 0xb4c29ab6 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xb4c73d35 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0xb4f6d3b8 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xb53aded4 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xb5120753 file_ns_capable +EXPORT_SYMBOL vmlinux 0xb51b83dc send_sig_info +EXPORT_SYMBOL vmlinux 0xb51cc14b udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xb528da71 __mod_node_page_state EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb56d638f bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0xb570545a inc_nlink -EXPORT_SYMBOL vmlinux 0xb57b5777 keyring_clear -EXPORT_SYMBOL vmlinux 0xb5a0e62d xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xb550bc3f nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xb551ea4a devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xb57145e7 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xb57f4b5d secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xb5a01b9e __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xb5a05b66 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xb5a1b5e7 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a5c481 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xb5a6c23a __invalidate_device EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5b486df ppp_register_compressor EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5c56d57 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xb5c5a51a md_wakeup_thread -EXPORT_SYMBOL vmlinux 0xb5cfaec7 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xb5d4d718 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xb5bab4d6 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xb5dca59c blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xb5dd8998 security_path_unlink EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5eb6149 param_get_uint -EXPORT_SYMBOL vmlinux 0xb5f09abb skb_trim -EXPORT_SYMBOL vmlinux 0xb5f4ad42 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xb5f54435 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xb5fa3aad input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xb60f10dd tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb628d1aa twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xb6311dde fs_lookup_param EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63bc716 register_shrinker -EXPORT_SYMBOL vmlinux 0xb642e0e5 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0xb6470b8e eth_get_headlen -EXPORT_SYMBOL vmlinux 0xb648f7e6 iget_locked +EXPORT_SYMBOL vmlinux 0xb64570bb inet_stream_ops +EXPORT_SYMBOL vmlinux 0xb65277de rproc_detach EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb658500f ip6_output -EXPORT_SYMBOL vmlinux 0xb65e762f inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xb66ba77e kernel_accept -EXPORT_SYMBOL vmlinux 0xb66c6812 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb657b681 skb_eth_push EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67ae401 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0xb67bfb05 kill_anon_super +EXPORT_SYMBOL vmlinux 0xb6794b14 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6870b68 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69bd706 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xb6a2b6df vma_set_file EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6c3f20a generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xb6c916dd generic_file_mmap +EXPORT_SYMBOL vmlinux 0xb6ca909c __ip_options_compile EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6ce0fb6 pcie_capability_clear_and_set_word_unlocked -EXPORT_SYMBOL vmlinux 0xb6d9e8a6 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xb6d0eacb genphy_read_abilities EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6f3dbf9 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xb6eaeb02 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb7012540 d_invalidate -EXPORT_SYMBOL vmlinux 0xb709c2ec __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb729c5d1 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xb72e24e0 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xb734e45b mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xb7288e98 inode_set_bytes EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb7387f84 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xb743f0ae mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb74a3c0b release_sock +EXPORT_SYMBOL vmlinux 0xb74b4b47 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb7650b8e bio_add_page -EXPORT_SYMBOL vmlinux 0xb766a6de mdiobus_free EXPORT_SYMBOL vmlinux 0xb76a4e1f config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xb76c22b6 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xb77b25e3 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xb77fac5a netif_rx +EXPORT_SYMBOL vmlinux 0xb776ecf4 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xb77e467f nd_region_to_nstype EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb792eecb genlmsg_put -EXPORT_SYMBOL vmlinux 0xb79b86e6 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xb7a5e184 dquot_commit -EXPORT_SYMBOL vmlinux 0xb7a5e545 __folio_lock -EXPORT_SYMBOL vmlinux 0xb7adadb1 dcb_setapp +EXPORT_SYMBOL vmlinux 0xb7a7f0cb mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xb7b2f23a __mdiobus_write +EXPORT_SYMBOL vmlinux 0xb7bab056 netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c50ad1 phy_detach EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d74d5f make_kgid EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb80c2dc7 devm_arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xb812ef3b phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0xb8230622 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xb8231ec7 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xb82a8675 misc_deregister -EXPORT_SYMBOL vmlinux 0xb82fae77 folio_clear_dirty_for_io -EXPORT_SYMBOL vmlinux 0xb849763f posix_test_lock +EXPORT_SYMBOL vmlinux 0xb82d7bee rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xb83a387e get_fs_type +EXPORT_SYMBOL vmlinux 0xb8427172 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xb847c3df dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xb84dc9cc pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xb84ebf14 d_obtain_alias EXPORT_SYMBOL vmlinux 0xb862f7ea __x86_indirect_jump_thunk_rbx EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb8696482 shmem_aops +EXPORT_SYMBOL vmlinux 0xb86cc258 vga_switcheroo_unlock_ddc EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb87b9a6f kthread_bind -EXPORT_SYMBOL vmlinux 0xb88bc02f security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0xb8946832 mdio_device_create +EXPORT_SYMBOL vmlinux 0xb8729b04 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xb87536ca passthru_features_check +EXPORT_SYMBOL vmlinux 0xb893a30f i2c_del_driver +EXPORT_SYMBOL vmlinux 0xb89405f1 param_ops_byte EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a46ef0 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xb89e2ff9 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xb8a95613 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8c4f14a __free_pages -EXPORT_SYMBOL vmlinux 0xb8c7ee90 neigh_update +EXPORT_SYMBOL vmlinux 0xb8bcf9c0 rtc_add_groups EXPORT_SYMBOL vmlinux 0xb8d03239 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xb8d3e0a6 mntput EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8e8de34 tty_lock -EXPORT_SYMBOL vmlinux 0xb8f2bee9 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xb9032378 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb8ea1457 generic_fadvise +EXPORT_SYMBOL vmlinux 0xb8ff3aa3 rw_verify_area EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb914817a sock_set_keepalive EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb92d5e3a ip_defrag EXPORT_SYMBOL vmlinux 0xb942e991 config_group_find_item EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb944dac6 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb947e1bf iov_iter_init +EXPORT_SYMBOL vmlinux 0xb9494d3a folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9777fe9 pci_bus_type +EXPORT_SYMBOL vmlinux 0xb977cf86 agp_alloc_bridge EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler EXPORT_SYMBOL vmlinux 0xb9825984 __klp_sched_try_switch EXPORT_SYMBOL vmlinux 0xb990454f devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0xb99d3b28 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xb9a09ddd __x86_indirect_jump_thunk_rcx -EXPORT_SYMBOL vmlinux 0xb9a9c9a5 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xb9ac0795 find_vma +EXPORT_SYMBOL vmlinux 0xb9a2dc6f mapping_read_folio_gfp EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9d9a7a8 __break_lease +EXPORT_SYMBOL vmlinux 0xb9b2685b tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb9c258b2 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xb9c557cd sock_no_bind EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9eae72d t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xb9f726a6 tso_build_data EXPORT_SYMBOL vmlinux 0xba00daa2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0xba015c94 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xba0b6c85 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xba0ed5e9 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xba0c9b68 dquot_get_state EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba22446d pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xba241f6d tty_kref_put EXPORT_SYMBOL vmlinux 0xba2449b3 __x86_indirect_jump_thunk_rax +EXPORT_SYMBOL vmlinux 0xba275a37 param_get_ulong +EXPORT_SYMBOL vmlinux 0xba2e3d08 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xba4094f9 dev_load EXPORT_SYMBOL vmlinux 0xba46f36b pnp_device_detach EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4cc4ce genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xba5ad839 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xba6ee32d folio_end_writeback -EXPORT_SYMBOL vmlinux 0xba8cbdb6 readahead_expand +EXPORT_SYMBOL vmlinux 0xba558bbd param_get_ushort +EXPORT_SYMBOL vmlinux 0xba637b5a genphy_c45_eee_is_active +EXPORT_SYMBOL vmlinux 0xba6a27f5 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xba79dab7 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xba7c6728 sk_common_release EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba98ce8d jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xba9bd54c pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xbaa9ae81 handshake_req_submit EXPORT_SYMBOL vmlinux 0xbaae76f4 padata_alloc -EXPORT_SYMBOL vmlinux 0xbac1e1f2 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xbac84dee __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xbab33d63 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xbab913bd netlink_kernel_release EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbacb22e7 kill_pid -EXPORT_SYMBOL vmlinux 0xbad726ca register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xbae26772 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xbaee72f3 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xbaf20822 phy_get_pause +EXPORT_SYMBOL vmlinux 0xbacc0aaf skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xbae94849 netdev_notice +EXPORT_SYMBOL vmlinux 0xbaf1a3a7 skb_orphan_partial EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbafdd3a5 km_state_notify +EXPORT_SYMBOL vmlinux 0xbb03af99 uart_get_baud_rate EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0df367 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xbb09da2d mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger -EXPORT_SYMBOL vmlinux 0xbb1c8cae cdev_add EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb328aec genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xbb3ae971 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5410d1 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xbb8341f6 kern_unmount_array -EXPORT_SYMBOL vmlinux 0xbb8409df devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xbb4f7785 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xbb69bee8 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xbb6cc809 kill_anon_super +EXPORT_SYMBOL vmlinux 0xbb72327c vme_bus_error_handler EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbb9637ec pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xbb97dbfc dump_skip -EXPORT_SYMBOL vmlinux 0xbb9e9f22 kern_path_create +EXPORT_SYMBOL vmlinux 0xbb9df286 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbb9f815 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xbbd9fd25 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xbbba74d8 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xbbd6b7ca i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0xbbda18c4 dma_fence_free -EXPORT_SYMBOL vmlinux 0xbbdc4462 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xbbfbe4d8 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbbf1ded2 scsi_is_target_device EXPORT_SYMBOL vmlinux 0xbc1ce21d __serio_register_driver EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc27cd90 xp_alloc -EXPORT_SYMBOL vmlinux 0xbc3c6eb3 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xbc3dfbf1 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xbc51c72f dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xbc711b04 vme_register_driver +EXPORT_SYMBOL vmlinux 0xbc2c8a2d inet_recvmsg +EXPORT_SYMBOL vmlinux 0xbc2e5e2d ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xbc44d299 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xbc62f4dc sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbc6f59d0 km_report EXPORT_SYMBOL vmlinux 0xbc97929e serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xbc9fd457 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xbca285ce file_remove_privs -EXPORT_SYMBOL vmlinux 0xbca3b476 devfreq_update_status EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key -EXPORT_SYMBOL vmlinux 0xbcbc7571 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xbcc7abd1 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xbcebd59b dquot_acquire +EXPORT_SYMBOL vmlinux 0xbcbca539 generic_fillattr +EXPORT_SYMBOL vmlinux 0xbcda6cbe no_seek_end_llseek EXPORT_SYMBOL vmlinux 0xbcef8b58 __x86_indirect_jump_thunk_rdx -EXPORT_SYMBOL vmlinux 0xbd02b9b8 dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0xbd0def94 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xbd0e995c console_stop +EXPORT_SYMBOL vmlinux 0xbd0ddf87 rt_dst_alloc EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd3c9111 dquot_resume EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd4e3947 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xbd59795d mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xbd607a5b nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xbd638e0f pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xbd473907 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd7bbddd fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xbd839325 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xbd866c36 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbd6fb1d3 generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xbd882165 __do_once_sleepable_done -EXPORT_SYMBOL vmlinux 0xbda0247b md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xbdaaef0a bio_add_folio -EXPORT_SYMBOL vmlinux 0xbdafb982 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0xbdc1b752 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xbdee3a2e amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0xbd92111f i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xbd9b9e6e dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xbda291f6 netdev_update_features +EXPORT_SYMBOL vmlinux 0xbdab5fc3 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xbdcbf61b get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xbddad247 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xbde8556d kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xbdf96d6b blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe11ea16 key_revoke EXPORT_SYMBOL vmlinux 0xbe144437 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xbe150415 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xbe242e48 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xbe25ee9e skb_queue_head -EXPORT_SYMBOL vmlinux 0xbe3f1122 dcache_dir_open -EXPORT_SYMBOL vmlinux 0xbe408105 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xbe200793 netdev_err +EXPORT_SYMBOL vmlinux 0xbe212cbd rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5024a1 unregister_netdev EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5afad8 pci_release_regions EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe6b7ef4 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xbe7c7b47 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xbe78acf8 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xbe8ea743 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xbe9b3268 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xbeaad30b xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xbead7fdc __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xbedf941a nf_setsockopt -EXPORT_SYMBOL vmlinux 0xbee37447 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xbee61c6d __netif_napi_del +EXPORT_SYMBOL vmlinux 0xbebe58b7 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xbec1ca76 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xbece6cfb __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xbed80d9e pv_ops EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf05cea6 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xbf088714 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xbf0a6fe2 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xbf2e84f5 kernel_read +EXPORT_SYMBOL vmlinux 0xbf2fe30b generic_key_instantiate EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf32204a rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xbf4895aa mmc_add_host +EXPORT_SYMBOL vmlinux 0xbf48d0e6 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf6d9bb6 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xbf6fbb7f folio_create_empty_buffers -EXPORT_SYMBOL vmlinux 0xbf8c04b8 agp_bridge -EXPORT_SYMBOL vmlinux 0xbfa1b46b pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xbf6c2154 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xbf7194f1 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xbf855008 twl6040_reg_read EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate -EXPORT_SYMBOL vmlinux 0xbfb6125f gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xbfb320d4 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xbfb4d7dc ip4_datagram_connect EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfde5c52 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xbfebbfb9 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xbff62d3f vfs_getattr -EXPORT_SYMBOL vmlinux 0xbffd58d8 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xbfff4034 d_genocide -EXPORT_SYMBOL vmlinux 0xc008f58c tty_port_open -EXPORT_SYMBOL vmlinux 0xc009318a iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xc02d0ed4 update_devfreq +EXPORT_SYMBOL vmlinux 0xbfc608e7 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xbfcc1e8c phy_config_aneg +EXPORT_SYMBOL vmlinux 0xbfcd4c53 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xbfe9ca89 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xbfeddaf3 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc049690b d_add_ci -EXPORT_SYMBOL vmlinux 0xc05e2e50 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xc0366381 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xc0374f0a dst_init +EXPORT_SYMBOL vmlinux 0xc03d4987 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc050d8e1 ip_local_deliver +EXPORT_SYMBOL vmlinux 0xc053390d set_pages_array_wc EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get EXPORT_SYMBOL vmlinux 0xc07351b3 __SCT__cond_resched -EXPORT_SYMBOL vmlinux 0xc0750de6 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0820c6e rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xc09b2bdf ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xc09c6b4a vlan_vid_add -EXPORT_SYMBOL vmlinux 0xc0a39ad0 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xc0a47f12 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xc0c689e8 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xc0e96b6f xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xc0fda57e kernel_read +EXPORT_SYMBOL vmlinux 0xc07c7a62 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xc0a24189 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc0a34343 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0xc0a86095 dm_io +EXPORT_SYMBOL vmlinux 0xc0fa722f __folio_alloc EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1073c79 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xc1105d60 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc12ca457 ps2_command +EXPORT_SYMBOL vmlinux 0xc1216ee4 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0xc14058a2 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xc14cfbc4 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc14e5c63 zap_page_range_single EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc15ab922 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0xc1664342 sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc182d86d netdev_get_by_name -EXPORT_SYMBOL vmlinux 0xc194d409 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xc179984e vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xc17fe3b4 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xc19713e9 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xc1b84db1 ilookup5 EXPORT_SYMBOL vmlinux 0xc1cb419c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xc1cce561 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xc1d3b8ca mount_subtree EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e09611 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xc1e937f9 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xc1df8b4e ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xc1e63baa md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xc1f90dbf tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0xc1f9a4f5 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xc21f6f36 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xc226f097 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xc1fa0bb6 zap_page_range_single +EXPORT_SYMBOL vmlinux 0xc2002654 inode_dio_wait EXPORT_SYMBOL vmlinux 0xc22e1f22 crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc2310473 phy_suspend +EXPORT_SYMBOL vmlinux 0xc240f5d2 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc2506164 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0xc251219e xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xc2666a8d inet_register_protosw EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc28e9e20 cdev_init -EXPORT_SYMBOL vmlinux 0xc28f83a0 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xc27b61ea of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xc29346f7 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xc29b8d46 pci_find_next_bus EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a54bf7 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xc2c61eda kern_unmount_array EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xc2d4f973 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xc2e36345 register_fib_notifier EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2fe2bed __kfree_skb EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc31db3dc pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xc32ab44d t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33f3abb md_error -EXPORT_SYMBOL vmlinux 0xc3446d9c ihold -EXPORT_SYMBOL vmlinux 0xc34f41a9 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xc3345c03 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xc3429269 __breadahead +EXPORT_SYMBOL vmlinux 0xc3523a08 processors EXPORT_SYMBOL vmlinux 0xc3570a28 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc35c8140 param_get_invbool -EXPORT_SYMBOL vmlinux 0xc365b6cc scsi_done_direct +EXPORT_SYMBOL vmlinux 0xc36d5113 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xc374bad7 input_event EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc3840d74 dma_set_mask EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc390c815 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc39a1cac blk_mq_end_request EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 -EXPORT_SYMBOL vmlinux 0xc3ab4f92 gro_cells_receive EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3bfed0d fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0xc3c71c5a bio_split -EXPORT_SYMBOL vmlinux 0xc3cd7404 scsi_host_put -EXPORT_SYMBOL vmlinux 0xc3cf33fd kernel_tmpfile_open -EXPORT_SYMBOL vmlinux 0xc3d9f014 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xc3db8ee3 handshake_req_private -EXPORT_SYMBOL vmlinux 0xc3ed1fed ppp_unit_number -EXPORT_SYMBOL vmlinux 0xc3f65f32 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xc3c87330 dquot_acquire EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc40edac7 skb_pull EXPORT_SYMBOL vmlinux 0xc41368ed config_item_put -EXPORT_SYMBOL vmlinux 0xc415e259 discard_new_inode +EXPORT_SYMBOL vmlinux 0xc41e2005 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc42d6baf phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xc427c535 dev_add_offload +EXPORT_SYMBOL vmlinux 0xc42b4a82 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xc42c4cdc md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc42fc4b7 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xc43cfc0a pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0xc44340e2 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xc44593ca __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xc4474d12 eth_header -EXPORT_SYMBOL vmlinux 0xc447e797 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xc4333c71 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xc435f38b flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xc448c1bf __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc44b99d1 netdev_printk EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc465f2e1 ppp_input_error -EXPORT_SYMBOL vmlinux 0xc468470c pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xc46959f2 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xc45f1187 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xc46fd367 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xc47415bb shmem_aops EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4846aff dev_driver_string -EXPORT_SYMBOL vmlinux 0xc496d705 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xc4aba696 tty_vhangup EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4b8c78a flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xc4c56b30 registered_fb -EXPORT_SYMBOL vmlinux 0xc4c86fce locks_init_lock -EXPORT_SYMBOL vmlinux 0xc4d81740 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xc4f10f22 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xc4fbd107 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xc4be2a1d fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xc4e394e1 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xc4eb10a5 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xc5007701 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xc5041f85 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xc5126418 kthread_bind EXPORT_SYMBOL vmlinux 0xc515f1cd __x86_indirect_jump_thunk_r13 -EXPORT_SYMBOL vmlinux 0xc52590e2 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc53726a4 param_set_bint -EXPORT_SYMBOL vmlinux 0xc549e060 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xc54e5e1e mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xc5537fe1 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xc557819a tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc52c55e2 i2c_get_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0xc546867f seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xc558530d profile_pc -EXPORT_SYMBOL vmlinux 0xc558928b tcf_block_get_ext EXPORT_SYMBOL vmlinux 0xc558f288 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xc559c77b scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xc55f4cde scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xc568ea14 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xc5606c1d pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xc562dfe6 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xc5662b8e elv_rb_find +EXPORT_SYMBOL vmlinux 0xc56b9e94 scsi_remove_device EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset -EXPORT_SYMBOL vmlinux 0xc576331a genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xc57b67ed amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xc56db3df xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc5769ec2 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc598fc53 bio_add_folio EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a7b4f7 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xc5ad88af input_allocate_device EXPORT_SYMBOL vmlinux 0xc5addbc0 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xc5b2a7b4 param_get_bool EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5d2f244 mmc_remove_host -EXPORT_SYMBOL vmlinux 0xc5d41b57 ethtool_notify +EXPORT_SYMBOL vmlinux 0xc5b9232b proc_mkdir +EXPORT_SYMBOL vmlinux 0xc5bf8b61 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5ddd597 request_key_rcu +EXPORT_SYMBOL vmlinux 0xc5e122f5 try_module_get +EXPORT_SYMBOL vmlinux 0xc5e3ad8c flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ff9873 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xc5ea60eb inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xc5eb9a9c backlight_force_update +EXPORT_SYMBOL vmlinux 0xc5f282ad agp_generic_mask_memory EXPORT_SYMBOL vmlinux 0xc6072b6f padata_set_cpumask EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc615c402 logfc EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc62d4c50 sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6319b1b tso_build_data EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc636772c udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xc6450321 _dev_alert -EXPORT_SYMBOL vmlinux 0xc6569f81 give_up_console -EXPORT_SYMBOL vmlinux 0xc65bb467 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xc6363a07 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xc63e3f47 pci_biosrom_size EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6665287 fd_install EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc6732def inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0xc678078b ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xc680c862 netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0xc68255c1 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xc672c85c pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xc684bbba __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc6a3ab5a __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xc6ac0cbe __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xc6aea6a7 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xc6c1c8a7 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc6a2f4c0 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xc6c4128a param_get_uint EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6f399f0 seq_open EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc70895cb i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7132ebc sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xc70a1d9a inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xc70d4930 bio_alloc_clone EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72acc5b netpoll_print_options -EXPORT_SYMBOL vmlinux 0xc72cbbfc pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xc72dd10b udp_set_csum -EXPORT_SYMBOL vmlinux 0xc762c2bc n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xc76c0de4 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xc77b3521 dev_close +EXPORT_SYMBOL vmlinux 0xc7237296 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xc7357642 proto_register +EXPORT_SYMBOL vmlinux 0xc73a7115 vme_bus_num EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc781e6a1 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xc78445f0 __put_devmap_managed_page_refs EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78ae64a vfs_unlink +EXPORT_SYMBOL vmlinux 0xc78cf251 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xc78d53bb netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xc7941829 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc796f375 ppp_register_channel EXPORT_SYMBOL vmlinux 0xc7975de0 trace_seq_acquire EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7b88c6b proc_create_single_data -EXPORT_SYMBOL vmlinux 0xc7bf6534 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xc7b56d98 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xc7b57325 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc7c0861c genphy_aneg_done EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7edfde3 dev_trans_start -EXPORT_SYMBOL vmlinux 0xc7fc64d5 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xc7fefbe9 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xc7d0250b mdiobus_read +EXPORT_SYMBOL vmlinux 0xc7dfa0f3 fb_class +EXPORT_SYMBOL vmlinux 0xc7e5508d ip_frag_init +EXPORT_SYMBOL vmlinux 0xc7fac4c3 vfs_path_parent_lookup EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80f23d8 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xc812c55f ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xc816deff mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xc82a6683 filemap_get_folios -EXPORT_SYMBOL vmlinux 0xc82c2e40 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc83fe5c1 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xc840a33e would_dump -EXPORT_SYMBOL vmlinux 0xc8423f2d ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xc83f79cd blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xc8404474 dup_iter EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84ce4c4 redraw_screen +EXPORT_SYMBOL vmlinux 0xc84f6e33 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xc856ae2e dns_query -EXPORT_SYMBOL vmlinux 0xc8575721 key_put +EXPORT_SYMBOL vmlinux 0xc85b301a unregister_cdrom EXPORT_SYMBOL vmlinux 0xc85b3c46 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xc8609e6d jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xc85e38b8 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xc85f8d69 km_query +EXPORT_SYMBOL vmlinux 0xc86844f0 fb_pgprotect +EXPORT_SYMBOL vmlinux 0xc869fd46 tty_port_tty_get EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8811a2e pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88310c0 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xc8858b0a peernet2id -EXPORT_SYMBOL vmlinux 0xc88df2e3 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc8a0e9f9 fb_set_suspend -EXPORT_SYMBOL vmlinux 0xc8a5956e drop_nlink +EXPORT_SYMBOL vmlinux 0xc892f67a set_bh_page +EXPORT_SYMBOL vmlinux 0xc8a74ed6 scsi_is_host_device EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b3c97e d_delete +EXPORT_SYMBOL vmlinux 0xc8b8ec00 __neigh_create +EXPORT_SYMBOL vmlinux 0xc8c5d25f phy_get_pause EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table EXPORT_SYMBOL vmlinux 0xc8cbf751 tlbstate_untag_mask -EXPORT_SYMBOL vmlinux 0xc8cde4a9 mmc_command_done EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e1ef43 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xc8e521bf scsi_host_busy -EXPORT_SYMBOL vmlinux 0xc8ea5b68 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xc9237513 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc8dedc82 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xc9071450 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xc91b05f3 iunique +EXPORT_SYMBOL vmlinux 0xc92a4a77 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94544e4 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xc952cc79 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0xc954564a set_capacity +EXPORT_SYMBOL vmlinux 0xc94ae0ac dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc94ccb24 kernel_write EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc965ff81 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xc96c8e1a security_path_unlink +EXPORT_SYMBOL vmlinux 0xc9664dce fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xc96adebc sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc972c98f netdev_features_change -EXPORT_SYMBOL vmlinux 0xc97501db sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xc97ce31b devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xc97f13e0 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xc97ef841 tcf_idr_release EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc98345d7 genphy_c45_eee_is_active EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a2d163 seq_putc -EXPORT_SYMBOL vmlinux 0xc9a6ea2a security_d_instantiate -EXPORT_SYMBOL vmlinux 0xc9d1f71b mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xc9d38f0e block_write_full_page EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9ecfabd netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0xc9f01dd4 bio_split_to_limits EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca17031d tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca30e36b xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xca32ed9a phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xca3aa584 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xca346b44 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xca380df5 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xca3ece2e inode_nohighmem EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca667376 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xca716b7f page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xca8d5d1b I_BDEV +EXPORT_SYMBOL vmlinux 0xca48196c devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xca4a8907 mount_bdev +EXPORT_SYMBOL vmlinux 0xca4fd901 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xca5444fe param_set_charp +EXPORT_SYMBOL vmlinux 0xca77fdec input_mt_drop_unused EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca963954 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcab98348 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xcac0728a i2c_find_device_by_fwnode -EXPORT_SYMBOL vmlinux 0xcacdb8e2 add_watch_to_object -EXPORT_SYMBOL vmlinux 0xcad03d18 generic_setlease +EXPORT_SYMBOL vmlinux 0xcacc27c5 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcaf1a5d3 folio_add_lru -EXPORT_SYMBOL vmlinux 0xcb024b1d sk_capable EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb03f8f5 locks_delete_block -EXPORT_SYMBOL vmlinux 0xcb164699 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xcb291059 blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0xcb2ec291 dev_get_stats +EXPORT_SYMBOL vmlinux 0xcb26c179 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb483ec4 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xcb54279a blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xcb615226 wireless_send_event -EXPORT_SYMBOL vmlinux 0xcb6b69f5 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xcb616878 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xcb679674 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xcb67fb10 udp_seq_next EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb85a875 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xcb971575 netdev_get_by_index -EXPORT_SYMBOL vmlinux 0xcb9fa161 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xcbb13d6d pci_enable_msi -EXPORT_SYMBOL vmlinux 0xcbb16ef0 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xcb789e14 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0xcbbdc457 mfd_add_devices EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc3181f ether_setup -EXPORT_SYMBOL vmlinux 0xcbcb36e1 invalidate_disk -EXPORT_SYMBOL vmlinux 0xcbcb8899 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd96fa6 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xcbe2679b module_refcount -EXPORT_SYMBOL vmlinux 0xcbea8516 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xcbec7bc9 pci_iomap -EXPORT_SYMBOL vmlinux 0xcbee7b77 inet6_protos +EXPORT_SYMBOL vmlinux 0xcbdca218 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xcbe5ae18 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xcbf9ff3b mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc124e14 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xcc00fb4e vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xcc071467 tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0xcc0cde44 sk_free EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc23b229 input_register_handler EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc309af9 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xcc2c10a8 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc340603 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup -EXPORT_SYMBOL vmlinux 0xcc3e591a __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0xcc4afcfd mdiobus_c45_write EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc57e34f __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xcc55c43b vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xcc563247 dev_get_flags EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc638fac uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xcc71a853 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xcc7e426d max8925_set_bits -EXPORT_SYMBOL vmlinux 0xcc8595e7 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xcc5ea8be would_dump +EXPORT_SYMBOL vmlinux 0xcc66ed05 fwnode_iomap +EXPORT_SYMBOL vmlinux 0xcc71fcc6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xcc7ff810 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xcca40ebf fs_param_is_fd EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcca918c6 input_set_poll_interval EXPORT_SYMBOL vmlinux 0xccaf994e dma_fence_set_deadline -EXPORT_SYMBOL vmlinux 0xccb1c7a3 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xccb37f75 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xccb80e40 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xccc8919e proc_mkdir -EXPORT_SYMBOL vmlinux 0xccd37b29 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xccdac571 dma_resv_fini -EXPORT_SYMBOL vmlinux 0xccf80156 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xccbbfb0a find_vma +EXPORT_SYMBOL vmlinux 0xccbd7f6c agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xccc63c73 set_page_writeback +EXPORT_SYMBOL vmlinux 0xccd0b76f noop_qdisc +EXPORT_SYMBOL vmlinux 0xccd75b21 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xccd9cf74 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xccf1cce5 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xccfe88b0 file_modified -EXPORT_SYMBOL vmlinux 0xcd002472 xp_free EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd1c5ff6 blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2df0c0 rt6_lookup -EXPORT_SYMBOL vmlinux 0xcd7c0cf4 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xcd333a98 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xcd3a8872 phy_device_remove +EXPORT_SYMBOL vmlinux 0xcd48eda8 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xcd4bbb30 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xcd5a3eeb xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcd60eddf path_has_submounts +EXPORT_SYMBOL vmlinux 0xcd6cf986 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xcd7836f7 skb_dequeue +EXPORT_SYMBOL vmlinux 0xcd87235a vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xcd89bb72 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd8eaafa pmem_sector_size EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xcda74f81 kernel_connect +EXPORT_SYMBOL vmlinux 0xcd9e9307 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xcdba9b7c acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc62227 page_pool_destroy EXPORT_SYMBOL vmlinux 0xcdcb212f legacy_pic -EXPORT_SYMBOL vmlinux 0xcde5cc8c rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xcddfe863 cad_pid +EXPORT_SYMBOL vmlinux 0xcde0f558 phy_connect EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdea6ac0 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xce161402 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xcde886a6 __bio_advance +EXPORT_SYMBOL vmlinux 0xcde92c99 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xcdf58727 mntget +EXPORT_SYMBOL vmlinux 0xce0ae935 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xce1aa337 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce4640a4 set_trace_device -EXPORT_SYMBOL vmlinux 0xce479ce3 dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0xce4a6761 node_data +EXPORT_SYMBOL vmlinux 0xce3ada28 dev_kfree_skb_irq_reason +EXPORT_SYMBOL vmlinux 0xce3e850a tty_port_init +EXPORT_SYMBOL vmlinux 0xce40074b rproc_boot EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce521dde tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0xce587f77 nf_log_register +EXPORT_SYMBOL vmlinux 0xce5596fe inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce620002 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xce638561 bpf_link_put EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy -EXPORT_SYMBOL vmlinux 0xce75e23f md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xce76b6a4 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xce74bb86 __netif_napi_del EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce846479 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xce989d10 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xce81461e dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xce8f3141 inode_set_flags +EXPORT_SYMBOL vmlinux 0xcea0b5ed amd_iommu_flush_page EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu -EXPORT_SYMBOL vmlinux 0xcea60a7a genl_unregister_family EXPORT_SYMBOL vmlinux 0xcea8ae2b devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xcea9c49f pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xceaa7db6 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb799ab pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xcec3a2d1 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xced03256 __put_user_ns EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xceeafde1 bdi_register -EXPORT_SYMBOL vmlinux 0xceec51bd mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xcef8c6d9 vga_switcheroo_unregister_client EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf180765 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xcf1ab957 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xcf1c3ad4 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0xcf29049a free_netdev +EXPORT_SYMBOL vmlinux 0xcefe1966 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xcf060e38 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xcf259793 inode_add_bytes EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2c647a flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xcf3a26c1 get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf4f20ba register_qdisc +EXPORT_SYMBOL vmlinux 0xcf490ca4 blk_execute_rq EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf79adee __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xcf5712a7 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xcf6d47e5 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xcf7aa2c0 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xcf7c4eb7 mmc_put_card +EXPORT_SYMBOL vmlinux 0xcf94649d pci_enable_msix_range EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa368d5 tls_server_hello_psk -EXPORT_SYMBOL vmlinux 0xcfc8e8ef filemap_flush +EXPORT_SYMBOL vmlinux 0xcfa2cf4e scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcfba90e4 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xcfc0a6c7 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd733de locks_free_lock EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfdb58d3 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xcff8873f seq_vprintf -EXPORT_SYMBOL vmlinux 0xd00406a1 proto_register -EXPORT_SYMBOL vmlinux 0xd02c582c nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xcfde8d2a netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0xcfe6a182 md_write_end +EXPORT_SYMBOL vmlinux 0xd01212d6 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xd0386691 inode_to_bdi +EXPORT_SYMBOL vmlinux 0xd045fed4 pci_pme_active EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05d5e19 cdev_device_add EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd07477d5 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xd068e6b0 pci_get_class EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07da65f devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xd07ab029 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xd088b2fa d_find_any_alias EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd0934931 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xd0a3f8ac blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xd0a731f3 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xd08ca956 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xd08dc5e1 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xd0a1d0a0 inet_listen EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0c7ddac __folio_put +EXPORT_SYMBOL vmlinux 0xd0c11883 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xd0d7072f folio_account_redirty EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0xd0fc80ab __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd0f96ac1 generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd115b12d tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xd11e64ce param_array_ops -EXPORT_SYMBOL vmlinux 0xd131a1dc put_disk -EXPORT_SYMBOL vmlinux 0xd1325f23 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xd124704e copy_string_kernel EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd13822ad tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xd156d3be netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xd156f9ed mmc_release_host +EXPORT_SYMBOL vmlinux 0xd1438b4b ptp_find_pin +EXPORT_SYMBOL vmlinux 0xd1509b4b fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xd156f12c scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xd15edc27 dst_release_immediate EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1a44070 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xd1ae4774 locks_copy_lock -EXPORT_SYMBOL vmlinux 0xd1b925c2 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xd1ce8b0d cad_pid -EXPORT_SYMBOL vmlinux 0xd1ceadc2 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xd1cf3476 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xd1997188 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xd19aca6e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xd1a59a7b ps2_drain +EXPORT_SYMBOL vmlinux 0xd1a8645f mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xd1abf905 phy_init_hw +EXPORT_SYMBOL vmlinux 0xd1b143d9 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xd1b161d8 security_inode_init_security EXPORT_SYMBOL vmlinux 0xd1d6e0b7 boot_cpu_data EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings -EXPORT_SYMBOL vmlinux 0xd20469e1 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd200264a nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xd20987ff tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0xd2196d49 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd219c109 crypto_sha256_update EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd2205756 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xd223305a mount_subtree EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd22679b0 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xd22d53b1 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xd23320a6 dump_page EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked -EXPORT_SYMBOL vmlinux 0xd24c22c1 __post_watch_notification -EXPORT_SYMBOL vmlinux 0xd24c7eda ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd24b5e5e jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xd25b5a3a __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd26d5b05 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xd25f1dbe skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xd2731d31 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xd274c82f devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xd2755cdc jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27fcd60 qdisc_hash_del EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd28dfd59 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xd2998ca5 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xd2a93da3 single_release +EXPORT_SYMBOL vmlinux 0xd2b31c80 _dev_emerg EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 -EXPORT_SYMBOL vmlinux 0xd2bdc551 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xd2d123df migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xd2bcdf15 fb_blank +EXPORT_SYMBOL vmlinux 0xd2beffa0 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2e901ba serio_interrupt EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep EXPORT_SYMBOL vmlinux 0xd2fd88e1 crypto_sha3_update -EXPORT_SYMBOL vmlinux 0xd2ff486d dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0xd30746dc ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xd3114e1f kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xd31deb84 sk_stream_error -EXPORT_SYMBOL vmlinux 0xd32272da skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xd32f9230 neigh_destroy +EXPORT_SYMBOL vmlinux 0xd302e475 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xd30efbc8 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xd3104ec5 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xd31efa62 vme_init_bridge +EXPORT_SYMBOL vmlinux 0xd31f5f8d find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xd32146e4 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xd32ee215 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd34094d6 skb_store_bits -EXPORT_SYMBOL vmlinux 0xd341b2b6 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xd33c0ae4 inet_del_offload +EXPORT_SYMBOL vmlinux 0xd3484767 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xd3489920 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xd34fcfa7 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35bed4e netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd361977f tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xd36bcb5d dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xd35f5329 cont_write_begin +EXPORT_SYMBOL vmlinux 0xd360443f __bh_read +EXPORT_SYMBOL vmlinux 0xd3611730 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd36ae7a8 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3778d52 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xd3784caa cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xd3813ef0 platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd39f9541 inode_dio_wait -EXPORT_SYMBOL vmlinux 0xd3b6f03c tcp_ioctl -EXPORT_SYMBOL vmlinux 0xd3dd1b0d tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xd390fab2 set_cached_acl +EXPORT_SYMBOL vmlinux 0xd3926678 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xd394a4b0 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xd3a0e2ff ps2_end_command +EXPORT_SYMBOL vmlinux 0xd3a89222 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xd3a90d80 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xd3b22d31 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xd3b4e2c5 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd3b6c605 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xd3c4e2ea inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xd3d4603e tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0xd3dd455c pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xd404f2e5 free_inode_nonrcu EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd410a3b0 ipv4_dst_check -EXPORT_SYMBOL vmlinux 0xd415ca97 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd446255d scsi_is_target_device -EXPORT_SYMBOL vmlinux 0xd44709ce udp_sendmsg -EXPORT_SYMBOL vmlinux 0xd44afd30 pci_select_bars -EXPORT_SYMBOL vmlinux 0xd44b5de1 vme_master_request +EXPORT_SYMBOL vmlinux 0xd40ea0df remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xd4235921 param_set_bint +EXPORT_SYMBOL vmlinux 0xd456ead2 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xd4573fcf mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd476529e tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xd47a18cc clear_inode +EXPORT_SYMBOL vmlinux 0xd4789cb1 proc_create_mount_point EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4935a5d param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xd48a2c1b sg_miter_start +EXPORT_SYMBOL vmlinux 0xd49f23b8 tty_port_close_start EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c21940 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xd4c9725e md_finish_reshape EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d1a544 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xd4df2269 tcf_idr_search -EXPORT_SYMBOL vmlinux 0xd4ed2a1e __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd502140f build_skb -EXPORT_SYMBOL vmlinux 0xd50c0461 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xd50cfe60 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xd50204e3 simple_empty +EXPORT_SYMBOL vmlinux 0xd5039186 __alloc_pages +EXPORT_SYMBOL vmlinux 0xd5159e32 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xd51be430 keyring_search +EXPORT_SYMBOL vmlinux 0xd51c6183 vme_lm_request EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5273440 register_filesystem +EXPORT_SYMBOL vmlinux 0xd52f4635 dma_fence_describe EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd536549a qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xd5415728 __devm_release_region -EXPORT_SYMBOL vmlinux 0xd54779a8 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xd54be71f fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xd5535181 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0xd5603599 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xd56748f2 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xd5775200 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xd57ec830 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xd587e031 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xd589ccd3 fb_set_var -EXPORT_SYMBOL vmlinux 0xd592cd45 fiemap_prep -EXPORT_SYMBOL vmlinux 0xd5a385c2 tcp_read_skb +EXPORT_SYMBOL vmlinux 0xd53c3316 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xd5633dac single_open_size +EXPORT_SYMBOL vmlinux 0xd5865246 may_setattr EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5be3507 pci_irq_vector -EXPORT_SYMBOL vmlinux 0xd5c59dd7 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xd5cf23fc seq_lseek -EXPORT_SYMBOL vmlinux 0xd5d9d19d submit_bio_wait +EXPORT_SYMBOL vmlinux 0xd5c548dd __register_binfmt +EXPORT_SYMBOL vmlinux 0xd5e50b1c __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xd5f1a74d genphy_c45_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd61094ca xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xd617fcb4 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xd6137618 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xd6199188 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xd62811e2 genphy_suspend EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd6476dcd sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xd64f714a netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xd650dccb __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd6563641 pci_enable_device EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness EXPORT_SYMBOL vmlinux 0xd6742002 preempt_schedule_thunk -EXPORT_SYMBOL vmlinux 0xd6836a6d devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xd6844baf ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xd6880368 rproc_report_crash EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd68d5751 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xd691c691 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xd693a206 ether_setup +EXPORT_SYMBOL vmlinux 0xd69d14ab xfrm_state_lookup EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6bceeca sg_miter_skip -EXPORT_SYMBOL vmlinux 0xd6e39713 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xd6ca483c jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xd6d148c7 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd6da9590 lock_rename EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6eacd6b mpage_read_folio -EXPORT_SYMBOL vmlinux 0xd6eb9e49 sk_error_report EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f10f28 param_get_ullong -EXPORT_SYMBOL vmlinux 0xd6fad1a0 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd709c990 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0xd70c3149 block_truncate_page EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd7136b18 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xd72320e4 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0xd7356c1c ns_capable_setid EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd7392cc9 vlan_vid_add EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd7408d50 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xd73cbb56 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd74260e7 sys_imageblit +EXPORT_SYMBOL vmlinux 0xd7468f92 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd75a74ca amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xd7715b11 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xd77a5fbe dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xd77e5aa0 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xd78bc38a __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xd78e673c ps2_init +EXPORT_SYMBOL vmlinux 0xd795cdf9 agp_create_memory EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7c56519 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0xd7ca99bb km_policy_notify +EXPORT_SYMBOL vmlinux 0xd7a70346 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd7b414f3 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xd7bd9d10 dst_release EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d9b713 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xd7dbe420 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e62731 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ef188a rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0xd7f8238f super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0xd81004e3 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xd812fab5 fwnode_iomap -EXPORT_SYMBOL vmlinux 0xd814da74 __scm_destroy +EXPORT_SYMBOL vmlinux 0xd7f9582d inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xd80dcf30 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xd81b8ff8 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xd81d3354 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xd824c0b5 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xd82c8b06 pci_enable_link_state +EXPORT_SYMBOL vmlinux 0xd8384ed1 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd83a981b no_seek_end_llseek EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd846fca4 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xd84ad202 inet_frag_find -EXPORT_SYMBOL vmlinux 0xd856a8fd ppp_register_channel -EXPORT_SYMBOL vmlinux 0xd8580e20 blk_put_queue -EXPORT_SYMBOL vmlinux 0xd85ffc20 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xd867d96b rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xd8774433 dst_discard_out -EXPORT_SYMBOL vmlinux 0xd884f912 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xd8540621 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xd8608a1c device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xd867234c __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xd8826dec xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xd89a4c48 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8afd6e2 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xd8b4e963 input_mt_init_slots EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8b83783 pci_release_regions -EXPORT_SYMBOL vmlinux 0xd8d42ee6 pci_find_bus +EXPORT_SYMBOL vmlinux 0xd8bbd836 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xd8c11526 tty_lock EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd904a060 inet_put_port -EXPORT_SYMBOL vmlinux 0xd91ef9b1 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xd8e26a56 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd8e962c0 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xd8efb12a mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xd8f46461 update_devfreq +EXPORT_SYMBOL vmlinux 0xd9001c83 param_set_ushort +EXPORT_SYMBOL vmlinux 0xd9057579 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xd911aa36 dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0xd93b173b __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd94dc776 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xd9591974 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0xd960e217 vga_con -EXPORT_SYMBOL vmlinux 0xd9612b8a set_binfmt +EXPORT_SYMBOL vmlinux 0xd955394b kernel_listen +EXPORT_SYMBOL vmlinux 0xd9681705 ping_prot +EXPORT_SYMBOL vmlinux 0xd9693d41 vfs_parse_monolithic_sep EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd97ac6cc _copy_to_iter EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd99078b1 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xd9986894 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0xd99b6bb6 bio_init_clone -EXPORT_SYMBOL vmlinux 0xd99f096c i2c_get_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0xd9a56b7f xfrm_user_policy EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9a9a47e netlink_set_err -EXPORT_SYMBOL vmlinux 0xd9b6d759 d_find_alias EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9c791ef flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xd9d040b4 input_event -EXPORT_SYMBOL vmlinux 0xd9d5b6fb fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xd9c00fa7 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd9ccd53c request_firmware_into_buf EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e6af4c ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xd9f1ea56 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xda1092b0 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xda12078d user_path_at_empty -EXPORT_SYMBOL vmlinux 0xda1ca803 tty_check_change +EXPORT_SYMBOL vmlinux 0xd9dbd637 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xd9f42bdf agp_free_memory EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs -EXPORT_SYMBOL vmlinux 0xda39e505 set_cached_acl +EXPORT_SYMBOL vmlinux 0xda3a9252 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda5de6db sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0xda65f3a0 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xda7c564d inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xda8dcfc4 vga_get -EXPORT_SYMBOL vmlinux 0xdaad21e4 ptp_clock_register -EXPORT_SYMBOL vmlinux 0xdaadee2a dm_table_get_size +EXPORT_SYMBOL vmlinux 0xda41b3a9 setattr_copy +EXPORT_SYMBOL vmlinux 0xda8bf735 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xda9f493d genl_unregister_family EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdacf4dec sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdad24e3b acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xdadb7b48 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xdae19f40 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xdae33056 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xdaf456bc jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xdad7f401 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xdae09b00 kill_fasync +EXPORT_SYMBOL vmlinux 0xdae0ef21 seq_read +EXPORT_SYMBOL vmlinux 0xdaf83e80 device_add_disk EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg EXPORT_SYMBOL vmlinux 0xdb1edee6 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xdb2a93ee passthru_features_check -EXPORT_SYMBOL vmlinux 0xdb389730 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xdb5caf8c flow_rule_match_arp EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6e12ac fs_param_is_string +EXPORT_SYMBOL vmlinux 0xdb73c586 phy_free_interrupt EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb9488df generic_buffers_fsync EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0xdbb3a721 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xdbb2d836 __vfs_setxattr EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbc98926 pci_read_config_word EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd2bbc6 set_blocksize EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbf63e9c __lock_buffer -EXPORT_SYMBOL vmlinux 0xdc0177cb bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdbe2853c pipe_lock +EXPORT_SYMBOL vmlinux 0xdbed0048 fqdir_exit +EXPORT_SYMBOL vmlinux 0xdbf6edce mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xdbfa47d0 pci_request_regions +EXPORT_SYMBOL vmlinux 0xdbfc2252 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xdc014ac3 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xdc08b100 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc0ec08c __x86_indirect_jump_thunk_r12 EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc2b5900 key_type_keyring -EXPORT_SYMBOL vmlinux 0xdc3d3862 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xdc3f9c53 set_disk_ro -EXPORT_SYMBOL vmlinux 0xdc457167 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xdc275456 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xdc31cc47 agp_copy_info +EXPORT_SYMBOL vmlinux 0xdc32cc8a rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xdc40b942 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xdc437d93 rtnl_create_link EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc72c0b9 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xdc72fe5d finish_open -EXPORT_SYMBOL vmlinux 0xdc7daa6f copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xdc8563b2 simple_statfs -EXPORT_SYMBOL vmlinux 0xdc89c16d register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xdc9f44cf __mdiobus_register -EXPORT_SYMBOL vmlinux 0xdc9fb2bd _dev_printk -EXPORT_SYMBOL vmlinux 0xdc9fd950 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xdcb19ec7 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xdcb54dc5 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xdc57e61c pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xdc64c2e4 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xdc6adc4b d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xdc702b7d rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xdc7cd685 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xdc92a6d1 inet_csk_accept EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcc0dae2 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xdcd4c0a9 iterate_dir EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdce3ce8c rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xdce7634b netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xdcf05923 tcp_check_req -EXPORT_SYMBOL vmlinux 0xdd05de01 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xdd13de32 vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0xdcf1503c mmc_can_discard +EXPORT_SYMBOL vmlinux 0xdd00920e ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xdd0ef6bf __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xdd170f02 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xdd18442f max8998_bulk_read EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd255e94 mmc_get_card EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2d0123 devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xdd523c9d mdiobus_c45_read_nested -EXPORT_SYMBOL vmlinux 0xdd53bdcd xfrm_register_type +EXPORT_SYMBOL vmlinux 0xdd53f4d9 pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0xdd5fbd55 napi_build_skb EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6f8629 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xdd7214d7 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xdd7c4b0d agp_generic_alloc_user EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdda5adb1 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xdda79c24 generic_permission EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xddd406ed read_cache_folio -EXPORT_SYMBOL vmlinux 0xddedda8b param_get_long -EXPORT_SYMBOL vmlinux 0xddef31f7 __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0xddcfafe8 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xddd5d28e xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddfb46be agp_generic_insert_memory EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde14d3ed tcf_exts_change -EXPORT_SYMBOL vmlinux 0xde221d1c neigh_table_clear EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde374974 __SCK__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0xde3eb357 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xde297662 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xde41bbb3 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler EXPORT_SYMBOL vmlinux 0xde588a09 load_nls -EXPORT_SYMBOL vmlinux 0xde727594 dm_register_target -EXPORT_SYMBOL vmlinux 0xde79ea03 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xde7e9d3c call_fib_notifiers EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap -EXPORT_SYMBOL vmlinux 0xde88ab30 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xde8910b2 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xde86a784 dev_activate EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size EXPORT_SYMBOL vmlinux 0xde9c730f __nla_reserve -EXPORT_SYMBOL vmlinux 0xde9f974e dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xdea07de2 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xdea66975 pid_task EXPORT_SYMBOL vmlinux 0xdeb99119 dma_fence_init -EXPORT_SYMBOL vmlinux 0xdec62b86 setup_new_exec -EXPORT_SYMBOL vmlinux 0xdec90169 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xdeca1ee8 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xded37b0e sget +EXPORT_SYMBOL vmlinux 0xdec4a35b tcp_poll EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdeefad30 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xdef06922 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xdf1142d5 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xdf0b63d8 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2e2abd d_alloc EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf44ff03 end_buffer_async_write EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf5246a0 sock_no_ioctl EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf715d55 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xdf56be21 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xdf6a48a9 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xdf742405 input_register_handle EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf8d07f0 filemap_get_folios_tag EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf8ef951 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf943abb __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdf997873 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xdf9a59d9 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xdf9b0c9a file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xdf9c8026 input_set_capability +EXPORT_SYMBOL vmlinux 0xdfa1950b crypto_sha512_finup EXPORT_SYMBOL vmlinux 0xdfa5f94d security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xdfb6e0a2 vfs_get_fsid EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfca761c crypto_sha256_finup EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd08058 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xdfd6c53c mark_info_dirty EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy EXPORT_SYMBOL vmlinux 0xdfdce324 cpu_info -EXPORT_SYMBOL vmlinux 0xdfddc6e8 key_move -EXPORT_SYMBOL vmlinux 0xdfef4fc2 skb_checksum +EXPORT_SYMBOL vmlinux 0xdfeaa45c inode_init_always +EXPORT_SYMBOL vmlinux 0xdfecbaff get_watch_queue EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xdffe7934 block_dirty_folio -EXPORT_SYMBOL vmlinux 0xe008b8ae locks_remove_posix EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe07b9b8a pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xe0465aa0 __free_pages +EXPORT_SYMBOL vmlinux 0xe05901c6 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xe0718d69 inet_bind EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe07ef363 intel_gmch_gtt_insert_sg_entries EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0af7ba0 vme_slot_num EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b1d6db scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xe0b3e666 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xe0b5f651 copy_string_kernel EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xe0c9d5d9 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xe0f41238 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xe109b965 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xe10c11fb d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xe0b9a127 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xe0b9ba1b is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe0bd9430 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xe0bf726b dcb_getrewr +EXPORT_SYMBOL vmlinux 0xe0daf155 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xe0dbd979 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xe0fe688a vfs_fsync_range EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe117a610 mdiobus_write -EXPORT_SYMBOL vmlinux 0xe11a6bd5 dqget -EXPORT_SYMBOL vmlinux 0xe11ac8a2 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12ce89b simple_write_begin EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0xe13a472c jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe1584f99 __f_setown -EXPORT_SYMBOL vmlinux 0xe163b2bf elv_rb_del -EXPORT_SYMBOL vmlinux 0xe16c9ca4 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xe16d92f0 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xe1467e3f input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xe15db3f0 nf_log_packet +EXPORT_SYMBOL vmlinux 0xe1689043 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xe1722704 dump_align EXPORT_SYMBOL vmlinux 0xe17568e3 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0xe17e27ae _copy_to_iter -EXPORT_SYMBOL vmlinux 0xe1804fab sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0xe186a141 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xe1bc3633 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xe1976635 console_start +EXPORT_SYMBOL vmlinux 0xe19cc1a9 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xe1ad6ec2 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xe1b0237f pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xe1bb5dba del_gendisk EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -EXPORT_SYMBOL vmlinux 0xe1c79091 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xe1cffe9b configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xe1c47ac4 md_flush_request +EXPORT_SYMBOL vmlinux 0xe1cb6195 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xe1d575c1 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xe1d601ed blk_integrity_register EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1df2c10 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xe1faedef security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xe1fc017b inetdev_by_index -EXPORT_SYMBOL vmlinux 0xe2015896 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xe205ddcd netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xe20c4ce8 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xe219807b read_cache_page +EXPORT_SYMBOL vmlinux 0xe1e967eb tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xe1ed9e93 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xe21755b1 vfs_readlink EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe230b324 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xe25ae01f timestamp_truncate +EXPORT_SYMBOL vmlinux 0xe22fc2b2 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xe23128ef nf_hook_slow +EXPORT_SYMBOL vmlinux 0xe2452303 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xe245ea0a sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xe24d237c inet_select_addr +EXPORT_SYMBOL vmlinux 0xe269c6d7 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xe26b2c14 fs_param_is_blob EXPORT_SYMBOL vmlinux 0xe2767124 serio_close -EXPORT_SYMBOL vmlinux 0xe2862e7e inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xe28b8d6b dma_sync_wait -EXPORT_SYMBOL vmlinux 0xe295834f generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up -EXPORT_SYMBOL vmlinux 0xe296ae76 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xe296b8b9 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xe2b07a45 dev_addr_add +EXPORT_SYMBOL vmlinux 0xe2b174b0 from_kuid_munged EXPORT_SYMBOL vmlinux 0xe2bbfa56 proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xe2c17b5d __SCT__might_resched -EXPORT_SYMBOL vmlinux 0xe2c86b40 tcp_child_process +EXPORT_SYMBOL vmlinux 0xe2c5f581 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xe2cd7b23 dev_change_flags EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -EXPORT_SYMBOL vmlinux 0xe2e490a8 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xe2ed366f i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xe311f9e8 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0xe3125aeb __kfree_skb +EXPORT_SYMBOL vmlinux 0xe2e74438 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xe2f7dd10 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xe2f9da19 __lock_buffer +EXPORT_SYMBOL vmlinux 0xe2fa9781 nf_log_unset EXPORT_SYMBOL vmlinux 0xe31b9301 intel_gmch_gtt_flush EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3619b50 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xe379e71d wake_up_process -EXPORT_SYMBOL vmlinux 0xe3881c73 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0xe32c7a70 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xe336ccc5 simple_fill_super +EXPORT_SYMBOL vmlinux 0xe343ad26 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xe3562805 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xe363ace8 flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xe3671ba5 napi_disable +EXPORT_SYMBOL vmlinux 0xe36935d4 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe37a609b cdev_alloc +EXPORT_SYMBOL vmlinux 0xe38ed235 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0xe392bb00 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0xe39310f7 simple_setattr -EXPORT_SYMBOL vmlinux 0xe3990c00 sock_i_uid EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a6b08c noop_fsync +EXPORT_SYMBOL vmlinux 0xe39d2b40 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xe39e2fc0 netlink_ack EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3b7c12d mpage_readahead +EXPORT_SYMBOL vmlinux 0xe3b76692 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xe3cf381f aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xe3d694ed devm_iounmap EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ed4c7f mr_vif_seq_next EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe40420a9 inet_getname +EXPORT_SYMBOL vmlinux 0xe40503fc ethtool_aggregate_mac_stats EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40b5f0c may_umount_tree EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe42bf156 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xe43b9d53 write_cache_pages -EXPORT_SYMBOL vmlinux 0xe44ab6c7 is_nd_dax +EXPORT_SYMBOL vmlinux 0xe454eceb vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xe456a96f __neigh_event_send EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe47f77a1 unregister_md_personality -EXPORT_SYMBOL vmlinux 0xe496c9aa generic_block_bmap -EXPORT_SYMBOL vmlinux 0xe4b85681 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xe4880404 fiemap_prep +EXPORT_SYMBOL vmlinux 0xe48877d3 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xe49644ce __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xe4990dac __bforget EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4bc624e scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xe4be899d skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xe4cfd96b pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xe4cffe27 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xe4d4834c xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xe4c693d9 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe4d05a4d amd_iommu_domain_direct_map EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe4f50390 __brelse -EXPORT_SYMBOL vmlinux 0xe5022743 phy_device_create -EXPORT_SYMBOL vmlinux 0xe50bd46b send_sig +EXPORT_SYMBOL vmlinux 0xe4e2ffe6 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xe4ff3221 ip6_xmit +EXPORT_SYMBOL vmlinux 0xe50fdbaa kernel_param_lock +EXPORT_SYMBOL vmlinux 0xe5218ba7 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xe5223f29 do_SAK +EXPORT_SYMBOL vmlinux 0xe52336a0 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe53dc060 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xe552a65c devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xe56ff35b ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xe5240027 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe527eca4 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xe54730a2 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe54796ba nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xe5481641 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xe551f389 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe58c5b2e param_ops_ullong +EXPORT_SYMBOL vmlinux 0xe58c337b init_pseudo EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe59e2406 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xe5a9b017 dup_iter -EXPORT_SYMBOL vmlinux 0xe5b0e335 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xe59f2723 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xe5a08539 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe5a27508 bdi_alloc +EXPORT_SYMBOL vmlinux 0xe5a7da65 tty_check_change +EXPORT_SYMBOL vmlinux 0xe5ac0b93 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xe5ad56de set_pages_wb +EXPORT_SYMBOL vmlinux 0xe5bbd049 register_netdevice +EXPORT_SYMBOL vmlinux 0xe5c3510d ip_options_compile EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c9b146 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xe5cd91aa input_get_timestamp EXPORT_SYMBOL vmlinux 0xe5cee291 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xe5eaa1be iov_iter_npages -EXPORT_SYMBOL vmlinux 0xe5fc487e __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xe5ecf179 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xe5f6a22b unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xe61394d2 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xe613df67 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xe613e762 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xe6145e0a pci_read_vpd_any EXPORT_SYMBOL vmlinux 0xe61b912a security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xe62f43cb pcim_enable_device -EXPORT_SYMBOL vmlinux 0xe63f448c dquot_operations -EXPORT_SYMBOL vmlinux 0xe646fcbf tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xe64ad11a kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xe64c4ec9 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xe62ab7ca kill_pid +EXPORT_SYMBOL vmlinux 0xe62f97b9 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xe63c4fa7 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xe63e789e scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe64cea7e xfrm_state_free EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe66a24dc tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xe66fffc5 vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xe676dfd1 tcp_prot -EXPORT_SYMBOL vmlinux 0xe6830395 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xe669e4da ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xe66aca66 request_key_tag +EXPORT_SYMBOL vmlinux 0xe67edbf3 inet_frag_destroy EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6bc82ba qdisc_put EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6d4b2d1 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xe6d26d6b block_read_full_folio +EXPORT_SYMBOL vmlinux 0xe6ef345c sock_wake_async +EXPORT_SYMBOL vmlinux 0xe6f68082 rproc_add +EXPORT_SYMBOL vmlinux 0xe6f87a14 nf_ct_attach EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe6fe7013 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0xe7186b49 seq_pad EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7282267 mapping_read_folio_gfp -EXPORT_SYMBOL vmlinux 0xe74aa52a input_allocate_device -EXPORT_SYMBOL vmlinux 0xe768267b sk_net_capable -EXPORT_SYMBOL vmlinux 0xe7795848 udp_ioctl -EXPORT_SYMBOL vmlinux 0xe7857fbe inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xe73b8382 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xe7440586 module_layout +EXPORT_SYMBOL vmlinux 0xe76bab54 param_set_hexint +EXPORT_SYMBOL vmlinux 0xe787101d dquot_quota_off EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe7935394 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a22683 __phy_read_mmd EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xe7c7dd4e fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xe7c84c6c from_kprojid +EXPORT_SYMBOL vmlinux 0xe7b06772 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xe7b7a8f9 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xe7c5189d security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xe7d39f01 pci_release_resource EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d9ea9a max8998_update_reg -EXPORT_SYMBOL vmlinux 0xe7ded246 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xe7e54a89 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xe7efde1e scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xe7f3fc88 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xe8014b03 mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0xe802e93b key_validate -EXPORT_SYMBOL vmlinux 0xe80a9ee2 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xe80e0e24 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xe80f6db0 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xe7e02d5f skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xe7e65a19 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xe7fd5b3d skb_checksum_help +EXPORT_SYMBOL vmlinux 0xe801d1e0 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xe8045073 datagram_poll +EXPORT_SYMBOL vmlinux 0xe80b677b __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe818e236 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xe820f204 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0xe8322405 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xe841e80d eth_header_parse -EXPORT_SYMBOL vmlinux 0xe8480631 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xe834d0aa dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xe83a26c8 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xe845290d __find_get_block EXPORT_SYMBOL vmlinux 0xe8493660 nla_append -EXPORT_SYMBOL vmlinux 0xe84f5d5f tty_port_put +EXPORT_SYMBOL vmlinux 0xe84bac02 tcp_filter +EXPORT_SYMBOL vmlinux 0xe84ea6a7 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe86380eb tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xe86f57f1 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xe883f211 pci_pme_active -EXPORT_SYMBOL vmlinux 0xe88665df try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xe8908219 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xe8930c8f tcp_seq_next -EXPORT_SYMBOL vmlinux 0xe89359cc gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xe893dc87 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xe895fc01 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xe899843f netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xe89e3d74 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe879d6d7 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xe8855fdb mr_dump +EXPORT_SYMBOL vmlinux 0xe89ce2e4 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xe89f08b8 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xe8ac57e0 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xe8bcd761 noop_llseek EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8d52d9a xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xe8dba1f9 vfs_get_link -EXPORT_SYMBOL vmlinux 0xe8e40cc5 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xe8d87a79 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xe8e8351d inet_sendmsg +EXPORT_SYMBOL vmlinux 0xe8fb4028 thread_group_exited EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe906b31b dev_deactivate EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9242cd5 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xe9262811 blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0xe93c27fc scsi_dma_map -EXPORT_SYMBOL vmlinux 0xe9437931 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe948ef45 clear_nlink +EXPORT_SYMBOL vmlinux 0xe91f5d00 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xe93c0f93 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xe93e7638 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xe944bedb convert_art_to_tsc EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95f4929 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0xe96e1d53 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0xe988892f kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0xe9a1cd97 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xe970b411 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b2ab27 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xe9b9477f ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0xe9c074ef __sock_create -EXPORT_SYMBOL vmlinux 0xe9c44dd3 to_nd_pfn -EXPORT_SYMBOL vmlinux 0xe9d5a6d7 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xe9b6c858 pci_restore_state +EXPORT_SYMBOL vmlinux 0xe9b9a2f8 netif_device_detach +EXPORT_SYMBOL vmlinux 0xe9c85bb3 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xe9c9e41a jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xe9cc644a set_trace_device +EXPORT_SYMBOL vmlinux 0xe9da65e5 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e71393 mr_fill_mroute EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9ea7ea5 xp_dma_map EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock EXPORT_SYMBOL vmlinux 0xea001c6a is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xea2e8f22 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xea1bc8d8 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xea202e67 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xea28e92b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xea38391e dm_table_event EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea41ec19 netlink_capable -EXPORT_SYMBOL vmlinux 0xea43a5bd simple_write_begin -EXPORT_SYMBOL vmlinux 0xea583750 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xea5912df xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xea6bde7b phy_stop +EXPORT_SYMBOL vmlinux 0xea498e22 dev_uc_del +EXPORT_SYMBOL vmlinux 0xea4cd16e skb_queue_head +EXPORT_SYMBOL vmlinux 0xea4d00aa alloc_fcdev +EXPORT_SYMBOL vmlinux 0xea56b92b dma_map_resource +EXPORT_SYMBOL vmlinux 0xea5ef33d param_ops_ushort EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea7aa939 md_register_thread EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options -EXPORT_SYMBOL vmlinux 0xea9867e2 filp_open +EXPORT_SYMBOL vmlinux 0xea92a056 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xea97c819 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xeaa3b26a dquot_file_open EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabbec57 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xeacdef21 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0xeadaf080 netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0xeadc171b pnp_disable_dev EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf9fee1 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xeb0de3bc in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xeb144c6e cdev_device_del +EXPORT_SYMBOL vmlinux 0xeb1bb506 __scsi_add_device EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb43104e get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xeb43869c __SCK__tp_func_rdpmc EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb55a2c8 md_update_sb EXPORT_SYMBOL vmlinux 0xeb61982b __register_nls -EXPORT_SYMBOL vmlinux 0xeb7d2fb5 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xeb6d99af handshake_genl_put +EXPORT_SYMBOL vmlinux 0xeb6fad7b eth_header_cache +EXPORT_SYMBOL vmlinux 0xeb7a35ce __tracepoint_rdpmc EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb953023 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebbb7fe9 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xebbbd7b5 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xeba038e7 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xeba5318f pci_free_irq +EXPORT_SYMBOL vmlinux 0xebae52cd sk_stop_timer +EXPORT_SYMBOL vmlinux 0xebba9826 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xebd54084 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xebd5eef4 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xebe9dca3 _dev_warn +EXPORT_SYMBOL vmlinux 0xec02db35 dev_get_stats +EXPORT_SYMBOL vmlinux 0xec09558a kernel_getsockname EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec331270 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xec436606 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xec4d5921 always_delete_dentry EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4f1bdf agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xec53962c pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xec5567c4 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xec600da4 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xec603481 __neigh_create -EXPORT_SYMBOL vmlinux 0xec6951cd get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0xec6e7f69 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xec739c3c thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xec8379e7 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xec879a87 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xec96944a page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xec564e38 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xec62e447 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xec65e458 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xec8ad639 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xeca24488 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xeca2b1e3 dev_lstats_read EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb20abd mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xecb939ee sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xecb511d1 __seq_open_private EXPORT_SYMBOL vmlinux 0xecc7c868 __x86_indirect_jump_thunk_r9 -EXPORT_SYMBOL vmlinux 0xecca2ff1 inet_frag_kill EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xeced6d26 amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0xecf56b8e poll_freewait -EXPORT_SYMBOL vmlinux 0xecf57e21 unlock_rename -EXPORT_SYMBOL vmlinux 0xecf95080 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed21c619 tls_client_hello_x509 +EXPORT_SYMBOL vmlinux 0xed295401 keyring_clear EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed3550b7 param_ops_bint -EXPORT_SYMBOL vmlinux 0xed401634 __quota_error +EXPORT_SYMBOL vmlinux 0xed4fbcec vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed834a9b blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xed90e0de __getblk_gfp +EXPORT_SYMBOL vmlinux 0xed9caadf dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xeda259d5 xfrm_state_flush EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xedaa78f5 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0xedab3201 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xedac331c block_invalidate_folio -EXPORT_SYMBOL vmlinux 0xedb20838 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xedac52c8 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xedaee121 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xedb79585 pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xeddd6c60 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xee080803 register_md_personality +EXPORT_SYMBOL vmlinux 0xee0e8ff0 mmc_release_host +EXPORT_SYMBOL vmlinux 0xee1409da param_ops_int +EXPORT_SYMBOL vmlinux 0xee27a770 inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable EXPORT_SYMBOL vmlinux 0xee38a20e __x86_indirect_jump_thunk_r10 -EXPORT_SYMBOL vmlinux 0xee410ed5 nf_reinject -EXPORT_SYMBOL vmlinux 0xee439b98 f_setown -EXPORT_SYMBOL vmlinux 0xee4986b5 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xee3cfd62 sock_i_uid +EXPORT_SYMBOL vmlinux 0xee4962d8 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee674afd __skb_get_hash EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee7f30db __traceiter_module_get EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array -EXPORT_SYMBOL vmlinux 0xee89a56a netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xee88e39d dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea78d30 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xeea82990 d_move EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeecbf342 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xeef4d921 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xef05d533 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xef097e28 pin_user_pages -EXPORT_SYMBOL vmlinux 0xef0f62b3 scsi_block_requests -EXPORT_SYMBOL vmlinux 0xef1f4865 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xeecdf0b7 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xeed29698 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xeed75ac4 filemap_flush +EXPORT_SYMBOL vmlinux 0xeee94e57 netdev_features_change +EXPORT_SYMBOL vmlinux 0xef13a883 simple_lookup +EXPORT_SYMBOL vmlinux 0xef1a5039 register_qdisc +EXPORT_SYMBOL vmlinux 0xef308c6f mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0xef36a848 __x86_indirect_jump_thunk_rdi -EXPORT_SYMBOL vmlinux 0xef559f38 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xef6a3d47 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xef7a45fb vm_mmap -EXPORT_SYMBOL vmlinux 0xef8207ee __bh_read_batch -EXPORT_SYMBOL vmlinux 0xef8a96f6 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xef908d1b request_firmware +EXPORT_SYMBOL vmlinux 0xef3fe6ba lock_rename_child +EXPORT_SYMBOL vmlinux 0xef49a934 phy_attached_info +EXPORT_SYMBOL vmlinux 0xef4e68c5 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xef633dc6 param_ops_string +EXPORT_SYMBOL vmlinux 0xef662cea convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xef68f64f configfs_undepend_item EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb3f8ed skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xefb6956f __post_watch_notification +EXPORT_SYMBOL vmlinux 0xefbc94c3 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xefbf9f16 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xefcd2ff0 sock_edemux +EXPORT_SYMBOL vmlinux 0xefce1b72 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefec4b10 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xefd9d961 d_lookup +EXPORT_SYMBOL vmlinux 0xefdd2f51 neigh_table_init EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xeffc792b io_uring_destruct_scm EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf004a4ec vfs_setpos EXPORT_SYMBOL vmlinux 0xf0134a51 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xf014c523 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xf0155212 done_path_create +EXPORT_SYMBOL vmlinux 0xf01a24e1 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xf026d188 seq_open EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf02fbaba vga_switcheroo_register_handler -EXPORT_SYMBOL vmlinux 0xf031ac77 create_empty_buffers -EXPORT_SYMBOL vmlinux 0xf041a263 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xf0490e1b vc_resize -EXPORT_SYMBOL vmlinux 0xf04a588b genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf07aa438 pci_get_device +EXPORT_SYMBOL vmlinux 0xf0755d9e pci_iomap_range EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0xf084bbb4 phy_init_eee +EXPORT_SYMBOL vmlinux 0xf0838df5 genphy_read_lpa EXPORT_SYMBOL vmlinux 0xf0910ebc nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xf096bdf8 simple_unlink EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf09f701d security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xf0b5c6ae is_nd_dax EXPORT_SYMBOL vmlinux 0xf0b9a4b9 commit_creds -EXPORT_SYMBOL vmlinux 0xf0d12b4c softnet_data -EXPORT_SYMBOL vmlinux 0xf0d26986 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xf0c806df blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xf0c829d8 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xf0c909e9 seq_putc +EXPORT_SYMBOL vmlinux 0xf0d28c6c __ip_dev_find +EXPORT_SYMBOL vmlinux 0xf0e3268e inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf0e6652c vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xf10e812c i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xf0ff908d netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf120fea9 security_sock_graft -EXPORT_SYMBOL vmlinux 0xf12a2076 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xf13a1cfc agp_put_bridge -EXPORT_SYMBOL vmlinux 0xf1467391 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xf150ae40 inode_init_once -EXPORT_SYMBOL vmlinux 0xf15d7f8c migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xf1621642 nlmsg_notify -EXPORT_SYMBOL vmlinux 0xf16d55bb neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xf13059fe tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xf153361c ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xf1621c92 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xf16c5dc0 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xf176cdf7 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xf1829af8 __pci_register_driver EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf18b50d8 max8998_update_reg EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps -EXPORT_SYMBOL vmlinux 0xf195d8dd dma_ops EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1beca7d fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xf1bf5c22 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xf1c63cb4 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xf1d95456 acpi_bus_unregister_driver EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1df440f __SCK__tp_func_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1ee4f27 wrap_directory_iterator -EXPORT_SYMBOL vmlinux 0xf1f783d9 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xf1f80431 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf2077d2b phy_error -EXPORT_SYMBOL vmlinux 0xf2120c9e inet_sendmsg -EXPORT_SYMBOL vmlinux 0xf21faa7d find_inode_rcu -EXPORT_SYMBOL vmlinux 0xf2281cc0 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xf20e8dd1 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2519bae get_inode_acl EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx -EXPORT_SYMBOL vmlinux 0xf26d6f6e sock_create -EXPORT_SYMBOL vmlinux 0xf26faef3 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xf278ce37 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf264dad6 xattr_full_name EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf2a445f8 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xf295ecfa generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xf2a3ba1f neigh_ifdown +EXPORT_SYMBOL vmlinux 0xf2a6bfc1 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0xf2b46c91 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf2b034f9 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf2b5da3b scsi_host_lookup EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xf2b9eee6 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xf2bfd554 set_disk_ro EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2c77cef mmc_of_parse -EXPORT_SYMBOL vmlinux 0xf2e2379d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xf2cad698 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xf2d09450 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xf2dcd159 inet_frags_fini EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2ed0216 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xf2e80fd2 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xf2f10ce8 security_inet_conn_established EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf30305cd iov_iter_alignment EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf309c480 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xf33b809f pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xf33c3546 key_link +EXPORT_SYMBOL vmlinux 0xf3288357 __put_user_ns +EXPORT_SYMBOL vmlinux 0xf33c47ed netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xf33e4552 follow_pfn +EXPORT_SYMBOL vmlinux 0xf33ef4ca agp_enable EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34ac181 devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf354903d netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0xf358d20b agp_generic_enable -EXPORT_SYMBOL vmlinux 0xf359ed44 pci_request_region +EXPORT_SYMBOL vmlinux 0xf354fe30 ipv4_specific +EXPORT_SYMBOL vmlinux 0xf35a8947 sock_create_kern +EXPORT_SYMBOL vmlinux 0xf35f46f5 netpoll_send_skb EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange -EXPORT_SYMBOL vmlinux 0xf362e6bb tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xf363a49e netdev_set_num_tc EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf377ca90 genphy_resume -EXPORT_SYMBOL vmlinux 0xf388b088 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xf3907aec set_anon_super +EXPORT_SYMBOL vmlinux 0xf3809558 pci_iomap EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39515a3 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xf3997288 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xf3a3f02d dqput EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b2a4cf flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xf3d00963 dcb_setrewr +EXPORT_SYMBOL vmlinux 0xf3c77be3 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xf3caac47 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xf3d3c18f flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf40eb44e dm_table_event +EXPORT_SYMBOL vmlinux 0xf3ffb31f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xf4078e5d fb_io_read +EXPORT_SYMBOL vmlinux 0xf40b48b5 kmalloc_trace EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a8b9d i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid -EXPORT_SYMBOL vmlinux 0xf45c6431 tcf_register_action -EXPORT_SYMBOL vmlinux 0xf46d19fe put_watch_queue +EXPORT_SYMBOL vmlinux 0xf452fefa __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xf465e855 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xf47386b3 vm_map_ram +EXPORT_SYMBOL vmlinux 0xf4749cff tcp_seq_next EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4854ea9 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xf4917f4e forget_cached_acl +EXPORT_SYMBOL vmlinux 0xf482bc3e mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xf484b7da fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf4a13003 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4b146bf nf_register_net_hook EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4c1edb8 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xf4c49db4 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xf4c9420a pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xf4c9ae62 skb_eth_pop EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e5a892 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xf4e091cc irq_domain_set_info EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f56f2f tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0xf516c3e7 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0xf51767ce inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xf51f7586 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xf52f6bea __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xf5398fee path_is_under +EXPORT_SYMBOL vmlinux 0xf4f59759 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xf5049a3f netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf5274cc5 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xf52ea876 devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55cab33 skb_dequeue -EXPORT_SYMBOL vmlinux 0xf582f077 pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0xf58561ea input_inject_event -EXPORT_SYMBOL vmlinux 0xf586ca3b nf_log_unregister +EXPORT_SYMBOL vmlinux 0xf54574d7 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xf5572cc5 uart_register_driver +EXPORT_SYMBOL vmlinux 0xf5577516 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xf55d087e xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xf570298d close_fd_get_file +EXPORT_SYMBOL vmlinux 0xf58de295 dcache_dir_open EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc -EXPORT_SYMBOL vmlinux 0xf5bc9619 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xf5c2e9ac __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xf5cd9f8e ip6_frag_init +EXPORT_SYMBOL vmlinux 0xf5b609ab find_inode_rcu +EXPORT_SYMBOL vmlinux 0xf5bb2b8b new_inode EXPORT_SYMBOL vmlinux 0xf5dcf929 __x86_indirect_jump_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf5ddeb35 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xf5e7b487 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf604e016 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xf5f8ab75 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf6198572 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xf61b6f84 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xf620c275 sock_i_ino -EXPORT_SYMBOL vmlinux 0xf626b7af vlan_vid_del +EXPORT_SYMBOL vmlinux 0xf61477a1 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xf6160f04 inet_confirm_addr EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf644fe0c pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xf64f439e ip6mr_rule_default EXPORT_SYMBOL vmlinux 0xf65f1dbd __x86_indirect_jump_thunk_rsi EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66f6e0b ioc_lookup_icq EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6b7d15c pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xf6c71dc4 __d_lookup_unhash_wake -EXPORT_SYMBOL vmlinux 0xf6d72fb5 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xf6dc2b5e netif_napi_add_weight -EXPORT_SYMBOL vmlinux 0xf6e0572f sock_kfree_s +EXPORT_SYMBOL vmlinux 0xf68de395 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xf6a73b94 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0xf6c20bfd param_ops_short +EXPORT_SYMBOL vmlinux 0xf6d8e719 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf6ebb34f pcie_set_readrq EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f635bb vm_insert_page +EXPORT_SYMBOL vmlinux 0xf6f225b9 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor EXPORT_SYMBOL vmlinux 0xf723934f __x86_indirect_jump_thunk_r11 -EXPORT_SYMBOL vmlinux 0xf7330c3b blk_start_plug +EXPORT_SYMBOL vmlinux 0xf733db54 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73921db __mdiobus_write -EXPORT_SYMBOL vmlinux 0xf74ac706 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xf75a0332 __icmp_send -EXPORT_SYMBOL vmlinux 0xf7615bc8 fb_get_mode -EXPORT_SYMBOL vmlinux 0xf76b8ed3 user_revoke -EXPORT_SYMBOL vmlinux 0xf7866832 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xf792e627 tty_port_init -EXPORT_SYMBOL vmlinux 0xf7958b02 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xf795ae93 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0xf73d731a mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xf747aaf2 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xf75e2473 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xf76784d5 seq_lseek +EXPORT_SYMBOL vmlinux 0xf778fa84 rproc_free +EXPORT_SYMBOL vmlinux 0xf77d68ba tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xf7838c9f _copy_from_iter EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf7afc5bb tty_unlock +EXPORT_SYMBOL vmlinux 0xf79d43ca lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xf7bbab1e scsi_add_device +EXPORT_SYMBOL vmlinux 0xf7c4aed0 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7d9a3b9 iov_iter_revert EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ee43d8 tcp_disconnect EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xf80dabe7 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf818dae2 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xf82005da agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0xf820a188 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0xf8222e1d inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xf82c2c50 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xf81a5f44 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xf8237b71 bio_free_pages EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8328f01 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xf83a5b00 dcb_getrewr_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf85a97ed pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xf85ff506 blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0xf867a0d7 new_inode +EXPORT_SYMBOL vmlinux 0xf867ce09 blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0xf88ecec4 kvmemdup -EXPORT_SYMBOL vmlinux 0xf89f70f2 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0xf8a3512e mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf8a564cd device_add_disk -EXPORT_SYMBOL vmlinux 0xf8af0fb1 kern_unmount -EXPORT_SYMBOL vmlinux 0xf8c38833 genphy_c45_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf8ced1e3 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xf8ae16b6 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xf8b51665 dev_uc_init +EXPORT_SYMBOL vmlinux 0xf8b5d3ce register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xf8d046d2 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8da5243 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xf8e72d97 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xf8ecc64d iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xf8f42361 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xf8d81482 vme_irq_generate EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8f8702a security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xf8fd4076 lookup_one_qstr_excl EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf9206828 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xf9321801 is_subdir -EXPORT_SYMBOL vmlinux 0xf937d57a jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xf93b0400 generic_listxattr +EXPORT_SYMBOL vmlinux 0xf916e53b skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xf91eeb16 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xf9247ed9 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xf9377e54 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9436bf9 registered_fb EXPORT_SYMBOL vmlinux 0xf94536c2 proc_dointvec +EXPORT_SYMBOL vmlinux 0xf954e300 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xf96590ef ppp_input +EXPORT_SYMBOL vmlinux 0xf96666da iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xf967048c tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9790b8a hmm_range_fault -EXPORT_SYMBOL vmlinux 0xf985f505 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0xf988979b dput -EXPORT_SYMBOL vmlinux 0xf999846c devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xf9776a46 devm_backlight_device_register EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9ab90e3 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xf9b4bb65 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9f3c84b skb_clone -EXPORT_SYMBOL vmlinux 0xf9f4220e fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xf9ff1017 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xfa023e67 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xf9dd5865 pcim_iomap +EXPORT_SYMBOL vmlinux 0xf9e88275 mdio_device_create +EXPORT_SYMBOL vmlinux 0xf9f031dd genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xf9f2e9c3 dev_addr_del +EXPORT_SYMBOL vmlinux 0xf9f49057 lookup_one +EXPORT_SYMBOL vmlinux 0xf9fd42b1 ppp_channel_index EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa09c654 do_clone_file_range -EXPORT_SYMBOL vmlinux 0xfa1b55e1 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xfa122014 folio_create_empty_buffers +EXPORT_SYMBOL vmlinux 0xfa174ff5 tcp_mtup_init EXPORT_SYMBOL vmlinux 0xfa27286e clk_add_alias EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2d931d page_pool_create EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa356973 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xfa3dc9ae __netlink_kernel_create EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6091c8 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0xfa7d8039 vme_bus_type -EXPORT_SYMBOL vmlinux 0xfa8c8833 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xfa6eac19 i2c_find_device_by_fwnode +EXPORT_SYMBOL vmlinux 0xfa7b0e1e serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaad6be0 sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0xfab4d0ad clk_get -EXPORT_SYMBOL vmlinux 0xfac51508 pci_release_region +EXPORT_SYMBOL vmlinux 0xfabee961 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfade2d8a handshake_req_alloc -EXPORT_SYMBOL vmlinux 0xfadeaaa5 kernel_write -EXPORT_SYMBOL vmlinux 0xfae15c49 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xfad79165 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xfae22734 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xfae26f7e fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xfafab0b5 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xfb002bcc inet_release -EXPORT_SYMBOL vmlinux 0xfb0e4627 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xfb2ab417 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xfaeceebb dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xfb0b0f0d bio_uninit +EXPORT_SYMBOL vmlinux 0xfb13873e tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xfb2e179d cfb_fillrect EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3899de netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xfb43d9b7 sk_ioctl +EXPORT_SYMBOL vmlinux 0xfb4d7f45 key_revoke +EXPORT_SYMBOL vmlinux 0xfb55c0bb sock_setsockopt +EXPORT_SYMBOL vmlinux 0xfb56d9e4 request_firmware_nowait EXPORT_SYMBOL vmlinux 0xfb578fc5 memset -EXPORT_SYMBOL vmlinux 0xfb5a00c9 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xfb676cd8 pci_request_regions EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6d83ad i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xfb6f036c setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xfb78d632 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xfb9bec8e bmap +EXPORT_SYMBOL vmlinux 0xfb9da5d6 nf_log_set +EXPORT_SYMBOL vmlinux 0xfba25fc8 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbac5d47 to_ndd EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbae27ce devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xfbb35ef7 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcc6e11 nd_dax_probe -EXPORT_SYMBOL vmlinux 0xfbd2ecbc kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xfbce0020 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0xfbd3307f ns_capable EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbe483dd backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xfbe78b2e dump_emit EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfc1cd20f __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xfc206300 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xfbeebe7e flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xfc003b83 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xfc100adc security_path_mkdir EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc38aa5b tty_driver_kref_put EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc42a3e3 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xfc4ab03a pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xfc95b3b6 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xfc99b149 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xfc9f7356 phy_find_first -EXPORT_SYMBOL vmlinux 0xfca2d66d unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xfcad4a77 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xfcb05954 _dev_emerg +EXPORT_SYMBOL vmlinux 0xfc45a0e8 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xfc6539ce locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xfc872cc5 inet_frag_find +EXPORT_SYMBOL vmlinux 0xfc8841a4 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xfcb7986f sget +EXPORT_SYMBOL vmlinux 0xfcc70d41 unlock_page EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd242e1 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xfce6a412 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfd2d8174 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xfd32ca97 ping_prot -EXPORT_SYMBOL vmlinux 0xfd5e6af0 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0xfd5f3e61 vfs_mknod -EXPORT_SYMBOL vmlinux 0xfd61737f fget_raw -EXPORT_SYMBOL vmlinux 0xfd6933a8 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xfd6d0d2a napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xfd6eb355 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xfd741ae7 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xfd7a1533 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xfd8caa4b current_in_userns -EXPORT_SYMBOL vmlinux 0xfd9194d2 i2c_get_match_data +EXPORT_SYMBOL vmlinux 0xfd11ec12 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xfd388c93 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xfd3e89e2 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xfd544ead pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xfd54e2a3 seq_puts +EXPORT_SYMBOL vmlinux 0xfd5a7460 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xfd5df4ae qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xfd65606d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xfd775cc0 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xfd89517d sg_miter_next EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc EXPORT_SYMBOL vmlinux 0xfda9a3f1 intel_gmch_enable_gtt -EXPORT_SYMBOL vmlinux 0xfdb112dd simple_lookup -EXPORT_SYMBOL vmlinux 0xfdb54985 dump_page EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id -EXPORT_SYMBOL vmlinux 0xfdb7bac0 skb_unlink +EXPORT_SYMBOL vmlinux 0xfdc2b112 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xfdc802ff phy_start_aneg +EXPORT_SYMBOL vmlinux 0xfdc90cbb pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xfdcaa6f7 scsi_execute_cmd EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdcf7f36 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xfdd1c917 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xfdd29ebe rproc_add -EXPORT_SYMBOL vmlinux 0xfdd2ca27 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource EXPORT_SYMBOL vmlinux 0xfddeb056 efi -EXPORT_SYMBOL vmlinux 0xfde3ac91 __alloc_skb -EXPORT_SYMBOL vmlinux 0xfded5bcc jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xfdfb7807 vga_put +EXPORT_SYMBOL vmlinux 0xfdf1a857 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe02c328 skb_kill_datagram EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe0b4fcf vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xfe05c49f pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xfe0fdc77 irq_set_chip -EXPORT_SYMBOL vmlinux 0xfe11e210 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xfe11f932 iget_locked EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe1edb64 netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0xfe215b97 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0xfe254aa6 __mdiobus_read +EXPORT_SYMBOL vmlinux 0xfe3ba194 f_setown +EXPORT_SYMBOL vmlinux 0xfe3e9840 vme_register_driver +EXPORT_SYMBOL vmlinux 0xfe457c2a mod_node_page_state +EXPORT_SYMBOL vmlinux 0xfe47b349 input_match_device_id EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe591ba5 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xfe51638b genphy_update_link EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe77ce4d dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xfe7dbb39 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xfe5feaf4 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xfe8c0b6c md_reload_sb EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe92722a blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0xfe98a42f folio_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xfe9be6e5 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xfe947ca6 __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfebd36b7 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xfec45a12 proc_set_size -EXPORT_SYMBOL vmlinux 0xfec83289 path_get +EXPORT_SYMBOL vmlinux 0xfea03db6 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xfea06676 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xfeb26fd3 edac_mc_find +EXPORT_SYMBOL vmlinux 0xfec3a903 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xfed33e09 cdrom_mode_select EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedfda1d component_match_add_release +EXPORT_SYMBOL vmlinux 0xfee123ea jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xfeea58f2 srso_alias_untrain_ret EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xfef2e335 blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfeffce54 blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff24cf90 param_set_byte +EXPORT_SYMBOL vmlinux 0xff1f686a scsi_ioctl +EXPORT_SYMBOL vmlinux 0xff229e68 __dev_remove_pack EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff29b409 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xff340f08 proto_unregister -EXPORT_SYMBOL vmlinux 0xff389ba7 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xff3e9eab phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xff44029e param_ops_byte -EXPORT_SYMBOL vmlinux 0xff4ef5e7 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xff2e47bb dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xff4acea3 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff5ebaf4 __folio_lock +EXPORT_SYMBOL vmlinux 0xff60ca1c simple_setattr +EXPORT_SYMBOL vmlinux 0xff64f5b9 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6d9d48 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xff7140d4 filemap_release_folio -EXPORT_SYMBOL vmlinux 0xff818751 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xff7fca7c blkdev_put +EXPORT_SYMBOL vmlinux 0xff872ad0 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xff8738e1 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xff879688 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff8f4d8e rtc_add_groups -EXPORT_SYMBOL vmlinux 0xff9aed48 lock_rename -EXPORT_SYMBOL vmlinux 0xffa74dba agp_copy_info -EXPORT_SYMBOL vmlinux 0xffabb147 d_add +EXPORT_SYMBOL vmlinux 0xff9fa55f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xffacdd0d invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffba5bc4 finish_open EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcb7805 inet_ioctl EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffd335b9 km_policy_expired -EXPORT_SYMBOL vmlinux 0xffea9ecf neigh_app_ns -EXPORT_SYMBOL vmlinux 0xffeaed35 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff9fed0 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xfff0e48a kthread_create_worker +EXPORT_SYMBOL vmlinux 0xfffafbb2 dma_resv_copy_fences EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0x6790ca30 aria_aesni_avx_gfni_decrypt_16way EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0x78ac3a58 aria_aesni_avx_decrypt_16way EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0xa29489b9 aria_aesni_avx_encrypt_16way @@ -12171,397 +12172,397 @@ EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x002418b8 kvm_load_host_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0056d96d kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x006d94f9 __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03611c1c __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00f5ec89 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x031384d0 gfn_to_pfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0595589e __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0608c09b kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x065a8981 kvm_apic_match_dest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08ba4502 kvm_post_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a34dbbf kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0aa51b5c kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x098d9855 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09e75e2b kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a0e2c08 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a51cd27 kvm_requeue_exception_e EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bbade15 __SCK__tp_func_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0c8d8c2d kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bd4b8ec kvm_are_all_memslots_empty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cabc60b kvm_load_guest_xsave_state EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0db91a83 kvm_update_dr7 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e2360ae kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e354129 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fbffff3 __SCK__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10b0f398 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0de69e40 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e86c9ad kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1198e693 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1247547a mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13859171 kvm_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x153d8d83 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159227b9 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1541be27 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x158a04d7 kvm_vcpu_kick EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17333fc4 gfn_to_hva EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x181442b4 __SCK__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1918d05d kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1996b5d1 kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19e2e8aa kvm_init_shadow_npt_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a6fa54b __SCK__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b96adb1 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x196e61bd kvm_gpc_deactivate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b139a __SCT__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d221489 __tracepoint_kvm_vmgexit_msr_protocol_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e70ec9f file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e70fcd4 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e93e423 kvm_inject_realmode_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f0f3b8c kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f232567 kvm_find_cpuid_entry_index +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ead1a20 kvm_arch_register_noncoherent_dma EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x218b938d __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20263500 kvm_mmu_gva_to_gpa_read EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2393875e kvm_mmu_free_guest_mode_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23daa723 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2428fa72 kvm_handle_invalid_op -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2493cbcc __SCK__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24a1153e __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2362fecf kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x241a6701 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24c55b26 kvm_emulate_instruction EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25aefbde kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x252ed09a kvm_intr_is_single_vcpu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x269094e1 kvm_set_msi_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x286d7f0f kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28eefd7f gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x297d1178 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b3e0a7c kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bd4439e kvm_sev_es_mmio_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c7a74b4 kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28d68746 kvm_find_cpuid_entry_index +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28efe604 __SCK__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a7a8a79 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a8e316c kvm_mmu_invalidate_addr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b2eaafd kvm_emulate_rdpmc EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2dbccd4a kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e41bd5a kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ea665ce __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fbb4090 __kvm_vcpu_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x310544d7 kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31f514e1 __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3265a820 kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32830e10 kvm_queue_exception_p -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32f08e15 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33e283d6 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3402bea3 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34f7c3ec kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36c7a35b kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38438db6 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e4e59e1 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ecc9b0d kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ed84692 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f62e775 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f8cc1c5 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x300039a9 kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30cb4570 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3108689d kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31360fc7 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31dbb110 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x332101f7 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35537c7b kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35f0a105 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36172b51 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36fb8c14 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x376a7fd0 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37eb672f kvm_get_kvm_safe EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x390d8c89 kvm_gpc_refresh -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x393998f9 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39ba0c47 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39f6ebfe kvm_vcpu_unmap EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a24851d kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a501055 kvm_emulate_ap_reset_hold EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cadd168 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d67581d kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bf57e5b __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c54393d __SCK__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c8d5224 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cd30450 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3cd6b73f kvm_gpc_check EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f0f0839 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e473954 __tracepoint_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e84ddf9 kvm_set_msr_common EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4195ae8e __SCK__tp_func_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41a1f74b __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x452eb038 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45c67aec kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45cb36bf __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f66d06a __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fa2936f gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fe7c8b6 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4110b76f __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41174079 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41553e00 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41582eb6 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43b59f12 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43bea511 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45a355b9 kvm_sev_es_mmio_read EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x465e7780 kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46efc579 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45fea1a3 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x462647d8 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46826124 kvm_vcpu_reset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x484c86a7 __tracepoint_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x487085a7 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x487a1070 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48e85ea7 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48f43a22 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x492e4432 kvm_lapic_set_eoi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x497acf5b kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49c494a6 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1a3c5e kvm_cpuid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4abb4820 kvm_lapic_readable_reg_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bc7eaca __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bdc089b __SCK__tp_func_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c492fb1 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4caa8493 __kvm_prepare_emulation_failure_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d496550 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a7da123 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4deaf90f __tracepoint_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e744c17 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x528b06d2 kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52cf8cc1 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f5d2c9b kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x503b6880 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x507758b5 __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x526f66f6 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x539a2597 kvm_hv_assist_page_enabled EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x572dfefd __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53f1756f kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5498f3c9 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x559cbc91 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55ebbbd1 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x560ef9b8 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x577a00da kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58c95943 kvm_pmu_trigger_event EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5953f358 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59ba69c8 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59d79b12 kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5aad5bbb kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b035511 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b26c360 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b1a2d7f __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b23be1f __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bb94fe2 __tracepoint_kvm_entry EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf7cde0 kvm_mmu_set_ept_masks EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c11e105 __traceiter_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c2bb34f __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c376962 __tracepoint_kvm_nested_intr_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c8377b5 kvm_vcpu_deliver_sipi_vector -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d3a76ea kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d0c9d72 kvm_emulate_halt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5daf37de kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5edba188 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5dd75bb3 kvm_gpc_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f035c58 kvm_inject_emulated_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6020f75d kvm_irq_has_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61d4b7d5 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61f782d9 __traceiter_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62a87f98 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62cc439b kvm_handle_invalid_op EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65147f0d kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6551f681 __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66b4b46b gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x649a5e2a __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x649fccee __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x656e3256 __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65a6a688 __tracepoint_kvm_write_tsc_offset EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x680c9cb3 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68468653 __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x675958c7 kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6788c73c kvm_mmu_free_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x687b78fc kvm_x86_vendor_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69d31879 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a2b745c kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a9388a1 __SCK__tp_func_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ae52134 kvm_load_guest_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b51d554 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b6e4ad4 __SCK__tp_func_kvm_invlpga EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc792a4 kvm_caps EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ccac027 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d26954c kvm_handle_memory_failure EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6df3d961 kvm_mmu_gva_to_gpa_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fc3dd06 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7006b85f kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70101d3f kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f7b7d85 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fc61e58 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fdcb52b kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x701768ff kvm_emulate_ap_reset_hold EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70b7dd06 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x712d6430 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x713d1ac0 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72030cb8 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7286159c hv_track_root_tdp EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74910627 __traceiter_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74c5ea70 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74dd78c7 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74df9c8c kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74fbcdae mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7510a39a __traceiter_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x754ebd7a __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x756a625d vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x773bb7bc kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x777a7f78 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76878dc4 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76f7b076 load_pdptrs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78885c42 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x796319c3 kvm_slot_page_track_add_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3a0f8c __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a999a8e kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7adadf1b kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a6f85e8 vcpu_put EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c4c28c2 kvm_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7caf464b __tracepoint_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d632339 kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e7d76f0 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d40e672 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d5f58f5 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ea18fe8 kvm_post_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f51547e __traceiter_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x803bf4be kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8173022b __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82912f2b __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86663cd6 kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86c4aa8f __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86e440f4 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x890ec567 __SCK__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89317876 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89b9e469 __SCK__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80920920 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81a1ffde kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82e09fc5 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84029188 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8436e8e7 kvm_x86_vendor_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x851d2890 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85ddbcfb __kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86571f82 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x868c9a9d kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8769115d __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87f60d7d kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8868344e __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88ad6232 hv_flush_remote_tlbs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a921c18 kvm_update_cpuid_runtime -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b0aee63 __SCK__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b479e8d __tracepoint_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bcf297b kvm_gpc_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d580860 kvm_vcpu_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d5bea81 kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8eb3c810 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8edd1265 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b9eae18 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c8a030b kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c9de839 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ee1b140 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ef2ddcc __SCK__tp_func_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f3a890e __traceiter_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f43ef5c kvm_gpc_check -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x907f14e2 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f43e65c kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fcfaa56 kvm_vcpu_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fe1dad2 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9114d449 __tracepoint_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91301422 __tracepoint_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92aec0f0 kvm_sev_es_mmio_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93ec74b9 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x942bbf3a __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94ad6b88 hv_flush_remote_tlbs_range -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95d95808 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96c44fc8 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9737d22b kvm_mmu_new_pgd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9810ab37 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9af2b588 kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b112c68 __tracepoint_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cd4bb37 kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9406bb2c __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x943d666e kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9487b4da kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94b831b2 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9592e173 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95f8f155 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96b69732 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9876c7d4 __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x987f26e0 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x989a0274 kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x990a78e3 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cd034f9 __tracepoint_kvm_apicv_accept_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f17bbb8 kvm_mmu_invlpg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa03d9762 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0a8d8a6 kvm_task_switch EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1ebb658 kvm_lapic_expired_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa21904c3 __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2419be7 kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa41d2577 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa26862d6 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa47cbebf kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5501acd file_is_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6494b4c kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5afcd24 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa61c13d8 x86_decode_emulated_instruction EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa76c7444 kvm_gpc_deactivate -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7f94460 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa721c46a kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7c94a33 gfn_to_pfn_prot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8537dff kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8654972 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8a6a472 kvm_put_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa90dfeb kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab6a247e kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac8361fe kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadf88ec1 kvm_deliver_exception_payload -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaef82fec kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf4aa745 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf8c1173 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0a56c1e __traceiter_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0c92e91 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1172074 __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1f30ce5 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2800ce9 kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2aa9aea __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9076e39 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa99699c9 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa51eba5 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaaf33b7e kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacb0a3e9 kvm_lapic_readable_reg_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad868c71 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xada95590 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaeaaddc7 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafa818a4 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb109f2cb kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb197b202 kvm_inject_realmode_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb51b0dfb __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5c32a1b kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb73249aa kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3be4d2d __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3e2d021 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4d1a534 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5375ab1 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb56305b5 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb61814c3 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7395f13 __SCK__tp_func_kvm_avic_ga_log EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba2e602c kvm_gpc_activate -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba6817d3 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba765f11 kvm_emulate_mwait -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbaff7b7b kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb7f1095 kvm_are_all_memslots_empty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb84e737 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb99376ab kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9f1eb2b kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba28881d __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbabc2476 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb494812 __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb91b64e kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbba0887f kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc26ba30 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcfffca3 kvm_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe19016c __tracepoint_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe517b10 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf0f5d6f kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf231357 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfbb13ca kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0407add __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe23470e kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf653c82 __SCK__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfad03ad kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0674fd7 __traceiter_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2477ac7 __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2a63bd4 kvm_mmu_invalidate_addr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4e5c100 __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5b509bc kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1f65f41 __tracepoint_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc37b55eb kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4245332 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4efd32d __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5101b7a kvm_release_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc68b698d kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6e6cc7b __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc669abee kvm_alloc_apic_access_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fe55ac __traceiter_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9085a2d x86_decode_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc953926d kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8a919fa kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8c3b791 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8ddd5a9 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb1a8472 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb979090 kvm_emulate_halt_noskip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbf3a760 __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc51bc6c kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd381cf2 __tracepoint_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdcb8f3b kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce1f1818 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9afe192 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca95b0d7 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbbce1fb __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbc25c7c gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xccf02414 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdc3281a kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce7e32d6 kvm_prepare_emulation_failure_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf8e5e39 kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfd07b44 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcec2e7c8 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf4c9fa0 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd02de259 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd059d0e8 kvm_hv_get_assist_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd129cde7 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1c38c73 kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd34072ad __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0decdbb kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0f9f113 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1421c74 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1997475 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd28182cc kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd33a3653 __SCK__tp_func_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd475c188 kvm_pmu_cap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4bbea17 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd57e0bb1 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd671832d vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8145817 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd95b6f61 __SCK__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaac0216 hv_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdac8912c kvm_init_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc1171bf kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc242c85 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd54dc505 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6165a5e kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9294ca2 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb0d8170 kvm_fixup_and_inject_pf_error EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde556ee6 __SCK__tp_func_kvm_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe176abee load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe18ddfca kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1e648d7 __SCK__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5818ae3 kvm_alloc_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5e6eeb8 __SCK__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe746340c kvm_handle_memory_failure -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe76191c5 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8198ae6 kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe85d7bd4 kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8610bde kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8752714 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8b910cb kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d3c5fd __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe414b329 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe485ea5d kvm_gpc_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6b19ce4 __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7bd18df kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe89acdb4 kvm_arch_end_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9412454 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe97d4933 hv_flush_remote_tlbs_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9ba63d0 __tracepoint_kvm_nested_vmexit_inject EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea4a26f8 kvm_handle_invpcid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaeec2a9 kvm_slot_page_track_add_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb4284f2 kvm_cpu_has_injectable_intr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb489476 kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec43d273 kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed3517ef handle_fastpath_set_msr_irqoff -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed4c61be kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedfb65cd kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee53ec46 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee9590d7 __kvm_is_valid_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef1aa596 kvm_emulate_monitor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeff80135 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef87b78a __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef8beaf3 kvm_vcpu_halt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0e00a43 kvm_x86_vendor_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf23b89d0 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2e8f295 kvm_set_rflags EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3d2f70b kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4b9ffee kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4e2025c kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf50ad0b7 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3a80594 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4aaf34f gfn_to_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf678fcc7 kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf74e26b9 __tracepoint_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7ea45b9 __traceiter_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8938cd1 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf58511a0 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6c8ec4b kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf730ce0f kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7dfc766 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf84dcf28 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8b9b202 kvm_apic_update_irr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfafa6af2 __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc5206d3 __SCK__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc81dcad __tracepoint_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfca5b3a6 kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcbcb155 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd8b0c4b kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc737b9 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe517d22 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd0e745e kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd4bed4a kvm_arch_has_assigned_device EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfec8202a kvm_cpu_caps -EXPORT_SYMBOL_GPL crypto/af_alg 0x02418cdd af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x075c6fa3 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x1440a104 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x21c80286 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x12c559f8 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x17c9a6c2 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1ee64a8b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x20446545 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x259b026b af_alg_poll EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x296ba866 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x48f279ea af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x4622d626 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x488b38a0 af_alg_alloc_areq EXPORT_SYMBOL_GPL crypto/af_alg 0x634264a9 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x9085969e af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x911e5058 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x95e278ee af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xa2a8a3aa af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xba0d74df af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xce03f13d af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xd62d3f9a af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xeb91f1b8 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x9608ce27 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xa3d5d62f af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xb8d66453 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbcae35b0 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd51e21b2 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xd67bfb37 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xf4f4e922 af_alg_unregister_type EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0x7fd31903 aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb498fafe async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1b56a996 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x98423e3a async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5889736a async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe60a0f0e async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x18286536 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x62201c72 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbf3889eb __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc5a98eba async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0c238589 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2d1cb6e2 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x93294c9b async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x93ca1672 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x5ca6da9a async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7574b228 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd30e2282 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x412aab16 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5ddf3838 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x25df3bb2 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x53d9563f __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x68e802ee async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc0646faa async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0ddd90f0 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9cc73521 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc9d65faa async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe89d4b81 async_xor EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xad68195a blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x1f23ea89 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x0fc36def cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt @@ -12573,34 +12574,34 @@ EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x325fc402 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x39521e07 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x3d2374a7 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x692cdb0d cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x87429fcd cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xa3c4f2a4 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb5ebce79 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xcb417740 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xd90d7d40 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xdf09bbf2 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xe50358b5 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xed2e1512 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xf2d0bf56 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x071c6129 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x07993e62 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x280a1e0b crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2a630ee1 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2d6323ee crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3ae4fac1 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3b5b6bf9 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3f3d4aeb crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4b9c9541 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4bb5ed03 crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x52045dda crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x562f4534 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6557bd0f crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7ab37572 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x86d4e82b crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/cryptd 0x00fdeb28 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x229cea82 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x23e2155f cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x592a833c cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x5fd00bbf cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x76db8492 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x80b393c4 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8fccc94f cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa9a6ef68 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbc68c5ab cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf70f20ee cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xfb894f87 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xfc15f623 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2e7419b8 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2ece7f2e crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3243f640 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x49aa5bee crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x55ae83dc crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x65970a65 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x73bb15ca crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x865f09e1 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8b7bc6e1 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8ba071de crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9bf670da crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa4637fbc crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc13b36bc crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd2163976 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe95172d5 crypto_transfer_hash_request_to_engine EXPORT_SYMBOL_GPL crypto/crypto_simd 0x121ca73b simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x54e26aad simd_unregister_aeads @@ -12620,7 +12621,7 @@ EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd6f5cb61 serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm2_generic 0x05c24f2b sm2_compute_z_digest +EXPORT_SYMBOL_GPL crypto/sm2_generic 0x99efff27 sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash @@ -12629,45 +12630,45 @@ EXPORT_SYMBOL_GPL crypto/twofish_common 0xdb05955e twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0b3e8cf3 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0f81d75f synth_remove EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2c4bd598 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x337fc060 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3a315149 spk_ttyio_ops EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4531c76b spk_ttyio_release EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6ac607ec spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x46963536 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6082a9de spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x661e92ce spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x754dd931 spk_do_catch_up_unicode EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x78badc07 synth_current EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x86715cfd spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x895e0c93 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c00e133 spk_ttyio_synth_immediate EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9dcc0ecb spk_var_show EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb67eda37 spk_ttyio_synth_immediate EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc1644a50 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbfc82a07 spk_do_catch_up EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc58f6e50 spk_get_var_header -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd5828f34 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc81b6ecc synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd4392947 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd6801182 spk_var_store EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd93829dd speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xdd5a6efb synth_current EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe33b9dea spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe887d9f5 synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xff98fcb9 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe631d170 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe6da0c2c spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe99d65c1 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x1b610a9d acpi_nfit_init EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4a89bac1 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x9bc0c9dc acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd3015f2f __acpi_nfit_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd6de12dc __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xfdd19e06 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x89c90be4 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa88a77da __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xdcef4715 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe0e71fea acpi_nfit_desc_init EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register @@ -12675,52 +12676,52 @@ EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x4f6c2360 acpi_smbus_read EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x96eb492d acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0c799e5c ahci_sdev_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1657514d ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x26b24ed1 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x31276efb ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x34bf9818 ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38869ddc ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3a0dbb69 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3c4f125f ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x593c0e29 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5e88f63d ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6fb0b4d5 ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ab21197 ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x858bc518 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86ffd291 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a011c07 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x973c72ef ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb0611544 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xba28117e ahci_shost_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbab03cff ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc98c66ef ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd749dc7b ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd74f0a1e ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xda48c6bb ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x086afc63 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0cb1bca7 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0cbdb935 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x139f480b ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1edca773 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x24d64fc7 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x25b953d3 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x30dcca0e ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3300d7bb ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x68d69d41 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x72715920 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c3f0686 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x96b2845b ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa6449846 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbccaa4e4 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbf5dcbdb ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc2fb3e63 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc5fd1f31 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xca1805d6 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd250de5c ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd9e683fc ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe1d599c2 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe3ce5927 ahci_kick_engine EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf96fb8f9 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0350722d ahci_platform_find_clk -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1d696a53 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x204db080 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x32556bca ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x509ae383 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x537b7c50 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x57fb8197 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6357a6f4 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6553949d ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x812942b0 ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8b851f35 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8ba966be ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x92b79620 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9d417310 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa49f7eed ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa7491e10 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xca496e2f ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd34fe303 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd5e4ec86 ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x63a06be9 pata_parport_unregister_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0xe49695f5 pata_parport_register_driver +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf02852cf ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0ace69ef ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x14268e48 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x48a1e4da ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x51c7e0b7 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5c42d126 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6c7fa8af ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7058a661 ahci_platform_find_clk +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7363d875 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x86e44cb4 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9567b310 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa580779f ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xadcf56e2 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb327b145 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbc58d416 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc57abaa2 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcaa0c181 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcca7a42b ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcff033e7 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd97a88c5 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x43732f38 pata_parport_register_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0xc576f9a9 pata_parport_unregister_driver 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 @@ -12756,229 +12757,259 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x56f8cdfc linedisp_unregister EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x61f9472d linedisp_register -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xea068f48 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x2601b884 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x3d346f5e __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xb7b9baaa __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xbb568d1c __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x7a493c2f __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xb3247d74 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x062c2079 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xf880900e __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xf37f490c __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xf9473843 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x72b5cecd __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x21040336 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x3caf747e __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x672d69b8 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xeeb58aba __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x5505f4c3 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x79546927 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x50976e7d __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x8864330c __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x552f594f __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x8d59f671 __regmap_init_spi_avmm EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x12e3a031 __devm_regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x268152b8 __regmap_init_spmi_base EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x89cea827 __regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd2cecae1 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x1b1dd87e __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xcb40fe52 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0f106b12 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19c84827 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1d315ce4 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39bbe797 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4bd32449 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62567de4 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x632085c9 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x65ea8cce bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e4d18d9 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7216d38d bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7acc5212 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8117dcca bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x933ea74d bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0c33152 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa6c764ac bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb0d4f54e bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7d475ee bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc511de91 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc9fd99fd bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc493eea bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe20227b7 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeac200e5 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec55e0f6 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1d3ea1e bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x32b71396 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x65df3c29 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6d8415a2 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9a3b8486 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9f2a3dde btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbef1eae4 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcef7b43a btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe889c263 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4f8780a6 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x52ca9ba3 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x56a164c3 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ca4a9bd btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x837c1563 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8a64e463 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x998673a2 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaa5eb6c4 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4dcf380 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc49fcf5d btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd3d5639e btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeb8f5886 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf1afa003 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf72cdc62 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf8e3e96c btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfb86c1b1 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfd54df98 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x119660c0 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1b9f8c80 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3c516cb4 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6fb1ac61 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b38d909 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x836fc251 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xae8c4752 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb835b298 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3b15f26 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc530ce76 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe97dd054 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x51fbe0d7 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x8913222d btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x924fd346 btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x44036c08 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4f67fdae qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x537089fd qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x57e8bd51 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcb74ead3 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x23257fa3 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2cfdb2b8 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x784610c2 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xc4104a05 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe81a2017 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03b8d8a2 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1091d8ea bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x164e7451 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19a18465 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x31111ce3 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c68b2f7 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4446bc79 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54a02ee9 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x560c5a51 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5c443391 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5fd7901d __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63ca6ad9 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64a585a0 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f1714d5 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d7ffbba bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8073d1ca bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e720088 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e3aa44b bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9e3f158d bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xacdbb541 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xae5d54d9 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf86ffdf bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc05b89f5 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde4bc183 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0b0e576e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0b80bf48 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2443c1ec btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3d60abd1 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x433fe90b btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x43f736f8 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9d7fd74b btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdce56241 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x36d0d65b btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4ce286c9 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x60486882 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6aff73f9 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c8c2a08 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8de28889 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8eaa38c9 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9f356d17 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa446f89b btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa86f04f1 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaf3dd3b4 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf315179 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcfaa8593 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd3495f75 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf06891a4 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf262fef2 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfa25bbcf btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x198c5494 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x32e31014 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4f96c0ed btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x52205f88 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x526b2281 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6874243f btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x98303544 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9906dabc btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb2249cd4 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb480efd5 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbb0fc778 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x1fdcc849 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x411c4a71 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xae627fda btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x11a533b6 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x56b1e0a6 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x71e3f576 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7c51fbb6 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf9a5b707 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x22678d72 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x384a7298 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x51fced06 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6f1221cc btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x746d5212 btrtl_download_firmware EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd3e82789 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xec228b1c btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfd5fde27 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x81f4031f hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb5175f05 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xd12538ef hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xd4efddce hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x456f59fb mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x59191add mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6c859b88 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x74ef8720 __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8e30cd79 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x9b367b22 mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xace97340 mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xec74ec87 mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x075ffd4a mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1563b7d2 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x17f8a852 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1848cd21 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x18774b15 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1ceac382 mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x23ccdfc3 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x33b6cf93 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3df7d92f mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x461385d4 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4ab4e769 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8e109abd mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa04a9687 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xae7041aa mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xafc1aa7f mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb25b4e8e mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xba61fa6e mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc09b8b6a mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcd9ba781 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd2f67e1f mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd51592c1 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe3166f46 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe414c70a mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe5303a1e mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe669a2ae mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe69b44c9 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe7f0c488 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xed533bc3 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xeddda07d mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf16f66c7 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x029d4ee4 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x02d49083 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x09376a0b __comedi_request_region +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfa477e0b btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x344a52d0 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x95bd1456 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb6e20817 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xdc521bba hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x1f7f1d0f mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5e92e412 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6e3e1135 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x80ca6ad9 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x9f14f654 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xaf08f220 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xdd90578c mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe9fe3ffa mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x18aba71d mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1e7377a5 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x318af9aa mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3286d2cd mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x44ffe674 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4f1e30b4 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b9ebd79 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5d2a9220 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5fe8571d mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x612a7372 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6a6dace9 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6c8bba37 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x788f9775 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fa1d41f mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x80910432 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x83b90566 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8b538de1 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9a0116ea mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9a4bc657 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9c404f3b mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa9241575 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbb798900 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbbeb54e0 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd0698577 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd8a1f103 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe26e49f3 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf6dbc875 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfcc6c81f mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfe9533ce mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xff506da2 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x04307f7e comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c5fc021 comedi_auto_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x10db1ec1 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f14f75e comedi_inc_scan_progress EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25386505 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2b5c6010 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2bb2c704 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ee141f2 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26192beb comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2999b2f8 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e101afc comedi_buf_read_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x360c3e8c comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x400611ff comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4205cc2a comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x30c3ed25 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x354b30e7 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x36f50b84 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3745f93e comedi_set_hw_dev EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44f7f8c5 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4c92980e comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44b49bdf comedi_alloc_spriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5afd9df3 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5c61770b comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5f6c3952 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x72bbc3f0 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7699ff02 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7af3a6a6 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b187d2c comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x55e5279d comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5e72593f comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6ac481a6 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6be9fafc comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x71beddea comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7a52f6a9 comedi_buf_write_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x81cfa109 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x88508a5a comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8cfbf0fc comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8f1ffb33 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9a0dc22c comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa49df6ed comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xabfc4732 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8183b339 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8c3f6b56 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d92af86 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x92ec3d73 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa2b3700e comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa4dcefc4 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa717db05 comedi_request_region EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb945146b comedi_alloc_subdev_readback EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbc870d60 comedi_alloc_subdevices EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd369a765 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd38cf7ff comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8a54daa comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbf3a4350 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbf6dfdee comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcf206dc2 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd95bf49e comedi_dev_put EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe6e49d19 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xef7ff59e comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xefc721bb comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf16685eb comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfbcf51d5 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x114db96b comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x12f43e9c comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2dbfff92 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x32704970 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x67c294ad comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x770a8002 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7eca6580 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf76c8a30 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2dbc109b comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x679e47ac comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x6b84402e comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x6f9530e9 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x812e84d7 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xcd433933 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xcfa1b131 comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x31588917 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5ce5fc51 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb915fdec comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xbe33e0c0 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc8ae8b3a comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xfe13fd3a comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcfe4b7f comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe4fa95ee comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe53f7b50 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8c57c0b comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xee98c99f comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xef91dae8 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf141b0d5 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3099e780 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4f7ef2e0 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5eb58d8c comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x75e3ea5d comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8319279c comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8e4d5446 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xcbac1d57 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd2d56b9e comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x3d941db7 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x593f6e47 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x7b68e3f6 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x93e7c4cc comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xa08cefb7 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xb73421ed comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xf98593c9 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2a9c33fb comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x30d82e97 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5acbeffc comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8bc70e11 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa9fd56e1 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcb905b2b comedi_usb_auto_config EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xf4067845 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x62641766 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0a0bfa43 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x23e59cf8 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xff525b7a subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x038f456e mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x10cf1fab mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x20f396cb mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2d8bda26 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3364fe6d mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x37d4869b mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5f840b97 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x64a27a60 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6ba2ebe1 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6ea63a01 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x759c73af mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8959ee74 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x948caeaf mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbb6d6b5b mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbc138944 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd91dcf97 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xc5d3331f addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x2b32a6c0 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x3678ee2d amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xa3f81cea amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x100a7ad2 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x11976b0a comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x14be3cc9 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1d910a3c comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3dcef363 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x589ffe28 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7898d9d5 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7b729725 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7cf9fe8b comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8ce5727b comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb70e9873 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd9e3541f comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfed71e83 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x8782ff10 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x8d9cd17f subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xb5ecac43 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x216c0fcd comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x7bdf70a5 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xd79e511f comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x513f6cc2 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3d20cd01 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x51473e54 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x54772498 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5ef97b8a mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x66dd5aaf mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x702b7f7c mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7db54e9b mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x891c4514 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9e9f61ec mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbe5b7a48 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc0a04660 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcba8851d mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe907444b mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xed5a9cee mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xed9f1dfb mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfa7eab99 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x672b56e8 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7ca13987 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x3aca4101 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x5afb40d8 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xa8af8255 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf1eabd19 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf1fd502d labpc_drain_dma EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12989,35 +13020,35 @@ EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x27df551a ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x27e48458 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3648a668 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3e03e97a ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x48ce9f8a ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x525792fb ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x74fdc56e ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9f8d7e05 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc055d8f1 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcce721c3 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd6277963 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe9f63a0b ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xeea72602 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf0c21670 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf3ede84f ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf523aa8e ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x181fb34c ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x41d1c426 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5a36f944 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x973d9d72 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc932dd2d ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdf64c571 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x196acdd6 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x43ec2518 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x47d851f7 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x695322ef comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x90433c40 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb3c7cb2c comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf4005cff comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x17cc2561 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x60d7f220 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x649aad41 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x79fc06dd ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7b699f38 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7db205e8 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x84c3a6b8 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x85fa72a2 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8891f6c4 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x92fde517 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x936b1340 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9be61ec0 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa8729326 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xac8fe223 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xda9db975 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe47c8ea2 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x275f0826 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x778d726d ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa6ac2400 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd36310c4 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe318344f ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xed8919ea ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2838d21b comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x95f2bca1 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa28e208b comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xea1421f4 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xef0c52be comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf2ee496c comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf4907dd9 comedi_find_subdevice_by_type 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 @@ -13026,134 +13057,134 @@ EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4574a8f3 sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4ab05989 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x6ea40704 psp_ring_platform_doorbell EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91ac6a91 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x98a356de psp_send_platform_access_msg -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x9b4e2682 sev_issue_cmd_external_user EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0048f474 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x01ba8d2b adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x043998d9 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x075ede0d adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0a383273 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0b865454 adf_dbgfs_exit -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0e5c1cca adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x14ca4e4b adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x16633557 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x19d1d518 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1d5eb7d8 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1f92c224 adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x279324e2 adf_dev_down -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x29bb2d44 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0d2031c7 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x145c060c adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x16389036 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x22fa632e adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x252c00fa adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x28ceeb9b adf_sriov_configure EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2f30847f adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x38ff003c adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3cefb91d adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3ded0415 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2c1a3c5b adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2ceae13b adf_dev_restart +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2d5b699f adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2fa89981 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3322ab71 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x368e70df adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x37bbcfd4 adf_pfvf_comms_disabled EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3f5fea30 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x455d9015 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x469ef668 adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x48a6d5ff adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x48e34552 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4c902b59 adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4d7693da adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x52259163 adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x52f6b3ca adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x532598b1 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x57358f84 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x58a051d2 adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x58df455b adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5ab618bd adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x65f00b0a adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6660e0b3 adf_dev_restart -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x69ea03a7 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x703ea780 adf_dbgfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x75789c57 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x780637ca adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x791c86bf adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x871e5f8a adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8d1cadb9 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8d7e0426 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9fb0639d adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa2637132 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa449dce4 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa5dc5070 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaa4daf9a adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xac4902ea adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xac9ed18a adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb958ead3 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbb478bcb adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3f673310 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x44738267 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4ca560e6 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x53d09a6d adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x57ab6323 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x585bd2ca adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x62c997e1 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x63f88648 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x652a12a2 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x68d42d60 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6b329953 adf_dbgfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6b4f5fc6 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x703f5007 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x71d019b8 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7aad9c23 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7bbecf5c adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7e87b4aa adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x86326611 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8907dfa3 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x910e221a adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x96cf5a25 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x96dcf95a adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9c280640 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa72c8068 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaa86c762 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xabb94f2e adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb85c4ccb adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb8f17c19 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbacb6e1d adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbc3a1e4c adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc147fcd2 adf_gen2_set_ssm_wdtimer EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc9728543 adf_gen4_handle_pm_interrupt EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd49702e7 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd0300001 adf_isr_resource_free EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdbfe167c adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe27710e1 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd830a46f adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xde9c4a96 adf_gen2_enable_ints EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe3dc2d61 adf_gen2_init_vf_pfvf_ops EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe9d477f4 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xefc734fe adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf3e07895 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfcc1062f adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeb149c05 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeb74b718 adf_dbgfs_exit +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xebcf5522 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xefe62924 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf207181e adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf3a14e4f adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf3ba1871 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf666807a adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf9c9ab91 adf_gen2_get_accel_cap EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x41d3dd6d free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x53e35da3 alloc_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x69a69497 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x305d6ac1 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x3156d09c dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x71535e8a dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x753ffc45 free_dca_provider EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xbb4d2c29 dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0xbc0f644d dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0xc49cb48e register_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xefd27241 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x9b0a5020 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xfbf96879 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x11d3cd76 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x46924100 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4fc734ab dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x504e37f7 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x957760ca idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa0213d9e do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa3aae5a6 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xef72bcd3 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf74bb37c dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dca/dca 0xbca0c206 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xd2a5cee3 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xfd298b9f unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x81efdac1 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x98fa88d3 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x20112bea do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x63b9ae2a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7432cfce do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x93bdf333 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9b36334b dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9ee99201 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc105a065 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc922db01 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe0d14ba5 dw_dma_acpi_controller_free EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x21cb3539 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xd8effcff hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xf99e3a2b hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0be1a4d8 amd_unregister_ecc_decoder EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x8592d892 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x4ca76424 __fw_send_request +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x40e9cdb0 __fw_send_request EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xbcbd8ba6 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe4c304b0 fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x54568310 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x02436ffd dfh_find_param -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x02933491 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x104a0a7c dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x17bed5df __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x274d12b1 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x29b8284d dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2abe0b3c dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e273711 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x554e46de dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x55fbdb40 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5dc9c624 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7987e44a dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7ab134c5 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8f32467c dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9111a7fd dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x934bb48b dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x95bd6a20 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa3880e16 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa7ceb85b dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaa408260 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaaa38908 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd4b8f451 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd830ddb2 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf22af6d4 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0453d1f0 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0a357522 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x192274ee dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1ae1d7d3 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x217178b5 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x38a7d983 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4c8f897a dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x618a5524 dfh_find_param +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x815d6cd0 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9340adc5 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa26cc98b dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa624c9be dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xac076975 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb0401476 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbac25b6c dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd4230c2 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc4f4f2e4 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc5aece15 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc6619b13 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd1826dfb dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe4fd724a dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe99b5095 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfa9fc9a5 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfd3647c4 dfl_fpga_cdev_config_ports_pf EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x07e1b87e fpga_bridge_get EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put @@ -13166,34 +13197,34 @@ EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xae27dc20 of_fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc5461775 of_fpga_bridge_get EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe88df624 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0797174d fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0bf6f4f5 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1cdf4ee6 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5db289b9 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x673f832c fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6d9d93d4 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9534c16b of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa412536d fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb4a11ac1 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe27cb654 devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfb4d3207 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfd693d33 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfeb3c850 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0795b579 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1a55d391 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1db62bc7 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2daea8b3 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x599fc417 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x644addc9 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6db78e31 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f9ede5d fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x90fb8db3 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x99c1a940 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa79eecc7 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xddb125cd fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe8feeb61 fpga_mgr_register_full EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x44290279 fpga_region_class_find EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa8ce7287 fpga_region_unregister EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xd04a75ff fpga_region_register_full EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf475eec2 fpga_region_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf87b0fff fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x081615e4 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3a40b2ee gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8dbe9bf5 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9fdbfd11 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc69c4fb4 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x02d20a71 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x114ad834 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3a351b25 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd604d149 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf5b26705 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1bc8d8bd gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x55a033b0 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xaa73672c gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe83ca615 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xffed6fce gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x136d7f2d gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7d5770b5 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa85ae6bf gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc2f73684 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd043d6e8 gnss_serial_allocate EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init @@ -13205,265 +13236,265 @@ EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x66c70c0e devm_gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xdf7ad2e7 gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1177e5d4 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x30560269 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0c93e62d analogix_dp_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5e80c659 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x756debbb analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9157650d analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa04e3754 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa603c0b1 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf1760127 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x6b86e4f4 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13d88ff7 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x14b764b8 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x15b164ce drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x402e8eed drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x567232d8 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4b48b75c analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5a5f3847 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x623dadf2 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6dd2355f analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x80703fb9 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc21ff9be analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc3de8d16 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x3c61623e drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x061b4c89 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x19ca394f drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x275b3c1c accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37a54f73 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3c3cce0b drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x46f365ac drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x55476054 drm_class_device_unregister EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86ccfd64 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x95bccd8f drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa2b81d07 drmm_kstrdup EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc69f06f0 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xda068dd2 accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe8b90f23 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee751900 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf09de724 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb71cd4f4 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb7c79d24 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc29efbf2 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc472543c drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1e0f5a1 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe21e2e2b drm_do_get_edid EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x289ec362 drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4d7471d9 drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x59e95f9a drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5fae862a drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x992f9a62 drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x9beb3af1 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x9e3f0ac9 drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa72c56b7 drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb79bf037 drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xcc1e20fa drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xe0e834bb drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xe49827c5 drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x155535bc drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x34d2b27d drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x38bc55a4 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x56d3c444 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x68d93ce1 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x95a75341 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc4fa583e drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe01aaac1 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x48f8ab4a drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x507d32b0 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x95477a6b drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa834395e drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb1129b91 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb7cfa6d7 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf634cb04 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf6aa5308 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x023a1e45 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0369514f drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4feab14a drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x538d2a7f drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x6101145b drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x64c7ca3f drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x6a3dc388 drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x72cd5ff4 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x75fdf7f8 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x993e8515 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa69b900c drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa739b67c drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2d187d97 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4a9c9a28 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6e1f9900 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x71c9e979 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x94e34eae drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x95b3a160 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc1328496 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf1f80e7f drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x04279bae drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x46e641b9 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5ceda414 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x66299e74 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8be71e3c drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd42f9952 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe2c505f0 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xfe738fc9 drm_gem_shmem_get_pages_sgt 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/solomon/ssd130x 0x093a848b ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x3c13a4c3 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xe4a4c2b2 ssd130x_remove -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04ae76b9 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b54a828 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0c9e47a5 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0fa33f89 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x20a2b255 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xc254d2c7 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xfe73e5e4 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00c3f0d4 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0131ce3a gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0cb3113a gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0e44af32 __SCK__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x121a4586 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13307db8 __SCK__tp_func_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x168982fa __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x179f16e0 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x180f122f __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1afd7dc7 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1bcade04 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23547f7d gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e15d9b6 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2fbe123d __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3709c8a8 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x39b3e7c0 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x424240b7 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x463d28e4 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d29a678 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e5f0081 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x511130fe gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x520b0531 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5f7a957f __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69267e23 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a139e86 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6dbc30e2 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6df5f20b gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x74fd8de6 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7540824c gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x198d350c gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f18016a gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2116c839 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x232fc5cd greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e5aa7c2 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2edce6d7 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36947dcd gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x392b4c2f gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3edb014b __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x40513685 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x413fb812 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x484d2129 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a879ce6 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5219d6c5 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52b3cc78 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x54bcd3af __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6108e6bd gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6132248f gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x640ab7aa gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69084c12 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69633381 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69726cc8 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72f16513 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x738e80bc greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b025d5b gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8944c406 __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9481247c gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x99da3e7f __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa1bf8572 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa8eadace gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xac173f8e greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ac78eeb gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84be22a0 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85c85652 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8afecdfc gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92358d67 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96813e97 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9fc58000 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa350d4a9 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa79c3a2 __tracepoint_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb47a464f __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7ecfef5 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbc858d31 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbdd2be20 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb87dd6dd greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbcbd22e0 __traceiter_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc17e4cc7 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7a89429 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc84aea26 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd61522b3 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd96dec25 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdd7df2e9 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe0381b2b gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1da8e20 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe431401c __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4386dca __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4fe66c7 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe56e495f gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe575ba2f gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc01e1146 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc4055745 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc4624095 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xce3eeee9 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd60749c7 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8b22a33 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdd93e04f gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe5565718 __SCK__tp_func_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe7caf60f gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb0cb78f __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee865384 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/hid/hid 0x01d258d2 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x03093dec hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a30c205 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x15cd4eee hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x17b15ba7 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1804663f hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1899c6a5 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8a3ca4b __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe9dd6309 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed334bfa __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf8a222b8 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfce4609f gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfddd65d9 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff4a77c7 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/hid/hid 0x046b9b79 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09df095d __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ef594cf hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x106d0025 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11b30cee hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11e98685 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14f32211 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18a7d11e hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18dae8b5 hid_parse_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d5eb9d4 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d762a9c hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f2a74bd hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x23279a09 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x244fad98 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a821d44 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x39cba7f1 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x53315262 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x54398b95 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x571dff96 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e841a69 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x601e1447 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6aca077d hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6bfa8b95 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x706e70a5 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x720bcc3b hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x72cc0ccb hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x73db3436 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7856d124 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x794176c3 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x79da9a7d hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8025669b hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8aac6854 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x22594c7b hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a25ce84 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bdabefe hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x324c0482 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37ae7fad hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x402efc74 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41896fbe hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5129b290 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51fedd7d hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x538e8624 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5444aa58 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5be12309 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x679f634c __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f3fb304 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76340ffc hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cc6e451 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d79224b hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8187007a hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a203152 hid_driver_suspend EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cd6bdde hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9285f4f3 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x93520a8a hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9834a9bd hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x98e223a9 hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c5b3f40 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa70a32ac hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0xab77c000 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaceb1246 hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4aeaedf hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc706e98e hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd08cd00d hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2d5579b hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5c1dda6 hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5fba06e hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1dde593 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe9ff3d85 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeff7bde2 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1d4cef0 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5511a69 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x90f343cb hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93f7cc79 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94b43fce hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9dc38eeb hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa112577e hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9ca4735 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa5df815 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1698226 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3556d52 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb6c98dae hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba840597 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc15b7897 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3b2c6b8 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcca54b66 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xccf2af55 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3059469 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf8d7c8a hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe493ff4b hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb2178f8 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xefd9b796 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf3b025a5 hid_setup_resolution_multiplier EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x12e72db8 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd58be4f hid_driver_resume EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2bb676ab roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x32878c35 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x354334b8 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x46078e7f roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbb38f632 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xccaac5b2 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x17bb4dfc sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x233d5fe2 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2c4eac62 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2f4bfba2 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6fd6aec8 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x90f7d708 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcd10e29b hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfd3481d8 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfff17628 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x0a217997 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x8c5407d6 vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7f660430 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa19911b8 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xba754d16 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc1594a04 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xc770f349 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x292f85c9 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x92c9dab4 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x99516e30 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbfbad5a1 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdffea8d1 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xecd8266b roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x150fa97a sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x513c3f74 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x70136659 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb78ffa98 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb888cf52 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbba1729b sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe134737a sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe6806407 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xea959a93 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x9ce42d85 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xe1537bd3 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4ad472a0 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x5a2e0235 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6715421f i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc3766985 i2c_hid_core_shutdown EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x2298d3f8 ishtp_wait_resume -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x1943a010 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x89c907e6 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x96374cb9 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x0e9ea9ad hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x605d3428 hid_is_usb -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x00d924f2 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x208660c8 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x294c6dcb hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50f5cdb6 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x05ad5e53 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x4908a5ae surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xf0b069b9 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x88558f49 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xfaac8769 hid_is_usb +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x011fcceb hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0862be5b hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4636c39b hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4bce7fa7 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50ba0bfe hsi_alloc_msg EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5c706e8e hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x81b10cc9 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9cd594a8 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa2bf9376 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa879f95e hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb64983f1 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb7bc5513 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba77fdba hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbe216fdf hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9229a88 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3409a97 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe38da07b hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfad05800 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0beb64d3 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25fb9fc2 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x27d27137 __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x305ae32f vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a0b5536 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a74c572 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a789e02 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d830f1b hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7f7b5169 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x81732064 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x82654706 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa188d9ed hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1b3a196 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca549cbf hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe33ef250 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xec18a135 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x033d4eae vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1885984b vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f25d7cf __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x27a4278c vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2c0f3239 vmbus_hvsock_device_unregister EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3a3cd4bc vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3ee20f7e vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4645d80d vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35b23fb8 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x384c9f6b vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x41447a6d vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x421bd6e8 vmbus_free_ring EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x584b6de1 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x633d9e0f vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5f2a8b05 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x63dee306 vmbus_next_request_id EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6910c919 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x691a0378 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x693e9251 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7a57a294 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7a79b6da vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x88219fad vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x88c58b4f hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6d16a4f vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6e16508 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb1bc850a hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc15f2c6a vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdf75b142 vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe72d5c51 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe75c1e3a vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xea5e0a51 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf5094f34 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf5e3f9bd vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf607f904 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf7ccdf71 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfdb0a7e2 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7d7ceaca vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8453558b vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8812c159 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa8778e3e vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xac52ee39 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb479e451 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb728a24b vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb8ba0b71 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbed4ba5c hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc3c66d9f vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc71e19c6 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd61dccae hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde9415c1 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe40cc405 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xef191a74 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf6de8c1f vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfaa2c891 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfe5418e5 vmbus_set_chn_rescind_callback EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x58c33b57 adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match @@ -13475,70 +13506,70 @@ EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc1f0b1e7 nct6775_store_beep EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x6b16b04a occ_shutdown EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0xfc4509d2 occ_setup -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1e787a12 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1f0c6043 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x248d9ace intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2cee3225 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4bfc1dcf intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x973395c3 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd2618403 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xea071c9e intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf8604eda intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x02e3144e intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7e74a679 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x88b35cf7 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x09ec32ed stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x11436e67 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x542c52e0 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x84e4e952 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x96dc2520 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xafa51ec7 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd77bffb7 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2c148c8c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x51ec40da intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5272ee65 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5a535625 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5de037b0 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5f89f15c intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x824e7dc2 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc774bc78 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdc05c22d intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x10da91a9 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa0db6672 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xabdc7a1f intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1179a869 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x22bf83e2 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa0baaefa stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa6982ca6 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcf4bca43 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe059a1c2 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2b36bbb stm_data_write EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xea2eb3f9 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfb53d305 stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x01568cce amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x191809d7 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x1ffd834f amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x50a14c3d amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x711c8fa4 amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xeb8b6421 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xf2a49cc8 amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xa1305d99 i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xa055a021 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x506b64b1 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x719b8024 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x72df6951 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7ab71322 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x12e1b2fe i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5b3651b3 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x00662f4c i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1ad4d1ca i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1c59edae i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x23bd2fe1 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x29d51a46 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x319c1db2 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3b3a8b88 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x40c312e6 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5152ff45 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5b7c4f98 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5cc930cb i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x658982c4 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x69c24700 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6bc44e43 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6de84781 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x749699d6 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf674a70b stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x55b89764 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x85e98ac0 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x8ca9267b amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xae127dcd amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb06f6ce4 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd0a27e55 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xfaf48d4d amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xed4ba03f i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xc1da89d0 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0b1a0d6e i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x3a85343a i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6595469f i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf6542bd4 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x34cb3028 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3e7b6e00 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x084dd77c i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x10cd56bf i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1216f338 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x21c5fcb6 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2bed3d28 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4a664e53 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x523d58fd i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x548dfbfe i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5c77dda1 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5d08b4e0 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5fc0afb1 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x601dda83 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x611eef82 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x62b3a8d4 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x643c3635 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x65fae8d7 i3cdev_to_dev EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7dd7e426 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa5c683a4 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae105193 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb94b5f06 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6fbaf18 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xda2c0c1d i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdbf2151d i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xea8f2433 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xebd23d1a i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x7de59c51 dw_i3c_common_probe -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x92ceee9d dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9494b1eb i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x963cba94 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xab610a2b i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb6e16e40 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbb78289b i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcc015498 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xccc927da i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xecad94ba i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xef47ddc5 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x4b3f1c80 dw_i3c_common_probe +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0xaa77bb95 dw_i3c_common_remove EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1ef839f6 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 @@ -13546,26 +13577,26 @@ EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7c7755a2 iio_channel_cb_get_iio_dev EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xe111d230 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x45bfc802 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4649195f iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x604cc334 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x62bc6abe iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6471e25c iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6ceac73b iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7f200f21 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb0bcefea iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xba2b5b4f iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc62b5061 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc7a470da iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf27aed30 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x084d4751 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x03d766a7 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1520bb99 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x48e42ffc iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fa7ea25 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8d37d820 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9fff47da iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa496fd7b iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xada577e8 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb77f0107 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe2fbd5e4 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xed42e891 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf3a1fb22 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xcd77a328 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x29c53140 devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xb6821230 iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x98d91acd devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x998ce66a devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x3640f82f devm_iio_kfifo_buffer_setup_ext EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x149a1cec cros_ec_sensors_ext_info EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x38574004 cros_ec_sensors_core_write EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x52a4ccff cros_ec_sensors_core_init @@ -13578,121 +13609,121 @@ EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd5ebe088 cros_ec_sensors_push_data EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf948f960 cros_ec_sensors_read_lpc EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf94bec19 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x20d1d4fb bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x4cbbb032 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcebc9256 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x053f7f26 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x59813461 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa0e9b47a bmg160_core_probe EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x562a1cb7 fxos8700_core_probe EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0067fa7b iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x069528a9 iio_device_id EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0867940f iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a53468b iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ab28575 iio_push_to_buffers_with_ts_unaligned EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cdd78c7 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d5cef09 iio_device_release_direct_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e469fa6 devm_iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x107447fa devm_iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x111dd1e1 iio_validate_own_trigger EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1896b44e iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d31da7f iio_buffer_put EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ded7f0c iio_alloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f179a41 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20e15607 iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x21656aba iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22b4c8e0 iio_enum_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x287c5a28 devm_iio_device_alloc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a28e67d iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d68bb08 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ecfd456 iio_buffer_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x481d1983 fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a7dd9e5 iio_enum_available_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4c7e2c4c iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d5dc6cd iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dae2f15 iio_device_id EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ec40935 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4fbcc03e iio_validate_scan_mask_onehot EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x504c9dc0 iio_map_array_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x522bb990 iio_channel_release_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5313ce20 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53751cdf iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55ef0783 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5857d910 iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x59b9dc43 iio_read_channel_offset EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a170982 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b45c71b iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6047ae79 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5aed2359 __devm_iio_device_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64279956 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x693d1fd3 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b8dfb1d iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f0cf8a8 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73caef3d __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75014591 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67ec5287 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69a7fa5d iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69e9c69e devm_iio_device_alloc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x76cc624d iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83d57c60 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81421de7 iio_update_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87286220 iio_map_array_unregister EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89c5c1d6 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96b6906f iio_enum_available_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9791c25a iio_read_channel_ext_info EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98087290 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7e4a90b iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa1ebfb0 iio_write_channel_attribute EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae94ceda iio_write_channel_ext_info EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb4bb3c1 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc0a79c0 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd188cc58 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3385243 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce79548e iio_device_get_current_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd57d5e22 devm_iio_trigger_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc94c99e iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfd96893 iio_pop_from_buffer EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe15501c1 iio_dealloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeafe1d09 iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec5dff2f iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeece3d10 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef7c1964 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf56e0a71 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6cb5e70 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf07f133f iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5e03690 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf89cb85d iio_buffer_enabled EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2c72a29d rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x408c269e rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x41bc1972 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4e1bfd25 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5afb8223 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x702d9325 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7aae8c64 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x89924464 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x89b74d43 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x91403a7a rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x98d2d7e8 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe3459ee3 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xe86008ba input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x92dcfe08 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x15c7f727 adxl34x_pm -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x4708199d adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0be869b6 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x28ffebaa rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x446a30eb rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x44dbc09d rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6f006ea7 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x70019d27 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x79589d49 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d6ed1c6 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xacc3b73c rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcf89b176 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe6ba771b rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xee9e9e5c rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x5a7ad407 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x463750fc matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xcea15efb adxl34x_pm EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x21cec730 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x22f7937a rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x392d5aec rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6a83ed34 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8c81ade2 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9fd18419 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb13340d2 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb2bc7110 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdf073705 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdffe8c02 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe978e37b rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf034d93b rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf3fb9340 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2afe1e1f cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa2cdc374 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa39d9066 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1fa533ad cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8510565b cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe34e67e1 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf575e2ef cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x38f61a18 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7f95a5ca tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8bc31910 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf063a718 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x018727ce wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d3f5499 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x29ebc24e wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2f8cae94 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x36d9fc0a wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x537d481c wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x642c21a2 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6be61518 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9e1d788c wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad267e1d wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcd2d2750 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd0933a0a wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xffa87570 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0594ab56 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2d8f0fdd rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x50bff5ed rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6472151f __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74354da1 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7eb690d9 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ab55e7f rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x97303dc4 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa1d1b2bb rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa3dd599c rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xaae15327 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6f80521 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbf87403e rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x26a5fbc6 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x492181fa cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfefc7d3f cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x22ccbe76 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8fd1bfd0 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x847b7e92 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x9df6f687 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x232f9460 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2b1af4b2 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4b09c983 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x842fa39e tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x059e421e wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x165d912a wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x287159e0 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x533770c4 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x74f5dd40 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7d26d1f3 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x87aa23c3 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9b16fc90 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xac32cc37 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb18cd16d wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb8b3fa41 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb91fe02 wm97xx_unregister_mach_ops EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1137f7d0 ipack_device_add EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x165ff3fc ipack_device_del EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1fcd226c ipack_get_device @@ -13721,159 +13752,160 @@ EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get 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/md/bcache/bcache 0x0333ea34 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x03f6d609 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05b455ce __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08c8012a __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0af64dc2 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b79ce2b __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e358a8c __SCK__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x12834e88 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x161ac130 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1667a7b3 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00b08db0 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00c1fba4 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0865ed73 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08703100 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a6b62d8 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f043812 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x146a816b __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1ad8e00a __SCK__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1f2e24e4 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20277095 __SCK__tp_func_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24e8bbea __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x24f3a713 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22bbafc5 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2474c480 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25af4b93 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26917b4c __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26a7f465 __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27a93f69 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27e73ce0 __SCK__tp_func_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b2aea29 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2d7a7068 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2aa5742a __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2c65bf86 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2dbf8ee2 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e0b8c2a __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e99b23b __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2eeb3625 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x34434765 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x348224a1 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x358a5683 __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x38074ed5 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x384a1a89 __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4055159f __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43363e02 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a53af41 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b8f9f07 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d812574 __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3db52e93 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x427f04bf __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4467589c __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44716d0e __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4552112d __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b797d77 __SCK__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4cbd0bde __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e15aa17 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56707fba __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x56c6b62f __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5825bbf2 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58845b78 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x588ba859 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b1e1011 __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5bbae2cb __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5c725ac2 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c2256c6 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e256e8c __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51efc03c __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52097d50 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53853b2e __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x57396d2c __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x573b0806 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58506158 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e9c3378 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ec73f95 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f7529b4 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x60b1c760 __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6421962e __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66395545 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66ef951e __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6c17aa0a __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d83a02a __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70df84fb __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7272605a __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x72dc0621 __SCK__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74709ee6 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x68a811bb __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6bf63122 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f1e8c70 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x700944a0 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7107f89f __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76ef40b4 __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76f32191 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x760487ef __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x779a7761 __tracepoint_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7ae60cef __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c84beff __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x791414f3 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7990c2b4 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79ccdcd0 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7bcd07e4 __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ce26408 __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8eb01bd5 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x934dd24e __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9378357a __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97236637 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x82c2750c __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x853b7cd9 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87955ffc __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f4f52d6 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fbe21e8 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93bdf190 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95249e99 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96bd2887 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97140feb __SCK__tp_func_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x992b5153 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cf300a6 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ba0b377 __SCK__tp_func_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ed1a81d __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa0f89165 __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa1ee9f0d __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa6bd2ae9 __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7afe1ee __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8539b3f __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xace4d600 __tracepoint_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae2f8131 __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1b95bf9 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb250406f __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3f3f061 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb460747d __tracepoint_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9719648 __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb3f5e2a __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbcb0cd03 __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe2b100d __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe8291f5 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc18da1c1 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc2299a0f __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc241704e __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc30e3296 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6e52750 __tracepoint_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78fd362 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc821d3d2 __tracepoint_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd59451bd __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd696076b __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5368d09 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9440133 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb5e625c __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc72e2c3 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde7b81f4 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5702a4c __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7179c0f __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xebe6e35e __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd62f4a3 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0647928 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2701037 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2ceb38b __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7f1e719 __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedb7276b __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf126cd1a __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf491cce6 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee3440ef __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf388c2ec __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf49c26ba __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf82b6d25 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8e36aec __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf86d91ff __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8b3ebf1 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfa2c082c __SCK__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfbc217b5 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfbcd12d5 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc3432be __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb8b4830 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfca36fec __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x05686c80 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x077005cb dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0a764b8c dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd902c2d __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1de1c007 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x25a054b6 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3518b533 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3e8318d8 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x493d9ef2 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x53134532 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x652fe79f dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x32e23026 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x55583fa1 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6755aa96 dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x74c62bb5 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6c4a0f85 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 0x86b8dfbb dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8fdac52f dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x98746c9e dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9d4aa9ea dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7d666059 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8a266fe3 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x973d9c51 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab31fbf5 dm_cell_lock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb2a2e639 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb4c2246c dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb647b28b dm_cell_lock_promote_v2 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 0xbac5aea6 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbf79fd37 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 0xcd712e13 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcfc0cbf3 dm_bio_prison_free_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe96b1490 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf5e2f63c dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfd47a365 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde977320 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 0x24772bfe dm_bufio_get EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2fdf9cf7 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x656100cc dm_bufio_client_reset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard @@ -13887,7 +13919,6 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9ee7418 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size @@ -13906,14 +13937,16 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65eea825 btracker_nr_writebacks_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8c62feb4 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbd89a627 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcdf4a8c0 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbd493faf dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x97c1aae7 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf818a76a dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x28081a30 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe23bf1dd 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 0x03208216 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2c9633a5 dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 @@ -13922,17 +13955,15 @@ 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 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa4ed736c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x81d47265 dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa691b3d2 dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb2050093 dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb6b69a4d dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbada3e90 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 0xc8efcec3 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 0xe31fdd35 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe6c4eb07 dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd0a4f24 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 0x01f7c2b0 dm_btree_cursor_begin @@ -13983,7 +14014,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87419c51 dm_array_cursor_skip EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x89804dc7 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8e057e61 dm_array_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x900896b9 dm_btree_cursor_skip EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x91baa32f dm_btree_find_highest_key @@ -13994,6 +14024,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open 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 0xa0bc1801 dm_btree_cursor_end +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa686dead dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa99029b9 dm_bitset_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb940af6a dm_array_info_init EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbdde4031 dm_btree_empty @@ -14009,75 +14040,75 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xedf5036f dm_bitset_flush EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x153947f8 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1b83faa1 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1d31dbcf cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1f9a0284 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x378d16f0 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4182d17b cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x50a78e9b cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x53f96e56 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5cb8f26d cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5f5560a8 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x758ed04f cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x79ce49a8 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1fcd9140 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x23de4991 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2bb27ee1 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2e1826b1 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x326327b0 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x35e8c06c cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x41fc1d12 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x460d4890 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x586abbdb cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x667f0d81 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6cec96cd cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x825aa065 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x84d64cc4 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x97311b77 cec_transmit_msg EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xae2eb008 cec_transmit_done_ts EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbc239555 cec_pin_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc29524f3 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc5fc6ed3 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd89133ba cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd8ba7290 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdf46bf97 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe01f7139 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe0ddea3d cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe685c954 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf2f6642f cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcb2e801b cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd04eec4c cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd4a21ce3 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd61e1ae1 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9827472 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xecf9bbb3 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xee4e0938 cec_notifier_cec_adap_unregister EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x04773fb0 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1a2253ea saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x22de13be saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x48d87632 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f298174 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8213e786 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x82cebcca saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9a5e091e saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa307c0d6 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3121a82d saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x34f2a93a saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x38e25a2f saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x937c03d0 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x94d081ef saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa4672169 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xba979cda saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc13b8198 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcd8e1785 saa7146_register_extension EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe4113d9e saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x02fc4bd2 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x06c2d428 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7d96e071 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa6b33c3d saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcede8fec saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0b94618c smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x120402c1 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xebbbff51 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x10279324 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5d09ba4c saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc37b3cbc saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd5f171d1 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdb33e710 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x00306fb1 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13246b3d smscore_start_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x33556717 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2f5dad55 smscore_register_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x38451ddd sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x424c8d59 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x44ea940c sms_board_event EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d2055d6 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x55357fe3 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x644030a0 sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x64c9ff08 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x47a6dc4a smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x718f935a 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 0x7b818a55 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x75cfffce sms_board_setup EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7f0fcc7b sms_board_led_feedback EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x85375f83 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x85df1cce smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90a5c97d sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x98252729 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9450b8a5 smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9e761858 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbb487c61 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb20b30ae smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb2b1b9dc sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb8e7dd49 smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xddd97c03 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3ba40aa smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc681bb2f smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcdfd0606 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd6f21180 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa1dc962 smscore_get_board_id EXPORT_SYMBOL_GPL drivers/media/common/uvc 0x08c5db3e uvc_format_by_guid EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text @@ -14096,425 +14127,425 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0702dcee vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1cd275cb vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24f0ced7 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x05f682c3 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c2afceb vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1faf1e10 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x26b5a897 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x28fd80ff vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b5551d5 __SCT__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2e5bd051 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x30413ec9 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x379e508e __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b69e515 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3e627e0e vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x403b3b53 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4052e9f5 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4abb49f1 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bc36919 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2e3a4767 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2f2632a9 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x38da8266 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x495ef6c4 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b1cc753 __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ed3fb1b __SCT__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5d85ba1e vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x675fc3a8 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7bf1943c vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7c4ece47 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x81d73b45 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x855ca6bd __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91b26a16 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96c32625 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9e84e94b __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa279b4be vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa421146f vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa7373bfe vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa800f03f vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xac72cac3 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb4062425 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb73edeb2 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f234a5c vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x56e24c03 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x57572336 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x612d8375 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x63f0e949 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c5550c6 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6d127d56 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7634dd39 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8657bf08 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8f99f3a8 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x992eedda vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9b7e0920 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9ee82717 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f758a62 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6b7902c vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc9c0bd87 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcccc036c __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd1bbc848 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd4ca1a3a vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd575855c __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8b5e170 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe18cc668 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe43be172 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf3b1ff0c vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xbfac1f03 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xd1151e81 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x8064c7db vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x248a4fde vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x03b98e51 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x06078f07 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x098c4401 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0b8ae71b vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x13a4603d vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1572fcf4 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x168e8713 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x24e28e18 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b990c96 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x31ad65dd vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x37f358fe vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3c13b3e8 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5049407d vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x54ec5bf6 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5512805f vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a18ab3b vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7f86a139 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8727706e vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x93882ae9 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa24166a3 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa24e5d11 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaa2a0880 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xadee90b2 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc81403b vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc2a68f3c vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc5d83d45 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcae0833d vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe2322e9c vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe6c1ace1 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf039dd2e vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1c05072 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf3dfd74e vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf98f24ec vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff0b2503 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x685c15a6 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0b46ae5b dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x86ce3d86 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa29d420d dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x7b093cbc as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x5bff0052 ascot2e_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x8c72feff atbm8830_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x0d8ac628 au8522_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x46890482 bcm3510_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x991a4466 cx22700_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x71d8034c cx22702_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x3d14d3c9 cx24110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xb0b56e36 cx24113_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x6146099c cx24116_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xd66457ce cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x02f2fd6a cx24120_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x73853126 cx24123_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xc0e123eb cxd2820r_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x50783f2c cxd2841er_attach_t_c -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x72718152 cxd2841er_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x54369341 cxd2880_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x60a26bfa dib0070_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x67174669 dib0090_fw_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xeb1fd0f4 dib0090_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xbdb549b4 dib3000mb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x10475360 dib3000mc_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0xffbea3eb dib7000m_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x08ebaa4e dib7000p_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x65b67506 dib8000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x6c600fe6 dib9000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x9f821596 drx39xxj_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xb518cb2e drxd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xec336b17 drxk_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0xb5bdf7ec ds3000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xb79a9137 dvb_pll_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x4dd7bb5d ec100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x04fb277d gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x26fdf61e helene_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x61bdf17a helene_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0xde7cf71a horus3a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x841e0cfd isl6405_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x3e4f81d6 isl6421_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x12148986 isl6423_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0xe85a3076 itd1000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x7580fe41 ix2505v_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x3fec9e1f l64781_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x0b8993a1 lg2160_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x6294f7c0 lgdt3305_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xde63fc6f lgdt3306a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x08ebcddf lgdt330x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x1eba10c4 lgs8gxx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x43ccdb79 lnbh25_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xc2a0ca6f lnbp21_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xe22b64bc lnbh24_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xe6ce6a4d lnbp22_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x189d1236 m88ds3103_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0xd5a9316b m88rs2000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xcf7fe6d2 mb86a16_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x725c1264 mb86a20s_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0xa7a3a1b7 mt312_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0xc7761bd3 mt352_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xa8490425 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x5f0b94a0 nxt200x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x8b1c9b79 nxt6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xa9875c76 or51132_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x7fd92bd0 or51211_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0xde965c1f s5h1409_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x90e92dcf s5h1411_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x2c7c9193 s5h1420_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x1eeb6150 s5h1432_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x6d9b10c8 s921_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x70955e9c si21xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xd073a67e sp887x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x0b7c271a stb0899_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x289df810 stb6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x0c3ef4e7 stb6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x8467a267 stv0288_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x84cbedc6 stv0297_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xa48c099f stv0299_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x25034931 stv0367ddb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x56771a54 stv0367cab_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x82cbaf16 stv0367ter_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x6a33398e stv0900_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xe981820f stv090x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x997f2bed stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x6a2a0044 stv6110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xe1a55c15 stv6110x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xce388007 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x02c73b16 tda10021_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xd28304e8 tda10023_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x7c38442b tda10048_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x1dfc6b3d tda10045_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xe99fbd67 tda10046_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x9a098fc0 tda10086_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x602d3056 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xa6178a8e tda665x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x866b9cb7 tda8083_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x837720fe tda8261_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x8b6c4de8 tda826x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x1ee9f13b ts2020_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x8ea70d75 tua6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0xecedc27b ves1820_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x3a87ec06 ves1x93_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x071acf8b zl10036_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xfd925738 zl10039_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x756b12b4 zl10353_attach +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc996a045 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xccf45f39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd20c54b8 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd34f7572 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdcbfdc6e __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdcc3fcda vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdda9ce09 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe9b1f98b vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf490424f __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf600e44f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfad72cf3 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfeb5ccec __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xb9652b10 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xfbfa3321 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x48ee3692 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xfd335c0f vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0321c9ef vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0488a68b vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x04c1d087 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d0d2be7 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x12defee9 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18cd1d98 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b23f32d vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f493104 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x322a2bd7 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35242927 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x391cbb50 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3c0f9f5b vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4020fb5a vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x541c73d9 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x624653b6 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x636221b5 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x656285d1 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x665d2b0b vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x725365aa _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74cdf4ed vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x775960dc vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7dfbf7b9 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7dfec7bd vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8e10e689 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa16699d3 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb24e595f vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4df078f vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc1d06c57 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4a57131 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd209882f vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd40da019 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdaaaab05 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe13a62ce vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7d0c780 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x67946663 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x30cd8f3d dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x72063539 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x75617ec8 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xc91953e9 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x8404fa20 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x0da53149 atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x713254be au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x2c03ef3f bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x0b11e671 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x5022e44d cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xaf1f71de cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xd0e9f3dc cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xb779e787 cx24116_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x446ff5d9 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0xb7713b97 cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0xe91c26c1 cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xf912afab cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x5be22a91 cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xf1abe852 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x74284335 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x77887eb5 dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x51bc9778 dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x7fdf8fa7 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xa3ddc22e dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x44b1dd96 dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x2e668ade dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x4213dc14 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x07b8b070 dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x2cf7e23c dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x6d61144a drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xddbf82ec drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x519638e6 drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x37c5e9d6 ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x7c477ccb dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xb60779b4 ec100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x7a286a18 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xa76b69cb helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xfd42cf63 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x01870d68 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x00b44d61 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x8a8fe20c isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x565fe4bc isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0xa6498442 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x2f74896a ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xc53a8ef6 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x99687691 lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x9fb48f6d lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x107076a1 lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0xe0b3e9b3 lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x178bb4cf lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x330162b8 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x5de1897d lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xf62b26af lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xcd95f6f6 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x6d9f16e3 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x62b5be87 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x08f18667 mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x58347680 mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0xd76e1876 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x64e781bb mt352_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x110d53ed mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0xb58c9d56 nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0xc9193fb5 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x43005580 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xdd524d4a or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x037596a6 s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x081ac230 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x249e602b s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x86188eaf s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x38315a4e s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x516fb99d si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xae6d791f sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x77aa9097 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x58bbe397 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x212bae93 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x25b47519 stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0xd6852242 stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xcf169c4d stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x4545cfa3 stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x91f97ae1 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xe28d2984 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x15dd16ba stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x9175a16c stv090x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x7e02f3bb stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x4c07b2f7 stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x6e072a0f stv6110x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x82d78802 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x25b25c76 tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x659f8b04 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x83fd293c tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x5e5e257b tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xaa3df321 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xc0fdf8eb tda10086_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x930b005d tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xf8c6c844 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x14603ea0 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0xbd83ce32 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x4e4157a9 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0xa34ca2ca ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xfe8116f2 tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x29189375 ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x10ef88e2 ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xb2582528 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xb17d5f3d zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0xa0931239 zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x7d0059bb aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xbeeac703 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0914e83a max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1caa68e4 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x28beaf17 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x29b29c48 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5eabede0 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8edf960b max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb8741a37 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc3f250ec max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcd75168f max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe1f8b725 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe7b37264 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf16370a3 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf16c3549 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0548898e media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x09aee12f media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1005a75c __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1123d433 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18659f81 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1df1a9a8 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x25d5a68c media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26538e20 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x27bc2b4b media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x311ac738 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b624209 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d9ac9fe media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4cec4f34 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e07ee8c media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e8430e4 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x507fe489 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x54985640 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a7a7b2f media_pipeline_entity_iter_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e13beff __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e75314f media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6484c647 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0d4cf682 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1c27b774 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1e69d366 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x70ef4370 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x739e272a max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7f367484 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8e986dec max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xaa1374f9 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc2cff565 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd4d7322a max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd57e4525 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xed297655 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xff42a5f9 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x00cbffb4 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c0f1a80 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20c1f82a media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x224a4016 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x224ab20a media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x22663864 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x28263170 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d3b22b3 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x327e844f media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36b1c7bb media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3e4b5df1 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42e2fef0 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45418a68 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47d29813 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x505dfe70 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x52810d21 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x573acdc9 __media_pipeline_entity_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5906f8d3 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ab1b8f9 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5acdcd62 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c8e2e3d __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d33589c media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63caecb8 media_create_ancillary_link EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65dd67e0 media_pipeline_entity_iter_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x72158508 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x746adb26 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c183dec media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f9a5dba __media_pipeline_pad_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x807ed58e media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82a7d148 __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83256ec4 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84577b64 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84c7ca8e __media_pipeline_entity_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x892e1a02 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8aae159f media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x93d6b579 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94355e79 media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b650763 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1cb0e45 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa2ad4252 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9ad3cd5 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabe6e414 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac31f009 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac514ae1 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae34ab50 media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4df41ff media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc03e11a4 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc1d3c58b __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc53a48a0 media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8f4d7ed media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf02ad63 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd2b828d4 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdec1e271 media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdee11727 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5a6befd media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ada33e3 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6b5e624f __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6de04f57 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74345799 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74761629 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7dda97d5 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82ad7b8c media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8a3383a9 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c6c8084 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4034415 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4e1c9a4 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xab16b745 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xad52771c media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6669eb2 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7310ad9 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe7ddbe6 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc90ee156 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc947e020 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcaf86362 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xccac6024 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xccf573fc __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcde15436 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xced2a434 media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd48b2884 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd700124f media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb5a177a __media_pipeline_pad_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc5ad66c media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc8389c2 media_pad_pipeline EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe98c8475 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefd09e05 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf1025f1b media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf95ea139 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc2aa8b3 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x9746d061 dst_attach -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0xcc705a74 dst_ca_attach -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc4058edb cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x38b27676 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x001b294d mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11c3adf6 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1242e131 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14266aec mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a9856f9 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x22c30061 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x28378884 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x499265d4 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4fb572cc mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x77b912d7 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x85e41246 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb7e3fef mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd48f5b14 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7f4b008 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdce2c6d1 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xde3f3d86 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xde7bd3f1 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeefa32a1 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf5446072 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04ec035b saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x14fcf0d9 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2618e6d5 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2928800f saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2fd574de saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3131bde7 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x330fb2cd saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x33313053 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x50f40b60 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5b0f01ab saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x62832090 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8486a0bb saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8facf5ef saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe2becbd1 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe531c1b0 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe9146a1e saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeaae69df saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf4906d16 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5544b53 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3377db6c ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x58a42b10 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x598d4f74 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefbbaeaf media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5351f83 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5a0fefc media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5da9a2d __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf68ac2e5 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf78a1a92 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x3f626279 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x06e6b601 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc21bf0b1 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x199e143d ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x005bfd47 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x09af77cd mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ecc7aa7 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5479e8ae mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83a0b0ab mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x86920187 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x92da5ea0 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa2295040 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa383bdec mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb8e5cdbc mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb918a207 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc3ad300e mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc942a22c mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcdaa42c9 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdd2af25a mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe658a53d mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe86fcca9 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf12af154 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf9d29d81 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0874d9a3 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x09c5bfb5 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0d479d84 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x339cdb73 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c69eb69 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55c74c58 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5882b36b saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x60166310 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83c16edd saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x86a8d91b saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x91fc00f3 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x925e9400 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb0bffeef saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb3b5eb56 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbc68af0c saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc1124ec2 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc28922e5 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa842dc5 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbe498db saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x58d680cc ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6a193aa0 ttpci_budget_deinit EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7e477c21 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa732e555 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdaa15d69 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfcee1df3 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x3a616e55 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x689dc2fc mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x6928019e mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x74510805 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xca7c0b57 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe3effcb5 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe91f1efd radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x80a161a9 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa5107820 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbb920a53 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd1ad1e31 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf5be3eb8 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa4fa4329 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc0340716 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe6359965 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfa137f3c ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfb3f3d33 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x24ab6874 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x5440291d mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x6966b71b mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x91cc5613 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x94fc8d14 mccic_register +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x6ec0e657 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa7c0774a radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0680b0b4 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8000f7ac si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbbf77f15 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xcd83356f si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd6857491 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0939762a rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x18544e5d devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x18a56c37 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2152ba98 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x279bd953 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x293f4ae4 ir_raw_event_store_with_timeout EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x31291826 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cffb084 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53e38dcc rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5bc3293d ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7aac3f15 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x81dc31fb ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x89c796ae rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8dac42d2 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9945982c ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa478ea2e ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb07a2d38 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb1d8edf9 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x38d1cba1 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x424761cc rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42812857 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5b4a2a14 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x799df275 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7e90c821 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8b2c6c43 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8da92bcc ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92dd77e5 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b1e84e5 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa25a5849 ir_raw_event_store_edge EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc48c803a rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd8569c0 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xef4af80c devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf280e7e5 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf28afc66 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf692eb49 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc75277ec rc_unregister_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x04a23adc fc0011_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xc7a25751 fc0012_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x7f203fae fc0013_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x0be2d118 max2165_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x5e758a85 mc44s803_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x31a2d2e9 mt2060_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xf7454356 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x840d0189 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xbe6db340 mt2131_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x20c84eaa mt2266_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x2708c0c3 mxl5005s_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x9d17af79 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x0d628bda qt1010_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xfe9e3522 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x87232d85 tda18218_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x2efb1e43 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7f054cd8 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0c4c840a tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x8094d6a2 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x3550775d tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x13b17192 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x2c47d487 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6fcfade2 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7a7317a2 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x21dd0a42 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0xd7417da2 xc2028_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0xd332704a xc4000_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xb4eb7187 xc5000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x49372ee3 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xdc55de0a fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x441a2bb6 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x0cada1e3 max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xf938c480 mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x711d8512 mt2060_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x50080d53 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xf7a13111 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xfed2e4bb mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0xa016ef34 mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x9aad9332 mxl5005s_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xed2fe310 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x8dbc2a44 qt1010_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x0fed7e4f r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xa10e9f36 tda18218_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x740977c4 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x5890f71d tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3d5272ee tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x86720698 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x79bf7f58 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5d4f764d tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5f5e7997 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2320a5e7 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6cb52b9d tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x747740c4 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0x5217e428 xc2028_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x4bc19fb5 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xbc09803f xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x13b1e1f3 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1716493b cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30338228 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x35ae3698 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3931e70e cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b6c0658 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3e43520f cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3f6bc1d0 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x843c32c6 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8c17c37b cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x91e5f34c cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x95ae9f98 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9aa44875 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5604b3a cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa69c7050 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb31bd56d cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb9e7a1c1 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbaf1f05f cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbde31a73 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd662bcc8 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x7b5d3779 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x65969ed8 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ae51c34 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26720c32 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x27d50a1f em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x283ff35a em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e36172c em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3f434a68 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4f68fe12 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c66b222 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0d486723 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x14e46573 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2136d901 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b048b26 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ff336ff cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c207c16 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63ac3b1a cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x65c34f0e cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7239cdb9 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75a58089 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7e75c25d cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3d6efe5 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc55bbe44 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc6a676b8 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4555f58 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd5a6e268 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd669b687 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xec4ef85c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf5047e57 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd367a2e cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xad472049 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xc42ad941 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x09f03b6b em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1c43649a em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x30369f22 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x36efcff2 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3c7095d8 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x40dea285 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x59d1cc88 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x616587ee em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9ab74b24 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xac0979e3 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb68194a5 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbcab1e08 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdebde051 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe1b1469d em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe747c7df em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe880a07f em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xed82df47 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf6371891 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x27a3224d __v4l2_async_nf_add_i2c -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5bd004e3 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8df5aca9 __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x91a64952 __v4l2_async_nf_add_fwnode -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9819ebe1 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9f4ada9e em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa69835f6 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbfc53ac8 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcbc4fc1a em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd0c07571 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xda9826ec em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe196965b em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe4855550 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xef818901 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf683fe43 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x164dafcc __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x54c28e06 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9265c30f v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa07f09ac __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xf43f0d95 __v4l2_async_nf_add_fwnode EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -14532,242 +14563,242 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x06b9bb48 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xba5bfd34 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf192e5eb v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x42a23e59 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x46c86eae v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4c53b6ad v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x58e3fa19 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x14f3362f v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x2085de82 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x73b8b726 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2d667960 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x507df0f4 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x58519b95 v4l2_fwnode_put_link EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6806b006 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7191be4b v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7dc92729 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb31eee13 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd183c268 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf363d5a6 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x059ae1ce v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x075543ea v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cb292d1 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11857e49 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14346b90 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x176090e6 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1762f87a v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17637ace v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x273e17b4 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b45d530 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ffce50c v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3f671f24 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48930782 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x495b8317 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b8d8c27 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x501cc115 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x509205ea v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x555b67f9 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5759a862 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c8cff45 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61f8e056 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c28fb3e v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e724718 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7b4ac7d8 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7b6a1c5b v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9ad595ed v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc5a7a452 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe1d84ea4 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe6d1fb63 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe97f21a7 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05b318bb v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e16b006 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e83e4d7 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11947c5a v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b7d4fe7 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d02ae0a v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ae8cf9b v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d29b32e v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3091938e v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x340caf0c v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x342a4104 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a477344 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3c61a659 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x40e12dcd v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42f1a1a6 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e290dde v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f0933f8 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64638098 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70aadbb0 v4l2_m2m_streamon EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x744799a4 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x78231a98 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b200abc v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x816e81a7 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86507603 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87baf29e v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f58dc27 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9dfdb386 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa22cd37f v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa7666f7c v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb018326f v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb91229b3 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9a62822 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbdb2370a v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79c1a9f7 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80c4b490 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88f98180 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8992eb57 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x92782d29 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c2df811 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ca15ad3 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9dd29e9f v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6cd15d8 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9676af1 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba177711 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc5fda52 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf7bdb3c v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5bbe8ce 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 0xc7b6f2d2 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7d15ef0 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd47d73d8 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe5d94d77 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xedc18b6b v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7daf1bd v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc84e34c3 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf43bdfc v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5f6e0b4 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdaba5751 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe10429ff v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe154a2fa v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe977b2d0 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xecd9bfff v4l2_m2m_create_bufs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1799da6 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbb9e0de v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a4cad6f videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b84ede9 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d47b47e videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2f630461 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34ae5244 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x405e212a videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x536ea5ce videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x59ba6276 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x72633998 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7921235e videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x84009319 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b9d1da3 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8c8fc446 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9107019 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbac39d9b videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbfc68427 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc329d7d4 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc7a5b9ee videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcbb245d8 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd4cf93f9 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5ac9667 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7f39725 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe3da1eb1 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4df0767 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2b06e6fb videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf35a5578 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4272b44 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x014ec953 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x422aab7a videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50e6385f videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x51e236d9 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c2eae2f videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c83fef1 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ff9a1d6 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x690388c4 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x767c89b2 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79ad50c8 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79f0ccb0 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9133de00 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x935493b6 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9817831c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e952851 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa06c542d videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa2a89613 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc6ccb23 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf817f81 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbfd00efb videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcde9c98d videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe3b34e71 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe7c3b58c __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed8a2801 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x00a67354 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x17670d93 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 0x6eea93a9 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7b99a3cd videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8de2edb0 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0659a69b v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0782c183 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08105e36 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0bc526d0 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0bf20f61 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14ac3532 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x156674b9 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1900afe4 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19dfebb9 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a15f1e6 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b1b0cbe v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ddc4e01 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e7ac925 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2098a8b9 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x271925df v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x275b9cb7 __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28066804 video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b4debd6 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b72f524 v4l2_subdev_s_stream_helper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2fad7ae4 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x313281f8 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3593b2d7 v4l2_subdev_set_routing_with_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x373260e6 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c548fe2 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f45c6e8 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41929658 video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41c96c38 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41e4c607 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42e6f1d5 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43a3dfdb v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x895fe359 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9af5299d videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03f7c623 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e73dec3 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x138fc4a5 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14013810 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14edd0fe __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15ed2443 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16a42f37 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18ea5790 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1aeed12b v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x200fc26e v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2619356c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2771ef90 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28da1c41 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b95e8c2 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f135bad v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3194612f v4l2_subdev_disable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3212847c v4l2_subdev_set_routing_with_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a224bb1 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3db4742f v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42d266d1 video_device_pipeline_alloc_start EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4894cd55 v4l2_subdev_state_xlate_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4aa7bd1e v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4bebc2c2 __v4l2_subdev_state_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fcc71e9 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a8d47fa v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4faba44a v4l2_subdev_s_stream_helper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fad4c85 v4l2_i2c_new_subdev_board EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x519c3d2d v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5aa508b8 __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d851f25 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x641e00de video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x543c616d v4l2_subdev_routing_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d21aea3 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ddfc7ef __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5df844bf v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65d7839c v4l2_subdev_state_get_opposite_stream_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x694c0481 v4l2_subdev_has_pad_interdep -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b557f24 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6940a05a v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69f9e6fb __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a37770c v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a47e242 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a4eb300 __v4l2_ctrl_handler_setup EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e617d94 v4l2_i2c_subdev_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70174c56 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x710ee82a __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x714a180d v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74634e9c __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74b70451 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c3e393e v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x831120eb v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x832c31cc __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x845d787c __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89ce753f v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8dae17d3 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f84a484 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90bdc97b v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9611bda4 __video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x976365f7 v4l2_subdev_set_routing -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9cd82446 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d2149c2 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e857d60 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f2aa167 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x706f4d28 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71b6c499 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73403ac5 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73b955e3 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x76454bfe v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78058fee v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b891934 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82f0122d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x861ebcfd v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ef5078d __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9307e33d __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x968ca624 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97dd1979 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a966bd8 video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b58e6bf v4l2_subdev_get_fmt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa22823b9 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa661720a v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab3117b6 v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa367435c v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6641c81 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa889edb0 v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8c0dbd2 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9c94712 v4l2_pipeline_pm_get EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xade26a85 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae03d0a1 v4l2_event_subdev_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3dd8d6 __v4l2_subdev_next_active_route -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb299512f __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2b852bb v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb29a201d v4l2_event_unsubscribe_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5a337db v4l2_subdev_state_get_stream_compose -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf7c04f5 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2ffeadc v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3a17b03 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6117905 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5dee511 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6d3471a __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8dc4b14 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf5530fc v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfe5543d v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1c03bc6 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4081f3c v4l2_subdev_set_routing EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc86897a7 v4l2_subdev_state_get_stream_format EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcbc5b132 v4l2_subdev_has_pad_interdep EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xceb22737 v4l2_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754c8f v4l2_subdev_routing_find_opposite_end -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfc85aa7 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd13dc4e4 video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3dd6f83 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd378663b video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3bec8a7 v4l2_mc_create_media_graph EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd97d0ff4 v4l2_subdev_disable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd86e99e5 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdac0174a v4l2_create_fwnode_links EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde6e37d9 __v4l2_subdev_state_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf41a1ca v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe019d666 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2084aeb v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdeb1f845 __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2d2533d v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe316e4b6 __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7fa0918 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea5e7305 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4031dd6 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6c16cc0 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe93d40ee __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9e0d991 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xead9cb67 __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed6c9ccf v4l2_subdev_state_get_stream_crop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xede84e4f v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf284f687 v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeed22f54 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef08e7d2 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf135e180 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1885648 v4l2_device_register EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3cd2e1f v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ebb6c9 v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf69eedc8 v4l2_subdev_routing_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfaef7037 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x0c07f023 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x403feb5a pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x9bc7c9e3 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9860522 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa7dde46 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbc09a50 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe0dec01 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfec6100b v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8c4b0b79 pm80x_init EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xdbfb4b39 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe46ed24a pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01a18fd4 wm5102_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02b2fecf cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x03b5c59c cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x048d1b4c cs47l24_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1949d8fa wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x19832f36 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1f40f845 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x21e115b9 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x33953804 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x201f681b arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3501187e wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39070c78 arizona_clk32k_disable EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39419a43 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3bc78952 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3cea6302 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4500c916 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fd2a24e wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8281f673 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x93732087 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x970e1d98 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb403f5b2 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc1b9373f wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd26b43e1 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x42994e98 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x44862144 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x474cb983 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x536b986c wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x741b4d59 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8138f81b arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8d6af3e1 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xac9ef5e9 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbfca1aa5 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbfde9461 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc2272e4b wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc6139f84 arizona_dev_init EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3fee6a6 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd476b4a9 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd7d13dc7 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xde4c72ee arizona_set_irq_wake EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdfbe649b wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe6acac0e arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfcf2dbe9 wm5110_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x504cacf0 atc260x_match_device EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x67372044 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x06d069d9 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2417f109 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x65ab89ae da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8bf6e42a da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb2a378c1 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe5f6a038 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfcb64617 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x24cb8774 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x312a1741 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x559247e4 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x79210585 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xb3916bd9 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3f239bb6 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5d4d9936 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x76d84c8a da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9ce7da02 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa7d633b5 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbd1533e7 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd6ebfc11 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x02a9247d intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x054e98b5 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe263c123 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe692b302 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xfa3411ed intel_lpss_resume EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x60a88d2d intel_pmc_gcr_update EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x6459682c intel_pmc_s0ix_counter_read EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x6692ec12 intel_pmc_gcr_read64 @@ -14780,9 +14811,9 @@ EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb4ad3c88 kempld_read16 EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdd73daa3 kempld_write8 EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfec68b45 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x65ac7d3f lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8173c46a lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x86211c7a lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xaa4d9623 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb7c73a90 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xdd05b022 lm3533_update EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1f2c357a lm3533_ctrlbank_set_brightness EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7de96199 lm3533_ctrlbank_disable EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9b94be0d lm3533_ctrlbank_set_max_current @@ -14790,161 +14821,161 @@ EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc8a5d7c9 lm3533_ctrlbank_get_pwm EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe15696be lm3533_ctrlbank_get_brightness EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xe906db54 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x09bc755c lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x3f62c8bf lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4f0989ba lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x064f482a madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x06cc02b1 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0ae8b6ed cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1bdf44c9 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x371666ff lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa0626800 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x09d2ed7d cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x09df313d cs47l92_32bit_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0fd4e134 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0fd93d74 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x24fe6e99 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4756aca0 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4ce1fc38 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4cec2078 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x59daca98 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x862256f4 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x862f8ab4 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9b04a1c1 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9b097d81 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xac85ba3c cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xac88667c cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb450cd8c cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb45d11cc cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc5174bf8 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc51a97b8 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcbe390cf cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd36d4873 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd831bccd cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd83c608d cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0ff8a29c cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x14f41a48 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x14f9c608 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x266f9a37 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x26868130 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x268b5d70 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e53f680 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e5e2ac0 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4ae7f071 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4aea2c31 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x57c10744 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x57ccdb04 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x65b39c3c cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x65be407c cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x794067ee cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d66eb8c cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7d6b37cc cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99e0378c cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d02ad88 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9d0f71c8 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd3e0b023 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd71104f5 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde37b084 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xde3a6cc4 cs47l15_32bit_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xefb0a730 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xefbd7b70 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf765d080 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf7680cc0 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xed5db2b0 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf7f1b479 madera_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x54c41c46 mc13xxx_adc_do_conversion EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x86596260 mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8c9c3f8c mc13xxx_common_exit EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa8581ec8 mc13xxx_common_init EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc6e32940 mc13xxx_variant_mc13783 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd4ecdc28 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x21536fb0 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x25ce48aa pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x270aedd5 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2a3b0ae1 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2b27bab2 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x53007f0a pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x659c898b pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x917cdc8d pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9bf98d2d pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa07bc547 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc909d678 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd6bb6702 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc0f492c9 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe1097c56 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0f785727 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x38c683c4 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6549c092 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9a661803 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa704f675 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x00191687 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x01e47e03 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2c0c1e57 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x40d6f522 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x560f7e5e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x59036dd0 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8407ac70 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8ddcf6b8 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x95809932 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xac7bc1e3 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd016e2cf pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdae0d2ce pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6e109fad pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x734be84f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7afdc36f pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb8e7cc05 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xda2b9404 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe6b7706a pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfefa1737 pcf50633_gpio_power_supply_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xcb15e573 devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02d58280 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x114d9288 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c4dd7aa si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23cdb90c si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34566fbd si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x368be285 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38f5d2e2 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4bc7deed si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fa673a3 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54f33ab0 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5542879c si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58ddd8db si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ca320ac si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d885375 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7352f386 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84e1b3f9 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a2cc9d4 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e72f30a si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x92d690c3 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x938ef95c si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c97981a si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0ca2273 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaba7f749 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb68433f5 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb74a9ab2 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc1b833c si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc3b0de3 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3724394 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7797bff si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe97c5840 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4078efa si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf82a9f2c si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfabf455e si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe5f1f78 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x68012c38 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7ebf3854 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb4a64c7c sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe91b09d7 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf9be3ef4 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00b2b665 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c87698c si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d335e8d si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14a54a81 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1af859b4 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1db21e1d si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23c38fec si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2eab9167 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3263a660 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ee40bfc si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4075502d si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x494d94bb si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d8fd137 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50df00af si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5453f8d7 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c3f71b1 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d4420ed si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69d6969a si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c3bf1e7 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x747f0aa2 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8269ede2 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82e31a6a si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84b79dd6 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85dd798a si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a22f975 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa253ab71 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9178a40 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaa4127ae si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xafdcf99e si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb55dbdfc si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc114a0a0 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7e84315 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3b82fe1 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf5aaf4ef si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x236ca9eb sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4182670d sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7ba1841e sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd02cbc88 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd1b6f25a sm501_unit_power EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0fb12815 am335x_tsc_se_adc_done EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4b3e26c4 am335x_tsc_se_set_once EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc20292b5 am335x_tsc_se_set_cache EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc37e6f2d am335x_tsc_se_clr EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x7bac1068 tps6594_device_init EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xa14635f2 tps6594_is_volatile_reg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x42d7d965 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x686f7287 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7bd0b5f4 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x809e42c9 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x889e56c2 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc1a347cc alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd11d2b5c alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x01d6f9d5 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x14dac32e rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2bff8229 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x33c85e89 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3c5bbcd3 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x441411e6 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x48787870 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x574b1e6f rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x584abdc3 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x59a897dd rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5f93c01a rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x68c90dca rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7bb28844 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d93e623 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x824aaad5 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x92a04775 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa01f793a rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa075f398 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa526c58e rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaf52df0a rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb677e2b7 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc3a934ad rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcbb12972 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf4bd2c39 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1442d1dc rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1a4f4b72 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x32a4fe98 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x53628e2a rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x59cf40bb rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6db20c97 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x96b9ae41 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xabcabb9d rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc30dcc3f rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf088f9ee rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf30e7636 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfc54eba6 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xff738252 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1ef6265c cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x32775fd0 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3e959c6f cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xdfd54467 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x33156242 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6499590e alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8cb4ebc8 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x94250932 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xbd6f80c5 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc0d3b9dc alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe46ead1e alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0367d012 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x05838266 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x08b3ebc0 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d520a7f rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24c3c4a2 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c7859aa rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x368d71e3 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x47691385 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x630ae20d rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x63df03e1 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8130d6e4 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x827c7a9d rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x87c12ccf rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x96d5c9a3 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9debeef4 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc763cb9a rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd8011303 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd8bf154e rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb9955ee rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdd28222a rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe1b0567a rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xedd71a5d rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf0992d3c rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfe2003ca rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x07f943ed rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x474b270f rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6249ccab rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x633310b3 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x706bd4bd rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8edb3e66 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9a56aa4d rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9e289158 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb7eb444a rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbb4aca23 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc77e6bff rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc7d287df rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xde567c33 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5226e4e2 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7939e7eb cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa6638f6a cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd56837b4 cb710_sg_dwiter_write_next_block EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14966,56 +14997,56 @@ EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4f61809d enclosure_unregister EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x78a11750 enclosure_component_alloc EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfebe2e0e enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x04821a1a lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5ede6802 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6071cb8c lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6b0fbf17 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaf063529 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb8dfedc6 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd8e7fff9 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf808bfd6 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0522e616 mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x08711c4e mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0f88601a mei_cldev_send_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x13365536 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1bcd09e0 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x20f386e2 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x21092109 mei_cldev_dma_unmap -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x324daec3 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x39abd6b3 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3adced40 mei_cldev_dma_map -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3d3f0b06 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x47ca035c mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x48bcf318 mei_cl_all_disconnect -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4d0c4848 mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x62f57c84 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6c930714 mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6d26b5bb mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6e844811 mei_hbm_pg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7d7bec31 mei_cldev_recv_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x88c9f581 mei_cldev_send_gsc_command +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0ac1cde8 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x684a4015 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x79ad5764 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8fdc9e5e lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa21dc8cc lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb4b04126 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf142fdc7 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf880c990 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x00ce4e91 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0fa900e3 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x14764d67 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1daf2282 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1e994901 mei_cl_all_disconnect +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3d7f12a5 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3d9164b4 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x49534ac6 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4de20133 mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x54a5c831 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6e8e21e4 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x709e63c1 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x759f8845 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7c9cce74 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7e98ee0f mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8b999e5e mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8c9f8a82 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8e70e45b mei_cldev_disable EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9c4d29ee mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa2c11ff2 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa9b12955 mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb7881372 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb83037aa mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc6a2e68b mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd37d917d mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd6b8dde6 __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd9fa4bee mei_cldev_get_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf5090a1c mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf91df63e mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfa666fb3 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfad76c48 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfdcc2ea1 mei_cldev_recv_nonblock_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xff32b341 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9205c42d mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e9460b7 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa01f828a mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa5491cdd mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb66bbdb5 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb9cbe40a mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbeb6d56c mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd5fd68eb mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdf27b02b mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe0a4d721 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe10335cb mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe1bbdedc mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe4ffdf4d mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xebbefa38 mei_cldev_send_gsc_command +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xed0d8f26 mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xed1b743d mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfff9356f mei_deregister EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x051f202c mei_me_polling_thread -EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x6572292d mei_me_get_cfg -EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x7f274d02 mei_me_dev_init EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x922c6ae5 mei_me_irq_quick_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xa688cbaa mei_me_get_cfg EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xd0eef98f mei_me_irq_thread_handler -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x501221d8 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xf181b513 mei_me_dev_init +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x1b67d96c devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x5b8bb699 gru_get_next_message EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x8dc51bdd gru_create_message_queue EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x9c7283a1 gru_copy_gpa @@ -15039,19 +15070,18 @@ EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x675e2442 st_register EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xecca78ec st_unregister -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xb5224627 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xd691d212 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xf3818a56 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x98923d36 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xd57b8914 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xf3d4a5a7 uacce_register EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3c467751 vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x53e46ce6 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5c118edb vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space @@ -15059,82 +15089,83 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xaeb94ca5 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xce85e43e vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xdfa78fa0 vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0cca2c68 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1155ee91 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x188e4192 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x19216253 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1f7ad89f sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21450fdf sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2751411a sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2e4b99be __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ee1c99b sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x30e87595 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x31de836a sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3bf29ff6 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4281473e sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x457d5b04 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4637b520 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5402303e sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56794dbf sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63a88226 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63d52e6d __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6bbd6cd2 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f9aa010 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x801b3663 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82a940ac sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x871f501a sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96df7fac sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9813b457 sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0e2ba1b sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa7f54da3 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbafa1911 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc29ee02b __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc42a0bf3 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca874383 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xccf06983 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd24f2030 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd3fc0953 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4fa1d49 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd787427d sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd8bf4e7c sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9a6c99e sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdbe25487 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2fa2b02 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf9db76b4 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6e3e96df sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7169a36c sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x82c69899 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa19c21cc sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa667fec6 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb18daf58 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc53f5f0a sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd9948376 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe5efda3a sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/most/most_core 0x0202e4b0 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1247dc11 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1da6b414 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x2df8e625 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4341a346 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x57533002 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x617af2ba most_stop_channel +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05ae581a sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0df30339 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0fcdfa05 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1ae964e3 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x218e8d6b sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x267ce9e6 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b607044 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x31ce5d00 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x373bb045 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x39ceac44 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x40a395cd sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x40d2467c sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4382ea1c sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x48ac91b5 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c826f37 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x605a144b sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62279f36 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6425c63c sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6462f0ff sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x66fbce4e sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d6ea37f sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80473f26 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83cd2148 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8c320001 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d37aba2 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9151693e sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c3303e3 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cd022f3 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9ff52c83 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4c64436 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae6ab7ae sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae890f15 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc5a16be sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc9fbdab2 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca7c3819 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcb4608a3 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd3440f1a sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd60349f9 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdade2a0e sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed59861f sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xedab0759 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf6eddf97 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1eda518d sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x33975175 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x79caf17c sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x940e0339 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa4eace37 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xaf718a90 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb754b805 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd023d505 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdbd56d6f sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0fe3b5c1 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1937faab channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3c1681d2 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x40848973 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x532ba286 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x62ef86ca most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6958bb6c most_stop_channel EXPORT_SYMBOL_GPL drivers/most/most_core 0x6b64b951 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b077d90 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xaf030412 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x77036e38 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fcab440 most_submit_mbo EXPORT_SYMBOL_GPL drivers/most/most_core 0xbed837d7 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xcc7bbf48 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xee646ac3 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf99623e0 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfba57483 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfcce1728 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfda2e680 most_deregister_component EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x21055561 cfi_cmdset_0200 EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdc1b70f7 cfi_cmdset_0003 EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe332551f cfi_cmdset_0001 @@ -15147,145 +15178,145 @@ EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf4337621 cfi_qry_mode_on EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x10339c20 hyperbus_unregister_device EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xd6de3c23 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b788678 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cb99984 of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ee0bef7 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10a41252 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18874116 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ed5a51b mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f68041b mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26dc5fdb mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a8f12e2 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ca6d580 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00644297 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04a04ee5 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x096a2d38 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0de6b286 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13bafee0 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1dbefba8 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f97223b mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x230dde2c mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2843554e mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2aa7d715 mtd_write EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3118a4fe deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3377f094 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38f6e69d mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42a793b9 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45cefc89 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x47fe66be mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4adfa6b8 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x334ca2dc mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36259c87 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3672a6f9 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x382dee86 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38425f26 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4132b822 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ae74912 mtd_read EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b157afd mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f810927 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e4db783 mtd_write_user_prot_reg EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59166cc4 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5966daac mtd_read_user_prot_reg EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a465d9b __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5fa11235 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6708f70c mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c54d09a mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x764d6f93 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77478ffa get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81b400d0 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98f07427 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99a6c3d3 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ac28aa9 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a75310d put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5edd67ed mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71359a49 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7591387f mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e261a22 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x821a15c4 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x837645dd mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x837a2d6a mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x919c85db mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9739ce87 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99a9c899 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9bd3050c mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d25babf of_get_mtd_device_by_node EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e222766 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0bd1782 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa346a431 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa49ddd26 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa59cfea7 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9c94201 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0746ed7 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4e0fae4 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa56095a1 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xadda27db mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb58cae1b mtd_ooblayout_count_eccbytes EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7318ca4 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbaef798c mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb13ba8a mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc12f1cb8 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc90c4d91 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0b769a1 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc230dc8f __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc79e7599 mtd_get_fact_prot_info EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcca646f9 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcdc03fa0 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce1a96a9 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2458665 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd62167fe mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd905b8b9 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe950835d mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe984c940 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3436ae2 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4df2dbe get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfae6d0ae __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb22df6c __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x24c3bb46 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x39de5b3f del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x61917e2c deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xac51a030 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd45ac255 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd16e0376 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd46ea0bc mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8e61c75 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb916407 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdcd9e54b mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7695011 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1646254 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf59eecc1 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf77a11c3 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfccd2df8 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1e29cfd7 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4f51d9f8 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa04e993e register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa7a4f632 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb43b631f add_mtd_blktrans_dev EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x054343c9 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x086303aa mxic_ecc_put_pipelined_engine EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1f01c349 nanddev_ecc_engine_init EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x20c6f7c2 nand_ecc_restore_req EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x215ff75e nanddev_cleanup EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x255560b6 nanddev_ecc_engine_cleanup EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2b732abc nand_ecc_init_req_tweaking EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2f3f4ff6 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x345376d0 mxic_ecc_put_pipelined_engine EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x388f4341 nanddev_bbt_cleanup EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3b78a60e nanddev_bbt_update EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3e14482e nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x47d52ab3 mxic_ecc_process_data_pipelined EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x62a27013 nanddev_bbt_set_block_status EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x73d06366 nanddev_isreserved EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x74e07505 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84805db3 mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x85be37d3 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8057a8c6 mxic_ecc_get_pipelined_ops EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8686560d nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x97bf255c mxic_ecc_get_pipelined_engine EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9e6ff00d nanddev_mtd_erase EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa809edb5 nanddev_init EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xadf3c536 nanddev_bbt_init EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd5f6ad6f nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdb2ee7eb mxic_ecc_process_data_pipelined EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe0bdc2f3 nand_get_small_page_ooblayout EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe7069223 nanddev_bbt_get_block_status EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xeeded16b nanddev_mtd_max_bad_blocks EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1a3c27f4 onenand_scan EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xfe2b317c onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x54a20274 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x06e2b1b8 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0d46268c nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xeb9847c4 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x085ef2d9 nand_change_write_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x156316f0 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1af3efad nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1e48d471 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21106ff3 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21745d79 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2886619b nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2a9c41c0 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2af48413 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x111552af nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1a61cb14 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x204bb3bc nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x226a15b7 nand_read_page_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2df56c76 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x474c29d7 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x48f24812 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x51dddf07 nand_op_parser_exec_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x68a90e03 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x724e4f0a nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7a406e67 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa8983130 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa920270c nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb7115ae5 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbf6eeab0 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc2ce5636 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc773527b nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcd9acac5 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6f4ca08b nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x762289cb nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x76d9601b nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x89c2acf3 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x925d0bc0 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9ad4d833 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcf011627 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcf4adfa5 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd0ee7450 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd2183e4b nand_select_target EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd42a73aa nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe79cd075 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe9d1b767 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe03d15ba nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe11cea11 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe4801e2e nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe5c92f4d nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf5d2e401 nand_status_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x40ab309b sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x37ece0d0 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0bd9c90e ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x14032e86 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x30276bd2 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x01c86736 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x062f465a ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x23676a45 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2b798145 ubi_leb_read_sg EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5286406c ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x543d258a ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x58781096 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4c3e8211 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5252d5f6 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x573a9a1b ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5aa6738e ubi_do_get_device_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x78325796 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7a7de4ef ubi_open_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x88b71a56 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8a94b4d0 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x96194347 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb42b718a ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc51cd16c ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc6f0fe1f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xde725c84 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe3b56eb3 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf3331550 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa058bc30 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xadf3d70b ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf9606098 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfde09f8a ubi_leb_write EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a513511 mux_chip_free EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x158233b3 devm_mux_control_get @@ -15303,1527 +15334,1527 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe950d88e mux_chip_alloc EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf8a77212 devm_mux_state_get EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb82fdbe3 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xcd4be43c arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4dea418c unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x76251da1 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7875c2fa alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x965c991e c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xab22143a c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd2db650b register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x11db4d2b register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5d449d10 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x70fb0077 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe82a808c unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x24876d28 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xcfb073e1 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x00668a2e c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1025d312 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6ea5bd4e alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa6c47554 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc9167384 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf9f9f3d7 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x302ffdf6 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4b6f6172 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8c1c4006 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc827cfba unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x04038563 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0452cd21 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ce75d80 free_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1780d66b can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a0f5c63 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c6f31b9 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x20d11086 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2600f52a register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2f219e3e alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x42a0fc65 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5f437c3a can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c66a62b alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1e987617 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36a01f1d can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3a1f35ec can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45d6fce1 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c0446e1 can_rx_offload_queue_tail EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x66bb55e5 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x67ab4790 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7ab83c43 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fcb407a can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8452bc32 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8b4302f5 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c8852ee safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8e479401 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa1823d9e can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad83dd96 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaec9b542 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb986f8a8 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbbcd77a1 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3b599f4 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc711a36c alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd41bcade can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdc3cb2a0 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdd03f42e can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xddc26c3b can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xddd817ba close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe0b39b59 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe9f062bc can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x60635d9e can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x644cab7c can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x67c72051 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x767ed7a2 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x87e56863 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9067af48 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0a777f3 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa4e8f895 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae9a2cb5 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb9ffee34 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbcc2c052 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbf6f833d close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc9adf34b can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcf798c9f register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5288e84 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdd3b71bf can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe0aa3d83 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe938783d alloc_can_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfb1af03d open_candev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x15e54d75 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x241ded9f m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2b551d48 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4ff48eb8 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6a427a6c m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa07322ce m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xed4c6612 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xef5aaf2f m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x125d39eb unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x16ce5439 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf146b08e can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2b150bf can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf3f70287 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xff118675 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1d7b3229 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x553051fd m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8a27d414 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9b8251e6 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa0c7f823 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa2977759 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xce162f3e m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xef62db67 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x11889ac0 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x3c64ac9c register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x51706f00 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xacaf254a free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xe53af70a lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xc7407cb7 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x005eab68 mt7530_remove_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x309b0f3a mt7530_probe_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x8d96756d mt7530_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xeebbfd42 mt753x_table -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x20cb52c2 felix_netdev_to_port -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x31b5721e felix_port_to_netdev -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x892680b8 felix_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xc47be7c0 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0e839bbb rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1a9e9a9d rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x35bbdb46 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x47b58ec8 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8cabe3dd rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8eeb053d rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xba4ed2c9 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbc83f6e2 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc00af7c5 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xda1b8c61 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xec5ca141 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf05842d4 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9a3255fc free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa87f051d unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc5aaf537 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x4cb7fb2e ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x21d2b224 mt7530_remove_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x7617acb1 mt753x_table +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xddec2a8d mt7530_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xeef59944 mt7530_probe_common +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x14ab1ab3 felix_netdev_to_port +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x4fe95f76 felix_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xfc2df836 felix_port_to_netdev +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x45d2ef0f rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0f420df2 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x29210b21 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2e3daf2d rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x56e7f0d6 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5f714596 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6e47e641 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x88e7e39f rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa23520ff rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa6827345 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xeba01ed0 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf78431f8 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfb8ab653 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x05873145 pdsc_adminq_post +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x415471e2 pds_client_register EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x45b87b4f pdsc_register_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x4a74f71e pds_client_adminq_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x6c0b0b88 pdsc_get_pf_struct -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xad2c2b6e pds_client_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xb295cf47 pdsc_get_pf_struct +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xc0ef4407 pds_client_adminq_cmd EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xce714617 pdsc_unregister_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xe214990a pds_client_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xefb0f664 pdsc_adminq_post -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x01987fa4 octeon_delete_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x041c10ff octeon_allocate_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0a497d25 setup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0c787e89 octeon_free_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x13ec797f octeon_write_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x18987377 octeon_free_sc_done_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xe4666560 pds_client_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x01690383 octeon_set_io_queues_off +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x06385ff7 octeon_wait_for_ddr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x064115f3 lio_wait_for_clean_oq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0b67fac5 octeon_ring_doorbell_locked +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1186606a octeon_pci_write_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x18341e55 cn23xx_octeon_pfvf_handshake EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19cb4e69 liquidio_link_ctrl_cmd_completion -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1e2cbfd5 lio_delete_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2051bb1c octeon_deregister_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x22e0b10a octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1d4f864e lio_get_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x228ca0c5 octeon_setup_output_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x234582ac octeon_get_conf EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x241a2a6c lio_fetch_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x24349a88 octeon_get_conf -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x24522b4c octeon_setup_output_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x291a4957 octeon_pci_write_core_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2a970072 octeon_register_dispatch_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2b2f7104 octeon_pci_read_core_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2b754901 octeon_free_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2e5a83a6 octeon_wait_for_ddr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x31a6a5dc liquidio_get_speed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x31e5bd68 octeon_free_device_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x32a4dad6 octeon_read_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x373b8529 octeon_setup_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x385e99b3 cn23xx_tell_vf_its_macaddr_changed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3c41cc74 cn23xx_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3f8f4bfd setup_cn23xx_octeon_pf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x41aeb729 lio_pci_writeq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x464db1fa lio_enable_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4b8d7e80 lio_setup_cn68xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x51d25c2d cn23xx_setup_octeon_vf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x53db4dd4 octeon_init_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x59519d3b octeon_setup_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5b573b97 octeon_alloc_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5d86a1fb octnet_send_nic_ctrl_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5ec618e5 octeon_delete_instr_queue -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6049bb2a octeon_send_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x607d6c11 cn23xx_fw_loaded -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x61089850 octeon_alloc_soft_command_resp -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x61d7a52f lio_process_iq_request_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x678598ad octeon_free_sc_zombie_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6b5aaee4 liquidio_setup_io_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2ac4d428 octeon_register_dispatch_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2ea7a61a liquidio_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2f2716f5 lio_pci_writeq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x35132311 octeon_alloc_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3b61711b lio_process_ordered_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x49763f06 octeon_setup_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x497a0347 liquidio_set_feature +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x49b46271 octeon_register_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4cb129d8 octeon_free_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4eaecc96 octnet_send_nic_data_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x591aed19 cn23xx_fw_loaded +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x59cf5b45 liquidio_get_speed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x63410592 cn23xx_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6b5169dd octeon_allocate_ioq_vector EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d0d28ef octeon_init_device_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x74fe6205 lio_setup_cn66xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7cff3e26 octeon_setup_instr_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x80b862cc lio_setup_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x80dd7e05 liquidio_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x82019e0b octeon_read_device_mem64 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x87b55243 lio_wait_for_instr_fetch -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x890d125a octeon_register_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8981cd61 octeon_prepare_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8fa7dd40 lio_get_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x910d5f74 octeon_ring_doorbell_locked -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x95785238 liquidio_get_fec -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9ad9b45c liquidio_set_feature -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9cbbbac9 lio_pci_readq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9cfbaf46 octeon_delete_droq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9ed79948 cleanup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa88d576b cn23xx_vf_ask_pf_to_do_flr -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa90b085b octeon_unregister_droq_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa9671012 octeon_get_rx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa9a790bb octeon_get_tx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb1d1e961 octeon_set_io_queues_off -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb411da1a octeon_droq_process_packets +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6e5c6e21 octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6fd8dd0f octeon_free_sc_zombie_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x706245fc octeon_mem_access_ok +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x771e14c0 octeon_send_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7943dd25 octeon_free_sc_done_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7ee0e065 octeon_setup_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x80d74c67 octeon_write_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8518c81f octeon_free_device_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x89a15cde octeon_droq_process_packets +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8b63c468 lio_wait_for_instr_fetch +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8bd6fde8 octeon_read_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8de0fc75 lio_pci_readq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8eeb31ad liquidio_change_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8fc18774 octnet_send_nic_ctrl_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x912f8501 cn23xx_vf_ask_pf_to_do_flr +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x91569bce lio_setup_cn66xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9340848d octeon_setup_instr_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x96390a45 liquidio_setup_io_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9e4bdab0 octeon_delete_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa1543e39 octeon_alloc_soft_command_resp +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa316ffaa octeon_send_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb04753ac octeon_read_device_mem64 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb0eae6d9 lio_setup_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb7b693e6 octeon_delete_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb83707a5 setup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbc662e17 lio_delete_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc4b8d578 cleanup_rx_oom_poll_fn EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6abc5b1 octeon_core_drv_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6bf9b49 liquidio_change_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcfd5d8b3 octeon_send_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd3577e20 octeon_droq_check_hw_for_pkts -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd402e61c octnet_send_nic_data_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xda703d05 lio_process_ordered_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xddebb702 octeon_register_reqtype_free_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdefb9c72 octeon_setup_interrupt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdf75ed6d octeon_allocate_ioq_vector -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe01180d3 octeon_mem_access_ok +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6e62d13 octeon_init_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd26b27dc lio_setup_cn68xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd39b177d octeon_droq_check_hw_for_pkts +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd6624b74 octeon_get_tx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd77465c7 octeon_register_reqtype_free_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdc371149 octeon_delete_instr_queue +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe2dbbae1 octeon_prepare_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe631166f octeon_get_rx_qsize EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec7f00a5 lio_get_state_string -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf3093954 octeon_delete_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf3945712 cn23xx_octeon_pfvf_handshake -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfacbdb8c lio_wait_for_clean_oq -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x07837944 fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x09adf656 fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x25c52384 fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5029d385 fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5c7c9bd0 fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6fdf3ec2 fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x72f73913 fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x81dc9d11 fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x884b8b58 fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xbf57b4ee fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe095ce6f fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x79d25948 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xc2630759 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x3d11e325 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x73afb97b ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x807a49a4 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8570b71e ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x890fd549 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x050e4f8f mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x070cfa82 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0abba32f mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cd3570d mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x143f9f7f mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19d99e92 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bec4fa4 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cfe9198 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d5ce2aa mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x202c47cb mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23795bf9 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x243c847f mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2802b9bd mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d4d192c mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e9ac107 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34712de4 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34ef216d mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x354120a8 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38cf3915 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e38d3e9 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e5c716f __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f271494 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fa419f9 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x419a583a mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4292a84a mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46fd5cae mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x476fd0af mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48462552 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48a6f49b mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49d73511 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b126bd0 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c8f7b0a mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d1fe9d2 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e916015 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ebacb6a mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5124b34e mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x519d6312 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x523ed6ce mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5340a194 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58da6cd1 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aaca0fc mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bfbcba9 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5db9e03e mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6389c07b mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63eb7fcc mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65420374 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x675f05b3 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a11c8cd mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a15582f mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a23b5a1 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd42cbe mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72fab2fd mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x744b2638 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76e8a9ce mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77c3d343 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79611feb mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79b811f9 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a4813b6 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7afd2180 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c47d71d mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f72426c mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa94131 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80137b0d mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81afad4e mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x823a7d41 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8690fdec mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x890fa4d9 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a6761a4 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d7f146e mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94ba9b46 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x950d7bd1 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f2e41c mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b6fc9ff mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e7178e2 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa07857bf mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa17b77b4 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1e4ccf0 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3bc94e0 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa1e9b2a mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabef26f3 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacea0c1b mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae364257 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafddac5e mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0b0ccf0 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb15c5857 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2e4fbf7 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d310e5 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb62f9d74 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6ce4d93 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8519272 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba22099b mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbab3ae04 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe09f6cf mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf1681a9 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2c4e071 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc37efcf1 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8a919bb __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9abb063 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca78aa48 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc07cb91 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0def409 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd29c7a72 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a01263 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6eef60d mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd782bc0b mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd91f28d3 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda545211 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbc28069 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc3f41ce mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe14eef8a mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3bef8da mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4c8a20b mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe58c037e mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe88cb27e mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb25a7ae mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd80132 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9af159 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefe62f22 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2226afa mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xed241a03 cn23xx_setup_octeon_vf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xee26f02e octeon_allocate_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf3a1f615 octeon_pci_read_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf3b5f272 cn23xx_tell_vf_its_macaddr_changed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf466c733 octeon_unregister_droq_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf5b75408 octeon_free_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf70de161 octeon_delete_droq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfa3f4f7a octeon_deregister_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfafe08a8 lio_process_iq_request_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfb484653 setup_cn23xx_octeon_pf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfb965eb3 octeon_setup_interrupt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfdd5aa8a lio_enable_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfee58193 liquidio_get_fec +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0131611a fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0aeb52a1 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x16326d12 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x46115b7b fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5316f843 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6562e850 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc6afb6c3 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcb8f4d50 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe1d60d68 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xf3ac5862 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xfdfd8c40 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x0421ac6f i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x1dce8411 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x08c385aa ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9f2c9fee ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd141aebb ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf8fda546 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf965938c ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03165918 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x045d2827 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06392bf3 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ab52aa1 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ef59383 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x134e1480 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13df2226 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17b153ae mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a41b566 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cf0d1f6 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20ec439a mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21ac4ff8 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21d3a232 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25ad0e1b mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28ae48ba mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x295bab75 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2df0c8e0 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ec1fcb9 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f9bd827 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x331229d5 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x336fa822 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x362362ed mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36a77fa0 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e4edfd0 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eb2f862 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f4f04a2 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fc100f4 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43070ac7 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44588c21 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48767ec2 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x495c4f89 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49c3b73f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a08428e mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e0cd798 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ee8e9ee mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f86b677 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x501d5c83 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x510a1b67 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ce8ac1 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x532085bc mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x554aa2f6 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55ac91d9 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55d78541 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55e34a88 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x577a238d mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x590c1d5b mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a7c1a46 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ac14a31 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b358860 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5de63b8d mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c14ab82 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72a43fb1 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x749a8513 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75772b1d mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77b976da mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77be787a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7847586e mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78da18a3 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x790de29a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cb70948 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dee853a mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e1ed79b mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e2e24fc mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x834ca733 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84b96ff0 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86fc38a9 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8882ed51 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c52513f mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d57d991 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d6277d3 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e543e61 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fbe9c8d mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x931910df mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94c7ef1c mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9690bcf8 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98d77b6c mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99881952 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a91dbe4 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d76d3f4 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa50b2510 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa947d75b mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9d5e110 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa356a28 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa5b946c mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabe9b583 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac8af6d2 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad37108a mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0ca8dcd mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb45fd540 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5baadf6 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8349d01 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb935bc87 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb1bc596 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd45bf7b mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd9e50ca mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0ba99cd mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2ed8cf0 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc498e4bc mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6d3cdcd mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc966c636 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9a19fa3 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb291a3e mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea7f750 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3fa1907 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7533439 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdae3ccad mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddb7ebf7 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde1e0cf2 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe165263d mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3d8b67e mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe455c148 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5baabe6 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6e36ec6 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea60891b mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3390b5a mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3b487a7 mlx4_srq_query EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b0999f mlx4_put_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf86284d1 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcbdebb1 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00d964fe mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf51b1468 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf599475b mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9f319b1 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa984f67 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd4c810b mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x004a2659 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0073c23c mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0179b22a mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01e299ba mlx5_query_port_ets_rate_limit EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x087c116b mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08a1442a mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x090cacae mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09a66859 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e8680e8 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1068c119 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x122c4723 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23600752 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c299e5d mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x339b9aa2 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37d73a25 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x419ddd8b mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43233ac4 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x451673dc mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x457e9b44 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e9579ce mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x504d6373 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57c00a74 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a234c3c mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c8cc024 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64230381 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64aff95d mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67497fdc mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6766ca4f mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6df01af8 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73969cd8 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7715a735 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a157a0e mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a2519c4 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b1cc4c0 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f54b00e mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a4dd22f mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f6382ab mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1110dd94 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22474740 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25b23cff mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2953e17c mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x328eb842 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36fa6a3f mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c6a73b0 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fef4af0 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46f5dcf8 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49e0d1ce mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x503a5fbd mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x505597ba mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ce4fc1 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5460fe39 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56281288 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x570986dd mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a5f2e9 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0b66af mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c9e2e8e mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e703dd1 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60aff476 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64189c83 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65952a60 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6651e2b4 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67675216 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d53002d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71fbe743 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7555710e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7db6c151 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8126df0c mlx5_set_port_tc_bw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81b81ad6 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e1b3a86 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9661e098 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a4d4e42 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d762bc5 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac471f56 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e05cbd mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9befc89 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc06b4b55 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26ae406 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3774644 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7506945 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7d2cd7d mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb804a3b mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc134d79 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc83abd2 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd09832ff mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f88ea0 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8b7383a mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbddef12 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6e1eb15 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe94dcfde mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb4ad48c mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9d992d mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee9cd5f8 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeeecfdeb mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf23eaf5c mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf27105a3 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf474d527 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf67a361d mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8d625d6 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa7e05d9 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcb6edff mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff2ba5ec mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff45b98a mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x04e35fa0 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0fe39b75 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x18af9e32 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5ac12181 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85fc2e66 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8749da2b mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8827fcd4 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ce3b5e9 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f5883f1 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93aba2bf mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95072528 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc8b550 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2cc1572 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7389985 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabc93d4e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaceb5cde mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafa61ffa mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba1bf736 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf3c3bcf mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfca6135 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc65c8761 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc66adea1 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc933acaa mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc97e6ca7 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcba3a426 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbea1e23 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef393d2 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfbe448a mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd48b260b mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb222c65 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3359e1d mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ac4d23 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8d4ffcb mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9ad86c8 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbc44ccf mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x179fb6d5 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4c9b7a92 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x597125c2 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xdba20681 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x88d3d5f7 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd736d18f devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03bb7a2e ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04b0cd76 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0816b65b ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a0be3fc ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0dd7ec07 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x118c857e ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19e5a3a4 ocelot_phylink_mac_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x201a500f ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21411d91 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22d5418d ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25d0ec69 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26f3e835 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ac1e222 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x342bcb74 ocelot_mm_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3930348d ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e747c55 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x574886dd ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a194b90 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e5d80bb ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65005df3 ocelot_port_get_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x789a6007 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x798f6539 __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bd06e7b ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8754119d ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89fe50d1 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x909d295a ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91a23360 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x998d408f ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa145396a ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7e7e50b ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacb3a398 ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf74a2db ocelot_port_get_mm_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb69f1903 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc4c162c ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3deb96e ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5a61d46 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc1899cc ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd26224bf ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2b48403 ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3986126 ocelot_port_set_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea063435 ocelot_port_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeca66ff2 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5b4db9c ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5b5d8cb ocelot_port_configure_serdes -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfde7a932 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0a039a2e stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x16d46284 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05753cf2 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f962c4a ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2750a3ce ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x301c49fe ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x322a5bf3 ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3738fd3a ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f3a0997 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x455e07c5 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b11ecf5 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x500d2e6f ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5593c5ae ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5959a7e4 ocelot_port_get_mm_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5aa5cc4b ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x714f572b ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74f62095 ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75606abe __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a42a0e2 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fbc4699 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x812c2977 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8315f03a ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84462c74 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d4db1ed ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90f8e6f9 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa33464a8 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4573b0e ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa496bdf1 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7b080bd ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc350ec78 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3909753 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc841ff88 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9814a00 ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd250654c ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd53c17e9 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda7ac463 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda9c8c51 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4781120 ocelot_port_configure_serdes +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe90f17e4 ocelot_mm_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee4eb222 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf01155f3 ocelot_port_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf112d6ad ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf41d8561 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf652f800 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf72b511b ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9056c1f ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc778660 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0d58660a stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0e8b56bc stmmac_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x88ea18e1 stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9f73f96d stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb1f8c7e0 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb74545d1 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0411c82d stmmac_pltfr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x39c65f8d stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3b555b0d stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x572b1204 devm_stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5a520d12 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5e077561 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6193d549 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6e40c76c devm_stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa42a8b43 stmmac_pltfr_remove_no_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc399f2d6 stmmac_pltfr_exit -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf083837d stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x51eafac9 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x6b198aee w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd405304a w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf79f6c9e w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/geneve 0x25dbd4f4 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x091be591 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0bc27175 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4371d4b5 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x825fd22c ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfa65dbbf ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macsec 0xd8b2e628 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6ba21217 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc585fb59 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd390176b macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdd6eaea2 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x6b87f2a0 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xc50db1d7 devm_mdio_regmap_register -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-lynx 0xea2cb99a lynx_pcs_create_fwnode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x153feb53 xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x60c6afbf xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6ef75200 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6f402f18 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x718c7025 xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb7ff26ef stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xba2fb706 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcb3fb192 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf58d0a19 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2a5e1c47 stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2eaa24ab stmmac_pltfr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x52c287ff stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x57172297 devm_stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x805f4413 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8a278e8b devm_stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8cf65045 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a6599a7 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xadebbe40 stmmac_pltfr_remove_no_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd19af2d0 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfe8f4ae6 stmmac_pltfr_exit +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x00c37619 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1607c9ad w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7672acb1 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe64ec9a8 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0xa0cf744a geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x12f54fc5 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x4b32f98c ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x82b525d4 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8a82e7b6 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xede77a76 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xa68b4318 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1ecef4a6 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x464a73af macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfc23148a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfd63a704 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x55b27fab mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0x17cc8a40 devm_mdio_regmap_register +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-lynx 0x80060608 lynx_pcs_create_fwnode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x377c974e xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4fd04249 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5f1e4a81 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x69b91a56 xpcs_config_eee EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b430bc5 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe6f20512 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0528e921 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0eb36c75 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x100b55dd bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18429915 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x19973f4b bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1f7665cb bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x200f921a __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x208e8b73 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x426958d8 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4370373e __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x443adee7 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4538a8e0 bcm_phy_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45750b60 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4cbf4642 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e03da04 bcm_phy_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f83968a bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57120cf8 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c52d867 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x607cb38f bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63a6a290 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6dccc951 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7088a2ee bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72dd140f bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7550e300 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7c5bebf1 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82c9721d __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86d52e48 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a173769 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9ffd72f1 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaac9fbd0 xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d7da391 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x324bb08b bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37e497a2 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3dcf30ac bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x410bd86d bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x47dcf3b5 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x53b5bad3 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x70f072b0 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79cd9368 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84dd2c0d bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b9aa77b bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f3b8d1d __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9aac008a bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b509c3c __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0d67f78 bcm_phy_write_misc EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbffc56ab bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd01ad528 bcm_phy_led_brightness_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdabe6fcb bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdffee068 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea58318a bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1822f3d bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf73e9aed bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa45ecf8 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfc997cd8 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x5d397b1f bcm_ptp_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xa18be5c7 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae304bd0 bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb1c9a80f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb58c5865 bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb60b3254 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc3a4a01 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbdf4b16b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc204cf01 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb6af3b9 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd309971b bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdbe8bc7b bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd173491 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd73ad01 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xddec4b7f bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde9303f6 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0dd1b45 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe1e2e826 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeca3a929 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee73a7b9 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xef803e40 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa79ce0f __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfdd4d43d bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe92fa4d bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x3519fc5f bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xd3caa629 bcm_ptp_config_init EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x047af2e4 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0b615894 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x26b2e02c phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3abe6fe5 phylink_validate_mask_caps -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x416a14a3 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4278d56a phylink_expects_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x536ff534 phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5f9642fc phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x69a95ee1 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7add4819 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x70ca81cf phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8d76bf93 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x94299178 phylink_decode_usxgmii_word EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9616a255 phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9b652b6e phylink_resolve_c73 -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9f6a25b7 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa16449b4 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xacbbf2e1 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb1b3f6ed phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb8fd496e phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbaf8a194 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb32d7d9b phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbab3ca33 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd299c938 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2ef6a40 phylink_mii_ioctl EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdb6483a4 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x10669281 smsc_phy_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x18502d57 smsc_phy_set_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x60e73c2a smsc_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x6a4ebd9c lan87xx_read_status -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x6d2cb32e smsc_phy_probe -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x911a6bca smsc_phy_get_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xdba0347f smsc_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/tap 0x2b1c7167 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x362272f7 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x53efb951 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x6ca9d1e0 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x6ce3259f tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x74e62fb3 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xb9a0659e tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xc5cc0c91 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xf0668f76 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x01d136fe usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x28f4d035 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb23b48ce usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb6488e02 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe8ba97c3 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xeda29f84 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfabebc57 usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x139bb37e cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2418eee9 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4acfd090 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6b10b9df cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x72aee33d cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7afa72dc cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8d28c3d6 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb84c163f cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbd09d768 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe544302c cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xef10814b cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x2e639d18 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x04192062 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x38af75f1 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5fe08ee5 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9bf60346 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcdeef6e8 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf4dbda30 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x007b5211 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a026e01 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0da46a41 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11f0b046 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x138773b7 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ef2d70c usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f6d6cea usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x31ef6d24 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x328ce6e6 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f336dd4 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4404118d usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49cf376f usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b333599 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56d9dda2 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a28f04b usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c6ca136 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d2c1ba0 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67f6a9f5 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79e5babd usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x818c7319 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x835b5839 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x851a3e31 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e2414e4 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e6c5785 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91a841a8 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9bf7896f usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xadd26f13 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb20b5c84 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb50049c2 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8ace64d usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5cdea1d usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd63a43ca usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe253ec4c usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa20661a usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x3bbcb7fe vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4bd6b92f vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4e4dd4fd vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc6be32aa vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xfb6fc086 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x034a9fe5 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2776be0d il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3293c7a4 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7825eb55 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe048e4cf il_remove_station +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x21755ae1 smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x393e9bf9 smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x3a9de1ab smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x7fe86045 smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x8e89a1cb lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xb0fd3a65 smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xfaa8400d smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/tap 0x08410d40 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x13b9c084 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x244c25e9 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x31b720e6 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x33253db3 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x5560b274 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x8f6ddb3f tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xdaaff843 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf3995d62 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2c1ca8a8 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9b30f01f usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa55e2531 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xba6e30d2 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbaf19803 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcf115cfb usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdac8c0ee usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x00c193d0 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x053f567d cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0cc6f771 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1cdd5414 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a9c9d27 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x64114ed4 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x73f6e77d cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7a33cd78 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x84b48269 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9afe918e cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfd57f072 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x7fad3ad3 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x04cfda08 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1a226b50 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x32c93388 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7ca7e40c rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x943d86b0 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9e0c6107 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1acc9286 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1eacf870 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ea66457 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36dfd282 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4184d1c2 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c10a50f usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ee2c794 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d479c85 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x641109cd usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67026ccc usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e76ca5c usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74a672dc usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77a18374 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8eeb824d usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ffd968e usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x942e2823 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab048aa2 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xafc95934 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb263416b usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb64f7a7a usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8eef779 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb99d0994 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc886ef0f usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd10f7122 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd80ae6b4 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb145f72 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe49fcf47 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe60be721 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe98b5fd7 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xebe9abcf usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee468931 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf26f10de usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf391d144 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff890196 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x032c89c5 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x083e3adc vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x36b6829e vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa2145134 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x796952f8 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04176800 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18da4acb il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52b9b7cd _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x732c34ce il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea793416 il_prep_station EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13863121 iwl_fw_lookup_cmd_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443a0ac3 iwl_fw_lookup_notif_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x033a56e0 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x16b09072 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5773bed4 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5952af77 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x62b42685 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x708f72fe p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9130e405 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9177324e p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa0952255 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2bfc20e2 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4b7eafe0 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4bcfccb3 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x500ecbc7 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x50e8d43e lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7759e643 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8702b206 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa2f01a72 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb1e88d86 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb9dcced4 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc079b1d5 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcad5a082 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd07661fb __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd50dedfd lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec937249 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x250471e5 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6047a878 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x82cc1d48 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x97e8d459 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9ca4f72c p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc18afde5 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc4a9702e p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf26305ec p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfe96d18a p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x03b09858 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x07ad8d78 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x15a51508 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3e39fdfe __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x585d57c7 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5a8729d2 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x69b68373 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6f936103 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x847cb9ce lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x900b5985 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x99d2a4fb lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa83e4dbb lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbe87e383 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc55ce764 lbs_stop_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfbbe8320 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x10259a53 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x258b2085 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x435563a3 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x463316db lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa61c0258 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa6a636ad lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfaba4e54 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfce9ef87 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x159c48b3 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x266b622f lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x33c3ec8f lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7daa7310 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8895de5d lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9b354dde lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa165db0a __lbtf_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe0a3aa97 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xebb33f49 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x00bf97cc mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0b3e3889 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1ca81eb2 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e6f32a1 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x28ec936d mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d128aa6 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d36eabc mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x46dafd58 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f132284 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6395c697 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x775ee945 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8440991a mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x88e1d062 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x94d21349 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9e0b2e00 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa605aa7b mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6971436 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb5b70da mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcc2d7d5a mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xdd18cdeb lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x001d23b3 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07a05294 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x07c0317b mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x273cfaa5 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x52976edf mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57e0f05e mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6c8a5c53 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6fd88b1b mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x72ddb496 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7dad07b6 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7f3371d2 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x864f448d mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8b0290de mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93a190e7 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9da17226 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa24f953d mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xad35b52a mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf89a350 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcaf78cfd mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcb173f40 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd46b4671 mwifiex_queue_main_work EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd68b627b mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdfdbd902 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe07469fb mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe31755b5 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe9d38765 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x018577f2 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x050f711b mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x064b992c mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x091426fa mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a0460a3 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d22be1b mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x135cdc59 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x147746ad mt76_free_pending_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x151cee18 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15dc4cff mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe4f13418 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf9e37258 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfe704ea0 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x022aeeec mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03a2c906 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03c165a0 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06435c93 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07f496c1 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a104622 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1021e0f8 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x102f3746 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11d03a06 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13032041 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13c52416 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1636560a mt76_wake_tx_queue EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1af1bf5e mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ce2bac3 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x195ca210 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x197e0f5f mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19ad83a3 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19ed53cd __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b8a0bc3 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec411bb __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1fc744db mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x221f7112 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25549ae2 mt76_ethtool_page_pool_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29156423 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2abcedec mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ca6e251 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f3d9828 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3429ea5f mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x361896d3 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x380bd5b9 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3cdf7c9f mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fe4132b __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x440e5545 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4659e87a mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c77b08c mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e0d4fdc mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4fd84948 __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x511372ee mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x540c9025 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f147eca mt76_dma_wed_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62d4edee __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64275444 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x675b745b mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x699bf76a mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d138887 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f2131f1 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71aadda1 __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7284ffbd mt76_create_page_pool -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74e0fc58 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77a9b524 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7864e03d mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80675e7f mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x807e8846 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x808d324d mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82367388 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85b97dce mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87c16480 mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87cddf6b mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a834ae7 mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ba1d131 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c7ebf92 __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d1dd57e mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e264949 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f447cde mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x930554bb mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96046762 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x990600db mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c09bbb1 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ce2c13c mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4f11ecc mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7e3dde4 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20f79604 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23cb023a mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2624d643 mt76_ethtool_page_pool_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2beb98da mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2cb7e9db mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30279708 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x31eaae39 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x326496ef mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36297128 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36cec047 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39d3fa83 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43d5fb5e mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4665b73f __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48927e3e mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49bc6b0f mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b8b9c5d mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c084f8d mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4fd9e6ec mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x556be2b5 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x565f561b mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a3238ce __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d33f5c2 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62cd0fe2 mt76_create_page_pool +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6354e5c0 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63f80138 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65e9f4e3 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6870a2b4 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68c0c388 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x693d1086 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e6721ac mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f19c699 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7731d2a5 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ecf2de0 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8047b749 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x826b4c7d mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x894bbd80 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8cea2e86 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8da2cc09 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x96106d95 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9707cf2b mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99e5cf4d mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a4d302e ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f646cb8 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1ce5602 mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa49f5536 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa4fff1d mt76_dma_cleanup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac7bdf70 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae8899be mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb48025f1 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb68bda15 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb959d94e mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9836438 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9ff52a1 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xadc82ffb mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb22d2244 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4fd8088 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb83dae0c mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8babde9 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb92b03a9 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba23c3ea mt76_tx_worker_run EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf875bdd mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3f7c247 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0ceb7e0 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1c90ffd __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc541c26b mt76_calculate_default_rate EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6e50d7c mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9e76a31 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb934034 mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd2b17e7 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd3e922d mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce3074d8 mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4dac544 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdea31c38 mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe01df468 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe13e3655 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9f2adcc mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdd1ecc45 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfd6c533 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfd8fbf6 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe071ea1a mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2381420 mt76_pci_disable_aspm EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8432440 mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea5765ba mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb9a5fab mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec8f157c __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee43063a mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef8a7749 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2107f46 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2c7c4c9 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7bf1007 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0243424f mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe480c62a mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5a8ff28 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7055090 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7dc83f1 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe90e966d mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xedadf246 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeed54be6 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3085269 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf398a8ea mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4233667 mt76_dma_wed_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa71d8e2 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x019d889a mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x029adcbd mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x057f0730 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x065f7e22 mt76_connac_mcu_beacon_loss_iter EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a25337f mt76_connac_gen_ppe_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0af41b70 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0be10488 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c658b26 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f64399d mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x104fa9ce mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11f85736 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x153079ed mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17326482 mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1755de01 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x181e6898 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c1bfe39 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26b2c1e4 mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d96bea2 mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e232041 mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e4c893e mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x371d4c84 mt76_connac_get_phy_mode_ext -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b8c80f4 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ea163d7 mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x462e05c1 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47a6cd05 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b62b56b mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x544c7f84 mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x577bcc15 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5901fde1 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x67668c34 mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x683710fd mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68ed3e67 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d2e3e00 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e2a923d mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6fd7f1ea mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70982c92 mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71dda5a7 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x740cd249 mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76aebfff mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b96654a mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7d7e7e76 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7d8c3506 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7de374e7 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82df3598 mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86c76023 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x886a8421 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8a626d0b mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10fa5749 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1577b718 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1757df40 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x199d110e mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1af4873e mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d33f454 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d70a34e mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1e27bc0c mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x204115fd mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25391bec mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28a1d3c7 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2aea140a mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34428709 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35bb50b0 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3624b492 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x364a10ed mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3747f4f6 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x375bb5e5 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b119e8b mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3e7f6ded mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x416cf563 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49acefbb mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bd6b7c7 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x52843819 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53c9ba11 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x569f37a1 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a1cc030 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5bcc73a9 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60839140 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x66d848ba mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6883a5ed mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b47c642 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d814063 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70dbbe8a mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82a552f0 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x862c29b5 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x862ce053 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b8102da mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8c22857b mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8e7a35e3 mt76_connac_mcu_bss_basic_tlv EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x91f538b0 mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x967b26ef mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x985272a1 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c1b79cd mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f0e2ba9 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa1126e02 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa15e02d9 mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa862f505 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf8b8c5b mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb098763d mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb1b8d389 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3b7fcb2 mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb66c4c61 mt76_connac_get_eht_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6773beb mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb9c7b31 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbe5a08c2 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc11ed309 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4908795 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb91e3fc mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd1567206 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd8c6c350 __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda75314b mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc537415 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2d1265d mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5e57f87 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea588444 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea87ad2a mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xee2b6258 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeee6fd82 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1fa0b5c mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf48c9824 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf998a095 mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb89479a mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x024c4877 mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1022dbaa mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x18b2646b mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x250ece94 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5986be50 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x76f591ff mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7ba45527 mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x831267ff mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8afc794e mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8cb3bae7 mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x99a62795 mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa42ddeec mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbf493d0d mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdff996d0 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf163b96c mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf73eedb0 mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x136281ef ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x169efe3b mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x175438d1 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3ec73c91 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4cb0ea48 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6a5ba274 __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x709dbcc6 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb4585144 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb5703f09 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc1b62494 __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc5adebb9 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd6797b04 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd7b632e6 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe8490dd5 ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0a67261b mt7615_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x13744df0 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x16e6d117 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1917bf85 mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x19ce2b84 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x295e7130 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x35105fa4 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3766e7c1 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x37953b03 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4ded4750 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x563a7515 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5abbb167 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e8eda5e __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x710b487c mt7615_led_set_brightness -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x747e37be mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b898e0c mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x83de8ff3 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x86ed4d89 mt7615_led_set_blink -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x87acb916 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c7df8eb mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8cbed840 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x961eb401 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d4a4466 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa41b4a37 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa665fe76 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc30d9589 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc52faa93 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc9c94175 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd6769566 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf7df58fb mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xbfe02be5 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x92e09af2 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x932b668d mt76_connac_get_eht_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96f06f0b mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x992325d9 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ee8b346 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa13f9bab mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa89d0e06 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa90b0ea0 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xab944fca mt76_connac_get_phy_mode_ext +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaddea08f mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaeacd961 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb532288e mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb75e2dbf mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb96c1953 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbfaedfd8 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc05077ac mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc62e60b8 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9cb456e mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcece0f1e mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcf7f75a4 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd50885db mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe05bc528 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5febb90 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xec67ed9a mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed80ac2b mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xef357fbe mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf322ebcc mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf37c25a4 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf41657b7 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf8351efb mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf9c8296f mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa17cd3a mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x00f8df84 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x12d9dfbd mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1e95f669 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x28c88aaa mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x30eb20f6 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x41d42de8 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x577aa97a mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7c16f23c mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x996f04c1 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa5395bd2 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb0d5c7c1 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbe2512c2 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xce844fd6 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdab515bb mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xebf98cc4 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf1ed3bb2 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x03c1e547 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3134c31d mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3da90415 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5eadba4b mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6f97de7a mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7067d6cf mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7f155a31 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8ba6af32 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc792f206 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd0d67871 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd333b5bc mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd4fe807e ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe7348bfe mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf7305dbf mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x094667f7 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1c781883 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2cd81194 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2f20dbab mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46256e01 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4691251c mt7615_led_set_brightness +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x52f3fcf5 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x649f417d mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6939db06 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6c3e2808 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7239a15b mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7c4a6498 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7f8adc88 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8315e131 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x83822cbd mt7615_led_set_blink +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x86cbc975 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa3624481 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa53b33eb __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xac43389a mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb22344d5 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc613586d mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc6444816 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc7711ac2 mt7615_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xca36fd40 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdebf0db1 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe42e70f8 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe469fb49 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xec960af1 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf044cbaf mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf1447150 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x42d759d4 mt7615_dma_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3367454e mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x56624360 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x744bc829 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd6bd3cb1 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x01f2a6b0 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x48dc0bb9 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5c038213 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x930c6d49 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb96f6fe4 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcc6c32f2 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xddd4cfd1 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00a0c308 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00a4f9a3 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x083b901e mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x097759d0 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ee0eeca mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x111479ff mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x11651fc7 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x142889a7 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x181b8900 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d2819d1 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x209e91b9 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2673d3ef mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x289d17e6 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d208e7f mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3144f54c mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3864adbd mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x393a2556 mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4491642d mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45f026aa mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4735fdf4 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54a8f7ae mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56554601 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58f13329 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5aacf6cd mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x32e9e314 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x6edc19fb mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x9397cb79 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xac559b8e mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x02f8b60e mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1ff941e6 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2f2ab957 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x300e3e6a mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8b0db4db mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdf10b620 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf4bac410 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x04535026 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x068cacc8 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1504e481 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1777b2e6 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1792c052 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bff5c99 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1fdb7652 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x206206ec mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x297d66e5 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x330ec58a mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3489f7e3 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36094be3 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f79f0ea mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4145db46 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x427b5928 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x436b7a33 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45730527 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x474bb57a mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e41ddc8 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e7824ab mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51188e9f mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x573f7341 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5751cdd6 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x588ebf95 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bca5734 mt76x02_tx_prepare_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64d5c39a mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b024fed mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c5adaf1 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c718caf mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7472555b mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x698c97ed mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a7b6985 mt76x02_phy_set_band EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x796f2be8 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7983d49c mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7a407320 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ac7f144 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d240ad4 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80e8057a mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x810ebf31 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x812168c8 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83950f15 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x849a2c00 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x857a9c9b mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8aef66a2 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b6411b9 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f04e8a3 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x764febd9 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x766a371f mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76c9981f mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x777562bf mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78093347 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80c66848 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8977992a mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d64cd9c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8da97119 mt76x02_dfs_init_params EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d0e0e8c mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa19abc02 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa19bd8f1 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa276d48a mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6164223 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6c085bf mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x96fa0a20 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97134194 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98b913d2 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9954bfb5 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa665c155 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa74cd68e mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9a8a1f0 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa3f8756 mt76x02_sw_scan_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xadd0eb14 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafb2fc5c mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb12bd1dd mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba2514dd mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbfd3eecf mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc64bf114 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc7f7e167 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc1a8944 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce15492b mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe46c594c mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe722eda7 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7ef3c3b mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9fbb1ba mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb23e300 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf171d35d mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2d32252 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf72d7614 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x21df83fa mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2b8756ae mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x342a342f mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x37527f68 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3b95547d mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6480d087 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x920ac2bb mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb7a019af mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x04b6b03a mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x18d64628 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x19354dd6 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1f6478ac mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23845d96 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x348cd398 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x359b7942 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x36f3e3e7 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x42c60d3d mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x471f8278 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x57cf0671 mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x632386e0 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6e028056 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7ca4d0af mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fb3ac96 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x95f9564d mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc16feeaa mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xca27f9c5 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xca928d66 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd679f375 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x004054ef __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0b816841 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1a4b2836 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x266bdbcd mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x27aa0bad mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2f695d7e mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x542ae1b8 mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x575ebad9 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x59baeff1 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5af50d30 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7d48946b mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x83a9678a mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8d735297 mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa082cbcd mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xae1a1db7 mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc1a9e11c mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc61e85fe mt7921_get_mac80211_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd06b2454 mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd9dabd73 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdd1a91d8 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe7115523 mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf06a8ead mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfb167a1e mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x08410fa8 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0fa8dea5 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x10e03d26 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1df8a502 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x574af842 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xad585cbc host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe0a3bcd4 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x144a90ed qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31d60bb7 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2f019b9 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4508aab mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb551e396 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbafc5fab mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc676d39 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbeca3427 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc66c4f92 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb7ed4e4 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc193fde mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd20bdcb1 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd389aeb4 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd3d482dc mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd677d479 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd75cb24a mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd90bcf7f mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdaf588a3 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd17d71f mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe095fc52 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8c2f8c1 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea6f5689 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xebdce409 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf01872a8 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x29d38253 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x574cd250 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb16dbf5a mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb9f5bed0 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbe9938c4 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc0532903 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc38d9703 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xff70f747 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x14c28b32 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2815de9f mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2d84d913 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x361f4f28 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x401d9f1b mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4b238122 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x59f31c46 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x65a7667b mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9346109d mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x98a26456 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa5d9c805 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa85b7d79 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc1c89d12 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc205a02c mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc8ac9229 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce96a9d7 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd603c619 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe5774534 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf23c6e21 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf69e38a8 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x122f6ff7 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x14ff917f mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2df0e1b4 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x37121017 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3e5ab4f6 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x46d796ce mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x47008a1f mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x476717c4 mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5000ed65 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x522502be mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x56e4de83 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x658016f7 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x67cb6dc7 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x67d22539 mt7921_get_mac80211_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7c896047 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7c9f9d0f mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb00fbafb mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb82fa443 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd1c79057 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd2e47de6 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe3a09996 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xee7a3612 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf3db77ba mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x162c03e0 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2a28bff2 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4931ebf3 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x86f670c4 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xac452372 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb170a5dc wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb43da9ac host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0ce17a03 qtnf_get_debugfs_dir EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x333c054b qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd83a6e17 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdc651707 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf8425315 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0a0f504b rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0de3ef95 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18934123 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1cfa2dff rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e47b5f2 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1eae0d81 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x276ff610 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2bf46ce3 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d9f7149 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x30d7cace rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x34cc07eb rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x356b64e2 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x42ef955d rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4cbc13e3 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x51ab6b85 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56b00284 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d259344 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6125d71f rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6522cabf rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f7b3c73 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x700f3b8f rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74cba32f rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7746634f rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d9461d7 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x867b49f2 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86ea0f2e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98daee1e rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1113935 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa72589b8 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa9fb8aa3 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad5d9fe4 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad740486 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xadfb6ace rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbcddf186 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf283205 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc32259cc rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcbab2de7 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc37eba4 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd6d471d rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf0c14a8 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf6e5856 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf138b9fe rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4362c84 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd4294db rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1060ae01 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x259bd67d rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2d03416f rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3c178b0c qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6b30efa7 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb722ce48 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc05d854c qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdcbc5db8 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09302b7e rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ac6d282 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x149cf68c rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17fd960f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23478bd2 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x238c2d8e rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x282c21ff rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38d58f67 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ce57515 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40f314f9 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b3b1b2d rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x521581a3 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54656c17 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ca5fdda rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x68db70b8 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69afc1b2 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75d34e5d rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x797b8a91 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b34e234 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x82f73f42 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83309aea rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85c319a0 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x88056986 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89d0d1a8 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93592ab5 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9519e682 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9615a0b4 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9998b40c rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2d30f21 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7aceb71 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa46c91d rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb2aa0248 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6b5e759 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7ef2379 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8d347a9 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc157b9aa rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd716a0e1 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd82135bb rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd84a4547 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xda889467 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbad0ff2 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbd8d911 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4c0d6be rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf8e21d65 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2854a2d1 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2b9cc8b8 rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x343b2b7a rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x36c9b2f0 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3420dc7a rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3901b87e rt2800mmio_get_dma_done EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4e82aeb1 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3efb0728 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x415454c5 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x459474ae rt2800mmio_kick_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x51700ae2 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x582c0697 rt2800mmio_flush_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x649800f4 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x91c9b82f rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6f1e0c35 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x821ee1d8 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x895918be rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9672bdec rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f2d4f6f rt2800mmio_get_dma_done EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9ffdf18d rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaef5ca6a rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb3a3db24 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbe0d1f14 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb17d0b1 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x073a6770 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x07cf3543 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x16fe9f37 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f730f35 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21a153d8 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22bea269 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x268e89fc rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x29f757fa rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d7212a0 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x303849b5 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3bcbb392 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ee79bd2 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41318136 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41e8029a rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45d88786 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b922cd6 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c4322f7 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b033be3 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62ff7d8c rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x633a743a rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67199fd3 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7084b2e9 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x784e4ec4 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88723afb rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e8929cd rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8effd651 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91d4eeeb rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4a59746 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xabbbc8b8 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0d63d53 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0082afc rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc39bbf31 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6ba748e rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc9895167 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb25d106 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda882423 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdbff94d2 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdcb439cf rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe19b7234 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2677d00 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe6a20ced rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe75d069e rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7d20cef rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed0caa49 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf291f7bf rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb4e3b9e rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb8ce990 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2d8e2f95 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6658747f rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7384bd60 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7f878245 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd3808ee9 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x19e15ced rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x252ed8f0 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb18ea74b rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1aa21979 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x41030a88 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x55af16d1 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x680aa943 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x697bddae rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7e7bdcd1 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8d83730c rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x92d9ef68 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x931d7ce8 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9742cb7d rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaa1ac2cd rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb8ae6a7d rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc51f5fbe rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca6282fe rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xddc08283 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe018d778 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bdeea9a dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52e191d1 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x883ba857 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb44650a7 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x054ed5ba rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d2f1a83 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21872fba rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x244484e1 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29998805 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e04bd38 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e373a0a rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaddd88d8 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb2257b76 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb22f2115 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb9ca74b6 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xca1b3168 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01f81299 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x071684da rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12118eae rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17ec1033 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d958d97 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22913c03 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c171d5c rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2dc600df rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38dc76e9 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38ec1750 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x450e0d58 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47cc741e rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48ab8344 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4984274e rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x515596e8 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61b0ae26 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68843d12 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68cef4fb rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ec41dc4 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x726f5519 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7274b786 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x778a37fc rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d56f032 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x80ea3caf rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x818200a8 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8a9b3b21 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8de15e50 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f9e6e99 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9077f6ef rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92d8c97a rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x979a7f1d rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ca7e7a8 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa88f6e3 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xafd1d160 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbdfcf5cc rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc431e63c rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce4e47d1 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6d65f95 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd79eed8f rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe4ef365b rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7f533a9 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf426cc45 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4df42b1 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf58b6023 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfab39da7 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd319065 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe9e2648 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4fef6cf4 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x60824394 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x65266786 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6ea2cab5 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa33d6119 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x25b64e68 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x277d508a rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x86283e6c rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x06d017c7 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x098e0400 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1405fac8 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x14f35b95 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x176bb8bc rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x44b513f1 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4b1e23a0 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x54a1703b rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6b8e8650 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa52d210c rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa9928ef8 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb05d8418 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb9b6451e rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcdc78c86 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdc3c4169 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf21d44f7 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2433dbc4 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a42ca39 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa0f63531 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd49e5ea1 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x06319e67 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a146433 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1470bf91 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1bea91e9 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2bff4e48 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f78f226 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x323f7edf rtl8723_cmd_send_packet EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x40ad172b rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x427f7ca9 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x455d9f18 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x55892885 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a55f815 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43d039ba rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4cd7408d rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f52e7a2 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x51fd33fe rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8812f68e rtl8723_write_fw EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8d3fa9dc rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x997e93ee rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac229583 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf5ef4c1 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb425ab6d rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd49c6e9e rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd55aac85 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd57d6e28 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xddd20839 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2485436 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeca29bda rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xecde33f2 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf4a4f7ab rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1cc50943 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8f2ec96b rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa490b631 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa4b16be8 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd5f2639 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbe514d18 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfcb3ad5 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdaa7ddc0 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdbf2a289 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe55e983b rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe7fb57d2 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec754221 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf8a4e49f rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfec4f5a7 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08df6d8f rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x091600d5 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e551194 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1eaef416 rtl_init_rx_config EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33b608d5 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3807aea8 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3cecef93 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x433a7227 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43e8867c rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d0616a3 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39aca84b read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ac98b88 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4764af0f rtl_lps_enter EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53b8da4f rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5903f8aa rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x595fbdff rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f005db6 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60aa5965 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x650c1ebc rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5663d645 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60c80b70 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x645cc841 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68e05ee1 rtl_tx_report_handler EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7812dbbb rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78a663bd rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7945a45b rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b3a87dd rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b669cf2 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f3ef462 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8917d720 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a0380e6 rtl_get_hal_edca_param EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6bed8c6 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb16f25e6 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3e37b18 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca9b8529 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe577bca7 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec3f231d rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff1aea5d rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0b769918 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0c361936 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ad3daaa rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fd9c267 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad804d86 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad9de0e4 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafc6472b rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbaae08b0 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf6963e6 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9209860 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1768ad9 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda1aa099 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2e17eb3 rtl_action_proc EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x11cf5c69 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc576f24b rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3b51f738 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x65ee8df1 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7a04d82b rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8f7f1b9a rsi_read_pkt EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf1a894e3 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2e362b12 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x315ab12e cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x605f9ecf cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa2da865a cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x3d0bbf5f wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcb973904 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xeca1b5c2 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04883208 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdea73cf3 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x61367c4e cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x79d2d605 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa3f961ec cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xec8b134d cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x431b8188 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa3da9ef9 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb46beda4 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02470f77 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02658cd6 wlcore_event_rssi_trigger EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ee77221 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1507cc6b wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b02dde2 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d5c0e05 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x174577f9 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1873c5ae wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d4840bb wl1271_cmd_configure EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x220e20df wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22a0758a wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27076527 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27332523 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2886945d wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3712b5f2 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a262158 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x410d733c wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x468e41d2 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49be107a wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e37a2b6 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x50b1df3c wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54aa3ca2 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56f144db wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x639f556b wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x684ee134 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79ab8696 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e00119c wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22ea8621 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c1f2a2c wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2cac26a8 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2dcc5652 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2fed61a2 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33728491 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x354537e6 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3863001f wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x40e8276c wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x413e317a wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4784d973 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4accbe7b wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51dfb8b5 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x522e5ebf wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5cca1368 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d52d903 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63a1c8e6 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6abdf2b2 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x832cd673 wlcore_event_roc_complete EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9afa81ce wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ec25efb wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f0b9102 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa16ed27a wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa4715c7 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xacc2a5c0 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb224da6d wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb30e4592 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb74db09b wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc8e4825 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc3fdf774 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc627f2c4 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8aa322e wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3c1345e wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc35fb51 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2143d4f wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe368e10a wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe37b2b43 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6d71d93 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea09db2f wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfac4a600 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff5c2e0c wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f279c06 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91008ea7 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6d5b006 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab520a7e wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb006892b wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0ff0f02 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc2765588 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd04ecd1 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4d38530 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd75236a4 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd34df48 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdfd9da6c wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe277a469 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe41d03f5 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf246b8cf wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9f1dd27 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd1801b3 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3795b75c wwan_unregister_ops EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x456b4477 wwan_create_port EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x57cd9ee9 wwan_create_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x60ec013e wwan_port_rx -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x6eeb393a wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x7a22fac8 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x825e4f69 wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x984b8879 wwan_get_debugfs_dir EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xc4727bc5 wwan_register_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xde992646 wwan_unregister_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x6607b72d nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xbfe538e9 wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xec185388 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x3cc3aeda nfc_mei_phy_alloc EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7e52e0aa mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xa31ff847 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0d48fc32 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5af17a97 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x644375e9 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x85129eff nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x503e0770 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8b8abaac pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9332df7a pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9ee8f511 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbd811675 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7e7ed9a2 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x171f7a95 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x35db59ff nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa82dc99c nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xdcfadf39 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0067ad16 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x01fbbf81 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x598fc74a pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8b6effc3 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xde3bf1f0 pn533_rx_frame_is_cmd_response EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe15d727a pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfea0337f pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x071d32f3 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x56ad9a46 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7505dced st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7a043e4c st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x99397b5e st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb8f5adf8 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc0759499 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcb32b70b st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x1342d9d3 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x3f2a2773 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xea001bc4 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe4f7f97c pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe586d45e pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4dad512d st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x60495a47 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x69ba7d93 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6ab3eafa st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x70595152 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa81025f9 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbb9abbcb st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcf9d23bc st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2868c68d st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x4efd1bda st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x67cbe6be st95hf_spi_recv_response 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 0x67443a8d ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x69e0f3ba ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x71b12902 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7905583f ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x96619fe9 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 0xdaaffcc5 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/nvdimm/nd_virtio 0xa8f575f1 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xf1a277f7 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x57b1c00e virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x9aef7247 async_pmem_flush EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x0790d51d nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6577997d nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6d45de5d nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x71b3bf9c nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xbea23b32 nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xaccfa3be nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x000ace01 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02284630 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0252b3c5 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0878714f nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x08baed27 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b1de70f nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1719cf2d nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a921ffe nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d8ab5e6 nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ca67075 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2cf590c2 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x384b276c nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x397611a6 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a21e07d nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c3f3aaf nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ea5819f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16e29e45 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ad35f03 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1babb283 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1da58884 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23eed88d nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2613776c nvme_quiesce_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x414e90ad nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4300a698 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x44455c58 nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4455b309 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x461bbdcb nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x489a561f nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41b70cd1 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x437bf387 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43d43bdd nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x44957fac nvme_unquiesce_io_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4bc2775c nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4e99e122 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5498fbfc nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57cb4b49 nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58dc9bdc __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ffe70ea __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x62e3c9dc nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4944c4ec nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c741a96 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d1fe400 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5897e749 nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f67b025 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x61fc7a5d nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63ad1714 nvme_remove_admin_tag_set EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x678d2974 nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e52f19f nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x713dcc95 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71415b8f __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x776dda0c nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7baa4bfb nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x66872586 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6850848d nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68c45790 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x700aa344 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a8fbf09 nvme_mark_namespaces_dead EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85108d2d nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x867e43a7 nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86d98c92 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8bdc5f82 nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x902044a5 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0b1a527 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1abf351 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab0d0c2d nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf274d46 nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb469169e nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb761d34 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbcfa36cb nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc697dc6b nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb2258e1 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1ae1699 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82307bb0 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x888c4207 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x947ae3c6 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97c2c809 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa680b021 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa6e38611 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab78994a nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xac620622 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad981b4c nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9481feb nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9aac6c9 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc67724c nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbfc10872 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc67d0e6d nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7cab96f nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc83fde93 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca01612d nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcdf26ad5 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xce0db327 nvme_auth_negotiate EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd687fc5e nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd7c4af39 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd82cf9bd __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd8a26812 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde17d9cf nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe12edbb9 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe707bab0 nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed5fe911 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef201b60 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x05e03892 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0dc5347e nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd594df9c nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf529a8f nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe42e04c0 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe49a3570 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe81a55a0 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeea739b8 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf450cb21 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6aaf925 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6bcc8b9 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfb99ea80 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd6a811a nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfef1592e nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x191a376d nvmf_map_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e328d22 nvmf_set_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2250654c nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x230da4e2 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x42027dc9 nvmf_map_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5199c3ce nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x53e3038e nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x62a50157 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x88b9a9c5 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1ea60e5b nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4269fef5 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x498b59e9 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4f4119a0 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x741f47f3 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x97666d32 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb889d0f4 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc02f3b16 nvmf_reg_write32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd8af66e nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe8417c50 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfdeb4c71 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf79204c8 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf7ab0715 nvmf_ip_options_match EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e08468f nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbd407973 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcc8a2d78 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x07858bdb nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0a6be248 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x197eee6d nvmet_unregister_transport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x46197368 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4e70d12f nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5b0f22a1 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb33ecc7a nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb73c1bcf nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc663f0d0 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc92e17fb nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe5c00297 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf3ed30d6 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5ce523bb nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x69f14f9f nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6e0d6519 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x78e9cc3f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8fa7ad13 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb423c95d nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeadde37d nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf2aa98c6 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfd375ecd nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfe23b6fa nvmet_req_complete EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x49ea2476 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x900e9a59 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xfade8b32 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4cf214ea mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7c89b005 mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb3b6abd8 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x88fd3a42 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe89b5c08 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xe2506c8a switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x1a5be006 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x25982644 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x2a2044e9 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x7db04416 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x9a9d1c78 cros_ec_sensorhub_register_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x112134ec wilco_ec_set_property @@ -16831,46 +16862,46 @@ EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x3f8560da wilco_ec_mailbox EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x080f1a82 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0967721e ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0fd2fcc4 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x108ca745 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x121a85d5 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1346b2d9 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x16895ba2 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x17b2e21e ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1872b23b __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1f2c8472 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x22941218 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x27eefeb9 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x396586ad ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3cf3dc20 ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4a0735f4 ssam_request_do_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4e405829 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x503e958f ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x531d6de7 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x66f0c2ea ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6f6cc68c ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x86c12097 ssam_request_do_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x89b39ddc ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa33b714a ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6fc6a5c ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb674161e ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbacf8930 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbf84020f ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0611fb1c ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x068c54d3 ssam_request_do_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x127cf767 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1876ec13 __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x18b0e6bf ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x32e7a5a0 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x390ae47d ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3d1f2542 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3d4bb448 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3fcee2d3 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x41dd8c42 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4d6d29e8 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4f302f56 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5fb47b2d ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x64935138 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6d3ef375 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x73db64db ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7523b3fe ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x866f7503 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x87d68e45 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c687096 ssam_request_do_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaa842894 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb9bee181 __ssam_register_clients EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc30b11bf ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc476d3ff ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcd518c79 __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xea7e165f ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf61c64cd ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc66f30a1 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd1f1b9a5 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd33415b2 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd7610e9b ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdb68bdea ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdb8e3518 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeb330946 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf7a38283 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf869cf8e ssam_device_get_match_data EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x0a4c0ee9 san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister EXPORT_SYMBOL_GPL drivers/platform/x86/amd/amd_hsmp 0xdfd927ba hsmp_send_message -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x09c9d9d1 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x1f255231 asus_wmi_register_driver EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xa268f811 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xb26b9db4 asus_wmi_unregister_driver EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xd9146b52 dcdbas_smi_free EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xf1a06655 dcdbas_smi_alloc EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister @@ -16893,11 +16924,11 @@ EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xe609be46 fw_attributes_class_put EXPORT_SYMBOL_GPL drivers/platform/x86/intel/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x0bb2e684 isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x5326e139 isst_if_cdev_register EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xc39e3f9d isst_if_get_pci_dev -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xce01aea2 isst_if_cdev_register EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity @@ -16920,109 +16951,109 @@ 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/wmi 0x065b4695 wmi_get_acpi_device_uid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x0fa6c150 set_required_buffer_size EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x17b0f8ca wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x49e7001f wmidev_instance_count EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x69f3c02d wmidev_block_query EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa51221c3 set_required_buffer_size EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb3f9c940 wmidev_block_query EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd55c7495 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xca3cd99f wmidev_evaluate_method EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd5bf6c16 wmi_instance_count EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf4f7f298 wmidev_instance_count EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x78755e38 bq27xxx_battery_setup EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8aeef0da bq27xxx_battery_teardown EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd8afc9ae bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0681b130 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x28ea1dab pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x6d78957a pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xa6c09280 rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xd2cce620 rapl_add_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xd5fbb1e0 rapl_remove_package -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x01289f95 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x36ad9c36 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x88943d37 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x66d20b01 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7487c0bf wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x84b46486 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa4626282 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xba74606d wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf4fa3878 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x48994c74 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4bd4167a pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x6c822ac5 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xea270e05 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x1fc3a4aa rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x577cf17d rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xecba659b rapl_remove_package +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb40cb866 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc8a43aa0 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe32cbe82 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4c19bdbd wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x696715fd wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x79ac5969 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe3cd12db wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xecc84ab4 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf9d7134b wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xfd7b8730 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x6660fbc8 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x739c0ee6 ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0121e8bd cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02ca4579 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d3cae70 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1132e749 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1936e3e4 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d5d95fd cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21f86502 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29cbd4d0 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a086b22 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c39005e cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37031a88 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48ef5c2b cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b6260ff cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e8155d5 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x634159e4 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x690d11d0 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f68cf0a cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71a7c929 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76348d96 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a093d33 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7dc0f707 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f736251 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf1e574c1 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x4bb61372 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x077c6c85 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b304311 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c51d58e cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x123e2ea6 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13f61d41 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c56612d cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2102d722 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2884dd5f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b62af5c cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2de9b821 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3205b0e8 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f202914 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x406ddf5b cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41f75437 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5057ee54 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5897312d cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58bf8659 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fd92c42 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b2b5eaf cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6bfb3506 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d4cb4ed cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x744e5335 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x768d09cb cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e67741e cxgbi_create_session EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x896eae35 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x897f91de cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94dbaff0 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d3ab777 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ed5d24f cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab60e823 cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1737895 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2fdcc11 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb65cf94b cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf39b69c cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd554453 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd63b1ea2 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd64d0607 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdc207b3a cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3cb7db7 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeabb6cac cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebae0365 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xecf96a5b cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x853d147a cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e0816dd cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fb7338a cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2665206 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5bfee78 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf1897cb cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc15d909f cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc290e695 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc852a491 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbb6cf5d cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd240fe90 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3554e72 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5453353 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5701bc1 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf050239 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf56c2bb cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea431811 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed96364c 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 0xf142f4b3 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf83d3a20 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf967d7aa cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfae189d4 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x046be483 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1167983a fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x126f6b5d fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4d5bc3d7 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4daae52f fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b716300 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7590535a fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x79d17692 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9add1362 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9fc579af fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa74af376 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba01de2e fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf99b2d7d cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfada34af cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x06b0b655 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x097785bf fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x297107ca fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3550db27 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47a652b6 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5d21cfe5 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6606fffc fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c33fca2 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6104c7b fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6387072 fcoe_get_paged_crc_eof EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc027d2ba fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc20a08f9 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc366b9ce fcoe_link_speed_update EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcc4ae704 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcd380042 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd07d9d73 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xde8eed5f fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xda17d534 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe79d4da4 fcoe_ctlr_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x0a650eb1 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe1ef8576 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfb54c229 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x43d3eec7 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xa4917768 fdomain_destroy EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x25c67934 iscsi_boot_create_initiator EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7828f9db iscsi_boot_destroy_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8280ad0f iscsi_boot_create_ethernet @@ -17031,199 +17062,199 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe929bddc iscsi_boot_create_acpitbl EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf1f915a4 iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b5d4b09 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0104e01f iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0538a973 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d932f2d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x008aa2e3 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02ada716 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c0476f8 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c611c5a iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f19a8f6 iscsi_eh_device_reset EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13973d56 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x197316f1 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a5b29f4 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20ac8369 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24d58d44 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b94b745 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x303dbf3d iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32791af8 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bd6d82b iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27e6cf0e iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2dde1065 iscsi_conn_send_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c688b39 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f4457b2 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4af1af36 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4da4c3b0 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f8f4c42 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54b7e538 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x552be485 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c320070 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x659f1b04 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x677a8bd4 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6887b074 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ae3d1d5 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74acdf02 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b498a48 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41c4a18e iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4395eacf iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47fde115 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a16de8f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d5a506d iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5559dee3 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x560abf21 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56f8c255 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59caf614 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c4d91f3 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c7f15b5 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5dcd3f58 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f9da03b iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f0e8f27 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75f5a11f iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ae8fa10 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x865016cb iscsi_host_add EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x910c1596 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93c4cf10 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x945421ac iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96bc9a44 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x970a00c0 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98cc018a iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9eef5390 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8ad17e9 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf887258 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1c92677 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb282b0a4 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb33e91c8 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb67b11c6 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbbdda3a0 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbeb09f5f iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf89c514 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8264b7a iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccb44061 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5da09a1 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2aea87c iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe88004b3 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x912ede34 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95b82ca8 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99d1a663 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a980b60 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6db8807 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab113388 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc515c682 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6f82fa9 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd153c8c4 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3757041 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4b23f76 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd76d54cf iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda6f7081 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbeb408d iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde318d1b iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfc53ec8 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe430ef2d iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4ebaf8a iscsi_session_recovery_timedout EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4ea7be6 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf70b1218 iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x097e0773 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0faea3c7 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2bbad89f iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2c960049 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x56502406 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5bd98bcf iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x613f16ed iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x689d8b9f iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x770b4e74 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7e17550d iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa4d363a5 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa670241d iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb68360e0 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe1030660 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe917520d iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee940a5b iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf8762c03 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02b5bfaf sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c07804c sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1324db7b sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a8daab1 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2c09b233 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e164f67 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36b8c9b3 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4155f763 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4480578c sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52818c6e smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5649d587 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58582220 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x623f766c sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6dc3cdf6 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78798d67 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e4fc325 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f180e52 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82c5f5fc sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8392bca1 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84091445 sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cb445be sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9213ed07 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6f6f2f9 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd6e26fc sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf9dfc7d sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcad8c1bd sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xceb676d4 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf5c8ecd sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6073667 sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe240fc37 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe5af37f1 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1a00b8b sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1fe6583 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7401367 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf90903de sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc690c1b sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x6b70ffa5 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0504240f iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e912464 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1237b200 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12666242 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12df8890 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13ac29d5 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee775db3 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeee44c97 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3206e0f iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdc1eb7f iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffac6b71 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0589bb6a iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a8deba9 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1acb35bc iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x318a82eb iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32eb2dfe iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32eb9af8 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x492610d9 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x576a913d iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92ccbdf2 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x96587dfd iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e7ebbb5 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad2f5d62 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc477824b iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc9d1f076 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcdfafbba iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd4e6902c iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfc99ff7e iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0683cc78 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b04d1dc sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fc983dc sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13d1b701 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f4b768e sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x270e9bb1 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2da654e8 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36d1f41a sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48f23ba7 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65e72507 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66cc788e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67eabea8 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6df8dd95 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6fb3b7f4 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ff49bd8 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7314d7be sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x735876f1 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78796720 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ae51a36 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d9ca071 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8863d800 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x95b8d002 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99fe8fc6 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a41abc4 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa28233a6 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7e539fa sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf17e894 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc797dcb5 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc9dbdff sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf52fd3d sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd12c3224 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3b35d7b sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe6fa7787 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe84727e2 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeefa0c1b sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf5b37483 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x14e904a0 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06e166bb iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0937523e iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11fde947 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14e43226 __tracepoint_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e24bec4 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24c3a13f iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29522e11 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d5acfda __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30db4f5c __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x319647db iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31c668a7 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31fadaed iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3310c97c iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3497690b iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bd7b356 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dcb5dfc iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a326e05 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e2a3614 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x173e60e8 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19f3af42 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f475c92 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23a0905e iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d72e9b7 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2dbc57d2 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37dcbf44 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4050146b __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42afa2a5 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42c60978 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48dd8904 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4926470a iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50ade62f iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5128de76 __tracepoint_iscsi_dbg_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52cbc17a iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58725294 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bda6b67 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d8a465a iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e6f3e26 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f3d9fb3 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65e8d397 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59df184e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d368921 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dc1e454 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6192748c __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65b16d47 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66b3e2d8 iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cb3ebee iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75518faa __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x758cab8f iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79488f8e __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b6417d0 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e2f19c0 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80139759 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69d71395 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6aef7028 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fb19a28 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75ca072b iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7845f93d __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a435ab3 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d6216c1 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 0x8cbc088e iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94cdf578 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0768f20 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0a12785 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2815b7a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8de0862f iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93115cdb __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9365fd11 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x962833ac iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fab5458 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6b5570a __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa76fce98 iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb217f837 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3ca15ad iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3f8fde0 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4a4719c __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac6f07c8 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaec9ba49 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1b04434 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8f9a296 __SCK__tp_func_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc02864bc iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc204fd49 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9960b02 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9bf5364 iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca2a9f4b iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd4c0aef __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4c85d2e __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd7fde4c9 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd88c8c7a __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd986a7ff iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf1b56d8 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca28114d __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcbc1bce6 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd48af28e __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd821ae36 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda0061b8 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdca877df iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe014e478 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe574d54b iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb7233df iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee199342 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfd1a064 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe80f4620 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe94b8bd7 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea3f44f6 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef34ad18 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefa96b66 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7638811 iscsi_host_for_each_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfdf6796f __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x05234c9b sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2007466b sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x55de59cd sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xae887dc2 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9242738 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfba333a2 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1799d4f5 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1884615f sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4f021b1e sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa357e6de sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x92160926 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x76ba713e 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 0x1622aeb8 srp_release_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x835b8775 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x85d3171e srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8de64e87 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc93a409c srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd687a526 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x027d0ef6 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1b9e1e8e __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8be31802 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x97ec900f siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa3e3b755 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcc193749 siox_master_register +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x46459efc srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x691fbfc3 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6b80616e srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7178b605 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa5363123 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc9be2544 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x080b5a1f siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x13478c27 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x14744545 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x246e4f16 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xaec85997 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb8549ebb siox_master_register EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x01db2624 slim_writeb EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x09212007 slim_device_report_present EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x26f1db90 slim_stream_enable @@ -17253,69 +17284,69 @@ EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xac990e55 sdw_unregister_driver EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbfaf8e39 __sdw_register_driver EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf66d48b1 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xdc113100 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x6fbf1566 altera_spi_init_host +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x33cf082e sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x1c54c0ed altera_spi_init_host EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0ae90f59 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3548c770 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8adcf88b spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8b387b5b spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe1b483c4 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xeea69d5d spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-intel 0xdc79bfc6 intel_spi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2f1e8e56 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3e4e04be spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xdd75d3f7 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e78b88f spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x20bb8beb spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a04d670 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4e635397 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x51ebf6c8 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5f171027 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6fe0f515 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7f575b28 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7f96a696 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x91ae9e94 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x92b2d672 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x93dbef69 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x951e51c0 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb53e9036 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb6b28d09 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc50bea1a __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe392a9c1 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe3c15c4d spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf042dfa4 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x44493c8a ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x11440b5c fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x3e9ccbb7 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x55cf332c fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc183457e fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x03f035d8 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x22432fa1 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3b9cd4d5 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x45ad34e1 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4615ddfe gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x53acfdb8 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7113528a gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8c12c306 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x95cd3872 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe422ea6b gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf34de508 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfa2c6cd5 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfe5c1b0b gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x273f4ea5 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2883cf09 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x293cedf2 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2cfce1aa gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6fcad5c8 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x75040b17 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x876fb552 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc4f76c93 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc7179b2a gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcf9a2e3f gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd72bf29e gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdfba4b83 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf7dd51a3 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8388a22d spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8effb214 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9817a914 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbee631ee spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xce92161b spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xef31b1f1 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-intel 0x324b05c4 intel_spi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x3865807e spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x4d738513 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xb2cc3904 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x06365769 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1539915e __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2940fbaa spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b997751 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2bd05d0d spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fab8df5 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5649c1ce spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x606d3cb5 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6e0680c6 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x81925428 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x89ed7245 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8d1cc870 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9dc5209b spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa98c0f6d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbc6e8151 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3371633 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde889572 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xec7cc0c6 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf86bde3d spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x78a9d561 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x67cdeb0b fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf60c1725 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf7028a57 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf98146af fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x455ddfe8 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x56bf849b gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8c992eb3 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8d99577e gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9d1bbc4a gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaa5a71e4 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc870256f gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc90ef51e gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdbbe144f gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdf40c2e0 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe20441f1 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe8010f4e gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xff31e8c1 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1249cac4 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x37d69269 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3efe2f65 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x42062111 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x617e91e9 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x621b4fb4 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7f4a0daa gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x98cd15d9 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9e71c0ea gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb1ab6c6d gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc1f17e66 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd2c8c3e7 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd8f36483 gb_audio_gb_get_control EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add @@ -17323,415 +17354,416 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xa24924a8 gb_audio_manager_get_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xfeb265dd gb_audio_manager_put_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x854b0bc3 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x9a184c9a gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0c889197 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xedef32dd gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xdfc5dcbe adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xb6dcd6be sp8870_attach -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1e9f9477 target_queue_submission +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x9cd5965c gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe1635ce1 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x2915a278 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xa86cf464 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xb3fcf94d adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xc8c209df sp8870_attach +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0503fef7 target_submit_prep EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b9b3376 target_stop_cmd_counter EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d24150b target_free_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x86ee5cab target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5ebf0e5b target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7cbc4ab9 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9acdd071 target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb4489234 target_wait_for_cmds -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb8057651 target_submit_prep EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc65e34a6 target_alloc_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe0e3e7b8 target_init_cmd -EXPORT_SYMBOL_GPL drivers/tee/tee 0x114b229e tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x20ab7ad7 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2198228d tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x37907c27 tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3ed89986 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x49a587a9 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4c9827ec teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4ce55e3c tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x511210c5 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x59156d32 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5e3d77c8 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7e21d498 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0823b2b8 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x158ed29f tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1aded557 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x22a3481d tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2e29b0e7 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2fa713e5 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x35f8e0b4 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x390015df tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3b83009c tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3e4a93a2 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x46ddec4f tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x60457399 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x73867550 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x823813f3 tee_client_get_version EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9935233f tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa1380181 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa659719c tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbcc65d99 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xbfa05bcf tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc76ceb31 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdc5a484c tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdd886764 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xeba1bca0 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xee0f63cd tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9537f53b teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x99ae76ff tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb0ceccf9 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc48e8bfb tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcff9b188 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd0ea52e8 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd5967c17 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf8020dd1 tee_shm_put EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x47cfe155 int340x_thermal_zone_add EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x57afc903 int340x_thermal_update_trips EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x5f358781 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x4427e7cb proc_thermal_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x4703ba65 proc_thermal_mmio_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x59adf6a1 proc_thermal_resume -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x6089eeb8 proc_thermal_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x88301eed proc_thermal_mmio_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd474b2c6 proc_thermal_suspend -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x8122d5c7 proc_thermal_mbox_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xf5f84a78 proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x03016ad9 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x0f9bcc30 proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x18e5cd21 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x52384cab proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x87b801f7 proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xd340b274 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xd8f5235d proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xff81fb9c proc_thermal_mbox_add EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x098e82d4 proc_thermal_rapl_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x445e21bb proc_thermal_rapl_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x1b62fb5d proc_thermal_rfim_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xb759e775 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0xc1e8fd09 proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x1678674d proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x9d766912 proc_thermal_rfim_add EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x092e35f7 intel_soc_dts_iosf_add_read_only_critical_trip EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x376c244a intel_soc_dts_iosf_interrupt_handler EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xa17fea80 intel_soc_dts_iosf_init EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xd999cae7 intel_soc_dts_iosf_exit EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x104e0175 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x31e6587c tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x392e9057 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x092ce35a tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0a8fa4d5 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x14250a0d tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x18fe17e8 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x22beff8d tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2e0a627f tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x30411ab2 tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3c2794bf tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4bd7f717 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3aa5d2eb tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x40826dc7 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x43cd56f8 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x459df241 tb_xdomain_enable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x530a3b96 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x55f34f50 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x589a0115 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5bbfd2c5 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x51bc6a69 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x573f5641 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5e6a2413 tb_register_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x644c4545 tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6590cc62 tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x727771ed tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6acc2e67 tb_xdomain_request EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x78f61aaf tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x84882cec tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a564d57 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8a292303 tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8bcf2657 tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x92155650 tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x94fb1952 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9bf03f18 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9719cfe4 tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xab191d7b tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb5954d4a tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb51a2286 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb5d9ef4b tb_xdomain_lane_bonding_disable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc43b8d05 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc700cc4f tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc7945b2f tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc487fbfd tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xde931661 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe4d04ee0 tb_service_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1f590b2 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf691bd6e tb_ring_alloc_tx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0f092c1f ufshcd_mcq_enable_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x133d472a ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1aa2fc4b ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1f69c790 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x24e4ee3a ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3e5816ab ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3e5d1393 ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4b604cfe ufshcd_system_thaw -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5fab7028 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x66ea307b ufshcd_system_restore -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x693b3219 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7234c9af ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x03af0f3c ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x208c5151 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x40bcf324 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x41bab653 ufshcd_mcq_enable_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x48a23242 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4905c2ea ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5f04d128 ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x60266bd0 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6a652b79 __ufshcd_suspend_prepare EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7439fb6b ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x767a735d ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8b569ce5 ufshcd_mcq_poll_cqe_lock -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9207ce49 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x972900d9 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa8561f13 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa9e42c22 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xabf824cd ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xace57bbc ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xad25f00c ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb7e8ad0e ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc005a06d ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc80ef829 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd27a23df ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd4d54fb2 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdf30c1dc ufshcd_mcq_config_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf34b135c ufshcd_mcq_write_cqis -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf60a17c5 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfc6bd457 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfdea4f56 ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x74419ad7 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7cdcc794 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x82108d8e ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8edab6b2 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8fe7bc39 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92127873 ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x924f9e5e ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x929c766c ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x972aadda ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xaee8a25d ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb1c76e38 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbc3beb1c ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbca2d6d7 ufshcd_mcq_config_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc35d767b ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcd79d376 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd06d398e ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd35047b4 ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe05dd165 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe1795211 ufshcd_mcq_poll_cqe_lock +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe3429504 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe94f9f42 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xea43a9f6 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xef189746 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x11f7765b ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x64f3a393 ufshcd_populate_vreg EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x8ac211d0 ufshcd_populate_vreg -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xe5b05a38 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/uio/uio 0x01571543 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x3529c7ec __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x966490f3 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x98e47643 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd5b4f625 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf273b84c usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x07fd15af cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2ed0e199 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x61bbb385 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7e760ee0 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x83ee559d cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa51ea3ef cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa82d8bcc cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc82ed31e cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdafd0f35 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0046af73 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x874d7f50 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa5eb9468 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xbe1e9d9b ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x09e5c8ea ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0ea8e109 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1b4df9d6 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x54d5c77c __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb9b79802 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf791eeb4 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0f8ca468 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x313ea3bc u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x359c8063 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3934b71c u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3a28c9f0 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x58e6b0f0 u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5c9bd451 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x647536d8 u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6551c028 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7aad5712 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7be475af g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd19cff9a g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd67dd9ea u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd8faec48 u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xde8d4c8c u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x183863f0 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2264576a gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2888f113 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x302d4ef6 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x311363e0 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3122f2e8 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x33759c66 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c35c62c gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5cdf16ee gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x68228a2e gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x70bf1bea gether_suspend +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0b9bdeec uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbf6e6b62 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc0f118f5 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe247f28a __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8121ab1b usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf468a50b usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x13f96630 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x32862708 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4923b0ed cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4deac80a cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5feb58d9 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8f06ee8e cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9e630d76 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdfe69ffe cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xebec91de cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfd0fe82e cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x277c8be7 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb83f39e9 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd49b7f15 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xefdc0989 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x64ac0ae9 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7039b236 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x76fcf261 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd4052b6e ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf5596948 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf78b1dc0 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2089047c u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x25c2f998 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2c5286d7 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3f902e94 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4db43bc2 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x515e3e2b u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5d2663fa u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5fb93453 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x642d345c u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9f10db25 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa2f3c83c u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa57d300a g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbbc83019 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc5988d2c u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf7f75340 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0170bfad gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x101a6cf3 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20b6c4be gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4545c6f4 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5a5b7731 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5d6a131e gether_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x88fcc977 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x981bc9a7 gether_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9fe1dab2 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa5472542 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcfb22314 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdbb084f2 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfb3bf987 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x20e5bb4c gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8a9c4151 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x926974c1 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa245d753 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa3ea301c gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbcf0ad39 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc15cf34c gether_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc51d4408 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd70dab53 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd752c6a1 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb7998a7 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdeb19b86 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf67340ca gether_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1c7e146e gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1e431d03 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x59824590 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xaaf61ed5 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7f9f4c46 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xcfc8690c gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xea8d8b4a gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x063cc767 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2b199653 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x09bc26a4 ffs_name_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x12af87e0 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x71c47185 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 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1f6e5ea5 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 0x33877c97 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3622f5d9 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x33737845 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 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3cec49b1 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3faa9977 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 0x484d18c4 fsg_store_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x554ba052 fsg_lun_open EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x69291964 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x69f798f0 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 0x7c92518b fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6ea23301 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x713d9ead fsg_lun_close EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x83ac3c5a fsg_common_set_cdev 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 0x87398d32 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x89cb251d fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8df1ba8f fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x930ae027 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9477de20 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 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9f0e9145 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa10092a2 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9af1e5cd fsg_common_set_cdev 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 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaf8a5b40 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb0cc57cb fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb48595ba fsg_show_inquiry_string 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 0xbe93b7c3 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc950aa45 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcec08130 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcef7eb78 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb7d499ed fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc4c243e4 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd03c54fd fsg_lun_fsync_sub EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf2b06e18 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3d2ecb5 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeee372e1 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_rndis 0x05035b06 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5657657c rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x659d67a8 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x78f9df6e rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85de426d rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa6845682 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaee683df rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb3997e9c rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb9c9de6a rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xce1cce6d rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdb753147 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xddf73124 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf1990d24 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf98a967b rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfa31d93f rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x03d27b92 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x21668699 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x22937898 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ad76972 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5efe5bec rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x779ccfbb rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x96e5b69c rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaad1bd70 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad165e86 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xba0d7521 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc3fc6284 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc9d3450e rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd85b1257 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda9be4eb rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdfb86c7f rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2f724fc rndis_borrow_net EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1a94dcd2 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1aed6e5d usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x242148e4 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x24649618 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10f6378e usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x143f2923 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x168118a2 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1eb97f3a usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f5884f0 usb_string_id EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b5f1afc usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c0df6d0 usb_free_all_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x303c43ed usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x31a4f78b usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3990507d usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f11f818 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x41653fd2 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4180c4e6 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x479491cc usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x488ea33e usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a90e55b usb_func_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4aef4e31 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x34c7cf7c usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38469a74 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38eb4e56 usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ed96264 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f30a03c usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3fe1ce40 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x466452df usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a9b69e3 usb_function_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5265e03f usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54b586f3 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56ce6cf3 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c6918a0 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c958dbb usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5888dbf3 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ba50213 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6196b64e usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6a13f531 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b7b844b usb_function_activate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f8b9abd usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x860a9742 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87c77b4d usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c6a21f2 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d81b618 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4c4e310 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xae3a322b usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb166d304 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb17d9f49 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc07b830a usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83ff79c0 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x909be537 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa646aedd usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac610f2f usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbdc90038 usb_put_function_instance EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec5c245b usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xef9a58fd usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd93ed0cd usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe027fb07 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4ec97a3 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe7257a2e usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe959a72a usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9a8f069 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf21b7b33 usb_add_config EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0152da73 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x14e6df6c udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x285183c2 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2c08b70b udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1535284c udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1fa58f16 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4318a433 free_dma_pools EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6dc1d54f udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x78f520c5 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8923d886 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9decec23 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdcd264a5 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6cf30330 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x76958fd8 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8c9256e5 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb757d5d6 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcee71f2d empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd4781530 init_dma_pools EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01201aae usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x07e369d3 usb_gadget_register_driver_owner -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0e683e8d usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1db263cf usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1e094976 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29e3e6d3 usb_gadget_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c1af585 usb_gadget_activate EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2d18d5f9 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e2b9fe0 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2ffb6cf0 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c02da95 usb_gadget_unmap_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x479825a9 usb_gadget_ep_match_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x52e52f93 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x541a5416 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5441217c usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5dd22d1e usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63371dcf usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x730abd51 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5361ba48 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5814184b usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5aefdea9 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a1b84e5 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bca402d usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x77c2f9ee usb_gadget_set_state EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79a0712c usb_gadget_set_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8030967b usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x859df062 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8b00b97f usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x80c61e20 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x839ad60f usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8cbd34af usb_gadget_set_remote_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8d3ba96a usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92082510 usb_gadget_vbus_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa05bff79 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa1302a05 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9c4781ef usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa02d736d gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa2fb7654 usb_add_gadget_udc_release EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb1847d6f usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb89a537e usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbd453cd9 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb0b0e2cf usb_udc_vbus_handler EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbf4c303f usb_gadget_udc_reset EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xca45e9f9 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcddb944a usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdafa1e31 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xea9fc16a usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeb2195ab usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef3277df usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf1a49e15 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf5688bb2 usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfc987390 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfd943598 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x0e33d571 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x092eea46 xhci_plat_remove -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x5ab1a2e5 xhci_plat_probe -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xbbf58a3b xhci_plat_pm_ops -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x4d4bf8bb ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x68d35f69 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd4168419 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd9a51071 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc8e7c0f usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0ce2098 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe23d95a6 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3624821 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xed6b3b3c usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x77981526 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x8921c912 xhci_plat_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xb7d06032 xhci_plat_remove +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xf97f6a4c xhci_plat_pm_ops +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x1ad79373 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xfc7e003f ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0bd7f9d7 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1c6fdec2 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0cee6566 musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4df76b7a musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x59821b74 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5bf8b06a musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x64babd02 musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7a78c2cf musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa3c3e681 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa43450de musb_queue_resume_work EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbd94f1d6 musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc64e9ba2 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x489e659f usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6ada1da3 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x96965e88 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb1d932ce usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xbaa1e86d usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x959ed171 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x7a0d9dde usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d433767 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x10240ab1 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x21f9942e usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x235089ce usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x24364da6 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b295d9c usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c042b95 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x77431029 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b015ed7 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7e0c0df5 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x866250fa usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8faf8a2e usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xac30aa16 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc1d8f8ef usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca48aeba usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd54ab75a usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe9f5d0a6 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf285cdc5 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf87117a5 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfcbee8ac usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x464d92ac dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xc19e01e7 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x548ddcc3 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa64ecc22 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb2c63aac usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcde3d088 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd499c13b usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x028fad65 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xaefedc40 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x060d9eee usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1dabd0b1 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x293c3ed8 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e51daf3 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3eccb332 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4885379f usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52a2fc0b usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5db3c827 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6abd2a29 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6afe4621 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b7d2d30 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7010d6fc usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84a6fecd usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x888e1b8b usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e0eaa09 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa53c8e60 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaa8341a7 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6d59a43 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xee7b7233 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf52b93d2 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x6167ea47 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xda20947e dp_altmode_remove EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x88d2c703 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x8f350290 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xa334a65e tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xadffb061 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change @@ -17827,123 +17859,123 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd4105376 ucsi_create EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd4ec196b ucsi_destroy EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf5b84edf ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d7d328b usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d892595 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x229bff31 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x42000bda usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x468051e6 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x745fd765 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x026c9bb7 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x295e7b8f usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3e0de950 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x426d7f95 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x625f23fa usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x762049d7 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x76cc539c usbip_recv EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x790d9e14 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7f658792 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa1468a21 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa3b0688b usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xae4724c0 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2e5d01b usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaaa11175 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbf11eb84 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xccbb1f62 usbip_pack_pdu EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd8b28ed2 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdad401c0 usbip_event_happened EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf5833ebc usbip_recv -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0b94b1ee vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0f6970f2 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x122a41e5 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x171dd260 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x73f348eb vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7440df01 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x77321543 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x877b864c _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbc8dd2d4 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd4122922 vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe6e7d526 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x4e745feb vdpasim_create -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x7a9d5097 vdpasim_schedule_work -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xa7211358 mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x04922e9d vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1394807e vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2241f238 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x255c81d8 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2f71029b vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3b1eb1e8 vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x41b46ffc vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x41f49c57 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfa400fa0 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0f17795c vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1c59fd31 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2bf40a7c __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fbbb272 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa1b894ea __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd327ec9e vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd4734fec vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd9a9a6b1 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe7e34a83 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf7e9c0a0 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfce2db40 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x136b685c vdpasim_create +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xb1fb8fc0 vdpasim_schedule_work +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x1952d47d mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x057a26ac vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0f9da039 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0faf4b9b vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x16a57f92 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1bd0600a vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x377bc352 vfio_pci_core_match EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x558444ef vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5cfb63f3 vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x735b7dbd vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9f082850 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa39f02b5 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xacd1c745 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb6133895 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbf067e27 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd034933f vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe1b6fcf0 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb6dd0e8 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0a2853e8 vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x10d59023 vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2b72590e vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x309407ea vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3da7571a vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5ecd9d63 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6fcf7df0 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x895f7264 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xac0d8818 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbfa5d0e3 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc482eba0 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc9727c69 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd26dd721 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xda4ba3b3 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdb815807 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe93b91c0 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xed132870 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfc89ae68 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x04788f72 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0cc6dab0 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x12434a0d vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x233b3cf3 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2ba8ee59 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3546101a vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x36464e74 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x42d98908 _vfio_alloc_device EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5821afc2 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4b672924 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4b67914b vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5e5016fc vfio_virqfd_enable EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x640645ad vfio_iommufd_physical_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b2a36a3 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6da0fff9 vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x78b2a135 vfio_file_set_kvm EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7eb87c5a vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x82bd92c8 vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x83e3bdbe vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8d1ed12c vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9510d814 _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9cf8d522 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb90c243c vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbc05d78b vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe70265c5 vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe76464ce vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe9b6b8e6 vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfceae12a vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfd614798 vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x008ac6ee vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00ccb4bf vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x065c20c4 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06efa7b1 vhost_vq_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1133db38 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b1e2706 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1eb4fe32 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22e8259a vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39e64469 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x437f3a53 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4fe8f5db vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x513baebb vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51bda76d vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53cefa6c vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53f46771 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59762a2a vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d393cce vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64870b5a vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x65528e4a vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6841a4a4 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7496211a vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75ade361 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c943a0d vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fcb46f0 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8370ab77 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91f6e4ca vhost_worker_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97c18970 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x992d6cec vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e27462c vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8fb18ea1 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xaa2d3c4a vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xaac142f2 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb3e000ce vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc6b2390d vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcd8df5b4 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xefc6b4f2 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf96c02b7 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07527a4b vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e23192a vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13af2e09 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13f17b7f vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x210af46f vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2777f640 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b24135c vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2bd72879 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x422f9407 vhost_vq_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x55a6b503 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57c3cce4 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58c4daab vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b604dfa vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70747127 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77e57441 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80001476 vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81817492 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8186fc76 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84e8055b vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8679c791 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88601475 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e3f7b4f vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91704115 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95a13abb vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97e7d00e vhost_worker_ioctl EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf665179 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0b7d709 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb720c602 vhost_vq_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb82e1105 vhost_vq_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9da7a59 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd9b4d60 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4eaa7fb vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7a7093c vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3017602 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe21b9b04 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6d4b8a6 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe76f07d0 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xefce2825 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab15ffcb vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaef1464d vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2658a94 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb408ade5 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb147ad7 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8c37efb vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4643004 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7c53775 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde6a0332 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf080db0 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfd3b9c3 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb3d2452 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xecca8468 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1a1edd6 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf47e418d vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf99b3db0 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfaeda8f7 vhost_enqueue_msg EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset @@ -17955,26 +17987,26 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0b70b8c7 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6e24aaf0 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x994e5b97 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe0d358bf ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe37e4b1f ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe6949904 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xedb1bec4 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa9b3dd8e fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2a607a38 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe481c060 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5c956d11 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6ac90d0f ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9538d6bf ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd95a0b37 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe7f34629 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe9ababbe ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfc9dabf2 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x8ed47c06 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5bec1a38 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe0047853 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 0x30cc9311 viafb_request_dma EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x50ae7184 viafb_find_i2c_adapter EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d 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 0xcd538333 viafb_irq_enable EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xce990048 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xe283ea9b viafb_find_i2c_adapter EXPORT_SYMBOL_GPL drivers/w1/wire 0x1081a899 w1_triplet EXPORT_SYMBOL_GPL drivers/w1/wire 0x2426de47 w1_read_block EXPORT_SYMBOL_GPL drivers/w1/wire 0x2ebe9b43 w1_reset_select_slave @@ -17987,392 +18019,392 @@ EXPORT_SYMBOL_GPL drivers/w1/wire 0xd0888b3f w1_touch_bit EXPORT_SYMBOL_GPL drivers/w1/wire 0xd5d65a28 w1_next_pullup EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb62950a w1_read_8 -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x222a02bd xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x3f2fc43f xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8fa79e4f xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc50448af xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf462c156 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xf43c29cb xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xfc6e5687 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x23409f50 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb446667c xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb59bc635 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xcd867607 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xd988131b xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x04a4a469 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xed5a5ec0 xen_privcmdbuf_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x734c3f71 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8bed88e1 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xaecc136b dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb47fdd49 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc94cbc46 dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf1eb9228 dlm_posix_get -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x05147676 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5bdfeef6 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x61780cb2 nlmclnt_rpc_clnt -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x814ef4ba nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x85131fcc lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8c462c53 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0c2a2d1e nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x13cce435 nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x404e8b31 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x51fc1e67 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x83b357b5 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8b658dca lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x93388c27 nlmclnt_init EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb86b5c9c nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfcb83ebb nlmclnt_init -EXPORT_SYMBOL_GPL fs/netfs/netfs 0x43efe657 netfs_extract_user_iter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00895cbb nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00e0c0f8 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x015691b8 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xecf3be27 nlmclnt_done +EXPORT_SYMBOL_GPL fs/netfs/netfs 0xcd6e51dc netfs_extract_user_iter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x006c8c93 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0083be56 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0118a059 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0165a921 nfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03aab20f nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03e294eb __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cfa5a5 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0728e3e8 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x080afc78 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09265a9d nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1037d775 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05521993 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07714d67 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x081d1132 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0930ff2d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x093b9d2e nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c176330 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c318791 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d547a95 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f03f2d4 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f675337 nfs_sync_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12bb05c7 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x147721b9 nfs_read_alloc_scratch -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16531646 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1849e269 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b40530c nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c08954a __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ea7a85b nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ed5b5c3 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10f0adf1 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x116c8694 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11807a35 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x119efee1 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x168bbb1f nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16a0f80b nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18ce7e48 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bc00aa1 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e6cabd2 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f579670 nfs_sysfs_link_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24753687 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26611960 nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b6c1a34 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c6a82c2 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2da480b8 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ecc962d nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ed3d459 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f00a948 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f15b123 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31404ed8 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35366b8f nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35e2af2f nfs_sysfs_link_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26b17f86 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2785d3d3 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27fe7217 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cf09975 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d122c5d nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2de04c2d nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e69fe11 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x303790ac nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30a68e37 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30f6b8f1 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32402865 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x368f792c nfs_close_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37a53292 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37e26feb nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39433d85 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39902abd nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d2b77d nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38193764 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x392b3275 __tracepoint_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ab81fd2 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cb804cb nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ce69b0b nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ead9c7c nfs_invalidate_atime EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f8a8ad6 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4035ec3e nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ff20687 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ff3401e nfs_pgheader_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40896c6e nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x418b326a nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43c79a67 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43d38046 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44b8e3ea nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ba467b nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4927a120 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x495e2b1d nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49fc73ef nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a67afe6 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43693d12 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45dc1767 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x468466e1 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4728c816 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x487917dc nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bacd370 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c0af98b nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d85ab51 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dfecb69 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fb2087d nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x509baa0e __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f6a30c1 nfs_set_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x534cec21 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5369f3c0 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x550651da nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x552ac333 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x553e8c8c nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x579fa4d8 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58358079 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51f16c90 nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a856767 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b92d66e nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f4694c6 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60c1cfd1 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x656cb3b9 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67a5a7a0 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b840b7e nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6da13e6b nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e636d36 __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f6c2daf nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x702e1a00 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70cd6d01 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71147127 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7204e967 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7250f773 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7364c25c nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74564657 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7624a68a nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76d87302 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7db3efdb nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e61e194 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f62deb5 nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8310ee72 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x837fecbd nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a3ec3f0 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bda6213 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f0bf5d6 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x625d69c0 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63c78466 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d750cc __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a9371b4 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b2fa04b nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d734d14 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e73baf7 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f9499f8 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7665dba5 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78c28935 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79845530 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a28e33c nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x814e95bf nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x829380b7 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x834dfef1 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83778a17 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83c4f044 nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88a9c0fe nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b96df6e __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c03c13b nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fe3d589 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88507946 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cb194e8 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cc85390 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8db52a50 nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9267d1b3 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93357ca9 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93bb5f6e nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x946be952 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95b8af21 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95bef451 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96c8db9c __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9754326e nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94d358c6 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9594afd9 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x970d66bc nfs_commit_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b570e34 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b6badb6 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd86c94 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a7a53c1 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad7ab9d nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f755354 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa262f7a1 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa64277c5 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8dcf8f3 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dde828b nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f48639e nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f9e9874 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1990a03 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3cbc549 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7ea1822 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8832310 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8cc7259 nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9bceafb nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadebc633 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae98d1cf nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb29b6142 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2d01a3a nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3c98448 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb645d452 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6478c0a nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb681bf85 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6dbf264 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb79dfff2 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9ed0e26 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbad9a188 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbae857da nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbba0afc5 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc80f0e1 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe6bfb02 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe9fdbc5 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc330653f nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac191614 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac9762bb nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xada2dc7a nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafae6d03 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb202c1d9 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb67a3339 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb67e43f9 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6d03c69 nfs_read_alloc_scratch +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7805c78 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7860c58 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7e1f537 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9af97a1 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9f459a0 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbccbd337 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfb58449 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc232a038 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2cca459 nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3fdc7ef nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc69c6518 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc483c448 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4928478 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc796ccce nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9141c2c nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc958f8fc unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9c78d1a nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf6f5835 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd162497f nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3d8b0ca nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3e4b75c nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4f6adee nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5a95248 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5ffc04b __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9440288 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7c83d40 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8e080e1 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc3e9c74 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf9f50ff nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd125ea61 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3bbee85 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5866306 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6ef82d4 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7d0fc2c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8486882 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd97f6958 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda9290ce unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf5ecfed nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe08140af __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2557b1f nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe28317bd put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe340782c nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5198d4e nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe973d6cc nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9c3909f nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecf5a430 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf26c7f95 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf31c8944 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf46359ce nfs_sysfs_add_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf46db99b __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8bbc6c6 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb38f95b nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc44c9c5 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd46e6bf nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde8b17c3 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf6e1b7b __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfe35600 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe470d776 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe69d823c __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6cf60fa nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea7042b0 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb2d0d95 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeba6b43f nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeccf87b7 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedd7449d nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedda8b4e nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee221f6d __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0f92f6b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1178122 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9ace427 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbf0b26a nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcb7efb7 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfccb40a0 nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdd98d31 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfde01a02 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe4d4c1e nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x4970522c nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00a4950b nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x014c800e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb4a10a __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfedf8f3c nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xd14ceb75 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x008b77c3 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00d9c0d5 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00feae26 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04331232 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x053870df pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x074a05c0 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07b3a98f pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0817f9b4 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09cdbfbf __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09fdc893 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c4a086b __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e03f5e6 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e878dd6 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f8ce188 __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12f59134 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x135da010 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ab1d55e nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ebec34e pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10485e6b __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x126c105b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14373185 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x161b7bab nfs41_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a1d0170 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d08c305 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e764260 __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20643fc2 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2086bc9c pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208939f3 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x251d8e00 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2707d78b __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x274629b3 __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27c6283f pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x283ff61a pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a329dea __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x195774a1 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a311bce pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b684121 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c9219e9 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x205ac4eb __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24279640 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2704eddb __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x295e8b6c nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ac2ddc4 __traceiter_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d31f8a9 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2eef30b2 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x333138af pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3678196c nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x381e5542 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39681c3f pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a89919a nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b6d7a9f __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e1be4bf nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44b79d89 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45f6f58a pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x489306aa pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bd08ca6 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e15a868 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fad414a pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x510fc391 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51eb35d5 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52e7c2e3 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56d274de pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56eb613e pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5976ceb9 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59997902 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a7102c7 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5afa46f6 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5afe08bb __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bd45f6b pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e80b70b __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5efce478 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f76c614 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e51862f __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e622e36 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e7dae3a nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3030f291 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30373844 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bd41d7 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33ff0ef4 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38ed17ac __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d1a72a0 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e371a32 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x408fa4e0 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41310980 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x460c3ad2 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x461b76d4 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4624c4d6 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cbd4696 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e8f17d7 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fc142e7 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x534f9b0e nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54f054fb pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555e961a pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6135745b nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62d1e984 __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x659c737a pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c8a240c __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x702d978b pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7105fe7f __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71652d3a __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71896233 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x725132a1 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bcefec7 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c6d2061 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b9ca1bf __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72f11bdd pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7344b00e __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73864fe5 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7674ce20 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c6239d3 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c68e67d __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cb6a1e4 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dcdd80e nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dd77fd4 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e805659 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80ad2797 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x815a8495 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81856501 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85463f4e nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ba98b59 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e871dae nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8077c9c8 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81ac89c6 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8286eb63 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82e1811d nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d3ef5b9 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e11602b nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90d1c104 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x916bd986 __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93aca2e1 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9408215c __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96af1d81 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94024964 __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x941e377c nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96b6a9d4 __SCK__tp_func_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d3b659d nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5c8d993 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6a60444 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7e79eaf nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac03e74d pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac1f3640 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ab9bb36 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c823af5 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d904ce0 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9da64cf8 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e3d4964 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6265363 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa425ac6 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac75660a pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacfe312f pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb11305f6 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb52c031d nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5f7ebe5 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaacc084 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd7096a2 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf9ca1c3 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafc6a97e nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2f928ce __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb43077cb __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb59ac09e pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6e1b642 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7498431 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7d3263c pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd088bbb __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbed585df __SCK__tp_func_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc43bdaef __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9d6414e nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc41e40dd __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc542f5ed pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd7523f9 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdfa4332 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xceccb2ca __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4fa70fc __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd67493c5 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7219f41 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9448b83 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdea12451 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2115f67 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd257fcf6 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdde0e68a __tracepoint_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe28ca437 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4fcc11d __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe57533d1 __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe85e6e9e __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8656f97 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeba805d1 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe06a5ed5 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4c4dfbe __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5ae5f54 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6b62a94 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9dfc1f5 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xea315ea2 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec165ece __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed00da4b __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf010ee25 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf020611e __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf350e349 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3a51e57 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf488e3d0 pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7f97771 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7e93ba5 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf88c09a6 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf94d6d29 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa356d24 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa5bbd5f __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbda2a82 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb37662c pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfef6eee4 pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x196b72b4 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x47634fd7 opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x53f43adc locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0d5baa0a nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x708e2ee6 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7730cfe0 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x96e06e62 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xe0bff218 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8d9f9063 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa2b0cb7b nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb687fc19 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc721ac8b nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x95171d35 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x32ca9732 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x42933f7d o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4da88d49 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x52752b38 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x665cc2ca o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8fd0afdf o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9ed36194 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa15b6156 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9001705e o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb5cee799 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbff31faf o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xccc0dbba o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe48a3b31 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xea9c6799 o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x38573c5c dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3938c1a9 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7985b73e dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1783fbce dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x432d467d dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x572418e6 dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x90e18a9e dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcb9ee91c dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7f96341f dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb0cf52d7 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb53cc3ea 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 0xfadb0199 dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2358c97d ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2c4630d4 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1bc4567c ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3e1f10bf ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x689a77a3 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x595fa3fe ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89a0f97e ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd1732ab2 ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x2ff8aef3 register_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x9cd99bc4 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x2a951b35 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xf764a6f8 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xdc1e12cd register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xf0252dd7 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x21e8cc5d register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xdcd3264a unregister_pstore_zone EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xabd9af6d cifs_arc4_crypt EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xc4c73891 cifs_arc4_setkey EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0x798f3830 cifs_md4_init @@ -18394,8 +18426,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4b45fb6e poly1305_init_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x7f376d08 poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x5b4efd96 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc97194cf notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x36ffcd10 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc6a30de4 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 raid6_call @@ -18406,1084 +18438,1084 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc3faf23c lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xcbb9379b lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x0cd0a0f8 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x1d3fa56a garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x25ef0dab garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x8b537387 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x8dbf1822 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x97346076 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x332627cf mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x391803b9 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x51ef5e9d mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x7b45ad6a mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x91f5e16a mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xa9321c84 mrp_register_application -EXPORT_SYMBOL_GPL net/802/stp 0xded7ecd5 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xf3d58034 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x49f979ab p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xb7b64435 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x5d98fe4c lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xba135154 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x1daf99f9 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x396f1b49 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x4cdaf4a7 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc71169f3 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xebf92651 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xf1d34d54 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x2170c3e3 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x59aa0224 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x6aa86993 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x6afed23e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x8f5291cf mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xde510b1b mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x2c883718 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x2f5c5e0a stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x073a6860 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x3d04f3d1 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 0x527cbb80 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x49b97dfa 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 0x516bc471 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x829d617e bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8c63d49f l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9a6d993f l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb2ea747b l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc4f5500b l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd813dec6 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xedeec028 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf5914e96 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bridge/bridge 0x05effda5 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x08b2e142 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0b4e802c br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c2db024 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x11a3f855 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x25ffe27d br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x291cd113 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ca7a896 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f9cae25 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x50e38319 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x58547f33 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x61fa45da br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6594c816 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fad2ad9 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x93be267a br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9a47ae89 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xafd0ff9c br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb386d8da br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb84d6fc br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd79c2169 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xde0fd3c2 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xde7ad4a0 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf9eda789 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xffa48dc1 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xffea1eba br_forward_finish -EXPORT_SYMBOL_GPL net/dccp/dccp 0x13fa2481 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x148b316b dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x15b765c6 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17687155 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17f6a904 dccp_set_state +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0f1556d2 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x166e17ca l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x43022865 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x73f40f59 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7a4ec676 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7bd4e024 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa146bb9c l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd4109acb bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xec39c42c l2cap_add_psm +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e7a69a5 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x17e29807 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x27b91b78 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x30c63737 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x310b803b br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x402c7ced br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x638004d1 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x68ea3560 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f1a8a90 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7372986c br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x93a06555 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2e13855 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa8774e7c nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa96203d0 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xad0f8720 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb2fe9d31 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc32c0941 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd1f426f3 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd49a2346 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd94f036e br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2ec5151 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xed66c4d2 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf0e7806f br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf487c5bd br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf971a568 br_forward +EXPORT_SYMBOL_GPL net/dccp/dccp 0x07e92b2a inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ae151eb dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0cc4242b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x133b9c43 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x207b9def dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a968e2f dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b280a89 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3bfe5e87 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4523917d dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x206826a8 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21a87ff5 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b2bb1e5 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b68d9d5 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c23c376 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x41154e12 dccp_close EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f065660 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5555882c dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d4e220e dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4dbeaf71 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x55e7ad56 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5607559b dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x590ba9a0 dccp_check_req EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6635e47d dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d38ced4 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x70f36e7e dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x72c3d2e8 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x782ddcaf dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x785adda4 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f4aa207 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6039b30f dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x672415d2 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x67b04b73 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b86cffc dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x795a134b dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8006e296 dccp_rcv_established EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a904e64 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x93d1184f dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88be607e dccp_make_response EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x95f9c147 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ce53d1b dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa31a8afa dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa57a55b3 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8eb0d86 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4937b1d dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb858c15d dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb4e7e48 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc04317c dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf74f769 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x965234fb dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4fe0601 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa0cfcdc dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb02f99ce dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0e85354 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb67bf050 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb781bb84 dccp_reqsk_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7611f97 dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1dafce3 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1510e15f dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2f2a77cc dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x58794cba dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5d57b175 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8185602a dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xff1cae31 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0b48410e dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c19c082 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed1bb6b1 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9bce21b dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0fe76efc dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x20b38576 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x477c05a1 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x571bd827 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x862d6bab dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x86b6e232 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x03aa7fbd dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x078dc07b dsa_devlink_resource_occ_get_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12f34341 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x17df993c dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x211da411 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x235e1fad dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x24eafab2 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a9028eb dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35e4d239 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x38862a31 dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39a58534 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x14d1024a dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15137970 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15618966 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f62d890 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x262588a4 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x29e254d6 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x34ee99ab dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b627a1f dsa_unregister_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4255f950 dsa_switch_resume EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x53192904 dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5dd88ed4 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x629abde4 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x78005cc6 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x91e2ccca dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93addf93 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x98a42f10 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49185873 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x54a20f52 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57975109 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6bfe0f16 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6fa01489 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95afeff0 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99559b8f dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d566704 dsa_tag_8021q_bridge_leave EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9edf9445 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa618121b dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb539f53a dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbaf1641b dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa865e2a8 dsa_devlink_params_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc7829edf dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc7bf8580 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcd37bb5c dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcc62e416 dsa_8021q_rcv EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd39c78e5 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb090180 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd2ccb1db dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd5b2cac8 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdc48e21a dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe6b4e77e dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xea9f72d1 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee35db6e dsa_port_phylink_mac_change EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf20a0357 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf57b96fb dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa6e8a61 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfc312e1b dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfcb105a1 dsa_tag_8021q_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe2ac2cf dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x00e6a9d4 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x07a1fdcc nl802154_scan_started -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1e2ed41f ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x37c07d6d ieee802154_beacon_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5babab6f ieee802154_mac_cmd_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x71a490f7 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x80dd32ef nl802154_scan_done -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x81de3bea nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x326f705f nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x35f1013a ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3cec531b ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x49e11ec6 ieee802154_mac_cmd_pl_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5a219634 ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x63064cfd nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x84abdf25 ieee802154_mac_cmd_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbc60bf1a ieee802154_mac_cmd_pl_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbc6335a2 nl802154_scan_event -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcfc9814d ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ife/ife 0x1801a5e9 ife_decode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9e96df55 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcb5ede79 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd5eed45e nl802154_scan_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xefb3e40e nl802154_scan_started +EXPORT_SYMBOL_GPL net/ife/ife 0x01813a2b ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xe5cf2312 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0cc86f87 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x2dcdb69e esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfc244423 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x1ccce94f gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xcc8ca338 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x19e839c5 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3189f4c9 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x572b158b inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x593ad145 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8e5fe4c1 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9ae988ef inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa16e03c6 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa34a6735 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe7b350a8 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x29431316 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11261f18 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18783256 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c341544 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x21d78613 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x277a3dbd ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30ea689c ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x353c0c9a __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3d782e74 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x65c0c010 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d0e7cb9 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x91b0ac1a ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcca91a67 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd94fe0cb ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc1c0488 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe3ed5c22 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe7ac4f44 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf5655d49 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf92ebb09 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x40043465 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x32fcd0f2 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd0848ff2 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe692eaec nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3d1386e6 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x54a30808 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x824320fd nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc3e84de8 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe29edfb5 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe5c5da70 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfe61d9be nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x15c1ebd0 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2fd27769 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3419bc27 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xf6594e2f nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xd11c820c nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xdd1d2dd5 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x34e636de tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x51dd06da tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6acc66b4 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa3e0a88a tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xab0d47d0 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x097e367c udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4c087b5e udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8200421f udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x85392dc1 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb6179a09 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xca084a1c udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcce743de udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdf217e43 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x39cd6667 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x589566fa esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x74f90518 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0358663a ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x51449e93 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc6eafa91 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x249144af udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x44a5d549 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xdffba4c3 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2c253d83 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x82f43625 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf89e81b7 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xa56821b6 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x00323429 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x018e01e0 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x21a86f73 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x32f8df7e nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3682cc17 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9ccc9b25 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc5a21359 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x92a64ab9 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x975931e0 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9c07d786 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe91cba9f nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x627a0091 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbf537813 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x06298c90 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07dd5d94 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x083789b7 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x088590f9 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ae6465a l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12bcfb94 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x231bfc6c l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a1761dd l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2d5f1259 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5604e447 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59d4f405 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e359ef5 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6bf80714 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x71ca35e2 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73b81f47 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84feef96 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f7726be l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd847bc6 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca2cdfbe l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1da0055 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd47841c6 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x37f00f2d l2tp_ioctl +EXPORT_SYMBOL_GPL net/ife/ife 0xf0ff6dac ife_decode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0fb5a58b esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa6687393 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xada3c040 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x07cc1c53 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc9f97363 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0e07e0f3 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1552ff17 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x33f37b54 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x50440c55 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5408a9f5 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6b5d10e3 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x79b9319b inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb6bfe04 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf2662bbe inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x0d979fa0 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x043c4e47 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0e2164f7 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x12b85e82 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x14a23569 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x261bd49c ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x591b5030 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8d301b8b ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9b125d87 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f401fc3 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa8d5b2f8 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa8df857a ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc28f1420 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcbde8216 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcfde610c ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xedd7e823 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1cba2b0 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xff7df8b1 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x21939fed arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xd2073466 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe1e40729 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf87ee5e9 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x1680074c nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2b29e38a nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3de12647 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6404b7a5 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x687a9b81 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x73cd5edf nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa276eb42 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc2ba95b3 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x080d6bdf nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x040f580b nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x306d6903 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xac6319f6 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6f8e39a9 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6fb910ee nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x08e1473d tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5272fc13 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x99a3c803 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9e404479 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb8d55b0e tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0a04bd91 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x18623de1 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1abf68f7 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3fd58c0c udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5767f0bd udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x678bebe4 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9293c014 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcea154ac udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x1276727c esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x15bf91c7 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xf3045353 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x862cfbe7 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x98df5e0a ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfcff5221 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xbba40057 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd7a70474 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xc48eba4d ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x024ff6a5 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x21a53941 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9849ea48 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8956c87d nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x038be83f nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4e4cba1d nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5635269e nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6447b3d8 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7cf783f7 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb1884c72 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe0ef5ae8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x8f6acab6 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x84a26991 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9a75396e nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xd3574272 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x91c60d6d nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa7c7bfcb nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x032363fe l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1007999d l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x194c9f1e l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x308b4f8c l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6cd6db15 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x782ef9f0 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7925cc32 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7d897e51 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fdb5d83 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x957c2e24 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9eb2f0f0 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xab924b84 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdb6e86b l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc54f4f0f l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8b19658 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca373cdd l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd0ec54e7 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd55da2d1 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd93417bc l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe0ceda3c l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf26d00bf l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x035a5a78 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2a4a24f1 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x48ede737 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00d0dd5a ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x139f0e55 ieee80211_set_active_links EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d13e4fe ieee80211_calc_rx_airtime EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x276f011a ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4707d146 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x557f955c ieee80211_set_active_links_async -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59646429 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a515ddc ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6659f4df ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x67204332 ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x693a483e ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ebe11a0 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x888a26f0 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x239c028f ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x264d7ce1 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28d81f4a ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x38ec06c8 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3c220e3d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b25d4a8 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d013e20 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x65b50f64 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7246421c ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x74cc7c65 ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7bbff6ca ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x80348a60 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x83d6098b ieee80211_calc_tx_airtime EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1dc0527 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xac3f9a5a wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc1f4c96 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaae4e602 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb81dd18a ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbad44a9a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc0280fa5 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5ff5c47 ieee80211_obss_color_collision_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd095df71 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd6841d94 ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd7aa4649 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe2523446 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe90bae6a ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd932a248 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd9fde555 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb48d8aa ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe045ea09 ieee80211_vif_to_wdev EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeb6cd18d ieee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xedbe85df ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf0bf46e8 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf116f4fa ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfde861db ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x082781ab mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5539a685 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x62e483f1 mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6d2dbe46 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x53767eef mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6ab13ff3 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6f7b69dd mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x812caef6 nla_put_labels EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf6f9b8b6 nla_put_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x007e0e0f ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21c61532 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbb8ec8a2 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09f4162c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b5b9568 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x19c084d7 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f63efb1 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x201c7f44 ip_set_elem_len EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23d57faf ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2d81e33b ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39db8831 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6399f8a6 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x78ed7043 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47f8d96c ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4808002a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ca9a153 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x78466e4e ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ae196d7 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x80a79b4d ip_set_del EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x84317332 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ef63f45 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9055f35a ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83282707 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8533f50d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x98d26e59 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99f4d0a3 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 0xa0ebdbd5 ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc3d57c2e ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb5d1d9e ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd48e7748 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdaf9ea73 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xde503b35 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf010675c ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb6009cd3 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7d8491c ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcf7b2009 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb40ccdb 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 0xf9b16fd5 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfffecc49 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x235abddf ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x641fdd8c unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa54d7ede register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdcdb9224 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ccdb929 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fa63338 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa2716f79 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb4f91041 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbb199af4 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x36f550a4 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x82db7726 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9f07a8db ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdb0a0b28 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x237100ce nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x43d83c8f nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9ea4f6c2 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa193e26e nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xca87a35d nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01d9953a nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03166b98 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02cbc9fc nf_ct_remove_expect EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x065678bb nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06c8debb nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x096c1f59 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a4992bb nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05ad8328 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b4f7385 nf_ct_kill_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d40303b nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x126d7f1a nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x152b0d9f nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15a09ee1 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f1101b0 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20725237 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20deeb07 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21ef6360 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22092469 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22ef829b nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2327f449 nf_ct_skb_network_trim -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x235f48de nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23db0dbc nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25fc4a58 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10d129de nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10d5cc92 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12859482 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x142598e1 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b674c03 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x220bff04 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25977ab8 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2806c0f2 nf_ct_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x307c3d79 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x328864cc nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37d45046 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e53e3eb nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4015a567 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f20973d nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fefd48e nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ff81262 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50b217bd nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57bf5d63 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5de0e689 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6174112e nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6229749d nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x656ec1f6 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6910706c nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2db21684 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ed84132 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f84f254 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x325fff0c nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x335a18df nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33b6bb67 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3596a303 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3aab8b0a nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ae76fcc nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dbeb128 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3df18b4c nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e11454c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fa79ea9 nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4063b72e nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45e82685 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47c7a54d __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ae22d41 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b9c8811 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52bbe4d6 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x552c7d94 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f108a46 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60a95c6e __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x667f0f85 nf_conntrack_tuple_taken EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x699957c4 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ac79a26 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bc4f06f nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e9845ff nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73e70340 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b68f62a nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72f4f05d nf_ct_unexpect_related EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7732e583 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77dc36d7 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b20d5e4 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f2eeb74 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f3d1b01 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81229d57 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81bed020 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x833624e3 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x875e40e4 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x766a1930 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77e06767 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x793d58f3 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d0ff022 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x810c7509 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81b45cd5 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8391ef60 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84aae347 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84b42e58 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a5781cc nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b5c1b85 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c3572a7 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8decff23 nf_ct_expect_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x910a2044 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x949caa3e nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9652b45e nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x903eeb4f nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x906496bd nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90a9c944 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x914feb53 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94154d01 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9842a924 nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a50a0bf nf_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e618895 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e76b6de nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3a9faee nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4853602 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9b4cf0f nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad14338d nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2e682be nf_conntrack_alter_reply EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb37c2094 nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0e4ee6d nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2b8400e nf_connlabels_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb45c1dee nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb48add5a nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc6eb1bf __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfc91c59 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d0b173 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc161b00a nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb71b42aa nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7fc2361 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd005cd2 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe149164 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbeb7cafc nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbed1bb08 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbffd4b1f nf_conntrack_count 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 0xcba4e633 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccf5a720 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca071972 nf_ct_ecache_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd516a344 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd62f88a9 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda513aa4 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd889db67 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd978c41e nf_conntrack_hash_check_insert EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfb8f1e2 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe815854d nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe91a4489 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb894a0f nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd49de24 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde8845df nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfc605fe nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe043b7b8 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0710abb nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe26f92c5 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3b68d64 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4209dec nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8306383 nf_ct_expect_related_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed2a7187 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedd5c9ef nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf037908c __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1a7bad7 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf33a5e5b nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef194767 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2ed8bef nf_ct_expect_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3eea612 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf464b00b nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4c8c95c nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8c5ac13 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf914608c nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdf9d024 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x93e63a70 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x581e68e3 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xe17d9b0f nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x28e5ea4c nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8715bada get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x124492ce nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa63758f4 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x304eb0cf nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x505fd0c6 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x681bfba9 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x95bd7907 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc1616bd8 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfbdcb3db ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfeb014a0 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x505d5360 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xfc98ef2b nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1d61b70e nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x20ccb146 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7fe1ab1f nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0d24c76e flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x33b970b1 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3471c42f flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3810b2ba flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3eb3fbac nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x508a22ae flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x51f888e5 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x65aca1f3 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x738583e5 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7e80c89f nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8f4a6a9f nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa25fda81 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xae3a7f1d nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb32930a8 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb90fe324 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc962cdef nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf1af8ea6 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0210309b nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x071a3eba nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a0942f8 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a5b12ec nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf68757bb nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7491517 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf92aa1f3 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe13112a nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfedd8f48 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7459916f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x4638abfa nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xae3ce3ef nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc39fef63 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd0d7ae1 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xeb727974 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xcbd94f23 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3fda6de1 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4a8d23f8 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x59c7b7e1 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x69645f13 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaa1d55ac nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd9d9c9d3 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xea16519e ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x60007762 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xa0579e5b nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb4f1a62e nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xc516551c nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xcdf2df96 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x12f58dd4 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2b3bd48c flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31896b78 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3483ffab nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x374ea992 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x705d377d nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x74df73a2 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8846b9f5 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8f35619a nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa072e556 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa8982d51 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbcb4c416 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc1a67c73 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd1ace044 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe2e868ce nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb2c0985 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfdb1c359 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01596fcd nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x104ca230 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10e54190 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x14f4d088 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1d1f0eba nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1ef890f7 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2f2f2abf nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2f5f6b7b nf_ct_nat_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3eca2b81 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4aa8ffab nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5719e25e nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x67280c43 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7e381cf4 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c6e54c9 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x99eaf711 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa3f2de72 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa887742e nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa92783f9 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb2375ca2 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb4b476ad nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbcdcee34 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6866f935 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7aa72d99 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7ec75aed nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7f90508b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x895324fa nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8ad0e2e9 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb1a4128e nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd93415ad nf_nat_exp_find_port EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf20edd0b nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x008d9519 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x08ca1ed5 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe21767b2 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe827760f nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1e250b68 nf_synproxy_ipv4_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x372c0037 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x419bd0c6 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x44209ce7 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5fab9859 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x70b7e12b nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x787194dd synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x856fffab nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc2f41eb7 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2e18f6fe ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4b223020 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4e2d4e2a nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6baf89f5 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x70e66648 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x71752eb3 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9e6e8346 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa6c64dec nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaed0e991 synproxy_parse_options EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd8182d2c synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf6ce08ae nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x01786cb2 nft_meta_set_validate EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a3b6d95 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1145c4af nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d115ea1 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e1d3269 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x202af464 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a71dd45 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d6b6cb9 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d770be0 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d7802f0 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f22cc18 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3157d19e nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ba1b545 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10b075ba nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1dfe9320 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20d6581f nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2246af32 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x27df553a __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x308b2744 nft_data_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36e82270 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39af80fc nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39c568c1 nft_meta_get_reduce EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3acacbd6 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40264829 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c8f65ec nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4072307c nft_unregister_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45229d8f nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46af7c08 nft_meta_set_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x575163e4 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c73e8f1 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82c3b9fd nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ed20eb7 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97b3c61a nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e05d585 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f5a3850 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa487eef6 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa301b41 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb28b992b nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb47428f8 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba1ed215 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbcab1e78 nft_ct_get_fast_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc472310c nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc811d17f nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcbc9ecbb nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf0db87b nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd5db151 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde460096 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x577b05e9 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d1968a7 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60069265 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x686ae7df nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76ed8fcb nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7df6aebf nft_ct_get_fast_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x824a5311 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84b3726a nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86981206 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a4db161 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b72d8bf nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d8ecbf2 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x90c60ffb nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9fd754b3 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa044ba55 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4c0c547 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6b5905c nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb454b3f1 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd1424b6 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf9ec694 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc52099cc nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc74fbc30 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd225ccd0 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd3435a85 nft_meta_set_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdee32752 nft_parse_register_store EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6af61ea nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9850851 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3a7912b nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe4a42ad1 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe66af3c7 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xebcf2f9c __nft_reg_track_cancel EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed84fe5b nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef8d2c50 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xefc698dc nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4eb51dd nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf78fc347 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf899f8e5 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8d97ec9 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc165899 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd3438c8 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0ebb6d79 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1d98b2c6 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5022f2b3 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x53c54177 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf48387f8 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf571c7a0 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x466cd441 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4b08bf21 nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa967afce nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb08e323e nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc52b7181 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x71115935 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x910a2fc9 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9e3e0669 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc5844620 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc6d861e4 nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x13432d2a nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x52129a9b nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb0c0955a nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaad989b8 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc836d856 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf48d8a20 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0e3eb40c nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x56018084 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5cdb8907 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0fb7b9c9 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0fc2aed1 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x14e2c25b nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbe86506d nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe9605876 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xfa39c091 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x78000277 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9979f470 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9c147aa0 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9cf49d5c nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xcf8a746c nft_fib_reduce EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x53dd2da1 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x67f6d799 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x87fa04e8 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x256e68cc nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8cf0a730 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc43ffc82 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x011ee01d xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x02c61298 xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x05d3ff64 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x075964ea xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16be9288 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b13d6aa xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b46ab42 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1fd89a57 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24dc5f2e xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e3fdc40 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4f617da1 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54616b06 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6da825aa xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x09c6e28b xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1414106c xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30a476ca xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3118a979 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3cc886dc xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3fe4436d xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a4b013a xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4d78e41a xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62c7da88 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c681d7a xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6db5edbe xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ee3c37c xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x91be76d3 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8249c301 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87fc5b83 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa1036f95 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa462b284 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9cd6e4bc xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa043d8db xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xab196898 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad691cf7 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6ebb72f xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb0a221e9 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb4d56706 xt_hook_ops_alloc EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfe136a0 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1405c7a xt_compat_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd04eb99 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf66a004 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8e2062c xt_unregister_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea79d0b5 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf4645423 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5640f50 xt_request_find_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa3ea5a6 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x269d6f9f xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xec6dd5f9 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x3a07a41a nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa544d643 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb1d4d1bf nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x60e22db6 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7658d367 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8aedadd9 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x4dfede3d nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x6c3e1ec0 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x08e34d7e ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3d11dd62 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4081bad5 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8bf8a8b5 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe493912f ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf6574f8c ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x4190d7d5 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x4714aa0d psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x988f90c2 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xe40a513c psample_sample_packet -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x16f71205 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x463b269c qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1d43ece4 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xca9a8f67 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x484a40a4 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xcce5a32d nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf2d2af39 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x21e02f7e nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x227e56e6 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x4ceec4f8 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x0136b62b nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x472fb489 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x46b4efaf ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x65ff373b ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8e7904d2 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8f6d725d ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb5f9f957 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc0da4d7a ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x002d24ec psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x26f58620 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x7e64d847 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x9147361f psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x740062c2 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7801abdb qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc68baa7a qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xdd194593 qrtr_endpoint_register EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0a6df42a rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x0ae989c5 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0x0bdb850e rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x1958d22f rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x178a1a34 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x187c8604 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1b0ce176 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1cdb3fd3 rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x29044a1e rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x2a63b138 rds_inc_init EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2bd612e2 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x32311391 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x33904514 rds_inc_put EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x398e7b83 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x39188e72 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3fcb8f9b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x44fbaea9 rds_conn_path_drop EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x523fc096 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x534193b4 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x5697ffb5 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4a6ba864 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x56b3d414 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5703f524 rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x6e8a7683 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x712dbd58 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0x7432f84c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x7b0dc913 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x830d9160 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x8472ac7c rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x58a129f6 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x5db07e0e rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x6f5199d7 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x75f1ae78 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x7b578028 rds_conn_path_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8941879a rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x92cb1776 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8801148b rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xaeb74e60 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xbbbaef63 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x9f2613a8 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xa3958b87 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xac12a44a rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xbb060390 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xbe011393 rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc90bdc58 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xc9a2c34b rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xd1897f8e rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xe1d921f6 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xef84058d rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xf1ffe4c2 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xf9f69e86 rds_send_ping -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x3ef7c034 mqprio_validate_qopt -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x431abea3 mqprio_qopt_reconstruct +EXPORT_SYMBOL_GPL net/rds/rds 0xc7fc794e rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xc8a01e76 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xdd361d90 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe6691d7e rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf304344f rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xc7d5ae46 mqprio_qopt_reconstruct EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xe4f79a0b mqprio_validate_qopt EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x8af19f74 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x9d85ee91 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x9e94e3aa pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xee27dfb8 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x16f8ba5d taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x6a6b1c12 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x32449113 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x480dd299 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x84da8fe9 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xd0369fa8 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x2f4b2e9a smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x4e79aaf0 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x88abd4ec smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xdfecd86b smc_proto +EXPORT_SYMBOL_GPL net/sctp/sctp 0x900a6053 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9e8b0349 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xaa63757a sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb418a5a9 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x272ca545 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x94036765 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xd55a2a26 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xfe6f0830 smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x16ce5480 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1b4a6cf3 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2fc9f0b6 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x335d5158 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x40311a5e gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x450f5fe8 svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbc4c33c3 svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe5ff96b7 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x001f7451 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00ac5e6a rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0254d41c rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0300f79f rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x037e18c3 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03ce4d66 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x044b80b4 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04aa64cb rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x005263df cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00fb9368 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01569c79 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02c2cb19 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0316bb3a xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04b22c62 cache_seq_start_rcu 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 0x066510e0 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06d70098 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x071bfd96 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082322c5 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08acbe35 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a9b94d7 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1126c11a rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11a582fc svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x149738ab svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173924ed xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d30242 xdr_stream_encode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d9b5df svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18fb8dad xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1951035a svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c716aa8 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c9b39b2 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d971841 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0716f799 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07944a98 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0870a7a3 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c3a3b0c xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c4135d4 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c539907 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cce7858 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e834dbc cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e407d4 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e9f05e rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14065401 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x146f3168 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15ab4a29 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x162a364f svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1804e27a xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1942da53 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b0f3afc rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc210eb rpcauth_init_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f27520d xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe3c966 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2017ae93 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a75597 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2231cdc3 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2328b225 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23962566 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f3d731 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2461a9d0 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24fd38f6 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26fbeccf xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2824fffa sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6aed0d xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c339c2 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20ebbeba rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21dd3395 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x223d8c96 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x249d521d rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ab6f07 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x263f8b10 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x269849b6 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2703b4b4 xdr_write_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29766fb9 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29b15b6d xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b922eac xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e07ca02 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f20bb98 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2980b1e7 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a401d2b xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b3b409d _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b8ea1f8 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ba2328d xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c54ac0a rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee59b8d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f6e514f xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa3438a svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fcb4bc8 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fcc788e sunrpc_cache_unhash EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f794d8 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c8bf5c xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33e00643 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343ac7dc sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33667794 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340152cb xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x342f9511 rpc_sleep_on EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x360ac152 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36dd3122 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38414631 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36293d8e xdr_stream_decode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x377ac2fc xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37e146ca __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3840a36b svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38ba4238 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ab1348 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a7c7e0f rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab15de4 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dbfa308 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f88d84c svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3891df50 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b40a06c xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b6e0341 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d0e64fe rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d47569c rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e14deea svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e524c22 xprt_wait_for_reply_request_def EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fba9d2b xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fc3bbc0 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f5fd90 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41192758 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b0e2f0 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43b1af25 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43caf74e xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4529282c rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45aebed6 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b88afc xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0d5e1f rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a21243a svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x402687b7 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e39d05 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42ee12a0 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a449ac write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x478fe839 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48a3c930 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x490ef441 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b59d236 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b61bc53 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d83c946 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d90bc4b rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b30f0fc rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b3b64b9 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cc5273b rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cee4368 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4da73ba8 rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dd5d858 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e638bc2 svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ef5d61d svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb79abf rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ec236ce xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e229c2 svc_rpcbind_set_version EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5357d35b xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53bbb1d1 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x544f1f4a rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5452f986 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53f40c7e xprt_lookup_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x552bb563 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5602ea12 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56aa9fa2 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5707e33a rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5794f988 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54ee2027 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5744f42a rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57698fdf svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5956122f svc_age_temp_xprts_now EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bccb5a7 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9bcffc rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eef7ec4 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f69d54e rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a477232 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dce5968 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5decdc88 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f20228c svc_create_pooled EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x610432df xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x612884e0 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64455496 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66424176 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61931043 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c0cedc rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62c10f4c rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62f1232e xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630e47da csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x657760d9 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x660bf9ec rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66df140a xdr_stream_decode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6771cfde sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67a35c88 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67ba0a5f rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68479ff0 xdr_truncate_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x687be23d xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6907b34c svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6987fe83 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d43cb03 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e809a06 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f38d273 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f5dd5a2 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7029055b rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x717a2954 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67483b45 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67691093 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69004e34 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6948a418 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d72412 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac9daf9 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf68fc8 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d3a122a rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d63dca4 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e208928 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fabbe60 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff2e983 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71941db9 xdr_init_encode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x722496e7 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x726abd10 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x727a27fe svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72dcb605 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7488805d rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75ba7851 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b38828 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77d584bf rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78a94bac rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a4d00e5 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b4bf66f xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ba78f9a xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd3c112 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cda3d5c svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73c01216 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e74ea5 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f9e596 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7be4a164 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7beee462 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c46ed86 xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc8499e rpc_clnt_disconnect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80b9a1cc svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8328b459 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8491ea12 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85a6fc35 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8661a84d xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87654dc6 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87783deb rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89592be1 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89afa89c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c1ce51d rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca35405 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dd2edfa xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e09b63a rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f6aad48 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92da18e2 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92dde5e3 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94428a61 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94898dca rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c03aae unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c03cb8 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95576cbd rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96373f08 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f08da11 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80224cf3 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8065810c svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80daf076 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85b5142a svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f8bab7 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87a05304 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87c8c611 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8985b22e xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89abf22e rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89ebc645 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a52dc54 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a5ce680 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8abb8c09 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b01ad4d xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b05825b auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca19273 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dc584af rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f15f7d4 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f242305 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ffaaf74 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90316435 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9228f8fb xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92d8313e xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x939ed4c7 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94301628 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94af9c2a cache_create_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96e08d73 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c8ab01 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x993e7147 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99693422 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96bad667 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9987b27e svc_recv EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ba01ff8 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9df58829 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e3ee27d xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0dfec44 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa10e7656 xdr_stream_decode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa15d0750 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d68ffa rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3feed44 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a2e985 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4c6df36 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa557df48 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7c1548d rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa832cee9 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa97cbfc3 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e46792 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa0498cb xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaad5bb9 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7dd9c8 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xade06ddb svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed4fe81 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ed11ce sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a39d702 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b4d09da rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b9673e6 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e3e2c7a xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f480fba rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff6a3c7 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff96735 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa07fd34d rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0860dc6 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa33a793c rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa66a7a82 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e84a31 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7ceedb0 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa955f871 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa96be3b3 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa4df934 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa55bf5f rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac58cebd rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac6830eb rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae292aca svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb086002a rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0bdb487 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1313af7 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1747cee rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3a5cf47 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb43a1dae xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb48a7ec7 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafcee1cd xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff28234 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0a1a381 xdr_buf_trim EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb65281fe svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75b00e2 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba380eb1 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbed93f7 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbda28bd4 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe1926c1 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbecac14e rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb54ee580 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5cde6ac rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5d6206b rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5f1a233 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb614b4d4 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8595154 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8771a12 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9208ecc xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba1a0ddd rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaca9013 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbad8cb28 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde8656b xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf515252 cache_check EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc043585a rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc08fe2d0 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff2687a rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc04d6ccb svc_reg_xprt_class EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0d452b9 cache_seq_start_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc15a67b7 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc292bb22 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2a4291b xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3801fe7 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4b4656e svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a4d85d write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6b79b8f svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc76a7bbf rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc77947ba xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89dbb52 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc346e061 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc396a15e xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3c1120c xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3d70dd5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48895c6 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4991323 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6dc0ca0 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc81962b3 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89527a0 xdr_inline_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8fe5ba5 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca1a2df8 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc160d32 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9a32f6c sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb88f212 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc4ad4bf auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcecbe205 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf58fac1 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd020baea rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0a6c661 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c89c4b rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2cf5354 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3526bc6 rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd463f1a9 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4e9e06c svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5595266 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd71461e9 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7d3a925 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a8365f xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd909e904 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda2b83ba svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda31e532 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda6d5e36 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb3def68 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0f1fc7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6a68b9 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6c548e rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce7fb317 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf2d1a44 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd03baa8c xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd19cb1a5 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1eca1dd rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6141d15 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd661ad27 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd83fee2a svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5069ac svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb6e5d4d xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc4d7c12 rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd983745 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe20486b6 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe227f341 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3af405d rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd71f79f rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeb7a306 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfeffe9a rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0412090 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe088a8dd rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a1c543 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe226b255 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3ad1ebe xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5690a70 cache_register_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5a72cc8 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe663468d rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6cecff2 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6d6ea29 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe72d2238 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a904f1 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe954ba69 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe618db00 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6bd1fd5 unix_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecc7f263 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea49d7eb svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea8dea6e xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0718a2 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed2b2c3f rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed894b6e xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedacde07 xprt_alloc_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee3a2382 read_bytes_from_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef1a5584 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed377cb rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef52474a sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef7c3225 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefb32571 rpc_clone_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2cdc6b7 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf71b40f8 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3e221a3 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5076128 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b01310 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6de598d rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c866ca rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf93154b8 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf98153d9 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfad12004 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdb2f583 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdd083cf rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe9e33b3 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeaa59fd svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/tls/tls 0x14c12504 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x2201989b tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x77888985 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xe93384d3 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf809fe25 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81aa2b6 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99cf64d gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9cbee2 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff48daa9 svc_authenticate +EXPORT_SYMBOL_GPL net/tls/tls 0x450bc408 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x4906119f tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x6f7c4142 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xd6cd5b7c tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x02bdb2cb virtio_transport_notify_send_pre_block EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x074ad6c8 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0f9165e9 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a04d381 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a9945b2 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x22fc5166 virtio_transport_purge_skbs -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24967632 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3118ceba virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e7a289a virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x673ade0f virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68af1075 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7878a041 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8118ca51 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8245659e virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83fe608e virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8647a86d virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c34a779 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9228ddd5 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9634522e virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1091c86 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9a3fc23 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0950962 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb8f0b514 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbaa95a33 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x043afd5c virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0ee8b03e virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1edda144 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1ee5eb00 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x212f1791 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2bef6f91 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2fc04c88 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x491173a9 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5d12fbb8 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e015654 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e55e27e virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b42e957 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c740ff2 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83f64c59 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8967ac09 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8d24b29a virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8dfcc583 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8f8d53af virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x994bf3f0 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b352c20 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa86751b5 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaed83303 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb82a15c8 virtio_transport_notify_recv_pre_block EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe7803f3 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb8f3496 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce4f42c7 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd490cb30 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9fdc531 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde8e6d0c virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe51badf5 virtio_transport_read_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7cdce90 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9994c9d virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf131a1d9 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf913fc0a virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfab0a86b virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02030b0e vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x06ee0177 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbefa7ef3 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf90f07c virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe61e0193 virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe73cb7b9 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9943604 virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeeb2d6cb virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf111f712 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf348e2ec virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6c33639 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xffc760f0 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfffab0a1 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0392b497 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x098bfc04 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a447337 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x19541d86 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e68b6b2 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2408ff8f vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1f3892ec vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x24e6b3f4 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x252244f3 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38502f08 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2a44d2bd vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x461b4a0c vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x64061af1 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69fdfb61 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6cd096f0 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d7db573 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x80169711 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x906be873 vsock_dgram_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4fcc3447 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6eba469b vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71aeedb0 vsock_connectible_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7621b536 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82415314 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8bc62e91 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c46f35f vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99b5821d vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa5a1cc25 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa85aff46 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ea7f20e vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa7f41844 vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbda5b5e9 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4716151 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb9574029 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe0ce818 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbe5adbfa vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc11a6c62 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc22977a7 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2c54cb3 vsock_connectible_recvmsg -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd533b201 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd62b4f2f vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd6b80712 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe76d44f6 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca2d583d vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcdb0e9ba vsock_dgram_recvmsg EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec9cfd67 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf2d48b51 vsock_remove_connected -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0be5743b cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0f7dbad3 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1abd1235 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x309ff15c cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x39964492 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3fa5f12b wiphy_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x480c1822 wiphy_delayed_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4fd5bba0 wiphy_delayed_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ad3f9f0 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ee6802d cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x659c054a cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7beb461b cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7ca8054a cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9a0fabf8 wiphy_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac2cb272 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc7cf36d8 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd5b8a04f cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb9eb7e7 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf64e1227 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfbe7c3af cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x06cf363a wiphy_delayed_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0950e260 wiphy_delayed_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0f6758a1 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10b52b0d cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x13bf90af cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x232e3046 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x246c5e50 wiphy_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2ea8680c cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x36b725d7 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4106d246 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x43ef59e1 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x444e3c32 wiphy_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b1f9b32 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x64d28c82 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x803ee821 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8d743d6d cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x93da07f2 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa103a053 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xae773726 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbed1d3ff cfg80211_wext_siwmode EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -19496,567 +19528,567 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x130325f0 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa2b3d563 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa523e4de ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xaa0645cc ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x490ba463 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5673e5be ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x73638253 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9b526d9f ipcomp_destroy EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x5384afc4 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x52dbb15e snd_seq_kernel_client_get -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x56e6cb5c snd_seq_kernel_client_put +EXPORT_SYMBOL_GPL sound/ac97_bus 0xf29e0b54 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x198df13c snd_seq_kernel_client_put +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x5205cf6e snd_seq_kernel_client_get EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xcbf9166f snd_seq_system_broadcast EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf0c8f9fa snd_seq_expand_var_event_at EXPORT_SYMBOL_GPL sound/core/snd 0x017c8375 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x029c15f1 snd_devm_card_new EXPORT_SYMBOL_GPL sound/core/snd 0x02f5e181 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x2911bae2 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x2ebedeb7 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x2fd7c701 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x250f6ea5 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x2d102631 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x32d5f3ef snd_ctl_register_layer EXPORT_SYMBOL_GPL sound/core/snd 0x47438efa snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x570d2989 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x56c744d7 snd_ctl_activate_id EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x787a6f62 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x7ec2380b snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x838253cb snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0x8c0ae856 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x8ebc87c2 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x64575f79 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x7c3ba26c snd_fasync_helper EXPORT_SYMBOL_GPL sound/core/snd 0xa9074e87 snd_device_get_state EXPORT_SYMBOL_GPL sound/core/snd 0xb0c5f93d snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xb1285c5f snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xb1a69f1a snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xc48a10b0 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xc53b87bc snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xe3504b41 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xe42c5d7e snd_power_ref_and_wait EXPORT_SYMBOL_GPL sound/core/snd 0xe4f1b628 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0xe745fb44 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xef5ef42e snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xefc333ec snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xe8977782 snd_card_ref EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x30fdf3e3 snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xa24fbec9 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04b5aa38 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x76b4cc8d snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc21390ed snd_compr_stop_error 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 0x0d9ff0ea snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0e2323a7 snd_dma_buffer_sync -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2fa3c078 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4604124b snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4d97d749 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x545aab3e snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x21e191cf snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2345ebb5 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x33096d83 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4c9c8d8c snd_pcm_stop_xrun EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5d8c0c56 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6028f57e snd_pcm_fill_iec958_consumer EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6c7d5544 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x755db99c _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x77f0f052 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x85f3d003 snd_pcm_stream_lock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9db35cbd snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa1f5bee6 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x907ec7df 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 0xac363f3c snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3698972 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc785cc43 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd3708a9c snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfe938107 snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2b3c5f8e snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x43c7a5dc snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7fa7388d snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x855a09e9 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8990042e snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8b697cf0 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8f676dd5 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa2ca38c3 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb37a9957 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb8b068dd snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc4b59c34 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xde23f859 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x3dae105a snd_rawmidi_free -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x8ea432bb snd_rawmidi_init -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x28d4139f snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xcd652a04 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x07d4b02c snd_ump_endpoint_new -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x119cdca9 snd_ump_receive -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x1c47f0fe snd_ump_attach_legacy_rawmidi -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x1da37ad1 snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xae047957 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbfc58438 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc1edcf3f snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0ab8004b snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3717604e snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4524b91a snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7dce6f17 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8cfc610d snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9676429b snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb2a734f7 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb8c4b03c snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcd194fba snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd9d49d1b snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdd74d89b snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf6661fe2 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x1ef2f24c snd_rawmidi_init +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xd3ef52c4 snd_rawmidi_free +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x22b63942 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x3d79868b snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x10a663ca snd_ump_receive_ump_val EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5b39d06f snd_ump_convert_from_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x756b0d65 snd_ump_block_new -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x8191e452 snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x66aa052f snd_ump_endpoint_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x77138efb snd_ump_receive +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x8e599c49 snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x937b7e23 snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xde084f4c snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe02eaab6 snd_ump_switch_protocol EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xf3188888 snd_ump_transmit -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xfeb7e492 snd_ump_receive_ump_val -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2abe562b amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x47557839 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7506f26a amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x90c76250 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa763590e amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb7cd2af6 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbb5d8ef8 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbd7a1ec3 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc19267cd amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc82441d5 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe28bfae6 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe424b44c amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf6ac2105 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ec6920f snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1349c819 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2727f4a3 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x321e0c10 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3acad5ae snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c0e0754 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x46e2acd2 snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4713312b snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c230015 snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4f16236a snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x524c58a2 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x56eb1233 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x69a5f21f snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x71266e56 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x74242b61 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x76be9a5d snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8676471a snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x895f67fc snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8f302ac2 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x92679c30 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x933f8d09 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaea7be36 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc4913614 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xca0656e0 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd94f2a86 snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xddc96b3c snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdde870a3 snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe924522d snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe93bb552 snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeeffeb7b snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfed5ba3a snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x017c1659 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x039f791e hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x040a6684 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x048f8266 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ab536a2 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cbb93ac snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11ca38a5 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17b2cbb9 snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19d7e0b0 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d0a9ab4 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f55b9e9 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20446889 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x208c69e9 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26953df2 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28a9abf8 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28c9a90e snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cf1ea81 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d58511e snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x311be6f6 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36b83337 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3783999e snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x378f65fa snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38468b33 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39331b46 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b28346d snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe82e3ca0 snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x134d984a amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3543ac57 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x35a154a1 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3b62e364 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3f0e0bc3 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x46ca6eb4 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x68a48362 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x71ee7147 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8aa835b1 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbce5e73f amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc9076f0a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe2c5cab6 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf46deaa8 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x059b83d8 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x130d24ec snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x139441dd snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1e38322b snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x220b0ea2 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c8e8620 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2d505dba snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x31e9c56b snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x37d1f1e3 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3bb1e31b snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x433e2b8b snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x45de5cc3 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49149a6e snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4ae7ecd7 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4d68c55a snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5819bf50 snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x77d23f9f snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7c0f729c snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x831eb246 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x844a247b snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8d7e2481 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbaec1eb0 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbd3949d5 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbe19f80c snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdfda0c7f snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe0bbdc88 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe2fe3927 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6f5a2b4 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf04995b4 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf34698a7 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf75d12fa snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x000ff4d2 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0213965b snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x021889f6 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x069e9b5b snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cd56b5b snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ee4df55 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x134f3b6e snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1aaad3c4 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20df64ce snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x237504f5 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25fee3f2 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2617da77 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2dd8ae4a snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2de4ce29 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37033733 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39a44235 snd_hdac_codec_write EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d51232e snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d889f8f snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fcd9efb snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x420268ee snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49b8733f snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c6cede6 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ca86e1e snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f2201bb snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f92a349 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4107c906 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x412ab571 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43e584b9 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4635d1f9 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x474400d7 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x477e3eee snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x497fe70d snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a565541 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c6a9d97 snd_hdac_stream_release_locked EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e874b7c snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fb0e60e snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5120a01f snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5286a1b3 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x572a2902 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57bf83ba snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5826b6e6 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x588046a9 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58bcdd27 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58e1b402 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e9b926e snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f77056a snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x569a3999 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56f5ed7a snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bc9d338 snd_hdac_stream_timecounter_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c0f7690 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60294b0b snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60491adf snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62d44212 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x658a438c hdac_get_device_id EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69300c74 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ae2d5ff snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b84fc3d snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x719edb05 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71fcb55c snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77bd8d30 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6853c446 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a195d1c snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b20eb5f snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f7ed87a snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f9a1f32 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7353f8b8 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77285197 snd_hdac_dsp_trigger EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a0cebc0 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a9e3f33 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ac83886 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7da477c4 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e6fcf19 snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8336f91d snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88e96673 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c564a08 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e99b8ae snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90e9e354 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91281cc1 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94e881a3 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x975d0c92 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b25b917 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dd90c87 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e9a447f snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ee0f9f9 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81fdaef0 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86195504 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x869cb821 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87b37a17 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ac2e33e snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b781275 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f41a361 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x920cfeec snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9546b983 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x963177a4 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x978ea7c7 snd_hdac_acomp_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cd441f3 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaeb8aaac snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf6da6f2 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb18da053 snd_hdac_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2f880bc snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4a8d936 snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb51bfafe _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7ca39bd snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba31a658 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bb3aa84 snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d053b9a snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e9b2082 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fe52721 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa21e7eca snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa60724dd snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa11c152 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf267bec snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb130888f snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4a610e1 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4abf085 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8ab63bd 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 0xc195736c snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc30cd452 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc49a8e1f snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4b7dfce snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc261d0a snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd20f2e9a snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6590764 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb4ab654 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb7e0e31 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe381017f snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe474fe15 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5577265 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8672dec snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9ae5634 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc9362ad snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1fbd177 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5481a58 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda657ed7 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd22528c snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd62fd42 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde8d13e6 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0611c28 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0fcd120 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe18cd879 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe297a3cb snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4971c49 snd_hda_bus_type EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5bf2356 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5cdb901 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9cc94b4 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea88397a snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0247ae7 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0cd3bab snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2383c5d snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2d53a5d snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdffee57 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe0bcb0c snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe1ee320 snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe8af502 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe716ab50 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9159a17 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9bb9bb2 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef41efac snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0886813 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0a8acc5 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0f2fb41 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfca02d03 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff58c850 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x27c27ea4 snd_intel_dsp_driver_probe EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x3b58e7bd intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x401997b9 snd_intel_dsp_driver_probe EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4481ec4b intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4bc389aa snd_intel_acpi_dsp_driver_probe EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xc7b324ed snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x437a9ec7 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6b25a4f3 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x95f53746 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xad1db5d9 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbeb85e89 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe02abedd snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0041aee8 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01defc96 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01fa163c snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03747669 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x064ee42a snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x393a6dde snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4ea5c7eb snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x521b2cbf snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcb0000c9 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf9004166 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf93fc8fb snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x001ffc4d snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x034a438f snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0352d584 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04cb9714 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 0x0683061b snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0805bf88 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08790382 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x094dc9cd snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a65498d snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b90534f snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0da76de4 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0db5a092 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0eb9758c snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11e6e332 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12dadee0 snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x130cf2fe snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13c395e0 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18bede70 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d48f3fd snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24e0abd3 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2504c752 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27bd7ee3 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x287668b5 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28e2ddad snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29b13c11 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c13cb0b snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31a2721d hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33463422 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33b3f68d snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x356f309a snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07170c93 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07ae6fce snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b665131 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d597751 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e2160ec snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0eef8fd0 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f854cef snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10869f64 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1239be2e azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1693cd21 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19460d04 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ac3f5ad snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1cb10119 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d1f7e57 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d53345e __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e8dec89 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x200f3fa4 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20fa11b6 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21675efa snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28b833c6 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2906fa62 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a4876cb snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c9d13fd snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d4d8210 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e952650 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f55b2f5 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33d90ea5 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 0x3baa4f9e azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c94a152 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3deeede6 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4018e739 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40c0ddb3 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40d9c6e2 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4398b1b1 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43efe0bc snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4421db5c azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46996ee0 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x481142a4 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49381bbf snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d237c34 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ed3533c snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f731986 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50b94752 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53237f43 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54ab3543 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55123cdd snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x595e04ec is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a34afa4 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a93818d snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5aa802c1 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cc330bf snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f55c409 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x648192bf snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65d2a427 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68c044a0 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d16cf55 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e63a692 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71ffb9fa snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7254d7a5 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77934571 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78201c2b snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7830ec8f snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78a453bf snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78f4daae snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a9bde7a snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a9e155d snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x821c8063 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84af9f8a snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86c886b5 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x877906d9 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8954befb __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8956c8a9 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b050c8d snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b1662b8 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9326f224 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x995b6eb4 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99775d52 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x999e3806 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c3cf4a2 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c461a8f snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0a55951 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa135508b snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa305096b snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4ccc59e snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6c417e2 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7f8ad6b snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa83bc979 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8745182 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae4ea942 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb40a01a7 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5345c2f snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5c0f6e6 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6bfcbc8 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6f0789e snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7f16417 snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb3f6e94 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbef8460e snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfd4f783 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfe22331 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8ccd864 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbe5e0cc snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf1ddce6 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0c2ddf8 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd252aed4 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd67693f0 snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc3820dc snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc65f87e snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf9992bc snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe05488ee azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a5bd4b0 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a74d3ec snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b875bda snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d114a40 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f78cc03 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x434a9bc2 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4394f3c3 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43f750dc snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45c8e3ef snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a9100f8 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c37a063 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cb64a25 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cce94c2 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x556f1095 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x561dad51 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ab2b364 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d8c3a16 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e924280 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60ff6f8e azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6383047e snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x651b1069 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6aec153a snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b6eae9b snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cb394ce snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d37eca3 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6daa258f snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e20fb4c snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ebd0957 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fc975e9 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74cc7944 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7678bbd5 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b6b57b8 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ca4c81a snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ca68a79 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x801e7b9f snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8039252e snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80bc1c83 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82c531e4 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x830317a6 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83927a82 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84ae628d snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85286cf9 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x879bdcb0 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88193322 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8849fa69 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88c24d4a snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c830a48 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f0f6222 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f43eaca snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93a6962c snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95991165 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96d11167 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96ff6686 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ef7d2f1 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1882357 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3dc0c66 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3dd81c8 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8d8ec2d snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9624f71 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaba0edc3 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad193155 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaebb3ba9 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb02a356d snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0b05906 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1e6eff0 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb25f006f azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4a8b8bb snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7723ec8 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7e2d413 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba036a0b snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbe7ed2f snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc3d917d snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbef73085 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc190e805 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc430047a snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc504b464 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc50c700f _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc61a032a azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc62db5f5 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc81cf01f snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbdc5f73 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce8cc6d0 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf3328ef azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1fcfb6b snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd60d7fe9 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc010b9c snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe063354a snd_hda_mixer_amp_switch_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe359ba54 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8a080d1 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea7009b7 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeab66789 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb22be53 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe190bd7c snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe49992da snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5973e03 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb134e58 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecd1888a snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed37279b snd_hda_apply_pincfgs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee7ee3e4 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1c3b8d5 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf366f2b4 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3cd9982 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf23f6e41 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3b3e2ed snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf434a32d snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf51d2948 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7ad94f6 snd_hda_pick_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf98042d3 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfabc0fff snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc0edc32 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc4d569c snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd79399c snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe936ab6 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfeeb3d43 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0032fffd snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x00bbeafb snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x095125dc snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15f72994 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x17ae3a6a snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x44cbce74 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66e1c3c9 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x730a81cb snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13d82e2a snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d2b9dad snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1da97e1a snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x316c04ca snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3b38bdd3 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4b55ad5a snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5237bc5a snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5faf3e2b snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x63671573 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68b4d5c5 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 0x77b4cb0c snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x78229f9a 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 0x9a90ba4d snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9aa946f0 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb02c2a9e snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc79150f5 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd6044395 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe07e3277 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe682f257 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe9eee56e snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec23d5d7 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xee74d7a7 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf2e67f66 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf693cd28 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87541e98 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9ca64cc9 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0f5c0ad snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaaac84fa snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb6cdf5b8 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc49db3d4 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcf9bf968 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd86a34f2 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe24dd76a snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe8ded133 snd_hda_gen_fix_pin_power EXPORT_SYMBOL_GPL sound/soc/amd/acp/snd-acp-mach 0xb04ce168 acp_quirk_table EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xa97a40f1 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x4ddf4239 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x73837995 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0072d727 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2809dbc3 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6db24c40 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7140b4f7 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7a881868 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8438c3f3 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcef5681e adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xda63768c adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe096ae6d adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfcc399e8 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xe17e83df adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x05544e22 arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x05caec2e arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0a5fd8e8 arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0bdd102e arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0f125dac arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x14da43b1 arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x15819ddd arizona_in_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x188a7cd3 arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x19848ad6 arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1eb4ed19 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2532592c arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x303c230c arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x336e959b arizona_in_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x35a6f35d arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xf42b7e8f adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x5cd100ec adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf8b6a794 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x033a7c98 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x04348100 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1481e1cb adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x280ba538 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3eb55858 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5f38ca03 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x94fee1ea adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb3e4acb1 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xda53de71 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdefd2318 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x2a3c40bc adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x085cadf6 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c75501a arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0c954859 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1049438d arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2b06c9b2 arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x30920c58 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3adeafc9 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3f21df59 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4371ed3b arizona_eq_coeff_put EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x488c8c0b arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x52b9f45b arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5ad0ee84 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6059ea4a arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x564fa7d5 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5c93b881 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5c9b6f27 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x68698d0a arizona_init_mono EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6fb3ee94 arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7215f54b arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6de4d6b8 arizona_isrc_fsl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x733436ea arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x747f0908 arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x74f8699d arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x770a768b arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7ad97360 arizona_free_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7b573486 arizona_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x81e77286 arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8215c8c0 arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x92afd1d0 arizona_jack_codec_dev_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x970bbf93 arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x999c2f27 arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9f90a914 arizona_init_vol_limit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa07fd5cf arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa815f02b arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa81a1a75 arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xaab8a67e arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x83c3a83c arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x899f7068 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8ca90396 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8f138b22 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8fa24e2c arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x909fde49 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9c436bca arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9fc3bcdf arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa3a6a371 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa607af34 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa9636ca6 arizona_input_analog EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xabdf3500 arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb1d68b16 arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb1ffc91b arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb2ad4805 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb829c1b6 arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb8ac841b arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc144d034 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xabd71dbc arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac42a5b5 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xae2ba642 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb0b8160f arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb4fba8a9 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb60120ba arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb69ecedc arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xba7cb59f arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbd927d64 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbed85caa arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc700df76 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc8f7cd70 arizona_in_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcb65e167 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcdfb9378 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd2ad9bab arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd6c4c0de arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd7626c3f arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdc451ca4 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdf2d4dbe arizona_set_fll_refclk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe95da7dd arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf726b7d5 arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf84b4ee7 arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf917b271 arizona_init_spk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf9e7e455 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfa857cf1 arizona_input_analog -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x07e8cb3e aw88395_dev_set_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x207638da aw88395_dev_get_prof_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x478ef1cb aw88395_dev_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x518ddcaa aw88395_dev_start -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x8711034e aw88395_dev_fw_update -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x8acdd689 aw88395_dev_stop -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xa315c583 aw88395_dev_get_profile_count -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xb683396f aw88395_dev_get_prof_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xcd9208cb aw88395_dev_get_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xe70644e2 aw88395_dev_set_volume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf8b54d94 aw88395_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xfa5a341c aw88395_dev_mute -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x073b5c97 aw88395_dev_cfg_load -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xb1f76944 aw88395_dev_load_acf_check -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x17a49364 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5fd7cc8e cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd5efa6ba cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x03a9cbb4 cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x132cf52f cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1ab8c4ff cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x304d70bd cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x37bd9e6e cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfeb5450 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe170f2db arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe40b55a0 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe54a8277 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe84811a8 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf0433d34 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf67594ae arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x0d40d551 aw88395_dev_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1ba3d261 aw88395_dev_get_profile_count +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1e76b42f aw88395_dev_set_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x3ec5471b aw88395_dev_start +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x500e69ed aw88395_dev_get_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x57a37391 aw88395_dev_mute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x5b242b2a aw88395_dev_set_volume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x7465ba1e aw88395_dev_get_prof_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x9cd1af0b aw88395_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xa2ec1ca6 aw88395_dev_stop +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xb0abda30 aw88395_dev_fw_update +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xc263be5b aw88395_dev_get_prof_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x13509d2e aw88395_dev_cfg_load +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xa40c61d5 aw88395_dev_load_acf_check +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7a7fc5f9 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7bd31613 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xa79da0e7 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x27e57523 cs35l41_write_fs_errata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x389e86c7 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3ebcabf6 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x434b61fe cs35l41_configure_cs_dsp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6d13daa8 cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x81e898b1 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xbb8535c3 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc2a3ccff cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc7541cbf cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xcab730cc cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x38e2c961 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7a767cb7 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7b5ee6e6 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x98e3c663 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa0815aa3 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa60d1923 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb1c65a3f cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb3dd3415 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xcd0be039 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd08319e2 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd3ec31db cs35l41_configure_cs_dsp EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe92ff6ad cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf7c9d64d cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x14c8ea39 cs35l56_system_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x6c1e2b5f cs35l56_system_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x76f046b6 cs35l56_system_suspend_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x8c1aa85b cs35l56_system_suspend_late -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xac2af41c cs35l56_system_resume_early -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xec1cf0f2 cs35l56_system_resume_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x9b114e5b cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xbd55f580 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x057e32b6 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3c1b57f2 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x89f86e93 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbd1b7e67 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd05e7927 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x09d8cac7 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3a64e01a cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe9d5e391 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfa9075b7 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x2f3d8c6b cs35l56_system_suspend_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x3221f6f4 cs35l56_system_suspend_late +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x917abb32 cs35l56_system_resume_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xcc63b435 cs35l56_system_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe21c4348 cs35l56_system_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xfed9559a cs35l56_system_resume_early +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x717c676d cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf340e4a9 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1f53913d cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8d20f296 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xad677757 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe51ad074 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf4bcaa8e cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3b96d4a6 cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xbc90ca81 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x934ef4f6 cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x6439a5dd es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa17c213a es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x89512230 soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xbe5d7de2 snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xefabdf26 hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x6ed02b74 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x034e1f6c hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xeabe8b20 hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xce6e7fa5 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x688717bd es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc061f741 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x15ee6554 soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x2d0f09d9 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xfed785b7 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x3e337ccd snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x67872539 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x8ced3807 hdac_hdmi_jack_port_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x1d5f4326 lpass_macro_pds_exit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xdf61f423 lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x639fa8fb max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6af55e0c soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x93b5a15a max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x9b8742d9 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa65120c4 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x446c346c mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x69906655 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xa170446e mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf390a046 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xa2a005ad nau8821_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7816a81b nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x0615bec1 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x005f183b max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5b8ff9f4 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc431ce22 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc82fc741 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x1f309be2 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x28a1c933 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf476c8e8 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf84454eb mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x21304037 nau8821_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x40988b95 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc59db91b pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xcce3f0f5 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xedb3d717 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xea037b3f pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xeedba22b pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3fb3267f pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x9e33b47c pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x36d3a359 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7dbce1c6 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xeed7e6d2 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xf112975b pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x01991d59 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1b6034c7 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xef9311fc pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf8db2b96 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xd4e61417 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x886d04a2 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x5d408c74 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x9288fcf4 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd496abed pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x64dc481c pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd32607c5 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x31ea5b79 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x6ff12c44 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x11bb3868 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x693e272f pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8937f21c pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9c95c6d2 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1e5189c4 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7717b1b0 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb9818871 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf0d4d3fe pcm512x_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div @@ -20065,195 +20097,195 @@ EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6347a 0xade4bf4c rl6347a_hw_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x178895ec rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3985db3d rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4772d14a rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb8ad0658 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd567e5d7 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf3b308d1 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x30d59c7c rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdf9a993b rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x78df999a rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x99de2226 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4f891ee1 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x665f3305 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x91e78de9 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x957ebdf9 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xbafc46a7 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xce8f0961 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x30e34346 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd123191b rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xad967d4f rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x4860a752 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1cfa16f0 rt5670_jack_suspend EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x657d9cdf rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x79559432 rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x9008ee19 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xcd5bfd0b rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x1425bd39 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x74215558 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x8679d571 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x8b0e8242 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x777a7511 rt5677_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x40996b7c rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3ac90db4 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x46dbde33 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x58e00ac7 rt5682_aif2_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5feaf15c rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x70191eb2 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x707f3d3c rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7c32bd4c rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9b48863f rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa0bd99b1 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x600c9b1b rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7122c84b rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x74cb8ea4 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb2e73f38 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb3d7b1c4 rt5682_aif1_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xeb336fe5 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xeb44bd4a rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xefa23a93 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf03237ae rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xd1e13f3d rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5635fefb devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x703db984 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xaf846712 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd3833479 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf5ca3fe5 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xdb759a7d devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x36b5ac92 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x8c41edf2 src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xb625fb6f src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x2ee8a27c ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x6fe03cd0 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x081aa09d tascodec_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x2c1ab271 tasdevice_digital_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x41e2e124 tasdevice_amp_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x6a9bc8a4 tasdevice_dev_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x7ce51f9d tasdevice_dev_update_bits -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x921fab15 tasdevice_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb9db1edf tasdevice_kzalloc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xbb4a8ca0 tasdevice_dev_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xbce26938 tasdevice_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xbf8a86f6 tasdevice_amp_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xc78a6d54 tasdevice_dev_bulk_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd272d5a3 tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xcba71fe1 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe6213316 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe81dc35e rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x04f71dce rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1cc22647 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x518150c3 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbda32317 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd9101173 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf26926de sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x3bae81e7 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x681b4921 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x1f19ae90 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x8f008795 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x56c5402a ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xed83c03d ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x1bf9d6cf tasdevice_amp_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x356e022c tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x4ba309af tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x862caa48 tasdevice_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8ce256b1 tasdevice_dev_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8d546ef8 tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8e244e5c tasdevice_dev_update_bits +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xbd8a6514 tasdevice_digital_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xc3a692c8 tasdevice_dev_bulk_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd2ca1625 tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd46b9101 tascodec_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd60d28da tasdevice_dsp_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xed7d29de tas2781_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf46a6f70 tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xedcb0509 tasdevice_dev_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xedd0ba74 tasdevice_amp_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf4b405ce tas2781_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xa1d74296 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa4a75bc2 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x774daae8 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x0597bba0 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x3cdb5a63 ts3a227e_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x17c6fa81 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x45421254 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5e8e4e40 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xbb653a10 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xebf7b08b wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x037bbda3 wm_adsp_power_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0f153fa9 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e735601 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1f29b30a wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x22aef4b6 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x305f96fb wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x31fcb47f wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x320dc517 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3830ac7f wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3cc045a1 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4fb7e57d wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x0322e6ba wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x31cb08c6 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x486ba691 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa67bdb18 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa893c2c9 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0bacfd6b wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x10679a53 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1fd23d44 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x300e0181 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x35c6b450 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x421b6ee0 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x483acdc0 wm_adsp_early_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x57f23943 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5a30325a wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5aec47cc wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8eb3e95d wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x96d0a199 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb0e8a8ec wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbbe1418e wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb70a8d5 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd25a4e11 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x55999fb6 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x59a8ab0c wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5c9430f4 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5f74897c wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7355a4e4 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x73bde85c wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7810f6e9 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x85e7d6d6 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x96b1601b wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9fe51df0 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb0d5113e wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbb158cc6 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbb3b8821 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc3a48ae6 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb81dd19 wm_adsp_power_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1d98f1f wm_adsp_compr_trigger EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe0ce4fd7 wm_adsp_compr_set_params EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf32f5dcd wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf55b7b58 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfa8acb9a wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfaebeb98 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfe004e03 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x59d4369c wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x705341a4 wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5c52bbd8 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x79abe288 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8bb9df79 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd28bb772 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xd8c515e0 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x809534b7 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x92ba13f7 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeac654b1 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfa2b516e wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfa3b5f3d wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x66293b75 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xe7ded374 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x18b634f3 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2296a1c7 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7caf79a5 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xed104be4 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x9d338f25 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xb2905097 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x60c6b4cb fsl_asrc_component 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/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x061b93f2 asoc_simple_init_aux_jacks -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x091c6944 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x13282488 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1342f230 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x13d550bb asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2d32988b asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5a258f80 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x66a9b5c9 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x77ffa9a2 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x826acedb asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8adf9c12 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8c995430 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x94978353 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9d33d51e asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa45d40f9 asoc_graph_parse_dai -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb2648157 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb75ddd44 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbe47cb5b asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc15b51f3 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcb4b0948 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd1204480 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdfbfb0ed asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfbd4e045 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfc3641c2 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x9f40f3ee sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xc5780e98 sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x0b9e1225 intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x2a74fc08 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x55b77a82 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x12e4d61e asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1698a4e8 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2cf42673 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2eb4b393 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x369af508 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x44909f07 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x449941b3 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x456d3dd2 asoc_graph_parse_dai +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x514bebc4 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5b533c2b asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5e1cb302 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5fb66d1e asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x68710e48 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x68e32fb3 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x701484ed asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7cc8a513 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8cd0ab52 asoc_simple_init_aux_jacks +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9e715fd9 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa55713ea asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc6c381ad asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcc2f1a6d asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdccc6117 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xed01cee2 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xed049759 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xb3cc03a9 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xc554354e sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x0639b661 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x58e3b092 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x68e1d29b sst_alloc_drv_context EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x709cd25f relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x77374a18 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd57a3580 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x71af1f3b sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xb5d4f313 intel_sst_pm EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x04498d6d snd_soc_acpi_intel_cherrytrail_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x099591ce snd_soc_acpi_intel_cfl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x128f931b snd_soc_acpi_intel_cml_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x171108c0 snd_soc_acpi_intel_ehl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1bc80d02 snd_soc_acpi_intel_adl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1f8b7bc7 snd_soc_acpi_intel_baytrail_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x279fe63f snd_soc_acpi_intel_adl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3be70ab6 snd_soc_acpi_intel_cml_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3c425516 snd_soc_acpi_intel_hda_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4854b8a6 snd_soc_acpi_intel_cfl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4ef13e3c snd_soc_acpi_intel_tgl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x54ee2a5f snd_soc_acpi_intel_glk_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5e830a16 snd_soc_acpi_intel_hda_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5fab088f snd_soc_acpi_intel_broadwell_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x68f75bcd snd_soc_acpi_intel_mtl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x6d15bde2 snd_soc_acpi_intel_rpl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x75d057c0 snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8175892c snd_soc_acpi_intel_cnl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x82bce818 snd_soc_acpi_intel_bxt_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8ebc9247 snd_soc_acpi_intel_skl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa125a691 snd_soc_acpi_intel_icl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa2864a7a snd_soc_acpi_intel_kbl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb59cdff3 snd_soc_acpi_intel_jsl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb7982967 snd_soc_acpi_intel_icl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb94e364c snd_soc_acpi_intel_rpl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xba13142c snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc047157a snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc0ff27c1 snd_soc_acpi_intel_cnl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd1ffcc01 snd_soc_acpi_intel_tgl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd642a837 snd_soc_acpi_intel_cnl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd85bc852 snd_soc_acpi_intel_lnl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd8d24b2c snd_soc_acpi_intel_icl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe3b4d62c snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xec7dcd47 snd_soc_acpi_intel_skl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xf05240d7 snd_soc_acpi_intel_mtl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfdc5143c snd_soc_acpi_intel_lnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0ae830c4 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x017b13e5 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x04dd460e sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0c123b62 sst_dsp_inbox_read EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x177b248c sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3ea63ee1 sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5d6a4ad8 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5fffdcf3 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x636fc1d2 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x270f649b sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2785a9bb sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x35742952 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x502dad49 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x51ba1be2 sst_dsp_shim_update_bits_forced_unlocked EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x91e674ba sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa1563d95 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa6456fae sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb6751d1d sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbbbb4af3 sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd3abc2bf sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb609cdea sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbcaa3236 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc6923c23 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd238b631 sst_dsp_shim_write EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe41afd2c sst_dsp_outbox_read EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xec05adee sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfd987a27 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf311181b sst_dsp_register_poll EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x137d4132 sst_ipc_tx_message_nopm EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x33a0599a sst_ipc_tx_message_nowait EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6735cdf3 sst_ipc_fini @@ -20261,8110 +20293,8101 @@ EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xaa1ca5cb sst_ipc_reply_find_msg EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xbd3db345 sst_ipc_tx_message_wait EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xe7c15ee7 sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0746c18a skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0922d4a6 cnl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0b66f63b skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x14ee0740 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1b93ef1e skl_get_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1e0f569a skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x22ac5b44 skl_ipc_unload_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x35c14e7d skl_dsp_set_dma_control -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3642c3eb skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3d22adbd bxt_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3f84d1e5 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x48613ef7 skl_sst_ipc_load_library -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x606ab52e skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x61ba1ee2 skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6dd7d519 cnl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x732229c8 skl_clear_module_cnt -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x859cbc6a skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8bffdcc7 skl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x918cb903 skl_get_pvt_instance_id_map -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x94d211b6 skl_dsp_put_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x96c727c2 skl_ipc_set_d0ix -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x98db6f3d cnl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa09f2ae7 skl_put_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa28397b0 bxt_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa2c8cd8f skl_ipc_get_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa33d80be skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x02c91dc5 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x09d490c1 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x12f4136a cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1cac85e4 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1d859cbd cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x23a0ffba bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x37977b87 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x38548595 skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3888e679 skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3e3c3e1e skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3eceb065 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x467ab2c1 skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4bbe5aaf skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x597d7bae skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5ea9d7b0 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6fbd7fa5 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7a266f27 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7ca9927f skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7edfaaef skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x850518b9 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8c4abc04 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8efcd1da skl_sst_init_fw EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa5a9cf40 cnl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb5e063ad skl_ipc_load_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb72133ca skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc21f1887 skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd0a654ac bxt_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe2ac3585 skl_dsp_get_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe9c3a3fe skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf41ca858 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xff94e31b is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xabded860 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xad70a5ad skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb9ac51c6 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbe459e76 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc3b338f5 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdd438f70 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdd7ef1f5 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe5a0bb0b skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xec2db06f skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xed7c71aa bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xefaeb9be skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf1554090 skl_ipc_unload_modules EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x2ad85b63 snd_soc_acpi_find_machine EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x48c4d20c snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00279bce snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01c1496c snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02657dbf snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0340d86a snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x034b199a snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03de3573 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x060239b0 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06191ea8 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0808c05a snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x080c1690 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08b3971f snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bf6c60d snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c08045a snd_soc_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c5f3ae0 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d28a1fa snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d4fff17 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dac2dd2 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef0dcd9 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f92e96f snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10357ef9 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10661457 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x112bb240 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11ab90d4 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11c12de8 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12467583 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12b329ad snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12b4353d soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13142bf5 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15b4f308 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15d67e37 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17107758 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1995cd43 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a5113ca snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac3efd4 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b8ce16a snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x205b5a24 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2146f63a snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2158984b devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0088c2a2 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00c2f590 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x015cf283 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x023e1d31 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03fd06fc snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04f162bf snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x076aa944 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x077d7fe0 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x082303c3 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08ed73d9 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08f2e796 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x090a856b snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x092c21d6 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x094f0ed9 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d4551fe snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e58f48e snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e79e08f snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ebf59bf snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f4f462e snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f51b5a0 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe2ee45 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x110424b0 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1142bcb9 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11bf22ea snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13137c59 snd_soc_get_stream_cpu +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15317bbd snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15442eca snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15fbe74e asoc_dummy_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18ff46ad snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a0efe72 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bd9bd8b snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c891bc6 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cbaff59 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dbe6656 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e0d56e7 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211dae36 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22eee365 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x233a3f65 snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25dd8f90 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x263835d1 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27775a37 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281e1dd6 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28b7e9fe snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28c78ad7 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x293f9065 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x296512fc snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b55b066 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d084c41 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f0ea640 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x302190b0 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31a66239 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x327aa582 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x332c6a01 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x345d9d21 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36bcc570 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x383cafcf snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38cd830b snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x398e5e00 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ce1df6f snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ce794db snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d3b0d69 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3debe04d dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f1e2102 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fb9071b snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46c25525 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x471bbbbf snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4797d329 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4937e931 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49c9efe8 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ab545a6 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b19fe36 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b88d487 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c0c3413 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d8e4e7e snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ed81d9d snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27ca949b snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x288ee554 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29120939 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29c45ec9 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29fb545b snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a064800 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a0e9e9b snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a24a81f snd_soc_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cc93e5f snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e148e92 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30f6d381 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35d351da snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3879ed4c snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38f98d8c soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a29509b snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b40fb68 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b8316e1 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c742e61 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cb60904 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cfcf160 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x402e39a9 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40acfed6 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4110681d snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4215611d snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x447e966f snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x473a4077 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48fb29e3 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b6a62ca snd_soc_of_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c051e57 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c415651 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4caeae26 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d9ec4c3 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4db8209f snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f705470 snd_soc_rtdcom_lookup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5274563b snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5292e3a1 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52a48052 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55174a47 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x557b28bc snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56127874 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x575834cc snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5768b39c snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5793dd0a snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x579693cc snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57e0c0ad snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58090665 snd_soc_component_notify_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x586afc09 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b513c23 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c1bc54c snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cd97dcb snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d494767 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d69f4f8 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eaf7361 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f0b6b58 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f32ca5f snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61a4a18e snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61fcfdfc asoc_dummy_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6375a451 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x640d767b snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x653467c0 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65adafae snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6633ff92 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6689d763 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c02615 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68e0f7ce snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bf04f28 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e855d0e snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ea9c91c devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eaa5c9d snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eddbc93 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7107e556 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7189a50d snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x732ebe0f snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73442fb6 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74c8d174 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74f44764 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74feccba snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75357ba1 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76de7dca snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77e4d2cc snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x789bcd07 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78bb2e66 widget_in_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x795626c2 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79dfffa9 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bbf9a2c snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d050954 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50324174 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x507e6b68 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x515f052e dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51c28b98 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x528269f0 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x529b8e89 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x552dd44d snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56b31cb6 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56ed516d snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57a2092d snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5883271c snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59db6a8f snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5af2b5fe snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c15c912 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d0ca7a7 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d4c95d8 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d72ca6b snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f15b1f1 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64211536 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6493aac6 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65ce9264 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x672768e1 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67683ebc snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x678f13ed snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69505436 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69894ac9 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69fc1a37 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a976916 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bbad1ef snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d2ddccc snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e4ff0f4 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70197883 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x701b572c snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7047ead4 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x707febb8 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72469d97 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x726c6afd snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73c06510 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74226501 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75b530ff snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x779e9a57 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78aa1b08 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b704e3e snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c081ae3 snd_soc_dpcm_can_be_prepared EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x831ebcba snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84548042 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85587814 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x856c17a5 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x867eb6db snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x869355f8 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ffcff5 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87917ace snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87fdcb83 snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88d71eaa snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89157ad5 snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a6a5251 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8baca38d snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e040352 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94760ef0 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94b82934 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97aa2c5b snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98598e13 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99acbc75 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99c44441 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a525d7b snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b88b65f snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bf5503a snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c42c37a snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cb94788 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e8cc397 snd_soc_add_pcm_runtimes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3e67649 snd_soc_get_stream_cpu -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4eb9d5f snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa522905e snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa89fe48f snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8a6cf69 snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaad5c069 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabdb9831 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae052953 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb09e0415 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb20cea33 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2c90ab5 snd_soc_component_get_jack_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4c2ba61 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4c7061c snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb523d566 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5ccd35f snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9bdd571 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbaab8c7 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbf8147a dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc31a003 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbca80094 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd2022c6 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd934844 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe4bbb1e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe6c899a snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0361838 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc314d5bf snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e8fa13c snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f007c9b snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fbbfb06 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80c8d3f4 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8178d4f5 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82b9ef20 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82d67964 snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x850fac13 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8512c585 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8522c9a3 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8523f2c6 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b58005 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86ac1ade snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8747ca6b null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87e4d17d snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bb78aa9 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90b53e58 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90b99eb9 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93758b57 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94a915de snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x951692ba snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96522c1e snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x974d693d snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a30301e snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a517663 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9be9d047 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c5f297c snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d1a774d snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e18b4a5 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f17391f snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fb20dde snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa18023f9 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa21985a4 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa74a23c9 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa89d4d7f snd_soc_component_get_jack_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8be1654 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa97ffc6a snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaded7263 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafc55743 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafd2cc0a snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0425516 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0c481a1 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1090f80 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1b8b05f snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbb31d9e snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbd82491 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe4b1b8 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc8a7c8 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd615840 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbef3b763 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf80906f snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc022db3c snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc03ca6ca snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc127077e snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc27e7ec3 snd_soc_pm_ops EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc442a1ed snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5429758 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc62a095d snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc701ba84 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc51cae99 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5367350 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 0xc908d532 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca0442d8 snd_soc_of_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca9547fa snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccd56ae2 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdcd8e98 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd19882d6 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd27f2bd7 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3191cdc snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5624826 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd63039eb snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8a60d6b snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda47b708 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc94ba10 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcdfff6e snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd06ac9d dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xded4212f snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf1cb347 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe17527c4 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4706025 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4f939e8 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4fc2507 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe682e643 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe80a6b0d snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8ccd24f snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea94acf7 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeafcc3d8 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9dc1eaf snd_soc_component_notify_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb03f3ed widget_in_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc53dc25 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce69aeab snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcec13e63 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcee9354e snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd13cb98f snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd237778a snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2970a3b devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3511933 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f9b8a0 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4898e35 snd_soc_dai_is_dummy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6d25a7a snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd73f49ea snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7c850e7 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8551b5f snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8b7f0f6 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d126f7 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda275e4b snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcfdacbc snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde148045 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde2758a7 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe25cb2b6 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe506cee1 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe531e774 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5e783aa snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe607fcfb snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6ed02ed snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7a5d88c snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea3c5cbe snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea9f8953 snd_soc_dpcm_can_be_free_stop EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec6189d4 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeff4f640 snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf43e4bee snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4a339b2 snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf73fa258 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf75f510a snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf76780ef snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf782aa45 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeea08832 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf023f132 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf145a57a snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1468eb1 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1a6097b snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf21e493a snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf27a71be snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2fe0454 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4724ca6 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf53f052b snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf59f761e snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7ec4839 snd_soc_dapm_get_pin_status EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa5e34a0 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa840aec snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd9016cb snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfda52f72 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x04e6cd31 snd_sof_debugfs_add_region_item_iomem -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1a4ecc97 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x4334d01a snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5055c973 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x64e0231c snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0339d74e line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1669bfbd line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1712190f line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1ba309cf line6_init_midi +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9d1e799 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa5a3085 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd73a296 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe140560 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff32f1d1 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffda6408 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x16342c35 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x452165df snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5ed9c0e4 snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x991cd9d7 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa302dac5 snd_sof_free_debug EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x482fa891 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4de5503a line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7046725e line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8edb76b5 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa43e668e line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb6cb981a line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbac9c977 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcdcab184 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce12d3fc line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdfd72fbc line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xed38a063 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfd9c1ebd line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3ae24e95 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x753bb7e6 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a4295e8 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x81792213 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x849e7bd4 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x99f5e298 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xafa3c3ba line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb3355429 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbce3b23e line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbd218857 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe58e383 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc1db0fe3 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd2c41bf0 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd4edffc8 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdfe8c34e line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfbcb73a8 line6_resume 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 0x000d0b3a i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x0010ec7f __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x001565ab _RNvXs10_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB8_8LowerHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x001b9bba crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x002385e4 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x002b70f4 is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x002c6aa6 _RNvXs22_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10llist_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices -EXPORT_SYMBOL_GPL vmlinux 0x003db6be pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x00475893 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00558a6a fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x00559793 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x0068d9d3 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x00747906 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0076bfee fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x0077d2fd _RNvXs1Z_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_11EscapeDebugNtNtBa_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0080379d regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x00845754 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x00847603 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x00793998 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x008c30ee __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x009d63d7 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x00b82c6b mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x00c00c94 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x008d6340 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x00a0b1dc tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x00bdfa29 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x00cc582b gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x00d27cdf _RNvXsf_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_10hlist_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x00d38657 backing_file_open EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval EXPORT_SYMBOL_GPL vmlinux 0x00d7e96f hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x00e32c4e bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x00ed3e73 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x00fd8665 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x01025c02 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x010e355d rt288x_setup -EXPORT_SYMBOL_GPL vmlinux 0x0110843c key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x00d89804 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x00e3c830 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x00e610a8 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x00eaab4f dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0x0118635e transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0x011fd562 _RNvMNtCs3AkgXgqgK6r_4core3f32f7next_up -EXPORT_SYMBOL_GPL vmlinux 0x012938cc ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x012380b3 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x012c4616 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop EXPORT_SYMBOL_GPL vmlinux 0x0131cc28 _RNvXs4m_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_10NonZeroI32NtNtNtBa_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0x0142d7ba _RNvNvMNtCs3AkgXgqgK6r_4core3f32f7to_bits13ct_f32_to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x0147f3a1 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x014bdd76 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x014c8e0c crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x014fb819 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x0152af95 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x014b43f7 perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0x016088bc devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x0178adec pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x016b11fe __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x0178ee39 _RNvXNtNtNtCsbwHtcUjRN57_6kernel4sync4lock5mutexNtB2_12MutexBackendNtB4_7Backend4init -EXPORT_SYMBOL_GPL vmlinux 0x017f453a __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x01835988 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x017af50c edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x017b4527 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x017ce752 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0193b44a blk_rq_poll EXPORT_SYMBOL_GPL vmlinux 0x019c01c3 thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free EXPORT_SYMBOL_GPL vmlinux 0x01a20dfe spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x01b0c20c _RNvXs7_NtCs3AkgXgqgK6r_4core5allocNtB5_10AllocErrorNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x01bbe239 _RNvXs1_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0x01bdb6f0 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01d28b3b perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x01c63cec acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x01d62ed3 debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0x01e11f83 _RNvXsj_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_12IntErrorKindNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x01f519f8 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x020113ab tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire EXPORT_SYMBOL_GPL vmlinux 0x020fffaa _RNvXs8_NtCs3AkgXgqgK6r_4core3fmtNtB5_9FormatterNtB5_5Write9write_str -EXPORT_SYMBOL_GPL vmlinux 0x02120296 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x022e093a crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x022e9885 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x021b9d27 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x02307ae7 _RNvXs2t_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11class_rcu_tNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x02344364 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x0235dab1 _RNvXsd_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_9list_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x02384143 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02464415 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x025b4939 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0261e2bd register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x0275731a __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x0281a150 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x02880548 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x025174a5 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x025ed969 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x026823b9 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x027286cf device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x02750a9b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x0296e648 fsverity_verify_blocks +EXPORT_SYMBOL_GPL vmlinux 0x02aff875 iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0x02b4ea50 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x02b814f3 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x02b8d5bf iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x02bca214 klp_get_state EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02d1ca11 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x02d6b094 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x02df2fc0 _RNvXs5R_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11wake_q_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x02e60c7c anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x02e80640 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x02eb3c92 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x02f3c8d5 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x02f3f831 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x030089b1 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0312cd82 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x031390ff pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x031c1d76 mmc_prepare_busy_cmd +EXPORT_SYMBOL_GPL vmlinux 0x031d78e8 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x03269bad pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x032856b8 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x032d763f edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x032fab33 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x0331a9cc __SCK__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033a10f8 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x033b2ff0 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x033c31f8 genphy_c45_plca_set_cfg EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list EXPORT_SYMBOL_GPL vmlinux 0x0345c89a governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features -EXPORT_SYMBOL_GPL vmlinux 0x034a52c9 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x034cdfd8 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x035d4e78 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x036d2830 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x03570eb5 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x036eb5a7 ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x0372fb2c ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x03746c00 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x0375b5cc virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x03777618 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x037b865f __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x037d0fec irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x0386b418 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x038bb600 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x0399b168 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x03a831be led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x03ad0ee1 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x03af33c5 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x03bb7414 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x03be9d61 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03c467aa cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d75f8b nf_ip6_check_hbh_len +EXPORT_SYMBOL_GPL vmlinux 0x03e1a2d4 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x03eb317b ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x03f37946 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03f5d17d pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x03f62600 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04078423 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x040aaa77 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x040b0e9b da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x042fca3d fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x044946fe fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x0409698e rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x040b79a7 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x041216a1 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x0429bcc7 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x043dfea8 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x04474754 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04926045 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x048cc0e4 acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04ab850f __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x04a7a1fa acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0x04b183f2 irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04def248 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x04df7e54 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e35fa7 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x04e7f372 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x04e913b3 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x04f2f82b usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x050c3328 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x050b6fa9 regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x050d0333 _RNvXs3_NtNtCs3AkgXgqgK6r_4core5panic8locationNtB5_8LocationNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x0512de13 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x05185c80 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch -EXPORT_SYMBOL_GPL vmlinux 0x051d9061 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x0525ef6f ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x0531f438 devl_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x053b3124 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x0544c53c rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x054932a6 __tracepoint_ipi_send_cpumask EXPORT_SYMBOL_GPL vmlinux 0x05495108 _RNvXs3B_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i32x8NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x054ae3f1 xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x054eae7e unwind_get_return_address EXPORT_SYMBOL_GPL vmlinux 0x0555e803 _RNvXs40_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16lru_gen_mm_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0557bedb pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL vmlinux 0x055cb1cc edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x055efeb2 msi_device_has_isolated_msi EXPORT_SYMBOL_GPL vmlinux 0x05623d69 _RNvNtNtCs3AkgXgqgK6r_4core10intrinsics3mir4Goto -EXPORT_SYMBOL_GPL vmlinux 0x05735ab3 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x0574aade pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0579114f usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x05791f5c regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x057aae18 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x057dce33 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x0586bd21 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058a6cac gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x0598bc20 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x05a77b00 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x05ac3e60 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x05b36689 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x058fd8a0 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x05a4f2dc devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x05af3c07 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x05af7ada rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x05b65617 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x05b6aabb __virtio_unbreak_device -EXPORT_SYMBOL_GPL vmlinux 0x05b87b10 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x05c12ec3 _RNvXsE_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_15static_call_keyNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x05ca82d0 xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x05c4a8fd ohci_restart EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0x05d1a259 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x05edade9 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x05f1ec62 _RNvXs1b_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i32x2NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x05f99f6c __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x0605c168 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x0607bbb4 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x0607cdf1 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x061af5ed i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0629eee6 crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x0633a4be tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x064097b5 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0649e04f xen_find_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0660854b rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x0663ce8a pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x0665e2eb _RNvXsF_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0x06784293 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x067a13b4 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x068ffdda blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x066878f0 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x067f8980 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x0695e91b crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0x069933ee devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x06a12214 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x06a3bef3 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x06aaba68 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x06b3cee9 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x06b4c161 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x06b683a6 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x06ca8773 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06d1c806 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x06dff5c7 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x06e08279 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x06e78042 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x06eb52a9 scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x06ec85c4 _RNvXse_NtNtCs3AkgXgqgK6r_4core4hash3sipNtB5_9SipHasherNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x06f0db89 _RNvXs1Y_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_13EscapeUnicodeNtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x07045409 _RNvXs4E_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15percpu_ref_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x071931f4 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x07098bbf l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x070f2c52 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x071bbe68 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072ee25a regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0x073221ba sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x0732568c led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x07467e02 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x0749b6c3 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x0755abc1 __srcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x075a23e2 unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x0764274e l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07658a2a da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0x0767cf0e devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x076bad9a ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x07803c62 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x078c52df uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x077544e2 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x07761efc metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x07790b90 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x07844903 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x0786be3f sdio_retune_crc_disable EXPORT_SYMBOL_GPL vmlinux 0x079611b3 __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x07964e14 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x079aa693 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x079bd54c devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x079d2cc2 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x079ef254 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x07a19262 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x07aed6cb extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x07a699d7 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x07ab4d8e __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b43309 disk_update_readahead EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07b64d81 hyperv_stop_tsc_emulation EXPORT_SYMBOL_GPL vmlinux 0x07b89ec2 _RNvXs1I_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7fpstateNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x07ba0573 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07bfd942 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x07c7749d virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x07c88d6e max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x07cef1e9 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x07c32c73 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x07c6e4e1 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x07d2de3a xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x07d7e598 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x07d8f73b _RNvXs1q_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB8_8LowerExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x07e591ae sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x07ebaa0a usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x07f073ca _RNvXs4t_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_6f32x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0800f9ea virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0x08015f77 _RNvXs2T_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9debug_objNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x08082056 scsi_template_proc_dir -EXPORT_SYMBOL_GPL vmlinux 0x080c6e83 devlink_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x0803838b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x08041ac7 __trace_trigger_soft_disabled EXPORT_SYMBOL_GPL vmlinux 0x08112cd0 led_blink_set EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache EXPORT_SYMBOL_GPL vmlinux 0x08192b52 _RNvXs1_NtCsbwHtcUjRN57_6kernel3strNtB5_4CStrNtNtCs3AkgXgqgK6r_4core3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x0819c3f5 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x08251837 _RNvXs1j_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_17msr__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x0825aa59 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x08294a55 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x0831619a phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x08555f09 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x08590c5b dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0x08668677 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x08681431 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x0869c676 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x08738935 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x087d2084 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x087bea90 mmput EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0881d657 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0x088306e2 _RNvXs43_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_6lruvecNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x08845fdb __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x0892efdf devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x0895fc1e _RNvXsK_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x08973439 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x089b4611 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x089dcf5c nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x08a2e5f1 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x08a9e269 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x08b94455 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x08c2a6c5 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x08c56c43 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x08bb441a device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x08c3d26f sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory EXPORT_SYMBOL_GPL vmlinux 0x08caa125 _RNvXsG_NtCs3AkgXgqgK6r_4core3fmtNtB5_5ErrorNtB5_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x08cb51fd umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0x08cc9da2 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08d503d5 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x08d3dfbf __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x08e2b333 cppc_set_auto_sel +EXPORT_SYMBOL_GPL vmlinux 0x08e2cd1e udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x08e70600 devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x08ee675f wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x08eecef5 _RNvXsh_NtCs3AkgXgqgK6r_4core7convertNtB5_10InfallibleNtNtB7_3cmp3Ord3cmp -EXPORT_SYMBOL_GPL vmlinux 0x08fc36e3 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x08fc84c3 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x0903298a swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0908e736 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x0916a6ac sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x091eb80d pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x090eb912 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x091c82df get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig +EXPORT_SYMBOL_GPL vmlinux 0x0932c981 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x0937c97e ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x093d3b19 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0940dc77 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x0940f532 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x095105b4 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x09634cf3 rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x097048ed bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x097b0242 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x09829ecd fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0x0994380d ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x09a0e30e pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x09a209e4 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x09ae1116 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x099a67db devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x09a01884 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x09a4eaca ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09bd1116 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09bff841 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x09c4e215 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x09cdabc8 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x09d50985 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x09d65ea2 _RNvXs1l_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8msr_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x09dd512f kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x09dd4674 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x09ddf0c7 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x09e129eb fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x09e96e10 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x09eb0a61 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x09eaf4ee inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x09ed9911 hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0x09f46309 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0x09f4df08 thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x09ff43bf kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x0a051f96 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x09f6c172 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09faa9ca debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x0a0f07e7 _RNvXsO_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0a13a114 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x0a1d756c alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x0a270323 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x0a27c436 _RNvMs3_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_4CStr20from_bytes_until_nul -EXPORT_SYMBOL_GPL vmlinux 0x0a2d991a usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x0a2e154c synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x0a2f2f93 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x0a345288 gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x0a36703c _RNvXNtCs3AkgXgqgK6r_4core3ffiNtB2_6c_voidNtNtB4_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0a418b19 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x0a3d067e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0a3eeb7e virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x0a4091c9 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x0a47553f tdx_kvm_hypercall -EXPORT_SYMBOL_GPL vmlinux 0x0a486e57 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x0a4e6e0a nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a597217 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x0a5a838a add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x0a603127 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x0a549f39 bdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x0a74b98a acpi_quirk_skip_i2c_client_enumeration -EXPORT_SYMBOL_GPL vmlinux 0x0a76e4ac devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0a782802 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x0a7e7735 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0a7c93d0 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x0a8894f4 mas_find_range_rev EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x0aaba279 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x0aae3961 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x0ab777ef fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x0ab9341e ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has -EXPORT_SYMBOL_GPL vmlinux 0x0ac29f87 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0acf774c pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x0ac53098 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x0ac661b7 __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0adf0c8a device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0ad92f06 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x0adc994e netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x0af9acf7 usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0x0afa9ce1 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter15debug_upper_hex EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b17ddba __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x0b0e8f55 rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b2ce91d alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x0b1e4bcc serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x0b246628 da903x_read EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b366416 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x0b39125a pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x0b42077e spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x0b47abf0 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0b4b5a37 platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x0b513787 _RNvXs4W_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8sysv_shmNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add EXPORT_SYMBOL_GPL vmlinux 0x0b5515f1 _RNvXNtNtCs3AkgXgqgK6r_4core3fmt3numoNtB4_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0b5d119d clk_hw_init_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x0b618237 nop_posix_acl_access EXPORT_SYMBOL_GPL vmlinux 0x0b684742 devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b6fe1d7 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x0b799ebb dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x0b7aec17 tpm_chip_bootstrap -EXPORT_SYMBOL_GPL vmlinux 0x0b83d03f rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x0b866046 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x0b89cf8f sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x0b8bf6d8 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x0b7554c6 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x0b79fde6 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0b97b2e0 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0b9887f6 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x0bab95b8 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -EXPORT_SYMBOL_GPL vmlinux 0x0bc39667 devl_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x0bc42a72 _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings5DEBUG -EXPORT_SYMBOL_GPL vmlinux 0x0bcd0401 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0x0bcea491 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x0bd1df66 dw_pcie_ep_reset_bar EXPORT_SYMBOL_GPL vmlinux 0x0be0e164 _RNvXsN_NtNtCs3AkgXgqgK6r_4core3str7patternNtB5_17CharSliceSearcherNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0be2947d devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0be81466 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x0bf9226b debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0x0c07ba8b _RNvXsL_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0c0f34cc phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x0c13f1fe ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x0c25bbb6 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x0c2606a7 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x0c28bc09 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x0c29755f sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x0c0a4208 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c221194 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c357c9c netdev_sw_irq_coalesce_default_on -EXPORT_SYMBOL_GPL vmlinux 0x0c443800 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x0c3cf14c xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c46e74c clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x0c4af45f rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x0c4db4ad _RNvMNtCs3AkgXgqgK6r_4core3numa14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0x0c544b09 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0c578475 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x0c5a3888 device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x0c60a813 _RNvXsN_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_13restart_blockNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x0c6a7a37 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0c7963eb usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0c7ae3e9 pci_p2pdma_add_resource EXPORT_SYMBOL_GPL vmlinux 0x0c7b69c4 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x0c7b6f5b usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c816f30 blk_crypto_intersect_capabilities EXPORT_SYMBOL_GPL vmlinux 0x0c86cc0f _RNvXs2Q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11old_timex32NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string EXPORT_SYMBOL_GPL vmlinux 0x0c89230f _RNvXs1_NtCsbwHtcUjRN57_6kernel4taskNtB5_4TaskNtNtB7_5types16AlwaysRefCounted7inc_ref -EXPORT_SYMBOL_GPL vmlinux 0x0c942f7a regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x0c925274 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x0ca1cfe0 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x0ca1e5d2 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0ca2c1c8 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x0ca8516b split_page +EXPORT_SYMBOL_GPL vmlinux 0x0cb715e5 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x0cbc1ef7 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc233b8 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x0cc50e0b _RNvXsq_NtCs3AkgXgqgK6r_4core3numtNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x0cc70440 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cdf3767 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x0cdf9dd5 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x0cf5a7fd raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0ce72072 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0cf45542 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x0cf71e55 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x0cfb181c crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d033fc6 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d1f86bc __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x0d210c91 _RNvXs5K_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16sched_statisticsNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x0d21a61f __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x0d238b21 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d337a59 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x0d272736 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x0d34435d device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x0d3848c3 _RNvXsP_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB7_8UpperHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x0d3c6af6 _RNvXs59_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11sigaltstackNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d55ff05 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d65c19a swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0d69c3c8 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x0d5fd519 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0d693975 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x0d6a34be pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0x0d6e7953 _RNvXs3_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith9SubAssign10sub_assign +EXPORT_SYMBOL_GPL vmlinux 0x0d789d8c _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0x0d8179f4 _RNvMs_NtNtCs3AkgXgqgK6r_4core4task4wakeNtB4_14RawWakerVTable3new -EXPORT_SYMBOL_GPL vmlinux 0x0d88c6e7 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x0d9589f2 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d99c432 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0d8d8e13 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x0d9506a6 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x0da2cbd4 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0daab805 simple_rename_exchange -EXPORT_SYMBOL_GPL vmlinux 0x0dc75a3b regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x0da450f9 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x0dc1191d __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0dd376ac crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0dd86b69 __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dddb936 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x0deb0831 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0df9549c fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x0df9cc55 devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x0dfaabc5 _RNvXs3m_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12mm_context_tNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e01df4d device_add -EXPORT_SYMBOL_GPL vmlinux 0x0e057744 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0e015446 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x0e0b5329 _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings3ERR EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e0e932b ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e1a0c72 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e144e99 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x0e165e3f __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0e2dc99c fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x0e415c54 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x0e41c763 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x0e4dc946 tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x0e5127ed _RNvXs4_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0x0e592a0b sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x0e56c92a __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0e5bab9a iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e5fa155 devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x0e6a71ba preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e70819b debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x0e77fe44 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x0e79fb73 ext_pi_type1_crc64 EXPORT_SYMBOL_GPL vmlinux 0x0e7c65d6 _RNvXst_NtCs3AkgXgqgK6r_4core4charNtB5_18EscapeUnicodeStateNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x0e8d974a usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0e7ca332 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x0e7f97cf tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0x0e9124f2 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0e934af0 intel_pinctrl_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0e943dac skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x0e972b24 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x0e9aa778 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x0e9d4ac9 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x0e9d8cc5 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x0ea6c41b _RNvXs1L_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9fpu_guestNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x0eafabaf serdev_device_break_ctl -EXPORT_SYMBOL_GPL vmlinux 0x0eafe64e __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x0eb95df0 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x0ebe545d xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x0ebae702 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x0ec046c6 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec1f499 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0ec3a4b5 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ec6ef3e spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ed6a69f usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x0eeae01c rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x0ed707a7 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0edb8df9 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0ee4477e __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ee697ce devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x0ee957d6 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x0eec849f __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f0c6c79 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0f106461 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f18556e devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f191e08 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f3bd6b5 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x0f43c650 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x0f443d69 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0f499cdc phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x0f310d3c pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x0f32a67c ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x0f34aa92 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x0f45520c devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x0f4a8d81 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x0f6f6df9 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0f71e4c9 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x0f53ebbb hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0f57b0a4 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0f6fa7ce inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0f78d458 pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f9dbbea devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x0f9e1477 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x0f88928d debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0f88c6e7 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x0f97257d netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x0f99a918 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0f9ee4dd devl_params_register EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fb74d99 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause EXPORT_SYMBOL_GPL vmlinux 0x0fc05f87 _RNvNvMsc_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_10NonZeroU3213new_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0x0fc21fb1 _RNvXs5C_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_22k_itimer__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x0fc2f1ba dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fc60350 vcap_get_rule_count_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x0fc80a56 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0ffd187d devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x10009fb4 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0fd8fba2 pci_epc_bme_notify EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10154312 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x101fd5a1 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x10219c24 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0x1024d626 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x102b91c0 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x10407cf5 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x1042114b fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x1042449f spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x10483863 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x103d049e phy_set_media EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x1069bf39 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x10720bfd ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x10764d37 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x107349de usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x10762d2d sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf EXPORT_SYMBOL_GPL vmlinux 0x108d3334 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x10944e5c iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x1099239b _RNvXsI_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB7_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0x10ab489d synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x10b4b091 _RNvXs3o_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x10b7f4f1 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10c6d5e2 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x10b8b8e7 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x10cc2f81 xdp_features_clear_redirect_target EXPORT_SYMBOL_GPL vmlinux 0x10d2ad61 devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10dc0864 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x10dc6eee fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb EXPORT_SYMBOL_GPL vmlinux 0x10e9d1f5 _RNvMs9_NtCs3AkgXgqgK6r_4core3numj14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10fccde0 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x10f7cc94 tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110a623e devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x111cf59b mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x112ee3b3 thermal_zone_device_priv -EXPORT_SYMBOL_GPL vmlinux 0x11363a1d __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x113912aa crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x11021aeb tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x11083ad5 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x11254147 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x112a5917 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x113c7461 _RNvXs4D_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11physid_maskNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1140a5d9 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x1155f80d ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x11591e9f devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11600565 scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1161c945 pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x1164af15 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x116b4b93 dma_opt_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x116f59e9 _RNvXs5D_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8k_itimerNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x117a4352 class_register -EXPORT_SYMBOL_GPL vmlinux 0x117c4587 vcap_tc_flower_handler_ethaddr_usage +EXPORT_SYMBOL_GPL vmlinux 0x11735d36 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x117e7631 _RNvXse_NtCs3AkgXgqgK6r_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits8iterator8Iterator4next -EXPORT_SYMBOL_GPL vmlinux 0x117febd9 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x1182c1e3 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x118ddb3e fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x1193f4f2 pci_alloc_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x119609e1 _RNvXNvMs0_NtCsbwHtcUjRN57_6kernel4taskNtB8_4Task7currentNtB2_7TaskRefNtNtNtCs3AkgXgqgK6r_4core3ops5deref5Deref5deref -EXPORT_SYMBOL_GPL vmlinux 0x1197be7b regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x119bf42d _RNvXse_NtCs3AkgXgqgK6r_4core7convertNtB5_10InfallibleNtNtB7_3cmp9PartialEq2eq -EXPORT_SYMBOL_GPL vmlinux 0x119c7de1 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x11a963b0 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x11ac0c09 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x11af8e32 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x11be3290 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x11b14821 __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x11c19e9d mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x11c4432b ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x11c5578a _RNvXs3h_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25uprobe_task__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x11ca9e64 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x11d57936 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x11dc8d48 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11edec99 hid_bpf_connect_device +EXPORT_SYMBOL_GPL vmlinux 0x11ef06cb dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0x11ef89c6 _RNvXs1h_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13___u128_halvesNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x11f7a90f pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x1200ae0d nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x1204bd88 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x11f69966 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x11fd103a pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x11fe048c trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x12014288 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0x120ee051 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x12130d4d pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x12132f8a dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12202083 regmap_field_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x1224d90b trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x12263767 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x1221440a udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x122b0a2c _RNvXsc_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_7___m128iNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x122ea102 adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x12338cb0 _RNvXs4S_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8semid_dsNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x1238be8b __dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0x123a5a18 _RNvNtNtCs3AkgXgqgK6r_4core3str5count23char_count_general_case -EXPORT_SYMBOL_GPL vmlinux 0x124f7aa7 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x125e8499 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x1243c14e pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1268b61d iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x127c50c9 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x129bdf2b fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x129c4e3a _RNvXsa_NtCs3AkgXgqgK6r_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits8iterator8Iterator4next -EXPORT_SYMBOL_GPL vmlinux 0x12a1bdb1 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x12b029b8 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x12b6c197 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x12bc3abb rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x12c35c73 __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x12c6001c usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x129cd2e7 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x12cce9e4 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12e48032 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0x12eb9191 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x130772a8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x12faa346 dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness -EXPORT_SYMBOL_GPL vmlinux 0x130f344c ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x130b08f2 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x130fa0ca inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131d4eee sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132f8f9b md_run +EXPORT_SYMBOL_GPL vmlinux 0x1334a3ae msi_domain_get_virq EXPORT_SYMBOL_GPL vmlinux 0x1338a88f devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133fa9c5 extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0x134764e8 _RNvMNtCs3AkgXgqgK6r_4core3f32f16partial_classify EXPORT_SYMBOL_GPL vmlinux 0x1348ac8f devres_release -EXPORT_SYMBOL_GPL vmlinux 0x1359101c anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x134abf21 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x134bd020 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1355b6b8 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x13657042 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x137d9833 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x13814c67 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x137be7bb ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x138122b4 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x1381ea11 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x138890ac fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13921687 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x13987f7b iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x13a6c3f0 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13ac1a3a ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x13a15fcb extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x13aace45 __traceiter_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x13b1fec2 _RNvXsv_NtNtCs3AkgXgqgK6r_4core9core_simd5masksiNtNtB5_6sealed6Sealed2eq EXPORT_SYMBOL_GPL vmlinux 0x13b9e193 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x13bb2be0 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x13bb2ad5 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x13bcd702 _RNvXs1x_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_26fxregs_state__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x13c3a617 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x13c826eb devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x13ca95d2 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0x13d416d1 devm_led_get -EXPORT_SYMBOL_GPL vmlinux 0x13dad350 __tracepoint_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x13e1cc5a __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x13d83bf9 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x13da2d7d gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x13ecc8c8 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f4d44d vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x13eeb128 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x14035dcd mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x140c978c ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x1406ef5d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x140b8381 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x14211d0c _RNvXsb_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_18ftrace_branch_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x142b5d0b regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x14472e49 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1421bd51 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x14375c42 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x1439e558 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x14509bcc ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x1467f77e rust_helper_spin_lock EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14721a5d msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x1474c525 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x1475d603 xstate_get_guest_group_perm -EXPORT_SYMBOL_GPL vmlinux 0x147a4f91 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x14883feb relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x1496df3a blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x149a78e8 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x148043ba fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x14872e39 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x148a14be ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x14a1f7d0 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x14a52987 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x14a724a1 _RNvXs6_NtCs3AkgXgqgK6r_4core4charNtB5_11EscapeDebugNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint -EXPORT_SYMBOL_GPL vmlinux 0x14b204f7 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x14b6b05d dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x14b6c98d ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x14c550b6 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x14c59e52 _RNvXsb_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x14c98f86 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x14ced443 fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x14d637a9 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x14c6c419 tpm_chip_bootstrap +EXPORT_SYMBOL_GPL vmlinux 0x14c6c54b __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x14d606bc devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14d6e7ed nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x14d84a55 _RNvXs1U_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_17fixed_percpu_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x14dd9f1d unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x14e102d3 regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14f5c58f dispatch_hid_bpf_device_event +EXPORT_SYMBOL_GPL vmlinux 0x14f067f8 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x14ff2606 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x1514183f rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x15163209 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x15190c3c ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x152403e3 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x150f28fe acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1512e3eb ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x152626b3 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x152fb190 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x1533c331 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x1534a386 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x15361589 raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0x15373ddb serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x1542d3dd skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x15432dd9 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x15412298 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x1548fcea proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x154db125 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x1550687b regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155b067c device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x15570957 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x1566b386 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x158151e4 __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x15824229 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x15780aff gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x15872296 __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x158a7e17 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x159de6f3 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x1589d42e vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x158a0e96 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x158ca068 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x1593b553 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x1594df26 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x159abe5a blk_mq_unquiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x15a07c8d cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x15a8b30e __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x15a0c408 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x15ab7658 _RNvXs1o_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10saved_msrsNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x15ac48b0 _RNvXs5_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB5_10DisplayInt5to_u8 EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15b3ec7e hsu_dma_probe -EXPORT_SYMBOL_GPL vmlinux 0x15b500bb nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x15b13d59 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x15b4e7fa acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave -EXPORT_SYMBOL_GPL vmlinux 0x15bfc609 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x15bfe80f fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x15c942a7 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x15d1768c _RNvMs1_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_11DebugStruct21finish_non_exhaustive -EXPORT_SYMBOL_GPL vmlinux 0x15d495bb mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x15d34f4f pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x15d90b6e _RNvMNtNtCs3AkgXgqgK6r_4core3str5lossyNtB2_9Utf8Chunk7invalid -EXPORT_SYMBOL_GPL vmlinux 0x15e26bb5 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x15e58f41 blkcg_punt_bio_submit -EXPORT_SYMBOL_GPL vmlinux 0x15e5a73f register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x15e5a9fd wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x15d93cb5 pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f4faa6 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x15f85357 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1617f7c5 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x162300fe folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x16245247 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x162a9602 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x15ec6e66 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x15fdf190 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x1604e5b5 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x1606c239 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x1609acf8 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x160b3518 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x1618cdc5 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x1619ba43 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x163519bf edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0x163da156 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x1641b1f6 pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164eaaf6 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1655d32c mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x165505eb node_to_amd_nb EXPORT_SYMBOL_GPL vmlinux 0x16646906 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x16664fd3 sched_numa_find_nth_cpu EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1670162f regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device EXPORT_SYMBOL_GPL vmlinux 0x1681e145 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter26debug_struct_fields_finish +EXPORT_SYMBOL_GPL vmlinux 0x1684cc9d uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16b01dc6 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x16b2201f skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x169cddbc devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x16b26f46 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x16bf12f8 register_fprobe_ips -EXPORT_SYMBOL_GPL vmlinux 0x16c2b12b device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x16c533c3 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x16cb6a90 radix_tree_preloads +EXPORT_SYMBOL_GPL vmlinux 0x16d28924 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x16d5d8d5 dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e02057 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x16e1ea83 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x16eb426f fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x16efec14 _RNvXsX_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_19paravirt_patch_siteNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16fa21df regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x16fe7189 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x16ff9022 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x170eeef7 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x171fcb84 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x1721b9e1 crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0x17291019 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x17111e87 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x171d589c class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x171d67e0 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x17254e16 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x17275fa4 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x173434bb tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1753247e devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x174ecc80 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x1750d245 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x1755dc70 tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0x17589769 rust_helper_PTR_ERR EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x1768d9bd fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x1761e584 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17874267 xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x179c0195 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x17a49f39 __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x177f4c85 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x1791ad59 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x179cabef dax_remove_host EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page EXPORT_SYMBOL_GPL vmlinux 0x17b9d0c9 _RNvXs45_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_6i16x32NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x17be0aee skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x17ccbebf ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x17df282e pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e80bdc ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x17eb9bfc tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17e5f691 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x17f21c2b ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x17fa8264 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180476ab clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x180fc466 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x18353761 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x182ee8ef devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x183cf9be ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x18522984 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x1854f59c validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x185c3371 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x18677739 dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0x1871b2b2 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x18a01018 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x18a4adab scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x18ac4da8 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x18b04c30 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1861f443 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x18629ccc pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x188ad720 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x18930056 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x189ef2a7 xen_xlate_unmap_gfn_range EXPORT_SYMBOL_GPL vmlinux 0x18b13c28 _RNvXs0_NtNtCs3AkgXgqgK6r_4core5slice5asciiNtB5_11EscapeAsciiNtNtNtNtB9_4iter6traits12double_ended19DoubleEndedIterator9next_back EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18ba9d4b l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18cdfe6c udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x18d3983f _RNvNvMNtCs3AkgXgqgK6r_4core5sliceSp22split_at_mut_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x18e36368 usb_amd_pt_check_port EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18ea7669 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x18eee0d8 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x18ef3d89 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x18f5db0f clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190495f8 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x190f1455 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x18fd1a64 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x18fd8d87 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x18fec700 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x18ffb1c1 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x190a3cfe debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x1916a5e8 devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x191e2e1e relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0x192de9f0 _RNvXs8_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB5_10DisplayInt6to_u32 EXPORT_SYMBOL_GPL vmlinux 0x192e32e9 _RNvXs4U_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8sysv_semNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x192ec7d5 blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x193282ae acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x1933f504 fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x19548586 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x19468f03 ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x19588a94 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x19653d3f nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x1961e5ea css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x196661a8 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x196bf3a3 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x19790b3f crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1984a9f5 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x19863e8b ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0x198fa3e1 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x1993d4f2 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x199a06f7 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x199a215d class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled EXPORT_SYMBOL_GPL vmlinux 0x19a8e4f8 _RNvXso_NtNtCs3AkgXgqgK6r_4core4hash3sipNtB5_11Sip24RoundsNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x19ba6767 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x19be0bf8 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19c62ccd clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x19cf71b7 gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x19d070f8 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x19d7b6e5 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x19d9f510 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x19de8949 crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ecda81 vcap_keyfield_name EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19f623dc fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x19ff0f74 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x1a06f97c dev_pm_opp_find_bw_floor EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1a88ef __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x1a262b6e ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x1a26f5f2 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x1a3c456f tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x1a3e60aa raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x1a4495d4 au_platform_setup +EXPORT_SYMBOL_GPL vmlinux 0x1a457b4c input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x1a4846a5 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x1a4a7186 _RNvXsd_NtCs3AkgXgqgK6r_4core7convertNtB5_10InfallibleNtNtB7_5error5Error11description -EXPORT_SYMBOL_GPL vmlinux 0x1a5e98fc regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x1a6aa757 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x1a5365ad add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x1a5bddf1 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a73ec50 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x1a7fc948 ftrace_free_filter -EXPORT_SYMBOL_GPL vmlinux 0x1a7fecfd crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x1a8023b9 class_is_registered EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc EXPORT_SYMBOL_GPL vmlinux 0x1a840b31 _RNvXsB_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1a855cbc usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x1a87c713 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x1a8bec9c pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0x1a8e1ba7 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x1a904794 intel_pinctrl_probe_by_hid -EXPORT_SYMBOL_GPL vmlinux 0x1a9430a1 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x1a963f37 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x1a91f3ed clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x1a9ba270 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x1aa4103f dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x1aabeb25 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1aba9349 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x1aa822aa ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1aac041a ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ae0949c icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x1ae463cb platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x1ae81ed6 _RNvXs11_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB8_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1aeb1c24 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x1aefc96f __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x1af15ee6 subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow EXPORT_SYMBOL_GPL vmlinux 0x1afaa2fd proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain EXPORT_SYMBOL_GPL vmlinux 0x1b01f5a1 _RNvXs2M_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10completionNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x1b051eba __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x1b0329f6 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b08c59c isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b23a23f ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x1b25db44 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x1b276b85 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter25debug_tuple_fields_finish -EXPORT_SYMBOL_GPL vmlinux 0x1b3c692e cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x1b452acc devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x1b5ecc28 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1b4e702c fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x1b570d26 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x1b5fa56a _RNvXs8_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_4CStrINtNtNtB9_3ops5index5IndexINtNtBR_5range9RangeFromjEE5index -EXPORT_SYMBOL_GPL vmlinux 0x1b738a93 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x1b64c5e7 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1b6b1e8d trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b88fe28 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x1b8a2770 __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer EXPORT_SYMBOL_GPL vmlinux 0x1ba1e5aa _RNvNtCs3AkgXgqgK6r_4core9panicking9panic_fmt EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid EXPORT_SYMBOL_GPL vmlinux 0x1ba3088b _RNvXs29_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_27class_raw_spinlock_nested_tNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x1bb142ae iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1bbbf780 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split -EXPORT_SYMBOL_GPL vmlinux 0x1bdc8af9 devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x1bdf8d25 _RNvXsw_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_21__ddebug__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x1be99a03 cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x1bf347a8 _RNvXs0_NtNtCs3AkgXgqgK6r_4core5panic10panic_infoNtB5_9PanicInfoNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1bf8444f devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x1c1ccf7e spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x1c23fc90 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x1c24b0a8 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x1c275d7d crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x1c27dc5f __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x1c45b2b5 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c592444 phy_configure EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c6996c0 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x1c60b0c9 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x1c60c843 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x1c6c717c i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x1c714290 net_failover_create EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree -EXPORT_SYMBOL_GPL vmlinux 0x1c72758c gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x1c7604ba __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1c747592 unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c907c52 pci_epc_bme_notify +EXPORT_SYMBOL_GPL vmlinux 0x1c87c4c7 device_add +EXPORT_SYMBOL_GPL vmlinux 0x1c8c67f0 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x1c92494a fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1c9c1ffb rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x1c9f4307 fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x1caf0bb0 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x1cb5222e regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x1ca47bb1 usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1ccfb5d1 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x1cd4cfeb _RNvXs5v_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9cpu_timerNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x1cd70113 _RNvXs1_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1cd9a567 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1cd92c3e pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1ce3bcda spi_async -EXPORT_SYMBOL_GPL vmlinux 0x1ce701bd wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x1ce77b3b dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x1cf66aa6 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1ce2e6a8 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x1ce4b5b6 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x1d0222dd vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x1d099f3a led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1d0c0e60 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x1d131e91 devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d22c8cb rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x1d2547c5 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1d262035 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x1d28a5a0 regmap_read EXPORT_SYMBOL_GPL vmlinux 0x1d2dd7ae _RNvMs2_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_13ParseIntError13___description -EXPORT_SYMBOL_GPL vmlinux 0x1d36e913 __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x1d39fabe sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x1d3e692b relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x1d4cfbb3 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x1d4b28d7 __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0x1d507a2b _RNvXNtCs3AkgXgqgK6r_4core5asciiNtB2_13EscapeDefaultNtNtNtNtB4_4iter6traits8iterator8Iterator4last -EXPORT_SYMBOL_GPL vmlinux 0x1d82f521 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0x1d914deb spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x1d68c6f2 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d792a51 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1d872d63 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1d93fbd7 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9678c7 backing_file_open -EXPORT_SYMBOL_GPL vmlinux 0x1dc48e35 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x1dda9d0c __trace_trigger_soft_disabled -EXPORT_SYMBOL_GPL vmlinux 0x1dde624d pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x1decc824 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x1dbceb84 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x1dc6f9c4 dispatch_hid_bpf_device_event +EXPORT_SYMBOL_GPL vmlinux 0x1dcd25cd bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x1de31dfe get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dff3166 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1dff5188 devl_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x1e007b3a acpi_quirk_skip_serdev_enumeration EXPORT_SYMBOL_GPL vmlinux 0x1e0626f3 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e0b57e2 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1e191c12 devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x1e26e8e7 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x1e0b18f6 pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x1e14aadb wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x1e2e1921 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1e2e5388 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0x1e3001ba _RNvMs3_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_4CStr19from_bytes_with_nul -EXPORT_SYMBOL_GPL vmlinux 0x1e3076ae sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x1e3739b9 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x1e303c84 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x1e3581dd pci_find_doe_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x1e368dc4 __nvmem_layout_register EXPORT_SYMBOL_GPL vmlinux 0x1e3817a3 sched_numa_hop_mask -EXPORT_SYMBOL_GPL vmlinux 0x1e398577 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x1e3bd2b5 blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x1e3f7eb9 _RNvXsz_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_9AtomicU16NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e42abed trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e56672b wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e5d149d pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x1e5d94b9 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x1e65e492 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x1e6e02b4 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x1e7a81ce __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x1e5b7c5f xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e63c55b phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e6eb54d __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea9c2fa adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x1eab533f acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ea30833 phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebc9c3c pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x1ebd2b3c serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x1ebed70e ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names EXPORT_SYMBOL_GPL vmlinux 0x1ec4e5b5 _RNvXsb_NtCs3AkgXgqgK6r_4core3fmtzNtB5_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1ed353b2 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ed5b478 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr -EXPORT_SYMBOL_GPL vmlinux 0x1ee4d3e3 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x1ee9de78 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x1eea6c79 usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x1ef04208 _RNvXsz_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_16ddebug_class_mapNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1ef4ee17 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x1ef84e7b nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x1efeb131 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x1eff0ef4 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x1f019c98 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x1f01dc99 led_get -EXPORT_SYMBOL_GPL vmlinux 0x1f09bc18 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x1f0b43ee regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x1f0fec35 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1f18ac73 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x1f206e83 _RNvXs44_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13per_cpu_pagesNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x1f2aeb66 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x1f2feb38 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x1f33860f make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0x1f33becf sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x1f36e594 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4e5642 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x1f4e5a27 devm_devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f589fd6 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x1f593f05 _RNvXsu_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_9AtomicI16NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x1f59bb9a debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x1f6577df __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x1f6cd584 efivar_reserved_space -EXPORT_SYMBOL_GPL vmlinux 0x1f6fe2f9 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x1f7bd634 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x1f7c5049 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x1f8447ab xenbus_alloc_evtchn EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout EXPORT_SYMBOL_GPL vmlinux 0x1f988391 _RNvXso_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_7qrwlockNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa301fd blk_rq_poll EXPORT_SYMBOL_GPL vmlinux 0x1fa48995 efivar_supports_writes EXPORT_SYMBOL_GPL vmlinux 0x1fac8da2 _RNvXsh_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impiNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x1faf1091 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x1fc865a4 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x1fd8c8df clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x1fdba1b7 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1fb662b1 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x1fcd24b2 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fd3b8c6 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x1fdcd402 usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x1fe16227 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff047c6 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x1ff3e296 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x1fec2a73 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x1ff3c924 devlink_free EXPORT_SYMBOL_GPL vmlinux 0x1ffcfcfd _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data11conversions8to_lower +EXPORT_SYMBOL_GPL vmlinux 0x2001bfd6 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x20160836 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x201701ad __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x201c5be3 msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x2029015f irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x200bb2ee blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x200e7b62 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x2012688f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x2014a63e perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2036bd03 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x2037ec1f bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x2038730d _RNvNtNtCs3AkgXgqgK6r_4core3str6traits23str_index_overflow_fail -EXPORT_SYMBOL_GPL vmlinux 0x2048751b __traceiter_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x20511425 _RNvMs6_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_8DebugMap3key -EXPORT_SYMBOL_GPL vmlinux 0x2051ca15 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x20559b91 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x205c56ff __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x205ff741 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x205ffb9f crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x2064ad20 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x20654084 _RNvXs4I_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_3pidNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x2065677e _RNvXs8_NtCs3AkgXgqgK6r_4core3fmtNtB5_9FormatterNtB5_5Write9write_fmt -EXPORT_SYMBOL_GPL vmlinux 0x20699d15 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2086056c ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x2089845f crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2065d711 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x20674700 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x20766170 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x2084baac screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x20864eb6 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x2088d173 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x20938dca aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x20941c56 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20a41bc9 intel_pinctrl_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp EXPORT_SYMBOL_GPL vmlinux 0x20a5caec _RNvXst_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0x20b1d0c8 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x20b3e826 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x20a868e9 rcu_trc_cmpxchg_need_qs EXPORT_SYMBOL_GPL vmlinux 0x20b3ebe7 _RNvXs1r_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15tracepoint_funcNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x20bdb73e __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x20cb3a05 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x20d6463c pci_p2pmem_find_many EXPORT_SYMBOL_GPL vmlinux 0x20dcce07 cpufreq_dbs_governor_stop EXPORT_SYMBOL_GPL vmlinux 0x20e10566 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x20e6740c ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x20e6bc6e bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x20ee5479 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x21028f16 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x2108a90b pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x2123b3d6 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x20f416bf __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x20fdd581 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x210cf2b7 vcap_select_min_rule_keyset EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x213e6c8c i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x214538d3 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x214cdab5 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x2152470d pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x213061fa regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x214efff8 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x216bf2f8 _RNvXs5N_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15sched_dl_entityNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x217616d8 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x2176227d acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217cff35 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x218e4676 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0x2192b09b _RNvXs2_NtNtCs3AkgXgqgK6r_4core5slice5asciiNtB5_11EscapeAsciiNtNtB9_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x219709af __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x2196a02a posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0x219cbef5 _RNvXs9_NtCs3AkgXgqgK6r_4core3fmtNtB5_5ErrorNtB5_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x21a4ee33 regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21b5be2e sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x21b6f9d6 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x21bf9dfe regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x21abf3e7 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x21b20a6c device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x21b90aab rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x21be74bb tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d7dcdb fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x21df1ac9 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0x21e32994 _RNvMNtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB2_21FromBytesWithNulError13___description -EXPORT_SYMBOL_GPL vmlinux 0x21ef4bed nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x21f454ea da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x21faae11 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x21e416d4 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x21e642a9 xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x21ecedb3 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x21ee1fd8 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x21ee3781 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x2202a780 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x22065e64 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x22160271 rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x2227d394 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x222c5ac2 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x222e21a0 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x222e5ad6 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x22339488 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x2234653b xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x2238f8e2 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x224672b4 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x225e9ebd pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x226aa633 devl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x226e39a0 ptdump_walk_pgd_level_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x2274535f scsi_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0x2282aac9 bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0x22835903 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x22405607 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x2240eb40 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2267f705 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x226d1e1a disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x227603d3 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x227b92ff nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2281a6ac sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x22a4daa7 __tracepoint_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x22ab0531 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x22b350e4 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x22b98564 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x22d0c86c ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x2290cec2 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x22940d10 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x22b52ec8 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x22c9432f relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x22ceccfd pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d84ed0 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e60aa0 __io_uring_cmd_do_in_task -EXPORT_SYMBOL_GPL vmlinux 0x22e6e454 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x22e1d5c6 vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x230659b3 devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x230a54f0 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x23101189 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2308ed46 fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0x2315194d _RNvNtCsbwHtcUjRN57_6kernel5ioctl8__IOC_DIR +EXPORT_SYMBOL_GPL vmlinux 0x231e1019 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x231f322b iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x23291c3e blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x2333a659 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x2337e194 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x233f59fd _RNvXs1_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith9AddAssign10add_assign EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x23427220 spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0x2347d885 _RNvXsJ_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0x23486553 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x234aa73f kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x234b9e9a cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2354704d shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x23561123 folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x2385d366 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x23647aec pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x237720b8 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x237b2998 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x238795b6 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x238903ac ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x23910353 iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent EXPORT_SYMBOL_GPL vmlinux 0x23a0d0b9 _RNvXsL_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_3NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x23b15cd7 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x23b260d3 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x23ad9fe7 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x23b27ba9 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23bcadc9 iommu_present EXPORT_SYMBOL_GPL vmlinux 0x23bcea55 _RNvXsb_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x23ccceb8 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x23dff4b5 xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x23c83afd disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x23cb8edf pwm_get EXPORT_SYMBOL_GPL vmlinux 0x23eebb73 _RNvXs5i_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_35siginfo__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x23f1ec9c bus_get_dev_root -EXPORT_SYMBOL_GPL vmlinux 0x23f5bcb3 devl_region_create -EXPORT_SYMBOL_GPL vmlinux 0x23f9a9a6 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x23fea42d regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0x24035c70 _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data5cased6lookup -EXPORT_SYMBOL_GPL vmlinux 0x2403fa41 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x2408cd96 dw_pcie_link_up -EXPORT_SYMBOL_GPL vmlinux 0x240a76b9 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x240c35d5 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x240e9615 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2410849c ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x2415a17d events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x240624d9 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x241429e8 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x2417e33f _RNvXNtNtNtCs3AkgXgqgK6r_4core3fmt3num3impaNtB6_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x241afcbc debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0x242056ac _RNvXs3k_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13uprobes_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x2439d8ee dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x243b26a0 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x242fd93e gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x24325060 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x243a8836 sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record EXPORT_SYMBOL_GPL vmlinux 0x244acce9 _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data1n6lookup EXPORT_SYMBOL_GPL vmlinux 0x2454665d from_vfsuid +EXPORT_SYMBOL_GPL vmlinux 0x24573705 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x245b9519 p2sb_bar EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x246dc6cd _RNvXs22_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_13EscapeDefaultNtNtBa_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x246f9eb6 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x246efd56 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x247069e6 class_register EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2471300f sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x2475c8e3 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x2475db4e blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x248e5111 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x2497000c genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x249a40f9 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x24aab190 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x248f3272 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x249cc003 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x24a7ea53 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24a962c4 devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b3e384 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x24cb2e56 xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0x24d57d82 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x24b1c4a7 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x24bd7bc4 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x24cb8fd1 __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x24d7ddd1 _RNvXs18_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB8_8LowerHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24db74da perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x24e04fd0 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x24e30801 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x24e73d3f _RNvXsk_NtCs3AkgXgqgK6r_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back -EXPORT_SYMBOL_GPL vmlinux 0x24e751b8 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24eba482 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x24edf227 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x24f2b126 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister EXPORT_SYMBOL_GPL vmlinux 0x24fde935 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter12pad_integral -EXPORT_SYMBOL_GPL vmlinux 0x25099235 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x250aac0f dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x250cc2a2 iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0x250ebdd9 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x252658a3 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x2514c0b6 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x252070f8 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x252def32 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2530c005 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x2531d44d __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x2543aeda _RNvXsi_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_7___m128dNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2544540d vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x2551357b crypto_sig_sign -EXPORT_SYMBOL_GPL vmlinux 0x25612efc cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x2553385b sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x25577921 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x255a0a15 usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0x2563ceaa _RNvXsj_NtCs3AkgXgqgK6r_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0x256ef7ee _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data9lowercase6lookup -EXPORT_SYMBOL_GPL vmlinux 0x256fdfe0 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x25782ec7 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x25887c00 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x2589ffd1 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2591f31a acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x259e974d _RNvXNvNtNtCsbwHtcUjRN57_6kernel4sync7condvar1__NtB2_12___ThePinDataNtNtCs3AkgXgqgK6r_4core5clone5Clone5clone EXPORT_SYMBOL_GPL vmlinux 0x25ba66bd dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x25ba9d07 phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25d5875e alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x25dfc2e3 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x25d7ed49 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f124b0 ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x25f395d1 _RNvXs1m_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13msr_regs_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x260d632d __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x25f80d4e rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x26043f6c rt288x_setup +EXPORT_SYMBOL_GPL vmlinux 0x260a912a ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x26144b99 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x2615b5ec ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x26161a7e _RNvXsR_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2616a845 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x26185311 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x261b8f70 __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x261f1254 _RNvXsU_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_34jailhouse_setup_data__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x26215dfb mmput EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0x2633c069 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x26458b3e cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x264c2699 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x262f54d6 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x26367668 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x264e9bad crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x265b8256 restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x2662e108 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x266539c6 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x2669bee3 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x267361fe __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x2678e5b8 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x267abd46 blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x26850920 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x269f9f52 xen_unmap_domain_gfn_range EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26ab3000 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26cbde6d clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x26ccc3f5 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x26dc3810 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26fc0bfe __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x26fcec86 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x26ff6d57 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x2702aa4c usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x27181680 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x271857c3 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x2730c3ac crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x26fd5e53 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x27016ac7 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x2701881f events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x27130ecf xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x2720b8e8 request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x273c93fd da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x273e1002 fpu_sync_guest_vmexit_xfd_state -EXPORT_SYMBOL_GPL vmlinux 0x2752ad3f ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x2752f99d skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x27507c7b sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0x275b254e _RNvXs8_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0x275c034f devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0x275eebe3 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x276e2283 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x27721024 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked EXPORT_SYMBOL_GPL vmlinux 0x2778b7c9 _RNvMs1_NtCs3AkgXgqgK6r_4core3numx14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0x278038a7 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x27820d5f bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x279327ef pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x2795fc9d vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x27a59fe2 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x27a7aad7 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x27aacb8d tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x27c7590b bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x27d22d13 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x27a7ae77 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x27b3f97d iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x27bee6d6 blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0x27c0bafd fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x27d01e59 nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0x27df3105 hv_alloc_hyperv_zeroed_page -EXPORT_SYMBOL_GPL vmlinux 0x27f10767 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages EXPORT_SYMBOL_GPL vmlinux 0x27fa6bbf _RNvXs13_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7pv_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x27fb1522 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x28045c99 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x280cb7dd virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x28050450 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281de9a7 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x281f5022 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x282b8e84 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x282045ca __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282f88c5 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x282ebc75 replace_page_cache_folio EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2838b744 fscrypt_prepare_lookup_partial -EXPORT_SYMBOL_GPL vmlinux 0x283d966b devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x2842afef hv_get_non_nested_register EXPORT_SYMBOL_GPL vmlinux 0x284b82d3 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x284cbd51 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x284ef9c5 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0x2854aeaf _RNvXs42_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13lru_gen_memcgNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2867d8a6 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x287ae822 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x287b7cc8 skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2883efa8 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x2891b090 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x289892b9 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x28a137af __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x28a5681c ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b58720 _RNvNtCsbwHtcUjRN57_6kernel5ioctl7__IOC_NR EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0x28bfc8ec devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0x28c88525 __fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x28cbb1bb nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0x28cce442 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x28db2cbf acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x28d373aa shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x28dbc621 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x28dcb13c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x28e2a85a __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x28e2e627 _RNvXs2g_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16hlist_nulls_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x2901fbcc sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x28f05a0a ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x28faaddb vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x29002478 rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x291120f2 _RNvXss_NtCs3AkgXgqgK6r_4core3numyNtNtNtB7_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29278f8b component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x291a2a62 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x2943224e balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0x2943a4b4 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x2944e509 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2945fec7 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x294c55b6 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x294679f5 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x294ba251 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x294f5092 devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x2953bb2f irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x2953f055 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x29581120 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x2961e07f wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x29683f1c bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x29670449 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x298b8ac2 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x299391a0 xhci_stop EXPORT_SYMBOL_GPL vmlinux 0x299c1648 _RNvXs9_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x29a40f53 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x29a5cff4 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x29ac0762 _RNvXs6_NtCs3AkgXgqgK6r_4core3ffiNtB5_10VaListImplNtNtNtB7_3ops4drop4Drop4drop +EXPORT_SYMBOL_GPL vmlinux 0x29aca69f pci_ims_alloc_irq EXPORT_SYMBOL_GPL vmlinux 0x29b37c82 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x29b43e90 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0x29be1c05 _RNvXsa_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0x29cd3da7 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x29c3ce62 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x29ceb869 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x29d71a11 _RNvXs8_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impaNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x29d9f27c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x29e392b7 iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x2a176108 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x29ee8f95 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x29f572c8 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x2a0bbc99 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x2a13af50 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2a155bb4 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x2a1d84c1 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x2a20cf3e devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x2a21ee78 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x2a259657 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x2a26ee86 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2a28bc3c __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x2a2df866 __xenmem_reservation_va_mapping_reset EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a478e73 inet_bhash2_update_saddr -EXPORT_SYMBOL_GPL vmlinux 0x2a598c04 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x2a5a92e6 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x2a49da33 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x2a50734d hid_bpf_disconnect_device +EXPORT_SYMBOL_GPL vmlinux 0x2a5340e4 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x2a55b195 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2a5bd594 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2a60c58b gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x2a626569 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a64dd82 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x2a781907 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x2a78fe7a devm_intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x2a7c7b38 __SCK__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x2a85dc5f _RNvXNtCs3AkgXgqgK6r_4core4charNtB2_13EscapeUnicodeNtNtNtNtB4_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0x2a907fd2 _RNvXsW_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_11boot_paramsNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x2a920ddd vfs_remove_acl EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2a9c024d ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2a9dbe8e __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0x2aa2de5c _RNvXs1g_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7__xstateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab92a50 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x2ab2fb31 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x2ab85034 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x2abc5107 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x2abe54d9 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x2ac51209 generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x2ac99bde _RNvXs3e_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25arch_uprobe__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x2ad3fb8c usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2ae12986 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2acb58c3 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x2ad151f9 dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x2afc22a6 _RNvXs_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB4_22FromBytesUntilNulErrorNtNtB8_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b126323 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x2b1b7dbd trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x2b203d46 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x2b2310bd __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x2b2da8e6 devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x2b33c562 _RNvXs45_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16per_cpu_nodestatNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4c8bdb io_uring_cmd_do_in_task_lazy EXPORT_SYMBOL_GPL vmlinux 0x2b5297b1 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x2b54f784 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x2b567869 spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x2b581987 _RNvMs0_NtCsbwHtcUjRN57_6kernel4taskNtB5_4Task7current +EXPORT_SYMBOL_GPL vmlinux 0x2b586871 devm_regulator_get_enable_optional EXPORT_SYMBOL_GPL vmlinux 0x2b5a1e99 _RNvXsE_NtCs3AkgXgqgK6r_4core4timeNtB5_25TryFromFloatSecsErrorKindNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2b5a79a8 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x2b5c5e87 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x2b5d5922 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x2b5e498a sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b69911e isa_register_driver EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b75ea03 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x2b7aeed8 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x2b7d2101 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x2b80a297 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2b7415c0 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x2b78cbb7 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x2b851177 _RNvXsi_NtNtCs3AkgXgqgK6r_4core4hash3sipNtB5_5StateNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2b965a33 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b9427f2 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba0b5bb tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x2baa6640 ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x2bae7514 _RNvXs1_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0x2baf09eb reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0x2bbb3eda iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x2bcb8e63 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x2bd3a265 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2bf5094a __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x2be4ecc3 ata_ncq_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x2bf638f2 _RNvXsS_NtNtCs3AkgXgqgK6r_4core3str7patternNtB5_15StrSearcherImplNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2c002cd7 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x2c0313e7 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x2c1232e9 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x2c1b3cf1 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x2c1b95ae edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x2c1ed6fa vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x2c1eccdf folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c2c9fda dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x2c2e3bdc split_page +EXPORT_SYMBOL_GPL vmlinux 0x2c24e73f __crypto_alloc_tfmgfp EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c3637db tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x2c3ebfb3 pci_p2pmem_publish -EXPORT_SYMBOL_GPL vmlinux 0x2c5ec707 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x2c601b4c __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x2c35f671 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2c382361 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x2c46d9c4 __SCK__tp_func_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0x2c61746d rust_helper___spin_lock_init EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c69a345 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c70cb9f pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x2c8aa761 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2c8bdc63 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c922848 iomap_file_buffered_write_punch_delalloc -EXPORT_SYMBOL_GPL vmlinux 0x2c92f87a irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x2c9eb863 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2ca7ad89 priv_to_devlink EXPORT_SYMBOL_GPL vmlinux 0x2ca910b7 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x2cc4ca59 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2cac28a3 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x2cb2a511 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x2cb3cde1 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2ccd3900 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0x2cdd98a6 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2ce69aa4 component_release_of -EXPORT_SYMBOL_GPL vmlinux 0x2ce73fc8 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x2cee6d78 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x2cd85b76 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x2ce67c2b phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x2ce7436e vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x2ce79582 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x2cf7f0aa _RNvXsr_NtNtCs3AkgXgqgK6r_4core3fmt3numNtB5_8UpperHexNtB5_12GenericRadix5digit EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d00cbef pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d0b0752 vcap_tc_flower_handler_portnum_usage -EXPORT_SYMBOL_GPL vmlinux 0x2d0b6b43 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x2d18ecb7 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d2283d0 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x2d29a5ad i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x2d2ac3c9 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d328a51 _RNvXs1z_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12swregs_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x2d354b97 __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element -EXPORT_SYMBOL_GPL vmlinux 0x2d3c07f4 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d54c08e blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x2d556c47 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2d48032a fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d69e913 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x2d6da2f0 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2d628abd pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x2d66969c ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x2d713395 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x2d772e78 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x2d799377 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x2d7f08df fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x2d84452a _RNvXs4z_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i64x8NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x2d8479a0 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x2d8ae70a devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x2da42334 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2da5e0eb md_run EXPORT_SYMBOL_GPL vmlinux 0x2dae5ca7 _RNvMs1_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_11DebugStruct6finish -EXPORT_SYMBOL_GPL vmlinux 0x2daf7462 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x2db5b2a3 rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x2dbe8b29 vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0x2dc300f1 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x2de14fe1 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x2dec35c6 gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x2dee5460 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0x2df3883c fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x2df77b77 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x2dc5ec9b __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x2dd2e6bf __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x2df7d33d _RNvXsj_NtCs3AkgXgqgK6r_4core3numaNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x2dfa8d80 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e02c45a pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x2e05540c crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0d9a26 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x2e148ccb devm_acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2c732b pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e371cf1 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x2e39fb33 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x2e3ee976 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x2e4e71f4 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x2e38c159 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x2e560c01 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0x2e5b3f67 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x2e6207c1 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x2e6488a3 pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0x2e65b188 unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x2e6670f3 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x2e6c43ee inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0x2e76dce6 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x2e67e357 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x2e6e3db6 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2e88dc33 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x2e9197f1 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x2e9cb451 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x2e8bc1c8 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x2e8f79d9 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x2e96e534 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova EXPORT_SYMBOL_GPL vmlinux 0x2ea48dd3 _RNvXsT_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_9AtomicU64NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x2ea845fd ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x2eb098a2 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable EXPORT_SYMBOL_GPL vmlinux 0x2ec8fe68 _RNvXs_NtCs3AkgXgqgK6r_4core5arrayNtB4_17TryFromSliceErrorNtNtB6_5error5Error11description EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array -EXPORT_SYMBOL_GPL vmlinux 0x2ed54157 xfrm_unregister_translator EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed -EXPORT_SYMBOL_GPL vmlinux 0x2ee09620 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2edb0dc5 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x2edc48f7 pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2efdff9b ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x2eed02f0 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x2f00b4b3 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x2f0151fb pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f0480fa device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1b6ac9 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x2f1106a9 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x2f20ec99 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f219fcf usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f2dc9b5 direct_write_fallback EXPORT_SYMBOL_GPL vmlinux 0x2f36395b init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x2f389c35 _RNvXsl_NtCs3AkgXgqgK6r_4core4charNtB5_15CaseMappingIterNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec EXPORT_SYMBOL_GPL vmlinux 0x2f490f3a pm_generic_poweroff_noirq EXPORT_SYMBOL_GPL vmlinux 0x2f501ec8 _RNvMs_NtNtCs3AkgXgqgK6r_4core4char6decodeNtB4_16DecodeUtf16Error18unpaired_surrogate -EXPORT_SYMBOL_GPL vmlinux 0x2f5b0d2b __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x2f6199d4 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2f551545 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2f63e3c3 tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f81e323 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x2f8ae7e0 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x2f65f8b8 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f69a7f0 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2f76745e __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f76c636 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f97ba22 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x2f97c067 _RNvXsq_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_15ratelimit_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x2f9cc91c serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0x2f9d8395 _RNvXsb_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0x2fa286fc pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x2faf8533 _RNvXs1c_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11__fpstate_32NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x2fafd7b0 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x2fb05748 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x2fb05bb8 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x2fb6b332 spi_get_device_match_data -EXPORT_SYMBOL_GPL vmlinux 0x2fb7a1f7 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x2fbf4a72 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x2fc1cd34 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc86ccd scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x2fcff449 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x2fd0209a _RNvXsB_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_32ddebug_class_param__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x2fd1ba7d usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x2fd46f2b __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x2fd0f052 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2fd89f04 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x2fda5850 soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x2ffcea40 __fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x2fdb10e4 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x2fe117a6 xhci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x2fe5389c devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fee4940 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x2ff8adf9 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0x2ffedb6b hv_free_hyperv_page EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features +EXPORT_SYMBOL_GPL vmlinux 0x301bb6c3 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x30295d3f _RNvXs5q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8sigqueueNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x302b2727 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x305029da rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x305dae33 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x30619768 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x302c86ea tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x302f39b2 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x306797eb regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x3073229b spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30691696 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x30699ae9 spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x3078fc8f badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x3093bf10 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x3079f033 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0x30a9c836 _RNvXs_NtNtCs3AkgXgqgK6r_4core3fmt7nofloatdNtB6_5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x30b6a270 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x30b6b01f thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x30ba9feb crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30db2598 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x30dbc834 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x30d766f3 pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30ec1cc7 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x30e2670a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x30eb8354 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x30fc1531 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31024678 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler EXPORT_SYMBOL_GPL vmlinux 0x311aafcd pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0x31215f50 _RNvMs6_NtCs3AkgXgqgK6r_4core3numm14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31334866 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3134ea98 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x313448aa dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x313ba8cb mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x313d3c41 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x3144c430 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x314a4c68 debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x314cfe10 _RNvXs4_NtNtCs3AkgXgqgK6r_4core4char6decodeNtB5_16DecodeUtf16ErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x315b274b sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x315c4c89 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x315f0b94 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x315c4321 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x31623118 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine -EXPORT_SYMBOL_GPL vmlinux 0x3165e7b5 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x3183ea66 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3175cfac dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x317829ff dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x317a1f7b __fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x317b0c1e __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x31807091 usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0x318cc809 _RNvXs1q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_21trace_print_flags_u64NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3195b897 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0x31998d30 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x31a0ebef crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy -EXPORT_SYMBOL_GPL vmlinux 0x31a89866 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x31a93c69 clk_register EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31adfa42 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x31bc5093 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x31c243f3 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x31b8bb14 spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cd7875 devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x31d02722 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load EXPORT_SYMBOL_GPL vmlinux 0x31dc97d8 reset_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x31dfdd83 _RNvXs1_NtNtCs3AkgXgqgK6r_4core3str5errorNtB5_14ParseBoolErrorNtNtB9_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x31e67446 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x31e7fb4e __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x31ecc24f _RNvXs7_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith3DivmE3div -EXPORT_SYMBOL_GPL vmlinux 0x31f24bb9 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x31fe0a91 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x31feaadc iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x3207fba5 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0x3209c565 _RNvXsa_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB5_10DisplayInt6to_u32 EXPORT_SYMBOL_GPL vmlinux 0x3209ce99 _RNvXs1h_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i64x1NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x320f0f87 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x321df41d pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3225a2b2 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config EXPORT_SYMBOL_GPL vmlinux 0x3232d08a _RNvXsx_NtCs3AkgXgqgK6r_4core4charNtB5_18EscapeDefaultStateNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x32396ec2 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x32546a6d pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32360f5d devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x3260aebc crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x32634ac0 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x32667b7c phy_calibrate EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x3279d245 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x32704353 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x32726f72 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x327f9104 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0x328204ab __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x3285ba84 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache EXPORT_SYMBOL_GPL vmlinux 0x32919477 _RNvMs6_NtCs3AkgXgqgK6r_4core3anyNtB5_6Demand3new -EXPORT_SYMBOL_GPL vmlinux 0x32931937 dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x329d4754 _RNvXs4n_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_10NonZeroI64NtNtNtBa_3str6traits7FromStr8from_str +EXPORT_SYMBOL_GPL vmlinux 0x32aa4e34 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c6f774 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x32dfb584 to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate -EXPORT_SYMBOL_GPL vmlinux 0x32e6b48b md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x32e93772 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x32e9ac11 __fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x32f3f159 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x32fbc99f pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33077a69 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x330d81e7 tpm_send EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x3317949e __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x332476f6 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x33191c2d i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3332c11a __SCK__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x333e635a __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x33476836 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x333a265d bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x3352823d cppc_get_auto_sel_caps -EXPORT_SYMBOL_GPL vmlinux 0x33550710 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x3355993a virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x3355f0a6 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x33551b49 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0x335a613c mas_next_range EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x33612424 nop_posix_acl_default EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x3365cc9b tcp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x3365fe7d device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x3377cb07 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x3379e675 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x337d30fa noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x33831555 spi_split_transfers_maxwords -EXPORT_SYMBOL_GPL vmlinux 0x33917b86 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x3382a380 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x339bdf15 msi_domain_first_desc EXPORT_SYMBOL_GPL vmlinux 0x33aa755b _RNvXs5d_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_52___sifields__bindgen_ty_5__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x33b426c5 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x33b6709c vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x33aef05b pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery EXPORT_SYMBOL_GPL vmlinux 0x33c6024c _RNvXs0_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_10PadAdapterNtB7_5Write9write_str EXPORT_SYMBOL_GPL vmlinux 0x33c77dd5 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x33cfdf7f gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x33d0b3f1 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x33d0cf1b devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x33d7ecc6 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x33dbe47a tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x33d1949a seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x33f467e0 _RNvXs4h_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_10NonZeroU64NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x34017236 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x340cceec vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x340cf7fd __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x33ff2f8d task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3401fbee fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x340835b0 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x3408b7a1 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x340ff294 pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0x34107128 _RNvXs3M_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8vma_lockNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x341b5505 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x341f6401 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x341be233 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x3421dd21 devl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x342dde3a __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x3432a952 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x343f236f virtio_check_mem_acc_cb EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34553ea8 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x34586546 ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x345be1d1 regulator_desc_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x345c67bd devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid -EXPORT_SYMBOL_GPL vmlinux 0x346afb65 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x3467d5e5 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x346ed724 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x347b5675 usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x34811a50 reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x349770b5 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x34986a4d of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x349f7515 _RNvXs3D_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_19folio__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x34a3aad3 virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0x34a5f0c4 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x34a3522f ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x34ac8ab9 _RNvXs33_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9srcu_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x34c74a6d __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x34bb45fe clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x34d3bae6 usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x34db62bd fpu_enable_guest_xfd_features +EXPORT_SYMBOL_GPL vmlinux 0x34dbfc0e tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking EXPORT_SYMBOL_GPL vmlinux 0x34df3dfc unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x34e06580 usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0x34e4ace6 __rg_realloc EXPORT_SYMBOL_GPL vmlinux 0x34e550c7 _RNvXs36_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11srcu_structNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler EXPORT_SYMBOL_GPL vmlinux 0x34ebf4bd _RNvNtCs3AkgXgqgK6r_4core9panicking19panic_cannot_unwind +EXPORT_SYMBOL_GPL vmlinux 0x34efb3be virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x34f32810 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x34f93b38 pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x3508c7cb _RNvXsg_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_13callback_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x350b3fa5 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x350e7306 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x351f75ca ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x35228e66 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x35229a23 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0x352316c8 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3531a6f1 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x353db58d gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x353e17ab iommu_map EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x3550fc33 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x3553783a trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x35571626 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3542eaf9 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x35479dd7 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x35573ba8 thermal_zone_get_num_trips -EXPORT_SYMBOL_GPL vmlinux 0x355b859d pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x3557ffc1 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x3565e3c4 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x356b4b18 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x356cbf5c trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x35717467 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x358c50ae __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3577dd74 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x357ed2c2 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x358e1349 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x35905201 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x35a6ef85 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x35adfcd0 _RNvNtCsbwHtcUjRN57_6kernel5print11call_printk -EXPORT_SYMBOL_GPL vmlinux 0x35b0e117 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x35ba3052 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x35ba79dd iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0x35c3da57 __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x35cb7ad3 _RNvXs4e_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_9NonZeroU8NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x35d1b738 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35f3e05e tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x360ce17a dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0x36173390 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x35dfb15b pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x35e946d2 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x35edef0a xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x35f43eb0 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x36084138 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x360e0717 __tracepoint_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node -EXPORT_SYMBOL_GPL vmlinux 0x36177a7f cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x361b5d0e devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x361cd657 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362a474d regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x362c7f5b phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x3641be07 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x36436232 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x364e7aad nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x3657ae68 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x362f5ab3 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0x3658b92c _RNvMs_NtNtCs3AkgXgqgK6r_4core3num3fmtNtB4_9Formatted5write -EXPORT_SYMBOL_GPL vmlinux 0x366a38dc regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x366b1d9a rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x365bc897 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x366c3312 __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x366f3bdf pwm_lpss_tng_info EXPORT_SYMBOL_GPL vmlinux 0x36743990 _RNvXsG_NtCs3AkgXgqgK6r_4core4charNtB5_16TryFromCharErrorNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x368360ad phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x36796751 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x3687aa50 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x3696ade1 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x369fc69e serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36b067b7 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x36b22954 cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36bed389 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x36c95f47 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x36bd5e28 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x36d77e58 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x36ddb6ad tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x36e0b0ab mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x36e4dd8f _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings6NOTICE EXPORT_SYMBOL_GPL vmlinux 0x36e71e63 _RNvXs5H_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12prev_cputimeNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x36ec87fb wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x36fc8e61 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x370fb03e gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x3708df83 __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x371531a5 _RNvXs5_NtCs3AkgXgqgK6r_4core3fmtNtB5_9ArgumentsNtB5_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x37205db3 _RNvXs5_NtNtCs3AkgXgqgK6r_4core3str5lossyNtB5_9Utf8ChunkNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x372b8f18 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x373cc810 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x3746306c clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375d9645 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x3766175a __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377d99d6 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x377dbb34 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0x37888ac6 _RNvXs4G_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10percpu_refNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x378d3d00 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x378e6927 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x378fad46 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a522b8 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x37a52e82 _RNvXso_NtCs3AkgXgqgK6r_4core4charNtB5_16TryFromCharErrorNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x37a6147b crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x37b47376 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x37acabb4 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x37afc45f platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c375b4 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x37cf7c84 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x37deb06e scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x37e21d62 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x37e8bc4e uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0x37ecc4d7 _RNvXs2x_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5f64x4NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x37f52ea2 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x37f27b23 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x37f63d0a crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x37f75eb8 _RNvNvMsE_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_9NonZeroI813new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x37fa468e __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x37fd7329 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x380cc4f9 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x3803ccdf i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x380aa412 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap EXPORT_SYMBOL_GPL vmlinux 0x38162bb9 thermal_acpi_active_trip_temp +EXPORT_SYMBOL_GPL vmlinux 0x3824bae9 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3835c1b6 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x3836f9de devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x382dfb74 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x384057d5 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x383fcc18 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x384877a5 register_fprobe_syms EXPORT_SYMBOL_GPL vmlinux 0x385c053f _RNvXs7_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x386325bb __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386b16cc ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x386c29c1 _RNvMs2_NtCs3AkgXgqgK6r_4core3numn14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0x386c734e get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x38705a8f ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x386c84d5 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x38709b2d nvmem_layout_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38716bdc pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x3878441a __tracepoint_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x3880cf8d dev_pm_opp_get_supplies EXPORT_SYMBOL_GPL vmlinux 0x388264ea amd_clear_divider -EXPORT_SYMBOL_GPL vmlinux 0x3883207f sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x3884608c irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x388485e2 irq_gc_mask_disable_reg EXPORT_SYMBOL_GPL vmlinux 0x38897d3e _RNvXs1_NtNtCs3AkgXgqgK6r_4core4task4wakeNtB5_7ContextNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x388f2fb9 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x3897a55a usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x389ad095 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x38c3a2c3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x38b76ea1 sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38ced016 elv_register EXPORT_SYMBOL_GPL vmlinux 0x38d1e99b _RNvXs2f_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i64x2NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x38d2484f _RNvXs1_NtNtCs3AkgXgqgK6r_4core3ffi5c_strRNtB5_4CStrNtNtB9_7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e463ad badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x38e5a517 kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x38e74fbb tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0x38eafa41 tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x38eefa06 _RNvXsf_NtCs3AkgXgqgK6r_4core4cellNtB5_11BorrowErrorNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x38f04291 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x38f3854d dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x38f586c1 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x3902ac5c rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x390f4a81 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x390f6d56 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x3915fe7e hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x38fa6dd4 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x38fb80ed filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x39005dcb devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x390c8685 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x391699e6 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x391dcce0 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x3924afd7 _RNvNtCs3AkgXgqgK6r_4core9panicking19assert_failed_inner -EXPORT_SYMBOL_GPL vmlinux 0x3927b0cc devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x39265ab9 __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x392853ea _RNvXs4_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x392f106a __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3934ed7e platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x393660d8 _RNvXs2Y_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8rcu_workNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x393b7cfa clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x393c85d3 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x394cfbd0 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x39483ae6 usb_deregister_device_driver EXPORT_SYMBOL_GPL vmlinux 0x39528e01 _RNvNtNtCs3AkgXgqgK6r_4core3str8converts9from_utf8 EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x396fed65 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x399e37f7 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x397df95b rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x3986a069 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x398ca0d3 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x39a0afd8 _RNvXs3_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB5_10DisplayInt6to_u32 EXPORT_SYMBOL_GPL vmlinux 0x39a2a030 _RNvXs4k_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_9NonZeroI8NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x39a2d863 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x39a2ef76 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x39a8743b serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x39a927d1 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39a6c5de lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b641ce i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x39ad4eec vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x39b422f8 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x39bf59a9 init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x39c1cf0a of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x39c451c7 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x39c80708 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39cd9809 crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39df45de ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x39df9b7e virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x39ea82f7 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x39f0bb9c usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x39f28ee0 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x39f5e179 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x3a13dc0d rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3a15b3df blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x3a240b9f inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x3a1f1663 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a2e9e21 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x3a39f196 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x3a3d0c78 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x3a311638 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x3a3ff7e2 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0x3a42c8f0 _RNvXs1F_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10xtile_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a58ed08 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a629a2f iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3a64e0f1 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x3a598f40 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x3a672bd1 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x3a687a89 _RNvNtCsbwHtcUjRN57_6kernel5error9to_result +EXPORT_SYMBOL_GPL vmlinux 0x3a795eb6 tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a7dbfb8 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3a855b46 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x3a8aa98b platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3a82d390 __tracepoint_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x3a9ab9b1 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3a8db5f8 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3a923b68 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x3a985944 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x3a98f14c perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9e6c8b __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x3a9e8610 acpi_remove_cmos_rtc_space_handler +EXPORT_SYMBOL_GPL vmlinux 0x3aa04874 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x3aa6d50f devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3ac5168f gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x3ac752c3 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x3acaa3bc sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad7b45d inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x3acf5e0d rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x3ad2e1d2 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x3ad81dec pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x3ae3f163 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x3adb423d phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x3aee6e9b __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3af359cd _RNvXsQ_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB7_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0x3af9d76c dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x3af74994 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b0124c2 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop -EXPORT_SYMBOL_GPL vmlinux 0x3b05b7a7 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x3b0651f1 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3b343173 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x3b35c184 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x3b04fcab do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x3b0c0c1c usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3b21cd18 dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0x3b360ea7 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x3b3ba3ec fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x3b404c0a alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x3b4ae8cf usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b64cfdf dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x3b6b23a7 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x3b58b9bb fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x3b651ef6 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x3b71028a locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x3b797a18 _RNvXs_NtCsbwHtcUjRN57_6kernel5typesuNtB4_14ForeignOwnable12into_foreign EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +EXPORT_SYMBOL_GPL vmlinux 0x3b88f2e2 filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3b995e4a sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3b98ae00 rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba4f7e8 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x3ba85e25 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x3ba48156 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x3bbdc96b _RNvXso_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impxNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x3bc0acd6 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x3bcdadc7 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x3bce0106 _RNvNvMsL_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_10NonZeroI1613new_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc89f8 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x3bdfee48 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x3be2fdd7 _RNvXs2d_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_20class_spinlock_irq_tNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3be6fef5 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3beb02ba __SCK__tp_func_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x3beeebac pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf17a7c mctp_register_netdev -EXPORT_SYMBOL_GPL vmlinux 0x3bf66780 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3c01f559 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c129a01 thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x3c30a849 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x3c428abd bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x3c4d49e0 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3c47e3ca tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0x3c5c7f30 _RNvXs2S_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_19system_counterval_tNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c632b5a tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x3c642974 __rust_dealloc EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6cc975 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x3c7223e5 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x3c7514fe da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3cad5d1e blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x3cbf796a scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x3c8da524 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x3cae4384 xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x3cc81723 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x3ccf0b9b fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x3ccc0cf6 vcap_tc_flower_handler_arp_usage +EXPORT_SYMBOL_GPL vmlinux 0x3ccdc53e iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3ce9c820 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x3ced123d blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x3cf4660f md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x3cf6527f fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x3cdb066c iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3cde90f1 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x3ce1a9b8 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3cf1f2e2 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3cf8b549 devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cfa3aee device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x3cffc177 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x3d011a28 _RNvXs4Z_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10plist_headNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x3d05345f xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0x3d0a6447 _RNvXs1_NtNtCs3AkgXgqgK6r_4core4char6decodeNtB5_16DecodeUtf16ErrorNtNtB9_5error5Error11description -EXPORT_SYMBOL_GPL vmlinux 0x3d32f21f gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3d0afb6e mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x3d11b5cd gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3d241420 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3df46f kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x3d432315 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x3d3f720f bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d545910 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x3d62b3d7 _RNvXs5_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impyNtB9_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x3d69f184 _RNvXs2r_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5f64x2NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x3d6cb9f7 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x3d80eaac device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x3d86f0c1 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x3d7afeb0 devl_linecard_create EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x3d9742b5 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter4fill EXPORT_SYMBOL_GPL vmlinux 0x3d9ba721 _RNvXs1R_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_20SplitAsciiWhitespaceNtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x3da035e3 led_put EXPORT_SYMBOL_GPL vmlinux 0x3da26e7d _RNvNvMNtNtCs3AkgXgqgK6r_4core3ops11index_rangeNtB4_10IndexRange13new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x3da6c3ca pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3dafb012 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x3db1a042 _RNvXsa_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impsNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x3db95d86 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x3dcb5730 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3dce0aee ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x3dd0a180 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x3dd8ab3f blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3e0984a8 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dfe31de dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e0d863d fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x3e25505c vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x3e277bb0 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x3e141e88 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x3e2aa6ac _RNvXs19_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB8_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x3e30bf1e dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x3e3bff3b rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x3e372dd6 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e4217d0 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x3e4c7df3 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0x3e4f103b _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter3pad +EXPORT_SYMBOL_GPL vmlinux 0x3e59d931 crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3e622dce usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x3e6e2e99 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3e6fb294 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7c0b1b __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x3e7f48ba _RNvMs1_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_11DebugStruct5field EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3e9b5cde __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x3ea1b9d9 thermal_acpi_hot_trip_temp EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup EXPORT_SYMBOL_GPL vmlinux 0x3eaaa32e of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x3ebb7f15 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x3ec1dcd6 intel_pinctrl_get_soc_data -EXPORT_SYMBOL_GPL vmlinux 0x3ec260b2 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x3ec3eb80 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x3eb05115 __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ebe8d32 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ec0902e fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3eccd42e vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x3ecdb1de _RNvXse_NtNtCs3AkgXgqgK6r_4core5alloc6layoutNtB5_11LayoutErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put -EXPORT_SYMBOL_GPL vmlinux 0x3ee036c0 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x3eeb903a regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x3edf273a fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efd8f9b bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x3ef6d068 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x3f0693f9 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x3f1b3f2f __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x3f3d3936 thermal_acpi_critical_trip_temp +EXPORT_SYMBOL_GPL vmlinux 0x3f433f5e get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f5570fb crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x3f739a68 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x3f6babf7 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0x3f75a44c _RNvXsJ_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_55restart_block__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x3f78f95d nfct_btf_struct_access -EXPORT_SYMBOL_GPL vmlinux 0x3f7d5ecc skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x3f7ff982 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f87536e register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x3f8e2ddf _RNvXs2_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3implNtB9_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x3f904f58 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x3f911b0f nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x3f912993 yield_to EXPORT_SYMBOL_GPL vmlinux 0x3f982df5 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x3fa6ec8e perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x3fa7927d driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x3f9991cc perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x3f9d7a07 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index EXPORT_SYMBOL_GPL vmlinux 0x3faeaceb rust_helper_spin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3fb0cc3d kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x3fb85282 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x3fb93f61 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x3fbcb16f _RNvXs4L_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_22rhashtable_compare_argNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x3fc3560c follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x3fc01731 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fcaf458 __tracepoint_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fea7d11 pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4004cc9b devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x40076576 xenbus_dev_cancel EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400a0f2f acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x400a1ff7 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x400df54f _RNvXst_NtCs3AkgXgqgK6r_4core3numoNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x4019a3b1 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x4015a844 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x401b56a5 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x401b5da5 _RNvXs2V_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10timer_listNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x401b7a8c dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x401c9621 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x4022452d vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x401f13c2 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x40227aab __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x40349c74 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x40362fe3 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x403e307c gnttab_unmap_refs_sync EXPORT_SYMBOL_GPL vmlinux 0x403e954a _RNvXNtCsbwHtcUjRN57_6kernel9allocatorNtB2_15KernelAllocatorNtNtNtCs3AkgXgqgK6r_4core5alloc6global11GlobalAlloc7dealloc EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40428995 blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x4062d4d1 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x40448762 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x40479380 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x4062e2bd regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x40676dc3 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution EXPORT_SYMBOL_GPL vmlinux 0x406d4e43 devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x408351ee irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4085f023 md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0x40876513 poll_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409fc42b ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all -EXPORT_SYMBOL_GPL vmlinux 0x40a4c1ce switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0x40b27d9d bio_poll -EXPORT_SYMBOL_GPL vmlinux 0x40bab7aa virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x40d497dd led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x40db46c4 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x40a3ab60 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x40e4542e __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put EXPORT_SYMBOL_GPL vmlinux 0x40f215b8 _RNvXs4b_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10mhp_paramsNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x40f6528e devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4105ab06 pinctrl_dev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x41060336 _RNvMNtNtCs3AkgXgqgK6r_4core5slice5asciiSh16trim_ascii_start -EXPORT_SYMBOL_GPL vmlinux 0x410cdc64 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0x410dcc36 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x41224485 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x41062d27 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x411160a0 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413076b0 netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x414dd852 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x414f5b17 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x41695115 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x417519c5 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x414f6223 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x41530903 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x4154e58f i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x41797e57 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41852d46 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x419a570d sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41af8db9 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x41b9140b sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x41b434fe raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x41b46e73 pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41bbf7b4 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier EXPORT_SYMBOL_GPL vmlinux 0x41c5211d _RNvXsh_NtCs3AkgXgqgK6r_4core5errorNtB5_6SourceNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x41c7377e perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x41e13fdc irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x41e4a4a7 component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f50746 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x41f10b1c class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x41fe19f6 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0x42018d63 _RNvXsE_NtCs3AkgXgqgK6r_4core4charNtB5_15CaseMappingIterNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x4201d95f mbox_bind_client EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420def7f crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4210e301 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x4211d0e8 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x421226ab device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x4214757c rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x4215b80b skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x42239d65 acpi_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x42262ba8 _RNvXs4_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp9PartialEq2eq -EXPORT_SYMBOL_GPL vmlinux 0x422a1d1d synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x422b9d90 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x422f43e3 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x42312fbe perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x42383fbb vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x42451d01 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4262799a gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x42306240 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4244e1b4 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42655cc3 ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x4268b2c4 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x4277fad3 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x42789954 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x4276e280 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x4287851f nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x42919a6c _RNvXse_NtCs3AkgXgqgK6r_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint EXPORT_SYMBOL_GPL vmlinux 0x42974a45 ftrace_set_filter_ips -EXPORT_SYMBOL_GPL vmlinux 0x429b389d usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42a448bf device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x42b75d3c pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x429c7b99 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x429e4d11 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x42a2c440 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x42ae0b9b ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42c55d99 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x42c67359 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x42d5a1a8 failover_register +EXPORT_SYMBOL_GPL vmlinux 0x42c779b1 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x42c97431 blk_crypto_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0x42e732cb vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0x42f6c87a mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42f9a04e vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x42fa6902 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x42fcdb83 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x42fdf729 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x43170542 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x431c7896 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x4329924b iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4338882d spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x433ecb75 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0x433fe922 _RNvXs2N_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15uprobe_consumerNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x4340dc67 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x4342cca5 __tracepoint_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0x434e6bb2 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x435ed92d vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x4362165e ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x4362920d raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x437946e3 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x437c733e __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4381dcd7 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x438302cf kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x43885bd9 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4398e7b8 to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0x43a0c426 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x43a9272f regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43c43782 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43d4252d xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0x43d56c4e devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x43e44620 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x43eea97d hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43ef18cf tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x43f120d2 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x43df52fa sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x43e72cc5 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x43efc9d1 device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs EXPORT_SYMBOL_GPL vmlinux 0x4406b3fe start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4422359b vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x441f5d6a vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x44216852 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x442351fa dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x443140eb call_hid_bpf_rdesc_fixup -EXPORT_SYMBOL_GPL vmlinux 0x444277d9 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4431e14e bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x443233f1 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x443320b2 virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0x44429744 _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data11conversions8to_upper -EXPORT_SYMBOL_GPL vmlinux 0x444d27c7 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x4453ebaa tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x445151be gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x445185e0 vcap_tc_flower_handler_ipv6_usage EXPORT_SYMBOL_GPL vmlinux 0x4454fb3f _RNvXsb_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x446c1427 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x44569b38 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x44714dfe _RNvXs7_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_4i8x2NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop EXPORT_SYMBOL_GPL vmlinux 0x4475dcaf hv_nested +EXPORT_SYMBOL_GPL vmlinux 0x447cb8e3 __regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448caa7b genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0x449051eb wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x4498c823 _RNvMs_NtCsbwHtcUjRN57_6kernel4syncNtB4_12LockClassKey6as_ptr +EXPORT_SYMBOL_GPL vmlinux 0x449ba489 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x449c6058 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x44b1a87b _RNvXs3H_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i64x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x44b2b48a __SCK__tp_func_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x44b7377b ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x44c1d8ea acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0x44c528f8 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x44cac78c clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str EXPORT_SYMBOL_GPL vmlinux 0x44d1eef1 _RNvXs_NtCs3AkgXgqgK6r_4core3anyDNtB4_3AnyEL_NtNtB6_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x44df46f0 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x44d3e17a __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x44d6963f regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x44de269e ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44eb673e devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x44edea6f register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x44ee417b raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x44ee54e2 strp_process EXPORT_SYMBOL_GPL vmlinux 0x44f00bd1 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x44f16b84 mmc_prepare_busy_cmd -EXPORT_SYMBOL_GPL vmlinux 0x44faab6c metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x44fa566d gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450bca5a account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x451e266a pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x45164a45 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x451d7972 create_signature EXPORT_SYMBOL_GPL vmlinux 0x451feeba cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x452d2a4c blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x45224962 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x45251494 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x452d2838 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x452ea163 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x45331fde of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x454b8052 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x453613af gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x45484a75 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x455b7e09 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x4560468d __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x4555b4d4 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x455dc867 pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x456199a8 _RNvXs14_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB8_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x456851e8 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x456f1f0a xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x45722146 spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457958c7 wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0x457da79e power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x4584eb6d acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x45867ca8 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x458ccafc __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x459dc819 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x45907683 extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers EXPORT_SYMBOL_GPL vmlinux 0x45b88ee4 _RNvXsp_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impyNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x45c623b2 devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x45cdff91 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x45bb3c62 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x45bf4dea usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x45d100b6 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45dfb55d bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x45d30e2e __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x45dc632e call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x45dea1e3 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get -EXPORT_SYMBOL_GPL vmlinux 0x45f668cd vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x46008b2d sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining EXPORT_SYMBOL_GPL vmlinux 0x46047827 __SCT__tp_func_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x46113b9b devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x46280447 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x463fa6a2 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x464c13fc devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x464ebf5e __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x4650fd45 _RNvMs1_NtCs3AkgXgqgK6r_4core3fmtNtB5_10ArgumentV110from_usize -EXPORT_SYMBOL_GPL vmlinux 0x4652230d __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x46527fff proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x465b95b4 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x46723528 _RNvNvMsj_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_10NonZeroU6413new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x4674a527 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x46775e44 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x469f4195 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x46a16da7 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x469557e6 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x469b0b39 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x469d2094 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x469e43ab __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x46a39ddc edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page EXPORT_SYMBOL_GPL vmlinux 0x46acdb35 _RNvXs16_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11pv_lock_opsNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x46b714f7 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x46b71fb3 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x46b848fe unwind_next_frame -EXPORT_SYMBOL_GPL vmlinux 0x46beb0ad thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x46bf7594 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x46b258cc regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46b66a29 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x46c1b590 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0x46c61de3 acpi_install_cmos_rtc_space_handler -EXPORT_SYMBOL_GPL vmlinux 0x46c8e099 mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0x46db2dd6 xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0x46df48a9 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x4706ad03 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x46c65faa exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x46cbb6fb devl_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x46e3f5d0 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x46e9a9d4 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x4709740e cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x470e82f5 _RNvXsm_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3implNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x4710c790 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x47164b1e pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x471e18fe do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x47200c37 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x47223257 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x473931df xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x473da7ce inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x4758263d __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x4737eb96 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x473b27c1 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x474b3aed usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4753c1e6 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x47556a35 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x47584b8b xen_pci_frontend EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47633326 dev_pm_opp_get_max_volt_latency EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x477c1723 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4767d390 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x47737945 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x477e4fa1 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x4783b379 _RNvNtNtCs3AkgXgqgK6r_4core5slice5index20into_range_unchecked EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478c7889 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode -EXPORT_SYMBOL_GPL vmlinux 0x479b61bf dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x479cc90a __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47aacfde dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47ab2ed8 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x47b5fb1a devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x47b90ee7 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter9write_fmt -EXPORT_SYMBOL_GPL vmlinux 0x47bd37e7 shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x47c57cb3 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x47c6762c crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x47cd29b8 netdev_rx_handler_unregister EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d275cd __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47eaedd5 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x47f40b68 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x47e384a7 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x47e635bc xenbus_probe_node EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480de7ab of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x480a6b8a bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x48101a04 smp_ops EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x48209af7 ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x483ae08e dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0x485e7e30 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x48381a39 thermal_zone_device_priv +EXPORT_SYMBOL_GPL vmlinux 0x483d7666 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x4846608b devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x485d572e tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0x485f7913 _RNvNvNtCs3AkgXgqgK6r_4core4hint21unreachable_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0x48674992 _RNvXs8_NtNtCs3AkgXgqgK6r_4core4task4wakeNtB5_5WakerNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x486a4a2b __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x486b5e4b device_initialize EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x487feaab dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x4889fea5 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x488ef4f3 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x4897b9fe dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x48a096f9 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x48a337cf _RNvNtCs3AkgXgqgK6r_4core9panicking18panic_nounwind_fmt EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48ab75f3 trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0x48ccf275 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x48aae51b access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x48baa6dd set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x48d8ad9f icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x48e080b1 x86_virt_spec_ctrl EXPORT_SYMBOL_GPL vmlinux 0x48f0eb41 acpi_dev_get_resources EXPORT_SYMBOL_GPL vmlinux 0x48f86df1 _RNvXsd_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_13ParseIntErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x490ac30b phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x49199d9a debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x491f31d1 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x490c3630 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x49147d9c rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x49305390 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x493198b7 wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x49379b1a spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x494afbf2 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x4951e496 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x493e83ce led_trigger_unregister_simple EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496ac732 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x497182fb percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x4974a9fd pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x497bc15b dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x497cc48d gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x4975025e pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x497ba15b vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x498410cc balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x4986686e _RNvMs4_NtCs3AkgXgqgK6r_4core3numh14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49a4d9b7 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x49a530a3 thermal_zone_get_crit_temp -EXPORT_SYMBOL_GPL vmlinux 0x49a5dfcd clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x49b4ff1c filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0x49bc8c9d _RNvXs8_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x49c35453 klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0x49cb5aeb iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d1b0f0 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x49d67fd6 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x49d76693 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49daca3b edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x49d3eb4a device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x49db7500 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a039c04 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x49f00c53 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x49f9a68e phy_power_on EXPORT_SYMBOL_GPL vmlinux 0x4a0c550e pstore_register EXPORT_SYMBOL_GPL vmlinux 0x4a0f3f77 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x4a175807 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a1d2876 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x4a1dfc2f _RNvXsp_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_8AtomicU8NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x4a38f891 _RNvXsb_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a593577 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x4a488878 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x4a4fe451 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x4a6df780 folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0x4a7e3c0f _RNvXs6_NtNtCs3AkgXgqgK6r_4core3cmp5implszNtB7_3Ord3cmp EXPORT_SYMBOL_GPL vmlinux 0x4a80d987 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x4a815fae vring_create_virtqueue_dma EXPORT_SYMBOL_GPL vmlinux 0x4a846ae9 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x4a88cf6c irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4a96bd96 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x4ab9c216 fscrypt_dio_supported -EXPORT_SYMBOL_GPL vmlinux 0x4aceb90a devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4ae80bea debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x4a8b7fd7 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x4aa196d3 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x4ac63272 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4ad82f48 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x4ae84d00 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x4aebe0dd phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x4aee5159 strp_init EXPORT_SYMBOL_GPL vmlinux 0x4afece10 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x4aff2cdb devm_hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0x4b10aaa5 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x4b15793a fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x4b1f6338 hsu_dma_get_status -EXPORT_SYMBOL_GPL vmlinux 0x4b27c8af xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x4b0e7f8a vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4b156455 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4b201851 hid_bpf_connect_device EXPORT_SYMBOL_GPL vmlinux 0x4b29955f _RNvXs1u_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11class_irq_tNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x4b2a0155 simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x4b2ac3a1 pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x4b332df8 hv_get_tsc_pfn -EXPORT_SYMBOL_GPL vmlinux 0x4b46adcb tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x4b3d86ec xenbus_dev_groups EXPORT_SYMBOL_GPL vmlinux 0x4b48a00a led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x4b4f4820 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4b52e73b netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x4b539feb fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b629906 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b762c61 iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0x4b7766f9 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x4b8a5064 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x4b7aa5aa modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4b7ddae8 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x4b86927a tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x4b8bb0f7 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4b8feacd crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x4b9043c4 _RNvXs3y_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_4pageNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b951b6c skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x4b966eb9 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x4b93cabe ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ba0cf35 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x4ba48127 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x4ba72c3c strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x4baf19af _RNvXs3_NtNtCs3AkgXgqgK6r_4core5alloc6layoutNtB5_6LayoutNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x4bb82de2 _RNvXsU_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB7_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu EXPORT_SYMBOL_GPL vmlinux 0x4becdde6 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x4bef7147 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep EXPORT_SYMBOL_GPL vmlinux 0x4bfff589 _RNvXse_NtCsbwHtcUjRN57_6kernel3strNtB5_7CStringINtNtCs3AkgXgqgK6r_4core7convert7TryFromRNtB5_4CStrE8try_from -EXPORT_SYMBOL_GPL vmlinux 0x4c0ad19c kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x4c1f3fea rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c2ab13a __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4c30d4fe __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x4c351940 _RNvXsz_NtCs3AkgXgqgK6r_4core4charNtB5_11EscapeDebugNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x4c372cc6 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x4c3fb537 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x4c44c5d0 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x4c46647e _RNvXs1_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4c4982cb tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c4e2d87 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4c52ef7b rtnl_af_register EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5cfc0e ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x4c5ece0f rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x4c5f348e acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x4c744daa usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x4c637a58 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x4c706ba8 acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping -EXPORT_SYMBOL_GPL vmlinux 0x4c802def bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c7f7fee class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4c881824 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8d1d63 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x4c92d068 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x4ca1b6af ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4cae35cd devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ca74b27 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb34936 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x4cb81206 ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0x4cdcd9bc seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x4cc9d049 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4cf293ea sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4cfb3a0b __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d07032e pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x4d017d6b fscrypt_prepare_lookup_partial +EXPORT_SYMBOL_GPL vmlinux 0x4d103c57 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x4d192a45 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x4d1e04be clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d2a5fde thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x4d2ae56d __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x4d2e2117 _RNvMNtNtCs3AkgXgqgK6r_4core3mem15transmutabilityNtB2_6Assume3and +EXPORT_SYMBOL_GPL vmlinux 0x4d3c95be ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x4d57a36e acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x4d57e39d devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x4d57bb38 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x4d5a3119 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x4d635df8 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get -EXPORT_SYMBOL_GPL vmlinux 0x4d6d6a38 vcap_lookup_rule_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d840d7e ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x4d866d0d wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4dadab94 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x4d87d9f4 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x4d9ad3ed ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4dbce651 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x4dd4b16c rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x4db62469 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4dc5ef63 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4ddfdc1e fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de2674f device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x4de72a5c tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x4de7687a devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4def2cd0 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x4e0c84d9 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4dfd7e13 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e039fc5 __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x4e144a54 __SCT__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x4e16fda6 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e3dff8a switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x4e4bbb6b ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x4e4db2b3 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x4e523f2e usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x4e552cc3 _RNvXs3w_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18page__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e667d98 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop -EXPORT_SYMBOL_GPL vmlinux 0x4e7cf6f6 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0x4e8c2b08 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x4e843c37 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x4e8d285b devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0x4e928cf5 _RNvXsn_NtNtCs3AkgXgqgK6r_4core9core_simd5masksaNtNtB5_6sealed6Sealed2eq -EXPORT_SYMBOL_GPL vmlinux 0x4e9c93f0 dsa_stubs +EXPORT_SYMBOL_GPL vmlinux 0x4e9530c9 nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb018c0 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x4eb98817 blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0x4ebf13e4 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x4ec3870f vp_legacy_set_queue_address EXPORT_SYMBOL_GPL vmlinux 0x4ec4b0b7 _RNvMNtCs3AkgXgqgK6r_4core3f32f9next_down -EXPORT_SYMBOL_GPL vmlinux 0x4ecb0ff8 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x4ecd407e bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed2bc66 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x4edd0aeb fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x4ee68837 __SCK__tp_func_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef5f9e7 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x4ef5fe49 _RNvXs2m_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15pcpu_alloc_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x4ef75563 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize EXPORT_SYMBOL_GPL vmlinux 0x4f071806 _RNvXs3Y_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9free_areaNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x4f07ef8f _RNvXs5n_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8sigeventNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x4f0ef8a7 bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x4f135cdf power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4f19e035 vcap_tc_flower_handler_vlan_usage -EXPORT_SYMBOL_GPL vmlinux 0x4f1c39ee pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4f226f42 acpi_pci_find_root EXPORT_SYMBOL_GPL vmlinux 0x4f23163c _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter9debug_map EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2ac55e gnttab_unmap_refs_async EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2f1c43 kick_process EXPORT_SYMBOL_GPL vmlinux 0x4f3087ed _RNvXsr_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_9va_formatNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x4f38007f mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x4f4df518 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x4f499441 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x4f4b8cd5 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x4f56dafb fpu_free_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x4f57ee68 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x4f5b4ca3 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x4f669d63 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4f570fe8 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4f5b8132 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4f652598 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x4f6991b8 phy_put EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6bb5c9 pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f78c323 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4f78acc4 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x4f7a5d51 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init EXPORT_SYMBOL_GPL vmlinux 0x4f89c25c _RNvMs5_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_9DebugList5entry -EXPORT_SYMBOL_GPL vmlinux 0x4fa4d6f5 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x4f971da9 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x4fa02a6a fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x4fab3839 samsung_sdi_battery_get_info -EXPORT_SYMBOL_GPL vmlinux 0x4fad167f param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0x4fadd026 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x4fb25c35 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x4fb4f296 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax +EXPORT_SYMBOL_GPL vmlinux 0x4fb6232d ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0x4fb67739 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x4fb77777 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x4fce1857 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x4fcdd91c vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x4fcf8a33 _RNvXs1B_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13reg_1024_byteNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x4fd8eb8d usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4fd7fa6d pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fdcfe56 _RNvXNtNtCs3AkgXgqgK6r_4core5error7privateNtB2_8InternalNtNtB6_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x4fdfaccf sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ffec741 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x4fe948a5 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0x4ff91f2d tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x50029323 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x50070d53 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x500ac0dd xenbus_map_ring_valloc EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register EXPORT_SYMBOL_GPL vmlinux 0x500d4700 _RNvXs2J_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12rw_semaphoreNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x501328a3 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x501b42de get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x50241b58 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x50119287 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x501d1bab platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x5025189c fat_detach EXPORT_SYMBOL_GPL vmlinux 0x5026196a of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502d84c5 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x50363ecd mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x5036f211 _RNvXsT_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x503e5ec5 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x50405bad __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x5043b0a4 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5048b108 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x505747ce fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x505b860c page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0x505d2266 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x505fd111 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x505e6888 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x50725b15 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x50890a2f ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x50902c15 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5097c177 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x509f51aa __xenmem_reservation_va_mapping_update EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x50b29811 crypto_sig_set_privkey +EXPORT_SYMBOL_GPL vmlinux 0x50b1bba2 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb -EXPORT_SYMBOL_GPL vmlinux 0x50c225a0 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x50b6c5fe inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x50b9ca3b pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x50c9fbfd _RNvXsa_NtNtCs3AkgXgqgK6r_4core3str5errorNtB5_14ParseBoolErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x50cbf30c spi_transfer_cs_change_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x50ce28d4 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50d2fb23 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x50d77a5f _RNvXs3c_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18srcu_notifier_headNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50ecc63a hid_bpf_device_init -EXPORT_SYMBOL_GPL vmlinux 0x50f261e5 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x50f92445 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x50eb99ec blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x50ef9dfe vcap_lookup_rule_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fd9d2c xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x50fe9595 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x510821e3 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x510d455b class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x510d9f74 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x511514b5 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x511a6bf1 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x5128f7e6 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0x513514f1 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x5136467d kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x51389890 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x511c9e08 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x511dd7f5 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x51230470 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x51278c8b relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x5138d412 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x51483d70 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0x514cbbb2 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x514f4391 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x5163e1de driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x516af25d scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x5170208f _RNvNtCsbwHtcUjRN57_6kernel5ioctl9__IOC_TYPE EXPORT_SYMBOL_GPL vmlinux 0x51711c83 _RNvXs3s_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x51862e71 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x5171d1fb sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x51745271 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x51895402 dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x518eb305 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x518eea06 devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x519278c4 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x519f3a48 _RNvXs2_NtCs3AkgXgqgK6r_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator4last EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a7502e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x51bb1ad4 dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x51df5180 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x51a92893 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x51e05a10 _RNvXs2j_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_20optimistic_spin_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x51e3a368 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x51ed81da _RNvXs4J_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10rhash_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x51f9626e usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x51ff2f0a icc_provider_deregister -EXPORT_SYMBOL_GPL vmlinux 0x520ab0a8 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x520edf95 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x520448f6 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x5210ee5a edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x52213722 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522bc944 platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x522d99e9 make_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x52317c55 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x5235c7c4 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x5235cf6a nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x5239affa devl_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x523f1ec1 _RNvXs6_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impjNtB9_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5240ad4f __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0x52619122 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x526aab35 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x526b3852 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x52746fff dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x5276b070 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x5278dfde dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x527d5d2b raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x5268b91b devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52753280 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x527d7781 _RNvXs2_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB5_10DisplayInt4zero EXPORT_SYMBOL_GPL vmlinux 0x5289876f _RNvXso_NtCs3AkgXgqgK6r_4core3numjNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x528b10d1 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x528c7dde dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x52a98664 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b458c5 debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x52bb522a _RNvXNtNtNtCsbwHtcUjRN57_6kernel4sync4lock8spinlockNtB2_15SpinLockBackendNtB4_7Backend4init EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c41a68 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x52c593a0 _RNvXsD_NtNtCs3AkgXgqgK6r_4core3str7patternNtB5_10SearchStepNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x52ca9e35 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x52cf6210 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x52cc809a devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dca3d0 md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x52f69839 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x52f314a1 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x52fa3f42 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x530a948f ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5312cba1 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x5318d129 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x53194eb6 vcap_is_last_chain +EXPORT_SYMBOL_GPL vmlinux 0x531abaf8 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x531b59c5 sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0x531ce8fe _RNvXs37_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_6u16x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x53284e1f usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533e8b00 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x534a4f5b platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x534a528a net_failover_destroy EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535ad018 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x535ffa93 _RNvXsl_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3imptNtB9_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5362742e dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x5364a26b _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter5flags -EXPORT_SYMBOL_GPL vmlinux 0x537b9865 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x538136bd usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x536cde17 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x53786afc icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x537c70d7 pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x5388b1a0 amd_get_dr_addr_mask EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5390e650 __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x539279fe ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x539280b6 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x539e8cca usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x539c7c68 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53ab99d9 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x53a8ee6b amd_iommu_is_attach_deferred EXPORT_SYMBOL_GPL vmlinux 0x53ac7119 _RNvXs4_NtCsbwHtcUjRN57_6kernel5errorNtB5_5ErrorINtNtCs3AkgXgqgK6r_4core7convert4FromNtNtNtBO_5alloc6layout11LayoutErrorE4from EXPORT_SYMBOL_GPL vmlinux 0x53b6b413 _RNvXs3_NtNtCs3AkgXgqgK6r_4core5slice5asciiNtB5_11EscapeAsciiNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x53bcb4c6 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53ed0ad2 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x540df823 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x53f4fb78 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x53f8d3ca get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x53f90ca3 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x53fa773b ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x540235d5 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x540c511d skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x5417f9ae _RNvXsh_NtCs3AkgXgqgK6r_4core4cellNtB5_14BorrowMutErrorNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x54187275 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x541ab250 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5420fbc8 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 EXPORT_SYMBOL_GPL vmlinux 0x543be315 _RNvXs3p_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i8x32NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5448d598 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x543de3db __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x54449b00 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5445da41 da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x544d5aa6 _RNvXs1U_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_11EscapeDebugNtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x545032d7 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x545e727f thermal_zone_device_id EXPORT_SYMBOL_GPL vmlinux 0x545f1cb3 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x5461470b rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x54630c70 skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x54636a41 _RNvXsC_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_18ddebug_class_paramNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5484086f iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x54858db9 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x5486e7f1 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x548fbc7f __SCK__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x548fc266 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54707dbf tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x547565e2 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x54782c66 ata_scsi_slave_alloc +EXPORT_SYMBOL_GPL vmlinux 0x548f0bd5 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549c45c9 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x54978459 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x54a1c3d5 tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x54a31452 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x54a597eb sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x54ab7be8 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x54b05e99 _RNvXs1E_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18avx_512_hi16_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x54bd48b4 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x54bea854 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x54cd494c smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x54d3c3b2 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x54ced07f crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x54d3f37d _RNvNtNtCs3AkgXgqgK6r_4core3str5count14do_count_chars -EXPORT_SYMBOL_GPL vmlinux 0x54e0b7ca __tracepoint_console +EXPORT_SYMBOL_GPL vmlinux 0x54dede30 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x54e6f5f6 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x54ea7fff _RNvXs50_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10plist_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x54eaea28 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x54efd28e pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x54efffac md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x54f7d653 devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x54fa24d7 _RNvXs23_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i16x8NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x54fb401d kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x54fea0c8 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x5500cdf7 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x550b3f9a devres_get EXPORT_SYMBOL_GPL vmlinux 0x550c17c4 __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x550e83ed __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5517f03d xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x55181872 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5533294e nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x5516d31b of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x5535e51c wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x55376309 devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55422ace devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x554758c0 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x55507bd8 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5546077a phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x55535236 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x5561016d is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x55649a26 _RNvXs5e_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_38___sifields__bindgen_ty_5__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x55655478 ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x55658098 _RNvXsX_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB7_8UpperHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x556e9d4c register_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x556f24b7 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5586fc51 dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x55a71b58 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x55b5d711 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x558c4bde regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5594c671 put_device +EXPORT_SYMBOL_GPL vmlinux 0x55b25229 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x55c23f89 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55cf21b0 acpi_bind_one EXPORT_SYMBOL_GPL vmlinux 0x55d6468e ftrace_ops_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x55e1d40f _RNvXsa_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0x55e72a04 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter10sign_minus +EXPORT_SYMBOL_GPL vmlinux 0x55ee52e5 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x560262ea _RNvXs5z_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_22k_itimer__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x56058ba1 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x560ed7d4 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x5624f826 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56288e0f device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563153d9 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x563375e7 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x5635b19a acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x564e2823 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x5657137f devl_params_register -EXPORT_SYMBOL_GPL vmlinux 0x56592d0e ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x565a7a4f rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x564680c6 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x565355a1 serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x5665ef87 _RNvMs_CsbwHtcUjRN57_6kernelNtB4_10ThisModule8from_ptr +EXPORT_SYMBOL_GPL vmlinux 0x56740c64 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x567493c1 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x567a9fac __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x5685f846 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x568de2ca apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x568c66ef md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x56a5f714 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x56a5fa61 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x56a622c8 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x56a947f2 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0x56b2ff76 _RNvXs3b_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_17raw_notifier_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x56bb0fa6 blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0x56ce9bcb _RNvXsg_NtCs3AkgXgqgK6r_4core3fmtcNtB5_5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x56e727f6 dev_pm_opp_config_clks_simple -EXPORT_SYMBOL_GPL vmlinux 0x56f44157 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x56fa0df2 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x56dfb7a5 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x56f90b01 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x570258bc i2c_acpi_new_device_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5711d493 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x57030f97 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x57132009 irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0x5719025f virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x57158430 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5722ce75 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x57246a7d dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0x5727da36 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x573412ab relay_close +EXPORT_SYMBOL_GPL vmlinux 0x572da32f nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x573182ab dma_pci_p2pdma_supported EXPORT_SYMBOL_GPL vmlinux 0x573f62f9 _RNvXs6_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x57442531 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574ad92f spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x574e4449 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x57554b9f devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x57648cb7 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x57697dcf sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x576c873a wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x575663d5 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x57616f91 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x576376d8 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x57639da6 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5768e0d7 dm_hold EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x5774abab xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x577c7445 fb_sys_read EXPORT_SYMBOL_GPL vmlinux 0x5785985e _RNvMs8_NtCs3AkgXgqgK6r_4core3numo14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0x57861a5c gds_ucode_mitigated +EXPORT_SYMBOL_GPL vmlinux 0x578b7a7c msi_device_has_isolated_msi EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579256e1 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x579a93df _RNvXse_NtCsd8lEp9MQdN2_5alloc11collectionsNtB5_19TryReserveErrorKindNtNtCs3AkgXgqgK6r_4core3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x579effee __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x57a658a4 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x57a73d5c iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0x57ad9d65 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x57c0b192 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x57c2fba9 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x57b7e63e vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x57bb2cca pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x57c7c9cc usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x57d16b7a fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d6351e fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase EXPORT_SYMBOL_GPL vmlinux 0x57ddc4ac subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x57e9f8ca ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x57edca29 ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x58016509 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x5806cf16 register_btf_fmodret_id_set -EXPORT_SYMBOL_GPL vmlinux 0x580f1b80 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x5821e8af ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x582326c5 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x57fd74f2 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x581a90d4 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x581b94f3 __devm_regmap_init_i2c EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause -EXPORT_SYMBOL_GPL vmlinux 0x582ce367 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x582a9143 nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock EXPORT_SYMBOL_GPL vmlinux 0x5836b71b rust_helper_refcount_dec_and_test -EXPORT_SYMBOL_GPL vmlinux 0x583bb726 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x583d6d7a lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x5840c8ad tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x58416ee7 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x5844ab5e usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x58415942 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58453f55 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x58517045 _RNvXs1t_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB8_8UpperExp3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5852e5db proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x58702418 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x58878ff2 fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x588dcd6d __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x589d8b05 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x587c59ab devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x58800dcf tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x588173e2 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5888e7d0 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x588aaebf genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x58978767 usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0x58a2fcaa __SCT__tp_func_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x58b2e1ce usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x58a67053 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x58a965a8 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x58b901e0 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x58baeb29 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x58c703cc ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x58cf5c5d pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x58bf8639 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x58c0f6f4 vcap_tc_flower_handler_cvlan_usage +EXPORT_SYMBOL_GPL vmlinux 0x58d159f2 dev_pm_genpd_synced_poweroff EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x58dae78f spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e6945b vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x58e6efc6 _RNvXs4V_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8shmid_dsNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x58fd8e5f vcap_chain_offset +EXPORT_SYMBOL_GPL vmlinux 0x59000b74 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x590228b5 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x5906148f _RNvXs0_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0x590be1b1 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x590dec43 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x590f7d42 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x5916b5f2 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x591838eb pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x59233c6b bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x5928dd27 blk_crypto_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x592d1ad4 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x5920f0bb ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5935746d phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x593b7ae3 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x593dfe07 xenbus_dev_is_online EXPORT_SYMBOL_GPL vmlinux 0x5949bc4b alloc_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x594ddd8d __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x59519d71 alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x595dc401 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x5965c2af bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5976d98d spi_setup EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598ebf0c devl_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x599200df ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x599578df put_device -EXPORT_SYMBOL_GPL vmlinux 0x599a86ad crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x599e3733 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x599c5f14 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x599d3357 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x59a2f270 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x59a36c41 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x59af9ce4 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59c0c546 vcap_keyset_name EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59d0a04e _RNvXs6_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB5_10DisplayInt4zero EXPORT_SYMBOL_GPL vmlinux 0x59d10f9a _RNvMs6_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_8DebugMap6finish -EXPORT_SYMBOL_GPL vmlinux 0x59d3ac5c mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x59e16e46 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x59e4d49b preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x59ed52f3 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f7326d shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x59f807dd devl_register EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x5a0bc778 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x5a14e41c edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x5a17d523 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5a12fb3b xen_xenbus_fops EXPORT_SYMBOL_GPL vmlinux 0x5a18bc9e _RNvXsj_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_23alt_instr__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x5a2bf1e6 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x5a39d43f virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x5a442879 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x5a241f34 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x5a25068c adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5a301771 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5a310e27 dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4b3d24 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x5a530120 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5a61f915 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0x5a62c457 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x5a67937e nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x5a6a76f8 unwind_get_return_address EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a72d0ba _RNvXNtNtCs3AkgXgqgK6r_4core3fmt7nofloatfNtB4_5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5a7779d0 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5a7c4007 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3str5errorNtB5_9Utf8ErrorNtNtB9_5error5Error11description -EXPORT_SYMBOL_GPL vmlinux 0x5a9a88dd is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x5aa20063 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x5a8d0f81 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a976ec7 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a9c710d inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aa8c6f2 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x5aa9d4c3 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5aea49b0 relay_open EXPORT_SYMBOL_GPL vmlinux 0x5af127fc pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x5b12cdcc gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x5af33ab1 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x5afc722e __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x5b0f050a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x5b1bde18 crypto_alloc_sig EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b21e686 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x5b227ba7 unwind_next_frame EXPORT_SYMBOL_GPL vmlinux 0x5b250c6e _RNvXsl_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_7___m256iNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5b2a1a55 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x5b30de55 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x5b32285e fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5b3de0ee usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x5b4b5f85 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5b370273 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x5b37582d tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x5b48369a gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x5b4bb7b8 _RNvNtCs3AkgXgqgK6r_4core6result13unwrap_failed EXPORT_SYMBOL_GPL vmlinux 0x5b510078 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x5b53ced0 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5b708c9e inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x5b73ea28 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x5b74040c __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x5b523339 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x5b56b4a2 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5b7711cd tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x5b7bdc51 _RNvXs46_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_4zoneNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x5b83807b __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x5b941bf6 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x5ba3db83 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x5ba8785c mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x5b901d0c __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x5b955c8b to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x5b95f310 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x5b9bf04a xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bbb49d8 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5bbb912a fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0x5bbfe50c _RNvMsc_NtCsbwHtcUjRN57_6kernel3strNtB5_7CString12try_from_fmt EXPORT_SYMBOL_GPL vmlinux 0x5bc12a5b _RNvXs1b_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB8_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5bc91c1b gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdf04a3 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x5be34a38 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x5be3aae4 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x5be50bfb _RNvXs2z_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13maple_topiaryNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x5beb337e devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x5bf9860e dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x5bff9b41 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str -EXPORT_SYMBOL_GPL vmlinux 0x5c0b3843 pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x5c1247c6 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x5c13dd70 bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0x5c14d3ed param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x5c12ed00 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x5c16117d _RNvXs9_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5c173ca4 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x5c1885cc __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x5c2aa3a7 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c3d8253 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x5c461b6a crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x5c33e224 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x5c372568 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x5c41da2c fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x5c475a98 extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0x5c4acce0 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x5c4fcb1c dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x5c564679 acpi_subsys_poweroff EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c6a96c4 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x5c6ab05c fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x5c72f518 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x5c7b6b50 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x5c796670 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5c8066b8 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x5c8cbd64 device_create +EXPORT_SYMBOL_GPL vmlinux 0x5c945a7f devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c9acb28 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5ca5b5df dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cac0474 fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cafa662 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x5cba4487 _RNvXs3_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x5cc642d8 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5cd19241 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5cd867a7 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5ceb9679 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x5cd43d66 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x5cebd216 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x5ceddd8c __devm_add_action EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf94319 pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x5d0113e0 x86_pred_cmd EXPORT_SYMBOL_GPL vmlinux 0x5d0f09fe wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d1ea8dc get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x5d288d30 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm EXPORT_SYMBOL_GPL vmlinux 0x5d331a09 _RNvMs0_NtNtCsbwHtcUjRN57_6kernel4sync7condvarNtB5_7CondVar3new -EXPORT_SYMBOL_GPL vmlinux 0x5d374159 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x5d362008 pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0x5d377b2b snp_issue_guest_request -EXPORT_SYMBOL_GPL vmlinux 0x5d46f54a simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x5d5d4299 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x5d60fb70 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x5d3af6b1 direct_write_fallback +EXPORT_SYMBOL_GPL vmlinux 0x5d3d488c dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x5d517bf0 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x5d66a498 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x5d684628 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x5d6f2ed0 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x5d7600b4 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x5d77d9fb mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x5d7ad839 _RNvXs4j_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_12NonZeroUsizeNtNtNtBa_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d84a3a8 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq -EXPORT_SYMBOL_GPL vmlinux 0x5d957a78 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x5d9ca46c metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5da0a459 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da70f13 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x5da780df _RNvXs29_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i32x4NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x5da8171a _RNvMs0_NtCsbwHtcUjRN57_6kernel4taskNtB5_4Task7wake_up EXPORT_SYMBOL_GPL vmlinux 0x5db3a7f4 _RNvXsx_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_6___m512NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x5db80a6e __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x5db9eda8 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid EXPORT_SYMBOL_GPL vmlinux 0x5dbd6c27 _RNvXs3d_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u32x8NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5dcb7d74 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5dcbba7e dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x5dce98f4 _RNvXs_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3imphNtB8_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x5dceedf1 _RNvXsl_NtNtCs3AkgXgqgK6r_4core4hash3sipNtB5_11Sip13RoundsNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x5dd52197 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x5dd86fa2 register_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x5de27ee5 _RNvXsv_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5de50afe ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x5dee2bba rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5df0ec1c sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x5df156d7 _RNvXs_NtCs3AkgXgqgK6r_4core5allocNtB4_10AllocErrorNtNtB6_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x5df1f8c5 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x5e11c3af pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5df45faf ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5df596fc inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5df636ee dsa_stubs +EXPORT_SYMBOL_GPL vmlinux 0x5dfb3e7d dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1810eb blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x5e24d34f dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x5e2c2560 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x5e2cd89a __traceiter_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x5e34719d _RNvXs3_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB5_10DisplayInt7to_u128 EXPORT_SYMBOL_GPL vmlinux 0x5e48beb2 _RNvXs3_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e81ce86 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x5e848604 invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e886f66 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x5e8917f6 _RNvXs3I_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15page_frag_cacheNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x5e8c8812 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e8ccbaa platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x5e9d6aa2 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x5ea747e9 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5ec08969 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x5ed71b84 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x5edcdb8a vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0x5eb089fb devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5ed5a99a irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5ed86372 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x5edf9d72 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5ee09448 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5ee6606c pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x5ef021c0 iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5ef7b390 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x5ee59744 ohci_setup EXPORT_SYMBOL_GPL vmlinux 0x5ef9d674 _RNvXs5_NtCs3AkgXgqgK6r_4core4timemINtNtNtB7_3ops5arith3MulNtB5_8DurationE3mul -EXPORT_SYMBOL_GPL vmlinux 0x5f02eca7 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x5f069d87 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x5f135c51 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x5f141e59 trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x5f1626c9 _RNvXs3z_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_61folio__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x5f183874 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x5f1a17e5 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5f186453 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x5f1ad885 rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f2d309a gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5f2831c2 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f2de046 fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x5f41fdb0 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x5f46322f phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x5f46925e evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x5f4b96ca of_css +EXPORT_SYMBOL_GPL vmlinux 0x5f3ce193 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x5f6827cd fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x5f6e7fac irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private EXPORT_SYMBOL_GPL vmlinux 0x5f74c675 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x5f74cda9 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x5f90b21b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5f91a304 usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0x5f9ce2d5 _RNvXs15_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB8_8UpperHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fab8684 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x5fab99a5 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x5fadc180 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x5fb41455 _RNvXs7_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5fb66914 da9055_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x5fb72960 _RNvXs1H_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12fpregs_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x5fc8cde6 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x5fba77fc thermal_cooling_device_update +EXPORT_SYMBOL_GPL vmlinux 0x5fd877eb device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x5fdc0c7e xenbus_frontend_closed EXPORT_SYMBOL_GPL vmlinux 0x5fdf7b32 smca_get_bank_type EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt EXPORT_SYMBOL_GPL vmlinux 0x5fe3fb4d driver_create_file EXPORT_SYMBOL_GPL vmlinux 0x5feaddff _RNvXs49_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_14deferred_splitNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x5ff0f4a5 pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x5ff7f38e fpu_update_guest_xfd -EXPORT_SYMBOL_GPL vmlinux 0x5ff9cad6 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x5ffb1f54 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x60054716 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60099a52 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x6009b52d usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x600fce14 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x6027f212 _RNvXsb_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0x60311182 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x603cd603 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x602a0dd5 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604af39a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x604c369a vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x60503c7f _RNvNvMNtNtCs3AkgXgqgK6r_4core3ptr9alignmentNtB4_9Alignment13new_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0x60516670 __intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0x6057846c cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x605bfaec _RNvXs7_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x606b42bd usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x607093a8 xhci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x607c632b scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x608c7432 intel_cpu_collect_info EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6090054e pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6098c727 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x609aecae ping_err +EXPORT_SYMBOL_GPL vmlinux 0x609430ee generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x6099078c fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x609c6104 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a7ddcf ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x60a439c5 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x60a74ef6 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x60adc7f7 blk_crypto_has_capabilities EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri EXPORT_SYMBOL_GPL vmlinux 0x60b72f48 _RNvNvMsx_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_12NonZeroUsize13new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x60bd8ae2 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x60c43f4c of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x60dbf359 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x60ca81c4 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x60d8f7d0 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x60e6963b _RNvXsp_NtNtCs3AkgXgqgK6r_4core9core_simd5maskssNtNtB5_6sealed6Sealed2eq EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x610291a5 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x61058181 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x610a649c dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x611281b3 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x61159d48 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x611f20f8 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x612225bd dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x6125cb53 _RNvXs8_NtCsbwHtcUjRN57_6kernel3strNtB5_12RawFormatterNtNtCs3AkgXgqgK6r_4core3fmt5Write9write_str -EXPORT_SYMBOL_GPL vmlinux 0x6128700b devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status EXPORT_SYMBOL_GPL vmlinux 0x6133cfd4 _RNvXs_NtNtCs3AkgXgqgK6r_4core5panic10panic_infoNtB4_9PanicInfoNtNtB8_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x613c91a2 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x6137383d dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x613dd3b8 vring_create_virtqueue_dma EXPORT_SYMBOL_GPL vmlinux 0x6149606b _RNvMNtNtCs3AkgXgqgK6r_4core3num3fmtNtB2_4Part5write +EXPORT_SYMBOL_GPL vmlinux 0x614de19f dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x6159db5b bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0x616b84f2 _RNvXs3i_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11uprobe_taskNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x616e9f5a virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x61809325 xhci_resume EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x61853c74 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x6194fdf0 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619b7bee cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x61b15085 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x61a56e30 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61b2cc24 regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x61b4d274 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x61cdd921 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x61c5a787 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x61ce06f1 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0x61d2472c devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x61dd87f5 _RNvXs6_NtCsbwHtcUjRN57_6kernel5errorNtB5_5ErrorINtNtCs3AkgXgqgK6r_4core7convert4FromNtBM_10InfallibleE4from +EXPORT_SYMBOL_GPL vmlinux 0x61f090d0 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x61f09606 component_add EXPORT_SYMBOL_GPL vmlinux 0x61f1644b mas_find_range -EXPORT_SYMBOL_GPL vmlinux 0x61f281c6 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x61f4918b _RNvXs1_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB5_10DisplayInt7to_u128 EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fd6763 __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x61fd6b96 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x6213082b fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x621a0f20 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x622a8880 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x61ffbbbe usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x620e36ca usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x621fe463 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x6225a539 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6232e171 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x6235f30a kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6240de0d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62447ab1 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x62529428 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6249cf18 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6253e360 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context EXPORT_SYMBOL_GPL vmlinux 0x625abbf6 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter9sign_plus -EXPORT_SYMBOL_GPL vmlinux 0x626d65ac vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x6288c123 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x6289834e crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0x6279b5a0 devm_hte_register_chip EXPORT_SYMBOL_GPL vmlinux 0x6298a008 _RNvXsa_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB5_10DisplayInt6to_u64 EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0x62ad1ef9 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x62a8e624 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x62b56901 _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings4CRIT EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift EXPORT_SYMBOL_GPL vmlinux 0x62c32d74 _RNvXs9_NtCs3AkgXgqgK6r_4core5errorNtNtB7_4cell14BorrowMutErrorNtB5_5Error11description -EXPORT_SYMBOL_GPL vmlinux 0x62d5866c serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x62c745f0 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x62cc4827 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x62d74410 _RNvMNtNtCs3AkgXgqgK6r_4core5panic10panic_infoNtB2_9PanicInfo7payload -EXPORT_SYMBOL_GPL vmlinux 0x62dcb11a dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x62fd79ed blk_crypto_intersect_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x62fe1313 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x62d83eb0 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x62e53ba5 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x62ffda6f strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x63141af0 kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6317d63f genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631d2eb4 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6328d638 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x633ea71c devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x634b6f09 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x634b7779 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x63585925 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6352c594 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x635524f7 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x636751b8 hv_set_non_nested_register EXPORT_SYMBOL_GPL vmlinux 0x63695a43 _RNvXs1L_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u32x4NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6378f7b3 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x637ac92b _RNvXsW_NtNtCs3AkgXgqgK6r_4core3str7patternNtB5_14TwoWaySearcherNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x637cbafd dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x637eb138 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x6384918d pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x6389aff6 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x639270cf lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x639b6dfa _RNvXsq_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impjNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x63af5c54 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x639b8245 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x639f75fc blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x63a7b708 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x63a7dcbc wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x63b57ae5 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x63c07532 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63d1263a dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x63d16d88 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x63c22259 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x63c49254 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x63d3b0c1 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x63d4ff81 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x63de7258 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x63e5cc14 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x63e7fe50 _RNvXsp_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_4i8x4NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x63e9ee4d hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63ec8322 extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0x63f3294e devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x63f46041 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x63f9fb54 _RNvXs15_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10pv_mmu_opsNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x6403a28f icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x64091fdc wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x640f0876 _RNvNtCsbwHtcUjRN57_6kernel5print16call_printk_cont +EXPORT_SYMBOL_GPL vmlinux 0x6416e4b1 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x641a71dd acpi_match_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0x641d677f spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x642662ad sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x64278474 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x6428bf85 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x6430db00 _RNvXs0_NtNtCs3AkgXgqgK6r_4core4char6decodeNtB5_16DecodeUtf16ErrorNtNtB9_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x643c1602 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x643a7738 dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0x643de062 _RNvMNtCs3AkgXgqgK6r_4core3f64d16partial_classify -EXPORT_SYMBOL_GPL vmlinux 0x6441b2b1 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x643f20fd sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x643f6926 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x6447f381 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x6457c7fb _RNvXs1i_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7cpumaskNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x645ea9c0 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x6465df0f pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x64687b91 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x6473a856 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x647a28ce desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x64655518 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x647a0d20 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x6485cc22 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert EXPORT_SYMBOL_GPL vmlinux 0x64958bf1 _RNvNvMNtCs3AkgXgqgK6r_4core3f64d7to_bits13ct_f64_to_u64 +EXPORT_SYMBOL_GPL vmlinux 0x64a176a8 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x64a262e7 _RNvXs2R_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_20system_time_snapshotNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64a99bca scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0x64bebafd _RNvXs2_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0x64c36757 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x64d5f996 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x64d80acb fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x64df1e4f ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x64cdb11a __SCK__tp_func_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x64de6496 xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64f23dc4 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x64e70da5 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x64f8a45e _RNvXsh_NtCs3AkgXgqgK6r_4core3fmtcNtB5_7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x65056ee1 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x652c34d9 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x652ab1d9 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x653b70c4 blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x6540de51 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x6534e90d sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x653660da blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x653dbee7 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x65461e25 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x654ba130 _RNvMNtCs3AkgXgqgK6r_4core3stre12escape_debug EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x655d5437 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x656340cb inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x6558c65a dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x655bcdc0 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x655eb692 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x656faf5e usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup EXPORT_SYMBOL_GPL vmlinux 0x65775980 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65934aa8 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x658d5679 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x659c17f3 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x65a8ed67 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x65bee372 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x65ba5f60 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x65bca348 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x65bd645f rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x65c8aa9f crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x65ca3398 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers EXPORT_SYMBOL_GPL vmlinux 0x65d39633 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter9write_str -EXPORT_SYMBOL_GPL vmlinux 0x65d69d78 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x65eb2fe0 device_create -EXPORT_SYMBOL_GPL vmlinux 0x65f1ca7c vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x6602f5dd regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x65d49b0b __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x65ed2e8d dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x65f09c6b of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65fac136 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66174434 xdp_set_features_flag +EXPORT_SYMBOL_GPL vmlinux 0x661fbddd gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x662030c7 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x6628e9a8 _RNvXsD_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x662c751f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x663266be ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x665351d0 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x66540742 devl_register EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6666a48a blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0x666aa380 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x666173bb peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x666f5868 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x66793a67 _RNvXs2u_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_42maple_range_64__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x667ad21c wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x667ee398 _RNvXs7_NtNtCs3AkgXgqgK6r_4core4char7convertNtB5_16CharTryFromErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x66819793 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x6682d7e4 dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66950abb vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x669f7c21 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x669743d2 iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x66a6486b _RNvXs7_NtNtCs3AkgXgqgK6r_4core3mem15transmutabilityNtB5_6AssumeNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x66b34c51 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66bacf77 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x66c346a7 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x66d45a2f vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x66d5e6fc crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66da0414 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x66df5ef6 of_pse_control_get -EXPORT_SYMBOL_GPL vmlinux 0x66df80e8 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x66e85996 iomap_get_folio -EXPORT_SYMBOL_GPL vmlinux 0x66efaec3 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x66f07cc8 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x6703e653 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x66e59a42 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x66f149b6 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x66f3a232 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x67014e52 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x6703867e skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices +EXPORT_SYMBOL_GPL vmlinux 0x6712ee0d pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x671539f0 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x671c27d0 nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x672108c2 _RNvXsb_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3imptNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6731f747 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x672df6ac dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target EXPORT_SYMBOL_GPL vmlinux 0x673a65ea _RNvXs1_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_15TryFromIntErrorINtNtB9_7convert4FromzE4from -EXPORT_SYMBOL_GPL vmlinux 0x674a55de inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x673bd695 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x673c1570 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x673c4dd5 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x673e7e22 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x67588254 phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x6761a47f pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x6764bfbf blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x6768768a _RNvMs0_NtCsbwHtcUjRN57_6kernel4taskNtB5_4Task3pid EXPORT_SYMBOL_GPL vmlinux 0x677c69f1 make_vfsgid +EXPORT_SYMBOL_GPL vmlinux 0x677dc590 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x677f84f4 ping_hash EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6789fd8b ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x678c6ac2 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x67807428 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6788f3f2 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x678fced0 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679c944c pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x67b684e3 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x679d6137 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x67ab034a acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x67b6d467 devm_clk_get_optional_prepared EXPORT_SYMBOL_GPL vmlinux 0x67baa56f platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x67bc558c spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67c50d14 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x67c80034 _RNvMNtCs3AkgXgqgK6r_4core3f64d13classify_bits -EXPORT_SYMBOL_GPL vmlinux 0x67d98d41 walk_hmem_resources +EXPORT_SYMBOL_GPL vmlinux 0x67d40ee5 __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67ded9f1 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x67e12fa2 _RNvXs4_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0x67f14933 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x67fc190a devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x67fdc2e0 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x67f9920e nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x68076c98 _RNvXsg_NtNtCs3AkgXgqgK6r_4core4task4wakeNtB5_14RawWakerVTableNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6807c2ab shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x680c7236 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6812fd05 extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0x6815bec2 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x6819ac0c sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister +EXPORT_SYMBOL_GPL vmlinux 0x682b2797 __bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68309bb0 devl_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6839a3c9 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x683baacc em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x683f97d8 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x68435de0 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x683f0732 acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x684c9ab4 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x684e369d nvdimm_region_delete -EXPORT_SYMBOL_GPL vmlinux 0x685136a9 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x6855e091 __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0x684cd14c crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x68650c57 xhci_drop_endpoint EXPORT_SYMBOL_GPL vmlinux 0x68709c2a _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings5EMERG EXPORT_SYMBOL_GPL vmlinux 0x687fda9d _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data2cc6lookup EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a0502e sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x68a527b7 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x68ac7e65 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x68b1e128 _RNvXs2f_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16hlist_nulls_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x68b5d478 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x68b2e570 dev_pm_opp_get_max_volt_latency EXPORT_SYMBOL_GPL vmlinux 0x68cd48d1 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x68cd6052 _RNvXs7_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x68d5a028 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x68e4b683 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x68e665be __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x6900686f vcap_find_actionfield -EXPORT_SYMBOL_GPL vmlinux 0x690ef01b usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x690c4301 devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x691b9877 _RNvXs2D_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_38maple_node__bindgen_ty_1__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0x692f3255 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x692b101a gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x6931cab5 _RNvXs3_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6932469f dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x693c9e6f dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x693a1b0f edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x69429fc5 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x694c163b devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0x695776c5 seq_buf_do_printk -EXPORT_SYMBOL_GPL vmlinux 0x695c3bae tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x6957b3c1 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6961959b irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x6968e174 _RNvXs1v_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15class_irqsave_tNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x6973f653 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x697a92c4 vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697db61d genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x698043b6 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x697dd09c sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0x6980ce15 _RNvXsv_NtCs3AkgXgqgK6r_4core4charNtB5_13EscapeDefaultNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x698111ad genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0x698334c1 _RNvXs2_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0x6984de5e device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x698b95c8 devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0x69a0f5d1 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x69874ac6 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x6990b307 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x69952b99 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x699a4565 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x69a575c0 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x69a895f1 nvdimm_region_delete EXPORT_SYMBOL_GPL vmlinux 0x69b93687 _RNvXs4_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0x69c5ce1a vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x69cd0702 netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr EXPORT_SYMBOL_GPL vmlinux 0x69d5b810 pwm_lpss_bsw_info -EXPORT_SYMBOL_GPL vmlinux 0x69d6d742 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x69d8c233 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x69d914c8 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f59586 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x69feeade dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x69ef4488 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x69f36247 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x69f3c271 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a046dbe blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier EXPORT_SYMBOL_GPL vmlinux 0x6a17a731 _RNvXs52_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15timerqueue_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x6a20c2b8 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0x6a34fe4b _RNvXs1F_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u16x8NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x6a350561 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x6a3745e6 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6a396299 blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4e0fa2 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x6a4e207c _RNvXsf_NtCs3AkgXgqgK6r_4core3fmteNtB5_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6a4f5124 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize EXPORT_SYMBOL_GPL vmlinux 0x6a572cc3 _RNvMNtNtCs3AkgXgqgK6r_4core5slice5asciiSh14trim_ascii_end -EXPORT_SYMBOL_GPL vmlinux 0x6a5eb6c9 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x6a66c281 acpi_dev_ready_for_enumeration -EXPORT_SYMBOL_GPL vmlinux 0x6a693ed9 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x6a71a1d6 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x6a793061 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x6a82d3f2 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x6a6f6a0d __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x6a7abfb7 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a866362 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x6a845316 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x6a856460 __xenmem_reservation_va_mapping_update EXPORT_SYMBOL_GPL vmlinux 0x6a877141 _RNvXs3_NtCs3AkgXgqgK6r_4core5asciiNtB5_13EscapeDefaultNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6a9e1d59 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa14b40 devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aaac96a __iptunnel_pull_header EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via EXPORT_SYMBOL_GPL vmlinux 0x6ac0e1a3 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x6ad2a455 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x6ac8c626 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x6acf747c netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x6adc2e85 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x6adf9a4d dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x6aec7c09 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x6aef213f posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6af07128 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x6af75e56 _RNvXNtNtNtCsbwHtcUjRN57_6kernel4sync4lock5mutexNtB2_12MutexBackendNtB4_7Backend6unlock -EXPORT_SYMBOL_GPL vmlinux 0x6b00088c rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0e460b usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read -EXPORT_SYMBOL_GPL vmlinux 0x6b2b5773 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x6b37a012 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x6b365f2d extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3d1441 __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b447063 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x6b48dec9 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x6b4990a1 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x6b4cb156 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x6b54bb86 _RNvXs5_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_15TryFromIntErrorNtNtB9_5error5Error11description EXPORT_SYMBOL_GPL vmlinux 0x6b5e75c3 _RNvNvNtNtNtCs3AkgXgqgK6r_4core9core_arch3x864sse219__mm_srli_si128_impl4mask +EXPORT_SYMBOL_GPL vmlinux 0x6b6f236d cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6b728741 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x6b78f1a0 rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b7cab6c regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b84ad6a rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x6b8961b1 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x6b9ad3e3 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b9fca69 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x6b8ac42d sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x6b97bd53 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x6b997c79 iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0x6ba15421 _RNvXs8_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0x6ba2395c fat_attach EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bab42a9 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x6bbbe4c6 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x6bc2160b irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6bc57a12 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bd4d90d _RNvXs3A_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_47folio__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x6bd827db usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x6bd95cf0 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6bdf2e9d skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x6be32967 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6beec238 msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0x6bf042a1 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x6bfcfffe ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x6c0c342e dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6becd00e crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6c0a4308 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6c1047a8 xenbus_watch_path EXPORT_SYMBOL_GPL vmlinux 0x6c108fe7 _RNvXs3C_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_19folio__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x6c12632c edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6c125c8a rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c2221d6 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6c3231e3 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x6c21a72a blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x6c22bafa kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x6c24aa3f ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x6c2a22c4 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6c2fbe1d devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3f32fa virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x6c3a5cbb pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6c3d821e fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c43ccc1 _RNvXs3u_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_4NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5d7122 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c683415 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x6c7689c1 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x6c79baf0 _RNvXs1_NtCs3AkgXgqgK6r_4core4charNtB5_13EscapeUnicodeNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work -EXPORT_SYMBOL_GPL vmlinux 0x6c904f93 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x6c94c0ae __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x6c94d8cf do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x6c953bfb pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6c974d2e irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x6c8485c2 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x6c8a6b21 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6c8b6f89 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x6c90bf0d fscrypt_fname_encrypted_size EXPORT_SYMBOL_GPL vmlinux 0x6ca34c91 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb1b89f cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x6cb49fe6 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x6ca4c91b crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x6ca55c8c crypto_akcipher_sync_prep EXPORT_SYMBOL_GPL vmlinux 0x6cb5f319 __rg_alloc EXPORT_SYMBOL_GPL vmlinux 0x6cc07a20 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x6cde22f3 _RNvXs_NtNtCs3AkgXgqgK6r_4core3num5errorNtB4_15TryFromIntErrorNtNtB8_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6cea4785 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x6ce47b20 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6ce52f4b disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x6cf38d4b fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6cf967bd register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x6cfab41a xen_hvm_evtchn_do_upcall EXPORT_SYMBOL_GPL vmlinux 0x6cfc963f _RNvXs5x_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15posix_cputimersNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x6cfec108 irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0x6cfed734 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d04aaaa skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x6d0520da devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0d949b kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x6d14d323 pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0x6d1ca43d devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x6d2054ad agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x6d20cbf3 fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d334123 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi -EXPORT_SYMBOL_GPL vmlinux 0x6d649aa6 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0x6d6e13a7 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6d6dead6 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d728beb inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x6d7bb336 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x6d7b4fe0 dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d7fa616 backing_file_real_path -EXPORT_SYMBOL_GPL vmlinux 0x6d9dfb6e vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x6da431f9 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x6da429c4 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x6da9ca52 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x6db68eae pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc28865 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x6dc3275b blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x6dc8b497 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x6dc13dfd __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6de2db75 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x6ded805d ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x6df80ec4 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x6e1455db mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x6de74009 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6e02701c regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6e13d1a6 rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x6e1edb59 _RNvXs1c_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB8_8LowerHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x6e20df6f _RNvXs8_NtCs3AkgXgqgK6r_4core3ffiNtB5_6VaListNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x6e27879f rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x6e2b0662 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x6e351fa0 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4f80a5 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x6e560bcb dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x6e57e392 ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0x6e5a9d83 _RNvXsQ_NtNtCs3AkgXgqgK6r_4core3str7patternNtB5_11StrSearcherNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6e5f170c blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x6e64b259 ip_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x6e64dd3e fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x6e6c14d6 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6e704788 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x6e73bfe6 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x6e65edee __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e8005f7 _RNvXs5A_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_36k_itimer__bindgen_ty_2__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8dccc0 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x6e90fb0c phy_init EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x6e94d872 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x6e96aef9 user_read EXPORT_SYMBOL_GPL vmlinux 0x6e976093 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x6e9b6280 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6e9e339f strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x6ea12d4b devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ea78757 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x6eaf4665 l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x6eaff3c8 badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec0c334 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x6ecefd7a check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x6ed29a73 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x6ee656e7 _RNvXs5V_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13___va_list_tagNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x6ee867d3 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x6eefe0df trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f0262f0 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x6f0462d3 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6f070c40 acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0x6f10438e _RNvXs8_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB5_10DisplayInt5to_u8 EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f1c96fc regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6f1e5e12 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x6f34bc42 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x6f37a6b1 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6f3e3603 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x6f41543a add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x6f49e452 rust_begin_unwind -EXPORT_SYMBOL_GPL vmlinux 0x6f54eec3 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x6f686dda _RNvNvMsq_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_11NonZeroU12813new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0x6f6ad1d2 dm_disk EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f6e57ac perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x6f6ec80b _RNvXs6_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0x6f7c057b bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x6f7568d7 tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x6f7c5c75 kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0x6f7c738b irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x6f7ce574 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f7f9aee __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x6f827d1d acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x6f8106ff dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x6f93e566 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x6f9547bc ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x6f9563df _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter10debug_list EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fac7b4a nf_route +EXPORT_SYMBOL_GPL vmlinux 0x6fac95f6 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x6facae0e gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x6faebb9e pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x6faeeb31 _RNvXsM_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB7_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0x6fb2e6a2 devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x6fb40c35 _RNvMs0_NtCsbwHtcUjRN57_6kernel4taskNtB5_4Task14signal_pending -EXPORT_SYMBOL_GPL vmlinux 0x6fb9e32e gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x6fb6dfdf __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x6fb6f20d gnttab_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x6fc35aa7 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x6fcdec72 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x6fc55b1d rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6fc9c93b irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd73026 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x6fe85313 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x6fec6745 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x6fed27a5 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x6ff2b1a5 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x6ff51f54 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x6fd7bf40 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fe5310f regmap_mmio_attach_clk EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev EXPORT_SYMBOL_GPL vmlinux 0x6ffe6515 _RNvXsm_NtCs3AkgXgqgK6r_4core3numxNtNtNtB7_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0x7000786c _RNvXs34_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9srcu_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700927ec hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x701d86eb thermal_zone_device_id +EXPORT_SYMBOL_GPL vmlinux 0x700b9300 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x70149587 devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0x701f6ba2 _RNvXsa_NtCsbwHtcUjRN57_6kernel3strNtB5_9FormatterNtNtNtCs3AkgXgqgK6r_4core3ops5deref5Deref5deref -EXPORT_SYMBOL_GPL vmlinux 0x70339f80 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x702d00f4 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x702fd430 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0x7034d8e4 devres_destroy EXPORT_SYMBOL_GPL vmlinux 0x70473324 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x704f53c7 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x704b9871 dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe EXPORT_SYMBOL_GPL vmlinux 0x70588eab _RNvNtCs3AkgXgqgK6r_4core3fmt5write -EXPORT_SYMBOL_GPL vmlinux 0x705e7142 iomap_invalidate_folio -EXPORT_SYMBOL_GPL vmlinux 0x7064ac13 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x7068ee1c class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x706d044d serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x70704dc7 fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x70713917 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70743206 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x7076f099 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x7077f568 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter9alternate +EXPORT_SYMBOL_GPL vmlinux 0x707899c8 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x707fee2d _RNvXsu_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_15static_key_trueNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7092acad perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x709c6e32 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x70985173 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x709dcf6c xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x70c1e7f4 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70c941fc vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d11187 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x70d2ffdb thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x70d7d133 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x70ddd6f6 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x70ddde1d devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x70eaf5ab regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x70f01598 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x70fa80df get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x70e4ac32 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x70e6dc98 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x70f3ed4b uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70f43a6e vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x70f820da md_start +EXPORT_SYMBOL_GPL vmlinux 0x70f93960 mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71201374 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7113d52a bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x71156478 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0x71207451 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x7120bc09 vfs_get_acl -EXPORT_SYMBOL_GPL vmlinux 0x71251df3 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x712697a0 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x71263ec5 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7130693a trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x71363026 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x7148ff9a sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x713575ab pci_epc_linkdown +EXPORT_SYMBOL_GPL vmlinux 0x713b0e66 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x713bc130 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x7149b4e9 acpi_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0x714a7815 _RNvXs4_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith3MulmE3mul -EXPORT_SYMBOL_GPL vmlinux 0x71566655 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x715f957f md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x7171a05f devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x7168f9c1 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x717161b2 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x71755e6a __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x717a8b9a __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x71774c1a ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x71822abf _RNvXse_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impxNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x71863a01 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x7189e387 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x718a2f2b fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x718a5aba _RNvXs1a_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB8_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x71915bf9 __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x719d5d51 balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71abd5a4 unregister_fprobe -EXPORT_SYMBOL_GPL vmlinux 0x71b24eef led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71b80b36 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x71bb7ae0 _RNvXs2o_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9page_fragNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c4bf00 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x71e7d2bf set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x71f0a701 _RNvNtNtCs3AkgXgqgK6r_4core5slice5index31slice_start_index_overflow_fail -EXPORT_SYMBOL_GPL vmlinux 0x71f9fa8b __tracepoint_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0x722254ef lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x722b572e trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x71f57d2e skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x721ed734 virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0x722ca271 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7234e4f9 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x723dc5ec __thermal_zone_get_trip -EXPORT_SYMBOL_GPL vmlinux 0x724aeb41 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726dfdbf fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x726be00e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7274e624 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x72750287 max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727b2530 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x7279480b fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7296cb73 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x729e58d9 clk_hw_get_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x72a1f110 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x72869c74 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x72976681 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72b745e5 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x72b7f7d4 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0x72b8e987 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x72c5a667 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x72b8ef6c __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d8c5ce hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x72d9054b eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x72db9318 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x72eca641 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x72ecc76f _RNvXs4Y_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9kmsan_ctxNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x72f2e4c4 pci_free_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x72f7d5f1 irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0x7301f5f2 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x73079ad7 device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x730a37ff pci_doe EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x732f1e52 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x7337a92b tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x732f77c8 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x7331cced sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x7340722d perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x735973b6 folio_alloc_buffers -EXPORT_SYMBOL_GPL vmlinux 0x73601e81 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x736170da __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x73676013 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x73478865 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x735094a9 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x73642e96 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x736e0523 regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0x737070a4 _RNvXsc_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3implNtB9_8LowerExp3fmt EXPORT_SYMBOL_GPL vmlinux 0x7373a7a3 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x737643d3 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x737fb54c gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x7382e9b4 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x73878033 user_read +EXPORT_SYMBOL_GPL vmlinux 0x73829bd0 device_move +EXPORT_SYMBOL_GPL vmlinux 0x7387d228 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x7392f372 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x739bcd3e device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x73a09225 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x73a22341 extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b67626 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x73aa7d48 genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x73b72ced gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x73bb01f6 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x73c1b83e sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73c4f44a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x73c57b78 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d384eb genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x73d9f31d fpu_alloc_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x73dc66d8 tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x73e071de _RNvXs5_NtCsd8lEp9MQdN2_5alloc5allocNtB5_6GlobalNtNtCs3AkgXgqgK6r_4core3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x73e46757 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x73ecc79b usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x73f72da4 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x73f73ffa blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x73e4ec1e synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x73fb070a _RNvXsa_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_32ftrace_branch_data__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x74011d66 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x740382f8 sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x74128ad2 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x74112a36 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x741d17b3 fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0x741eb654 _RNvXs4C_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10local_apicNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x741ef11d device_del EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x742d4ce9 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x742e22d3 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x743f50ca _RNvXs3v_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_6i16x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x7444986b ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x7444e1a3 gnttab_batch_copy EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7449a816 xfrm_put_translator -EXPORT_SYMBOL_GPL vmlinux 0x744ae0e3 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x74489f63 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x744e07c8 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x74513804 acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7466b410 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7458139d fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x7473f1cb _RNvXs3W_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12vma_iteratorNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x747ab17e pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x747f974c uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x747947b8 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x7481f89a dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x74858bed _RNvXs1s_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10tracepointNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x748a1ae5 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x74a1d3b6 _RNvNtCs3AkgXgqgK6r_4core5ascii14escape_default -EXPORT_SYMBOL_GPL vmlinux 0x74a34129 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b7a536 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x74b9d620 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter5align EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bee033 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block -EXPORT_SYMBOL_GPL vmlinux 0x74c0f08e virtio_check_mem_acc_cb EXPORT_SYMBOL_GPL vmlinux 0x74c653f8 _RNvXs1w_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_26fxregs_state__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74dd1426 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x74d6b0a4 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x74df379d acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x74e13123 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x74e4a854 ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x74f0230a devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x75057324 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x74f0e0c3 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x750fa3ed acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 EXPORT_SYMBOL_GPL vmlinux 0x7513dd19 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7514c95d ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x7514f101 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status EXPORT_SYMBOL_GPL vmlinux 0x7533611f _RNvXsy_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x753c7af9 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x754381d9 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x754cd5a2 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x7555aa35 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x755b1b29 pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x755e3b5b gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x7563cc53 xenbus_setup_ring -EXPORT_SYMBOL_GPL vmlinux 0x7563cdf4 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7561b66e device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7576d40f crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x75784d90 kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x75849cbf fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x75852f8a mctp_unregister_netdev -EXPORT_SYMBOL_GPL vmlinux 0x7586333f fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x757d2fd1 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x7582d3b6 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x7586e533 _RNvXs4l_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_10NonZeroI16NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x758c39eb __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x7587f806 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x75940904 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x75961c20 vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0x7596e9ee _RNvXs3j_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u64x4NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x75993b62 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x75975205 _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75a3e800 regulator_set_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key -EXPORT_SYMBOL_GPL vmlinux 0x75aa963f scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x75c10154 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x75af4aa5 devm_memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x75c27d64 _RNvXs31_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u8x32NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x75c69429 _RNvXs0_NtNtCs3AkgXgqgK6r_4core5alloc6layoutNtB5_11LayoutErrorNtNtB9_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x75c6c3f9 _RNvXs3n_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_60page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x75ceaf42 _RNvXs1_NtCsbwHtcUjRN57_6kernel5errorNtB5_5ErrorINtNtCs3AkgXgqgK6r_4core7convert4FromNtNtNtBO_3num5error15TryFromIntErrorE4from EXPORT_SYMBOL_GPL vmlinux 0x75d0262e of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x75e044fe gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x75e813e2 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x75d7678c crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x75d82cf4 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x75e0e0b0 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x75e97a63 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75f22603 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x75f35b6e _RNvXs2w_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_14maple_range_64NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x75fadcef acpi_get_psd_map EXPORT_SYMBOL_GPL vmlinux 0x75fcb80c _RNvMNtCs3AkgXgqgK6r_4core3f64d7next_up -EXPORT_SYMBOL_GPL vmlinux 0x7602f4f7 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x760712ad irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0x76218957 _RNvXs3U_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9mm_structNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x76307e67 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x7631c19d firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x7636049b iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x763818b2 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x76408e40 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x7640f504 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x76479b89 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x76492a63 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x764ab2d0 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x764eff28 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0x7653ccb6 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x76557762 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x76568bb1 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x765da20a gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x7660c194 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x766312e8 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x76676d52 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x767057a2 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x76709931 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x76732464 ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0x76754609 _RNvXs1Y_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15class_preempt_tNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x76793371 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7687a71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7695a965 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a6b20b br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x76a84c58 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x76ab9fa7 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x76bf0fbf xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x76d11ad4 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x76b000cb devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x76c386e9 dm_put EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dde4bc get_current_tty EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76ea543d ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x76eb2663 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f3deb9 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x76f7cba2 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x770331eb trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x76f3ed78 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x76f72fc2 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x76fb3c31 hv_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0x77069d57 rust_helper_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x770d2f63 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x77077b4a pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x770d8f15 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x770e32d6 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler EXPORT_SYMBOL_GPL vmlinux 0x771c3d20 _RNvXs3f_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11arch_uprobeNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x771cfff7 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x771c9afa ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x772dc48e dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x77318796 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x772e06a8 tcp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x772f6da6 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x7732b28f __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x77343b84 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7737d488 bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x77389754 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x77403b34 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x7748ee3f __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7764993c sis_info133_for_sata -EXPORT_SYMBOL_GPL vmlinux 0x777a8c61 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x776dbee7 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x777843e8 __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x777cb077 _RNvXs13_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB6_11AtomicUsizeNtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x777eafd2 _RNvXs0_NtNtCs3AkgXgqgK6r_4core5panic8locationNtB5_8LocationNtNtB9_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x7784ee7b _RNvXss_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_22FromBytesUntilNulErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x778e4396 _RNvXsk_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impsNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x77916f80 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x779324d3 _RNvXs5F_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10rv_reactorNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7794e4f4 dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0x77a1e575 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x77a8f902 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bb4f7f shmem_read_folio_gfp +EXPORT_SYMBOL_GPL vmlinux 0x77d57b28 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x77d85245 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x77e62e23 _RNvXsr_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impiNtB9_8UpperExp3fmt EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ec0cfb sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x77f7daf4 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x77f9ee18 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x7802d0f4 blkg_conf_init EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x781ff3ee crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x78288346 iomap_file_buffered_write_punch_delalloc EXPORT_SYMBOL_GPL vmlinux 0x7829e605 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x782bc04a dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x7832a4fc __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x782b153f rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x78387c63 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x7852dcf8 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x784fa974 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x78523128 usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x78537c41 _RNvMNtNtCs3AkgXgqgK6r_4core3num5errorNtB2_15TryFromIntError13___description EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x7867e08b net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x786ad586 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x78738aee devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788855de ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78936b28 mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x7895aa3b invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x789ccd3a tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x78a0f036 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x78a17236 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x78a8229a pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x789d0e01 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x78b04bb8 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x78b8ac5b dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x78da9bcf usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x78bf2fed sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x78ccd389 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x78d12896 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78eca489 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x78f22493 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x78e16162 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x78ec2660 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x78f45afb bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x7906e22f __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x78fc4a4a __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x791467fa ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check EXPORT_SYMBOL_GPL vmlinux 0x7916343c __SCT__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x792caef5 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x792d9648 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x792fe347 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7937c172 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0x793ac193 __SCT__tp_func_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x794632cc find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x7949b12a gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x794a1470 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x79525db7 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x79547780 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x7960d882 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x796f3854 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x79818b7d acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x7982cd8d __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x7989c673 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x798e2085 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x79a563b3 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x79b4519b device_attach -EXPORT_SYMBOL_GPL vmlinux 0x79b95d52 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x7997e1c3 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x799d837f __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x79ab1dae sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79caca6b serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x79c1b400 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x79d81fa3 _RNvXsG_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB7_8LowerHex3fmt EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x79de2804 hv_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x79deb459 component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x79e58aa4 pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0x79ef6cd8 _RNvXs5o_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_28kernel_siginfo__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79fde8f3 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x79ff524e dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x7a13eaa4 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x7a152619 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x7a1ab75d usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x7a1af6aa ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x7a2942de fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x79fc0e8a synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x7a077b4e device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x7a08d63c usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x7a0be373 vfs_splice_read +EXPORT_SYMBOL_GPL vmlinux 0x7a133210 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7a2caa68 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x7a2cbaad relay_close +EXPORT_SYMBOL_GPL vmlinux 0x7a2cece9 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x7a316963 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x7a3b1988 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7a3a274a msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a41b100 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x7a461e00 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x7a470d7c extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x7a47be21 _RNvXs31_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10rcu_cblistNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7a52e4da dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x7a603380 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x7a52e23e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7a57cc58 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x7a5f43d1 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7a628bff __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control -EXPORT_SYMBOL_GPL vmlinux 0x7a68c0a4 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7a6cf6b9 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7ec4a9 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7a80a5b0 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a981a19 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9b2494 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa73b7a __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x7aabf640 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0x7ab88ab7 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x7aa15ba7 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x7abcea7d i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x7ac1254b local_clock EXPORT_SYMBOL_GPL vmlinux 0x7ac34bcb bus_register EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ad40be9 _RNvMs3_NtCs3AkgXgqgK6r_4core3numi14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0x7ad62bb3 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x7ae16654 _RNvMs_NtNtCs3AkgXgqgK6r_4core3num3fmtNtB4_9Formatted3len +EXPORT_SYMBOL_GPL vmlinux 0x7ae21023 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7ae41549 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x7ae6c42e devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7aebcd68 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x7afa50e1 usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b029658 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x7b0cce02 devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x7b06aec6 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x7b0ee7b2 _RNvXs51_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15timerqueue_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7b159ea4 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x7b1dbdb1 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x7b1e778d virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x7b11cfa0 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7b14910c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x7b2035f2 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x7b207a35 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b31f093 device_phy_find_device EXPORT_SYMBOL_GPL vmlinux 0x7b396921 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7b3ab1d7 regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x7b43da53 _RNvXs7_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp3Ord3cmp +EXPORT_SYMBOL_GPL vmlinux 0x7b46146d key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x7b4cf151 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x7b508cbd cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b59f0fe vring_notification_data EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b6a52b2 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x7b5aed5e watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b750610 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7b745d27 acpi_dev_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x7b76edc8 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b781c58 pci_msix_can_alloc_dyn EXPORT_SYMBOL_GPL vmlinux 0x7b783db3 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x7b7e3c93 tcp_plb_check_rehash -EXPORT_SYMBOL_GPL vmlinux 0x7b816767 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval -EXPORT_SYMBOL_GPL vmlinux 0x7b8cb520 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b930d69 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7ba03ac7 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7ba219d0 pci_ims_free_irq EXPORT_SYMBOL_GPL vmlinux 0x7ba74afc rust_helper_get_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x7ba7982b anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x7bab65ce ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit -EXPORT_SYMBOL_GPL vmlinux 0x7bc6560f sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x7bc75bbd devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x7bd63ae0 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x7bd7461c debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0x7bb5e869 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x7bbf3653 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x7bcf7ea6 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7bd28e3e pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x7bd7ca77 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x7be9aa7d __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x7bf1b1dd fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x7bf392f4 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x7c024c0f pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0x7c02964a _RNvXs4K_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11rhlist_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7c118e98 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x7c0eb992 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x7c178191 _RNvXs3q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x7c1bfc54 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x7c1dfe8c iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt -EXPORT_SYMBOL_GPL vmlinux 0x7c278f3d misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x7c23c8a7 phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2bc693 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x7c33df99 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7c349ff6 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put EXPORT_SYMBOL_GPL vmlinux 0x7c4138b5 _RNvXsO_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_31edd_device_params__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x7c4ba50b acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x7c4f28ea __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x7c7b2d91 _RNvXs4i_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_11NonZeroU128NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x7c830695 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x7c86273f fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7c96e5c3 sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9c16e0 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ca35bcf crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7caf2382 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x7cb00171 acpi_device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cbe3bdf xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x7cbe6ed9 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x7cc490c8 msi_unlock_descs EXPORT_SYMBOL_GPL vmlinux 0x7cc84d98 from_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd43801 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7cd9426e vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0x7cdef2b5 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf58abe vcap_tc_flower_handler_ipv6_usage -EXPORT_SYMBOL_GPL vmlinux 0x7cfa14d1 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x7cfba8c4 devres_add EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d044c17 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d0f645a skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x7d138cca tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x7d11cd06 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d2752a8 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x7d2dd42d __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x7d30f9be serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x7d345667 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_4CStrNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x7d348eac do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x7d38b8bc failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d35fb1b dm_table_device_name EXPORT_SYMBOL_GPL vmlinux 0x7d4ddb62 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7d4ea2b8 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x7d57f907 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d79c079 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x7d7cc61c proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x7d8f0146 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x7d90c993 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x7da15b04 get_net_ns_by_id -EXPORT_SYMBOL_GPL vmlinux 0x7dba8249 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x7d80b1ea sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x7d8ea0ed rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7db49a64 xen_register_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x7dcb227f _RNvMNtCs3AkgXgqgK6r_4core3f64d8classify +EXPORT_SYMBOL_GPL vmlinux 0x7dcb881d spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x7dcbff29 _RNvMs_NtCs3AkgXgqgK6r_4core3nums14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0x7dd52cd3 _RNvXs17_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_23paravirt_patch_templateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x7dd7e8ef __devm_intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddaf9d7 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7df9fcbb extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e0750ea fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x7e1665ee pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x7e198e74 _RNvXsb_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0x7e19c444 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x7e1ed6ff mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x7e37044d regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x7e3921fd input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x7e1ac248 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x7e1c7d95 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x7e1e2ffb usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk EXPORT_SYMBOL_GPL vmlinux 0x7e45c20a dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x7e48e72b inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x7e4cce08 vcap_tc_flower_handler_cvlan_usage -EXPORT_SYMBOL_GPL vmlinux 0x7e4ed904 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x7e520906 da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0x7e55ba46 clk_register_composite EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e62434d platform_bus EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e75f76e phy_select_page EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7d0ae5 adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e7ee666 blk_mq_unquiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x7e82c9c9 _RNvXsN_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB7_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0x7e84f3d7 pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7ea5c996 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7e973f8e virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eaa5c8c devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x7eaefb80 iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec18ede iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x7ebde8fc icc_put EXPORT_SYMBOL_GPL vmlinux 0x7ec211bb _RNvXs4N_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8rhltableNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7ec3c855 iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0x7ec4c158 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x7ec4e9c3 _RNvXs1X_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16preempt_notifierNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x7ec5f89a _RNvXs8_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB5_10DisplayInt6to_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7ec7ffdd sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x7ede834e _RNvNvNtNtNtCs3AkgXgqgK6r_4core9core_arch3x864avx219__mm256_bslli_epi1284mask -EXPORT_SYMBOL_GPL vmlinux 0x7ede8de1 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x7ee5bd9b xenbus_watch_path EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7ef77201 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x7efd2477 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x7eff68c5 _RNvXs3G_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_19folio__bindgen_ty_3NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x7eff7a26 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x7f19fdfc dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x7f2cc967 acpi_device_fix_up_power_extended -EXPORT_SYMBOL_GPL vmlinux 0x7f30b65a i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x7f39c583 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7f285ff8 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x7f34be62 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7f3f7c9f tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0x7f4eabd1 _RNvNtCs3AkgXgqgK6r_4core9panicking18panic_bounds_check -EXPORT_SYMBOL_GPL vmlinux 0x7f61fd00 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x7f7b4fd6 _RNvXs1W_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_13EscapeDefaultNtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f861243 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7f878eb5 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x7f8839d6 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0x7f89427c usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x7f8d28ce hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x7f8d9bf7 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f8dd5a8 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7f982c98 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7f9e594c vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x7fa44f2d da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x7fa77901 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7f9dd25c xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fa6bd3f xenbus_setup_ring EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next EXPORT_SYMBOL_GPL vmlinux 0x7fbdabda _RNvXsm_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_25FromBytesWithNulErrorKindNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x7fd2434b bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x7fcb8d0b cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fd21446 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x7fd97a79 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x7fdb8400 _RNvXs3_NtCsbwHtcUjRN57_6kernel5errorNtB5_5ErrorINtNtCs3AkgXgqgK6r_4core7convert4FromNtNtCsd8lEp9MQdN2_5alloc11collections15TryReserveErrorE4from EXPORT_SYMBOL_GPL vmlinux 0x7fe7e7ab _RNvXs5_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8007edda dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x800d8781 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x803aad8b crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x80037a07 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x8004df0e ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8007e704 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x8015a29b nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x803d067a devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x8046712e divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x80496bbd folio_test_hugetlb -EXPORT_SYMBOL_GPL vmlinux 0x8053fbce register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0x806ea0b6 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8055c011 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x8073c440 inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807b7312 da903x_update EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x80808f41 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x80856fa9 _RNvXs39_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_20atomic_notifier_headNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8091bef8 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x809627ea free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x8092a71c iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x80a66850 _RNvXsn_NtCs3AkgXgqgK6r_4core4charNtB5_11ToUppercaseNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x80a7d9e4 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x80a922cb fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x80ada11c nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x80bb02e2 _RNvXs2_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0x80c4c438 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0x80c0758d crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80ca1d7a blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x80cb706c blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x80ce3028 ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free EXPORT_SYMBOL_GPL vmlinux 0x80dbc2e8 _RNvXsa_NtCs3AkgXgqgK6r_4core7convertNtB5_10InfallibleNtNtB7_5clone5Clone5clone -EXPORT_SYMBOL_GPL vmlinux 0x80f62f15 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x80f677e1 devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x80fddb36 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x8100d0b4 _RNvXs1_NtNtCs3AkgXgqgK6r_4core3str5lossyNtB5_10Utf8ChunksNtNtNtNtB9_4iter6traits8iterator8Iterator4next -EXPORT_SYMBOL_GPL vmlinux 0x810355e4 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x810ff344 blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x8114cc6d get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x8117bcbc _RNvXsd_NtCs3AkgXgqgK6r_4core4timeNtB5_21TryFromFloatSecsErrorNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8120e641 icc_disable EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x81443d01 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x814cad32 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0x813182ab rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x813562e2 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8143fa52 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x814dad7c blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x81512a37 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8165095b device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x81642ecf __SCK__tp_func_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0x8169a537 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816b711c fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x817aa5c7 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8186d1c1 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x8186d64c ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x818b6936 inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x81952c3e _RNvXsa_NtCs3AkgXgqgK6r_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x819dbfe0 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x81a09267 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x81a0dec1 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x81a0dfb5 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81b4d0e0 folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x81b53c5b pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x81bb00a2 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x81aea5f4 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x81af9d4e serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0x81c62c03 _RNvXs2x_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15maple_arange_64NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x81cdd92a usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0x81d30433 _RNvXs4c_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11mem_sectionNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x81db7715 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x81dbe3a5 devl_trylock -EXPORT_SYMBOL_GPL vmlinux 0x81de9aae netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x81d84124 uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81ea9cc0 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x81f06ecc fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x81e98c0f usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x81ea5537 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x81eae5d3 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x81ef1a0f sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x82056865 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x81fa2637 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x81fb6a64 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820e2ab6 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x820e73b0 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x821c24d9 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x821c5307 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x8238d297 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x82378b18 dev_pm_opp_config_clks_simple EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x82407534 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x8249c76e regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x824a1bcd _RNvXs1z_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u8x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x82571a1e iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x8256ce63 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x825ac036 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x826677e5 _RNvMNtCsbwHtcUjRN57_6kernel5errorNtB2_5Error4name -EXPORT_SYMBOL_GPL vmlinux 0x826a790b acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x826bdf9f wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x8269e71d battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82868fc0 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x828c39b3 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x828d417d dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x829b0a5f pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x829c1fff init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x829f9253 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x82a944b6 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x82ccabe2 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x82ce3cf0 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x82a65383 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x82cab5c2 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x82cef23f handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x82d1b400 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x82d33750 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e15311 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x82e859e5 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x82fb2145 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x82fb6296 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x82fdd75a tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x82dc749a tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x82e2df8f __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x82f28b35 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x82f2cfc6 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x8302a1cc _RNvMNtCs3AkgXgqgK6r_4core3f32f13classify_bits EXPORT_SYMBOL_GPL vmlinux 0x830dec99 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB5_10DisplayInt5to_u8 EXPORT_SYMBOL_GPL vmlinux 0x830ff141 _RNvXs6_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith9MulAssignmE10mul_assign -EXPORT_SYMBOL_GPL vmlinux 0x831127c3 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x83230107 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83151e61 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x83284a2b device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x8333fbbc usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833acf78 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x8347706f gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x833db948 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x833e49dd i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x8341893b devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8360c61a dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x836b8bab crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x836e9356 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x8383a860 devm_register_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0x83856432 _RNvXsF_NtNtCs3AkgXgqgK6r_4core3str7patternNtB5_12CharSearcherNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x839aea60 nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0x83a4d81d ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x83ad4417 _RNvXsd_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_4u8x4NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x83b23067 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x83b24b28 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x83bf3e5f call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x83bd4d4b irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x83c7dacd power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x83d29187 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x83d4cbc9 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x83d51046 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x83d893ae virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x83d9d541 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x83e21aac devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x83e577d5 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x83fc479a net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x83cbffa4 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x83e20ae5 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x83e46cc2 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x83f3624d platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x840a84b7 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841c4ab4 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x841e9b59 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x841fa35e __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x8424cc94 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844e3718 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x843f206d unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x8451102b _RNvXs2l_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5f32x4NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x845ba68d tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x845e7cb5 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x8462a516 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8471515c of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x8474b2d1 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x84891755 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x849ce61a ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x848e3bd0 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x84ab7a80 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x84abf725 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x84b11222 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x84b20e98 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84dc4f66 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x84de8be1 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x84e34750 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x84ba50f5 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x84cc8608 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x84d21f0a gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x84e504ce _RNvXs3Z_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13lru_gen_folioNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x84ec03ee _RNvNtCs3AkgXgqgK6r_4core3str19slice_error_fail_ct EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x84f98b55 destroy_memory_type EXPORT_SYMBOL_GPL vmlinux 0x84ffe0d4 _RNvXs6_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB5_10DisplayInt6to_u32 EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850743f6 agp_remove_bridge EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x851aaff6 _RNvXs7_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0x851baace pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x851e881c dax_remap_file_range_prep -EXPORT_SYMBOL_GPL vmlinux 0x852ad710 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x85311670 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x851fc56d gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x852e4a92 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x85329672 fpu_swap_kvm_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x85330396 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x85480f53 serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x854e2702 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x854f36cb fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x854f1068 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x85523ce2 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8556ab67 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x85608a81 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x85619798 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x858348c2 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x8555f260 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x855c0685 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8570ae1c sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder EXPORT_SYMBOL_GPL vmlinux 0x858f6db1 _RNvXs5t_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_21syscall_user_dispatchNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x858f973f switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x8591d355 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x85962065 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x859708b2 unregister_net_sysctl_table EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio -EXPORT_SYMBOL_GPL vmlinux 0x85b995b7 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d588bb bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq EXPORT_SYMBOL_GPL vmlinux 0x85de8cab _RNvXs5f_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_24___sifields__bindgen_ty_5NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial EXPORT_SYMBOL_GPL vmlinux 0x85efae4b _RNvNvMNtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB4_9NonZeroU813new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0x85ff14d4 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x8602cfee ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x8603cefa irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x860dc064 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x8613a864 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x8614c154 _RNvXs2l_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15pcpu_group_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x861522bc _RNvXs1t_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_17bpf_raw_event_mapNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write -EXPORT_SYMBOL_GPL vmlinux 0x8618e27c ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86229a65 vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0x86286c6d _RNvXsb_NtCs3AkgXgqgK6r_4core5errorNtNtNtB7_4char7convert14ParseCharErrorNtB5_5Error11description -EXPORT_SYMBOL_GPL vmlinux 0x86293904 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x8637cd23 devl_rate_node_create -EXPORT_SYMBOL_GPL vmlinux 0x863bc1c8 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8641009f dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x8644a8bb __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x864ad05d icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0x8656013b devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x862c3744 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x864f8b17 md_stop EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86616d5d regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x866dbf4e failover_unregister -EXPORT_SYMBOL_GPL vmlinux 0x866f5838 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x866537f1 icc_provider_register EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x86702a15 nvmem_layout_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x8674315e nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va +EXPORT_SYMBOL_GPL vmlinux 0x867a521f regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x867d2188 _RNvXs9_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8683bdbb of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868a7db6 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x868f17ae ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x869e19fc dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x86ac5528 _RNvXsr_NtNtCs3AkgXgqgK6r_4core9core_simd5maskslNtNtB5_6sealed6Sealed2eq +EXPORT_SYMBOL_GPL vmlinux 0x86af64e6 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x86b011d8 __rust_realloc -EXPORT_SYMBOL_GPL vmlinux 0x86b0d212 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b2b140 __SCK__tp_func_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0x86b99f98 _RNvMNtCs3AkgXgqgK6r_4core3f64d9next_down +EXPORT_SYMBOL_GPL vmlinux 0x86be89cd rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0x86bfe06a _RNvXsm_NtCs3AkgXgqgK6r_4core4charNtB5_11ToLowercaseNtNtB7_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x86c1b06b _RNvXs2F_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10maple_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86cf6434 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x86d6425f irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x86e451e5 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x86dc9906 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x86e0d713 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x86edff7a regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x87031a90 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x86fcea3f virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0x8704d1fa thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x870cc0f6 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x870a9f5d fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x870dc7cc inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87109229 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x87290542 sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x872f4a12 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x8730ed0d dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0x8731fb7f _RNvXs25_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18___call_single_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x87327cd0 devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x873abce9 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x873d4b41 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x87558065 shmem_read_folio_gfp -EXPORT_SYMBOL_GPL vmlinux 0x875c7584 xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x875dc5d0 devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x875e5b2f cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x87621ce6 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x877b564e ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x87878866 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x878fbfe1 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x876c7bd1 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x876e33d9 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x87716e26 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x87788682 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x87812fe1 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x87827987 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x87862677 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x87a3f049 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x879d2f8d usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x87a3fab2 _RNvXs4Q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10ipc_kludgeNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x87aad3d4 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x87bea90f hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x87c94d11 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x87b499b0 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x87c114d4 xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x87c34de0 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x87ca3dd5 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x87d1b08d _RNvXs_NtNtNtCs3AkgXgqgK6r_4core4iter6traits7collectuINtB4_6ExtenduE10extend_one -EXPORT_SYMBOL_GPL vmlinux 0x87d67a53 fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0x87d942ca _RNvXs3_NtNtCs3AkgXgqgK6r_4core9core_simd7swizzleNtB5_5WhichNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x87dd7845 _RNvXs2X_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12delayed_workNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x87e2380a fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x87e58e90 finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8809f685 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x880720f1 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x880bcd7d edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0x8815a92e _RNvXs2y_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11maple_allocNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x881a3d29 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x882214f7 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x884d3a9f led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x881daf82 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x8838c643 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x883d96b3 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x885852c9 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x88615451 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x885f644a crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x88664b89 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x886be40b _RNvXs4d_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15scale_freq_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8870ca5f sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x8877b2b2 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x887dd02b tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x886dbccf vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x888720e4 _RNvXs5Q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11rcu_specialNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x888926b2 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x888e0553 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8887afbd gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8890071f gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x88975e03 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x88a0c62e _RNvXs4P_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15rhashtable_iterNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x88a5aa2e user_destroy EXPORT_SYMBOL_GPL vmlinux 0x88a72d3d _RNvXs5_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB5_10DisplayInt6to_u64 EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88adadf9 __fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x88ae7109 _RNvMs0_NtCsbwHtcUjRN57_6kernel4taskNtB5_4Task12group_leader EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88b5862d unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x88c79eed crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x88c83665 balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x88d47b94 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x88db920a phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x88dc9f9f gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x88e1c6b0 acpi_cppc_processor_exit EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x88f85d40 devm_of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x88f90e88 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x8903c04c ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0x8904d309 _RNvXs3t_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x890962fd tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x890d7058 usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0x8912fcf4 _RNvXsg_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impjNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x891a4b4d __tracepoint_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x89167253 ping_err EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state EXPORT_SYMBOL_GPL vmlinux 0x89252b15 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x892f6ddc debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x892fa1db i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x8935126c fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x8936d56e devm_regulator_bulk_put EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0x89493fca bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x89542e44 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x8957b705 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x896130d5 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x896c00f0 dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x896edad7 _RNvXs3Q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_14vm_area_structNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8987086c blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x8998497d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x8997c421 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x899ee50f usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x89a42940 _RNvXs2_NtCs3AkgXgqgK6r_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator3nth EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89af0cfd firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x89b0bbf1 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x89b9ce8a pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x89bb3891 led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89c84043 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x89cf885a regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x89d2a6fb ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x89d66899 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x89dbcebf modify_ftrace_direct_nolock -EXPORT_SYMBOL_GPL vmlinux 0x89de7bdb xhci_stop -EXPORT_SYMBOL_GPL vmlinux 0x89e01164 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x89dce6c9 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e59757 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x8a01372e iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x8a0a3d4e gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x8a22de2a gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x8a2736e0 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x8a2f1710 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x8a08d2ed fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x8a14b6dc component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x8a2cf5ad perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x8a2f0672 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x8a382d0d _RNvXsj_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_5u16x2NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x8a3f5a01 is_dock_device EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a449e31 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x8a45a34e icc_enable EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP -EXPORT_SYMBOL_GPL vmlinux 0x8a4ec9f9 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x8a4fd46b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x8a58f332 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0x8a5c1029 __SCT__tp_func_xhci_dbg_init EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a64b520 _RNvXs35_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10srcu_usageNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8a669e2d __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x8a6c5363 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x8a6ec6c5 acpi_subsys_freeze EXPORT_SYMBOL_GPL vmlinux 0x8a77444a _RNvNvMs3_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB7_4CStr8from_ptr9strlen_rt EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control -EXPORT_SYMBOL_GPL vmlinux 0x8a81475d tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a985161 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a954224 __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x8aa31da3 clocksource_verify_percpu -EXPORT_SYMBOL_GPL vmlinux 0x8aa7240b mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x8aa8ecda iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x8aa36a30 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x8aba66a3 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x8ad2cdfe pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8aed15f9 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x8af81001 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x8b07c1b6 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x8aeee8cf pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x8b0fa271 fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0x8b140c03 _RNvXs7_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_10AtomicBoolNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b19a2c6 mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x8b1b6d2c ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8b1c91c9 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x8b208ef3 _RNvXs2Z_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15workqueue_attrsNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8b243325 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x8b30f8ef debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8b3af13d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b220d64 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x8b376e18 virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc +EXPORT_SYMBOL_GPL vmlinux 0x8b41cda6 devm_pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b48b345 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x8b4a9770 _RNvXss_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_24static_key__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8b4b00e2 switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0x8b4c77ca __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x8b4cf511 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x8b695b34 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x8b4ed94c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x8b506192 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b5061be pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x8b5ce95a usb_set_wireless_status +EXPORT_SYMBOL_GPL vmlinux 0x8b67594f ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8b7d3f2f regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x8b94eb4e ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8b94f2cd alloc_dax EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8b980107 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8b996957 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x8ba77911 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8baab4a3 dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x8bafbd50 _RNvXsh_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_17cacheline_paddingNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x8bb51da4 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x8bb6c48e fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x8bc03bf1 crypto_clone_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8bc538b5 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x8bdd116e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x8bb23455 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x8bba2da8 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x8bc2e340 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x8bc4fad2 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x8be2efb9 _RNvXsD_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_8___m128bhNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8be75102 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x8beb5d9b _RNvXs2s_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_14rb_root_cachedNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x8bef2316 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x8bf603c8 xdp_set_features_flag +EXPORT_SYMBOL_GPL vmlinux 0x8bf9835c usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x8bfd5c47 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c05725c devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8c0bf270 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c1d9d39 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x8c1ba297 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x8c20663b power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c342c71 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x8c3715b4 _RNvNtNtCs3AkgXgqgK6r_4core7unicode9printable12is_printable -EXPORT_SYMBOL_GPL vmlinux 0x8c3907f3 node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0x8c45bf8a acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x8c42258c usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c488258 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0x8c496bc0 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c51b036 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x8c61be31 ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0x8c61d68f follow_pte EXPORT_SYMBOL_GPL vmlinux 0x8c64d917 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x8c73a611 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c6caf31 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x8c721978 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7a5548 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8c83f692 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x8c748cbe tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x8c8821f7 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8c9de8 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x8c8cda8d au_platform_setup EXPORT_SYMBOL_GPL vmlinux 0x8c8d2374 dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0x8c921cac vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb -EXPORT_SYMBOL_GPL vmlinux 0x8c9c3328 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext EXPORT_SYMBOL_GPL vmlinux 0x8ca21062 _RNvXs3d_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25arch_uprobe__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x8ca5f824 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8cb2ebc7 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x8cb3ef6a _RNvXso_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_6___m256NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8cbb1ae1 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x8cc06826 mmc_regulator_enable_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x8ce2198c __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x8cf86105 acpi_match_acpi_device -EXPORT_SYMBOL_GPL vmlinux 0x8cf8713a usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x8d036c25 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8d14757a __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x8d1526d2 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x8d1c8a7c __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x8cc1870b tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8cdeb9f9 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x8ce7be87 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x8d0071d1 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x8d00f5c1 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8d0a86a3 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8d10a227 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2b6436 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d38811b i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x8d4320a9 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x8d50f19e irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x8d52000d __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x8d51e873 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock EXPORT_SYMBOL_GPL vmlinux 0x8d5295d3 _RNvXs1b_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25__fpstate_32__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x8d53abfc serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x8d694cdd serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x8d54d77f __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x8d560b67 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x8d5b54af sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x8d5b855a spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x8d711e29 _RNvXs9_NtCs3AkgXgqgK6r_4core4charNtB5_11EscapeDebugNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8d76927d blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x8d7b8021 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d8f7ee2 syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x8d8fe64b cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0x8d904487 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8d9151ef vcap_enable_lookups -EXPORT_SYMBOL_GPL vmlinux 0x8d920876 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x8da36379 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0x8da42afe debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x8dc7809c crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x8d928fab tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x8dadf42b devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x8dc7a0ab xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x8dcdef80 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x8dd3d8fb _RNvXs3_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0x8dd661ae xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x8de74360 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x8de8b3d3 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x8dea6f74 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x8de76d80 devl_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0x8df3f901 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x8df9bc61 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x8e0e8c4a __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8dfb7d63 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8dfd923c __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8e0784f0 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x8e14736c _RNvXsp_NtCs3AkgXgqgK6r_4core3numhNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0x8e271aa4 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x8e29277c da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8e1cc577 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8e2c8079 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8e2d6ff8 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x8e2d706b tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0x8e30944a __rg_dealloc EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index -EXPORT_SYMBOL_GPL vmlinux 0x8e42b120 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e5bce4b debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x8e634ac5 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x8e64c28e shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6d1e86 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x8e6bba75 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e836347 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x8e842234 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x8e869aec regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x8e7da8ab regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8e7e325b ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x8e91a9af _RNvXsY_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_11AtomicIsizeNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x8e94cb66 firmware_upload_register -EXPORT_SYMBOL_GPL vmlinux 0x8e9b5aa1 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x8e9555fe acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page +EXPORT_SYMBOL_GPL vmlinux 0x8ea5935c simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eafc893 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x8eb6439f icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x8ebc0532 _RNvNtNtCs3AkgXgqgK6r_4core5slice6memchr14memchr_aligned -EXPORT_SYMBOL_GPL vmlinux 0x8ecb5ff9 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8ec5ea18 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x8ed8579f device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x8ee727aa rust_helper_init_wait +EXPORT_SYMBOL_GPL vmlinux 0x8eedce2b crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8eedecbc mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8eee5620 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start EXPORT_SYMBOL_GPL vmlinux 0x8f044a4c _RNvXs19_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13math_emu_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f152a2e regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x8f157997 power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0x8f1e95dd _RNvXsi_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impaNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8f266e8b iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f2e91bd ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints EXPORT_SYMBOL_GPL vmlinux 0x8f2f0936 _RNvXsZ_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_4i8x8NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8f337acd rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x8f466117 __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x8f4695fb iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x8f39a4e7 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8f3d866e devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x8f46d0a0 _RNvXs6_NtCs3AkgXgqgK6r_4core3cmpNtB5_8OrderingNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x8f559f98 devm_register_power_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x8f56410d fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x8f5ab121 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x8f5d7818 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f732e97 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7bcaab devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f80d0e7 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x8f868bd7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x8f8138b3 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x8f83c40c pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0x8f97bd81 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x8f97cef8 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x8fa3041a ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats EXPORT_SYMBOL_GPL vmlinux 0x8fa719c5 _RNvMs0_NtNtCs3AkgXgqgK6r_4core3str5lossyNtB5_10Utf8Chunks5debug EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fb62892 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8fb82a1b __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x8fba2c37 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x8fbc3b8d _RNvXs3p_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_1__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x8fbd5482 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8fbf98a6 acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group EXPORT_SYMBOL_GPL vmlinux 0x8fca0669 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x8fd83a92 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x8ff0b80b pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x8fce9143 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x8fdb4c46 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x8fe95573 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffa0607 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x8ffcaf01 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x8ffe75ae gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x90027cc6 bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x900b9d5c irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x900c9c97 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x90114321 _RNvXs2_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith3Sub3sub +EXPORT_SYMBOL_GPL vmlinux 0x90225a8b dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x9023800f crypto_sig_verify EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear -EXPORT_SYMBOL_GPL vmlinux 0x90298350 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x902ec6e5 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90299ce4 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x902c3ff0 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x90378f6b dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9047a7c5 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x905beb84 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x905ffe8f ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x903f6e44 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x906535a3 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x906560a6 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0x9073331b _RNvXs_NtNtCs3AkgXgqgK6r_4core3str4iterNtB4_5CharsNtNtB8_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x907535a2 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x9075b887 class_create -EXPORT_SYMBOL_GPL vmlinux 0x90760b4f acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x907611ac rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x907929c2 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x907b247b regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x90819da0 show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms EXPORT_SYMBOL_GPL vmlinux 0x90892107 _RNvXsS_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_3eddNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9091e1f8 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x908c9338 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x9091a183 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x909cbb83 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x909e845a __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x90a01520 _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings4INFO EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90ac064d _RNvXsd_NtCs3AkgXgqgK6r_4core3anyNtB5_6TypeIdNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90c2da6b ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x90c325e0 nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90ce900f sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x90d1864f ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x90d23953 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x90d4b5f4 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x90c91065 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x90ca98fa serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x90cdd275 crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90deba26 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x90f820f9 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x90f906c3 pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x91036dcf usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x910f61a7 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9112b8e2 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x911b41ce thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x9117d5b2 dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x913bbb8b _RNvXs4_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB5_10DisplayInt5to_u8 EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x914de64d gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x9153dd58 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x914c5946 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x914e8d32 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x915a6812 cros_ec_cmd -EXPORT_SYMBOL_GPL vmlinux 0x91695931 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x916a2ccd regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x9161202a xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x916b595d serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x916e0c08 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x916fe3d8 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x9177f272 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x917daa87 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x9181cb94 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x9183bf03 _RNvMNtCs3AkgXgqgK6r_4core3stre14escape_default EXPORT_SYMBOL_GPL vmlinux 0x91868cb4 _RNvMNtNtCs3AkgXgqgK6r_4core5slice5asciiSh10trim_ascii -EXPORT_SYMBOL_GPL vmlinux 0x918f82bc i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x918d0892 __SCK__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91981a6b inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x91a2d535 _RNvNtNtCs3AkgXgqgK6r_4core10intrinsics3mir11Unreachable -EXPORT_SYMBOL_GPL vmlinux 0x91a2ed69 genphy_c45_plca_set_cfg EXPORT_SYMBOL_GPL vmlinux 0x91ad8f56 _RNvXs5L_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12sched_entityNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x91afcde4 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0x91b32b87 intel_pmic_install_opregion_handler EXPORT_SYMBOL_GPL vmlinux 0x91b3dcd9 _RNvXsg_NtCs3AkgXgqgK6r_4core7convertNtB5_10InfallibleNtNtB7_3cmp10PartialOrd11partial_cmp EXPORT_SYMBOL_GPL vmlinux 0x91b70da9 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0x91c24022 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x91c644a8 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91cd89ca input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x91de8cdf _RNvXs1_NtCs3AkgXgqgK6r_4core5arrayNtB5_17TryFromSliceErrorINtNtB7_7convert4FromNtBX_10InfallibleE4from -EXPORT_SYMBOL_GPL vmlinux 0x91e4cb12 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x91e8cca5 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91ec82fd _RNvMs2_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_10DebugTuple5field -EXPORT_SYMBOL_GPL vmlinux 0x91f1667d pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x91f18fce genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0x92049a87 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x91ef9a00 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x91f2f4b3 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x91feb7c9 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x920c6aa1 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x92160683 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x92170732 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x921edd4d debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x92222bb8 __SCK__tp_func_br_mdb_full -EXPORT_SYMBOL_GPL vmlinux 0x922640ee inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x9230b219 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x9230d997 __tracepoint_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924308ce gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92517136 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x9257bafd _RNvXs1M_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25cpuinfo_x86__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x925e685e gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x92609581 _RNvNvNtNtNtCs3AkgXgqgK6r_4core9core_arch3x864sse219__mm_slli_si128_impl4mask -EXPORT_SYMBOL_GPL vmlinux 0x927a0801 d_same_name EXPORT_SYMBOL_GPL vmlinux 0x927f7ae0 _RNvXsz_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x92864a20 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x9294ffef irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92aa9fca pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x92a27de4 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x92a633b2 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92bfa7ab devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x92cf74aa vcap_admin_rule_count +EXPORT_SYMBOL_GPL vmlinux 0x92cfd969 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dd842a regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92f163d8 ata_ncq_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x92f59667 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x92f749fc sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x93006063 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x92fb27bd rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x9303471f _RNvXs5_NtCs3AkgXgqgK6r_4core4charNtB5_13EscapeDefaultNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9311e864 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x9317b5cd nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x93046a25 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x9310694a ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932aea6e netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x932f286e tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x933237a6 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x93348526 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x933589f9 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x93531789 _RNvXs25_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_13EscapeUnicodeNtNtBa_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get EXPORT_SYMBOL_GPL vmlinux 0x935529cc _RNvXsj_NtCs3AkgXgqgK6r_4core4charNtB5_15CaseMappingIterNtNtNtNtB7_4iter6traits8iterator8Iterator9size_hint EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p -EXPORT_SYMBOL_GPL vmlinux 0x93780906 dm_hold EXPORT_SYMBOL_GPL vmlinux 0x937ba972 _RNvXs4s_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_39local_apic__bindgen_ty_29__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9382b270 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x9389aabd _RNvXs4_NtNtCs3AkgXgqgK6r_4core4char7convertNtB5_14ParseCharErrorNtNtB9_3fmt7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0x938bb640 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x938cea08 vp_legacy_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x93a2f34f _RNvXs55_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18hrtimer_clock_baseNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x93b503f4 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93b64c8b bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x93c087b7 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cb2de0 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x93cb70c5 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references EXPORT_SYMBOL_GPL vmlinux 0x93d93ee0 power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93e97f10 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x93e2baa8 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next -EXPORT_SYMBOL_GPL vmlinux 0x93ed2b2e pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93eebc0f pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x93f55f82 crypto_akcipher_sync_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x93f2bf64 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x9400bd3a iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x9408fcbc pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x94101376 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9423837e crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x94279e7c tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x942da6ad xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x942e8b54 __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943a02c0 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x944ac6b7 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9449c4e9 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x944dc852 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x944e0f00 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x944e8bef max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x94571c96 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x945b4a35 thermal_zone_device +EXPORT_SYMBOL_GPL vmlinux 0x945dd6b7 __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x9462187f __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946c26fb i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x9475cd6c _RNvNvNtNtNtCs3AkgXgqgK6r_4core9core_arch3x865ssse315__mm_alignr_epi84mask EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x94883474 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x9488a4b3 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x94902f19 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x949b011b phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x947ddb1a ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949b92d8 _copy_mc_to_iter EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x949f9166 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x94aa4f49 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x94a0ea46 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x94a4c689 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x94a8ff9b pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x94ad4c15 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x94bc8bd7 _RNvXsr_NtCs3AkgXgqgK6r_4core4charNtB5_13EscapeUnicodeNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x94bfb82a ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x94c4fd35 _RNvNvNtNtNtCs3AkgXgqgK6r_4core9core_arch3x868avx512bw19__mm512_bslli_epi1284mask EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f4c01b iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x94f8c0a5 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x9510f67d get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x950f913d tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952539d1 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x952089fc genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9525a104 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x952a9522 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x953838bc fsverity_get_digest EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953e80df create_signature EXPORT_SYMBOL_GPL vmlinux 0x954d6b2a irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x95681622 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x955d83fd pci_p2pmem_publish EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x956dcc35 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x956e693a _RNvXs6_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0x956e882d acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0x9575e32a nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0x957a372f _RNvXs1D_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16mpx_bndcsr_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x957fc80a _RNvXs3J_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9vm_regionNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x958b6224 _RNvXs1_NtCsbwHtcUjRN57_6kernel4taskNtB5_4TaskNtNtB7_5types16AlwaysRefCounted7dec_ref EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95912d6f dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x95935096 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95995297 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x959bd7a1 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x959c0cda pci_pr3_present EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95ae0e29 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x95aa4f73 usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x95affdaa _RNvNtCs3AkgXgqgK6r_4core9panicking15const_panic_fmt EXPORT_SYMBOL_GPL vmlinux 0x95bade62 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c6710e sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x95c9a3d2 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x95d07b95 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x95d142a7 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x95d723f7 _RNvMNtNtCs3AkgXgqgK6r_4core5panic10panic_infoNtB2_9PanicInfo8location -EXPORT_SYMBOL_GPL vmlinux 0x95e3090c pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size EXPORT_SYMBOL_GPL vmlinux 0x95f80fac _RNvXs3B_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_33folio__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9602bee0 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x961f43ef rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x9623c894 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x9623fef8 _RNvXNtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB2_15PadAdapterStateNtNtB6_7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x962c5758 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963aa6bd vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x963fb26b irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x96428e9b iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0x9643aec4 _RNvXs12_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB8_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9643c7a0 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x964c5cc8 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9659e298 rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x966a8180 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9675d83d max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x96790942 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x968a85a9 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x965a137e crypto_akcipher_sync_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9661e1e0 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x9677d3a8 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x968f654d bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96ab3dd1 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x96abd8c8 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x96b18f07 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x96c4244f sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x96c68738 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x96cff40a __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x96df6b27 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x96e17a3c register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x970327d0 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x96b1ae9c mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x96b5ee24 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x96ca9087 get_device +EXPORT_SYMBOL_GPL vmlinux 0x96cf6302 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x96de999c __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x96e6a617 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x96ec5d99 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x97014bca tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x97046cdc ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x97049bad powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x970a72a2 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw EXPORT_SYMBOL_GPL vmlinux 0x9718b797 _RNvXs3a_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_22blocking_notifier_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x971b628b get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x971f5f58 _RNvXsM_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_27restart_block__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x97270685 crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0x9730749d unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x974a583c _RNvXs47_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7zonerefNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x974a914b crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x974f30cd _RNvXs9_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0x974faa86 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x974fff5a hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x974fccd2 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x975e32ef __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x9761361d component_del -EXPORT_SYMBOL_GPL vmlinux 0x9764780e scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x97692eab _RNvXsS_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0x97764d63 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x976ddd61 acpi_match_device EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9780fe56 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x97832164 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x97886d53 _RNvXs5l_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_36sigevent__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x978e7ca6 _RNvXsH_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_8pcpu_hotNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x978ea08a genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x978f2b79 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x97938d0d _RNvNvMs3_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB7_4CStr8from_ptr9strlen_ct -EXPORT_SYMBOL_GPL vmlinux 0x97c2d82c sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x97c61c90 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x97d23ba1 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x979f1c6f devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x97b28c50 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x97bb4927 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x97bd12f4 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x97bd4511 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x97c72c4b debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x97cbc78e thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0x97cfcac6 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97fc4042 pci_find_doe_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x97fe7898 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x98056c2f rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x97e772ec kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x98006621 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x980ba9cb _RNvXs2p_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_20tlbflush_unmap_batchNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x98178c71 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x981ceed2 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x982b68d9 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x98329c13 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x980fcdb8 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x98107b56 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x98136159 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x98143f88 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x981bb77c ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x982cb795 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x98303683 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9832212d __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0x98465ca8 _RNvXs1C_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_30mpx_bndcsr_state__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x984964c6 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x98468b20 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x984da541 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98516106 devl_assert_locked EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985e69d9 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x9858de15 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x985ffb5f clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x9866faa2 virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98838383 xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size EXPORT_SYMBOL_GPL vmlinux 0x988a388d led_blink_set_nosleep EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98a2e98f nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x98b3832f wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x98b76127 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98bb83ac blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x98cff549 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x989de48a crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x98a022d5 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x98bd2646 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x98d3045f _RNvXs4_NtCs3AkgXgqgK6r_4core3fmtNtB5_9ArgumentsNtB5_5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x98d5545d fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x98de9a1a spi_split_transfers_maxwords EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping -EXPORT_SYMBOL_GPL vmlinux 0x98f7195f sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x98f8d739 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x98fcd68d pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x9904c16f devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x99024a38 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x9908caa9 _RNvNtCs3AkgXgqgK6r_4core3str19slice_error_fail_rt -EXPORT_SYMBOL_GPL vmlinux 0x99097afe __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x990bde0a md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9913b272 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x991ea52b pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x9922d395 tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect -EXPORT_SYMBOL_GPL vmlinux 0x99341c12 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x9934245c rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x99380750 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x993ca996 iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x994b9751 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0x994c2e93 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x994d33a1 __SCK__tp_func_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x994dcd90 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x99504d09 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x9953acdb pkcs7_verify EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9967465f gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x9967b260 rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x99758c35 _RNvXs58_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7seccompNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none -EXPORT_SYMBOL_GPL vmlinux 0x9986042b dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x99869ff7 _RNvXs2O_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_14___kernel_timexNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x998b63c3 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x99970229 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x999ade88 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x99986c1b tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99a1b476 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0x99a2ce73 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x99a49afa mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x99abae43 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x99b14122 rio_add_net EXPORT_SYMBOL_GPL vmlinux 0x99bdb7a0 _RNvXsn_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impmNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0x99ce6eae __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x99d46e81 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x99d8b1b4 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x99df23c4 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x99dfe35e i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x99c20039 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x99c4524a sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x99d1e4ce uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x99dced39 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x99e3a779 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x99e7eaec da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0x99e7fe34 _RNvNtNtCs3AkgXgqgK6r_4core5slice6memchr7memrchr -EXPORT_SYMBOL_GPL vmlinux 0x99ecbf23 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x99ee57f5 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x99e99fec call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x99e9f0cc edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x99edd531 regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f06813 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x99f20197 _RNvNvMNtCs3AkgXgqgK6r_4core3f32f9from_bits13ct_u32_to_f32 EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f6ce6b pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x99f91b2b _RNvXsg_NtNtCs3AkgXgqgK6r_4core4char7convertNtB5_13CharErrorKindNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x99fc4e19 backing_file_real_path +EXPORT_SYMBOL_GPL vmlinux 0x9a05417a crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name EXPORT_SYMBOL_GPL vmlinux 0x9a127198 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9a12e7df ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x9a2075ee _RNvMs2_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_13ParseIntError4kind -EXPORT_SYMBOL_GPL vmlinux 0x9a232ea2 net_failover_destroy EXPORT_SYMBOL_GPL vmlinux 0x9a234adb _RNvXs32_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13rcu_segcblistNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a2719b5 pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0x9a2851ef __SCT__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x9a2c802f __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x9a30ff59 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x9a371c5c __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x9a3d62bc _RNvXs1S_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10tss_structNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5c72ba failover_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a64a655 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x9a6a3860 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x9a723245 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x9a671bfd trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x9a6797c7 fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x9a7e57b9 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x9a8a3abd nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x9a96e9d4 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0x9a9db2f2 _RNvXs5b_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_24___sifields__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9aa5e482 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9ab27671 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x9aab1384 crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0x9ab51a36 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac132bc fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x9ac16165 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x9ac3ae69 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x9ac63235 device_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x9ac853be devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af09766 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x9aebddab pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9afb190a sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x9b032577 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x9b06e3d8 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x9af86433 devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b08a99b input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0x9b16d8a7 _RNvXs6_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_4CStrNtNtB9_3cmp10PartialOrd11partial_cmp EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x9b1b1bf7 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x9b1c210c crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x9b1b9bcb __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x9b2f300f thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0x9b354ce7 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x9b3f3ad3 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x9b49aac3 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x9b544d02 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x9b442553 dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b564ee4 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x9b5c650f ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b623a3f usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x9b64a04b _RNvXs3R_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_37mm_struct__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring -EXPORT_SYMBOL_GPL vmlinux 0x9b687017 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b6de87a gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7b4e sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b7364ac pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x9b7e49d5 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9b712491 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x9b81ba8a sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9b88709f ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x9b898ff5 _RNvXse_NtCs3AkgXgqgK6r_4core4cellNtB5_11BorrowErrorNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9b8ac13c __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b973d26 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba497dd i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0x9bab0441 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bbd87ee cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x9baee03a cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x9bc021c2 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x9bcc27af devl_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9bce361f xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x9bd3618e scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x9bdf5cb3 _RNvXs3r_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_46page__bindgen_ty_1__bindgen_ty_2__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be71765 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x9be75893 genphy_c45_baset1_read_status EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui EXPORT_SYMBOL_GPL vmlinux 0x9bf1aa05 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x9c05c373 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x9bf8517d msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x9bfa0501 nl_table EXPORT_SYMBOL_GPL vmlinux 0x9c060b60 _RNvXsG_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_22pcpu_hot__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9c082965 blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x9c13f64e devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x9c24a443 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x9c29af6c ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x9c1cb968 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9c223ad8 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c2677e2 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x9c35833a static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x9c399ce2 _RNvXs_NtCsbwHtcUjRN57_6kernel5typesuNtB4_14ForeignOwnable12from_foreign -EXPORT_SYMBOL_GPL vmlinux 0x9c3ff6dc unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x9c4b42f9 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0x9c5cc975 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x9c5f0331 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x9c46d663 kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x9c657a5e _RNvXs3_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB5_10DisplayInt7from_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9c6747b6 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x9c6c7e83 rust_helper_IS_ERR EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c778a54 __SCK__tp_func_console EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on EXPORT_SYMBOL_GPL vmlinux 0x9c805b48 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter9debug_set -EXPORT_SYMBOL_GPL vmlinux 0x9c87d942 __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0x9c8e2833 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid -EXPORT_SYMBOL_GPL vmlinux 0x9c9651e0 genphy_c45_pma_baset1_read_master_slave EXPORT_SYMBOL_GPL vmlinux 0x9c9877db _RNvXs2h_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16wait_queue_entryNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9ca18461 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c995f3a usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9c9d5d2a crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location -EXPORT_SYMBOL_GPL vmlinux 0x9cb2ee83 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x9cb3543a xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x9cb35d39 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9cbaa518 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cca4854 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x9ccb51cc sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x9cd49232 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x9cd4b77f pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x9cc72234 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x9cc94cec regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x9cd1d13c hsu_dma_do_irq EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cdbceb3 device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals EXPORT_SYMBOL_GPL vmlinux 0x9ce3b7ba _RNvXsq_NtNtCs3AkgXgqgK6r_4core3fmt3numNtB5_8LowerHexNtB5_12GenericRadix5digit -EXPORT_SYMBOL_GPL vmlinux 0x9ce7b37d mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x9ceec435 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x9ce71c12 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x9ce77582 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x9cea3944 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x9cedb8a0 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf9e6b6 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9cfb0e47 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d0a6613 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x9d133129 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow EXPORT_SYMBOL_GPL vmlinux 0x9d2035ac devm_hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x9d22fbd5 _RNvXs2v_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_28maple_range_64__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0x9d26afe1 usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x9d2d3f5b pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x9d2fd659 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9d3000b0 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x9d3f0b05 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode -EXPORT_SYMBOL_GPL vmlinux 0x9d507de7 crypto_sig_verify +EXPORT_SYMBOL_GPL vmlinux 0x9d66f618 devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x9d6d4901 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x9d6e8234 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x9d847501 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x9d849c82 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x9d713b57 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x9d725e3b irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x9d7480e5 crypto_sig_set_privkey +EXPORT_SYMBOL_GPL vmlinux 0x9d8b3b2e virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d972f92 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x9d8efda0 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9d972beb tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x9da1a770 pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0x9d9f798c dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0x9daa6ca3 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x9dae2c02 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x9dafe895 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x9db0dcb0 devl_assert_locked EXPORT_SYMBOL_GPL vmlinux 0x9db5e7a2 _RNvXs0_NtCs3AkgXgqgK6r_4core3anyDNtB5_3AnyNtNtB7_6marker4SendEL_NtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9dba7b61 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x9dbb3d5b fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9dbd5f1b ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x9dc03ddf _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings7WARNING -EXPORT_SYMBOL_GPL vmlinux 0x9dd8fa5b thermal_zone_device -EXPORT_SYMBOL_GPL vmlinux 0x9ddd7d7d gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9de43d68 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x9def237f __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x9dfb731d shake_page -EXPORT_SYMBOL_GPL vmlinux 0x9dfd0ca2 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x9e0241da icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x9dd5bead sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e2dd6b7 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x9e3950d2 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x9e3c9c64 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x9e471abe _RNvXs9_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB5_10DisplayInt7to_u128 EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e4c5c85 _RNvXs1s_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB8_8UpperExp3fmt EXPORT_SYMBOL_GPL vmlinux 0x9e52f37e vcap_rule_mod_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9e546bff vcap_tc_flower_handler_arp_usage -EXPORT_SYMBOL_GPL vmlinux 0x9e6138ca vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x9e663d14 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9e69d81c xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x9e54625f mmput_async +EXPORT_SYMBOL_GPL vmlinux 0x9e612ca3 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x9e6a36d4 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x9e6dded7 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x9e6f3ab8 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x9e6f7cf3 _RNvXs_NtCs3AkgXgqgK6r_4core5asciiNtB4_13EscapeDefaultNtNtNtNtB6_4iter6traits12double_ended19DoubleEndedIterator9next_back EXPORT_SYMBOL_GPL vmlinux 0x9e7c037a _RNvXs56_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16hrtimer_cpu_baseNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0x9e8811a4 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x9e96c8bd phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x9e9b1402 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x9e89144e dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9eac33dd pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x9e9dc6e6 icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0x9ec54539 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9ec67179 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x9ec7ea9e _RNvXsJ_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_8___m512bhNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0x9ed08b00 kick_process EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed78a95 __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0x9edc47ee iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x9eeb4a45 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x9ed86b0e regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9ed9947e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x9eeaa89e mm_kobj EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef5823b i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x9ef69e2e xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x9f0bbd12 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x9f0ccddc _RNvXst_NtNtCs3AkgXgqgK6r_4core9core_simd5masksxNtNtB5_6sealed6Sealed2eq -EXPORT_SYMBOL_GPL vmlinux 0x9f1b7258 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x9f2fe1bb vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x9f3fcc09 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x9f47d702 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x9f58b9e3 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x9f246ace blk_mq_quiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f5cf8aa clk_hw_determine_rate_no_reparent -EXPORT_SYMBOL_GPL vmlinux 0x9f633df6 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x9f64a608 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x9f64dba7 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x9f74e5b0 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9f760914 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x9f70f9e2 hsu_dma_probe EXPORT_SYMBOL_GPL vmlinux 0x9f77d130 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x9f795bb4 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x9f7adbce crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x9f8a27ca switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x9f8fc084 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x9f8fe59e skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x9f9c55f2 genphy_c45_plca_get_status -EXPORT_SYMBOL_GPL vmlinux 0x9f9da59e iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x9f81a031 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x9f8df704 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9f8e0ebb usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x9f93f923 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x9f98d345 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x9f9d67da netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fb30b90 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x9fbf69e3 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x9fad7cec class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9fb4180d bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x9fb85835 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x9fbcb9c5 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fc81de8 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fcf76b4 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9fd13f26 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9febf6b5 intel_pinctrl_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x9ff2489d led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x9ffae29f _RNvXsb_NtCs3AkgXgqgK6r_4core7convertNtB5_10InfallibleNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0x9ffd6796 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0xa00bf6eb _RNvXNvXss_NtCs3AkgXgqgK6r_4core3fmtINtNtBa_4cell7RefCellpENtB8_5Debug3fmtNtB2_19BorrowedPlaceholderBU_3fmt EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa033b82f housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xa01c8805 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0xa03644ca _RNvXs9_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB5_10DisplayInt6to_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa036dcd3 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xa03de0c5 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xa04377c2 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xa043faba xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0xa044840d vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0xa045368b dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xa041de0a devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa04240fc of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xa0448dcb pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0xa045bcf0 _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data9uppercase6lookup EXPORT_SYMBOL_GPL vmlinux 0xa0473c1c _RNvXs4_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impxNtB9_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa04c92ac devl_linecard_create EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0586c05 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0xa05bf4f1 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xa05d74ae pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xa06807df gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xa07105df kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xa07d164c extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa07f602e component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xa0584b38 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xa075ab1f iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xa07d7127 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa08ebea7 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xa090bb7e gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xa090fc57 __virtqueue_unbreak EXPORT_SYMBOL_GPL vmlinux 0xa098115b __SCT__tp_func_ipi_send_cpumask EXPORT_SYMBOL_GPL vmlinux 0xa09acdce devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xa09c3370 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xa0a3f4d0 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0xa0a57034 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xa0a4a5f8 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xa0ac394f lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xa0bd1af8 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0cc0e81 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0xa0ced7a3 hid_bpf_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xa0d336cc regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0f12325 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xa10606fa nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xa1075933 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0f6220c tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xa102e027 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type EXPORT_SYMBOL_GPL vmlinux 0xa117762b devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xa11d13ed irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xa1360bed perf_report_aux_output_id -EXPORT_SYMBOL_GPL vmlinux 0xa136f29b pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0xa13820d4 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xa13f683e __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xa140a54b i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa1234e14 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xa13f2ab2 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xa1476fca ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xa14984fc _RNvXs26_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_22spinlock__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa14bf728 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15dd934 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xa16a01a6 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa1611de3 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0xa1773512 _RNvXsC_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB7_8LowerHex3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa1976199 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0xa1a5f914 _RNvXsg_NtCs3AkgXgqgK6r_4core4cellNtB5_14BorrowMutErrorNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa1b2590c _RNvXNtNtCs3AkgXgqgK6r_4core3ops5rangeNtB2_9RangeFullNtNtB6_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xa1d37be9 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0xa1d4054b _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter25debug_tuple_field4_finish -EXPORT_SYMBOL_GPL vmlinux 0xa1d7515a edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1d8cefd crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa1dd5d6f crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0xa1df025c _RNvXs4b_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_6u16x32NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa1e32e08 dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0xa1e423e3 _RNvNtCs3AkgXgqgK6r_4core9panicking5panic EXPORT_SYMBOL_GPL vmlinux 0xa1e5149b _RNvMs0_NtCs3AkgXgqgK6r_4core3numl14from_str_radix -EXPORT_SYMBOL_GPL vmlinux 0xa1f72fb2 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xa1f9dd4e __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xa1f00f3f da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa1f36e0d nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print EXPORT_SYMBOL_GPL vmlinux 0xa20af12f _RNvXs7_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB5_10DisplayInt7from_u8 EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa21c0abf bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xa21653b7 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xa21bd401 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa21ebdf3 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa22cea3d iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xa2325909 __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xa236f1c0 pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa24c4f16 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0xa253576f dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xa258b1fb platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xa25a5fc9 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa26aa9b4 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xa26b8d95 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa267933b regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2707d33 scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0xa26dd3b0 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xa276f9d1 _RNvXsb_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa286003b sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xa28c578b dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xa294c3f6 crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0xa299c6d9 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xa296d7ce iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa29e5ce3 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xa2a482a3 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xa2a906d5 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0xa2aba214 _RNvXs3_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impmNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa2aee58a perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn EXPORT_SYMBOL_GPL vmlinux 0xa2b2deaa power_supply_charge_behaviour_show -EXPORT_SYMBOL_GPL vmlinux 0xa2b97bb9 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xa2b60024 of_css EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0xa2c304e4 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear -EXPORT_SYMBOL_GPL vmlinux 0xa2d4e53c __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2d71d6f device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa2d8e14c iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xa2d35b83 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xa2dcc145 pci_iov_get_pf_drvdata EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers EXPORT_SYMBOL_GPL vmlinux 0xa2e23dd0 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xa2e5d34a of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa2ed1eb1 pwm_put EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa302595a blkg_conf_exit -EXPORT_SYMBOL_GPL vmlinux 0xa30c1e0f vcap_is_last_chain -EXPORT_SYMBOL_GPL vmlinux 0xa317794a ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xa318266d acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa3193384 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xa3034ad0 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xa31da348 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xa31e680d pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xa322c68f pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0xa322eb48 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xa324c53a pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xa32f8bcc fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xa337262b __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xa33782ff _RNvXs8_NtCs3AkgXgqgK6r_4core5errorNtNtB7_4cell11BorrowErrorNtB5_5Error11description -EXPORT_SYMBOL_GPL vmlinux 0xa33e9dc0 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xa343b4f8 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xa34e2c64 _RNvXs1a_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25__fpstate_32__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa34ecada regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xa34fb9fa regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xa355b03a pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xa3564a5f balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0xa354dec5 crypto_akcipher_sync_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa35feefe nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xa361af10 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xa362537f rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xa362eb28 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xa36a7bb1 _RNvXs8_NtCs3AkgXgqgK6r_4core3fmtNtB5_9FormatterNtB5_5Write10write_char -EXPORT_SYMBOL_GPL vmlinux 0xa36d6ed0 nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa372a75d disk_set_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa388f3d3 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa39193c0 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xa39c52d7 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xa39ed370 acpi_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a36c73 cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0xa3a594fa rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0xa3a59a48 _RNvXs1_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa3ad05d3 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xa3a643f6 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xa3ad794e fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0xa3af48f2 auxiliary_find_device EXPORT_SYMBOL_GPL vmlinux 0xa3b3268d _RNvXsV_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_20jailhouse_setup_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xa3b6fcb3 _RNvXs5B_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_36k_itimer__bindgen_ty_2__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bc2ed0 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xa3c107b2 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0xa3c57158 _RNvXs5J_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9sched_avgNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa3d7c636 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa3ddda69 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xa3df40e0 priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0xa3d1b026 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa3e812e5 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa3f85ab2 syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa404e3c7 regulator_list_hardware_vsel -EXPORT_SYMBOL_GPL vmlinux 0xa4071aa1 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa407c3aa blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xa40c0920 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xa40c88f2 efivars_unregister EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4116727 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0xa41ee3e1 __rg_alloc_zeroed +EXPORT_SYMBOL_GPL vmlinux 0xa424fe01 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xa4479197 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44acf70 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xa450a6b8 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4544bf0 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xa455d30f pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4570393 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xa475b5e3 _RNvXsR_NtNtCs3AkgXgqgK6r_4core3str4iterNtB5_11CharIndicesNtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa47a1c8e aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa47e0ea7 xenbus_unmap_ring_vfree EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48c9ac8 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa4900b04 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xa49839bd rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xa4a63010 xen_xlate_remap_gfn_array EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4af1b94 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xa4b04849 acpi_dev_for_each_child EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b46359 usb_init_urb EXPORT_SYMBOL_GPL vmlinux 0xa4bf2e41 cppc_set_epp_perf EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c0dd86 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xa4c80f92 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xa4cbd6d4 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa4cec876 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa4f493af ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa4fc2827 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xa4fcec6a dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xa514d45f gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa525cab6 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa4c4ded0 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xa4ca83be ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xa4ea8b57 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xa4f979b7 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xa4fd28a1 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xa50113ad sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xa5017c69 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa5126865 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xa51428ce rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xa519847b fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xa52d4e2a task_cls_state EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context EXPORT_SYMBOL_GPL vmlinux 0xa5378b31 _RNvXs8_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationINtNtNtB7_3ops5arith9DivAssignmE10div_assign EXPORT_SYMBOL_GPL vmlinux 0xa53f754c _RNvXs6_NtNtCs3AkgXgqgK6r_4core3num3fmtNtB5_4PartNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa54877c1 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa548d4f7 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xa5492c56 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa551c1d8 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xa5562eae iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa56272ed hid_bpf_disconnect_device +EXPORT_SYMBOL_GPL vmlinux 0xa555e7b5 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xa560f3cc regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xa5639eea phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa5683a9d crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa56e727c __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xa571caf8 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xa5737ced _RNvXs5I_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_5vtimeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev EXPORT_SYMBOL_GPL vmlinux 0xa57b7f3f irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xa57d34ed nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xa589de33 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0xa58c639b dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xa587d06f acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa58d0a8d gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa5a340d2 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xa5a400b9 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xa5aa5c07 _RNvXse_NtCs3AkgXgqgK6r_4core3fmteNtB5_5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa5b02461 _RNvXs4_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB5_10DisplayInt7to_u128 EXPORT_SYMBOL_GPL vmlinux 0xa5b4a3c4 _RNvXs1_NtCs3AkgXgqgK6r_4core3anyDNtB5_3AnyNtNtB7_6marker4SyncNtBG_4SendEL_NtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa5bc248e generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported EXPORT_SYMBOL_GPL vmlinux 0xa5c6edd3 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xa5cd69c4 folio_test_hugetlb EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5deb32f l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa5e4ee13 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5ee51f6 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6029a92 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xa5f72458 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0xa609c469 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa616e671 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xa629c025 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0xa632f5fb ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xa634e149 crypto_clone_shash -EXPORT_SYMBOL_GPL vmlinux 0xa656da38 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xa65901db tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0xa6674747 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xa63564c5 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xa6374874 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xa6410b7b regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xa64fd3d6 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xa65ae61c extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa666050d ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0xa66bb70f devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xa66de16f strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xa66f2e1c skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa67504cd ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xa677fda4 _RNvXsl_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_23qspinlock__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa678b69a __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xa68b0064 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa691f107 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xa695d1ae gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a3b8ee set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk -EXPORT_SYMBOL_GPL vmlinux 0xa6a8ef89 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xa6ab0a09 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa6af0cba ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6c49cd1 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xa6cca8b5 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa6db2968 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xa6de9d16 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xa6be8f5a crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xa6c4a489 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa6dff296 acpi_fetch_acpi_dev EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa7069c37 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xa706ed0c bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xa6ee1c76 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xa6fa70b5 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xa70563ee devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7115f33 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa71ce103 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xa71d0056 relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0xa7240c04 _RNvXsu_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_7___m512iNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xa7241959 pkcs7_supply_detached_data -EXPORT_SYMBOL_GPL vmlinux 0xa72f14e1 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa74cb918 pci_p2pdma_add_resource -EXPORT_SYMBOL_GPL vmlinux 0xa7510e48 __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa751f152 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xa7549349 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa754ace4 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xa75bde5d usb_deregister EXPORT_SYMBOL_GPL vmlinux 0xa767bd53 _RNvXs1n_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9saved_msrNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa769c26e virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0xa772c721 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xa76a46be __SCK__tp_func_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xa77349e8 _RNvNvMNtCs3AkgXgqgK6r_4core5sliceSp15copy_from_slice17len_mismatch_fail -EXPORT_SYMBOL_GPL vmlinux 0xa77ca1b4 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xa7827a4f rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xa7852073 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xa788f107 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xa7903a85 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xa795c0df fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xa78537aa free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa7909388 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xa79339b6 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xa795231e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xa797e06f elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xa798f848 dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0xa79c2235 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xa7a021b9 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa79d9111 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0xa7a4e79e _RNvXs5_NtCsbwHtcUjRN57_6kernel5errorNtB5_5ErrorINtNtCs3AkgXgqgK6r_4core7convert4FromNtNtBO_3fmt5ErrorE4from EXPORT_SYMBOL_GPL vmlinux 0xa7a691c2 _RNvNtNtCs3AkgXgqgK6r_4core5slice5index22slice_index_order_fail -EXPORT_SYMBOL_GPL vmlinux 0xa7a773f6 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0xa7b137e6 _RNvXs5u_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_5alarmNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xa7b2a568 _RNvXs24_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18___call_single_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa7b50627 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xa7b7b40c ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xa7c4377d usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xa7c7b754 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa7d16efd mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xa7d420e4 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0xa7d69dc1 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0xa7e56dde sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xa7ec34df pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xa7f07227 vcap_tc_flower_handler_tcp_usage -EXPORT_SYMBOL_GPL vmlinux 0xa800739d sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xa7d6cd4d fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xa7dc5d2c devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa7dca2e7 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xa7dfaa7f securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xa7eda65a __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xa7ee55c0 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7f499b8 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xa7f98fd5 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xa800410e fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xa805c01e fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xa80b0488 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xa80d3d45 vcap_del_rules EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa82a2238 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xa8307b26 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xa81967ef usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa83edd08 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xa8401ba5 _RNvXs0_NtCsbwHtcUjRN57_6kernel3strNtB5_4CStrNtNtCs3AkgXgqgK6r_4core3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xa84e4836 _RNvXsC_NtCs3AkgXgqgK6r_4core4charNtB5_11ToUppercaseNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xa850bc8b bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8521a95 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xa85bbe00 __SCT__tp_func_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0xa85f392c _RNvXs14_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10pv_irq_opsNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa8633d42 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa85fc280 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xa867f0e5 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0xa868119e _RNvXs2_NtCs3AkgXgqgK6r_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0xa86d20a2 _RNvXs2C_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_38maple_node__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xa86facb9 _RNvXsb_NtCsbwHtcUjRN57_6kernel3strNtB5_9FormatterNtNtCs3AkgXgqgK6r_4core3fmt5Write9write_str -EXPORT_SYMBOL_GPL vmlinux 0xa87ffcbb fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next EXPORT_SYMBOL_GPL vmlinux 0xa8854b30 _RNvXs53_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7hrtimerNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa8942acb ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xa88a88d0 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xa88e2a61 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xa88f54b3 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0xa89f255b irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa89fcb38 umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8a972a9 xen_remap_pfn EXPORT_SYMBOL_GPL vmlinux 0xa8afb29a _RNvXs2k_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_5mutexNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa8b889ec pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic -EXPORT_SYMBOL_GPL vmlinux 0xa8d7079e fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xa8c14c55 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xa8c15e7a cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xa8d13061 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xa8d9486d mmc_switch EXPORT_SYMBOL_GPL vmlinux 0xa8da777f _RNvXs38_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_14notifier_blockNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xa8dc941e mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa8f186ea devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xa8fbaa6b pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0xa8fbe35a acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0xa8fdb27a _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter15debug_lower_hex EXPORT_SYMBOL_GPL vmlinux 0xa9017069 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xa911dd75 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit EXPORT_SYMBOL_GPL vmlinux 0xa913d86f _RNvXsf_NtCsbwHtcUjRN57_6kernel3strNtB5_16CStrConvertErrorNtNtCs3AkgXgqgK6r_4core3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xa91aa4bc fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xa91dcb28 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa92a2ca0 udp_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xa9312100 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa92e4790 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xa9307c3d extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa932c79a dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xa94107e3 _RNvXs1d_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB8_8UpperHex3fmt EXPORT_SYMBOL_GPL vmlinux 0xa944ad1f _RNvXsc_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_18ftrace_likely_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xa947d37a spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa952e6dd ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xa94c53a5 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xa9581e90 uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa95be230 sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa9727e3a of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xa971093d usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa97f881d vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0xa9850cf7 register_fprobe -EXPORT_SYMBOL_GPL vmlinux 0xa988dc9a pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xa98d5932 dax_add_host -EXPORT_SYMBOL_GPL vmlinux 0xa995216f bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xa9865716 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9a1208f _RNvMs7_NtNtCsbwHtcUjRN57_6kernel4init10___internalNtB5_16OnlyCallFromDrop3new -EXPORT_SYMBOL_GPL vmlinux 0xa9b2a8d3 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xa9bfd492 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xa9cd543e device_move +EXPORT_SYMBOL_GPL vmlinux 0xa9a7d4bc bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xa9ada202 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa9c6c0f1 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0xa9ce482e _RNvXs5G_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10rv_monitorNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xa9df8207 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xa9e391e8 thermal_zone_device_type +EXPORT_SYMBOL_GPL vmlinux 0xa9e897c2 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xa9f05fe2 _RNvXs8_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa9f150ed fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xaa032c48 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xaa0607ea perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xaa02b235 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xaa039fc7 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0xaa0839ba _RNvXs7_NtNtCs3AkgXgqgK6r_4core3fmt3numtNtB5_10DisplayInt5to_u8 +EXPORT_SYMBOL_GPL vmlinux 0xaa1afdda mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xaa20a1ff clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xaa247323 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xaa249022 dev_pm_genpd_get_next_hrtimer EXPORT_SYMBOL_GPL vmlinux 0xaa393cc6 mas_preallocate -EXPORT_SYMBOL_GPL vmlinux 0xaa3a6a0c wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xaa5a4083 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xaa556b11 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc EXPORT_SYMBOL_GPL vmlinux 0xaa62e783 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa794d0c page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0xaa7ab749 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xaa84751c hid_bpf_device_init EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaa896754 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xaa973319 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xaa981bd8 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xaa9be6d1 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xaa9e94a4 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xaa881246 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xaa8e26d3 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa8ec4f4 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xaa950c69 hid_bpf_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xaa957b99 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xaa964dcf spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xaa9d2b69 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xaaa3aec4 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaab10e04 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0xaab97caf __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaab12b52 public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0xaac11563 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xaad04271 devm_of_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xaadc07b9 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xaae13fbc blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xaaeb6917 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xaaeb88f5 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xaaf9f424 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xab004bd2 __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xab0d36f9 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0xab1a218d mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab2d991a dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0xab37fc1d pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0xab2c592c encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xab2f81e8 kiocb_modified EXPORT_SYMBOL_GPL vmlinux 0xab54293c clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xab55cf82 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xab595673 get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xab5ce243 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xab603d9f inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xab620878 _RNvXsH_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_5u16x4NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xab696239 _RNvXsO_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_9AtomicI64NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xab6abfb8 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xab74c6d2 device_register +EXPORT_SYMBOL_GPL vmlinux 0xab7713ed dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0xab7bb231 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xab7ff6df clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xab89f4ee spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xab8e8052 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xab92825a pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xaba33d36 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xab7cca05 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xab81f84f devl_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xab855e2a irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xab8bbc74 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xab8ed1a7 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xaba9ada4 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xabb572fe rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabbc76ee edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0xabc06f4c cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc2fbca sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep -EXPORT_SYMBOL_GPL vmlinux 0xabca862d regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xabca033b unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xabd23f02 _RNvXs2_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0xabdf3dd3 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xabe22cb9 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xabebd3e9 dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xac06e7a5 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xac0abb0e dax_inode -EXPORT_SYMBOL_GPL vmlinux 0xac0c2b83 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xac196cf7 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xac26abbc disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xac001b4d usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xac1433b7 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xac1ca1e9 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xac2890ab blkg_conf_exit EXPORT_SYMBOL_GPL vmlinux 0xac2897e9 _RNvXsf_NtCs3AkgXgqgK6r_4core4charNtB5_11ToUppercaseNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back -EXPORT_SYMBOL_GPL vmlinux 0xac425b5a tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xac330eff disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xac34c22f regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xac3f278c fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0xac42ac8b rust_helper_BUG -EXPORT_SYMBOL_GPL vmlinux 0xac55a8ac pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xac617990 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xac4ee6d2 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xac6a068b __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xac728f8b _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter26debug_struct_field4_finish -EXPORT_SYMBOL_GPL vmlinux 0xac8ab44b switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xac99d343 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xaca8f28b crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xac7bc3fb pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xac8dd8f8 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac8fc887 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xaca557a7 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xaca7a8b9 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xacaeeef7 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xacb0315d xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xacb3c6b0 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbd4f94 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xacc6ca94 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xacb5d5e2 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xacc5629a get_pid_task EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xaccc9b9e extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xaccd94d2 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xaccf0cde __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xacd9e1ea rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xacd20317 blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0xaced2804 _RNvXs5g_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_24___sifields__bindgen_ty_7NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xacf64c31 _RNvXs2K_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16swait_queue_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xacfbe5a9 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xad1d3b45 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xacffb2b1 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xad03c090 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xad0cdf0d msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xad374476 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad3b9a53 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xad3aa2da iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xad4033c7 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xad416330 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad5b217d tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad624a1c sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6f9961 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xad725b8a gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xad670f6a __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0xad73ed9b _RNvXs5M_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15sched_rt_entityNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xad7a7df1 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadae7c58 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0xadaf855d _RNvXsp_NtCs3AkgXgqgK6r_4core5arrayNtB5_17TryFromSliceErrorNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xadb41e27 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xadb924a8 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xadcdd04c virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xadd2e2aa crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xadda95da crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xadb08809 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xadb5d28f ata_eh_read_sense_success_ncq_log +EXPORT_SYMBOL_GPL vmlinux 0xadbfbbeb netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xadc3d472 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xadea5c7a scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xade55c69 da903x_reads EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae0dc565 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xae0e874b rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xae05a6fa nop_posix_acl_access +EXPORT_SYMBOL_GPL vmlinux 0xae0c4e19 tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xae1feb86 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xae20c751 thermal_acpi_passive_trip_temp -EXPORT_SYMBOL_GPL vmlinux 0xae282535 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xae2d5cff handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xae2f926f pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xae344004 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3cdf78 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xae3da4e3 x86_vector_domain EXPORT_SYMBOL_GPL vmlinux 0xae43323e _RNvXs9_NtNtCs3AkgXgqgK6r_4core3str5errorNtB5_9Utf8ErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xae6769ab vcap_tc_flower_handler_ip_usage -EXPORT_SYMBOL_GPL vmlinux 0xae68a407 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xae49adc5 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xae4f8374 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xae59c383 __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0xae6354e9 crypto_sig_maxsize EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6a79bb rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xae714369 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xae77d411 extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae86e5d0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xae983649 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xae98a95e dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0xae9ce4a1 _RNvXso_NtNtCs3AkgXgqgK6r_4core3fmt3numNtB5_6BinaryNtB5_12GenericRadix5digit EXPORT_SYMBOL_GPL vmlinux 0xaea71bc6 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xaeb44cda __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0xaebe073a nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xaea78a1c usb_string +EXPORT_SYMBOL_GPL vmlinux 0xaeb526b2 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xaebc7bdf crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xaebe1b9b usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0xaec274e6 _RNvXNtCsbwHtcUjRN57_6kernel9allocatorNtB2_15KernelAllocatorNtNtNtCs3AkgXgqgK6r_4core5alloc6global11GlobalAlloc5alloc -EXPORT_SYMBOL_GPL vmlinux 0xaec982dc xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xaed3aa21 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xaed75279 mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xaee85085 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0xaef7a18c ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xaecccd0c dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xaed1baf9 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xaed4fcd2 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xaee2826a crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xaee404ad dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xaee5629d ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xaee95441 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0xaefd1039 gov_update_cpu_data EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0927ec devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf0a097c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xaf0b0342 regulator_map_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf1249b7 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf0c90b6 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xaf16ca52 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xaf1a4da2 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xaf20954f pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0xaf311fea _RNvXsf_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impyNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0xaf33a158 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xaf3d69be serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xaf3bb9cf phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check EXPORT_SYMBOL_GPL vmlinux 0xaf428325 modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0xaf437700 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xaf43b29c regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xaf4b2474 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xaf4e35ab tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaf644cf0 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xaf53d976 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xaf5e1575 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf685875 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xaf697a46 __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xaf6b44ca _RNvXs3N_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5f32x8NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule EXPORT_SYMBOL_GPL vmlinux 0xaf6eb61e _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings5ALERT +EXPORT_SYMBOL_GPL vmlinux 0xaf732b28 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xaf78f699 fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf80c646 evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xafaaa397 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xafc34235 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xaf8d48c1 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xaf9a76eb dev_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xafcd1cb1 vcap_chain_id_to_lookup EXPORT_SYMBOL_GPL vmlinux 0xafd0dc79 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0xafd3f9a0 _RNvXs1n_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5f32x2NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xafdc9f9c gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe49789 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xafe75626 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xafef517b tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xaffb45b1 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xb007ef87 __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xb008642c pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb009390c iov_iter_extract_pages -EXPORT_SYMBOL_GPL vmlinux 0xb00e9baf device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xb01e1de1 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xaffa372e __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xb000d1b8 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0xb0113e83 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xb0118d45 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xb02abf56 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb03aa2b3 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xb0490686 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xb0443240 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xb049f5f0 _RNvMNtCsbwHtcUjRN57_6kernel5errorNtB2_5Error8to_errno -EXPORT_SYMBOL_GPL vmlinux 0xb053c5e6 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xb056f402 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xb052f54b hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb060c566 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xb0702e5d fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb0763324 _RNvXs4o_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_11NonZeroI128NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xb0779051 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0864e70 disk_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0xb0946c2f ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xb08661ed regmap_might_sleep EXPORT_SYMBOL_GPL vmlinux 0xb097d43e _RNvXs2L_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11swait_queueNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb0998850 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xb099d402 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0xb09d550d _RNvNvMNtCs3AkgXgqgK6r_4core3f64d9from_bits13ct_u64_to_f64 -EXPORT_SYMBOL_GPL vmlinux 0xb09fd4af pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xb0aa3a27 io_uring_cmd_do_in_task_lazy +EXPORT_SYMBOL_GPL vmlinux 0xb0a6fc9f xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xb0ace1ac ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb0b4b6bd __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0ba0576 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb0be8cd3 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d7203c pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xb0e7ab1f __traceiter_console EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f9fc8d dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb0f0e40c dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xb0f90ab4 __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xb10563bd _RNvXs1P_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11entry_stackNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb111b46a nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xb117b5a7 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xb1181f9a blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0xb11cc43b __SCT__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb12cc188 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xb13019f9 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xb1347b18 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xb1361797 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb126a741 irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0xb13837ce vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0xb13dd2c8 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xb13ff66d usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0xb13ff8d7 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xb1450409 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xb148c6c9 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb143d742 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xb1495ae3 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb14b8cb4 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xb15d034b virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1655996 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb17499d2 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb189bb70 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xb1acfa31 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xb1660561 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb1817a29 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xb19da297 walk_hmem_resources +EXPORT_SYMBOL_GPL vmlinux 0xb1a698fe blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bc3c97 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start EXPORT_SYMBOL_GPL vmlinux 0xb1c10209 _RNvXs3_NtCs3AkgXgqgK6r_4core4charNtB5_13EscapeDefaultNtNtNtNtB7_4iter6traits10exact_size17ExactSizeIterator3len EXPORT_SYMBOL_GPL vmlinux 0xb1c64af0 _RNvXsv_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_5i16x2NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb1d5870f blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xb1dbfca7 thermal_cooling_device_update -EXPORT_SYMBOL_GPL vmlinux 0xb1df9698 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xb1dfecea power_supply_battery_info_properties_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs EXPORT_SYMBOL_GPL vmlinux 0xb1e369f8 _RNvMs5_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_9DebugList6finish -EXPORT_SYMBOL_GPL vmlinux 0xb1e49627 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xb1e88edb yield_to EXPORT_SYMBOL_GPL vmlinux 0xb1e98d64 _RNvXNtNtNtCsbwHtcUjRN57_6kernel4sync4lock5mutexNtB2_12MutexBackendNtB4_7Backend4lock -EXPORT_SYMBOL_GPL vmlinux 0xb1ea267b vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xb1f262ff sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb20ada6b usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xb2034fe7 vcap_chain_offset EXPORT_SYMBOL_GPL vmlinux 0xb20e014e _RNvNvMs16_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB8_11NonZeroI12813new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0xb21ab84e md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xb210ba79 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xb21606b1 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xb217e246 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xb21b0a1e _RNvXsr_NtCs3AkgXgqgK6r_4core3nummNtNtNtB7_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb21faa43 _RNvXs10_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8idt_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb226e91e dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0xb2343371 _RNvNvMsS_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_10NonZeroI3213new_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0xb23fddcc regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb240bf37 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xb2434025 serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0xb24d3a2e dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xb24dcfdf usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xb24f011f dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0xb2519f9e of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0xb256be16 efivar_is_available -EXPORT_SYMBOL_GPL vmlinux 0xb259d6eb gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb263011b tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xb263acd7 _RNvXsi_NtCs3AkgXgqgK6r_4core7convertNtB5_10InfallibleINtB5_4FromzE4from +EXPORT_SYMBOL_GPL vmlinux 0xb265731e devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb275d286 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xb285a896 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xb286d45d clk_hw_forward_rate_request -EXPORT_SYMBOL_GPL vmlinux 0xb2914346 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb27196bf blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xb284c9e0 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xb28a9f5c gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2a64d49 i2c_dw_acpi_configure EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xb2b65a85 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2d8c2f7 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xb2d9faee da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb2c7876d devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xb2d539b4 edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0xb2df590c thermal_zone_get_trip EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2f5d3a8 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xb2f89197 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb2ec8ce4 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb2f343ec pci_p2pmem_alloc_sgl EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb2fd827d regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xb2fa13bb regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full -EXPORT_SYMBOL_GPL vmlinux 0xb30d5d87 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0xb314cc6a devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xb31d91e8 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xb31eadc4 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0xb324dfce acpi_dev_get_dma_resources EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb329437e fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xb337d1ba gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb34b18b4 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xb3353de4 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb33da9fc nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb346f663 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0xb3509dd4 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0xb353d2f6 _RNvXs3Z_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u8x64NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb36cfb71 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xb36d5a58 _RNvXs1X_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i8x16NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb36e854c gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0xb37aeefe usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xb37db4cd regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xb3811e59 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb386be99 xfrm_get_translator EXPORT_SYMBOL_GPL vmlinux 0xb38afca1 init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xb392cef1 _RNvXsx_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_7__ddebugNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb3958bc4 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb39e11be irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0xb39feec7 _RNvXs17_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB8_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb3a7f36f devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xb3b0c69a xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0xb3ca39c2 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xb3cf50bb gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xb3ef78af iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xb3a73734 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb3a93c27 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xb3b3eb61 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xb3d9f442 i2c_acpi_client_count EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xb4009970 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xb406aa83 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xb417dcfd ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xb416d895 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0xb424bad2 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xb42c6a10 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb42eee95 gnttab_dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled EXPORT_SYMBOL_GPL vmlinux 0xb45650cb _RNvXs4f_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_10NonZeroU16NtNtNtBa_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xb46214ee tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xb464988d balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb4667401 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xb46a6cee usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xb4702742 _RNvNtCs3AkgXgqgK6r_4core9panicking14panic_nounwind -EXPORT_SYMBOL_GPL vmlinux 0xb4710cd0 acpi_get_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0xb471416a nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0xb4801026 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xb479876c edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb47ab948 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb4936d10 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb495f030 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xb49a10a1 power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0xb4a1ebb8 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0xb4abf685 __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb4bc4057 _RNvMs6_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_8DebugMap5value -EXPORT_SYMBOL_GPL vmlinux 0xb4bda053 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0xb4c3233d usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xb4c5a5cb devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xb4d1a704 amd_iommu_is_attach_deferred -EXPORT_SYMBOL_GPL vmlinux 0xb4e5457c regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xb4caf0ee rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xb4df4398 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f6c7ed crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xb4f9c870 __traceiter_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xb4fbfe6f umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xb4fa648b blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xb4ffe08b blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb501f921 __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list EXPORT_SYMBOL_GPL vmlinux 0xb5192224 _RNvMs_NtCsbwHtcUjRN57_6kernel3strNtB4_4CStr10to_cstring -EXPORT_SYMBOL_GPL vmlinux 0xb51b13ec dm_post_suspending EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb526f368 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0xb5291a37 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xb5304331 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb52ff286 devl_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xb5331728 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xb533a0fa input_class -EXPORT_SYMBOL_GPL vmlinux 0xb535c16e hsu_dma_remove -EXPORT_SYMBOL_GPL vmlinux 0xb5395720 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb53b7b9f dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb5386d18 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xb53b7a65 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb545e8f7 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xb5463e97 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xb5475cee mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb54f1819 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xb55d12f7 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xb5525c34 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb57622a3 __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0xb57ac4ec device_store_int -EXPORT_SYMBOL_GPL vmlinux 0xb58a1dee unregister_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0xb59b9c87 vcap_select_min_rule_keyset +EXPORT_SYMBOL_GPL vmlinux 0xb57cba2c vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xb58012ce crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xb59b9c56 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb59e5b09 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb5a50755 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xb5a695e3 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb5a7f72a dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5ed6289 xdp_features_set_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0xb60482a9 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xb6122130 pci_p2pmem_free_sgl -EXPORT_SYMBOL_GPL vmlinux 0xb61e8072 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xb624bc70 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb5aa8c50 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xb5b19856 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xb5cb6f5b devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xb5d75e35 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xb5fe6f8f acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62b0e8e __SCK__tp_func_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0xb62f2ef3 _RNvNvMs5_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_10NonZeroU1613new_unchecked8comptime EXPORT_SYMBOL_GPL vmlinux 0xb6303c49 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3mem15transmutabilityNtB5_6AssumeNtNtNtB9_3ops5arith3Sub3sub EXPORT_SYMBOL_GPL vmlinux 0xb634e254 _RNvXs5_NtNtCs3AkgXgqgK6r_4core3ops11index_rangeNtB5_10IndexRangeNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63ad829 iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb6442880 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb64d31ff crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb65165b9 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb6573ba1 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xb6576e1a __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xb661aad1 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xb662c3de _RNvXs2e_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_24class_spinlock_irqsave_tNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb66b3832 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0xb66d0854 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xb666350d xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0xb6727f67 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0xb67861c8 _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data11white_space14WHITESPACE_MAP EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67a7073 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xb6831615 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb698305b device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb68e5798 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate EXPORT_SYMBOL_GPL vmlinux 0xb6a0ff85 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb6aaf8d6 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb6acb052 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0xb6af1108 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter25debug_tuple_field5_finish -EXPORT_SYMBOL_GPL vmlinux 0xb6b05513 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6cf40b0 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xb6d2287e spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xb6d83f8a vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xb6e0a39b security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xb6e298be scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0xb6e5e43f __dma_request_channel EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6e7c99d vcap_set_tc_exterr EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb6f20773 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xb6f23a99 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb6f35d8f clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6f728b0 devm_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xb6fe9d01 _RNvXs1P_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_15SplitWhitespaceNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb701a6d7 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xb6ffc75e spi_new_device EXPORT_SYMBOL_GPL vmlinux 0xb71bfc87 _RNvXs3v_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_32page__bindgen_ty_1__bindgen_ty_5NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb7310c91 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb720142f skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xb726f307 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xb727f704 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb733d961 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb7380fe1 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xb7387a5e mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xb73ae869 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0xb73c22d7 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb74962ac __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xb749656f disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb74df14c usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init -EXPORT_SYMBOL_GPL vmlinux 0xb7566971 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xb759eb12 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xb75dc382 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xb76f049b mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xb784411e dma_resv_set_deadline -EXPORT_SYMBOL_GPL vmlinux 0xb7a2f972 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xb7552079 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xb760d4f2 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb77fc67a fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xb786e6da phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xb78a4dd2 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xb78db1f9 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xb78f7ecf __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb7a0c5a6 regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0xb7a41803 _RNvXs1f_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11__ymmh_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xb7a99b63 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb7a9b34b regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xb7af0699 usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0xb7b1f6b8 _RNvXsF_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_36pcpu_hot__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xb7b703bd vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0xb7bcfc02 _RNvMs7_NtCs3AkgXgqgK6r_4core3numy14from_str_radix EXPORT_SYMBOL_GPL vmlinux 0xb7c276e5 _RNvXs2_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB5_10DisplayInt6to_u16 EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c7e3f8 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xb7cdbd03 devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xb7d46097 _RNvXs6_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_15TryFromIntErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7e07404 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xb7e43ca3 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb7e99167 __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xb7df8583 perf_report_aux_output_id +EXPORT_SYMBOL_GPL vmlinux 0xb7e6417f scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb7ed828b devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xb8021376 _RNvXNtCs3AkgXgqgK6r_4core5asciiNtB2_13EscapeDefaultNtNtNtNtB4_4iter6traits8iterator8Iterator9size_hint -EXPORT_SYMBOL_GPL vmlinux 0xb8052fda pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0xb80813cf wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xb8131ba9 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xb81e3905 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xb816ff4f iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync EXPORT_SYMBOL_GPL vmlinux 0xb827f214 _RNvXs9_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3imphNtB9_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0xb82a9d1a md_start -EXPORT_SYMBOL_GPL vmlinux 0xb839f27d devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xb83b5000 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xb828249f genphy_c45_read_eee_abilities +EXPORT_SYMBOL_GPL vmlinux 0xb8354d9c serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xb83dc7d4 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xb83eb7b7 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xb84f3756 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0xb85c353a __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xb875bcaf kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xb8538225 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xb85a3814 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0xb88f00b3 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0xb895fc6d hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xb893d211 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xb899ce38 __clk_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a72695 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0xb8a9b02c _RNvXs2U_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15debug_obj_descrNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xb8ab68df intel_microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0xb8ada444 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb8b1498f sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8bc2cb1 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb8c92635 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8dee025 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xb8e17ec2 _RNvXsZ_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB7_5Octal3fmt +EXPORT_SYMBOL_GPL vmlinux 0xb8e96c8b __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xb8f00102 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb90596be __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xb9067f1f __rust_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb908dead device_match_any EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb918cde6 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xb92e4219 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xb93c1925 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xb91346e2 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb918e1d4 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xb92ed964 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xb92f39fd dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xb93e6d87 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb9425173 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0xb9478f8e __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xb952630f pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xb948b9d7 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xb956d465 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb969cb72 acpi_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0xb96b31e1 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xb970f2da tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xb9755d40 __SCK__tp_func_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb9757b13 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xb978293d crypto_clone_shash +EXPORT_SYMBOL_GPL vmlinux 0xb97d57a8 devm_hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0xb983960c __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9857a5c rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xb991fc69 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xb9954d22 user_update EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xb99afc28 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xb9ab6bb3 pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9ceeba8 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d6018b crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xb9dbb13d perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xb9f21ea1 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb9fb6e65 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb9ff50af __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb9d439f9 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xb9d791bc cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xb9e21358 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb9e2d5eb xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xb9f90fe6 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xb9ff4adb clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup EXPORT_SYMBOL_GPL vmlinux 0xba02cd90 _RNvMNtNtCs3AkgXgqgK6r_4core5panic10panic_infoNtB2_9PanicInfo10can_unwind -EXPORT_SYMBOL_GPL vmlinux 0xba031740 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xba0eabdd acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xba1372d5 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xba1a2805 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xba0a72a3 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xba1d8013 _RNvXs0_NtCs3AkgXgqgK6r_4core4timeNtB5_8DurationNtNtNtB7_3ops5arith3Add3add EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xba2b10fc __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba455225 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xba458647 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xba498797 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xba53a19c usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xba5f7665 sdio_readw EXPORT_SYMBOL_GPL vmlinux 0xba686f21 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xba786156 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xba72cc0e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xba792087 devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap -EXPORT_SYMBOL_GPL vmlinux 0xba87c290 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xba94f96d scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xba9c9fae access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xba9cf079 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xbaa13977 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xbaa6cc60 vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0xbaae651a _RNvXsu_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0xbab47291 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xbab1f629 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xbab2da24 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0xbab64dfe _RNvXsE_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB7_6Binary3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbab8ca45 component_master_del EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabfda47 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xbac0bfbd platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xbac870e0 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xbacbc60a bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xbacce074 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xbacd9602 rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0xbadc80b2 arch_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbae08d1c xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0xbaeddabb _RNvXss_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB7_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0xbaef27d8 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xbaee075b i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbaeecf72 pci_create_ims_domain EXPORT_SYMBOL_GPL vmlinux 0xbaf0e081 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafa2f0e vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xbafca754 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register EXPORT_SYMBOL_GPL vmlinux 0xbb099bc8 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter26debug_struct_field5_finish EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb0d7875 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xbb10f130 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbb1072de serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xbb238d28 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xbb2ab012 pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0xbb313656 _RNvXs2_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_21FromBytesWithNulErrorNtNtB9_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xbb35ef87 mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0xbb3fe7bb xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xbb3c9757 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb422d8b icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0xbb4cfd7e pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xbb532df2 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb4b30e4 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id -EXPORT_SYMBOL_GPL vmlinux 0xbb60bf72 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb689996 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6f7130 usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb72dfb9 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xbb79f35f fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xbb7c8a03 fsverity_verify_blocks -EXPORT_SYMBOL_GPL vmlinux 0xbb9bc4da key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xbbaadb2a adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xbb9c235d fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xbbae0c46 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xbbae97fb _RNvXs7_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impiNtB9_7Display3fmt +EXPORT_SYMBOL_GPL vmlinux 0xbbb0f8f2 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbbb58b2b usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbc16fe7 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xbbbaf2b2 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xbbc85645 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xbbcc56a4 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xbbd28801 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xbbd32aa8 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xbbd60909 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0xbbd6967e _RNvXs1e_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11__fpstate_64NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xbbddeda5 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbc0b5297 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbc10fe59 blk_stat_disable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xbc1426f9 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0xbc2c7a8c sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xbc2d1ffe fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xbbe56b19 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xbbe6bfd1 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xbbe8c763 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xbbea5950 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xbbf664dd iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xbbfe25af netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xbbfebfca find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xbc089c15 __tracepoint_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0xbc10dd1a fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc39677c __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc4c4de4 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xbc49613e scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel -EXPORT_SYMBOL_GPL vmlinux 0xbc50d00c fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xbc5a8b06 device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc629298 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xbc6a900f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xbc6afb76 nvmem_layout_unregister EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7384f1 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbc6e10e6 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xbc74498d clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0xbc83661e _RNvXs5E_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15rv_task_monitorNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xbc8ffce8 pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0xbc93340e __SCK__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xbc95d82b srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xbc99df52 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbc9c6d0b debugfs_create_devm_seqfile EXPORT_SYMBOL_GPL vmlinux 0xbca7d979 _RNvXs2B_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10maple_treeNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc2314b phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbccee1b0 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0xbcd6c046 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xbcc8b0ad event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xbcd3cc9e sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xbcd77deb _RNvXs5_NtCs3AkgXgqgK6r_4core5errorNtB5_6SourceNtNtNtNtB7_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name EXPORT_SYMBOL_GPL vmlinux 0xbce12556 clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xbce24a33 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbcebc342 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xbceee53d fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf5ef04 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbd001ea3 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xbd030c1a da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xbcf3f829 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xbd01bd89 dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0xbd06c1fb wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd181713 crypto_sig_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xbd195c69 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xbd199780 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xbd1be7cd dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0xbd1bfc5a _RNvXsR_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_8edd_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd433b29 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0xbd4c0d2c devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0xbd5214e7 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbd5abb2b iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xbd7443c6 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xbd77a462 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xbd7900db i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd8198ee skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0xbd87af31 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xbd8beee4 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xbd91d271 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xbd9345dd tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbdb1e404 devl_trylock EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa EXPORT_SYMBOL_GPL vmlinux 0xbdb6ec68 _RNvXs5_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB5_10DisplayInt7to_u128 -EXPORT_SYMBOL_GPL vmlinux 0xbdc6f796 component_add +EXPORT_SYMBOL_GPL vmlinux 0xbdbf5e99 device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xbdd60e3f _RNvXs3E_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_33folio__bindgen_ty_3__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbdee04ca tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0xbdff7dff percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xbe12ab3d intel_pinctrl_get_soc_data EXPORT_SYMBOL_GPL vmlinux 0xbe1623f6 _RNvXs2J_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5m16x8NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xbe31990b usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xbe38ebf5 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe523523 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xbe2074e6 usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe5d38c5 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries +EXPORT_SYMBOL_GPL vmlinux 0xbe670cb5 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6a5437 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbe6eb42d raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xbe736312 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw EXPORT_SYMBOL_GPL vmlinux 0xbe748b1f intel_find_matching_signature -EXPORT_SYMBOL_GPL vmlinux 0xbe8197ff devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xbe82e9c3 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xbe7f0ad1 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xbe89665a elv_register EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbe9bfa72 _RNvXs5r_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10sigpendingNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xbe9d2ee0 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xbea16f23 _RNvXsT_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_5u64x1NtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeaad5d4 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xbeb5a235 vcap_tc_flower_handler_ip_usage +EXPORT_SYMBOL_GPL vmlinux 0xbeb917b2 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xbec5a137 thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbecd4edf phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xbede2ed6 _RNvNtCsbwHtcUjRN57_6kernel5ioctl9__IOC_SIZE -EXPORT_SYMBOL_GPL vmlinux 0xbee9a225 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xbef332a9 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xbef40473 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xbefee698 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xbee55204 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xbeea84d2 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbeedb281 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xbef2a94f ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xbefd945f kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xbf0227e1 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf04c51f da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0xbf0b2208 _RNvXso_NtCs3AkgXgqgK6r_4core6markerNtB5_13PhantomPinnedNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xbf12a433 _RNvXs3g_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_39uprobe_task__bindgen_ty_1__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xbf144e83 mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf227565 dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf3c2662 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xbf41de48 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xbf420bb9 rust_helper_ERR_PTR -EXPORT_SYMBOL_GPL vmlinux 0xbf423cde __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xbf43fc4a ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf492271 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xbf4978d0 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xbf4ba585 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xbf4caf6d vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0xbf5e09e5 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf7f2ce5 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xbf657187 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0xbf800a7e _RNvMs4_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_8DebugSet6finish -EXPORT_SYMBOL_GPL vmlinux 0xbf9f549a devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xbf861cf8 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xbf864e45 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0xbf87d5f0 device_register +EXPORT_SYMBOL_GPL vmlinux 0xbfbb4b69 fb_deferred_io_release EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfdac7e3 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0xbfdcc8c6 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xbfdd9b32 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xbfd61434 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xbfdbfe20 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0xbfde593a _RNvXs5_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0xbfdff082 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xbfe09301 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xbfe1c4f1 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xbfe31d75 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfea35b7 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xbfe859dd usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff1f842 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xbff79d21 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0xbff951d6 ptdump_walk_pgd_level_debugfs EXPORT_SYMBOL_GPL vmlinux 0xbffe27fd _RNvXsm_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_9qspinlockNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc0294ac0 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xc0236b99 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xc029ea71 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xc03f2858 led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xc0470b4f fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xc04bc61a netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xc05980ca icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xc05c746b devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xc05d45ab usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc0693c2a mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xc0581e8e intel_pinctrl_probe_by_uid EXPORT_SYMBOL_GPL vmlinux 0xc078ffff _RNvXs3T_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i8x64NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xc08357de proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0xc0842a30 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09df50b pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc0985ed6 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc09ee203 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0b00231 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xc0acb4a8 udp_splice_eof EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0b89d53 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc0c32171 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xc0b5dc41 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xc0bfddba pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0xc0c5f3ed clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0xc0ca0ef1 blkg_conf_init EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0e179d0 _RNvXs4g_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_10NonZeroU32NtNtNtBa_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata EXPORT_SYMBOL_GPL vmlinux 0xc0f38c7f clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10b27c7 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xc1215ccc crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0xc125a626 static_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xc125be37 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xc134e96e extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0xc1435990 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xc14468d7 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0xc14ea5ce balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xc14edce8 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xc15b5fd6 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xc16b7e85 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xc10f0c1d ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xc117a48d rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc11c611b usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xc11e3923 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xc12a595c xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xc131f666 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xc135d565 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc1391a7d blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xc1422c20 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xc1531295 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xc15d0914 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc15f1926 spi_target_abort EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc1843ad4 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xc186ddbf dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xc18337cf crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc1839edd class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xc1957aaf _RNvXs4T_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_5semunNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc196596a devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xc1993354 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xc1b62b21 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xc1c7d7e3 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xc1a6881e crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xc1c68e9a proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xc1cf238a pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xc1e10a35 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1f5dee3 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xc1ffe410 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xc1e6bbc3 device_create_file EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc20574c1 acpi_bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc206a482 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc21cb8d9 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc23b7255 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xc243ec0a pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc261f424 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2775c02 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xc285056c badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0xc288ef3a perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc295b295 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xc2aad389 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xc2ab58c0 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0xc2aed231 _RNvMs3_NtNtCs3AkgXgqgK6r_4core4char7convertNtB5_14ParseCharError13___description -EXPORT_SYMBOL_GPL vmlinux 0xc2b82d08 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xc2bbe2a3 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc2b30bc0 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc2bfdcba nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xc2c177ce ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2c27904 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xc2c30a81 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xc2cd3765 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xc2d036dc devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc2da0b10 firmware_request_platform EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2ee46ae sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xc2e6c149 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc2ee120a kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xc2eeda02 usb_acpi_port_lpm_incapable EXPORT_SYMBOL_GPL vmlinux 0xc2f34974 _RNvXsv_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_16static_key_falseNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc3087e05 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xc3118f01 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xc3181eb9 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xc2ff1422 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xc303e578 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xc30523ea devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc30a5fb9 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc3183e2a pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xc323a674 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc3359c23 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xc33f365c regcache_sync EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34583f2 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0xc347481e _RNvXs1_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_4u8x2NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc34c4f7c nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0xc35310b9 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0xc354ef3e ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xc35ee495 devm_free_pages EXPORT_SYMBOL_GPL vmlinux 0xc363cd0e _RNvXs20_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15class_migrate_tNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc36bab4d tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xc36bbba3 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc36cacab fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xc36d6d38 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc370c9ce _RNvMs_NtNtCs3AkgXgqgK6r_4core5panic8locationNtB4_8Location20internal_constructor +EXPORT_SYMBOL_GPL vmlinux 0xc376e379 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc381328c proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc391b15f devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xc388ed05 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xc38a5413 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0xc393da21 _RNvMs3_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_4CStr6to_str +EXPORT_SYMBOL_GPL vmlinux 0xc394bab1 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc3968055 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xc39953d5 _RNvNtCs3AkgXgqgK6r_4core6option13expect_failed EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc39a3a5a posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xc3a08e27 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xc3a51c18 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xc3a51fab blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax -EXPORT_SYMBOL_GPL vmlinux 0xc3ba7be2 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0xc3bacb99 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c7e20e cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xc3db6447 __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0xc3dc4484 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3dfa2b1 _RNvXs48_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8zonelistNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc3ea086f find_get_pid EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3fbc872 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0xc4008d55 xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xc4065b6a __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xc40c3e79 ext_pi_type1_crc64 -EXPORT_SYMBOL_GPL vmlinux 0xc421e02c devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xc425f345 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xc406a58b ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc422c041 pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4284dbc crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc42a1f6b sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xc42a4116 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xc43a5092 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc44f6877 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xc44edfe1 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xc453b0e2 vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4563a18 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xc45cff20 device_match_name EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc45db164 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xc45db377 blk_stat_disable_accounting EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46f5e8e devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc484bd63 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xc47cb0dc __blk_trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xc484eb5e acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xc4927c96 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xc49465de phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xc48df92c usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xc493d670 relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0xc4a12bf5 pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4bc6801 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xc4a8ada6 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc4adcaf5 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc4c4c113 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xc4ce10fe devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc4d18c44 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0xc4d5e0e8 acpi_gpio_get_irq_resource EXPORT_SYMBOL_GPL vmlinux 0xc4dd1125 _RNvXs7_NtCs3AkgXgqgK6r_4core3ffiNtB5_10VaListImplNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xc4e82bd4 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xc4ea5889 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xc4eaf06e spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f11249 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xc506c4bf __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xc50bf748 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xc503b53c __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xc5102ce0 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask EXPORT_SYMBOL_GPL vmlinux 0xc51a6bc9 _RNvMs0_NtNtCsbwHtcUjRN57_6kernel4sync7condvarNtB5_7CondVar10notify_one -EXPORT_SYMBOL_GPL vmlinux 0xc53899c0 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xc52299ca gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc5344b9d nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0xc5353f17 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0xc53b931b _RNvMs6_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_8DebugMap5entry +EXPORT_SYMBOL_GPL vmlinux 0xc53c2f4a pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5619c16 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xc5633ba6 inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56a4634 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xc570fec9 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xc573156d l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc5848b83 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xc584d797 folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0xc5882606 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc57992d1 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xc584548b regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xc585c339 usb_autopm_put_interface_async EXPORT_SYMBOL_GPL vmlinux 0xc589f0c6 _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings4CONT EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58f5403 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5aa808a da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5aabe96 folio_mkclean EXPORT_SYMBOL_GPL vmlinux 0xc5b56882 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter25debug_tuple_field3_finish EXPORT_SYMBOL_GPL vmlinux 0xc5b91b5e _RNvMs2_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_10DebugTuple6finish -EXPORT_SYMBOL_GPL vmlinux 0xc5bfee5e dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xc5c48fbe gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xc5c5afba vcap_tc_flower_handler_ipv4_usage -EXPORT_SYMBOL_GPL vmlinux 0xc5cf92ea ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc5beaf29 phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0xc5d1483c _RNvXs1A_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11reg_512_bitNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc5dd1770 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xc5e6962e restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xc5eb726b user_describe -EXPORT_SYMBOL_GPL vmlinux 0xc5f036b0 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xc5f264c3 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xc5f9f31a devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xc6095c95 led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc6240e5e _RNvXsn_NtNtCs3AkgXgqgK6r_4core4char7convertNtB5_16CharTryFromErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc642369d usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0xc647af54 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xc637d0c0 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xc639a8be devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc662b7fd crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xc665d676 virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc673b431 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc672deaa events_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc6807ae0 _RNvXs1Z_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_23class_preempt_notrace_tNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc68fd517 __put_net EXPORT_SYMBOL_GPL vmlinux 0xc69346ee irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xc69692ec crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a09157 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc6a67664 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0xc6b317ee fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xc6a8e85d regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc6ab87f7 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xc6c2bc67 uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xc6c943f9 _RNvXs8_NtNtCs3AkgXgqgK6r_4core4hash3sipNtB5_11SipHasher13NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xc6d86861 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc6dd17ad crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xc6e1f3af fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xc6e5992b __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6f6b4b7 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xc6fbddc9 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xc6ee81f0 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xc705cad8 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70cf32d evict_inodes EXPORT_SYMBOL_GPL vmlinux 0xc70dac06 _RNvXs1T_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_9irq_stackNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc70fc1d2 dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0xc70fd262 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xc710050b bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc72476d8 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xc728baca intel_pinctrl_probe_by_uid -EXPORT_SYMBOL_GPL vmlinux 0xc7410aef usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc713d3ba gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc72a6742 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc7312526 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc73c6358 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xc74c07ce cppc_get_epp_perf +EXPORT_SYMBOL_GPL vmlinux 0xc7556e31 vcap_tc_flower_handler_ipv4_usage EXPORT_SYMBOL_GPL vmlinux 0xc7563886 _RNvXs4H_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_4upidNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc7581e0c cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0xc7645f03 _RNvXsp_NtNtCs3AkgXgqgK6r_4core3fmt3numNtB5_5OctalNtB5_12GenericRadix5digit -EXPORT_SYMBOL_GPL vmlinux 0xc76f2385 memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc792ec97 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc7a147bb virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a7a7d1 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xc7a34726 dma_resv_describe EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0xc7a9779b _RNvXs2r_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7rb_rootNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc7ab220d pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xc7ad943d skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xc7b72349 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists EXPORT_SYMBOL_GPL vmlinux 0xc7c26ec0 _RNvXs4M_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10rhashtableNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc7c568dc pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0xc7c94e54 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xc7cc20cd shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xc7d22438 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0xc7d6ab96 srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xc7d73a76 _RNvXs16_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB8_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0xc7dd78ef udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xc7e4991d debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xc7dfce3c lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e6e781 task_cls_state EXPORT_SYMBOL_GPL vmlinux 0xc7e93776 acpi_dev_get_memory_resources EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fd0656 regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0xc80adfba __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec EXPORT_SYMBOL_GPL vmlinux 0xc813e242 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter26debug_struct_field3_finish -EXPORT_SYMBOL_GPL vmlinux 0xc81f92b0 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xc82b6e15 acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc837c76d dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc82f06c2 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xc83220c7 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83df185 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xc83e23a2 phy_get EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire EXPORT_SYMBOL_GPL vmlinux 0xc85d1739 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc860b9d1 nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0xc862310a _RNvXs1R_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13x86_io_bitmapNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc86cbf80 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc86afca8 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc86bbef7 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xc87331f2 iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc8778e9d _RNvNtNtCs3AkgXgqgK6r_4core5slice5index10into_range -EXPORT_SYMBOL_GPL vmlinux 0xc8788b8f dma_resv_iter_first EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc888d6a5 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xc88a9e0c _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter9precision -EXPORT_SYMBOL_GPL vmlinux 0xc8903d9f rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc8a2fadb nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc8abb195 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xc8c6dc94 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xc8d7e2a7 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xc8dac983 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc88b468b sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc8950c05 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc89bb806 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xc8d3e792 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8f7f541 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc8ddf02f skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc8eeddd0 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xc902207e ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xc90b7bbd devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xc918a8ea pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xc91c5ee1 _RNvMNtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB2_21FromBytesWithNulError12interior_nul EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL_GPL vmlinux 0xc92c32c5 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc93ccf88 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0xc93c4bd8 __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc94a4c8f blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc947f311 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc94dfd29 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc95ccf37 synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xc96242da srcu_init_notifier_head EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc971ac17 __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xc972dc30 __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xc9817228 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xc9748696 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xc97cabc6 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xc981f72a io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc983a446 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xc98dd9a4 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xc99187cb ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xc984f6fc crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xc99902de _RNvXs1N_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_8LinesAnyNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xc99953b6 sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xc99a3348 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xc9a08ded i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc9a38bd3 __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9a8d1f1 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xc9b16d9f register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9cdbdea edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent EXPORT_SYMBOL_GPL vmlinux 0xc9cfb3a0 _RNvXNtNtNtCsbwHtcUjRN57_6kernel4sync4lock8spinlockNtB2_15SpinLockBackendNtB4_7Backend6unlock EXPORT_SYMBOL_GPL vmlinux 0xc9d7994e _RNvXs1y_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12fxregs_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc9e2c0d9 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xc9d962a2 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc9dba26f cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9fa4678 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xc9f68bfe nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xc9fa9cfb _RNvXs4u_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25local_apic__bindgen_ty_29NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xc9faac6d dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc9fcb730 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xc9fdbe45 pwm_lpss_byt_info -EXPORT_SYMBOL_GPL vmlinux 0xca03e059 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xca0406cc crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xca0db799 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xca0f4923 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xca1d9807 io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0xca298387 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xca2b4f6e __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xca380f05 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xca3bb65d _RNvMNtNtCs3AkgXgqgK6r_4core3num3fmtNtB2_4Part3len EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca4570cf devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca47c5da pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xca4de3c6 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca60b51e tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xca5a2475 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xca5d6fb2 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0xca6dfeaa _RNvMNtCs3AkgXgqgK6r_4core3stre14escape_unicode -EXPORT_SYMBOL_GPL vmlinux 0xca6e6f46 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xca7a7620 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xca738a17 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xca760af5 usb_autopm_put_interface EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca820aa5 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xca8314f5 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0xca8a1eeb gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xca8b979d balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xca94876c register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xca83f841 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xca8c9688 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9c4b9d phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcaafcafa inet_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xcab962a2 blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0xcabac666 _RNvXsk_NtCs3AkgXgqgK6r_4core3numsNtNtNtB7_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac7efb7 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcaced16a lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcad0cf78 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xcad67885 _RNvXsB_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_4u8x8NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xcad7d7d3 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xcad93ac3 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0xcadbe1a1 _RNvXs3X_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18vm_special_mappingNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xcaf0271f hv_get_register EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb053955 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xcb0fdb56 led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xcb1164f7 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xcb20e090 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xcb26aa8c usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xcb14314e kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xcb1e03df acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xcb23fce3 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcb27a209 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb3e81d6 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0xcb49fa06 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0xcb586631 _RNvXsK_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0xcb59c858 devm_kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0xcb5a7e88 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xcb5ab30d dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xcb757c97 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xcb777357 _RNvXs2P_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5m32x4NtNtBa_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xcb820f5c __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xcb87271d dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcb8d7461 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0xcb8db85f pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcbac4e56 scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity EXPORT_SYMBOL_GPL vmlinux 0xcbb620ea cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0xcbbca042 ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xcbc2f56d inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xcbdb5a60 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xcbd2ced4 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xcbd94531 component_del +EXPORT_SYMBOL_GPL vmlinux 0xcbe4f92a __tracepoint_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe95815 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xcbf6b539 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xcbe8372a vp_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0xcbfc457e _RNvXs5y_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_20posix_cputimers_workNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xcc06ea04 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xcbfdf6ba file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0xcc093c8a _RNvMNtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB2_21FromBytesWithNulError18not_nul_terminated -EXPORT_SYMBOL_GPL vmlinux 0xcc2fd319 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xcc0a9abc phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xcc1f0e93 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xcc25311f regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xcc37a221 _RNvXs3S_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_37mm_struct__bindgen_ty_1__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3cc961 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0xcc415f79 __tracepoint_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xcc4c94c8 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc60dfbd crypto_akcipher_sync_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xcc73a9fc devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0xcc745575 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcc3a6b8e gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xcc3f6e01 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xcc57aa6c proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xcc5ddba7 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcc72caac perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0xcc76763a _RNvXsj_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3imphNtB9_8UpperExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0xcc7e5920 acpi_pci_find_root EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcca2ca60 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xccaab701 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccbea419 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xccc12598 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xccc54fde mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd5674f sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xccd01ddf devl_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce1e073 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xccdf2e12 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xcce21dab iomap_invalidate_folio EXPORT_SYMBOL_GPL vmlinux 0xccea9ff3 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xccee83ee dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd08f51b crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xcd09dca3 __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xcd151dea rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xccfb2010 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xcd016b43 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2516ec gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xcd2ce286 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xcd39597c pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xcd414773 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xcd31c06b class_is_registered EXPORT_SYMBOL_GPL vmlinux 0xcd419996 _RNvXs4_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_13ParseIntErrorNtNtB9_5error5Error11description -EXPORT_SYMBOL_GPL vmlinux 0xcd53328b tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0xcd633cc6 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xcd4ac15b crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xcd4ce7f0 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xcd5707f5 devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xcd6a47fe __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd82d482 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcd8ded0c fsverity_ioctl_read_metadata EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd997eb2 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcdad9705 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xcdb52c60 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0xcdb697a9 _RNvXst_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_10static_keyNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc01087 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcdc458a7 __iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdcb22ae _RNvXsT_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_9edid_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xcdcda974 dev_pm_opp_get_power EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency EXPORT_SYMBOL_GPL vmlinux 0xcde793d9 _RNvXs0_NvNtNtCsbwHtcUjRN57_6kernel4sync7condvar1__NtB7_7CondVarNtNtNtBb_4init10___internal10HasPinData10___pin_data -EXPORT_SYMBOL_GPL vmlinux 0xcdedfcf2 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0xcdf41797 _RNvXs4R_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13kern_ipc_permNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xcdfc43ee vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce109301 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0xce16f444 crypto_sig_set_pubkey -EXPORT_SYMBOL_GPL vmlinux 0xce178c03 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xce3204a9 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xce32f7d6 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xce33c55d ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xce4e7327 user_update +EXPORT_SYMBOL_GPL vmlinux 0xce155349 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xce200b36 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xce477310 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xce4c4ce8 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xce4f0aab _RNvXs_NtCsbwHtcUjRN57_6kernel5errorNtB4_5ErrorNtNtCs3AkgXgqgK6r_4core3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xce67b658 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xce5574f6 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xce59d9ab failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce63c3da regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching EXPORT_SYMBOL_GPL vmlinux 0xce72c517 _RNvXsw_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB7_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0xce81dee7 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xce82bafd usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0xce8383eb __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce8b581b regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xce94e627 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xce96da48 phy_validate EXPORT_SYMBOL_GPL vmlinux 0xcea1762c devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xcea8e0f6 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xceaaeb41 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xceab4b00 fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xcebebb48 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xcec7dbfe inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xcec85fdc inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xcecd5998 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xceecc531 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xcef03123 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xcefa90d1 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcee3e4b5 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0xcee6bb79 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xcef25804 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xcefc7694 _RNvXs3T_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_23mm_struct__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xcf0747ba _RNvXs4p_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB6_12NonZeroIsizeNtNtNtBa_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0xcf0a0705 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xcf10f90d __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xcf297d1b vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xcf112fd7 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xcf190510 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xcf1cf0b6 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcf23b3d3 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcf2dcfc0 relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0xcf2ecdd5 bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0xcf35629e __traceiter_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xcf3679ff regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xcf3b03fe vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xcf3cc596 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xcf39fe4d nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xcf3f2f3c skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xcf445d0c _RNvMNtNtCs3AkgXgqgK6r_4core5panic10panic_infoNtB2_9PanicInfo7message -EXPORT_SYMBOL_GPL vmlinux 0xcf48088b simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xcf496768 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xcf4af4e5 virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xcf4b121d rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xcf69b395 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xcf768168 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xcf498058 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0xcf78ec68 fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0xcf7dd35e devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xcf82e5dd rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xcf8c9bc3 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xcf8ed495 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xcf94d4fd __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xcf98c397 _RNvXs54_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15hrtimer_sleeperNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xcf9d5449 _RNvXs3N_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_28vm_area_struct__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xcfa5615a clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xcfaa2132 devm_spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0xcfbf09f8 irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfd1b596 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfd76ef3 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xcfde9194 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xcfecb03c dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0xcff69d9b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xcfe3d7e0 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xcff716da software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd0016e49 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0xd0025838 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0xd00df6e6 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd01d46e0 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xd01f1c7b dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xd0207d43 _RNvXs2b_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_28class_raw_spinlock_irqsave_tNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd02a678f _RNvXs2_NtNtCs3AkgXgqgK6r_4core3fmt3numlNtB5_10DisplayInt6to_u32 EXPORT_SYMBOL_GPL vmlinux 0xd02b8ca9 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xd0355ba6 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xd02cfcbd __tracepoint_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd0353b9b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd03aa4c9 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd04838e9 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xd05cf246 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd0667cd8 _RNvXs2I_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11ma_wr_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd070b992 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xd079073e pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0xd080faa1 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xd07b454c usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xd08c9ae1 devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xd08eb689 _RNvXs5k_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7siginfoNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd0909463 fuse_dev_install EXPORT_SYMBOL_GPL vmlinux 0xd09105df od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0a2b99d pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xd0b31dd3 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xd0b386cd thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xd0b8a598 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd0b9afbb rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xd0bb4a1e ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c4d16c dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd0cba329 pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0ddcb7f ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xd0e0945b acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd0f3049a pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd0f314d9 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xd0e9cb43 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xd0eaa064 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xd0f0e490 xdp_features_set_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0xd0f25b00 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xd0f529cb _RNvXsc_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_8OrderingNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0ff2766 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xd1019098 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd0feff30 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0ffb155 vmf_insert_pfn_pud EXPORT_SYMBOL_GPL vmlinux 0xd10b9771 _RNvXs1N_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11cpuinfo_x86NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd118d6d9 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd11907c8 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xd1388664 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xd11ca580 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xd121f58f mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xd1269f83 dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xd13cb0c0 _RNvXs5w_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_19posix_cputimer_baseNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd1460a0b tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14fc343 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15c84fd xenbus_probe_node EXPORT_SYMBOL_GPL vmlinux 0xd15e7b94 _RNvXsc_NtCs3AkgXgqgK6r_4core7convertNtB5_10InfallibleNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd15f040d __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xd172c64a pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd17de207 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd18c40ae phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xd18fa4eb usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xd195a4de pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xd19fe9af trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0xd1a82e01 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xd162b3d0 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xd18db1d3 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xd19c1114 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xd1a915ce _RNvXs_NtCsbwHtcUjRN57_6kernel5typesuNtB4_14ForeignOwnable6borrow EXPORT_SYMBOL_GPL vmlinux 0xd1af73a4 _RNvXs2H_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8ma_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd1b9ae62 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd1c317f6 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xd1afcb90 mmc_regulator_disable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xd1b3c298 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd1b98b70 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule -EXPORT_SYMBOL_GPL vmlinux 0xd1c4eb35 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xd1c8abf8 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d95c07 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fb1228 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xd20a0336 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xd20a26e7 devlink_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21dd2a8 _RNvXsW_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB7_8LowerHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd222f2a9 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd236d447 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xd23e6f02 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xd23a5ce6 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xd2457d6f _RNvXs3P_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_28vm_area_struct__bindgen_ty_3NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd249402d xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd25077cc crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xd2545e08 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0xd25ff298 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd26277c6 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xd264830d vcap_find_keystream_keysets EXPORT_SYMBOL_GPL vmlinux 0xd26b2e1c attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0xd271942e led_init_core EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd28e9ccd zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xd28f55d4 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd293e184 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xd293ec5e __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2a21b6c msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xd2ab2f3c regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2a8e85a blkcg_root EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2bf4b8e usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xd2c8b225 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xd2cbc0df pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0xd2ce7cc1 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter25debug_tuple_field2_finish +EXPORT_SYMBOL_GPL vmlinux 0xd2d5c14f vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0xd2d5d253 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2e9572b class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd2dbec44 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd2ef7d64 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xd2efc8be dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xd2ff3aff fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0xd302621b divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd3079aaa acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xd30c2fbd __SCK__tp_func_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd315b3d0 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd318d97a input_class +EXPORT_SYMBOL_GPL vmlinux 0xd319e371 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd33542f2 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd33671b6 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0xd3379b35 _RNvXs2q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7rb_nodeNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd33bac87 mdiobus_c45_modify -EXPORT_SYMBOL_GPL vmlinux 0xd345c16f iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xd347e71d __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd34d30b4 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xd35b57fb ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xd363a621 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd33c8d29 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd35a98de usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xd36419f1 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd36b86fd put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xd372f789 _RNvXNtCs3AkgXgqgK6r_4core4charNtB2_13EscapeUnicodeNtNtNtNtB4_4iter6traits8iterator8Iterator4last EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xd3825474 _RNvXsd_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impmNtB9_8LowerExp3fmt EXPORT_SYMBOL_GPL vmlinux 0xd386daa4 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter5width -EXPORT_SYMBOL_GPL vmlinux 0xd388c55e fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xd38b904f crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd38dfd09 dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0xd3901d33 acpi_dev_resource_address_space EXPORT_SYMBOL_GPL vmlinux 0xd393a352 _RNvXsQ_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_17edd_device_paramsNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xd3a81b71 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xd3aa9853 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xd3bd4076 fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xd3d3064b trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd3ea156b regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd3c5f100 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xd3c991b9 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd3d1b079 usb_reset_endpoint EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0xd3f013cb power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xd3f9671e dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xd3ff3ba8 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41017c8 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd4061b2c component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xd40eab7f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd411d852 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xd412a8a1 ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0xd416cfec perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0xd41ebfbd pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xd41ecca5 genphy_c45_read_eee_abilities +EXPORT_SYMBOL_GPL vmlinux 0xd41d57fe crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42d807d __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd434021c nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd4411836 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xd44fd0c5 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter19sign_aware_zero_pad -EXPORT_SYMBOL_GPL vmlinux 0xd45009bd unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xd45255af sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xd4617a42 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xd45e6b39 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4648ca8 pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0xd4670eb8 acpi_unregister_lps0_dev EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs EXPORT_SYMBOL_GPL vmlinux 0xd46e85b9 _RNvXs6_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB5_10DisplayInt6to_u64 -EXPORT_SYMBOL_GPL vmlinux 0xd470d6ce __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0xd471ba78 _RNvXs2a_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_24class_raw_spinlock_irq_tNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xd4739b3a nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0xd4793794 _RNvNvMs3_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB7_4CStr29from_bytes_with_nul_unchecked10const_impl -EXPORT_SYMBOL_GPL vmlinux 0xd487ab3b crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xd4842742 dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xd48a9773 drop_reasons_register_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd4976862 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xd49bb0e7 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd49c314a genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4ca9b94 thermal_zone_device_type -EXPORT_SYMBOL_GPL vmlinux 0xd4d31c05 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xd4e52698 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0xd4e5b52b devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4ea0bda platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0xd4ed5c2d xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4f60a06 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xd4f99b23 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd500bc0d l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0xd50616cf _RNvXsb_NtNtCs3AkgXgqgK6r_4core4hash3sipNtB5_11SipHasher24NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd509c63f __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xd5125efe platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd54b127f fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xd549a05d debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0xd54ba1ce devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xd5552cf1 acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xd553fdc3 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd5568c97 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xd556ecc1 _RNvXs3_NtNtCs3AkgXgqgK6r_4core3str5lossyNtB5_10Utf8ChunksNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd55ac105 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56703a4 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xd56c8337 _RNvXs3l_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_14percpu_counterNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd5771a6d fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5774d3c fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd57b4b5e irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xd57c3896 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xd582b40f synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0xd58928d7 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xd58ec9dc iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd59590df genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd59707e5 i2c_dw_configure_master EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59be529 __xenmem_reservation_va_mapping_reset EXPORT_SYMBOL_GPL vmlinux 0xd5a61a34 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xd5b54bd6 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xd5c14920 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xd5c177f0 _RNvNtNtCs3AkgXgqgK6r_4core5slice5index26slice_start_index_len_fail EXPORT_SYMBOL_GPL vmlinux 0xd5c1ad95 _RNvXsf_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_6___m128NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd5c76247 ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0xd5c83d60 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0xd5ca121c mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd5df4b56 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xd5e86494 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xd5d24f71 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xd5e48db4 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xd5eb30d8 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5f8988f ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0xd5fa44f9 _RNvXs37_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12class_srcu_tNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xd6113e2e ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0xd62c1bed set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xd6353cc3 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xd5fc0b36 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd611fe0d nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0xd614c5aa pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd62a14b1 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xd62b1a2f __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xd6387b5c tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0xd642dfbe _RNvMNtCs3AkgXgqgK6r_4core3stre12encode_utf16 -EXPORT_SYMBOL_GPL vmlinux 0xd6497885 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xd64ce8aa vp_legacy_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xd64d937e vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd65a7df1 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xd6642edd pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xd66906e0 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xd6728202 ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd676db86 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xd67ade73 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xd69c9764 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xd67770ac fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd67a8f0a trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xd67f09ed dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xd6802b48 __irq_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0xd6a50b73 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xd6a50cca __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark EXPORT_SYMBOL_GPL vmlinux 0xd6b673e5 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xd6bce84d dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xd6bd3e3d acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xd6b7677c __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd6bfa446 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xd6c586b4 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xd6d2f78c _RNvMsr_NtNtCs3AkgXgqgK6r_4core3str7patternNtB5_11StrSearcher3new EXPORT_SYMBOL_GPL vmlinux 0xd6df01f7 perf_get_hw_event_config -EXPORT_SYMBOL_GPL vmlinux 0xd6eab9ff sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd6e9dbc1 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xd6ebd4ce genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xd6ed25f0 acpi_register_lps0_dev EXPORT_SYMBOL_GPL vmlinux 0xd6ef10b8 sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0xd6ef208b devlink_to_dev -EXPORT_SYMBOL_GPL vmlinux 0xd6fd7c88 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7013a79 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xd7083421 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xd7091b68 klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0xd72046e4 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xd7004274 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xd704c9f0 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd708bd45 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xd71604be blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xd7161296 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xd717d7cf receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xd71bdbbc sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xd7263b8f syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state EXPORT_SYMBOL_GPL vmlinux 0xd73a4223 _RNvNtCs3AkgXgqgK6r_4core3str16slice_error_fail -EXPORT_SYMBOL_GPL vmlinux 0xd74c0a37 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xd74ca6f6 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0xd758fdc5 _RNvXs4e_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12cpu_topologyNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75ccdba perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0xd75f6147 _RNvXs4a_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11pglist_dataNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd7631d89 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xd764986a tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd763a80a pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd773283c gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xd77a0836 filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0xd78070a8 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xd798d1c0 blk_mq_end_request_batch -EXPORT_SYMBOL_GPL vmlinux 0xd79c508e tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xd7a29b52 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xd76d9182 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd78959ac spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xd79e7f81 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0xd7a14439 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0xd7a5d400 _RNvMs_NtCs3AkgXgqgK6r_4core3fmtNtB4_9Formatter3new -EXPORT_SYMBOL_GPL vmlinux 0xd7a734c7 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xd7a62680 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7ad5f26 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xd7aea7ef bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xd7b02b0a devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0xd7b58d4d _RNvMNtCs3AkgXgqgK6r_4core3f32f8classify -EXPORT_SYMBOL_GPL vmlinux 0xd7b6f724 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0xd7bb2894 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xd7c57ddd wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d0a742 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd7d7ae61 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xd7d8f671 _RNvMs_NtCsbwHtcUjRN57_6kernel4syncNtB4_12LockClassKey3new -EXPORT_SYMBOL_GPL vmlinux 0xd7e13669 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7e576e5 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xd7eb75eb tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xd7ee1840 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd7da035d debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd7ee3ac9 vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0xd7f4c938 _RNvXs_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB6_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xd80a66f9 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xd8129efd gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xd7f9ca0b inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xd81c2c3d _RNvXs7_NtCs3AkgXgqgK6r_4core5errorNtNtB7_3fmt5ErrorNtB5_5Error11description -EXPORT_SYMBOL_GPL vmlinux 0xd8223b0f phy_create -EXPORT_SYMBOL_GPL vmlinux 0xd822d152 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xd81c8700 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xd82931bd crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0xd82db5c5 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xd834041f debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8304add gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xd8364850 _RNvXs5_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB5_10DisplayInt6to_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd83e175a rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xd83ebbca ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xd8439732 _RNvXs4f_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_19x86_legacy_featuresNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xd84462a8 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xd845fa06 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd848681a mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0xd84a6530 _RNvMs5_NtCs3AkgXgqgK6r_4core3numt14from_str_radix +EXPORT_SYMBOL_GPL vmlinux 0xd84b45c5 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd84f0a5f pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xd8567898 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xd85cc6ea ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xd86d6435 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xd870f379 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xd8773096 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xd87bff4d gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xd87cb8eb dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd882ee78 fsverity_get_digest -EXPORT_SYMBOL_GPL vmlinux 0xd89703f8 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xd8a16e69 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xd8a7d059 _RNvMs_NtCsbwHtcUjRN57_6kernel3strNtB4_4CStr19from_bytes_with_nul +EXPORT_SYMBOL_GPL vmlinux 0xd8b3e4b6 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xd8b56f39 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xd8b856d6 _RNvXs4_NtNtCs3AkgXgqgK6r_4core3fmt3numnNtB5_10DisplayInt4zero -EXPORT_SYMBOL_GPL vmlinux 0xd8b93b9a phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xd8cb6a48 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xd8ce012c pci_p2pdma_enable_show EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8dde129 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd904507c skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd914e56e usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xd91b6a7e pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92121cb ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xd926cd9c perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0xd9281e15 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xd9295fb1 dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd93bd6c3 devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0xd943ffd2 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd9462617 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xd94a107c crypto_akcipher_sync_prep -EXPORT_SYMBOL_GPL vmlinux 0xd9642cf1 register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0xd96a9f36 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xd93ca14f mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xd95212dd xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd955a97f vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97789ac fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0xd97dc762 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xd980770b crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xd98ddf72 _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data15grapheme_extend6lookup EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo -EXPORT_SYMBOL_GPL vmlinux 0xd9a2d2a9 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xd99a5b19 crypto_clone_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd99c735e vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xd99e36a3 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0xd9a68ad2 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xd9b7d3e9 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd9b37b53 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0xd9bb2c13 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd9c39e76 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xd9c3beae devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9df02e5 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd9c4437a adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd9d57e11 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xd9df882f ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e245df nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd9e3f80d simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xd9e73c3e __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd9eb34cf dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xd9fe3ef0 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0bcfd1 vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0xda109970 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xda199a19 devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda2a82fa PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xda2f2bd9 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xda3132bb led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0xda313e7d _RNvXs1p_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_17trace_print_flagsNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xda31b173 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda46c8a9 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0xda4d5fa1 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xda4d7b25 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xda38a096 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xda41cd7d ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xda4ad789 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xda51bbec _RNvXs1R_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u64x2NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xda53f8c9 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xda5b17d2 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda7bd774 ata_sff_port_ops EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xda8a516f show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xda841a85 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xda876931 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xda881a11 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xda8981b4 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda987c63 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xda9942b5 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xda92c89b tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xda93a5fb ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa6f4b7 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xdaae80c5 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xdaaf19e9 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xdaaf1ceb crypto_clone_cipher EXPORT_SYMBOL_GPL vmlinux 0xdab0db6b _RNvNtNtCsbwHtcUjRN57_6kernel5print14format_strings8generate -EXPORT_SYMBOL_GPL vmlinux 0xdab2fc45 __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdabaa2b7 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xdac30c87 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0xdad1ff6e regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdad6b386 usb_set_wireless_status -EXPORT_SYMBOL_GPL vmlinux 0xdad82cdf nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xdadb63c5 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xdabef426 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xdadde042 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xdb03f751 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdade0743 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xdae77224 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xdaf09900 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xdaf4d5ba ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xdb04bdef regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xdb06b3b7 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xdb097d1c dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0xdb0c5f48 _RNvXs2_NtCsbwHtcUjRN57_6kernel5errorNtB5_5ErrorINtNtCs3AkgXgqgK6r_4core7convert4FromNtNtNtBO_3str5error9Utf8ErrorE4from -EXPORT_SYMBOL_GPL vmlinux 0xdb16ea87 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page -EXPORT_SYMBOL_GPL vmlinux 0xdb2b4781 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xdb2c4711 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xdb34b363 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xdb1bd22b raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0xdb3c444e _RNvXsg_NtNtCs3AkgXgqgK6r_4core3ffi5c_strNtB5_21FromBytesWithNulErrorNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xdb3e661a devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0xdb46095b blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xdb4646b2 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xdb45af95 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xdb49aef5 vcap_keyfield_name EXPORT_SYMBOL_GPL vmlinux 0xdb4f4ce1 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter12debug_struct +EXPORT_SYMBOL_GPL vmlinux 0xdb530ff8 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xdb5ab0ff sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xdb606d5d lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6d8fbc devl_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xdb729e3c ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xdb77c18c _RNvXs6_NtCs3AkgXgqgK6r_4core4charNtB5_11EscapeDebugNtNtNtNtB7_4iter6traits8iterator8Iterator4next EXPORT_SYMBOL_GPL vmlinux 0xdb77c256 _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data14case_ignorable6lookup EXPORT_SYMBOL_GPL vmlinux 0xdb7b06c8 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9b6ec0 pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xdb8bd4cc devm_of_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xdb8d844d serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdba50afb x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0xdbb64e8f pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xdba43975 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xdbaaf30d device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdbbd3fd8 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xdbc703e6 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbca5882 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xdbcc1a4a tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0xdbd8b2c2 _RNvNtNtCs3AkgXgqgK6r_4core5slice5index16into_slice_range EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbde6685 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xdbdfd9cb phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xdbdbf298 acpi_dma_request_slave_chan_by_name EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create -EXPORT_SYMBOL_GPL vmlinux 0xdbe4512a iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0xdbf4fd03 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf970bf regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc047157 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xdc0a0a0b led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xdc1805e9 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xdc19f889 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xdc1e658b sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xdc1f9492 pci_epc_linkdown +EXPORT_SYMBOL_GPL vmlinux 0xdc0ec0b1 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xdc103970 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xdc2040f0 ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0xdc25faf6 cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc4543af mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc562241 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xdc615504 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xdc5ab46b cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xdc656fbe synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc68d1aa eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xdc7522a8 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xdc7587d9 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xdc78d1ff fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init -EXPORT_SYMBOL_GPL vmlinux 0xdc7f1b1c nvmem_add_cell_table EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc8e354d mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xdc8ef2ca sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xdc967da2 inet_splice_eof EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc98a258 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xdc9cf5d7 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xdcac97dd _RNvXsA_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB7_6Binary3fmt -EXPORT_SYMBOL_GPL vmlinux 0xdcd2ae36 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xdcd58687 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xdcafce77 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xdcd91727 _RNvXsa_NtCs3AkgXgqgK6r_4core3fmtzNtB5_5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xdce096b2 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xdcdafa98 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xdce56710 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xdce7bc3a _RNvXsV_NtNtCs3AkgXgqgK6r_4core3fmt3nummNtB7_5Octal3fmt EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdceb815d vp_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0xdcf475cd iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xdd0537d2 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd0113d9 hsu_dma_remove EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0efa00 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xdd131165 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xdd154d7f open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xdd2a4612 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdd43c5a3 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdd28ba88 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xdd2a54f4 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xdd33825f regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd3a7e44 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xdd46d5fb _RNvXs4h_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_6i32x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xdd501a84 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdd5569c1 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd56fea9 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd83d899 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xdd638579 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xdd68e837 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xdd692c00 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xdd6dc8df acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xdd7a325f register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xdd89b798 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xdd942144 ohci_resume EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh EXPORT_SYMBOL_GPL vmlinux 0xdd9df98f _RNvXs28_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_20class_raw_spinlock_tNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xdda05e60 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xddaae25d thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xddbdfaed edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xddbe0400 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xddaf763e blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0xddc00e6f __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xddc1c24e __SCK__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xddce779c devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0xddc93e25 spi_transfer_cs_change_delay_exec EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield EXPORT_SYMBOL_GPL vmlinux 0xddd59f25 _RNvXs2V_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5m64x2NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xdde4143f irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xdde7887d pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xddf02685 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xddf4320f gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xddec0334 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xddec31cf usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xddf602b1 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xde0093f7 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xde0ae54f _RNvXs41_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15lru_gen_mm_walkNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde14d6d0 nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xde1a666c tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xde1d0909 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xde2349b0 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xde2c8376 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xde16859e i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xde1d0717 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde37db81 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0xde39c6b8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0xde43faee __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xde5381e4 blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0xde5574cf x509_load_certificate_list -EXPORT_SYMBOL_GPL vmlinux 0xde615321 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xde68bc72 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xde626f0c vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0xde628d7e edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde766479 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde8060f4 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0xde80cbc5 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xde88e2ab devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0xde96050e usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xde72c401 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xde7bb483 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xde7e39b5 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0xde97ccb1 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xde99a487 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xde9a4ace icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xde9c6f2c iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xdeac7bf1 class_create EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdecd0ac1 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xdef22ceb dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xdef18a0e iomap_get_folio EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf169554 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xdf176f4a net_selftest EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0xdf203cd6 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xdf231b32 ping_close EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdf2d3bd2 devm_pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0xdf2e562b regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xdf2e82a8 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack -EXPORT_SYMBOL_GPL vmlinux 0xdf3ab2e3 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf51d732 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties -EXPORT_SYMBOL_GPL vmlinux 0xdf679982 serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0xdf68f601 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter26debug_struct_field2_finish -EXPORT_SYMBOL_GPL vmlinux 0xdf77b2db sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xdf7d9316 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdf713d54 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xdf7c2b5a nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf84f349 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xdf86c8c2 _RNvXs5m_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_22sigevent__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xdfaf3686 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xdf93dcc5 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xdf9ff4e6 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xdfa225dd fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xdfa2b77b wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xdfaf0174 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xdfb9d573 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfcb82ae strp_init -EXPORT_SYMBOL_GPL vmlinux 0xdfdf310f balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdfe1b75c xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0xdfe2b317 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xdfd03be0 device_link_add EXPORT_SYMBOL_GPL vmlinux 0xdfe39c11 _RNvXsd_NtCs3AkgXgqgK6r_4core3fmtbNtB5_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xdfe746e3 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xdfef0c56 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0xdff5b6fa fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xdff0254a kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xdffb829d kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xdffcb868 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xe00b2cc8 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xe00ee5ec tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xe017e1ca tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xe01a7c54 group_cpus_evenly -EXPORT_SYMBOL_GPL vmlinux 0xe02419e5 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xe01c662e folio_alloc_buffers +EXPORT_SYMBOL_GPL vmlinux 0xe0258d7b tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xe0291e3e ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0xe02d4ba7 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xe02f6e92 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow EXPORT_SYMBOL_GPL vmlinux 0xe0377f07 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xe037e085 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xe04515f7 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xe048c0fc _RNvXs1K_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_3fpuNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe04ebadf uart_set_options EXPORT_SYMBOL_GPL vmlinux 0xe05b9967 _RNvXs21_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10llist_headNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe0710fd3 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe074837c kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xe07cd12a pci_free_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0xe0812fbf unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe08ceb64 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe09b28b6 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe0950b42 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xe0a58f1e _RNvXse_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_10hlist_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe0a6dea2 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe0a7d788 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0xe0a95714 _RNvXs4O_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_17rhashtable_walkerNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xe0aacfd1 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0xe0afa5a2 iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b55925 pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0xe0b70fc8 dev_pm_set_dedicated_wake_irq_reverse EXPORT_SYMBOL_GPL vmlinux 0xe0bcf446 gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0c842d8 intel_pinctrl_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute EXPORT_SYMBOL_GPL vmlinux 0xe0d70fa2 irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xe0e6ef02 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xe0ec4e96 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xe0f6cfe9 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0xe103c4bb xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xe0ea359e ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xe0f44f97 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xe10961b9 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe119b3fe dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0xe11ced97 _RNvXsT_NtNtCs3AkgXgqgK6r_4core3str4iterNtB5_5BytesNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe128fad5 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0xe12b03a7 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe14313db fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0xe159c24b regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xe15c496d iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xe1269ccb __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xe12844f8 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xe128a115 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xe1293c4f rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xe1489678 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xe14ddb85 acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0xe15f154d for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xe163f778 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xe1686803 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xe176e7dd devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xe17ef315 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xe18c851d wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xe161fa3a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xe1633103 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xe17854ad debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0xe187d3ff device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xe19478a4 _RNvXsA_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_12__ddebug_infoNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe19483a8 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xe1a549a3 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xe1954cfb acpi_storage_d3 EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa0bdf ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1ab6aa4 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1af26c5 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe1b8ab98 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0xe1bd13f0 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports EXPORT_SYMBOL_GPL vmlinux 0xe1bd9a46 devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1c9b523 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0xe1c9f580 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xe1cd24c3 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0xe1d61cbe _RNvXs1r_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB8_8LowerExp3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe1e4ae10 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe1dc6239 devm_regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xe1f01d78 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xe1f3a536 dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xe1f81b71 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe1fa15c8 __SCK__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xe205f23f _RNvNvMs_NtCsd8lEp9MQdN2_5alloc3vecINtB6_3VecppE11swap_remove13assert_failed EXPORT_SYMBOL_GPL vmlinux 0xe2138171 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xe216e266 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe21d7ada __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xe21f77dc icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xe2264c76 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0xe22a3177 _RNvXNtNtNtCsbwHtcUjRN57_6kernel4sync4lock8spinlockNtB2_15SpinLockBackendNtB4_7Backend4lock -EXPORT_SYMBOL_GPL vmlinux 0xe23049c6 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2340696 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0xe23bc0b5 phy_power_off EXPORT_SYMBOL_GPL vmlinux 0xe2423a9c pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe245380c usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe2436ebc fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xe245a915 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xe24728b7 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe24f422a rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe24affa0 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xe2531f19 vcap_tc_flower_handler_tcp_usage +EXPORT_SYMBOL_GPL vmlinux 0xe25cd289 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0xe26c2154 _RNvXs4q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25local_apic__bindgen_ty_20NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe271d479 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xe275fc9d __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xe28afa1b tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xe28d1862 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xe28ebbf1 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe29707e5 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xe299c3c7 devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2be8b70 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xe2c2bc17 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0xe2c2ce7d _RNvXsk_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_8AtomicI8NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe2c5c573 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xe2c9ba78 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d1b270 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule EXPORT_SYMBOL_GPL vmlinux 0xe2dac316 _RNvNvMs1d_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB8_12NonZeroIsize13new_unchecked8comptime +EXPORT_SYMBOL_GPL vmlinux 0xe2dd6b85 vcap_tc_flower_handler_portnum_usage EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe2f20bf7 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xe301edac crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0xe30ca4b5 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xe316ad0c synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xe300e29b adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe316b16e do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0xe317f1be _RNvXs6_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0xe31ea899 fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe31eeb85 _RNvXs5j_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_21siginfo__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe3349677 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xe33f9e2f pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xe3239844 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xe3286be7 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xe3477caa check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0xe34d2e3f gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0xe36a90de driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe36e2714 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xe36f9ec2 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xe373da2c _RNvXs3x_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18page__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe37eed38 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xe381c7ad cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe3880d4f blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xe38e84da ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xe390cfab thermal_zone_device_register_with_trips -EXPORT_SYMBOL_GPL vmlinux 0xe393501f pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe38c57d9 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xe3905a0b iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a4848f dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe3a78e47 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xe3a87fdc ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe3aa6e99 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xe3a57b25 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3bb9c29 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3bf4fed xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xe3c08313 uart_set_options EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3cfa296 firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0xe3d72188 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xe3df6c5d extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe3da2cb2 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast -EXPORT_SYMBOL_GPL vmlinux 0xe3ec76dd fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xe3eeef74 edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0xe3f0dbbc _RNvXs0_NtNtNtCs3AkgXgqgK6r_4core9core_arch3x865cpuidNtB5_11CpuidResultNtNtBb_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe3f46de0 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3fba143 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xe400927e rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0xe407b040 _RNvMNtNtCs3AkgXgqgK6r_4core3str5lossyNtB2_9Utf8Chunk5valid EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe411a25f sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xe41051fa blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xe4172ff2 _RNvXs1t_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5f64x1NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe419f18e pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe41d0cfa gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xe41d1e6b nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42b9936 pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume EXPORT_SYMBOL_GPL vmlinux 0xe436e90c __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xe446cdc2 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xe44905a0 nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xe462c912 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe464bf41 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xe4655949 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xe485fbba sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0xe496a380 rust_helper_get_current EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a2c597 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xe4a60cd2 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xe4a2f876 iommu_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0xe4ac0a3a _RNvXs4L_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5f64x8NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b25fc7 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xe4b51c23 __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c240e0 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4d0f633 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe4c7161a udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xe4cb4809 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xe4e284d7 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f50fe5 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xe4f9b548 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0xe4fbeaa3 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0xe4fed9db fscrypt_fname_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xe50607c8 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xe4ff5c49 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe50228d5 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe50351a7 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xe506d52f _RNvXs3H_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_5folioNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe50a4f96 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xe5186d78 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe51d35e0 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xe53012d3 vcap_is_next_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe53757d7 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xe5392104 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe518c750 iov_iter_extract_pages +EXPORT_SYMBOL_GPL vmlinux 0xe5244490 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xe53a6fb1 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xe53be038 _RNvXs5h_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10___sifieldsNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe5407ad1 __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe54eb6ad device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xe55922e9 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe56b9365 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xe56f37be tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe5711244 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xe57ca324 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xe57f0046 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe53dc561 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe54513d2 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xe55844d3 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xe55b9940 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xe55ff39d iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xe56e874a nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xe57f40ff cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe591af56 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xe598b49e acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xe59e5e74 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xe5a11d09 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xe5adfa19 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c57e15 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xe5c55d9b devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5ce0ab9 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5d8abd3 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xe5d8e641 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xe5dba8bf bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xe5d8eab6 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xe5e0e8ef pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0xe5e250f5 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter11debug_tuple EXPORT_SYMBOL_GPL vmlinux 0xe5e5ac77 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xe5eb432e regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xe604b5aa bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0xe602d9dc ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe60987a3 ethtool_dev_mm_supported EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xe60e9483 _RNvNtCs3AkgXgqgK6r_4core3fmt12USIZE_MARKER +EXPORT_SYMBOL_GPL vmlinux 0xe6191d5f sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xe61d40a8 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xe6215ad7 vcap_tc_flower_handler_ethaddr_usage +EXPORT_SYMBOL_GPL vmlinux 0xe628280b vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6310c2f memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xe6322b8d register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xe642f528 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xe634736e device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xe6395979 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe65090c8 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xe651ce37 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe64c8b97 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe65188a6 devl_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xe6561c06 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0xe65bea48 _RNvXs9_NtNtCs3AkgXgqgK6r_4core4char7convertNtB5_14ParseCharErrorNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe65eea24 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xe661a6e4 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xe66ddce8 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe6774e31 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xe68209d6 blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0xe68a27ef virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xe695441d wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe69b7e47 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xe6a1e120 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe6bcddf2 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xe6648d06 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xe674fedd __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xe682f64f devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xe684931f gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xe69e12b6 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xe6a0a59d devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xe6a8bc9f usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xe6b2f80a tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xe6bfa0a3 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0xe6c465d6 _RNvXs2D_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5m8x16NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xe6c8293d xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xe6c89695 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xe6ca16c0 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe6d7f52c nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xe6d8072e xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe6e1e827 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e5cac4 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter26debug_struct_field1_finish EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6ef5cdf device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xe6ebf0a1 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xe6ee83a5 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6f0bfe1 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xe6f4448b __tracepoint_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data EXPORT_SYMBOL_GPL vmlinux 0xe6fa9dc7 _RNvXs1_NtNtCs3AkgXgqgK6r_4core5slice4sortNtB5_10TimSortRunNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xe6ff4d94 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe70221d7 cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0xe713b1eb peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe708bab3 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xe7128ec8 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7169872 device_del EXPORT_SYMBOL_GPL vmlinux 0xe716db3e _RNvXs0_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_15TryFromIntErrorINtNtB9_7convert4FromNtB11_10InfallibleE4from -EXPORT_SYMBOL_GPL vmlinux 0xe71c1876 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xe7204b54 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xe7184f9f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xe71c51f5 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xe71fc1c1 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xe720ad5e __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe726327d usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xe72c897e gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xe7360cea ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xe7386902 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0xe73e3e9b pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xe7264e82 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe72d3b68 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xe73aca4e crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xe74b33f5 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xe74c6143 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0xe74d0bb7 crypto_alloc_sig -EXPORT_SYMBOL_GPL vmlinux 0xe74f1177 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe7515cd9 pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe755c9bc xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xe75e0b74 regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76adc5a wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xe77abafb pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe77d1e7e serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78a0eeb fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xe78d2558 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0xe797f01c _RNvMNtNtCs3AkgXgqgK6r_4core5slice5asciiSh12escape_ascii EXPORT_SYMBOL_GPL vmlinux 0xe798511a _RNvXs3_NtNtCs3AkgXgqgK6r_4core3cmp5implszNtB7_9PartialEq2eq EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7b059c9 vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0xe7b4842f _RNvXsd_NtCsbwHtcUjRN57_6kernel3strNtB5_7CStringNtNtNtCs3AkgXgqgK6r_4core3ops5deref5Deref5deref EXPORT_SYMBOL_GPL vmlinux 0xe7b86859 _RNvXsz_NtCs3AkgXgqgK6r_4core3fmtNtB5_9AlignmentNtB5_5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 -EXPORT_SYMBOL_GPL vmlinux 0xe7bb8d51 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xe7c00306 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e2eb9c cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xe7da717b usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0xe7e5c183 _RNvXs2G_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_10ma_topiaryNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe7eafb1c debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xe7f28bc4 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xe7f69c5c md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xe7e6b94d nf_queue EXPORT_SYMBOL_GPL vmlinux 0xe7fc75d9 _RNvXs1_NtNtCs3AkgXgqgK6r_4core3fmt3numsNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xe7ff3296 pinctrl_pm_select_default_state EXPORT_SYMBOL_GPL vmlinux 0xe801f3e5 _RNvXs8_NtCsd8lEp9MQdN2_5alloc11collectionsNtB5_15TryReserveErrorNtNtCs3AkgXgqgK6r_4core3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xe8084530 rust_helper_errname -EXPORT_SYMBOL_GPL vmlinux 0xe80bdea4 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xe80fb08b tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xe80b893a virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xe811c876 rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81e06bb rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xe83c9118 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xe821f009 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xe832c9f1 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xe83a64fc handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation EXPORT_SYMBOL_GPL vmlinux 0xe83fadf2 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xe84c8901 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xe8463798 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe84b8999 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xe84bf2f9 inode_dax EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports EXPORT_SYMBOL_GPL vmlinux 0xe8513917 __rust_alloc_zeroed -EXPORT_SYMBOL_GPL vmlinux 0xe859767c raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xe85baac4 scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start EXPORT_SYMBOL_GPL vmlinux 0xe86896aa _RNvXs1d_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25__fpstate_64__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe86bca54 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xe86cc39d __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xe8703845 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0xe88995bc sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xe88d3291 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xe88ebf15 devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0xe891dcc5 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe882159d uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xe88564c9 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xe88a67a7 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe88aa233 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xe8972d77 _RNvXs1G_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11xregs_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xe8979afb mas_prev_range +EXPORT_SYMBOL_GPL vmlinux 0xe8a4a00c rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0xe8add751 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe8bbd6ad fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xe8bdbdb0 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static EXPORT_SYMBOL_GPL vmlinux 0xe8c4edbc power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xe8c62340 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xe8d4120e ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe8e04dc8 __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8f6897d dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe8e805e0 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xe8ec68db sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0xe900b35d _RNvXs_NtNtCs3AkgXgqgK6r_4core3str5lossyNtB4_5DebugNtNtB8_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xe902dc19 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9152ca5 vfs_splice_read -EXPORT_SYMBOL_GPL vmlinux 0xe92325e1 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0xe9279ef4 _RNvXsP_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_31edd_device_params__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xe92836fa register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xe92cfb7b iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe942ac2e sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xe95faafe led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe953d52f pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xe95d021f regulator_desc_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xe96fed72 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe976c2c4 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0xe976d5dc __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe9856f24 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xe9885327 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xe9929afb usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xe99b835b pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe976b53d nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe97a51d1 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xe985edb0 call_hid_bpf_rdesc_fixup +EXPORT_SYMBOL_GPL vmlinux 0xe9a125e2 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xe9ac8d1c file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xe9a9be45 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9b4df2e memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0xe9c21f3f _RNvXs3j_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15return_instanceNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe9c3ac35 clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available EXPORT_SYMBOL_GPL vmlinux 0xe9cf6888 _RNvXs12_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_20paravirt_callee_saveNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xe9d0b210 _RNvXs23_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_32___call_single_node__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9dd8e84 nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0xe9df8907 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0xe9e0b373 _RNvXs2A_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_24maple_tree__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xe9f4e85b pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe9fe76c5 ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0xea000f6e _RNvXs5s_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_7ksignalNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea045592 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xea0b0d74 _RNvXs27_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_8rwlock_tNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xea107fcb tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xea0e2071 dev_pm_opp_get_power EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd EXPORT_SYMBOL_GPL vmlinux 0xea1a8910 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB5_10DisplayInt7from_u8 -EXPORT_SYMBOL_GPL vmlinux 0xea271c62 switchdev_handle_fdb_event_to_device -EXPORT_SYMBOL_GPL vmlinux 0xea28cf34 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xea1d52f3 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xea1fafe0 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xea29329c iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xea293ab9 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xea2d8e9a tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xea312c8c serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0xea3765c5 usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3b891f ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0xea528cda _RNvNtNtCs3AkgXgqgK6r_4core5slice5index24slice_end_index_len_fail -EXPORT_SYMBOL_GPL vmlinux 0xea52ce95 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xea5a27ff vcap_get_rule_count_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0xea62f229 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xea698670 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xea69d7d7 asm_exc_nmi_kvm_vmx EXPORT_SYMBOL_GPL vmlinux 0xea6ed2bf dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xea722d96 acpi_kobj EXPORT_SYMBOL_GPL vmlinux 0xea758365 _RNvNtNtCs3AkgXgqgK6r_4core5slice5index29slice_end_index_overflow_fail -EXPORT_SYMBOL_GPL vmlinux 0xea99bfe2 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xea774c9b ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea812d7d regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xea8300c8 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xea9cb493 _RNvXsb_NtNtCs3AkgXgqgK6r_4core4task4wakeNtB5_8RawWakerNtNtB9_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xea9edada of_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xeaa64eba pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xeaa95733 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0xeab18d44 rust_helper_refcount_inc -EXPORT_SYMBOL_GPL vmlinux 0xeabae0ce extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xeabec638 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xeac73134 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xeacc0b20 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0xead2ae90 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xeacf17e3 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xead8668f extract_iter_to_sg EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae62af2 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xeaeb35f3 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xeaebe694 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0xeaf04174 _RNvXs2E_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_24maple_node__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL vmlinux 0xeb040e52 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xeaf79c37 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xeb0f0875 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xeb13dc67 crypto_sig_set_pubkey EXPORT_SYMBOL_GPL vmlinux 0xeb1a6bbd rust_helper_REFCOUNT_INIT -EXPORT_SYMBOL_GPL vmlinux 0xeb3620fb kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xeb311044 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb332e4b genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0xeb369f00 extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0xeb434004 _RNvMs7_NtCs3AkgXgqgK6r_4core3fmtNtB5_9Formatter25debug_tuple_field1_finish -EXPORT_SYMBOL_GPL vmlinux 0xeb440970 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xeb46118b regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0xeb52f746 __SCT__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xeb553e86 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xeb57742b crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0xeb5a37d4 _RNvNtNtCs3AkgXgqgK6r_4core10intrinsics3mir6Return EXPORT_SYMBOL_GPL vmlinux 0xeb64a0bd device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb7159b1 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeb73c677 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xeb6ab9a8 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb87a516 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0xeb87f2d8 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xeb8c7a36 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xeb8ea803 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xeb90063b param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xeb9d6b97 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xeba55dbf p2sb_bar +EXPORT_SYMBOL_GPL vmlinux 0xeba17680 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xebb1f830 acpi_quirk_skip_gpio_event_handlers -EXPORT_SYMBOL_GPL vmlinux 0xebb82281 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xebbabba4 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xebc8d057 rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xebd3bc86 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xebb3a5bb inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xebd1b36d kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms EXPORT_SYMBOL_GPL vmlinux 0xebef17c6 _RNvXsa_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB5_10DisplayInt7to_u128 +EXPORT_SYMBOL_GPL vmlinux 0xebf4cb1e __io_uring_cmd_do_in_task EXPORT_SYMBOL_GPL vmlinux 0xebf7c0a5 _RNvXsk_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_15callthunk_sitesNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xebf7fe55 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xec1124b4 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xec185805 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xec1adc2f _RNvXs3F_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_33folio__bindgen_ty_3__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xec1adecf _RNvXs1L_NtNtCs3AkgXgqgK6r_4core3str4iterNtB6_5LinesNtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xec443a81 usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xec4dafec get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xec1f87a4 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xec244fa7 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xec2df06f genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xec336de8 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xec424e7e skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xec514b3b crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec57f509 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec5c2cc6 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xec61ec20 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xec6878ba pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec7a486d ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xec7b755d dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0xec8ca4fb watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xecaad421 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xecaf1c61 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0xecb5df0d usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xecb95017 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc14ea5 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0xecd53c10 _RNvXsE_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_9AtomicI32NtNtB9_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xecd78d26 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read EXPORT_SYMBOL_GPL vmlinux 0xece51252 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xece7d5e7 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xecef1da5 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xecebe256 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xecec40d7 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xed163711 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed38642b scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed41b6f5 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xed4a60a8 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xed55ae5c debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xed58b460 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xed64ea25 pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xed666574 acpi_dev_gpio_irq_wake_get_by EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed90c023 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed953690 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0xed98c56a pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xeda0318a __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0xeda06867 _RNvXs5p_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_14kernel_siginfoNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xeda65596 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xeda6e216 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xeda914af device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xedb37dac _RNvXsJ_NtNtCs3AkgXgqgK6r_4core4sync6atomicNtB5_9AtomicU32NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xedb5b474 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xedbd6f3a iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xedbe681e netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xedcb0658 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xedb897e0 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xedc66129 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xedd3f6f3 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xedd5881a dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xedd84aa4 iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0xede2a4b7 _RNvXsn_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_21qrwlock__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xee024603 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xedec774f skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xedf3d63e __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xedf61f56 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xedf98047 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xedfe91cd __fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xee0378bc pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0xee03cb85 _RNvXs4F_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5u64x8NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xee132a06 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xee0e4e6c pci_msi_prepare EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0xee1422fd ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0xee167397 _RNvXsi_NtCs3AkgXgqgK6r_4core3numiNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xee2ae873 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xee2fa0a8 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xee34a410 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xee353064 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xee27cd7d mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3a6593 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xee40468c of_pwm_single_xlate EXPORT_SYMBOL_GPL vmlinux 0xee4069ba _RNvXs3V_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15lru_gen_mm_listNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xee410e41 _RNvXsa_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB5_10DisplayInt4zero EXPORT_SYMBOL_GPL vmlinux 0xee4244b0 _RNvXs4g_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16x86_platform_opsNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xee4791e6 verify_signature EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xee5238da _RNvXs7_NtCs3AkgXgqgK6r_4core3anyNtB5_6DemandNtNtB7_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xee5591d4 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xee5e4a8d devm_regulator_get_enable -EXPORT_SYMBOL_GPL vmlinux 0xee66beba bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee78fcb6 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0xee7a3a12 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xee8c70f7 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xee8acfd6 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xee92b94c _RNvNtCs3AkgXgqgK6r_4core3fmt17pointer_fmt_inner EXPORT_SYMBOL_GPL vmlinux 0xee93cf84 rust_helper_put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xeea6ebc9 fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0xeea76283 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xeea8c38e spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xeeadc44a __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0xeeb1c70d __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xeeb2fa6c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xeeb7c892 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xeec1f7f7 _RNvXsr_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_7___m256dNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xeecc431d rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0xeed3934e _RNvXsG_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_8___m256bhNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xeedd04ac usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xeed46292 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeee1c7cf crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put -EXPORT_SYMBOL_GPL vmlinux 0xeee5bcd2 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xeee5eaa4 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xeee4d855 kill_device EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeef39786 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xef09b0f1 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xeefd85c9 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0xef132418 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xef1dd1f1 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xef1f0fc3 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3661b7 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xef418111 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xef406e48 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xef4529d5 _RNvXs2n_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_25arch_tlbflush_unmap_batchNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata EXPORT_SYMBOL_GPL vmlinux 0xef65c679 _RNvXsA_NtNtCs3AkgXgqgK6r_4core9core_arch3x86NtB5_7___m512dNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xef66977e fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xef6a3cb0 hsu_dma_get_status EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6cef46 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xef70d2bc sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef7102f8 mmc_regulator_disable_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xef797adc ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0xef80c2c8 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef9fa5cf bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa446df efivars_register -EXPORT_SYMBOL_GPL vmlinux 0xefa57680 blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xefaa9968 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xefb25278 _RNvXsa_NtCs3AkgXgqgK6r_4core5errorNtNtNtB7_4char7convert16CharTryFromErrorNtB5_5Error11description EXPORT_SYMBOL_GPL vmlinux 0xefb77aec _RNvXsM_NtNtCs3AkgXgqgK6r_4core3str4iterNtB5_11EncodeUtf16NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xefbccc68 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xefb879f1 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xefbd4805 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xefcef95a usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xefd3430c cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0xefe2d8cc acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xeff92a75 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xf0032fcd ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xf00bfbe1 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf010db08 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xf00beef8 io_uring_cmd_sock EXPORT_SYMBOL_GPL vmlinux 0xf017ad04 _RNvXs0_NtCsbwHtcUjRN57_6kernel5errorNtB5_5ErrorINtNtCs3AkgXgqgK6r_4core7convert4FromNtNtBO_5alloc10AllocErrorE4from -EXPORT_SYMBOL_GPL vmlinux 0xf01bde44 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf01bdb04 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xf01e510f blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xf03b1e53 dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0470304 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xf04ca33d umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xf058bfcc pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf0661b78 vmf_insert_pfn_pud +EXPORT_SYMBOL_GPL vmlinux 0xf068ba6c crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06f0921 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xf07c09c1 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf099ef8a unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf099f537 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0xf09cb271 _RNvXs2_NtNtCs3AkgXgqgK6r_4core3str5errorNtB5_14ParseBoolErrorNtNtB9_5error5Error11description EXPORT_SYMBOL_GPL vmlinux 0xf0a721a7 _RNvXs9_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB5_10DisplayInt6to_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf0b1469f inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf0c6bf69 rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0xf0ced3a5 _RNvMNtNtCs3AkgXgqgK6r_4core3mem15transmutabilityNtB2_6Assume7but_not EXPORT_SYMBOL_GPL vmlinux 0xf0d51b01 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xf0eb1164 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xf0fadc31 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xf0eb3fdd dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xf0f0cdbe clk_hw_forward_rate_request EXPORT_SYMBOL_GPL vmlinux 0xf0fd0b61 x86_perf_get_lbr EXPORT_SYMBOL_GPL vmlinux 0xf102d9a8 _RNvXs3O_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_28vm_area_struct__bindgen_ty_2NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf10446b8 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0xf10ab3c5 _RNvXs5_NtNtCs3AkgXgqgK6r_4core3fmt3numiNtB5_10DisplayInt4zero +EXPORT_SYMBOL_GPL vmlinux 0xf10cfe9d dma_resv_set_deadline +EXPORT_SYMBOL_GPL vmlinux 0xf10db0f7 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate -EXPORT_SYMBOL_GPL vmlinux 0xf11bf6fa ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xf124ffb6 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xf12c3d6e usb_string -EXPORT_SYMBOL_GPL vmlinux 0xf130bdf1 dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0xf1317e66 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1371e7c pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xf142ba37 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xf144e410 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0xf15e5c30 xfrm_get_translator EXPORT_SYMBOL_GPL vmlinux 0xf160b708 _RNvXNtCs3AkgXgqgK6r_4core9panickingNtB2_10AssertKindNtNtB4_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xf161b25a _RNvNtNtNtCs3AkgXgqgK6r_4core7unicode12unicode_data10alphabetic6lookup -EXPORT_SYMBOL_GPL vmlinux 0xf16b6f9d gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf1636392 crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0xf163a473 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xf16fa157 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xf17a954b kthread_data EXPORT_SYMBOL_GPL vmlinux 0xf17c6439 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf17d8f74 mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf184dbc6 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf18654a4 rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf19608ab md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf19607fb blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xf196c3e0 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0xf196f81b _RNvXs5_NtNtCs3AkgXgqgK6r_4core3cmp5implszNtB7_10PartialOrd11partial_cmp -EXPORT_SYMBOL_GPL vmlinux 0xf19e2f34 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0xf1af4aec ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf19c7dad edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf1ca6bf2 input_ff_event EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags -EXPORT_SYMBOL_GPL vmlinux 0xf1ddcd7b dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xf1cff8ab spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xf1d5cd51 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xf1d7ec1c virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xf1d80036 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf1ddeeab iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xf1e3f96b devm_regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xf1ed95d2 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xf1f18883 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xf1f3ca14 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xf1f43081 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0xf20636d7 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xf20ba7d3 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xf2074320 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf2084165 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xf20b114c hvc_poll EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf227b0ff cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf22e5ec0 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xf2302d16 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xf2310fc6 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xf23c3b00 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xf2504e4d ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xf251835f spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xf257d3fa __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xf25da844 driver_set_override EXPORT_SYMBOL_GPL vmlinux 0xf2664ae4 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xf271663d spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xf26e4328 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xf2737d93 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0xf2809a7a __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xf27d6f38 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf28812f6 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xf28e5d21 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xf29011d3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xf292d472 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0xf293875e _RNvXs4X_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_19kmsan_context_stateNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xf294bc57 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xf295afc9 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xf2b3695d handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2b75bbe nl_table -EXPORT_SYMBOL_GPL vmlinux 0xf2c20c77 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xf2c525f6 mbox_request_channel_byname EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xf2d8680d shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xf2def337 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xf2eef009 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xf2ef3b1d usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0xf2f79e94 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xf2dbaae2 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0xf2fdc8fc devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf2fe2cf3 spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported +EXPORT_SYMBOL_GPL vmlinux 0xf3080018 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf30819e6 is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf316ceb6 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31f5010 hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xf3298627 pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32c0a26 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xf32fb8da zone_device_page_init EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf3313140 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xf3396b23 devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf3407962 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xf344dcdd bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xf3472a93 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xf348dcf4 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf34e026a __SCK__tp_func_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xf351582a iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xf34db49e genphy_c45_pma_baset1_read_master_slave EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf35255ae _RNvXs4n_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_6u32x16NtNtBa_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xf352a133 _RNvXs_NtNtCs3AkgXgqgK6r_4core3mem15transmutabilityNtB4_6AssumeNtNtNtB8_3ops5arith3Add3add -EXPORT_SYMBOL_GPL vmlinux 0xf355e0ab vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0xf369b00a devl_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xf369dc85 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xf369ef48 acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xf36e07d9 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xf370503b __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xf35650aa ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf377efc4 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xf38166e2 _RNvXs30_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12execute_workNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf396ea9f ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xf39ba8e8 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf38196f1 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xf391ad24 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xf395a1e1 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf3979a37 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf3980d0c strp_stop EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3abc030 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove EXPORT_SYMBOL_GPL vmlinux 0xf3bcf8a3 _RNvXs1_NtCsd8lEp9MQdN2_5alloc11collectionsNtB5_15TryReserveErrorNtNtCs3AkgXgqgK6r_4core3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf3beb3b7 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xf3bec0b0 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xf3ca7b05 trace_add_event_call -EXPORT_SYMBOL_GPL vmlinux 0xf3dfc9e7 dev_pm_genpd_synced_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xf3f3c4ab blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xf3fb91c9 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xf3fc343c devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xf4076a2a trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xf4087c70 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0xf417fc8b input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xf3c511a1 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf3e586a0 __tracepoint_console +EXPORT_SYMBOL_GPL vmlinux 0xf3fdd29c kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf401e428 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xf4086a69 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xf40ec917 xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xf42e76c3 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xf43b4ab2 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0xf443570a rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0xf45201af put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf4545d5e iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xf455346c clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xf467ead8 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xf42a6d26 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf44e7c47 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xf4505dfa sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xf4661896 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause EXPORT_SYMBOL_GPL vmlinux 0xf4738b0b _RNvXs1Q_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16entry_stack_pageNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf4753ef0 pci_p2pdma_enable_store EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf49811ec fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xf49bcdf1 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xf4839a58 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xf49e0723 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xf4a45f69 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf4a9b553 vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal EXPORT_SYMBOL_GPL vmlinux 0xf4b60975 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xf4c619fc finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xf4c08fbb scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xf4c62661 _RNvXsx_NtNtCs3AkgXgqgK6r_4core3fmt3numjNtB7_5Octal3fmt EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4cea658 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xf4d22453 acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf4d8f953 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xf4d9803e ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system EXPORT_SYMBOL_GPL vmlinux 0xf4e9402e _RNvXsh_NtCs3AkgXgqgK6r_4core3numNtB5_10FpCategoryNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xf4f44ff9 _RNvXsl_NtCs3AkgXgqgK6r_4core3numlNtNtNtB7_3str6traits7FromStr8from_str -EXPORT_SYMBOL_GPL vmlinux 0xf4f5f4e1 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xf4fae939 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xf4fbe947 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xf52115ec usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf52d6b42 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xf52f17d5 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xf53856ed blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xf539ecd2 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xf53fd40e net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0xf508558e i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf53abbf5 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xf53ee1a5 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xf544dadc skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf55213fb phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55da257 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xf55d37fe i2c_acpi_find_adapter_by_handle EXPORT_SYMBOL_GPL vmlinux 0xf565b971 _RNvXsN_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB5_5u32x2NtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf5710179 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xf573b1c3 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf56ae4ea em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xf571a1b3 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xf57ae1f0 __tracepoint_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0xf57ae4fe devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xf57b7124 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xf58056f3 _RNvNtNtCs3AkgXgqgK6r_4core3str8converts13from_utf8_mut -EXPORT_SYMBOL_GPL vmlinux 0xf584ed8e ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0xf5878cc7 fpstate_clear_xstate_component -EXPORT_SYMBOL_GPL vmlinux 0xf58c4aa1 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xf5976887 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xf58c7fd0 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5956c11 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a2c811 pci_hp_create_module_link EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus EXPORT_SYMBOL_GPL vmlinux 0xf5b52d5c hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0xf5b562f2 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0xf5b6f2d9 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xf5b8f2dc fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xf5ca8cdb usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0xf5db4dac rust_fmt_argument -EXPORT_SYMBOL_GPL vmlinux 0xf5dcb431 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xf5e17971 __dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf5e3bf5a mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf5e49b4a fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xf5e5b9b9 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf5e86245 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xf5eaae45 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xf5ef7ba6 nvmem_layout_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xf5f11066 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0xf5f214b9 thermal_clear_package_intr_status -EXPORT_SYMBOL_GPL vmlinux 0xf5f25efb gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node EXPORT_SYMBOL_GPL vmlinux 0xf5f55460 _RNvXs5U_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_12thread_unionNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xf6007dc2 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf601a257 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xf6060219 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0xf60aef40 _RNvXsU_NtNtCs3AkgXgqgK6r_4core3str7patternNtB5_11EmptyNeedleNtNtB9_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf62339ab crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xf610201c register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf615afd0 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0xf62ce3f4 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xf6335bfa iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xf636b027 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xf637b840 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0xf63f003a acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0xf643a9e1 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf64a43f6 sis_info133_for_sata EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64fef3f tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0xf6529abf acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0xf65b80ec ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xf65707ee ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync EXPORT_SYMBOL_GPL vmlinux 0xf66f1a9f of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xf6751638 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xf685b31a ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xf6992974 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf66f63b4 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf6845ff7 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xf68b79f7 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xf693d0cc clk_hw_determine_rate_no_reparent EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6afcad8 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xf6b28c7b __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xf6c33fd9 fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable EXPORT_SYMBOL_GPL vmlinux 0xf6c91fc9 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xf6cc31b8 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xf6cad073 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xf6ce0e89 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xf6d0ca0f ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6e8f46a __SCK__tp_func_ipi_send_cpumask EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf6f4f858 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xf707713f pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf6f9a6e8 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf710ba52 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf7170676 __tracepoint_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xf7190a72 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xf7156160 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xf716e053 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf726c158 __folio_lock_killable EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf73226d3 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xf7387093 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0xf73c3552 __devm_clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0xf73ec797 _RNvNvMs_NtCsd8lEp9MQdN2_5alloc3vecINtB6_3VecppE6remove13assert_failed -EXPORT_SYMBOL_GPL vmlinux 0xf742ecd1 gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf7498714 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74b8cdc ata_host_init EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e0e19 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf74f7364 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf75a9ef9 device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0xf7627654 _RNvMs4_NtNtCs3AkgXgqgK6r_4core3fmt8buildersNtB5_8DebugSet5entry EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data EXPORT_SYMBOL_GPL vmlinux 0xf77275e1 _RNvXsp_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_12raw_spinlockNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf7768f7a sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xf773cd2a dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xf7827ce5 ata_eh_read_sense_success_ncq_log +EXPORT_SYMBOL_GPL vmlinux 0xf77860ad __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf7800193 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xf78373dd _RNvMs0_NtNtCsbwHtcUjRN57_6kernel4sync7condvarNtB5_7CondVar10notify_all -EXPORT_SYMBOL_GPL vmlinux 0xf7860bc7 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf78d0456 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xf7912e80 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf793f7d6 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xf79d16c1 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xf79ccad8 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf7a3c8ff spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3b342 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7c828fe fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xf7cc54df ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0xf7db3dda __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xf7c43941 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf7ccfa4f phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7cf10d5 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf7d1462a __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xf7d478f7 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xf7d7da65 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xf7e1faa8 _RNvXs_NtNtCs3AkgXgqgK6r_4core3ptr9alignmentNtB4_9AlignmentNtNtB8_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf7f5a3f8 dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event -EXPORT_SYMBOL_GPL vmlinux 0xf825ec96 vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0xf828c3b4 crypto_init_akcipher_ops_sig EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf839e1a4 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0xf84bc914 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xf852475f devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xf84bec55 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xf853005a regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf85efc99 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xf863e512 _RNvMsc_NtCs3AkgXgqgK6r_4core4timeNtB5_21TryFromFloatSecsError11description -EXPORT_SYMBOL_GPL vmlinux 0xf874f299 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xf87ad3b8 get_device +EXPORT_SYMBOL_GPL vmlinux 0xf8669858 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf888481e __nvmem_layout_register +EXPORT_SYMBOL_GPL vmlinux 0xf887721b sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xf88e7c77 _RNvXsD_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_29static_call_key__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf8981b93 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xf89e4688 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xf8a062ff _RNvXsb_NtCs3AkgXgqgK6r_4core4charNtB5_11ToLowercaseNtNtNtNtB7_4iter6traits12double_ended19DoubleEndedIterator9next_back EXPORT_SYMBOL_GPL vmlinux 0xf8a23f3f _RNvXsI_NtCs4G5TVFbM653_8bindings12bindings_rawNtB5_41restart_block__bindgen_ty_1__bindgen_ty_1NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf8a2437c gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xf8b1e338 __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xf8ba510e _RNvXsY_NtNtCs3AkgXgqgK6r_4core3fmt3numxNtB7_6Binary3fmt EXPORT_SYMBOL_GPL vmlinux 0xf8bc0beb clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0xf8c88995 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf8cc54cc gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xf8df184b __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xf8e11047 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit EXPORT_SYMBOL_GPL vmlinux 0xf8f559f9 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf8fef941 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xf90a3409 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf903a038 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xf90a0b39 devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xf90b66f6 _RNvXs13_NtNtCs3AkgXgqgK6r_4core3fmt3numyNtB8_5Octal3fmt -EXPORT_SYMBOL_GPL vmlinux 0xf90cc60c perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xf90b91eb usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0xf90f01e7 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xf91b610d xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xf927af0c __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xf92f46c3 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf937405e crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0xf9376129 _RNvXs5c_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_24___sifields__bindgen_ty_3NtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xf938711d ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xf94ba0e0 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xf9512aca __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xf952825e da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf938c4fe watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95b873d spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0xf9627f74 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xf96ccfcf find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xf959b76f icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xf96f6f1f _RNvMs0_NtNtCs3AkgXgqgK6r_4core3str5lossyNtB5_10Utf8Chunks3new -EXPORT_SYMBOL_GPL vmlinux 0xf970ea18 __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xf97913b4 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xf985ddd2 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xf9740408 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xf977fc0d tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xf9794c16 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xf994ed89 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0xf99565ba platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xf997d35f usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xf997ba3e pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf99fe833 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a9852a sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xf9aa9759 vmf_insert_pfn_pmd EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9c8fd70 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xf9cf1dd4 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xf9d09a78 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xf9dc71d4 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xf9e91d8c device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf9b68510 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9b7f445 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xf9cca78c nf_ip6_check_hbh_len +EXPORT_SYMBOL_GPL vmlinux 0xf9d02068 devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0xf9eaf82f rust_helper_signal_pending -EXPORT_SYMBOL_GPL vmlinux 0xf9f049bd icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xfa0abb18 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xfa119a05 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xfa1292f9 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xfa1bfd5d gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option EXPORT_SYMBOL_GPL vmlinux 0xfa241be5 _RNvXs1_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3imptNtB9_7Display3fmt @@ -28372,255 +28395,268 @@ EXPORT_SYMBOL_GPL vmlinux 0xfa350295 _RNvXsn_NtCs3AkgXgqgK6r_4core3numnNtNtNtB7_3str6traits7FromStr8from_str EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xfa4a4390 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xfa49d1ec acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfa4c1c7d sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xfa4dcb54 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0xfa4dd9bd _RNvXsA_NtCs3AkgXgqgK6r_4core4charNtB5_11ToLowercaseNtNtB7_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xfa5f6745 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa763dae clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xfa7e1a6b devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xfa85bf98 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xfaa11e63 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xfa8ad185 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xfa932884 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfa9af0dd __tracepoint_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xfaa677fb rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xfaa72ccb iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0xfaa82816 _RNvXs1k_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_3msrNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xfaaa4b35 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xfaaa2e4f iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfaafea6b scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xfab0e96f devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab52fab hv_set_register EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfabd7b32 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfac0a971 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xfac387d1 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfac5a71b fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xfad9179c dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xfac44c72 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfadae236 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0xfadd9f3d _RNvXs0_NtNtNtCs3AkgXgqgK6r_4core3fmt3num3impsNtB9_7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfaf68662 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xfb1b1660 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xfb0466bb bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xfb246eb0 pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb333743 xenbus_dev_changed EXPORT_SYMBOL_GPL vmlinux 0xfb35890a x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xfb4d6cdc extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xfb5190c6 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xfb59e704 dm_submit_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xfb602294 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0xfb606672 irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb61ecf5 crypto_register_skciphers EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb74d3fa vfs_remove_acl EXPORT_SYMBOL_GPL vmlinux 0xfb74e910 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfb77f537 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xfb7a5e66 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0xfb7d2781 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfb80bb0f ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xfb842129 _RNvXs15_NtNtCs3AkgXgqgK6r_4core9core_arch4simdNtB6_5i16x4NtNtBa_3fmt5Debug3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfb847341 __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0xfb8659de _RNvNvMsZ_NtNtCs3AkgXgqgK6r_4core3num7nonzeroNtB7_10NonZeroI6413new_unchecked8comptime -EXPORT_SYMBOL_GPL vmlinux 0xfb8b378f _copy_mc_to_iter -EXPORT_SYMBOL_GPL vmlinux 0xfb8d5c73 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xfb9a728a usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xfb9c5efd espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xfb8c72f8 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0xfb8ff577 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfb9d4976 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfba18b79 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xfba3feff clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xfbb03981 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xfbad200e ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xfbb3a128 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xfbb66212 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xfbbcda57 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc63273 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xfbc17c8a xenbus_alloc_evtchn EXPORT_SYMBOL_GPL vmlinux 0xfbd30b01 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xfbe8d67a fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0xfbfe0335 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfbe7b920 crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0xfbede5a8 bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0xfbf1f682 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xfbf968be bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xfbfd8bbf blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc037fde serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0b75b7 crypto_clone_tfm -EXPORT_SYMBOL_GPL vmlinux 0xfc1b539b devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xfc07d9c4 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xfc0e8ca0 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xfc170c87 pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc205ca3 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xfc232c6e pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc2a4e9b iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfc3071f4 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xfc34a110 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc313709 inet_hash EXPORT_SYMBOL_GPL vmlinux 0xfc3ab8ce _RNvXs_NtNtCs3AkgXgqgK6r_4core3str5errorNtB4_9Utf8ErrorNtNtB8_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc3be31a list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0xfc53d8a9 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfc56d30b fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xfc625cc3 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xfc669205 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0xfc677db2 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xfc6821bb nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xfc6b06c2 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xfc6e603a devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xfc6040a3 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xfc68b912 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xfc724f89 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xfc7ff4da ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfc82a64c blk_crypto_profile_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfc87cdf1 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xfc8a250a rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xfc8a57fc bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xfc8fb701 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfc909ab8 nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xfc98c8dc xen_percpu_upcall +EXPORT_SYMBOL_GPL vmlinux 0xfca27063 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0xfcadfcea __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xfcb151d5 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xfcb2de54 nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0xfcb681e3 _RNvXs3_NtNtCs3AkgXgqgK6r_4core3num5errorNtB5_13ParseIntErrorNtNtB9_3fmt7Display3fmt EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc0255a usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfcc152c6 sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe EXPORT_SYMBOL_GPL vmlinux 0xfccb93de _RNvXs1V_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_13thread_structNtNtCs3AkgXgqgK6r_4core7default7Default7default +EXPORT_SYMBOL_GPL vmlinux 0xfcd31075 pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0xfcd860fc pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xfce7011d phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xfceb4885 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfced4edc regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xfcef18cb skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xfcf0174d ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xfcf6ec09 extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd49d53f regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xfd5efee1 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xfd211c41 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xfd34b70d devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xfd3db85e vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0xfd47173c extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd5075c2 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xfd51ca3d debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xfd635eb8 blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0xfd66f3f4 _RNvXsd_NtCs3AkgXgqgK6r_4core5errorNtNtNtB7_3ffi5c_str21FromBytesWithNulErrorNtB5_5Error11description -EXPORT_SYMBOL_GPL vmlinux 0xfd6c0624 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xfd6ca3a2 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0xfd78b4c1 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd80046f devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xfd8ab7f8 _RNvXs5a_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_6sigvalNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xfd8f8eba fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd9b3d79 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xfdb1a4ce irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xfd9b13e8 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfda68b03 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xfdba2bc5 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xfdbb7080 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xfdbbe9c7 pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdcb3613 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfddcc782 pci_p2pdma_enable_show EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf7d185 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xfdfa60f2 _RNvXs0_NtNtCs3AkgXgqgK6r_4core3fmt3numaNtB5_10DisplayInt6to_u16 -EXPORT_SYMBOL_GPL vmlinux 0xfe0392b3 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xfe05f641 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xfe099e7f tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0xfe0ae5c4 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xfe0ba538 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe0e7f5a watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xfe136443 devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe1ecda8 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0xfe24ab1c _RNvXs2_NtCs3AkgXgqgK6r_4core5asciiNtB5_13EscapeDefaultNtNtB7_3fmt7Display3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfe2abcd9 iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3f2c55 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0xfe4148d3 _RNvXsy_NtCs3AkgXgqgK6r_4core4timeNtB5_21TryFromFloatSecsErrorNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe57ce64 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xfe60422e wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xfe4c49c7 dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0xfe693f02 srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe6fbbee _RNvXs0_NtCs3AkgXgqgK6r_4core6futureNtB5_8ResumeTyNtNtB7_3fmt5Debug3fmt EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe75d609 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe906f80 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfe922f6e device_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9c5899 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xfe9fb6aa dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0xfea04d93 _RNvXsH_NtNtCs3AkgXgqgK6r_4core3fmt3numhNtB7_8UpperHex3fmt -EXPORT_SYMBOL_GPL vmlinux 0xfea37002 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xfeb04046 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xfeadd2e6 failover_register EXPORT_SYMBOL_GPL vmlinux 0xfeb1cc28 _RNvXs2c_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_16class_spinlock_tNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xfebc9904 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xfec67924 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xfeba8990 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xfec1c4f7 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xfeccb716 validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed951db vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xfee01ac9 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xfee4fed3 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xfed2b9e1 xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xfeec3489 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff01197c regmap_field_test_bits EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff06f390 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff19a44c devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff24a5fc irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0xff294ebb driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0xff296b33 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0xff2b4174 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0xff314bbe _RNvXs5S_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11task_structNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xff3c4def crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xff424af9 dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff575eb8 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xff593c00 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xff51ba7d dax_zero_range EXPORT_SYMBOL_GPL vmlinux 0xff664434 _RNvXsa_NtNtCs3AkgXgqgK6r_4core3fmt3numoNtB5_10DisplayInt5to_u8 -EXPORT_SYMBOL_GPL vmlinux 0xff692951 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xff66ac19 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xff6ac234 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0xff75a1fb _RNvXs2W_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_11work_structNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xff7a485d crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xff777e54 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xff79e33c firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable -EXPORT_SYMBOL_GPL vmlinux 0xff94d333 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xff8ebb4e ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xff9de02e pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb7b40b __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xffb8e3c8 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xffbe0c52 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xffbefe14 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xffb4436a da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xffbc5359 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0xffc00bc2 iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffca4e97 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xffcf733c _RNvXNvNtCs3AkgXgqgK6r_4core9panicking21assert_matches_failedNtB2_7PatternNtNtB6_3fmt5Debug3fmt +EXPORT_SYMBOL_GPL vmlinux 0xffd277ae usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0xffd60ee9 _RNvXs2i_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_15wait_queue_headNtNtCs3AkgXgqgK6r_4core7default7Default7default -EXPORT_SYMBOL_GPL vmlinux 0xfff0635a acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0xfff6bfea _RNvXs3L_NtCs4G5TVFbM653_8bindings12bindings_rawNtB6_18vm_userfaultfd_ctxNtNtCs3AkgXgqgK6r_4core7default7Default7default EXPORT_SYMBOL_GPL vmlinux 0xfff6c7c7 _RNvMsi_NtCs3AkgXgqgK6r_4core4charNtB5_15CaseMappingIter3new +EXPORT_SYMBOL_GPL vmlinux 0xfff6c871 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfffa1c07 wbt_enable_default FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0f6142d3 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x12f2266e cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x14a5f594 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x2dcbb6ea cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x36a48bc6 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x43a6fbc9 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x28cf1199 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x2ba08e06 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x2c87b29c cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x41aa2723 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4b20154b cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x4f7d377c cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x50e1f9ef cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x562fd6e1 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x5cd509af cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x63f0a28d cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x66752309 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x54f4c1a4 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x573a1270 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x649e7ae6 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x841b056a cs_dsp_stop drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x92a43a94 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x93a667eb cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x83bab034 cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x8c492370 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x934f3d78 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9dc5ddf2 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xa9bfa49a cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa0839caf cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa1b28b4b cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa44178f4 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xae6e503d cs_dsp_run drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb9169ed2 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb9f3b334 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xca799d4b cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xcae82972 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xcbae9c71 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xe3e7d65d cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf2f943d2 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf60e1be3 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbfe36641 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc245c0c1 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcae734c0 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xe457cc66 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xe5787f40 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf05a711a cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf5985013 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf9392976 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp GPIO_TANGIER EXPORT_SYMBOL_GPL 0x2af554d2 tng_gpio_resume drivers/gpio/gpio-tangier GPIO_TANGIER EXPORT_SYMBOL_GPL 0x596b8dc0 devm_tng_gpio_probe drivers/gpio/gpio-tangier GPIO_TANGIER EXPORT_SYMBOL_GPL 0xeed9632a tng_gpio_suspend drivers/gpio/gpio-tangier -HWMON_THERMAL EXPORT_SYMBOL_GPL 0x2021dec3 hwmon_device_register_for_thermal vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xc13404ab hwmon_device_register_for_thermal vmlinux I8255 EXPORT_SYMBOL_GPL 0x4e30db32 devm_i8255_regmap_register drivers/gpio/gpio-i8255 -I915_GVT EXPORT_SYMBOL_GPL 0x0050142c i915_unreserve_fence drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x07d7ef39 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x11a093ef i915_gem_prime_export drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x157bb5d7 intel_ring_begin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x2c0254d7 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x2d4ec82d intel_context_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x33398272 shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0e773e90 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x10ec5d11 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1508ce71 i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1922aa30 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1abfd523 i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2c705be9 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x38b91c5b i915_fence_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x3b627375 i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x42f6c819 __intel_context_do_pin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x43c22b46 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x47131c99 i915_reserve_fence drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x4d362d91 __px_dma drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x4d6d1c9a __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x52b294ab intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x6179c02b intel_gvt_set_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x642c4e9c i915_gem_object_init drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x687adac4 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x74879355 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x845321b3 i915_request_add drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x85a59e27 __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x48709e4e intel_context_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4a634346 __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x50e3738b i915_request_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x58f6c252 i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5904e083 shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x6342c215 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x729d1161 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x76cf83c3 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x77c28029 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7dca65fb __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7f3416c1 __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x81448ab1 shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x82612447 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x864e9717 intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8692014f __intel_context_do_pin drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x890fc889 i915_vm_release drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x8937124e i915_gem_object_alloc drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x910f9365 i915_request_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xa6f381b7 i915_request_wait drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xb23d5ef8 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xb4326126 __intel_context_do_unpin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xba653bca intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xbaaa867b shmem_pin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xbb95ad0b intel_runtime_pm_get drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xbc74874c i915_ppgtt_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xbd21b21d i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xbdca3c7d _i915_vma_move_to_active drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xc586ccf9 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xe36e517f i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xea515d7d intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xfb9655fe i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8a58c326 i915_request_wait drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x93a338c2 intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x98b8b5e7 __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xa63dbdd4 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xbc906b8e intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xbd5a3511 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc0a51143 i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc7441d7b intel_gvt_set_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdd183ed5 i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe1da8c4f intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe267aa17 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe70211be i915_gem_prime_export drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf1db9105 i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf371c614 i915_ppgtt_create drivers/gpu/drm/i915/i915 IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x60b2e814 idle_inject_register vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x85c2b7eb idle_inject_stop vmlinux @@ -28629,33 +28665,33 @@ IDLE_INJECT EXPORT_SYMBOL_GPL 0xc18575af idle_inject_set_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux -IDXD EXPORT_SYMBOL_GPL 0x36f42f9c idxd_driver_unregister drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x8ddb79dd __idxd_driver_register drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0xc8bffed7 dsa_bus_type drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0xd2a77c4b idxd_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xe33a2a8f idxd_dmaengine_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xf9d7cb60 idxd_user_drv drivers/dma/idxd/idxd -IIO_AD5592R EXPORT_SYMBOL_GPL 0x81237737 ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0xfebe8be2 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x0bcbeefc ad5686_probe drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0xef211a41 ad5686_remove drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x0d49be04 ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0xb1ebda14 ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x6915f041 ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0xbf4f22a6 ad7606_probe drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0xc9d3c9cc adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xdfa0e79b __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0e7a2b67 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x111f646a devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x27603a0a __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2f3f1599 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x52a3a05c adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5f6d155a __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6f2eced9 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x91ad97d5 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x952821ad devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x97b6f36b adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x8ca17ad3 __adis_reset drivers/iio/imu/adis_lib +IDXD EXPORT_SYMBOL_GPL 0x4152697e idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x504aa42b __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x7398c138 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x8111de84 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xcc4eba17 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xe21c1242 idxd_dmaengine_drv drivers/dma/idxd/idxd +IIO_AD5592R EXPORT_SYMBOL_GPL 0x63ea74d4 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xa7f68838 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x10d24b30 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x16ebbdf3 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x42f1e20e ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xca790aa9 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x0a6f628a ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xc3a240bd ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x105ced2d adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xc146c7f9 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2529f97b devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3d37551c devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x468cf703 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x67014f0d adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x67ff7b86 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9b0889fa __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9c2f8cc5 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xaf3717d0 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbf5c012e __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc2ecb4bc __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xf7332f5c __adis_reset drivers/iio/imu/adis_lib IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7af8ef9a adxl31x_chip_info drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core @@ -28668,57 +28704,57 @@ IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL367 EXPORT_SYMBOL_GPL 0x4e66f853 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x08d543c2 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x1728c776 adxl372_probe drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1a0abb29 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x312b6d68 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x3216958a ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x3cbf2850 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x517e4479 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x84a98d2b ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8dc100d1 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa1185396 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xdab996a4 ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xee297da3 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0xbecd651d bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0xf648704a bma400_probe drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x03886d97 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x3ecb216a bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x45672257 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x8107651a bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x08c1c51c bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x52e6b2d9 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xc78e5867 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xe0198a32 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x405dbc0c adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xb15b84c9 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xe07ee0bb adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2ad24926 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4d1302ab ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5ee90d81 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7020387d ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x83d04dca ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8a869d25 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9dd2c8b4 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb502ceba ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc65f3ddd ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xdc5ef480 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x1d84370f bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x3853928b bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x0c551d45 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x23941954 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x990465c4 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xed750638 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x58214e30 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x5aa33e4e bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7c370a48 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x9979b89a bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn IIO_BME680 EXPORT_SYMBOL 0x5651f4dd bme680_regmap_config drivers/iio/chemical/bme680_core IIO_BME680 EXPORT_SYMBOL_GPL 0x060c94b9 bme680_core_probe drivers/iio/chemical/bme680_core IIO_BMI088 EXPORT_SYMBOL_GPL 0x246fa5c3 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core IIO_BMI088 EXPORT_SYMBOL_GPL 0x405a9c57 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core IIO_BMI088 EXPORT_SYMBOL_GPL 0x5b415797 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core IIO_BMI088 EXPORT_SYMBOL_GPL 0x6f6d18d8 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x0d4b178f bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL 0x1720f155 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL_GPL 0x6ebf7911 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x3bac28ee bmp380_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x4a0282df bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x732f2730 bmp580_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x7887f036 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x7d539bb5 bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x92012d54 bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xa6a3c998 bmp280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xc36e6358 bmp580_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xd146e85c bme280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xdac2ec43 bmp180_chip_info drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x3ada5d16 bno055_probe drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0xe32d20b2 bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x3f46a3d4 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x411de59c fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xeaf23752 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x0de73384 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x2554e672 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x878a72b7 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xf4def0b5 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_BMI160 EXPORT_SYMBOL_GPL 0xc2026a71 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x0d74507d bmp280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x31487f46 bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x68b9fabd bmp580_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x711575a6 bmp180_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x7a9171b9 bme280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x907bb10b bmp380_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xaba8df17 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xd0667522 bmp580_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xdbcea224 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xde1ac9a7 bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x7bed822d bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xbceac585 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x831afcbe fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x899051c2 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xb4429355 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x4b37a519 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xb3c33e36 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xe9e931dc fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xea2157de fxls8962af_core_probe drivers/iio/accel/fxls8962af-core IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x094bee02 iio_gts_avail_scales_for_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x296bb0cd iio_gts_all_avail_scales drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x4ed89402 iio_gts_find_sel_by_gain drivers/iio/industrialio-gts-helper @@ -28732,588 +28768,588 @@ IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd4a22460 devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd7e29768 iio_gts_find_gain_sel_for_scale_using_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf42af90f iio_gts_total_gain_to_scale drivers/iio/industrialio-gts-helper -IIO_HID EXPORT_SYMBOL 0x06dd4731 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x0c635a6a hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x37b59d1f hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3a46fdb9 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7096907c hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x799f46f2 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x11d64133 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x36eeafc0 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x77750ad8 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x90fb3dd5 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xa7e45531 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xa9e0d89b hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xab4e39b7 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xcf78e3d2 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xf27c1433 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x1c7c4bda hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x75204d6d hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xbd8d6fa9 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcfcad0d5 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x87f36ba7 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x9323a30f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa581e6a6 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb6fc0a01 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xba12f153 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbbd572e0 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbd89d8a2 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xcd399cd3 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xe4d41b40 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x8fd0531b hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x9b7dc0ea hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd629ed79 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf3ec7dee hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HMC5843 EXPORT_SYMBOL 0x00189512 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core IIO_HMC5843 EXPORT_SYMBOL 0x0a3eada4 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core IIO_HMC5843 EXPORT_SYMBOL 0x79b403f8 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x3c62014e hts221_probe drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0x5d395f7c hts221_pm_ops drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x2cc8654d inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x5dd7ac4c inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x74517c32 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x5c7de00e kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0xd4eb22e2 kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x1481a172 kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x3c024273 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xab1bc6c3 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0xb12d6327 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0xc59a2081 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x019efef7 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_HTS221 EXPORT_SYMBOL 0x11d62c59 hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xd946b70f hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x9df627a0 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xc32d03ca inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xc37c45bb inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x26f4c650 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0xd2911946 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x49a72390 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xabb10507 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xad231aa8 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x2cae3f1f st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xa44ad6e9 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x106d534e ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x11088622 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x734e72a5 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8c8f763f ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd1abb727 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd26078f5 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd5dcf46f ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe000daa8 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe7bf6692 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x53791948 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x65782bc3 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x6ea3b041 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x86c7b271 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x92adf095 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x99c33b8d ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xcb30d4ba ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd28c8cca ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MMA7455 EXPORT_SYMBOL_GPL 0x568e77e3 mma7455_core_remove drivers/iio/accel/mma7455_core IIO_MMA7455 EXPORT_SYMBOL_GPL 0x7b4466ec mma7455_core_probe drivers/iio/accel/mma7455_core IIO_MMA7455 EXPORT_SYMBOL_GPL 0xc0202ea9 mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x147f8eba mma9551_app_reset drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x29db717e mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x3c7c743a mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2f238294 mma9551_write_config_words drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x58603089 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x5f43179b mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x74f6c02b mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x805af144 mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x90abb771 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x90bc0279 mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x9ff9c5b0 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x432374ac mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4fac654b mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x5caa0d30 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7a6457c6 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x83628b1f mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x843748bb mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x892d1c9b mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x9bee49e1 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbaa6020a mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbb9ea4b1 mma9551_update_config_bits drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xc0273248 mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xca403a44 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xcd05c6bc mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xe2a033c3 mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xe8426d25 mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xfa79c584 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xce6c5e1a mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xcf4a3df9 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xdb978c35 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xefdb07ee mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf5182851 mma9551_app_reset drivers/iio/accel/mma9551_core IIO_MPL115 EXPORT_SYMBOL 0x4cb8684d mpl115_dev_pm_ops drivers/iio/pressure/mpl115 IIO_MPL115 EXPORT_SYMBOL_GPL 0x09dabc60 mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x8c228864 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x8c315bc1 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x3265dd40 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xdc51575f inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xf25d45e5 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x1b36789d ms5611_probe drivers/iio/pressure/ms5611_core IIO_RESCALE EXPORT_SYMBOL_GPL 0x42d76c83 rescale_process_offset drivers/iio/afe/iio-rescale IIO_RESCALE EXPORT_SYMBOL_GPL 0xd2114132 rescale_process_scale drivers/iio/afe/iio-rescale IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0x63a9859c rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x32fe1236 scd30_probe drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0x95bacf38 scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0xe08cd3c6 sps30_probe drivers/iio/chemical/sps30 +IIO_SCD30 EXPORT_SYMBOL 0x5413622b scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x8e195d1c scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x4a7eb518 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x08a861e0 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub IIO_SSP_SENSORS EXPORT_SYMBOL 0x1cc97d12 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x6083c763 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x7e0141e7 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa43c4c23 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub IIO_SSP_SENSORS EXPORT_SYMBOL 0xa6cf85f7 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xc3967a3b ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub IIO_SSP_SENSORS EXPORT_SYMBOL 0xc3a283fb ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xec9ee88c ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_ST_SENSORS EXPORT_SYMBOL 0x00bcdae0 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_SSP_SENSORS EXPORT_SYMBOL 0xc8da4bb3 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xf26cd5ae ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xf3d34f96 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xf81240c7 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x092df5a2 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x26d7ee67 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x336a3ac1 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0x44a639c4 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x48f7d14d st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0x4b984d37 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x4d3c93f5 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x4ec7ecb8 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x555755f4 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x629a8bcb st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x6f136126 st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x70027b55 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x7199522f st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x725790c8 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x98669121 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa2026c31 st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xa466467f st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xa5fa01de st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xbcd7785e st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0xc321965f st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xd4ddc822 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xe3a35b69 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xe90e793f st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xfabdc3da st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xfd836f9a st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x0bf2c7a2 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_ST_SENSORS EXPORT_SYMBOL 0x077f6778 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x207f90a0 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x255d84af st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x39a7e194 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5e7d50fc st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5eca1cac st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6916f74a st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x6a7a75d2 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6cda1ce4 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6cfe9306 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6f72dd04 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x968bacd9 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x9bf05d2c st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xa65d3205 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xab01c22f st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb1b3089f st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbb2336e9 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbe309f18 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbfa731cb st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc8e38bd9 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xcad6cdd8 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xce76564d st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xdf5d376a st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xdf9dfd2a st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf948846b st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xff4bd5a3 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x6d9ea48c st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 IIO_UVIS25 EXPORT_SYMBOL 0x04c2a98a st_uvis25_probe drivers/iio/light/st_uvis25_core IIO_UVIS25 EXPORT_SYMBOL 0x6f79cdf8 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x14068c1e zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1e8e4eb6 zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x54faa1e3 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6f82177b zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x956363ad zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xaa322183 zpa2326_remove drivers/iio/pressure/zpa2326 -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x0a40701f processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x5f9061e5 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INTEL_IPU_BRIDGE EXPORT_SYMBOL_GPL 0x756155a6 ipu_bridge_init drivers/media/pci/intel/ipu-bridge +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0098de9b zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x2d1aec58 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6acafa58 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8f091db2 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xc29b2a79 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xd70611d8 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x8053df43 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xd7962374 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INTEL_IPU_BRIDGE EXPORT_SYMBOL_GPL 0x2562c255 ipu_bridge_init drivers/media/pci/intel/ipu-bridge INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x1a82b1a2 m10bmc_sys_read drivers/mfd/intel-m10-bmc-core INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x269b2e99 m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x5bd704ea m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x73fd35ca m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x81474e59 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core -INTEL_PMT EXPORT_SYMBOL_GPL 0x0b10b6f2 intel_pmt_dev_destroy drivers/platform/x86/intel/pmt/pmt_class -INTEL_PMT EXPORT_SYMBOL_GPL 0x6aec0abf intel_pmt_dev_create drivers/platform/x86/intel/pmt/pmt_class -INTEL_PMT EXPORT_SYMBOL_GPL 0x87b4c85a intel_pmt_is_early_client_hw drivers/platform/x86/intel/pmt/pmt_class +INTEL_PMT EXPORT_SYMBOL_GPL 0x42dec8af intel_pmt_dev_create drivers/platform/x86/intel/pmt/pmt_class +INTEL_PMT EXPORT_SYMBOL_GPL 0x8597cf38 intel_pmt_dev_destroy drivers/platform/x86/intel/pmt/pmt_class +INTEL_PMT EXPORT_SYMBOL_GPL 0x8c0ff2fe intel_pmt_is_early_client_hw drivers/platform/x86/intel/pmt/pmt_class INTEL_TCC EXPORT_SYMBOL_GPL 0x1936331f intel_tcc_set_offset vmlinux INTEL_TCC EXPORT_SYMBOL_GPL 0x8c32aa7b intel_tcc_get_offset vmlinux INTEL_TCC EXPORT_SYMBOL_GPL 0xa1186518 intel_tcc_get_tjmax vmlinux INTEL_TCC EXPORT_SYMBOL_GPL 0xcb0091dd intel_tcc_get_temp vmlinux -INTEL_TPMI EXPORT_SYMBOL_GPL 0x34837611 tpmi_get_resource_count drivers/platform/x86/intel/intel_vsec_tpmi -INTEL_TPMI EXPORT_SYMBOL_GPL 0x9b002525 tpmi_get_platform_data drivers/platform/x86/intel/intel_vsec_tpmi -INTEL_TPMI EXPORT_SYMBOL_GPL 0xf4701814 tpmi_get_resource_at_index drivers/platform/x86/intel/intel_vsec_tpmi -INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x2389a829 tpmi_sst_dev_add drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI EXPORT_SYMBOL_GPL 0x4df4badc tpmi_get_resource_at_index drivers/platform/x86/intel/intel_vsec_tpmi +INTEL_TPMI EXPORT_SYMBOL_GPL 0x98734c22 tpmi_get_resource_count drivers/platform/x86/intel/intel_vsec_tpmi +INTEL_TPMI EXPORT_SYMBOL_GPL 0xefc592c0 tpmi_get_platform_data drivers/platform/x86/intel/intel_vsec_tpmi +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x43b416a2 tpmi_sst_dev_resume drivers/platform/x86/intel/speed_select_if/isst_tpmi_core INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x45083054 tpmi_sst_init drivers/platform/x86/intel/speed_select_if/isst_tpmi_core -INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x60223265 tpmi_sst_dev_suspend drivers/platform/x86/intel/speed_select_if/isst_tpmi_core INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x98bbc7d5 tpmi_sst_exit drivers/platform/x86/intel/speed_select_if/isst_tpmi_core -INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0xcb48c317 tpmi_sst_dev_resume drivers/platform/x86/intel/speed_select_if/isst_tpmi_core -INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0xfdd547ca tpmi_sst_dev_remove drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x99e51925 tpmi_sst_dev_suspend drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0xb8e71b7b tpmi_sst_dev_add drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0xf443622c tpmi_sst_dev_remove drivers/platform/x86/intel/speed_select_if/isst_tpmi_core INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x9db41408 uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x9e865098 uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xbf3d935d uncore_freq_common_exit drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xcd9bfc52 uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common -INTEL_VSEC EXPORT_SYMBOL_GPL 0x32ae5de2 intel_vsec_add_aux drivers/platform/x86/intel/intel_vsec -IOMMUFD EXPORT_SYMBOL_GPL 0x062c0905 iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x1243c240 iommufd_device_unbind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x139c5539 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x3b456bd6 iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x5ed68489 iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x68e045e6 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x79aaba7d iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x90e69181 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x951756bb iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xd73b4443 iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xdf602152 iommufd_access_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xfb9ee670 iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xff9f0b7d iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x1e8d3097 iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x55dfa083 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x8509baf1 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x03dbfe22 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x041f1324 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x06f79465 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0b05e1f3 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x119c31e3 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +INTEL_VSEC EXPORT_SYMBOL_GPL 0xb68bae66 intel_vsec_add_aux drivers/platform/x86/intel/intel_vsec +IOMMUFD EXPORT_SYMBOL_GPL 0x004dc36a iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x03de2e04 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x0a437f2b iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2521ddbd iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x68ab9424 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6d6b2a75 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7fdba7ed iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x932dec76 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x97f84f9f iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xa0800970 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xad80ca3c iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xc25e7380 iommufd_access_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd9018fe6 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x01a8e0d1 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x9e1a7da9 iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xa32a8361 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x012276fa iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0394c7a2 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x05b75526 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x077adda5 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x09230915 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x09bfd58b iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0aebbafc __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0eccdaa5 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x105808f6 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x147c6458 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x14a18d8f iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x169305bf iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x173800a8 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1cd73c41 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2093de45 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x22f435ad iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x254255a0 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ee1b520 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1f4fd2c3 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2491cd3b iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x281dca9f iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2a60810d iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2c699a71 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2df5af33 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2f482f09 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2b2016e0 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2b85a642 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x30bbf824 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x347c0d68 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x355ba0d7 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x369e6751 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3a201b69 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x401fba69 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x430a42ee iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x434067c6 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x487a0791 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b5dca25 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x413d5312 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4306e259 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x433ef93c iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x43467921 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x582df7cb iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49fd0159 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4e596a70 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5bde621a iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5dfcc305 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5edeabf9 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5fba0117 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x60c7f7dd iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x61653751 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x62098b80 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x624ba532 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x69d1a380 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6cfb6523 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x706b627c iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x756b5aa2 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5cdf4c0a iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5d16933e iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6302b998 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x63c47e65 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x667f53eb iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x68aa2404 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a5bb490 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a981061 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e042251 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x71a5a325 iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72341f2b __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x73b492e8 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x77fdd622 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x77c63323 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x77d8f9d0 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7b0646b5 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7cfb626c iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7fff3449 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x81b760d3 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x79cd5c1a iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7a246f65 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x80da26fc iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x816d730e iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x83b320f9 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84270a5d iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x86bb8885 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84e5b95f iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x86611a32 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x87c0ba7e iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8ce6166f iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8f280600 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8936356b iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8bbcf94d iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9c0813bb iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9cafaa15 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9db2fe70 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9deb94f7 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa6eb9a9f iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa7387ba2 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa8196e3a iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa85b0431 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb016c205 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9176f4b2 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9dea5d8f iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9ec028db iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9ecec9c5 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa3464dad iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa3ffa144 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa4a3a3df iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa820e24c iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaca4ed65 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xafbdb2b6 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb5fba262 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb71cb8aa iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb744d7c1 iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb69b15aa iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb96cc6c9 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc2cdee31 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc4ad5180 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc66235de iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xca324952 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcd83d039 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbcbf67dd iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbea47b34 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbf9ee3cc iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc580d34b iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc88ab8a0 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcc74d2ec iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce08f953 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcfc6486b iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd45c3dc9 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd5abd380 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdcdbabc2 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd9b17f9f iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdb80d5f3 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0da2659 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe13eb1ab __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe28e4946 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe49bb42f iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe7eb51de iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe97babb9 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe868825a iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xedf456f9 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf0e794e3 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf6f4a0f6 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf702ac00 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xebab06ea iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xece1270f iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeeb2517e iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf4107c37 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfa4931d9 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x1ddaabdb ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xaab3dbb7 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x0e35be6e chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x0ed98e0b mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3c850dec mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x41bdf96f mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6e4f6909 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x893f98f1 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x991b4cf6 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9d1f39bc mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xafef892d mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb5e368c5 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdb899b21 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xddc3f2e6 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xde268c6c mcb_bus_add_devices drivers/mcb/mcb +LTC2497 EXPORT_SYMBOL 0x4e747d5e ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xb52e235b ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x17170630 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1a35e6bf mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x35311e0c mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7262dbe1 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x857beed2 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9864bdc7 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9af609c3 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa3041759 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa3259376 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xac28b3e4 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb131ceb6 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbda0300d mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc5b2589c __mcb_register_driver drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xef747083 __mcb_register_driver drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x3317351b ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x8b5428e1 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0x19f87e2a ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NET_MANA EXPORT_SYMBOL 0x1271e605 mana_cfg_vport drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0x33e00b63 mana_uncfg_vport drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0xd801f2a3 mana_create_wq_obj drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0xdf2376be mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0xeebee82c mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0xf4448fdb mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x10dd33c5 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x301c6e94 nvme_execute_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3d8390b2 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x695d97b9 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7ce8bf67 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe4fd5321 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf70f4c06 nvme_passthru_start drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x09cd57ee peci_request_data_readq drivers/peci/peci +MCB EXPORT_SYMBOL_GPL 0xff6617c8 chameleon_parse_cells drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0xb7e65c41 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xfa9f7b96 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xe69c584f ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NET_MANA EXPORT_SYMBOL 0x170bf414 mana_uncfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x1c2606d9 mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x673505d4 mana_create_wq_obj drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0xa1bcff45 mana_cfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0xc936c5ad mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0xd0df3e98 mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x10760237 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x190479c2 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4960abe9 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4d71389f nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5fcec6bd nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x62dbd56a nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9929a1bc nvme_ctrl_from_file drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0881fc15 peci_xfer_ep_pci_cfg_readw drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0x0ff57fe2 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x12b783bf peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x225fe0e3 peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x25681f15 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2bb68d20 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x101464da peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2133dab2 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2ba65daa peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2d065d4e peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2d860b3b peci_xfer_ep_mmio32_readl drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0x2e90b541 peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x30551504 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x3c844650 peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x44c9167a peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4ad9e745 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x54ee21ae peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x591982fd peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x632a8cf5 peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x66695c48 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x68b7ce7d peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8e03ca15 peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb3fa2738 peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb5d9c27c peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb633a46d peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb98fe02d peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2eeaf8bf peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3676c92d peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x40ad6035 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x47fd8814 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4b80bf48 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4fd1afec peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x570af97a peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x593d7f89 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x87b91599 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x90fc57c3 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x94466967 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa9d6c71d peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb8f7933f peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbc5dbc77 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbecd9b3e peci_request_data_readl drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0xc48913c9 devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd2f271a5 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xda0513e9 peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf30e3937 peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf6b4e9b1 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xfbec7505 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xff629c24 peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xff931c13 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc4b856c4 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd6059605 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdb7d60fb peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xea81e4c9 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xed6cce0c peci_request_dib_read drivers/peci/peci PECI_CPU EXPORT_SYMBOL_GPL 0x587cae48 peci_pci_local_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0xa72567a0 peci_mmio_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0xce95bbb5 peci_temp_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0xe37346c5 peci_pcs_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0xfcad42bf peci_ep_pci_local_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x2baf81d8 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3b4c8031 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3f9d356c pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4f99431c pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5bb4912b pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5f0ed8e4 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6bd38c19 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x79939b98 pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x83626f53 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8635da31 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x96cae235 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb98628c8 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc72570af pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc87b8a1a pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc9af981a pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd2e77a0b pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xda7076d6 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe86f5d35 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf4a7e6bf pmbus_unlock drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfe6e01a4 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xff634aaa pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x10c64625 sx_common_probe drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x45f49d8a sx_common_read_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x969896a8 sx_common_get_raw_register_config drivers/iio/proximity/sx_common +PMBUS EXPORT_SYMBOL_GPL 0x01390a6d pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x09e7145c pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x16e27255 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x210c8b16 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x22c88e27 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2d477d1d pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4d2ed286 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5a1f645a pmbus_unlock drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5c6f4189 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6311cde1 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x65638cf3 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7b6bae37 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7de2277f pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x842881d9 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9e095931 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa03dd650 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc298b9d4 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc5c9f153 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcf0e4057 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xecb5b52d pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf0041b26 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x536de06a sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x8d1c0cfb sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x9f7176b6 sx_common_get_raw_register_config drivers/iio/proximity/sx_common SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xcbdde32e sx_common_read_proximity drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xe06469bc sx_common_write_event_config drivers/iio/proximity/sx_common -SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x4a370358 serial8250_pci_setup_port vmlinux -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x177c91e3 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd8e52861 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xfa050e38 sx_common_probe drivers/iio/proximity/sx_common +SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x9db51bab serial8250_pci_setup_port vmlinux SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x36646d71 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xb03296e3 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xd5c6b77e hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x22e3e554 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x2bea3b61 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x31d87941 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x653fd6a0 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xa50d05d8 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xe39345d6 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xf29a2447 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x3f927c3c cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x88b42117 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xb7585018 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x3d965b1a acp_machine_select sound/soc/amd/acp/snd-acp-pcm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x51a65b05 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x7075cc90 asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x8bf84750 asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xaa5e7f85 acp_platform_register sound/soc/amd/acp/snd-acp-pcm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xd72f0a09 acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm -SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x41d18cf6 acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach -SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xcf1c0b67 acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x0b6c0ca6 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x265f8c40 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x0c971d21 acp_machine_select sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x6068efa9 asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x9acd78f6 acp_platform_register sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xe621472d acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xfa875ac7 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xfe9dcd4f asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x335b1d7c acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x77a29d52 acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x247c2a63 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x263f471f cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x4854cdea cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x4a48c268 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x6cbe7730 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xba3b8bb3 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xbdbd83aa cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xe6f2c024 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xf680c140 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xfe8542e6 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x05482545 cs35l56_irq sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x08a3aa08 cs35l56_init sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x214efc1a cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x39657e4c cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x54404063 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x671a7d79 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x69b2b8fb cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xacb795d2 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x0f3b84a5 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x173e5a00 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x20af14ce cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x7f22bb8c cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xb07d29fd cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xcf346847 cs35l56_init sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xda355775 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x025a141e cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x05c2529e cs35l56_tx_input_values sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x312c0e0f cs35l56_dsp1_regions sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x4d53d9d9 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x4e6199b5 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x64e759e4 cs35l56_tx_input_texts sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x823dedaa cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x7b6126b2 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x88762c92 cs35l56_get_bclk_freq_id sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xb40f12c1 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xc84353d2 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcd5438ad cs35l56_fill_supply_names sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xfb06df06 cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x07f35bd6 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x134bd225 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x263f9bdd cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x26c9dcc3 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2f0b76ee cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3b379247 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4d971484 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5ee54081 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6a486995 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6f3caadd cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7bb91682 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x124ea8bb cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x1bd395d7 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x22f3fd75 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x235ccc58 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5c7a7fde cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x70f0d150 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x71079d64 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7357842f cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x81f0bad8 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x91e86d18 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x95005930 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae4be5c4 cs42l42_irq_thread sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb23305c4 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd331654d cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf8f76a20 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0xc49efa2c hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common -SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x52ee1166 cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common -SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0xd26519a6 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x0491c0c8 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1736f360 max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x506e6f6d max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x52b093f8 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x5d6b0cca max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x62232312 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x797d8788 max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8673fc6f max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xad983eae max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc1b150ed max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc37792d4 max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd42051be max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe806f9f1 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x02293992 sof_rt1019p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x099f2b6c sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x17ed096e sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x3037fe16 sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x3c20defa sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x48d8cc18 sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xa068b341 sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xa25c496c sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x1e63eaa4 sof_acpi_pm sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x2b987cf0 sof_acpi_remove sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x753358e4 sof_acpi_probe sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x04ff07c1 acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x08c3b1c3 sof_rembrandt_ops sound/soc/sof/amd/snd-sof-amd-rembrandt -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x134f6917 acp_set_stream_data_offset sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x1bc05364 acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x21582ba7 acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x35e2b68b acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc24639e8 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd115e4de cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xfe0dd5a7 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x95448997 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x6efaba1f cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x7a55c483 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x34b7909e max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x3687ec3a max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x5bc98a01 max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x5cf63099 max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x75115c27 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x77a0d8d5 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8c2921f4 max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x9b28242d max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb4afeeb2 max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb697868b max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb7b53361 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xda0366ad max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xee63d58a max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x232ec523 sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x23c1d524 sof_rt1019p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x266f3eb1 sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x55cabee2 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x85e7f5f2 sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xd6120187 sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xecff33bf sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xf9c90be0 sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x1e5c74df sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x5ba7f55e sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x5f92ccd6 sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x084952b6 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x0ac6ea96 acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x24edb5a3 amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x252a4e2c amd_sof_acp_resume sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x33a4d48f acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x35fb27dd acp_sof_ipc_irq_thread sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x43f443f0 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x53c40379 acp_sof_ipc_get_window_offset sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x56806b5b acp_pcm_pointer sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5721201c acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x61262c78 acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x61e558a5 sof_renoir_ops sound/soc/sof/amd/snd-sof-amd-renoir -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x75d7222e acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x77ea070b acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x8d54194c amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x98abf2e8 acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x9922e616 acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc57d0ea7 amd_sof_acp_suspend sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc9f42280 acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xcdc807cf acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xd96f74b2 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xdd3c7c67 acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe7b4362f acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xeaca0119 acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xf2109428 amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xf2cb39e3 acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xf2f58bd8 amd_sof_acp_resume sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xf87e8fdb sof_acp_common_ops sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x0d322813 sof_client_core_module_get sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x15945e08 sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x23707600 sof_client_ipc_tx_message sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3370855a sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x33a4f774 sof_suspend_clients sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x43223f9b sof_client_get_fw_state sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4580e915 sof_client_register_fw_state_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x5a6ed5cd sof_client_ipc4_find_module sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x761db1f8 sof_client_dev_unregister sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7636c2cd sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x802f56f0 sof_client_dev_register sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x8a085968 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa218ff0d sof_client_ipc_rx_message sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xc1dfb7df sof_client_get_fw_version sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xcacf1f9e sof_client_get_dma_dev sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe51b7702 sof_client_ipc_set_get_data sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe6fe8aae sof_client_get_ipc_type sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe90f36b4 sof_resume_clients sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf7dafc90 sof_client_get_debugfs_root sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf8ffd378 sof_client_core_module_put sound/soc/sof/snd-sof -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x0eb282dd hda_codec_set_codec_wakeup sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x16742386 hda_codec_resume_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x177fcbdb hda_codec_detect_mask sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x1a146899 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x1b2f2175 hda_codec_rirb_status_clear sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x260ed20e hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x49740ede hda_codec_check_rirb_status sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x4ca10e79 hda_codec_check_for_state_change sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x5849b7a0 hda_codec_suspend_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x647ff3ef hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xb5f9b324 hda_codec_init_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xd1eb9d5a hda_codec_stop_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xe9ac428e hda_codec_device_remove sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x00e83f95 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xbc858492 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xc53d2e6d hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x0414ea4e hda_bus_ml_put_all sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x12989ac2 hdac_bus_eml_enable_offload sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x129c0494 hdac_bus_eml_sdw_check_cmdsync_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x17675a2a hdac_bus_eml_power_down sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x211342ea hdac_bus_eml_ssp_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x26a3482b hda_bus_ml_reset_losidv sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x27a75cc5 hdac_bus_eml_check_cmdsync_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x3bcdfe85 hdac_bus_eml_sdw_sync_go_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x3d39c547 hdac_bus_eml_sdw_power_down_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x494d9445 hda_bus_ml_suspend sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x4d376a78 hda_bus_ml_resume sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x57b0b79f hdac_bus_eml_power_down_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x595f0d4c hdac_bus_eml_dmic_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x63f99a9f hdac_bus_eml_get_mutex sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x6448cfde hdac_bus_eml_wait_syncpu_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x6485cf9d hdac_bus_eml_check_interrupt sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x7c5cb582 hdac_bus_eml_sdw_set_lsdiid sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x922fdc98 hdac_bus_eml_sdw_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x925310d9 hdac_bus_eml_get_count sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x9441b66f hdac_bus_eml_power_up_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xb4de5490 hdac_bus_eml_sdw_wait_syncpu_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xc0861361 hdac_bus_eml_sdw_sync_arm_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xc6f96906 hdac_bus_eml_sdw_power_up_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xd41d6c41 hda_bus_ml_init sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xd4208656 hdac_bus_eml_set_syncprd_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xdd553a32 hdac_bus_eml_sync_go_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xe0e2c18e hdac_bus_eml_sdw_map_stream_ch sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xe5a3b5b3 hdac_bus_eml_sdw_set_syncprd_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xf7704cab hdac_bus_eml_enable_interrupt sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xf81a3821 hda_bus_ml_free sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xf9e1e953 hdac_bus_eml_power_up sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xfa8f7817 hdac_bus_eml_sync_arm_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x03245a16 atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x48ee94d0 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5c25524a acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x6a337cee acp_pcm_pointer sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x6a956ad1 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x6f6050e5 acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7aa7200f acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7fe9e438 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x8105acd2 sof_rembrandt_ops sound/soc/sof/amd/snd-sof-amd-rembrandt +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x8b335313 acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x92476934 sof_acp_common_ops sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x9a6f43ef acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x9e10e4dd acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb08a7f18 amd_sof_acp_suspend sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb890ae60 acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xbac12e97 amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc1647fd1 acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc2bed84b acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc88d0dbd acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xcf7bef23 acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xdec72364 sof_renoir_ops sound/soc/sof/amd/snd-sof-amd-renoir +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xea2c317f acp_sof_ipc_get_window_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xeaf41e3a acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xefdecc60 acp_set_stream_data_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3b91dcff sof_client_dev_register sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x41c8b43d sof_client_get_dma_dev sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4651c478 sof_suspend_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x6274b442 sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7b088e45 sof_client_core_module_put sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7bd8aa30 sof_client_ipc_tx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x8163aa82 sof_client_get_debugfs_root sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x829c2f91 sof_client_get_fw_version sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x83a9b7e5 sof_resume_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x903d3ec2 sof_client_ipc4_find_module sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa426b74b sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xabcc066d sof_client_get_ipc_type sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xac4ef2c9 sof_client_get_fw_state sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xaecff6a3 sof_client_dev_unregister sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xb1689f73 sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xcd1ab9f0 sof_client_core_module_get sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd7b540c7 sof_client_ipc_set_get_data sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xdcff8c04 sof_client_ipc_rx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xef50740a sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf6337320 sof_client_register_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x17838aae hda_codec_resume_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x443d818b hda_codec_set_codec_wakeup sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x47ace739 hda_codec_device_remove sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x60a497b5 hda_codec_stop_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x6f179cad hda_codec_detect_mask sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x7a07a297 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x82e477d8 hda_codec_suspend_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x83c0e532 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xb58f3ca4 hda_codec_init_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xd8447d5c hda_codec_check_rirb_status sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xd846c817 hda_codec_check_for_state_change sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xf847f22b hda_codec_rirb_status_clear sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xfa38f7ff hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x9630c79f hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xe54fb2ac hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xf3f99983 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x05a1511e hdac_bus_eml_sync_go_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x06ec3e32 hdac_bus_eml_sdw_sync_arm_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x09a68172 hdac_bus_eml_wait_syncpu_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x0b760814 hdac_bus_eml_check_interrupt sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x0dfd9649 hdac_bus_eml_set_syncprd_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x18575e1a hdac_bus_eml_sdw_sync_go_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x18af125e hdac_bus_eml_power_down_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x190a4371 hdac_bus_eml_enable_offload sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x1bfb83e4 hdac_bus_eml_power_up sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x27fdcb60 hdac_bus_eml_ssp_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x2f5303e9 hda_bus_ml_resume sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x329d6d29 hdac_bus_eml_power_up_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x44a0ae65 hdac_bus_eml_sync_arm_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x543489fb hdac_bus_eml_dmic_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x73490055 hdac_bus_eml_sdw_power_up_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x7b0f1333 hda_bus_ml_put_all sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x8267eed0 hdac_bus_eml_power_down sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x8500d0bb hda_bus_ml_reset_losidv sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x85bb04b2 hdac_bus_eml_check_cmdsync_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x94c15512 hdac_bus_eml_sdw_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x99365263 hdac_bus_eml_sdw_set_lsdiid sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x99b8ae25 hdac_bus_eml_get_mutex sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x9a88c3d1 hdac_bus_eml_sdw_set_syncprd_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xabcb6c4e hdac_bus_eml_get_count sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xc0149f33 hdac_bus_eml_sdw_map_stream_ch sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xccbcb311 hda_bus_ml_init sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xd4a06719 hdac_bus_eml_sdw_power_down_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xd7fe21e7 hdac_bus_eml_sdw_wait_syncpu_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xd98cf199 hdac_bus_eml_enable_interrupt sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xdcf092c9 hda_bus_ml_free sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xe3dd8b6f hdac_bus_eml_sdw_check_cmdsync_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xff656938 hda_bus_ml_suspend sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x12026113 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x3503e0b1 atom_irq_thread sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x7466b3cf atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x7ebd0c4c atom_run sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x84b74b9f atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x87254604 atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xbb9483cf atom_reset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe7bc86dc atom_dai sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xee439b79 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x6f0c6d03 atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9fd406fd atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xac042b65 atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xd0b0f142 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xd34124f2 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe2ee7c42 atom_run sound/soc/sof/intel/snd-sof-intel-atom SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xf402d970 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0cecb44c apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x174af1e3 hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x278946cf tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3678606e icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x40798cfc sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x76dc93b0 sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7b6666a9 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7cf82962 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x81c9de31 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x85d5812c sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xae82ed4e jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xaecd4fc4 sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xba0b1277 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbdc1e6ed sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbe422654 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc2a9c00e skl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc84c6bb9 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xcc13c7ed mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xed44fba6 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf1bd825f sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf3ffd4aa cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf84b913e sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xfb444ee0 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xfeb5fb4f sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x03caae71 sof_pci_shutdown sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x64b61383 sof_pci_probe sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x8c41a116 sof_pci_remove sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xd07b298c sof_pci_pm sound/soc/sof/snd-sof-pci -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x0986f6d8 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xf7591263 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xfbcbbefc atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x03e231ee sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0c50dee7 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x15115d7d sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1a9ff6a3 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1c9dd072 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2e010a07 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3df00aee sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x41e0e996 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4406b81f sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4b878697 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4e6352e7 sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x5619431a skl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x5a76a036 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x711352b5 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7a5e930a adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x807a5671 sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x86bba819 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9f8760f4 sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa0d30fad sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xabd297e1 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe389b504 sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xed395dce hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf45cd25e hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xfa76e753 mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x25273b27 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x9e32e469 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x9ffeaddb sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xfb9fbcec sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xf47c88f6 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x09351149 tasdevice_prmg_calibdata_load sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1a949c7c tasdevice_select_cfg_blk sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1ab9b7d9 tasdevice_select_tuningprm_cfg sound/soc/codecs/snd-soc-tas2781-fmwlib @@ -29327,44 +29363,44 @@ -SOUNDWIRE_INTEL EXPORT_SYMBOL 0x4cc7918b sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL EXPORT_SYMBOL 0xdf3f654d sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x50fe503f sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x64a948a4 sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x92d2a926 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x3fe4a00c sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0xac1c54ca sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x36be73b8 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x6948c030 sdw_intel_startup drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xcae0a86b sdw_intel_probe drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x07c332eb dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1878f905 dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x19261a72 dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x35676501 dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x63a601c6 dw_spi_dma_setup_generic drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x875c6bac dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xac30451b dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb995fa63 dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xea11dbcd dw_spi_check_status drivers/spi/spi-dw +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xbaacd22a sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xf3b8436e sdw_intel_probe drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0b70c810 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x41fd137b dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x497672df dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6c79e068 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x760463d0 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7f40898a dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8c2ab2bc dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa04d70df dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd223cfd6 dw_spi_check_status drivers/spi/spi-dw TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9d8a8803 efi_embedded_fw_list vmlinux TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9dd8d0e2 efi_embedded_fw_checked vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x0435124f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x09fc24b7 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x00904326 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x12b03011 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x17d55174 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1ae474d1 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1b2ce8c7 usb_stor_post_reset drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x20adf5d1 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2abc3aa7 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2fa82c3b usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3a83b3c1 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3b636760 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3f7b5752 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x44cb81cd usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4d532a17 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4db68807 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x621c9e49 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6ba44e23 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6c9568e4 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x74c9f816 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x89ebd36d usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa5f80a2a usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc5f5a0f4 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc9f270c2 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd33c1dc0 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdf0aa04b usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf117b9f8 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf2627bbd usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf31b40ca usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1e420072 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2a84c330 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x37dbf370 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x392eb637 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3e24e04f usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x565c1c01 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5cb7b479 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9dde95d6 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb5aee98b usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbcf50c22 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc8c0825d usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcba28384 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd2beb38e usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd5438c24 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe5083a9e usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xec02f17f usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xef5c704f usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfbd9d05d fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfd119fa7 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage diff -u linux-oracle-6.5-6.5.0/debian.master/abi/amd64/generic.modules linux-oracle-6.5-6.5.0/debian.master/abi/amd64/generic.modules --- linux-oracle-6.5-6.5.0/debian.master/abi/amd64/generic.modules +++ linux-oracle-6.5-6.5.0/debian.master/abi/amd64/generic.modules @@ -215,6 +215,8 @@ adl_pci6208 adl_pci7x3x adl_pci8164 +adl_pci9111 +adl_pci9118 adm1025 adm1026 adm1029 @@ -236,6 +238,7 @@ adp5589-keys adp8860_bl adp8870_bl +adq12b adrf6780 ads7828 ads7846 @@ -262,10 +265,12 @@ adv7511-v4l2 adv7604 adv7842 +adv_pci1710 adv_pci1720 adv_pci1723 adv_pci1724 adv_pci1760 +adv_pci_dio adv_swbutton advansys advantech_ec_wdt @@ -310,6 +315,8 @@ aic79xx aic7xxx aic94xx +aio_aio12_8 +aio_iiro_16 aiptek aircable airo @@ -363,7 +370,14 @@ amdxcp amilo-rfkill amlogic-gxl-crypto +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 amplc_pci236 amplc_pci263 ams-iaq-core @@ -690,6 +704,7 @@ budget-patch c2port-duramar2150 c67x00 +c6xdigio c_can c_can_pci c_can_platform @@ -729,8 +744,11 @@ cavium_ptp cb710 cb710-mmc +cb_das16_cs +cb_pcidas cb_pcidas64 cb_pcidda +cb_pcimdas cb_pcimdda cc10001_adc cc2520 @@ -850,9 +868,11 @@ com90io com90xx comedi +comedi_8254 comedi_8255 comedi_bond comedi_example_test +comedi_isadma comedi_parport comedi_pci comedi_pcmcia @@ -1027,7 +1047,17 @@ da9150-gpadc da9210-regulator da9211-regulator +dac02 daqboard2000 +das08 +das08_cs +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 davicom dax_cxl dax_hmem @@ -1132,6 +1162,7 @@ dme1737 dmfe dmi-sysfs +dmm32at dmx3191d dnet dp83640 @@ -1182,6 +1213,12 @@ dst dst_ca dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x dt3000 dt3155 dt9812 @@ -1470,6 +1507,7 @@ fit3 fixed fjes +fl512 floppy fm10k fm801-gp @@ -2114,6 +2152,7 @@ igen6_edac igorplugusb iguanair +ii_pci20kc iio-mux iio-rescale iio-trig-hrtimer @@ -2980,6 +3019,7 @@ mdio-mvusb mdio-regmap mdio-thunder +me4000 me_daq mediatek-ge megaraid @@ -3090,6 +3130,7 @@ mp2975 mp5023 mp8859 +mpc624 mpi3mr mpl115 mpl115_i2c @@ -3214,6 +3255,7 @@ mtk_t7xx mtouch multipath +multiq3 musb_hdrc mux-adg792a mux-adgs1408 @@ -3411,8 +3453,17 @@ 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 @@ -3696,10 +3747,22 @@ 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 @@ -4332,6 +4395,9 @@ rtc-wm831x rtc-wm8350 rtc-x1205 +rtd520 +rti800 +rti802 rtl2830 rtl2832 rtl2832_sdr @@ -4414,6 +4480,7 @@ s3fwrn5 s3fwrn5_i2c s3fwrn82_uart +s526 s5c73m3 s5h1409 s5h1411 diff -u linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic --- linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic +++ linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic @@ -1,145 +1,145 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x19580ef8 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0x4d581b9b brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x4ac5c8b2 counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x540df6cf counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x56c5d15a devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x62970fce counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x7173f6a7 counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x952f3042 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xd4b54d06 counter_put drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xf294361f counter_add drivers/counter/counter -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x07ee12ef otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0a637c35 otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x1666051b cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x21996d3e otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x39247588 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x580ff204 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x6673b05c otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x68c9fd4a otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x70576045 otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7d01a9fd otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7d59d222 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x857e139e otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x994473f1 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xde7b6f7c otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe0b359a2 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xedc994bc otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf55a7a5a otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x551037d2 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9801e1ab crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xc93ff2bb crypto_cipher_encrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x003e6a7f is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x010ca0a4 devm_cxl_dpa_reserve drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x012a555f devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x01e9818b clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +BRCMFMAC EXPORT_SYMBOL_GPL 0x11e2174c brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x5f643adb brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x17cfefef counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x5c245402 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x6513000f devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x68118967 counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7fcaffc5 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xb9dc7865 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xe034dbbe counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf9a32b10 counter_push_event drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x15aa17d4 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x19c1e14e cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x1aaaad19 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x1d311912 otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5fbdcca8 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8091f532 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x889dce1d otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8d57b4f1 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x9a3bd182 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb92c5391 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb93f966f otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xc06dc771 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xca172dec otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xcdd53dcd otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe374ad4b otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe662a445 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf08bdda5 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5444944c crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x6fb572df crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x85efc7c3 crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x0123c797 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x01af2898 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x03a57451 is_cxl_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x09e9faaf cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0be83968 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0cc71c65 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x140de0c8 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x149411ce to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1a800530 read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1c94f965 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x22e1f44f is_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x248ee3de devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x27fd951a cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x287d3d72 cxl_trigger_poison_list drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x28caffae devm_cxl_pmu_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x294f68bd to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2d9800de cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2ef13880 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2f129f69 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x063b1342 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x08d46774 devm_cxl_dpa_reserve drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x09959dcf devm_cxl_pmu_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0a63b50c cxl_mem_get_event_records drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0b92242e cxl_mem_get_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0bebfb4d cxl_trigger_poison_list drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x10976893 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x13575608 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x138f6cca set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x19ed5471 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1fdcd418 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2007d93f cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x214b4d3a devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x227ce507 cxl_set_timestamp drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x25748afc cxl_map_pmu_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x260c24bc devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x280b7f8d cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2936d21a devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31dcb0b3 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3253fd7f cxl_poison_state_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x325eec56 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33653564 cxl_mem_find_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x3400225e to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3409ad8c cxl_set_timestamp drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x39d39bdd cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3b1b5762 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3d0b6d9d cxl_add_to_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x43b72713 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4c83c65d cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4c8c16dc set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x535ff6c2 to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x55b591c8 cxl_pci_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x58cb495d cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5934b871 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5bdb3793 to_cxl_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5e375a05 cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5e6aa488 cxl_map_pmu_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x609fb850 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x62f12585 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x63b10ef4 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6605f0df devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6619a8b8 cxl_clear_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x674b6509 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x699082cb cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6cf468b0 to_cxl_dax_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6d376036 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6e96403a find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6f01d03e devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x37c91365 cxl_clear_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x40ff87aa to_cxl_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x43800d78 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x485b0a89 is_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4e4248f1 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4e540f67 to_cxl_dax_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4f8a4664 cxl_find_regblock_instance drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x510ba7c5 cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x52889449 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5332cf0b to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59ed3573 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5de20edb cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5f06bbac cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x653904b2 is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x684b076f find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6c90c168 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6d8f7f45 cxl_dev_state_identify drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7635fd09 cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7a3ef56e is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x711315d4 cxl_mem_sanitize drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73220980 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x770c61a6 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7e72ae4d devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x7fb8597a cxl_poison_state_init drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x85c323f5 cxl_mem_get_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8686f142 to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8756941f cxl_mem_sanitize drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x875e233e cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x87bd3322 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x893f735e devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x912ebd69 cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x92cf437f cxl_count_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x98433147 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x85721be1 cxl_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x866ae1d8 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x87d237bc cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8ee05cf4 cxl_setup_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x927da379 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x927e4ead to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x93121421 cxl_memdev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x97136e5c devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9e181280 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa0e411b8 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa8afa9cf cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xad9bb504 cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb0a1e6db cxl_setup_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb1247ddd cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb2e023e3 is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb9b2888a cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xba3219a2 cxl_inject_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbb1f0f66 is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbf4ba3b1 cxl_find_regblock_instance drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc0a926e5 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcd6026d2 cxl_memdev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd18ffae5 cxl_cor_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdf8394aa devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe06b20cb cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xea7738ed schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xec4d2ef0 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xedc667c3 cxl_mem_get_event_records drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xee311f2f cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf3cf105e is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf4e66094 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf736e0ca cxl_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf8eb5275 cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfe475bc1 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xff5d0ff7 cxl_dev_state_identify drivers/cxl/core/cxl_core -DMA_BUF EXPORT_SYMBOL_GPL 0x01a02713 dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0503938e dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0555fbc4 dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0cd03873 dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x18a83317 dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x20144222 dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x411a4c4e dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x4eb4d03b dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x52ba28d9 dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x5a0b50e3 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x6f7268d7 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x93a7ed46 dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9b06e596 dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xa159312c dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xb721986d dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbc19e4fc dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbfdf2c31 dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd113870f dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd7a3fa4c dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xeb185be1 dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xfb6c9bd4 dma_buf_vunmap_unlocked vmlinux +CXL EXPORT_SYMBOL_GPL 0x9bdbb7fd clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9edb9df5 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa3bde5a6 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaa1c7c79 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xabbf1230 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xac36ca12 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf1eb3a9 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb411fa8d cxl_cor_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb424c4e6 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb63e32ac devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb65f2029 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc01a76a3 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc1cd861d to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc5ac058f cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc7df3534 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd2d1cd77 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd639bf2b is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd9d92144 cxl_count_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd9f4879f __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdcc804b5 cxl_pci_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xde3d9aff devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe4807d15 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe4e73e15 cxl_inject_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xebf3beec cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xef380245 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf16287cc cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf7859af7 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfbcbb64d cxl_add_to_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfbff7a74 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfd38dfbe cxl_decoder_add_locked drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0291038b dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1275d912 dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1cf64451 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x208f41cd dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x20f7270a dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x286d2864 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2c7620ad dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x308a7273 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3e6a8857 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4cb25896 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5cbfa656 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5d6fca28 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x668ec9e4 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7834ac11 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7cd5072e dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8db890a8 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x953af018 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9fa1807e dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb131701e dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc8a0a7db dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe7db7696 dma_buf_end_cpu_access vmlinux DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux @@ -150,7 +150,7 @@ EFIVAR EXPORT_SYMBOL_GPL 0xee5240dc efivar_query_variable_info vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x7c294e42 ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xcec2657b ce_aes_setkey EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xb8c706a6 neon_aes_ctr_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt @@ -189,39 +189,41 @@ EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x05166712 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x1709be86 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x7364f0ec crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x745dee24 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x93524767 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xda9526b2 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x195ce613 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x5c61a631 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x5dcd90bc crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x8ba85ab6 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x90aea09a crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xd7a7d928 crypto_nhpoly1305_update_helper EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x2c982f0a acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses EXPORT_SYMBOL drivers/acpi/video 0x7de7bf50 __acpi_video_get_backlight_type EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xa73b3c09 acpi_video_get_edid -EXPORT_SYMBOL drivers/atm/suni 0xfd205fa5 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x136817c9 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x6d50fc29 bcma_core_irq +EXPORT_SYMBOL drivers/acpi/video 0xb8ab0f09 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0xd9655fe7 acpi_video_get_levels +EXPORT_SYMBOL drivers/atm/suni 0xfa390455 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x82610cc2 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x93a83ac8 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 0xe3703160 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xdbfc048c rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x8f06da6b mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x00db6c3e btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x4e96fe16 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x855bfe4b mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f397067 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x24649da4 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str @@ -229,67 +231,65 @@ EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8e93b970 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9e702099 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc8b3178e ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdb1276b9 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe16533c3 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe98c507d ipmb_checksum EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf42d3dab ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x06d6d8cd kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x06d93f33 kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0adf4b6a kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1a46f6c7 kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1fe08442 kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x2e81484a kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x4b9ba8ad kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa60ddc58 kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb8aba26f kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc9dc3562 kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd15aed96 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe3e2518f kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf3f43cc6 kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0bb012fd st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x43f9c456 st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa14b07cf st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd59330fd st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0dd195b5 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8fb8e355 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xfa32f919 xillybus_find_inode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x17fd7865 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1a4ea965 kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x2bb65d59 kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x327701d2 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x35c0d386 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x518bcec3 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x6e18fb35 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x78738328 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x97e0ef96 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xadccb71b kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc0921c29 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf086cb33 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf13fe72b kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x12025426 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x38336883 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x592b8f19 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc0432c8d st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8b7d83a9 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xaefedba6 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xf93fc388 xillybus_init_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4f68dcf0 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x554372ca xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc11cd266 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x2a4a6ac9 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6902e21a atmel_i2c_send_receive +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xab605de1 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb36b558f xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xff677a13 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x099e3882 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x144289fb atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9c7cf402 atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xbd17e325 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/caam/caam 0x15eb6b99 caam_drv_ctx_init EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0x4ef7b1fe caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam 0x4f1fed2c caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x78957d28 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0xbef8eeb0 caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xe405fd25 caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0xf9f5a7bc caam_drv_ctx_update -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0835d8ab caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8c227025 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x980a2cec gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xba8a63e8 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbc6318d3 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xe94d3c37 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1937013b caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x52f68a37 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x88c9e9fe split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x8fc472f9 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbcf96600 caam_jr_enqueue EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly @@ -308,707 +308,707 @@ EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash -EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x10371373 dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x4d7cdf1c caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x08557472 dpaa2_caam_enqueue EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz EXPORT_SYMBOL drivers/crypto/caam/error 0x60dbc82a caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0x71bc7eb0 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x1b73b5c4 xdma_enable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x7a7c4c4a xdma_disable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xf863b645 xdma_get_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x85f086fa xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x35b72ea8 xdma_enable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xbbbf3d77 xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xcee1cc73 xdma_get_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x1bd9ad65 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01d84bce fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ab558c8 fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x14882c08 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x15df0ff7 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1cd5236a fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2049e1d3 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x229fefbb fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x166896b6 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17265102 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x22b8254e fw_iso_buffer_init EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2d252bff fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2df1982f fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x370f6bdc fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2c8369c4 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x30265b93 fw_iso_buffer_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f87eb2b fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x599999cc fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6371d6fb fw_card_initialize EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x738f989b fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fa5393a fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x71ec5e94 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f9be274 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x804ca5fa fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa13f9e58 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa2b20e41 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa83e23a6 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x94a071c5 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x97b38cd8 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b8ed566 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c468aab fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa40641b1 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa434cec7 fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6134023 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc23361d5 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc5e0315f fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc5e863e0 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf2fb6f6 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb59011ae fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6d4fe2b fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xceb69043 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcfb9bc80 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3b90727 fw_bus_type EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe4c4be39 fw_iso_context_flush_completions EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xebae6cd2 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xef43336b fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xefbac0aa fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0xff664978 fw_card_add -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3a64a071 imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3fdd230a imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xeb9dd712 imx_dsp_request_channel -EXPORT_SYMBOL drivers/fpga/dfl 0xa52909fa dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xd5e40d9f __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x5ef4df1b sysconfig_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0xedeb413f fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xefb81f44 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf45a9485 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3f851b2f imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x85c5196f imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xdaa19e93 imx_dsp_free_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x0569d8db __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xf0cf2ab8 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x4824bece sysconfig_probe EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0ea5d74b amdgpu_xcp_drv_release -EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0xa009d198 amdgpu_xcp_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c22f2b drm_dp_mst_hpd_irq_handle_event +EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0xa726730f amdgpu_xcp_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07f8f971 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08d81a43 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0be4f952 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0cc05d12 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0dccb8b1 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0dea3470 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x101a65a8 drm_dp_mst_atomic_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1057a6d7 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1413a1a9 drm_dp_128b132b_read_aux_rd_interval -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1519047c drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02718275 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x03c3a9d7 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x058f3bd1 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08f62f6e drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0a2cc33d drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0a9fa3c4 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x136b359b drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1431d5d1 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x147e617b drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14da8274 drm_atomic_get_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x178879c7 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19bd3e40 drm_atomic_get_mst_payload_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1ae2ae5d drm_dp_dual_mode_detect EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1cd00f55 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20741f47 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2283f962 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1c094793 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2331d8af drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24ada755 drm_dsc_set_rc_buf_thresh +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24fb0295 drm_dp_mst_topology_mgr_resume EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x287b5ff7 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a8e3932 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c5725d0 drm_atomic_get_mst_payload_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2d5fc2e5 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x27b00f7f drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e62d2c1 drm_connector_attach_content_protection_property EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2faf4074 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36e18447 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x37ee65eb drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32ec74e6 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3355d39f drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x349eeced drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3616a2ae drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3848cadc drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x389aaaa4 drm_dp_pcon_pps_override_param EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b546711 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e45f065 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40453306 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41a361fe drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42717fa7 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x453d7768 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b72346b drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d245461 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e454699 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x429096b6 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x45c1c02b drm_dp_mst_edid_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x45f4e535 drm_dp_dual_mode_set_tmds_output EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49769249 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4f285ae2 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4f8322aa drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x504468a3 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4831af1b drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x48f00a30 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x525c3919 drm_dp_mst_add_affected_dsc_crtcs EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x54933a85 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5692df47 drm_dp_remote_aux_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58e22a77 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59e9c5b0 drm_hdmi_avi_infoframe_bars EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a1f4264 drm_dp_128b132b_read_aux_rd_interval EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ab08a1e drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5bb18f67 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c9e81fb drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f226d3c drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x606fdf71 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f48e89b drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ff0d174 drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x620a5b0c drm_dp_dpcd_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627ba04b drm_dsc_set_const_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x62d6863b drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x630f17c5 drm_dp_dpcd_read_link_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65a7d6d7 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x66adba48 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x656d6db9 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65f83da3 drm_dp_send_real_edid_checksum EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69421e48 drm_panel_dp_aux_backlight EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6ad88e74 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b48e0b3 drm_dp_pcon_frl_configure_2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f162d43 drm_atomic_get_old_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x701ece1c drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e3ecdf8 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x703ab34f drm_dp_mst_put_port_malloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71b376f1 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71b15292 drm_dp_dpcd_probe EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7509ace8 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75c1afee drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7690752b drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x744b5028 drm_scdc_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x789ca6df drm_dp_mst_atomic_enable_dsc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79008c7e drm_dsc_setup_rc_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f936316 drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x805aee64 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8099a828 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81011c38 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82812770 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7922e9cb drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e438381 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fa93182 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x80bb1975 drm_dp_mst_topology_mgr_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8383c3c0 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85be04e3 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86d4345c drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x888ed050 drm_dp_mst_hpd_irq_send_new_request -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x89890e00 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82b6beef drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82dd6e74 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87a3c0d1 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87f93e17 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x885ab696 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ae1cf7b drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b6df43b drm_edp_backlight_disable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e977851 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9024d59a drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8df99cf5 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x925d4673 drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9332f41a drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92da01b5 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x940cb36e drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x950b81cf drm_dp_check_act_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95883bb4 drm_dsc_initial_scale_value -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9ae02673 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9b5ba704 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9be70801 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9cb7d9bf drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d5dc08c drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9db3d4fd drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x962757d7 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x96b0e572 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x970643a4 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9bc28e4f drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f99b242 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa00d95bc drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0103fde drm_dp_mst_atomic_check EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa207f838 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2db6b9c drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa37464f7 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa31d4ad4 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5f7b431 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa620ca07 drm_dp_read_lttpr_phy_caps EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xabe7aef3 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaa99b217 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xae2f4b14 drm_dp_mst_update_slots EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2672ebc drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb46d4b3e drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb49b467a drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb83540e9 drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8816025 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8f58fd4 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb95db0dd drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbadf265f drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbe60ee16 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0c82715 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb27dc423 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb38d0fb0 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb51ed825 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb53e1888 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb824aa62 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc7dcf29 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbd022191 drm_edp_backlight_enable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc12c590a drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc35df3d8 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc556575a drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc26936fa drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc2dd6f5d drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc49b7ac2 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc510d690 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc55e89cb drm_edp_backlight_set_level EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7fe3514 drm_dp_pcon_pps_override_param EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc9f8c13d drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca49a191 drm_dp_mst_edid_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca654f01 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8ba35b4 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8d7c9ec drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcaff762f drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcbf81900 drm_dp_mst_hpd_irq_handle_event EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcef024c4 drm_dp_add_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf3334d3 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf3bda12 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd098355c drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce7e2f1a drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf238c2e drm_hdmi_infoframe_set_hdr_metadata EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0e95456 drm_dsc_get_bpp_int -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd19376bc drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd1a4448a drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5567925 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd1d99539 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd262b5cc drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd34200ae drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd4b058d2 drm_dp_mst_hpd_irq_send_new_request +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd579cf44 drm_scdc_get_scrambling_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5f913ae drm_dp_atomic_release_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd70a1bdc drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd2bf50e drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xddf9c081 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf4f803b drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe030b2df drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdde71a66 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe0229dd0 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe03a5aef drm_hdmi_avi_infoframe_colorimetry EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2468a48 drm_dsc_flatness_det_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe41dfe81 drm_dp_add_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4a57e97 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2d5e0d1 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2e7d718 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe479e760 drm_dp_mst_connector_late_register EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7ae7d86 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7bdc79b drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec817e97 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe55d62c4 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed7c6ef7 drm_dp_pcon_hdmi_link_active EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf00e32df drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf481eceb drm_dp_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf7c51971 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf75d6972 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8681aae drm_dp_mst_topology_state_funcs EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfbbd6449 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfbff4c64 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc8dffbf drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfcbf881c drm_dp_pcon_frl_enable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm 0x002039fc drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00de6ec2 drm_privacy_screen_get_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00e31d18 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00fcc8b9 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03558cb6 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff84000f drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/drm 0x004d42e2 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00cc5829 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0119d5d5 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01c466b8 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02626d76 drm_dev_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04074ef6 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06cb5636 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0758473d drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x078f22e4 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05418ea1 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x055ff837 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x060b9e01 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x060d4ef9 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06aec942 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x072afba6 drm_atomic_get_new_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x083391d2 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c9a8f6 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x093ce98b __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f7c6fb drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2ecc55 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0806f991 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x080ce046 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09223712 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0999e598 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b171c3 drm_client_modeset_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5f409b drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cab1a4d drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cdb1ba0 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d017c02 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a953024 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aba65de drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b42d6e1 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b4c2574 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7d09e1 drm_crtc_vblank_count_and_time EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9cad43 drm_crtc_vblank_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f10ad80 drm_prime_pages_to_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print 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 0x108e044a drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1116f731 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11191981 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12105067 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x129fb997 __drmm_mutex_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1307486b drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b3033f drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d48e7e drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15336dd1 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x153c985d drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x154251f8 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x157b202a drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15a5277c drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12158a32 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x126d870a drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x135e7688 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13b109dd drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1487d307 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1574064d drm_plane_create_blend_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ebdbb0 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f64893 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16fd4ca9 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x176bb92c drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f19bf7 drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19090f11 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1920c48d drm_gem_private_object_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a3c07f7 drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1721e261 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1725837e drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x179ed7aa drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18064cfc drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18827bfd drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1909a40e drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19a40b53 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19d36469 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19fa960e drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a12982d drm_privacy_screen_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a790175 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a9e871c drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1beda1a0 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0297e7 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c3881a8 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c671895 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cb512d2 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cecd4d9 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e840446 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f1b26e8 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2104db2a drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2155dbd3 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a69cfdc __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b8169d1 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb4f58e drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d627297 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e2bc508 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e462a8c drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef779e6 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f457075 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc3b271 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x207596bf drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x212b39ff drm_object_property_set_value EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x230a331c drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2430dc17 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21cc489e drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2231bd9e drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c63d5f drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f44424 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24607e3b drm_ioctl_kernel EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24b276f0 drm_atomic_get_connector_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x254b7ae9 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25911eb1 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2538a23b drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x254b1e0c drm_gem_dmabuf_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d06ce9 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x272e0929 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x274c860e drm_atomic_set_mode_prop_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27abb0c7 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x282dca6c drm_client_framebuffer_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e35f1b drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x292b8b1e drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x293f0ddd drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x296905ee drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29e2e74a drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a16a195 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a5f4d71 drm_of_component_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac983cd drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac9bce4 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b12a8b4 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b32849b drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc084cc drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d0c6623 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d3e9309 drm_privacy_screen_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2daef269 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df552b7 devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df5ad5d drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e15b812 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec959b3 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ae79342 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b1e4f3e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d799c75 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e12004a drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e717a05 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e81e024 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb497ee drm_connector_set_panel_orientation_with_quirk EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f0082b9 drm_mode_config_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8126e6 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3010b34b drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x302b8850 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a5657d drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f98abd4 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fbc56f5 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30287441 drm_crtc_vblank_waitqueue EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32425585 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x329b0698 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f748e4 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31fc757a drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3216fc62 drm_color_lut_check EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32e44b1b drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33bccdb8 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35087040 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x350bd252 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35f192bf drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x363b6653 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a79f19 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d786ca drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x331120df drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x336f3efc drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x337c9080 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33aae56b drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33b188d7 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37471ec2 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37f596f9 drm_property_create_bitmask EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3894cb00 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38b4ebef drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39741076 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38ad7f90 drm_atomic_get_old_connector_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x398e7609 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a57655 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39f79c5d drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a0f00e6 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x398aa312 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a26eeb1 drm_writeback_cleanup_job EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab8bea0 drm_dev_unplug EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b4aad5e drm_mode_set_config_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c488770 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c7232af drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ccbe3cd __drm_universal_plane_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cfb5c63 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dce62eb drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd68260 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df325e9 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e01a88b drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e38b395 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eddfa9f drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ef0ff9c of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d888f07 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f1b57f0 drm_analog_tv_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f5fa302 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x407e1d3a drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x408bc98b drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x410c6bad drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41467918 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x415a486f drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x425f7b51 drm_gem_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x432c110d drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x432f3c91 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43aba3ec drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f99fe2c drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbc2b74 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fdf65d1 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fecef91 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x406a1584 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4070feb0 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40ecf90e drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40fcb459 drm_gem_handle_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x440c5702 drm_prime_sg_to_page_array EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44be79d7 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c649f3 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d4043f drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4511a75a drm_gem_prime_import EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x482503d6 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45e353df drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46e492fb drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47e7427c drm_client_modeset_check EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x486f7428 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4872be21 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49933a8e drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a39a74 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49b62fe1 drm_atomic_bridge_chain_pre_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a4568bc drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4abe0e07 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ac9a80b drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4acb8258 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b18cd9f drm_gem_vunmap_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb76e28 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c19163b drm_show_fdinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c808044 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bfafc05 drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c288efe drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c47392f drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dacfa85 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ddb1341 drm_master_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eba1412 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50002a7a drm_modeset_backoff EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a2c79f of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50fcbfcc __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50b615b3 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x512945c9 drm_gem_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f5d30c drm_plane_force_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52eb3017 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x534c3165 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x546c3181 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x551ed8e9 drm_gem_lru_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0x559621b6 drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b457f5 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x522d5d25 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ac05f2 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52af6330 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5358d957 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x539c3aca drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5411e289 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54575029 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54ef6911 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55447d44 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d4545e drm_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5656ef67 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x567a881a drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56da307f drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5740d608 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5757b221 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f4fcd6 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56fce41a drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5768c86d drm_get_edid_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57800b45 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x579b664c drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b34fe2 __drmm_crtc_alloc_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5834e278 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5881882f drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x590067af devm_aperture_acquire_from_firmware EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x592c4a44 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59c74971 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59dd4801 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a376749 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a92b9f9 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b074a6f drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c0b3867 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d07f20c drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5de33324 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f0db32e drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x594cf39e drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5950e78a drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x597f7774 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be549ec drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cbab754 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cebdbc9 __drmm_mutex_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dbc5f9a drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ed39691 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f0e84b4 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f2f1e64 drm_client_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60031601 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60694224 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c94c35 drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6172aa60 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x630a0054 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x636a6e84 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64846aa4 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f59474 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65233a0d __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65609dc5 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61280b7d drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62034b43 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62282e84 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6306639f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63b905c8 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63fe484f drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653160ae drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6546f315 drm_connector_attach_privacy_screen_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d471cc drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x660c3cec drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x662b422c drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6673ec13 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66e144f8 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6775162e drm_sysfs_connector_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x692b710b drm_crtc_set_max_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6963d7a4 drm_file_get_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a463af4 drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b284690 drm_debugfs_add_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bb37e71 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d6e4951 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb36ea9 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x704ba908 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x713c50bc drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7204f370 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7214325d drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7265828e drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x729f8cb1 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x734fb9ab drm_gem_vmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c7465b drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b1a0786 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b713534 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b76ab63 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bc07de8 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c47bd06 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc7abf5 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d2375a9 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e3efd35 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e75c065 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6edc446d drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70286bdc drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x734e0bb8 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73588c9e drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d8a358 __drmm_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x759964f3 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x775e059e drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77b374a2 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7882dd04 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79367481 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x750af0a5 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7636d792 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x779a0a70 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7811cffa drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x798f178c drm_show_fdinfo EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a23d06 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a7cc26 drm_connector_attach_privacy_screen_provider EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a29db09 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a48079c drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afbf333 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79dda866 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa486a4 drm_gem_lru_move_tail_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b8f08c1 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b45b4ef drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd287bd drm_mode_create_dvi_i_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c842f46 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cf83494 drm_privacy_screen_call_notifier_chain -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7da5a013 drm_crtc_next_vblank_start +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cc33808 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dbaa5c3 drm_mode_create_from_cmdline_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3cdfa7 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e518d13 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65e3c1 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e8a759a drm_gem_map_attach EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff37200 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fff2bb0 drm_gem_lru_move_tail_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x807b6cf1 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81814ca5 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80b2a3ca drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80de0817 drm_crtc_next_vblank_start +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e5afe9 drm_atomic_set_fb_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8233a89c drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x828edb9f drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82bbe784 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c8c06b drm_privacy_screen_unregister_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e1b147 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x837a29ec drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83ed29aa __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8444130c drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85eaefcd drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x865177d7 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86903f86 drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87626568 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x890515b7 drm_privacy_screen_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89290826 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b8eae1 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c15089d drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c1a2b13 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c225ff7 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82cc8700 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e7b4a6 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b3dd3e drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x853a6469 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d861a2 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x865a8a4d drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x865bb9b1 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d5efa3 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x873c0598 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x897bb4b6 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x897f7834 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a531cf5 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a9d7a9f drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ace312a drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b11a794 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1c446b drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b372eb7 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b9e78e3 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bc83b11 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c3d957c drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c565335 drm_plane_get_damage_clips_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db61717 drm_privacy_screen_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ecd8643 drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f127de0 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f494668 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f6d3c90 drm_edid_read_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8348bf drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9a07db drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e0ccc0 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f1e8cb drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x913cf625 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91454c27 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91940075 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91db960a drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92a36ef4 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94356e62 drm_atomic_get_old_crtc_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x947761a7 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a9388b drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9644ece6 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9794879e drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e31288d drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f4acad0 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x908d3584 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91927c2b drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91ebef5e drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x925ff1e6 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9304b293 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9358a6f3 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95cf3862 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d9a7c6 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x979807ec drm_connector_attach_max_bpc_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98421b7e drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9907759a drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99769aec drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad97f06 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9adee4c4 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b11b865 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9851c9f2 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x985dced6 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x986b6c23 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9883d0cc drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98a71e04 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99265d9c drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x998aadd2 drm_release_noglobal EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bffa840 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c0efc62 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c53c563 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c9c904f drm_vblank_work_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9da74e4d drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e67c670 drm_atomic_get_new_crtc_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e80d246 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0dbcfaf drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa16da20f drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1838aaf drm_privacy_screen_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1be0b4e drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d914dde drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9db41eaf drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dca1c00 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e1b8ad3 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ec6f462 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ee77bbe drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f28a1a2 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fcf29d4 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa013f6a3 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f9449f drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa149d1bc drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b2ee99 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1f1266f drm_bridge_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2ffd9db drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa266f6ba drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3885bac drm_connector_has_possible_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5aff00d drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa706d0db drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa87962f8 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa92fd980 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa93bab4e drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f9e0c7 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa422eedf drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b74805 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a3389f drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa661f7d4 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b0ba83 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6d246c8 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa71bf9f3 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa81facd5 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9126721 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa913da4c drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa925d301 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9399a33 drm_property_create_object EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa997d98a drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9edd71d drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa64ae77 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4e7220 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f0b1f7 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f7a20a drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa93151c drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac96a8f drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab1c6097 drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabba85e9 drm_gem_dmabuf_export EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad8b21ea drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad5a0099 drm_bridge_chain_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae360031 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb032c7f7 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d44564 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d57f0a drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeff1e57 devm_drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb125b01f drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb19fa1ee drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1d40533 drm_client_modeset_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb325cb4f drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34319bb drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb214199c drm_gem_private_object_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3f4e411 drm_connector_list_update EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb503a8d2 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb54e264d drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4126492 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5951567 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5eb8c5e drm_connector_create_privacy_screen_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6dd3c2b drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7157db6 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77cb8da drmm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7c8c757 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85c6108 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9ac26cc drm_framebuffer_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1f0cec drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba867c57 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb31e67f drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb784b4e drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf35217 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc5b91df drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcdb9e0c drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf6a04ae drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04e0b3d drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc12a5fcc drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc13f1b15 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f54bd6 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc351366b drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4fb04c3 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc516ecf0 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc59c336c drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f4d141 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9dc3d87 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3baadc drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba74e756 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaae5466 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb25a18b drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd11b2f6 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd2b358e drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf1e6954 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02c3329 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0bf92b4 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0cfb360 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0d699d8 drm_atomic_get_new_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2594a5b drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc285cc90 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2e730d5 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f4adc7 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc335a2f9 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3695bfe drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc395f99a drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc478d5b5 drm_edid_connector_add_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a636fe drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f73b2f drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc566a770 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e6148e drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc67201cc drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6798949 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc67fee9c drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d2be13 drm_plane_create_color_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7f14ddc drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc85236fc drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8f92851 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8fa0927 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc947542a drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9be232d drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca0909cd drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2a089a drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbac8c24 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc320b07 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc404fd0 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc8ad60 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d3ed8e drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8692e1c drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a622c9 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9504ab5 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99ddf5e drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8431ca drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad180b4 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb5033b2 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc3ecdb drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccbe8198 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd1e0739 drm_gem_unlock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5d89eb drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0a9a4a drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf2dbb50 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd024388a drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd028fb76 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd065b2e9 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc2fea1 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce124701 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce747fd7 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf9f106d drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfbbb6c6 drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfbf9a27 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff13e77 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd104faee drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e610ee drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd31dc2de drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a163c9 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3eba1c9 drm_analog_tv_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5e99be6 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd141ba38 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd368f894 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3def238 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4099588 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd51929cf drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd54bbae3 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5cd4cf6 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd66d3528 drm_modeset_unlock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd727ad70 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7785987 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd77f91ac drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6f30175 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70da1e6 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd72926c1 drm_syncobj_get_fd EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8184716 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8852719 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8a25273 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd958148f __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda1fdf62 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3d93a6 drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda53c891 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda853c3c __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f27e76 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd846e7b8 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda26a28a drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda2e292d drm_crtc_vblank_helper_get_vblank_timestamp_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc55e314 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb53c4e drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcbb125e drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbcdcda5 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbe59d18 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca635b3 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcefc4f7 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd369838 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd38907a drm_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd52998 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd7e378 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd5ffc2d drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddda509e drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf307d55 drm_privacy_screen_register_notifier EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe15f1ad0 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe18ef69f drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa84c1a drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0767436 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1013e08 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe295cb0d drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a28f6b drm_mode_validate_ycbcr420 EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe31b8cda drm_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3bdb187 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ef038f drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5ba0945 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cd4e76 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe43c9d34 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46f92aa drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50146fe drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe546e12c drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5798666 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe589a1d1 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6126f99 drm_debugfs_create_files EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7601178 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7b3289c drm_privacy_screen_register_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe869021c drm_edid_connector_add_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8710955 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe675e003 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7278cc7 drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96dbca4 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9970c16 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9a5c467 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8d0a799 drm_state_dump EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea219983 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb01e4c6 drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb31e550 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb51666b drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb866882 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0400e6 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed6795a7 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeded270a drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee25c7e1 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee3f2c8f drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee9e5131 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef5ff739 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef8db63a drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2bb710 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb323731 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb3414f4 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebd370cc drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebefd36c drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec296927 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6446aa drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0ede3b drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1db24f drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff7faac drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf06d15a9 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf076d257 drm_crtc_vblank_off EXPORT_SYMBOL drivers/gpu/drm/drm 0xf095dc96 drm_get_tv_mode_from_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e78031 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0ffc6a8 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf135a8e6 drm_gem_object_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1471b1a __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b17340 drmm_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2daf719 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2fd5bdd drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c8d01e drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2d87dd6 drm_gem_evict EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ba7f0f drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4dee8d2 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf645c0f9 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf659fff7 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf65f2bef drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf74308bc drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4f1a1f6 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5e69f78 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf601d861 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf64cf4e5 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7678316 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7860a30 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e1fcbd drm_edid_read_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e3ca17 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f8ee05 drm_dev_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf891c496 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa0cbac6 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5c920b drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaca5952 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5225e1 drm_connector_oob_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe2f0460 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8673d99 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a3108e drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9558af3 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf96abd17 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9eb23b5 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa443909 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd491524 drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff01bbbd drm_edid_read_custom -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff64ffaa drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff0d19f7 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff662576 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd39ec5 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd5caa4 drm_panel_get_modes EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy @@ -1018,449 +1018,449 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x2834f191 drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xafaccbcd drm_fbdev_dma_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xecd3e335 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03958fe7 drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03d86e17 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x051729a1 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07d095b7 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x095ecb91 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0afeab3f drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b0b4c48 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c157c3a drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c1b62bd drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c26f0b7 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cf40e41 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e0eb859 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ea99e08 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ed5b673 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f67ec5a drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x108025ec drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x120703e8 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x0adc9d15 drm_fbdev_dma_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x37656c1b drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x46bf47a6 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0005d434 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05722cd9 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0804cb68 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0afd7874 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e242d3f drm_atomic_helper_async_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1309cab3 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1399eea6 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1731b98a drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x198805d8 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19a6c51f drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a0736f9 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a45e617 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b9dc583 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bba47ca __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cadf6cf drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fd5ef91 drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fea51a3 drm_fb_xrgb8888_to_rgba5551 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2115c778 drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x219b2b35 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ec3a0c drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x131f72d6 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13cda100 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14968aa8 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1560cd83 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15b55961 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17b36006 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18a05b3c drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af17f5b drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af52a42 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e1244ac drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e487fd3 drm_fb_xrgb8888_to_rgba5551 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea6ce58 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea76053 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fceb3de drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2107e19b drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2198e835 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d0baba drm_fb_memcpy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x220e7316 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x222bb1a3 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x253db7c0 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2887ac7f __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2206a615 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23109eeb drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23ede8a0 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262e6a77 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x263be1e6 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x274a5b35 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29152f15 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29c2779b drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2caf690a drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ce1b1d1 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf1e060 drm_gem_end_shadow_fb_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e38f30c drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f0aeca4 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3099588c drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x344dbd3b drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34d50e2e drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3534ce0b drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3564a9ed drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x386afcbd drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bf408f6 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c578d3c drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d303555 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d5e7f3d drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x414f3a75 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41887b66 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x419060a3 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44608687 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44fa7dd1 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e0ddd6 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4755cec6 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c15e8a drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e6b3df drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49ae20ae drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c217838 drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd74814 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50ebdcef drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51467f01 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x525e4285 drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529cd61d drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52adc160 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x530bc536 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d53e381 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e052bc3 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e1c7d48 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e521f54 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eacb261 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30aad744 drm_kms_helper_poll_reschedule +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31685b73 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3197dab7 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3210aa6a drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3229cf49 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3378a29e drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34030210 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3411fa30 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3593f4c7 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3685f4f5 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37b85edd drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a9bf397 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b58007e drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c7ba181 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ee6a685 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445b6af2 drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46149180 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x465b0d91 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46b214e5 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47af6032 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48965703 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4993f880 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a034e0e drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b02b956 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b3a499f drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4da36cc2 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51b6787d drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52c89b3c drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5514e941 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x551f5639 drm_helper_resume_force_mode EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55bb9519 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55fc6f0d drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x564de890 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5664c778 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x566cc568 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56d12f7e drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57e15448 drm_connector_helper_get_modes_fixed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ad51960 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dd8093e drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f446e40 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f5fc054 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fbe2e43 drm_fb_xrgb8888_to_argb8888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x608df832 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62d8f4f0 drm_fb_xrgb8888_to_argb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6583d431 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x660b2bed drm_atomic_helper_connector_tv_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x661bd1f7 drm_fb_helper_damage_range -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67f6f18f __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68e585b5 drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x693f19b4 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b536771 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bce5554 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dd4b6e3 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62958e80 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x635b8ae2 drm_atomic_helper_connector_tv_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x637b5c0c drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63c3a8a2 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63cc9dc2 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6502e7f4 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x663c18f6 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x676bd9de drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a6d4e67 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b262cde drm_gem_begin_shadow_fb_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c4d5759 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c8449c5 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6daf4f6e drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dfcb8df devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b898121 drm_fb_helper_fini EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x704cd859 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71ab43e1 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7361dc23 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7668c4ea drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x769a8eab drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76a5af82 drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76f45e16 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x780cb4bc drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78f43c63 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7aede34a drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d44df76 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eabdb8a drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed3bf38 drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8075df15 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82502f29 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea8f1db drm_fb_xrgb8888_to_argb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fb4ba7a drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71db2b78 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x733d0e16 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x733f5007 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73c7171b drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77cbdc9d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a237111 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ad569c0 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b6d4104 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b99557a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bccb5c3 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d595d13 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f3affcb drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80d64930 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81bbe790 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82daf082 drm_i2c_encoder_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x843c03f8 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x844592e9 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86374eb3 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x846b584d drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x851fa555 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86067533 drm_fb_helper_restore_fbdev_mode_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x884d8ce2 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x886b017c drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89213752 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x899eb779 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e9641c drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ceeecb5 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e8944f4 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f044848 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a54e978 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cef88e3 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e059124 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e7f95e1 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f2d7126 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f8703e8 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9094e9af drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9108f6ec __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91bc0527 drm_fb_helper_damage_area EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x921851b3 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93ee0a5d drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94334688 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95ab16c6 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95b1badf drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95f2ef8c drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x970e4a40 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98143313 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9820d8f0 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9207ce1a drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x922ac2af drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x958455d6 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x958ce238 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x990c7dde drm_gem_fb_begin_cpu_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a2ad3b0 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ac174d1 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c325475 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c911e58 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ce43ce3 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dbaa435 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f6232ce drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa02a363d drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa08493a2 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0c5eaea drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa363a173 drm_connector_helper_tv_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4e6e9b5 drmm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa52d34b7 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5d9b8d0 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa886e2d6 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8ccd5e7 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa91e16fc drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad53549e drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf447a83 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6864a8 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb04d30dc drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a501120 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ae6381c drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bc68e2f __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c98456a __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e90e92c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ef44abb drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f685647 drm_fb_xrgb8888_to_xrgb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fdf7888 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3e32e8b devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77873f6 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7c99a99 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa92c9c93 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9b32a2f drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9b61f6d drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9beb551 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab7042e5 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaeb3e022 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb031d37e drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb03bff63 drm_self_refresh_helper_alter_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb072d308 drm_kms_helper_poll_reschedule -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb22c81bc drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb396e71e drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4016324 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb61d31c6 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb109b649 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3844d9e drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb434d291 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb628638f drm_gem_fb_create_handle EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7c6ae3d drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8889ba7 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba02887d drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbac8d4ca __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbfc1d9c drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc1f8f44 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcda2279 drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbda6550a drm_fb_helper_damage_area -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc27cb4b8 drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4d2dd14 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb709720f drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8c0e7e6 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdbbfae5 drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe07d29d drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe7e0051 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe823eb8 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc04bf761 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0bb1c6b drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1543f5e __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ea6b96 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc237622e drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc36af538 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc44eac5d drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5088543 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc51b5d4e drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc57a08b5 devm_drm_of_get_bridge EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc698f686 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc878f065 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb155bbc drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc760fc46 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc77193f7 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9adaac3 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca341514 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca4dd482 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca8e380d drm_self_refresh_helper_update_avg_times EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc64d772 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcde80117 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce568b20 drm_atomic_helper_commit_modeset_enables EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd04f8e91 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0d50d5e drm_fb_xrgb8888_to_xrgb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd17ca14a drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd61f14e7 drm_fb_xrgb8888_to_argb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd64849e0 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd922b63f drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda2f3bb3 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdac10d41 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb1132b0 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc271be5 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1031aa8 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe18c033f drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1adbdc0 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe231e1f0 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ae2eae drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea1f1bf0 drm_fb_helper_release_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb397963 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec29f328 drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2ed5d2 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed844784 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf38a8242 drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf40de6f8 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5a7ecfe drm_fb_helper_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7412de8 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc376334 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc43d8e6 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca36bdf drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcbe32a0 drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfce84d19 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeb3c6b1 drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfec5aa76 drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff9139cd drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x00c6a48d mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x08eb63bd mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0b36e1a8 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x36ff1878 mipi_dbi_pipe_end_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3903b7fe mipi_dbi_pipe_duplicate_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x395c0d28 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x444a7d08 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x60057b4b mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x654459e5 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6bd342fd mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x75fe904d mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7cc82dba mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x86b7847f mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8ddffcc6 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8f4595b4 mipi_dbi_pipe_begin_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9b062dcd mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcb243b35 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd8766539 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd8789947 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xec1f31c8 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf0de8187 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf336cc44 mipi_dbi_pipe_destroy_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf474dfe9 mipi_dbi_pipe_reset_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2592fc08 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x53a3e913 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6f0a3df9 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7c66afad drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x84d11afc drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa3042ecd drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb5e79dbe drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcd0a3901 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdba9ccb9 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdbc5540a drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf4c12f0 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf4f30fa drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfbfbaac drm_fb_helper_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0424cd5 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd13da07f drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6de4038 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7de7fe7 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb2e41e0 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb3f40ba drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb9817e2 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddbe90ad drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0c7ced4 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0f1c52d drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe15060d4 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1d24319 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4b82f30 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4c82d6a drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe579a8d2 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5822f83 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8c4e298 drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e9c638 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebb14969 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeead3169 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf147868f drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ff9452 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf26fa902 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2b43e59 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf40b3571 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf45156cb drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6b4713e drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6dafcd3 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7a9cb85 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa5b796d drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa5bbb34 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe90ef1c drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed4c652 drm_connector_helper_tv_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff63823d drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff93ac90 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0501a257 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0a42b517 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x13a0abd6 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2af0c154 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x315b84a6 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4172ecc0 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4f3e783f mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5507b3be mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5732a819 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6e27fa7c mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8320952c mipi_dbi_pipe_reset_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x84fb02ca mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8c4057fd mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x99201fb0 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa812a095 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb4fb382f mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc0cb5a22 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd2df1b45 mipi_dbi_pipe_duplicate_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xda746360 mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xec7af1de mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf18758a6 mipi_dbi_pipe_end_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfbc3009a mipi_dbi_pipe_begin_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfe94bb5b mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x31b56d27 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x400872c6 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x528c00c7 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6dfe932e drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7023da5b drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7c87fab7 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x96dd5118 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa58298a4 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xac09f3aa drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdd1cfac4 drm_gem_shmem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x048a510f drm_suballoc_manager_init EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x0bad1988 drm_suballoc_new EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x8debd4c9 drm_suballoc_free EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xcfea1bec drm_suballoc_dump_debug_info EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xdd9c3522 drm_suballoc_manager_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x631776ac drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x888040f4 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x98cdccb8 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf3ae669c drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xfc00372d drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x08e4661c drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0a51763b drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x46d1eed6 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x687c7077 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x68f79b3a drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6ee5dc45 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x75bce13a drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x75dc6990 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x77af6831 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7831aad6 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x842cb5d6 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9364ba93 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc0ffcc85 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdd310765 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xea4a625f drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf6a4dfda drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x8881209d rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x124f336e to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d43f4c0 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x23736bc1 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x26a9b410 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x29f1752a drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2afaee48 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d33540f drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3d2477b4 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x42084cf6 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4b83d27a drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x50a2723c drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5629f97b drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5934ac16 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f8b8b48 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x657457aa drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7876cef4 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a9f63a7 drm_sched_job_add_syncobj_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x859c167e drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f48e139 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x952bea3d drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd3037355 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf5c5adc7 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf61112f2 drm_sched_entity_error -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf6201026 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfa44f540 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfcfe8a7c drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x296f88ae sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0f63ed8a drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3f746d3e drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x84881bcc drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8610148f drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf6a8c0a1 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x07574146 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0852ed00 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0b788306 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0ee38e52 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x79c98361 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7bab113b drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9f9c6281 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa03cbb3a drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa4e0fde7 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xac7a7675 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc88dfd54 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcd2989a2 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd83af8d9 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xda005d68 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe3922f76 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe5078abf drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xd00eaa1c rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08553c6e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d86ae1d drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ea52d57 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2eb986c0 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3d141fcf drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3e21a6bd drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x49186b74 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4ad1b968 drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4f29d4cf drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x55251753 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x58151808 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x62a9e2d6 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a8d0470 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8bb489d3 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8bc59e34 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d73b12c drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9b2cc33f drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa4f6df5f drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa4fc48cc drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa5799d8e drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb0036ea4 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd32e7e9c drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xde9d6dbb drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe23c4b46 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe86a8200 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeb09b4a1 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x278b85bf sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x280fc524 sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x405072dc sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x4ee619ac sun4i_rgb_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x9515c2b7 sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe20af048 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe73617c7 sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe8d7d876 sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xedcf53d2 sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x1b05ee4d sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xcc7ade23 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xea9de4eb sun4i_dclk_create EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xb2fa3fd7 sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01d8424c ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04f3b3d6 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x9cff6b50 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xfb2e4acf sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00ac3612 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03c2b28e ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04926364 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06ae8ee6 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x072cec78 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bead5b2 ttm_bo_vunmap EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0df12691 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x138b72e2 ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14ea9738 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10594111 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x188dea9d ttm_resource_manager_create_debugfs EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b307412 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2117d9c1 ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25438741 ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25b1c1be ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a4ba6c5 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2dc305c9 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x394fd045 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4effa895 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58d9070f ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c89bb90 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f6a486f ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x607bbc86 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x645553c9 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x685ad09f ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bcf9741 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x209b308f ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20eb904a ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24c070c7 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x265d6869 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a3c3fda ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32cb40ff ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f72accd ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x413c3a29 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4452f674 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x543156d8 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a3a023a ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ecee722 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x633ccec8 ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65cb246e ttm_sg_tt_init EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c94dfb9 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6cb5f25d ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6eb31fc3 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x751f371c ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79c37e5a ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ef796f1 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x854170cd ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8590c533 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x878ab386 ttm_pool_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bbfb105 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dfa41f0 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dfd8af9 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9556cd75 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9df5258a ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0491c9c ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaaec3673 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabae019d ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb502657f ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc542e50 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd9a449f ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc760a81c ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7a1431c ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd07c1666 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd900b4a8 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdae08da4 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd2b65cc ttm_bo_wait_ctx -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe154fed3 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5960946 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6f72d2a ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe82617a3 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeadd7fa8 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebbcecae ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee418a96 ttm_pool_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf25e1df9 ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2d3f0f7 ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf442c00d ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4adab25 ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa13d488 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe3c007b ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x080cbe0d host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0eb96afc host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1040cfb4 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2342f0d7 host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x236d4086 host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b366586 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6cd19843 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72182f9d ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73940164 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a6b90ec ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f17a67f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89ac8b7a ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b0ff303 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b5863d8 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9151029e ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95af3fad ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b68be4b ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d6c1db4 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9daf3a5f ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1bec9de ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa78a206d ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9428502 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaafbee69 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb125e608 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc33ce9d ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc397559d ttm_bo_wait_ctx +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc50f51c3 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6d1152c ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7dc85a2 ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca891227 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf5f7115 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd304a31b ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd61dbb96 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd808e0ea ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde68167b ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3d000fb ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef6530e4 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefeefc0f ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf24be749 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf96c6a83 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x055330a3 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1809bf9d host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x217973f9 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x22723501 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x22b03397 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x22ff865c host1x_syncpt_get_base EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x27bb468c host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2d29a3e4 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2dc5f9e7 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2dec013c host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x480f0881 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4964dd64 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4a9d3106 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2a8eab2d host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x349371b8 host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x37f47786 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3f2d787d host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4bcb765c host1x_client_resume EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5314d37f host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x580d287b host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x607075ac host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x609fd99b host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x66a0d0c6 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6d7a4849 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x70386685 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x580d97fd host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5cf8505b host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5f616da0 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x671bfb4a host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x68122a24 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6b1ce58d host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6c732bd4 __host1x_client_register EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7804315a host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8108ccd6 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x84ab2023 host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8644d839 host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x876e3870 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x89c90c88 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x91efc0a1 host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x92d4b1e1 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x763db0b0 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x765b79ec host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7b4290e7 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7db0af7b __host1x_client_init EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x979d9d51 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x970715aa host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x97622321 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x98630ff9 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9d43f18a host1x_job_unpin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9f042942 host1x_fence_cancel EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa758cfa2 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb08e4726 __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb0998ec2 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa79bb67e host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb18f5ca8 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb3f3fdb9 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb68e390f host1x_syncpt_release_vblank_reservation EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbd439b86 host1x_bo_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc4fc96f6 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcab45fb5 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd018dfb7 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd38ad8e3 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd38e7807 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd6750688 host1x_channel_stop -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd7d718a1 host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe4d139b5 host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeb43aac0 host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf5126915 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc2e27c0c host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc8b0a243 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc996b4d5 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd10f823 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd6192ada host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd69e1e85 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe00f09dd host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf52678d5 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf721ec52 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf7ee68e1 host1x_job_submit EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/hid/hid 0x9e9b795c hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x98c01f90 vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9acf446f vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe82d0a42 vmbus_sendpacket -EXPORT_SYMBOL drivers/hwmon/adt7x10 0xdf290109 adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfff3e835 host1x_job_put +EXPORT_SYMBOL drivers/hid/hid 0xd4896eb8 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x3340f1fd vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xce2ac9da vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xd0d6f30f vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x3e48a11c adt7x10_dev_pm_ops EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x9973b029 ltc2947_pm_ops +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x87733168 ltc2947_pm_ops EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x3351a3cc sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x2f1e65e8 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x327a1076 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb86aecd5 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfe2989f1 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x25c91e97 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x968fcdaa i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9204b8ba amd756_smbus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3fb2d0ef i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc736a7ba i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xea34298a i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x2bb65cd4 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe082b3ce i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xc3347031 amd756_smbus EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1470,1022 +1470,1022 @@ EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x62bdc23d iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x63c10946 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7842a097 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x94f1517c iio_kfifo_free -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xf7237217 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x04811363 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x09de63fd iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x0a70912f iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x1480e147 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x1e0f1761 iio_trigger_free +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x8a6c9ae6 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9e249edf iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x57227bdb iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfc3c07c4 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xfd381078 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x11d3a838 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x1a135c44 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x1afc7ae1 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x1b198936 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x2d668a7f iio_trigger_notify_done EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x36196912 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x476a6957 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x4897a9ce iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x5d0d5217 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x67b2d048 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x69230fd3 iio_trigger_poll_nested -EXPORT_SYMBOL drivers/iio/industrialio 0x72a2bacb iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x9256e3ce iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x96453daf __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xa2b8533a iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xa6be714d iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xb869cc11 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbaf75e1a iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0xbc5846fa iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x3291f2e0 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x359b4bf7 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4413b049 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x58fbfe87 __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x6c6217b1 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x76f6e14c iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x863798fc iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x879ee44e __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x901e8cea iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x94bd4035 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xa2978f64 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xdb069c79 iio_device_alloc EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xeed6fed7 __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf8f78ab0 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xfa2b99ee iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x1a3730e9 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0f87c4ae iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x33622804 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3e51cfd8 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd4064245 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x030f52f7 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x764f219e iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7d0963da iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf42ec815 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x66f2844f iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd997af09 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x208f77c0 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/trigger/stm32-lptimer-trigger 0x9e1d28dc is_stm32_lptim_trigger -EXPORT_SYMBOL drivers/iio/trigger/stm32-timer-trigger 0x7473e121 is_stm32_timer_trigger -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x06f402a7 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0bae5209 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x115a85c4 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x169c6091 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c69643e ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5046622a ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67e86fde ib_send_cm_rej +EXPORT_SYMBOL drivers/iio/industrialio 0xdff94939 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xe3b48410 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xe3c559b0 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xe62dc858 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xfb0e6739 iio_trigger_poll_nested +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xb65a4e8d iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x11abc155 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1df5719b iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x74449ebf iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xfe188946 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5d952e1b iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc1ce806f iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe9c323c4 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xfcfedfff iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0091f361 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc7d2d474 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7a0c08a2 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/trigger/stm32-lptimer-trigger 0x65fa30d3 is_stm32_lptim_trigger +EXPORT_SYMBOL drivers/iio/trigger/stm32-timer-trigger 0xf756e9ba is_stm32_timer_trigger +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0dab0937 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x270ac3e7 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x31a9b89a ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ee9cdc3 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4f6ffd8b ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x679603cd ib_cm_notify EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x77e89eb1 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97b90f9e ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ff62110 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce1be013 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0f36eef ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd87dcbee ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdb42a681 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe3474f40 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7ebbd5a9 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7ebc86af ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaf43198e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5e087e7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeaf59f6d ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef87cb50 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf5652d7c ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf90c179e ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfa025b92 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00129d96 ib_destroy_cq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00d87a54 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0251773a __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03377fa1 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05306266 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x059d34d1 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09512394 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e48a4b ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02b90c78 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0417d340 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07d5a8ed ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08391008 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x092a166c rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a017509 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c5e541b ib_unregister_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c92c07f rdma_user_mmap_entry_remove EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d683b9d rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10411922 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104a2057 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11987641 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1275737c ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12f98265 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17b82f09 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19d47e36 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d836c9e ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e59f890 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x103daaae rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x108a857d ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1160dc12 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ccdf16 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12421b38 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13cb3466 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x147ec582 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x156e7b8b ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x182fd2b6 ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a19c195 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bb82af1 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d479f05 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e689746 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b053895 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cc5b873 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d19cb74 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d901102 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e91b2a6 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f1e4d2a rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20f1cff9 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21b34ccf ib_free_recv_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x231a5c62 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23903b04 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23bfbee5 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x275e879a ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ad68602 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c00b1b2 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c08697c rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d5f7f9f rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e0974cb rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fd25d18 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23f6b268 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x254f17f7 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25f798a8 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2767f7df ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27d415f9 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2847fb3d ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28c3faf4 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a67fdd2 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2be315d4 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c2255a5 rdma_hold_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3151d664 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31a47260 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31a6b7ee ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x337444cc rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33f6454b ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34f36ae4 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x352dc8a4 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3575289e ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x371a3860 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3786d845 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37e936c4 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x389557d7 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38b7eec1 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38eb106d ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39b2a374 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39dadf95 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c4b970f rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f00332a ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31a8c844 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32604c47 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33348bff ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x333a95e8 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33dbccca ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34285448 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x347701f6 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34aa0713 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38cd8307 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a179f79 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a4038a5 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b9b9950 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9c963b ib_advise_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x405a20d4 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40864647 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4215539a ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x423df2df ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d70125 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fdcdcb3 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x414a0139 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41f88e79 ib_get_device_fw_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4551fc33 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4575e993 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45908eb4 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43a2965d ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45287d52 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45403e4a rdma_user_mmap_entry_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46147eb0 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471ab0b6 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4756ae80 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49365346 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x494fa5ad rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b9a0935 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c377335 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d6c564d ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4941c317 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49c3a90f _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b2654f4 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cd6ff7e ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dbda997 ib_mr_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4eb97ec5 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f465280 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff88a41 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5065bb3d ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5072fbb1 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x511e7e17 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51482840 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x540f21b0 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5448d74c ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x547f3876 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50ad834a rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52af5f2b rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55505406 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5599de0f rdma_link_unregister EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x565bc70e rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56c7169c ib_init_ah_from_mcmember EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x594e4dbc ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59f896b3 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a1baf68 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c13d690 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d98063 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c4764f8 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e1de16a ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e4983a7 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ea5ee00 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eba240e rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6102247f roce_gid_type_mask_support EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61a2123f ib_free_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62c72fb4 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x645ccbe6 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x645e8824 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64773df8 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65c765fd __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66d87524 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6778b02b ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d77adb ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x687ee766 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x689c217f rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b4e227d ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x626778a7 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6550cb85 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65f086d7 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x682fee50 rdma_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c5c3c3c ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d013d96 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2971a4 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ed56a49 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d2bd21f ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fb51624 ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71475660 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71370fcb ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x719d1cae ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x719d9ddc rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x736ed38d rdma_nl_put_driver_u32 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73d2a443 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75921ec3 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7500a887 ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x767b553f ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x768e8cfe ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77e7e882 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x767fac26 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7693a8a8 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x780c45d9 rdma_destroy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78c81546 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7eac3393 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f184fd6 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fb70d35 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x808e5383 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82436c12 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82bb03af rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82f44cdf ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8478108d ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x873f5803 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89161cfc ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b37eef1 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f1ff978 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x792836d9 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7989ed83 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7abc9f72 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7acc3575 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b9e0c84 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e478f51 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81b8df42 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82a1e555 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x856c2b39 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85e27811 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8626a5f6 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88575865 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8867069a ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c555e3e rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8df53560 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f41bb14 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f5e9a0c rdma_restrack_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95902e6b ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95f81ef7 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95fc22c9 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97c83cd3 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x990828e2 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x992ce633 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9972ee47 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99806ec5 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cbfb494 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d11a016 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e20b8b3 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa049f9ce ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0503af9 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1528743 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91183d59 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91ce1211 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91f97d1e ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93a2520d ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9430b926 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9888e9a1 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ace7b0d rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bea1daf ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c0a2dd8 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c2af25b rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c679821 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9da171da ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db26da4 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e0c3666 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa037e2f7 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0bcf3dc ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1039dd4 rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4a1ef53 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f7f178 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa87090ef rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8ad27a5 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa97758ab rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9a41fd5 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae0a413b ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae21e344 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa68123b5 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa85c9b8d rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8f3ce95 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacbe1158 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacea829d ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacf6a454 ib_map_mr_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf1f6171 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1fe6c69 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3102c94 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3a83e5d ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafbe10c3 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb00bfd98 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0ce6cf4 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb16b4f1f ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb27316c1 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb30ac38d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3baab09 rdma_find_gid_by_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb51c8149 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb66a2774 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7249633 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5e3fee0 ib_detach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9ba546e ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbca6da73 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdf8f042 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe223b3e ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe884341 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc29b28d9 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2d61a9c ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc396a509 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3df9720 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4955ab7 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc50b0155 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb89ae717 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8b652b6 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9321546 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9b899de ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbab0c80e ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaffd086 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbde64486 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc074b32b ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1b8aad5 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3780b81 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc401ce70 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7a3645e ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7eafa82 ib_rdmacg_uncharge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcab6e447 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9fad2a9 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca9792ab ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbe87af5 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd4e79ae ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd9071ef ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0047a04 ib_dma_virt_map_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1764bd3 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0b11db3 ib_destroy_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2f9a831 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd343c3a2 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd38c9f7b ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3b00580 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4d4cea9 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd521099f roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd55e2dbb ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f13abf rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd225fae7 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd29026f5 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2b54d26 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3db17dd rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd429ce51 ib_map_mr_sg_pi EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd756a23b rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7ccbd54 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7f74eab rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc31391f rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd263088 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe07f997d _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe12c2d1c ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1985a84 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe198c647 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb1f5edb ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb452e4e ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd174e34 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf98d440 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfc13233 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3389d5d ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe482a9e7 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4aea430 ib_port_immutable_read EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6a277a3 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe58e249d __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe790c62f ib_set_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7f88f14 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8c9e431 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe916eacc rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8b87039 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8d5e4b1 rdma_restrack_new EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb438faf rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1332999 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2055046 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf23a147d rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf39c6a2c ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec64568b ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeddfc22e rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee31216f ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefbf1176 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1062dae __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf165fa63 ib_create_qp_kernel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e2a978 rdma_user_mmap_io EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf79282df ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf945bece rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfee20362 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff1574b0 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x003a6007 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x095a247b uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0bf92cd9 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15633cff ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15ea09fe uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c950f85 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x20f109e6 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x24878e0b _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2b8322a8 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2c419824 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2ef47018 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30db4f73 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb1fdc15 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb3a5283 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbb347dd rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc2e51b8 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd162d09 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe90d490 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfed3c2c4 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x08db354a uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x14b99fdf ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x19220869 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28369741 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x359f53b8 ib_umem_dmabuf_get EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3ede7dca uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x42e1f2c1 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a8f914b ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e36ee50 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x623af4a0 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x41a4da0b uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x46d7361e ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53620328 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5b167039 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c363eed _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e8f6762 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x60aba972 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x73dda0ea ib_uverbs_get_ucontext_file EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x806d9122 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x86644401 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a20185f ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9ad9526e uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5f28dd2 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb93eb83c uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb068c10 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6328217 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc94819f ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd2a38a64 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd7e058b4 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb41c42d uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdb906700 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe94119fa ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf697eef8 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfe2819b4 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0db06316 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4bcb62dc iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6ff7aedf iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7e339187 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8b1d1453 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x97305ae9 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xae7223a3 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe3e54c58 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7552a5ed uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94ca4add _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e9e165c uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa247c039 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa3b3b454 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb8a87e5c ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbd128f7e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf6ad6a7 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7bf6963 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd198bb31 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1a925b6 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5b8b05c ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc3f73d1 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdec50097 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4e27bb3 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe99b753f ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xec087ca4 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3cea9c1 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfac14801 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd391066 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1d69dbb5 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x39f8ff84 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64d1ccca iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x81706261 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa2da07e6 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcb835000 iw_create_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b7159d1 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ecd7caa rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0fb8d31f rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12a7118b rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18a99590 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b66c843 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x215faabb rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2957ffaa rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b7c65b3 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3504fa32 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b7634bf rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x447f8921 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5e9ca745 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6eb3c132 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b502fcc rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e18ec1d rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8393ddc8 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x854a6dd1 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88973c7a rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88f65e48 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf6a6afbc iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfb489668 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0710b905 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c30a824 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1425e101 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19ba9e35 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1b2c5800 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23230028 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2670204d rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x292457e4 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30e6d90f rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33c23bb3 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3739b074 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x394324c8 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x508b83a4 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6375c5c3 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68b6d5cb rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x767fc611 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7875e349 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b672e6a rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b9831c5 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c1b7b7d rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f51811c rdma_get_service_id EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92e33573 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x973bd6ce rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac880119 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0cf04fa rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1b56269 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb32cc5a3 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb876e654 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc27a6392 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcfcf4e2e rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3794bf4 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6f9d45a rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7402e33 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8d3a8e8 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3063a06 rdma_connect -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x06ffd8e9 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3ca3e41a rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x487b6d0d rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4be50e3f rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4dc9f03a rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc00e36e1 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd7e62492 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x161cb736 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9319fd72 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9bb32b33 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1480b8a rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xccea526e rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce56926d rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf5bbb3f rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd1f707ed rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd23fb66e rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd29c2e53 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1842d78 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4295da7 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe6a4baae rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdbd8c59 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1497616e rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2996d15f rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x647505a2 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6e219dea rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbe886fd8 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc713d6a3 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdf899cb8 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x222e1801 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x77f52150 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7722fdeb rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xd0d2a318 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc798a77b rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xda060e74 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xfcb2d7aa rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x01619415 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x24ab8cc0 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x870019d8 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc132c572 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd1e9f5c7 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe5667792 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1215689a gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2cb794e5 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3303096b gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x61a78164 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x68d03d60 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6aa704a8 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb830e85f gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe1a12bea gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe89cf5b1 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x5196a437 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x84093468 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x973adfd8 iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x869cccd0 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa125e7b2 ad714x_pm -EXPORT_SYMBOL drivers/input/misc/ad714x 0xb48bc6d9 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x0dea3f5b cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x765c86b9 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9823f12c rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaa568eb8 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xce3af459 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe010185f rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe1602041 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2da65c21 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x37ac1658 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x529b828f gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x761abbda gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9644b2d6 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x98d4e6ec gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa5991177 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc4fa16ac gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9d61f79 gameport_open +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x381fa30f iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xbb40a0df iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xef0b1c0b iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xac01a240 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb680d6e0 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xdc4a5e7f ad714x_pm +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x5b222055 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/rmi4/rmi_core 0xa9a77d29 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x3ca5b623 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x3e3edca8 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5e6fe44d sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x81348143 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9361652e sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7d6add99 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xced181f6 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x42c79365 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xc6502579 qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x132d2ef1 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x49897765 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa16bb09b attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd8cc04d1 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdcac8dd3 detach_capi_ctr +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xb672a97c rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x33635b44 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3472aa51 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc75c0fb6 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd9604ab3 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xff2dbfab sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe66792be ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe839fbda ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x41767407 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x4f04b831 qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x19c169dd detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4c30cd9f capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd2e336a4 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfc9cf510 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfe94ba15 attach_capi_ctr EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3befc8d0 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x410de19e mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8b3179b4 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf88e7b84 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x234d1a56 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x280f7997 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0584bc28 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x29589771 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5af9302e mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa0b4e3d5 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x6d8d2371 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc2ee1f9a mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0c7da1ba mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x123b30f8 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a7e7c08 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d5e953d mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d6e6789 mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2911b068 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x263b00fb dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x284e6372 recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4fa2e3dc mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3d9bb007 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x510bb944 mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x58b1e5de mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x625a7096 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x63f0aefa bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6d8a6e43 recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7bbed61c get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ec56624 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ee7094f recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x98ab0c6d mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c24cd86 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6566e994 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6dbee16f mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x834eedc9 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x859a2b8f queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x88e4d7cd mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x920833cc bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x98c2f48a recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f228c6e mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa0abdfa8 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa2c1acb4 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa51305af mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9cfc2ae recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb03e780d queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5c2b99f bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6be0d77 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb087072b create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb4cc945e mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc65a9cbc bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc99314ea get_next_dframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd50fba93 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf94fb6f recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdf9c1845 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdab6c281 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6349999 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa60db79 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfae6a251 mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x79728521 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x8d825667 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xc802cac6 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x7ab4417e cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x6e4aad92 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7a60005a omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x8b25e9d1 omap_mbox_request_channel +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xf5a173ec ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x5749f556 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x11ac7a49 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x170422df omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x42e04d55 omap_mbox_disable_irq EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range -EXPORT_SYMBOL drivers/md/dm-log 0x32a6ea82 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xb8d972f4 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xc5d47d43 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xd26037f6 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x03e5617a dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x38714647 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x58cb786f dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa910c820 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd204086c dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf5f5f85a dm_snap_origin -EXPORT_SYMBOL drivers/md/raid456 0xb376a456 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xf72944ef raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x35b479d7 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x39bb66d2 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x57802f53 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x63627e54 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6c28645e flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x81eb1f13 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa058bb27 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc747468b flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcc4d95cb flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd613871d flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd70570a9 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeec6b763 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf16997ad flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/md/dm-log 0x4c4f81a4 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x628159d0 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x8c6e21e8 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc925fb4d dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1515d763 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x37ed40f6 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x42983a3f dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6677280b dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9e8a149b dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe56188fa dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x72345bcd r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xb594e1aa raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3a86e7e2 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x51fdfdea flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x65d6f521 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8e6345d2 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9cbbe448 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9d322438 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa38bc74a flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb45dcd00 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xba69e981 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe6078a43 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xee391d52 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf8b376e4 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfff8c2b5 flexcop_pass_dmx_packets EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x25570c4a cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b5cc43e cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5c34a21f cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x81dd4cb1 cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xb939f756 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd6175904 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x833244de cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x85cb02fb cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x9fe1d875 cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x859128c4 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x3928f92b ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x185176b8 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xcca857cb ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x8f626840 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xb1efdcf8 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x10561d45 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x83be880d vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc3a8d815 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe1a23d18 vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x10e29a36 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x34dc8b63 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x60511599 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9e622bf8 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb8a2148b vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xed1554bf vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5db16bdc vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8e0f4174 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xab2269d5 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdb9ed7e0 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe13af2f0 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf69c6e83 vb2_dvb_find_frontend EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa8dedf7 vb2_querybuf +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a7d8bc6 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x03200ccf dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09949ebf dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0cda2f65 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09f8fa2b dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0afff81d dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b1588ed dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x213dd5d2 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x26cf4bb0 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x296d38f4 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f58c37f dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x320048ab dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x341011ca dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35dfb835 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34ffd887 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3709a540 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x41ab2775 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x47cad8f8 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51ab2d84 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf5bd6f dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5b86907e dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x55bef6a9 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e1e6956 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5fa40351 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x631bfe06 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x723eb4fa dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74d4a2eb dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f09e3a0 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8307f1be dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9267ebec dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98ad70f1 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99524c1d dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99336b96 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa96bceaf dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa7f8f360 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaf18caf3 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2be0106 dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba5a5283 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbeb11919 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc2d2b146 dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd47f01a dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdaa99302 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde30320f dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc740fe5a dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd94be069 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda26e9d3 dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5f2515d dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe63719fe dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe82fcb51 dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x03577ed4 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x24b9f8ae au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3399aa21 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5ffece9e au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x75e51e44 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9061a600 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb6177fa8 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbeb2d504 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcd15b0e9 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xff449b12 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4d83bd6a cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x09598d40 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x31afad86 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd78834e6 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xde377ae4 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x03a9c247 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x147dd60d dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1e044f87 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x26866e53 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2e3d93b4 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5d298c99 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d154acf dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa8a1fc8b dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaa06eb34 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc1118316 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcea7256d dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd0cce7c9 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe9425656 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2e2fa5f7 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3ffbfade dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5a725eb6 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x87f2cfcd dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcbd39fc0 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x08cb5e61 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8ec662e2 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9e68434a dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x087ff9d6 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1290f0b0 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1cb77cf3 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2f602179 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3edb15cc dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4fda1231 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7160be5b dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x81cc55c4 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8a6975b0 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9191b286 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec947b75 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xff37bde8 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1042443e dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1e87ace8 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6f52a0cd dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9edd88c4 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xfce1bfa4 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x574216ea dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x606213e3 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xfc8c3282 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x727db5fe lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x9dae6d2c lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x9801483e m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x5a6c50f1 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x6fc8c19d zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x9050fd2e zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4969fe1d flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6232fcec flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x75f4f612 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x80cd693a flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9f44a6ed flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xabbe4e43 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbdbce43e flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0dc40ce0 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5ccb3f4b bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb5c75bb9 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc12a1c0c bt878 +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x07703d45 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x08e1a578 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x16bd19c2 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4074620f au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4582c457 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x54e270e6 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5e3a26d0 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6fccdfa2 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x98dddeb4 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8abb07e6 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa247251e cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x56dbdd2f dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7d3f34df dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9bb6b7b3 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9cf7cfbb dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2494e3d0 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3f21d15e dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x437fec8a dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x50facd6f dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x774671ef dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x828a8cd1 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9827d7b7 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xacda7997 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb3c84e56 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe8921c8 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbed6c58c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbf62e9fb dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd2f3ac38 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1ebe46d7 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x341b3794 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x40cc6ffa dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x446085bd dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa5c27345 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5f3ce24f dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd6dd630c dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd9a94561 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0a265818 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1978f77b dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x61dd0f8d dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x852b0e02 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x97e3ca05 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9a39b6dd dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbbc57f4c dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc68f0dea dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcf358b34 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd194c071 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd3a62ac8 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdc748dcc dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0948fdb0 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4923d3e0 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x89ab6105 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa6ade05d dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc27c161f dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x28647af4 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7f17b12c dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xd4d99544 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x2a7fd7c0 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x196b4c5e lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x51518ac1 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xb5a8c885 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3359e485 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb53824d7 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2c00dfe2 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x56064296 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x61e7a22b flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc6828bd7 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xce3ff23a flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf0be276d flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf2519872 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x46590724 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5d20901b bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9063dbf9 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb81f5eef 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 0x34eeeb85 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3a1d3fa5 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x38de2be0 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3a5d4b18 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 0xd887f3c5 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x13b2ffd0 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1f99abb0 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1fd38a46 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x31dd08cc dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc6ecee98 bttv_sub_unregister EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x54ae1ab9 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x86aa685d read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x87a6b465 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfbaa8c80 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1689a6e8 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1f713785 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4e8c7142 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x67446621 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7d303ab2 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8edebde9 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8fde7bdd dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaf3cf139 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc7393e79 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf807a5a7 dst_error_bailout EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa3f581dc cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfca1886c cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xffd92daa cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x56b06ccf cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5768a3c2 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x86817bfe cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc23be65f cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe0794408 cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc 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 0x2338cced cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2bae3e93 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x043cec1c cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x05b010d6 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x158b0e15 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x25683cd1 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3fc8986e cx25821_riscmem_alloc EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x704316b4 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x883d11f5 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x98406b55 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe5db28b4 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6681b02d cx25821_set_gpiopin_direction EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfde4f0a5 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x0c504ca7 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc3d5c25c vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x128a250b cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x14552fec cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x85ba659d cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc6f6c28e cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x657ecc7b cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9cabebe5 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbb0d2e08 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc23d9c6e cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf3ca898f cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf8453e5b cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfff5a17a cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x05988bd4 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0945d425 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x112fa8f2 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x207c81a8 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x28e207bf cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x31f156ff cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x357f0593 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3ac95e31 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3e515877 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x56450fac cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6954d2c cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xaced999c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd142fb2c vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x759f1bef cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdf03c4c8 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe7c43af9 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe9f3dc0e cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x31927837 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x35db0d7d cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3c27087f cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x52007118 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6db4f9e2 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x76a09e96 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9345e7e9 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1808cf58 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x22cdb9c1 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2944889e cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2aba3db9 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x35e4ba6c cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46e84130 cx88_dsp_detect_stereo_sap EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x650fca24 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7859e344 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7f98ea74 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b4fed75 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8bf58ffa cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x637c4ac9 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b29db2d cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b6d8c7a cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x786e9227 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x79277925 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x79d86151 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c22ec7c cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7f3d621f cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fa6ddd0 cx88_wakeup EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9c41aa22 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb9592021 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbd7d38c3 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcbd53344 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe536a4d1 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d441924 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xabb00e6f cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb8f2d235 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc32f23cc cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe37feda7 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2530dad cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x001f2217 ivtv_vapi_result EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x258a6141 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x52568994 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58370cef ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8417562e ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8de3c25c ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9420c9da ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x964e19ba ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa50eea57 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf83ead9 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc6d1136e ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc731ef3 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd54a4d0b ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd944e716 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xde6d5c77 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf43909d1 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9df85d8 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2b807ee5 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x31d2ae95 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3ad14fd7 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4d3ae504 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5dcaa1b8 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8199cf74 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x869042d1 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9278b9f3 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9b5c2d7f ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9e533db2 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc6791811 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc75f310 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd1f6a3c2 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe001201f ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf0e76c97 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf57486d6 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 0x1e131a17 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x317d3011 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4780f9da saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x61ed11f9 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x675ac999 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6f62c64b saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1cb12bc7 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2edf2a5d saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5885957a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6d71864a saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x719c5756 saa7134_ts_unregister EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7bbdd98b saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7e71df73 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8b2e1568 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x80ac35ca saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x81c2b5fd saa7134_pgtable_free EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb43d8f57 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe0805d44 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa2b0999d saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xacacb30b saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf34e2bfe saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfeb4badc saa7134_dmasound_init EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0f0afdf6 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x498eea87 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6692ecdc snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7a6c826b snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xa25260f2 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb36ce5dc snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc59334de snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0bfb464a snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x28ac4c90 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6fa75038 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x72ca6d39 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8468a9ae snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdee53a01 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe38cc4fb snd_tea575x_g_tuner EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x28ff0f67 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x6fb4e731 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0xa25f83d2 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa0ef0225 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xdd601298 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/rc/rc-core 0xd65a0ad0 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa51d7908 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd25a5cbe fc0013_rc_cal_add EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x8c7a4de6 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd0aba372 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1dddd366 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x24748441 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x39e2c25f dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x60a9c547 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x754fad1d dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7d84ccca dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7eb34b47 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x987e0107 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xead2be4a dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x66050862 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6714d4db dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x739fc961 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x135a4641 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf676b454 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2387f3ad dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4245671f dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x464ad607 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6bd65232 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8de6b738 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x92d73f7a dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa2d8a767 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaf437259 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcac54b73 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0d89892f usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1d42dcff dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2540c3ee dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x60d95cfe dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x61c91f23 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x61df007e dvb_usb_generic_rw EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa7180a06 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd4e725f9 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xec8c519f dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x0178b605 af9005_rc_decode EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xa067392a 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 0x01fdae26 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0753f7b5 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0d5fb35e dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x11c95823 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1b0e49fe dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x592df5ad dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0949b774 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x21805809 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7ed0be2e dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8aed43d7 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8e94d603 dibusb_read_eeprom_byte EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9cb2c626 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb538de61 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc53892e4 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x5eebe667 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x701ef887 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x4bcd546c em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe720177e em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x24bf58d4 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2a31677f go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3762ee60 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3e757be0 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5315e6cc go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x74afd2c4 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x907ac6b4 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9b6de767 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd03cf193 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x72a1dbc6 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd82335af dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe06779bc dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe13c5708 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe9d4178a dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6eaef78a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x7fdaaf13 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xbdc7ccf3 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xde33fabf em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x04fcdc81 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2e0a6f91 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x31c2080d go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x33cf2236 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x52d52136 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x601470dd go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x84358dff go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb12dd97c go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xeb512746 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x35e057d5 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3831254c gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x468091e6 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4a62be2e gspca_resume EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9cf28ea6 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa5b0cdaa gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xadc221ae gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb28e1574 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb7a5ef74 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd4693e15 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd8786475 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x01b98cc6 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2a7e8d0c ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3ff49c9c v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x853a0cc3 v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x93b7c164 v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xae42d7ca v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc1c22279 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd33adc39 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa082c34e gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa6ee8d80 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb5cd0046 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb886c45a gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x94b69bf4 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xbf719a3e ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x311f2982 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x57ef0f03 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x59581c30 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc78b1d07 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd14a17cd v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd8436847 v4l2_async_subdev_nf_register EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x83be49f5 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x846ca312 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xab40a698 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xba247a1c v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x70ff7fac v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb9fd0fe4 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe6a79138 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xee48bfec v4l2_m2m_mmap EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02316ef4 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04e37369 v4l2_ctrl_new_std_menu_items EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0744f031 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x074f9b1c video_ioctl2 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a5e9ab6 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0aae163b v4l2_ctrl_type_op_equal -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0baa8b96 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c4c9bd4 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10cae4ca video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0beea86a video_device_alloc EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1575bbc5 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15b34cb8 v4l2_queryctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b3490a4 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x173f2558 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a88725e v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1faa5b1c v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28da5f30 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x295422ee v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d98308d v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30de5750 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23814d1f v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2708b476 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a57171c v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e82da84 v4l2_s_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3505b217 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35f70729 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34226f28 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35a18feb v4l2_ctrl_new_std_menu_items EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ff98bf v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x362cb998 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a9877b1 v4l2_ctrl_sub_ev_ops EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b86cd9a v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bc50f42 __v4l2_ctrl_s_ctrl_int64 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c595060 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3c772f3e v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cd1787e v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e3c2e45 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4382037c __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x451f55e7 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ad52019 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5674c827 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ee7146b v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x635ec8dc __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d044ea0 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e172852 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x736cf95e video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c3181aa v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e187186 __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80c521d5 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e26ed2b v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x427c73ab __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43f7174d v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e57dffa __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59faa58d __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61243944 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x618dd7fc v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6208b362 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x660f6c84 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68f79d48 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fbb7175 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7436e5ad v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75b13961 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75cd5efc v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77fec9ad __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ac6b6ca v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cfd7220 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7eca8cd6 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f5fa689 v4l2_querymenu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8173c924 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x883e8145 v4l2_ctrl_type_op_log -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x885c8598 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x83c23374 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84c3f286 v4l2_ctrl_handler_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a34623a video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa58632d3 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9b70c92 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb000b21b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5da5eaa v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb704a58b video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e0482f5 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9503e82c v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x954f2c43 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e07f097 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1ecf554 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7358a99 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadcb38a0 __v4l2_ctrl_s_ctrl_string EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1e504e1 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5989674 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf9be7b7 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc285f883 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc32d9b10 v4l2_ctrl_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xced7ed85 v4l2_ctrl_new_std_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd24d4fdc v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd647db87 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7ae9065 __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8524ba3 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc0da04d v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdccf3778 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf694fd7 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2a976cc v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6253f2e v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd838542d v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd89e7ce5 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd7ab42c v4l2_ctrl_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef322d22 v4l2_ctrl_type_op_validate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf175b874 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe525763f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe711d723 v4l2_ctrl_new_custom EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf40a4bf6 v4l2_ctrl_subdev_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf57399a4 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc1be2c7 v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc9757f5 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x24d80164 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x719fcc64 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xad119415 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xba0a03e7 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xdda90504 rpcif_manual_xfer -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1619ac97 memstick_set_rw_addr +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfeca5c0f v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffe72d7d video_devdata +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x03ac1e93 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x4a7afdf7 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x819a65f7 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x846a7baa rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xe3d96c2c rpcif_prepare +EXPORT_SYMBOL drivers/memstick/core/memstick 0x03580966 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0b272e58 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x14987edc memstick_new_req EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x21cc7353 memstick_register_driver EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x29698a83 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x51de08b1 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x56d2e3c4 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5cace071 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x77dd169b memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x87cfd5ed memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8f782707 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa10e4804 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf6d1da1d memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf893c5c5 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xfc9708bd memstick_remove_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x011a6331 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05e31de9 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x130001bd mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x243b68fa mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x29518275 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x395e330a mpt_device_driver_register +EXPORT_SYMBOL drivers/memstick/core/memstick 0x770c7f32 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x989f6b43 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9cf5e8ef memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb4a5be3c memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbf7cd371 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe3af8891 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe5e92e2f memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf62c404c memstick_suspend_host +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ed585c6 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1421ce4e mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x162567de mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1a84bd0a mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f10ab03 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c355c53 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3517b8d5 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x36c7e3f6 mpt_resume EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58d1f35c mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x52de7cb4 mpt_put_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63f1e5b8 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6b2e5dab mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66d5f09f mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6816b3f9 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x710276e9 mpt_GetIocState EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74c5ec02 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b58072e mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7f464ccc mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x905f5315 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x923cb673 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x773613ee mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c3a9444 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c3ef23e mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7cd2ba2d mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84dcc560 mpt_put_msg_frame_hi_pri EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x98d85d8c mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9c9f7d07 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4b8ba8d mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb4f85412 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc36b0894 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6d29ec1 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9a55eb7 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcd429ee9 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd190dea3 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb99e2c8 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a8a6928 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1926dbb mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad84c9b3 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xadd5198e mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1b5b3a4 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0b8d2d7 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8336588 mpt_set_taskmgmt_in_progress_flag EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde5694c2 mpt_raid_phys_disk_pg1 EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xebe48a0a mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeef75227 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3d7f839 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4c1fe10 mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf77fb115 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x042bebdb mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f4638f6 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x132d57b4 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c9ccd6a mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x27e13d97 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f11f732 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3786ce9f mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3ead3854 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x454974c8 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x55c260c2 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a209ec9 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5b6a7d03 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5baac886 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d9d5929 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x627ebef8 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f1d29cd mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x839526fc mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x85a1db3b mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa53f245c mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae514506 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf9c9705 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5b3d066 mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8bd074a mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe93e0eba mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xee8dcc7b mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeef416f0 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe43960f mptscsih_event_process -EXPORT_SYMBOL drivers/mfd/axp20x 0x35de142b axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x635d30f9 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xff2177ee axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x65105c5b dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xa9a449c9 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xfdd33347 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19b8336e mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3722f93f mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4428d777 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x758557e5 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8748ea0a mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bfc1c16 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa8791a47 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcbe592a3 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xefd785b4 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfc076034 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfc12211c mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x2b68461d qcom_pmic_get +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec3566e4 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xee866885 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf12162f2 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc35760c mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d53ae53 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1dd2bf5b mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x252530dc mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2be4ad15 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2d91c09a mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3ec506ac mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44fc6af6 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x47dbc939 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51ab6c33 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67e8df7c mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x78e203c5 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7efc8f5e mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a68a3c2 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8b9cb290 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9071506d mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ad23003 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3cf3d50 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa81c2c47 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0fd936e mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf872a98 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1dda486 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3053cbf mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda9b5a18 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4b2b2bc mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec68e154 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed59eba1 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf31e7e40 mptscsih_event_process +EXPORT_SYMBOL drivers/mfd/axp20x 0x2346ea21 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x2b14da4b axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xb99d4918 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x74eff47a dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8b8a40ee dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xc78e5b9d dln2_transfer +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x09257c19 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b378583 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1c994cc7 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2480b421 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x51495a4a mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5629bfa1 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x632aac73 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x92b6aa98 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa9fa8574 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb79d3b5e mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xec7446f1 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x0add81a2 qcom_pmic_get EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd520f912 qcom_rpm_write EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 @@ -2495,218 +2495,218 @@ 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 0x13864046 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x21bcfbdf wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x7cc4cf39 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x8ce4426b wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x9e0e632e wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xffe6b33c wm8994_irq_init -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9a6e03f4 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc1c5baf0 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x0d0addc6 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x25799fa9 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x90b4314c wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9268dfeb wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xa0526472 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xef75b81f wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x1d9399b8 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x66cb0d94 ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x7550a62c c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xd1ea6241 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x26b066b3 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x81a82563 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x00c5d383 tifm_register_driver EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x28e5fcbb tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x37ea4673 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x3ba26008 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x4fe5ca6b tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x5f072d6c tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6d1859c4 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x81a898f2 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x873a380b tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x8ba7694f tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x94f47a79 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xb6fd8d01 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xfb3eee0c tifm_map_sg -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x111da35f cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1721e1c2 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa9fc7e37 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xce7caee7 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xddcec0a9 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x9644ba5d dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xbc5c70c2 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd7360f25 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xfcebc224 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xa8c28e52 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd7cae993 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x062ebe2a cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1cf3b853 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x22359b0c cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4ac0d31f cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x703efa0b cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x81de35e5 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe2fe54ba cfi_build_cmd_addr +EXPORT_SYMBOL drivers/misc/tifm_core 0x1568fd79 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x242db343 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x622df852 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x856e4823 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x8645d8a7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xae68493a tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xbf0df13b tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd6a152f0 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xf43442ff tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfc1de19d tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xfd20092f tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1c70aee0 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5fd176e0 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6fa2c61a cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xaae18789 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xec7fb4d9 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2a06c471 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x36ed6761 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7e25548c dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe8fee667 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x935c0636 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe922107a mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0e73cd04 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3c5f1414 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4abe6b26 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x76a4dccc cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x785d3d13 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x80faa391 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e7119b5 cfi_read_pri EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1384e698 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x21e7f8f2 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x27953974 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2d866ff7 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x8fc24235 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x8f5b1520 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x5b86d4c1 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x33c55a9a mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0x4dc68f19 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1a458ba3 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x31b248b0 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbfd29404 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd71e90c1 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2683df27 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xb7192f48 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xfc4b385a simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x197aae4a mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xde38fb0a mtd_concat_create EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x9a9ac230 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xf496f4f7 of_mtk_ecc_get -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x02ee8d29 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x07c9b47e of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x10ffe00a nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x16f42506 nand_ecc_register_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2f90bfd3 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x37173882 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4e99d2e2 nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x55528aba nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x61e82f31 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x644c6c2e nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6686dda1 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x69713620 nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6f897bbc nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x740d4f55 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9ed3e477 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc2f23fc8 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcc5bdc7d nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcdf6da70 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe4a5d2c7 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2c7683eb nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2fd0d3cf nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3433ddae of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3958a8fe nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3ad22d9b nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3ec89b3c nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x41eda4da nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x44da4f6b nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a88996d nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5436b8c5 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7c83dccb nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82a89ad4 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb1f6e318 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcab835a2 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd3567457 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdebf4f36 nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeed9e21b nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfa3af4d8 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeaf10c84 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf1ad544d nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf328ae6f nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfacef1dd nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfe3e6ed9 nand_ecc_cleanup_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff7d563c nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x78d50b7c onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xd3f3b60c flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff652f5e nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x6b8df647 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xefd85e6e onenand_addr EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xd1280099 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xf2ebfe6f denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x020f6f00 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1fd51d89 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x45ef2576 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x494a1c9b rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4f68c3b1 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5cd24927 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x67de74e6 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6c46d7f8 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x78d9bb70 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7a2ab9d2 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x83ab6339 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x3c4202e8 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xd972fa88 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x005989dd rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x11480895 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1b179826 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1fdce7d6 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5b40ae3b rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6eac426b nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6f3dfc5a nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6f4e4587 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7982472c nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8c6ba632 rawnand_sw_bch_correct EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x97aa5d19 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa00e1bb4 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc2a557b6 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc30743ed nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd5e1b8ac rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe4cf7f71 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x4aa3226a elm_decode_bch_error_page -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x9375f522 elm_config -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x274cfd86 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x318df7f3 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5999a1b3 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5c815201 arcnet_send_packet +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9ca8c862 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa41ac267 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd91a0f65 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdbd22288 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdd698b70 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe9b70d8a rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf855afc3 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x15216461 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xe554799d elm_config +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x004816a8 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x10dd9566 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5730eac5 arcnet_timeout EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x67d0ba69 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x689fb56f arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa4eca2fd arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8fc44a3 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb91d279f alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc44f1c8b arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6cba1675 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7553775a arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x849188f9 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xba181323 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbd9cc884 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd4484e15 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe6d8836e arcnet_send_packet EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd9b340d arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x302968f5 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5a64f474 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xada73eca com20020_check -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x3509a582 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x829de3c5 ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x9062f3fa ctucan_suspend -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x561fa0c6 can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x9128622d can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0426ee42 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0524db2c b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x074b8992 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x090851c0 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a41073b b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x17d69c32 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x18a6b26b b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x226e0e71 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2cc7baa6 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a2c43c6 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f0c769a b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43f10344 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43fd5a63 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59207141 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a7bc53b b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60791339 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7653057d b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83807867 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b185aba b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d345c28 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f2f305c b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x926d4f73 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a64d858 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa27cc08f b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa4bd8313 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xafff8f26 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb2ff4411 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcce48c3b b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4226bdd b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe67523df b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6c60b10 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe7a004fd b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe89d89c1 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf31d8642 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf5357f83 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf624b95d b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc4fc3c6 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfcce6977 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4eb12ecc b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7c0ed1c7 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd1ecab45 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfbf04c0d b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x083cde89 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5069b3fa lan9303_shutdown +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfba13be0 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x87efd1d3 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8a630c9f com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa450bc5a com20020_netdev_ops +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x0cb799a4 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x61d1491a ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xbf1b147e ctucan_resume +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x5f13f979 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x9b5e79a8 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0485d691 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0492b290 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27ec7e8e b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f5643c1 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a9c0bb1 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3aaca063 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c881474 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x42d71317 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x530403cd b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x592df300 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ce4dac8 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5e93654e b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6149ce4c b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x633d3c0c b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6377c2c5 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7cffeecc b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e3f5f3d b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8450c3bf b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x88813782 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b786175 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97e23708 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa77bb1e6 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8383917 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa99b43ad b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9bcf4bb b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf30c8d4 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1f65a4f b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb3317e3b b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb60a9331 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc23967d6 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5bddb83 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9388701 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcee674b6 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdbbd740e b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4085d08 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf981ef58 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd11ca57 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xffd8b0d3 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0ff76a69 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x63c0179b b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9f455332 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdd2d166d b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x213d00da lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4790e54a lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xb9d90e6f lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x32527ccd ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x5a6ce82b ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xa5eba5c1 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x982588da vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xb4eee94c lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x0ae2d8f2 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x4fecf76c ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xc4795320 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x03a06056 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0ff3cd42 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2e75a586 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xafef46de vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xe18fdebc vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x61e938b1 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2f197619 xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8ce3a9f3 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x9b94e9ca xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa6d45af0 xrs700x_switch_register EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf09b4900 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0a99e842 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xbd5b40a3 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xcb0c1ace xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x112e382c NS8390_init EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2ca61260 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x468eb914 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x47443047 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x79ab5c3e NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x972a4736 ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9cb3c971 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa32c501b ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb2d74a54 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeff4b31c ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x34d64de7 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x40c2ebf4 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x52557e72 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5d0e3951 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7d08f6e6 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa710370f ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb0bc2aed ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd260d1fa ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe29309a2 ei_tx_timeout EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x409cbda6 bnxt_register_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x6bb2352f bnxt_unregister_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x8e447f8a bnxt_register_async_events -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xc8a377de bnxt_send_msg -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x4418e070 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x00d3224f bnxt_unregister_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x12812f43 bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x89acd9e8 bnxt_register_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xca0f19ee bnxt_register_async_events EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x490edc0a cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x84c07d49 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xcb666897 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xab4ff763 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xef61afbf cavium_ptp_get EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count @@ -2724,409 +2724,406 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b89c2c6 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1cf3dce6 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x332ce985 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3798fe7b t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x463a4832 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ef80c90 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70682ee5 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x83e2f90c dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x905edea8 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c20e2d2 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c92fe17 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa70be7b7 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb799c47f cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xef2e95cc cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf2e3f93d cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe453578 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00a30fe8 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0132fe77 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a932550 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0af6a6b4 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30926ede cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x391833bc cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4e945e94 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x623e4712 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7df812a4 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x818b349b dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8367da67 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x937c8c08 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa2daf55a cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa3a6e530 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa5185b50 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcb874a0f t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce74ba03 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0024a9fc cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0220e2ac cxgb4_pktgl_to_skb EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1165eb46 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3158117e cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3f8a6b1c cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44355222 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ce08bce cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e930a1f cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10648766 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1272a433 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23050326 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25b096e0 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27917728 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2dea6914 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39ac9402 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a08fbdf cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46a72d49 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d950ac2 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fb69045 cxgb4_l2t_send EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5976ee36 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d2629ae cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60cc3a7f cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f5c8a5 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67315f8a cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68b14dc0 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68bf9900 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6abb6e64 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x731f607a cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75de9f8a t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78ab87b9 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79fa8938 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89c969c7 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8de49e59 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93c08140 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x965cf6f1 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97a236ea cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d4af46b cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ef1bb8c cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa57f6219 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8083628 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51884f3e cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x524da701 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5940b1dc cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60686051 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x664a2516 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d6661b1 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7307bdf3 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x746991a2 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f63c8bb cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8038e0a5 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x831288c9 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8350c17b cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x868d1b53 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86bc2501 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8730014f cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8aef87c8 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90ace9ae cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9638b497 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f48aebb cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa3774150 cxgb4_ofld_send EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xabff4754 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae1cce3d cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf924c1a cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0479cb9 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3adebd7 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc43cf43b cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc524f475 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5a643ef cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcef98ef9 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfc6cbe9 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xacadda24 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba22610a cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba2f9d84 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfe71a93 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc788fdb8 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8f9beab cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcaf5e469 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd27b4dca cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4701368 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5f671ed cxgb4_bar2_sge_qregs EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd74adc1e cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7c2bd11 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd911129d cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe3b5fce6 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe80b5447 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe862e427 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf14460c3 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf54789ef cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x17f3e348 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfdbfc2e cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeaf1194f cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2a74ce7 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x13bca5d0 cxgbi_ppm_ppod_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1c455d4f cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2019691f cxgbi_ppm_make_ppod_hdr EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2ca28388 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7c48588f cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x959a75bf cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa064de73 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc51e1adc cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x45193253 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x49a35bbc vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x557ee825 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb72c02c3 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe1ff4ffc vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe488c745 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x2acde7fc be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5bb66bd9 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7f61bde1 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x841c48a8 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb188c69d cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf9a431ef cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x17d1037d vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x24fdf3cb vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2b839cb0 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6879b888 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd17a0008 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf66397f0 enic_api_devcmd_proxy_by_index EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x693edd48 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x30d89866 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x7cd2c67d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x85c437bc be_roce_register_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x28635e98 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x0261ef01 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x06822c5b fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x3b3bb2f8 fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb0271283 fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x25b2ecf4 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x585c6b96 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9fd964ce hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x98fd0fc7 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xb690c76c enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x3b0a325c fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x580d41b4 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7c17f6fb fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x84ebb589 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x23a8c1e0 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7c7ff52d hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa02071d8 hnae_reinit_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd5e5381b hnae_get_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe0a903bd hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe991b760 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xa8f71dd4 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x80aed1a1 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8a6e802f hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8ca006c4 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa4d9e13c hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa57effc3 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcd3ce166 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe38b8075 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf02bd0f8 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x00a1586e iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3778a7be iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf50d59c hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xd90be936 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0a77482c hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3204d0d9 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4fc67236 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7702c8f9 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x930c55d6 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xb8f48a42 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc17d4128 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf90ed9dd hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x4dec4a14 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x68f532fc iavf_register_client EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1a499716 otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1f7566d9 __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x210f8fa8 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0d17ae22 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x14af05ea otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1b5e5d97 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2062bb02 otx2_mbox_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x24ec38de __tracepoint_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x36003734 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x266b975f otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x268e79fc otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x29cafaf7 otx2_mbox_wait_for_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x59340aa2 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5c6a4917 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5a1b68a8 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5e52d0a3 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6185f222 otx2_mbox_alloc_msg_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6862ef88 otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x752717ea otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x7a5263ec otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8b6e2255 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f5df17b __otx2_mbox_reset EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9b81a5c3 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa0aa5cff otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb9edc9f8 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x961838de otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbb815fb3 otx2_mbox_get_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc619ea5d __tracepoint_otx2_msg_process EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc704095c __tracepoint_otx2_msg_interrupt EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd4bbfa79 __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd7c6a23c otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xeec60949 otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x01902a49 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0565a53b mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0cf936cf otx2_init_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x14e380c9 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x19b288d6 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1aa30b45 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1b870fb1 otx2_smq_flush -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x23b82be7 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x27e90a34 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x314e0f94 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x358f0863 otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x44539934 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5d9ad33a otx2_txschq_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x67371f75 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6771f1ae otx2_nix_config_bp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6f506011 otx2_setup_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x82b4e7af otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf1687af2 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf5348902 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfa9284d6 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0237134e otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0237ee3d otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x037b7a26 otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x27cb3dd0 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3daf2984 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x482be214 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5088a215 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x56dff896 otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x574772dc otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x57d7b418 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5ced580b otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x68310eda cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x713a8571 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x73ed808f otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x777d484a mbox_handler_nix_bp_enable EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84e15aec otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x864fd5cf otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8bc00d6a mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8c863676 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x991baff2 otx2_ioctl -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9c47a50a otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa265c19e otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xade15545 otx2_txschq_free_one -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb0c571bd otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb131053e mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb4e1e7d9 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbcfba732 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc108a0cf otx2_config_hwtstamp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc5708078 otx2_mbox_up_handler_mcs_intr_notify -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc73fab98 otx2_select_queue -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc7f62c40 otx2_handle_ntuple_tc_features -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcf1f2176 otx2_shutdown_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe1bf6d19 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf1d4ce17 otx2_config_pause_frm -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x17a4ac05 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xe353726e prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x031618d0 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x113376fb mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16d2791e mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19945cd3 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c738310 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x210b9c39 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3099b099 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3905f491 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a6f7494 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ef18c14 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41ba842f mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x441c2174 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46bbb68a mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f336594 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dfbfaa5 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x721a19bf mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73ffece5 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75451456 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75652f92 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x786b854c mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d555f99 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d63199a mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x86d1911b mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x890b8772 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8c4af62b otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8f5ea6fb otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9221c144 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9d7f7747 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9f02ff78 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa8ae5672 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa98534ce otx2_txschq_free_one +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xafbcb1b1 otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb1584c45 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb78b8b7d otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbf4ff0f8 otx2_select_queue +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc72d8daf mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcb8436fd otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcc6ddfb3 otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd9601019 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe0d11789 otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe22697d2 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xef87a981 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x82fd39ac prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x9fb02aeb prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x088be4ad mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a82b870 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x174f252c mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x181f5813 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1864e11e set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f6ef1cf mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21424b0b mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29294dc1 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c853860 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d14668c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x353b9e78 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x358c8596 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42e561ff mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4488d5d7 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51415134 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6079f206 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a68640d mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a9593f9 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a9db909 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fa565bc mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74fe52ad mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ec4394 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79ebc380 mlx4_is_slave_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c26c0b0 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92446dc0 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x985e67b3 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa88069ef mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeebfdfa mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb001bded mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb15b04c1 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc53884f2 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce041b87 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfb532ea mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0f3190e mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6495913 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd891665a mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda09c9ec mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc9e505f mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde0b691d mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3c37d6a mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7b645ab mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe91e82e4 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee66ba5f mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf309a435 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdb1fd83 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x005f01ee mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03fe5036 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07157981 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07207e4f mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x075856bd mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07920096 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07d4da62 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88238cc6 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e304ebe mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x964ea5cd mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9770c0d0 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98b21056 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b1a9df9 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bf126d3 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf4dea7 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeaa12a6 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0bd0aa1 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc74febe mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe914af8 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc131590a mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5c4ea6a mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7ec06db mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0409ec6 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6f177a3 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb8d7040 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef00405c mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9d7e14f mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcbb36cc mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00b9d26e mlx5_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01916527 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x060d81f7 mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089f1089 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f1ce798 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fea3262 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c8f2cbb mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cf968f6 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0db1c818 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e084d22 mlx5_lag_query_cong_counters EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12135c1c __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1528b37e mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1630406a mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17089400 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b0910a8 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b208abf mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b98e0c5 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13685573 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x169f3620 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7a0e57 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b9cad23 mlx5_nic_vport_disable_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c5ed2af mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ea99899 mlx5_debugfs_get_dev_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x200269a7 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2058a745 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x206dfe94 mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23ec99a9 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x291d057a mlx5_core_uplink_netdev_event_replay -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x294ad306 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fc4d2d7 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3095b8e8 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31b883eb mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27bef6e1 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28fd0a25 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bfd0925 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e4fb8b4 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e822b9c mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31ae56e0 mlx5_lag_is_mpesw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x355a8df5 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b0ac779 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dc455df mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e823dab mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fa82a98 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fcef54d mlx5_msix_free -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4097b168 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a8b009 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42f11e25 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x347e99c1 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35c34009 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3883ba38 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a944560 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435bc59d mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4424d3b5 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x443e5e67 mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b52e00 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x466a3752 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47ce8105 mlx5_lag_get_next_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b86b4c0 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4648115e mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46d567d2 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x485932ad __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49486a5d mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x495e9982 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49ad34d0 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49f92a95 mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a915c7c mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b6d3c6c mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d62e046 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50b818fc mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538cc550 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5425a4cc mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e3b10a0 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ea72713 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x535d870d mlx5_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56d1636f mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59a312ba mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b58d300 mlx5_core_get_terminate_scatter_list_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b9be347 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5853c219 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a2adb35 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a9e68f7 mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d0edc72 mlx5_msix_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d79243e mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e4372b4 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60a8a086 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dfe7df3 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e4a583a mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60574b77 mlx5_core_destroy_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x616c8d98 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62d59c26 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63095da6 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64bbccfd mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6545460c mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65590c83 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66a0099e mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e87e07 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cb6e0e4 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63485366 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63ed2958 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64bc4a57 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6720110b mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x693ba1a6 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd5a182 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71d570da mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d811c7d mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eff8314 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f0c7969 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71f870e1 mlx5_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x723103d6 mlx5_lag_get_roce_netdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7386e355 mlx5_msix_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73fc1d8e __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7952f36c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74f9c8e8 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ad2a80b mlx5_core_query_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80c531da mlx5_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x849c2f58 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x849f6908 mlx5_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86716f23 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x874491c0 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87dec641 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c56d689 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c8654a4 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80c8024d mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x827a71a2 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86ca058a mlx5_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e68171 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x881f457a mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888056cf mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888c4c2a mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a46a63b mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90b54970 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9194558e mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91dcb67e mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x928f90a4 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92b2e704 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93b86042 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9419f09f mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x893a2b80 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x897b5dbd mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x899c49fa __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b6cdf4a mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cd29135 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d2aec12 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d97cf49 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e24144 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95ea876a mlx5_add_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x990b152c mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9999bdce mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99d69346 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c407ca7 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9735d69a mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97cabaec mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x984f255c mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98b0d4d3 mlx5_core_query_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d9c0a8e mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f8686a4 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0efb764 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa18e562f mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3e2af6d mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa448cdfb mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5fea691 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa655dbbf mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6be98f0 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d992ce2 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f96d2e3 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa360ecde mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4c437a4 mlx5_lag_get_num_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa894037e mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8f9a1b8 mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad04c147 mlx5_lag_mode_is_hash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0eeb90a mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0d06863 mlx5_rl_add_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c83e39 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb61e10d9 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6710b3a mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8d334fe mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb848a7ed mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb07ebdf __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb095cb8 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcceeed1 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbceb4d87 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd24c219 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe0af12f mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbee679bc mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0642f61 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6fa4e59 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca3a720e mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca465cea mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb17d978 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcd93e9d mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdeb1e39 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf7cd2a6 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f08c4a mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1b8d07d mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc22012c7 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc24de9b2 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc450c249 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4af341b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7db55d8 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc881b286 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcadd8203 mlx5_alloc_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf840def mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc389bc4 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc6fab04 mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd8f7176 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdb2859c mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceb3e82b mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xceb863d9 mlx5_put_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd20a3415 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3b54d70 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd41b0185 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4367459 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd45929fe mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd77f6b39 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd889e28a mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c1002f mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd20df907 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2170006 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5aad59e mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5b3a7a5 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7718757 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9f0d0b0 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda7ec495 mlx5_fs_remove_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdae8aa4d __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf443db mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf9323e9 mlx5_lag_is_mpesw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfc5412c mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfd97b5d mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0f5a294 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe331a239 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe49104da mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb6ef898 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbdb101a mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc7693e9 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcb694c3 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdecaf404 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfd6f886 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe26a1510 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe54c3f07 mlx5_rl_add_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5b29ff4 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe88f2b3e mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8e0c35d mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8f9b2d2 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe86c08e7 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9d423db mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec80314d mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecead2c1 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed2daadf mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed3f87b3 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefe22013 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf06725b6 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0c2072a mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f73dc2 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf208c9a1 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3c61e6f mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf08d779e mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf173bb52 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf19f8cbf mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf38f4f6c mlx5_cmd_init_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52e1946 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf546b7e9 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8491c12 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6db87ef mlx5_sriov_blocking_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa4bea6a mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf90a354d mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9933ad5 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa1d66d6 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfac18833 mlx5_packet_reformat_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd4a69fc mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe3173e0 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfff443c0 mlx5_debug_qp_remove EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0dfe0929 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x11ab082a mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15daef1f mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16673aec mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19cdb7be mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1a82c77a mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init @@ -3134,6 +3131,10 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x392e59d0 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39c16ee1 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3b85db28 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f287d4d mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get @@ -3141,231 +3142,230 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a25cff3 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4c860743 mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5050f231 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x52ddb01a mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x62c84775 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6724e0c7 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x685e3e20 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x664e1aa2 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x696c6bbf mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7677aa80 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77e805f5 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ee21d64 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x890e26a6 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x971b344b mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x99511fcc mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa71b054a mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa77ab4f7 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8c6fab8 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa93ab38c mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xae86b4b5 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb2cd9cc1 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb8202b27 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcddb0e64 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcf1436e8 mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1bab622 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd650287a mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdba5948a mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc5c95df mlxsw_core_resources_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe2ee0955 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe6c8c3fb mlxsw_env_reset_module -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec388a8e mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1b0de14 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1a06f72 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7bcbbad1 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xdc3e20da mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9346c83a mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xc08d57cf mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0848c7bf ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x185385b9 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x3f90773f mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xa9dd4cb1 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xc7cd84b0 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01d04e12 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03e38427 ocelot_deinit_port EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08791cd6 ocelot_wm_enc -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x090fa95e ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b425cb7 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c26a6a4 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d891213 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e3bd7ae ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0efe7cbc ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x187800d9 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d1c0293 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ddce567 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25b7f2e6 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x295ec836 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d3b9d05 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10a3fbca ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11aa03ac ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x126e8c13 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f0451c3 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22426403 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x238b74b3 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24a69d59 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25739950 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cc73ff6 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d520310 ocelot_port_lag_leave EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x308ad2d2 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30d58e4f ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x319f5868 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3731ac00 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d3a7ef0 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3df7ffa2 ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4125c08a ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42038d14 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43831b37 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e7141ea ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f56c97c ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x572c0f2a ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57b5cdc1 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d8d1125 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6019aa9e ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68adf48f ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bbfcfc3 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fb7ca5c ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x309a621c ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30bac103 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32b03e92 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36fe71cc ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38efb04d ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3baa207c ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fef1673 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x478cfabe ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e4da28d ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50bf291e ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x516cde7d ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x558e6e40 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55eab344 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56ee7b13 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x581b1c59 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a40765f ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c0905b6 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f9ab6ca ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ffb4e76 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x611e1c74 ocelot_can_inject EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce19e2a vsc7514_vcap_props -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6eabbe61 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fcee7bd ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7393322a ocelot_pll5_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c583fce ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x715284cc ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71f2ba05 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x775ea3af ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x795abe65 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79e85372 ocelot_sb_tc_pool_bind_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5aec55 vsc7514_regfields -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f2c2192 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81b41e72 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x864c3b68 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d33d0b6 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x957a7caa ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x969d5bae ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b9ddbbf ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fc7b0bd ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa447ece2 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4c0d45a ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8dee309 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9bc8fe5 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xadb02049 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae6e5ab6 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae9fc9ba ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f15fe5d ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80091d59 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82e4ac3b ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x847c17a7 ocelot_reset +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88ce1aaa ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89530f6e ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c4db72d ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8de83da0 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92f5a09a ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ab034ab ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b0e0dc4 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0b6bc9a ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3846223 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaab1b26c ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad87ddf3 ocelot_mact_lookup EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0fdd7fd ocelot_wm_dec -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb14ed8ea ocelot_reset -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2323b9c ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb23f4cc5 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb59f8571 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5b0e21b ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba94510c ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc338df8 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc410b33 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbb64efc ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfcfd1a7 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb48f96b8 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8329060 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb891b9bc ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe27d8d9 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbee7ef22 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1ce7c00 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5ff8b1b ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7536318 ocelot_mact_learn_streamdata EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1e12419 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2771589 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd62e96a7 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd75757bb ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7b3bf43 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd84a1344 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9475a41 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd52e288 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd781743f ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9e3e976 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdaf173b4 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0b88c51 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe29f9f5c ocelot_sb_occ_tc_port_bind_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe30fc619 ocelot_wm_stat -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe31414bf ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe459f16d ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4ef5975 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1e42c84 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe44b5d1c ocelot_pll5_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5672191 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeaab9de2 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec3c325e ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2a6cf0e ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf576fd07 ocelot_hwstamp_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80fc88d vsc7514_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9b1d90b ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9f4b855 ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfaee07b2 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfeddebf3 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff3078e9 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x143602e3 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf85fdf9a ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb87d214 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc517240 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffa41c96 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x01117038 qed_get_iscsi_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x65870a8b qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x872f1e04 qed_get_eth_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9c475158 qed_get_rdma_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9fe93c55 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xffb99c5b qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3410f490 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x95262793 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0e5f7304 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x13b805cc wx_free_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x142ec7af wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x19d8b83f wx_free_irq -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x23414ad9 wx_clean_all_tx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x29365d6e wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x32063fd0 wx_setup_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x36f12e4a wx_vlan_rx_kill_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3ecfd15d wx_reset_interrupt_capability -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x45ee2b68 wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xeec88b29 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x008d9718 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x75d161b1 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x038c8aa9 wx_set_mac +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0557fefa wx_disable_rx_queue +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0d1ca1df wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x10b9762d wx_start_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2066c30c wx_misc_isb +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2158c40d wx_intr_enable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x251acc8c wx_xmit_frame +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x308d3298 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x30acbd02 wx_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x34b37cc4 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3bb5ec36 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3c18ae28 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3cb638b4 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x42550a7c wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x48de614e wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4a85a550 wx_setup_isb_resources EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3398bd wx_msix_clean_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x57ee5256 wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x594c8010 wx_init_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5fe9f508 wx_misc_isb -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5ff97341 wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x610eea27 wx_vlan_rx_add_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x61fbe611 wx_irq_disable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6edd7c43 wx_flush_sw_mac_table -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8320c235 wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x84737185 wx_napi_disable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x86a644e4 wx_setup_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8f4a43ac wx_free_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x943e6596 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x96bc358b wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9df4af51 wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9f4cbcb7 wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa03d05d7 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa1a24a9a wx_change_mtu -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa2be7455 wx_set_rx_mode -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa306334e wx_set_features -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa6b1beb6 wx_napi_enable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa92abc63 wx_xmit_frame -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xad21abc7 wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaf2432e0 wx_clear_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb037df95 wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb05c4eb2 wx_clean_all_rx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb322285f wx_configure_vectors -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb8c62a35 wx_intr_enable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbfa43ea5 wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc196a4c3 wx_start_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc4db8936 wx_disable_rx_queue -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc69326ed wx_get_drvinfo -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdb82e888 wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe0963c2d wx_set_mac -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe95de764 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe9c32345 wx_configure -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfd43fa73 wx_get_stats64 -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x238650eb hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x46dca87a hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xac95f6e4 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbee1c7ce hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdac981ad hdlcdrv_register +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5edfd615 wx_reset_interrupt_capability +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5f123732 wx_set_features +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x634c4308 wx_change_mtu +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x65255521 wx_setup_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x67806566 wx_configure_vectors +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7666058c wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7925b09b wx_clear_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9954bb28 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9955aeae wx_flush_sw_mac_table +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x99bc40de wx_get_drvinfo +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa18842c6 wx_vlan_rx_add_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa24215a1 wx_free_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa5217ffc wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa8e21f9a wx_init_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa9a8dcf4 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xac07e50a wx_free_irq +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbb4661e7 wx_configure +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc5d67fb3 wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc64fa858 wx_vlan_rx_kill_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc87c6051 wx_clean_all_rx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcd05bb9c wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xddccf79c wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe2ee1f41 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe2f040ae wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe4de5948 wx_set_rx_mode +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe92fd700 wx_clean_all_tx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xef28787d wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf8fa34d8 wx_free_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfcabe7a6 wx_napi_disable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfdcfe0af wx_irq_disable +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x286ce978 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x494945b2 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4de7c171 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x91082838 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa12ff787 hdlcdrv_unregister EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x62eb612a mdio45_ethtool_ksettings_get_npage @@ -3373,1091 +3373,1091 @@ EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x42dc6d4d cavium_mdiobus_write_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7d7cd73f cavium_mdiobus_read_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xb3aad2d9 cavium_mdiobus_write_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xdfa4fa41 cavium_mdiobus_read_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x9fb9e719 mscc_miim_setup -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x2792f29f xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4517618e xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6c6ba572 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x71abcb18 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd196828b xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0x14cc9e2d mtk_pcs_lynxi_create +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x3edbb800 cavium_mdiobus_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x743ce69d cavium_mdiobus_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7e79322d cavium_mdiobus_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xfcdbf791 cavium_mdiobus_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x0d087be8 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x2665d2e0 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x8cdb5e9b xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xc52aea70 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xcf48096b xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xef7fbcbf xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0x09e47a48 mtk_pcs_lynxi_create EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe9221a05 mtk_pcs_lynxi_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x309e0bae bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0b8d8de1 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa18abcd2 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa1d55565 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xf673a8b2 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0bd3ce72 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x81ae67bd pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9a858d19 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc61dde15 register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xe77d67d2 register_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xfafc9ba4 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0ab20a70 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x63ca2478 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x6508adfe team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x6c46bbfe team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xae236421 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xc6ac9353 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xd4ef25d2 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe1d3af53 team_options_change_check -EXPORT_SYMBOL drivers/net/usb/usbnet 0x059910c8 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x09cf3106 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x17d74670 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0630bee9 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1649ae6d alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x26bd4d52 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x59e03641 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x84d185ba detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8df1c5ab attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa0b450a9 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbacced4c hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd4ee22d7 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf325695a hdlc_start_xmit +EXPORT_SYMBOL drivers/net/sungem_phy 0x372e18c0 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0269c714 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x58489473 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x6fa29cfa team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x91e629a4 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xb2d222e3 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf31210bd team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xf5da7fbb team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xfdb3a1db team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3811cf2f usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3d69e06a usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc787ac5e usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0dde8ddd hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1a66d2fc alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1bccca60 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2f3be972 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3afae232 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x461b2331 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x553bae9d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x73f07091 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9530f87c detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb4df9738 hdlc_start_xmit EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x11b0353c ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3664fa1b dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x378bc837 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x20736815 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x27768b2e ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x368d9b78 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3d4e574c ath_hw_keysetmac EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60dc686e ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81eac2f0 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81f8a147 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x82945120 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x87eba287 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9ba8062b ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5ae67806 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f55ee20 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x91ee26a9 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9615668d ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa2984495 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb1b30ee9 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2cbafa5 ath_is_mybeacon EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc7c83064 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0985d9a ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1756865 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xee4f0e1a ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb751d47a ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfffa2550 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07e953f8 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0875ddc3 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f383457 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1443f0b4 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15b1bd1f ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16066a01 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18a44dec ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19c7ca2c ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a1652cf ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e36182c ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f33c5dd ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f7eaabd ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fee66a7 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26fad911 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2e24a894 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30c01c4a ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33e8b391 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3743f48f ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ba3bd59 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e22f33a ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e51dc9a ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47fcc39b ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49387d1e ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4be3df36 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56b196b6 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d589015 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x61367d16 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x629eb929 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x633172fe ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6340e8c7 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65d17515 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b0e164a ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d645f90 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x762e3043 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x802b1cd7 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99fdf950 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9fe101aa ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0e4001a ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7a77998 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9aa572a ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa3801b7 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb07a4d8f ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb2e56fcb ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb45a84c0 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4f9a0ea ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5baf9d4 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9944175 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc50536a2 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9aca7ab ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1240565d ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1795d588 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18e028b6 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a8cbdaa ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1acfa0b2 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fa50673 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29d6258a ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3febeee9 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x42cff882 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45813f7e ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46b21058 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4eb606a2 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50e7c5b3 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52cf91ca ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58a0ff96 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7024d917 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x759a8fc0 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79affb05 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x829e93ed ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x885c4725 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d66190d ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90eeccd3 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x936976eb ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96d5a90c ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97aa460f ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f8f2848 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafdccf78 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5a77a2a ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb984a484 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd17d4bb ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1c3c468 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2aea22d ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc32177cc ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc37bb678 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6629e7d __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8416ad8 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc944256d ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9eff968 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbc115c6 __ath10k_ce_rx_num_free_bufs EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc20d178 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc2b6945 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd01a37cd ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0c696b8 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd170de5d ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6b4bec5 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc67cdc5 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe860e1f ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0252f379 ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0272485a ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x06fd3db2 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0d1f2ac7 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd5b6fae ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xced036fe ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xced9d3ec ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2043669 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda0e7038 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdab33739 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc10bbed ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde57aa7c ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1672e00 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3134274 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe34e94ac ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9eea193 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea024842 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed47baef ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xede93849 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7090725 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf757402a ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x05cafc47 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x073fc5cb ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0837e16b ath11k_pcic_map_service_to_pipe EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0dae0eb8 __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x107ae1f9 ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22577b21 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x27f1a99a ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2fc47394 ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3eee1962 ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x49eaeedb ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4eb30c73 ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4ebf6a6b ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5da96d84 ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5df6a78a ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6323bb75 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6408ba4c ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x666c4664 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67799ad3 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6eac8273 ath11k_pcic_ext_irq_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x750b7b37 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7d944f42 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7dcf8730 ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x84427986 ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x87306d39 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8800895b ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1269718b ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e358dc5 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e80ec15 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1fc24d49 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2370f677 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x29eb10c7 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2de9f036 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x31b9b417 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3698688d ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4cd96adf ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4fe361c3 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5d282f32 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60f6a133 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x617237a5 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6cb9b832 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71b02f4c ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x843f42a3 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x84c4d525 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8949be96 ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x91ed5fea ath11k_ce_get_attr_flags EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa4082773 ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa7422cf2 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa900c16c ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xadb56100 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb137b3ed ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb8137d93 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbc232d81 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbf186e16 ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd19080db ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd2cf36df ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd95b8903 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdce06970 ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe23c9c5a ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe7c07de3 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb149313 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9f2e0ebe ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa2587de9 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa57d619d ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbda8f84b ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc06f6eab ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc4a9ba44 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc4d52c1d ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0f2847d ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd8a4e70e ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdcc4f0b2 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdcea9980 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe0010d6e ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe42f80f7 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe8c6de10 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xea2de934 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xed744d71 ath11k_pcic_read32 EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf80de0ce ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf3aac30d ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfb6ea1d8 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ba2823a ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x17019ea6 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x219b1a9e ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x26648982 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2ab5b4b9 ath6kl_cfg80211_suspend EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41724177 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x581462ed ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c37e74f ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4e522acd ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x510e67e8 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7e760be0 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 0x9920c714 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa1643b46 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xae9f1c24 ath6kl_read_tgt_stats EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd90bf7f1 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf69da10c ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf7a9443f ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1740c4b7 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbcfbfcd5 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbd09fb07 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xce1c5f36 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcebffadc ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd111267d ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x04f440e9 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0cbed9ef ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10a879bf ath9k_cmn_debug_base_eeprom EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a0aa030 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25f5bbf0 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2938995d ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x32177d69 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x32b51a67 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x32d449bf ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5310a8c5 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x60695096 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x642935b0 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7155f454 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x736855de ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x755576c0 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a98be08 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x88656c35 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8981e61c ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8a3d2960 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c80bd17 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa31d882a ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xae507743 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb13249a1 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcdb0c07e ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x27bcf668 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41b27b93 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x475d1523 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4881d550 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53534e58 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5dc8635e ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5f67396e ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x683e5b03 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8e4154bf ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa181b92c ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xae7bb6bf ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb2c0029a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb502213f ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbc03d316 ath9k_cmn_spectral_scan_config EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf0f25112 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xff7e6986 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0130f171 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03311afe ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04682000 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x046cb292 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x058bb900 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0661f606 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06da9c4a ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c7a07dc ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe40e8eb6 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe76c9978 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe979e309 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeef7224b ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf2c0305b ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfd348be2 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0009612c ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0037d3f6 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01a7f54b ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0412624e ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05b4a35b ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0628e95e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0994a5c8 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e3b4150 ath9k_hw_gpio_get EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12e08c9b ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14274815 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fbcf92c ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25e7fa09 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27358e48 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27df6158 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27f37526 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29fb60fd ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c8ba4ad ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2de8cb10 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e272b6f ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30b3c503 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34e7b5a0 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a5570b9 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a60d576 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a9595e8 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b41d736 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b8d23e7 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3dc5623a ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3dd9e408 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x441c79f8 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44cdc3db ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4588eb02 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45ace86a ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45b11722 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46be107f ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47f7940a ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d091bb8 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dab0d98 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52476b9f ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52dacd58 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5369cef5 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5481172a ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6022e066 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6290011c ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x632a40fe ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6337416b ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a682011 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bdffab2 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cdca8e4 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d3607f7 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f56b1b9 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f6310e1 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7551b48c ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7716f23c ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7885854e ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a773b06 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81db695e ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x879dadec ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8891ab41 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x894a60e2 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8aa9b009 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d864b3c ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e9df283 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91211d0b ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92defa1c ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x935b6945 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x972958f4 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x992573f4 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a3c866b ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a8275ce ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9afeaedb ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ce2dee7 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d7c07be ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f7fc756 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa24547d4 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5d86e0e ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9773389 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa786af4 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf200dc6 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0c8600a ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2b0d736 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb36354c3 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6f3342a ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc321b94 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbea09ac6 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0c6c970 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc44e0454 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc48372a5 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91b9e7e ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccdc9824 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3482c7f ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4ac0f91 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6664bcb ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaf6bb24 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd921f50 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde83a2ce ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe06fae3a ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe36cef9d ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe703c057 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea35497f ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb331cc8 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb4ee819 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefeb273f ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf047fb30 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0f92bd5 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4c6c748 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9a7f7ed ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbbdd3f0 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa7e2c689 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe3e26367 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf61efdc5 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x00ce1f9c brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10b145cd ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10fa6d5d ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11332ed3 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12f2cb9a ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x145e0a74 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15055489 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b58b473 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cc45687 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20609175 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21d4a47c ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c603b89 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cae1b45 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x315d50a3 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34bd7afa ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36d849e0 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e1dc753 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40f0b987 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46fa7cf9 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x493185b4 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49386856 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49556d36 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b3b5e15 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4edfc580 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4efa9897 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51190823 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51c1299a ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53b97ba4 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5492ddca ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5681754e ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x575a0ad6 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b9983bd ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e6413ea ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fa39d81 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6281bbf5 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62fd4ed5 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x647b3fbc ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x656a5110 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a3450b6 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bb20049 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fc25fc2 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7460e576 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x754e32a3 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77f7d2d7 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d1f47fa ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8201062a ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82acc4e6 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x832acee4 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88a7a9dd ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9012d0d1 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92230f73 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9482d892 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x955ab627 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d64c4ad ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dc1c559 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e7b4236 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0b9664c ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1e4fa69 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa578c83b ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa62bc8d5 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6eacd28 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7978fa5 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8a413b ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac912d08 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2889894 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb66abcbe ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6846883 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6ee6699 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9b9a55a ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba642a8e ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbad3e559 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc92c67c ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe6f03a3 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbeb356c5 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0f46e47 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca526895 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb913646 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc77f2b9 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce8deb2b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0703b6b ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4dc94dc ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4e8b1ce ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8ee324f ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd958f886 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb2f510b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb5bc171 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1592a92 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2f30aa6 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe31cda15 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe36d072e ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe41d59dd ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe46a5f3c ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe59fd7c9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb064455 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed4d62a4 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf26e39f3 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3f81e90 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4cc6701 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7b2806d ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbaef63f ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x8ecaf1c7 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb939907a stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb9a76ddb atmel_open EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5a421412 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5e3e01a4 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6aa439c7 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x926ad8a0 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x36d6f7e4 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4603ea96 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x55777e40 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x63504820 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x70d357e2 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x800a40f9 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x80d0dfc6 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x917c017e brcmu_pktq_flush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb704cb42 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbd1473a8 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcca18ef5 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa1c34451 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa2709db3 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb7d13475 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcc0c29b0 brcmu_pktq_pdeq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xda9b0aad brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xde16ecba brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe99f648c brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfc134fa2 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfdc1dca2 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x48e1c2ea stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xc933125b init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xd6cd5cde reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x147f7107 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1d337bff libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x22b0f557 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2a88982f libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2cda1b9d libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x38d8cac0 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x40d8a061 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4729223e libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5f41c45e libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6493dc4f free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6592e953 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x82258905 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9964c566 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa390ca71 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb4dbd99d libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb53c8853 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcb8c2fa9 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd46a06a1 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe1123f2d libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeecf1a8d libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00836cad il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x008d2e7e il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x052a4e92 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06dc29e2 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0bff718b il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e39b382 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fb7483f il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1035b274 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x158c99f3 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a984a74 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fd748c1 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2362a228 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25597d0a il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25d87125 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2702a3ba il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2aa8fefa il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b443f4d il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b708566 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfea7eae8 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x49faa798 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x54041449 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xa96795f1 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1144c5b8 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1c0bcb6f libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1ffd2f09 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3b9dd908 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x49fb3816 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5d16e8f5 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5e4db21e libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x602711b1 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x634534d4 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x68889f76 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x72bcfb0b libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x87d41004 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9beb8d2a libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa5374237 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc2ac684f libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcb2d294a libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdc1af05f libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeecf0c24 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xefedf1c7 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfa3e45b7 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x001ffa62 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03eaeae7 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x077b3626 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ca9f63e il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0df585f0 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12461eb4 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12d41b6a il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13672ba7 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x151ba233 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15b4432b il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1619f8cc il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x167927f7 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bd28681 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cb5a3d6 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1fafbda3 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x212c9331 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2294e573 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2443934b il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a688244 il_free_channel_map EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f4ce269 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35370ff7 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36100690 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3696567b il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36c2f9cf il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38659dbd il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x388d4132 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3958da35 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3be5838d il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40ca8400 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c0c332f il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e861ffd il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x310c4d34 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3379c623 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33e14913 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33fb4845 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34706d6e il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3898566f il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38ca205e il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c340d11 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f726d1d il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40f95549 il_tx_queue_init EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x41bf32c1 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x476201ff il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a8f80d2 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4adbaadf il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f377b9e il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5619ee9f il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56bdebab il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58456d73 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cc86117 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d25bdb4 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x671f186f il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6761786f il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69d8f33c il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c713865 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d673dbc il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fb625bf il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7236fa70 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76f79755 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a96b08e il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7abcf5e5 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cbb1497 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x847ab462 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84c22a1f il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85ca2eea il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87f7c1ab il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x893be94b il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8972c3b4 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b95460b il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f302d42 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ff6be22 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93f6272d il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97b54837 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a5124df il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b6a1dfa il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x468de46f il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47bfc36c il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x488c44e5 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49e55a44 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51c732be il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5323c308 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59db1bcc il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x601cd011 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6506b6a5 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65dd185c il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x679f0806 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6aed6448 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dadcb72 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e24ff85 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e979ff7 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71dc69ac il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x735e7dd7 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x755bda83 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ab05765 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ddaa906 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80d053ae il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82101f23 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85fdc995 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fcebbae il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91b9f1c5 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96307727 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x979bc7a5 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c560701 il_fill_probe_req EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e21d9b0 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0742bad il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2ee9462 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6af3d7d il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa71e544d il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa75108de il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8343b55 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa90f48d4 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaebb4c67 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb31c44ff il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d2b6990 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f6c11d0 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa77919e7 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7c0c657 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8870c18 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaae49b7f il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xade2ee25 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae8f0190 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaff33330 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0786bb3 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb36d5f4d il_get_passive_dwell_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb76465a2 il_send_stats_request EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc96fb36 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbddd6f99 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf2a0631 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc03ea3b8 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc04f606f il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2cad82f il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6f1ddc6 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcaf27485 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd034150a il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1d04e0d il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1e7b724 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7d2d3ae il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8836646 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde651907 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1515093 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4f59fb9 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe67c71bc il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6c9b105 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6f6344b il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea6603c6 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xecc2b7ee il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf37ce73c il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5c67b70 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba7fc0f6 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc227f36e _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2ab8ef1 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2b5ad57 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6608d49 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcabcbd63 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcadf63a1 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcaee39dc il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd078bab9 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2dd5bd6 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4bbdd6c il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd736f79b il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7e5591a il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdaa79f7e il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbcb0aa9 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdbd97642 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd887a66 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe00b0cdd il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2707661 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2891e5c il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe57f2ddd il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebd15568 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec558516 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1f12e90 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1fbfb00 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf23ac6b3 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf50b2bfb il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6efbefd il_send_cmd_pdu_async EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfca12e4e il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffed3e21 il_setup_rx_scan_handlers EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0fa4d950 __tracepoint_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x18eed9bc iwl_trans_pcie_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2e680607 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x51079490 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4d7af5eb __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6f71a791 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8b48a065 iwl_trans_pcie_remove EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9828a56a __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9ab1e12e __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb396913a __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc60d10a5 __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x05bdebeb hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ffd8ace hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1146dc07 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1328ec65 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2e4e5252 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x478f3088 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x54a875d1 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5c047f81 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x60119d78 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x60a84d13 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x63bae87f hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x71a580c1 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x124c3c44 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1638e0dd hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1b783007 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2210dd8d hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x237d44aa hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x29475dfd hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2d5e5570 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b9724a6 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4cf3906f hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x671e49d1 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67875c5f hostap_set_antsel EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7a558d0e hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7ab8ff85 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7d0446a8 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7f794ac5 hostap_init_ap_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8c31ef03 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8fb181fd hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x91044199 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa580f4e hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x81db57b8 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90e8138d hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95c29701 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a915dc2 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9afad49c hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9e528a78 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaaf0942f hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xac0b8d59 hostap_remove_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb9366c33 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc66de2d9 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc93f1c8e hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcea9a602 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe2400dde hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe37cad5a hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb70a89a4 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcecd8894 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdd9fa650 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe75a9327 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe9db3171 hostap_init_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0997c237 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x149abfb6 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x22624ca6 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x23893e7a alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x28fa9c2e orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x333f4478 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x40741a31 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x69fcd149 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8d601651 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x92111407 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa2cc5b3a free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x01a67c82 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x22243f8e orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x27e1d716 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4bc6ad39 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x71418e16 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x90f8a02e orinoco_stop EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb8b47635 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc1051a83 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc7bac08b orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfee3e41c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb0a6cfe0 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb7850969 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc52a6f7e orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc8c3dfa0 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcb21b4c1 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe87e94ba __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xea66b368 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf3e109b7 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf767614c orinoco_process_xmit_skb EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x47d2b12f mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa4d694e6 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1094d5fe _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19a65f20 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2115772f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x98a280af mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd79a39ad rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x021ad940 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0553ce29 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a561314 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12b8ea40 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1849cf38 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b420044 rtl92c_phy_lc_calibrate EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a4b471b rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31299de4 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3188ebe0 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x336f1600 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36faa098 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f773dca _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44f543e9 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e0666c5 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x502907f4 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x56f7f5e7 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x581fc9e6 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b0b6ae3 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5cee183b rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60484b09 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a8008ec _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d224244 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x757b0f5d rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e7827e9 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x892d690c _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c8669a0 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91a19894 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa03428c2 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac2928aa rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd15eb51 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdb6a011 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0790927 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3457e83 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc61970ef rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf88bc1f rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd12be615 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd38f4764 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebf4ca17 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec72c813 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf32ffc61 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf48e1b03 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8298faa rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd4d6a95 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe69ca17 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x292f4129 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x58b76416 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7adaf10d rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa60ee33d rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9653e856 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcf0aded8 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd3cb7647 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf804c0f3 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x044eeddf rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06e8aa50 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x25b915e1 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x26363d93 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33cdb5e8 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35ac150c rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39fe9b9f rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b7472a8 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b9b8185 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4040a41e rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41002a5b rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x48187266 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5da11f0b _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69c5e6c1 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6cf005a2 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b5c08b2 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85e92aff rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ed6723f _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9da09b2c rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1522e0c rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf3ffb35 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8038d30 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc8706ef rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcde37e54 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd36071be rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd404ece4 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd80f501e rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd3610e9 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdebd8696 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdee25774 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdee9d878 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe127b1d5 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe443da1b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5a98c60 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9500665 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3768266 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcb23bfe rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2888f68f rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4d34c3d0 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x94b37cbd rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9568bc95 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x33f12c88 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa4d697a2 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbb46bb26 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc55741c1 rtl_usb_probe EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11db10e0 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x122d2bdc rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15ff9f0d rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18b0d453 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b339dd9 rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20e7e813 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25bc405a rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ac0cff5 efuse_shadow_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36fdfaaf rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x373954a4 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x455d4b00 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e1dd421 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x318b72dd rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x331b5bbe rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3bd2a510 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ed67c91 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f7d9a94 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e243f83 rtl_cam_empty_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bbc7113 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c5bd50d rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60b19f1f rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67678fa1 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69da29b6 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x719baa3b rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77672019 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ad9c6c6 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7b3e638f rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5582ac08 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62644983 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6463fd97 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6edbf6b6 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f798f9f rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702fb4e9 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x709e1320 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72f960f5 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8badaf38 rtl_cam_get_free_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f36fb34 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa01d4336 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa05d78fb rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa06e25e4 rtl_init_sw_leds -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0b7e142 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaba770f1 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb00efec3 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc0d87e03 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc80e812d rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8892ee7 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdba93243 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe25475e7 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92478827 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6006397 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb88a3eb4 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8bdd862 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd27ba93c rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3fe0207 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd56cfac0 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd79be9e5 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbb7eb4b efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb1f8523 rtl_cam_add_one_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xecfde944 rtl_init_sw_leds EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffcb43f8 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x397ccb1f rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xa4bcbc92 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xd29cb1ad rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x3d5eda93 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00e960a2 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12f7ef70 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d2bf785 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d6ebd2e rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x8a4ae6cc rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x178a9141 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x61aa9c7e rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x8e68f740 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01e3a616 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x103929eb rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x130e49da rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1673042b rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17004f38 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17198bd9 rtw_phy_pwrtrack_need_lck EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc2d072 rtw_tx_ac_to_hwq -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1eb56817 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22c1f0a2 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2905a2f0 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x248f111b rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x249f150a rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28355918 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2bbb4bd4 rtw_phy_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x343f203d rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x369c830e rtw_dump_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x379a68b1 rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bddc06a rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x392de642 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a3409db __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3dbed026 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3fb9d273 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4008272f check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40874c9b rtw_phy_cfg_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4512d093 rtw_tx_queue_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x456d3eb6 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4923d71c __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45c91649 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x477efa13 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4946492b rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4fd8bcb9 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5149a14c rtw_phy_cfg_bb EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5231d7b0 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55938054 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53564911 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53b68aa5 rtw_coex_read_indirect_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5abda4bb rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x632f4a4a rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6744e2d6 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c8880f8 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6cb85601 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x739b2c42 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x780fb7a4 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x785c374a rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7af951c2 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d076c23 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e9fd205 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82c318b3 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87a24fc6 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c3fef81 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9481f8e6 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9810cfe6 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c7bce2f rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d308330 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d7516e7 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3294491 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xabb234a0 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac0ddbf2 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf4088e6 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb20d4f8e rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb5ec5fc9 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb95701cc rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbd4e2ef1 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc278ee2f rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc382da16 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc4d9388f rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcdc47a5c rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf12a876 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9d7f43c rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb55c492 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdeb8d4a3 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe22dc47a rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5a852f8 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe863d1a5 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeab4f9bb rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed22a453 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf04d30ba rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf16ffc06 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4987e56 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf7c08c3a rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfdbeb8d8 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x36600c74 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5608d6d7 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x690b85b2 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb101c661 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x11bf9f39 rtw_sdio_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x70e03744 rtw_sdio_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xd538ad67 rtw_sdio_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xf229ef5f rtw_sdio_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x1d4c17c3 rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x234e4b47 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0xdafa4fd3 rtw8851b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x10aef1ed rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x6730231d rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xfc956f72 rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x063548cb rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0724701a rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x08ce40a9 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1044d9cb rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1169d15a rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13298592 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14fcdacc rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17f783a5 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1bad5601 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1ef309f8 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1ef32856 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25dd422f rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x265d1731 rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x290cea33 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x325e0706 rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x336ef1f8 rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x35380e42 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36915b01 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3745dccf rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41c3d135 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44b96241 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x47977f4f rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4db9dc02 rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x512189b7 rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6148f0ef rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64745935 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64eff577 rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x684b1374 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70663f7a rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x742d5263 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7530baa1 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ab024b8 rtw89_read_efuse_ver -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82f9b994 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a042d99 rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b968aa3 rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x906d28b2 rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x97432ff5 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x587c7fbb rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d1f1f25 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x686e3b32 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ea6c1e4 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x72deadbb rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x746c560d rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75b88394 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7b566076 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e95b488 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x813d5c54 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x81d461c1 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x837a790d rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86288d85 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8654776d rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x892b26b4 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b530624 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8cac1d9b rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97355657 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b1dc12d rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0209fd3 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa189f4a8 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3953445 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7923ec9 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7fdd4f0 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaaf2561e rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe3d25e5 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc30a0913 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc61fb118 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd42929eb rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda4089cf rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc2a8a6c rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf4c8ae0 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe2637d3a rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6f2e7bf rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec211918 rtw_tx_queue_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf16b58e1 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfba6e7a3 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfdc3958f rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2f4916e4 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x43a69560 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x49db1cbf rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd60e8737 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x2afcd3e5 rtw_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x2c689754 rtw_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x5da83bb5 rtw_sdio_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x8a1b85eb rtw_sdio_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x5525ba82 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xbc448958 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0x7d6e1f1c rtw8851b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xb73aa122 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xc0a473d2 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x5b013fbd rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x019ab3f9 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x05989130 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b664324 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x135a1171 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1aac02ec rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x256e0f44 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2678a3c8 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2682a493 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x269134b1 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2ac2d646 rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2b7a422e rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x340e8905 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x409143a1 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4ff31663 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x56b2989b rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d1b74dc __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5e93fcc1 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x625e2ad4 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x62f8a586 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64477311 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66de4c18 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6ca698d8 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d249121 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x71fee076 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x782ef596 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7936c33a rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7da72bde rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82678368 rtw89_encode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x899a60ff rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8ee6043d rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f8b1f5b rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9a3cd900 rtw89_phy_read_txpwr_limit EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac85705 rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa4b1dcaa rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9f9a8a1 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3d5af08 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4ff0480 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8f5286e rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc50c6b18 rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcce16717 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd49887d5 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc8930c8 rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdce2c98d rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdecc9713 rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe058cd80 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe097fa03 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe106de94 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe1f6e791 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe2e707bf rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9eda5f44 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9fd4e88b rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa5b059a5 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa285f7b rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3654577 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb44d6ee5 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb7344dbb rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba7a7fcc rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd60c64a rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd0b3b1ee rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4cb7b5f rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd5b08afc rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd674fb56 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xde9f0041 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdeb73267 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdfcbc8c8 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe11b2b60 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe379a61f rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3c54904 rtw89_btc_set_policy_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe586cc6c rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe80adbaf rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeb02544b rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee9fdc71 rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef050a98 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9f32bd9 rtw89_encode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa74fb42 rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb583407 rtw89_decode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfe2ac9af rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0a08a5a6 rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0a4c8400 rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x36e892ed rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3e03fa8e rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4a16814c rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x55f7509c rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5eb7d4c2 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3fece46 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe62eb7d8 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe62eea5e rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6c93bb1 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe7abb3f4 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xebfe43f8 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xededb323 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee5777a4 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf012b4cb rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf07e0f25 rtw89_decode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf3cbef81 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x179fa301 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x58a9cc29 rtw89_pci_config_intr_mask EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x744e9410 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7515220e rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x775edc9b rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x801f27a3 rtw89_pci_disable_intr EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9e714bab rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xaf2dc1d1 rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb6eadb0a rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb779fc09 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xba457935 rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc1a2cd80 rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd41a7a5c rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe70dbdc3 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xab933c65 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xaca33469 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb2904b34 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc5c29ebc rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcb4caeb7 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcd523af8 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcf5c226b rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf2529777 rtw89_pci_enable_intr_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xc22c4144 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1863ce6e wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4ec86eea wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8505cfd1 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xeeb6b957 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6669a17b fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbfc8c259 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc61d10a3 microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xe90d37a4 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1a949415 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x84070705 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdb38d781 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x176320f7 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3700122d pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x38da2aab pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x07add4cc s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x118c42a1 s3fwrn5_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfd1370df rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x48c28827 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x374c0dc4 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6ccc1c3c wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x92e898bc wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x9c7f163e wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb829ef05 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf6a6eff5 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x541c4125 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xd6bb4a0a microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbf09d4e4 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd0b03e8a nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf3bd42ae nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xd0803195 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x87f76f28 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdcb33c34 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x59b70af6 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6c7e1ef0 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x94f56b5b s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc89200b9 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8661b8bc s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe7fb3d17 s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x37141bed ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4264b674 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x44f001f2 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4865db8a ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5c45258d st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x728f345c ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9d6074a0 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xad4ded3d ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdac6d391 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe1872aa2 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0368785d st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13df0509 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x15bdfc9f st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1aed1356 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4bb6243a st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x56d97013 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x695d0dd0 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x72211d0f st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7bb21d31 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c22848d st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8b1ace89 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8f18a47d st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa12da76f st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb93a5cde st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcce63c32 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd10f769d st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4a9c412 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xea676855 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/ntb/ntb 0x101d66e0 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x1cdca0b1 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x227c74d0 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x3d11a992 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x45145274 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x56a75ccf ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x6266081e ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x6f452026 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x723e6c24 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x749c91c7 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x850b648f ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x8691e02a ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xa16dfd7d ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xa77b9cbf ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xbe3dd0af ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xc90f4fb4 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0xdeaf85eb __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xdffd72a4 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xf193bd1f ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xf30c5c3e ntb_set_ctx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x09870aa9 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x8090022f nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x01ef03ef parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x092c4035 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x0c9966b8 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x174e902d parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x17f2d8a1 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x269816cf parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x46ee3248 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x487d7e54 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x4b032808 parport_wait_event +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x10ce7cb1 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x18702331 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x34092046 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4be32cff ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7661a006 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7a6678fc ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8f16a8e2 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc1d73541 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe2b9af26 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfece0b15 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00847f4d st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ad43d89 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2a45f6fc st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2bf5a40c st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x51029248 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x561ffbf2 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x667104ef st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69746638 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e564752 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70cab431 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x79ffeef5 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f0651d5 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa309c654 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa522e7a st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb7a6d6b6 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xde31ce22 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xedbc1303 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xedf9754a st21nfca_hci_probe +EXPORT_SYMBOL drivers/ntb/ntb 0x008567b0 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x1919fab2 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x2c9f8b3a ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x490844d4 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4c03b687 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x5e70af66 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5e7688d1 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x65b0b762 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x78df575d ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x8e3600be ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x96be26d5 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xacbf594b ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xaef0bcd4 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xb388049a ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xba7aa0a8 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xdbaa06c0 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe1580e59 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe3013b11 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xf088110e ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xf2074e4b ntb_link_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x8e978c37 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb2eb16e2 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0a8d6bcf parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x0bc035cd parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x10b40416 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x17df13d6 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x18e39b63 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x24ee0348 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x2ceac3f4 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x2e1bec76 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x3014541e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x3728dde8 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x3bf735f7 parport_unregister_device EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4fa5714d parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x5b0e14d4 parport_ieee1284_read_nibble EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x74642f6d parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7fd80514 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x855a1529 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xa5033689 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xa5c4184d parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xa90890cc __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xaf61ad07 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xb114204a parport_release -EXPORT_SYMBOL drivers/parport/parport 0xbaa30eaf parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xcc66db0d parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xcda6f07c parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xd68c5a97 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xdc7cf860 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xdf43c387 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xe185eba2 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xe873b176 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xeef0f9d9 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xef7b8fab parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xf07f8a34 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xf9ad07b3 parport_get_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xad753c7d parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xdb84deb1 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1edb9a98 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/parport/parport 0x5ea678ce parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x77de576c parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x7ee2522e parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7f23b28f parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x85052fe7 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xa24b1a8b parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xa3155eff parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa3e4bc82 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xa981f1a3 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xac29d64a parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb17097e7 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xbb7c9761 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xcb55795f parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xd14f9b97 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xe9e0aaf3 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xf0a4be3e parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xf8412150 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xf9777da3 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xfc7132d2 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xfd82dbd1 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x1f9c4e55 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x73eca23d parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x090e8073 pcmcia_register_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3f5ad3d7 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4299d586 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4ec49f63 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x50f8f3f4 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa22e3b4a pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb2754f92 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb6aaae2e pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb7f9bb3c pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3db96787 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6d4b731b pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8f7a0448 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x91cee367 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x94355bef pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaec5a196 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbb0fdfe7 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc985ab54 pccard_register_pcmcia EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe995862b pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdc2fe416 pcmcia_socket_class EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x5b60c37a pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7f897561 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x85e8cf2b cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x918fcefe cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xdb790c54 cros_ec_resume +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x462e694e pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x51a1be07 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x661abf1d cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x83f59aad cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x8d5dd515 cros_ec_register EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x20d7cf13 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xd3f1337b rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_glink 0xd7119b40 qcom_glink_native_rx -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xa0e8dc3b qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x989eb75d qcom_smd_register_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xadc8e61f qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x5689798f rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x735554e2 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0be33e9e rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x169d0d19 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1da93420 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x24955032 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42561663 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6c32246a rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x76ae45be rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7f494fed rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xac630529 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb16da8f3 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2daccb1 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb418c869 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd1225a0b rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd44170fc rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf0e7cdef rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf159ecf8 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf67a350b rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfc4241c9 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xff054556 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xd4348561 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x21fedf0d rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x4d0c1669 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x13663320 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1dac6d73 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x24ee7487 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2d4b5319 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3463b8c0 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3b353ba4 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5650c575 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x577cfa55 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7b9e2c8e rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x939ed270 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa5be513a rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xac3444ca rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb5e10c79 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc3e096e8 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xce5a1ead rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdc7a1582 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeb6bfe63 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf276c281 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfdfe1f85 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x6a290719 rpmsg_ns_register_device EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x52049509 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x81d0fc79 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdf49f1a7 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xea6a0099 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1583a52c fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1b83a32d fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x436d74b2 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4acfe370 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5c20cb29 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6b2f973d fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb2374d82 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbb778b59 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc27e1661 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc282d22a fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd3658837 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x72af4bad scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8ce0e2eb scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x955e8233 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x963be8c8 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x04482eae fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d260d33 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x18024682 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x390469ec fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x50d2e5c9 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x613848b2 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa82c446e fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd50862b6 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd7f92caa fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe4fc5a16 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xec5ecfbc fcoe_transport_attach EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0072234d fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05437a07 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08280d81 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x099f0949 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d47a8c5 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11f303bf fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x157652fd fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1be4b3c8 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x04cb4c46 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a686af4 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ccfb939 fc_exch_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x232bc48e fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2364bb41 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27dcc0c2 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x450f32c3 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50ac6db0 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x520cfcca fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55aca86a fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55bf799c fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56575292 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x269c8a97 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ae3df42 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c676783 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fabc8c6 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x305069f3 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37478df5 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38bc4e5e fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a1e59b6 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3aada842 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d31ca40 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d3e1e46 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41bff2df fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42b63d5b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x478b51f0 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49c8d456 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fcb1a8a fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x533181b6 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x553a8327 fc_elsct_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x599a5067 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ea9c72b fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x672eaa12 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68517eb1 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59d43128 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6180629d fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66a54b5a fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x671f1e8f fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6bb8f3f2 fc_exch_update_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x725fa7f3 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7841c276 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79650ade fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79eb6c4f fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f05dba0 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x782f098b fc_get_host_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x82ce4d21 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x868a25a5 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8cabd95f fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e2b1335 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92fa0c4b fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94da3ca3 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95544801 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83f84a3f fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8685e09d fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a913390 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ac4d146 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bf28205 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c0b5a6f fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x914b7de7 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x987958fa fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99471908 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x996278cb fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a3b211a fc_rport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e29564d fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa141b1fc fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e424f22 fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2469f5f fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4be1b9d fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5272e0b fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa66eeddc fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacece8e1 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5476958 fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9bba54b fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba45f45c fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe85a8a8 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0545348 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc444432e fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6e7a4b1 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5d3c86f fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6dfbd2c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8349206 fc_lport_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb34db88 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc5cdbd6 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce0e5c6d fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc20cee1 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc58e3a9 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce915bf1 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0ed23bf fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd11f9f4b fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf4f0d57 fc_set_mfs EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5c9e2e0 _fc_frame_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6d63ed3 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf09574ee fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0de45b4 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4dbbe40 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6064bb4 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf38bceff fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf61754ae fc_lport_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfaedac4e fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc6b044a fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x135d0d41 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1d02db35 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1575e5e0 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x284394d9 sas_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9b3fd4d5 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd60ffbc6 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x368505c3 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7ce60090 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd2a802f7 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x469f3dfd qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x54ef2f8d qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x794f7b4c qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8656a252 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8877ee17 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa40392e8 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc8c4f752 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcb837f61 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf334d74 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xedf5f6fc qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xee54ceb4 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xee80f6de qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/raid_class 0x19bcbd2c raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0x77afdc8e raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0ec4c4a1 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xdb17bdee mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x00f31d5b qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0be832a8 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0e76cd10 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1c3b146e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x20f3119a qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3b86d987 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x61b1deb1 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6aeef5f8 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa2fd1086 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc448ab44 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe3f558e1 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xee72b842 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x15a5ebfa raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xdcec268c raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1fae0335 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2cf5f253 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x32c5cd7e fc_find_rport_by_wwpn EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x49a7124c fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5603c3a9 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x68d342c4 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f9745f7 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x793edd5b fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x803ea7ad fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa4422101 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6772695 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa787dd09 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xacabc5b9 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd5765c8e fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd86c82c5 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdf21f513 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf17e1ba1 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5c6412f fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfa8394f0 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0098837e sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x038cc95d sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2061cd07 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x293bde03 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x417c57ce sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a6498e8 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x522496fb sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a9fba77 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b9ed61b sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x627acf27 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x65d70792 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66a47c80 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7efc4a6c sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f2b589a sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x96f2c1e9 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xabf31966 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac34ece0 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe0245b2 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8054efd sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcc856dc6 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6055bc8 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdcc872e7 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd02bdb6 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd0d6e86 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf258aa6 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4d28434 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf87d918a sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa2dfb8e scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbcc13be sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1bed0f59 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x215261a5 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x219dac39 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2e346faf spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3c73ff34 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x491c660e fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x641a7cbe scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7a29c0e1 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8dc3cd2d fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa2e6c0e4 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa3d6e1a2 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6f538c7 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xadced481 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb336581a fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe3490ba0 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe9321813 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xec81eae4 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1d2fdfa fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x150c4764 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x389fe74a sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x393ba310 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bdecefa sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x465da273 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49887480 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a543256 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4aa14b63 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4be7491b sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c454fb2 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5fd141c5 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x867dfddd sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8aa0ae66 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ddf8b0f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92aa10b6 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9681623d sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98570d4b sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf11f5db sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xafc78f0a scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3e82111 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb888da8b sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6c09be7 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4e458b7 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd769e196 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd9b2679c scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf74e22d sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5031fca sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfabbb667 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfac428e5 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x03d7ae25 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1609b737 spi_display_xfer_agreement EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xad127d3b spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2d8015ea srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fe3e8de spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xce5b0b91 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf93de445 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x28249187 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2fb8ff77 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3c4cd1c3 srp_rport_get EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5817225e srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa8537916 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc3900051 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf1a30dc5 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x48f0c677 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9f2a881b srp_start_tl_fail_timers EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x21e76a68 dpaa2_io_get_adaptive_coalescing EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2bc276ca dpaa2_io_update_net_dim @@ -4470,9 +4470,7 @@ EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xfa0aedff dpaa2_io_set_adaptive_coalescing EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x07564e82 cmdq_pkt_assign EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x081d1a1a cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1295d377 cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f3ed632 cmdq_pkt_jump -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3211f4b7 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f6fab3f cmdq_pkt_write_s_mask_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3fc19424 cmdq_pkt_write EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x45dae4fc cmdq_pkt_poll @@ -4480,440 +4478,442 @@ EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x58cdc788 cmdq_pkt_poll_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5a123a5e cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bfd584c cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5d9225e4 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6a1ca063 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8aa532b3 cmdq_pkt_write_s_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8ab965b5 cmdq_pkt_wfe EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9194f23f cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9a96fe0d cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa40c93c8 cmdq_pkt_clear_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd529f27b cmdq_pkt_destroy -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdbc0431f cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdf8340fe cmdq_pkt_write_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf8de51ee cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe96f5336 cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x7e68420f of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x255f5a35 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x05cf6bd7 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x09034ac9 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x144c6b60 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x19610a03 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1b2e17a1 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2728c89d geni_se_rx_init_dma -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3e6c0e10 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4df51a02 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x52149d57 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x59001e6f geni_se_tx_init_dma -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x74a1d5da geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x86dfaf4e geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x89f87551 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xad8a91c4 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc42637b2 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc8bb233b geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcbe8a181 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xea50bdb0 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xffec8509 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1247e6cc geni_se_rx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2cac18a1 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4b355cc6 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4c4042d0 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4d0c2d40 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4d73f401 geni_se_tx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x59eea048 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6cc1c255 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6edbbf61 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7ef07eaa geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x98945e4c geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xba94ce71 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbc8c18bb geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc78281a3 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd15a10f5 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd4032737 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd7b67fa4 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf55402d4 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfafd02c6 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x10269cad qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7fedfb35 qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0f1f6a2f qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x20ca3d02 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0568b39c qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x08e51ce8 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x12e02b6c qmi_handle_release EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2a90c48f qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x36bec315 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x42a641c8 qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x438dff07 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x35730306 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4a452325 qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x53300c39 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x556a0827 qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7b2aa671 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x97b96447 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8507e303 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8c4a2baa qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb0904489 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc7a2d52d qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf8af244c qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x4fc3a78e qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0ba2350c sdw_nwrite_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c42f668 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x15c7904a sdw_extract_slave_id +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xe3344472 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0a349653 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0d729319 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1287dff3 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x15ac76f3 sdw_nread_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x185842a1 sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1b2ee709 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x186a30d6 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x18ca3abc sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c387e01 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d46ca62 sdw_update_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1e86cd9d sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1fbd9134 sdw_show_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3a85e2d4 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2b16865a sdw_nwrite_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x384551eb sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x394adce5 sdw_compare_devid EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4031fd2f sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4b032520 sdw_nwrite EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x53b34c1a sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5e134ecc sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x601d2c35 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x556c15bc sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5e47b070 sdw_nread EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6124a332 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x68d02dcf sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6c5cc54b sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6415fc10 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x653cf0bc sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7a5f4acb sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x92be18e9 sdw_nread_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7ec79b89 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ac14bd0 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8bb15563 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x908fe046 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93c0b0c1 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x97806d7b sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaacb41c6 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb06ea80d sdw_bus_master_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbdde7304 sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2c5c0fe sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2e85f09 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xce622b6b sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd4e24e2c sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbffe0bf3 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc78391b2 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd4cd6dea sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd67870c9 sdw_bus_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdff13b93 sdw_nread -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe4567a83 sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe8843b24 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe30df1ea sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeb53bf21 sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf8554b6a sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf9585839 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfffea1f7 sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x206f1197 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x22e3666a sdw_cdns_config_update_set_wait -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2f00d44d sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1145991e sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x24e093f9 cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2a70e9da cdns_set_sdw_stream EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4d6f65ff sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x67b203c3 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6b95867b cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9090f25a cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9729ade4 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd3f731b5 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd4b35b6c sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd4f76916 sdw_cdns_config_update -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdc8af519 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdf9b4ddf sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe66e7933 cdns_read_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xed0f0f64 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf0b0e856 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfebe8755 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xff2c73eb sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x69c68d75 sdw_compute_params -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x783574e7 sdw_compute_slave_ports -EXPORT_SYMBOL drivers/ssb/ssb 0x1d1029c6 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x25c06df5 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x2ed9ad89 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x34905534 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x4e1e8cf6 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x602ae63c ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x680924fa ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x6aba9370 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x71819e41 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x71d90ef0 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x72863937 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x732d70e0 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xa45de79d ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xac53625c ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xb16f23f6 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0xbf7eb919 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xc8f77891 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x444ac222 sdw_cdns_config_update_set_wait +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4a285127 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4ecc4b9c sdw_cdns_config_update +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5154e2fa sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6f89826f sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x741209d4 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x767a1f45 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x89895cf2 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x94ed49bf sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaa834996 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb5d19b66 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbeda7c14 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd1c89740 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdbb9c651 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xde7f1873 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x8e165721 sdw_compute_params +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xf993eebf sdw_compute_slave_ports +EXPORT_SYMBOL drivers/ssb/ssb 0x00b34252 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x01c92ae3 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x05692bbd ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x2e3672aa ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3449284c ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x49b86168 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x6c56fac2 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7244dbb9 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x8259d10c ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x98fe3779 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xa0691585 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xa0d0032a ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xa4cb7525 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xad4fed9d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xba02bff6 ssb_bus_sdiobus_register EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xdeab5faf ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xcb991429 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xd749997b ssb_bus_suspend EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe15c9f5d ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xeca7b1c1 ssb_bus_suspend -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25efd85a fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ffeb3fa fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x32fb4da8 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f9ee251 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51207edf fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x556c3dc4 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x59cda090 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ff6b88c fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x658d343b fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6cd2369b fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74c67c87 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7e613e68 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95f8dcfa fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa25a2beb fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf998824 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8b97baa fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbe5226d7 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1a06444 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc30ac1ba fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc8437bb4 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca64f788 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc589fcc fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7f5912a fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe5f1714e fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf6285669 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x15bf8fda gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x85bdd139 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xe58c6b62 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x905a1096 adt7316_probe -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x05d01f71 nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x313f48aa nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03e30070 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04ff940c rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bf90f6e rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0df18f20 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1305319a rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a0c4dbc rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/ssb/ssb 0xe4a0219c __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xedf8e7dc ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xfbb81c01 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x026b97b1 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07ac5d7f fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1948bec2 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c1e5ca1 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d489046 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x214ce74d fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b65f8f2 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f04bb23 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x350750b7 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38480237 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3b380a5c fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5c835a0a fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5eb70d4d fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x656162db fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8713eea8 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x88c6e51b fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89e83581 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8d250142 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa4a05112 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd39bbb21 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf7ab52a fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe05496d7 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf35a2be4 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf4bc0dcf fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9e05b8c fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x46ccd3b9 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5ef21917 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xad59ff70 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x845a52e1 adt7316_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x0b10dc64 nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x2272fe58 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x059ac182 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c2302a8 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c37a84a rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1117f10a rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x150ea5ed rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x202a14e8 rtllib_wx_set_encode_ext EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x261d9950 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x272708cb rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ce8c665 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d9512da rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e07964e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40e5ae0a rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x417a2492 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4dc3cfff rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x536cc837 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56562b71 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x599e6710 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59ee44e5 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59f43451 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62d5b941 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d1df520 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71531a7e rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7352d8f8 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73a5d81e rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x783c3cf4 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x816a16d4 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82c56723 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x860f322c rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88469278 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c46a52f rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93b9088f rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9411b8c4 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x956a1b82 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95b414be rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x992c8378 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa31cbc93 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf4d403a rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafa7da8e rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb64791af rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc52f9813 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9a432bd rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc9eafdf alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xceebae10 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfa5dd0e rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1ae2eb8 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd57236e9 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdddc3974 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf08cafc9 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf517434c rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x094a515f ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f28f30f ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x194ad89b dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2068da19 ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20e67b8a ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21c9e175 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26c8197d rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x408b083c dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bbc0075 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e17dc9f rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5700a725 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x594d5aec rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e618a60 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65f6786e free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67f37234 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x696b6164 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6de35e03 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6eaeaa10 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71570344 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72fa48b5 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7528c2d8 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7941d6b2 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7dcd4170 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x885f6261 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c7e5adb rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90995324 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa31f8445 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa88c047b rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa565486 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabb615f3 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad27d891 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb09436aa rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb28f1854 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb7804b17 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6492ff4 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdbc6f5d rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd389b2ef rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdec06b0b rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdff9d496 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4615cb0 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe78d2a1c RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf04f99da rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf22d35f4 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf386b831 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf43a8a3d rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf51f81f7 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9e037d9 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9fdb649 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc710c95 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x032e0704 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0949f0a6 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b3f28b9 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f6b1e44 ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16aeecd4 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c67b777 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dffa2e6 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x204b9620 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20be14b5 ieee80211_wx_get_wap EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25366163 ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2735a363 ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28587d8a is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a7a4fac ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x460e74e5 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bead89e ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5fe9da68 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x242da25d ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2488d265 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25884eb3 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x330d00db ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ddd624e ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45b1331f ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b8b46ab ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x548619f7 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a008539 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60d0a221 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x663faa35 ieee80211_disassociate EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6722029d ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a1e305a ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ac9f319 ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ee1fbc9 ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a658f9c ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82291cdb ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8277bde7 ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82c5130f dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86f77656 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96fa83d1 ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9752ff29 ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9dbbe83c ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa20975a4 ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2a8f14d ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa373e91f ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4813bb6 ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabf81a18 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadaa8e75 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7fafaa7 ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb886af5d ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1fc9048 ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc923c8e9 ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbf767a7 ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc5e61cf ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd539fc83 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8e143ca ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd916386f ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdae8062a ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe260033f rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe290dcbb dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6687d65b ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b215c49 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b73b90c ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6be37cd5 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e5189f3 ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70444d8b ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73b79adb ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x824d89bf ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x826251e2 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87d99720 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x891833db ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91525493 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91dc100c ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x922fc75c ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92676648 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93f62ee4 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94f24d46 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97bf63ea dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f1a066b ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5930dd6 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9e0cc7c ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7f8fb2e ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2321794 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7815bf8 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9e6dfd5 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf9774be ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6de15f9 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda673b69 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb32a514 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2da7f78 HTUpdateSelfAndPeerSetting EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3b98be9 ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe586e293 ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7c77782 ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec8dc0c6 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef82e60b to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf422b7e2 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf44012d1 ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf446a133 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6c2681b ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9f4be76 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a4f3e43 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0cdeec77 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1080ca34 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1220acc9 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12620546 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12d124d0 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x144dd124 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x261e0a72 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26d48ad2 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2aade4b3 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b74ec70 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f75716e iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4305a1ab iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44e176cb iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45b8d9ed iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47c91c6f iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5260a07f iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53cb0268 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a47041f iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c3875a8 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d35f294 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6fa8579e iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x860f9460 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9565d889 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x973a0635 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97485d63 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99962e45 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1d00c5f iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5456fbd iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5a440e7 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5f0bfbc iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6549510 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8e99a50 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad2f1e55 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd15f24f iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0067f0f iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf7d978f iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd04d5308 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb339cdd iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0378555 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe245be20 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6856ddb iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7ba15c0 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeb945a10 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe970ea9f ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf34ed77c ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe1d9665 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02563b2d iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03ba53e7 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04a6c9bb iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f41c192 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ddfffae iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22f0d03b iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29b9616e __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3827dfcd iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42167c14 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fdf6755 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x506114a3 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50bcd9d5 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50ed3cd8 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5bf6f5ce iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x60759e77 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65bd37ac iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a0f8b98 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cd26cdf iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70637602 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70ad91e5 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x753924da iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c34a3f5 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cbba9a7 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7dcc1ebc iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8094411a iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81b16295 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84932c20 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9105b587 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93f9fbd1 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97d3052b iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dbf27fd iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa173dfb8 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac30c2ba iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac722b9c iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xacb7f2df iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3804508 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbedf8c5d iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc18decc3 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3fe9fc9 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe007f39c iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2805e20 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4b56713 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7a9555a iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf115d836 iscsit_aborted_task EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa2b430f iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/target_core_mod 0x01e930eb transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x068d85a3 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x07db82a2 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4831d41 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x03d0458a transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fe7cc28 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x10119c0a spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x1105176a target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x12b1999d transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c7c83b1 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x0dc7fecd transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e0c5149 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f612917 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x11c0b88c passthrough_pr_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ad91776 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e38d6a5 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2374ee99 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x31165403 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x1aaf8fbc target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x20813e33 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x212a5456 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2169914c spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x219bb132 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x228c13e8 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x22a83556 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a75056a target_setup_session EXPORT_SYMBOL drivers/target/target_core_mod 0x3350d87b core_tmr_alloc_req EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3cf1d7d7 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x3da1f6dc target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x44ee7fe8 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x4aa68917 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x5034d7fa target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x50a1cdf4 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x546e9084 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x56da2be1 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5893c374 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x40dcce2d transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x43163b8e target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x467f5ba9 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x47ef048e target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x48a32156 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x49d04dca target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4aaafb95 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b9dd8c3 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c3a9054 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4eb1b4a0 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fa70d7c transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x53a4cca4 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x56565cca target_send_busy EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5cb2b810 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x5cb70dbb passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ceff43d target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x5db51d8a passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x613229e5 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x721333e5 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x75c46777 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x75c91cf4 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x7824337e target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a2a8b4f transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b26a0ef target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x7d0a9c9d core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ddc0a53 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x813a2a4a core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x81415e60 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x86fb1316 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x891c9f43 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x91dd7151 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x92421c3e transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xa1ef6176 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5d1ceda __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa9e129cd core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x60546013 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x60a596c0 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6930ff7f target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x710c15d2 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7228916b transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7577e14f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x77cc3b60 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x78565057 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x814d1eda transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x85d94033 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x8952155f core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a3e584c core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8bae391d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x91c46cd3 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x9923f224 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f38ceef transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa102d801 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa39e458a sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6fca86c core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xab32bd36 target_submit_tmr EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xafd7aa7f target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xafde0d27 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3639931 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xb6608aa2 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xbd199c05 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xc55dca30 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdab9218 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2879db1 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xd2ee82a3 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xd43b778b sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xd678fe85 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6de6a54 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd8e62e9b target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdd62044c target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xde9e16e9 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe35dca16 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe3e9c2da transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe4a75029 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xedf93f7f core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xee79c242 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xeff73d9c target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf0eb9437 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0xf15950cb transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf72aec1 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc3e810d target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc8794b5 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc9dda67 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xbebf20f3 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4a7b1d3 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5aaeb43 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9ce4831 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xced01129 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0cf84e0 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb9a7a7e target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xe01fe0bd core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0c3fac1 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5d2c62a transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6f95b73 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7835946 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9c39d83 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9f97a76 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xeba07213 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xebdf7c1e target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xf154d2a5 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2c038d0 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2e94830 target_complete_cmd_with_length EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf423176a transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4f1f8ce target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xf55044fd transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8822c77 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd15f507 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd5e42b1 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xffcadb2b target_stop_session -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2aefb880 ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2f2dfe29 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xba2b2352 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc46301b1 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xd3b1e68d ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xf4a56e49 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x11c57151 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x82f7a442 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x32c61ff7 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x91ee918a ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xd1196448 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x5ed904d1 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb3c54791 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x27ad4252 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2a77ed3f usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2e6a338e usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5689b666 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6e8ed555 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x81021a2b usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbc4558ea usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbe119ca4 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdcfe6f3a usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf3464fb5 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfd31d11b usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x11311e37 usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5768cacf usb_serial_suspend -EXPORT_SYMBOL drivers/vdpa/vdpa 0x028dfa87 vdpa_set_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xf663df34 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc95922c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x44fa75fe ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x774385b8 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x88e8b7a9 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x9e5ea349 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xd24f400d ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xd75fd1d4 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x26521c32 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xcb37f35d tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x0b2a12b3 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x1b2e0402 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x9d69b147 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xee0a511c usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x96fb280a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0e9725c2 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x21c825e4 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x386d2f76 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x41d3c342 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5701073b usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x824aaa46 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92bb1763 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x989b310f usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaa4348f9 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe6b28b25 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf60baf28 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7a818e9b usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x86c856ee usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x4803c53a vdpa_set_status EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x6ba70295 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x331bb562 vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xb07385ca vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xbd2a322c vfio_dma_rw -EXPORT_SYMBOL drivers/vhost/vhost 0x65ba5cc8 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0x7215909f vhost_chr_write_iter +EXPORT_SYMBOL drivers/vfio/vfio 0xe2e2d8f0 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xf1335359 vfio_dma_rw +EXPORT_SYMBOL drivers/vhost/vhost 0x248d29a9 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xdad5d3d9 vhost_chr_poll EXPORT_SYMBOL drivers/vhost/vringh 0x22535a6e vringh_abandon_user EXPORT_SYMBOL drivers/vhost/vringh 0x22f44e7d vringh_getdesc_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x31848eae vringh_notify_enable_user @@ -4945,131 +4945,131 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xd8535ad6 vringh_init_kern EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern EXPORT_SYMBOL drivers/vhost/vringh 0xe08ccbed vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/video/backlight/lcd 0x13b555d6 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x27dec80f lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x74e125a3 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8bc10684 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0192da42 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x18f2d909 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x283ec032 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x48503aa8 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1297df84 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 0x3b92ef41 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1dfac930 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x22dd3bf5 svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x797ff0e1 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x644bbc04 svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x88999ca6 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8c133402 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa898e64b svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9b6da107 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xaacdd447 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc418b3a6 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xcbacb8fa svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfb4f9394 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x1898332a cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x4f567578 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 0x64e31458 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x8662b667 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6edef535 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x880156e1 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdd38c6c5 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3524552d DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7f655032 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa5a8f5e0 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb88e2dda DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xd5c754a1 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x35abf6e7 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x00074776 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xca93fcdb matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcac0a0bb matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe7071295 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x1a3057a4 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfb1e5be7 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5e07a96f matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7ca1df8b matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xc70d43f0 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0704cdda matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4dd18aed DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe5ef07e3 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf0e1cdfe matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x3c36ac9e matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xbd9f83ec matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x25862077 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x426359b4 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x99bc714b matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe83696e7 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0f7f8d31 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x19cb4c80 matroxfb_g450_connect EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4597c719 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x72ff7561 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fb42229 matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x986e131f matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9d757559 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4cbd8d45 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x605d828d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6a9d3cb0 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xac06c1f9 matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcf154ec0 matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x28a1a0fd virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5763f67d virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x795c66cc virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa8015f32 is_virtio_dma_buf -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x41d4d7a2 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x52f9f964 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x25485336 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xbe2cb139 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x13719d23 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x7924490b w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xa00a43d0 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xc9f040f9 w1_add_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x101cbd5e fscache_caching_failed -EXPORT_SYMBOL fs/fscache/fscache 0x17f003c7 fscache_io_error +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3e24853e virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7054e20b is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x934ba17c virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xea13c6c1 virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa0ae7366 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xae7981d0 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xaf7b8b1a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe990352a w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x3cb852cc w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x43461171 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x7106139f w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xfd9469e6 w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x134a29a6 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x18d0abbc fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write -EXPORT_SYMBOL fs/fscache/fscache 0x1efcac70 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x1d79b4a3 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1ee6a760 fscache_end_cookie_access EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x24763f33 fscache_end_volume_access -EXPORT_SYMBOL fs/fscache/fscache 0x27cca4fd fscache_withdraw_volume -EXPORT_SYMBOL fs/fscache/fscache 0x2841a690 __fscache_use_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x28f2280f __fscache_relinquish_volume EXPORT_SYMBOL fs/fscache/fscache 0x2b389369 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2f3d511b fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x31af957f fscache_put_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x43cd5489 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4054fda6 __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x46276f8f fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x49e7e70c __fscache_begin_write_operation EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5457895f fscache_relinquish_cache EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem -EXPORT_SYMBOL fs/fscache/fscache 0x5efe8b33 __fscache_unuse_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x61852bf8 __fscache_resize_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x642533c7 __fscache_begin_write_operation -EXPORT_SYMBOL fs/fscache/fscache 0x66d04fc7 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x6197bb69 fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x71fb0e58 __tracepoint_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x771a7cf9 fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0x77e19a42 __tracepoint_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x8315d84c __fscache_acquire_volume -EXPORT_SYMBOL fs/fscache/fscache 0x87433f25 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x825c767e fscache_relinquish_cache EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x9d128d28 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x92f6556c __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9de62352 fscache_withdraw_cache EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa88e263c fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xa96ff7e9 fscache_acquire_cache -EXPORT_SYMBOL fs/fscache/fscache 0xab3c1cfa __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xab57c50a fscache_acquire_cache EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb2d19723 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xb2f9c5bb fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb59ca82c fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0xb87774df __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xbe7c9c07 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xbf2d8c1c __fscache_clear_page_bits -EXPORT_SYMBOL fs/fscache/fscache 0xc1bfe153 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xc7dcae3f fscache_resume_after_invalidation EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xd0c7eb7b fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xcdcc3230 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xcefaf5b6 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xd80d6665 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xd9fccdd0 fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xe935fe9e fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf71d6133 __fscache_write_to_cache -EXPORT_SYMBOL fs/netfs/netfs 0x280bf0dd netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x2c7a9f04 netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0x6551ed0e netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xd270f3c7 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xd4d9225a netfs_readahead +EXPORT_SYMBOL fs/fscache/fscache 0xe1dfd71d fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xea88d73e __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xeade4b0c __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xed6a1bc2 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf768612e __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfcb3c4fc __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfcc8c3a8 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/netfs/netfs 0x1b3071eb netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x6c29a7a3 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x733f58ed netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xa4d71ffc netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xd98d5857 netfs_write_begin EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x3df5c805 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x41199e65 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x45ab6201 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x64a52772 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x8a7a8eef qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xe9c1f382 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3b630fc7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x710c9eea qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x9a792f6e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xb16fddae qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd48560ed qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xff65c823 qtree_write_dquot EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -5092,16 +5092,16 @@ EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x14497cae lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x15a62e97 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del -EXPORT_SYMBOL lib/lru_cache 0x2bbaf267 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find -EXPORT_SYMBOL lib/lru_cache 0xc92a8655 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative @@ -5141,873 +5141,873 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x13edf5b4 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x189fb5cb lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x75cdcc2d lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x8c1e76c3 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc6ce2497 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xce2484e3 lowpan_register_netdevice -EXPORT_SYMBOL net/802/p8022 0x050c9b09 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xea0b8776 register_8022_client -EXPORT_SYMBOL net/802/psnap 0xed533e3f register_snap_client -EXPORT_SYMBOL net/802/psnap 0xf2656b78 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x018dbc3f p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x0394d296 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x103623cc p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x111f2b9d v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x13b8eff4 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1c018e55 __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x2aa64e0e p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x2e099100 p9_tag_lookup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1137c7e5 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x27c6c431 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x921a316d lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa4d47f65 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb77e2892 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xf3a94395 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0xb4831330 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xc4f7df73 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x5f2877f9 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x6ce64065 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x06e34233 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x081603f1 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0c90b7ea p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x0dad2bdf p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0fb9e758 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x11ac6611 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x1c66e27f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x1e635718 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x29d9e135 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x2db924fa p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x341ab960 p9_client_open EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x4029832e p9_is_proto_dotu EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x49c48c43 p9_release_pages EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x53e0565f p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x5fac72b8 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x5fc425d3 do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0x643d3a84 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x68a444eb p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x6a4307cd p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x6dc062f7 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x6e9d8ff8 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x6fea3688 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x50b8f718 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x58cda34b p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x5ad57165 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x60a0fcd8 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x62e1bae7 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x66ec7170 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x72fca2ff p9_client_remove EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x76a89612 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x7ca392ea do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0x7e10c235 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x830ddec6 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x86a9d2aa p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x91f65767 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x9262aa9d p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x92c51919 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x94cfe419 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x78dd9927 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x87e0b799 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x8f48c9df p9_client_walk EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x98570f8f p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xa8a4e84f p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xaa3d5814 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb306b763 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9a96a193 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9a9a6282 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x9f48911e p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa7580454 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xaa4a08da v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xab390ad8 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xaba9de12 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xb2a9f29f p9_client_read EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xb76723f2 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xb95e4afd p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xcba5d157 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xd250199c p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xbb95e11b p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xc18abc56 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xcd9b65ff p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xce8be63b p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd66abaa4 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xd86239e2 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xe0950fe7 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xe1fb1e90 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xd4221186 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0xd5d2565b p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd854424e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xda01a6cf p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xdf7a9965 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xdf91e64c p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe20c60c4 p9_client_rename EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe8a8d360 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xea7078ae p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xea9f3d6f p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xec2d0f33 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe5e6987c p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe63034df p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xe7079474 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xed43c12a p9_client_create_dotl EXPORT_SYMBOL net/9p/9pnet 0xee437897 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xf24d9797 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xff5c2f00 p9_client_stat -EXPORT_SYMBOL net/appletalk/appletalk 0x3a9f0d26 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xbc67c454 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xc0a56545 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xe50deedd aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x03e0daf2 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x066ce255 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x130da9c3 atm_dev_register +EXPORT_SYMBOL net/appletalk/appletalk 0x24a92425 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x45f398e1 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x61f3c8e0 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x9e853e51 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x1f8034c0 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x21a35a59 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x22f53230 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x2bb41887 atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2e5ae740 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x38a5c69b vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x3f87ac98 register_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x4b3747d2 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x7f8853e3 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6a5ab2df deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x8061853e atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x8af13d64 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x97cc222a atm_dev_register EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa72c9228 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb6f2bc92 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xb98d2ef0 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xdc16d60b atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xe0fae830 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xebcc401b atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0xf04bd0c8 atm_charge +EXPORT_SYMBOL net/atm/atm 0xcc186ddc atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xd3a76a85 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xe4c3a764 atm_charge EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x0195ba74 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0x0a679470 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x0dcaffea ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x1077ddd8 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer -EXPORT_SYMBOL net/ax25/ax25 0x1716f8ad ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x1890f2d1 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x35f5f7d2 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x681818cf ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x68aa581d ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x94b71bef ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xb1bc9ff3 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xb4110b01 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc4b14b82 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe30deff7 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xebf4a507 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x020cc810 hci_devcd_append -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0265747e __hci_cmd_sync_ev +EXPORT_SYMBOL net/ax25/ax25 0xf6244eed ax25_ip_xmit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0046f2ed bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x049b5008 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06f434b1 hci_mgmt_chan_unregister EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x178b5b19 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b325199 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e34c760 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20291e91 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f56e4fd hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13dd137c hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14478a90 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1451b2b6 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1963357a hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ca0d6d5 l2cap_register_user EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27850c9f bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x281757a6 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x285f447c hci_devcd_abort -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a531fee hci_devcd_complete -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2adbf8e2 hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ca611af hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f79171c hci_devcd_append_pattern -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3033e6e2 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x350091c2 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x447b120e bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x487fe9d7 hci_cmd_sync_submit -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b9fc530 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x54670572 hci_devcd_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x55062683 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x59bf4e26 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b84ef0a hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b8b96b6 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cb056c2 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cc28344 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ce775bb hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f64958a bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fdfa43a bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x60d5d5ab bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x62cccc87 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x66a38256 hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0x76d5899e hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a4b0045 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22524e0e hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d8d5543 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x39720d8c bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ad61c3f hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3bc0b59f hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e32a515 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e56d9c8 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x440f5b4c bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46e726ca bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e969cfa hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f5b421d hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53f6ed69 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x583d99db hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x67f3962e bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6cea199d l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7177d0e6 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73ee50fd hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79b384e6 l2cap_conn_put EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x863edf9b l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bade0e5 hci_devcd_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d8b5506 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7be6d84f bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cffec7a hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e647fdb __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8aea98e6 hci_devcd_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c88d08c hci_devcd_abort EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91ed3070 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x932bf373 __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x93cf1709 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0455674 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9134804e hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9147fa39 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x94446965 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x980e1618 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x99e17226 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c76681d bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9de628a1 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fa075ba hci_devcd_complete EXPORT_SYMBOL net/bluetooth/bluetooth 0xa36d67be hci_devcd_rx -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3cb623d __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4dcd17c bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3e42df5 hci_cmd_sync_submit EXPORT_SYMBOL net/bluetooth/bluetooth 0xa60137a1 hci_devcd_timeout -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6d5f109 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbafbf03f hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd27ea89 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfc3ee43 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc1d4a1b3 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc339de7e hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf5fffd7 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0169de3 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3fb8f3c __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8312f84 hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb207ef07 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2af0db0 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9de55a2 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc2b385a bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4930462 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0fc3af4 bt_sock_stream_recvmsg EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd781de6d bt_sock_register EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe594a13e bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec57f57f __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf60805e3 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf66e8e7f hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf962ea52 hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc26b1b6 hci_cmd_sync -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x157f624f ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x833c62f2 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8788a47d ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd8cd5b53 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xea235ce3 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xff6839c6 ebt_register_template -EXPORT_SYMBOL net/caif/caif 0x0857f7e3 caif_connect_client +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef810a9c bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf348362f __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf88a8ea4 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf946d536 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf94fc743 hci_devcd_append +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc65f438 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc88a6a7 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfebc47d6 hci_register_dev +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0ee5d6ad ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6d8b4e32 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8fc04669 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9c5cff68 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc01be61a ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfe403f69 ebt_unregister_table_pre_exit EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x249b4723 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x1a0c1b44 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 0x3a3013ed get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x44ef3909 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x727414cc caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x4d7b97bf caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x550d44b7 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x7da0919c caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xc66b5b73 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x4a71f9be can_proto_register -EXPORT_SYMBOL net/can/can 0x76a3b8d3 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x8569e0f3 can_rx_register -EXPORT_SYMBOL net/can/can 0xaf59c782 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xd600b012 can_send -EXPORT_SYMBOL net/can/can 0xe99ed374 can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x02d7c500 ceph_cls_lock_info +EXPORT_SYMBOL net/can/can 0x26c1be99 can_proto_register +EXPORT_SYMBOL net/can/can 0x8f5cd205 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xc54b0bfe can_sock_destruct +EXPORT_SYMBOL net/can/can 0xdf20a0f6 can_send +EXPORT_SYMBOL net/can/can 0xe431c0bd can_rx_register +EXPORT_SYMBOL net/can/can 0xfef4ed9f can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x016120c3 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x067db9aa ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x0a961d6c ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x0ef60034 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x0f14bc96 osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0x0f863366 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x108f3ae0 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x1315552c ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x1327fd2d __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0509bb69 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x055c5fb5 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x064ed2a7 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x0aa39217 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x0cc02e71 __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0x1372c3b7 ceph_alloc_page_vector EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x152f1a79 ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x16fbea78 ceph_auth_add_authorizer_challenge EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x17e9e250 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x1b0dfd86 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x1d52b6ac ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x1dba3500 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x204e89bb osd_req_op_extent_osd_data EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x20a872eb osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x2951a639 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x22a7c39a ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x247c61c3 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x24f82d56 ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c0e92eb ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x2c73b733 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x2ea1beaa ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x2fd0bf10 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x305beefc ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x3508f7a0 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x35a0d917 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x366bac56 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x3674b79a ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x37a84b8d ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x2c8d09fc ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x2ce15730 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2e131521 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2f54b746 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x34880732 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x367d72a3 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x36897bd2 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a2af7e7 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x3be4540f osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3eb53143 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x3cb2882e osd_req_op_extent_osd_iter +EXPORT_SYMBOL net/ceph/libceph 0x3dac2ede ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x4434a55c osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x49b3cc06 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x49d7d717 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x4aeecf9e ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x4ab6efeb __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4c78700f ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x4cc9a8c5 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x4d2cf564 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x4c7a12b9 ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x5235196d ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x578b5022 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x55135909 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x55f8f02a ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5a121350 ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b66a1bb ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x5b6827e3 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x5ff1e63c ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x60cf452d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5b358e57 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5c6dc093 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x5e25a91c ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6705513c ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x646671e6 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x6590ee7c ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x67f7a52d ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6bc7e01c osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x6fbfe183 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x70779934 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x74a2caa5 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x781a270a ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x7a4d6a8e ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x7fd95ec4 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x817f7ce2 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8187a50c ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x82be87ac osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6ca20cc0 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6e0890ab ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x70dc1025 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x725c47bb ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7694fe64 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x76d7d5d2 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7a3d3bf1 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x7a4b41c7 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x7b083b96 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x7ba52523 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x814c1939 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x8669b513 ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8be398c9 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x916b20d5 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x870fdcd1 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x87a86ad9 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x8ab7f092 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x8ead0831 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x8f6f1af5 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x926b1492 ceph_monc_wait_osdmap EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x93120737 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x9346bd98 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x9397a034 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x9608c5be osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x96cc2111 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x94f8450b ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x97e3acca ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x98357f60 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9cc91e38 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x9d99ac2a ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x9e034e5c ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa3ba5764 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xa53d7d27 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0xa56d5f88 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xab99b46d osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xa752e759 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa786d512 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xa8202df5 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xa8277ace ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xa91d836b ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xadc937ee ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xaf6d0fb9 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xaf7b70ff __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaf84ba70 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xad7c58f5 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xaf7704c8 ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb0fbf9ff ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xb30be0ae ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xafc0b701 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb2196352 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb5433f07 osd_req_op_extent_dup_last EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xbc43faec ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xb7f131b8 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xbc926457 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xbcba2054 osd_req_op_extent_osd_data_bvec_pos EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd8b5253 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xbde7fc91 ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbe8dd41f ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xbeaad9c2 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xbeceafb3 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xc06c2d87 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xc1734905 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xbf3e2fe0 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xbfe5b903 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xbff576e0 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xc0ff26c3 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xc2c40013 ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc4ac5e67 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xc5170e74 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xc77dac81 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xc7dffee2 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xc874ab28 osd_req_op_copy_from_init EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcf2be7f4 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0xd091640c ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xd2260277 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xd4897b06 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xcbb1c814 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xcc0bccb6 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xcc21ab27 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd1a4f76f ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xd2a9c15b ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xd376553d osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd46017e2 ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd9a104b9 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xda0699f2 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xdb1d4b22 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xdb2a3e73 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xde458fab ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xd7765a77 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xdda6282b osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe23cd899 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xe2a7ce8f ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xe084f036 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xe30d9a99 ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe43fceba osd_req_op_extent_osd_iter EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe788e8ab ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xe887268a ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xea44fa79 __ceph_alloc_sparse_ext_map -EXPORT_SYMBOL net/ceph/libceph 0xeaaf16d1 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xecf714e4 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xe801e261 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xeae3899f ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string -EXPORT_SYMBOL net/ceph/libceph 0xee6ba4db ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xee70964e ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xeeba7ede ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf06c50b9 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xf163dd7d osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xf21f197d ceph_auth_is_authenticated EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf3f2220e ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xf5bc7d40 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xf7a9fe94 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xfe888f37 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xfe91d398 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc856a21d dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xff16e789 dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x2c70cf41 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0x87fea90b hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x09e42e6d wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x25d77586 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x47a23570 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x4e53bb41 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9b995c1f wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa7da189d wpan_phy_unregister +EXPORT_SYMBOL net/ceph/libceph 0xf34664c1 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf3d87e0e osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xf7366046 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xf74b940e ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xfdca285c ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xfe7cf72e ceph_osdc_notify +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x288a0230 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd164388e dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x67256ad6 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xc6b54dc5 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0cf27912 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x44024f8a wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x73d4f811 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8d1663b1 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x926c8bdf wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9e0c82bd wpan_phy_new EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x52902c7b __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0x62f5ca14 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x7cb9e07b __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xf2ddc278 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x14434ade ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x86980bed ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8ff550ac ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb046f55b ip_tunnel_md_udp_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbd7e23ab ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x22799e09 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x93db582d arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd9ace96c arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xeaefd6c6 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x29f4ec1b ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2b6ca8e4 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x38052b81 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7e0abbef ipt_register_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x38832a29 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x483b7079 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xb44a4c0a udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1e13dc02 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2202d344 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4d50c44c ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x562148fc ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5e8230c3 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x701049a5 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x72e64fbe ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x915b3de6 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe442da4c ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x09abec7f ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x489a31ac ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x74cb3f24 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdb61a5ed ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x2ec32889 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x83bf6d7d xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x73f8bc8a xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x837bf17d xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x284f5323 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x4a79ee59 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x6ddf23ca lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x86c50ba3 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xae778990 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb9fcfae5 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xcb174ebd lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xfcf9293f lapb_disconnect_request -EXPORT_SYMBOL net/llc/llc 0x042c251c llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x1c596191 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x22167c14 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x363e4f55 llc_sap_close +EXPORT_SYMBOL net/ipv4/fou 0xf6ebd181 __fou_build_header +EXPORT_SYMBOL net/ipv4/gre 0xb3a6e5f3 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x28c3602c ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2fedd7c0 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6b3ff2a1 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa030f428 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xec42a34d ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x24a40b8b arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x528b6288 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5d866d4d arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x67e8e29b arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5f4ba5e5 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x656655df ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf3baa00c ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf70ed6f6 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x3fef37fd xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf3545fc4 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xdcff678e udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x11fde101 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x370a3b53 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4e1f12e6 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6c10c12b ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8ac440de ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9d27a11e ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb0dfa3bd ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbfc6debb ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xca2b77e1 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x11e94e5d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5c4dd83d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x72e8ce1f ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd0867ea0 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x6e9612b7 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x96e6b8ca xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1a6c85da xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe6b2a4bf xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x14f8c668 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x56f57b66 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x62aa64b2 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x7a93096c lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xa8712e1a lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xad05374e lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xba71567c lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xe62d14da lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x2ec3c164 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 0x6652c4aa llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x81fbe4e4 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0x9347724b llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/mac80211/mac80211 0x010c90cc ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x010e54d0 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x011fad13 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x01a840e3 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x066fcdaf ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x071965ca ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x0883d690 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x0ae32b92 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x172d23fe ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x187362b3 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x188dfef8 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/llc/llc 0x693ea150 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x6f1c6b29 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x87504214 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xa2c4617c llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xa3907f73 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xd552d081 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x00bede53 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x02f0cb73 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x034db863 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x036ffe7c ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x08fddaf0 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0a943143 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x0b07cf47 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x0c265d90 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x0d9d1d54 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x132fad5f ieee80211_stop_tx_ba_session EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1e1fb054 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x1e74c602 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2204b191 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x22dcee39 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x23b95ef4 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x2bede05a ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x2ce76d72 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x2dc5670d ieee80211_refresh_tx_agg_session_timer -EXPORT_SYMBOL net/mac80211/mac80211 0x2dd541ee ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x2f6b6473 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x2fba79d2 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x322db4e3 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x1d6599f8 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x1e41d35c ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x1fa0bc72 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x21c809c3 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x21d06126 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x24e461e2 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x27ddc775 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x30acb01a ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x3142a270 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3194599a ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x36287bfc ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x3633cca1 rate_control_set_rates EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3d72afc0 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x3e5cac88 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x3f8bdaf6 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x41e374c9 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x43183449 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x476c3346 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x49e64da4 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x4bfd0108 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4cb6fa35 ieee80211_beacon_get_template_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0x4fc68138 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x53e2a8b2 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x59240dc2 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x5caaa029 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x5ed653b6 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x618a56d7 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x63316669 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x65edae6b rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x69a84d7c ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x720e0d4b ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x72bd8819 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x7490e1f5 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x776458bc ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x7e42897e ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7eb54241 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x8b80da37 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x8e0c9eb5 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x8e391f56 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x91e2716b ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x94566e9a ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x3a6343c6 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x40f8dbac ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x43760d2e ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x44efee2b ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x451cdae2 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x45410a1d ieee80211_refresh_tx_agg_session_timer +EXPORT_SYMBOL net/mac80211/mac80211 0x479b69ee ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x4ae891a3 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x50cc29cd ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x56f240ba ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x57ff939a ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x58a40ad6 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x5ab1d7f3 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x5d1d08bb ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x606350d0 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x622f07f8 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x68d913c2 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x6b567a13 ieee80211_beacon_get_template_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x6b85483f ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x6f0a27ba ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x6f4129bd ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x70107e4c ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x708577ce ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x741ffe5b ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x7644a767 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x78992685 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7a56bbda ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x7b912bad ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7cfcad7c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x7d89d02a ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x7de6c6dd __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x82174d96 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x833b4c7c ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x8519f0ef ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8633d7ed ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0x8b38b12f ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8e007129 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8ffd0725 ieee80211_beacon_cntdwn_is_complete EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x97b09c08 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x96ef80e0 ieee80211_unregister_hw EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9c2b69ea ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x9c2c22f4 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x9daa8456 ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0xa1620152 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa27cbfe7 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xa295b8c1 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xa2ff756d ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xa3386234 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xa3739a4e ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xa39e3375 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa4b9c5f7 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa90c4d78 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xa981d78a ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xabbd18d8 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xac439feb ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xad1173a1 ieee80211_beacon_get_template_ema_index -EXPORT_SYMBOL net/mac80211/mac80211 0xad43a184 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xae7e094c ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9b2c675c __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xa347d722 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xa4484a36 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xa4b7ed28 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xac701d30 ieee80211_rts_get EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb11f79e6 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb1a8b3cb ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xb5b0ccc7 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xb7df3286 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xb890a7cb ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xbab1e65a ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xc0acace1 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc32a4725 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xc45bd823 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xc54e08d5 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xca5c8693 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xcb55bb60 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xcd7e41de ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xce5ba763 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xd3a1e4cc ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xd5154d78 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xdfe0b6ed ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xe2237d38 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xe3fc51c0 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xe47506d7 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0xe4def586 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xe9c079b4 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xeb9ddb2f ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xee90a166 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0xef6d0fc4 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf1167462 ieee80211_beacon_free_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0xf1ee3a6b ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf2109124 ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xf3fb6bc2 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xf526d9f8 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf5898d96 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xf73d0236 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xf795ce23 ieee80211_find_sta -EXPORT_SYMBOL net/mac802154/mac802154 0x1431441f ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x2561377c ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0x76225830 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x8302eea0 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xaa630e20 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xae2c8d87 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0xbcf29c26 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xbddcb367 ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0xf65cf64c ieee802154_alloc_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0c04fa0a register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1beb78cb register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e8cdb9c ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33dd5696 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55f2e0e5 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5cb86e59 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6feb57ca ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x700596f5 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93d43927 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9949293b ip_vs_scheduler_err +EXPORT_SYMBOL net/mac80211/mac80211 0xb237de92 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xb27c2d5e ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xb36acf7b ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb4672415 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xb4f43b31 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xb5da2cb8 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb738bbfb ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbae7c53b ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xbe6bab99 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc04b5332 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc17f56f3 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc364d5cc ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xc50ac518 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xcab2ae90 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xcc5528cd ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xced68240 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcf6bcbb7 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xcf9eb088 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xcfa8ef02 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xd804a6b5 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xdc023fbf ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xdee89c4a ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xdfbd5256 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdffe902f ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe3527eba ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe42737a9 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe670ed66 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe986f3cf ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xe9874460 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xec2391a8 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xedbe08c3 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xee186dcd ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xf5c5d1e1 ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0xfb294a5c ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xfc9a1149 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xfd5578cc __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xfda553f0 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xfda84772 ieee80211_free_txskb +EXPORT_SYMBOL net/mac802154/mac802154 0x176161d6 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x40b4ecf0 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x77399ac6 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x868b12fe ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0xc7e2dc84 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xd7f6089e ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xf37582fc ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf5db8f23 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfa1216af ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0072f576 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06b8b7c7 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1e7ca2f0 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x280e0997 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x44cfe5c8 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x466b4a01 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93dd21e7 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9d054274 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa9e7e195 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf9c72a6 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbfc1890f ip_vs_conn_new EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd9019f7e ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe5119f1e unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe5c51659 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6ba228c register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xff89be3c ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe16b97c2 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4ab7c38 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef3df0b2 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf92d3ff7 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2a61c5e2 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4e5b8a86 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x3ec88a29 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x6da8635e __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xe449c670 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xf5dccac9 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x041162b7 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x18ca6df8 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x208cd19d nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xdd285f4d nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x06fab8e8 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x2d2add5e xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x3eb26538 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x3f6cdf3f xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x41e56901 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x495259bb xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x51579843 xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x67926d15 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x74b6234e xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x7f8255f4 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x82db8e93 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6314072e xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x884d4dfa xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9d51103a xt_register_target EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xbb6d64e5 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xbde51c66 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xd6671f5d xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xcdad4297 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xde81678e xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xe9ea7911 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0bbdaef4 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x0c1b8b82 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x147956c1 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x24225977 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x316459e1 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x3ee999fa nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x443d10ec nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x4fa14402 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x53f786b8 nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x58d84278 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x5ff527de nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x62d81e61 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x6b43f43f nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x6c0a2d7b nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x74f6773d nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x0e4810c0 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x20192a72 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x2413aae8 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x47b75fd4 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x4b32b550 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x55297317 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x5ce83731 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x60730eff nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x6334645a nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x68774ec4 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6d554603 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6eb160fa nfc_hci_get_param EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x7c62b82a nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x8564598b nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x8f965632 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd4d524c7 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xd62af755 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x75f09ab0 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x8780cd0f nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x88408273 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x9626733e nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xc13dc562 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdb294e88 nfc_hci_reset_pipes EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xdde1c7fd nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/nci/nci 0x00bcdeb7 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x03d2956e nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x0731fd14 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x07cca442 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x16084658 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x1d8fc69b nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x28f60460 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x2bbd159f nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x306c8f00 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x36ea151d nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x3a9b3fc1 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x3df50662 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x543d41ac nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x7206ac31 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x7bb4b20f nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x8bb8b541 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8c944514 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x8cd967a0 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x9174a58d nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x9a8a3213 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x9b1b24d2 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xa350a998 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xa54ea543 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/hci/hci 0xdecc66fe nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xef66c1b3 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xefec8200 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0830c2e3 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x086f0d16 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x18dd735d nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x195fb28f nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1e6f1e67 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x2ecc9035 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x2f6e0ab0 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4afc37bf nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x59eb41cc nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x63c2b8be nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x65aeac48 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x70a676db nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x85c869eb nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x86f17449 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x904a2508 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9b90e93c nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x9dfde7c8 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xb969d482 nci_prop_cmd EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbe30b5af nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xc8c458eb nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0xd702daee nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xe4ea6b06 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xe998cfd1 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xf42f8283 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nfc 0x00e240a1 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x046888aa nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x0a40d007 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x0e6d96c4 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x1874818b nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x368a1315 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x4196af40 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x5248dbd0 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x6062ad3d nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x66a02a9f nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x6d32febd nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x82389946 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xa395de54 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xa71b32d8 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xb9c4e052 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xc5d2e44e nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xc9702e4d nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xcaae0992 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xcce390ec nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xd96bbb51 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xdf1b449e nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xebb0053c nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0xec6221ba nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xec8159af nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xf3f40f72 nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc_digital 0x018c32ad nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x41d3853a nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x49a4821a nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x7480fe4b nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x0a3e9aa1 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x37f8b41c pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x71a27457 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x9c7150f5 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0xa1b1fbfd phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xb3512286 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xe5fe833c phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xe72f6742 pn_skb_send -EXPORT_SYMBOL net/rxrpc/rxrpc 0x27d206ec rxrpc_kernel_shutdown_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2fe85d49 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/nfc/nci/nci 0xbb665978 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xbc30d6e8 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xbef84ad8 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xcd71006a nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xcfec65ec nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd6015a35 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xdc359345 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xe5036746 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe95e6604 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xef4eb3eb nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xf38bdb54 nci_core_cmd +EXPORT_SYMBOL net/nfc/nfc 0x0b2cfda5 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x0d717aee nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x0f6f5794 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x14093391 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x22148e3c nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x2b94241a nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x2fec94c8 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x33781cc7 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x4a601f9c nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x80b9c9d6 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x872b9f24 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x87ec7fc7 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xa47aaf8d nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xa5cae5af __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xa97a823b nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xaffb98b7 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xb644643d nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xca919706 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xd4b96d7b nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xdabd940a nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xe2f8fa14 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xe47a6252 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xf69d4004 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf92445a5 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xfdc24d57 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x179553bd nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x191e0f75 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x62a29df4 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xbe6a9ec1 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x1c8b5fa0 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x2319cb29 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x6084ff72 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x89ca75fd pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x98ad23e0 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x9de64819 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xb455549c phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xbffcea3b pn_sock_hash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x000b709e rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x097243fd rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0c310c56 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0ffb8499 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1e79c759 rxrpc_sock_set_min_security_level EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x34ef1b69 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x437cab3a rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x44100f80 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4760aac2 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4787b136 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x503857dc rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x57de0c52 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x59c39191 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e936246 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x60c05a67 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7a572b8a rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x905f02d3 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb9ca8410 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc3d20ebc rxrpc_kernel_put_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd09e20d6 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xda413fe6 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8f52a9e rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/sctp/sctp 0x8ef6220e sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x02f4a673 __traceiter_smcr_link_down +EXPORT_SYMBOL net/rxrpc/rxrpc 0x346d0d33 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3d709226 rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3ede7edf rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x48e89cb1 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x61b6b49d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6237ab54 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x63014153 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa9deb1a2 rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaa949ce4 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xafc8cc5d rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb337e67c rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xba232704 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc4ef812a rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc62a7d25 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/sctp/sctp 0xb1f313ac sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x342dae22 __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x76da5303 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x8190415a __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xa053541c __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xae45feb0 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xc7c21b7c __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xc997e8e5 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xd24addfc __tracepoint_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xd719961a __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xf47b4ee2 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xf62ec2d5 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x238a6f64 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3c357935 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf2810a98 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4ba09dc8 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4c0ab0e1 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xdc6ecf49 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x2a62032b tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x531270a5 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x74bb4082 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xed066133 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0x306c4404 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x006892f0 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x006fd5b8 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x039db091 cfg80211_get_bss +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x173e67bf gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xac156625 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xebd66fc2 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1a298cf6 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1d189345 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x78aa546c xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x3f2c9643 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x5a9e7e2a tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x81e2bb04 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x83cd156c tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0xb6c702c7 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0154b2fc ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x02f2904d __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x03a8828d wdev_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0703216e cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x07c8650d cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x083fbb5d cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0b565384 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x06fbd001 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x0b1f4e96 ieee80211_get_channel_khz EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0d0308e4 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0e03ebaf ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0ea5f368 get_wiphy_regdom EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x12b5b915 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x123c0d07 cfg80211_iter_combinations EXPORT_SYMBOL net/wireless/cfg80211 0x13c58e52 ieee80211_get_8023_tunnel_proto -EXPORT_SYMBOL net/wireless/cfg80211 0x16bde11b cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x16375e83 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x16fcfa00 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x174f0012 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1799f1c0 cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1910d39f cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x19357ce7 cfg80211_new_sta EXPORT_SYMBOL net/wireless/cfg80211 0x1b82a85a cfg80211_valid_disable_subchannel_bitmap EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1e42e454 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0x1fb0cf6c cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x245e4743 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x2663b9ea cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x1d5f350f wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x2197e57d regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x236aa310 cfg80211_assoc_comeback EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x2a8d411a cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x2e2e7d84 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2f3b1673 cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2fe6b193 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x32ca897a cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x3369ab7c cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x277a7ca3 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x2875396c cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x29954780 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x29def539 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x2c49fe0d cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x2dd71c9a cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x30b960dc cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x33d61795 cfg80211_port_authorized EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x365bd608 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x387ac1f1 cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0x3aca71a1 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x3bfb53a7 cfg80211_mgmt_tx_status_ext EXPORT_SYMBOL net/wireless/cfg80211 0x3c744e95 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x3c86019a cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x3ec9b022 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x3f4a8d9b cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3ff66043 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x3cc543de cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x400da6bd cfg80211_ch_switch_notify EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x42d0851b wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x4318a1d3 cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x445aa496 ieee80211_is_valid_amsdu -EXPORT_SYMBOL net/wireless/cfg80211 0x49bde4f6 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x488191b6 cfg80211_roamed EXPORT_SYMBOL net/wireless/cfg80211 0x4abed7d4 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x4d2f185f cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x4fe4ef4d cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x531314ca cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x54f27141 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x5503a53d cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x4ec767d0 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x4fa3df8f cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x518fb993 cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x575f76df cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x5863aa35 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x59fd9035 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x5be707a9 cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x5fe1707c __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x6115e163 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x642eb6e6 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x659589e6 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5822d5ee cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5a7c2208 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x60951cf0 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x63971fb8 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x64397cef wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x67774092 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x67f5edd7 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x681b610b cfg80211_pmksa_candidate_notify EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6b348027 wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c9a4ea6 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x6f6a3c72 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x6f754900 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x7294b056 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x740f9353 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x75227b18 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x757bcf2f cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x76c805c6 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x77ab7921 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x78a59d9d cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x792b4733 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x6d70fd18 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6f303684 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x70e00c8b cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x748473d0 cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x75163a6a cfg80211_rx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7abc35c6 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7c6dc65b cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x7df75f54 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x7e557507 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x7ec63520 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7ccf7f12 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7e3ed7aa cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7ee2e470 cfg80211_send_layer2_update EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x8199ca54 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x850efa23 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x85da57ed cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x806bb50a cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x822dc9c9 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x82d4516d cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x85de3f6f wiphy_delayed_work_timer -EXPORT_SYMBOL net/wireless/cfg80211 0x864fbb69 cfg80211_links_removed -EXPORT_SYMBOL net/wireless/cfg80211 0x87b0ff5c cfg80211_assoc_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x88648af5 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x89b9e6f6 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x89d1ba26 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x85f7b2f7 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x86bbcb12 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x884ae536 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x88fa4c23 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x89ce4a08 ieee80211_strip_8023_mesh_hdr EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x94b319b2 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x9815c05a regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x990d504f cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x996c6f14 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x90c208a5 cfg80211_links_removed +EXPORT_SYMBOL net/wireless/cfg80211 0x9167daf0 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x925c89dd cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x94a1dd63 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x99bf916d wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x9cc3cf51 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9d4c88e3 cfg80211_any_usable_channels EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa0dd24e2 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xa35ad920 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0xabb1c96c cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0xac63462b cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xae94db77 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xb4f36251 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xba3ae7f5 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xbfbdc3d7 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9dc73432 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x9fdfcf6a cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xa0503842 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xa41eb86d cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xa43fb1a5 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xa55fb82d cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa74a09ab wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa7f62c12 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xa98ba004 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa9b9c1a7 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xab4abd8d cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xafe61e5f cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xb25985ab cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xb311b353 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xb322646e cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb5127d35 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xb7c949cd __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb7e565f5 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xba394e93 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xbd6e65aa cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc0adb750 nl80211_send_chandef EXPORT_SYMBOL net/wireless/cfg80211 0xc3fb97ca ieee80211_get_response_rate EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc600b0c1 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xca92c785 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xcabce131 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xc8277774 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcaec77f7 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xcb8fc01d cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcfa16c76 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xcfb9c132 nl80211_send_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0xd09fd778 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xcf77d592 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xcf830eb7 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xd0327a4f wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xd240f448 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd2476f32 ieee80211_is_valid_amsdu +EXPORT_SYMBOL net/wireless/cfg80211 0xd4e29766 cfg80211_rx_assoc_resp EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd607e563 cfg80211_inform_bss_frame_data EXPORT_SYMBOL net/wireless/cfg80211 0xd6c87a05 cfg80211_defragment_element -EXPORT_SYMBOL net/wireless/cfg80211 0xd7c44ccc regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xd809182d cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xd9328e45 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xd960fde0 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd6fef86f cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0xd9fa53bd cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdb4e0858 cfg80211_classify8021d EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdbe69aae cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xde5e60e0 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xdf243c3e cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0xe28445ca __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe4fbfa6d wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xebe3256d cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xecf6cd46 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xeda003da ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xf167be2e cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe270c825 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xe29467bd __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xea36e429 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xef5fc840 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf27290df cfg80211_get_bss EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf54ea16b ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0xf51e205b cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xfbfdd4f3 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xfca1f60a wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xfd63e0aa cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xfe0825b4 wdev_chandef -EXPORT_SYMBOL net/wireless/lib80211 0x11b8a323 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x326379bb lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x87be0f26 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb2a19ac8 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xe48d2354 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xff303eab lib80211_crypt_info_free -EXPORT_SYMBOL sound/ac97_bus 0x2edcf093 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xda6b6a18 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xfa5193d1 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfaf8cdb7 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xfc0b46c0 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xfd30e64c cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/lib80211 0x2ca88e36 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7ada6e74 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x92a8b527 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xda14a135 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xf04a626f lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf7f73dd1 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x0a5109b2 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x4da8124f 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 0x23738926 snd_seq_dump_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x37fb0126 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x38c7fd4f 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 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x843bf134 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x85cd59a8 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x9b9e8089 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa4076ef5 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xa6e19f8e snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xff073cb1 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xbf10d556 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc429f1f6 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x74769de9 snd_midi_process_event EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -6019,436 +6019,436 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xd67068ac snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x09f46b0d snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x1221e5f5 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x017f4072 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0d1c6b60 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x0ef9bc5c snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x106a6653 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x16f028c0 snd_device_register EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x2057cb04 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x23f86107 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x1dd6900e snd_info_create_card_entry EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2615d6d4 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x271140fd snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x277498ab snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x285f9982 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x2a72ddb6 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x2bd78e57 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x257eb148 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x25b4c47e snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x2a79db9f snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x2be36eea _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x318113f3 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x327fd7a2 snd_ctl_free_one EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x39e5a320 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x3a8f8e1e snd_device_register -EXPORT_SYMBOL sound/core/snd 0x3d2eeba4 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x493cb9c5 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x4a3449e6 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x3dde205d snd_register_device +EXPORT_SYMBOL sound/core/snd 0x46bcc276 snd_ctl_notify_one EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4b2fef1d snd_card_free -EXPORT_SYMBOL sound/core/snd 0x4bd28895 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x4cd0532b snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x4db3fdbd snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x51aa3542 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x598ba796 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x6442d2df snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x64f0a83f snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x64feed17 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x67174cf5 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x67518e56 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x67e8fbba snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x729fc351 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x56f93e49 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x5dcd6854 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x615dce56 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x63da4443 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x65a65107 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x67d51608 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x6e77d3a7 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x6eb89c34 snd_unregister_oss_device EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x7875281b snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x83330b85 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x8593fe23 snd_component_add -EXPORT_SYMBOL sound/core/snd 0x8628771b snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0x74072998 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x773d937e snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x79d1ca0d snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x7de8f3f2 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x7f16a606 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x83da1f26 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x854ad0b9 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x8576e229 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x8d767d74 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 0x9785ed31 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x9b7abaa6 snd_card_new EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa148d15d snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xa988de6f snd_info_register -EXPORT_SYMBOL sound/core/snd 0xb297fd4b snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x9e7e5d42 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xa82b1399 snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xb028c838 snd_card_set_id EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb44b3f79 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xbbe7b4ed snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xc5594b48 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xb3c43af3 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xb5fdc488 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xb947102f snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xc574e6e2 snd_seq_root EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc5f510e7 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xcab20bff snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xcad8a965 snd_ctl_notify EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcd7181ba snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xcf2c2c01 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xd0fbedf3 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xdba8c8f6 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xdd6bcc2e snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xe038cb64 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xe748105d snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xebcd96e1 snd_device_new -EXPORT_SYMBOL sound/core/snd 0xf164f044 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xcdbd4c4b snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xd7ca6a52 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xd9c8548f snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xda32837e snd_device_new +EXPORT_SYMBOL sound/core/snd 0xed402c57 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xee26e31f snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xf829a22a snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xfc12a204 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xfe13cd1d snd_card_free_when_closed EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x97ff4ee9 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xc0c426cf snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x8233c66b snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x0e734e9e snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xa038893b snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x0e583323 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x00674343 snd_pcm_hw_constraint_list EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x039eda1b snd_pcm_set_managed_buffer_all EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0a559e17 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x10e502cf snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x06ad5440 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x080b31ea snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x10c22904 snd_pcm_period_elapsed EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x13cadc94 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x158d77da snd_pcm_mmap_data -EXPORT_SYMBOL sound/core/snd-pcm 0x1ab141d8 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x1bef0db2 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x14c6cc83 __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1f50a0ea snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x2120e206 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x29e1871c snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x2a898cf5 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x2b61c578 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x20d9dc61 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x2eac19e9 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x2fdeb2ea snd_pcm_hw_constraint_step EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x3887fd03 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x37edfb5b snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x394b7ea1 snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x4132a03b snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x4d3b5374 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x3ea72f44 snd_pcm_hw_rule_add 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 0x525300da snd_dma_alloc_pages_fallback EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x55121395 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x536b8718 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x53f0235d snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x551392b4 snd_pcm_hw_param_first EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5e91d3fe snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x60d570d2 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x6253da65 _snd_pcm_lib_alloc_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x65e0e0ea snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x660fca12 _snd_pcm_lib_alloc_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6a0b8f45 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6b04d096 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6c72f1b2 snd_pcm_lib_malloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6fda91ca snd_dma_alloc_dir_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x7374cd8b snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x76539ae9 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0x778d4f12 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x7b4c7e3e snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x7bb79cb0 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x74c387ec snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x77fd2bde snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x7c368bf5 snd_pcm_create_iec958_consumer EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x854b33ac snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x8e2ad5c4 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x90cfe73c snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x8484f3f3 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x87026e0b snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x9121aad4 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9a2e0933 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xa130fe7c snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xa56867b3 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x99f201c9 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x9d816816 snd_pcm_lib_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xaae989fe snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xab30df8d snd_pcm_open_substream EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb94b5824 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xac77e3ef snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xb56a16b4 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xb89e7725 snd_sgbuf_get_page EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbca9f1e9 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xbe021533 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xbe194d60 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xc1d58ceb snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xc987022e snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xcae04ffd snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xd49919a7 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0xd521790e snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xd9846d7a snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xe3548c64 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xbb3ef13a snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xc010cdef snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xc5545020 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xd0f548e3 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xd2ab390d snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdb1594a3 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xdbf5ddac snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xdfd10ebb snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xec751fa2 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xedff3b30 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0xf0cc64de snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xf1d9e282 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xf4cb90c1 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xe5a43415 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xe75c06e1 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xeda508c4 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xeeec2529 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xefe620be snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xf5f86de0 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf8d73aee snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xf9ed2919 snd_pcm_hw_constraint_integer EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0c37873a snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d094ec8 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3dadac97 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x43144a1e snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x457dc9f6 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fedcd00 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a1dcc2b snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x660d4bb9 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6f39a67d snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x957f3214 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x97ca4e28 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa1c0392c snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa304211a snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xad6839aa snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb7458739 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbed9ddfb snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc2bdaac snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xed6180d7 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x091009f2 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x16da5923 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x16f3bf01 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x24d08d1d snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2b79287f snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3168273d snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x35042535 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x45401cd4 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6630f374 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x735d1465 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7c4de153 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x97a8333e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9fcbe88c snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb21e4ceb snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xba4a702d snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc82c007f snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe5fb385f snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef813a92 snd_rawmidi_kernel_write EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x1a0f50b2 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0x98e52d39 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x2bf6c944 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x3f79e715 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x4d269945 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x77552bee snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x79a5927d snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x92cb77de snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0xa06bb49e snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xb5275613 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xc1d88f4e snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xc2a6be77 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xc4b9c0b4 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xda3c36f0 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xe2f85798 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xf6ec4fa5 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xfc2e5b62 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x05822102 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x0aa3bde2 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x13ea81e5 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x17512604 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x20ae0028 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x291c51db snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x345d634c snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x75201eeb snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x84530a4a snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x981b9c01 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x98824dce snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xaf8699c2 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xc27ae3af snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xd302b6d0 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xdcbaea6e snd_timer_resolution EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xb7f278f9 snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xf7ffe678 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x044c85fa snd_opl3_find_patch EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x087f85aa snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x204d0424 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x218f6f05 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x410568c9 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x65d6581f snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x729519cf snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc65e7bb9 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd752f782 snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0cf40497 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x16adbc3b snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x074971c5 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4957afce snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7aec705f snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8d55c393 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8f1852cc snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8e85f1a snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xda3e2cb8 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe232abf5 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfe186daa snd_opl3_find_patch EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5f9a24ad snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x77450475 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb6f7f1d0 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd17ea18f snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd54c6999 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe14a6d9f snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x44400d62 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4b080847 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6d830507 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb79d846a snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe1cfd01c snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe9fb7666 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xedb8c314 snd_vx_resume EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf4a59d64 snd_vx_free_firmware -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x046c0a38 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x09a7e1e5 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1518fb43 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19cb41cd amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf7158813 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf7cc1abb snd_vx_load_boot_image +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03ae9e0f avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08ee03ed fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a10729e cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b822484 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c2fb057 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x105c3da3 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11b6d21f cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1552050f amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x289bd7cd cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bdd3971 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31cc91c2 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34e28d70 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3f037ffe cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f787aab cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x210c48d6 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33905e58 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36a4ac0e cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x392fa47e cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b99f28c amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a25d838 cmp_connection_break EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x674c4103 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a7f6285 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c73ad23 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x768e2dc5 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa0ff6837 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb980d81c avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf0d2832 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc765d26c snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf27e771 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcff1b8b3 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3bc9187 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd6b393a9 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd81f7492 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3b6758b fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe46cb260 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb96f78a cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2a74dc5 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb0dde49 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfe8d37d0 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e569c28 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66c8c3d1 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x711d50f7 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89c95a7f snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x96f16f71 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xadff13de fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb564f6bd amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc713bb2c avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc883946b amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc918b8c5 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcfb47885 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xde8373c2 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef1b0ddf fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1c57ae3 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa491c85 iso_packets_buffer_destroy EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type -EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x5914705b intel_nhlt_get_endpoint_blob EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb7b836b3 intel_nhlt_ssp_mclk_mask -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x1c81817d snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x92920422 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x08d13823 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x66c66bf3 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6c6c96a1 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7488d0bf snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8cab527f snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x94bc0b51 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9ef35358 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdc0cca8d snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4e9dd738 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4fe06292 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xceff4b75 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf94edc13 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6708c7d2 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x857332e0 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0292fe46 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1370e726 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1bf0e655 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2f9152b5 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6411a267 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa7f2e57c snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x49b9dded snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4db13b8d snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5642d212 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x613ee12f snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8831b8a3 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe15702f5 snd_i2c_device_free -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f4029f8 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f7e44a8 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x22867526 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3319031b snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4122b8b4 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x46249450 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x51449640 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6a235229 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6d8e7157 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87003eb2 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x96221496 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x97c12552 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb55c5e46 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd673c7ea snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdd2bcf7d snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xea58b2fe snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf1dbf958 snd_ac97_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x13f3923c snd_emu10k1_ptr_write_multiple -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x26f3a585 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2fcd5d63 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x66d0af6c snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6cb7440a snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa9db7663 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb7a8ced2 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbe6ef72d snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc8fc0af3 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcf5f546a snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x952cab6a snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xacc50b6f snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb26393a7 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0981522e oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0be974a1 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0dd00101 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x12ecaf46 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x394b3433 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5cb3f9e8 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5f93e84b oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64cef775 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7db4abf9 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e49862f oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99bd21b0 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9e427306 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa268e24b oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa9659e4a oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd461b7dd oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xded4c81e oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdff2b1ab oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe49cfd19 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe705c65f oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf76e957a oxygen_read8 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x13f8a67e snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x181d3688 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3611ed97 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc850adb9 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xeae8e199 snd_trident_stop_voice +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xd767e0ec intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x87d813bd snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x925f79e6 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x06147182 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0b83788b snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x65dbaa55 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7c48fbda snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8b0c667f snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x96eeb659 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xba376270 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf7058dd4 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x63b2fe7e snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdbed1423 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xed211802 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf05dbbbe snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8c8661dc snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xeaeb4057 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x064607e6 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2d449c13 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x54256df3 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7b2cc415 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x91c93da6 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf877abd0 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x03b95152 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x08772203 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x804ba4d8 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x850af10b snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa94bce36 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xcd796437 snd_i2c_readbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x01f3c355 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b0809fb snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x105fa01f snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x242d335e snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x259ba6f1 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x30742324 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x37d710cc snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3b4d1b49 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40f7e348 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4a506dca snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a296d87 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7cff61c5 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x812425f4 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xab54f8ef snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb6bbec43 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc5af943f snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc78de39d snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x42ed4c6e snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x66c63e0e snd_emu10k1_ptr_write_multiple +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x70f81a8a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x837d6cfb snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa378847c snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb342f7f8 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb81f6afe snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe1914c79 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf3141ee7 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf88c0d97 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x193dd302 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2925de24 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa43110b4 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01a3b80c oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x12bb53a3 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x29c9c6b8 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x317258fd oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x377353de oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d6f5bfc oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x40373f80 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5a088358 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60ce889f oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d8f80dd oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7aa9759f oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93c148a8 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9513315c oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98ee7c89 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d43d7ed oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc8326bc9 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd0b994b oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8406b1c oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc10afc0 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe6418f39 oxygen_read32 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3d8e32d8 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x47dd380d snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x93485807 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb78a7808 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc0f4ff41 snd_trident_stop_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x031c69b2 snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x08d80171 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x824dd44c snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x4c0df7d6 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x507865af wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x4c059258 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa27da65c pcm3060_probe +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x099d780a snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x5ef04fff snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x9f5a2bd8 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x004327cd adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x8c52ded7 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x5597b9b8 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8a47b90c pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xb6e74a7e tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe5ecd215 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x2715f9c4 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x867d9ca2 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd705caf3 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xf5ac5f09 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xfec919ec aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x3bad633a tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x739ce21f tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x18ca6cb2 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x37668940 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5631da93 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x64e8581f aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7b8116d7 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x338a6d51 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x4a437953 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x5f42100d wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x91a878a2 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd498f9a1 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xda8eed3b wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x0d50ff92 fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x2bed2801 fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xed381dbe fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xbf298a94 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xea375544 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7fdf2320 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x979ea0c6 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/snd-soc-core 0x7260d4c7 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x2339a996 imx8_disable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x606eac81 imx8_enable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x63b5ffe8 imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xb4c998ea imx8_parse_clocks -EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x3ecdb2c4 mtk_adsp_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x00595b7c snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0315791b sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13d8e501 snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17ac3fa5 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1a91675b snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1bd86f85 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1cf08e9d sof_set_stream_data_offset -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x211390c9 sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x216be7da snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2438eb36 sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3204f1ff snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x56065b3a fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x9cfcb5e4 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xb073d3e1 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x2462a24e mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x6db4419c mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x5effb263 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x77ad0648 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0x01322787 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x0aa0857f imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xbacfe7e1 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xe19072d9 imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xfb9bcd74 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xe7d103f3 mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x134bd4c9 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1a81a0a5 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1b834371 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x275046d1 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28c8f2f8 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2dc3cff3 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f6d7889 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2fd2453f sof_machine_register EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a0e4110 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3c0fafc0 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4602cd14 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4709940d snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x495c3d94 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x553c8d74 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5765e20c sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x579525c9 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x59244882 sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5a249289 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ee806a4 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x601075ae sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60e273a9 sof_compressed_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x681fbfe3 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x702eff4b sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70bcf1d9 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x77efb665 sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7b06cc41 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7c29e414 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8182c560 sof_ipc3_do_rx_work -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82f03f5c snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x83daa5c0 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8a058b9c sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b97204e snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x92bc2b6a sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97914cfc sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa1f5f6bf snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3801b06 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5efd7d0 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xae7b2756 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf45e48f snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb21aae09 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb2cc7c69 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb7139ee8 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb75b57a7 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbdd48b3b snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf857bda snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc8fe80fd snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc9a64855 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf4d063c snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf8f0770 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe8bfe7e3 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeadc5b44 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2924e85 sof_ipc_set_get_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf623c515 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfb944043 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfcfac31c sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x5b95c0b3 sof_of_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x9ab7160e sof_of_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xba970dfa sof_of_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xed746911 sof_of_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xf0b87a90 snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x397ec5e4 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x72d5ed85 register_sound_dsp +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38823aac sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39118bc0 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41274b87 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41352c6f snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x437600e7 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45c7d9dd snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4625a07f snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4b525763 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x509d4e93 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x52c445b2 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5464e87c snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5504e4fa snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5dafa75c sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a460706 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a55a886 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70d75067 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7343feeb snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x84565474 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x91b38642 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94990c3e sof_ipc3_do_rx_work +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x987bceba snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9c799c53 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa3c8dcee sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa465e711 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa6736fdf sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa82ab3a1 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8cc82c2 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab6dcc13 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaef191b3 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb0326749 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3cd958d sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe1d6927 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca982716 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd47bbeed sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd67188a6 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xde002d8f snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe2c8fb74 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe46ea451 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeada75c3 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed9394bb sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee41ad19 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xee455e9f snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xefad2b80 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf162baf7 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1df5d24 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf32b9227 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3752a66 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf89145b3 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd610c3b sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff62caa2 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x5dd82375 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x6bcc8684 sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x8d9d233f sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xfea61deb sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xf74f876b snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x68514190 sound_class +EXPORT_SYMBOL sound/soundcore 0x768a8aa5 register_sound_dsp EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x8d53d2bd register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x8e98789d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x912150ef register_sound_special +EXPORT_SYMBOL sound/soundcore 0x96c2a09c register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa536eb36 sound_class EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1ecbd8bd snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5f505cb4 snd_emux_free +EXPORT_SYMBOL sound/soundcore 0xee2dd86d register_sound_mixer EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7dba4898 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb69eb0b9 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbad02dc7 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf3b964b2 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x657c54ba snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x762e022c snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7b92616f snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa6633ac9 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc4c975c6 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe1fb398f snd_emux_register EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6458,1235 +6458,1234 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x2161ad73 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x9ec244ce __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 0x000dbc4c lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x000bd082 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x000e5c6f bioset_exit +EXPORT_SYMBOL vmlinux 0x000ed42a phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x0028ba1b md_write_inc -EXPORT_SYMBOL vmlinux 0x002b7eb8 kill_fasync -EXPORT_SYMBOL vmlinux 0x0048eb8a param_get_byte -EXPORT_SYMBOL vmlinux 0x007c49a2 configfs_register_group -EXPORT_SYMBOL vmlinux 0x008ff7a6 __devm_release_region -EXPORT_SYMBOL vmlinux 0x00a5923e inet_del_offload -EXPORT_SYMBOL vmlinux 0x00aa4a7c handshake_genl_put -EXPORT_SYMBOL vmlinux 0x00af4535 __register_binfmt -EXPORT_SYMBOL vmlinux 0x00b1f41f neigh_xmit +EXPORT_SYMBOL vmlinux 0x001e6bd1 bio_add_folio +EXPORT_SYMBOL vmlinux 0x00226112 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x002e46c1 serio_close +EXPORT_SYMBOL vmlinux 0x004827dc __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x004c3b0f generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x00947f2b tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00bffb75 dquot_transfer -EXPORT_SYMBOL vmlinux 0x00d57e97 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x00bbffdf __udp_disconnect +EXPORT_SYMBOL vmlinux 0x00c561ef inc_nlink +EXPORT_SYMBOL vmlinux 0x00c64e21 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x00cf0f95 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x00d6ba6f generic_update_time EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d83d0c devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x00df7b90 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x00e18569 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x00e67c6d fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x00ea1909 ethtool_notify +EXPORT_SYMBOL vmlinux 0x00ee012c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x00f36760 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010a85a9 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x0100a73a vfs_get_link +EXPORT_SYMBOL vmlinux 0x010e4d5b register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011a07f4 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x011b79ef kmalloc_caches EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x0137812c tty_port_close_start -EXPORT_SYMBOL vmlinux 0x013be479 skb_pull_data +EXPORT_SYMBOL vmlinux 0x01350b91 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x0149f7ff dec_zone_page_state EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x0158977c blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x0159eb79 from_kgid +EXPORT_SYMBOL vmlinux 0x015d7992 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x016777cf set_anon_super +EXPORT_SYMBOL vmlinux 0x016be117 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x0173c0f6 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017964f7 sock_bind_add EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x0188dc88 folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0x018c850f phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x01a0522b ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x01a28a12 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x01aa2eee netlink_unicast -EXPORT_SYMBOL vmlinux 0x01adcbe8 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x01a8f5c3 ptp_find_pin EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01b98766 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x01bb63fe mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x01be01ce devm_pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c2985a dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x01cdacc1 __skb_checksum -EXPORT_SYMBOL vmlinux 0x01d89651 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x01d1043c inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x01d593b0 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x01d5a28b security_d_instantiate +EXPORT_SYMBOL vmlinux 0x01db207c iterate_supers_type EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe -EXPORT_SYMBOL vmlinux 0x01e6e444 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x01e87e13 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x01e8fe01 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x01f9df8f pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x01fc569c input_set_abs_params -EXPORT_SYMBOL vmlinux 0x0203f0df xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x01fe4d72 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x01ff4d68 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x020516b1 ethtool_aggregate_pause_stats EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x020e9ff6 param_ops_uint -EXPORT_SYMBOL vmlinux 0x023e1e77 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x021cd913 nf_log_register +EXPORT_SYMBOL vmlinux 0x0234588c rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x02387ddb update_devfreq +EXPORT_SYMBOL vmlinux 0x023b73e1 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x023c9915 blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x0250b1f9 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0251e358 md_update_sb -EXPORT_SYMBOL vmlinux 0x0256c216 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x02573f8c sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x025830bc skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x024b895a eth_header_cache_update EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02768e98 udplite_prot -EXPORT_SYMBOL vmlinux 0x027795e3 open_exec -EXPORT_SYMBOL vmlinux 0x027bdfa7 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x029583af scsi_device_put +EXPORT_SYMBOL vmlinux 0x027e4b8e pci_iomap_range EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02988d98 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x02a6954e inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x0297e554 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x02a4bf21 truncate_inode_pages EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02f45630 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x03297b7f scsi_done +EXPORT_SYMBOL vmlinux 0x02d21dfa md_write_inc +EXPORT_SYMBOL vmlinux 0x02dabbe9 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x02dd7b59 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x02fa2020 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x03219657 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0336c3af netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x0339dd3d d_alloc_name +EXPORT_SYMBOL vmlinux 0x0347cbc1 locks_delete_block EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror -EXPORT_SYMBOL vmlinux 0x03553ddb fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x034cfcdc md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x035b24f5 folio_end_private_2 EXPORT_SYMBOL vmlinux 0x035d25ab memcg_kmem_online_key EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x03628844 param_ops_invbool EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036add3e xfrm_parse_spi EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x036dd119 path_has_submounts EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x039608be xfrm_find_acq EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a1352a __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03f2c025 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x03f48029 fman_set_port_params +EXPORT_SYMBOL vmlinux 0x03bfb232 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x03f43a3b vlan_for_each EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0400ff7e iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x04316d5d __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x03fd8ae7 noop_qdisc +EXPORT_SYMBOL vmlinux 0x042bd817 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x042eeece page_pool_get_stats EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x044aef14 register_qdisc EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 +EXPORT_SYMBOL vmlinux 0x045f8c7a devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x04749f67 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x047a7ac1 __register_nls +EXPORT_SYMBOL vmlinux 0x047e81e8 ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x048e4e5a napi_gro_receive -EXPORT_SYMBOL vmlinux 0x04a36416 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x04a6505a inetdev_by_index -EXPORT_SYMBOL vmlinux 0x04bf5b3c inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x04884361 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x048c5940 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x049f1cce tcp_read_sock +EXPORT_SYMBOL vmlinux 0x04b7bd24 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x04d50ee4 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x04da8c3b mmc_put_card -EXPORT_SYMBOL vmlinux 0x04dd3a6e __netif_napi_del -EXPORT_SYMBOL vmlinux 0x04dd9c98 __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f2beb6 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050a050b param_set_ulong -EXPORT_SYMBOL vmlinux 0x0516ccef xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x05148e88 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x0518e0f7 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0531c65f ethtool_aggregate_pause_stats -EXPORT_SYMBOL vmlinux 0x054054b2 __bh_read -EXPORT_SYMBOL vmlinux 0x0543f467 tty_port_close +EXPORT_SYMBOL vmlinux 0x0526f401 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x0528098f acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x0533e4d6 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x0534ebbb __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05493f80 mmc_command_done EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x057428a6 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x0594efae pcim_iomap -EXPORT_SYMBOL vmlinux 0x05caccf5 add_to_pipe -EXPORT_SYMBOL vmlinux 0x05cf54f5 vm_map_pages -EXPORT_SYMBOL vmlinux 0x05d33f6f rtnl_create_link -EXPORT_SYMBOL vmlinux 0x05e137f1 ethtool_aggregate_mac_stats -EXPORT_SYMBOL vmlinux 0x05ed0729 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x05fbfec7 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x05fcb8e3 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x05fdcd88 seq_bprintf +EXPORT_SYMBOL vmlinux 0x05859a5a jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x05b0a76d netif_carrier_off +EXPORT_SYMBOL vmlinux 0x05eeb929 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x05fe5668 __break_lease +EXPORT_SYMBOL vmlinux 0x05ffe60c no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x060f8ff7 __of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x061394a3 unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x0616d285 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x0629e7a7 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x062dca00 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x062f5971 blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063c2269 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x065e4d6f of_mdio_find_device -EXPORT_SYMBOL vmlinux 0x065f1f70 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x0665c71e devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066f24e6 dcb_setapp -EXPORT_SYMBOL vmlinux 0x066f255a rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x0684864b alloc_fddidev -EXPORT_SYMBOL vmlinux 0x06877fe1 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x068bfc49 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x069ab802 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x06b8abdb xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x06779098 mntget +EXPORT_SYMBOL vmlinux 0x067b470c folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x067e27be dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x06853ed0 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x068dd58a file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x06b16672 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x06b17cd7 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x06b7d047 vfs_create EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c88ffc d_rehash +EXPORT_SYMBOL vmlinux 0x06c215f3 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x06c3adaf generic_perform_write EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d51088 i2c_transfer -EXPORT_SYMBOL vmlinux 0x06df9526 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x06d4ebd4 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x06e236e6 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x06e6b388 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x06f612e3 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x0711a4b9 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x0710f3c8 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x072024a5 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x07329329 flush_signals +EXPORT_SYMBOL vmlinux 0x073618fd sget_fc EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x0759c7b2 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x076fdff4 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x07780727 sock_create_kern -EXPORT_SYMBOL vmlinux 0x078073a5 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x0769f082 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x076d1d71 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x07766510 fs_context_for_mount EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x07a522c8 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x07a61684 copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0x07887af4 input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c8b547 pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07eda61f pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x07f2ee37 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f65a1a nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x07f92319 __of_get_address +EXPORT_SYMBOL vmlinux 0x07fbad43 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x081f9825 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x081cc493 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x0827a709 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08326e88 get_thermal_instance EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes -EXPORT_SYMBOL vmlinux 0x0837d596 noop_llseek EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x085db3e7 module_layout -EXPORT_SYMBOL vmlinux 0x086787f2 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x086b2eef pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x085121f0 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit -EXPORT_SYMBOL vmlinux 0x08b80ba0 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x08dbe6bc of_phy_find_device +EXPORT_SYMBOL vmlinux 0x08834ea6 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x08c84daa phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x08d0a938 pci_release_region +EXPORT_SYMBOL vmlinux 0x08d8bb7e bio_free_pages EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08ea516d tcp_req_err -EXPORT_SYMBOL vmlinux 0x08fa634f fman_port_get_device -EXPORT_SYMBOL vmlinux 0x0915e918 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x0907a051 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x09159cd4 set_binfmt EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093631f7 pci_get_subsys EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x094d1471 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x094f3061 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x09501b2c register_key_type -EXPORT_SYMBOL vmlinux 0x0960d0d8 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x09617388 keyring_search -EXPORT_SYMBOL vmlinux 0x0972a020 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x0972d9c8 current_time +EXPORT_SYMBOL vmlinux 0x09666878 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x098b7649 misc_deregister -EXPORT_SYMBOL vmlinux 0x098e5650 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x09921326 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x09928028 serio_bus -EXPORT_SYMBOL vmlinux 0x09960b0d of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x09976ac0 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x09a02183 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x09d26496 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x0995c0da invalidate_bdev +EXPORT_SYMBOL vmlinux 0x09997003 __inet_hash +EXPORT_SYMBOL vmlinux 0x09a4eeea kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x09b18b5f pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x09b661d3 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x09bb1421 of_translate_dma_region +EXPORT_SYMBOL vmlinux 0x09bf216c configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d4d822 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x09d774d3 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x09d78c21 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09eb7b3c tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x09f36358 kern_path +EXPORT_SYMBOL vmlinux 0x09f7b913 alloc_pages EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put -EXPORT_SYMBOL vmlinux 0x09fec6a2 pnp_release_card_device EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a03eb3f amba_driver_unregister EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a157e8a dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a2ac540 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x0a3df701 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x0a452170 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x0a39c0fc skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x0a3b4744 kill_block_super +EXPORT_SYMBOL vmlinux 0x0a53c3bd tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x0a566cf9 pci_select_bars +EXPORT_SYMBOL vmlinux 0x0a589b93 __scm_send +EXPORT_SYMBOL vmlinux 0x0a70e7e2 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a789684 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x0a82634f mmc_remove_host EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a892147 of_get_mac_address EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa780dc kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0aa9546b secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab051fb elv_rb_find -EXPORT_SYMBOL vmlinux 0x0ac42a79 pcie_set_mps EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad5283a __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x0b02ad5c make_kuid -EXPORT_SYMBOL vmlinux 0x0b0b6a90 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x0ad55042 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x0ad6f24d bio_put +EXPORT_SYMBOL vmlinux 0x0ae7234c skb_unlink +EXPORT_SYMBOL vmlinux 0x0aed5e82 sock_no_listen EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b24c466 dump_align EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b2d18e8 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x0b329e36 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x0b340bc1 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x0b4f3163 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x0b4f93b8 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x0b570cc9 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x0b5b876a phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x0b68b478 vmap -EXPORT_SYMBOL vmlinux 0x0b697366 security_path_unlink +EXPORT_SYMBOL vmlinux 0x0b35d970 __register_chrdev +EXPORT_SYMBOL vmlinux 0x0b37388a fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x0b38b51b security_path_rename +EXPORT_SYMBOL vmlinux 0x0b3ca0d2 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x0b514228 __kfree_skb +EXPORT_SYMBOL vmlinux 0x0b5433e4 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x0b6562ea tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b79ef3e submit_bio_wait +EXPORT_SYMBOL vmlinux 0x0b83b2fe blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x0b90c16e iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0b937675 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x0b968e3b prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x0b9d9beb skb_condense EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba35ce4 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x0ba99b7c serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x0ba9bc83 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x0bb1787a kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x0bb55490 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x0ba7abb3 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x0baf0071 touch_atime +EXPORT_SYMBOL vmlinux 0x0bb248f8 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x0bb4e032 skb_checksum_help EXPORT_SYMBOL vmlinux 0x0bb5dd4a dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0bb724e6 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x0bc1d092 dquot_alloc +EXPORT_SYMBOL vmlinux 0x0bc1dee6 phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc8ffe0 tcf_exts_validate EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0bde64d6 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x0be3de4f pnp_is_active +EXPORT_SYMBOL vmlinux 0x0be685e6 msm_pinctrl_remove EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c0104d1 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x0c1c626c reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c27c5e7 skb_dump -EXPORT_SYMBOL vmlinux 0x0c28155d key_alloc EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c4b267e rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x0c4394eb capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x0c46ea6d tegra_ivc_read_get_next_frame EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c6b27d5 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x0c5a6aa0 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x0c61739d get_fs_type EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c7e5285 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x0c8a280f blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x0c8acd22 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x0c8b4bf8 page_mapping -EXPORT_SYMBOL vmlinux 0x0c96e560 phy_suspend -EXPORT_SYMBOL vmlinux 0x0c977dbe ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x0ca19f44 set_anon_super -EXPORT_SYMBOL vmlinux 0x0ca5e904 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x0ca9bc87 xfrm_input +EXPORT_SYMBOL vmlinux 0x0c6f5f21 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x0c726cf8 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x0c734a6c flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x0c79c82e make_kprojid +EXPORT_SYMBOL vmlinux 0x0c837b98 simple_open +EXPORT_SYMBOL vmlinux 0x0c93bfd9 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x0c9e97e4 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x0caeb3b4 mdiobus_write EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cb4cf95 vme_master_request -EXPORT_SYMBOL vmlinux 0x0cb60389 dcb_getrewr_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x0cb73328 iov_iter_xarray EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0ceee4b4 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x0cef233a ps2_init -EXPORT_SYMBOL vmlinux 0x0cfee8be unregister_framebuffer EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d098021 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x0d1a78aa from_kgid_munged +EXPORT_SYMBOL vmlinux 0x0d23fdfa kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x0d279332 fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d32ea49 nf_setsockopt EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d4a4ab4 end_page_writeback -EXPORT_SYMBOL vmlinux 0x0d50ab7d locks_copy_lock +EXPORT_SYMBOL vmlinux 0x0d45017d add_to_page_cache_lru EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d6659d1 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x0d8c0be2 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x0d8e841c neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x0d947e8d tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x0d54e8cc dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x0d718b8c sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0d734485 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x0d755fc4 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x0d7f997c generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x0da37acd dma_fence_array_first -EXPORT_SYMBOL vmlinux 0x0da7f02a mapping_read_folio_gfp -EXPORT_SYMBOL vmlinux 0x0db8f996 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x0dd9d920 vfs_llseek +EXPORT_SYMBOL vmlinux 0x0da5bed6 file_open_root +EXPORT_SYMBOL vmlinux 0x0da7947b sock_alloc +EXPORT_SYMBOL vmlinux 0x0dc110ee devm_backlight_device_register EXPORT_SYMBOL vmlinux 0x0deb72fc __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0dfccc98 stop_tty -EXPORT_SYMBOL vmlinux 0x0dffd2ff blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0x0e10e16c mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x0ded6059 kernel_write +EXPORT_SYMBOL vmlinux 0x0e03713b fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x0e0586b5 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x0e1462a7 dump_skip EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e2559c9 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x0e349060 set_binfmt -EXPORT_SYMBOL vmlinux 0x0e3aaa47 fasync_helper +EXPORT_SYMBOL vmlinux 0x0e3a15d5 ps2_init +EXPORT_SYMBOL vmlinux 0x0e3b8db1 inet_select_addr +EXPORT_SYMBOL vmlinux 0x0e3f22c8 netdev_pick_tx EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e5b7b92 vme_bus_num +EXPORT_SYMBOL vmlinux 0x0e63ad7a blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x0e771e36 phy_attached_info +EXPORT_SYMBOL vmlinux 0x0e80a0b8 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x0e8a27af dev_lstats_read +EXPORT_SYMBOL vmlinux 0x0e8fde5e arp_xmit EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eaa9f76 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x0eae9d5a copy_page_to_iter_nofault EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec55468 xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ec8c682 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x0ed0ee70 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x0ed24a0e blk_sync_queue -EXPORT_SYMBOL vmlinux 0x0ee6bd07 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x0eece2c3 __quota_error -EXPORT_SYMBOL vmlinux 0x0f01d9c6 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x0ec885fc vma_set_file +EXPORT_SYMBOL vmlinux 0x0ed6f0ec skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x0ef8bd59 ps2_sliced_command EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f17bff5 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x0f18170c dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f42076c dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x0f49b098 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x0f3d9136 skb_queue_tail EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f776117 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x0f799fac cros_ec_check_result EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8af4c0 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x0f8e9cd8 filemap_get_folios_tag +EXPORT_SYMBOL vmlinux 0x0f93da1e tcp_read_skb +EXPORT_SYMBOL vmlinux 0x0f9f51ef md_bitmap_unplug_async EXPORT_SYMBOL vmlinux 0x0f9fe992 sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0x0fa0ae0e skb_free_datagram +EXPORT_SYMBOL vmlinux 0x0fa919e2 __devm_request_region EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb01f19 i2c_register_driver EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fb3ee66 mmc_start_request +EXPORT_SYMBOL vmlinux 0x0fbcb0cd mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x0fbec23a blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ffc63c1 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x0fe813a6 scsi_host_put +EXPORT_SYMBOL vmlinux 0x0fe9d8d9 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x0ffe0b89 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x10074824 page_pool_unlink_napi +EXPORT_SYMBOL vmlinux 0x100b81b7 kfree_skb_reason EXPORT_SYMBOL vmlinux 0x100bddf8 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x1014eca9 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x101c9b1c dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x101141d0 mount_single EXPORT_SYMBOL vmlinux 0x101d7ff5 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x10345931 __serio_register_driver EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103c3d3b sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x10400c0b netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x10565c12 vga_get EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x105deb25 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x1060e4dd blkdev_put EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x10693e0a flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x107b0b13 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10a49b56 netdev_err -EXPORT_SYMBOL vmlinux 0x10a80fff ndisc_send_skb -EXPORT_SYMBOL vmlinux 0x10ae8d87 dma_pool_create +EXPORT_SYMBOL vmlinux 0x108f07aa ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x10b844ec sock_no_mmap +EXPORT_SYMBOL vmlinux 0x10c5ebfd phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x10d71994 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x10d8f4cd kill_anon_super +EXPORT_SYMBOL vmlinux 0x10d90ce3 blk_set_runtime_active EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10db0640 copy_highpage EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f90711 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x1106c817 pci_dev_put +EXPORT_SYMBOL vmlinux 0x10ed30d7 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1103dc39 mnt_set_expiry EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11143477 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x112ba0c2 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x1139b2ab jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x1143ff54 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x114b1d83 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x1150210c mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x11204c41 __phy_resume +EXPORT_SYMBOL vmlinux 0x112465e4 netdev_printk +EXPORT_SYMBOL vmlinux 0x11270305 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x11327c9b dev_get_flags +EXPORT_SYMBOL vmlinux 0x113e9eac ether_setup +EXPORT_SYMBOL vmlinux 0x11481fd2 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x11489c49 __put_user_ns +EXPORT_SYMBOL vmlinux 0x1152d019 bio_alloc_clone EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117165fb inet_frag_kill -EXPORT_SYMBOL vmlinux 0x117b3bc8 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x11858d92 lookup_one -EXPORT_SYMBOL vmlinux 0x119e1580 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x11aa5cd5 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x11aaef83 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x11cae0b8 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x117d64ff mfd_add_devices +EXPORT_SYMBOL vmlinux 0x11985ca2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x11a66ea0 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x11b2bed9 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x11bf709a flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x11c8a78f tcf_qevent_init EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e563f0 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x12010dea console_start -EXPORT_SYMBOL vmlinux 0x1203db7f dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x1205e45c devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x12046c57 genphy_resume EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset -EXPORT_SYMBOL vmlinux 0x1213037e mmc_of_parse EXPORT_SYMBOL vmlinux 0x122c3a7e _printk -EXPORT_SYMBOL vmlinux 0x122c56ce backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x1239e0fc nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x122e0a39 phy_set_max_speed EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x125b4a41 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x12646cb3 ilookup +EXPORT_SYMBOL vmlinux 0x126b8c2e __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x127d52c8 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x1286bd6b pci_pme_capable -EXPORT_SYMBOL vmlinux 0x12950af5 seq_lseek +EXPORT_SYMBOL vmlinux 0x1298409c fb_pan_display EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12af9179 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x12c65cef md_register_thread -EXPORT_SYMBOL vmlinux 0x12c8a1cd blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x12a72680 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x12af5a2c disk_stack_limits EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12ddff5c nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x12e1aa16 uart_match_port -EXPORT_SYMBOL vmlinux 0x12e3ec68 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x12db130f pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x12dca75c netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x12e1976c skb_ext_add EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x13039334 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x12ff6c0e pci_find_bus EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x130b6b6a buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x130d402b md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x130fdeeb tcp_ioctl EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1311b197 __break_lease EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x134ec352 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x134fbca0 input_event -EXPORT_SYMBOL vmlinux 0x1363ad6d genphy_c45_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x1375232d tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x1383f623 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x138def9a jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x133a51e7 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x1347cd3a tls_server_hello_x509 +EXPORT_SYMBOL vmlinux 0x136bb2e3 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x137cb2ac nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x137e93c2 noop_fsync +EXPORT_SYMBOL vmlinux 0x13873c7f pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x13884e81 ps2_interrupt +EXPORT_SYMBOL vmlinux 0x13919b93 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13a525c3 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x13b0baa5 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x13b79eb3 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13e76630 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x13e7e406 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x13ea5eb5 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x13f45fba fb_class +EXPORT_SYMBOL vmlinux 0x13ebfaaf config_item_put +EXPORT_SYMBOL vmlinux 0x13f18533 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x13f9d9fd mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x1431f212 is_nd_btt -EXPORT_SYMBOL vmlinux 0x14336982 netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0x143f6edc pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x14464e91 unregister_key_type -EXPORT_SYMBOL vmlinux 0x145fe0f3 proc_set_size +EXPORT_SYMBOL vmlinux 0x1432da8a skb_copy_header +EXPORT_SYMBOL vmlinux 0x143e584e __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x144a0cb5 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x14558c8f tls_client_hello_x509 EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x1460f414 cdrom_ioctl EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146c2e79 __sock_i_ino -EXPORT_SYMBOL vmlinux 0x14867618 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x148a3423 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x1465d1df __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x1476485f inode_set_bytes +EXPORT_SYMBOL vmlinux 0x148846ad eth_gro_receive +EXPORT_SYMBOL vmlinux 0x14896c96 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x14924b16 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x1493c83b security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x149ca725 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg -EXPORT_SYMBOL vmlinux 0x14aede9d ps2_begin_command -EXPORT_SYMBOL vmlinux 0x14b36a50 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x14be1268 handshake_req_submit +EXPORT_SYMBOL vmlinux 0x14bfd8bd key_reject_and_link +EXPORT_SYMBOL vmlinux 0x14c2b91e fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14d68399 sk_error_report EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14de091b generic_buffers_fsync_noflush -EXPORT_SYMBOL vmlinux 0x14eec8bf jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x14d9b43b generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x14da48ac __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x14dcfde7 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x14e78b2d tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x14f1a854 key_alloc EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14fb793f flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x150f3101 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x15132bc8 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x15141476 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x151ab240 config_item_set_name +EXPORT_SYMBOL vmlinux 0x151e0bf7 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x15217396 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155e9a63 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x15617148 __lock_buffer -EXPORT_SYMBOL vmlinux 0x156ab4d5 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x15755a75 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x1582598b cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x159b9ff8 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x15ae0480 sock_release -EXPORT_SYMBOL vmlinux 0x15b2b2b8 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x15b58bb0 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x1578b9ad dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x157a11ff setup_new_exec +EXPORT_SYMBOL vmlinux 0x1580694a twl6040_power +EXPORT_SYMBOL vmlinux 0x15935b41 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1599ce2d __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x159cdb0c pci_disable_device +EXPORT_SYMBOL vmlinux 0x15b8c24e d_drop EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bbf76a backlight_device_register +EXPORT_SYMBOL vmlinux 0x15bdd803 mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c1d655 mpage_writepages -EXPORT_SYMBOL vmlinux 0x15c3657e phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15c8c129 skb_splice_from_iter -EXPORT_SYMBOL vmlinux 0x15d0a720 fman_unregister_intr EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x1608bbc2 filemap_release_folio -EXPORT_SYMBOL vmlinux 0x160de2cf of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x1600653d flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x1611ef4b blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x16205c4f inet6_getname EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162f50c4 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x16315ee4 __folio_put EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1636c03a gro_cells_init EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x164f865e phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x16610fb2 seq_putc -EXPORT_SYMBOL vmlinux 0x166d0bb0 napi_get_frags +EXPORT_SYMBOL vmlinux 0x16433423 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x164da350 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1655cb8f mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167e25cb __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x168052ac block_write_end -EXPORT_SYMBOL vmlinux 0x16896fc8 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x168ef140 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x1688d3dc kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x16942ff9 netif_rx +EXPORT_SYMBOL vmlinux 0x169658ab xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x1699d7f5 pci_disable_device +EXPORT_SYMBOL vmlinux 0x169b15e0 clk_get +EXPORT_SYMBOL vmlinux 0x169b323b tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x169c34c9 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x16a253e0 ethtool_aggregate_phy_stats +EXPORT_SYMBOL vmlinux 0x16a316b8 neigh_connected_output EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16afb041 key_validate -EXPORT_SYMBOL vmlinux 0x16c9b94f xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x16ae55a7 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x16c17aef tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d59ae8 __phy_resume +EXPORT_SYMBOL vmlinux 0x16e11718 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x16e25c09 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16ed0970 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x16f9fe1c clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x16ffb4f9 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x1703144b to_nd_pfn EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x172f36a6 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x1751c33b crypto_sha3_update -EXPORT_SYMBOL vmlinux 0x1754fdff update_devfreq -EXPORT_SYMBOL vmlinux 0x176137ae task_lookup_next_fd_rcu -EXPORT_SYMBOL vmlinux 0x176f0123 devm_iounmap +EXPORT_SYMBOL vmlinux 0x170e431d dm_register_target +EXPORT_SYMBOL vmlinux 0x17141780 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x173d3aea dquot_file_open +EXPORT_SYMBOL vmlinux 0x176e9fc8 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get -EXPORT_SYMBOL vmlinux 0x1785365e posix_test_lock +EXPORT_SYMBOL vmlinux 0x17851f9b nf_getsockopt EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x1794da1c security_unix_may_send -EXPORT_SYMBOL vmlinux 0x179fb5fd dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x17b7be42 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x17be71c6 padata_alloc -EXPORT_SYMBOL vmlinux 0x17c738d2 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x17ce2fb1 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x17e631f8 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x17fab6b8 padata_free_shell -EXPORT_SYMBOL vmlinux 0x17fe8ec1 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x17fec0bd __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x1813c7f1 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x181643e6 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x179632ef of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x17a95fdb sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x17abc351 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x17cd6d7c pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x17cdf82e inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x17d1f11d bprm_change_interp +EXPORT_SYMBOL vmlinux 0x17d36060 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x17e71d63 inetdev_by_index EXPORT_SYMBOL vmlinux 0x1819a3f5 register_sysctl -EXPORT_SYMBOL vmlinux 0x181cb681 dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x181f537e ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x181a16d7 sock_i_ino +EXPORT_SYMBOL vmlinux 0x18320947 page_readlink EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1861060b tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x186d3bb8 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x1853a728 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x185e3120 km_policy_notify +EXPORT_SYMBOL vmlinux 0x18662d43 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x1876f855 fs_bio_set EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x188492a4 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x187e878b scsi_host_get +EXPORT_SYMBOL vmlinux 0x1880112a dev_mc_init EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ab313 dev_set_alias EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18920a70 discard_new_inode -EXPORT_SYMBOL vmlinux 0x18a8a394 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x18ad324c follow_down EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18cc6153 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x18dc341b tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x18c7d082 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x18d620ed scsi_block_requests +EXPORT_SYMBOL vmlinux 0x18d6d3eb redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e72cfe unregister_quota_format -EXPORT_SYMBOL vmlinux 0x1907957f tty_hangup -EXPORT_SYMBOL vmlinux 0x191e0dd3 filemap_fault -EXPORT_SYMBOL vmlinux 0x1928fab4 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x192b6de0 seq_write -EXPORT_SYMBOL vmlinux 0x192d8d5e nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x19488443 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x194a3da0 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x19514d8f file_remove_privs +EXPORT_SYMBOL vmlinux 0x1932ab84 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x19362308 netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x19629280 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x19790a7b skb_put EXPORT_SYMBOL vmlinux 0x197d5b60 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x1980a32e nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x1987476d __alloc_skb +EXPORT_SYMBOL vmlinux 0x19997b1f nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b5764e devm_memunmap -EXPORT_SYMBOL vmlinux 0x19b83d67 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x19ba2589 kernel_connect +EXPORT_SYMBOL vmlinux 0x19b6e090 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c9a0ac jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x19ddcc2d fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x19eebbb2 sk_dst_check -EXPORT_SYMBOL vmlinux 0x19f7bcad md_bitmap_unplug_async -EXPORT_SYMBOL vmlinux 0x1a051acb devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x1a08ad60 alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x1a240083 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x1a439d32 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x19ed7de1 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x19fd11f8 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x1a136022 msm_pinctrl_probe EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a53ed32 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x1a5fbfa2 skb_checksum -EXPORT_SYMBOL vmlinux 0x1a68fa1f pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x1a6d9451 dma_set_mask -EXPORT_SYMBOL vmlinux 0x1a6f5d46 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x1a854678 cdev_del -EXPORT_SYMBOL vmlinux 0x1a8f22ab dev_load +EXPORT_SYMBOL vmlinux 0x1a50c9ab put_fs_context +EXPORT_SYMBOL vmlinux 0x1a5b7b54 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x1a76a1ae napi_disable +EXPORT_SYMBOL vmlinux 0x1a8ee522 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x1a90465f blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1a93eeb4 inet6_register_protosw EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa23810 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x1aa58757 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x1abc976b find_inode_rcu EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac6a0df dev_add_offload -EXPORT_SYMBOL vmlinux 0x1ad51d6f flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x1ae61a0f netif_rx -EXPORT_SYMBOL vmlinux 0x1aef1b0f pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x1af14802 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0e0148 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x1b308261 napi_complete_done +EXPORT_SYMBOL vmlinux 0x1b06837e nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x1b086d63 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x1b1faad8 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x1b29f0f5 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x1b335af2 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x1b37931e default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1b3b57cc blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put -EXPORT_SYMBOL vmlinux 0x1b551188 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x1b584e03 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b60a12b end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b77623e vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8a3149 param_set_ulong EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested -EXPORT_SYMBOL vmlinux 0x1b9dbb8c inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x1ba4310c mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x1ba58ef9 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1ba9d6e6 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x1bb4d90d of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x1bb09231 iterate_fd EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bc8b391 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x1bcc7bbb clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x1bc28b0c __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x1bcb2866 pcim_iomap EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent EXPORT_SYMBOL vmlinux 0x1be00271 __nla_reserve -EXPORT_SYMBOL vmlinux 0x1bfec046 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x1c06798e i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x1c0cbaab udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x1c0ef2d8 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x1c1b0d3c __skb_get_hash -EXPORT_SYMBOL vmlinux 0x1c242dc2 scsi_done_direct -EXPORT_SYMBOL vmlinux 0x1c2452d0 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x1c3360fb writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x1c55f7ad blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x1c24f195 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x1c35d942 sk_wait_data +EXPORT_SYMBOL vmlinux 0x1c4a46c2 scsi_device_put EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c839662 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x1c8d5086 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x1c90b71f folio_add_lru -EXPORT_SYMBOL vmlinux 0x1c9ddc64 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x1ca0622f hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x1c66ccbe dput +EXPORT_SYMBOL vmlinux 0x1c6b7001 vm_map_ram +EXPORT_SYMBOL vmlinux 0x1c6d8824 dm_put_device EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cdaaee6 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1cf592fa bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1cee9883 tcp_seq_stop EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d180474 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x1d120bc4 param_get_long EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit -EXPORT_SYMBOL vmlinux 0x1d3c32c6 inet_dgram_ops EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d578e95 param_set_invbool -EXPORT_SYMBOL vmlinux 0x1d70a2d2 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x1d422beb cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x1d427cdf is_subdir +EXPORT_SYMBOL vmlinux 0x1d533454 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x1d62193e param_array_ops +EXPORT_SYMBOL vmlinux 0x1d734c81 __folio_batch_release EXPORT_SYMBOL vmlinux 0x1d794855 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x1d7bb093 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x1d87a323 kfree_skb_list_reason -EXPORT_SYMBOL vmlinux 0x1d8daaeb netdev_change_features +EXPORT_SYMBOL vmlinux 0x1d892427 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x1d8e034c twl6040_reg_write EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1d97d2a6 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x1da6b536 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x1db392a3 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x1db3b52c dma_resv_fini +EXPORT_SYMBOL vmlinux 0x1db5f102 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x1dc31762 ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd34bcd d_set_fallthru +EXPORT_SYMBOL vmlinux 0x1dcb2aee i2c_get_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x1dcee20d tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dde57f9 get_task_cred EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0x1df96fae skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e06cae1 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e138a78 folio_alloc -EXPORT_SYMBOL vmlinux 0x1e18deee touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x1e3d2720 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x1e4e88b3 pipe_unlock +EXPORT_SYMBOL vmlinux 0x1e147962 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x1e1ee80d set_posix_acl +EXPORT_SYMBOL vmlinux 0x1e3bb6d8 phy_device_register +EXPORT_SYMBOL vmlinux 0x1e499851 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x1e53334a netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x1e56ffb3 try_module_get EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7b7e53 tcp_connect +EXPORT_SYMBOL vmlinux 0x1e8a43bd dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x1e8c895e mii_check_media +EXPORT_SYMBOL vmlinux 0x1e8ea955 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x1e95914b register_netdevice EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb4bd99 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x1eb704ce input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x1ec31b25 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x1ec5a998 __module_get -EXPORT_SYMBOL vmlinux 0x1ecb1692 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x1eaf7b36 dquot_transfer +EXPORT_SYMBOL vmlinux 0x1ec1626a kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x1ec7075a neigh_changeaddr EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1eeaa43a vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x1eee77bb phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x1eef2575 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x1eefce08 fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format -EXPORT_SYMBOL vmlinux 0x1efc41b9 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x1f01b197 mii_nway_restart -EXPORT_SYMBOL vmlinux 0x1f055792 rtc_add_groups -EXPORT_SYMBOL vmlinux 0x1f185b6c bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x1f1b9ba5 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x1f4a7b40 __serio_register_port -EXPORT_SYMBOL vmlinux 0x1f4b5fa8 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x1eff51ab fb_set_var +EXPORT_SYMBOL vmlinux 0x1f14a323 tty_unlock +EXPORT_SYMBOL vmlinux 0x1f1de899 thaw_super +EXPORT_SYMBOL vmlinux 0x1f2b8d62 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x1f2c55d2 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x1f3a2a7f cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f5d7b5a mdio_driver_register -EXPORT_SYMBOL vmlinux 0x1f65b26c mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x1f85c1e7 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x1fb34884 mii_check_media +EXPORT_SYMBOL vmlinux 0x1f5e7547 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x1f904b9d fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x1f966510 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x1fbaa903 __xfrm_init_state EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc1109e proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x1fc12817 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x1fc4a3ed tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1ffbfaa4 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x1fdeaca4 rproc_del +EXPORT_SYMBOL vmlinux 0x1fff6d8d netdev_alert EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2003d815 readahead_expand EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2043268c nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x202c90eb get_tree_keyed +EXPORT_SYMBOL vmlinux 0x203bdbe7 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x205ca303 simple_lookup -EXPORT_SYMBOL vmlinux 0x20749167 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x2083c259 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x207c62ba unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x20939c85 vfs_rename +EXPORT_SYMBOL vmlinux 0x2099783a pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x209ba09b mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c3615c set_user_nice +EXPORT_SYMBOL vmlinux 0x20a8f71f dev_uc_del +EXPORT_SYMBOL vmlinux 0x20a9322e key_payload_reserve +EXPORT_SYMBOL vmlinux 0x20a9e4df import_single_range +EXPORT_SYMBOL vmlinux 0x20ab1c74 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x20b88577 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x20c87e3b unlock_page EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20ead689 folio_unlock +EXPORT_SYMBOL vmlinux 0x20e5879c path_get EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x2121bf42 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x20f8d990 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x212147fb mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x212d9284 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213adf4f dst_discard_out +EXPORT_SYMBOL vmlinux 0x213ae5d7 node_data EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x213ee466 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x21407ce5 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x214ea30e iov_iter_zero -EXPORT_SYMBOL vmlinux 0x216a4f11 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x216694d6 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x21713628 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x2182d8ac genphy_c45_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x219b314e jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x21b489c0 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x21b95484 pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21c475ab complete_request_key +EXPORT_SYMBOL vmlinux 0x21cca9f7 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x21e06911 sock_create_kern EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21ee397e of_range_to_resource EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f59354 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x21ff0f85 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x21ff1a74 release_pages -EXPORT_SYMBOL vmlinux 0x220d5f22 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x222b35cc folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x2200d37c __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x2204c2b6 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x2211aa95 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x221ad1b6 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2233c4b6 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x22377f55 get_fs_type -EXPORT_SYMBOL vmlinux 0x223a3dbc blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x2242cd55 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x224461e5 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x2236c7b4 tls_handshake_cancel EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x224e4376 input_register_device -EXPORT_SYMBOL vmlinux 0x225721d5 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x226d466d dm_table_event -EXPORT_SYMBOL vmlinux 0x22735238 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x227b49e7 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x228f5c06 __bread_gfp -EXPORT_SYMBOL vmlinux 0x22926986 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x2299559e pneigh_lookup +EXPORT_SYMBOL vmlinux 0x2253e1a0 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x22694647 getname_kernel +EXPORT_SYMBOL vmlinux 0x226b5745 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x22733c01 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x228286da devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x2288e9bb mr_table_dump +EXPORT_SYMBOL vmlinux 0x22921868 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x229c753b ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x229ffa58 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x22a9b838 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x22b21185 mmc_free_host EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c98942 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x22ca56e7 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x22d27533 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x22e23ddd seq_hex_dump -EXPORT_SYMBOL vmlinux 0x22f729e1 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x2317964e reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x2327b55a of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x233e4d06 pci_release_resource -EXPORT_SYMBOL vmlinux 0x234e7604 tty_lock +EXPORT_SYMBOL vmlinux 0x22c66181 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x22e1b751 vfs_symlink +EXPORT_SYMBOL vmlinux 0x22e20cd2 __skb_checksum +EXPORT_SYMBOL vmlinux 0x22e3e09d qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x22f01a6c rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x22fc6c0d tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x2308309a file_update_time +EXPORT_SYMBOL vmlinux 0x231b90c2 cdev_alloc +EXPORT_SYMBOL vmlinux 0x23202acb of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x2321c1d7 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x232c4611 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x2331bc0a netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x235f076f inode_io_list_del -EXPORT_SYMBOL vmlinux 0x23644c99 mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236ce324 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x23688124 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x236c49d8 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x237282ea unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x237bec5d cdev_init +EXPORT_SYMBOL vmlinux 0x2380e74f input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x2396f6fb tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x23a8e805 xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x23ab9a3a current_in_userns -EXPORT_SYMBOL vmlinux 0x23b93c96 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x239b03cd nd_device_unregister +EXPORT_SYMBOL vmlinux 0x23aade31 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x23b5d9b3 config_item_set_name EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bcfa1e pci_set_power_state -EXPORT_SYMBOL vmlinux 0x23ce1241 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x23cbd72c folio_wait_bit EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet EXPORT_SYMBOL vmlinux 0x23dc7f6c hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x23ea5726 _dev_err -EXPORT_SYMBOL vmlinux 0x23ef83b3 phy_device_register EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240ba896 d_genocide -EXPORT_SYMBOL vmlinux 0x242a6b03 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x243a6c7f scmd_printk +EXPORT_SYMBOL vmlinux 0x2414a131 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x242200d4 _copy_to_iter EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24438a28 param_set_dyndbg_classes EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2460156f __brelse -EXPORT_SYMBOL vmlinux 0x24675b74 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x245afeea dquot_drop +EXPORT_SYMBOL vmlinux 0x24624fc8 dma_set_mask +EXPORT_SYMBOL vmlinux 0x24652300 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x247497fb freeze_super EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x24852556 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x248e7232 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x249ba8b7 tcf_exts_init_ex -EXPORT_SYMBOL vmlinux 0x249c3671 netdev_state_change -EXPORT_SYMBOL vmlinux 0x24d14016 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x24a8f938 vga_client_register +EXPORT_SYMBOL vmlinux 0x24c16204 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x24cbbd1f tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d5a47e jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x24d808a6 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24e6bcee vme_register_driver -EXPORT_SYMBOL vmlinux 0x24ee38af phy_connect -EXPORT_SYMBOL vmlinux 0x24f17aef rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x24f5544c close_fd_get_file -EXPORT_SYMBOL vmlinux 0x24ffb527 input_grab_device +EXPORT_SYMBOL vmlinux 0x24e2f07c __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x24e6d493 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x24f45720 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x24f5e4fa jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x24f796f0 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x250d58ea d_obtain_alias -EXPORT_SYMBOL vmlinux 0x250db809 security_sb_remount -EXPORT_SYMBOL vmlinux 0x2518dff3 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x251f9e40 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x250cf485 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x2519b1e6 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x251f6000 ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2531046b bio_uninit +EXPORT_SYMBOL vmlinux 0x252ec274 unpin_user_page +EXPORT_SYMBOL vmlinux 0x25310a4f tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x25321eef prepare_creds -EXPORT_SYMBOL vmlinux 0x253b8562 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x2545adb1 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x255a48d5 get_task_cred -EXPORT_SYMBOL vmlinux 0x256a27df tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x253aa6b7 bio_init_clone +EXPORT_SYMBOL vmlinux 0x254c0482 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x2571a169 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x2580aca6 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2584c7ff kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x258bc657 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25909a1a __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion EXPORT_SYMBOL vmlinux 0x2598c6c0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x259b5092 of_clk_get -EXPORT_SYMBOL vmlinux 0x25a7b074 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x25b0c7fc jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x25c2818e input_release_device -EXPORT_SYMBOL vmlinux 0x25c381b5 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x25adcc59 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x25c6c865 alloc_anon_inode EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x2602ee3b of_get_mac_address +EXPORT_SYMBOL vmlinux 0x25ebb128 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x25fa85b4 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x2604c074 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x26060d14 set_groups -EXPORT_SYMBOL vmlinux 0x260a20f5 console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0x260b7626 param_set_long EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x260f599c sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x260f5b11 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x2621b541 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x262bf814 param_get_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x2631c2fe flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x263781d4 finish_open +EXPORT_SYMBOL vmlinux 0x26152046 load_nls +EXPORT_SYMBOL vmlinux 0x26165e8b input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x262398bb mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x26271a1b user_path_at_empty +EXPORT_SYMBOL vmlinux 0x262c19ad posix_test_lock +EXPORT_SYMBOL vmlinux 0x26303826 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2632c801 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x2649d975 param_set_short -EXPORT_SYMBOL vmlinux 0x265983d6 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x266c649e cfb_fillrect -EXPORT_SYMBOL vmlinux 0x2672c993 igrab -EXPORT_SYMBOL vmlinux 0x267fc987 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x264e63ba __quota_error +EXPORT_SYMBOL vmlinux 0x264f42b3 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x2650be62 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x2659997a tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x2663eae0 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x2688d2b6 dentry_create EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26a39722 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x26c8acbe fs_lookup_param -EXPORT_SYMBOL vmlinux 0x26c91d3e i2c_clients_command -EXPORT_SYMBOL vmlinux 0x26d280c1 mdiobus_c45_write_nested -EXPORT_SYMBOL vmlinux 0x26d59dd0 update_region -EXPORT_SYMBOL vmlinux 0x26dc6d67 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x26c0260f block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x26df71d2 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e91ead dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x26f47f81 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x26fe8f78 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x26ef2b99 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x26faa544 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x26fb0c5e jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x2706af13 proc_create_seq_private EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x2718cbe3 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x2713cb00 from_kuid_munged EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x2723c943 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x2722d0ec pci_write_config_word +EXPORT_SYMBOL vmlinux 0x2723bb18 seg6_push_hmac EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272c9df9 setattr_copy EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27434c02 mii_check_link -EXPORT_SYMBOL vmlinux 0x2745f86f generic_perform_write +EXPORT_SYMBOL vmlinux 0x27359491 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x2735d34c __fs_parse +EXPORT_SYMBOL vmlinux 0x273ec207 phy_advertise_supported EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d534e config_group_init -EXPORT_SYMBOL vmlinux 0x2754fd8a simple_statfs +EXPORT_SYMBOL vmlinux 0x275ada5b get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x275bd583 dentry_path_raw EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275e588d pci_unmap_rom EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277e65cd inet_select_addr +EXPORT_SYMBOL vmlinux 0x277da453 dst_alloc EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x278d3fd9 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x2791511b twl6040_power -EXPORT_SYMBOL vmlinux 0x279370a0 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x2798fe4d is_bad_inode +EXPORT_SYMBOL vmlinux 0x279f973c __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x27a02c44 da903x_query_status EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27be51f9 unlock_page -EXPORT_SYMBOL vmlinux 0x27bef9e8 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0x27e705cf kern_path +EXPORT_SYMBOL vmlinux 0x27fe6505 of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x2801a22f proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2816d002 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x28057efa retire_super EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x282012ce of_match_node -EXPORT_SYMBOL vmlinux 0x2821a27b phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x281b1e7a ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x281fe557 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x28269fd4 file_modified EXPORT_SYMBOL vmlinux 0x282c7e12 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x28392cfe tcf_idr_create -EXPORT_SYMBOL vmlinux 0x2839900c devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x28404dd8 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x282f862a hmm_range_fault +EXPORT_SYMBOL vmlinux 0x283b9975 max8998_write_reg EXPORT_SYMBOL vmlinux 0x28500e13 proc_douintvec -EXPORT_SYMBOL vmlinux 0x28562ee3 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x28599e84 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x2862d0f5 get_phy_device -EXPORT_SYMBOL vmlinux 0x2865aace ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2883c265 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0x28864fef __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x2890a14a in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x28ab0fa3 cfb_imageblit -EXPORT_SYMBOL vmlinux 0x28af23c4 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x28b0cca0 unlock_buffer -EXPORT_SYMBOL vmlinux 0x28bcea73 inet_protos -EXPORT_SYMBOL vmlinux 0x28c29c77 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x28d2755e neigh_direct_output +EXPORT_SYMBOL vmlinux 0x28879242 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x289743d1 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x2899ed2b generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x28c42dc8 scsi_device_get +EXPORT_SYMBOL vmlinux 0x28c6066a ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x28e71193 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x28ea3e59 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x28f264d7 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x28f29507 sg_miter_skip EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x29307c1f bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x29348a18 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x294bc7fc __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x29049e61 input_event +EXPORT_SYMBOL vmlinux 0x29138898 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x291fcd72 param_set_ushort +EXPORT_SYMBOL vmlinux 0x29303c86 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x2941bd1a vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x2950e416 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2962ae74 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x296520b1 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x2968d53a write_inode_now EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x296cc0e5 __breadahead -EXPORT_SYMBOL vmlinux 0x29721ada proto_register -EXPORT_SYMBOL vmlinux 0x29767268 __folio_lock -EXPORT_SYMBOL vmlinux 0x29939042 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x29996d10 tcp_mmap -EXPORT_SYMBOL vmlinux 0x299e89ec __register_chrdev -EXPORT_SYMBOL vmlinux 0x299fab73 would_dump -EXPORT_SYMBOL vmlinux 0x29c0747b udp_ioctl +EXPORT_SYMBOL vmlinux 0x2974e038 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x297cab6b jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x29b98445 free_task +EXPORT_SYMBOL vmlinux 0x29c94544 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x29d16eb7 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x29db4c5f touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x29e1bc38 default_llseek EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e81add tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x2a060ccc scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x2a0b7524 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x29e63c93 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x29f77b53 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x2a0c7c75 dcache_readdir +EXPORT_SYMBOL vmlinux 0x2a10cba0 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x2a1b58f9 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x2a26deb4 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3200fd security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0x2a351be8 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x2a62275c generic_update_time +EXPORT_SYMBOL vmlinux 0x2a5a14c4 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a735b78 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x2a7abbc0 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x2a735169 lynx_pcs_create_mdiodev +EXPORT_SYMBOL vmlinux 0x2a769a33 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x2a7935f5 close_fd_get_file EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a957bdc fman_port_get_device EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get -EXPORT_SYMBOL vmlinux 0x2a9a4138 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2aad9724 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x2ab1124b netpoll_parse_options EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2ab82836 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x2ac3725c pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0x2ac5b8c2 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x2ada0443 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x2ade10f8 poll_initwait -EXPORT_SYMBOL vmlinux 0x2aded137 folio_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x2afeebc6 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x2b0cb9f0 dcb_getrewr +EXPORT_SYMBOL vmlinux 0x2ab4c51b phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x2ab72173 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x2ae96422 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x2aee2081 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x2af43a3f param_set_hexint +EXPORT_SYMBOL vmlinux 0x2af74b68 make_kuid +EXPORT_SYMBOL vmlinux 0x2b09c580 is_acpi_device_node EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b1dc847 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x2b206132 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x2b2b82e6 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x2b2baa34 seq_release_private -EXPORT_SYMBOL vmlinux 0x2b2c535b scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x2b2ed847 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x2b38d8c0 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2b3a4088 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x2b4027d1 __register_nls EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b62d57e block_invalidate_folio -EXPORT_SYMBOL vmlinux 0x2b7a744b param_ops_long -EXPORT_SYMBOL vmlinux 0x2b8e460c pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x2b6935d2 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x2b6f90ad jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x2b77d0cf cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x2b7a4012 igrab +EXPORT_SYMBOL vmlinux 0x2b92234d ip6_frag_init +EXPORT_SYMBOL vmlinux 0x2b960b9f param_get_uint +EXPORT_SYMBOL vmlinux 0x2b9a75dd simple_recursive_removal EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba4d595 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x2bae204e mt_find EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bda454b mount_nodev -EXPORT_SYMBOL vmlinux 0x2bde94c2 vma_set_file +EXPORT_SYMBOL vmlinux 0x2bddb3db uart_add_one_port +EXPORT_SYMBOL vmlinux 0x2be3c917 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x2bed7eed nf_log_packet EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c13604a ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x2c139448 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x2c01cba1 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x2c214f26 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x2c222d0a scsi_target_resume EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2b18b0 module_refcount -EXPORT_SYMBOL vmlinux 0x2c2ce728 netdev_get_by_name +EXPORT_SYMBOL vmlinux 0x2c30452b dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x2c329098 __seq_open_private EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c46d959 from_kuid +EXPORT_SYMBOL vmlinux 0x2c4c4dc8 dev_open +EXPORT_SYMBOL vmlinux 0x2c537ab7 nlmsg_notify EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c634536 thaw_super -EXPORT_SYMBOL vmlinux 0x2c7475ef jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x2c7d7e65 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2c95f59d tcf_action_exec -EXPORT_SYMBOL vmlinux 0x2ca65501 audit_log -EXPORT_SYMBOL vmlinux 0x2cb90a7d rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x2cc98704 km_state_expired +EXPORT_SYMBOL vmlinux 0x2c9c3eab __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2ca5dcfd skb_checksum +EXPORT_SYMBOL vmlinux 0x2cb0bf0b pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd16641 copy_splice_read -EXPORT_SYMBOL vmlinux 0x2cd2bead of_root +EXPORT_SYMBOL vmlinux 0x2ce28a55 nd_device_register EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table +EXPORT_SYMBOL vmlinux 0x2cf501ea sk_common_release EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2cfd684f security_inode_init_security -EXPORT_SYMBOL vmlinux 0x2d02f5e2 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x2d0de6a4 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x2d09444f tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x2d0c7808 fb_class EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d207fa7 proc_remove +EXPORT_SYMBOL vmlinux 0x2d270ca0 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d37e2bd vm_iomap_memory EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d49c118 phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d588499 dump_page -EXPORT_SYMBOL vmlinux 0x2d65020e phy_init_eee -EXPORT_SYMBOL vmlinux 0x2d77f0e9 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x2d7963d7 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x2d4df8db napi_gro_flush +EXPORT_SYMBOL vmlinux 0x2d64b8f0 tcp_connect +EXPORT_SYMBOL vmlinux 0x2d704bcb mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2d7b0ff9 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year -EXPORT_SYMBOL vmlinux 0x2d95957d nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x2d945dd8 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2dbec040 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2dd6c5ec netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de26730 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x2de3e3b7 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x2de88239 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x2def3e8b fput -EXPORT_SYMBOL vmlinux 0x2e068f74 dev_uc_add +EXPORT_SYMBOL vmlinux 0x2df91cdf _dev_notice EXPORT_SYMBOL vmlinux 0x2e0a637d acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x2e1b3332 kernel_listen +EXPORT_SYMBOL vmlinux 0x2e0d00df logfc +EXPORT_SYMBOL vmlinux 0x2e1316bc param_ops_string +EXPORT_SYMBOL vmlinux 0x2e1463ca tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x2e19d873 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1e46e1 pin_user_pages +EXPORT_SYMBOL vmlinux 0x2e243308 d_obtain_alias EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e3197d3 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x2e33d13c devm_register_netdev +EXPORT_SYMBOL vmlinux 0x2e35ae75 of_find_property EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e54264a security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x2e4f98cc rproc_add_subdev EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e5bb9c7 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x2e64fb85 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x2e663b0e flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x2e71b201 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x2e6b1be3 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x2ea74210 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x2eb4324d pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x2ebb0201 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed6292c begin_new_exec -EXPORT_SYMBOL vmlinux 0x2ede5fab phy_device_create -EXPORT_SYMBOL vmlinux 0x2ef48b25 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x2ef0c5b0 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x2ef64a8c seq_open_private +EXPORT_SYMBOL vmlinux 0x2f007990 config_group_init_type_name EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f053899 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x2f0b140d tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1ab03d of_translate_dma_address EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f30a6be seq_open +EXPORT_SYMBOL vmlinux 0x2f2f14dd rpmh_write_batch EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f334688 request_key_rcu -EXPORT_SYMBOL vmlinux 0x2f357b26 sync_file_create EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3b6f14 inet_register_protosw EXPORT_SYMBOL vmlinux 0x2f4c61ad kobject_put -EXPORT_SYMBOL vmlinux 0x2f50a995 folio_migrate_flags -EXPORT_SYMBOL vmlinux 0x2f5892a5 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x2f603948 folio_migrate_copy -EXPORT_SYMBOL vmlinux 0x2f645730 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x2f773848 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x2f4d6337 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x2f502486 inet_bind +EXPORT_SYMBOL vmlinux 0x2f55c03f eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f8e0741 tty_unlock -EXPORT_SYMBOL vmlinux 0x2fb82baa phy_find_first +EXPORT_SYMBOL vmlinux 0x2f977513 rpmh_write +EXPORT_SYMBOL vmlinux 0x2f9ff7bb netlink_set_err +EXPORT_SYMBOL vmlinux 0x2fc7292f __alloc_pages +EXPORT_SYMBOL vmlinux 0x2fc9ae4c cfb_copyarea +EXPORT_SYMBOL vmlinux 0x2fd99271 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x2fe0941f ps2_command EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ffbb6ea zero_fill_bio -EXPORT_SYMBOL vmlinux 0x305ccd67 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x30921870 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x2ff0bb78 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x30124112 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x3012c9b9 tty_write_room +EXPORT_SYMBOL vmlinux 0x3021cc70 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x30547ac2 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x305e7f10 pci_bus_type +EXPORT_SYMBOL vmlinux 0x3061a9dc pagecache_get_page +EXPORT_SYMBOL vmlinux 0x3065d293 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a8a484 sk_dst_check EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30ca67b7 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x30cbb83e bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0x30cfe18d notify_change -EXPORT_SYMBOL vmlinux 0x30dcb8be phy_start -EXPORT_SYMBOL vmlinux 0x30ecff44 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x311ec026 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x30e49ad2 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x30e59cee mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x30f20493 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x310a3cc8 tcf_exts_init_ex +EXPORT_SYMBOL vmlinux 0x3125228b vfs_get_tree EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x313cf4e2 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x313fa96a of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x314e94f9 from_kprojid -EXPORT_SYMBOL vmlinux 0x315ccf35 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0x31633491 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x318f2df7 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x313382b9 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x316eed0a devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x317a9bee tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x318ebbb0 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x319b2297 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x319d22ae inode_init_owner EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31ca7683 gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0x31f46516 serio_close +EXPORT_SYMBOL vmlinux 0x31b0a0e4 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x31b713a3 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x31df71df unregister_quota_format +EXPORT_SYMBOL vmlinux 0x31e45080 irq_set_chip +EXPORT_SYMBOL vmlinux 0x3210ffe7 folio_mark_accessed EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x32141fb5 __netif_schedule -EXPORT_SYMBOL vmlinux 0x321d795d nf_log_set -EXPORT_SYMBOL vmlinux 0x32207382 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x321c1705 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0x321e1319 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x3220ca23 dquot_initialize EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32263879 udp_prot EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x324fb6e4 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x3264d5eb simple_getattr +EXPORT_SYMBOL vmlinux 0x323e5cfe sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x325496b4 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x3262e819 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x3263bcc3 key_type_keyring +EXPORT_SYMBOL vmlinux 0x3277fb48 fc_mount EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x3279483c skb_unlink EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328b0afd scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x32c00521 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x32c7dcf7 register_cdrom +EXPORT_SYMBOL vmlinux 0x32840f8e km_report +EXPORT_SYMBOL vmlinux 0x328810d6 rw_verify_area +EXPORT_SYMBOL vmlinux 0x32cb5778 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d19844 build_skb_around -EXPORT_SYMBOL vmlinux 0x32de1218 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x32dc3b20 sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32edeb71 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x32e9e627 amba_device_register +EXPORT_SYMBOL vmlinux 0x32f37c3c clkdev_drop EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x332d0525 bio_chain +EXPORT_SYMBOL vmlinux 0x33216987 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x332e8d3b mdiobus_free +EXPORT_SYMBOL vmlinux 0x33301605 begin_new_exec EXPORT_SYMBOL vmlinux 0x333bfca1 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x3357689c vme_irq_request -EXPORT_SYMBOL vmlinux 0x3367315c default_llseek +EXPORT_SYMBOL vmlinux 0x334cc71e tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x335cbec4 inet_protos EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x339737df security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x339b0ae7 neigh_for_each -EXPORT_SYMBOL vmlinux 0x33ab099a netlink_broadcast -EXPORT_SYMBOL vmlinux 0x33aea1ef flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x33b60ef5 deactivate_super -EXPORT_SYMBOL vmlinux 0x33c6cfdd vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x33d8ec77 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0x33de2f3c pci_release_region -EXPORT_SYMBOL vmlinux 0x33e094f6 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x338ba159 fiemap_prep +EXPORT_SYMBOL vmlinux 0x338e09d0 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x339f10d6 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x33cc053e blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x33d2f639 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x33d3ff40 km_policy_expired +EXPORT_SYMBOL vmlinux 0x33dabc49 tty_port_open +EXPORT_SYMBOL vmlinux 0x33e04637 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x33e0ab0e crypto_sha256_update EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f6e61b vfs_mkdir EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x33fd5016 tegra_dfll_resume EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x34060092 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x3409fc54 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x3410612f pci_enable_device -EXPORT_SYMBOL vmlinux 0x34114d4d jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x3423a82f clkdev_drop -EXPORT_SYMBOL vmlinux 0x34372e1b dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x34487ee0 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x345f7e57 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x34612ab2 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x34641ccf seq_release -EXPORT_SYMBOL vmlinux 0x346dada7 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x346fdfd9 param_ops_short -EXPORT_SYMBOL vmlinux 0x3474a6b1 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x340d0cf2 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x34173090 xp_free +EXPORT_SYMBOL vmlinux 0x3419b189 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x345d5b07 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x34880e90 of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34b8ba7c mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x34bb4e9f mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x34a54139 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x34bb9b60 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cecb1a devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x34d2fc47 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x34caa70b lease_modify +EXPORT_SYMBOL vmlinux 0x34cbd1d1 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x34ce2a2b send_sig +EXPORT_SYMBOL vmlinux 0x34d5e3b3 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x34d79524 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x34e8b3d5 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x34dc5d15 d_exact_alias +EXPORT_SYMBOL vmlinux 0x34eaf0c9 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x34f338ac d_find_alias EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350a55ba mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x35158acb xfrm_input EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x352467dc mmc_get_card -EXPORT_SYMBOL vmlinux 0x352b3a78 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x353429c0 sk_capable +EXPORT_SYMBOL vmlinux 0x352e2d6a netdev_features_change EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354e5f57 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x35606d74 mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x35716468 iov_iter_init -EXPORT_SYMBOL vmlinux 0x35729f8c udp_seq_stop -EXPORT_SYMBOL vmlinux 0x357a3a6b mmc_can_discard -EXPORT_SYMBOL vmlinux 0x358cc6cb tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x359ef387 pci_free_irq +EXPORT_SYMBOL vmlinux 0x358215fa xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x3588ff3e blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x359c36a9 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x35a1b59c dquot_quota_on EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35bb0c33 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x35bcc2b8 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x35c13e24 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x35cc4bde __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x35ce785f __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x35da0791 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x35f1bfe8 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x35f5298e rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x36038b3f misc_register +EXPORT_SYMBOL vmlinux 0x35bc7ad5 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x35bc9c7a __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x35f60063 dev_addr_add +EXPORT_SYMBOL vmlinux 0x35fade60 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x35fd4501 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x361991de pcim_pin_device -EXPORT_SYMBOL vmlinux 0x361b85aa __folio_start_writeback -EXPORT_SYMBOL vmlinux 0x3624fa5c of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x3628c279 sk_alloc -EXPORT_SYMBOL vmlinux 0x3634772b udp_seq_start -EXPORT_SYMBOL vmlinux 0x3635ad6a inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x3637b848 __alloc_skb -EXPORT_SYMBOL vmlinux 0x3642daee touch_atime +EXPORT_SYMBOL vmlinux 0x362041cb rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x363df033 vfs_link EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable -EXPORT_SYMBOL vmlinux 0x364ae8a9 ps2_drain +EXPORT_SYMBOL vmlinux 0x364bec81 skb_set_owner_w EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x3651a7c8 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x3652b4ae input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x365908bb netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365d1745 cros_ec_query_all EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init -EXPORT_SYMBOL vmlinux 0x36696bc0 nf_setsockopt -EXPORT_SYMBOL vmlinux 0x366a9f73 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x3672a619 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x368399fd sk_reset_timer -EXPORT_SYMBOL vmlinux 0x3693fdb8 phy_print_status -EXPORT_SYMBOL vmlinux 0x36afff9f xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x36b59451 filp_close +EXPORT_SYMBOL vmlinux 0x3678ca37 system_cpucaps +EXPORT_SYMBOL vmlinux 0x368e068b kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x3692580e __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x3693ffd9 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36c348f8 param_set_uint -EXPORT_SYMBOL vmlinux 0x36cb1e1c submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x36dafe73 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x36f64a33 mdiobus_write -EXPORT_SYMBOL vmlinux 0x37046e29 devm_free_irq -EXPORT_SYMBOL vmlinux 0x3707caa0 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x370f3f54 netdev_alert +EXPORT_SYMBOL vmlinux 0x36bafce8 crypto_sha3_update +EXPORT_SYMBOL vmlinux 0x36c58cb2 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x36c99a1f neigh_table_init +EXPORT_SYMBOL vmlinux 0x36edb4af __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x37058af1 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x37097ba2 fb_blank EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x3711037e qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x3714cee4 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x371cefef jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x3714cf06 folio_unlock EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37208caa iget_failed EXPORT_SYMBOL vmlinux 0x3734c20b kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x3736928f __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x37410afc netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x3740ba66 locks_init_lock EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374c031e filemap_get_folios_tag -EXPORT_SYMBOL vmlinux 0x37536e53 ata_print_version EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37565362 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0x3758876b vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x37637a3d __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x3764e9dc get_inode_acl -EXPORT_SYMBOL vmlinux 0x3779e4a0 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x37622b4b phy_write_mmd +EXPORT_SYMBOL vmlinux 0x377029b7 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x37774ea7 kernel_accept EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x377ed08a crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x3780a2b2 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x378c07ce md_write_start EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bd8240 input_unregister_handler EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c1d800 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x37cc3cf0 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x380d744e sock_queue_rcv_skb_reason -EXPORT_SYMBOL vmlinux 0x380fc401 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x380a4f9d dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382ce0c6 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x382e20cd pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x38371caf inode_insert5 -EXPORT_SYMBOL vmlinux 0x38481c98 phy_device_remove +EXPORT_SYMBOL vmlinux 0x3835c843 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x3852994b rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385be323 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x3857b6a9 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x385b295b bd_abort_claiming EXPORT_SYMBOL vmlinux 0x385c7481 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x38709c21 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x387956b5 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x387dd12a netif_skb_features EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue @@ -7694,4678 +7693,4680 @@ EXPORT_SYMBOL vmlinux 0x38a56aa4 dma_fence_chain_init EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38acc897 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x38ae2136 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x38b3d026 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x38ba6795 user_revoke -EXPORT_SYMBOL vmlinux 0x38c0fa77 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x38aaf0c1 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x38cb6dbf t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x38cf003b dma_resv_add_fence EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e958cc rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x38ec9935 param_get_long -EXPORT_SYMBOL vmlinux 0x3904fa37 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x3914f122 phy_write_paged +EXPORT_SYMBOL vmlinux 0x38f89fea crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x3901ace2 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x390f3306 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x391b2638 may_umount_tree EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x391e2916 nd_pfn_probe EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x392f0273 get_user_pages +EXPORT_SYMBOL vmlinux 0x3934b931 vc_cons +EXPORT_SYMBOL vmlinux 0x3939074d tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3945ac5a xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x393dfb63 get_unmapped_area EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394755ba pcie_get_readrq EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394faac3 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x39555d55 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x394c27a8 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x39529464 sync_file_create EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395e5c7a inode_get_bytes -EXPORT_SYMBOL vmlinux 0x39828aab __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x39880a28 dup_iter -EXPORT_SYMBOL vmlinux 0x39891b5f fb_find_mode -EXPORT_SYMBOL vmlinux 0x398be763 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x3994adaa blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x3966fb42 input_setup_polling +EXPORT_SYMBOL vmlinux 0x3967aecb uart_register_driver +EXPORT_SYMBOL vmlinux 0x39713c01 brioctl_set +EXPORT_SYMBOL vmlinux 0x3973ea46 tcp_child_process +EXPORT_SYMBOL vmlinux 0x397e066d neigh_table_clear +EXPORT_SYMBOL vmlinux 0x398f4b4b vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x3999b8ee generic_file_direct_write EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399c3885 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x39b3be17 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39c25c2b __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0x39d865f7 d_delete +EXPORT_SYMBOL vmlinux 0x39d42812 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39ec0f63 of_get_next_child -EXPORT_SYMBOL vmlinux 0x39ed28ce pcie_capability_clear_and_set_word_locked -EXPORT_SYMBOL vmlinux 0x3a0c432c dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x3a1ad7c6 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x3a1c4288 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x3a1c6c73 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x39ec9e5d follow_pfn +EXPORT_SYMBOL vmlinux 0x39fafed0 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x39ff0fb3 phy_loopback +EXPORT_SYMBOL vmlinux 0x3a27e10f pci_assign_resource +EXPORT_SYMBOL vmlinux 0x3a484ac2 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x3a5747d4 netdev_offload_xstats_push_delta -EXPORT_SYMBOL vmlinux 0x3a5c9dae phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x3a7c6f79 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x3a8b7f86 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x3aac6156 of_phy_connect +EXPORT_SYMBOL vmlinux 0x3a62d0e2 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x3a66f0e6 dma_pool_create +EXPORT_SYMBOL vmlinux 0x3a6a80ad xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x3a7badd0 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x3a8b928f fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x3a953947 pci_match_id +EXPORT_SYMBOL vmlinux 0x3aa0fef8 phy_find_first EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock -EXPORT_SYMBOL vmlinux 0x3ab42f78 kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abfa478 set_posix_acl -EXPORT_SYMBOL vmlinux 0x3ac9a96e ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x3abb3ae7 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x3abf2186 sock_set_mark +EXPORT_SYMBOL vmlinux 0x3ac74cf9 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3acd7449 md_integrity_register EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3adb2d37 netdev_info EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3ae4111e migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x3ae5141e filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3afff25c __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x3b089abd dev_driver_string EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b17e539 devfreq_get_freq_range EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b40f5d2 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x3b595cd4 param_set_charp -EXPORT_SYMBOL vmlinux 0x3b643ff3 mmc_request_done +EXPORT_SYMBOL vmlinux 0x3b331fe3 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x3b56d8ec clear_nlink +EXPORT_SYMBOL vmlinux 0x3b5c008f mount_nodev +EXPORT_SYMBOL vmlinux 0x3b625698 kernel_sendmsg EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner -EXPORT_SYMBOL vmlinux 0x3b712c5a key_link -EXPORT_SYMBOL vmlinux 0x3b7a1bae pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x3b8610fd scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x3b8c6ac5 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x3b8d98b1 param_ops_bool EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b9cb034 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x3bb4bac7 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x3bcde2f5 kill_litter_super -EXPORT_SYMBOL vmlinux 0x3bcec624 dst_release -EXPORT_SYMBOL vmlinux 0x3bd4ef7b dquot_drop +EXPORT_SYMBOL vmlinux 0x3bb1a6dc remap_pfn_range +EXPORT_SYMBOL vmlinux 0x3bbd274b __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x3bc465d9 scsi_print_result +EXPORT_SYMBOL vmlinux 0x3bcadfd4 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x3bcc737a kthread_create_worker +EXPORT_SYMBOL vmlinux 0x3bd307d7 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x3bec9939 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x3bfc8084 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c123395 phy_stop +EXPORT_SYMBOL vmlinux 0x3c1350b3 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x3c15a62f inet_recvmsg EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c30c899 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x3c1a3dc1 neigh_ifdown EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3987d3 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x3c3dea3d netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c489179 inet6_protos -EXPORT_SYMBOL vmlinux 0x3ca5f621 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x3c4b6aa6 filp_close +EXPORT_SYMBOL vmlinux 0x3c576379 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x3c595e90 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x3c59f458 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x3c63c9d7 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x3c6cdccb scsi_device_resume +EXPORT_SYMBOL vmlinux 0x3c7c19f8 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x3c7fc89d __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x3c9d2c0f kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x3caaa2fc __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock -EXPORT_SYMBOL vmlinux 0x3cb86536 rt_dst_alloc EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3cbc629d to_nd_btt -EXPORT_SYMBOL vmlinux 0x3cbdabc2 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x3cccaed6 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x3ccf674d iommu_get_msi_cookie EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3cde9142 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x3ce3f49f sock_pfree EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d00e360 dev_uc_init -EXPORT_SYMBOL vmlinux 0x3d0a6e45 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x3d1827b8 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x3ce9db1a mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x3d13eb03 md_write_end +EXPORT_SYMBOL vmlinux 0x3d1551c8 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x3d1a450e blk_mq_complete_request EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d2b777e mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x3d3d8c84 filp_open -EXPORT_SYMBOL vmlinux 0x3d3ebfe0 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x3d425e45 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x3d2891b2 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x3d4175cc of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x3d587eb9 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x3d7b095f nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x3d7bac46 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x3d879c92 dma_resv_replace_fences EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page EXPORT_SYMBOL vmlinux 0x3da092b8 dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x3da87b82 __folio_batch_release EXPORT_SYMBOL vmlinux 0x3daae96c dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3daf9e6a sg_miter_stop -EXPORT_SYMBOL vmlinux 0x3dafd8be devm_ioremap -EXPORT_SYMBOL vmlinux 0x3dc27ad6 skb_queue_head +EXPORT_SYMBOL vmlinux 0x3db81890 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x3dbe161f get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x3dc4cd68 __nla_put_64bit EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcdde8c vme_irq_handler EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id -EXPORT_SYMBOL vmlinux 0x3dd770ed no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x3de8e5d1 md_unregister_thread EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e309225 vfs_unlink +EXPORT_SYMBOL vmlinux 0x3e01e9fd nd_btt_version +EXPORT_SYMBOL vmlinux 0x3e134116 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x3e13d50a __ps2_command +EXPORT_SYMBOL vmlinux 0x3e185b66 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x3e21f4bf generic_fillattr EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e42514b pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x3e463770 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x3e617257 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x3e6a3d9b __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x3e6bc522 sk_error_report -EXPORT_SYMBOL vmlinux 0x3e772be8 fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0x3e78357b con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x3e4c4bd2 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x3e561bcf pnp_register_card_driver EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e7b8cfb scm_detach_fds -EXPORT_SYMBOL vmlinux 0x3e830120 inet6_bind -EXPORT_SYMBOL vmlinux 0x3e8c3349 key_type_keyring -EXPORT_SYMBOL vmlinux 0x3eaa1fe4 _dev_alert -EXPORT_SYMBOL vmlinux 0x3eb393f4 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x3ebe4faa acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x3e83a6a6 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x3e868134 consume_skb +EXPORT_SYMBOL vmlinux 0x3ea6220b arp_create +EXPORT_SYMBOL vmlinux 0x3eb043d6 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3eb094c4 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x3eb0bbd4 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x3ec7d535 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ed90d3b tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x3ed2a9a2 init_special_inode +EXPORT_SYMBOL vmlinux 0x3ed775cf sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x3edafb3a truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x3eee4b5a clocksource_unregister +EXPORT_SYMBOL vmlinux 0x3ef8909a tcf_exts_validate EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3f0046f5 kobject_del EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f13d049 sock_no_linger +EXPORT_SYMBOL vmlinux 0x3f127217 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x3f37b445 bio_put +EXPORT_SYMBOL vmlinux 0x3f43100d seq_write EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f47328e tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f5b1e98 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x3f600b0c flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x3f700581 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x3f72a964 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x3f5a255b generic_read_dir +EXPORT_SYMBOL vmlinux 0x3f649879 drop_super +EXPORT_SYMBOL vmlinux 0x3f6bd32c devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa05c84 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x3fabdd5b udp6_csum_init +EXPORT_SYMBOL vmlinux 0x3f8cffbd of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x3fb44958 iov_iter_bvec EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc58060 d_add +EXPORT_SYMBOL vmlinux 0x3fcd403e ip_frag_init +EXPORT_SYMBOL vmlinux 0x3fd4ac72 current_in_userns EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fd967a0 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x3fdc2c02 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fecc3e6 sync_blockdev_range -EXPORT_SYMBOL vmlinux 0x3ffd170e __devm_request_region +EXPORT_SYMBOL vmlinux 0x40067ea3 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x400be217 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x4016e09d seq_release EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x40251a6d ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0x40599103 dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0x405a85e1 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x405bbc06 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x40648aec tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x4078a8ad md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x407b360c sg_miter_start +EXPORT_SYMBOL vmlinux 0x4023a13d sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x40250dbd wake_up_process +EXPORT_SYMBOL vmlinux 0x40290238 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x40482150 fman_register_intr +EXPORT_SYMBOL vmlinux 0x40532a06 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x4064e0c0 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x4068a912 param_set_short EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot -EXPORT_SYMBOL vmlinux 0x408ad263 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40986645 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x409ddb13 path_put -EXPORT_SYMBOL vmlinux 0x40a11f12 clk_add_alias +EXPORT_SYMBOL vmlinux 0x409de3f3 seq_open +EXPORT_SYMBOL vmlinux 0x40a3b721 gro_cells_receive EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c1283c task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x40c14c99 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cd33e4 vif_device_init +EXPORT_SYMBOL vmlinux 0x40c7649b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x40cad5d1 netif_device_attach +EXPORT_SYMBOL vmlinux 0x40cba9f6 d_obtain_root EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d3333c scsi_host_get +EXPORT_SYMBOL vmlinux 0x40d13d4f handshake_req_cancel +EXPORT_SYMBOL vmlinux 0x40d2c00a inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e6e4dc blk_start_plug EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x411430ac mmc_free_host -EXPORT_SYMBOL vmlinux 0x411d819d register_netdevice -EXPORT_SYMBOL vmlinux 0x41289856 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x4124b3e1 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41405b5c blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x41343d0d xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x4134636f blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x4143abf9 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x414659f7 folio_end_writeback EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x414a5cdc touch_buffer EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x4177568c genphy_loopback -EXPORT_SYMBOL vmlinux 0x41810656 rproc_del +EXPORT_SYMBOL vmlinux 0x416ddd24 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x41720d8d scsi_mode_sense EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418ea4a8 dump_emit -EXPORT_SYMBOL vmlinux 0x41984731 mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x419e5c89 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x418b6f24 max8925_set_bits EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41ad3d34 buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0x41b06b25 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x41b1b3c6 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x41b5a03e block_dirty_folio -EXPORT_SYMBOL vmlinux 0x41d53ff7 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x41d56b42 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x41da2630 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x41a37f1d path_put +EXPORT_SYMBOL vmlinux 0x41d732d4 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x41e15b19 vfs_fadvise EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x41ed7778 drop_super_exclusive EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41fb0a05 tty_port_init -EXPORT_SYMBOL vmlinux 0x41fdc6db pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x420bec86 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4217e381 of_chosen +EXPORT_SYMBOL vmlinux 0x4221309d iptun_encaps +EXPORT_SYMBOL vmlinux 0x422f8e5b free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4241062e __folio_alloc EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424baf9e file_path EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x425df073 xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0x4267cba2 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x4280cfed tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x429cb60b d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x429ddb16 inet6_offloads -EXPORT_SYMBOL vmlinux 0x429e140f retire_super -EXPORT_SYMBOL vmlinux 0x42a86a28 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x42ae485c pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x427b6f00 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x427c27d9 seq_puts +EXPORT_SYMBOL vmlinux 0x42919497 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x42af16ec device_add_disk +EXPORT_SYMBOL vmlinux 0x42b4e92d tcp_recvmsg EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42bf9e86 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x42dbf4ef of_node_get -EXPORT_SYMBOL vmlinux 0x42e2cdd7 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x42e6a72b kfree_skb_reason EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f1df0f of_graph_is_present EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431cf0a2 __free_pages -EXPORT_SYMBOL vmlinux 0x432a1c22 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x43055c5b blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x43112f66 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x431fac8b inet_add_offload +EXPORT_SYMBOL vmlinux 0x4334996f fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x433d6303 nd_dax_probe -EXPORT_SYMBOL vmlinux 0x43439fb3 of_graph_get_endpoint_by_regs EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435f4ef3 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x4367459f posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x43605f98 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x4366e6c4 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x436bea30 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x436dbd0c filemap_alloc_folio EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x43846912 audit_log_start EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a63b2c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x43ab9399 of_clk_get EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43b45a64 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x43b1bab5 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x43b878cd dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one -EXPORT_SYMBOL vmlinux 0x43c2b317 dev_mc_unsync EXPORT_SYMBOL vmlinux 0x43ca69f1 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x43cf5871 lynx_pcs_create_mdiodev EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d41ebd neigh_destroy -EXPORT_SYMBOL vmlinux 0x43eb90ae end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x43f245ee skb_push -EXPORT_SYMBOL vmlinux 0x43f528d9 init_net -EXPORT_SYMBOL vmlinux 0x43f7a8ea inet_frag_find +EXPORT_SYMBOL vmlinux 0x43d73f44 seq_read_iter EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x442272f3 __destroy_inode -EXPORT_SYMBOL vmlinux 0x442935c0 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x44218305 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x442b2f60 pipe_unlock +EXPORT_SYMBOL vmlinux 0x442e91c6 amba_driver_register +EXPORT_SYMBOL vmlinux 0x443890f6 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x4443b147 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x445367dc __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4451a1ee neigh_event_ns +EXPORT_SYMBOL vmlinux 0x44583fbe kthread_destroy_worker EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x446ac3f9 dev_get_flags -EXPORT_SYMBOL vmlinux 0x44813ab6 padata_free -EXPORT_SYMBOL vmlinux 0x44976e6d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x446cf50d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x4478f574 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x44974d62 __generic_file_fsync EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44af5921 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x44b4f77d neigh_table_init +EXPORT_SYMBOL vmlinux 0x44a93a28 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x44b17a21 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x44b68130 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x44cab3aa dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x44cbfd63 mdiobb_write_c45 +EXPORT_SYMBOL vmlinux 0x44d55fb1 blk_integrity_register EXPORT_SYMBOL vmlinux 0x44d98015 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x44df0157 dev_mc_add +EXPORT_SYMBOL vmlinux 0x44e4774b mdio_driver_register +EXPORT_SYMBOL vmlinux 0x44e57c68 pci_request_irq EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ecd9ee netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0x44edb939 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x44ff6bcd folio_wait_bit +EXPORT_SYMBOL vmlinux 0x44f70115 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x44fb4a23 serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450639ab sg_last EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450ac4f3 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x450d34ef pldmfw_flash_image EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x4519b060 of_parse_phandle_with_args_map EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x45269f10 vme_init_bridge EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453b60cc inode_query_iversion EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454b0d9f skb_split EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455d4fa6 bio_init -EXPORT_SYMBOL vmlinux 0x45637eb6 __put_devmap_managed_page_refs -EXPORT_SYMBOL vmlinux 0x45704d42 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x45742575 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x45616f5a icmp6_send +EXPORT_SYMBOL vmlinux 0x45653f13 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x456619dc dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x456736de netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457ae149 netdev_offload_xstats_enabled -EXPORT_SYMBOL vmlinux 0x458ecaad fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0x458ed8af vlan_vid_del -EXPORT_SYMBOL vmlinux 0x45935eeb tcf_idr_search -EXPORT_SYMBOL vmlinux 0x459d7aa1 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x45ab4884 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x45b6556e kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x45c480ad get_unmapped_area -EXPORT_SYMBOL vmlinux 0x45ce87eb ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x45d0f9a9 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x45d8bd19 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x45ed0b3e input_setup_polling -EXPORT_SYMBOL vmlinux 0x45edb22c dm_register_target -EXPORT_SYMBOL vmlinux 0x45ee01a7 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x45f7d250 netpoll_setup -EXPORT_SYMBOL vmlinux 0x45fcd842 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x4606fe79 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x45868561 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x4589ed9a rproc_shutdown +EXPORT_SYMBOL vmlinux 0x4591f1ca seq_lseek +EXPORT_SYMBOL vmlinux 0x459adcc9 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x45c02d85 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x45c7d9ce devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x45ed1589 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x45ef23b6 seq_read +EXPORT_SYMBOL vmlinux 0x45f19880 tcp_filter +EXPORT_SYMBOL vmlinux 0x45fe4107 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x460650bc __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x460b5bac migrate_vma_pages EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x4622e8ce mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x46303fad tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x4638205c fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x463f55bb udp_poll +EXPORT_SYMBOL vmlinux 0x4639efd1 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x464493e5 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header -EXPORT_SYMBOL vmlinux 0x465b12b0 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x464b78ee remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x46533d79 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466df62b finalize_exec -EXPORT_SYMBOL vmlinux 0x4672b32c unregister_nls EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x46826731 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x4691936a __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x4691dbae pcie_capability_clear_and_set_word_unlocked -EXPORT_SYMBOL vmlinux 0x46960088 set_capacity -EXPORT_SYMBOL vmlinux 0x4697272c ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x46928543 tty_unregister_device EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x469c38d9 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x46a96735 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x46aa1b59 bio_free_pages EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46ccb059 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x46ecf4e0 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x46fcaaca t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x46ce2238 napi_enable +EXPORT_SYMBOL vmlinux 0x46e65bdb xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x46f41050 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x47097b72 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x47147cc4 inode_init_always EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x471e3bb8 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x471ee479 param_get_ushort -EXPORT_SYMBOL vmlinux 0x4720ea19 _dev_info -EXPORT_SYMBOL vmlinux 0x472c1ee1 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x47565857 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x47237628 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x472da1d5 vif_device_init +EXPORT_SYMBOL vmlinux 0x4736745f xattr_full_name +EXPORT_SYMBOL vmlinux 0x4748839d skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x474c7bb4 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x476cb71a blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x476e448f tty_write_room EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477f360e flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x47816363 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x478ee587 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x47893fef passthru_features_check +EXPORT_SYMBOL vmlinux 0x4789691a __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x479b94e9 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x47a2f74b mmc_retune_pause -EXPORT_SYMBOL vmlinux 0x47a6c356 bio_reset -EXPORT_SYMBOL vmlinux 0x47ad836f mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x47beecf9 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x47adc0e3 inet_frags_init +EXPORT_SYMBOL vmlinux 0x47b2f3ab scsi_dma_map EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c53391 iov_iter_get_pages_alloc2 EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47cefd7d __mdiobus_c45_write EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d5bf19 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x47d1786f md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x47d67fad to_ndd EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47db5cee ip_frag_init -EXPORT_SYMBOL vmlinux 0x480776ef fb_validate_mode +EXPORT_SYMBOL vmlinux 0x47eafb7b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x4807e6cd security_sk_clone EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x48159694 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x483608e7 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x482ffbff km_query EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb -EXPORT_SYMBOL vmlinux 0x48397544 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x483f28cc set_page_dirty +EXPORT_SYMBOL vmlinux 0x4837f04f __destroy_inode EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484aa1b8 devm_aperture_acquire_for_platform_device EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485a45ae mmc_detect_change +EXPORT_SYMBOL vmlinux 0x485f9236 mmc_get_card EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x487407ed input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x4880767e pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x488d580d nd_btt_version +EXPORT_SYMBOL vmlinux 0x489444f0 current_time EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a3b77b fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x48a53b47 dns_query -EXPORT_SYMBOL vmlinux 0x48a696e0 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x48a5bec2 sock_alloc_file EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48aa4705 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x48b85ece tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x48b50054 d_move +EXPORT_SYMBOL vmlinux 0x48b56ea3 serial8250_do_pm EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48cf8760 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0x48d015fc reuseport_select_sock EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node -EXPORT_SYMBOL vmlinux 0x48d8a4b9 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x48f303f5 ip_output +EXPORT_SYMBOL vmlinux 0x48e164fe genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x48e1815b security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x48e6b507 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range -EXPORT_SYMBOL vmlinux 0x49013cd9 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x490197c5 scsi_ioctl EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49054dc3 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x4909a790 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x49209f54 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x49247bbd phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x49107cbe udp_read_skb +EXPORT_SYMBOL vmlinux 0x491f8ab2 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x496048d4 pci_pme_active -EXPORT_SYMBOL vmlinux 0x49608691 dquot_operations -EXPORT_SYMBOL vmlinux 0x4960f81e rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x4979fe53 rtc_add_group -EXPORT_SYMBOL vmlinux 0x497bc385 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x498de925 jbd2_journal_invalidate_folio -EXPORT_SYMBOL vmlinux 0x49930e58 page_get_link +EXPORT_SYMBOL vmlinux 0x49888802 write_cache_pages EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49af1ce3 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49cd4290 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x49d77381 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x49f3f965 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x49f675f1 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x49fc6a1a scsi_add_device -EXPORT_SYMBOL vmlinux 0x4a035b46 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x4a0a34d7 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x49b2c8af netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x49b43052 neigh_update +EXPORT_SYMBOL vmlinux 0x49ca2319 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x49d02144 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x49dfa9bc devm_release_resource +EXPORT_SYMBOL vmlinux 0x49e132d8 mount_subtree +EXPORT_SYMBOL vmlinux 0x49e6bf01 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x49ef9774 generic_buffers_fsync +EXPORT_SYMBOL vmlinux 0x49f458a7 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x4a2b8c04 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a4b3770 input_inject_event -EXPORT_SYMBOL vmlinux 0x4a503757 sync_blockdev -EXPORT_SYMBOL vmlinux 0x4a73830a request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x4a750672 d_add_ci -EXPORT_SYMBOL vmlinux 0x4a8e7456 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x4a3f348c mpage_read_folio +EXPORT_SYMBOL vmlinux 0x4a5a42aa twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x4a5a58b7 __neigh_create +EXPORT_SYMBOL vmlinux 0x4a69d297 request_key_tag +EXPORT_SYMBOL vmlinux 0x4a6be40f neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x4a7ff227 input_set_capability EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4accf7d6 tcp_child_process -EXPORT_SYMBOL vmlinux 0x4ace566e pci_map_rom -EXPORT_SYMBOL vmlinux 0x4ad7d3d6 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x4ae6abb0 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x4aafbb58 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x4abd6f65 bio_endio +EXPORT_SYMBOL vmlinux 0x4ada689f fuse_mount_destroy EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4aee2a01 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x4aedb618 discard_new_inode EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4af9fb6a rfkill_alloc EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4b03f929 generic_listxattr +EXPORT_SYMBOL vmlinux 0x4afeb3a2 devm_clk_get +EXPORT_SYMBOL vmlinux 0x4b0a37f8 mmc_start_request EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b140118 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x4b171cde hid_bpf_ops +EXPORT_SYMBOL vmlinux 0x4b3d2ab1 sock_wake_async EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b4af7ce invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x4b4e9397 flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0x4b5d6b18 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x4b443719 build_skb_around +EXPORT_SYMBOL vmlinux 0x4b5842a1 simple_getattr +EXPORT_SYMBOL vmlinux 0x4b61396f devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x4b68b251 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b7084d5 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4b7d0826 block_commit_write -EXPORT_SYMBOL vmlinux 0x4b7d9cfa qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x4b81178d tcp_read_skb -EXPORT_SYMBOL vmlinux 0x4ba1a102 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x4bbb9709 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x4b766e0e pci_iounmap +EXPORT_SYMBOL vmlinux 0x4b8798c7 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x4b971acf dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4ba639ba netlink_capable +EXPORT_SYMBOL vmlinux 0x4ba6cbd8 mr_table_alloc EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bd7a305 iunique +EXPORT_SYMBOL vmlinux 0x4bd0ad13 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x4bdf24bc mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4bea4ca3 input_set_keycode EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4bf6fe35 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x4c031152 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x4c0370f8 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c0c8d1e of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x4c2f7062 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x4c0b105f lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x4c0e2aa6 block_truncate_page +EXPORT_SYMBOL vmlinux 0x4c1a05df devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x4c23c176 netdev_crit +EXPORT_SYMBOL vmlinux 0x4c3a01a4 pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c467d48 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x4c616a61 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x4c85dc2e folio_set_bh -EXPORT_SYMBOL vmlinux 0x4cafa934 sock_create_lite -EXPORT_SYMBOL vmlinux 0x4cbe1051 param_set_copystring -EXPORT_SYMBOL vmlinux 0x4cc79b75 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x4ccd1e37 dquot_initialize -EXPORT_SYMBOL vmlinux 0x4d062af0 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x4c55d96b vfs_readlink +EXPORT_SYMBOL vmlinux 0x4c6a1141 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x4c6e68b3 f_setown +EXPORT_SYMBOL vmlinux 0x4ca88b10 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x4ceeb9c1 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d2a1c35 cdev_device_add +EXPORT_SYMBOL vmlinux 0x4d1faef3 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0x4d2663b0 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x4d2a382b balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d4ecd76 dm_get_device +EXPORT_SYMBOL vmlinux 0x4d2ea855 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x4d424e36 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x4d595ed0 fs_param_is_fd EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d7eb77e adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x4d8a17c6 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x4d6bd0fe dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9e4c71 vme_bus_num EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4da316f6 peernet2id -EXPORT_SYMBOL vmlinux 0x4da53ea8 tcp_close EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4daf947b generic_write_checks_count -EXPORT_SYMBOL vmlinux 0x4dc86fd8 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x4dbb6cc1 _dev_crit +EXPORT_SYMBOL vmlinux 0x4dd0fa34 sget +EXPORT_SYMBOL vmlinux 0x4dd44ce2 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x4dd9f756 __sk_dst_check EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4dec42c7 uart_resume_port EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df6029d dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e04bddc __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4e033084 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x4e1863dd bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x4e1a63f3 km_new_mapping EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e29b63d noop_qdisc +EXPORT_SYMBOL vmlinux 0x4e22a7c8 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x4e2d9274 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e33082c posix_acl_update_mode EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e3f28fc page_pool_release_page -EXPORT_SYMBOL vmlinux 0x4e4bd18c __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x4e535962 sg_miter_next +EXPORT_SYMBOL vmlinux 0x4e37b9c7 blkdev_put +EXPORT_SYMBOL vmlinux 0x4e3c0fff netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x4e4fd256 qdisc_put EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e69a082 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7ecd05 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x4ea22b90 fb_blank +EXPORT_SYMBOL vmlinux 0x4e86d75e put_cmsg +EXPORT_SYMBOL vmlinux 0x4e88ff69 mdiobus_read +EXPORT_SYMBOL vmlinux 0x4e8b8f73 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eace757 __page_frag_cache_drain EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x4ebe0bd0 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x4eb3f614 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x4eb8efa0 param_set_uint +EXPORT_SYMBOL vmlinux 0x4ebf8fba ip_frag_next EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ecac635 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x4ed31896 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x4ef669db tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x4efc3c49 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x4eff5673 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x4f083155 mii_link_ok +EXPORT_SYMBOL vmlinux 0x4edae982 phy_device_free +EXPORT_SYMBOL vmlinux 0x4eeb6cd5 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x4eeb842d set_create_files_as +EXPORT_SYMBOL vmlinux 0x4ef49eec phy_disconnect +EXPORT_SYMBOL vmlinux 0x4f04c406 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x4f198ecf phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1fe91a devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f21ff38 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2c2842 handshake_req_alloc -EXPORT_SYMBOL vmlinux 0x4f3dcc02 of_device_alloc +EXPORT_SYMBOL vmlinux 0x4f3e693d inet_sk_get_local_port_range +EXPORT_SYMBOL vmlinux 0x4f426979 get_vm_area EXPORT_SYMBOL vmlinux 0x4f43d496 kobject_set_name EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f62b24d clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x4f6a9fc9 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x4f578169 inet6_offloads +EXPORT_SYMBOL vmlinux 0x4f60af18 pci_iomap +EXPORT_SYMBOL vmlinux 0x4f7ab0c0 tegra_ahb_enable_smmu EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4fb24104 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x4fc44da8 tls_client_hello_anon -EXPORT_SYMBOL vmlinux 0x4fdb3148 tty_devnum -EXPORT_SYMBOL vmlinux 0x4fe1c76f scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4fe62e08 done_path_create -EXPORT_SYMBOL vmlinux 0x4fe8d56e phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x4fe8d8e5 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x4fa40fa4 input_copy_abs +EXPORT_SYMBOL vmlinux 0x4fa8b7e8 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x4fafad89 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x4fbf39a1 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x4fe6f1de writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x4ffb9d35 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x4fff7e91 param_ops_uint +EXPORT_SYMBOL vmlinux 0x5006d888 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500eb45c generic_delete_inode -EXPORT_SYMBOL vmlinux 0x5011a54d ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x501956d7 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x501633a6 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x50197f11 get_phy_device EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x50272e9a tcf_classify -EXPORT_SYMBOL vmlinux 0x5027b739 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x5022b9ff key_unlink EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x503af577 cont_write_begin -EXPORT_SYMBOL vmlinux 0x5051f6ef inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5029227a devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x504c5690 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x50561b45 folio_add_lru +EXPORT_SYMBOL vmlinux 0x505f8bcf __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x505ff71c blk_put_queue EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x5068ab5b crypto_sha512_update EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5089287d cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x506ee3d8 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x50839786 mmc_can_trim EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50ae52c5 genlmsg_put -EXPORT_SYMBOL vmlinux 0x50b33c04 input_unregister_device +EXPORT_SYMBOL vmlinux 0x50a70a03 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50b86765 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50cce35e pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d5ac5e __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x50dc651f pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x50dfe918 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x50e66a10 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x50e0008c from_kuid +EXPORT_SYMBOL vmlinux 0x50e7285d tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x50e8a437 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50ffa41c inet_add_protocol +EXPORT_SYMBOL vmlinux 0x50ff4d64 tcp_read_done EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x510cb643 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x511a6ce7 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x511ef05b blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x5131f2f0 sock_create -EXPORT_SYMBOL vmlinux 0x5139a61c nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x513a6aad ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0x510c5c61 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x510e0a6c stop_tty +EXPORT_SYMBOL vmlinux 0x51315bb1 super_setup_bdi EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec -EXPORT_SYMBOL vmlinux 0x51483056 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x5146f142 tty_port_put +EXPORT_SYMBOL vmlinux 0x514aa350 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x515ec18c blk_rq_init EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516587ca dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x517f52c7 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x51846380 tegra_ivc_read_get_next_frame -EXPORT_SYMBOL vmlinux 0x5199bcd2 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x51656b18 of_device_alloc +EXPORT_SYMBOL vmlinux 0x5168977e migrate_folio +EXPORT_SYMBOL vmlinux 0x518f1a4d sk_mc_loop +EXPORT_SYMBOL vmlinux 0x51917861 sock_init_data_uid EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51a94013 stream_open -EXPORT_SYMBOL vmlinux 0x51abdf7a ping_prot +EXPORT_SYMBOL vmlinux 0x51a73faa netdev_notice +EXPORT_SYMBOL vmlinux 0x51a7e9ee configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x51b3c7d9 __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x51be7194 to_nd_dax +EXPORT_SYMBOL vmlinux 0x51c0544d vm_insert_page EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51ea62c0 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x51ecae35 phy_disconnect -EXPORT_SYMBOL vmlinux 0x51f086b9 dget_parent -EXPORT_SYMBOL vmlinux 0x51f3d358 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x520097d0 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x520334e5 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x51d2746e pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x51db3049 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x51e7bd4f tty_vhangup +EXPORT_SYMBOL vmlinux 0x51f2b79f blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x52085f72 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x52047bb8 mdiobb_read_c22 +EXPORT_SYMBOL vmlinux 0x5208cbd8 cros_ec_query_all EXPORT_SYMBOL vmlinux 0x520e97c4 proc_dostring -EXPORT_SYMBOL vmlinux 0x52179f1a tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0x5227cbb1 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x5235b760 __block_write_begin -EXPORT_SYMBOL vmlinux 0x5262042b __skb_pad +EXPORT_SYMBOL vmlinux 0x52144655 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x52577e95 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x527a054d textsearch_unregister -EXPORT_SYMBOL vmlinux 0x52887b48 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x52869734 show_init_ipc_ns EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529fb683 devm_request_resource -EXPORT_SYMBOL vmlinux 0x52cadcd7 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x52af880c dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x52bde1b4 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x52be78ce textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x52c7d49e of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x52cf5cc8 dquot_operations EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52e3d8cb mmc_retune_release +EXPORT_SYMBOL vmlinux 0x52dc7394 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x52de6502 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x52e87cfe fman_port_bind EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x52fe9e99 fget_raw +EXPORT_SYMBOL vmlinux 0x52f3535f ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x53117a2d ptp_clock_register +EXPORT_SYMBOL vmlinux 0x53117563 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x5322135c mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x531dd2b3 pci_dev_put EXPORT_SYMBOL vmlinux 0x5322663e acpi_get_handle -EXPORT_SYMBOL vmlinux 0x53237e50 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x532d903a jbd2__journal_start EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x5357f183 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x5371fb66 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x537c260e simple_release_fs +EXPORT_SYMBOL vmlinux 0x535ae4ab __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x5370a6f8 import_iovec +EXPORT_SYMBOL vmlinux 0x53754404 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x539a3296 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x539df5b6 cdrom_check_events EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53ad7ed9 inet_getname EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53bedae0 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x53dcd13b node_data -EXPORT_SYMBOL vmlinux 0x53dd9733 of_translate_dma_region -EXPORT_SYMBOL vmlinux 0x53e87af5 kill_anon_super +EXPORT_SYMBOL vmlinux 0x53c38642 iterate_dir +EXPORT_SYMBOL vmlinux 0x53e244c7 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x53e921b3 skb_queue_head EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f6ddc2 udp_set_csum +EXPORT_SYMBOL vmlinux 0x53f72df3 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x53fd4dc7 pci_write_config_byte EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x540734da vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x5426287d freeze_bdev -EXPORT_SYMBOL vmlinux 0x543ee2e6 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x5403df6a fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x5422ad25 d_rehash EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5443a77b processors -EXPORT_SYMBOL vmlinux 0x5451f5c0 devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x54523c00 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x5456ecc6 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x5475a3e3 set_disk_ro -EXPORT_SYMBOL vmlinux 0x5487faa2 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x5492fc86 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x54ae8425 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x546f9036 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x548385ad folio_create_empty_buffers +EXPORT_SYMBOL vmlinux 0x549a591a md_handle_request EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54b2f35b tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x54b6a7ef flow_rule_match_arp -EXPORT_SYMBOL vmlinux 0x54cbc4d2 arp_send +EXPORT_SYMBOL vmlinux 0x54be0ac4 xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54e31350 phy_device_create EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e8485b alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x54e999fe page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54fb8173 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x54f10793 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x54f66861 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x54f7baf2 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x54f7c1b9 set_disk_ro +EXPORT_SYMBOL vmlinux 0x55030c93 filp_open EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x550ae5e5 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x550f2f58 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x550f819b max8925_reg_read +EXPORT_SYMBOL vmlinux 0x551b5744 dev_change_flags EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552ae9ed padata_set_cpumask EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x553824ef scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x5539188f dev_open -EXPORT_SYMBOL vmlinux 0x5547547f dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x55382cdd mdiobus_c45_read EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x555d264c fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x556b2b63 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x556f2eb0 register_md_personality +EXPORT_SYMBOL vmlinux 0x5560c8ac tcp_seq_next +EXPORT_SYMBOL vmlinux 0x55744202 __netif_rx +EXPORT_SYMBOL vmlinux 0x55765586 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x557e47d3 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55ab074c import_single_range -EXPORT_SYMBOL vmlinux 0x55ae34fa param_ops_hexint -EXPORT_SYMBOL vmlinux 0x55b28b4b vlan_vid_add -EXPORT_SYMBOL vmlinux 0x55b3ca3e phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x55b5d04e call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x55b7445e __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x55cd9485 input_reset_device +EXPORT_SYMBOL vmlinux 0x559325bd pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x55a493a3 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x55b14062 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x55c08251 generic_write_end +EXPORT_SYMBOL vmlinux 0x55d1136a netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x55d30dbf md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x55d34e9c put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e4314d xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x56042ebf unregister_filesystem -EXPORT_SYMBOL vmlinux 0x56048be1 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x55ed9ad6 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x5603d1c8 ping_prot EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x56243216 of_iommu_get_resv_regions -EXPORT_SYMBOL vmlinux 0x562b9d8d xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x561a1f6f fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x561b9d0f del_gendisk +EXPORT_SYMBOL vmlinux 0x56224f0b tcp_mmap +EXPORT_SYMBOL vmlinux 0x5623accd netdev_get_by_name +EXPORT_SYMBOL vmlinux 0x562d1f8e inet_del_protocol +EXPORT_SYMBOL vmlinux 0x56308d91 phy_connect_direct EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56408301 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564706a2 netif_device_detach +EXPORT_SYMBOL vmlinux 0x564edaca fifo_set_limit EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x56513a28 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x56535faf __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x5653f9b3 mmc_release_host -EXPORT_SYMBOL vmlinux 0x56596060 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0x5659fa5d blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x565caca8 abort_creds -EXPORT_SYMBOL vmlinux 0x56646499 dev_add_pack -EXPORT_SYMBOL vmlinux 0x566de8bd csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x5661ad1d skb_tx_error EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568378f9 scsi_print_command -EXPORT_SYMBOL vmlinux 0x568a79a2 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x568ffeca generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x5694310d tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x56b1e144 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x56b3939e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x56b7b16c pci_disable_msi +EXPORT_SYMBOL vmlinux 0x56c80a7a clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x56c843aa mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56e28d1d ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x56f0eafc tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x57183409 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x57425774 del_gendisk -EXPORT_SYMBOL vmlinux 0x574321de mark_page_accessed +EXPORT_SYMBOL vmlinux 0x56dc07b0 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x56f7e0a9 seq_release_private +EXPORT_SYMBOL vmlinux 0x5701a24c vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x570a6158 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x57170106 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x571fab7b xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x5721fc18 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x5723f552 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x57259edf xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574e6238 pci_reenable_device EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57586062 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x576567f8 putname -EXPORT_SYMBOL vmlinux 0x57667054 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x575f9fa4 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x5761f46c neigh_seq_start EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5789d3cc tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x578beff3 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x578d370d cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x5771b4e7 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x5773c4d9 vmap +EXPORT_SYMBOL vmlinux 0x5777e085 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x577f99af sk_capable EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579a10ce dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x57b919ff dev_trans_start +EXPORT_SYMBOL vmlinux 0x579bd12d is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x57a463e1 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x57ad3bd0 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57e68ea3 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x57eaebb0 dev_deactivate +EXPORT_SYMBOL vmlinux 0x57ee6bbe ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58206576 ip_defrag EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x58267a85 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x582e20b9 thread_group_exited EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583e1ceb inet_offloads +EXPORT_SYMBOL vmlinux 0x584e8c16 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x58551677 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x586c9bbd task_work_add -EXPORT_SYMBOL vmlinux 0x58721709 dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x58747014 blk_finish_plug -EXPORT_SYMBOL vmlinux 0x5876e72e dcache_readdir +EXPORT_SYMBOL vmlinux 0x5867fe98 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x586c1af6 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588628ee devm_devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x588b8738 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x589463a2 udpv6_sendmsg EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x58acd32b xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x58986a2c genphy_read_status +EXPORT_SYMBOL vmlinux 0x58a13b98 set_capacity EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b4c00d create_empty_buffers EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58ba5b4a skb_clone -EXPORT_SYMBOL vmlinux 0x58db8a95 param_get_int -EXPORT_SYMBOL vmlinux 0x58e02003 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x58d91c7b pps_event EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58ee9d9c __folio_alloc -EXPORT_SYMBOL vmlinux 0x590fb15e __aperture_remove_legacy_vga_devices -EXPORT_SYMBOL vmlinux 0x59144461 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x5931ba49 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x58e5d4cd devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x58fdd54f param_ops_ullong +EXPORT_SYMBOL vmlinux 0x590dd394 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x5913755f keyring_search +EXPORT_SYMBOL vmlinux 0x59326d2f dma_find_channel EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x59621e47 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x593e7a94 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x5941911e vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x5946df11 seq_pad +EXPORT_SYMBOL vmlinux 0x594b11c7 dma_map_resource +EXPORT_SYMBOL vmlinux 0x595d82e8 netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x5968dc6d proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5971e012 serio_reconnect -EXPORT_SYMBOL vmlinux 0x597f7c99 mdiobb_write_c45 -EXPORT_SYMBOL vmlinux 0x5981ad5b rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a03d51 vme_dma_list_add EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59b0ba0c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x59a3f5e4 param_set_int +EXPORT_SYMBOL vmlinux 0x59ada065 flush_signals +EXPORT_SYMBOL vmlinux 0x59ae10d8 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59c2f79e scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x59cfa3cc ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x5a033817 pci_clear_master -EXPORT_SYMBOL vmlinux 0x5a085373 icmp6_send +EXPORT_SYMBOL vmlinux 0x59b4d2c8 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x59c0083f fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x59c8f89d sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x59ca8005 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x59d7962f pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x59ef7124 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5a013638 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x5a072e28 backlight_force_update +EXPORT_SYMBOL vmlinux 0x5a0b1412 ethtool_aggregate_mac_stats EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a17376b max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x5a20b9fe tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a4459d5 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4a4eee fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4f7cbc block_read_full_folio -EXPORT_SYMBOL vmlinux 0x5a50420c shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x5a548dae ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0x5a5a51d7 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a73dd73 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x5a907ed2 folio_mapping +EXPORT_SYMBOL vmlinux 0x5a706550 rproc_add +EXPORT_SYMBOL vmlinux 0x5a709850 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x5a756496 do_SAK +EXPORT_SYMBOL vmlinux 0x5a78d0b2 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x5a7e8a8c netpoll_setup EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a99681a config_item_put +EXPORT_SYMBOL vmlinux 0x5a94c5b1 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x5a9871aa twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa2d4e8 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x5aa3baf4 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x5ab6f97c mntget -EXPORT_SYMBOL vmlinux 0x5ab9eff4 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x5abd645e textsearch_unregister EXPORT_SYMBOL vmlinux 0x5ac01b95 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x5ac13bde jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x5ac7918e dma_resv_fini -EXPORT_SYMBOL vmlinux 0x5adc3029 tls_server_hello_x509 +EXPORT_SYMBOL vmlinux 0x5adb2466 device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae65cc5 folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0x5aed5a10 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x5af18f03 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x5afe73c7 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x5b0c8861 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x5b0e2870 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b2f4f16 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5b3accd5 genl_unregister_family EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b447850 bioset_exit -EXPORT_SYMBOL vmlinux 0x5b483f82 fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x5b4fbb06 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x5b43c04d pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x5b480e8a jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x5b4cbf22 scsi_execute_cmd +EXPORT_SYMBOL vmlinux 0x5b53786b single_open_size EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b5ca99d mfd_add_devices -EXPORT_SYMBOL vmlinux 0x5b70e604 config_group_find_item -EXPORT_SYMBOL vmlinux 0x5b7d1659 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x5b7d1b33 fiemap_prep -EXPORT_SYMBOL vmlinux 0x5ba144b7 km_policy_notify -EXPORT_SYMBOL vmlinux 0x5bc1702d bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x5b87232d ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x5b89ae6b mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x5bb9f4d9 tty_do_resize EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5bdcdfef config_item_init_type_name EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bef0b5a neigh_lookup -EXPORT_SYMBOL vmlinux 0x5bfc47fb get_cached_acl -EXPORT_SYMBOL vmlinux 0x5c06b0b6 put_fs_context -EXPORT_SYMBOL vmlinux 0x5c0bbb2c mdio_find_bus -EXPORT_SYMBOL vmlinux 0x5c0cd3c1 vfs_mknod -EXPORT_SYMBOL vmlinux 0x5c17e474 inet_put_port -EXPORT_SYMBOL vmlinux 0x5c1b501b generic_fillattr +EXPORT_SYMBOL vmlinux 0x5bf5a817 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x5bfff8b6 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x5c122bf1 vfs_iter_read EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c3a5722 nd_region_release_lane EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c5e1f74 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x5c777a09 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x5c7d16d7 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x5c911dc3 pci_request_region -EXPORT_SYMBOL vmlinux 0x5c9af722 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x5c9faeae xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x5cb3c0ee ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x5ccf868e unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x5c3e57bc neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x5c607c08 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x5c6605fc user_path_create +EXPORT_SYMBOL vmlinux 0x5c7cb5e6 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x5c85fe6b configfs_register_group +EXPORT_SYMBOL vmlinux 0x5ca73481 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x5cb8f154 con_is_visible EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x5cf4fe3f file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x5cd8d161 of_cpu_device_node_get +EXPORT_SYMBOL vmlinux 0x5cdc154c tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d031963 sock_i_ino -EXPORT_SYMBOL vmlinux 0x5d0a3c74 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x5cfcaebf of_iomap +EXPORT_SYMBOL vmlinux 0x5d0dfa79 input_set_abs_params EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d11c695 mdiobus_c45_write -EXPORT_SYMBOL vmlinux 0x5d285ddb devm_rproc_add -EXPORT_SYMBOL vmlinux 0x5d3308b1 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x5d1dbd58 qdisc_reset +EXPORT_SYMBOL vmlinux 0x5d2efaaa security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x5d3ee52a uart_match_port +EXPORT_SYMBOL vmlinux 0x5d49997e vme_master_request EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4abf46 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x5d546dfa of_get_next_parent -EXPORT_SYMBOL vmlinux 0x5da1bb6a __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x5d5896a4 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x5d61f99b blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x5da0c459 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dacc111 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x5db16bce insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x5dbbeb06 napi_enable -EXPORT_SYMBOL vmlinux 0x5ddf6924 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x5de0a0fa inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x5de6b2b4 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x5df84cfa nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x5e005662 amba_release_regions -EXPORT_SYMBOL vmlinux 0x5e041c8b sock_sendmsg -EXPORT_SYMBOL vmlinux 0x5e04a939 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x5dc74237 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x5dec48eb simple_rename +EXPORT_SYMBOL vmlinux 0x5df38dd3 jbd2_journal_start EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e17d143 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0x5e22eb53 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x5e254eef xudma_get_device +EXPORT_SYMBOL vmlinux 0x5e2b0fdb mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5e32ab16 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e3a52f7 kern_unmount +EXPORT_SYMBOL vmlinux 0x5e402708 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x5e56f42d simple_write_begin +EXPORT_SYMBOL vmlinux 0x5e597cbc skb_dequeue +EXPORT_SYMBOL vmlinux 0x5e63b22e filemap_release_folio EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e79f531 iov_iter_get_pages2 EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8b3c57 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x5e86ec54 mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x5e8c5e5a submit_bh +EXPORT_SYMBOL vmlinux 0x5e8c9eb6 skb_eth_pop EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc +EXPORT_SYMBOL vmlinux 0x5e9505c6 ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5e9cc2a6 vfs_rename -EXPORT_SYMBOL vmlinux 0x5ea3ca02 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x5ea6d4f4 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x5ec06f90 start_tty EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5f061b49 tcp_init_sock EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0ad6ce twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x5f1a2485 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x5f2cdb22 page_pool_destroy EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x5f31b584 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x5f3b648f fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x5f34cf3f ilookup +EXPORT_SYMBOL vmlinux 0x5f3b326d ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x5f3c059f i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f692b7a dcache_dir_close +EXPORT_SYMBOL vmlinux 0x5f5cdd92 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x5f5f590c neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f7d3780 km_report -EXPORT_SYMBOL vmlinux 0x5f89dd2f mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x5f914492 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x5f920f75 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x5f80d995 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f9af629 __block_write_full_folio -EXPORT_SYMBOL vmlinux 0x5fa68e5b dst_destroy -EXPORT_SYMBOL vmlinux 0x5fbf1b82 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x5fae78f5 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x5fb7e58f mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x5fbaa852 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fc7afe6 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x5fd6a026 iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x5fe95551 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x5fc76da0 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x5fd0bfed finish_swait +EXPORT_SYMBOL vmlinux 0x5fd25b63 pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call -EXPORT_SYMBOL vmlinux 0x5ff48a9e wireless_send_event -EXPORT_SYMBOL vmlinux 0x5ff86a79 register_shrinker EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x60004e41 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x60037827 tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit -EXPORT_SYMBOL vmlinux 0x600b7667 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x600ac611 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x600c4b62 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x6016fc33 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602899ac fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x6031e5cc xp_dma_map EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604241d1 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x6048797a i2c_get_match_data +EXPORT_SYMBOL vmlinux 0x6039ac86 fb_io_read EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6079bd48 kmem_cache_alloc_lru -EXPORT_SYMBOL vmlinux 0x608124bc uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x60671ed7 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x6071bc54 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x60741241 key_invalidate EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6088a881 blk_execute_rq EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code -EXPORT_SYMBOL vmlinux 0x6091482d dev_mc_del +EXPORT_SYMBOL vmlinux 0x60916a6f param_ops_charp EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x6092b86c phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x60942df9 I_BDEV EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609c566e acpi_bus_register_driver EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add -EXPORT_SYMBOL vmlinux 0x60b9b923 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x60b24a8b inode_maybe_inc_iversion EXPORT_SYMBOL vmlinux 0x60bbb124 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x60c5ea3d vga_get -EXPORT_SYMBOL vmlinux 0x60d0a13a may_umount -EXPORT_SYMBOL vmlinux 0x60d21718 genl_register_family +EXPORT_SYMBOL vmlinux 0x60bd83e2 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x60ca145b netpoll_print_options EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60da28e3 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x60e165ef xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x60e62292 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x60eef500 md_check_recovery -EXPORT_SYMBOL vmlinux 0x60f238a8 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x60e45c30 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x60e9384e input_match_device_id +EXPORT_SYMBOL vmlinux 0x60f2a121 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x61064bc9 seq_path EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x61099ef1 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x610ee505 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x6108c8d8 read_cache_folio +EXPORT_SYMBOL vmlinux 0x6108e471 dm_table_get_mode EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612bc6b8 genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x61459b6d devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x61498c29 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x614d373d put_cmsg +EXPORT_SYMBOL vmlinux 0x613dcdee scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x614c474e textsearch_register EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x615977f5 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x61674a0c jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x6176e592 tls_handshake_cancel +EXPORT_SYMBOL vmlinux 0x615ba056 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x615d9f43 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x6161e6fc noop_llseek +EXPORT_SYMBOL vmlinux 0x6167c7df fsync_bdev +EXPORT_SYMBOL vmlinux 0x61794725 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x6199a71c unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a48f9f get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x61ad7ebb thread_group_exited +EXPORT_SYMBOL vmlinux 0x61b065f2 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x61b23fe7 par_io_of_config EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61c0d143 filemap_get_folios -EXPORT_SYMBOL vmlinux 0x61d8f4cb __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x61c6e75a generic_write_checks +EXPORT_SYMBOL vmlinux 0x61ddcacf scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e6a798 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61ebb168 __bforget -EXPORT_SYMBOL vmlinux 0x61ec37ad nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x61f3bc0c nf_log_trace -EXPORT_SYMBOL vmlinux 0x62117bca dcb_setrewr +EXPORT_SYMBOL vmlinux 0x61ea4b9e ram_aops +EXPORT_SYMBOL vmlinux 0x620a018c acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x620df75b twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x620fac2c blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6219a039 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x621bdb2c skb_copy_bits -EXPORT_SYMBOL vmlinux 0x621e353e fs_param_is_enum EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622a29c0 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x623497b5 d_add -EXPORT_SYMBOL vmlinux 0x623e3a92 tty_port_open -EXPORT_SYMBOL vmlinux 0x62467890 rio_query_mport -EXPORT_SYMBOL vmlinux 0x6255de26 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x625ad608 tty_port_put -EXPORT_SYMBOL vmlinux 0x62679ef1 param_set_bint -EXPORT_SYMBOL vmlinux 0x626c04a5 nd_device_register -EXPORT_SYMBOL vmlinux 0x6272d90e inode_add_bytes +EXPORT_SYMBOL vmlinux 0x6231f160 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x623d635d inet_add_protocol +EXPORT_SYMBOL vmlinux 0x624cd1f6 sock_set_priority +EXPORT_SYMBOL vmlinux 0x625088f9 bpf_link_put +EXPORT_SYMBOL vmlinux 0x62578450 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x625e83f1 dcb_getrewr EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range -EXPORT_SYMBOL vmlinux 0x62784032 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x627c5681 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x6284074f __dev_get_by_name EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62862c4c fman_get_revision EXPORT_SYMBOL vmlinux 0x628c0f8f dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x6294b052 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x62ad2abd netdev_features_change -EXPORT_SYMBOL vmlinux 0x62d2dfdc blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x629ce5ac jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x62b613b1 genphy_update_link EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x62fe605c jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x62ffa60e scsi_print_result EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x6315c9c4 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x6326258e filemap_flush -EXPORT_SYMBOL vmlinux 0x63369344 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x63658182 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x63702b96 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0x63732f43 generic_write_checks -EXPORT_SYMBOL vmlinux 0x63788332 readahead_expand -EXPORT_SYMBOL vmlinux 0x6381212a ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x638505cb dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x6399bd39 bdi_put +EXPORT_SYMBOL vmlinux 0x63244cce unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x634632d1 netdev_update_features +EXPORT_SYMBOL vmlinux 0x63538bbd phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x63558787 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x6362a132 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x636502ff tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x636eb412 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x636f6dd2 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x6370105d fs_param_is_string +EXPORT_SYMBOL vmlinux 0x6397483e scsi_report_device_reset EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b58473 param_set_ushort -EXPORT_SYMBOL vmlinux 0x63cbb3c2 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x63d6c8fd sock_set_mark -EXPORT_SYMBOL vmlinux 0x63d9d869 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x63b7e6f8 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x63d0b0d6 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x63e48fa2 imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ed2ebe input_open_device -EXPORT_SYMBOL vmlinux 0x63f76b3b md_reload_sb -EXPORT_SYMBOL vmlinux 0x63ff7ba8 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x64028bcc uart_suspend_port EXPORT_SYMBOL vmlinux 0x6402c8df sha512_block_data_order -EXPORT_SYMBOL vmlinux 0x64088269 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x6411c425 dev_kfree_skb_irq_reason EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641b568f scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x6412b8e0 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x64169747 d_tmpfile EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x644012e1 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x6455da5d dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x645caabd kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x645fadd4 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x64665fda phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x6463b0dd simple_setattr +EXPORT_SYMBOL vmlinux 0x647dd380 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x647deb96 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x647f6ed1 ip_check_defrag EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648df75d skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x649f7583 dma_find_channel -EXPORT_SYMBOL vmlinux 0x64a2925c phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x64a7c3f7 ethtool_aggregate_phy_stats +EXPORT_SYMBOL vmlinux 0x64a19fca nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x64a87af8 ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64bb9b46 dev_get_stats +EXPORT_SYMBOL vmlinux 0x64b08e62 devfreq_update_interval EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64cb1ab8 vfs_get_tree EXPORT_SYMBOL vmlinux 0x64d11af1 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x64d99451 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x64da630b filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x64ddeb28 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x64e31c1d path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x64e67d65 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x64fc6cf9 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x64fce0e4 datagram_poll -EXPORT_SYMBOL vmlinux 0x64fe4e11 block_truncate_page +EXPORT_SYMBOL vmlinux 0x64d1f1db clear_inode +EXPORT_SYMBOL vmlinux 0x64ed4f1a netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x64fc67c5 vme_dma_request +EXPORT_SYMBOL vmlinux 0x650a0f34 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x650a145c security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x65112c02 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x65117dcc tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x65187dbd phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651b958f vme_slot_num -EXPORT_SYMBOL vmlinux 0x651e7aab netdev_reset_tc EXPORT_SYMBOL vmlinux 0x652032cb mac_pton EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x6546a613 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x65615e5a __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x656563c0 vme_lm_request +EXPORT_SYMBOL vmlinux 0x65481edf sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x654f2aa4 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x6554d841 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x6557c80a skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x655b6432 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x656256e0 mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656c33d0 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x6571a5d5 of_translate_address +EXPORT_SYMBOL vmlinux 0x6571d906 block_write_full_page EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x659b61ce compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x65949a40 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x6598eac7 bio_integrity_trim EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a28b11 mdio_device_register +EXPORT_SYMBOL vmlinux 0x65b929bf xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x65ba07a6 processors +EXPORT_SYMBOL vmlinux 0x65cb86e1 of_node_put EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d1d285 wireless_spy_update EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65daae4d pneigh_lookup EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e6071c blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x65f0b398 __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6626a461 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x65e75534 nonseekable_open +EXPORT_SYMBOL vmlinux 0x65f6d7a9 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x65fc86a5 vme_irq_free +EXPORT_SYMBOL vmlinux 0x6616e550 mntput +EXPORT_SYMBOL vmlinux 0x66230956 of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x663e72c1 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x6630e3e9 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x663828b9 inet_del_offload +EXPORT_SYMBOL vmlinux 0x66384471 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x663f3542 simple_rmdir EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr -EXPORT_SYMBOL vmlinux 0x66502c76 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x665abdbd sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x665b1af0 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x66569520 pci_scan_bridge EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel -EXPORT_SYMBOL vmlinux 0x665f827c pci_claim_resource EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin EXPORT_SYMBOL vmlinux 0x666c14c0 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x666f199d tcp_check_req EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x6682f1ab inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x668b952c param_ops_long +EXPORT_SYMBOL vmlinux 0x66968d92 rproc_free +EXPORT_SYMBOL vmlinux 0x669bebee blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x66a10ea0 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x66a8bc7e phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x66a4fb2e of_n_addr_cells EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b3c225 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66d0892c generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x66be3814 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x66cbf748 napi_get_frags +EXPORT_SYMBOL vmlinux 0x66d3c8b7 request_key_rcu +EXPORT_SYMBOL vmlinux 0x66e67492 __check_sticky +EXPORT_SYMBOL vmlinux 0x66e6911f mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x66e7b96c security_path_unlink +EXPORT_SYMBOL vmlinux 0x66e8197e nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x66ea4905 dma_free_attrs EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit -EXPORT_SYMBOL vmlinux 0x672ebe02 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x66fe1535 ilookup5 +EXPORT_SYMBOL vmlinux 0x67061997 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x670c5589 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x672916c0 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x675b2036 sk_free -EXPORT_SYMBOL vmlinux 0x67650f71 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x677b1e4e inet_shutdown +EXPORT_SYMBOL vmlinux 0x6750fa3c do_splice_direct +EXPORT_SYMBOL vmlinux 0x675449ae pci_save_state +EXPORT_SYMBOL vmlinux 0x675c22ed xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x679bc194 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x67a0ea15 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x67aa01a6 simple_rename EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b2ba1a __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x67b380df would_dump EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bb4dbc phy_start_aneg EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67c315a4 try_module_get -EXPORT_SYMBOL vmlinux 0x67c55586 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x67c5ef32 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x67cd5e96 folio_clear_dirty_for_io -EXPORT_SYMBOL vmlinux 0x67fb6060 mdiobus_c45_read_nested -EXPORT_SYMBOL vmlinux 0x67fcd982 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x680ab65e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x67cd2d13 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x67d6a223 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x67f845ea free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x680189d8 folio_mapping +EXPORT_SYMBOL vmlinux 0x6809c48e mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0x680adc1c phy_write_paged EXPORT_SYMBOL vmlinux 0x6812f116 regset_get -EXPORT_SYMBOL vmlinux 0x682d644c _dev_printk -EXPORT_SYMBOL vmlinux 0x683301d6 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x683644ae generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x68375f6c inc_node_page_state -EXPORT_SYMBOL vmlinux 0x683bf95d __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x684ce094 eth_header +EXPORT_SYMBOL vmlinux 0x6830e15b dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x684c94e2 pci_request_region +EXPORT_SYMBOL vmlinux 0x68545927 dst_destroy +EXPORT_SYMBOL vmlinux 0x686c0022 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x686d13fe console_force_preferred_locked EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6880da79 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x689067dd dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x68c8893a mmc_register_driver -EXPORT_SYMBOL vmlinux 0x68cb2a50 load_nls_default -EXPORT_SYMBOL vmlinux 0x68d49015 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x68f88c45 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x6897c397 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x68ab2f22 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x68c6ffcc pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x68c8a5bc mod_node_page_state +EXPORT_SYMBOL vmlinux 0x68ca0783 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x68d8032c mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x68e4893a simple_nosetlease +EXPORT_SYMBOL vmlinux 0x68e788ef generic_block_bmap +EXPORT_SYMBOL vmlinux 0x68ea04d5 pmem_sector_size EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69037179 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x68fd068f tso_start +EXPORT_SYMBOL vmlinux 0x69021cd1 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x6902a8a1 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x69052844 __ps2_command -EXPORT_SYMBOL vmlinux 0x69211aaf nf_log_packet -EXPORT_SYMBOL vmlinux 0x69293608 netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0x693175e7 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x693c221e bpf_map_get -EXPORT_SYMBOL vmlinux 0x6944c116 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x694781e4 dquot_file_open -EXPORT_SYMBOL vmlinux 0x69547530 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x690cb401 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x691712b4 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x691a32b2 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x6927a4f9 eth_header EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and -EXPORT_SYMBOL vmlinux 0x69782865 dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x6990bd84 lock_rename -EXPORT_SYMBOL vmlinux 0x6992163e ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x69929b87 __napi_schedule -EXPORT_SYMBOL vmlinux 0x69add197 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x69bd9eb1 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x6991e019 key_revoke +EXPORT_SYMBOL vmlinux 0x699767ee clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x69b08cba pnp_device_detach +EXPORT_SYMBOL vmlinux 0x69b33351 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x69befb9c cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x69cc8cc7 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x69d59ea7 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x69dbed91 iov_iter_revert EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e3c8ac scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x69f6c6c5 iterate_fd -EXPORT_SYMBOL vmlinux 0x6a01c015 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x69e125ab ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x69fb4db9 neigh_destroy +EXPORT_SYMBOL vmlinux 0x69fd2b9f textsearch_prepare EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a071d01 __dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x6a2b7c74 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x6a10e5a0 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x6a1d3bf2 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x6a29fe7c sock_efree +EXPORT_SYMBOL vmlinux 0x6a2cafda param_set_long EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe -EXPORT_SYMBOL vmlinux 0x6a3caa91 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x6a502982 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6a3b7900 block_dirty_folio EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5e0e9f flush_dcache_folio EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a67d1fa timestamp_truncate EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a71e8b2 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x6a77723a skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6a6fbab1 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x6a7a64b9 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x6a7e1ff1 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x6a80b917 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6aa06e35 import_iovec -EXPORT_SYMBOL vmlinux 0x6aa0d7ab __d_drop -EXPORT_SYMBOL vmlinux 0x6ab00e13 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x6abf228e unix_get_socket +EXPORT_SYMBOL vmlinux 0x6aab8f3a mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6aced8a0 serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae90d22 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x6ae272c7 md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b1504af blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6b0da5df sock_rfree +EXPORT_SYMBOL vmlinux 0x6b104b2f jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x6b20e917 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x6b255568 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b2eb934 rpmh_write -EXPORT_SYMBOL vmlinux 0x6b3f4295 locks_free_lock +EXPORT_SYMBOL vmlinux 0x6b40908d forget_cached_acl +EXPORT_SYMBOL vmlinux 0x6b5078c4 file_path EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b60c7e0 __find_get_block +EXPORT_SYMBOL vmlinux 0x6b658b75 fs_param_is_blob EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b86bd6e pnp_possible_config EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6ba55e65 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x6ba92fda blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x6bb3ce98 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x6bb86d70 netdev_printk +EXPORT_SYMBOL vmlinux 0x6b8d99bf i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x6b9dc323 key_link +EXPORT_SYMBOL vmlinux 0x6ba7db90 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x6bab5661 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x6bc04518 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc7bf08 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x6bc64180 console_start +EXPORT_SYMBOL vmlinux 0x6bc92c3f skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bd8cdd0 __netlink_dump_start EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6c099971 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x6c1175e5 of_range_to_resource +EXPORT_SYMBOL vmlinux 0x6c1962b0 tegra_dfll_suspend EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c303416 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x6c31a697 __inet_hash -EXPORT_SYMBOL vmlinux 0x6c504574 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x6c5854e6 kern_path_create -EXPORT_SYMBOL vmlinux 0x6c596bbe pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x6c5ac7f8 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x6c2a1576 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6c41a0e7 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x6c50fec8 mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c801a5b pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x6c68fadf __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x6c7089c3 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x6c78cd38 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x6c7f5b1b max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x6c851994 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbabd19 napi_disable +EXPORT_SYMBOL vmlinux 0x6cb63930 set_nlink EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cc54aff nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x6cd4914a tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x6cf05d7c pci_disable_msi +EXPORT_SYMBOL vmlinux 0x6cc89135 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x6cd9657a register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6ceb4411 dev_activate EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6d05b134 sock_setsockopt EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d256912 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x6d1edc8a ndisc_ns_create EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d5cd492 skb_dequeue +EXPORT_SYMBOL vmlinux 0x6d3cfabd xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x6d4dbe41 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x6d50e66c sg_miter_start EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d6e1f37 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x6d653d77 filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d763ee5 _dev_alert +EXPORT_SYMBOL vmlinux 0x6d7a6a8c tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d86891a param_get_short -EXPORT_SYMBOL vmlinux 0x6d924017 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x6d9319d6 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x6d933508 lynx_pcs_destroy -EXPORT_SYMBOL vmlinux 0x6d962ff6 copy_highpage +EXPORT_SYMBOL vmlinux 0x6d995128 __breadahead +EXPORT_SYMBOL vmlinux 0x6d9d08bb vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6da8f5b5 skb_store_bits -EXPORT_SYMBOL vmlinux 0x6db49897 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x6db5b749 inet_frags_init +EXPORT_SYMBOL vmlinux 0x6dafef57 simple_lookup EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dbdef89 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x6dbd7c44 block_read_full_folio EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dcd28b4 tegra_ivc_write_get_next_frame EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6ddeba8b security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x6ddfd09c unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x6dec2cc3 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x6de115e3 cfb_fillrect EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6e08bf8f tcf_block_put -EXPORT_SYMBOL vmlinux 0x6e16c369 proto_unregister -EXPORT_SYMBOL vmlinux 0x6e1d2529 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x6e269b06 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x6e2b63ef __put_user_ns -EXPORT_SYMBOL vmlinux 0x6e2d71a5 vma_alloc_folio -EXPORT_SYMBOL vmlinux 0x6e462554 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x6e4b568e put_watch_queue -EXPORT_SYMBOL vmlinux 0x6e56a9ae pci_bus_type +EXPORT_SYMBOL vmlinux 0x6e07ab2e udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x6e08bc89 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x6e10649a unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x6e110739 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x6e1dc98c starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6e2eee6c pci_dev_driver +EXPORT_SYMBOL vmlinux 0x6e456606 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x6e4e530f skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x6e4f8282 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x6e526ef4 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x6e58c1b8 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x6e5a263f of_find_device_by_node EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5bac93 __mdiobus_read -EXPORT_SYMBOL vmlinux 0x6e64fdf3 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x6e67d652 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x6e6ee1df jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x6e5ce58a bdev_start_io_acct EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7a011e skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6e7d8934 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x6e796d6d folio_mark_dirty EXPORT_SYMBOL vmlinux 0x6e853470 kobject_get -EXPORT_SYMBOL vmlinux 0x6e8a69f8 generic_setlease -EXPORT_SYMBOL vmlinux 0x6e9c2957 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x6e924819 param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea0e18a netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x6ea62956 xp_alloc_batch EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ec7ff94 xattr_supports_user_prefix -EXPORT_SYMBOL vmlinux 0x6eec9505 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x6eb3811c inode_dio_wait +EXPORT_SYMBOL vmlinux 0x6ee3f278 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x6ee6b927 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6eee4a93 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x6efe84b0 md_integrity_register -EXPORT_SYMBOL vmlinux 0x6f096b2f ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x6f0c48f5 iget_locked -EXPORT_SYMBOL vmlinux 0x6f116991 sock_register +EXPORT_SYMBOL vmlinux 0x6efa60dd tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f1a7381 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x6f207bd8 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x6f343dc3 inode_permission -EXPORT_SYMBOL vmlinux 0x6f36a4d7 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x6f3728b3 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x6f40b84b sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x6f4087f5 kmem_cache_create EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove +EXPORT_SYMBOL vmlinux 0x6f45704c pci_request_regions EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f74068d follow_down_one +EXPORT_SYMBOL vmlinux 0x6f5e7570 config_group_init EXPORT_SYMBOL vmlinux 0x6f7793a5 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x6f80bd5c xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x6f7908a8 pipe_lock +EXPORT_SYMBOL vmlinux 0x6f8edcb3 security_unix_may_send EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f921c1c dev_mc_init -EXPORT_SYMBOL vmlinux 0x6fa489b2 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x6faa8816 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x6facc6dd zap_page_range_single EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fba21d8 misc_register EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fbc81c0 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x6fc267de netdev_warn EXPORT_SYMBOL vmlinux 0x6fc48021 dynamic_cond_resched -EXPORT_SYMBOL vmlinux 0x6fca4395 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x6fc97fa9 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd0759b sg_miter_stop +EXPORT_SYMBOL vmlinux 0x6fdcbc39 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched -EXPORT_SYMBOL vmlinux 0x6ffbaf37 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x6ff5378f skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x700219d1 page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0x700c6c17 key_create -EXPORT_SYMBOL vmlinux 0x7018754a max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x70188c37 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x701b6278 xfrm6_input_addr EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7027187e xfrm_find_acq EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702a017e ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x702ac1c6 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x70373e91 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x704f3da7 set_nlink EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x706d47d6 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x706d610c from_kuid_munged -EXPORT_SYMBOL vmlinux 0x707b690d tty_register_driver -EXPORT_SYMBOL vmlinux 0x70ab3e59 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x7075616d dev_alloc_name +EXPORT_SYMBOL vmlinux 0x707a43bf mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x70834bdf bpf_map_get +EXPORT_SYMBOL vmlinux 0x708eb484 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x709431ec mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x7096c5ab skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x709ba8c3 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x709bb8b7 cros_ec_get_host_event EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b5cf6f fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x70bd1dfb sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x70c69957 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x70c77978 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x70cf042f pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70d6f87a devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x70daa11e dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x70efdd5f of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x70fa3221 sget_fc -EXPORT_SYMBOL vmlinux 0x7101def5 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x710b1ce6 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x7119a1c8 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x71272b91 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x70e164c0 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x70e513f7 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x70f83feb dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x7102e057 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x71046d15 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x71088759 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x7116e47d set_blocksize +EXPORT_SYMBOL vmlinux 0x7118f8b6 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x71223d55 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ba7b7 of_get_parent -EXPORT_SYMBOL vmlinux 0x712ee4c9 d_splice_alias +EXPORT_SYMBOL vmlinux 0x712c0cf2 submit_bio_wait EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x714f7455 unlock_new_inode EXPORT_SYMBOL vmlinux 0x7155bcf8 sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x71574503 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7157e342 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715c5839 crypto_sha3_final -EXPORT_SYMBOL vmlinux 0x71705e88 mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x717027f8 _dev_err EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x71769bf9 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x7176e09c sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x7171b522 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x719985f3 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x719c4f38 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x718e9d9f udp6_csum_init +EXPORT_SYMBOL vmlinux 0x71962a06 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x719a43b1 key_move +EXPORT_SYMBOL vmlinux 0x719e4771 i2c_find_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x71a5a14b i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71ab34bb netif_carrier_off -EXPORT_SYMBOL vmlinux 0x71c72d70 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x71d7dfb8 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x71e91ecd genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x71ae5c1b devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x71bc155a of_device_unregister +EXPORT_SYMBOL vmlinux 0x71cf2d2a netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x71d4539e pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x71d6e8de __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x71e43e88 iput EXPORT_SYMBOL vmlinux 0x71fb6892 dma_fence_array_next -EXPORT_SYMBOL vmlinux 0x7201163c xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x72038744 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x7209e73a vm_insert_page EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x72129fb3 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x723bbf11 sys_copyarea -EXPORT_SYMBOL vmlinux 0x7258e8da blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x72676d2a acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0x722df52f scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x7251e812 from_kprojid EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7273fc3d tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72acb225 free_mdio_bitbang EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bf067f of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x72d7bcf2 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x72d7fb77 km_new_mapping -EXPORT_SYMBOL vmlinux 0x72da07ad vm_mmap +EXPORT_SYMBOL vmlinux 0x72c889e3 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f269f2 vfs_symlink +EXPORT_SYMBOL vmlinux 0x72f5b10e cad_pid +EXPORT_SYMBOL vmlinux 0x72fe385f from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x730885e7 eth_type_trans +EXPORT_SYMBOL vmlinux 0x731449a7 ppp_unit_number EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731978ad jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL vmlinux 0x731f052a mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x731f9c9f dev_printk_emit EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x732e2666 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0x7339f7c5 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x733dc4a1 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x73438920 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x734bb2b9 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x73310ec1 fput +EXPORT_SYMBOL vmlinux 0x733af489 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x7343e71e blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x73498b68 __f_setown +EXPORT_SYMBOL vmlinux 0x734fdbfe tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x7358d8ff xfrm_init_state EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x73612609 udp_read_skb -EXPORT_SYMBOL vmlinux 0x7362ea18 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x73686fe3 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x73721ee8 inet6_getname +EXPORT_SYMBOL vmlinux 0x73640b0c simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7379ef30 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738a6b65 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0x738c67ad to_ndd +EXPORT_SYMBOL vmlinux 0x738cd885 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x7392a533 dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a9394d param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73c48e57 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x73c5c088 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x73cced5c of_device_is_available -EXPORT_SYMBOL vmlinux 0x73e9833c truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x73bf0e75 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x73e3fbe2 bio_split +EXPORT_SYMBOL vmlinux 0x73e8535e inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x741f9ac8 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x741fa0fa dev_uc_init EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7428422c pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742e5544 devm_release_resource -EXPORT_SYMBOL vmlinux 0x74399b70 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x742b828e mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x743122b9 proc_mkdir EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x744dd60b netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x74525706 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7454723d __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x746a5760 framebuffer_release +EXPORT_SYMBOL vmlinux 0x745fca19 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x7461915c pci_pme_active EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x747cef9d pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748718b9 __mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0x74967c0e trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x74ad6cba vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74bba472 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x74bda09d dcb_getrewr_prio_pcp_mask_map EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c39dc3 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x74da064a set_security_override -EXPORT_SYMBOL vmlinux 0x74dc9e58 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x74dd9e0b dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x74e23c9b pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x7546f359 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x74ec2b15 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x74f54b92 bdi_register +EXPORT_SYMBOL vmlinux 0x74ff762b generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x7503ccb4 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x751b041f keyring_clear +EXPORT_SYMBOL vmlinux 0x752124cc pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x7525393b fman_set_port_params +EXPORT_SYMBOL vmlinux 0x75263b8a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x752f6ab3 __skb_recv_udp EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x756cb548 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x7573bb6e devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x7577a9e3 ndisc_ns_create -EXPORT_SYMBOL vmlinux 0x75844327 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x756f1596 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x757104f6 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x757e04dc vfs_mknod EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x759a5e24 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x75b142e7 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x75b4355d genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x75b79a71 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x759c00b3 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x759c21f8 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x75b3f90e ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75cef7c3 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x75c75d89 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x75c83331 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e8734e vm_map_ram -EXPORT_SYMBOL vmlinux 0x75f2e213 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x76037a50 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x75dd65dc blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x75ee29c6 md_check_recovery +EXPORT_SYMBOL vmlinux 0x75f1106e tcf_exts_dump EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76207fd8 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x7623518c pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x760e29da make_bad_inode +EXPORT_SYMBOL vmlinux 0x761de939 is_nd_btt EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x762f35d0 file_open_root -EXPORT_SYMBOL vmlinux 0x7635a233 devm_memremap -EXPORT_SYMBOL vmlinux 0x7635f23c sockfd_lookup -EXPORT_SYMBOL vmlinux 0x763da603 generic_write_end +EXPORT_SYMBOL vmlinux 0x762ab9ef fman_reset_mac +EXPORT_SYMBOL vmlinux 0x7631a2ad param_set_copystring +EXPORT_SYMBOL vmlinux 0x764379c5 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x76480ac5 seq_puts -EXPORT_SYMBOL vmlinux 0x764820e7 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x764f6e2b __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x7657f05e tcf_exts_change +EXPORT_SYMBOL vmlinux 0x764b4f3f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x7652b1bf mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7665bd43 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x76667db5 phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x767ad9dd phy_modify_paged -EXPORT_SYMBOL vmlinux 0x767c79d6 param_ops_bool +EXPORT_SYMBOL vmlinux 0x7670cf16 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x767b02de security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x768d7ad1 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x7683aea1 input_reset_device EXPORT_SYMBOL vmlinux 0x768ee329 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x769e81cd jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x76924928 setattr_prepare +EXPORT_SYMBOL vmlinux 0x7692e036 i2c_get_match_data +EXPORT_SYMBOL vmlinux 0x76959353 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x769aeb88 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x769cf505 udp_poll EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76b7c37c textsearch_destroy +EXPORT_SYMBOL vmlinux 0x76ba5491 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x76c9a83e free_buffer_head +EXPORT_SYMBOL vmlinux 0x76cb9c4f pps_register_source +EXPORT_SYMBOL vmlinux 0x76ce6215 dcb_getrewr_prio_pcp_mask_map +EXPORT_SYMBOL vmlinux 0x76d0efe8 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x76d38ff3 dev_mc_flush EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76d5dbe8 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x76d7205f nd_device_unregister -EXPORT_SYMBOL vmlinux 0x76d7774b consume_skb -EXPORT_SYMBOL vmlinux 0x76dcfb80 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x76d3db86 crypto_sha3_final +EXPORT_SYMBOL vmlinux 0x76e839a7 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x76f47d47 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x76f0ef55 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x76f7ab86 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x771295bd mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x7725c0d4 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x772f11b3 generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x774558c0 dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77559efb tcp_prot -EXPORT_SYMBOL vmlinux 0x775ad88c xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x77686069 inet_addr_type +EXPORT_SYMBOL vmlinux 0x7747d135 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x774cc09a netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x774ecca8 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x776426a4 devm_iounmap EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 +EXPORT_SYMBOL vmlinux 0x777ea0fe vme_master_mmap EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x7791c0a1 iput -EXPORT_SYMBOL vmlinux 0x77afb6fd is_nd_pfn +EXPORT_SYMBOL vmlinux 0x77985d07 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x7799c94a unregister_console +EXPORT_SYMBOL vmlinux 0x77a355aa ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x77b33b43 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77c0a1e9 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x77c7ef7c alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x77c7ffae dquot_free_inode -EXPORT_SYMBOL vmlinux 0x77cef729 pci_save_state -EXPORT_SYMBOL vmlinux 0x77e33b65 rt6_lookup +EXPORT_SYMBOL vmlinux 0x77cb6385 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x77cc944d framebuffer_release +EXPORT_SYMBOL vmlinux 0x77ccb1aa netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x77ded570 tcf_register_action EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77ecfad6 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x77f5192c key_unlink -EXPORT_SYMBOL vmlinux 0x7800c7ae eth_mac_addr +EXPORT_SYMBOL vmlinux 0x780212ae __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78083464 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x78155989 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x7810d6f4 ata_print_version EXPORT_SYMBOL vmlinux 0x78161f39 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x782d0a09 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x78373af0 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x782d07f3 take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7862d365 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x787de056 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x78968630 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x7862e288 iunique +EXPORT_SYMBOL vmlinux 0x78859818 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x78861278 nd_device_notify +EXPORT_SYMBOL vmlinux 0x788883bd drop_super_exclusive EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78ad2483 page_pool_get_stats -EXPORT_SYMBOL vmlinux 0x78b02db1 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bc5e41 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x78bd37e0 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x78bdbc54 of_node_put -EXPORT_SYMBOL vmlinux 0x78d78b41 sock_set_priority -EXPORT_SYMBOL vmlinux 0x78d8379f refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x78c0c5b5 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x78caba48 redraw_screen +EXPORT_SYMBOL vmlinux 0x78d25aee devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x78d74548 dma_async_device_unregister EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e58747 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x78e66ed9 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x7906c78a generic_file_llseek -EXPORT_SYMBOL vmlinux 0x790a78a5 single_open_size -EXPORT_SYMBOL vmlinux 0x7914047f xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x791610b0 dquot_alloc +EXPORT_SYMBOL vmlinux 0x78e33429 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x78ef4551 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x7907c206 dma_resv_init EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x79466beb serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x79504e98 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x7952c269 brioctl_set -EXPORT_SYMBOL vmlinux 0x79576818 qdisc_reset +EXPORT_SYMBOL vmlinux 0x791a4683 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x79239cce nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x7926be82 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x794deab0 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x795e2568 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x797832a5 bio_copy_data EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798be147 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79b1ab63 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x79a712f3 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x79b7e961 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x79c00071 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x79c4ce7f mii_link_ok +EXPORT_SYMBOL vmlinux 0x79cd71d4 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x79cf4042 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x79d8c5b5 unlock_rename +EXPORT_SYMBOL vmlinux 0x79d946cb kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x79e1597a generic_file_mmap EXPORT_SYMBOL vmlinux 0x79e4cbe8 override_creds -EXPORT_SYMBOL vmlinux 0x7a0216df clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x7a174f65 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x79fe8899 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x7a14fe33 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7a198e96 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a34f352 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x7a34bc2c filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7a50cbcb inet_dgram_ops EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a54225c __nlmsg_put -EXPORT_SYMBOL vmlinux 0x7a630413 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x7a6c3ec2 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x7a8d5fea jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x7a712bdb timestamp_truncate EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab0f88d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x7ab853cb vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x7abc1129 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x7abd6aff of_get_next_cpu_node EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad0665e vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x7ad364bd pci_release_regions +EXPORT_SYMBOL vmlinux 0x7ad85caf ps2_begin_command EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae5be18 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7aed5a23 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x7af30edf pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x7afb69ff __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x7b0d5473 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store -EXPORT_SYMBOL vmlinux 0x7b224df4 register_quota_format -EXPORT_SYMBOL vmlinux 0x7b2414f1 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x7b28b7e4 can_nice -EXPORT_SYMBOL vmlinux 0x7b29012e md_bitmap_free -EXPORT_SYMBOL vmlinux 0x7b322a05 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x7b11b8ec cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x7b141a13 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x7b1f65e3 dump_page EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b471ad3 phy_device_free +EXPORT_SYMBOL vmlinux 0x7b4d0ac5 ppp_dev_name EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b4edb68 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x7b53b7b2 jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0x7b54f270 posix_acl_valid EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b6435c2 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x7b65c449 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x7b7fc3f0 mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b9683ec init_task -EXPORT_SYMBOL vmlinux 0x7b9fcf0b unix_destruct_scm EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7ba8d5ba pps_event EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc3fbc7 pin_user_pages -EXPORT_SYMBOL vmlinux 0x7bc7352a folio_account_redirty -EXPORT_SYMBOL vmlinux 0x7bc78b32 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x7bd080b7 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x7bf66099 skb_eth_push -EXPORT_SYMBOL vmlinux 0x7bf821e6 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x7c025b9e call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x7bbf706c kernel_listen +EXPORT_SYMBOL vmlinux 0x7bdeeaf0 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x7c144e6b tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2ae24b ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x7c2d03a6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x7c2e069d inode_to_bdi +EXPORT_SYMBOL vmlinux 0x7c2f974b has_capability_noaudit EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c49b350 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x7c4e4244 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x7c56d184 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x7c56d92e pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x7c5a0838 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x7c5e4742 iptun_encaps -EXPORT_SYMBOL vmlinux 0x7c5e841d netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x7c7b2c01 param_get_uint -EXPORT_SYMBOL vmlinux 0x7c83ae14 fman_register_intr -EXPORT_SYMBOL vmlinux 0x7c86d273 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x7ca53edd dev_driver_string -EXPORT_SYMBOL vmlinux 0x7cbc69d7 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x7c69796f mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x7c6c05ea netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x7c6dab44 dqput +EXPORT_SYMBOL vmlinux 0x7c7016ab scsi_partsize +EXPORT_SYMBOL vmlinux 0x7c71af4b unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x7c868813 vme_bus_type +EXPORT_SYMBOL vmlinux 0x7c8dfbae lease_get_mtime +EXPORT_SYMBOL vmlinux 0x7ca711d9 rproc_put +EXPORT_SYMBOL vmlinux 0x7cada0cc jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x7cbe0cd2 drop_reasons_by_subsys EXPORT_SYMBOL vmlinux 0x7cc18181 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x7cd2fb19 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x7cc7c323 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x7ccaec26 xp_raw_get_dma EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce407bd mnt_set_expiry EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d1bb7f2 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x7d1c0ed3 tcp_check_req -EXPORT_SYMBOL vmlinux 0x7d2191ed blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d340abf rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x7d314207 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x7d37d666 input_register_handle +EXPORT_SYMBOL vmlinux 0x7d4452f1 phy_resume EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5cf2b9 handshake_genl_put EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d617a98 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x7d697aa2 netdev_emerg -EXPORT_SYMBOL vmlinux 0x7d728907 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7d618683 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d7c69ac netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x7d7e3add netdev_name_in_use -EXPORT_SYMBOL vmlinux 0x7d849c58 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x7d866bd0 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x7da717db sock_no_listen +EXPORT_SYMBOL vmlinux 0x7d85fb72 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7d9db425 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db816c7 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x7dbfa565 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x7dc4e435 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x7dc57038 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x7dbf0979 crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable -EXPORT_SYMBOL vmlinux 0x7dce7002 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x7dca805f i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7ddb787f tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0x7de69c43 xp_dma_map -EXPORT_SYMBOL vmlinux 0x7e055c21 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x7de62f10 vfs_setpos +EXPORT_SYMBOL vmlinux 0x7de7eddb rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x7df45b62 finish_open +EXPORT_SYMBOL vmlinux 0x7df7b749 skb_pull_data EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0x7e290cdc dma_fence_describe +EXPORT_SYMBOL vmlinux 0x7e0b74b3 inode_init_once +EXPORT_SYMBOL vmlinux 0x7e0fe1bf sock_no_linger +EXPORT_SYMBOL vmlinux 0x7e1b8064 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7e23ff9f generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0x7e2c6c98 devm_memunmap EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e46a7fe rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0x7e4c3df5 efi +EXPORT_SYMBOL vmlinux 0x7e4daa8d skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x7e5b4c9f simple_empty EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e6de3c7 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x7e73e52e xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x7e825f36 is_free_buddy_page -EXPORT_SYMBOL vmlinux 0x7e8ccecc simple_transaction_set -EXPORT_SYMBOL vmlinux 0x7e8fe0ab pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x7e91360e slab_build_skb +EXPORT_SYMBOL vmlinux 0x7e65c10d padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7e69822b mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x7e7a274b ip6_xmit +EXPORT_SYMBOL vmlinux 0x7e9732c9 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7eeb7562 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x7ea359be tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x7eb9211b acpi_device_hid +EXPORT_SYMBOL vmlinux 0x7eba9ae0 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x7ed08c34 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x7ed6779a tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x7eededf5 phy_config_aneg EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7eff2064 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x7ef51371 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x7f013622 msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f206317 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x7f05a748 scsi_device_lookup EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f292bf3 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x7f2aa286 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x7f2e176c nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x7f3b9716 d_alloc +EXPORT_SYMBOL vmlinux 0x7f3caed0 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f55312d jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x7f59b694 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f6d6f20 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x7f77891f ___pskb_trim -EXPORT_SYMBOL vmlinux 0x7f7b0cfe devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x7f7e6c45 pci_request_regions +EXPORT_SYMBOL vmlinux 0x7f7a2314 blk_finish_plug EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f89eb5c drop_nlink -EXPORT_SYMBOL vmlinux 0x7fa73338 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x7fae3ada inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x7fb1c158 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x7f8e1e99 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x7f97b9a1 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x7f9914d8 skb_append +EXPORT_SYMBOL vmlinux 0x7f9af2f2 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x7fa8cf70 kernel_read +EXPORT_SYMBOL vmlinux 0x7fb38562 set_page_dirty +EXPORT_SYMBOL vmlinux 0x7fb79e50 skb_pull +EXPORT_SYMBOL vmlinux 0x7fbf58f3 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd5e28e dst_alloc EXPORT_SYMBOL vmlinux 0x7fde1fbc acpi_walk_resource_buffer EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7ff83e8a proc_remove -EXPORT_SYMBOL vmlinux 0x800b94ff __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x802840a4 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x80388bba key_put +EXPORT_SYMBOL vmlinux 0x7ff96bfd netif_device_detach +EXPORT_SYMBOL vmlinux 0x7ffae29f seq_dentry +EXPORT_SYMBOL vmlinux 0x80001bd0 end_page_writeback +EXPORT_SYMBOL vmlinux 0x800108f9 seq_file_path +EXPORT_SYMBOL vmlinux 0x801160bd param_get_hexint EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x806bb3ec dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x8060f900 locks_free_lock +EXPORT_SYMBOL vmlinux 0x8063141d pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock +EXPORT_SYMBOL vmlinux 0x80813174 pci_write_vpd EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x8090850b seq_printf -EXPORT_SYMBOL vmlinux 0x8092ddc7 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x8099cb40 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x809f8b25 devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x8088d356 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x808af722 done_path_create +EXPORT_SYMBOL vmlinux 0x80a332c2 netif_tx_lock EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80c4815b d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x80c589ba _dev_emerg EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cb3a01 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x80cd3a99 input_copy_abs EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80df5599 lock_rename_child EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x8103ac9c bio_split_to_limits -EXPORT_SYMBOL vmlinux 0x810f9887 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x80ee5b0c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x80f9d459 file_remove_privs EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x811b6486 free_netdev -EXPORT_SYMBOL vmlinux 0x8140c210 tls_client_hello_x509 -EXPORT_SYMBOL vmlinux 0x81485a0c netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x81217db8 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x812c5a27 tegra_dfll_unregister EXPORT_SYMBOL vmlinux 0x81491054 security_binder_transaction EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x81537419 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x8155843d unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816b9c46 wrap_directory_iterator -EXPORT_SYMBOL vmlinux 0x8183791a dqget +EXPORT_SYMBOL vmlinux 0x8164bde6 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x8179633e fb_find_mode +EXPORT_SYMBOL vmlinux 0x8180cbdd of_clk_get_by_name EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81860acb sk_send_sigurg EXPORT_SYMBOL vmlinux 0x8186333b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x81895083 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x818c0b0a sk_ns_capable +EXPORT_SYMBOL vmlinux 0x818c4720 serio_bus EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x8193d4b3 of_chosen -EXPORT_SYMBOL vmlinux 0x819695e7 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x819bb9a6 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x819818ad mount_bdev EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload -EXPORT_SYMBOL vmlinux 0x81a461c1 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x81a4d553 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x81ab3d1b pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x81ab5a96 of_get_parent +EXPORT_SYMBOL vmlinux 0x81ac55b5 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81af5612 call_fib_notifiers EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b6e044 dquot_release +EXPORT_SYMBOL vmlinux 0x81b74f6f tty_port_close +EXPORT_SYMBOL vmlinux 0x81ba7ad3 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x81c2db5f security_sb_remount +EXPORT_SYMBOL vmlinux 0x81c36a07 pcim_enable_device EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x81d6c28b acpi_buffer_to_resource EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81f3c4e9 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x81f53961 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x8218abaf fb_show_logo -EXPORT_SYMBOL vmlinux 0x82352fa5 skb_find_text +EXPORT_SYMBOL vmlinux 0x81ea5f8f simple_statfs +EXPORT_SYMBOL vmlinux 0x81fe4db0 xp_alloc +EXPORT_SYMBOL vmlinux 0x820cb101 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x82215b39 notify_change +EXPORT_SYMBOL vmlinux 0x82339dbc pnp_is_active +EXPORT_SYMBOL vmlinux 0x82375318 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x82477831 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x82463959 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x824a8734 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x824fe930 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x825804e7 udp_pre_connect EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk -EXPORT_SYMBOL vmlinux 0x8263eb09 send_sig_info -EXPORT_SYMBOL vmlinux 0x82640dce irq_set_chip -EXPORT_SYMBOL vmlinux 0x82658325 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x826b0f0b flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x8296014d rfkill_alloc -EXPORT_SYMBOL vmlinux 0x82a2e989 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x8264cee0 phy_detach +EXPORT_SYMBOL vmlinux 0x8289e10b get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x82a1b8b5 of_phy_connect +EXPORT_SYMBOL vmlinux 0x82b65315 pskb_extract +EXPORT_SYMBOL vmlinux 0x82be96ad rproc_alloc +EXPORT_SYMBOL vmlinux 0x82c2ade9 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d033ed pskb_extract -EXPORT_SYMBOL vmlinux 0x82d9b7c8 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x82d361cc flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x82dfa684 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x82e3f0bb alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x82e9f39d mdio_driver_unregister EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f3707b dev_get_by_name -EXPORT_SYMBOL vmlinux 0x8307881b __mdiobus_register -EXPORT_SYMBOL vmlinux 0x830f89a0 cdrom_release -EXPORT_SYMBOL vmlinux 0x834e9e24 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x83550704 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x8317644c __find_get_block +EXPORT_SYMBOL vmlinux 0x8325a176 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x8325acfb sync_blockdev EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x83595ced i2c_get_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0x835be5d3 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x835ebbcd may_umount_tree -EXPORT_SYMBOL vmlinux 0x8365815b nf_log_register -EXPORT_SYMBOL vmlinux 0x837a0d3f netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x83857f1e phy_drivers_register -EXPORT_SYMBOL vmlinux 0x8388d4ce tty_port_close_end +EXPORT_SYMBOL vmlinux 0x8359c4d6 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x836a56df ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x836f7525 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x837b8ea0 d_add_ci +EXPORT_SYMBOL vmlinux 0x83816399 md_flush_request +EXPORT_SYMBOL vmlinux 0x8381a4f1 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x838a04d0 neigh_for_each EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838e24b7 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x839318fe devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x83985154 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x839a7238 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x83a1aefb phy_read_mmd -EXPORT_SYMBOL vmlinux 0x83ae3e67 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x83d15ba1 d_path -EXPORT_SYMBOL vmlinux 0x83d34edc param_set_hexint -EXPORT_SYMBOL vmlinux 0x83f545f0 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x84026379 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x83af7d6c genphy_loopback +EXPORT_SYMBOL vmlinux 0x83b25299 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x83c2e149 seq_vprintf +EXPORT_SYMBOL vmlinux 0x83c83e34 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x83c9856d mmc_put_card +EXPORT_SYMBOL vmlinux 0x83e1e2ae ppp_input_error +EXPORT_SYMBOL vmlinux 0x83e2df4a kernel_connect +EXPORT_SYMBOL vmlinux 0x83f788db fb_get_mode +EXPORT_SYMBOL vmlinux 0x84124115 __block_write_full_folio EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x8430e375 kernel_read -EXPORT_SYMBOL vmlinux 0x84434fb5 dev_set_alias -EXPORT_SYMBOL vmlinux 0x8446eb87 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x845a281f rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x845300bb __devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x84558212 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x8457f697 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x845b71c0 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x845f532d skb_clone +EXPORT_SYMBOL vmlinux 0x84771187 vfs_llseek EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x84878626 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x84836300 inet_csk_accept EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x84927c59 netif_receive_skb_core EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84c95f15 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x84db7164 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x84e48d65 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x84ef91e0 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x850ecb27 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x85160920 d_alloc +EXPORT_SYMBOL vmlinux 0x84ab5a56 vm_mmap +EXPORT_SYMBOL vmlinux 0x84be360a kill_fasync +EXPORT_SYMBOL vmlinux 0x84ddec1b __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x84e4d96c build_skb +EXPORT_SYMBOL vmlinux 0x84ea28bb pci_get_class +EXPORT_SYMBOL vmlinux 0x85017a8f folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x85155b6e folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel -EXPORT_SYMBOL vmlinux 0x854e0039 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x85587e59 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x855d837f qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x851bee4b jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x852e29c0 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x8538e51b con_copy_unimap +EXPORT_SYMBOL vmlinux 0x854a5bbd scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x8558cd93 md_done_sync EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8587c968 has_capability -EXPORT_SYMBOL vmlinux 0x858eb3af tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x858405ab scsi_is_host_device EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85a71f05 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x85a7765d inode_init_owner -EXPORT_SYMBOL vmlinux 0x85aedf33 mntput +EXPORT_SYMBOL vmlinux 0x859d4dee task_work_add +EXPORT_SYMBOL vmlinux 0x85b454fb ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b9e3e2 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c09714 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x85d1f11b tcp_shutdown +EXPORT_SYMBOL vmlinux 0x85bf9a22 dm_kobject_release EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f141e6 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0x85f596a4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x860a5889 xudma_get_device +EXPORT_SYMBOL vmlinux 0x8604aa98 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x861c7f50 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x8623a385 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x8629af23 __skb_ext_del EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x8633213d flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x866220c0 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x86622acc ppp_input +EXPORT_SYMBOL vmlinux 0x8641207d of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x865df75d sys_copyarea +EXPORT_SYMBOL vmlinux 0x866645d1 input_allocate_device EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x866c5cdb pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x8677fb30 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x8688948c inet_addr_type +EXPORT_SYMBOL vmlinux 0x868971ab alloc_fddidev EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86959517 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x869b505c __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x86b1e2bd cdev_device_del -EXPORT_SYMBOL vmlinux 0x86baf33e udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x86c97239 netif_skb_features +EXPORT_SYMBOL vmlinux 0x86a6931e pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x86a75b91 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x86bfcab2 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd6855 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86e0d18a rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x86e10e82 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x86e3bd1f mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x86f4df96 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x86e7409b pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x86e96e21 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x86e9b1cd qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x86f58227 kern_unmount EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86ff1f33 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x870ab2ad vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x870fa292 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x87186b03 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x872abf9f md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x873307ea dget_parent +EXPORT_SYMBOL vmlinux 0x8743a4bb of_get_next_child +EXPORT_SYMBOL vmlinux 0x87501e77 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x875cd529 new_inode EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8763cac4 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x876ebee9 d_set_d_op -EXPORT_SYMBOL vmlinux 0x87731786 pci_restore_state -EXPORT_SYMBOL vmlinux 0x8774e7ec mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x877eec43 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x87694fbb pnp_start_dev +EXPORT_SYMBOL vmlinux 0x8775b038 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x8777f8c6 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x87789763 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x877ea78c inode_insert5 EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x878125ea ps2_end_command -EXPORT_SYMBOL vmlinux 0x879aab29 build_skb +EXPORT_SYMBOL vmlinux 0x8785330f inode_nohighmem +EXPORT_SYMBOL vmlinux 0x878e8b90 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x8794c755 phy_print_status EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87c8a356 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x87b873f6 napi_complete_done EXPORT_SYMBOL vmlinux 0x87c8c92f dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x87cbb0c2 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x87e03c2a sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x87e47d62 vfs_getattr -EXPORT_SYMBOL vmlinux 0x87e9d93a genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x87ebaa55 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x87f42dbb iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x88053725 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x87dcc8b6 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x87e71abb get_tree_nodev +EXPORT_SYMBOL vmlinux 0x87f7cb3f inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x87fb51a6 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x8800a9cc page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x881cba3b posix_lock_file -EXPORT_SYMBOL vmlinux 0x88493c2b skb_pull +EXPORT_SYMBOL vmlinux 0x881ce34d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x883f5cd5 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x88591830 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x8859d7d6 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x88692168 follow_up EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888a462a xfrm_state_update -EXPORT_SYMBOL vmlinux 0x888ef9b8 xp_can_alloc EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88c073e3 seq_dentry -EXPORT_SYMBOL vmlinux 0x88d9b298 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x88a5a5d7 devm_request_resource +EXPORT_SYMBOL vmlinux 0x88b40d9a udp_gro_complete +EXPORT_SYMBOL vmlinux 0x88cc5317 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x88d674aa unregister_nls +EXPORT_SYMBOL vmlinux 0x88db053c param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88df826d __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x88e0949b udp_seq_stop EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x890502ea nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x88eba254 tty_hangup +EXPORT_SYMBOL vmlinux 0x89014c91 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x89186e11 freezing_slow_path EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order -EXPORT_SYMBOL vmlinux 0x893055a0 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x8939bf58 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x893cc177 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x892eaa98 rtnl_create_link EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x894c2add folio_create_empty_buffers -EXPORT_SYMBOL vmlinux 0x8950f386 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x898340a0 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x89592241 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x8972ab4f iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x897b06b0 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x898eebd0 single_release EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89a4f4ae mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0x89ca8177 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x89cc49f8 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x89cf42be ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x89dfab55 mmc_gpio_set_cd_irq -EXPORT_SYMBOL vmlinux 0x8a1016b9 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x8a2da271 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x89958d8c wireless_send_event +EXPORT_SYMBOL vmlinux 0x89af420b pcie_capability_clear_and_set_word_locked +EXPORT_SYMBOL vmlinux 0x89b657a4 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x89f19114 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0x89fec36e csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x8a2835b1 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x8a3450de d_delete EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0x8a473dac read_cache_folio -EXPORT_SYMBOL vmlinux 0x8a47b4c9 handshake_req_cancel EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a54c9e7 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x8a564a85 rproc_detach +EXPORT_SYMBOL vmlinux 0x8a67cb42 generic_shutdown_super EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7df46c clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0x8a833583 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8a86d7ce _dev_warn +EXPORT_SYMBOL vmlinux 0x8a835793 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x8a8b7f5a pci_reenable_device EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aae3a4f dquot_scan_active EXPORT_SYMBOL vmlinux 0x8aaecd60 __put_cred -EXPORT_SYMBOL vmlinux 0x8ab4bd8b unmap_mapping_range EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac8401e shmem_aops -EXPORT_SYMBOL vmlinux 0x8acaf1dc of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x8adbc12e vme_bus_type -EXPORT_SYMBOL vmlinux 0x8aea03f2 dev_addr_add -EXPORT_SYMBOL vmlinux 0x8aee7eee pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b035fd6 copy_splice_read +EXPORT_SYMBOL vmlinux 0x8b0feafb phy_read_paged +EXPORT_SYMBOL vmlinux 0x8b16142a blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x8b1d48a2 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x8b2294b6 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x8b22eb6d follow_down_one EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b4d2524 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x8b5d5e77 load_nls -EXPORT_SYMBOL vmlinux 0x8b5e9998 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x8b4759cf security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x8b4c3dab devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x8b5d7e0a __insert_inode_hash EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b64a1f4 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x8b704fc9 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x8b69d15c generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x8b75f82a unregister_netdev +EXPORT_SYMBOL vmlinux 0x8b789c7d blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8ee74d flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8b92702e __vfs_setxattr EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9e3cf3 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x8bb23f0c migrate_folio -EXPORT_SYMBOL vmlinux 0x8bc7a2a3 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x8ba44781 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x8ba7766a skb_free_datagram +EXPORT_SYMBOL vmlinux 0x8bae1055 fd_install +EXPORT_SYMBOL vmlinux 0x8bc0fc31 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x8bc22c90 __netif_schedule +EXPORT_SYMBOL vmlinux 0x8bcb1b2c pci_release_resource +EXPORT_SYMBOL vmlinux 0x8bcd6eaa con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x8bcf4393 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8bd61fa2 is_nd_pfn EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bedc1d1 tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0x8c08c13c mount_single -EXPORT_SYMBOL vmlinux 0x8c0d6de5 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x8c1b1897 simple_setattr -EXPORT_SYMBOL vmlinux 0x8c1cffcf configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x8c1eeb86 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x8bf0d750 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x8bf83772 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x8bf984fe inc_node_page_state +EXPORT_SYMBOL vmlinux 0x8bfb617c simple_transaction_set +EXPORT_SYMBOL vmlinux 0x8c072cc7 __free_pages +EXPORT_SYMBOL vmlinux 0x8c07fda2 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x8c08173b flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x8c1bbd35 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x8c24d2f8 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c2e513a mmc_sw_reset -EXPORT_SYMBOL vmlinux 0x8c302ec3 unload_nls +EXPORT_SYMBOL vmlinux 0x8c2d2611 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c512148 start_tty -EXPORT_SYMBOL vmlinux 0x8c54fae0 page_pool_unlink_napi -EXPORT_SYMBOL vmlinux 0x8c5b974e blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x8c7c03f9 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x8c80dca0 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x8c489cb4 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x8c6f38f8 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x8c71a48f dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x8c7bd629 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x8c7e8c47 inode_needs_sync EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c92f2f8 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x8c97a580 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x8c863b72 dcb_setrewr +EXPORT_SYMBOL vmlinux 0x8c934293 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x8c9604ff page_symlink EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbcb046 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x8cbf593d vfs_ioctl EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cf634c2 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x8cf6a97e init_special_inode -EXPORT_SYMBOL vmlinux 0x8cf8d6f8 pci_match_id -EXPORT_SYMBOL vmlinux 0x8cfcc12e tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x8d2854e9 fsync_bdev +EXPORT_SYMBOL vmlinux 0x8ce0295f mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x8d240856 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x8d2f72c1 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit +EXPORT_SYMBOL vmlinux 0x8d35dc25 __sock_i_ino EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d442e69 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x8d54a5ec security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x8d48223e send_sig_mceerr EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5d26f6 handshake_req_private -EXPORT_SYMBOL vmlinux 0x8d65dced config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x8d6a3854 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x8d583655 mdiobb_read_c45 +EXPORT_SYMBOL vmlinux 0x8d5c87a4 make_kgid +EXPORT_SYMBOL vmlinux 0x8d6c9ea3 mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7c252f _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x8d957889 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x8d9bd469 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x8da07496 tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0x8d84c6b5 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x8da6f598 dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0x8dafaf22 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x8db4cb3a mdiobus_read -EXPORT_SYMBOL vmlinux 0x8dbc3d42 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x8dbd30f0 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x8dc32518 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x8dc76d6a blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x8ddc0aeb reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x8dd892e7 tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de76526 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x8deacd04 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x8de11677 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x8de9c465 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x8ded3b9e dev_mc_add_global EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x8df04216 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x8df11b7a __ip_dev_find EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfa2023 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x8e02fad6 noop_fsync -EXPORT_SYMBOL vmlinux 0x8e0667de scsi_dma_map +EXPORT_SYMBOL vmlinux 0x8e0a2768 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e339060 phy_attached_info +EXPORT_SYMBOL vmlinux 0x8e269181 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x8e398352 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x8e3a8588 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e46a4c3 dput EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e52fb92 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x8e605583 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x8e8f4940 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x8e553010 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x8e5b0b22 pci_enable_device +EXPORT_SYMBOL vmlinux 0x8e69633a pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x8e6abc99 mmc_release_host +EXPORT_SYMBOL vmlinux 0x8e7aa829 register_key_type EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9fd8e1 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x8ec13e84 bio_reset EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ee17b55 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x8ee9704c follow_up +EXPORT_SYMBOL vmlinux 0x8eda9d20 mmc_erase +EXPORT_SYMBOL vmlinux 0x8efe96ea kill_litter_super EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f30d6fe __neigh_event_send -EXPORT_SYMBOL vmlinux 0x8f329779 simple_empty -EXPORT_SYMBOL vmlinux 0x8f3978bc file_update_time -EXPORT_SYMBOL vmlinux 0x8f60d611 mpage_read_folio -EXPORT_SYMBOL vmlinux 0x8f6d4d80 blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0x8f733ad1 xen_alloc_ballooned_pages -EXPORT_SYMBOL vmlinux 0x8f7a75be get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x8f81d045 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x8f8426b6 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x8f854ab6 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x8f10cfa3 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x8f1b95c9 proc_create_data +EXPORT_SYMBOL vmlinux 0x8f3dac1b blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x8f4e672a param_ops_byte +EXPORT_SYMBOL vmlinux 0x8f510737 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x8f53ae65 __block_write_begin +EXPORT_SYMBOL vmlinux 0x8f5840ae cdev_set_parent +EXPORT_SYMBOL vmlinux 0x8f6eb12b devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x8f7729b1 freeze_bdev +EXPORT_SYMBOL vmlinux 0x8f7b5461 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x8f8ba5c5 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x8f8e1569 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x8f943d03 _copy_from_iter EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9f9192 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x8fa015e6 tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0x8fa15a0a amba_device_unregister EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fbe4b15 fqdir_init -EXPORT_SYMBOL vmlinux 0x8fc0c8ee redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x8faf4f4c phy_drivers_register +EXPORT_SYMBOL vmlinux 0x8fb0142d edac_mc_find +EXPORT_SYMBOL vmlinux 0x8fc17fa0 __neigh_event_send EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content -EXPORT_SYMBOL vmlinux 0x8fcbafdf poll_freewait -EXPORT_SYMBOL vmlinux 0x8fcbd5e4 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x8fcb89b0 ps2_end_command EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd70cf3 param_set_invbool EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffc742c fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900f6af3 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x90195864 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x901b5b60 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9002fe40 dquot_resume +EXPORT_SYMBOL vmlinux 0x901cc6fc serio_reconnect EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9052efb1 sock_init_data -EXPORT_SYMBOL vmlinux 0x9056640a filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x9036a0cc mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0x904f633f mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90631068 md_write_end -EXPORT_SYMBOL vmlinux 0x9064c4e7 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x906dcda8 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x907fac29 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x908b33cc __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x90917778 i2c_find_device_by_fwnode -EXPORT_SYMBOL vmlinux 0x9091908f dquot_release +EXPORT_SYMBOL vmlinux 0x9070b054 phy_attached_print +EXPORT_SYMBOL vmlinux 0x907e39d8 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x90835611 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x908b3415 xattr_supports_user_prefix EXPORT_SYMBOL vmlinux 0x9092defd proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x90e225d8 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x90fc63e4 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x90ad43cf kern_path_create +EXPORT_SYMBOL vmlinux 0x90c093ea sock_recvmsg +EXPORT_SYMBOL vmlinux 0x90e19803 inet6_bind +EXPORT_SYMBOL vmlinux 0x90e1b968 config_item_get +EXPORT_SYMBOL vmlinux 0x90f3dbfb i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x90f4f584 tegra_dfll_runtime_suspend EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x913219db pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x911708e0 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x91230684 init_net +EXPORT_SYMBOL vmlinux 0x912ad614 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x912d3a01 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x91389f78 user_revoke +EXPORT_SYMBOL vmlinux 0x9150f47c mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x915a5dc4 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x91642f61 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x917b8662 request_firmware +EXPORT_SYMBOL vmlinux 0x918d6398 page_pool_create EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a6270d seq_read EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b81006 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x91b16913 mr_dump EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91d58215 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x91d7d083 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x91d31538 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x91d97ecb of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x91da5079 tcf_block_get +EXPORT_SYMBOL vmlinux 0x91e53a9e generic_file_llseek EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x920c8f1a devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x920d3dbb tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x9219ac29 skb_put -EXPORT_SYMBOL vmlinux 0x9227a682 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x922d9716 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x9203803e __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x9206dcfb padata_free_shell +EXPORT_SYMBOL vmlinux 0x920d2a88 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x921490b1 mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923ac5b8 serio_open +EXPORT_SYMBOL vmlinux 0x9236ed8f blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923e2c51 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x92460796 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x924ac679 mmc_gpio_set_cd_irq EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait -EXPORT_SYMBOL vmlinux 0x92561a8a dst_init EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9258eabe dev_addr_del EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states -EXPORT_SYMBOL vmlinux 0x92733e29 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x92858959 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x9281cdbd get_tree_single +EXPORT_SYMBOL vmlinux 0x928365d8 locks_remove_posix EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929529d6 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x929878b2 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x929af990 ethtool_notify -EXPORT_SYMBOL vmlinux 0x92a39c45 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x929fa5b7 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x92ad736d eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x92afa769 deactivate_super +EXPORT_SYMBOL vmlinux 0x92b26a35 pcim_iounmap EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c1c671 tty_vhangup -EXPORT_SYMBOL vmlinux 0x92c7f9e2 d_alloc_anon EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x92caa508 napi_gro_frags EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92ea1c5d pci_clear_mwi EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f068c7 __folio_lock EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fc028a pci_msix_vec_count EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9323e23e genphy_c45_eee_is_active -EXPORT_SYMBOL vmlinux 0x932bf1d3 locks_delete_block -EXPORT_SYMBOL vmlinux 0x932e7a9f finish_no_open -EXPORT_SYMBOL vmlinux 0x9338391a kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x9350de98 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x935a197a fb_set_var -EXPORT_SYMBOL vmlinux 0x9364362a fs_bio_set +EXPORT_SYMBOL vmlinux 0x931666de xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x931c867f of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x932e12b7 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x933a51d9 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x933ecb0e qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x93409194 dquot_get_state +EXPORT_SYMBOL vmlinux 0x93469913 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x9359aef4 tcp_splice_read EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93a1997d nd_btt_probe +EXPORT_SYMBOL vmlinux 0x93849c67 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x93863016 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x93a41c18 sock_edemux EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93aa2642 proc_mkdir +EXPORT_SYMBOL vmlinux 0x93b0ef42 tty_devnum EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c4640f sys_imageblit -EXPORT_SYMBOL vmlinux 0x93c81f65 rtnl_notify -EXPORT_SYMBOL vmlinux 0x93cfcbb1 netdev_get_by_index +EXPORT_SYMBOL vmlinux 0x93cbb4db tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x93d5828e ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93f0aa15 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x9410042c mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x9412de53 vme_irq_free -EXPORT_SYMBOL vmlinux 0x941507c7 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x942588b0 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x93ec2db9 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x9401f789 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x9425f128 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x94273f78 serio_open EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x942dcfa7 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x9440bcee ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x942c7f49 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x942d58ff scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x94343422 send_sig_info EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x94445dd0 napi_gro_flush EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944ff158 pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0x945fbc57 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x94698bf6 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x94736422 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x94928667 phy_detach +EXPORT_SYMBOL vmlinux 0x944bbaf4 phy_attach +EXPORT_SYMBOL vmlinux 0x944f9590 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x9454d163 mpage_writepages +EXPORT_SYMBOL vmlinux 0x94663a36 fget_raw EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a580ef vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x94ab080c mdio_device_reset EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c50434 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x94c82564 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x94ddae75 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x94e2a39d remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x94e56123 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x94e9dfe3 __invalidate_device EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x95019203 set_anon_super_fc EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9534ff71 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x95114705 may_setattr +EXPORT_SYMBOL vmlinux 0x95279863 sock_no_getname EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x9542fccb __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x954b2fd8 blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9570d656 of_match_device -EXPORT_SYMBOL vmlinux 0x957112fd dev_alloc_name -EXPORT_SYMBOL vmlinux 0x95740ee7 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x95547197 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x95667e4e twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x9568fcaa md_register_thread +EXPORT_SYMBOL vmlinux 0x957b3c69 iget5_locked +EXPORT_SYMBOL vmlinux 0x957bd8c8 cros_ec_check_result EXPORT_SYMBOL vmlinux 0x957c9ebf neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x95887477 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x959c9b73 __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods +EXPORT_SYMBOL vmlinux 0x95a406e3 sock_release EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95abf240 register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x95b00989 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x95b03f9a simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x95c328ef genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x95ca56fa inet_release -EXPORT_SYMBOL vmlinux 0x95ded911 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x95dff0db dst_discard_out -EXPORT_SYMBOL vmlinux 0x9643cd24 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x96515f96 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x9664cf2b simple_write_begin -EXPORT_SYMBOL vmlinux 0x966a0f0d pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x96721307 submit_bh -EXPORT_SYMBOL vmlinux 0x9674ffca dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x967696e4 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x9680b421 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x9680fd68 skb_seq_read +EXPORT_SYMBOL vmlinux 0x95cb3de8 putname +EXPORT_SYMBOL vmlinux 0x95d14fa8 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x95d30ca6 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x95d43d64 proc_set_user +EXPORT_SYMBOL vmlinux 0x95de45d3 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x95e64a3e skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x95e81b1c nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x95ea8c4a devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x960fe614 md_update_sb +EXPORT_SYMBOL vmlinux 0x9612fea7 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x964b4507 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x965e7cab tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x967f7977 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x96848186 scnprintf EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x969001c0 da903x_query_status -EXPORT_SYMBOL vmlinux 0x96903d4d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x96a799d3 unlock_rename -EXPORT_SYMBOL vmlinux 0x96a87eb8 mmc_add_host -EXPORT_SYMBOL vmlinux 0x96a91cfe setattr_prepare +EXPORT_SYMBOL vmlinux 0x96b090d3 ps2_drain EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c1c110 mmc_remove_host -EXPORT_SYMBOL vmlinux 0x96c46448 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x96c52377 __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d5518e tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96ee9881 tcf_em_unregister EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9711eb9c generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x96fb72b5 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9742a99d xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x9772a873 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x9788100c mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x979d381d generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x9751342d simple_pin_fs +EXPORT_SYMBOL vmlinux 0x97524817 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x975552cb __nlmsg_put +EXPORT_SYMBOL vmlinux 0x975b9d55 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x976b8221 eth_header_parse +EXPORT_SYMBOL vmlinux 0x976e3896 ipv4_specific +EXPORT_SYMBOL vmlinux 0x9795bc1f pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x97a1a884 proc_create_single_data EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b0db23 fget EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97da213b ip_options_compile -EXPORT_SYMBOL vmlinux 0x97da4541 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x97f1f975 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x9807ea06 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x9814f1a5 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x97cb801d security_sock_graft +EXPORT_SYMBOL vmlinux 0x9801b07c jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x980678a9 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x981360e1 d_set_d_op +EXPORT_SYMBOL vmlinux 0x9813ac62 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x98153b63 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982b3d69 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x98342280 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x98377599 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x983db757 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x98488b46 dev_get_stats EXPORT_SYMBOL vmlinux 0x98555a05 dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x98885c51 thaw_bdev +EXPORT_SYMBOL vmlinux 0x987152cf __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x9880e57d pci_find_capability EXPORT_SYMBOL vmlinux 0x9891d33c dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x9897bc14 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x98997144 netlink_ack -EXPORT_SYMBOL vmlinux 0x98a3442d devfreq_update_status -EXPORT_SYMBOL vmlinux 0x98bc92b4 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x98bfe3db netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x989cfd2f tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98ca05ff xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x98cb878e proc_dobool -EXPORT_SYMBOL vmlinux 0x98cf0e7a key_task_permission EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98e32657 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x98d6635b netlink_ack +EXPORT_SYMBOL vmlinux 0x98db6e85 sock_bind_add +EXPORT_SYMBOL vmlinux 0x98dc48c9 __netif_napi_del EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98ea1160 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x99036674 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x98ebc37b dump_emit +EXPORT_SYMBOL vmlinux 0x9903b1c4 skb_clone_sk EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x99132c3e vme_register_driver +EXPORT_SYMBOL vmlinux 0x99270a41 handshake_req_private +EXPORT_SYMBOL vmlinux 0x9928fbcb tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b7bfd bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99626849 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x996cd670 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x9977e5df disk_stack_limits -EXPORT_SYMBOL vmlinux 0x99889d1e scsi_device_resume -EXPORT_SYMBOL vmlinux 0x99978d29 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x996c57db rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x99758355 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x997882e2 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99c62c1f scsi_scan_host -EXPORT_SYMBOL vmlinux 0x99c7ef77 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x99be147f __ip_options_compile +EXPORT_SYMBOL vmlinux 0x99c438c0 tcp_parse_options EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d928a2 skb_vlan_untag EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e4c768 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x99eba49e dquot_destroy EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99fd7891 request_key_tag +EXPORT_SYMBOL vmlinux 0x9a1a7184 udp_seq_start EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a2172de twl6040_reg_write EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a2c84ad neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x9a4924dc remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x9a4b80cd dquot_acquire -EXPORT_SYMBOL vmlinux 0x9a4c0a08 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a660aef sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x9a6bda48 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x9a5f8cbf genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x9a5fcbb0 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a721871 ilookup5 -EXPORT_SYMBOL vmlinux 0x9a8183f6 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x9a903821 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x9a9e15f5 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x9aa75ae7 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x9aabe691 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x9a757a27 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x9a8de559 dst_dev_put EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab060dc splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x9abaf2cb input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x9abe9567 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x9acf62b8 regset_get_alloc -EXPORT_SYMBOL vmlinux 0x9ad71027 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x9ad22dec validate_slab_cache +EXPORT_SYMBOL vmlinux 0x9ad35bad mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9aecd58f genphy_update_link -EXPORT_SYMBOL vmlinux 0x9b114d4a bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x9ae4c2be sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x9afc4b40 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x9b10bd92 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b1924ac cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x9b196dab tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b26d10c serio_interrupt -EXPORT_SYMBOL vmlinux 0x9b26fa68 alloc_pages +EXPORT_SYMBOL vmlinux 0x9b2ccf85 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b3e2e43 phy_loopback +EXPORT_SYMBOL vmlinux 0x9b3acfde page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x9b47ffc4 neigh_xmit EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4ee6bd sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x9b5897ac pnp_device_attach -EXPORT_SYMBOL vmlinux 0x9b603ced i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq -EXPORT_SYMBOL vmlinux 0x9b715a9a dump_skip_to -EXPORT_SYMBOL vmlinux 0x9b716d5e backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x9b7007a2 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b7467d0 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x9b8b3b15 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x9b8f1569 udp_disconnect -EXPORT_SYMBOL vmlinux 0x9b9bf8a8 __kfree_skb -EXPORT_SYMBOL vmlinux 0x9bb24b64 mdio_device_register -EXPORT_SYMBOL vmlinux 0x9bc82bb5 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x9bd40248 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x9be76233 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x9bf4f336 set_blocksize -EXPORT_SYMBOL vmlinux 0x9bf79c87 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x9c0b3d70 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x9bac6185 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x9bafc53e security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x9bb6371a tcf_em_register +EXPORT_SYMBOL vmlinux 0x9bbe274c pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x9bcb12e8 generic_fadvise +EXPORT_SYMBOL vmlinux 0x9bd5c8f5 serio_rescan +EXPORT_SYMBOL vmlinux 0x9be83957 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x9beb1193 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x9bfb7d8a tty_register_ldisc EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1b683b dev_uc_del EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c214b42 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x9c232b4a vga_put -EXPORT_SYMBOL vmlinux 0x9c23939b to_nd_pfn -EXPORT_SYMBOL vmlinux 0x9c2ad876 amba_device_register -EXPORT_SYMBOL vmlinux 0x9c2f74a2 imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x9c34ad23 clkdev_add -EXPORT_SYMBOL vmlinux 0x9c3fd602 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x9c4e8475 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x9c502658 fc_mount +EXPORT_SYMBOL vmlinux 0x9c34517e sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0x9c3d9e36 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c6f598e cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x9c6f94ed fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x9c7560a7 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x9c79caa6 kobject_init -EXPORT_SYMBOL vmlinux 0x9c810849 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8a27ef ppp_register_channel EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user -EXPORT_SYMBOL vmlinux 0x9ca98a6c ip_mc_leave_group EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc6ad91 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x9ccd9bd4 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd72583 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x9cde6e87 file_ns_capable EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ceb0c01 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x9cfe8036 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x9d02aed4 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x9ce006c9 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x9ce55e64 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x9ce5debb __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x9ce9f3dd module_put +EXPORT_SYMBOL vmlinux 0x9cee8bef bdi_unregister EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d126bbd scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy -EXPORT_SYMBOL vmlinux 0x9d205ba7 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x9d1a6dda phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x9d1ba575 of_root EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d3ed32c security_path_mknod -EXPORT_SYMBOL vmlinux 0x9d55de49 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x9d39b59a dev_remove_offload +EXPORT_SYMBOL vmlinux 0x9d3e27e9 _dev_info +EXPORT_SYMBOL vmlinux 0x9d3f3503 param_ops_bint +EXPORT_SYMBOL vmlinux 0x9d55d6b5 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x9d5946c4 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x9d61b50c i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d697fb8 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x9d8d074b md_handle_request +EXPORT_SYMBOL vmlinux 0x9d638cb2 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x9d6913ee param_get_bool +EXPORT_SYMBOL vmlinux 0x9d713345 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x9d8a6005 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d95066b is_bad_inode -EXPORT_SYMBOL vmlinux 0x9daa63fc tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x9db02429 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x9dae4e92 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9dddafaf tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x9de698da mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x9ddd0a64 genphy_c45_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x9deb92ed blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x9def5ff8 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9df278d9 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits -EXPORT_SYMBOL vmlinux 0x9dfc9901 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x9e083b7e simple_link EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e12d669 mdio_device_create EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1859b6 mdio_device_free -EXPORT_SYMBOL vmlinux 0x9e190dea crypto_sha3_init +EXPORT_SYMBOL vmlinux 0x9e2513f4 of_translate_dma_address EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e30276d tcp_md5_key_copy -EXPORT_SYMBOL vmlinux 0x9e477338 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x9e4a3a90 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x9e27e2bc inet_stream_ops +EXPORT_SYMBOL vmlinux 0x9e3e0859 input_flush_device +EXPORT_SYMBOL vmlinux 0x9e40544d setattr_copy +EXPORT_SYMBOL vmlinux 0x9e4536cb inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5455e6 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x9e5d5467 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x9e5e0510 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e6093d0 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e8682f8 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x9e9b349b cdrom_open +EXPORT_SYMBOL vmlinux 0x9e9db5fe find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eae0081 input_match_device_id -EXPORT_SYMBOL vmlinux 0x9eafd255 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq -EXPORT_SYMBOL vmlinux 0x9eb3359b inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x9ebbd31a neigh_update -EXPORT_SYMBOL vmlinux 0x9ebeb6a2 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x9eb378fc netif_receive_skb EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ef2736a tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x9ef67c7a clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x9eff2118 ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x9f05f6c9 skb_append -EXPORT_SYMBOL vmlinux 0x9f075c98 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x9f09d1f5 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x9f187995 qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0x9f22d59d mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x9f2def94 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x9f4091be bio_add_folio +EXPORT_SYMBOL vmlinux 0x9ef7b88f __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x9f058c1d blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x9f07d3e3 param_get_ushort +EXPORT_SYMBOL vmlinux 0x9f1e35d2 __mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x9f2152a5 dquot_acquire +EXPORT_SYMBOL vmlinux 0x9f38c1db dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f475fe6 cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f55b56b I_BDEV -EXPORT_SYMBOL vmlinux 0x9f672872 phy_resume -EXPORT_SYMBOL vmlinux 0x9f75fcc9 mdiobb_read_c45 +EXPORT_SYMBOL vmlinux 0x9f596a19 dev_mc_del +EXPORT_SYMBOL vmlinux 0x9f6b0d59 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x9f6bd4fc dst_release EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq -EXPORT_SYMBOL vmlinux 0x9f7a5db4 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x9f7a65fb __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f97db2c irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x9f82a5c2 pm860x_bulk_read EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f987828 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x9fa57c28 ip6_output +EXPORT_SYMBOL vmlinux 0x9fa04ed3 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fb43043 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x9fd5d870 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x9fd89f92 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x9fbddda7 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x9fbfbffd jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x9fc0c43b mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x9fc7c3df generic_permission EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff0bfc6 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffcea80 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xa0011a17 phy_error EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022a701 dev_trans_start EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa041edd4 of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa045fff6 elevator_alloc -EXPORT_SYMBOL vmlinux 0xa04bf4a8 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xa04521ad filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa05932e7 tty_check_change -EXPORT_SYMBOL vmlinux 0xa0599937 iov_iter_xarray EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa05e56f2 send_sig -EXPORT_SYMBOL vmlinux 0xa061657b inet_accept -EXPORT_SYMBOL vmlinux 0xa062355e skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xa06d8853 init_pseudo +EXPORT_SYMBOL vmlinux 0xa0697cea xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08a3bc5 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0xa0915e36 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xa09312d5 user_path_create EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0a2df8a jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xa0a8ed4e may_umount EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b36500 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0xa0c659ce pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xa0d1dc4c empty_aops +EXPORT_SYMBOL vmlinux 0xa0b19f65 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xa0c6993c udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xa0cdbadc get_user_pages_remote EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dbf3a1 pci_read_config_word EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table -EXPORT_SYMBOL vmlinux 0xa0f4980e phy_get_pause EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1042ed3 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa115da49 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xa116fd89 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0xa1346a5e free_buffer_head -EXPORT_SYMBOL vmlinux 0xa14e9b4c eth_type_trans -EXPORT_SYMBOL vmlinux 0xa15a614b tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xa160d1e9 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xa16726ca kernel_bind -EXPORT_SYMBOL vmlinux 0xa17c3efe __scm_destroy -EXPORT_SYMBOL vmlinux 0xa19d0864 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xa1a2ede7 page_symlink -EXPORT_SYMBOL vmlinux 0xa1b96dcd try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xa1bc1da8 vc_cons -EXPORT_SYMBOL vmlinux 0xa1c2e482 security_sctp_assoc_established -EXPORT_SYMBOL vmlinux 0xa1d9d67d clear_inode -EXPORT_SYMBOL vmlinux 0xa1e12d19 dec_node_page_state -EXPORT_SYMBOL vmlinux 0xa1e2971c netlink_capable +EXPORT_SYMBOL vmlinux 0xa15bd569 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa15e7f47 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa16bc236 iget_locked +EXPORT_SYMBOL vmlinux 0xa1af4873 sock_register +EXPORT_SYMBOL vmlinux 0xa1c2a2e0 __fput_sync +EXPORT_SYMBOL vmlinux 0xa1d0fe2e vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xa1e327e3 kernel_getpeername EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa223437c vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xa2244c57 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xa2207635 uart_get_divisor EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa237a1cf dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xa23fbd00 nf_reinject EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24b605d ip_options_compile EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa258d5e5 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xa262c8dd mmc_unregister_driver EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2642e80 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xa266532f blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xa275de6b netif_set_tso_max_segs -EXPORT_SYMBOL vmlinux 0xa286aa1a genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xa27a7a8b d_alloc_name +EXPORT_SYMBOL vmlinux 0xa27f1bf9 ip_route_me_harder EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2ae3541 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xa2b5fae7 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xa28e80d8 sock_i_uid +EXPORT_SYMBOL vmlinux 0xa28f1e8a linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xa29b4f9b set_page_writeback +EXPORT_SYMBOL vmlinux 0xa2ac6e1f proc_symlink EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2ebb3d0 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0xa318f69c ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xa31ac499 uart_register_driver +EXPORT_SYMBOL vmlinux 0xa2ed8ec5 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xa2fc2477 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xa30173ee ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0xa306f1f4 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xa3107719 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xa3201caf mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0xa3394ba7 nla_reserve EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa34b8d59 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xa34c794a dev_get_mac_address EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa35d3018 proc_symlink -EXPORT_SYMBOL vmlinux 0xa36c9862 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0xa37210b7 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xa38bab3b jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xa3963182 input_free_device -EXPORT_SYMBOL vmlinux 0xa39cdd02 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xa3717631 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xa37cc6ae i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xa38e377c devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xa39aa3e4 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xa39b3ff6 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xa3a2394b vm_insert_pages EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c791a5 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xa3cb5e67 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xa3bfe057 d_make_root +EXPORT_SYMBOL vmlinux 0xa3c2fe5d kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0xa3c7f7d5 tcp_release_cb EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3e39777 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0xa3f29926 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xa3d43624 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xa3d787bd fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xa3db8ea4 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xa3ee3d1d module_layout EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa4066165 io_uring_destruct_scm EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa431df7d kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xa433d248 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xa41c8b34 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa41e5ecf cdrom_release +EXPORT_SYMBOL vmlinux 0xa41fe2ec tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xa421bec8 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa46cff87 put_disk -EXPORT_SYMBOL vmlinux 0xa490fb65 write_cache_pages -EXPORT_SYMBOL vmlinux 0xa4bd7451 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xa4c10b8a flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xa4dc1677 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xa44b9b5d tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xa45b16c2 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa46013c9 sg_miter_next +EXPORT_SYMBOL vmlinux 0xa460843c phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xa470c30d generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xa470edda mmc_detect_change +EXPORT_SYMBOL vmlinux 0xa4880d3d init_pseudo +EXPORT_SYMBOL vmlinux 0xa489e963 kernel_bind +EXPORT_SYMBOL vmlinux 0xa4b7a05c can_nice +EXPORT_SYMBOL vmlinux 0xa4f3466c qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xa4f6a361 sock_no_socketpair EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa4fcb5b5 is_subdir -EXPORT_SYMBOL vmlinux 0xa5001b21 wake_up_process -EXPORT_SYMBOL vmlinux 0xa502eb44 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xa50dca1e blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xa5028f12 memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52c2caf inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xa532e5ea sock_alloc -EXPORT_SYMBOL vmlinux 0xa5457463 sock_no_getname -EXPORT_SYMBOL vmlinux 0xa549ed43 genphy_suspend +EXPORT_SYMBOL vmlinux 0xa5357d3c devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xa54cb730 param_ops_ullong EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa570ce3e request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xa570e5f0 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0xa572d9b0 fman_port_bind -EXPORT_SYMBOL vmlinux 0xa581a533 mr_table_dump -EXPORT_SYMBOL vmlinux 0xa5895628 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xa56baf76 dm_table_event +EXPORT_SYMBOL vmlinux 0xa5839120 i2c_transfer EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq -EXPORT_SYMBOL vmlinux 0xa58caab7 __fput_sync -EXPORT_SYMBOL vmlinux 0xa58dd16c nonseekable_open EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa59da657 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xa59e81e7 netlink_set_err -EXPORT_SYMBOL vmlinux 0xa5a141e2 ip6_xmit -EXPORT_SYMBOL vmlinux 0xa5aad780 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xa5b18fa0 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xa5b7e3e2 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xa5e89aef sock_efree +EXPORT_SYMBOL vmlinux 0xa598fadd skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xa59df18d serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xa5a37a22 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0xa5bc9d80 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xa5c158ff rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xa5e8e55f jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xa5f0ea7b phy_attach_direct EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa601cd24 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xa612aaca mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xa612b2b5 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xa6146073 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xa5fbb0ad __folio_put +EXPORT_SYMBOL vmlinux 0xa6000d96 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xa600791b input_get_keycode +EXPORT_SYMBOL vmlinux 0xa615e8b7 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xa6192001 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xa61b5bc5 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa625322f sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa626d7f1 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xa62e747d max8998_write_reg +EXPORT_SYMBOL vmlinux 0xa633208e __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0xa6457c89 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa64ae566 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xa6490d02 submit_bio EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa6578d04 mount_subtree EXPORT_SYMBOL vmlinux 0xa65c6def alt_cb_patch_nops -EXPORT_SYMBOL vmlinux 0xa661f4e4 qdisc_put -EXPORT_SYMBOL vmlinux 0xa663bfa9 finish_swait -EXPORT_SYMBOL vmlinux 0xa667c9bd dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xa6781193 fs_param_is_string +EXPORT_SYMBOL vmlinux 0xa6618043 mpage_readahead EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa684082d xp_dma_unmap -EXPORT_SYMBOL vmlinux 0xa6863581 sock_no_accept -EXPORT_SYMBOL vmlinux 0xa6879486 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xa6a2af29 arp_create -EXPORT_SYMBOL vmlinux 0xa6b01907 skb_expand_head -EXPORT_SYMBOL vmlinux 0xa6cdba1e key_reject_and_link -EXPORT_SYMBOL vmlinux 0xa6dbd06f dev_set_mtu -EXPORT_SYMBOL vmlinux 0xa6e4fe02 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xa6f45e53 param_set_byte -EXPORT_SYMBOL vmlinux 0xa708cbf6 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa683bd51 phy_init_hw +EXPORT_SYMBOL vmlinux 0xa6aab06d neigh_seq_next +EXPORT_SYMBOL vmlinux 0xa6bb2b32 invalidate_disk +EXPORT_SYMBOL vmlinux 0xa6c20a4b jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xa6d2c73c blk_rq_init +EXPORT_SYMBOL vmlinux 0xa6e6e125 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available -EXPORT_SYMBOL vmlinux 0xa70d42bb of_device_unregister EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xa7173b02 skb_copy_header +EXPORT_SYMBOL vmlinux 0xa71147e3 bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71b3f90 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xa71e0b5a vfs_fsync_range EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa7205f16 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xa733dc82 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xa747fd41 cdev_device_del EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa751fe81 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xa756aa13 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xa76604ef con_is_bound -EXPORT_SYMBOL vmlinux 0xa775055f param_get_ullong -EXPORT_SYMBOL vmlinux 0xa7762fb1 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xa7791aef md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xa76925b2 touch_buffer EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa77cd9bd netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xa78b655b __scm_send -EXPORT_SYMBOL vmlinux 0xa78c90fc tcf_block_get -EXPORT_SYMBOL vmlinux 0xa7a15bae xfrm_state_free -EXPORT_SYMBOL vmlinux 0xa7a65150 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xa7c6dbb8 mpage_readahead -EXPORT_SYMBOL vmlinux 0xa7c72a19 console_stop +EXPORT_SYMBOL vmlinux 0xa79a6d6f mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xa79c8440 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xa7abde79 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xa7ac82a2 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xa7c5c9b9 bio_add_page +EXPORT_SYMBOL vmlinux 0xa7cbc167 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xa7cf2c3f tty_kref_put EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7dbc760 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xa7e726ae seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f23b5d inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0xa80b78c4 registered_fb -EXPORT_SYMBOL vmlinux 0xa837258f tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xa7ef09ef devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xa7f60df6 fman_bind +EXPORT_SYMBOL vmlinux 0xa7fd87dc zpool_register_driver +EXPORT_SYMBOL vmlinux 0xa80da6c0 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xa814bdde vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xa81f5685 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xa8314383 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xa831f37f xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xa83cbd87 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xa83d300f sys_imageblit EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa848dab6 tcf_unregister_action EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa8520814 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa86090e8 dquot_free_inode EXPORT_SYMBOL vmlinux 0xa8676398 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa871f2d5 sync_filesystem -EXPORT_SYMBOL vmlinux 0xa874f766 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xa891c196 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xa87430cb netdev_offload_xstats_get EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa89f021f super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8a8bbea phy_stop -EXPORT_SYMBOL vmlinux 0xa8b2daeb jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xa8bb4d26 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xa8bc3975 phy_write_mmd -EXPORT_SYMBOL vmlinux 0xa8c9afcf con_is_visible +EXPORT_SYMBOL vmlinux 0xa8aa9add arp_send +EXPORT_SYMBOL vmlinux 0xa8b9eb33 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xa8c0776b ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8ceedca revert_creds -EXPORT_SYMBOL vmlinux 0xa8e05d8a ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xa8e37311 param_get_invbool EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8f1d49f mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xa8f2b6a9 __register_binfmt EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8fd035e tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa912e426 dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xa919e3f6 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0xa92bb8b7 bio_init_clone -EXPORT_SYMBOL vmlinux 0xa93aeeb0 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0xa9227b68 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa9261135 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xa93257d3 i2c_find_device_by_fwnode +EXPORT_SYMBOL vmlinux 0xa9404c42 folio_set_bh EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa94bc12f gpiochip_irq_reqres -EXPORT_SYMBOL vmlinux 0xa954a30c locks_init_lock +EXPORT_SYMBOL vmlinux 0xa95a00a4 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa9702821 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xa9671efc iov_iter_npages EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa982048d security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xa982b2a9 d_move -EXPORT_SYMBOL vmlinux 0xa990fd90 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xa9b5ff1c xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xa9bc40b1 dm_put_device +EXPORT_SYMBOL vmlinux 0xa976e7bd block_write_begin +EXPORT_SYMBOL vmlinux 0xa979d8bf dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xa9809e3c __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa981dbde iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xa99b01f6 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xa9a4a6d5 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xa9b695bb inode_query_iversion +EXPORT_SYMBOL vmlinux 0xa9c9af42 genphy_c45_eee_is_active +EXPORT_SYMBOL vmlinux 0xa9e09db9 sk_free EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f3203b dm_table_get_size +EXPORT_SYMBOL vmlinux 0xa9f43f46 inet_shutdown +EXPORT_SYMBOL vmlinux 0xa9ffa8bd pmem_should_map_pages EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa1cd19f devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xaa286fab inode_set_flags +EXPORT_SYMBOL vmlinux 0xaa249720 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xaa259ea8 pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa343b75 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xaa38e35e amba_driver_register -EXPORT_SYMBOL vmlinux 0xaa609596 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xaa5871aa tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xaa6bc365 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa71192f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xaa700ecc nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xaa723c12 __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xaa923546 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xaa9b9bbc tls_client_hello_psk -EXPORT_SYMBOL vmlinux 0xaa9ba17c xfrm_lookup -EXPORT_SYMBOL vmlinux 0xaa9c344d dqput +EXPORT_SYMBOL vmlinux 0xaa9835da tcf_action_exec EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaabb89a km_policy_expired -EXPORT_SYMBOL vmlinux 0xaabe9a0e _dev_crit -EXPORT_SYMBOL vmlinux 0xaabf240c input_allocate_device -EXPORT_SYMBOL vmlinux 0xaac0e819 logfc -EXPORT_SYMBOL vmlinux 0xaac5a3a4 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xaac7a9d1 xp_free -EXPORT_SYMBOL vmlinux 0xaac857a9 udp_prot +EXPORT_SYMBOL vmlinux 0xaaab338d __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xaac9cd28 remove_watch_from_object EXPORT_SYMBOL vmlinux 0xaacf03c1 dma_fence_signal EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaae7c551 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xaadc9c55 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xaae786f5 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaae94f4b cfb_copyarea EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaafa7ec8 zero_fill_bio EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0abd3a watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xab2b95cc dev_mc_flush +EXPORT_SYMBOL vmlinux 0xab02140c pnp_possible_config +EXPORT_SYMBOL vmlinux 0xab0cc2c7 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xab159035 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xab1b5c8b of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xab1d1ff1 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xab24f950 param_get_byte +EXPORT_SYMBOL vmlinux 0xab2d2151 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab443b44 param_get_invbool -EXPORT_SYMBOL vmlinux 0xab493bc4 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xab5dd9dd max8998_update_reg +EXPORT_SYMBOL vmlinux 0xab48e6e7 module_refcount +EXPORT_SYMBOL vmlinux 0xab5dbcf7 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab747509 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xab74683b tcf_exts_change EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xabaa8f90 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xabb67155 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xabc11934 dev_addr_del -EXPORT_SYMBOL vmlinux 0xabdcd4eb may_setattr -EXPORT_SYMBOL vmlinux 0xabdfc1d2 __invalidate_device +EXPORT_SYMBOL vmlinux 0xab88ecc7 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xab95ed50 md_reload_sb +EXPORT_SYMBOL vmlinux 0xab96e8f0 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xabdc40cf sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xabde2d2f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xabe406da of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xabe4a238 elv_rb_add EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac06658e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xabf56ceb __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2da689 rproc_add +EXPORT_SYMBOL vmlinux 0xac224b95 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xac31e02a generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac383080 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xac5288ea tegra_ivc_cleanup EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5bd4ba devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xac5ea999 of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac62db74 eth_gro_complete -EXPORT_SYMBOL vmlinux 0xac660430 tty_do_resize -EXPORT_SYMBOL vmlinux 0xac73373f request_firmware -EXPORT_SYMBOL vmlinux 0xac798684 disk_check_media_change -EXPORT_SYMBOL vmlinux 0xac984611 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xaca84561 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xac67671d jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xac8a70fa blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xac902e1a registered_fb +EXPORT_SYMBOL vmlinux 0xaca0e1e1 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xaca804ee rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbb3d97 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xacbc7c25 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xacc41427 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xacd60b20 simple_get_link EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacedbb1c component_match_add_typed EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacf9d37f nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xacfa56a9 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xad01a489 dm_get_device EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad09e105 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xad0d898f fqdir_exit +EXPORT_SYMBOL vmlinux 0xad3b0e5c filemap_flush +EXPORT_SYMBOL vmlinux 0xad3ca70b ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad41abb5 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xad523362 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xad552e2d vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xad4ce813 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xad549ba1 input_grab_device +EXPORT_SYMBOL vmlinux 0xad57a7b3 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write -EXPORT_SYMBOL vmlinux 0xad6b8bd5 seq_read_iter EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6d3548 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0xad6f38d4 __dquot_transfer EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad982709 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xad8cce8b tty_name +EXPORT_SYMBOL vmlinux 0xad950fbe sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xad96333e of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue -EXPORT_SYMBOL vmlinux 0xad994028 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xad9ba474 tty_port_destroy EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadbcc998 sock_i_uid +EXPORT_SYMBOL vmlinux 0xadbeb87d fqdir_init EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadcdc37e __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xadca733a tcp_close +EXPORT_SYMBOL vmlinux 0xadcbe956 __dquot_free_space EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadfc6248 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xadd70925 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xadda2cee vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xaddcb503 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xaddeedb2 input_free_device +EXPORT_SYMBOL vmlinux 0xadf0f8c7 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xadf3fbad kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xadf80c37 vme_slave_request +EXPORT_SYMBOL vmlinux 0xadffd026 nf_log_unset EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae13afaa netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xae0db509 qdisc_hash_add EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae40ca99 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xae439194 ppp_input_error -EXPORT_SYMBOL vmlinux 0xae524ad9 kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0xae540bf4 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xae3eeb2f i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xae4d3673 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xae537c00 pci_free_irq EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae605856 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae7a9b13 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xae83ae05 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xae8f8c7b pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xae930447 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xae9e91dd ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xae7d4a95 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xae884f41 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xae9f8979 rproc_boot +EXPORT_SYMBOL vmlinux 0xaea8365b dev_close +EXPORT_SYMBOL vmlinux 0xaea98a38 dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeaf9a01 pci_choose_state EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaed56f40 of_iomap -EXPORT_SYMBOL vmlinux 0xaed9ce52 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xaefc4c3d inet6_release -EXPORT_SYMBOL vmlinux 0xaf197ca0 ps2_interrupt -EXPORT_SYMBOL vmlinux 0xaf259f3c vlan_for_each -EXPORT_SYMBOL vmlinux 0xaf2ac799 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xaecebd22 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xaecf82a5 inet_put_port +EXPORT_SYMBOL vmlinux 0xaed63649 audit_log +EXPORT_SYMBOL vmlinux 0xaedb1d25 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xaedd0c02 input_open_device +EXPORT_SYMBOL vmlinux 0xaede442f request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xaef2936d jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xaf09a366 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xaf10a7a2 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xaf19635e sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xaf22ecaa register_md_personality +EXPORT_SYMBOL vmlinux 0xaf366408 acpi_device_set_power EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf46eb01 blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf5cf190 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xaf9bf7ab seq_pad -EXPORT_SYMBOL vmlinux 0xafa307db setup_new_exec +EXPORT_SYMBOL vmlinux 0xaf5a59f0 param_set_bint +EXPORT_SYMBOL vmlinux 0xaf5fbdbd hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xaf6e8351 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xaf8a1b87 vfs_parse_monolithic_sep +EXPORT_SYMBOL vmlinux 0xafa4d1c4 jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc0b12c dquot_destroy EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error -EXPORT_SYMBOL vmlinux 0xafcd1d51 param_ops_int -EXPORT_SYMBOL vmlinux 0xafe090ac cdev_add -EXPORT_SYMBOL vmlinux 0xb001bde1 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xb004dd95 __f_setown -EXPORT_SYMBOL vmlinux 0xb0063b89 of_node_name_eq -EXPORT_SYMBOL vmlinux 0xb0090fd0 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb015110a sk_common_release +EXPORT_SYMBOL vmlinux 0xafcc8730 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xaff6f1e1 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xb0042961 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xb015cc63 folio_zero_new_buffers EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02bb634 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xb037b2b2 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xb02d5839 eth_mac_addr EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05900c6 netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xb07d45a8 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xb0801ca0 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xb08bad0c acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xb093e45a seq_file_path -EXPORT_SYMBOL vmlinux 0xb09ade13 vme_irq_generate -EXPORT_SYMBOL vmlinux 0xb09d18a4 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb07deb42 lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0xb07eeb81 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xb07ff121 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b6666f netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xb0bda11c __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xb0c53c1a blk_get_queue EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0cba9ed component_match_add_typed +EXPORT_SYMBOL vmlinux 0xb0d75851 inet_accept EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0ef9e32 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xb0f96eca __check_sticky -EXPORT_SYMBOL vmlinux 0xb0fa6024 eth_header_parse -EXPORT_SYMBOL vmlinux 0xb103370a make_bad_inode -EXPORT_SYMBOL vmlinux 0xb108f146 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xb116faf9 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xb0e6abdc devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xb0fe8498 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xb1001475 netif_schedule_queue EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb129f9ff filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xb12a4762 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb1385616 ip6_output +EXPORT_SYMBOL vmlinux 0xb1406e1f netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb17c65c0 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xb18540c3 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xb18bb1e6 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xb199c891 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xb15b8cc8 dup_iter +EXPORT_SYMBOL vmlinux 0xb178b79f xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xb189291c ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb1a36db9 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xb1b37a14 console_stop +EXPORT_SYMBOL vmlinux 0xb1c33eb5 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find -EXPORT_SYMBOL vmlinux 0xb1dc19ad is_acpi_device_node EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1ed07fd mr_dump +EXPORT_SYMBOL vmlinux 0xb1e7833a sock_from_file EXPORT_SYMBOL vmlinux 0xb1ef2d50 cred_fscmp -EXPORT_SYMBOL vmlinux 0xb20aa37f netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xb1f40bff trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xb21cc966 pps_lookup_dev EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb246ed96 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xb24f7cbf sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xb2535f64 of_property_read_reg -EXPORT_SYMBOL vmlinux 0xb27f6a39 d_obtain_root -EXPORT_SYMBOL vmlinux 0xb27f8c55 generic_read_dir -EXPORT_SYMBOL vmlinux 0xb28014cb of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xb29744ce padata_do_serial -EXPORT_SYMBOL vmlinux 0xb2a37515 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xb243f235 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb246b8ce folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0xb274ede2 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xb28070d0 key_validate +EXPORT_SYMBOL vmlinux 0xb286cf0c __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xb28971de unregister_binfmt +EXPORT_SYMBOL vmlinux 0xb28be93b crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xb29fc0c6 complete_request_key EXPORT_SYMBOL vmlinux 0xb2a9cf10 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xb2b48be1 fb_prepare_logo EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2c973d2 tcf_em_register -EXPORT_SYMBOL vmlinux 0xb2e03d5b sock_wfree +EXPORT_SYMBOL vmlinux 0xb2df628c param_get_ulong EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2eca101 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0xb2f1bade unregister_console EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f5a3af pci_get_device +EXPORT_SYMBOL vmlinux 0xb2fc6707 pm860x_reg_write EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb301afc8 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30a6f75 param_ops_charp EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31502d8 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xb31b111e blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb331c985 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0xb34d798e seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xb339a853 __skb_pad +EXPORT_SYMBOL vmlinux 0xb347beb9 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb35181e8 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xb35eff2c fb_io_read +EXPORT_SYMBOL vmlinux 0xb35a1184 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36c03e4 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xb373e0ac flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xb3752fe7 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xb37eec29 bio_copy_data +EXPORT_SYMBOL vmlinux 0xb3754580 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xb37b813d clkdev_add EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert EXPORT_SYMBOL vmlinux 0xb386e0fd nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb39efda1 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xb391407f address_space_init_once EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3b54a46 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xb3bd3298 filemap_splice_read -EXPORT_SYMBOL vmlinux 0xb3c71e3a pci_find_resource +EXPORT_SYMBOL vmlinux 0xb3a8b538 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xb3a8e1e9 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xb3c089da pcibus_to_node +EXPORT_SYMBOL vmlinux 0xb3d26832 i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3ea6a98 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb3e0450e devm_rproc_add +EXPORT_SYMBOL vmlinux 0xb3e1917c inode_update_time +EXPORT_SYMBOL vmlinux 0xb3ee1887 tls_client_hello_psk EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f7aeac peernet2id EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb404e31b vc_resize -EXPORT_SYMBOL vmlinux 0xb4096aca devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xb40ab366 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xb4180655 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xb4093986 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xb40eb64e qdisc_hash_del EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42d07b4 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xb439f5ab wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xb43ea275 __filemap_get_folio -EXPORT_SYMBOL vmlinux 0xb457131a __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xb442faf3 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xb4552358 skb_push EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb459de55 phy_attached_print -EXPORT_SYMBOL vmlinux 0xb463f3ed sock_pfree -EXPORT_SYMBOL vmlinux 0xb47ce6a9 sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0xb4804ec4 fb_io_write +EXPORT_SYMBOL vmlinux 0xb46e9e88 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xb4778f4c __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xb477d897 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb488bc44 skb_copy EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xb4b80008 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xb4ba64ef pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xb4da02b9 tty_register_device -EXPORT_SYMBOL vmlinux 0xb4dfac62 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xb50411df fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xb50d0cba netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xb50d6c87 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xb50eca4a pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xb5257c0e d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xb4b068d3 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xb4ed908d tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xb50a5259 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xb50c2f81 tty_check_change +EXPORT_SYMBOL vmlinux 0xb5117730 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xb51cea27 skb_seq_read +EXPORT_SYMBOL vmlinux 0xb5311327 skb_queue_purge EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb5499ac8 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xb56a91d2 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xb575c88f xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xb5642313 input_unregister_device +EXPORT_SYMBOL vmlinux 0xb56adc08 padata_alloc +EXPORT_SYMBOL vmlinux 0xb5742fb8 pci_scan_slot EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb597f5c5 tcp_time_wait -EXPORT_SYMBOL vmlinux 0xb59fcfcd blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xb58d22aa fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xb5a42069 ilookup5_nowait EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b9f0f4 bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0xb5c405ae cdev_set_parent -EXPORT_SYMBOL vmlinux 0xb5d829ca __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xb5e322e3 single_release +EXPORT_SYMBOL vmlinux 0xb5b9f3bd devm_clk_put +EXPORT_SYMBOL vmlinux 0xb5d5d566 dm_io +EXPORT_SYMBOL vmlinux 0xb5e1cbe0 mmc_retune_release EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f69e6e netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xb5fc53f3 skb_store_bits +EXPORT_SYMBOL vmlinux 0xb60c3325 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xb61260d3 sync_filesystem +EXPORT_SYMBOL vmlinux 0xb6186fc1 get_cached_acl EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb62e9207 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xb63265d0 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xb61f969c vme_irq_handler EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6435de7 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb667756f netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xb65c5742 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb671afba t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6817814 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xb6828f31 make_kgid +EXPORT_SYMBOL vmlinux 0xb686339f tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb69d5bf7 d_make_root -EXPORT_SYMBOL vmlinux 0xb6a33042 ether_setup +EXPORT_SYMBOL vmlinux 0xb693d3d5 kernel_tmpfile_open +EXPORT_SYMBOL vmlinux 0xb6976655 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xb69a22d6 simple_unlink EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6c6b22b dquot_resume +EXPORT_SYMBOL vmlinux 0xb6be3765 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit EXPORT_SYMBOL vmlinux 0xb6cf91fc nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xb6d86b53 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xb6dcefc5 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6f62170 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xb6faad68 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb7084ed4 textsearch_register -EXPORT_SYMBOL vmlinux 0xb709a735 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xb7156b8f xp_alloc +EXPORT_SYMBOL vmlinux 0xb71025fa devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xb711bccc dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb716cd79 input_flush_device +EXPORT_SYMBOL vmlinux 0xb7159ae6 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb7172b63 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xb71af6b0 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xb71b3f9a udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb725e15f devm_clk_get +EXPORT_SYMBOL vmlinux 0xb722d3e3 dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73d18e0 iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0xb7558aab kernel_getpeername -EXPORT_SYMBOL vmlinux 0xb76130a6 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0xb7622ae8 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb74cb452 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xb750bd07 mii_check_link EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb77545cd tcp_peek_len +EXPORT_SYMBOL vmlinux 0xb76b20c8 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xb772ff1c inode_set_flags +EXPORT_SYMBOL vmlinux 0xb781e7fe devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xb78ae4d2 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb797ee52 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xb7b68186 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb7996c0b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xb7aa3205 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xb7b276e3 kmem_cache_free EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states -EXPORT_SYMBOL vmlinux 0xb7c0e02b crypto_sha512_update EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c207e1 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xb7c644a2 ip_output EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cd9b8e uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xb7d8dedc of_n_size_cells -EXPORT_SYMBOL vmlinux 0xb7dde71e security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xb7dfddee seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xb7e18dcc blk_get_queue -EXPORT_SYMBOL vmlinux 0xb7ea8c66 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0xb7eef6e3 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xb7dd5d4c ip6_frag_next +EXPORT_SYMBOL vmlinux 0xb7e07d27 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xb804bf22 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xb804f3b2 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xb8065fdc release_sock EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb823cfff mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0xb83b2a0b scsi_add_device EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb85f5d88 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xb85df894 get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add -EXPORT_SYMBOL vmlinux 0xb862c7f9 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb876a449 acpi_device_hid -EXPORT_SYMBOL vmlinux 0xb877a99d ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xb87f9d52 make_kprojid -EXPORT_SYMBOL vmlinux 0xb88a8773 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xb88f5202 dm_io EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8bbb2b0 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xb8c27390 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0xb8c34d54 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xb8c56c31 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xb8e158f7 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xb8efd31c lookup_one_qstr_excl -EXPORT_SYMBOL vmlinux 0xb8f1ce10 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xb8f9d3cc genphy_read_status +EXPORT_SYMBOL vmlinux 0xb8be90b6 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xb8c9ccee phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xb8e7ace9 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xb8fae385 skb_trim +EXPORT_SYMBOL vmlinux 0xb904b19d rt_mutex_base_init EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory -EXPORT_SYMBOL vmlinux 0xb90aafb9 cad_pid +EXPORT_SYMBOL vmlinux 0xb90e1463 skb_try_coalesce EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb915835e set_bh_page +EXPORT_SYMBOL vmlinux 0xb91ca381 udp_disconnect EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xb929e64f truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xb92a7b3c rproc_detach -EXPORT_SYMBOL vmlinux 0xb9302080 file_ns_capable -EXPORT_SYMBOL vmlinux 0xb94204f4 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xb9331719 udplite_prot +EXPORT_SYMBOL vmlinux 0xb9336a8b ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xb939f3f3 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb95ba29c inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb95f19c0 dquot_scan_active EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9910ee1 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xb99149ec unpin_user_page -EXPORT_SYMBOL vmlinux 0xb996b549 scsi_host_put -EXPORT_SYMBOL vmlinux 0xb99a5424 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xb980762f mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xb982b8ca tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xb983023d netdev_emerg +EXPORT_SYMBOL vmlinux 0xb99931af inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xb99c2153 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xb99ca9e6 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xb9a6f35f __bread_gfp EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9b6f925 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xb9b95b18 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xb9ba14ea sock_recvmsg -EXPORT_SYMBOL vmlinux 0xb9ba5302 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xb9cf7b67 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xb9d4b964 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0xb9e15942 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0xb9e1773f softnet_data -EXPORT_SYMBOL vmlinux 0xb9e26401 vfs_fadvise -EXPORT_SYMBOL vmlinux 0xb9e3f121 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xb9b9c739 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xb9c301ed dma_fence_describe +EXPORT_SYMBOL vmlinux 0xb9dc1f5c nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ea25a0 submit_bio -EXPORT_SYMBOL vmlinux 0xb9ec7761 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xb9f3edd2 of_iommu_get_resv_regions +EXPORT_SYMBOL vmlinux 0xb9f41bb0 sunxi_sram_claim EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req EXPORT_SYMBOL vmlinux 0xba00daa2 dma_fence_allocate_private_stub EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba13cce6 of_find_property +EXPORT_SYMBOL vmlinux 0xba14ce69 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xba214f44 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xba2340fa security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xba3d46d3 configfs_depend_item EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba756908 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xba85d032 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xba768058 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xba791f72 phy_driver_register +EXPORT_SYMBOL vmlinux 0xba89d7c7 neigh_direct_output EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba9b687b rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xbaaa44a3 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xbaac7fbc netlink_broadcast +EXPORT_SYMBOL vmlinux 0xbabfb5da sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len +EXPORT_SYMBOL vmlinux 0xbad1b0c0 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xbaf249dc sb_min_blocksize EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0b7eb3 _dev_notice -EXPORT_SYMBOL vmlinux 0xbb1150a0 freeze_super -EXPORT_SYMBOL vmlinux 0xbb20e7de skb_checksum_help +EXPORT_SYMBOL vmlinux 0xbb0d9172 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xbb13510d tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0xbb153462 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0xbb15d804 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb3ad81f md_write_start -EXPORT_SYMBOL vmlinux 0xbb402048 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xbb422a7c ip_frag_next +EXPORT_SYMBOL vmlinux 0xbb454386 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xbb4d2359 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xbb4ddf2b nd_btt_probe EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5245d9 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xbb57cb58 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0xbb5fa7a1 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xbb626e6f i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbb668fc7 nf_log_unregister EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb6cd7af sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xbb84d768 set_bh_page +EXPORT_SYMBOL vmlinux 0xbb9c886e inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xbb9d7631 dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbbd93bf pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0xbbceba3f ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xbbd65e2a genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xbbbd3349 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xbbc60c5b sock_create_lite EXPORT_SYMBOL vmlinux 0xbbda18c4 dma_fence_free -EXPORT_SYMBOL vmlinux 0xbc020f52 rproc_boot -EXPORT_SYMBOL vmlinux 0xbc1947a9 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xbc19b80c phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xbc1fffa6 rproc_free +EXPORT_SYMBOL vmlinux 0xbbe488dc vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xbbea60f3 dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc2e4152 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xbc3850ef ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xbc563a70 invalidate_disk -EXPORT_SYMBOL vmlinux 0xbc62c386 lock_rename_child -EXPORT_SYMBOL vmlinux 0xbc9e52c4 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xbc3b25de dquot_quota_off +EXPORT_SYMBOL vmlinux 0xbc5b36a0 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xbc69d3f1 tcf_classify +EXPORT_SYMBOL vmlinux 0xbc7ac026 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xbc7fe007 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xbc818636 pcie_capability_clear_and_set_word_unlocked +EXPORT_SYMBOL vmlinux 0xbc93124a cdrom_ioctl EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb473f4 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xbcd20955 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xbcd4e221 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xbcdf60a1 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xbd21514e __icmp_send -EXPORT_SYMBOL vmlinux 0xbd2ed982 simple_get_link +EXPORT_SYMBOL vmlinux 0xbd089a48 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xbd0bfdca pci_remove_bus +EXPORT_SYMBOL vmlinux 0xbd2a77c2 devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd62d491 path_has_submounts -EXPORT_SYMBOL vmlinux 0xbd659af1 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xbd558f5d dqget EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd7f40a5 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xbd81c59a sk_ioctl -EXPORT_SYMBOL vmlinux 0xbd97a6b9 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xbe18a6a1 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0xbe3d2a92 udp_set_csum +EXPORT_SYMBOL vmlinux 0xbd6d7f28 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xbd978312 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xbdb2a9dc flush_dcache_folio +EXPORT_SYMBOL vmlinux 0xbdd42a70 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xbde291ab phy_read_mmd +EXPORT_SYMBOL vmlinux 0xbde70e97 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xbe018980 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xbe263212 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xbe265da4 pci_enable_link_state +EXPORT_SYMBOL vmlinux 0xbe29bdfc configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xbe2caffd dump_skip_to +EXPORT_SYMBOL vmlinux 0xbe3b5530 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xbe401d48 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xbe4604ba mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xbe48b3bc unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4aaa33 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xbe4e1117 i2c_del_driver EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe5845e2 seq_path +EXPORT_SYMBOL vmlinux 0xbe533ff1 __SetPageMovable EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe65af91 path_get -EXPORT_SYMBOL vmlinux 0xbe66993a bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xbe66e9c8 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe6e83b1 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xbe767ad2 __fs_parse -EXPORT_SYMBOL vmlinux 0xbe851ecf padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xbe86960b md_error -EXPORT_SYMBOL vmlinux 0xbe8d1d89 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xbe908e7a qman_start_using_portal -EXPORT_SYMBOL vmlinux 0xbe90f09b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xbe911c18 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xbe919d22 do_splice_direct -EXPORT_SYMBOL vmlinux 0xbebab567 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0xbec82324 ipv4_specific -EXPORT_SYMBOL vmlinux 0xbeeabdb1 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xbe7471e0 _dev_emerg +EXPORT_SYMBOL vmlinux 0xbe8f7c96 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xbe95d4a8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xbeaf594a input_release_device +EXPORT_SYMBOL vmlinux 0xbebadd0d skb_copy_bits +EXPORT_SYMBOL vmlinux 0xbed9f708 wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0xbee3b6b6 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xbeeb3c42 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xbeeec8a4 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xbef11291 __d_drop EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf19d609 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xbf36081d generic_permission -EXPORT_SYMBOL vmlinux 0xbf363b0f of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xbf3c5fa4 udp_seq_next +EXPORT_SYMBOL vmlinux 0xbf188a84 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xbf446cd4 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0xbf4475bd netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xbf4ec62b mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xbf531919 netdev_err EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf5d1c4a inode_set_bytes -EXPORT_SYMBOL vmlinux 0xbf6589c4 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xbf6d7821 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xbf75dcca trace_event_printf -EXPORT_SYMBOL vmlinux 0xbf7a8a97 tcp_poll -EXPORT_SYMBOL vmlinux 0xbf7b2f40 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0xbf7c044a inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xbf615e31 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xbf847655 rproc_da_to_va EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate -EXPORT_SYMBOL vmlinux 0xbfcaea7e __netif_rx +EXPORT_SYMBOL vmlinux 0xbfb99d90 dcb_getrewr_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfdcf1a4 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xbfe56180 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xbff35375 km_query -EXPORT_SYMBOL vmlinux 0xc010a0a7 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xc0115df3 of_translate_address -EXPORT_SYMBOL vmlinux 0xc01c17f6 skb_trim +EXPORT_SYMBOL vmlinux 0xbfde0f0f dst_init +EXPORT_SYMBOL vmlinux 0xbfef3cf9 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xbff8745c pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xbffe7fea devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xc00d46fb of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xc034e65a pci_set_power_state EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc03c9aa1 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xc04546bf dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc0454dd9 scsi_register_interface EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get -EXPORT_SYMBOL vmlinux 0xc061a53c devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc073d3dd skb_expand_head EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream -EXPORT_SYMBOL vmlinux 0xc078daf5 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xc079517c __bh_read EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc089d0be xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xc096c01e proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xc0aadaac __serio_register_driver -EXPORT_SYMBOL vmlinux 0xc0af881d pcibus_to_node -EXPORT_SYMBOL vmlinux 0xc0ba6816 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xc0d04fbb flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xc0e084d4 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xc0ed0c47 fget -EXPORT_SYMBOL vmlinux 0xc0f9e9de tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xc0882bf0 cdrom_open +EXPORT_SYMBOL vmlinux 0xc08b10aa dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xc09414e7 vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0xc09d9f5a _dev_printk EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1040855 scsi_rescan_device EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc11b2c64 dquot_disable -EXPORT_SYMBOL vmlinux 0xc125586d skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xc13e93c3 key_revoke +EXPORT_SYMBOL vmlinux 0xc1478b88 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc1514451 bpf_link_put EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc15f5324 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xc15dd7ac pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1715492 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xc19e76f6 page_pool_create -EXPORT_SYMBOL vmlinux 0xc1c41775 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xc1c73bc4 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xc1c90f3c fman_bind +EXPORT_SYMBOL vmlinux 0xc16f7139 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xc1768c07 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc17d8281 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xc18069d4 param_set_bool +EXPORT_SYMBOL vmlinux 0xc1ac0ad5 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xc1afe249 of_device_register +EXPORT_SYMBOL vmlinux 0xc1b46161 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xc1bc5ef9 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0xc1cb419c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xc1cc18f8 skb_ext_add +EXPORT_SYMBOL vmlinux 0xc1d3fba7 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e0f61e netdev_info EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1f22e27 xfrm_user_policy EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc20de9d4 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0xc216dcad in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xc216f8a8 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xc21727ca ip_local_deliver +EXPORT_SYMBOL vmlinux 0xc20fc243 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xc21228fd generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xc2160c9b dec_node_page_state EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc23f63d9 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xc25c92ae sk_stream_error -EXPORT_SYMBOL vmlinux 0xc2728c41 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xc2840d9c fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xc2877f75 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0xc28cee17 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0xc236bee5 vc_resize +EXPORT_SYMBOL vmlinux 0xc246ab10 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xc2490c78 generic_file_open +EXPORT_SYMBOL vmlinux 0xc266e9a1 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xc2842fbb xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xc284baa9 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xc297032c simple_transaction_release EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2af1eb4 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xc2b7c2ac crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xc2b820c3 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xc2b8bf93 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xc2bf864d param_ops_byte +EXPORT_SYMBOL vmlinux 0xc2aaa75e give_up_console +EXPORT_SYMBOL vmlinux 0xc2b69609 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xc2c24752 kthread_stop EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2d669d9 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ed40d0 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xc2ee73a6 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc301e47f simple_dir_operations +EXPORT_SYMBOL vmlinux 0xc2f6c1c7 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc308c181 napi_build_skb -EXPORT_SYMBOL vmlinux 0xc30d05b0 dump_skip EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc314aec5 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc325558b param_ops_invbool -EXPORT_SYMBOL vmlinux 0xc329efb2 of_io_request_and_map -EXPORT_SYMBOL vmlinux 0xc32c6c23 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc336e739 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xc3562a01 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc32f9ff9 set_user_nice +EXPORT_SYMBOL vmlinux 0xc345c651 lookup_one_len EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc35b509a component_match_add_release -EXPORT_SYMBOL vmlinux 0xc365d963 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc35df239 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xc3628426 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xc362eb5f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xc3652988 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37c7f2f __tty_alloc_driver EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc38780d8 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xc386406c dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xc38bf1ea seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc39085ee flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xc392494e udp_sendmsg +EXPORT_SYMBOL vmlinux 0xc3b71c70 pci_claim_resource EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3c6a7bf of_device_get_match_data EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3d680fe amba_request_regions -EXPORT_SYMBOL vmlinux 0xc3da177d configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xc3f93dbb pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xc3fb1c48 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xc3cfc649 folio_alloc +EXPORT_SYMBOL vmlinux 0xc3d30aa1 con_is_bound +EXPORT_SYMBOL vmlinux 0xc3d7c042 padata_do_serial +EXPORT_SYMBOL vmlinux 0xc3f88c57 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc417dc02 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xc40bd8f1 handshake_req_submit EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc421b98a devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc425036e mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc42dd4fb give_up_console -EXPORT_SYMBOL vmlinux 0xc435e6f0 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xc44f8637 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xc43b79c3 handshake_req_alloc +EXPORT_SYMBOL vmlinux 0xc445e7ae devm_memremap EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc470570a fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xc4640cfd sock_create EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc474a467 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xc4754cf2 sys_fillrect EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc498e006 pci_iomap -EXPORT_SYMBOL vmlinux 0xc4a219a2 pci_find_bus -EXPORT_SYMBOL vmlinux 0xc4a3e752 eth_header_cache -EXPORT_SYMBOL vmlinux 0xc4a56e57 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xc47a87ca input_register_handler +EXPORT_SYMBOL vmlinux 0xc49d6369 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4d788b3 xsk_tx_release -EXPORT_SYMBOL vmlinux 0xc4d9ef9b system_cpucaps -EXPORT_SYMBOL vmlinux 0xc4edfc7c phy_init_hw -EXPORT_SYMBOL vmlinux 0xc4f0ba5d md_flush_request -EXPORT_SYMBOL vmlinux 0xc4f17619 block_write_begin +EXPORT_SYMBOL vmlinux 0xc4ca1096 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xc4cc6cbb dcb_delrewr +EXPORT_SYMBOL vmlinux 0xc4dfa99d xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xc4eb11af configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xc4f7c0ab inode_io_list_del +EXPORT_SYMBOL vmlinux 0xc4f94b9f pnp_device_attach +EXPORT_SYMBOL vmlinux 0xc50d417a mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xc5200aa1 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xc52090b3 clk_bulk_get EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc53967a7 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0xc5660b86 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0xc566828c pcim_pin_device +EXPORT_SYMBOL vmlinux 0xc56a5e11 pci_irq_vector EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset -EXPORT_SYMBOL vmlinux 0xc57a67b6 pipe_lock EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc57fa41e iget5_locked +EXPORT_SYMBOL vmlinux 0xc5832972 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xc5835461 load_nls_default EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc595e92a iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59c878e netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xc5b10d85 blk_mq_end_request EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5cd8132 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xc5e274e7 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xc5c94d9a security_inode_init_security +EXPORT_SYMBOL vmlinux 0xc5d69ab2 tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc62dd47d create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc62f1156 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc657812d of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc67de0df mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0xc68a4841 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xc693217c mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xc69eb4a1 drop_super +EXPORT_SYMBOL vmlinux 0xc66eba4a block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xc69ef13d skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6bac590 arp_tbl -EXPORT_SYMBOL vmlinux 0xc6c78e49 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0xc6a34084 ihold +EXPORT_SYMBOL vmlinux 0xc6aeb4fb param_set_charp +EXPORT_SYMBOL vmlinux 0xc6af414d pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xc6cab4a3 blk_sync_queue EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6f2240d pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xc6d76aaf trace_event_printf EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f649cf of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xc6fc82c8 tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc711b2c2 dev_activate +EXPORT_SYMBOL vmlinux 0xc71f55ae xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72cf7e7 tty_name -EXPORT_SYMBOL vmlinux 0xc72d8119 tso_start -EXPORT_SYMBOL vmlinux 0xc733370b icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xc75710ff tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xc75a71fc ram_aops -EXPORT_SYMBOL vmlinux 0xc75f9b0f rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xc770d18b jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xc732ff79 devm_ioremap +EXPORT_SYMBOL vmlinux 0xc7360e9d udp_gro_receive +EXPORT_SYMBOL vmlinux 0xc7488647 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling -EXPORT_SYMBOL vmlinux 0xc7831f29 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78d841d sock_wake_async -EXPORT_SYMBOL vmlinux 0xc78f1ec0 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xc79295da gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xc7947900 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xc795d497 tty_register_device EXPORT_SYMBOL vmlinux 0xc7975de0 trace_seq_acquire +EXPORT_SYMBOL vmlinux 0xc79e2c4f nf_log_trace +EXPORT_SYMBOL vmlinux 0xc7a31c27 vme_lm_request EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a8f5d1 page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7ae8ffc page_readlink EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7ce18ce blk_rq_map_user_io -EXPORT_SYMBOL vmlinux 0xc7ed69c7 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xc8062875 __alloc_pages +EXPORT_SYMBOL vmlinux 0xc7cbaa89 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xc7eb7f81 xfrm_state_free EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc815ce89 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xc81ab6ac pcie_get_mps +EXPORT_SYMBOL vmlinux 0xc81735bd pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xc820c97b of_n_size_cells +EXPORT_SYMBOL vmlinux 0xc83511ce bio_integrity_add_page EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc842e473 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xc83a7017 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xc83bdde9 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc865cffb tty_kref_put -EXPORT_SYMBOL vmlinux 0xc8676198 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xc85e8289 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xc8611e51 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xc861b67a __bio_advance EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc882fc5d security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xc889dd0a migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xc88f3b50 dcache_dir_open EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc8985fc2 kmalloc_caches EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8af5ee5 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xc8b7d1c8 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xc8b863bd netdev_get_by_index +EXPORT_SYMBOL vmlinux 0xc8bd5ab7 inet_release EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table -EXPORT_SYMBOL vmlinux 0xc8cc6a35 param_set_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xc8db55fa netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xc8d55e78 tcp_poll +EXPORT_SYMBOL vmlinux 0xc8dc030a nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8ee277f skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xc8fca0d7 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xc915371e fb_get_mode +EXPORT_SYMBOL vmlinux 0xc8e32bb5 seq_putc +EXPORT_SYMBOL vmlinux 0xc8ec59ae genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xc8f208a1 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc8f52531 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xc90d5559 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc9198e98 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xc9222f7d generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xc93ba16f input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xc923f385 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc92779d7 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xc92a3e1b netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94ea1ef nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xc958103d generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xc95b7c56 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc93ed7c0 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xc942b30e tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xc945250d dcb_setapp EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc9639f07 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xc969fa0a clk_add_alias +EXPORT_SYMBOL vmlinux 0xc970cc28 block_commit_write EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc994fe6d tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0xc997388f unix_detach_fds -EXPORT_SYMBOL vmlinux 0xc99cd297 genphy_c45_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xc99deebb fib_default_rule_add EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b14eb1 dev_addr_mod +EXPORT_SYMBOL vmlinux 0xc9ab795d prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xc9b4a891 dentry_open +EXPORT_SYMBOL vmlinux 0xc9c8f166 fb_show_logo EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e07c04 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9f606af xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xc9ff3d61 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xca056168 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xca1503a2 d_instantiate EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit -EXPORT_SYMBOL vmlinux 0xca1c75d7 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0xca1d026d scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xca1c1397 bio_uninit EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca2dde9c inode_needs_sync EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4b4539 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xca4a2033 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca81b63d xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xca69a829 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xca741b1b vfs_unlink +EXPORT_SYMBOL vmlinux 0xca8aea40 genl_notify +EXPORT_SYMBOL vmlinux 0xca90c262 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcabed8c3 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xcabcdd6d param_set_byte EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcadf310a phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xcaeb3e4a kobject_add -EXPORT_SYMBOL vmlinux 0xcaeb66ae security_inet_conn_established -EXPORT_SYMBOL vmlinux 0xcaef2471 elv_rb_add EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb2a0e56 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xcb32c08f key_invalidate +EXPORT_SYMBOL vmlinux 0xcb0693f9 rtnl_notify +EXPORT_SYMBOL vmlinux 0xcb0f56de pid_task +EXPORT_SYMBOL vmlinux 0xcb283d54 of_property_read_reg +EXPORT_SYMBOL vmlinux 0xcb2b8a96 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb46e8c1 phy_validate_pause -EXPORT_SYMBOL vmlinux 0xcb64c8a7 unix_attach_fds -EXPORT_SYMBOL vmlinux 0xcb65d6fc validate_slab_cache +EXPORT_SYMBOL vmlinux 0xcb3ba9dd skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xcb3bea06 keyring_alloc +EXPORT_SYMBOL vmlinux 0xcb6db186 skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb7587c5 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xcb85c453 km_state_notify -EXPORT_SYMBOL vmlinux 0xcb9c9402 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xcbac0d1a reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xcbac2d71 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xcb7580b0 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0xcb76374b __napi_schedule +EXPORT_SYMBOL vmlinux 0xcb7cc651 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xcb847a9f flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xcb85ee5c kill_pid +EXPORT_SYMBOL vmlinux 0xcbb6c486 ipmr_rule_default EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbd25c9c xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xcbcdbc79 of_match_device EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe60618 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xcbe139d4 cdrom_mode_select EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc03eaae blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc1e1bb5 lease_modify EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2dccf3 unlock_buffer EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc363b0e __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xcc36eeaf tcp_splice_read +EXPORT_SYMBOL vmlinux 0xcc32f960 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0xcc384c91 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup +EXPORT_SYMBOL vmlinux 0xcc3f4837 scm_fp_dup EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0xcc41526a always_delete_dentry -EXPORT_SYMBOL vmlinux 0xcc4e3e50 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5832e5 block_write_full_page -EXPORT_SYMBOL vmlinux 0xcc59b44b dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc98ac73 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xcc9edf1d fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xcc62b1ab md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xcc6bb483 tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0xcc7bf11d flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xcc84c07e inet_ioctl EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccad00b4 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xccaf2550 inet6_del_protocol EXPORT_SYMBOL vmlinux 0xccaf994e dma_fence_set_deadline -EXPORT_SYMBOL vmlinux 0xccb9b8a8 register_filesystem -EXPORT_SYMBOL vmlinux 0xccc710e9 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xccb1eaa0 __post_watch_notification +EXPORT_SYMBOL vmlinux 0xccb1fcda t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xccb97285 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xccbc5b65 kmalloc_trace +EXPORT_SYMBOL vmlinux 0xcce60cdf security_path_mknod +EXPORT_SYMBOL vmlinux 0xccef42c0 __ip_select_ident EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd05e346 skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0xcd098af1 fqdir_exit -EXPORT_SYMBOL vmlinux 0xcd0f5a3e d_invalidate -EXPORT_SYMBOL vmlinux 0xcd1200c7 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xcd224e2c scsi_device_get +EXPORT_SYMBOL vmlinux 0xcd025125 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xcd0395f5 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xcd1d15dc pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd33c382 phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0xcd49ecb2 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xcd509ff0 pci_iounmap -EXPORT_SYMBOL vmlinux 0xcd563f23 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xcd5ef307 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0xcd6cffcb keyring_clear -EXPORT_SYMBOL vmlinux 0xcd7a1106 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xcd83962f unregister_md_personality +EXPORT_SYMBOL vmlinux 0xcd4b8b82 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xcd512eab pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xcd6057d2 tcf_block_put +EXPORT_SYMBOL vmlinux 0xcd7719c1 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xcd7ba9e7 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xcd84fe1a fman_get_revision +EXPORT_SYMBOL vmlinux 0xcd85ef5c blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xcd871ed2 generic_file_fsync EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd8f3a4f ip_defrag +EXPORT_SYMBOL vmlinux 0xcd92e9d2 vfs_create_mount EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xcda2e0d8 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xcda5b323 sk_net_capable +EXPORT_SYMBOL vmlinux 0xcda4ca67 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xcda82f43 ppp_channel_index EXPORT_SYMBOL vmlinux 0xcdaced8a qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0xcdafd1a3 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcddbd823 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xcdcfbefe dm_table_get_md +EXPORT_SYMBOL vmlinux 0xcdd16ffb dquot_alloc_inode EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf1c959 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xcdf8df46 register_framebuffer -EXPORT_SYMBOL vmlinux 0xce0f3264 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xcdfdd9b5 mii_nway_restart +EXPORT_SYMBOL vmlinux 0xce12c8d2 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xce1e82dc sock_no_bind EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce45edca __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5a4552 open_exec EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce7a17c5 is_acpi_data_node EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce863586 secpath_set -EXPORT_SYMBOL vmlinux 0xce8b7369 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xce83a88a devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xce840dcd sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec483b5 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcee05695 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xceeda35e __of_get_address -EXPORT_SYMBOL vmlinux 0xcef6b18b blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0xcef91c24 param_array_ops +EXPORT_SYMBOL vmlinux 0xcef6bbb3 simple_fill_super +EXPORT_SYMBOL vmlinux 0xcef982f3 skb_find_text EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf01a760 tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xcf092caf get_tree_bdev -EXPORT_SYMBOL vmlinux 0xcf09534b pci_enable_link_state -EXPORT_SYMBOL vmlinux 0xcf22130b xfrm_register_km +EXPORT_SYMBOL vmlinux 0xcf21b969 tty_hung_up_p EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2cd6f8 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0xcf2ea86b __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf437187 elv_rb_del EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf638ce7 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xcf7582bc of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xcf7dd669 unregister_netdev -EXPORT_SYMBOL vmlinux 0xcf83a1df seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xcf52f287 param_get_ullong +EXPORT_SYMBOL vmlinux 0xcf915d3f put_watch_queue EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfaa6ece param_get_ulong -EXPORT_SYMBOL vmlinux 0xcfafa08b crypto_sha256_update -EXPORT_SYMBOL vmlinux 0xcfb93f24 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xcfab2e42 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xcfabfdc3 softnet_data +EXPORT_SYMBOL vmlinux 0xcfb0295b pci_clear_master EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfce64f7 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xcfcc9996 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcff14d27 of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0xd00edf01 arp_xmit -EXPORT_SYMBOL vmlinux 0xd010c731 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xd01b7053 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xd02b7e4e module_put -EXPORT_SYMBOL vmlinux 0xd02c9628 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xd02fcde6 get_vm_area -EXPORT_SYMBOL vmlinux 0xd034278b iterate_supers_type -EXPORT_SYMBOL vmlinux 0xd0414334 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xd0308d76 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xd0426385 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xd045d9b6 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05dc406 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xd063aad8 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xd06402d6 of_phy_find_device EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd0743841 devfreq_update_target EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07ea05f param_get_charp EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd0a024f6 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xd0a0811b iov_iter_revert -EXPORT_SYMBOL vmlinux 0xd0a356bb sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xd0b4043b bio_split +EXPORT_SYMBOL vmlinux 0xd091f471 rio_query_mport EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0bf4985 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xd0ced464 param_ops_bint -EXPORT_SYMBOL vmlinux 0xd0e4e69f ip_getsockopt -EXPORT_SYMBOL vmlinux 0xd0ec8221 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xd10d62ca vfs_statfs -EXPORT_SYMBOL vmlinux 0xd110e3e3 dma_map_resource -EXPORT_SYMBOL vmlinux 0xd12f9654 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xd0cfcb5f __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xd0d377fc phy_init_eee +EXPORT_SYMBOL vmlinux 0xd0e09454 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xd0e8e221 register_filesystem +EXPORT_SYMBOL vmlinux 0xd1199bde tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xd1363612 param_get_string EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd13fbccd max8925_reg_read -EXPORT_SYMBOL vmlinux 0xd1455d3f deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xd138af35 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xd139f287 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xd1426835 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xd1456588 simple_link +EXPORT_SYMBOL vmlinux 0xd15894f7 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0xd15cb96e nla_put -EXPORT_SYMBOL vmlinux 0xd15da2a6 tcp_filter -EXPORT_SYMBOL vmlinux 0xd167234f tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xd16741dd dentry_open -EXPORT_SYMBOL vmlinux 0xd16b1ea2 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xd1714d1b pci_read_vpd_any -EXPORT_SYMBOL vmlinux 0xd19472ed address_space_init_once +EXPORT_SYMBOL vmlinux 0xd16174cc bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xd181f563 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xd190571b mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1ad42dd dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0xd1b9f528 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xd1cc749d blk_execute_rq +EXPORT_SYMBOL vmlinux 0xd1a84b6c rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xd1be38d7 block_write_end EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1db5b86 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0xd1eedaf1 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xd1faafe3 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xd1f42c0f xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xd1f4c38a pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xd1fd6cff register_framebuffer EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd2054ec7 bmap EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd228f85e vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xd238e390 udp_ioctl +EXPORT_SYMBOL vmlinux 0xd23a086a of_get_next_parent EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked -EXPORT_SYMBOL vmlinux 0xd2433c2f sk_ns_capable -EXPORT_SYMBOL vmlinux 0xd2532459 fman_get_qman_channel_id EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd261db27 vfs_getattr EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd28caf62 dev_mc_add -EXPORT_SYMBOL vmlinux 0xd29c9c89 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xd29e72a1 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xd29f197e netdev_update_features +EXPORT_SYMBOL vmlinux 0xd2984ee4 dev_add_pack EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0xd2d6dc9f pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e1d856 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2e68ee9 nf_log_set EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2edb747 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xd2f1b6c6 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xd3050a4d page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xd3062a51 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xd30ac186 bdi_put +EXPORT_SYMBOL vmlinux 0xd31ac1f0 simple_dentry_operations EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd339af32 simple_open -EXPORT_SYMBOL vmlinux 0xd34790a6 d_instantiate +EXPORT_SYMBOL vmlinux 0xd3398146 devm_of_iomap EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset -EXPORT_SYMBOL vmlinux 0xd357c2f2 dm_kobject_release EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35c9705 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd36dbf43 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xd362b268 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd374bf8f xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xd37b3cbc dst_dev_put +EXPORT_SYMBOL vmlinux 0xd37f7930 pci_get_slot +EXPORT_SYMBOL vmlinux 0xd38362b4 vme_irq_request EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd395a692 kill_pid -EXPORT_SYMBOL vmlinux 0xd39cf85e iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0xd39dc3c4 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xd3a274c3 param_ops_string -EXPORT_SYMBOL vmlinux 0xd3baef13 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xd3d97aa3 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xd3ee03fb dev_change_flags -EXPORT_SYMBOL vmlinux 0xd3f37eb3 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xd3fb5b7a xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xd4023875 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0xd3bb0b04 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xd3c4e299 elevator_alloc +EXPORT_SYMBOL vmlinux 0xd3c546ff tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xd3d3824c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xd3ea1f16 secpath_set +EXPORT_SYMBOL vmlinux 0xd3fdddaf of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd437f91d rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0xd4540d8c mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xd459364b __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd4078981 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd416c291 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xd41e6fd1 __serio_register_port +EXPORT_SYMBOL vmlinux 0xd426e494 fb_io_write +EXPORT_SYMBOL vmlinux 0xd432f3f3 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xd4390232 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xd45a6d89 finish_no_open EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd465681d get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xd467aad5 register_netdev EXPORT_SYMBOL vmlinux 0xd469bccc __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd471b50b uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd47103ce register_cdrom +EXPORT_SYMBOL vmlinux 0xd477e6cb find_inode_nowait EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4a0ccb6 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd49dc777 devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4a72f9c genlmsg_put +EXPORT_SYMBOL vmlinux 0xd4a94309 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0xd4bb095f netif_tx_lock EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c079cd d_instantiate_new +EXPORT_SYMBOL vmlinux 0xd4ca8323 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd4caf2dd inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xd4cbf863 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xd4cc4e75 bdi_alloc EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d6ad65 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xd4fe0329 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xd508438e dquot_quota_off -EXPORT_SYMBOL vmlinux 0xd5129591 generic_fadvise -EXPORT_SYMBOL vmlinux 0xd51fa584 d_lookup +EXPORT_SYMBOL vmlinux 0xd4d30f9c netdev_state_change +EXPORT_SYMBOL vmlinux 0xd4d76647 input_inject_event +EXPORT_SYMBOL vmlinux 0xd4dbaae8 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xd4ffa9e1 unload_nls +EXPORT_SYMBOL vmlinux 0xd506e1a2 param_get_charp +EXPORT_SYMBOL vmlinux 0xd50c6550 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5287b58 ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd53c03da sock_from_file -EXPORT_SYMBOL vmlinux 0xd548d565 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xd54b3e9c cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xd56b0a2d genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0xd593e3d2 to_nd_dax -EXPORT_SYMBOL vmlinux 0xd59d7b9c rproc_alloc -EXPORT_SYMBOL vmlinux 0xd5b2cd6d has_capability_noaudit +EXPORT_SYMBOL vmlinux 0xd53dfb75 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xd569797b d_set_fallthru +EXPORT_SYMBOL vmlinux 0xd56a452f sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xd56b6355 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xd56ec62e flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xd58ca78a __bforget +EXPORT_SYMBOL vmlinux 0xd59a3d5d ptp_clock_event +EXPORT_SYMBOL vmlinux 0xd5a2a2cf finalize_exec EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5cf9bce param_set_bool -EXPORT_SYMBOL vmlinux 0xd5ecea88 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xd5d08463 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xd5ea6514 disk_check_media_change +EXPORT_SYMBOL vmlinux 0xd5f3581e vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd5f57c56 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xd5f70291 uart_get_baud_rate EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd604e79e posix_acl_chmod EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60873c4 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xd60f4fd0 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd617d6c9 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xd61af50e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xd6106b4b lookup_one EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd65a7068 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xd6671652 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xd668acf1 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xd6475dd0 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6729469 of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0xd689a003 of_find_node_with_property EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd69fba38 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xd6a14b42 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xd6a8595e __d_lookup_unhash_wake EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6aa3857 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xd6bda1b5 of_graph_is_present -EXPORT_SYMBOL vmlinux 0xd6dbe23a uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xd6df1186 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xd6b457aa param_set_ullong +EXPORT_SYMBOL vmlinux 0xd6e3434c phy_start EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fa7573 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xd6fcf9c9 amba_request_regions EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd7043894 nd_pfn_validate EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd7101f62 inet_ioctl EXPORT_SYMBOL vmlinux 0xd71104b3 vm_node_stat -EXPORT_SYMBOL vmlinux 0xd7261a71 uart_update_timeout -EXPORT_SYMBOL vmlinux 0xd72a70f1 mdiobb_read_c22 -EXPORT_SYMBOL vmlinux 0xd72e30bc fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xd7188c7d sock_no_accept +EXPORT_SYMBOL vmlinux 0xd71f240c security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xd72a9e0f insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xd732d3c9 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xd7356c1c ns_capable_setid EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active -EXPORT_SYMBOL vmlinux 0xd73709fe __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xd7375921 mii_ethtool_gset EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase +EXPORT_SYMBOL vmlinux 0xd73ac5d4 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd74820a2 aperture_remove_conflicting_pci_devices EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7511a88 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xd787c2bf udp_gro_complete -EXPORT_SYMBOL vmlinux 0xd7947a68 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xd750f633 release_pages +EXPORT_SYMBOL vmlinux 0xd75a7719 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xd76b7b15 neigh_lookup +EXPORT_SYMBOL vmlinux 0xd7703704 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xd781bcde add_to_pipe +EXPORT_SYMBOL vmlinux 0xd78ec4ee __lock_buffer EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd79c1c6a filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xd7b9a92e xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xd7bdbc4a blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xd7cd332c pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xd799886c copy_string_kernel +EXPORT_SYMBOL vmlinux 0xd7a3cc43 of_get_property +EXPORT_SYMBOL vmlinux 0xd7b375bf is_nd_dax +EXPORT_SYMBOL vmlinux 0xd7cdd2ce reuseport_alloc EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d2905f input_get_keycode EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0xd7e70f11 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xd7e82248 blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7fbb7a5 vfs_setpos +EXPORT_SYMBOL vmlinux 0xd7ee8a4f inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xd7f09c50 filemap_splice_read +EXPORT_SYMBOL vmlinux 0xd7fcc944 sock_gettstamp EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd828c1be empty_aops EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd82e869a ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xd834a066 of_device_register -EXPORT_SYMBOL vmlinux 0xd8356859 param_get_string EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd840c016 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xd8427d5c i2c_add_adapter -EXPORT_SYMBOL vmlinux 0xd8547102 dev_kfree_skb_any_reason -EXPORT_SYMBOL vmlinux 0xd8552d48 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xd863cd37 phy_error -EXPORT_SYMBOL vmlinux 0xd8643aae iov_iter_discard -EXPORT_SYMBOL vmlinux 0xd88aa7ae skb_copy -EXPORT_SYMBOL vmlinux 0xd893eaeb dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xd8629fc1 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xd8638998 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xd8744685 genphy_suspend +EXPORT_SYMBOL vmlinux 0xd87be02f max8925_reg_write +EXPORT_SYMBOL vmlinux 0xd87c1432 poll_freewait +EXPORT_SYMBOL vmlinux 0xd88a91cc sk_stream_error +EXPORT_SYMBOL vmlinux 0xd88f85fe proc_create_mount_point EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a79874 rpmh_write_async +EXPORT_SYMBOL vmlinux 0xd8a13daa neigh_app_ns +EXPORT_SYMBOL vmlinux 0xd8a83c34 d_genocide EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b59bcb generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xd8b02285 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd8b315a6 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8baed41 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xd8bf07d7 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd8cacfc6 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xd8cb67e4 inet_getname +EXPORT_SYMBOL vmlinux 0xd8d04d34 dquot_commit +EXPORT_SYMBOL vmlinux 0xd8d3e474 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xd8d4cb88 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xd8d85f82 seq_printf EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8fa6545 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xd8ec0d4c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xd904a033 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xd9191a10 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xd91d3ade uart_unregister_driver EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd9203920 register_shrinker EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd92e2f48 pid_task +EXPORT_SYMBOL vmlinux 0xd936a3f8 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xd94593aa scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xd946d204 ip_setsockopt EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd955ab16 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xd966c1f6 bioset_init -EXPORT_SYMBOL vmlinux 0xd96a3fc2 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xd9812f2d __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0xd981b365 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xd94c08ed km_state_expired +EXPORT_SYMBOL vmlinux 0xd9600339 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xd972778c sockopt_lock_sock EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98ac2fc copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xd99b39dd path_is_under +EXPORT_SYMBOL vmlinux 0xd9890601 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xd98ec852 vme_slot_num +EXPORT_SYMBOL vmlinux 0xd9902421 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xd997cdc8 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd9a1ec59 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b1587b inet6_ioctl EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9d3cc06 filemap_fault EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9f379e7 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xda0d5b59 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xd9e5dee1 rtc_add_group +EXPORT_SYMBOL vmlinux 0xd9f4fa65 mmc_add_host +EXPORT_SYMBOL vmlinux 0xda06f086 free_netdev EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda20542b generic_file_open -EXPORT_SYMBOL vmlinux 0xda2f115b tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xda34eba5 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3d4e9e iov_iter_zero EXPORT_SYMBOL vmlinux 0xda3f8a71 nla_append -EXPORT_SYMBOL vmlinux 0xda5296be bio_endio -EXPORT_SYMBOL vmlinux 0xda618b69 xattr_full_name -EXPORT_SYMBOL vmlinux 0xda68dfc8 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xda8ec63b tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xdaa0b049 qdisc_offload_query_caps -EXPORT_SYMBOL vmlinux 0xdaada87e nd_device_notify -EXPORT_SYMBOL vmlinux 0xdab7e8f9 sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0xda5a09b9 mdiobus_c45_read_nested +EXPORT_SYMBOL vmlinux 0xdabb280e __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xdac133e4 acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdb056c40 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xdb0b7ece nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xdb0f2db0 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0xdb159249 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xdadb9a6a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xdae56a49 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xdafacdb4 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xdb0d7e12 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xdb146c61 blk_mq_destroy_queue EXPORT_SYMBOL vmlinux 0xdb1edee6 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xdb2918c8 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xdb298abc sunxi_sram_release -EXPORT_SYMBOL vmlinux 0xdb314fe6 dquot_get_state -EXPORT_SYMBOL vmlinux 0xdb45d2f7 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xdb50a3d6 mount_bdev -EXPORT_SYMBOL vmlinux 0xdb634248 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xdb635423 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xdb40430c __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xdb4e92c5 vfs_statfs EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb70688f xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb7f9e0c free_task -EXPORT_SYMBOL vmlinux 0xdb914131 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xdb94ebd1 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xdb98fc60 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xdb9a8f33 bdi_alloc +EXPORT_SYMBOL vmlinux 0xdb7eb64b dev_add_offload +EXPORT_SYMBOL vmlinux 0xdb94ed9e tegra_dfll_runtime_resume EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0xdbabc6a3 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xdbc1e7b4 pci_set_master EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbcba1fe get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0xdbcce4ee fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbd993cf kmem_cache_free +EXPORT_SYMBOL vmlinux 0xdbdab4df ipv6_select_ident EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe982fc i2c_verify_client -EXPORT_SYMBOL vmlinux 0xdbf70ed2 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xdc01419c skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete -EXPORT_SYMBOL vmlinux 0xdc0f8648 sock_bindtoindex EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1e24c8 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xdc313fb9 jbd2_journal_restart EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc3ff2a3 bio_chain +EXPORT_SYMBOL vmlinux 0xdc42e635 twl6040_set_pll EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc52a8dc tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xdc5ab978 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xdc674cfa unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xdc676127 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xdc8f691e fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xdc9e3bca fwnode_iomap -EXPORT_SYMBOL vmlinux 0xdca72c03 device_add_disk -EXPORT_SYMBOL vmlinux 0xdca7d129 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xdc54f8d1 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xdc65150d backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xdc6a1369 inet6_release +EXPORT_SYMBOL vmlinux 0xdc92e315 page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb6a809 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0xdcb764ad memset EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcd27bff tcp_parse_options +EXPORT_SYMBOL vmlinux 0xdcda2422 ip_local_deliver EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdce23ed6 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xdce9c5f1 bdi_register -EXPORT_SYMBOL vmlinux 0xdcebed72 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xdcf42cdf pci_select_bars -EXPORT_SYMBOL vmlinux 0xdd004042 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xdceab50e scsi_scan_host +EXPORT_SYMBOL vmlinux 0xdceeaf67 pci_dev_get +EXPORT_SYMBOL vmlinux 0xdcf3c7c6 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xdcfa4774 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2ac0ea set_cached_acl +EXPORT_SYMBOL vmlinux 0xdd287b7a phy_support_asym_pause EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd3f0935 of_platform_device_create EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xdd5cb7e5 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xdd4d62ab d_invalidate +EXPORT_SYMBOL vmlinux 0xdd525c87 dev_remove_pack EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd77716e inet_stream_connect +EXPORT_SYMBOL vmlinux 0xdd742039 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xdd79e06f sock_sendmsg EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd894555 dev_close -EXPORT_SYMBOL vmlinux 0xdd8e8bcf dentry_path_raw -EXPORT_SYMBOL vmlinux 0xdd9a1056 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xdda12c7e gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xdda16ad3 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xdd98b2da __icmp_send +EXPORT_SYMBOL vmlinux 0xdda1bff2 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddb11ad8 from_kgid -EXPORT_SYMBOL vmlinux 0xddb4b2b5 sk_wait_data -EXPORT_SYMBOL vmlinux 0xddc043b4 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xddcb113b tcp_read_done -EXPORT_SYMBOL vmlinux 0xdddb3778 f_setown -EXPORT_SYMBOL vmlinux 0xdde024b4 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xddf393d8 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xddae3972 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xddaeb94a dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xddc17285 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xddc41cc1 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xdde58703 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xddf61de0 dquot_commit_info EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde145a1d inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xde1bb3f6 skb_clone_sk EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde36ca24 __do_once_done -EXPORT_SYMBOL vmlinux 0xde4b88c6 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xde50a5c6 get_watch_queue -EXPORT_SYMBOL vmlinux 0xde5d8c22 sock_edemux +EXPORT_SYMBOL vmlinux 0xde31e096 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xde36b463 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xde536751 rtnl_configure_link EXPORT_SYMBOL vmlinux 0xde67419e sg_split -EXPORT_SYMBOL vmlinux 0xde676680 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xde7137d4 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xde739f83 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xde7c24bf file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xde818ab6 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xde93a194 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xdeacf1eb generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xdeb69f76 set_create_files_as +EXPORT_SYMBOL vmlinux 0xde6acd97 elv_rb_find +EXPORT_SYMBOL vmlinux 0xde779d05 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xde882ee4 inet6_protos +EXPORT_SYMBOL vmlinux 0xde951b56 __brelse +EXPORT_SYMBOL vmlinux 0xde9def57 of_node_get +EXPORT_SYMBOL vmlinux 0xdeb92f70 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xdeb92f9a configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0xdeb99119 dma_fence_init -EXPORT_SYMBOL vmlinux 0xdec359e1 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xdebd2cf1 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xdec2ab1b vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded79dca vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0xdeddbcd7 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xdeeead63 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf04bbe4 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xdf14bbcf input_register_handle -EXPORT_SYMBOL vmlinux 0xdf1f41aa kernel_write EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3b6c79 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xdf454a55 key_move +EXPORT_SYMBOL vmlinux 0xdf464991 dev_addr_mod +EXPORT_SYMBOL vmlinux 0xdf47660f proc_create +EXPORT_SYMBOL vmlinux 0xdf4b25fc tcf_em_unregister EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6086b0 file_modified -EXPORT_SYMBOL vmlinux 0xdf6a4255 iterate_dir -EXPORT_SYMBOL vmlinux 0xdf7c8107 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xdf6497dc thaw_bdev +EXPORT_SYMBOL vmlinux 0xdf6dbd38 inet_dgram_connect EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf95fb47 __scsi_add_device EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents +EXPORT_SYMBOL vmlinux 0xdf9f8b1f nd_dax_probe +EXPORT_SYMBOL vmlinux 0xdfa10ab2 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0xdfa5f94d security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xdfb52fd2 flow_rule_alloc EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream -EXPORT_SYMBOL vmlinux 0xdfc940b2 filemap_get_folios_contig EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd04f49 ihold +EXPORT_SYMBOL vmlinux 0xdfd6334e ppp_input EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdfd83666 do_SAK -EXPORT_SYMBOL vmlinux 0xdfef4125 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xdff3035d mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xdff5f659 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xdff26cf8 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xdff6f850 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe00472e6 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xe00ec5df eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe00fcbf7 truncate_setsize -EXPORT_SYMBOL vmlinux 0xe022b34e genl_notify +EXPORT_SYMBOL vmlinux 0xe0129bf9 kthread_bind +EXPORT_SYMBOL vmlinux 0xe016247b ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xe01e48fd pci_map_rom +EXPORT_SYMBOL vmlinux 0xe02a4078 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe03f9965 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xe0408b0c pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe042c542 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0xe0523d94 pci_find_capability -EXPORT_SYMBOL vmlinux 0xe05c4aae truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xe042807b register_fib_notifier +EXPORT_SYMBOL vmlinux 0xe0431a68 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xe06e11c1 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xe0766c08 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xe07b71a8 mmc_register_driver EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe0811f2a sget EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe08899cd bio_integrity_prep EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe091e891 noop_dirty_folio -EXPORT_SYMBOL vmlinux 0xe092f55f touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xe09d9ff3 hid_bpf_ops -EXPORT_SYMBOL vmlinux 0xe0a73df0 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b249bf pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xe0bec8f4 alloc_anon_inode EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0d93a80 netif_device_attach -EXPORT_SYMBOL vmlinux 0xe0f1f2f8 inet_stream_ops -EXPORT_SYMBOL vmlinux 0xe0f23d96 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xe10fcc6d inode_dio_wait +EXPORT_SYMBOL vmlinux 0xe0cb3846 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xe0e77a6d scsi_print_command +EXPORT_SYMBOL vmlinux 0xe0ebf5ac mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xe10bd2c4 scsicam_bios_param EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe1158fef fb_pan_display EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe1278757 pci_find_resource EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe1307100 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xe136980b blk_queue_io_min EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13f02c8 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xe162d411 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xe14a8731 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xe14d3ade key_task_permission EXPORT_SYMBOL vmlinux 0xe17568e3 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0xe19c15b0 dquot_commit_info -EXPORT_SYMBOL vmlinux 0xe19d4a0d remap_pfn_range -EXPORT_SYMBOL vmlinux 0xe1b55b96 release_sock -EXPORT_SYMBOL vmlinux 0xe1c18ac3 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0xe1c202f8 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xe1da5e38 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xe1da7c1b tty_port_hangup +EXPORT_SYMBOL vmlinux 0xe18cc6f5 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xe1a82d76 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xe1a8a76b of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0xe1da1e7d pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xe1dacb9a phy_device_remove +EXPORT_SYMBOL vmlinux 0xe1db033d unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e3da19 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xe1f8f768 flow_rule_match_l2tpv3 -EXPORT_SYMBOL vmlinux 0xe1fc0997 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xe21d814c get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xe218c8a2 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe2242757 tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0xe227a23a register_mii_timestamper -EXPORT_SYMBOL vmlinux 0xe230b9ff d_find_alias -EXPORT_SYMBOL vmlinux 0xe2312c95 param_set_ullong -EXPORT_SYMBOL vmlinux 0xe233708d xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xe257ddab blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0xe2617b15 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xe2733d98 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xe2898dd5 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xe23a611d fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xe23e8fb6 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xe271f15a d_mark_dontcache EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up -EXPORT_SYMBOL vmlinux 0xe298bbd9 __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xe29afa29 kill_block_super -EXPORT_SYMBOL vmlinux 0xe2b5f67e blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xe2a87e31 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xe2b272e3 mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0xe2bbfa56 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xe2ce3f39 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xe2ce4894 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xe2d071e0 simple_fill_super +EXPORT_SYMBOL vmlinux 0xe2c9ff4f filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xe2d49f62 vlan_vid_del EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2dd689e flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0xe2ec1469 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xe2ee16c0 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xe31a5817 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xe2eac701 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xe2ef6d78 nf_reinject +EXPORT_SYMBOL vmlinux 0xe31035d6 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe34df963 devm_clk_put -EXPORT_SYMBOL vmlinux 0xe36b9bc6 inet_bind -EXPORT_SYMBOL vmlinux 0xe38b0b84 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xe331a731 tty_lock +EXPORT_SYMBOL vmlinux 0xe34b79e9 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xe3527ee9 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe353ba27 write_inode_now +EXPORT_SYMBOL vmlinux 0xe35f2375 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xe377db81 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xe37e6c88 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xe37f7cb6 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xe3827421 phy_get_pause +EXPORT_SYMBOL vmlinux 0xe387e27e jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0xe392bb00 security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3be2fa8 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xe3e3756b pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xe3babb23 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe3cf974b init_task +EXPORT_SYMBOL vmlinux 0xe3e0a199 elv_rb_del EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe40e4e47 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xe4245758 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xe428f6d0 truncate_pagecache -EXPORT_SYMBOL vmlinux 0xe42bc4a1 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xe4389ea1 mmc_can_trim -EXPORT_SYMBOL vmlinux 0xe4426246 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xe4583208 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xe41d3652 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xe42de366 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xe45abf9e from_kgid_munged EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe48bb7af md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xe4912f50 find_inode_nowait -EXPORT_SYMBOL vmlinux 0xe4b853a6 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xe465932e fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xe46f5448 __sock_create +EXPORT_SYMBOL vmlinux 0xe47f884c deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xe481f729 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xe486e99d sk_net_capable +EXPORT_SYMBOL vmlinux 0xe4974613 __getblk_gfp EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4c14928 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xe4cbff0b mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xe4d873b4 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xe4dd5c46 of_get_mac_address_nvmem -EXPORT_SYMBOL vmlinux 0xe4f9bb0e inet6_add_offload -EXPORT_SYMBOL vmlinux 0xe503dc74 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xe506afbc clk_get -EXPORT_SYMBOL vmlinux 0xe517f230 bdi_unregister -EXPORT_SYMBOL vmlinux 0xe52352ec proc_create_data +EXPORT_SYMBOL vmlinux 0xe4bea879 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xe4c1b52e rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xe4e7215e bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xe4fb7fb8 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe5195fb8 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe523c8bf __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xe537c75e scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xe5485992 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xe5496cc6 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xe56916b1 nf_log_unset -EXPORT_SYMBOL vmlinux 0xe57ea645 find_vma +EXPORT_SYMBOL vmlinux 0xe549b205 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe5538aa2 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xe5549ad2 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xe55d18da __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xe565a587 fs_param_is_enum EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe58f9548 try_lookup_one_len EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5956c32 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xe59c50e4 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xe5a32c67 iov_iter_init +EXPORT_SYMBOL vmlinux 0xe5c121a1 unregister_key_type EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set -EXPORT_SYMBOL vmlinux 0xe5c6a040 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5ce8401 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0xe5cee291 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xe5cfd9a9 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xe60209ab devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xe5e12b4e is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xe5e9a9bc security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xe5faa669 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xe6059c40 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xe61b3083 bmap EXPORT_SYMBOL vmlinux 0xe61b912a security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xe629b6eb skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0xe62fbad9 __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xe6365413 padata_free +EXPORT_SYMBOL vmlinux 0xe641a825 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe674b745 mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0xe679eb05 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xe685b671 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe66031c3 proc_set_size EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe6acce80 inet_listen -EXPORT_SYMBOL vmlinux 0xe6c55d0f __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d6cc50 flow_rule_match_control EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe6fee57d of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xe6ffcebe __seq_open_private -EXPORT_SYMBOL vmlinux 0xe71a4273 skb_tx_error +EXPORT_SYMBOL vmlinux 0xe6fd4c00 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xe704bafc udp_seq_next EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe741fa22 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xe7624a7d balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xe76d1767 tso_build_data -EXPORT_SYMBOL vmlinux 0xe7943639 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xe7968cdb mdiobb_write_c22 -EXPORT_SYMBOL vmlinux 0xe79e9fad folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xe739fdd5 sock_no_connect +EXPORT_SYMBOL vmlinux 0xe7530915 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xe76692e9 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe767c054 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xe76f6836 napi_build_skb +EXPORT_SYMBOL vmlinux 0xe77865df try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe79d92ec skb_eth_push EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a35c3a __nd_driver_register -EXPORT_SYMBOL vmlinux 0xe7a9a736 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7ae0066 phy_suspend +EXPORT_SYMBOL vmlinux 0xe7ae4e9d mdio_device_free +EXPORT_SYMBOL vmlinux 0xe7afd728 param_get_short EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7d41f89 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xe7d2ed13 dev_kfree_skb_irq_reason EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e1a78a ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xe7e42835 vfs_readlink -EXPORT_SYMBOL vmlinux 0xe80984bd i2c_find_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0xe810e31f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe7db23eb dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe7dcfbbe blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xe7f1e86c __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe7f4dac3 param_ops_short +EXPORT_SYMBOL vmlinux 0xe7f7ee63 amba_release_regions +EXPORT_SYMBOL vmlinux 0xe7f9bb24 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xe8045180 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xe808ef87 page_cache_next_miss EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe82298d5 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xe85dc9f0 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xe825d1ef phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xe8344273 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xe840a9d3 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe86290cb d_drop -EXPORT_SYMBOL vmlinux 0xe86d9214 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xe873b769 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xe87554f2 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xe87790e7 seq_open_private -EXPORT_SYMBOL vmlinux 0xe881fd94 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xe86f83a4 pci_set_master +EXPORT_SYMBOL vmlinux 0xe87ce8c2 nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xe8a333be kset_unregister -EXPORT_SYMBOL vmlinux 0xe8b51b8e devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xe8bda4a8 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xe8c11e00 fifo_set_limit -EXPORT_SYMBOL vmlinux 0xe8c4b2ed mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0xe8c5d1fc __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xe8cf3f01 pci_get_class +EXPORT_SYMBOL vmlinux 0xe8c84e61 kernel_param_unlock EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8d6fda0 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xe8df8d66 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe8fe0975 register_quota_format EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get -EXPORT_SYMBOL vmlinux 0xe90990a8 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xe9084bdf mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xe90964f0 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe927c4ae do_clone_file_range -EXPORT_SYMBOL vmlinux 0xe949916e md_done_sync -EXPORT_SYMBOL vmlinux 0xe94e54d1 pci_get_device +EXPORT_SYMBOL vmlinux 0xe91c53bd xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xe93f0532 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xe9463add sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xe94a5fa9 d_lookup +EXPORT_SYMBOL vmlinux 0xe94fc03a devfreq_get_freq_range EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95864e8 serio_rescan -EXPORT_SYMBOL vmlinux 0xe967229f par_io_of_config -EXPORT_SYMBOL vmlinux 0xe98f27ac dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xe9aca61e follow_pfn +EXPORT_SYMBOL vmlinux 0xe95492d2 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xe95953f5 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xe98420a5 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe98bfcf5 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xe995c7e7 of_device_is_available +EXPORT_SYMBOL vmlinux 0xe9a69a3f eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b9a509 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xe9c12a25 generic_listxattr +EXPORT_SYMBOL vmlinux 0xe9c3ed65 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe9c4f9e6 proto_register EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0xe9f728a1 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe9ff8b5d copy_page_from_iter EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xe9ffcafb inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xea061464 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xea0a84fe get_watch_queue +EXPORT_SYMBOL vmlinux 0xea13c13b tty_driver_kref_put EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea49a8a6 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xea4ff462 bio_add_page -EXPORT_SYMBOL vmlinux 0xea5c82a5 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xea5c3382 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea758097 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xea7a335b input_mt_sync_frame EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options -EXPORT_SYMBOL vmlinux 0xea9ebda4 mmc_command_done +EXPORT_SYMBOL vmlinux 0xea97ef42 _dev_warn +EXPORT_SYMBOL vmlinux 0xea9bea98 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xeaaa0f64 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeadf7914 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xeae0007f dump_align EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaf4baa3 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0xeaf57dbf skb_condense +EXPORT_SYMBOL vmlinux 0xeaf5a63a dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xeafbb4cf dma_unmap_resource EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeafdb81c proc_set_user EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xeb21e8e2 pm8606_osc_enable EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb34bc6f flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb39995a pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xeb3c0ce7 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xeb3f1c7f mdiobb_write_c22 EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb5f4a11 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xeb6cb016 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0xeb6d41ef udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xeb71b98c pskb_expand_head +EXPORT_SYMBOL vmlinux 0xeb6c83f4 zap_page_range_single +EXPORT_SYMBOL vmlinux 0xeb6d6fea netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb785aa6 has_capability EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb8bd152 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xeb9044ef ip_queue_xmit EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba4ca3c vga_client_register -EXPORT_SYMBOL vmlinux 0xeba763c8 dcb_getapp -EXPORT_SYMBOL vmlinux 0xebb151bc audit_log_start -EXPORT_SYMBOL vmlinux 0xebbc4665 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xebd6014a mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xebe575c1 generic_buffers_fsync -EXPORT_SYMBOL vmlinux 0xebf65c65 kthread_stop -EXPORT_SYMBOL vmlinux 0xebf88b0f tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0xebf8fa3b tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xebfe82c8 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xec17ebab fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0xec1ccf88 ethtool_aggregate_rmon_stats -EXPORT_SYMBOL vmlinux 0xec1e1bcc fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xec20b7a9 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0xec20b840 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xebb346cf security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xebc50294 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xebd061b1 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xebdddc08 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0xebebefc7 dcb_getapp +EXPORT_SYMBOL vmlinux 0xec05c84b icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xec0a8de3 scsi_done +EXPORT_SYMBOL vmlinux 0xec0f2c2f mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xec2a1aab crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec329a98 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec385730 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xec3b328d find_vma_intersection EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec425e9e mmc_can_erase +EXPORT_SYMBOL vmlinux 0xec4d2231 param_ops_int EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec541b1c pci_request_irq -EXPORT_SYMBOL vmlinux 0xec676a77 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xec6c3182 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xec80115e dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xec832aa5 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xec8aae86 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xeca761c6 dentry_create +EXPORT_SYMBOL vmlinux 0xec5180a7 dquot_disable +EXPORT_SYMBOL vmlinux 0xec6fb6b4 get_user_pages +EXPORT_SYMBOL vmlinux 0xec7afada __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xec818650 tcp_req_err +EXPORT_SYMBOL vmlinux 0xec82a00a scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xec8a5f5e __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xec8d259a blk_start_plug EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecaa7874 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xece546e1 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xecb13329 ethtool_aggregate_rmon_stats +EXPORT_SYMBOL vmlinux 0xecbd5fd1 serio_interrupt +EXPORT_SYMBOL vmlinux 0xecce80a0 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xece40f36 param_get_int EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecf08b45 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xecfc4dab pci_resize_resource EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed04357a tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xed2500bc pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xed3c6ddf _copy_from_iter -EXPORT_SYMBOL vmlinux 0xed48ae1d follow_down +EXPORT_SYMBOL vmlinux 0xed026c3d to_nd_btt +EXPORT_SYMBOL vmlinux 0xed26cf82 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xed483c19 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed5df515 seq_vprintf +EXPORT_SYMBOL vmlinux 0xed5df650 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xed648251 mfd_remove_devices EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xedabad60 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0xedb06354 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xedb1b559 jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbdac99 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xedbb96ec of_find_compatible_node EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc3b639 sock_no_bind -EXPORT_SYMBOL vmlinux 0xedc5cb67 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xedd0dab1 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xedc291c6 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xedc41903 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xedcd08d0 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xedf54287 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xedfc8e9b skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xedd64acb tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xedf530da udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xedfaa562 tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xee0412cd pci_release_regions -EXPORT_SYMBOL vmlinux 0xee2ac128 bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0xee2b7e30 input_close_device EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3164f1 fwnode_iomap +EXPORT_SYMBOL vmlinux 0xee5449ff setattr_should_drop_sgid EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee5cf482 kthread_bind -EXPORT_SYMBOL vmlinux 0xee6900f8 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0xee5d1ec8 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xee78051c tty_unregister_driver EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee813662 netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xee85dc61 sock_no_connect +EXPORT_SYMBOL vmlinux 0xee7f6fe5 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xee8051b7 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xee83f84a stream_open +EXPORT_SYMBOL vmlinux 0xee85656d mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8aad6e fasync_helper EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xeea28f69 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xeea47ecc scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xee9833f6 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xee9b74e7 page_get_link +EXPORT_SYMBOL vmlinux 0xeea01a0e pci_restore_state EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb0b58a redraw_screen -EXPORT_SYMBOL vmlinux 0xeec8a3e8 fs_param_is_path -EXPORT_SYMBOL vmlinux 0xeed7da0f param_set_int -EXPORT_SYMBOL vmlinux 0xeee479ea rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xeeb6ee1d dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xeec0f96c devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xeedf19fd pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeeef8b80 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0xef0c69ad mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xef4d3873 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xef6b080c skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xef7e6311 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xeefdfcbf fb_set_suspend +EXPORT_SYMBOL vmlinux 0xef04d34a netlink_unicast +EXPORT_SYMBOL vmlinux 0xef181531 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xef1ae4fe flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xef262fff sock_wfree +EXPORT_SYMBOL vmlinux 0xef2f6591 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xef3fd0d2 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xef554650 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xef5e983c mmc_request_done +EXPORT_SYMBOL vmlinux 0xef6043f6 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xef6594ad phy_connect +EXPORT_SYMBOL vmlinux 0xef7615ec input_close_device +EXPORT_SYMBOL vmlinux 0xef8531d2 d_splice_alias EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8fc312 ipmi_platform_add -EXPORT_SYMBOL vmlinux 0xef9b1956 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xef8c60f9 kill_pgrp +EXPORT_SYMBOL vmlinux 0xefa85451 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xefabec3c pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefb500b2 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0xefbb5d0d device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xefc2decc pps_register_source +EXPORT_SYMBOL vmlinux 0xefb69884 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xefc829cd __do_once_done EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff6365d security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xeff59ea1 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xeff7e3cf file_fdatawait_range EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0040f1a xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xf0216b9a folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xf003b716 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xf0180b4b gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf07519d8 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xf02edff7 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xf0310155 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf033957d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xf056397a find_vma +EXPORT_SYMBOL vmlinux 0xf0606a5b pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xf06cc296 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xf06f8b02 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xf0700ed7 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xf07442bb __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0xf085bb9e dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xf081b6a0 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xf08e2fea md_error EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0aee8df input_set_capability +EXPORT_SYMBOL vmlinux 0xf0a3c2bf dev_kfree_skb_any_reason +EXPORT_SYMBOL vmlinux 0xf0a7173f km_state_notify EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data EXPORT_SYMBOL vmlinux 0xf0b9a4b9 commit_creds -EXPORT_SYMBOL vmlinux 0xf0c75892 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xf0ccd3f3 param_get_hexint -EXPORT_SYMBOL vmlinux 0xf0fd2e64 pci_get_slot +EXPORT_SYMBOL vmlinux 0xf0be1e8b mdio_bus_type +EXPORT_SYMBOL vmlinux 0xf0be607c dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xf0f756c8 tcp_peek_len EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xf101a8aa tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xf101f924 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xf10832bb kernel_accept -EXPORT_SYMBOL vmlinux 0xf1119c9e free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xf1142eb3 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xf0ff272b page_pool_destroy +EXPORT_SYMBOL vmlinux 0xf1148b4b inet_frag_find EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1268c4d iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xf1313af1 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xf1315c25 vfs_fsync -EXPORT_SYMBOL vmlinux 0xf138b71e __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xf165f16b devm_arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xf169727d simple_rmdir +EXPORT_SYMBOL vmlinux 0xf14bb6e3 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xf153a78b vm_map_pages +EXPORT_SYMBOL vmlinux 0xf156ab8c ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xf1698750 crypto_sha3_init +EXPORT_SYMBOL vmlinux 0xf16b60dd vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xf16b6dc4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xf16ce3f4 single_open +EXPORT_SYMBOL vmlinux 0xf16f134c netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xf170f3b1 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xf171a3a9 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf182bc88 register_console EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf191f517 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xf1869e10 config_group_find_item +EXPORT_SYMBOL vmlinux 0xf190f1c1 tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream -EXPORT_SYMBOL vmlinux 0xf1ad57b5 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xf1cdc945 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xf1a88c12 put_disk +EXPORT_SYMBOL vmlinux 0xf1aaf78a pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf1abd435 path_is_under +EXPORT_SYMBOL vmlinux 0xf1adc5d0 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xf1bf16a3 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xf1d0af53 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1de24b4 vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0xf1dfca0d __module_get EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e3f40b is_nd_dax EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf20a1fb3 __neigh_create -EXPORT_SYMBOL vmlinux 0xf221370f i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xf226e543 netdev_crit -EXPORT_SYMBOL vmlinux 0xf22f0ce9 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xf2304dcf security_path_rename +EXPORT_SYMBOL vmlinux 0xf203c6ff sock_init_data +EXPORT_SYMBOL vmlinux 0xf2073e78 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xf21aafbc rt6_lookup +EXPORT_SYMBOL vmlinux 0xf225d897 sk_alloc EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2505d2b ptp_clock_index -EXPORT_SYMBOL vmlinux 0xf2506ac0 gro_cells_init -EXPORT_SYMBOL vmlinux 0xf254c9b0 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xf25724a4 of_cpu_device_node_get +EXPORT_SYMBOL vmlinux 0xf24cc40d simple_release_fs +EXPORT_SYMBOL vmlinux 0xf25ac73b inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xf25cf61a set_cached_acl EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf26c23d9 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xf2765d61 security_sock_graft EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf28e02e9 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xf28fdc17 serio_unregister_port EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf297dca5 pnp_device_detach -EXPORT_SYMBOL vmlinux 0xf29bf008 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xf2a4e326 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xf29fef0d seq_bprintf EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0xf2b2c77e fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xf2b7acbf jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xf2bfb15f filemap_check_errors EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2ca3a24 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xf2d93ec9 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xf2db8467 inode_update_time +EXPORT_SYMBOL vmlinux 0xf2dc5d7d vmf_insert_pfn EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2e9d7d3 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xf2e9f117 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xf2f4da78 device_match_acpi_handle EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2fa88ca phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xf319fbf5 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xf32a8422 inet_sk_get_local_port_range -EXPORT_SYMBOL vmlinux 0xf333c77c of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0xf34331ad xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xf307427f arp_tbl +EXPORT_SYMBOL vmlinux 0xf30c1581 io_uring_destruct_scm +EXPORT_SYMBOL vmlinux 0xf30c7493 vfs_fsync EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35782ed zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xf35796f7 of_find_all_nodes EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0xf369ed0d generic_setlease EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf37f9d95 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xf37a60b3 key_put +EXPORT_SYMBOL vmlinux 0xf3829031 register_qdisc +EXPORT_SYMBOL vmlinux 0xf38c2da5 inode_permission EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39264a2 mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf394042c ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xf3974e05 user_path_at_empty EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3a59f6d pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xf3c05988 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xf3c1b3af phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xf3c476e2 sock_rfree -EXPORT_SYMBOL vmlinux 0xf3c574b3 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xf3b90494 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xf3c9ecd1 __devm_release_region +EXPORT_SYMBOL vmlinux 0xf3cd03b0 backlight_device_register EXPORT_SYMBOL vmlinux 0xf3cfa76a __nla_put -EXPORT_SYMBOL vmlinux 0xf3d96944 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xf3db5611 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xf3d3c65a vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xf3d4bd37 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e6bfbd keyring_alloc -EXPORT_SYMBOL vmlinux 0xf3f1665e tty_port_tty_set -EXPORT_SYMBOL vmlinux 0xf3f4182a single_open -EXPORT_SYMBOL vmlinux 0xf3fcb8f5 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xf4032f19 vme_dma_request -EXPORT_SYMBOL vmlinux 0xf40ff0b0 dquot_commit -EXPORT_SYMBOL vmlinux 0xf414c99b bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xf41ebddc devm_register_netdev -EXPORT_SYMBOL vmlinux 0xf42f2293 dcb_delrewr +EXPORT_SYMBOL vmlinux 0xf3f5a744 tcp_prot +EXPORT_SYMBOL vmlinux 0xf3fb39fc bioset_init +EXPORT_SYMBOL vmlinux 0xf40bf960 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xf4187311 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xf41904c6 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xf4200694 cdev_device_add +EXPORT_SYMBOL vmlinux 0xf4259c29 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xf4319a0e netif_carrier_on EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid -EXPORT_SYMBOL vmlinux 0xf4532251 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0xf4610d16 kernel_tmpfile_open -EXPORT_SYMBOL vmlinux 0xf4668cc6 _copy_to_iter EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf476c7cb pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xf4881138 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xf49a14e4 fd_install -EXPORT_SYMBOL vmlinux 0xf4a7f99c phy_attach -EXPORT_SYMBOL vmlinux 0xf4af6a63 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xf4934ad7 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf493b4b6 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xf4a7a8d1 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xf4ae8201 __scm_destroy EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4b7edb1 mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0xf4d00dc6 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4ef10ec blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf51b3379 inode_init_always -EXPORT_SYMBOL vmlinux 0xf51ba79f dev_deactivate -EXPORT_SYMBOL vmlinux 0xf52d1916 mmc_erase -EXPORT_SYMBOL vmlinux 0xf532f605 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xf539c9b0 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xf5056fda fb_set_cmap +EXPORT_SYMBOL vmlinux 0xf508126f dev_load +EXPORT_SYMBOL vmlinux 0xf530b0c6 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf54f22cb xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xf5581205 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0xf558b99b input_get_timestamp -EXPORT_SYMBOL vmlinux 0xf56a6a6f param_get_bool +EXPORT_SYMBOL vmlinux 0xf56b866d ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xf5861602 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xf597d942 netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5b8ee30 bio_alloc_clone -EXPORT_SYMBOL vmlinux 0xf5da3e3a get_tree_keyed -EXPORT_SYMBOL vmlinux 0xf5daff7d sock_alloc_file +EXPORT_SYMBOL vmlinux 0xf5a3ae6c phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xf5a46b7e eth_header_cache +EXPORT_SYMBOL vmlinux 0xf5dca6d1 truncate_setsize EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5e82686 uart_resume_port +EXPORT_SYMBOL vmlinux 0xf5f7392f submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xf613e1ba shmem_aops +EXPORT_SYMBOL vmlinux 0xf61dc165 vlan_vid_add EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx EXPORT_SYMBOL vmlinux 0xf6340eed kset_register -EXPORT_SYMBOL vmlinux 0xf63e2f67 __bio_advance EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6563624 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xf65da512 backlight_force_update -EXPORT_SYMBOL vmlinux 0xf65e4783 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xf65f7b77 new_inode +EXPORT_SYMBOL vmlinux 0xf65141ac phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xf6632474 unix_attach_fds EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf66a2d1f uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xf66f8ba4 of_match_node EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68469e3 phy_read_paged -EXPORT_SYMBOL vmlinux 0xf6949d13 config_item_get -EXPORT_SYMBOL vmlinux 0xf69aee94 clear_nlink -EXPORT_SYMBOL vmlinux 0xf6aa43c8 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xf6b625e6 inode_init_once -EXPORT_SYMBOL vmlinux 0xf6bb86ec __getblk_gfp -EXPORT_SYMBOL vmlinux 0xf6cc00b6 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xf69fb1a1 lock_rename +EXPORT_SYMBOL vmlinux 0xf6a4fa64 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xf6da20b8 devm_free_irq EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ed594a dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fa9d5f read_cache_page -EXPORT_SYMBOL vmlinux 0xf6fb4d49 kernel_getsockname EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf714fd35 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xf70a5df3 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xf7127017 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74b0e95 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xf74e92b8 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xf755b6c8 skb_split +EXPORT_SYMBOL vmlinux 0xf73c90ef sk_ioctl +EXPORT_SYMBOL vmlinux 0xf743471b eth_get_headlen +EXPORT_SYMBOL vmlinux 0xf755576d genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xf75e25d4 phy_get_eee_err EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77512eb proto_unregister EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf77e966e xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xf795ee61 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xf7a5a9bd scsi_execute_cmd -EXPORT_SYMBOL vmlinux 0xf7ab46cc elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xf7abd28e cdev_init -EXPORT_SYMBOL vmlinux 0xf7d140a1 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xf777fafe tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xf7b233eb pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xf7baec8c vfs_rmdir +EXPORT_SYMBOL vmlinux 0xf7c316d1 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xf7ca3e6e blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr -EXPORT_SYMBOL vmlinux 0xf7ea7760 folio_migrate_mapping EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf7f2e743 vfs_link -EXPORT_SYMBOL vmlinux 0xf7f39667 __sock_create -EXPORT_SYMBOL vmlinux 0xf7fd5ee4 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0xf8063162 input_register_handler -EXPORT_SYMBOL vmlinux 0xf809d0e4 input_set_keycode EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf827f853 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xf82bd363 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xf826382a fixed_size_llseek EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf83346b4 of_get_property -EXPORT_SYMBOL vmlinux 0xf84ac4b3 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xf82ee5e1 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xf8364ee4 scmd_printk +EXPORT_SYMBOL vmlinux 0xf8374ad0 blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84c2cb5 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xf84df664 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xf8539384 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xf858240b fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0xf871fd30 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0xf8832e12 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xf8760e18 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0xf88ecec4 kvmemdup -EXPORT_SYMBOL vmlinux 0xf895fdfe passthru_features_check -EXPORT_SYMBOL vmlinux 0xf89bb61c __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xf8acf92b of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xf8c8b909 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf89ad937 poll_initwait +EXPORT_SYMBOL vmlinux 0xf8a0e048 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xf8b7351a posix_lock_file +EXPORT_SYMBOL vmlinux 0xf8b9e1b6 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xf8c0c038 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xf8ca4579 input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8d91314 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xf8e3ddf1 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xf8eb8501 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xf8d695ae dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf90efbdd inc_nlink +EXPORT_SYMBOL vmlinux 0xf90a8662 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf9243a1d ip6_frag_next -EXPORT_SYMBOL vmlinux 0xf92ebbea serio_unregister_child_port EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt EXPORT_SYMBOL vmlinux 0xf94536c2 proc_dointvec -EXPORT_SYMBOL vmlinux 0xf94d1726 pci_dev_get -EXPORT_SYMBOL vmlinux 0xf94d535e blk_put_queue EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf95ce44a generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xf95dae19 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xf9669ce3 phy_driver_register -EXPORT_SYMBOL vmlinux 0xf96c6817 get_tree_single +EXPORT_SYMBOL vmlinux 0xf9704caf fman_get_bmi_max_fifo_size EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf97c9d8b n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xf97e2d99 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xf98c78fb d_tmpfile -EXPORT_SYMBOL vmlinux 0xf98f8228 edac_mc_find -EXPORT_SYMBOL vmlinux 0xf992e4e1 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xf993c7f0 mdiobus_free +EXPORT_SYMBOL vmlinux 0xf9862d9b inet_listen +EXPORT_SYMBOL vmlinux 0xf99e92bd __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9a4c6d0 netdev_warn -EXPORT_SYMBOL vmlinux 0xf9ab24c7 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0xf9c039b3 dma_resv_init EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c7003b tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9dda4d8 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xf9f9d6e9 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa135b76 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xfa1938b2 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xfa19fd0e register_netdev +EXPORT_SYMBOL vmlinux 0xfa178370 slab_build_skb +EXPORT_SYMBOL vmlinux 0xfa1dd26a datagram_poll EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node -EXPORT_SYMBOL vmlinux 0xfa2bc314 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa33a242 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xfa3baf06 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xfa3e9458 tso_build_data +EXPORT_SYMBOL vmlinux 0xfa3ebc5d __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xfa3fab39 netdev_change_features +EXPORT_SYMBOL vmlinux 0xfa49c0fe update_region EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa564f1c d_path EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa7d5550 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xfa66804b xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xfa678b9d mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xfa797f21 tty_port_init +EXPORT_SYMBOL vmlinux 0xfa8048fe input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xfa96f505 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab59108 register_console -EXPORT_SYMBOL vmlinux 0xfac0a06a flush_dcache_page EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfadc6a16 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xfae07a2a filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xfae3a739 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xfacb4ddb fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xfacc3fdb of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xfacce5d4 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xfacf953a of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xfaf6feb6 skb_copy_expand -EXPORT_SYMBOL vmlinux 0xfb00d222 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xfb1392dc dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xfb2220d9 pnp_register_driver -EXPORT_SYMBOL vmlinux 0xfb27d1b5 ps2_command +EXPORT_SYMBOL vmlinux 0xfb2c3185 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xfb2e9c51 dev_uc_add EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb44d667 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xfb5bc36f rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xfb4cbddc devfreq_update_status EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb73cb19 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xfb7e2a2c vme_slave_request -EXPORT_SYMBOL vmlinux 0xfb9ce512 d_exact_alias -EXPORT_SYMBOL vmlinux 0xfb9d3d7c of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0xfb9fed5d tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xfb8a0961 misc_deregister +EXPORT_SYMBOL vmlinux 0xfb9418b0 rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbbbe1c2 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xfbbf51f4 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xfbc2da7e netdev_notice -EXPORT_SYMBOL vmlinux 0xfbc30e43 proc_create +EXPORT_SYMBOL vmlinux 0xfbbb72a2 skb_dump +EXPORT_SYMBOL vmlinux 0xfbbe67bd pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xfbbf6b4a add_watch_to_object EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbca33be mdio_device_create EXPORT_SYMBOL vmlinux 0xfbd3307f ns_capable -EXPORT_SYMBOL vmlinux 0xfbdddca2 __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfc0408c3 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xfc128223 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xfc15465f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xfbfd01cc ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xfc056c34 get_inode_acl +EXPORT_SYMBOL vmlinux 0xfc18c2b5 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xfc32a0de cdev_del EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc522ccf pci_write_config_dword EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc5856be of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xfc6bbd92 pci_choose_state -EXPORT_SYMBOL vmlinux 0xfc6c3533 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xfc7ee4e3 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xfc876277 rproc_put +EXPORT_SYMBOL vmlinux 0xfc62b64e lock_sock_nested +EXPORT_SYMBOL vmlinux 0xfc80be98 cdev_add EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfcb5536d xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xfcc1589e genphy_resume -EXPORT_SYMBOL vmlinux 0xfcc8469b super_setup_bdi +EXPORT_SYMBOL vmlinux 0xfcb83c43 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xfcc4dd92 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xfcc9b7f5 genl_register_family EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfccf13b0 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce0772b set_page_writeback -EXPORT_SYMBOL vmlinux 0xfce3bc4a __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xfcdf3bdb backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf48aa4 inet_add_offload -EXPORT_SYMBOL vmlinux 0xfd07ec87 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0xfd1aa556 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xfd1d5a48 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0xfd35f754 scsi_partsize -EXPORT_SYMBOL vmlinux 0xfd566f0e lease_get_mtime +EXPORT_SYMBOL vmlinux 0xfcefab17 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xfcffdeac dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xfd651baa tegra_dfll_register -EXPORT_SYMBOL vmlinux 0xfd6f9ff9 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xfd71f15d acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xfdb4770c vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xfdb4cb2f simple_unlink +EXPORT_SYMBOL vmlinux 0xfd5cc092 component_match_add_release +EXPORT_SYMBOL vmlinux 0xfd5d902a qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xfd8ddb93 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xfd9d7408 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xfdb1d990 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xfdba919d __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xfdbe767e folio_redirty_for_writepage EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdd1fb21 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xfdfb0b77 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0xfdfe94d8 vfs_create +EXPORT_SYMBOL vmlinux 0xfdd41ee0 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xfdf9a172 phy_driver_unregister EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe085914 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xfe186de6 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xfe06a47f scm_detach_fds +EXPORT_SYMBOL vmlinux 0xfe0eb8ea bio_init +EXPORT_SYMBOL vmlinux 0xfe1681ed tty_register_driver EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xfe1cad93 phy_remove_link_mode EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update EXPORT_SYMBOL vmlinux 0xfe215b97 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0xfe248416 tcp_recv_skb -EXPORT_SYMBOL vmlinux 0xfe2b5c7b proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xfe3618bd vfs_rmdir -EXPORT_SYMBOL vmlinux 0xfe3a82b3 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xfe452d2d page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xfe252a1e page_mapping +EXPORT_SYMBOL vmlinux 0xfe4480bf cont_write_begin EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4ac0d3 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xfe558961 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xfe588324 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe607164 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xfe6275f8 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xfe80b75f mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xfe895d83 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xfe745f72 unix_get_socket EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeae59c4 unregister_binfmt -EXPORT_SYMBOL vmlinux 0xfebe94c4 sys_fillrect -EXPORT_SYMBOL vmlinux 0xfec15fe6 xen_free_ballooned_pages -EXPORT_SYMBOL vmlinux 0xfecbfe96 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xfeb7e0a5 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xfebaf5ac xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xfed6efbf blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeea1d03 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xfedd625d xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0xfeef45fa kill_pgrp EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfef4481d read_cache_page +EXPORT_SYMBOL vmlinux 0xfef5439e simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff067b93 vfs_get_link -EXPORT_SYMBOL vmlinux 0xff0e5d61 inet_offloads +EXPORT_SYMBOL vmlinux 0xff0296b4 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xff057f39 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xff06dadf pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xff0b1447 udp_sendmsg EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff314ec4 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xff3bf7b0 input_register_device EXPORT_SYMBOL vmlinux 0xff41a709 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xff49c396 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff69d48b iget_failed -EXPORT_SYMBOL vmlinux 0xff74797b inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xff7c1d1a tcf_register_action EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff7ee664 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xff81580a vmalloc_to_page EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xffa60abb cdev_alloc -EXPORT_SYMBOL vmlinux 0xffac0af0 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xffaf6a28 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xffafcf51 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xffaac3e9 folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffba9e0a vga_put EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffdf8302 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xffe0b1c5 rw_verify_area -EXPORT_SYMBOL vmlinux 0xffe6a0e2 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xffd1ab8a drop_nlink +EXPORT_SYMBOL vmlinux 0xffdbdf73 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff8504e lookup_one_len -EXPORT_SYMBOL_GPL crypto/af_alg 0x16b67e7b af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x2785e9cf af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x04a69d25 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x128fba27 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x15273c5d af_alg_count_tsgl EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x2b200ae2 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x2b6bdf7f af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x3367f638 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x3c50f399 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x3d74d082 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x4baf3c92 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x5413bb98 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x45919ed2 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x5952d203 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x5f308883 af_alg_alloc_areq EXPORT_SYMBOL_GPL crypto/af_alg 0x634264a9 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x69dec299 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x8cf42560 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xa8524c14 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xa8a6c778 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xf7e649aa af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7a2fa1e4 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x95558f29 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x955f0400 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xac4d7170 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xbae53c6e af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbb92c8a3 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf27ce6b7 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xf7fc081b af_alg_release EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a8f90e6 aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/aria_generic 0xf487deb6 aria_set_key -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x380a36e0 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa33ee577 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa48e912e async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x09513df9 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x669f7ae9 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4b937b00 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x60d4d746 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9d344162 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc1760fe9 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3cab8ae5 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x47a7877c async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7f0af781 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xdc8d7fc6 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x9bab9079 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4212890a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xfc02ad4f async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3d584548 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7313c70b async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0ad3bd9c async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4c47b596 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbe8ad36e async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd42a0153 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0347143e async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3a693cf5 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc17ef707 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd5339877 async_xor_val_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x8453eb68 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x4354047b blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa3789322 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4d148053 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x16dc3a23 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xb534901e cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x19a6c257 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x1c2fb590 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x4fe7be82 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x50181fa3 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x79560318 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x86e32e56 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xac9cb382 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xb102faf0 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb7f4b134 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xd6324293 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xd985e7cd cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xf95a7cb1 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xfe905bcc cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x109c70fc crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x12f6454c crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x314e18e7 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3816b32b crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x41e6b0ff crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x462303de crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5c4a918c crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6b2e8f44 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6dbf2471 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8e1eae35 crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9a6ff47b crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa015dc94 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdb812cb0 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeb344308 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf0b0d156 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x0ef0434e cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x13c0cde0 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x16f79985 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x2d0d9205 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x3ebdcfcb cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x520d0df1 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5bb0d012 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x66752507 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6737de3c cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x828fd419 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa5a2fcc7 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xa63d3b46 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc1b60f26 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x00348714 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x08e1a845 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x13ebc81a crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x27395ec5 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2c31de8c crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x38bcad43 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x47a6f226 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5dc07e74 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5ec92fcd crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6cf56e08 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7ec745bc crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb6a2841b crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbca22819 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd607cb01 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd6cc6dae crypto_engine_alloc_init_and_set EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key EXPORT_SYMBOL_GPL crypto/polyval-generic 0x1936413e polyval_mul_non4k EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5d19f2fc serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xde2b4a7b serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm2_generic 0xf0b1aa72 sm2_compute_z_digest +EXPORT_SYMBOL_GPL crypto/sm2_generic 0x6065a30a sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL crypto/twofish_common 0x05b219d3 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x260ae173 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x01ef13fc spk_synth_flush EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x097ade85 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0dc991fc spk_ttyio_synth_immediate -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1889251b spk_synth_get_index EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x26d56d44 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3b094aeb spk_ttyio_synth_probe EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x695fd54b spk_ttyio_release -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x759fd98c spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6c126e2c spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6d3ee49b synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6f36683a spk_ttyio_release EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9bb24d83 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9d7c7b6c spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa0fa3fd1 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x97e9c0fa spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa23b02c4 spk_do_catch_up EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaba413a2 spk_var_store EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb9293968 spk_var_show EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbf9f67fd synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc0737cfb spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc1287bc6 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc154543f spk_synth_get_index EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc58f6e50 spk_get_var_header -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc8d8459b synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xced4f067 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xce425a21 spk_var_store EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd93829dd speakup_info -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xdf4afd56 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xde20cc57 spk_do_catch_up_unicode EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xef5ef415 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x0d1e4a9d __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xeaaedaa6 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfc928eeb spk_synth_is_alive_restart EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7db12338 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x93083642 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xad404921 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe3b7533e __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x9467e1dd __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa2fb0a69 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xbed00a9d acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xceef6bed __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xeb3aa484 acpi_nfit_desc_init EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x396338cc pata_parport_register_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0xb0f95da5 pata_parport_unregister_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x191e2872 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x06043879 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x2c306957 pata_parport_register_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0xf59af0b3 pata_parport_unregister_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x4eb63c28 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x5c80ce4b sis_info133_for_sata EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc @@ -12393,166 +12394,164 @@ 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/auxdisplay/line-display 0x3a0c0347 linedisp_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x7892e33d linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x26cb841a regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x3dc000e2 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x8bedeb2b __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xa6c1233f __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xa25d800e __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf3a28032 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x04b413f4 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x985434d7 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x81db8347 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xa999ff71 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x3fb9699b __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xb9d4e4a7 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa9721d6a __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xae7c53a8 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x10b32866 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1161d9eb __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5e64d36c __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc2198709 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x0cee5252 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x4bfd4f20 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0b7523c8 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f3c8838 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26b01f38 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x32d7e76b bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3321be83 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x72d45369 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8662c059 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8af5d0ad bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91fd7b94 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x921de644 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9c8cc2c0 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa44de8b0 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab7dcc2b bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb567bb16 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb58833e1 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbd108190 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xccd94222 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe14aef14 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe26b11e1 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeafbb1a5 __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf0e42b91 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf77de199 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe6d002c bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfe7270d7 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3d3adca6 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x629149bc btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x67b76c04 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6c8486b3 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9c5ccf13 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb1c1eb9d btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd7d4dd77 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf4d0f32a btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x017b10c2 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x05f396d7 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1823883e btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1c8f4e09 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x449a01a0 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x52b9ca6f btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x57294378 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d517f4c btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6825a85f btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7f5ed25b btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8127ced6 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x99711479 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa5e575a1 btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc321c7e4 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd3e45fa7 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd4809b06 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf230551f btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x40408841 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x41330916 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x486307e2 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x50e22e13 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b391c7b btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b6f10ae btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8646cca0 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8983bc04 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9af73cb9 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa787c932 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd4a13d7a btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x6b5f37eb btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x896a5c64 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xa6bbb19c btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x070d1bcb qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0f13234d qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3accee1b qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4a141a6b qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7c1929f2 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x16b7dd3b btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x258aa587 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3df31305 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5329cafd btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x80f9accc linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xab290fc6 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x4ed18155 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x69a52f3e regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xe9f63fe6 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x642dbfe3 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xaede4054 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xcc17207d __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3c62d007 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3ed15a0d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x51c3b426 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xf33a5643 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x37592e5a __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xf02458c8 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x0e0d1ea4 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xd3df86ca __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x55bd0f31 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xdf6c4007 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf7fbd6c5 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfec4c624 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xecaf4d1e __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xf1a2a9ba __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0fe62098 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x227c1e9c bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26d6e254 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x278aed61 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x309929bc bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a2c4c74 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b3b474f bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5652e5f5 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5865c930 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a5fad32 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d4ccc04 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d87a35d bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7e750163 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x81d06970 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96534d79 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2a48230 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa87e0a7c bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb83ff078 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd51decbb bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe06dafb5 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef72d96e bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf3a17916 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf868bd06 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfbf12e15 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x01f59a5c btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x026968b9 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1ad7ca5e btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1b8f5725 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x20745dc9 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x59ce46a8 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x62611363 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdb375252 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x166d55c0 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x32296812 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x38a03cf9 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x393ab774 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4acfbae2 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4bf6d9f9 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ce5d6e6 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa02e1fbc btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc20969d1 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc512c6d9 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcbf1e6bd btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd14923d5 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd6dbab3d btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe747c765 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe7f4e182 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf990ddb6 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfb5cb49a btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x29b1183d btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x570e21fd btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x61158125 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8ee22351 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb0202ba4 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb3f3520e btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd5bf0e3c btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd6cf2190 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe46a92aa btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf42e138c btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf50a841a btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x496ea7d3 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x90c79052 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xbe44c5d7 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1dc4b8af qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x33f79923 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x45dd4578 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6e8e707a qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdec264ef qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x077a165b btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x19b528e8 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x339d4bd6 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5577f253 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x99a4eaaf btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa50a0a56 btrtl_shutdown_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb1b8a18c btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd1286174 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x10ba7b58 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x734f8447 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8742c700 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xace9479c hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0ed7ad41 mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x59f7af7b mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5aecd6c8 mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5b644bd5 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6a49ccba __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8dedb1a5 mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xd4bbf5e6 mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe6c27321 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0f6cf096 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x136a96fa mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x189750ed mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x199b72e8 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1c5a7104 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3154672d mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x319a2d3e mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4026d603 mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4c4effe3 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x50bb403d mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x57df0de4 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6105d89c mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6a33e54e mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6ed12cdb mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x78f7bfec mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7a90b246 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b9abc91 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7bd87a81 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8f35288f mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x94aa081c mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x97fbd19a mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x98991b36 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9cca7396 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb7d38c17 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc7db6e5a mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd359a494 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xda2810d4 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xea90229f mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xefcccf7d mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfa8a3a28 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0238d214 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0f3b7b01 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x194bb79e moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1dec41b6 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x02a5f1e2 __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xf510e9ed sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x37b715b6 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa6991d9e meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xba7667f2 meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x18daef66 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0b02fdbb hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3fb730d0 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8d326e83 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9e56add2 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x227ebc9b mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x47a9713b mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4c4c6a67 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x57a4401b __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5f2024db mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8d4bafaf mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb4f6fdf4 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xed1dd54d mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1e9e64c3 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x22af9d8c mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2abeb2ff mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2e2497dc mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x310d2867 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x39cdb342 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x46d7c27d mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x479242b0 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6b8e25ae mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6b9472c2 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6c9ee1e7 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7719d960 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7e5a5fc3 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7e797f28 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7ff6b04e mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x957e0952 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9f2e13cb mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaf38d39a mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb20422ad mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb380da21 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb6020823 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb9df1c5f mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb9f40b2a mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd38a4f3d mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd84499c8 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdae9135f mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe0eb3dba mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe8217977 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xec40f756 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf5c7d38b mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2c1f8d27 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x61b296cf __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7e5dde36 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xc49b04d5 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x89bde7d0 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xc7359c04 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x1eaca4fd meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x780eb48b meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x805ced37 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x041aea56 meson_sclk_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e7eb9a clk_alpha_pll_stromer_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0509a95c clk_fabia_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x071d19d6 qcom_cc_register_rcg_dfs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d174e8a gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed3d921 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a04017a clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0f202d3d devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1b28da5e clk_trion_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp @@ -12561,25 +12560,26 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3080e1de qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x31193885 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x33b4ddf4 qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x35261f7e clk_alpha_pll_regs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x37dafc55 clk_rivian_evo_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfdf146 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4d0129d7 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5f18e967 clk_stromer_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6045867d clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x643fd964 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6610661f clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x686ba092 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68c45b89 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b8e2aa0 clk_pll_configure_sr EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6d308251 clk_alpha_pll_fixed_lucid_evo_ops @@ -12587,39 +12587,41 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x793d7cb5 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7d8e3a19 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x82afa55e clk_regmap_phy_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x84de1c98 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x88c0add9 clk_rcg_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e4c395e clk_edp_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9123fa67 clk_zonda_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x93bc2a64 clk_ops_hfpll EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c464a3 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x95117477 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x953b97b7 clk_alpha_pll_postdiv_lucid_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9821a599 clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9befe3a8 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c401604 clk_rcg_esc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa0755dc3 clk_alpha_pll_fixed_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa95ed447 clk_rcg2_shared_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaea28295 clk_rcg_bypass2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf105ec4 clk_branch2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3d93f1b clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb83509b8 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8d0697b clk_lucid_evo_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbb2b9610 clk_agera_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbdb9e159 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0126fe0 clk_pll_sr2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0d2ecb0 clk_regmap_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc9cb9fbf clk_alpha_pll_zonda_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb2d25f8 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd12e0cb0 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ec30a3 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd414cffc qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd98fe91b clk_alpha_pll_fixed_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4a8dbf9 clk_disable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5d0aba5 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe8c0478b clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xece7aea3 devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeec69605 clk_rcg2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf2522383 clk_alpha_pll_rivian_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf3bf69c3 clk_pixel_ops @@ -12627,102 +12629,119 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfafc1469 clk_branch2_aon_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfbd6578d clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfde3de53 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x014e2f31 sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x038c62df sprd_mux_helper_get_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x07c7ee84 sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x512f8a07 sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x53d46ab3 sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x649d3c2a sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x80a158f2 sprd_pll_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8475a3d0 sprd_div_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x864856cb sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8cf1925b sprd_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8da63521 sprd_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9f3d7c50 sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf5c81975 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x11804dfa sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2f8d864e sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x47966d7b sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5773ccf5 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6c0a271d sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x769c63f3 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x94c9a341 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa9df23bb sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb0c12df1 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb1821541 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf3a7ef12 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf8bb44f1 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfb23de99 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x05fb2b91 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x07c801ae comedi_inc_scan_progress EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x163c497b comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1a456732 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x13e690ac comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x14128667 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x169ed89c comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x16bf0b24 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x18611028 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f1870ff comedi_auto_unconfig EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2143ec6d comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x23246181 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26db42a4 comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x29ceaaf9 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25ae5362 comedi_buf_read_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x38860e66 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x397f101b comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3f637d71 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x35d5afe9 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3a869b35 comedi_buf_write_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48bfca0d comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x482efe17 comedi_request_region EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x585034f2 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x63e4ef16 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64fe26f5 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6fb9aa8d comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x764ac8b3 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7a6d6fb3 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x51b547bf comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x555e5f35 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5e62ddd8 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x77e4d9ab comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7f2c14f1 comedi_auto_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x83c2a76b comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x87c77d5c comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x94dc9560 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9a708e92 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa7438903 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa7c6da88 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8cc0a7f3 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8ea5a7a7 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8ee44e4c comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x92d0eee1 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x94c1fd23 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b51f35a comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9bea7dde comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa77fd881 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa8b9ba60 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaade9f51 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xae22732e comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaea54e6a comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1d8ef6b comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb6716d45 comedi_nscans_left EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9fff4bd comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xba964148 comedi_bytes_per_scan_cmd EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc510b821 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc54d6b59 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7967753 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7ac1ae1 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcf7120e3 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd9e80a58 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8f4cecd comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xca8718f7 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd797302f comedi_bytes_per_scan_cmd EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xde9d358a comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdf59fde3 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9e68b1f comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeba2ea74 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf0eea2cb comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfe60a7b7 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1120b54c comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x15a085a6 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x22b00221 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3002f548 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x56790f27 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5cd62cdc comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6212fb6b comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xafb1cc0d comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7893cab3 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa5d9d6e3 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa75b8fe5 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc0c7e980 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe38b9048 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe3e24a6a comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x46272f5b addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe4ed678d comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe4f432f7 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x047373db comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x089e779e comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x22e1ba9e comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x72c72c5f comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8dde4402 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9237fe68 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xcd904a8f comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfec36533 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x305b5520 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4d7d9da2 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8b8a8655 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x92a30968 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb1e16575 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc2e93ab4 comedi_usb_auto_unconfig EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xb68ebe4c amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0d547da7 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x89229b96 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x9075e720 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x25d779f8 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2a146b7a mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3d6638c5 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3d79827b mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3ff6402d mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x569a982d mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x56a25948 mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x60656570 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x60e9ba0e mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x76c26dd2 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x89b0bf0f mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb6102ec3 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc0ef2090 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc14a5809 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd7fdb131 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfd1fe2f6 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xfec9e593 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x02de3637 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x59aac83c amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x27495077 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0621a428 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x09c95cfc comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0aa20a61 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x13c83625 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x38f44e5d comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4698026e comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7104f203 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7129c2a5 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9a874c35 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xba2f727c comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc68be832 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcd2196cb comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdbb01d1d comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x46fa4cca subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x85165efc subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xba70edf3 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x95b1cb0a das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x05352e53 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x124ac58c mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3172115d mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x35cf1ef5 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x39a00b89 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6087836b mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7789445e mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7e0def39 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x919889d8 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x938675ac mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa85e4b87 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa96f7570 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc713a1a5 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc80c98ad mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe57716d5 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf9aa7185 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x5fce769f labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xe4bc0ba7 labpc_common_attach EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12733,339 +12752,339 @@ EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x06a390ec ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1df50f0d ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2852d008 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2cc72284 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3b6fc596 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4d785f4c ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x52ba03bf ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5a6b8f57 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x741da1d9 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8c805d3b ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa34e37c3 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb1b40930 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbf4bc6a4 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc1c93fc6 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc3268a93 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xec26f8de ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x67925c26 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6d6e51d9 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x901028b3 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd86e7b71 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdd3eedff ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf9dff73d ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x06710fb0 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x19741749 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x53688bab comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x581b29e4 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x622aba0b comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x68e22b71 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfbb9f2ae comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x07033b80 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x31f25953 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4102b4d6 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x57a20ffe ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x63fc98e1 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x768b69f2 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7b3238f8 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x820c5cac ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8e118416 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x905fe600 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb809c77b ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbb8d825d ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd33abf21 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe3abba71 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe652dc36 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfbf66821 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0307702d ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x04201767 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3efdb9da ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x55d1cc30 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8d5b2e99 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x99e8ebc8 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0bf781e8 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2a422266 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6dab2939 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7414673e comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x79aeaa6a comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa8e599a3 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xcda92646 comedi_dio_bitfield2 EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xe8b3061b ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x049d8e4a hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1355bc82 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2074f1cc hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2332b394 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x26bc2d96 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x27dac5d0 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3f7fb429 hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x44e6197c hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5e1988c8 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6188bd50 hisi_qm_regs_debugfs_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6ca72f0d hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x78f975ed hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7dc6561f hisi_qm_regs_debugfs_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7dfdb1e6 hisi_qm_mb -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7eca78ea hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7f712ce0 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7fceb69a hisi_qm_get_hw_info -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8a3b63d5 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8a842d66 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x90838e97 hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x937a3c0a hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x95e0d612 hisi_qm_acc_diff_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x992c29ba hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa3bb60e6 hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa7cb6087 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xad35d073 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xafd74ba4 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb3ecb823 hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb6cac377 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb79177bc hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb9e1c8ed hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc27c777f hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc9bd707a hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcd9f10a4 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdc138caa hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe168c7c7 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe872301b hisi_qm_wait_mb_ready -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf6f1f375 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf7a600be hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfc2a7159 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xff7b5df9 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0xb32dd912 hisi_hpre_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0xdd65be24 hisi_sec_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x912af7fc hisi_zip_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x04b79a0f adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x12aceec1 adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x14a6b8f0 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x15dacf76 adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1690a233 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x17e125c7 adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1c13ba5f adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1d47fa40 adf_dev_up -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2aab9a7e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xbd49a1c2 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0d36095c hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1052cfb8 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x143f43fe hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1928ae31 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1e2211f1 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1f96daae hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x25ffb7db hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2cb2eb9a hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x31c2f867 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x586fecee hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5b2920a2 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5dca91a8 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5eb00d76 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x671a2e4d hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6d3903d1 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x718da746 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x768a045c hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x77866faf hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7bbfb71f hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x82b6fe93 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x83253d32 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x86e0f70c hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x91c509b8 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa2830d3d hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa77e4323 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb1ee1ce6 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb658074b hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb6ae7ab4 hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb7893fe2 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbe8817fb hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc12c3cb2 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcac1b114 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xccd09d77 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd34a8fb5 hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe07f808f hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe5b576e1 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe8ec1cec hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe9969441 hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xedb62895 hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xee881c71 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xefbcfbc3 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x9d93fae3 hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0xc231756e hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x9b048781 hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x01009d59 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x01ea57b0 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x020b2f2b adf_dbgfs_exit +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0e88498b adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x15e3c840 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1bbb06b0 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2962a180 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x29cc8495 adf_enable_pf2vf_comms EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2f010263 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x38422f55 adf_dev_down -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3ae81746 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2fbd91ab adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x314073bb adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x337448a6 adf_isr_resource_alloc EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x42aaf3fe adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x446a32aa adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4c923f5f adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4d9e3752 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x55ec0ec8 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x56d83a0e adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5897ccc2 adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5c6ac505 adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5e551059 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5f542470 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x647dec23 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x69314cf7 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6b7b6e56 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x81222585 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x837f0873 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8714efc8 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8b67c6cc adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8f3fa1cb adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9211a2b6 adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa0703884 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa2fad903 adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa920bb9d adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa98b9f7d adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xae2c7e84 adf_dev_restart -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb3ecf8e9 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbc49be84 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbc58b156 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc03309d9 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc06d708e adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc356a30a adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x41800f30 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x45a8679a adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4a547a1f adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4b7ee91e adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x51d10dc1 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x56ccfa6c adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5a24b02f adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x60ff9485 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6f1940ef adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x743c3c9a adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x783b51f0 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7868d911 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7a2de4ec adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7d800ae9 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7e2f8530 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x838a1250 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8419792d adf_dev_restart +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x87281142 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8cfc1909 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8dbc60fb adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8fdffa9b adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x91c60ae6 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9d57de99 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa3e5ec72 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaf7ee5ec adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb2ef5534 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb4973135 adf_dbgfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb72484d9 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbaab0f31 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbbf047d4 adf_err_handler EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc5a8288a adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc6c79dbb adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc6163391 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc78917d9 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc8e882ea adf_devmgr_in_reset EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd0a4d5ee adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd4af6acc adf_gen2_set_ssm_wdtimer EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd77edb1c adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd882690e adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xda18e2e8 adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdb8e2541 adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdebad3d7 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd88932e8 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd8eccd32 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd936a7c9 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd96aed6f adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdf4350c1 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe00968b3 adf_cfg_dev_remove EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe44bb1d0 adf_gen4_enable_pm EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe93a09ab adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xec11a550 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf27abf8b adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf80e5f7c adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf9141a7b adf_dbgfs_exit -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfb556d5a adf_dbgfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfbb42d35 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xff5a442e adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xed0ff17b adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf0f83797 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf38918aa adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf3db0d87 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xffc785d0 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xffe39a49 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x1d49feb7 otx_cpt_eng_grp_has_eng_type EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0xa47a6a0f otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x340b37e6 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x38746c04 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x201d5cd3 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x222914cc do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x31caed78 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3acf006f dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3d6713e8 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x52f8b3dd dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7d15b327 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x895f947a dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcf18b995 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x0138f6e4 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x215a1cdd dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3b0e6b0e dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x49b047db dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x57fc2014 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x64135fa6 dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x788efcdf dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb4d2eea4 dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc7717cb7 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd9778f95 dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x012658f5 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0d6ece55 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x178fbcf8 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x25e54e2f fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2bd098b6 fsl_edma_prep_memcpy -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2bec4c6a fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3923c68f fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3e1917e8 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x580157df fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5f3ed97e fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7e5cf62a fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8ae726fe fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8e7da18e fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xab32ac46 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc2a43667 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe5591da9 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xeae0d6dd fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xa3a74345 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xed33b89f hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x9212f55c __fw_send_request +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa32eba29 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xce52b1c3 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02244e58 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x07f63074 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x109e02d4 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1a414aa0 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x606a1be7 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9a600e35 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9db0c5c8 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb4c48810 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf4f9a89e do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x12bbe8fa dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x20e2e4e8 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4a911b9b dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x52de22ff dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x587e762f dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6a6551ca dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x9946bde6 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb9cd9d99 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc1cc899b dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xdd1608cf dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0b6f8c01 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0b9b21e1 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x27c3c0ae fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2a0269ec fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x502359dd fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x54920aed fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x559c9869 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5af09fb3 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x694894a1 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7049b68e fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7881f172 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x929b6e0c fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x95721cb7 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbac39ea8 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc5bd3ac4 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd2d877fd fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe058dc0a fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x88d95fac hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb02f2928 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x1216cbfa fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xb997ad1f fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x0485d67f ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x46a0a01b ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x64c7cd36 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x87923bd6 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8bf4e1be ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x88e76648 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x1639802f mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xebe0b928 __fw_send_request +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x344563e8 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb6452e4e ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc66826ed ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xcc078e70 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xf89e9fa5 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x6dfd2113 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0xc1e1fb4e mtk_adsp_ipc_send EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x97c29297 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x64e0d136 stratix10_svc_request_channel_byname EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xa7ed2f69 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x03cbd413 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0556458d dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0e36ba67 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x15806291 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1aff11cd dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1be0aefa dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1c4a50ba dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x346a6202 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x51fe03a0 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57b88e44 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ea36bd8 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x782b96e9 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x799fa298 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x82483211 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x88331fe6 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x944372db __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa4208fa0 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb8dbe386 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc29b8eac dfh_find_param -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc4f89222 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe40bb254 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe673faa9 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xecdfe343 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf1b520e7 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xee45c867 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x12c0abd0 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x174d201a dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1b3ab1d5 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2fec2101 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x364fd213 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3d1ff076 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4f1b1abb dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6238611a dfh_find_param +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x63d77d5a dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79c0d7df dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7c333d54 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90773bc0 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x920e07db dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x93621080 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x955185ee dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa205c4ad dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa71c662c dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa84e4deb dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa92cc50d dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab1518b7 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd2d33e6 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe32c4dca dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe422631a dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf9d50822 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x05f5ae9e fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0a9bc1a4 fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1f4d7096 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x16ad3a5d of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1b3391b1 fpga_bridge_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2e2b2aaf fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8818c9bd fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x93603265 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x983a66b6 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbc566fc2 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd3ba1113 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe6209701 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1118977f fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6931db93 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x74e79cbc devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8099514e fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9b9e580d fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa94f984d fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb9f9de38 fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc1a9aece of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc4e2520a devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc6be5cfa fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcfe63d0c fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd6a7e532 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf9fbebf0 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x340f1067 fpga_region_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4031261e fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4dc78616 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6956a61c fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xeb2b3fe3 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0e0954f8 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x13835a6c fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2e692787 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x388ed15d fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x56bcf539 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7379923c fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa1500c60 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc7739c34 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf4b0abc1 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1b0ffd80 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x218b8e33 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x222e8051 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x354a7aed fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x40cf67c4 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x61c6d399 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x76d5b029 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x881fc8ee fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x98e7251a fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9d8018f2 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xace0144f fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb2a21e5c devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb6e678c4 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4a08b25a fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5846acb9 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6890c8cb fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x861e7582 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb96a6e53 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1407d22e fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x35118e06 fsi_device_write EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4ab132fb fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x506ed376 fsi_device_read EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x61342883 fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x875d758a fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb3e78a34 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb5ae5dc4 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb5eaf3b8 fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbdafba74 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8822d6bc fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc0cf8e1b fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc7a81238 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xca469f90 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcbcf8afc fsi_master_rescan EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd082bfbd fsi_master_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf4d17f62 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x0b4d0434 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x914ddd02 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf0530ff6 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x277535a7 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xab9ae258 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcd3932d3 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xd2a924b2 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe36e35fd gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9c7229be gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc3d65c38 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdc0f862e gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xeaf4bca8 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xeee281f2 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x9dc685b8 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xd3bff3fe sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xdc84ac06 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x36783ac8 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x661f2b64 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x81fc226b gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x91266229 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf631faaa gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0b6a8ac7 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x631a56f5 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7912824c gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7f85e61c gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdec90074 gnss_serial_free EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3a96ae88 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8282b00b __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x11effa94 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x74fefd60 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xda17c629 __max730x_remove EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xabcc2162 gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xdebf5041 gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x37262358 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xba7bff0b devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0d5a3def analogix_dp_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7b330cc7 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa161bec2 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb6bbd4ee analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd308eb60 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4174db1 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xeca99abf analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfdf00727 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x0406711e ldb_channel_is_single_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x3b816ae0 ldb_bridge_enable_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x54efeb80 ldb_bridge_mode_set_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x6a98b0f0 ldb_init_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x6db5d3d9 ldb_find_next_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x6faa19c4 ldb_channel_is_split_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x70044248 ldb_bridge_atomic_check_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x82925ad1 ldb_add_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x84e6c67b ldb_remove_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xb30112f0 ldb_bridge_attach_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xdb053a43 ldb_bridge_disable_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x7483e510 samsung_dsim_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x75fba433 samsung_dsim_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xb9d9b577 samsung_dsim_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x64c40a10 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6d497303 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb132e5e8 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcc99d2e0 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe1d4e589 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf600155b analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf73977d4 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x0bf8ded4 ldb_bridge_attach_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x199c14d1 ldb_find_next_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x39a161f9 ldb_add_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x433dbf3a ldb_remove_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x5f89b656 ldb_channel_is_single_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x60d1a64b ldb_init_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x6a0ec7f1 ldb_bridge_atomic_check_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x9b71e6b5 ldb_channel_is_split_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x9f6b7a06 ldb_bridge_mode_set_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xc12615d0 ldb_bridge_disable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xc9fc985f ldb_bridge_enable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x3c73b67a samsung_dsim_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x45bdb879 samsung_dsim_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x89c21db5 samsung_dsim_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x14f2cd3b dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x22c6aa5a dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x26d629cd dw_hdmi_phy_gen2_reset EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x3c65ee94 dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x5ae51512 dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x92a5102d dw_hdmi_set_plugged_cb -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f33711 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset @@ -13078,690 +13097,691 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x8eaab729 dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xf44a7809 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xbdd88900 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x070fbe8b __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x3f5fb108 of_dp_aux_depopulate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x52fa4ac5 devm_of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x97407955 of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x990de5bd dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x14dd2e99 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x200eba09 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x443a216c drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x480df461 drm_of_get_data_lanes_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x61a43471 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x660bd1de drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x9036ac4b dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x956cf3c0 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xdc13fcb4 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x0ec9f136 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x6bf7c713 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x9e5570da of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xb09ca9c4 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xb865fc79 devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f34b35f drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x11c76412 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x39e7fada drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x40e175e6 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53366825 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5756b785 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5fe1750e drm_bridge_hpd_notify EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x708562bb drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7d28e85d accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7d8a18d4 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f1df3b9 drm_of_lvds_get_data_mapping -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x88017a29 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x940a41f4 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b6b387c drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9cf70cf4 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa540e64b drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6944e4a7 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70186853 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x73dfd3eb drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75997651 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x79e49676 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c386abf drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x877204f9 drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8e810cce drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x92075715 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x951382a2 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa52cbc65 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad0343d8 drm_do_get_edid EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc0e14f58 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc1f54b20 drm_of_get_data_lanes_count_ep -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcfc49c4b drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd545271a drm_of_get_dsi_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd68df897 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdf51d156 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe51f3cd4 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf91b7f89 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba6ce560 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc666cc99 drm_of_get_dsi_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xca18ffcb drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfa769a56 drm_of_component_match_add EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x098bb6ef drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x17fae8fa drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x21fcdade drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x49037ee0 drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x58f90bdf drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5ad6bfa6 drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7348c74c drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x734e65b1 drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x9d76f3bb drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xcad16827 drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xe5a1d454 drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf6f58742 drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0fcbc338 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x214eacda drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x29535389 drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x39d9b0f1 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5ee98a65 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6078ef2a drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6811b8b5 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc9e5c99e drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x50397059 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5efa61a2 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x67a53ecd drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x99b753e8 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa1135a26 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xae1832a6 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd6e9397d drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf4a9edd1 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/dcss/imx-dcss 0x37a88349 dcss_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0b9deb2c drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x1ac255d1 drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4886a686 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4c9a9539 drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5aaf9816 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x680397aa drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x70c59312 drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa048c80b drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc6422a86 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xd6885196 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xed3550f1 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfc4a6622 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x019e9997 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x115ca666 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1174520f drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x32547e29 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x352ce403 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x521ffd35 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x64878187 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa8c0574d drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x033cfdfc drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x403c8a07 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x68220a06 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6f0f6e7d drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7651ee40 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa3ba4485 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbbc166ee drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbdcacd59 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/dcss/imx-dcss 0x4bc16655 dcss_dev_pm_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x34d6909a meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x3d6c9f9c meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x4dc82e20 meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6112182e meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6f93e12b meson_venc_mipi_dsi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x8b9e21b6 meson_vclk_dmt_supported_freq EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x842bb805 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xdade50c7 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0x88eb4095 panfrost_pm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x4007dfe3 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x00015993 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x140d0756 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x1cfbfef7 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x1e815fe8 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x26f4a0a4 rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xb143600f rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xb7e865ff rcar_lvds_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xf713d8b6 rcar_lvds_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x9011a19b rcar_mipi_dsi_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0xfd1a5e81 rcar_mipi_dsi_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x135838dc rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x6ff7049b vop2_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xd018b00d vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xdc68938a meson_venc_mipi_dsi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xe28f994f meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xe8253e04 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xed138b59 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xced3723f s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xcfb3142f s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0xecdb232e panfrost_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x247e1a2f pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x1f6f1684 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x9669eba6 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xa797969f rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xdbb20066 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x68ee5cfe rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x91d27493 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x9939396a rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xa596e1cb rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x353658dd rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x5c6b7ed8 rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x330db057 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x99c678b6 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xe838f40b rockchip_rgb_init EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x001af487 ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x26b5c158 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x3974882d ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x8e453610 host1x_memory_context_put -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xd919f6dc host1x_memory_context_alloc -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xf66ca710 host1x_memory_context_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10945419 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x9dad5f0e ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xa549eb28 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xae9ff146 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x38e0fc5a host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x53304231 host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xdda66c2b host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0adc523d gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0cb2fcee __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12d00b0f greybus_data_rcvd EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x144f8ff2 gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x18338f06 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1844d249 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1c4bbc15 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x280e184a gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2df663a5 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3150fd4b gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x385489ff __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b7a63b5 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e8ed0cb __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4abf5a0a greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4bb525b3 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d3d9087 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5abe3773 gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6562b0cb gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x670bcaee greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a63ed78 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e9e3663 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3100a0ce gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x33712185 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37aae6cc __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c13b917 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x51c4fdaf gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5376ce2e gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x54a1c49a gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x560f769c gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5e030174 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6909da1f gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b7100a5 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6ccce2c2 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d2dc8f8 gb_hd_cport_reserve EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6ebd97ab gb_interface_request_mode_switch EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6fa01fda __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x706ef432 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72c0519e gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7413ca33 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x792eba53 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72867199 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75a37dca greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8196b6f6 __traceiter_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x848e4b48 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84b6e599 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87ab34f1 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x88b82512 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8945c64b gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85da7ba4 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87182baf __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89c112d5 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ae78730 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8de9726e gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93c16c54 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x96e827f1 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a902e47 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f61a491 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa00f2429 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa479c7af gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaf87d726 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb092d0a7 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb35b4c41 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e9cf509 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x93f97f5f gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94dee733 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a901fd7 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa114a356 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa59838ee gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa6eb57a3 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa8b7c1bc gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf2c07db __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc1330a5a gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7b37566 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfe80644 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc7748be2 gb_connection_latency_tag_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca574fcc __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd3ac65c gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd183b741 __traceiter_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd33373a8 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd68693d0 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe9875b95 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd551d366 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8aec4c1 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xddc4e8c7 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xea9932bc gb_connection_destroy EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xec8fbf7e gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf03becdd gb_operation_cancel EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf2fae03a gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf357c63d __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf97414bf gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/hid/hid 0x00ffb904 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0334f0dd __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x06d500ae hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x10619183 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x12d32912 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9df9d3f gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0885bfed hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08aaec09 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x16ffabad hid_match_id EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1dd3da71 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f706ffb hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x20f86ce1 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x356e7807 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b170936 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x447ad2a4 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4915405d hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x496d80e0 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f7f91d9 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x56f01a67 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c583a7e hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7587431b hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ba5713d hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bf8dc0e hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c3a07bd hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82f50d92 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x852d20d8 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x85d658ec hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x86ba87d7 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8936ac1e hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a2e90cf hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x343f810f hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x34bf1430 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ad7675d hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42e8b4f3 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5042c276 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50844fb2 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51be8850 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5d43d019 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x614cc0a8 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6249cc49 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d563cbc __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e56c969 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e741709 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6eea2d17 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x743ae97d hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75a56a93 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76a65ecb hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a0b796f hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d43d545 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x81cd87f3 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x84043ae1 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x879c4436 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88151606 hid_resolv_usage EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d67c2a6 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x95330d70 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x954e8e28 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x96edcbab hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9aee553d hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa16aad0f hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa290567a hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa774e305 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa79a2a50 hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaea9d108 hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb13dcfc3 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb909fcec hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9f8ff81 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc5c1e40 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0addcec hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4e3171d hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc6dea3a3 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc8cc0893 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc8aab2b hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xde9d89a4 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1b36fc0 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xebfea1c8 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xef1ce780 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf052b6dc hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c08260d hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f1b5a63 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x980aec0e hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98c04b94 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a4e1d23 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c589a5e hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cf95652 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e73b2a5 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb06ced2a hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7fa7ffd hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb81ee9fc hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfb85867 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf0aed0f hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2500139 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd721e1a9 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd797d2df hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2e97ea9 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe552124b hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8ab75e8 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe95c553e hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea833bba hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5fce3bd hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf61bbfd4 hid_hw_open EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfbd55e32 hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2937dcf4 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x00a62c72 roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0f89b60f roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x32fd69a6 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3f4f510b roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4c469668 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xae16e697 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd76ad677 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x06828b21 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0fc2bb3a hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5b669d40 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5eeace16 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x81ab4ede sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8bfaab69 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcee79d4f sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdb8d4878 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfa4a7ab8 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xbb0f40e7 vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xe8f7e654 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa038cbcb i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xdd6c4785 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe183b97f i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xfed01204 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x0e78f465 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x64614645 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x878e9c99 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x20a31c89 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x27c0a9c2 hid_is_usb -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x00f0d4f1 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x06c1c4b1 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2103227e hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2cc21979 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x335404ea hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x34207a82 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x469109a7 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4c2f71ba hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50f0e1b9 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4044c7ec roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5f9f39e5 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc021ea69 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd797530d roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd86b7f4f roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdf8491db roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x55f41e38 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x77f262e3 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7ab35469 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x879dd90c sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa49d47e6 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xade68f35 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbc779c80 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc7bee669 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd3545902 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x2b27cf70 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x344f4fa0 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x2aae0a4d i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x583a7a8f i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x8cb5641d i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x982c53c8 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x7cd2dfda surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xa8509a65 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xf3e248aa surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x362819ad hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x57da0b70 hid_is_usb +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1196aaf2 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f37437c hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x22a232a7 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2a860371 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x33dd7681 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35ad050f hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3d8e376b hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x48e1b803 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4f2ee683 hsi_unregister_controller EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x74ae1324 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa57bac35 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb36745de hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbf3caf78 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc13a9ad5 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc7f2bd23 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xde06e015 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe89fae23 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee91d440 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x08a8a5b9 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1ad55d8b __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f3a6060 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x233b5f0a vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x26be856e vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x662dd85e hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6d9f1fae hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6ea1c6f4 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x80731999 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x95b87c31 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xab3a6d5c hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb0227be9 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb1fa3e98 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd7d9a684 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0087c6bb vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x15e99155 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x194c090c vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x28694989 hv_pkt_iter_first EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4441b8b0 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x327fcc5c hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x37c4ec20 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3b8a6d4b vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3db1df59 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x43a02bdb vmbus_recvpacket_raw EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4935d4f8 vmbus_sendpacket_mpb_desc EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5aea859c vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5e9e1049 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6104f3c4 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6535f643 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4df00564 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x51769c75 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5f0a156b vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x64a868ed hv_ringbuffer_spinlock_busy EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x75348c2d vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7e010426 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x85d55ff8 vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x913bab2f vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa20ee6dc vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa4beaa9a vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa90de95d vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xace77f0c vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb49f6dc0 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb537f0c8 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb64e5c2a vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb6ad1c6b vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc2b330ab vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc3a0bd56 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe2fbbcf8 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeb40b1ec vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xed4ee9a8 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf11a31e7 __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf9d4b002 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc03f922c adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x678fa15e __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6854ecf9 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6fe70084 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x78b6138f __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c65d3d2 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x955fff28 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x986a5dc0 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa19f62d0 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa4fef0fc vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa65eaa44 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xad1ce713 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd88828a2 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdda01813 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf2614068 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfb2e33c3 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5660971e adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x110e52ce nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x35493bf7 nct6775_show_alarm -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x70cf501f nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x84531d28 nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x940cd98c nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xcb05fc60 nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x14ba37c6 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3dd6f5ef intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5377bbf1 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x61f4e362 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x87a9db8f intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb47bf8a8 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbf2040ec intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc2330e71 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd83595dc intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x787780be intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa4a5510d intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xcf6ae32b intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x04dc1599 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x27386ea2 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8a2f3373 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x939cd03b stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa4f77ec1 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbf8580ea stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd380bfe5 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdb3a2bfe stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2f2dcad to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x175a494f i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1de5651a i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x831e3c44 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8f70b6ed i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x95809b16 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x58d53fcb i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x95183731 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9ea12576 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc5aead7c i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06be638b i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0b448c0e i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x12a77032 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x209926ec i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27f68779 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2ae2b7fb i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x55d408a1 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5d0a5fa7 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x60b3efe3 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x65b44d38 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6834e891 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x03c2fa6b nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x1edfc2cf nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x926c754e nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x96f7341c nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xa58df2eb nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xddb72c4d nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x177ad5ea intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5fbac601 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x61349403 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6b8745df intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6c5788c3 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x70659036 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x83a5e740 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa6f29038 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd3e89856 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x212cbfd8 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2bc3e795 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x51ac57bd intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x09554d2d stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3c4e2a9c stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4cf6c16f stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7f0d6c41 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8f56b93e stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x97da5cbf stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9c3a070d stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa898ffa4 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xee125b65 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x4ffa1ae3 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6ed7fd4d i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa8368acb i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcc24a04b i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xff639e79 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4f9aea5e i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb574054b i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcdf0f23a i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf641a0fc i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x09e81475 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1f6d44f6 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3a3254e6 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x408f2e53 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x52c0d519 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5353f5de i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6d0f01b5 i3c_master_disec_locked EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x838bb337 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x88bfa233 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x991a4ceb i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa4500153 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xabe14616 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb53eda1e i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb631f2ff i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc4aafaa8 i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd1b56e81 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd561f07d i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd78f003d i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe1c69a36 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfa724d19 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfb58d290 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x5c968109 dw_i3c_common_probe -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0xe9b4e613 dw_i3c_common_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x88b1d157 stm32_dfsdm_get_buff_cb -EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x98c1a9ef stm32_dfsdm_release_buff_cb +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7913c384 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x85554ba2 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8865d124 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x88bbc942 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9b1cc385 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9eb97baa i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9ffebdf1 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa955dfac i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xac37b6cb i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb5c2a218 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc97b7872 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd31d9839 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6a9cd7f i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe079d7d0 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe3d2c8f3 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe5a3583f i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfb624dc2 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfbd01d32 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x061651e0 dw_i3c_common_probe +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x9e239e7f dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x47b53687 stm32_dfsdm_get_buff_cb +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0xb5cac28f stm32_dfsdm_release_buff_cb EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-core 0xa81a1502 stm32_dfsdm_stop_dfsdm EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-core 0xb2f7302a stm32_dfsdm_start_dfsdm -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x06ccd6a4 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x0756f6a7 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x034d31a4 iio_channel_cb_get_iio_dev 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 0x66611497 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 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf1f9a79c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0c3d4081 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1a7248dc iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1ab06e76 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x202cc270 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x24d40c27 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2ae8bcd0 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2f9cf582 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x58b18492 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x70f06dba iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9a81b771 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9ae39726 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb4090079 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x7ec3cfda devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc59d32db iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x03dbe7c3 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x077dd0d4 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1848ecd6 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2248eba5 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x28036887 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x53d5a56c iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x62eaad2e iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x87fe2ec1 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x90a21751 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe33fe7bd iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xeda85558 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf5d2d9c8 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x61713135 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x003dce29 devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf8a07ac iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd5e8899a devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x808e92d1 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x027efa79 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x03767f0c cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1236227a cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2defc72c cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5534fe52 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x58e7051b cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8451a9c4 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xfe2267cd iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x861d3751 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x8c7fa44f devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1dcea4de cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x20ad9236 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4ceddfd7 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x60244ae4 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x636cbf74 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7f3a2e54 cros_ec_sensors_ext_info EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9fa720e5 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc5067640 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcb98b837 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdfba3204 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf6b18e51 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0013f6e2 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x55c3622d bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x82f83982 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x5e9c9456 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09488bec iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d222e8e iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1116d622 iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x133c4a6e iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d81bd16 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2057b962 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x211f5549 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x240314d3 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26cbb5fd iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc6d6855f cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0249ba1 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf8d76c1f cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfea0857b cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfeb828b3 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x333b991c bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x54192253 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x620b65c3 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xc77cf2f1 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x074f5a35 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x081f0283 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b5906df iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f57925e __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x128a6ec0 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x138ce7fc iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15717ab5 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17adcb44 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bba1c28 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d1ee10b iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ebd0c66 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x265e5617 iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fa45eec iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32b233f3 devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x385e00de iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c02746b iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3cbc17d7 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ff1329c iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x431f2b65 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4618afb1 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ca03674 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f9a542 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ccafff6 iio_validate_own_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32e3992e iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x333aa4be iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x347e9556 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x355fed66 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35c14297 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x394a71c6 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dbc722e iio_map_array_unregister EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x502f7951 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5adacfd4 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f9c9d48 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f9fb81d iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6186aa88 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x651ada79 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68465ef2 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69c0211b iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a832fbd iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6cf46017 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6d0206c0 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71ddcdb0 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72d0b7d6 devm_iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74c121fe iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7bd802b4 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f7af3bd iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x805c059e iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e0e202a devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92e5751d iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9325b908 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9bfc2660 iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f03af81 iio_device_claim_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8f6dc46 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa360ca9 iio_device_release_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf9780c9 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8db9f43 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc64d03b4 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7579d10 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9becd2b fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb57f253 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbaf6552 iio_validate_own_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2caeb51 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2ed67d7 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9f45b97 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3d98ee7 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6992e83 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf69c133a iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58838f27 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6be73dbd iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6d8e2ae5 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70381264 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x743e9987 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74716e55 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x774062b9 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a62575d iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ab1041c devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7be7d1b0 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c6be7f9 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8fda5a61 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x901d8fd0 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95be1837 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9695009f iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0cc773b iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa82a3f63 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb17f4563 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb234857a devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4e731fa devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb662373e iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8737709 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb4f528c iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc14d8b2e iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8e7109a fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbc4def6 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3809b76 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3dfa312 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde7dcbbd devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe439c206 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe470e3e5 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe4b8cb46 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9cce972 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4c99770 iio_convert_raw_to_processed EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x06d6a39e rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0d719ab9 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f351904 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x207b31f9 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x54f7865d rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5f1732b2 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x65b1fd3b rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x77641d9f rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7b0a334e rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8c087c33 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeda285d8 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xee8e36a8 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xec72dfee input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x0b45fc36 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x640eab4d adxl34x_pm -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7e75b2ea adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x11c423bf rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x21f0e2e3 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x52b33eb3 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x62b0af6c rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x76901b8a rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7a55d673 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x929243d1 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x929f3d69 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb4e0e0ff rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd56b8377 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd62e1cc7 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeaecb0fb rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x6d2db277 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6c599835 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x81a67af9 adxl34x_pm +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xc02e1ba1 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x12e1d4b1 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x158a05fa rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x17cce938 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x22d9be30 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x341a7228 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x43b40525 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x79e2c1e6 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7bf13cd2 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7d96e2d5 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa33674c0 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb7394156 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcf18931d rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf559b741 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0727d9f7 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xaade062d cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe959082f cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x58bed900 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfd5f7b3b cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa41877af cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc24215c3 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x25a9746a tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x546d9f6b tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x55690e10 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x93e7b0f9 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c1af0c5 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2c795f22 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x66b9a5cb wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7c5b6257 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa26a226c wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa328d349 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xca83d076 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe0d35fbc wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe9e0b4a3 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xed329a54 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfa1fd44c wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfd6d42e6 wm9705_codec -EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x00a4a50d icc_clk_register -EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x637b77ab icc_clk_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xb33dccd1 imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf7e76f93 imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0756d879 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1bd1f83e rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5d5d4b68 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x72524ae1 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7c5c699d __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8a83ff8e rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9ead6f78 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcea1a31f rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd1630d00 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe46d416a rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe9304ac7 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfa33bd90 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfc5b9713 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x023ba0f1 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcaff197d cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xeb4d5f2a cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf1e92ecd cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf9fe6203 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3a627be7 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7f4c5929 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1ecc276d tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x51cd56b5 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa26976f9 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xae2ad431 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0475797b wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d8564bf wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1f06c9e4 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3723bd4c wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x591ffe6f wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6d13d4fd wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70adc9a7 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x89756c07 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8c930696 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa1b9d463 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe7dbd69 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc494af8c wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0xae75ecae icc_clk_register +EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0xe779b369 icc_clk_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x4896a1d6 imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xe0d5e7cc imx_icc_unregister EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x7a5fb3dc of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x52c1aa56 of_bcm_voter_get EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x936a7e97 qcom_icc_bcm_voter_add -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x20a35df3 qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4c07b6cf qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x895fcfc0 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xab40f9de qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd1220051 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xf6cac09a qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3f0ca226 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x70d8cc4f qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x9e47dfa6 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc7436fae qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd6fbf1db qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xf3d07117 qcom_icc_aggregate EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x20bca0b1 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x21eeafcd ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2dd0978f ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7baeb370 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8e60841e ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa09b9035 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xade0678a ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb6514ec5 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcdbb8fbf ipack_driver_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1133490f led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x26437e80 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6cf180e9 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6e28b092 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7c322651 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa2dfbf34 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc208094b led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc915fbd0 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x07761477 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5f16d432 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc77fe50a devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xcf7edbb7 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd9bf893d led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x11a6088b lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x11c533ad lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x31dbc78e lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5a3e1063 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x73add060 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x92358d1c lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbb806f11 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd7aa07bd lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xea7e4efd lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xefb6fedb lp55xx_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x20d37f26 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2455aa4c ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2c293cb6 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4387b54e ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x639af707 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x82dea236 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x93661c7e ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc8222333 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe7c1943c ipack_device_init +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0468a929 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x04938ae7 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x12399ba8 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x80f5e54a led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x896fe1a5 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xae75ace3 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb7d0be8f devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc7aa2ec8 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x37ba8b3f devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x53f4d8fb devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x557a0310 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x95bacf98 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xced8759a led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x112b5fac lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x20cadb1b lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x557b6740 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x632fece8 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7b206939 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7b398ecf lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8f8dce56 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9e374633 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcb1c7a75 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xff4341f7 lp55xx_register_leds EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get 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/md/bcache/bcache 0x03ba4ba0 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x00a881cc __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0486d27a __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04b25810 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04cb8cda __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05058957 __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x063306f1 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0e8c6c76 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1bdf3595 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28cb7b60 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e42aef7 __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ecd5ad7 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x362eda19 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37573682 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37808fd7 __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37b31e4f __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a3eb678 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ee2b2b0 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3d9cf07d __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3feb7def __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44bb87a3 __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47b2af54 __tracepoint_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b96c8a0 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x503d10cd __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x556b9a4d __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5883392e __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x52f15778 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x57462392 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5c8d976d __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f9386a1 __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x60e87ce0 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6119e203 __tracepoint_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66232cfe __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6aba0562 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e7df078 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70f937a8 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71a90620 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f4b72b5 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81d4d2d1 __tracepoint_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b9fa1d8 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8bba9251 __tracepoint_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f7308be __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9282717e __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c8c39b __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9516ca30 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9730d25d __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa032c2f9 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09a6b09 __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xacacba1a __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa915def2 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1ae9a7c __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb8e05360 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc451af99 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc478864d __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb70b881 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc9b9a3e __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc06d0e85 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc100f1e4 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcabca9bd __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd62fb871 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd44676ad __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8aa1746 __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f63855 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd1455a7 __tracepoint_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2841131 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7f7e33f __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe9d56d8c __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea3a1ab2 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec3327c6 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xefbab330 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf021519f __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf11fd9dd __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1aef27d __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1eb9718 __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf41d067b __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfa6330f0 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc0a0b57 __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd5d057b __tracepoint_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfed8327b __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x10f70bd8 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0786cd58 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0a0f6db3 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x15397186 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 0x18c8a95e dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x242621b0 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 0x3677524c dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x38dbf736 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6041c9a8 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x650b50cd dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6579bc7a dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x349b1a2e dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4145955a dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x57b52666 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5cb61479 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 0x6c230776 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7119b137 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x81bf1014 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8cd9c3f7 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x992553c4 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa30039c3 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa317cd7c dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x76bf7d4c dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9186fc72 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xac99497d dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb18df35e dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb460048d 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 0xc1607f51 dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd989e77d dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd0d20d55 dm_cell_error EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda3ef4b6 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdcad6163 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe2c7009d dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeb752f23 dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x4bc4117b dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x656100cc dm_bufio_client_reset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard @@ -13776,7 +13796,6 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcda50392 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release @@ -13786,7 +13805,6 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1c852cab btracker_nr_demotions_queued -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x210902dc dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x23ddc5ab dm_cache_policy_get_version EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x37ef59a5 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x481a0b15 btracker_create @@ -13796,30 +13814,31 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65eea825 btracker_nr_writebacks_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2db1eb5 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcd9461f2 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd524358b dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x196c4794 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xba0c4f9c dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8c9fe582 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc9fc18da 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 0x15889a60 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x37a85d13 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3822c262 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0a4c6c96 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x33b77529 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x370144c1 dm_rh_bio_to_region EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x66ad92e3 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 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8fadfd9c dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9e667db8 dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa7234667 dm_region_hash_create 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 0xcc68615a 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 0xeece771a dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size 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 @@ -13884,6 +13903,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa99029b9 dm_bitset_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb940af6a dm_array_info_init EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbdde4031 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcc75e601 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd017c9c7 dm_array_new EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd8682982 dm_btree_insert @@ -13894,78 +13914,77 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xecc1aeba dm_bitset_test_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xedf5036f dm_bitset_flush -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf0b7987d dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1b8229df cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1c67b49f cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x23ec2a8b cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x26515f70 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x29730dca cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x330a4c03 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x430afe73 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x44711288 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4d7d8852 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x651934f6 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6e151f14 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x79044b1c cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8b9185b4 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8c1e39ec cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9e96fa07 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0c3821c6 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1d1c0057 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3b80bf68 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3e4a1ae2 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x44891f19 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x473d5a12 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4897ab27 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x530225e6 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x658f979c cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6fcec305 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x73a128be cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x768143ed cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7d118024 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9e9618f7 cec_notifier_cec_adap_register EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa333b4e7 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xabfc9606 cec_s_log_addrs EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbb30995e cec_notifier_conn_register EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbf91a194 cec_pin_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc6e1d0c5 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd3616609 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd3a234c3 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd9225d45 cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe43784b3 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfca97413 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd327ae8a cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdd200ced cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xde371ce5 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe50609f0 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe8e42a98 cec_queue_pin_5v_event EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x86a2bd78 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9e110eb8 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa15f7922 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa3dead92 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa505458c saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc5898001 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd7774df8 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1b053a90 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1e140d57 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2b711c35 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x392ed2a6 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4aca82ef saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5d7c7d5c saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x73e85ca2 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x76e52d77 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd9666110 saa7146_register_extension EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe897e45f saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xea7e1ce6 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf51015f4 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x09477984 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x56bd2551 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7f8df97c saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcae723aa saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xff4b0535 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x098872e0 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x20fc85a6 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xedf84c2f saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0a0bd9f2 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x10d572c0 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8e083e8c saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb6b49696 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe74435a7 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x12c01b60 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1d47bdd8 smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x27f232f1 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x31a1335e sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x28c9ef25 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x36d29905 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4ccd968f smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x514402e2 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5cec8423 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d660248 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6a7b48c6 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5199258e smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x572019c7 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c1808d8 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6e14f01d smscore_register_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7500a273 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x76cee6ec smscore_start_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7f44bc64 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x814508b4 smscore_unregister_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x921a670c sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x967cae5e smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7bb13b8 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xafd2c6b3 smscore_get_device_mode EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc3ef6a76 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc592353f smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd2a21f4e smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa91ec7b smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc481f63c sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcd2fb76d smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd3635e98 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xddbf2b47 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf778882b smscore_register_device EXPORT_SYMBOL_GPL drivers/media/common/uvc 0x08c5db3e uvc_format_by_guid EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text @@ -13984,527 +14003,527 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x007086d9 vb2_core_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0a31b37f __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0be1034a vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x144a91cb vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x14d73365 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1a662c9d vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c05218f vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2deee21f vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3336f78e vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x359278d8 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x39262167 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x09ae607b vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0d3f0465 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0ffcf0e0 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21ad3705 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x25eea786 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x308e1a89 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x313ab108 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3289a993 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x36e2231b vb2_core_streamon EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c22713a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3ea2df61 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x40a822b1 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x428d0b7b vb2_core_prepare_buf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50a1bb4a __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ba97a68 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5cd313ca vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5e9fbdb7 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x67f410ee vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x746ac1a7 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52b7ed47 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a1bfd89 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x618677f0 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x70c7670a vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x74f1257c vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7bbaca78 vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ee32286 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x869c46ae vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8754d82d vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d0e16b3 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9d482a70 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa73eb315 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb13e8352 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb33ae726 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x803e2793 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x86821af2 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8cd05304 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8fe27248 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x951651db vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa3f32d7f vb2_plane_cookie EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc30f9fa9 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5c10a8e vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc6d3202c vb2_core_queue_init EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca31a56e vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce97464c __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd06f492e vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeb42a238 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xed0b1583 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5e1026a __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdef5661d vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe448340e vb2_queue_error EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf97a7c84 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x570c29f5 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc8a9385a vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xd41ef19f vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xadc69786 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x032964cc vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0de285ac _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x10186311 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x17de5466 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40ab5bc8 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43abc0eb vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4ca46491 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x61c7a2c4 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6486fb48 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d00db8e vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x71fa5013 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x75e3ed13 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7dbcd5b7 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x81fb303f vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8970e13d vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97c80bee vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x981ac551 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x98714cc5 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa97b7665 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaac5efdc vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaf2a22ae vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb8d551a9 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb427dfd vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbbc4289e vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc3d5e428 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd4082ef1 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdaf9d3a3 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdc09e830 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdcc836a5 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe758ec86 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe8872534 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe8c0bed6 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf0e1e2b8 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf5260fd2 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x19b9ea19 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x36ea2e8d dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x656e80a7 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xba3ed0d7 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xbca920a1 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xa6beab1b ascot2e_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x99dc2ad3 atbm8830_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x1be4ecdd au8522_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xe0c5b785 bcm3510_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x2b85a972 cx22700_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x784a1d1f cx22702_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x3095e31d cx24110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x1f03b156 cx24113_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x61b7729b cx24116_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xfeb78344 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0xdac1f5b9 cx24120_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0xb88f42e7 cx24123_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0x6bf12966 cxd2820r_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xc8968613 cxd2841er_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xffd9ea6f cxd2841er_attach_t_c -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x81235837 cxd2880_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x77a758bf dib0070_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x1c5e8af5 dib0090_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x8f3d7793 dib0090_fw_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xde7257bf dib3000mb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x6a4383fc dib3000mc_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x39bde8fb dib7000m_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x76d42c09 dib7000p_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x4448df0e dib8000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0xf6576b3d dib9000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xc2e35bbc drx39xxj_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x5a513ea9 drxd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x0688ffce drxk_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x7db30523 ds3000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xd6cddf3f dvb_pll_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x26868f96 ec100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xe7ec3d0e gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x7670963a helene_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xf751e822 helene_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x192cc110 horus3a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x86bb3073 isl6405_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x9d352471 isl6421_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0xae73948e isl6423_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x04642ba9 itd1000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x166ab841 ix2505v_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x9dcdfb0e l64781_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x7f633d3c lg2160_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xe1d7e7d7 lgdt3305_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x3341a237 lgdt3306a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x8a7b8af4 lgdt330x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0xe837d370 lgs8gxx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x71f9e4f6 lnbh25_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xb6dab26f lnbh24_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xf391d256 lnbp21_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xab9671b9 lnbp22_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x352c29fc m88ds3103_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0xa5d96642 m88rs2000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x70ccf4d6 mb86a16_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x62930b72 mb86a20s_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0xc55c0f3a mt312_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x07e06aa5 mt352_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xc4da1a5e mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x2aaa4a08 nxt200x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x9a72ef69 nxt6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xc8193ad4 or51132_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x8dbfe982 or51211_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x12e0b053 s5h1409_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xc908c162 s5h1411_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x7d6c0fd9 s5h1420_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xc7b9ecbe s5h1432_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0xe0419161 s921_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x76a1d195 si21xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x43f9e3d8 sp887x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xf808454f stb0899_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x76ef1350 stb6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x2f60e895 stb6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x355212b1 stv0288_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x0e5499fe stv0297_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x5cac6a91 stv0299_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x54a2dcaa stv0367cab_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xd59026c7 stv0367ter_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xe56038fd stv0367ddb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x8edd1339 stv0900_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xce73ebcf stv090x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x7f023b1e stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x72f0ea0d stv6110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xdd5ad521 stv6110x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x874e4fed stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x040e091b tda10021_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x3515d228 tda10023_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x6b38559f tda10048_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x85324b05 tda10046_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xbebf5471 tda10045_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xeb338e70 tda10086_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x1a56c1eb tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x56130edf tda665x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x44845d34 tda8083_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x7c6b1370 tda8261_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0xdace5f76 tda826x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x84137e5c ts2020_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xe42323b4 tua6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x7deca276 ves1820_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x772c3035 ves1x93_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x8a22c6ef zl10036_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x4187e45b zl10039_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x566fdd23 zl10353_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x5d39ba63 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x7e9143d1 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0cbdfa7d max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2e85b54b max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3c912a47 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x46da25b0 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5f413e46 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6bd74c6d max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x72dca315 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x80448747 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9e98f93e max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbfb36149 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xde0d762f max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe30a715f max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfda07609 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0002b5e2 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x140b8462 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x14df04da media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x15c06253 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x179f1fab media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18965a6d __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d37d018 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ec8ddc4 media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ef33ebe media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3aecbb63 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b4e41ef media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3e4cf484 media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ec56bc5 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4594759b media_pipeline_entity_iter_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c244da3 media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57376c75 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ac78d62 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5cf9b9af media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e76484a media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62bbd6cb media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x464e974e vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xe513912b vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x47e84ad1 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x712a17e7 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0b8696a2 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1df722be vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x233ab5ec vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29556683 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x33cf8c10 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x381ee2cd vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a6f4776 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x465cdb30 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x49129657 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4fad2329 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5004756e vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5648e68a vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x564f7010 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x57a20386 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b90d102 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5f32329d vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x630c887e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x68fdef73 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74a49b04 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82b4eeb7 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x83a3a5b2 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8638aa74 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8facd770 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x98369231 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x99dc36b1 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9a8ae6a7 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa670fbd8 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaedc2cfb vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb64265ac vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfd5eb99 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd77a2502 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec604717 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfba3dbb8 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfd89e9ca vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x884e7035 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7cbf327a dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9fb3911b dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa31a8ce0 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x74b1a5fd as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x10a63432 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x51e9a4af atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x1d5c7abf au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xe7937003 bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x7387cb4c cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x02a982d0 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x68978123 cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x2fe72e30 cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xb6b41aae cx24116_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xa6b5e17a cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0xbb20b224 cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x4ac315af cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0x011fb08e cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x33091b0b cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xf37c6650 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x59bcf9f6 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0xbff9015e dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x2f3e569a dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xac8910f6 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x1606a858 dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xfcf53b72 dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0xbe038d34 dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x6dc244af dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x2fc4ed9e dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x13e26f28 dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xcabd57b0 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xa1c25dfd drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xda27901b drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x90b6fb81 ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x6d14e9db dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x17657cc6 ec100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x2e4966a5 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x696a9414 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x9a6d9903 helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0xaf345e39 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x791ccc16 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x3ae9db26 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x88c4b562 isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x8da14c22 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0xa85d3cf8 ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x03c2341f l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0xc5a721b9 lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xbe108fe4 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x821c1df7 lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0xd8ddb38b lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0xfb543813 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0xcf7631c7 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x1e4ca7b6 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x5a6a423c lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xbc1894a5 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x77f4b299 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x13b3eef3 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x687d7a27 mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x19f3a761 mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x7bd3da0b mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x5201ced6 mt352_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x4d504ab6 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0xb3ca27cc nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x03c62d65 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x51795710 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xe614d891 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x28783ca0 s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x459b7dee s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xe7cd014d s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x4b2a5032 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x95f3ca7e s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x0c424e5a si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x2e462ff8 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xe93a49d6 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x53000e0e stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0xad9cd505 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x39f79e8e stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x6768e7fd stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x344de42b stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x4c13525b stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xcd21a836 stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xfdd1b60c stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x42de473d stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xeb8541a0 stv090x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x5bf9daf2 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x484c179e stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xc5b9436b stv6110x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x0781b15f stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x28dc36ac tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x837f5a99 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x4a7ac4a3 tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x4e6e03a8 tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x75e31cdc tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x55040ac9 tda10086_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb798b23d tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x8e428536 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x1c863f0a tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x049e9685 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0xc4a0b0a7 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x58bc1189 ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xc1cc3eea tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x32aee885 ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x0c4c9c26 ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xe0f4ca6a zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xc1481ae9 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0xdf379a52 zl10353_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x591ef302 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x63e67090 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3ea01449 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4baaac11 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4f694331 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6ecc3922 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x76bba421 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x81dfc553 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x831833c2 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x840b20e2 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8755b00a max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8db79f59 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x96537cff max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa2981e13 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xee2de62d max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0de1a21f media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x15300844 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16a9af83 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20089128 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x234127ad media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23841946 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26e0a9d5 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x33165fe2 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3565e456 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x380385d9 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x49d19e13 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b11638d media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x505cc65a __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x508f3713 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x523fb24f media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x572ee8d5 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5ecfbefb media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6522082b media_pad_pipeline EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65dd67e0 media_pipeline_entity_iter_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x68e43b2f media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x70a04593 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c46c838 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7cac830a __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x828afccd media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x868875eb media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x910f2b36 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x922e621b __media_pipeline_entity_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x971179a5 media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x994240ea media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9af54f19 media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9eb434f5 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa57cc012 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa93a3277 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xadbe3927 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0649903 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb38ec5de __media_pipeline_pad_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbbaa727a media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbed03f70 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc0b09c46 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc18236b8 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcab346f5 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf90efd6 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd69328da __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd87dbc59 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8d38a50 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd2eb870 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd9a680c media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdfada3db __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe52f0f86 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe54a151e media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6a2b0870 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6a58ee21 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6aa319b2 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ffcfebe media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71e3d4fd media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x75c1c122 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76de5413 __media_pipeline_pad_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79665423 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ef04720 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8412df09 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x85a4cf64 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x85bae80f media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x919b4e10 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x993ce1bd media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d3cd76b media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d86f316 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa28ae4d9 media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6145cb0 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa67c76cb __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb431c5bc media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6707ce3 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8f2ccad __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb93d270f media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb4215e1 __media_pipeline_entity_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbcd95a9f __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc32d066a __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc990e4a0 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb2a272f media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcfa4cb63 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd27fc7c9 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd56b56fa media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd59b9562 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd7dda90c media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdfd2e5c7 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe17c3037 media_device_cleanup EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed06def9 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf369b2ce media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf427d05d media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4fff81a media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5d22a1e media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc7ee98e media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xedd9232e dst_attach -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0xc686353c dst_ca_attach -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xfe08f8d5 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x14aab1f2 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19a44990 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c239a1d mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1fb70585 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x200482dd mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x35a46352 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x53654181 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5853b754 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x67165775 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6cd498b3 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x80b60193 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x963203f2 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9f00da1f mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb4eb3bef mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb6824bbf mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc4bb94c1 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd20435b4 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd3ead354 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd71d6426 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe4307f98 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41853e82 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4324c8eb saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x43dee778 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54845b12 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6294e414 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6377f2c3 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x66a7455c saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c6c2ae8 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c05528d saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x869a48dc saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8d8442fe saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9b6cf018 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9cb662df saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa3f6f5cf saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc02428cc saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd6f4f8a0 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb4e6f3a saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe552478b saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa717ea5 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x305f8b91 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeeaa2f81 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf9da9d34 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc06b538 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd85b919 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x66965d98 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x242ccb3b dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xfb423a2f cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xbc69fb56 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0469cccf mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1dc929cc mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x21483e07 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x33eb1ff4 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x462f1d34 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4acf3b4c mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f168dd7 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6fbb4b43 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8dc2cc61 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x94a0ac71 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb88bdb66 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc62f753 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcdc677ef mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd30cde2d mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdec2e022 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe645c92a mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe755de05 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xebb5edcc mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfb840cbd mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x18594ea5 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1e5dc41e saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x200629e9 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x233e251a saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x286475f8 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x37f62a9f saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4e96da50 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x59165282 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x67491e90 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x680e7ef0 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b79034a saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x89e4a6bb saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbda906f0 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf20c804 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd7df6f8d saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe0a98892 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe79de959 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe9edffc7 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea6ecd90 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x015662a4 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2f823664 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x52177c77 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5e5fa2e2 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 0x8fe37089 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbbd48762 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xce7c7ea1 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd3d4d2ae ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xed53c567 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf20982ed ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x006b2663 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x01994488 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x193f78e7 nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3906f217 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4805af79 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x6c2fe231 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x74428f7c nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x834692de nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x939ae44a nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa1dc9732 nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xbb4e15fd nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc99a0bf7 nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xce8fb582 nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd18cd0bf nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x0c486677 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x22d5f18c mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x27ddfe83 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x80612e73 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xaf106ffb mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x27f9d68b vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x323985d1 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x35f436fb vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x3a95110b vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x72cc0d1e vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x857d3e3c vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa70c7e48 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xb3352318 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x02250eb6 hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x058a3bee hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x139e7a47 venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x150ae270 venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1736a301 venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x18917ed6 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x198f6ba7 venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x19d64b8b venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa05046c9 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xad8596fb ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb358c9ed ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x05b8b32b nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1af6c2cd nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2604f5d5 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2824c005 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2f34ca2e nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x313204b4 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x6b806194 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x79ef20e9 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9a29b2fa nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9f9603d7 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xad25ea9a nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xca335c8b nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd7901be6 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfc5a7928 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x2ca15e2e mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x2d7ba6d0 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x2e183774 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xdfc25090 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xef5a7028 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x24f64b30 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x5f9c91d2 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7425f4a2 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x757cff75 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8be6ed14 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8c9a1f63 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xab0f21e5 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xc2539e1e vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0eeab0cd venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0f3445e5 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x19c84665 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1b3966fc venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21996659 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2300a439 venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2336f5cf venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x246216e0 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x25aa4405 venus_helper_set_num_bufs EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x281458dd hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2845d16b hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2a6c4f1e venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2cdaaa2d venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x29319795 venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2b85e134 venus_helper_session_init EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2e8ecf92 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3565dbe3 venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3749cfd9 venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x39b254ef venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4262a1dc venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5a836106 venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5e40aabe venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x64af43d9 venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6d1b4079 venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6ec7536c hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6fd57e84 venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x776ffc2d venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7a45c10e venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7c6a37b0 venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x82dfe437 venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x84deb18c hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x872d9df9 venus_helper_change_dpb_owner -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x90749e61 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x90fdebb1 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x93a92d64 venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x93ab5b93 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9888986f venus_helper_vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9f02e0c4 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa438f2b0 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa46b057e venus_helper_check_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb0242a44 venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb20552d9 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2ec9719a venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2f3d18d1 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4aaa0cf5 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4b9cc7b6 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4cc382ae venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4ddff1dc venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x532157c0 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x53fc5900 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x58859d9b venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5b9d4a58 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5f5ec261 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6166daec venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6ac02f61 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7ee8f527 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x840dba01 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x85ff7121 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x86aa04e1 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x86b6c1e9 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8f33bcb5 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x94a203b6 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9746e788 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x979e119e venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9fd85260 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa1fbccb7 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa72473d2 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xad61a447 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xade24f5e venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb1e11d44 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb42988c1 venus_helper_set_format_constraints EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5da1da9 venus_helper_get_framesz_raw -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb96b2682 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc94d3597 venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcab6c7b6 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd0e71132 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb971d77e hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbaf50f47 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb5d2921 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbdd3bcff venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc5ac990a venus_helper_vb2_buf_prepare EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd21da2e4 venus_helper_get_framesz -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd229b3c0 hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd22b82c9 hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xde20ae0b venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe0b68dff venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe4084b16 venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe5924cca venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe63477ed venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe6cf8d7b venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xec2ca0b1 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf7c57f10 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf86f629b venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd5b89ae0 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd6446147 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdcd33f5c venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe2b78286 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe4e19e35 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe865427e venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe8c4c5f9 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf2e4034a venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfcf84554 venus_helper_set_dyn_bufmode EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x58620c11 rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x66189f98 rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x1a2442c8 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x33f66db8 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x45746ada vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x478dc3f7 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x4ee91715 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x597121f0 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xd2905539 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x12296206 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x157adefd xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x24724452 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x58e57d0c vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x5ec94894 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x6a88d1c0 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x958e7dee vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xa6914f2e vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe3a58b47 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x021b77b4 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0cdf34d3 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x31e05b4c xvip_cleanup_resources EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32a020d5 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9dd87c09 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa16f60fa xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xaa8cb088 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4344fab2 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x70bbb16a xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x928de81d xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa5e79bee xvip_enum_frame_size EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc2d2e188 xvip_of_get_format EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfa9c67cb 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 0xf5422734 xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x3f77f2f2 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb734c293 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x69aac43d si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x776f23d0 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9d668fa6 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc3825a7c si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdbb90d56 si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x167f24ea ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x20c1a90a rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x253eeb4e ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xb5725929 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4a083ff2 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xf92bca40 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1e01adb8 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x76a7fb00 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa465ae81 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc822e407 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdd2f9227 si470x_set_freq EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x38b821c6 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x48189cd4 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4fd8386e rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x539395f2 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x72c3a4a3 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x82b07524 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98cc0cd1 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8bbd870 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad1a8dbb ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x41d35795 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x421cc0b2 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x47d34ce9 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4af08baa rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x66a18436 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x74d867de devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8dc89697 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x93a175d0 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x954bf73b devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b1efdcf ir_raw_event_store_edge EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb97e7e50 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba2a06c2 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe131303e rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe156ee5a ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf97e41fe rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbf938a5a rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcc16afcb lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd31b3c6c rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdbe78895 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe109b05a rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7f290aa rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeaf02ed4 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf98607c1 rc_unregister_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfcd4244f ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x1054f82d fc0011_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xb2f6d0ef fc0012_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xfcde65dd fc0013_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x0a3b1858 max2165_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x45f9da3e mc44s803_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0xd1f087d5 mt2060_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x1b370c0f mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x0bb4e865 microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xcc6c15dd mt2131_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0xa5149871 mt2266_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x38bf068f mxl5005s_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xff741a27 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x0802cb75 qt1010_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x3ac0c7f6 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x37db257f tda18218_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x4e6059e3 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x99d207f5 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3b24a441 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x97878242 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x55dcd10a tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd68b64a1 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xfc81c197 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x451afa3d tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc711f84b tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xabd339d7 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0x52204b0b xc2028_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x432e7889 xc4000_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x28322a1e xc5000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x457d0c3d fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xa2d16614 fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x604bf312 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0xdbbca592 max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xc13cfb4c mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x7511a727 mt2060_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9ff22d7d mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x87427b8b microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x688d352f mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x85b044ae mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xe410695a mxl5005s_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0081b51d mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x28a617aa qt1010_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6c48b69f r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x0d67d8ec tda18218_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x7d8bd3d5 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x12970a4a tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x2ebb3dac tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x5972406d tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xd5132fb8 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7c4e3f25 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x93deb4ab tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb416eecb tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc5d5048f tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xde6162c8 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0xe9e01014 xc2028_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0xcfbdc405 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xb293248a xc5000_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01741399 cx231xx_disable656 EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x125b3500 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2ca27a73 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x31ba52e0 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ef8ccd2 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x571095ab cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5861bd06 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x58cd3d40 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x777218ec cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c7166d6 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x98a0e3bf cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x99de6eb6 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa67acf1 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xabc8a4fb cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbc2046c1 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbf1006b1 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc0528b05 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xce1fcebd cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4b52aa6 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef67710b cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf731f9ab cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x8f8091be mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf08f49e2 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x09663583 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0c2417d6 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x219c6766 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d02a85e em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x368aa789 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3dbbe4d4 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3f234bfe em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x51bccbef em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x58bc249e em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62c64a1d em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6aa9a85f em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0cd9ea6f cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1005d4ba cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2c682ade cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x32f8a0b9 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x357db981 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43fdff6a cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x47728398 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57720591 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7be3b2d5 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93113da1 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9e1d69f9 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa1abbd80 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa500c87c cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac5847bb cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae9d8ea9 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb1de2a1b cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd78257a cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcaac4efa cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd9c6b168 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x87d6196a mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5189edc4 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2f591dc2 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x37076462 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d42f56b em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x58437133 em28xx_write_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7dfa8aec em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7b043384 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e9f85a6 em28xx_read_ac97 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x856e52e4 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8b0893d1 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8cad992a em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x91580038 em28xx_init_usb_xfer EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9426e442 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf47b736 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xca8993f5 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd2caa10d em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe01d6c43 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2b17ab29 v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x42c611a4 __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8ce97f07 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8eec84f4 __v4l2_async_nf_add_i2c -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe072a8b3 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa001cf56 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa09f1a9d em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb232bd4b em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc6a4d76b em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcbe6194d em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf942aef em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd2459571 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde1cd991 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe66e36fe em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0bc943b5 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1609e7f0 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x261f145c v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2a0b30ff __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x69d3b2a9 __v4l2_async_nf_add_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -14522,20 +14541,20 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x09312028 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x99a37ea9 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd634f5f1 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x044c7b85 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0de334ff v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2b472226 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x35a2944e v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x68a6baf3 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6d6001c2 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc722c08a v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0096cc64 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x02c6bba8 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3ca8605d v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x493f8849 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5218c5c4 v4l2_async_nf_parse_fwnode_endpoints EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7c190fea v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7df81482 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x88dd0828 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9910f911 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc1e64228 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe04ee686 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7b5d2ef7 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9c0e43ea v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcff1fe68 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfa1d05b1 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfddbf9ee v4l2_fwnode_device_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists @@ -14544,53 +14563,53 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8956e3f v4l2_jpeg_parse_huffman_tables EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8f40f9e v4l2_jpeg_parse_header EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xf8ffd565 v4l2_jpeg_parse_quantization_tables -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x09616e76 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0970cbdb v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f4e24d3 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f6dc041 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22208f95 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24eea75f v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28185550 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3700cc2b v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x38c62d38 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ad3249f v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3fc96172 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ceb5155 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f416698 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a4d7a54 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5bf4339d v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x695c1795 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6aef92aa v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6cdcfd44 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x71c237b1 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01898116 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x02f5b891 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0388afcd v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08ca4ecc v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e913a40 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1265c1cb v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18d0a2f5 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24babf31 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32e769c0 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b627166 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3cef7caa v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d6c8576 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56214312 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5953b560 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ab1e0f2 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5b63b2bd v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c372e54 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6197a611 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x630883f5 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64267b8e v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64d560e9 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69d39103 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a6fe0a2 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6e11f9eb v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ff0b7a2 v4l2_m2m_ioctl_stateless_try_decoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7da738f2 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x83dd4707 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88a5b5d1 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8bbb4d5f v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90f9b80f v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93e8b250 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x93fe2831 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9535c65c v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98e9da2f v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9fdad43 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb05d27b1 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1592940 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb954975a v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbad56f2e v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc260986b v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc696d8eb v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a8331bd v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x875f6d5e v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90161711 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x965c2004 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa38dbb29 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3db55db v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xadec737b v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafe95d67 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb79124ea v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbec51c12 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc165a8c4 v4l2_m2m_update_stop_streaming_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcdd87db4 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd09d20d7 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4481fcd v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd606bbf1 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd77dad71 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd028b49 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeba5877d v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7025bb1 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc95f2f48 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdaa12d94 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee74ec24 v4l2_m2m_ioctl_try_encoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf946981d v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff58a9c7 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf564fc23 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8623033 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf97b8d76 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfaa4ea11 v4l2_m2m_streamon EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled @@ -14600,364 +14619,364 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13d73764 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x28f24e8d videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c324992 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3feaeb64 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a41eb72 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7428d31b videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x74737162 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x865b6a56 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x88676ca8 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8b91fead videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8d4bb985 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95e664a8 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0c3e116 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb1c4a572 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6568bf1 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb88b4a3c videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca0beb90 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcc07253c videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xccdedeeb videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdaeeef00 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0e5fcde videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xecd50a29 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed540c08 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfed72aca videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x02c8ad6c videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12d81964 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1cb2f9d4 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2387afd9 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x25f0e266 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3613480e videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x384dce0f videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x41d4a348 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4da2fb6e videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x55733c58 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x55ffe55e videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5eefefc0 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6eaed71d videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x705d5535 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8543c1c7 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9243ce32 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x97135911 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6222545 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd55e95e videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda1f698b videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd660b21 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe7448e20 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf32e2735 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf497c26f videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0286bf91 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0d764670 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x38a0b373 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 0x884075b2 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc48db703 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe3089af2 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xed828056 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x030b8825 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0638886d v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b5ea817 __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f9125bf v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x119159ef v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9b5c0500 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0305e01b v4l2_subdev_disable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06f3f757 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d2d2e2f v4l2_device_register_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15816d9d v4l2_subdev_routing_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1dbefa05 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x258c6764 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25b8f8a4 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a649fc8 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1755a5b4 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17888d79 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1aaf64d4 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ca70026 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23754933 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24752409 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24861567 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x282bf38f v4l2_subdev_get_fmt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b6856cd __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c03baa1 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c1fbd2a v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x300749f1 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x306debca v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x308d8b96 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3713adbd __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37833748 v4l2_subdev_put_privacy_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bbe08fd v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bcec8dc __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x412f9771 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44901b3f v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45969ab7 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x470b256b v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x301b68c4 video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x313f598b v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32155a9e video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34256c89 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36600f67 v4l2_subdev_set_routing_with_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a7076d4 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bad38c5 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3cb109bd v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d99806a __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4435e965 v4l2_device_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4894cd55 v4l2_subdev_state_xlate_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c341b63 v4l2_subdev_get_privacy_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ece24d2 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fb85d87 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x491ec665 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a8b51a2 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d6e541f v4l2_subdev_routing_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5114278e v4l2_subdev_set_routing_with_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x521b0c06 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53f70596 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54e5b7f6 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55626876 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c178c7f video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50a60c5b v4l2_subdev_has_pad_interdep +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57f2d855 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5940cc19 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c301d61 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ec8f883 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62394824 v4l2_subdev_get_fwnode_pad_1_to_1 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65d7839c v4l2_subdev_state_get_opposite_stream_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68f18968 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6bb1f307 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65db4937 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c4041f7 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d214012 v4l2_subdev_set_routing -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e0001af v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e8df007 v4l2_event_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x755f0229 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7aa7d763 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81cfa03c v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8815d9f8 v4l2_subdev_disable_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b124a0d video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8bad556a v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8be87194 v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x940422ad v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x955dd85f v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a925c5d v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b2a074b v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d516db4 video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e7bec06 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7136d1f3 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7199d825 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79706548 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d31e0a9 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d93b201 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85d9a0d4 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8baedae1 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x912cc138 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93171ade v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98479a48 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a887442 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e30c362 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ef69218 v4l2_spi_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa26d051e v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa44f7591 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7448598 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9b0bfd6 v4l2_subdev_has_pad_interdep -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacbeea62 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2591771 v4l2_subdev_s_stream_helper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5f8b566 v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8b2bd11 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa92e2c38 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9e6645f v4l2_i2c_new_subdev_board EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3dd8d6 __v4l2_subdev_next_active_route -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf1bae55 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3f41874 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2fa8b59 v4l2_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb48cf8aa __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5a337db v4l2_subdev_state_get_stream_compose -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc27a849e __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6b71e74 v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc740d300 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb76ab61b __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8dd1875 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9d0e993 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba323533 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba5bc792 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba83a51e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbdcc3ea5 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1090171 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2e2442d __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3327d0d v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc342b8c4 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3faf21c v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc86897a7 v4l2_subdev_state_get_stream_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9ebda08 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc002fbe v4l2_subdev_set_routing EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd33194e v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754c8f v4l2_subdev_routing_find_opposite_end -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd22a0cb0 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3979522 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3ed16dc v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9b3a807 v4l2_subdev_s_stream_helper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdcd2ae45 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde165473 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2aa6cfc v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd796a6a8 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc1e09fe v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde6e37d9 __v4l2_subdev_state_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdef3dffd __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0b98a71 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0d684b9 v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe33688f9 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3732cb6 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3efe485 v4l2_event_pending EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7c14767 v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed6c9ccf v4l2_subdev_state_get_stream_crop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xedab9f24 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf071c499 video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf167a821 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf00dd673 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2200d6b v4l2_device_register EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf488fed8 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf51e75ad v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf558b14d v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3c6210b v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf66ec0c5 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff0747fe v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd63e2610 pm80x_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf737845f __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x13f01040 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x98eb7328 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc0bca4cf pm80x_regmap_config EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf321ff26 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xfa77139d pm80x_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02b2fecf cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0c050c4f wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x13e818b7 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x17d75ce2 arizona_dev_init EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1949d8fa wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1b71540d arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2463d1e1 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x302215a1 arizona_clk32k_disable EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3501187e wm5110_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39419a43 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3bc8ea46 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3f754df4 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x42a2f67c wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4f3dcd03 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x84ec9aff wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa39c4fca wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb26e993e wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb3db6ebd cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb3fa89b8 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb749c9ff wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbd5684ab arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcfb36a1a arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x50d0d9fb wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x62799d08 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x69f0384f wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6aaa4655 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9b4a81ba arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9e129d53 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xad838dc6 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb4ee2bc4 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc6aa2e63 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcc395441 arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3fee6a6 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdb584bf7 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd8394f4b wm8997_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdfbe649b wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf1565872 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfc9d464f arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfe4f93c2 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x03c90bcc atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xdf810280 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1798ea3d da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x35d3afa4 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x964a3306 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9f2ad273 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa8207d22 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbd1c8c1b da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd5b5a3ae da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xeebb4c8a wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf7984806 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xff499a7e wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x61cd09a9 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xfba72c79 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1871232b da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x23eb4aa2 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7b344c36 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcf5c7daf da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdefbeb19 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe5da471b da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf930b9c7 da9150_write_qif EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x04ac3208 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2696b3f6 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76e38fed kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8ee15ddb kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x915f440b kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbfa00a80 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe9c9680d kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xffae5dc0 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x223d447b lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8730c45c lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9d654abe lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0689e4d9 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1ad058ed lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2185629a lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6e49cf34 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x70c025f0 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7db203df lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa9be381b lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x049cfed7 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x06235f49 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfa6caef6 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x004b55b5 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x00f3576d cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x00fe8b2d cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0554b666 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2fa3a5c8 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3b3b6acf kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5dace9dd kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x84c1f42c kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x909c6036 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x96db5ed2 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa3864266 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa8a80453 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2f46d966 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3fb4d17f lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd5f1fe6f lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x13016149 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x43ab3eda lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4d387224 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8bea3d9a lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x917ca3e1 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xae9d8370 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xeb2f10f1 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4dcce552 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x8e42a461 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xbd19214b lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x08e71b48 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x08eac708 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0e4b1013 madera_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c0f3443 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1dd5a058 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1dd87c18 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a54bba5 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a5967e5 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3281cc15 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x328c1055 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x43c64a61 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x43cb9621 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ee0bd54 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5eed6114 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6961a6a9 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x696c7ae9 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x71b4d119 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x71b90d59 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8905e0ad cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x89083ced cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb652ac0a cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xca30fda1 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xca3d21e1 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd67017d7 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd7bf4317 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xea97d635 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x15c1ec7d cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x15cc303d cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x27b37705 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x27beab45 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3f6600b5 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3f6bdcf5 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4b84f97a cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4bd20644 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4bdfda04 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x56f4f171 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x56f92d31 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x64866a09 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x648bb649 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7c531db9 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7c5ec1f9 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8409e558 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x948a9151 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9c375bbd cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9c3a87fd cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc8dee680 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd77bbc5b cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdf0246b1 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdf0f9af1 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe41bae68 madera_dev_init EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfd563ab4 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2084d630 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29003f23 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x68efae63 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x69ba7403 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7bb5816b mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe8ec201c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfbd0508b cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2b0f423d mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4252599f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8c8be97e mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9e841c16 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb402ab23 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcc31a25e mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x21dcd0ca pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x25444e78 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x38b507b3 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x478143ce pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7135c2af pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa5d0487e pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb46c4033 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb583a96f pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc96fe453 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xde4e08cc pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf1d9fa5 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe26e9715 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7ea2bc5c pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xfa9ecf45 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x03e62f50 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xaa5307fc pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb22e5a90 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbf01571f pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd107d942 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x293cd61d devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52b93cd3 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7348d5df pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x77d5f9d8 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x910cecf0 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9d5b1a32 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa6a2e573 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc0b5ccf5 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc8d3fc47 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd56ebabd pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdc13efb5 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf01f701d pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf16a0bda pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa3213480 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe20a8dbf pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3fdea6b1 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7dfcee6e pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc96af7a1 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcbaf40d5 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf2addc92 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x3d4965cf devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x2184a43f rk8xx_probe -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x3fdb077e rk8xx_shutdown -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x859f7861 rk8xx_suspend -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xe693d716 rk8xx_resume -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05592828 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x058b68f2 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08b38a77 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2699d4fd si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2e607731 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x330e1882 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3682572e si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x488cf82a si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x492fc213 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x544b8ff9 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69be6522 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x732fe0a7 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7970b858 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8702b56c si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x887ea80f si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99e23b11 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cc074d2 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e888b7e si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa987e3f3 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xabad7600 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb4518653 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4657aa1 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4b6737a si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd16d8c69 si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd836808f si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd876e12e devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb62e082 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc9025ec si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3eac77d si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea9e50c0 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed17d418 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeff04ab1 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1809664 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa6791b8 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x12cce202 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x224f98c4 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5cc191f1 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbb6a04e5 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf333234a sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x51e0d165 sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stm32-timers 0x1f702e17 stm32_timers_dma_burst_read -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x8ae6ff7a stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x9cf90f23 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7b84610e am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x872ec8c7 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x88d78c5e am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe3fb3d88 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x028b30da tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x39cf2710 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x4e822c4d tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x52ec3149 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0c844188 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x656f7754 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe4e335f8 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x04c8ee3e tps6594_is_volatile_reg -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x939abb49 tps6594_device_init -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x56b4030e alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8305c9ae alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8dd4b909 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9e7842cd alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc0333721 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcc9036ed alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf13de4a7 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x016af4fc rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x04d1e16d rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x09d7fda5 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0fe21d13 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1d17c4cb rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x320588ad rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3831a52d rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x50a8a018 rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x53261756 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x59bab194 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5f2dec8a rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x64090c1a rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7076a9a4 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x77a1de3b rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x79a6e493 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7aaad7e7 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa70f88b5 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb01b939d rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbc34ddee rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbe6aabc4 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc56dc0c3 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeeccc925 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf20f75b4 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf264ba8e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x073398c8 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0e63f148 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x22b1edaa rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4561da62 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x45a5e490 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x47c1873c rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5c8d68a0 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7a8bc8ad rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb3025d45 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc37ffcef rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc66def00 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xec14674b rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf461d6b9 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4b40ba16 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc47c2749 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd5dbdff4 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xff320867 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x5ecd4236 rk8xx_probe +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xa320009c rk8xx_shutdown +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xae972494 rk8xx_resume +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xefc79225 rk8xx_suspend +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x046cca67 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x10034084 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11993f0a si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d719237 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x410b8bfe si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x42bacdeb si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46bc52c1 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4855c6f0 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49abc874 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f46f8b8 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6aa93fd0 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ac29e9d si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x800f41e1 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8bceacc5 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e98eee1 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x918a707b si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x938db472 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa55d52a9 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa75f21b5 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9ce9b80 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb57ef28f si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6f5a248 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca3acaf7 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcfecab5f si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3ebec4f si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0c86cd8 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe19e0383 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe60a23cc si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8e9c34e si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec238598 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedd89e12 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4f57882 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf589c0a4 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7b60d9b si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0c69197e sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1834169e sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9050aa8b sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x920a4843 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbf2fb7bf sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xd2b54ea2 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stm32-timers 0xeff4f381 stm32_timers_dma_burst_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x142f59d7 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x33e1f95b stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x30aff214 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x647f319e am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6f33e68d am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xaca00d0a am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x3d0a9984 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x94b908fb tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb5886d2b tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xfcf66d77 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7717ffc6 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc3659465 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc910cec0 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xbf0e5500 tps6594_is_volatile_reg +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xf6f258cb tps6594_device_init +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x01cf6dc8 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x29648cbe alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x77e4712d alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x912d51ef alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xac47e65c alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc9602af3 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xeb805fcf alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x016bad13 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0624a9c9 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1004d5e0 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24798417 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x36cd8c43 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x41d421c3 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4460c2f5 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4853d322 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x487904cf rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4d5735f8 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d3aca61 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d877b39 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x84e09a24 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9f074b60 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa5db3d89 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa73371a1 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xab220c3b rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb5312ab5 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb8d0bb73 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xca9e78ec rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd7a74e9a rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd8b2dd14 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xedd54cfd rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf5cabf55 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x091e4dd8 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1c974c1b rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1e4023e4 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3153817f rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x330f4a97 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x47e304ba rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x661b93ae rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6f4500c4 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8a08ff5a rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa5082cc8 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xaadcccb0 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbb18f24e rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd600c892 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0101203d cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5b505a49 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8626cfe3 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb8dff021 cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14971,45 +14990,46 @@ EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0ca9d783 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4712bad7 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5b340863 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa3806a7a enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc35d06ad enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe06f6c1f enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe4ae521e enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe52cdb89 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6e862ae0 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6f3cf601 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8b52a3ee lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa15190d5 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa2ba2971 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcbaad518 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe9113e0f lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfea37502 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x1aab6990 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0d7ba066 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a3b0819 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4a23a039 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5ec760e9 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbc83bd68 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc1f365f9 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec9a7ca3 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfb9653c7 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x05f44aed lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3365e582 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5efbb64e lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x65ce1a6c lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa8d5bbf8 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb0ce3c8f lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb894e19b lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xeeb503a4 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x75459035 devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7a67653c st_register EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf1f33992 st_unregister -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x5226ffd3 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7c2f96d2 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xce9f6d1e uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x36d39f74 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xde41622c uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xfb57123c uacce_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x05d9d11c vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x44196236 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x49c2147c vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x728a7e4f vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xae2c6112 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes @@ -15020,2309 +15040,2308 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xfc1c2023 vmci_qpair_dequev -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x2b137ee9 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x436a74ae dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xa9e00add dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x51ebe807 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x9eadd821 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe68e081a mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe837b0c7 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x492cf8ea renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xe4775bd4 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x007dc9c1 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0594035c sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0fe8d4e7 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11b767f5 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13141163 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1564bfe6 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a031c43 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1ce622ee sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2dd6c8ad sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f3f8f3a sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ff6c77a sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x32f3c6b4 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ad887ac sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b933f12 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c9e1687 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41b3d0f0 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4abbf4ca sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4b3c140e __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x51a07ca8 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x51bc6f69 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a3a0249 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c6f6976 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a73f010 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x709461fa sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x731699b9 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76aaf221 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80728829 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83022734 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86710caa sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c97c242 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0974e37 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0cc46de sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa41ccd9f sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc28ea2a9 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd2cb7ae8 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc99b635 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xecdc3486 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee304d7d sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf67a19b9 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfa590d54 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfb3afd61 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfee0b7bc sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f0ab95a sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x77585620 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x98fd090f sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9f2b9296 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa717586b sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbde9a0a2 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xce752970 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd8cfcba8 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfa7bfdae sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x04b209ed tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x32774445 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xb7b666a1 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xf7b93b97 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x15eb5389 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x2557c054 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x5a307efa mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x6240f64c mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x080b2572 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x12fa7c9a renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08ae29fe sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0ac0ecef sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b727e07 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0ebac1e2 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12cb2645 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c8ed50e __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1cbd0dfc __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21054f1d sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2413cdcb sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35a9edde sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3e12a155 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3f264a7c sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c2f48f0 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x51809001 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5329aa96 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a4094a0 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5aeb8d53 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6354fd66 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e3749a1 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f186b9a sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x73be3d3f sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74cdc08d sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x754ce117 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7a8da3a7 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8137a311 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89331c84 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x91b837cf sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9610247c sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d792bae sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa3a3de90 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xac42bd59 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1505dd4 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4ca45e6 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xce92d095 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd65ed5ed sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9c23eed sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc2878b2 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7c636d1 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf8c6a99d sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfa0e6963 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd44db2a sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfdf5f0dd sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x458971d3 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6eef2318 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x76ff842c sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb0d837a0 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbdab422d sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbfe7a4f3 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcdd1f3a7 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd4a0ef38 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdb5fe945 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x00be5758 tmio_mmc_host_free EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4e234acb tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5072e209 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x689e297a tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7a7ae89d tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9bb772dd tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xab417e0a tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc1970746 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd7eca7f5 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1562a5ab most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x17636bc0 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x30ce94e1 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x36a16235 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x46571893 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x51098e18 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x52c0a8c5 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x535f9719 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6587510b most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x9f946098 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa44e6196 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe33a5c4b most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xe7a6dd96 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf261124d most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x291740c6 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd4096550 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xeb2040b8 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x38643822 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb5cfbc74 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcb9df7a4 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5a5a9123 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x2ab80c81 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x717bd468 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd8bf964d cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x11c347cc hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x5ab5c5b4 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00d8538e mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x016c5494 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07444951 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x12cab3e6 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f87f7a0 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x204d19e0 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26ca848f mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29382652 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35b8913e mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37e6970c mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ef4927e mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x411c152d mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4172b494 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41857acc mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45acbc25 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4aba84df mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4cc53600 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e529b68 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f97565d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3fc3bf8a tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6a0a8cda tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6f7cac36 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9840dc95 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb101512f tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb95d082e tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xbbc94975 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd2a2bddd tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/most/most_core 0x212fc444 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2602c25a most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x315c0f93 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x371aa645 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4eeafea0 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5016b9a0 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6079b4f0 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x95e017bf most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xde971b9c most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xecff21db most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xedbec743 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf01c3453 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf038bbc2 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf1a89246 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1c02e8c9 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x232bcd21 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe11ccd5f cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x03967a3d cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7dc431ed cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf06fb5bb cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x92511cba cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x47c1410c cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x83cf1efe cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x90de2cc1 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x82fbc4df hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xcd27fe0b hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01b0db41 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04c5ce1d __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b7ffd56 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1007a918 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x10ab3d26 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1128c4b8 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11db973f mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14cb5aab mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a2853ae mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f321c93 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x274fd83f mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b11e9ed mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b6c3b74 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3dc3591f register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e11ed90 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fc9c9d4 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x441617d9 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4db5ad8e __put_mtd_device EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5346a8e8 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e6a8276 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f228f7c get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x65167560 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a71cd3a mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ded8ec2 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70f8691a mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x740ca82f mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7794cbe8 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7aae10eb mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f45fcec mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83504657 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x932da8bf mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x959034b4 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a9b4f3e get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d319fd2 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa4742509 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa57c4eca get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa900cc6b __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaac492db put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab548eba mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf1af983 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1e02f56 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb49991d7 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59898601 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x694a5e72 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6fb4030c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x702acd9c mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7126ef75 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72a8c933 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75f2edcf mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x770747a3 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7775ec85 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a32fa88 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ac39036 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81854517 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82298111 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ef40590 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91012f99 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa853c4c8 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad7c6f70 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0a42b7f mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2991773 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2c46922 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb57c54e7 __get_mtd_device EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb978e8e5 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcf0c820 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf4ec2bb mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc21b31cc __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbd419c5 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4fbb4a2 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8ce63c4 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda5e1710 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0ab23b2 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea12fa3e deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf160c0c4 of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2267ecce register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2fa00122 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8f4d3dbe mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xac67b9e2 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc015339e add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x053235ca nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0f84ef23 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x10292a6f nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x26a640bd nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2dfbd692 mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x30c8a9b4 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3f64bb38 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4d06420d nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x636b3c54 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x746579cf nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x76c35d6d nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x93afc8d0 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa486e22a nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaa8d8883 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xad951fc9 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaf3c2608 mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb0423c83 nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb333bce8 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb3a7e3c1 mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb6118a89 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc3955663 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcff6d9f1 mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd3d015b6 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd9dccaea nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf4695b35 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4438ed26 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xa012b534 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x053bc3a7 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x08bf1b8e brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xa5838b73 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x5e4affa5 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0e00b4c2 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb871bdc8 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb9acf9de get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb627267 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbec61b21 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf23a11a mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1648aa3 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5ad2511 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6ed5582 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9731508 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca834447 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd56fe642 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe27cb27b mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea86d615 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf579d1d3 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6d89331 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x186b1f44 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x364ea91a deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa21876ef add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc0d7bcf3 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xda724e7d register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x07da39d9 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x200125bd nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x37fa8684 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x43b830e8 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x54bd7235 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x585b5702 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x60600751 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x74184454 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7b4e305a nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8061380b nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x80b9e782 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8e87b8f1 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ec38404 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x97326c67 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9d6bf6c0 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa436746e mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa63228de nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaeec6bd3 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc8a206b8 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfa3bf4b nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe25cb4ab nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe51a377d nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe78f83d8 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xefca6aed mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfea8af60 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x39fcb5ee onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x769aea70 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x499eb401 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7cec9bf8 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xec6f80ca brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x989a082e denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0251f7b8 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x078bff63 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x08cac82f nand_erase_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x110c40df nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x12be62c3 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1ea3f831 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x236a35df nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2cb7d01b nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1ef181a4 nand_status_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d622aa6 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x373a3463 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x39f1b204 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x466404d5 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x537aea66 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3f108f9b nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x492e7fca nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4aaca2bd nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x54ffd393 nand_gpio_waitrdy EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x60ddb0c0 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x64d0d990 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9e5d40f7 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa110ca50 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xade1f7f6 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1b2ef15 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb532ab24 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xba67b2ba nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xce70b43f nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xceb89608 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd2137823 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x57d6fc96 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x616e2a51 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x62cfc333 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7138edb6 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8264773b nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9665f853 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9e4e318a nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa72d3c25 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb4389fca nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc75a8082 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcca0ca1a nand_read_oob_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd79e9348 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xeb9da79f nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x9b71f2a5 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x8397abe8 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ccb9bbe ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdc5b0b6f nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdd373359 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xeaee5ade nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf362bf0e nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf6a66548 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xa9326753 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xf0dd52c7 spi_nor_scan EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3f7499b4 ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5db8171d ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4647b5eb ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5b61c1fe ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5d3c927e ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x64a7944c ubi_close_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6bb068f2 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x72889463 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7da5eaf6 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x78bc8382 ubi_leb_write EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa54f341d ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa73e4ff3 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbc659fc9 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd1cdf9df ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd75317b9 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdaaf80a0 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9fe59449 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb1eca27b ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8a290e7 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7634973 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcb6196f8 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xce086693 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd2e018b4 ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf634472b ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf667666b ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf88a7480 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0558eccd mux_control_states +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf94ded93 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x00556a84 mux_control_put EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1a2e7c2c devm_mux_state_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2459c8bd devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x28bcd6d7 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4b27a9ea mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5d1b972a mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5f88fa02 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a758a0e mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x15caaae8 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x308bdf0f mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x43f57962 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4f6ad1d3 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x513dad40 mux_control_deselect EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbd7ddbff devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc2d35c5a mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd2525468 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd5fca26e mux_control_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe16b9615 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xef220c04 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x87c41349 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8ee6628f devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9615fce1 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa28fd669 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbdd99642 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe67005cb mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf634bcd5 mux_chip_alloc EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfbf76504 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xde030314 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xdf4243e0 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x310dbf25 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4310b848 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7291b674 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x84e0a8de register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xaf0ed70c alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcdf35b32 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1ccf4c02 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x667bede4 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9a4a33fe alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xae431c31 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06914eca can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x07ae7f85 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x082a4ff0 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0c53ebfa can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3e830bba arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc54be0ec devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x39bd5b87 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3e7982e2 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5d469da1 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa0bf2807 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbf6c32de free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd340c577 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x92eb3ca4 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb000d0ad alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb88978f0 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xba32f520 unregister_cc770dev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x169cc1d8 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d4fdfdc can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x26af4183 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3d3116ba can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f4e68a3 can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x534d91bc alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x57eecd28 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a40bb35 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3002a5c8 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4334c704 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d1a6802 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x531d9558 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5cb79f7a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5f162f91 alloc_can_err_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6ae8bbf9 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7c18d154 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x823a4130 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x849e21f6 alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x86893320 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8836ac91 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8bd5ee13 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91fa0a73 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa42fffc7 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae3ff52f unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb713430b can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb93d6545 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc5827f0d can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6e51b44 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd254a694 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd97d4be9 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xde52f2c0 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6177eede can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6395bc68 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x65a1972a can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x66c5b593 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6cd48d74 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x767796f6 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8a515754 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8c2c2037 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b040834 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ef673b8 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa45d75e7 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa815c4f5 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb09d43e8 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb7def8c9 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbc897914 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc02cf1bd can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcffd0483 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd0651ad2 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd57dea3d can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xde6822bf can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe0634ff2 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe69fe870 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeee78f4d alloc_can_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf3532ded alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf91b5b15 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9bb605b can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfc33bdba register_candev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x262f7b7c m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x277e6946 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x85bb36b0 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x894e1d4d m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x90b5c5ef m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x97aedaa8 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb7514369 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbfcd43e5 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x04e1c7a5 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf13e6fc7 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfe82489e safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x38dd4094 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x41fca65f m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6f63aeba m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6fa702e6 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xac5fc690 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdbf95588 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe66bf0ad m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfa48e9e8 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x164ef7e3 register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x506b9236 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x669ea9de free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf99e2f96 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x4f7b8bd1 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x34c2cb86 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x67aaebb5 mt7530_probe_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x8a1c33de mt7530_remove_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xbeb4b630 mt753x_table -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xe1e41e8b mt7530_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x0d3450a0 felix_netdev_to_port -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x386921cd felix_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x77f1d6ef felix_port_to_netdev -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x34f08639 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x00d2122c rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0a85b63d rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x262fbcf8 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5d102326 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6212994f rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7ce68398 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7d2b2aa7 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7e6064c4 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fccc606 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x81d89acb rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd800c6e1 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf392cb1d rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x20362a46 pds_client_adminq_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x4004a0da pds_client_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xab19f861 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xac7450ba alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb928c058 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xbe5fd219 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xe918ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x17ce7029 mt7530_probe_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x26bd2341 mt7530_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x783b6871 mt7530_remove_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x9780362d mt753x_table +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x3e608b7c felix_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x4b22faf3 felix_port_to_netdev +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x5fdcc590 felix_netdev_to_port +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xe9f44f1d rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0a3b0fce rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3e3800c7 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x40e7d471 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6e773755 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x71cfdf47 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7b4b179f rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8729d30e rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9648745b rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa364ade0 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc0a07cc5 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xcab5ae73 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe12455c1 rtl8366_mc_is_used EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x45b87b4f pdsc_register_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x7b3cea91 pdsc_adminq_post -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xcb124d6e pdsc_get_pf_struct +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x7db71e85 pds_client_register EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xce714617 pdsc_unregister_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xfae4e247 pds_client_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x866b7a4c arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xe7e14e1a arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x017c6f9d octeon_register_reqtype_free_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x06b5b65f lio_pci_writeq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x087cdf60 octeon_get_tx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0c2a25be setup_cn23xx_octeon_pf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0e6fa71f octeon_set_io_queues_off -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0ebb7080 lio_delete_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x13c4285f octeon_setup_instr_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x14da8e8b octeon_pci_write_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xdd29dbd0 pdsc_adminq_post +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xde552070 pds_client_adminq_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xf2fdc752 pdsc_get_pf_struct +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xfe2e5598 pds_client_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x3323aa37 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9f9ec8f8 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x05273c92 octeon_unregister_droq_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0b561426 octeon_delete_instr_queue +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x14cfe043 cn23xx_tell_vf_its_macaddr_changed EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19cb4e69 liquidio_link_ctrl_cmd_completion +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1aa4f032 octeon_ring_doorbell_locked +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1ac64660 octeon_wait_for_ddr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1bf62939 octeon_get_rx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x226ac52c liquidio_get_fec +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x235f3988 octeon_delete_droq EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x241a2a6c lio_fetch_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2ab63ac5 liquidio_get_fec -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2efb0197 lio_process_ordered_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3031b4d2 octeon_free_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x31f4c318 liquidio_change_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3248f1cf octeon_write_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x375a73d6 octeon_register_dispatch_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x38a8ea99 octeon_allocate_ioq_vector -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3a10cb08 lio_get_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3b4750be octeon_ring_doorbell_locked -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3ca98b8a octeon_droq_check_hw_for_pkts -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3fe12524 octeon_init_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x451cead8 lio_wait_for_instr_fetch -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4c952204 liquidio_get_speed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4cb4e295 octeon_allocate_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4e336083 octeon_free_sc_done_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4f4d105a octeon_prepare_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x50e05195 lio_setup_cn66xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x517ce52e octeon_delete_droq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5ec8e20f octeon_get_rx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x684ac19a lio_wait_for_clean_oq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x686269a3 octeon_setup_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x29ff51a4 liquidio_change_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2dd75ef8 octeon_get_conf +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3c6ccdc8 octeon_delete_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3e2af58c lio_process_ordered_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3e787191 octeon_set_io_queues_off +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x41ae8ef2 octeon_droq_process_packets +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x41b1e53c liquidio_set_feature +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4461e0be lio_wait_for_instr_fetch +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4787dcb9 octeon_write_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4bec2550 octeon_allocate_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4cac0d53 octnet_send_nic_data_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4f3a06dd octeon_free_device_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x50e797ff cn23xx_octeon_pfvf_handshake +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x53aa4b22 octeon_alloc_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x596fb671 cleanup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5c118750 lio_setup_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6509075d octeon_allocate_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x68b245a4 octeon_pci_write_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6b3c500d lio_process_iq_request_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6cb18177 cn23xx_setup_octeon_vf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6cc0e732 lio_pci_writeq EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d0d28ef octeon_init_device_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d65382a cleanup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6f1ed38a lio_enable_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x79748b60 setup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7cde94e0 octeon_read_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x808243ba octeon_delete_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9130bb64 octeon_delete_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x91688c39 liquidio_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x917d98ae octeon_alloc_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9288098d lio_pci_readq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x94b11020 lio_setup_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9a65cd5a octeon_free_sc_zombie_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9b388710 octeon_setup_interrupt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9d78eb81 octeon_get_conf -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9f7de2b0 cn23xx_tell_vf_its_macaddr_changed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xae7eae75 cn23xx_fw_loaded -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb3a28b33 octnet_send_nic_ctrl_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb676b330 octeon_unregister_droq_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc129a3c6 octeon_mem_access_ok -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc19b6743 cn23xx_octeon_pfvf_handshake -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc22c284f liquidio_setup_io_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc2dafa8a octeon_pci_read_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6dd2c356 octeon_pci_read_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x73c60d37 lio_pci_readq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x79687d4a octeon_setup_instr_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7b6aaece octeon_send_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x83b81fe3 cn23xx_vf_ask_pf_to_do_flr +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x83c9d473 octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x86d148fc octeon_mem_access_ok +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x89cd429c octeon_setup_interrupt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8d74c3ea octeon_free_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8f92868c lio_enable_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x90aa4f24 lio_setup_cn68xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x96c8a084 octeon_deregister_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x97b38880 octeon_setup_output_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9e973bda octeon_droq_check_hw_for_pkts +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa383c8f0 octeon_read_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa942102c octeon_free_sc_zombie_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xabe1a777 liquidio_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xad4702aa setup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xadbf8a49 octeon_send_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb1d240b1 octeon_register_reqtype_free_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbdc9a5ad cn23xx_fw_loaded +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc005e245 octeon_alloc_soft_command_resp +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc62027e7 octeon_prepare_soft_command EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6abc5b1 octeon_core_drv_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc8a4ff72 lio_process_iq_request_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcf7fdd1f octeon_free_device_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd124999d cn23xx_setup_octeon_vf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd14d5d2b octeon_free_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd202cb86 octeon_setup_output_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd6c85d7e cn23xx_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd974107a octeon_delete_instr_queue -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdaa2ded4 octeon_register_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xde632f3c octeon_deregister_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe052d18a octeon_alloc_soft_command_resp -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe25ae9b8 octeon_wait_for_ddr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe8254d1f octnet_send_nic_data_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe839e81d lio_setup_cn68xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec2a2ee6 octeon_send_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc95b5180 setup_cn23xx_octeon_pf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd3d3f175 lio_setup_cn66xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd8a4729a lio_delete_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdb139d9b lio_wait_for_clean_oq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdd1f1521 octeon_delete_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe19c4cba octeon_init_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe3775c36 liquidio_get_speed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe4fed0b6 octeon_read_device_mem64 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe532216b octeon_free_sc_done_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe57fce69 liquidio_setup_io_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe6365597 octeon_register_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe6e91802 octeon_free_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe9bd12f7 octeon_setup_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xeae21bc6 lio_get_device EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec7f00a5 lio_get_state_string -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xeed2c628 liquidio_set_feature -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xef773dbd octeon_free_ioq_vector -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf07ac348 octeon_send_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf7d59eda cn23xx_vf_ask_pf_to_do_flr -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf7ef71ed octeon_setup_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfa2982eb octeon_read_device_mem64 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xff3d5295 octeon_droq_process_packets -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x01ca2b2b enetc_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0b40ab10 enetc_xdp_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x280a9a95 enetc_get_si_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf0366cec octeon_register_dispatch_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf128dc84 octeon_setup_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf2d420a9 octeon_get_tx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfba3101c cn23xx_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfe2aec17 octnet_send_nic_ctrl_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x026cb458 enetc_clear_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x06b28826 enetc_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1e51caf1 enetc_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x27f08f8d enetc_free_msix EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x290512bd enetc_set_rss_key -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2fe229af enetc_set_fs_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x36dfc185 enetc_free_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3c7239c5 enetc_free_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x56189367 enetc_mm_link_state_update -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x649b7b6e enetc_init_si_rings_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x65095ce1 enetc_open -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x66ec0e98 enetc_pci_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x69b619c1 enetc_setup_bpf -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x69d9fbc4 enetc_teardown_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x70555af4 enetc_setup_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x7949f49c enetc_reset_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x7a5cbc84 enetc_set_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x86e516d5 enetc_port_mac_rd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8831d514 enetc_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8e43b77a enetc_send_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x911bfb6a enetc_alloc_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa7a854c5 enetc_clear_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xac1fdca6 enetc_set_features -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xad227b56 enetc_get_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xaef7cd69 enetc_configure_si -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb09a670b enetc_ioctl -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb2a5dad7 enetc_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb9f16f83 enetc_pci_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd0c19d4b enetc_get_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd2f7aea5 enetc_setup_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe71b41c3 enetc_set_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xee2201fe enetc_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf1005479 enetc_alloc_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf1130248 enetc_port_mac_wr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf555f8cf enetc_close -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x439ee462 enetc_mdio_read_c22 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x94b493e7 enetc_mdio_write_c22 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x9e4f3c48 enetc_mdio_write_c45 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xa1da3b3e enetc_mdio_read_c45 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xcbaa8bc0 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2e0e6928 enetc_close +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2f1137d1 enetc_send_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x31482fb7 enetc_set_fs_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x32d576b3 enetc_alloc_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x35f5998e enetc_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3886dc94 enetc_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3c2b1c04 enetc_set_features +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3e3c90cb enetc_get_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4c9af1bc enetc_port_mac_rd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x510cf1a1 enetc_pci_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x526923cf enetc_xdp_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x61f47901 enetc_setup_bpf +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x6d6bc2e3 enetc_free_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x7452d05c enetc_init_si_rings_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x7547c2e5 enetc_port_mac_wr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x7b1fe148 enetc_setup_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x807c0074 enetc_get_si_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x88514945 enetc_configure_si +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x886107ce enetc_pci_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9581c1b7 enetc_setup_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x99f77593 enetc_set_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xaff681de enetc_get_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xbac50b0b enetc_open +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd84ca41f enetc_set_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xde09e8f1 enetc_reset_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe4744fdb enetc_ioctl +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xef6a0f2d enetc_teardown_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf3ab70d1 enetc_alloc_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfdf57f28 enetc_mm_link_state_update +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x02e70306 enetc_mdio_read_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb1024ed6 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb1b25719 enetc_mdio_read_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb4f1c9d9 enetc_mdio_write_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd5267a9a enetc_mdio_write_c22 EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x330bb4ba fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3aa91eaf fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3d72890c fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x42928ae9 fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x477c7513 fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x566eff2c fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x752de59a fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdc4d75b9 fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe1aac2b6 fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xf662e70c fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xfe38efae fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x46d4ee22 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x7626c801 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x290c2d16 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x453178f5 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x86956644 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x927ab481 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x963b5a06 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x004b0e9a otx2_ptp_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x23b22e05 otx2_ptp_clock_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x2c1610a8 otx2_ptp_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x96e59c3a otx2_ptp_tstamp2time -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02b1b5ad mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x053339b9 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06b72f1e mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08857212 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a1931e4 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b4b005a mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d73b06e mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0df105f4 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eda8c0a mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fcb727a mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x142d619f mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18f4d70c mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19db84ff mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ad1ebb5 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2349c9e9 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x235675ef mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23f3343c mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a3c942 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x294e780c mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ad48f01 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e9c1c83 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3171251c mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3250483a mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3267e8b8 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35728142 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x388aac96 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a9ebd75 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cc43f3a mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d591035 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d9d9027 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4041979f mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42e5980d mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4df8ca0a mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eadf829 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ec17951 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x536ffb69 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56ee90c1 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b264404 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d5b022e mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d7e74f4 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e52e377 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62f0e186 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64825123 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x649e4666 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68daac31 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d05e128 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ecdc928 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1b3bdc mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70bafd92 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72485d45 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78a8319e mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78e6e25b mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a22ffab mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x801e3e3c mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81b23a3b mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83dc3323 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x844a8860 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86896676 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86cd0628 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87d266a4 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88a0b561 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac93608 mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c9b74a6 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e2e8c27 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x900fa362 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x918ff543 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92a54b5a mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9606f650 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96ea1d12 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f6d172 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x973102b0 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a08cd01 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a3522e1 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b21ae1f mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c873aeb mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa01bf595 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa22c123d mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4001b62 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa59e1081 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa935cdc9 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9e570fa mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba33cf0 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb695ffef mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb773980f mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb77969d2 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb1751ef mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd00fe2d mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0b0320d mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1e13936 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2ff1fa8 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4889ddc mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc50fb3c6 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6dbf650 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7187eb1 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc91a927e mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca20584c mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd29f607 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd142b711 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd20c2bba mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd68c1418 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9545e45 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdacbc1a8 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb52846e mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcd3c837 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde0ccd61 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde49b8e2 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdee99a42 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0b85168 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1cf5092 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4546977 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6902b44 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe93f6423 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9c3b540 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea19ba2f mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb81ba17 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef965bd1 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0b64f88 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf330f9a9 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0cd8e35c fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x15ce4fb3 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x214805a7 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x37ddeb6c fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7f5e1075 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x84fac07b fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xab79edfb fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xadc85259 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xbcb96011 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe0aba252 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe95d110f fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x50bb3f1b i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x78192ae9 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x193aedfd ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x3fcade1e ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcfb25e72 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xda5578ab ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfa599fa4 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x63d98a6d otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x7f776bee otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xc861150b otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xd23271db otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0000c212 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0422ffe4 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x057a675e mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x081fc532 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x098ea64a mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bfa085a mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ca8124b mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f49fa73 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fb2c93a mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10153fe8 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11644885 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13461e10 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a9305c mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x166ac03f __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a05276b mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b0538e8 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b8b610c mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d50e2ef mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26d13693 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2706ff85 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f3db04d mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x309b9e56 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36d5c825 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39faf6b3 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3da7b139 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x403a4c55 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41dcb4a3 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42de218a mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x442f8fc1 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4532f00c mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x465e6179 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47144efe mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x473a99dc mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a394d52 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ae8d409 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ba193bb mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c584e79 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f774b52 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5164ff2d mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51e36d66 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x547fd2c7 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55494ba8 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x555fa452 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56250c4e mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58ff0be2 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b35a97d mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c2f5774 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c743d5f mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e4c4260 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61dc45aa mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67fbbd20 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6848b077 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68d3cf9f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c81495b mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72bf74c3 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74129e45 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75bb3f76 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76ae6642 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x784eb5fd mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e48b447 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84fd4a3a mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86d2d660 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86f091db mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x879ec3df mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88d3af21 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x895458b4 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89c9fb08 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f7b5134 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9159be96 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94834395 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x964611c7 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97e750d1 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c183298 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ce17020 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0305c65 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa29afedf mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa69f814a mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa88fea82 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa467fbd mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa8ba886 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab690105 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1744092 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3037187 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb31a3631 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4f22240 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6e8fb6c mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbb371fc mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbd699e8 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe5eb79a mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc18fadda mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc31c210d mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5bf55ed mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc63bf546 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc652fe0f mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc79061b0 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7e740f4 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8367d68 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8a5e711 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b13726 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc65cfab mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce07097c mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1335ac0 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1775dd3 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd259de7f mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd608da6d mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7487009 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8148b4d mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbc6137e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe40610f6 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe67fd22f mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7863ba5 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea850dbb mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb5f7d7f mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeef196f4 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3d359be mlx4_mw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b0999f mlx4_put_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6899448 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9538495 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf95cce2b mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x069aeecc mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6914507 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf733361d mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf950409a mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9bef3df mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcac2da9 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe3c144e mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05fde66c mlx5_query_port_wol EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b400b6e mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b41d833 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c459b13 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14fb0151 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bfa2f57 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e6420c7 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20a424e4 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21961fab mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23e585ef mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24700f61 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2594f670 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2676531e mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28f9f035 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a65fce9 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bc69389 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d43a4c0 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cf1a64f mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40c08251 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45247cc7 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b47440 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b64ecad mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f34b0b4 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55a10eb0 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5aec3bca mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66bf26e9 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x688afe16 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6903a700 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a665ce1 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ff8d0c6 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x718e17f7 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74a39952 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76672c46 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76fe0504 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d1fe65f mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10e0ce21 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18320fbf mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2004f406 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20914326 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e0523c mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27825704 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a5b3685 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e45d3ab mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3028f981 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ce49b59 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40cdce5c mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41a3eaa4 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x427a0ce9 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45da180e mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47446647 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47cb2af9 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47ffe18a mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c61cb47 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e5ed8f0 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53bb2694 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b888f8f mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e19f2d9 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65e9988b mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66a6b970 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x689deb13 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cc5416a mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cfd4ca5 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d421441 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ef0a6ef mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77aa49ca mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x786d8d1d mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78f4202e mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f9c13f9 mlx5_query_min_inline EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8de1206d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90eb177d mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x988722b3 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x996eb027 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fe8872a mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa29171fe mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3d821ff mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7b11a3a mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9cfbea1 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa6b68d1 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadcedbcb mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeaac792 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2332947 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c74d68 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd164709 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe866b5a mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6269821 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0e91f8e mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5efa4ed mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd620dbdd mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7d2e0be mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda206655 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdac1d44d mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8025fa5 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebd1d31c mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee3132c2 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef644506 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefce26ca mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3577382 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf42aeaf5 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c264f0 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb70e79e mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeb38ab3 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5a20ca7e ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7732c792 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x80e4e456 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe9da3611 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xbf45a22e devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84ae6004 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x850131fd mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a28dea mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e8eff06 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e97e7e5 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a91e7f mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c87e6cc mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eea5506 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa05f9e2c mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa211bcf3 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab0f8080 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab826fd3 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1d309d8 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb29f5264 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2ccf9ac mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7ea0bf7 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb50f81e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe59b7a1 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf7aa0f5 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1f75caa mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2bf36f1 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f81fcc mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca3d9421 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd74b4d8c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9dec050 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4ebb309 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5b2ee0b mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec7c0ec0 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0dc3666 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf39313da mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf76e834d mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbe5dd0b mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x39d670f6 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4ed820d3 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5dfd3344 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6eee9781 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xa7455895 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05106079 ocelot_port_configure_serdes -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0658157b ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08c9c7ed ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b09f33a ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x106465b4 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1983fe98 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29c26d16 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3479527b ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b30982f ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40809851 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4443a133 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4995117d ocelot_mm_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ac8cc3e ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x514f3c62 ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e8ed761 ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65146f00 ocelot_port_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f347441 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7304e597 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7766dfdd ocelot_port_get_mm_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79261ef7 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f783423 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8acb5d1f ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ddd2621 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9214aa07 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94f55710 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0f71707 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8ab14e7 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaaeb3e21 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc9585af ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd94facb __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe52bbbf ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf379e49 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc682d10e ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd05cb375 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd15bb770 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6bfa021 ocelot_port_get_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbb4e16f ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdea93a91 ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf3e6704 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3447eaf __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedc0db72 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef25f788 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf012875d ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf65881e7 ocelot_phylink_mac_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd9514aa ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00d397f0 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02abb951 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05602fc2 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x073aa3aa ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x076481b7 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a64233d ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b707f54 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0cf39c39 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0cf4526d ocelot_mm_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a937b59 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20b53caf ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e78396d ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30583cb2 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x316565e6 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32cf25da ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4332d224 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4836937b ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x53aa0c6f ocelot_port_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x646192b4 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x655aee24 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66b26062 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68dd0a8b ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e8f34c2 ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x844be07e ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8995ab12 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b606b4d ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f69b205 ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f8531b5 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92e6b774 ocelot_port_configure_serdes +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98356c63 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x987fff52 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x994f06ff ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c78e943 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4998bed ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacd46e06 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba0d97a3 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba9093e5 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3b1dc45 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd43ff16a ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1309d99 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7303375 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe93fe991 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xede589a6 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef185fcf ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff21dd37 ocelot_port_get_mm_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x162b0b71 stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3efde04e stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x38491eb4 stmmac_dvr_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x563b5fbb stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x630998c4 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6776c503 stmmac_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe7234203 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf4ee9033 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf7c4b218 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x037d9b6d stmmac_pltfr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x219c775c stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x39ee3276 stmmac_pltfr_remove_no_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4c0e1934 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x56c2825b stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6b66623d stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7d4a95ef devm_stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8f037679 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x96efb3ed devm_stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb5572fa3 stmmac_pltfr_exit -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe73df048 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x2b49a3b4 am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbab28a1d stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdbf3a288 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe7b60317 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x29b61f4e stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x391667e3 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3ad87db8 devm_stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x657e7336 stmmac_pltfr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7d68db38 devm_stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x90762b42 stmmac_pltfr_exit +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa8178cac stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xae3cfb98 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb11e227d stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc29040df stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xed0bcded stmmac_pltfr_remove_no_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x1ae081b6 am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x6ab9a4a1 am65_cpts_release EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x828c824a am65_cpts_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x84e19447 am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xc1970f7b am65_cpts_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xd7e23e74 am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xe0cbdf78 am65_cpts_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfb4d8be9 am65_cpts_prep_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1c2a1ad3 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8ec88ae0 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xc25a9092 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe257c171 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x0f015c05 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0acbae0d ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x34a47c23 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6a772702 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8d215ef9 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa40db814 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0x73c6fb4b macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4ae6734c macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6548f85e macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8b80cdc8 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa6a1c088 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xff542579 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x50d72877 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2a86909d w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x5bb2c387 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x9466488e w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb05fbe58 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0xff2c1133 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x30f1156b ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x848176fc ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd0af7f7a ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf305a317 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf36b1f1d ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x7c13d3f7 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x020f1c08 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x75ec32ec macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x93186fab macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc352026c macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xf2c0f2fc mdio_i2c_alloc EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xeb5ef252 devm_mdio_regmap_register -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5a40313a xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6bbdb0f3 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x85bbf224 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xdbe0e284 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0x9c06707d devm_mdio_regmap_register +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x147f3cdb xpcs_create_mdiodev EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b430bc5 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa7cb286a xpcs_create_mdiodev -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaec20272 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcddb5a1a xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0146da07 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0209b6ec bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x03412fbf __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x09b2f7da bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x177817c9 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a2be54d __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x400e1e8c bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x53ce46cd bcm_phy_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x653f7013 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6755cdbc bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x688a411d bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x68b106f0 bcm_phy_led_brightness_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a94cc0e bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6f6a9481 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75842930 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81c7c0e5 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x88c42436 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8d450203 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x967d4783 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x976cc412 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98b40099 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0965338 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa1a33809 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa767d3e0 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa9318519 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf2e533a7 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf379afca xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x020e1342 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0748ec02 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12f7e11c bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30cad663 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37d8d6e6 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4119c60b bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42aa7c9f bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c32ff18 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f809a6a bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54229080 bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c01721a bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5dda5c1f bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6277bbe0 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x62a60cf4 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x69b02af1 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x781052a7 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82222b14 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85c842dd bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89eeb997 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e1b5cdd bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x92cf13db bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93f8fc38 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98eaa927 bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ede550b bcm_phy_enable_apd EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa50f5bf1 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac56f2d5 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xae70e397 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb204be93 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc4a562ce bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc4a92318 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8c48b1b bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcbf68bfa bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcddbd413 bcm_phy_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6526d5b __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd86ab68c bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd8b5e518 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2eb22e1 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe5a88286 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf936e756 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x32baf96f bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaea9f182 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0154abc bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0423281 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb122a55f __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6266433 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbc36c206 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcebdbdf8 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd44d2b7b __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd90dc5c7 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xddf9441f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe1c75b27 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf219518c bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf799362b __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x90f3f718 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xd89b19c4 bcm_ptp_config_init EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xee529dcc bcm_ptp_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x1582fa03 smsc_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x1ad40d0b smsc_phy_probe -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x1d536149 lan87xx_read_status -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x60b26311 smsc_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xb59e1db1 smsc_phy_set_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xbf2094b3 smsc_phy_get_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xcfec2aac smsc_phy_config_init -EXPORT_SYMBOL_GPL drivers/net/tap 0x57d12117 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x6143036d tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x6552406e tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x6e527ddd tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x835ef8be tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x899597aa tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x934e6497 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xa7f28e78 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xae9cd566 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x24d3724d usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x328c022b usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3cb6b0c7 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3fb4d118 usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x49222a07 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x727a9742 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfacada30 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x02f43925 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x161c6c05 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x16bba055 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x30306ae7 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x36dbd33d cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x37f98e34 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3a04ea3b cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x89fda986 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9bff849b cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc092d43d cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd6287c48 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xecffbca5 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x03c0b3c2 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x41ff6da1 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x65b06c6e rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8537ce00 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x90b40d17 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9f5e83ee rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x086f1323 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x091ac358 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0945e546 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a8af6c4 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20895fc9 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32747e18 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3359d4c7 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3aed951a usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3cb633a5 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e3b192d usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46b36bd7 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x479d96f8 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49e5e450 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f0b7108 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x510823d0 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55959e4a usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55f4d462 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62196b0f usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6cd957c9 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71cdc5e3 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74e48b5a usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e68e0db usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8497c74c usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3de34a0 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb295b188 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb35cfe8d usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc2606e4a usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5ed79f3 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd5282b75 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe56c6d76 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeb3f3295 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec3e6002 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec56a058 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffa32b4d usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x37745d2b vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7b6b24d8 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xad23c6fe vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xdca56250 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x8c064f36 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x369abf9c il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d1deda0 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8c21c33 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafd57658 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbad81a21 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x091afd5c smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x994a8cba smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x9f66cee8 smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xaf8f44dd smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xb8c66ca4 smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xec002a1c lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xfde75d60 smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/tap 0x3a11ba5d tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x4ed2009c tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x6006c460 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x64571fa9 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x86791c62 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xe2a62511 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xf0118b19 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xfa697e1b tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xfef28e41 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2d840adf usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3e940181 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x45cb2965 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x672d42f7 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6d577dd9 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x922db427 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa99eb134 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0b82a19c cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1a56aad8 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2a6c212c cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3ba96637 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x49e4f708 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5f05d03b cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x65c68005 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6f667459 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x722da988 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8800fe14 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfa33ae61 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x0f14bb12 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x50309283 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5fcd2574 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x694f97be generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fe0ebed rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdd605bfa rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe41c9979 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0892c664 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c16f2ab usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c5e436b usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30cba9d7 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x331bb145 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36733876 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x455221d1 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59dc2b8e usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b07cd63 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6339c058 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66eae333 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x682a7629 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b318544 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x743abfd7 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8908cd00 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89ec2e98 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c02e937 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8c92e65b usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8deae4a3 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e6f0579 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa0715d0b usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4a01b0b usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb32c4a2a usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbf9418d0 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc648eef5 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc717aea1 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7b092a7 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb633940 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd576e95 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcea75bb9 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0983945 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2b8b610 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf92a3e6a usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa496ed4 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x01b67be8 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5ea4d9fd vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6095f139 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9eb4e485 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xe59d981a libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa78ce610 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd186cd6 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd774aac _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2fd36af il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb8e1f2c il_remove_station EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13863121 iwl_fw_lookup_cmd_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443a0ac3 iwl_fw_lookup_notif_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x00895a7d p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x35e9f11c p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x54d3e555 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5e309863 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x684edcc6 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8d965ce6 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x914bc3a6 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xce8f31ef p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd5f86457 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0d2ba01c lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x18ace521 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1b2066b3 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x27c25344 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x476f0e46 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5bc6482a lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x62f1d34e lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x76094266 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7b96a41b lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x86373ea6 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x97abc3b7 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa0843b57 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbbde9ca6 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe48fa91c lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec390dc0 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x308c23b2 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x612b5154 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6e79e94f p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x867b3a95 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x88ad27fd p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb8293bfc p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe0815429 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf5056cf1 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf9ed5ab0 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x347a6974 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x42dbd859 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5708c3f5 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5a641a07 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6858a9de lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6cd7a274 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7c49db02 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9a2049b1 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaa7152a2 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xac3a72fb lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc08cec58 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc0edb0c2 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc7e29ad3 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd5b413fb lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdd3bd9b9 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xee692e7c lbs_resume EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfb6b079e lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0ebeaacb lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x41abdde5 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4c193832 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4ebca53c lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6e07d18f lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x84325155 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb3f63be3 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1b1bc0d0 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2c69be61 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x378b4b27 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4a58ab59 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb303a573 lbtf_add_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xce18f3f4 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x02719970 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0f298687 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1963fec1 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1aa0828b mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f5e921d mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2934d755 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x294aa1f6 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x398defd5 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d66c7f4 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x72aeec9c mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7e2ee59e mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80b5c6b6 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x838b7f75 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa105d972 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa49fc958 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2956231 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb4b086c5 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc329a055 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc43a0256 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd33e2089 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe7f42776 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe9b40145 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0c36af39 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0cb447d4 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x14c908a9 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1d31173f mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x25d71414 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x27aeea25 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3710a837 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x404dee3e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x517f93c5 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x62f956a3 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6613ab82 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6efa96d6 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79cc437e mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x89d24608 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x918ab4b9 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9c636030 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa08e6de1 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa317a61 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb06edd2d mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcc53c6a1 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd3cb629a mwifiex_process_hs_config EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd986f034 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe1238065 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe435c163 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeaef2e1b mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff488eeb mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x059f049f mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0809ce95 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08f73b70 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x093a97bd mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0afa4ede mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0bbcaabb mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0efef3ad mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1282e019 mt76_dma_wed_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15024518 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15ceec8a __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16d03431 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dc8d46 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xddaf1d6a _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe16f6afd mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02ee3177 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x056e535b mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05f8069f mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08308d43 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08e1c8a9 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e4dff59 mt76_dma_wed_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x107b26c3 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x128e1263 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1327160b mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16568d54 __mt76_poll EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b0607c9 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d0428b8 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d970a0d mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a63852f mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b1cd444 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c0a6664 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c878769 mt76_ethtool_page_pool_stats EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2210cb01 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2419c424 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2638ee6c mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2da920aa mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e0cbdad mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e166ca6 mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f79a98a mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3031e5a7 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3527c557 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35a37cfb mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36f5975d mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44356d53 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f9b5881 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5629779e mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57e8ca59 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58b5e47e mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5900c4b9 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a3b1008 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e3425ed mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fe73d10 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60127968 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x647b30d9 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66e890af mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67c0c05f mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x687d5c54 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69b097d2 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e824e18 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72398aed __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74521705 mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77bd437a mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b0513eb mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7caa1acb mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20bb826d mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x222f9352 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x273eaf28 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x275dd8a3 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x276f410d mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b9351a7 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dd1f171 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x346f804a mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x355e1e8d __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c926ffb ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3de3db7f mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e83a233 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ed109ea mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4040dfd1 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x406b5a53 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43641566 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x491b86e5 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x494582c6 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6196d9fd mt76_create_page_pool +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67e2ae45 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68417eab mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6dd12af5 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f480653 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x709730b3 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75a05171 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x769883ed mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78d48467 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7be27010 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c72486f mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f7c023e mt76_tx EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81ba4a6c mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x825f3dba ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85e5978b mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87cdacea mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88367f02 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d650af6 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e9f7fa2 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93d182bd mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a58a9d0 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d0c56d0 mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86e9b7ea mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x885a7067 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89210974 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c0821fc mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95f4eefc mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97f430e3 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a81c00a mt76_register_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d28c26e __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ed5d168 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa32cd41b mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8665130 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1d7c030 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa42cc0c8 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa517954e mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6005ead mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9e2d83a mt76_get_min_avg_rssi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad2523c4 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad92fa3e mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xadd9c138 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xadfbc9b3 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf67f720 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae610c4d mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaff29893 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1b8e882 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb48b4016 mt76_pci_disable_aspm EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb608bb75 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd2391d5 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc11ac636 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2f4108c mt76_ethtool_page_pool_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc46359f0 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5f20239 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb7ba2a7d mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba571a68 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc7d3bb9 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbca07b6d mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbca6fd3a mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0b99f3e mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4129cfb mt76_tx_status_skb_add EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc97f5555 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca1649ed mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca423575 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb3d31a4 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd1e06a6 __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcddc7d57 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfd3382f mt76_create_page_pool -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd684817b mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda66e97e mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc2d339f mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe145d9ee mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7bc2ad0 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9483974 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc45962a mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd2f7c0e mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0b1be26 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd114d0dc mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd27e9be2 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2d86a43 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd42120ca mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd55baea4 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda40e300 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe19e620c mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40ab8dd mt76_mcu_rx_event EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeea0f6cf mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf47b5baa __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf56f9328 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf81c3d69 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf90cb7cd mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfac1e787 mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc75ba29 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x01bce70d mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed00d9b4 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf32ecda6 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7052c82 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf93822d1 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdaebc2c mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff3c6c5d mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xffad69d3 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04ce6aa0 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07145500 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0755bb3d mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x08be0e10 mt76_connac_mcu_sta_update_hdr_trans EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a25337f mt76_connac_gen_ppe_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e57f1ce mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10cc3757 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1230c90d mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x155e905b mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16dae735 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18fa7730 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f780b67 mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x231e9111 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x236f25a2 mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x24a43c7b mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e2931e7 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x324928a8 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x343cf798 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36905db5 mt76_connac_get_phy_mode_ext -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x37c1576e mt76_connac_get_eht_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x38c3cc5a mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f036dc6 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f4d47d0 mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x41fdddcb mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46524009 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48a1b296 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48eb55fb mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49e9ec2f mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c315ddc mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x531f242f mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55263112 mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5ab9d84d mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d36a41f mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60198f36 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64070092 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x645ec331 mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x67782792 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71165edc mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71d2bb89 mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7335da69 mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x764d8c23 mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b1b9bad mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7cc13d3e mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f573b41 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85fb94f4 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8846142a mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88ebae6b mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8a359745 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ea169bd mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a537cd7 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0ec96441 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1953d71e mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29febf3c mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d4a790a mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31a52008 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34aefe3b mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34c146e2 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35947a56 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x365141a5 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3a672a72 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b685691 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46869590 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48afb417 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49cf021e mt76_connac_get_eht_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a2aa49f mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b62aba3 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f0bfaa5 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51b47034 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x530549ad mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5459c18a mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55517c6a mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x578ff794 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5fa329f8 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5fc77c24 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6319b43c mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x646c5fe0 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x684239b4 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b567b3f mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70493952 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x718a0b7d mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x741dde49 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7663c113 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78f92ed0 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f5eec86 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f86c5a8 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x868ac76f mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x89c1615b mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8a940657 mt76_connac_mcu_update_gtk_rekey EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x90bdd4b8 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x91de5b06 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d182d52 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa20a6f83 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9b226b9 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xab879be0 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xacafe73c mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf880376 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3287652 mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb48f221b mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb500ad69 __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb59251b3 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9dc8c30 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbac08be9 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc2401b4c mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc1695fe mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcca5be27 mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd7f5434 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcfdcb30d mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd87e35e9 mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd8ac87e6 mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbfb4574 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd527807 mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe35d1ca8 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7890ef3 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeddf2d77 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf167c491 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7756298 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfba0017d mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe7d8667 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfee87ac3 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0133aacb mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x04cba1ac mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x09e7e6e6 mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x135c0ff5 mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x15b401b8 mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2897e698 mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x372ed860 mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x54565339 mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa1f82012 mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd82eeb87 mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe12ad4ae mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe1597fc4 mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe3f01f2a mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xed5f6e57 mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf8054a69 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf8d4b535 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2f7dc8d3 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2ff0c2ee mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3dec9409 ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6109e7cd mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x66cb411c mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x89a653db __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x90d9ee1b mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa21d336d mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xac50fb48 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbe234946 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc4ca6f26 __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeffe096a ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf5e318bf mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf9468fb2 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x06e6121a mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0c271297 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1d574e5d mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e77c9f0 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x232e483a __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d3ba6bc mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x34a500df mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x366acd94 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x37107820 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x392e5e2c mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3f5d6e68 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5051ea9d mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x675cbea7 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6a4a086c mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6baf413b mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x77df2a45 mt7615_led_set_blink -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8d5427d6 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8db836eb mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x95e2ae1c mt7615_led_set_brightness -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa1fa407d mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaadf3871 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb71e2102 mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbdefcc44 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc0760287 mt7615_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc9297638 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcbfc5adc mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xded391f8 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe831b1a0 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe91b6451 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xede1220f mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x7a1710f4 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x91e1a6a0 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x928fd13f mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x937455b8 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x99bfc808 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a51bc5a mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9dc9804f mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ded8813 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9e379f0d mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9099427 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa98db185 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xac128cb1 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaecab162 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf7bac0e mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaffe738b mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb551b1d7 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb83c451b mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb98b55a0 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xba133c99 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc0a8062 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbeac0331 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7bf81a7 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9d3e650 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd0e722ea mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd216d1e9 mt76_connac_get_phy_mode_ext +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe78afa85 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf031f868 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf171f6d4 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf31d27e2 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf69f9959 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7f36e73 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa4104ab mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfcf91ba5 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfd38994b mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x02b9a46d mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x09308f0b mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0bf866ae mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x11a55993 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2d1719d4 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x39a5459f mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3f842942 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4daed1f1 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x570e687f mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7de31c30 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x81a2d79b mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9c3c940c mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xba21b4ae mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbc3d1846 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd2c899ff mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf907279a mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x06f1f4fd mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1c082f34 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x468c91c3 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4bcadb8f ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5e11a82f mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x79540c83 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8659d416 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8a8ebcb4 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8e2bda02 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcb0f380b mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcdbdec7b mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd06233a0 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdb1fa7ba mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe6cd60dc mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1852b810 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1cf55ef0 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1f195bb6 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x209ee420 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x258ec2fb mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2873f2ad mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2a24d079 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x31f94af6 mt7615_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x439b3c7b mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x43d590c4 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x45ec61b4 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4a78c65d mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4ff6b003 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5cebd0f0 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5d283151 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e19865c mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x65dd196c mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7597a3f3 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fc1f215 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x87f11e83 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x90208263 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x92bd871e mt7615_led_set_brightness +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x968c1c5d mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa9dbacd2 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaa60e9a1 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb516f02a mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd2fdb3a6 mt7615_led_set_blink +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd7d6dbeb mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdc954585 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfc0788f0 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x0e651ace mt7615_dma_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3bd10c43 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x764aab33 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x9f269ab7 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb742ad70 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3315b3b2 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x567c6034 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x56ad2d10 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x93c1f9fb mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xad260917 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xcedbd09d mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd392a639 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00108ef5 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09c1d1b6 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f63016c mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1010efab mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12721b76 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1921a68d mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x221f516c mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x229fce29 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30f79d26 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34d4215d mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34ff9a87 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41302706 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42c8a2f3 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45b3dab5 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47dc3597 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d0162f1 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x51355b83 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54284980 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x581ed762 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x5782bb8f mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x8131860a mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x81625abe mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe4d6424f mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x06983db6 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x23bc4453 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x48387785 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4bd296e5 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x62d38b21 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7a222456 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf9362088 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03545178 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0964ba44 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0acbe042 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d39007e mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0da5f694 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1017cb9a mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1770ee55 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x189e66a3 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22ceb185 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x27065c47 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x296fdbbb mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e266998 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3076f26a mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x358606a9 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x369db0a0 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x371e2558 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3870a0b3 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x423b58af mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45283ffa mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x456caf80 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4bbe38f8 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57facea8 mt76x02_eeprom_parse_hw_cap EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5db35d4c mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ecbebae mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x626fbb47 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6653b7cf mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x66fcc9e7 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67009c81 mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70f942e5 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71377ec6 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x733e933b mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x734762fa mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75b72015 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cb3a118 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63dbec55 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a8e58b6 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x714fcb18 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72328995 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x729b8458 mt76x02_eeprom_copy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7a4b7531 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d95b8b0 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x810e138e mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f2aa064 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7961a82d mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79a9b153 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7dd65a8f mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80d26aef mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x882a27e2 mt76x02_config_mac_addr_list EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91ed82f9 mt76x02_rx_poll_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9704a555 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b8379d7 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9cf96fda mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f355cdf mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4f0ac98 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7c84e8a mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa68a558 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x944186a0 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95e6dea3 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b5ba2a5 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0421e01 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa224bb3c mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa22c645f mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9a3e7e8 mt76x02_edcca_init EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf3f4ec9 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafa9032d mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5158666 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb597e53f mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb696506d mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe02603a mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc197e0c0 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc2cb6cef mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc38cb754 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcba4f363 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd23906d0 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd2419121 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd299120b mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc72e41a mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3e4e884 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5af75a6 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5df1f4e mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe665ac72 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf08243a4 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf158ec38 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3f1486d mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd0b38c6 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd790fe8 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdde24ee mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe1bfdc1 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1e3d3f7c mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x27ce1f3b mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6b05fbaa mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7b706da3 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x92a9c276 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa6967aba mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xac6a2385 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xacf709c4 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0d7f64f8 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f1dd550 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x11827ada mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1bba558e mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1f05208b mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x23734587 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x44633b8d mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x46b8bc1d mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4e1bd0c4 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5e0b8b33 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6a1c1d4b mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6c9a9d7f mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x81ad807f mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x85af0688 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x90d5813a mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9a7b9028 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9c3714be mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc39de698 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd65b2147 mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xffa12fb8 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x007ffa64 mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x03c2a02f mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0ea81487 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2b2d6051 mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2cdd06ba mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x46a67a06 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x543a1ef6 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5803ebc6 mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5935f248 mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x65be1b1b mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6d63e683 mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8c842f71 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9991a401 mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9d8deeac mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa98a824e mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xab7ceb1c mt7921_get_mac80211_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd0316c7f mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe0b24b8b __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xece57e81 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf0b7834d mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf0c9c1fe mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf581ed92 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfafc6e77 mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x262936f9 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x304d5faf wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5f69d297 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x80ed5f4a wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8ae1ace4 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9e036db5 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9e6b85a3 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x278af838 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2da70865 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x310979c5 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xadf36461 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae876cee mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb04bc1b4 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb188500a mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1c0fc23 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb227f22e mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3bd69b5 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6a347d9 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb71a31dd mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb82a4d47 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbccb532b mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3f5c16e mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd7c06ab mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce22a8bb mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9beee07 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda5d54d5 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde3014c3 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf626271 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf95cf15 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe17ce929 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4dc4bad mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe542fba2 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb11b74e mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4a08711 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfaf5a818 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x18fa7cc8 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x44a5a3a9 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6990d189 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x79822f17 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa7af8293 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcbb690b1 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd570e6f0 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf0515746 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1b8c1d63 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x25203303 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x289db000 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2aa8123a mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x30c49036 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x41f86ad8 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x53bf38d2 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x642b99a2 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6a15dd0a mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7059f268 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7b09cf34 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x83743f2e mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8842e8c1 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9993170c mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa39459aa mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xae8a44db mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc116dd99 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc96496fa mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xca4ce8f4 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeff24e2a mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x039f0e3f mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2b28aa15 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3c1a6455 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x49849035 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x50eb2ae2 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5cdfcc93 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x60696c80 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x63427f37 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x78973624 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8ef8d00a mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8f06a589 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa32d237e mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xaf0863e7 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xce19065c mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd3c8d169 mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd531ee4e mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd5a1ddf5 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd6db8a23 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdc3bb8d5 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdd4f36e6 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf1796f8d mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf65d9eca mt7921_get_mac80211_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf8cb74e0 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x834094dd chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x83884cbb chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x87dd648e host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x97a071f6 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xbb603103 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe3648b15 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf5fab644 host_sleep_notify EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x41ddc4c8 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa1316402 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfb024334 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x00d88a4c rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0de15669 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1380227b rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a9a2b53 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2047c9ce rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x26937567 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2cf6d24b rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x369b48e2 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3802ce84 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x46606046 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5674ee54 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5e550025 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6072da83 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62dd71e3 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x653e256e rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x654d95cb rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6778b01f rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67f5a05a rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x687590d5 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69c0c0b8 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x76274e33 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79365c51 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8cde8e1c rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8d3672ca rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94ddd051 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9667f0cb rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9ad36c6f rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9d44ab48 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4784a32 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaaa59b02 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xac0f7d5b rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb483933f rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7defaf5 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2f97e88 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc72cd1f4 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc947ce69 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc9b3efa8 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe043ca90 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0f512ee rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeadd16b2 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeafaeaec rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7a0c74e rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf90cbde9 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xffaeb485 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0a7c5764 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x16b474da rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4eb8d73f qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5cc1ee72 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5ee15d84 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7a660c92 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc52d267e qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfb1b1c00 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x033c547c rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09dafadf rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0aa2eab7 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0b79fd7a rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x15e9fd44 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1ea1c84c rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x207471cc rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x248be27b rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2927d958 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38725d91 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3bbc53cb rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4369dd48 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45177d7f rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x481cdc35 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b8c3bf6 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4befc511 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x523f78ea rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59804a98 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5995e82d rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64ec8126 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6963a085 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7468a590 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75c2a0b1 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7657e3af rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a041121 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80d63e4c rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87bdc61b rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87c2dba0 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x934838c8 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x939b9baa rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a4da526 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa04ae430 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa51703fd rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa61a3c67 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbeaf9ba1 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc698eeb3 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd4e630e rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd2ec96f1 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd417b566 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd4903211 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8c0c12d rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe824af68 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb88d66f rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc3bbd55 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x270c6f00 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x296f30e3 rt2800mmio_toggle_irq EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x46a38e76 rt2800mmio_fill_rxdone EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x57d6a138 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x54914a06 rt2800mmio_fill_rxdone EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x64f3370c rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67348790 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7e6bf143 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8febf83a rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x68e9a047 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6c0d38eb rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x731dcfdd rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7497b9f9 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8d909238 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x90a20ecb rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x98909b1a rt2800mmio_queue_init EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa0bd8c79 rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa14c8281 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xae9cafb6 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb2215ad9 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc79f884a rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xeacbafef rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf5f72c3b rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03f924a6 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x124e8b2b rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1705a11a rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17afe01a rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b3986a6 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2de1f840 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e4de505 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3434201e rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35e58880 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b234b67 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43d9f8bc rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b6f06d4 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e0b1a61 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55b3a2d1 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5df5bb42 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x644ed886 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78d9507e rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cfe3b8b rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7eee4c61 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82ee8fe9 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b07ac68 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x90c2de05 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94075d5a rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x971a0212 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x997d327a rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ccf1b3e rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9dfe3411 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e88443d rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1c98086 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4046740 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa45fe1cf rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa8062d18 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb83319a3 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb891f9f9 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc00f86db rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6cb9731 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc9097cb2 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd078cd06 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9ee1bc2 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda3c9d31 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdee493a1 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe10c41c9 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe6acda78 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe72256c6 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf35c4c25 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf67f08a7 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf7bc48aa rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x30a79fdd rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x33419742 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x35378ae2 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3e76df63 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xaaf3573e rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x97d74202 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa2457ebf rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xedf61ad0 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x081d0818 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x13c5dd45 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1d8a9bfa rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4a7e80f8 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x563dccb8 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x57378aab rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5c1db2cd rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x75e019f8 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x85e1cd18 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9ef220d9 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaa8d1b6f rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xae6efafb rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb093bbf3 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xba8e9c14 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdde8154f rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf9d2b89b rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02009972 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa0054ac7 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd49282dd dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf85c676 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0a5a3a45 rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11b4a464 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x191e2da3 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2ae60a59 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x357948a9 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xab9a90bf rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc456fb51 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xce5a7d39 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd021b056 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd7c38ad0 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfc3874fe rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfd385dee rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00bff489 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05235c6b rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x08871570 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09eadf89 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ead53c6 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10bf9199 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b54ff62 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20c4ffb5 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2106e64b rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22701cbd rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x233a76db rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x273c3bea rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2e4ddcf3 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ebfe470 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x36a7dc7d rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e88ca13 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x401310ed rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x487e7c3b rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x553e205b rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5d8cf911 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65068094 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75d0f396 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b94eee8 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8be784ff rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e71790c rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x99add87c rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e975f45 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa58fab68 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae071edb rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf72ae91 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe00088c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc3864091 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc478daa rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd94c92c rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcddc91b2 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd0c4b1e6 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2ddb13b rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9d09877 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe1fbfef2 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe60ee3ca rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xedd2688c rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf182474f rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf1c7f2bb rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf356e109 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf370dbae rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf92aea53 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfff04942 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x51227175 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6762e688 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x683c67ff rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf503689d rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf5f9d391 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xcce061a5 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xebedb78f rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf83c3cc6 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x14ec59e3 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2660383c rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3b937fea rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x45e9f27c rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x661bb208 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x688824f9 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6ec962cd rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8406b78e rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x86fda3f2 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8f368795 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8ff3cce3 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa7c966f2 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc7554081 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe65686c7 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf7dfbba4 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfacb1888 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x06a78c47 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49c81f54 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x915f94fc dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf37e9b80 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c6811fe rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x196faa63 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x39029ff9 rtl8723_phy_pi_mode_switch EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f201edb rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x561dc1d4 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5bcf49a5 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5fb2c06d rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66253902 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x79af0ba8 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a092188 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a845d57 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b144737 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4206f58c rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x46b3b2f9 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f791554 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x637e4ead rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x689cdf89 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d430949 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d696503 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70b60826 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x757e52ac rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x79aad967 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x893dea19 rtl8723_phy_reload_mac_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa401a815 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc012d20a rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc92f2de0 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xca3e72a5 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfb3a1a4 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd266dc3c rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebff4d41 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf270a494 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf499840b rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf543af5b rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf64e3ec7 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00709f27 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01cc844a rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b3f245d rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bfdc1d9 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2215b35d rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8bc060c3 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9861acfd rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e7832c1 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa01f9e4f rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc2a879da rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcd962209 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfe18648 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5854a51 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5bc8ad0 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7e76d58 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdffcd01b rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x000ded04 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x129e6d18 rtl_ips_nic_on EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c318963 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48e76de6 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x392e318a rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a664f50 rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6157aebc rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a3daa05 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b380b35 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c85f6c1 rtl_is_special_data EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74b17d15 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e225118 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84ac84fb rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87a40cbf rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c13ae3b rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92463a7e rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95801247 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6dd4d328 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x810c56ae rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81b64a9d rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93c757cc rtl_init_rx_config EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa79af924 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae021d90 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc60cb358 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd498f372 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0055603 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb35e772 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf30b9ea9 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3c5758f rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf580cdff rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fc0ed6a rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa38f3b36 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaee34510 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb59fe177 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8febf97 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc3406c9 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5cfeea4 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce2d43fc rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2a2777a rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4f1a9df rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd606c8f5 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb4e8eea rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfd84bb2 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2578968 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf9bf0d1d rtl_deinit_rfkill EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x23f98400 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x76735d7a rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8b123786 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbdda72ed rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xccbd7408 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2fc38e51 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3255df7d rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbbc3edef rsi_read_pkt EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x690cb0ec cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x6d4d82ce cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xcfe19e0f cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xee27da02 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2ea919c2 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xab831195 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xebc93bd4 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf9da0e93 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xffb137f7 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x10fb5618 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x4c8d599b cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x96a6734f cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xef15849f cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x338f1ff0 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4e667e9e wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x73c39761 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00c5c6d1 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02c6194b wl1271_acx_pm_config EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x197eff66 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e9b273b wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1aad42bb wl1271_debugfs_update_stats EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21c31624 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2761daff wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f25de49 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3fa2f7d2 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41306611 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a633c66 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4eab9e26 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5385b7fe wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53c2dc51 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61b4c7c7 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6342374b wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63785e18 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68bc17df wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a2e64cb wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ab6ccd6 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cedcff5 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6db33dd8 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7062b7e7 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x724a86ae wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x755819f0 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7875e7ce wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7da7b68d wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23be28c9 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27501669 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c6aef87 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a948610 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c296d2e wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ee74ed6 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43f55386 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x451b24ad wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b6a312f wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52714131 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a035a7b wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x623fdd3c wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x648c0067 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a0b405a wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d72583d wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f3ae12e wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70d6c5ef wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x716da176 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x796f0393 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ad49f7a wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x80993a6e wlcore_event_max_tx_failure EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f468c49 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x979b77a2 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9822387f wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e7f5765 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5dd3640 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb76b82ff wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba1fa6bf wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba9d822e wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xca018fa6 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdb2da11 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf4c41de wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4085eb2 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8d23b3e wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb740da8 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde7d61cf wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf14f1f51 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf73de1f3 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7a857c7 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa228019 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x15e77c79 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a92d867 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92df040a wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97148211 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b6d8b43 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ed544f0 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xacdeef59 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb09302c8 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb26a1ca7 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe102954 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf7ceeb8 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xce91fee0 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd778b43f wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0334113 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2401db9 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe8ff7420 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9e106e9 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3151e33 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf433cf9f wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7239fb1 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x1630fafb wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x2ff482b5 wwan_port_rx EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x52bfbe7b wwan_put_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x696ff6b0 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x66d5f3f2 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xa7d09c78 wwan_register_ops EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xc6e61dad wwan_port_rx -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xe7c00f81 wwan_register_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xf8edbfc7 wwan_create_port -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x49df1de6 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb8d6264e nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe2774cda nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe9bad5f5 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x19a1dc5a pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1aa75bf2 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3d19f1f3 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5c7cd927 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6b719c41 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9243a09d pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd25c5b14 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xd16c26b1 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xd5ed79f0 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0214c928 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x54ba1f90 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5efd74d1 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x738ec966 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x08e78c54 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x171b4e68 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2e3e6355 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3ed5bf21 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa1536dcc pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd70a3666 pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x08a54c6c st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0eef8c2e st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2442ddf1 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2b10da39 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x44e49378 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x55b2c6f8 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x84982329 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd298ecba st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd1c72b45 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf6f30c3a st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xff9d5b8b st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xed3a4ee3 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x18e0c851 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2d6ffa76 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4baf88dc st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x59f4c79b st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x718c13b9 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x952487a9 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb15eb7d3 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcdb95692 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x80e41ab6 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd3fecb49 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xfec2d0a6 st95hf_spi_recv_echo_res 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 0x3b68561d ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4144b612 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x57ded2a1 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x788f38d0 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 0xdf931789 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xee0e8f8a 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/nvdimm/nd_virtio 0x73268bd2 async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xa9062bdd virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x26fcd658 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x89f655a4 async_pmem_flush EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x29f6d5ca nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x4830f1ed nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x640b9547 nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x75ad91ff nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x80a0b3bd nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xa08a3bfe nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00e97f7f nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x01e32aa9 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x028803c5 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f75a454 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e88b7ec nvme_cancel_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15c27cd0 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c9e52c9 nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27b5a270 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x14b30487 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16601407 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b19ec10 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d28a9f5 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x21af2c85 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2560d0a6 nvme_uninit_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27fcbedb __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2873d0bd nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2acdd23a nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ce31275 nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ee58f3a nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x399b342e nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3dd62096 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4112aedf nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43b755f8 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43d19d95 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x440fc6b2 nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45c0cda0 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d991dd7 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e091e40 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e2d6190 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x392635dc __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x420cf8af nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x44fcc3a1 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x459ce8a6 nvme_wait_reset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b556fa7 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4dd21aab nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x582984f1 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ea5ea83 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ec66034 nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5fcd9d62 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63d29b2b nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c83cff1 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4e20b125 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57614ab7 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b991f2f nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ecb3ff3 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f41bd7c __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x600b9443 nvme_setup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67448448 nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6995ce6d __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f09afb7 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f93b62b nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6fe4a5b5 nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71089444 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7467098b nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74d142a2 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77f1415d nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x798dfffb nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c8bdfe3 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ffe1b06 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6525be0e nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x680c32ef nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e4632e7 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7664246a nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7681b276 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78c463cc nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7988db48 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80cc3da1 nvme_delete_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x835abef9 nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x83ff3020 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a12a4f4 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e5075e6 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x938f2774 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94d19d0f nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x968a7eee nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9e63f2fe __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae6f826c nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xafa72a5b nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb34699fa nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc819de13 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd188312b nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x837a8b50 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c49884b nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ddadba3 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e9dfd55 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90e862b2 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x952cb553 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97dc5531 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99966d62 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ac62a40 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa466919c nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb7030f58 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbaa45248 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc6aec5a8 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9b27a05 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca044d6f nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd0615fd nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd0a4ec3c nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1a9c0ac nvme_complete_rq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd7488c3c nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd838f6d3 nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe2d55d5c __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfaa7ea2b nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x12f9ee83 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe184ffd6 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf29936bc nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf4878ca2 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbd561a9 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc8c8b31 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe26db7d nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfece4d41 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0826f4d3 nvmf_map_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e328d22 nvmf_set_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x43bb0fb2 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4da0fef3 nvmf_map_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5188acbe nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5ea3b9c1 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7a835b7a nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x88905292 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x95a83899 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb312145a nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc45a0c73 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcbe2672a nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1ea3c226 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2ac19a29 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x48866605 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x62e4dd74 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7d4d057b nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9b9686b8 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa24f08e6 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbc6a10af nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcd070979 nvmf_unregister_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd8af66e nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe1b2f33f nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x516e4639 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xa628b2d5 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcc8a2d78 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x10b5c006 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x18207fe9 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1c7d6169 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2649cdfd nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1fb48f01 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x246f498c nvmet_sq_destroy EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4604e9d1 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4e301c16 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x598fe9ed nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x717c3f49 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x77116694 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9a2e4ade nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbf0d495f nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x51bf6ffc nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x635a041b nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7e76e2a9 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x821449ab nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa2440566 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb879f549 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbc5ad8b0 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe2fe8e96 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xea0f94a8 nvmet_req_complete EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x46abcea9 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xdfca622a nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x1ca2242a switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x0c862b10 nv_cspmu_init_ops -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x14c724f9 arm_cspmu_sysfs_format_show -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x1a963808 arm_cspmu_sysfs_event_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x182fad03 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x29003cb8 hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x29d111ad hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2b17205f hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x32ba9c70 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x37592c88 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x72b848e7 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xa96af7b8 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xb495ff60 arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xc84f46a9 arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0dbe0785 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2633eeb7 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x29970ea5 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3e2043a5 hisi_uncore_pmu_read EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x61100d85 hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6b5d37da hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6ea06844 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6fc44e67 hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7f521c33 hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb4f43ed2 hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xca3fd3ca hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xda4fe87a hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xdd031bff hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf1d2b58e hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf6717f54 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5925bb8e hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x61f0588a hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6ad37fc8 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8711c785 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x941bec60 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9b1b0a63 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb328b148 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb51f2610 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbe6902a9 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbfeebfad hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd23e63bc hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf9232454 hisi_format_sysfs_show EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xf04cbc2f sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x022cadd6 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0c5c790e tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x153cf7fe tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x23fed93e tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2433b740 tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x31f38cf7 tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3d7dd173 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5649c7bc tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x57ad52f3 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x89094212 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8e5e5e77 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8fcbebca tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb19b0983 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcca012db tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcdfe4039 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xee4bf37a tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf1428f80 tegra234_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf197caa8 tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf1c832e5 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf4e137f3 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfe7edec2 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xcbb819fd sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0973d85f tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0a069a0f tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0b46bd3e tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0d51866a tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x17faf0d7 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x24556662 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x397c5e5b tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x68ac4c7d tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6d81b32a tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x751a4bf8 tegra234_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x75732afd tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7590f69d tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8e5dea76 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9befc623 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa19d7c62 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa7a61d46 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xae7a53d2 tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd460e7f1 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd6f76fe8 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe933f7a3 tegra_xusb_padctl_enable_phy_wake EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4e5661fc mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5b5ee7ef mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7e2dc513 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x6e869d5e lpi_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xe07c6bf4 lpi_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xea5bb962 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xf3c0c1a5 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x95f9d1e2 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xa582750d mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xfd52f7d2 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x6ae99520 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xe9bdfc8c lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x08d47b5e cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xd47cbb4b cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x02de15e5 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1211767d ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1542a123 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1e88285d ssam_request_do_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x26da33d9 ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2ae1fe9b ssam_request_do_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x40951a14 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x562d18b5 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5afe9d53 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6ea2474f ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7437d659 __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x76c364fd ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x780b9395 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7e2773bd __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x87949e18 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x898196db ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8982e383 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8f8945bd __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x908aab80 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x99a6870b ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa597af1d ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaebd3e64 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xafa97756 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb67354b4 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbe399e04 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbe491f04 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbfac2816 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0321df65 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0404c388 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x16050af9 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1f108c03 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x20470d47 ssam_request_do_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x22e86591 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2459f29f ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2cb1d738 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31505d7a ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4a69e363 __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x51b4f68f ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5ef6cdde ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x61baa6d5 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x69e30827 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6e868981 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6f1f3e41 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6fc02a85 __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x716a71f4 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x718a9e61 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7a33298c ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8d24c0ed ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9397884b ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa64d2fdd ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9d65550 ssam_request_do_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb57df219 ssam_device_driver_unregister EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd2de34ce ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd32370a9 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd8dd7834 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdd8060a5 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe2b7f9f4 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc5020f54 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc575fced ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc6e6d2ea ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd3ad630b ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf34d3494 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf9337e20 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfe48b392 ssam_remove_clients EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x9535ef14 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x54e470df san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x16b59b6e devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4bcfd886 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x589e37a5 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xfd82537d reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x9d7d388c bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xae47be42 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xf04d1e71 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x9bd05b6f pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd37999bf pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xedc949ee pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0c57c2dd ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x409e560c reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8b6e8c62 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd3a4f307 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xde55edf1 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x785e567b bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb277f5ec bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd930935d bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x5c36b0a2 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x5ff9d061 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc4c7ea91 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x11f106ba ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x154df519 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x29a1a18b ptp_qoriq_adjfine EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x30ee6825 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x35d6e133 extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x38b8eae9 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x54807d3c ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6ceb7b0d ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7042ca8d ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x78a7496a ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1aa5f753 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2acf2f46 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7d41608e mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x955b4b6f mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc308a3b7 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xa5c4c8be rohm_regulator_set_voltage_sel_restricted -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2a6c764a wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x46fb7cf6 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x63fcd577 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6f5372ef wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcba73f94 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf2ec7d1e wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x100b4da4 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x0b1ac5f6 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x39a2c4b2 scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x561e1e5c scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7ffd5a77 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8d6505c3 scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa6ed0513 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xbd2ab4e6 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5ca3722f ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x921899e6 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9e3fedb9 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xcc099085 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf5a3a9b5 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x03e4a703 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x47b3dab0 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x53dc1fff mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x644dd61b mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x64d9b9f7 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x81fe90b1 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x43ccfe56 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x633a8cb1 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x665df93b wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6e3f6be5 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7769b801 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc0dea3f9 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x33fc23a4 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x0f92d957 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2165ef79 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2abfe7b3 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x72c4a850 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa0973ee0 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xc29ba925 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf01159f7 scp_mapping_dm_addr EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x10d34587 scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x1ea7d4d8 scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x24915167 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7043acac scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa8410da5 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x0453e053 pru_rproc_set_ctable -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x561ccd07 pru_rproc_get -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x5b1ce797 pru_rproc_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x12a00cfc scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x58c8988e scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5c8cbf67 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xcaa4e218 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xeb3b6f5b scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x017cecd5 pru_rproc_set_ctable +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x8482358c pru_rproc_get +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x9741ed40 pru_rproc_put EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1d54d024 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3c5f35ac qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x71741efa qcom_add_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7c7a0523 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8c268c1f qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1e0adaa8 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x88006bc3 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x954b1aa5 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9f3ddd30 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9fcb8bb5 qcom_remove_smd_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xddcdc52f qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xde020513 qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xeb89669c qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe690a70d qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xef049e5e qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xfcfef074 qcom_register_dump_segments EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x50d87836 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6d9d9a4c qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x77782fc5 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x997d1520 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa32798f1 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe9b72bc4 qcom_q6v5_deinit -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf639ce0d qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x05fa8147 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x1595a2f4 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2cf6dded qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x428c455d qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6e5b0aec qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xafd3fe2e qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xef8c4919 qcom_q6v5_unprepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x5f580cc6 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x2c88155a mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xfc16c221 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x684583c3 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x89c8b35b qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xd6f93381 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x4fe311b0 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xdebaac96 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x794c91af ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x088d0b6a cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ab89ae0 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cc67a51 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x156b154d cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17366dd9 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bc16aba cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cf44aaf cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b268f05 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b583b90 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e150039 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33f3625f cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d946897 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e7b7d2f cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59224e2b cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b24583a cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b89149a cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5dbabfc7 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73fd98f7 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78f8aac2 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7af863f8 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b1a03b5 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e5cdebc cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xcc8ec560 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x15bc9e74 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0efe137e cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x135816e3 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14dc646a cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x185fb6e7 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e7b4f42 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21a25d1f cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2afc1b1b cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33e05acb cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3841ac14 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42e6c911 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x446ccc82 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b096be4 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c130766 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ee8ebd3 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x509193d1 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60514fe2 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66f100d6 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6988fd99 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6bb13289 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ea1aa95 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7dea3cd0 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fc8b593 cxgbi_device_unregister EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86aa17f7 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88ef343a cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a2e6d34 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9385d8a7 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9965d973 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a39e343 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e1c948e cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4f4c636 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9c4af1c cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabbe56cc cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1795b2f cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc5264f8 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0947385 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc57b84ba cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc77b38fa cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc2daeee cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7e149c3 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbc4e449 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebb70e05 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedcc3ff0 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x879f4d79 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x879ff50c cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8e88937f cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8fc333d5 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98e0a520 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa031b2c6 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5120e3c cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa98a72c3 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa56a607 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabcbe040 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xafe827a5 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb61f0779 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6acde3d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbaa7811e cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8e99402 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xddbbaae0 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4addd31 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec8c2e2a cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed2d0075 cxgbi_sock_rcv_abort_rpl EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf93942a4 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff8b1f40 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05d4594d fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0653a6a6 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x151b4640 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x264818d4 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3fc30caa fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x45206dd1 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47cb7ebe fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x486f2db2 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x50a6fbbc fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5827c712 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x67e1d572 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fb30697 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1027842 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf76fd990 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb527bac cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05442e81 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13481fe1 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x289a44c8 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x381125e9 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x400f4b25 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ad5fdfc fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4cb1d9d4 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66545d56 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x77822088 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x81d398bc fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad8cba4c fcoe_clean_pending_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbb41425e fcoe_fcf_device_add EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd0a70be7 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeaef7a40 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd16afb15 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd9c101b1 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe8ffda1a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe9569ce7 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf06dfc6b fcoe_get_wwn EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf28ca363 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x33ae2d18 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8dda257e fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0e9555ca hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1213ebd1 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1954f6ac hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1e54c1b5 hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x30764233 to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3271948d hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x34b83364 hisi_sas_remove -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x35a56d12 hisi_sas_slot_task_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3f4e25e3 hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3f7991f9 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x6c40f64b fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xb421dc62 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x02c9fd5a hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0bf3dca8 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0e9f4d7f hisi_sas_sync_poll_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x136be841 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x200a55fc hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x225693cf hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x266ec742 hisi_sas_sync_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2dc84501 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x33fe094f hisi_sas_controller_reset_prepare EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x40ac648c hisi_sas_get_prog_phy_linkrate_mask -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x44106236 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x45c3f3cc hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4e5e5bbe hisi_sas_sync_cqs EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x600f8415 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6332d464 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7afd12d1 hisi_sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9bb502ee hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa37600e9 hisi_sas_sync_poll_cqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa87118eb hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaa26cd6d hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x59296822 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5a4984dd hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x62d5b7dd hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6e795e72 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x77410394 hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8c706e8f hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x953afa1b hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x95ec7869 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x97de7d76 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa14ff908 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa237a34a hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xad6d986c hisi_sas_stop_phys EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb8479ee0 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb8eea7f4 hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb9648061 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb042d0de hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbcf41c83 to_hisi_sas_port EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xda06e64d hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc78c860d hisi_sas_phy_bcast EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe58c6f43 hisi_sas_slave_configure EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebab8631 hisi_sas_scan_start EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf1b151c7 hisi_sas_phy_bcast -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf5d3caeb hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0f857a88 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x41d54d8b iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x729f0694 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc0f31be9 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd2409a46 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe37f35e9 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfa1cd216 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x02a6b929 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0b776621 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x40b202f2 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4b60435a iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4fbc2498 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cce488d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9b79f526 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x6635b0f7 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08557408 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0acd06fa iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x008087a9 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x066be636 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0fd5ce24 iscsi_conn_failure EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18194403 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x181c5852 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x182e4131 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x188b4ec6 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e4e9881 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20444d1b iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21d38c2c iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x225ae35d iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2372bc3c iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23b48ae3 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27e0c589 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f04a896 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b5cee7a __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1666de81 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18874d9e iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d7114b3 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x294e853d iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30bd5c8b iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3815ff54 iscsi_host_alloc EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40020482 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4167fd69 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46aaa94c iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a2edd3c iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x508a2636 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57bd931a iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58ec9526 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5908a95b iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b1f6f9a iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6118b08e iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x637222d8 iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bfefb0d iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7228762d iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x723d71ca iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x780a7378 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7bd16881 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81815b70 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88e69d1a iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dcc7f78 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a69d418 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d7fb791 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e1d9e72 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x500ed0cb iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x598f4713 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a932d54 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65700410 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x670e816e iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71b2d4fa iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72879720 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72d80b86 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72e7ad48 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x777a8d0e iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77c6fafc iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78612a5c iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e9761e1 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89aac4a2 iscsi_suspend_queue EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d58f967 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f583762 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x914843f1 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b4f7000 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d369104 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dd73f86 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f972c51 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa683b852 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa84e5d65 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4705ad7 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8c28d6e iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe68627ea iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea432528 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96018efc iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x983bbae0 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bd55d29 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c7ee38b iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e83846c iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa500e481 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa728a9b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaaf60a0f iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6643697 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb37ebb6 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc7bc2e9 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1a62e0e iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce4a07f7 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xceadd1c5 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd172bb93 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc23a66e iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1593513 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe887794a iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe889028c iscsi_prep_data_out_pdu EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8cb8bf8 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfeaeb4e3 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x104af810 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2ddfc81d iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2fd59940 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d160778 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c298391 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7e29520e iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x825ed29b iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ab69cb8 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x96b3a99d iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa4fde917 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab98fe39 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4db02f2 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xba925643 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc26c0ae iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcd4967a4 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda30eb42 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf5989807 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00d459b9 smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x027af1c9 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06dccbdd sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14549b47 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1dc96f57 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27ab6318 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ade3d7a sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31b7d1ab sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35ee9aba sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37d5500d sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3db41295 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4537ec54 sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x564849d7 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d1cd716 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e0e46fd sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x676e6794 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68faa8dc sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f606d42 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72d0afab sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78650218 sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x80bf2690 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8331b1cb dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8696a537 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e1604d0 sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x933decfe sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x953872cb sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x97a35848 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a02b9b4 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6b6a155 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0c86751 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeaa967e1 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed8e6089 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6444638 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf68e5621 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc89295f sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe68d63f sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x8c12cfad fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e4335e9 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f4ed22c iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18337f7f iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18dc4d2d iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a2ed799 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ad1ef83 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b1bda80 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c527c91 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d985815 iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2448f7c8 iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24e4fe03 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2854df3d iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ee6f6c4 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34bfcdd9 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0f9ead2 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc2c86be iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x176894a5 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x19a51bcd iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x202c815e iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x26a772a1 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2add059d iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x31619773 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4d65e19d iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f3e75fe iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x755dd659 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7c819930 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x82374a5f iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc47020be iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcb35089a iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd3f313d0 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdef99773 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe5d79c62 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfc55db37 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01ca7b73 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ed7cfae sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10e212e9 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11dd9e80 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c91ec2d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1cb2d027 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x23f0faa5 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x274a4e25 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d3e9bd5 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2fdd09c0 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32afcf14 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b8aaa60 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x427ba72e sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x432098a5 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49b78864 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b966a3d sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52d190b5 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x541f9f5d sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55ef5ace sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x60c47045 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x70002c46 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7181f0a0 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x83518a84 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8eb7250e sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93c62e9f sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa146670 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xacdce662 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf4fec2c sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4ebef71 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb648993e sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc6086ea4 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2c80b73 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd65139ab sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf5036bbf sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6655ec4 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe821ea7 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x1d0f73d1 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x094461e1 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1074e6ae iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11ec363a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e8e6a75 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f041e5e iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x264e55ea iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31e9fb59 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x346c03fd iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35dab39b iscsi_host_for_each_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x363ef721 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37416e6b iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x432e132d __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47235627 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x475c9995 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ae43def iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d6db27f iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5017d891 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55657003 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bc8e3c2 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45ecf115 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c9d6af7 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fadfd12 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51d4ce3b __traceiter_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5aaf265f iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b4b3499 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cbd02b2 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cc5fa58 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cf12bad iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e9e274e __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5eb09e60 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d6c228c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e9fc316 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f997549 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60e11527 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6310b5c6 __traceiter_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d662d39 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70f6c3a3 iscsi_remove_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72bc5044 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x732e20a4 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x839e1ab4 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7946d664 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79decc34 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x801ade22 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8343a2f9 iscsi_block_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x861a11c5 __traceiter_iscsi_dbg_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d3b7963 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95637cb4 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9588b18c iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88b5ba06 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d6b7262 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97774f05 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c373f4a iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f1cef10 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0f05fbd iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa33ad8e1 iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ac06cf __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4614055 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaac0487d iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa425a2f5 iscsi_find_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad3ab674 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb12ef355 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3032c07 iscsi_recv_pdu EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb32662a6 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba91473a iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba972212 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb6648a2 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb61ee9f7 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb719a4d3 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb82ae94f iscsi_session_chkready EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbdd3fc87 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc87422d __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc238eae7 iscsi_conn_error_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6264e7a __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8e93901 iscsi_conn_login_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda09b986 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdca5f3fc iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2816f67 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb382023 __traceiter_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea6e9338 iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1f7c246 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3877e4a iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf48aba78 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x37a847a5 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbca554c9 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbcd3e9a4 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe0f57b05 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf19c5626 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3071716 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7ace63e iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf936d3ff iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb0be30a __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc811e6b9 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc974e855 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdcd28848 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf6aa73b6 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 0x5801869d 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 0xa468a2f6 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 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x30cfc82b srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x48af79bf srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4ad5377a srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x719ae9e0 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcc19ac55 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcc1d0594 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1c52845e siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x63cc95af siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x73807c8f __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa7e37eb7 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xea2c6647 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf0fbf781 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0db1a846 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x15140331 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d5d098d slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22b180a4 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x29829f37 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2f84d258 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3cbf4421 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5aa28ea9 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b090c82 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b659cb1 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67fbfa7d slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7122fae5 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x74993c89 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x85b7d361 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8dc563bd slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f59b8aa slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad829602 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3790f87 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcb8111d9 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcf0c9b4d __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd5ad4b44 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd8974785 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe421eccb slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xec37d655 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf7267722 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc60fd1b slim_stream_enable +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4930b023 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5a90b8ab srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc4110b49 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc673d17c srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xced22483 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe7e67ead srp_attach_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x415afa1e siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5f72d509 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8e9a9d10 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xaac6444a __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbaca4d42 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe1ecc468 siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0d500922 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x104d8398 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x13aa1e90 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x165f9678 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22e27f89 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b366d64 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x411a75bd slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54a5ab90 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x64531db0 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7020e2bd slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70fe091f of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x76ed95ca slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x81611397 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x83f1b318 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x848b4d4d slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x949460be slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa8adcec9 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xacb89a0d slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc63df964 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcc00b2dc slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd150bebd slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd2b7c97a slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe75631c1 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xea5bff71 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeb73689f slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfddf3e0d slim_free_txn_tid EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xc7b77a27 meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x211e46f3 apple_rtkit_wake -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x270b4914 apple_rtkit_shutdown -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x45d171a2 apple_rtkit_idle -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x789005d0 apple_rtkit_start_ep -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x89e5c7e9 devm_apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x8eb3341a apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x9b5bd95f apple_rtkit_quiesce -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa0434860 apple_rtkit_is_running -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa3c8ceb5 apple_rtkit_reinit -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xdce87c87 apple_rtkit_send_message_wait -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe19f9f57 apple_rtkit_send_message -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe45c1900 apple_rtkit_boot -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xee422993 apple_rtkit_is_crashed -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xf7c398d6 apple_rtkit_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xf7fd09b4 apple_rtkit_poll -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x35cd0e32 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfef62a5b meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x1902dd13 apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x1eb2d4c8 apple_rtkit_poll +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2176fbfb apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x26ca8bad devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x42b14682 apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x5a92231d apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x66c04451 apple_rtkit_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x67959c72 apple_rtkit_idle +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x7be3b56c apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x8820b8c7 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd2ac145d apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd74c90bf apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd816431f apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xdf13a60c apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xf51a2bbf apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x73697f5f devm_apple_sart_get EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xbaec16a4 apple_sart_add_allowed_region EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xf2253fbc apple_sart_remove_allowed_region EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0e6c6dfe dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1555f113 dpaa2_io_service_deregister EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select @@ -17331,18 +17350,18 @@ EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8eea0099 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb88bd20d dpaa2_io_service_register EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xf72d8f30 dpaa2_io_store_create -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xfebf715b dpaa2_io_service_register -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x2cd7af0c mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x509077ce mtk_mmsys_ddp_dpi_fmt_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x561c9570 mtk_mmsys_vpp_rsz_dcm_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xcbfca3e4 mtk_mmsys_vpp_rsz_merge_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xd0bfb673 mtk_mmsys_mixer_in_channel_swap -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xd3db0397 mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xd722908e mtk_mmsys_merge_async_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xd8c342b9 mtk_mmsys_hdr_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xfb64e33e mtk_mmsys_mixer_in_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x0e3bfc9d mtk_mmsys_merge_async_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x37e9f77d mtk_mmsys_mixer_in_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x3f045c19 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x46b4bf3e mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x67088b5b mtk_mmsys_hdr_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x7d6b28d6 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xa12480f4 mtk_mmsys_mixer_in_channel_swap +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xb34de142 mtk_mmsys_vpp_rsz_dcm_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xb984d970 mtk_mmsys_vpp_rsz_merge_config EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x1736cec6 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x1d6696b0 mtk_mutex_disable EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x2fcc9ff2 mtk_mutex_add_comp @@ -17352,34 +17371,34 @@ EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x71a9a3ab mtk_mutex_acquire EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x7534596b mtk_mutex_write_sof EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x8c90882b mtk_mutex_get EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xbdf4e7cf mtk_mutex_get EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xfa95f801 mtk_mutex_write_mod -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x37a088f1 gpr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3e9096fd gpr_free_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3ef0d2c7 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x4f342b58 gpr_alloc_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x87d23f69 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x915c967f __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xb4a09d7e gpr_send_port_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe5060a0a apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x0b1d08d2 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2e4f46f6 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6bdca466 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6da4dd13 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7786f7b4 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9bd39ae7 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe484b72b apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xf8fed778 gpr_alloc_port EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x11bffb48 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x2c62b79a qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x95f3cd47 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x9e5171a8 qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x1248ccb5 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x349543fd qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xd7d3fe44 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xd8ec1f7c qcom_mdt_read_metadata EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xb19f4904 devm_pmic_glink_register_client +EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xaecfa9f2 devm_pmic_glink_register_client EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xc161d729 pmic_glink_send EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x50d28b20 qcom_ice_evict_key EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x82936acb qcom_ice_enable -EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x925a9652 of_qcom_ice_get +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x9390dd50 of_qcom_ice_get EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xc994d57b qcom_ice_suspend EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xe4280d97 qcom_ice_program_key EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xf0e63b1a qcom_ice_resume @@ -17388,554 +17407,556 @@ EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xe583bba3 qcom_smem_get_soc_id EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x1c87705b pruss_release_mem_region -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x237edb3c pruss_get -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x2ec17306 pruss_cfg_gpimode -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x355e853f pruss_cfg_set_gpmux -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x6be1036b pruss_cfg_miirt_enable -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xaf198043 pruss_cfg_get_gpmux -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xba90cab3 pruss_put -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xc4e3c6e6 pruss_request_mem_region -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xdcc7c41c pruss_cfg_xfr_enable -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7f33fe5e __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa17a2e40 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb4dd500a sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x1d4b6ee8 sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x4429ad67 altera_spi_init_host +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x0cb63603 pruss_request_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x15e056e4 pruss_cfg_gpimode +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x47024d2e pruss_cfg_get_gpmux +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x4f06fb72 pruss_cfg_miirt_enable +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x79a8bde8 pruss_release_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x86f469eb pruss_get +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x9a61b559 pruss_put +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xc83d99bf pruss_cfg_set_gpmux +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xff0ac2dc pruss_cfg_xfr_enable +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0c5ac80b __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x2e86a041 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x95e6c32a sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x41ce67ed sdw_cdns_debugfs_init EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1d4f5de2 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x43a0193d spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x65b0f91e spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7226c499 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x96af316f spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf2fa6e3b spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x37fdaad6 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x70fc58cb spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x79f0a727 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0e13ee1f spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x15db01cd spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2975f9eb spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a29d812 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6acf7be0 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6d8f1f8c spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7eb0e80e spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x81f562f2 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8aa8becb spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f04b09f __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2860462 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb361164a spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb60f57ba spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbbb5a443 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc950ae61 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd5a5f267 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdbe5def3 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe48ee5e0 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xec2aa57a spmi_controller_add -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x2dc3254b ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x03ecf6e8 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x08bd1ae6 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x090ba1ae anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x18c97a7a devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x201b4fd5 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x463f1cbd anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x79687a88 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8f77db2d anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x98c9f6de anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xac849260 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xacf3ba31 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd830c12c anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe5b7b295 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xf33dbd4b altera_spi_init_host +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1709fb57 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3ebc7405 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x529426f4 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x576809de spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5a2526b7 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x916f86fd spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x585bdc3d spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xb042f477 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xe5ac6054 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x023f25c3 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x061fb640 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x078c4ba4 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0cb59014 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x36b009c1 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3f3fa3fa spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c331230 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6ced7086 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7e89af74 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x87da1dc3 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9a055927 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9a8f24ac spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa9e2916e spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xafb88346 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc0c4e96b spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc5fcb2ab spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd268f757 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd3e3e3bc spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf6f74702 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xa97ebfd6 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x31e773dd anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x47a7a514 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x633d2383 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7ecae27d anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x83c029ae anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x853622b5 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8fe47ad6 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb3755b8a anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd0740e44 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd706f20b anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe089bc9c anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf03bb7a5 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf2fa30fa anybuss_recv_msg EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x41abfb44 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x81efd74e fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9937cf1a fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xae187609 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x19fd2682 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1a8067d2 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x32216bae gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4c4e644c gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x67de3241 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x90227efb gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x935f3fab gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x986af1b8 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xae227282 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb8837287 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb8f61596 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe715d3ed gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf708f52b gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0009f7cc gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1cb1c12a gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x40fd80c2 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x47902fb9 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x603e202c gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x624c77d0 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6521d8ab gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7a311edc gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9a8557dc gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9b9f7116 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbee3a78f gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcabc1d20 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdf56abb5 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6563e34f fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc490f02c fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc89d9c70 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf23237ca fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0828e214 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1a4149b5 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2438d64a gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x367fbace gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3755a96a gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x662cefa0 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x86ac0e95 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x95c171b5 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaabc3acb gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xba6e8986 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbc60c7aa gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc0dfbf82 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf4cd975a gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x011a82ae gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x01f5d3fe gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1129b8ec gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x28d70cce gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4612f803 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x56ce9311 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x61453df2 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x64f8dc0d gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6baea7bf gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x848a92a5 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8e02eff6 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xac694cd7 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe0665236 gb_audio_gb_set_control EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x26201af7 gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xf5f2bc48 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x1a1c51b1 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xec0da378 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x39e107bc gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xf7ae29a8 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x2f6c3f1d adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x9bc2e81b sp8870_attach -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x08beb478 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0f4a5161 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1e8ec132 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x228afbb4 imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3146f288 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xe09aad8f gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xffe2cc2b gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x30fae624 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xfa63b94b gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x1fe33859 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xccfdf3c2 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x82f33c72 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xf67d243b sp8870_attach +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0c105d70 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0d3b679c imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x215deea6 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x245c9112 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x279d6441 imx_media_add_video_device EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4859937f imx_media_pipeline_set_stream EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x62687b52 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x67f3c72f imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6852711d imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6e25bd46 imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7b5b6ce0 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x850492f1 imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x860e95df imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa009a669 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x67f177e8 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x70d16b0d imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7f6886a7 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9a6b47b3 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9bd2f3c1 imx_media_alloc_dma_buf EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xaf4f4e90 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xad85e290 imx_media_capture_device_unregister EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbcbce649 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbe7c2420 imx_media_capture_device_remove EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd3c5c516 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc843a3d0 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcaf51469 imx_media_capture_device_next_buf EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe8dd9092 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd622d4b3 imx_media_capture_device_init EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0df44636 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf536b45f imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x033ef065 amvdec_dst_buf_done_offset EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x11aa7233 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x14263571 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x128b9177 amvdec_set_par_from_dar EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2456e111 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x269694ec amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x25868de0 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x26cf49f2 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x51751c4d amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x55162e86 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5fbaa402 codec_hevc_fill_mmu_map EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x614efcdb amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6a1e6448 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7f2eb0aa amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x957a82cb codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb0a0544b amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb72b8463 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb869db81 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbfb69f3d amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbfb8215f amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc14639e3 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd3b8bab7 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd8ae61e2 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdf97c6fe amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe44f1372 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe95a1769 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf57092ad amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x3484d9fb nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x61ec9b3e nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x815eee41 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x189a550e target_submit_prep +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6edac65e amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8c5b9819 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8db478da amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9614561c amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x97cd52bd amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9861467a amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9a8577d3 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbcf0996b codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbd8722df amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xce1efe0e amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd1e0267c codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe607e08b amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe7ae9af2 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf7bf1b43 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x1097fa45 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x932a93cc nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xbc084cec nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0d8ae9fd target_submit_prep EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b9b3376 target_stop_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x321adb31 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3460b75d target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d24150b target_free_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x996ebba7 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5fb5a990 target_init_cmd EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb4489234 target_wait_for_cmds EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc65e34a6 target_alloc_cmd_counter -EXPORT_SYMBOL_GPL drivers/tee/tee 0x05cf2a94 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x09b88c26 tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x152c0a7e tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x25b020b9 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x29a5f175 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x49a396ed tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7367dbb5 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x770de424 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8354f024 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xcdac160f target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf13aee20 target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x001b9489 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x14d74c2b tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1545e810 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x19937f74 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x38c2fbfd tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3974988a tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3bed5d6b tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6caff0c6 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6f9d1769 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x71e60412 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x75690320 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x82159bc7 tee_client_get_version EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8834bb28 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x90fc4ccd tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x92baac15 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x981f06e1 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa9bff26e tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xba3ceec5 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc1bd5f40 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc65905ed tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcab4c53f tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcb2a730b tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd3f6b1df tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd8e98c15 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe6c4efd5 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x682ff618 st_thermal_pm_ops -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x7a274191 st_thermal_register -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xe83daf7e st_thermal_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x92fa5a5d tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9594d940 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x98129161 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa2861b8f tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc1c6dc14 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc7e6e948 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe32884c7 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe59978d1 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xefd20bf1 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf6777672 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x3befb8fb st_thermal_pm_ops +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xa733b82a st_thermal_register +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xb977d57c st_thermal_unregister EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x146612c2 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x27f1e0fe tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2df4a826 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x04a914a2 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x06f0a3a7 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0d86c01e tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ff513cb tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1b38b0ea tb_xdomain_enable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4b5739ea tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4ed1bc06 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x52c50636 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5666be35 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b2c440c tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x588738a5 tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x61e89e4f tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x613f84e2 tb_ring_poll_complete EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6628064e tb_xdomain_find_by_uuid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x74610c28 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x75d71040 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x760a8c46 tb_ring_alloc_tx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7b62db5c tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x816619d7 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x89de07b2 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7c233412 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7dbc83d6 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x898572b9 tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x98f4569f tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8bbe3296 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8d5be60e tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8f49ed5f tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9180ec26 tb_ring_free EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc3171ebe tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc9ae0acb tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcd7edc54 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd331bcdc __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdc65910c tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf114267a tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbeb26364 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc63f2ba2 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc94f8ced tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd0e14036 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe5818d33 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8af4992 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf095a8f8 __tb_ring_enqueue EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf6f6cfed tb_unregister_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfdda947f tb_ring_free -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x09572be4 ufshcd_system_restore -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x119ea3c2 ufshcd_mcq_poll_cqe_lock -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x16e8c47a ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x36fa0c2a ufshcd_mcq_write_cqis -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3aac4f5d __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3d33f2ab ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4267b264 ufshcd_mcq_config_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4c211e56 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x56b11f43 ufshcd_mcq_enable_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6ac05520 ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf9ad50d3 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfd319a37 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0820d1c0 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x08c95ea0 ufshcd_mcq_poll_cqe_lock +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0d82b7fc ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x165c6cc9 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1dfb9dd1 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x20f5b327 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x25478878 ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x293801aa __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3446d509 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3571e689 ufshcd_mcq_enable_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3673778d ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x36c7ffa6 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x46eca1b8 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x47fb42d6 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x495e900c ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4aeffb85 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4ebea777 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x53c6ef4b ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5a56968e ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x69a34ac5 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6f81f02f ufshcd_release EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7c1a38dc ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7dba4cdf ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x81e969f2 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x86311bd9 ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x933cd405 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x94f8ee8a ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x96ce374b ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x98daf769 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9c7bb6b9 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa5c2c9b9 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xacfb6ced ufshcd_system_freeze -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb0ea7cb8 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb8dfa350 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbc28f9f3 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc2baa5c4 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd17dd659 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd7227ea2 ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xed8b8655 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xef061e76 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf36eedef ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf76bd4d3 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfcea4b88 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x250bf4d4 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x80db8f1d ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x86223fa6 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9040f3ed ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa11fdb1e ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa23cd91a ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb4771536 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xba582772 ufshcd_mcq_config_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc173ea5e ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdb3c4015 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe0883bbf ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfb7cb8b7 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x39319f18 ufshcd_populate_vreg EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x669248cb ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/uio/uio 0x15d40862 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x1df8368d uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x6a9cf1f3 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x7af8a4b4 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5b399c96 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6ddf538a usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2d29f552 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x463a1693 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x51a81faf cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x54d52da5 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9ad40387 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa3c1a349 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa74f7113 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa84d9c70 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfe377def cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x53b2834e ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x57b56183 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7e41fa82 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa07fbd0b hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x31da926b imx_usbmisc_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x449e0215 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x45754760 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x951c211b imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc64b7d76 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd0a5f80c imx_usbmisc_resume -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1a061558 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2ce20ff8 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4e09a90f ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x65e20bef __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7b6bd9d6 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9d30aa95 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x01017615 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0c03cca9 u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0ea94d94 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1fe8fd40 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3d329539 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3d735c18 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7af02b8e u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7e997569 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x930f73a1 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9612f2ba u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x978134a9 u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdcdd8154 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe1bf0d21 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe47b29a6 u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfbc8f7ff u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x18ed3c7a gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1c362049 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x205262c0 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x219bfdda gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2ac03018 gether_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x32d8f2dd gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e5105b7 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x45b72804 gether_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x49c1fe2a gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x527fb1ce gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7009c72d gether_get_qmult +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xc5ee958e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbcc425f2 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc438823a __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcf4c6c58 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf66b5593 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x018d9aa7 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4b71e184 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0651e49c cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2f546749 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3f27c0ad cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x446f7b8d cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x48333f4e cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x73b0cca2 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x85fc2295 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xaea6bdc1 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb1c05cf2 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xda327822 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x070498b2 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x094aedd6 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb488cfc8 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xdc55b644 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2372ac74 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3ab21898 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x523875a8 imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x70799232 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbc623422 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd3b9b82d imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x16ee228c ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x28d92707 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x39e6d413 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6913feb5 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6acecb0e __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc81bcf83 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x04e607b6 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1adc9fee g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2307e006 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4c930e5c u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4fb6bd1c u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5b011b57 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6fd7dfdb u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x821a3e7f g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9cabc361 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc01fa5e8 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd852baaf u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe0da26f0 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe6247229 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf5eb4860 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf633dc43 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x043dc632 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x152e6d2b gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x318a307f gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x33f8dd89 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x38208f9b gether_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3af981ee gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x401bee08 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x57ad7c8b gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x63a799f7 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6a413630 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7d17839d gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8259051c gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x82e66b07 gether_set_qmult EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8ae5b6e0 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x90af3ce5 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1141465 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa9625985 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xac3bcc8e gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xafef29ea gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb286768f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9a7d43f9 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa007e1a2 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xda76ff18 gether_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe58beb3e gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xff53c960 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x189f14e5 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x633b4567 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x78650963 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x8076f94f gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd068fefb gserial_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd2cc1cbb gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc9798c43 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd9a2829f gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x24a532ba ffs_name_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7fd81cd2 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x13a22533 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x89b7c136 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xdaa89f77 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0425df9c fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x09791500 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 0x15197bab fsg_show_cdrom 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 0x194558b1 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 0x208ad900 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1e3fecbf fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x24890aec 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 0x398778e1 fsg_ss_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e9b55b9 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x408076b1 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 0x42d459d6 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4617ac36 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x464fc931 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x52276a36 fsg_lun_close 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 0x64820a7b 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 0x6b596568 fsg_store_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 0x8a624abe fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9286cc92 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x955294d6 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 0x99953d34 fsg_store_forced_eject 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 0x9fbae500 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa052b35b fsg_show_inquiry_string 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 0xa6e53892 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa741ffb6 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa85af545 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa96f2903 fsg_common_set_cdev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb01cb763 fsg_lun_fsync_sub EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address 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 0xbc5d0467 fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xde4f0619 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeba207a9 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xed4ee783 fsg_store_forced_eject 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 0xf66ddd0d fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf67b86fd fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfc13ab37 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x170b0580 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x409548b3 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x453e8b95 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4f9364ac rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x806ef84a rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8fe6076d rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9211b45a rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa5a7be3a rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa7a458ae rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa0a479b rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa43a50a rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xccd9aec6 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdcecca95 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xefb5229e rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf0de4833 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09c91ddb usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf81d383c fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfb16d229 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x05b57e5f rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x18665c71 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x197ca51c rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1dac99cf rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4003a5f2 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x47f9c454 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x74c72e3a rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa46f420e rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbb323e16 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbe03e8f2 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbe2ec43e rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcc2eb094 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe736f3fb rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf0df4b69 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfba304d7 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0322fd4b config_ep_by_speed EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0e1267cb usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f225110 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x115c6ba9 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x153b1e21 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1701c24c usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x295a9e36 usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f910a32 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x275f0a60 usb_remove_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ddd3fa7 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c4bd350 unregister_gadget_item EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2f2dacf3 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3153159c usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3710d5b7 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a9350ed usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3cbc1830 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44a7c123 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fc24147 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3022177f usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3c2b6329 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x435cb84a usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x464f2cca usb_ep_autoconfig_ss EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e776359 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f6070c2 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55183ca4 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x65a74367 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c44e79f usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4eb3abbf usb_gstrings_attach EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x76fbc880 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78eea838 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79e5e17f usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8138c081 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9726a5de usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f7d9701 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f7eed66 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x820f7d01 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87392cde usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x956c6a23 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x96eeeaca usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x97543d1b usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9d1a541f usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9eb936bc usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa106ff17 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1d984c1 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa4e4324 usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb02a3d88 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb0ddfe18 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbb3a0f07 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbee5ff65 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbfa4be89 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbfcd9c1c usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf315171 usb_put_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd32f99cb unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3ed8fdc usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd69c9a18 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd887a178 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe07ed103 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4e89a2a config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee348b18 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd717fe7a usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd7547a36 usb_ep_autoconfig EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5bfcdcd usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/rzv2m_usb3drd 0x9f395034 rzv2m_usb3drd_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x13d49c72 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2c43c7b7 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2e8d81ef udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x383c23bd udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfa6a819c usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/rzv2m_usb3drd 0x0c2807e6 rzv2m_usb3drd_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x059f3b4d empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0b1788a3 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1fa4d57f udc_enable_dev_setup_interrupts EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5e3d9759 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5efd09ab udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6d6721d8 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb95f9345 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf3dbd73a udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9721fa02 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xab69e6b9 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcb524cbd udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd53508c7 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe44eeba3 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xff640a81 udc_probe EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x03bca04f usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x07d4113f usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a3c2118 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0dd4c4fd usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x03c4ed82 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a0ede6c usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x12f4d573 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x166f4dfe usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19c09fd4 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c6604d6 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2551ef94 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28f5ff79 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a3854f8 usb_add_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x35bb2e45 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x35d868b6 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2cdd649a usb_gadget_set_remote_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2d89ec1e usb_udc_vbus_handler EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x45dc2d18 usb_gadget_frame_number EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fc0b4af usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x67dfde66 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x67f079b0 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6e22faa9 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50cb28a4 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x61f798ad usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x621db545 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6e750c0a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x74178ddd usb_gadget_check_config EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7f85eb4f usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x84551ce3 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a53725a usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x91b17ad5 usb_gadget_frame_number EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ff7a470 usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac3d483b usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97bedef0 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x997a1b75 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9a28a127 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9d34224a usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa06a2f9c usb_gadget_set_state EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbd40d176 usb_udc_vbus_handler EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbfab9463 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc0313ba3 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc24c9075 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc1ac6c67 usb_del_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3f60be9 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5fd56ba usb_initialize_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce57a4d2 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd39fa928 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd513bca1 gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe15b730c usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe2dd5457 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe664e4c6 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe7750ff0 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec2404fa usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef346048 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf326c8ab usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf3fabe3e usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf9cf784c usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfb7fd5ac usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xcd3be60b renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x37756b92 xhci_plat_remove -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x556bd1e9 xhci_plat_pm_ops -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x8153cab2 xhci_plat_probe -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xcf853a1b ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe35ecd13 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc95ada18 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcdb3683a usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x164c83bf renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x3c8b5534 xhci_plat_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x633ead50 xhci_plat_remove +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xbe3f21f9 xhci_plat_pm_ops +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x08a35007 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9f8636ba ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x25f4243e musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x619f964e musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5fb42e3e musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6c4b2410 musb_get_mode EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x78f512c3 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8ff13df0 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x92f24cc3 musb_queue_resume_work EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xafc9ce17 musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbf9b4f49 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xced39684 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xda7cfede musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd3c355e4 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4b52e049 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7a42d4b2 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x8765ef19 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x92afbe81 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xdbf7179f usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xb9f3973b isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x68ab6f04 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x814de252 tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x83a154b1 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xcdd15986 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x5d3afa52 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x162b1b41 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x301c99dc usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x417d6662 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41dc4802 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5396c21c usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5864e751 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x770dbc98 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x80b6947c usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x831f328c usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x88997e22 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8d273847 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x904cbcb8 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x97152086 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9caa1d32 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa77aa600 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5c9a885 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcca87c81 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe5646857 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfda53bee usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfff467fc usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2d2bb87a dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xb8fe0af5 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x10c1e20d tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa39b4cb8 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xbebaa59c usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xdd39c5d5 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xea87d73b usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xeb87d9c7 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xc74b91cb isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x34085b6b tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x4d095b91 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xce8b9c64 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xfe9fc04a tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x5d1cace4 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x160aa41c usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x330e29df usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3874d8b8 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c21579b usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x447213e0 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c0e6be0 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55b89e2e usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5a0bbaf8 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68a856d4 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b5fe130 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x83465a23 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x89270fb3 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8cddac57 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa3662aab usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb389e701 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xccdec9fd usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd599c2e8 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec676e58 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xece6be90 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff078a37 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x7544310b dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x81e11121 dp_altmode_probe EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xf0d775b1 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x727193bb tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive @@ -17945,222 +17966,221 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xda86a83d tcpm_port_is_toggling EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xf559c4a8 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x001aa296 usb_power_delivery_unlink_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11f1652d typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13c71cee typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x14df2d5e typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15367067 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16fe239f typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f3d1f17 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x241e9b35 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x294b2822 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0494f78d typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05533be3 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05fccdc7 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x062e718b typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a83ab00 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e2777f1 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e6f0166 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f7b660f typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1c48b8d2 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1ef373f7 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2398604a usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x262425a6 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b2aaabe typec_partner_register_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30e5bbd4 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x372e4bb3 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a428c1b typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a643fc2 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e90afbd typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3fdcca18 usb_power_delivery_register_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49ff0853 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53762f14 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53fb5fe7 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x55f63a93 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x574a7c8a fwnode_typec_retimer_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x591ac7b8 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b616b91 typec_retimer_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c6d852f typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d4ef1ed typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e87c93a typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60753496 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x660f0c66 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66e590bf fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x673ea80f typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6837fcf0 usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68446164 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30a9fdeb typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30aa9647 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x37dde81b typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e78e1a0 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45d6ff25 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ce970fc usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x536e3055 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c7c5df typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57e93836 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58b27cd5 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b150964 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e21ca98 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e335648 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e8d8026 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x654ba3c4 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66fc71e0 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6859dc13 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68fad304 typec_register_plug EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75448ad2 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77402f2e typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7839f07e typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x798d319d typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b1fdcea typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d830ef3 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6dcc1089 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e67f4fe typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f08bdc1 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ac711b4 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x85acf173 typec_unregister_partner EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86a6093a typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86c3a1c0 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x881dd11b typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x896a3935 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a7af4a0 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f453168 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8bf60d8d typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f983447 typec_unregister_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x904a7e54 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x975e2514 usb_power_delivery_link_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x97e8fbc4 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x994247ee typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a238419 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x936f6aa2 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95c5f2c0 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99b50cb8 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b82c37a typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c6004bc typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cc48f8d typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa15af84e fwnode_typec_mux_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa43a1dc0 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa50499a6 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaa8048a8 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac8235f7 typec_port_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad9068cd typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1d3857b typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb270a68f typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb52b9c7d typec_partner_usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb9b6f13 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbe32e9b9 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc4ae69b0 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc7d83dde typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc7deb9ac typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf53b6ef usb_power_delivery_unregister_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2cf5831 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa40dd546 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa61851eb typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab510fb3 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xae3d1e22 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaf26db55 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb48522cb typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9d94b90 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba05d4c4 typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc6e6102 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbe4b4fba typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1ce63c7 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf484f64 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd04fe7f4 typec_retimer_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd6113134 usb_power_delivery_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd86f1b64 typec_retimer_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc6f87b0 typec_retimer_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0123f11 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe19e858e typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7f76189 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd80d2023 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfd2d9f3 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfe195e7 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe044e9a1 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe3088b69 typec_altmode_update_active EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xedd2eef9 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xede53b21 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef1419fc __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef74d6a6 typec_cable_is_active EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9f08094 typec_partner_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc886485 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf44242e6 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf99b29f8 typec_set_orientation EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1db2fd6c ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1ea0c852 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x26b375d9 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x37d7bf1f ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x572033cd ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa7bb6558 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa9df6baa ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaf550aed ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc17688fa ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x193997b9 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x243cc80e usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x517972e9 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x562e8b38 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5d5dc4bb usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x653e6c57 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3f37344f ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x61c4612c ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7682a7bb ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x82b57ce7 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x878ccfa1 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9f50f490 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xae87b6bb ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc0548336 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xcbb1015f ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x16641abd usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1bb23c4a dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x238d36ab usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32996ba6 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4645a0d5 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4970b4d0 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x741525e1 usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x98550a57 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa4bae6c2 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xad17a6a6 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc7a4c12f usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcd22f4e2 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x903412db usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb1371026 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb2e19556 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb43a0414 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc02a0710 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 0xda3a0a50 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdcacc365 usbip_event_add EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfa95cc2e usbip_in_eh -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x03c51467 vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x09bb7258 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1f08e157 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6521d676 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6f711afc vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9bce20d1 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa2d7d23e vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa92e39b6 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb819d7b8 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc2125504 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdc0cba44 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x485ac53c vdpasim_schedule_work -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x9384468f vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x03a0f4e1 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c08c837 vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0d9e816c vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0ddff95b vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x12551a33 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1af7b4bf vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1de0a19f vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x23f5b445 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3de974e0 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x411710f8 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4b2deb3e vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x021fa2ae _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x06e303ae __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x11026369 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2b12773f vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4511c8fb vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x74184b4c vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7d1add40 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x857f82f9 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbd0774ca __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdb03892d vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe6c6fa16 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x159b0cf0 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x36a21405 vdpasim_schedule_work EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5245dfb1 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x717b15de vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x81e30a2f vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8648255a vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xab955bc4 vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc173f3e1 vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcd6e4246 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xeb07a381 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x07cabda3 vfio_platform_init_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x0c324672 vfio_platform_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x36cc9f68 vfio_platform_mmap -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x37c21912 vfio_platform_read -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x49edd597 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x5e1e7076 vfio_platform_close_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb00c7233 vfio_platform_write -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe156b989 vfio_platform_open_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf018701d vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf098fe60 vfio_platform_release_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0131cf21 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x04d7684d vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4802da11 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x59e53d1b vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5c298a2c vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x61ac24d0 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x75f08f69 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x76951044 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8388c645 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x86867417 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x87c8332b vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8ac82cc7 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x900dbea1 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x98dd7617 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa5cb041d vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa72b8b49 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xabe3e41c vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbe86f9ed vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc9b1f6f3 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd6dac60f vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe2e7f625 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf12261c4 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x5f9fd5c0 vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6661aab9 vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x95f15966 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x97a3813c vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb454f0a1 vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xbd3bb546 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd904ed3c vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe2ba7460 vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xecd3e5d3 vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf4c4a410 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0b51f85f vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4340d8cc vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4636a692 _vfio_alloc_device EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5e3daabf vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4be9c881 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4cdc480f vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x556d049d vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5d7bc6ab vfio_file_enforced_coherent EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x640238ee vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6dbd95e0 vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6f46e1cc vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x61b39975 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6a018b12 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6e2ff2ac vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74e05b1a vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x798ff11e vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b714099 vfio_iommufd_emulated_unbind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x81021978 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x944ee8e9 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9d932949 vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa759043b vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa78cbcc2 vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb1824849 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb3f3b65c _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb580b284 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xceb0f218 vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdcf9e2a3 vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf11b5fd6 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf1327bbf vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf1587b07 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf1bea49e vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0103972a vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0352e231 vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07afeaa5 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b52fb47 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0def7e41 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e89e4b5 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13987fc1 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18fe9a77 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a5faeae vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1bc34951 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x216db4f2 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x222fc59a vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4190726d vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x463926a0 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47b40a77 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x480c59aa vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48f1cd89 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x49d847fa vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d886381 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e7fefe3 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50c64292 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b924977 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5bc036a5 vhost_vq_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c8af7ea vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61f3b09f vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62b77718 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x62c4c2b9 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b6cf675 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x817c4c10 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92c58401 vhost_worker_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x953d86c6 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98e07aa3 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3537324 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5c229c8 vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8a64819d vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8f5c259e vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x94156c9f vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa17f59a2 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xafc6b6ff vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb28ec99a vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xce57fe7f vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe7a1a42b vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06704cfd vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c458f64 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1dfccdc7 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x282a6606 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x286fae6a vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29b7e2d2 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b106717 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d4d365e vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a61f513 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42ee637c vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47850a28 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53225f7a vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x568663a8 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5afceb99 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b0f5fcf vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5fa7d5be vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63c6f2be vhost_worker_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67a6b1af vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7dabe2ae vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f1f1544 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85a6647e vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b414678 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b474ca2 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9430ad41 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa21d1b2f vhost_poll_start EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf3555b1 vhost_vq_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1ba153d vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4dfe769 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca4b5d8a vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3d5b43c vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4f203b1 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9170598 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf36fdcfa vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa2ae6cb vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb63dfc1e vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb81d44c0 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb48d20c vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbeba47a0 vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc01a9aca vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3f16b9a vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb249b37 vhost_vq_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1179884 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdeed6a0a vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfe21d81 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6a2dfe4 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6e87529 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7158a41 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf86cf1a1 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa64131d vhost_add_used_n EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd677266 vhost_dev_cleanup EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first @@ -18171,397 +18191,397 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5bd5a9fa ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x94c80143 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9e532b0c ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa7378867 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb3d1f34f ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc0aef09a ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd9cdae45 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xb6a22469 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2b6a95c1 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb9a4b7aa sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x037c2a1d w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0eb59a5f w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x14789b18 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x29d22a00 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x47947bd6 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4a2da1d9 w1_write_block +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x18d58fc3 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1ad9dec6 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1e24c167 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x41986b82 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x63d35898 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xeca1c6d8 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf4b63701 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xfbd4d30b fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x674cd195 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x833083e0 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0c1e55e8 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x17ff48a6 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2da1019a w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3d4c1603 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5562f260 w1_read_block EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9adbedef w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa89cdb74 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xad30a6ec w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb6c136da w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf1bb2006 w1_touch_block -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x33529a37 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x91c64d7e xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa3bf9a2c xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb9083d8e xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xbf171ad4 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x47535e58 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xfcdf5485 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x20e0150d dlm_posix_get +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fb05290 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x852ae3bd w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8534a88e w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9c673230 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdd51ccc9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf22aedf9 w1_touch_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x12eaf34c xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x149f1f4b xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2f35f27a xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb11079a8 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xfa3eed78 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x05ac1c91 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x8f702863 xen_privcmdbuf_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x611ac8ab dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x88d200c9 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8d606b32 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x95325ecb dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf5bbfb1e dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x11be5bcf lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x26adfa1d nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x439d3434 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6fcc8440 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x718b392a nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x78d6d8e1 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x943a2d39 nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1016dd38 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x425c9102 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x649681c5 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x699e87ed nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8aa53062 nlmsvc_ops EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa3f8ed96 lockd_down -EXPORT_SYMBOL_GPL fs/netfs/netfs 0x9e0b11f6 netfs_extract_user_iter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x004a1f66 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa045bc42 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb96a9290 nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd5ed24c6 lockd_down +EXPORT_SYMBOL_GPL fs/netfs/netfs 0x5e62dc20 netfs_extract_user_iter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x001e6614 nfs_sysfs_link_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01a7fa0b nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0225c214 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x025c77c7 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03df6b80 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03e88402 nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03ebf076 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x046ff5c0 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bd81a03 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dbd66c0 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e8a7e7d nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e92f12b nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f3478a5 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fb20e21 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0494163d nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05d5a7a3 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06ea2fc4 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0886324e nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0aeaded0 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bc5027d nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ccc0dee nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f6a3303 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f779462 nfs_flock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11552e50 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12e252b4 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d8012e nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x162acbb0 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18d114f0 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x198219c0 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b610e10 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d8b5bfd nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x221c7b5b nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x228887e4 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1679ddcb nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17c900ff nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1881db5e nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1883760a nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18c6df28 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b491638 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f018af9 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1faf955a nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1fbf271a nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22c20d56 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e632b1 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24f2d8f1 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25a73bae nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24a620af nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24d683c6 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28162990 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2882e36f nfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29086fa3 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2996692e nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b043e7e nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bef8140 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x307e0ad6 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31b8b830 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x325a2ef1 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x327e048e nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32cabfdd nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29be9aee nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bd49feb nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2beccaaf nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ecf1c82 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f7a0dd0 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x307b88b8 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31096641 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e16517 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33032b6d nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34566b51 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x381ca84c nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3594356a nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3716b1a5 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3899eed8 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39c3a5a5 nfs_permission EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a711f76 nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3af70d6b nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d220d74 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3efdb397 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39f119c3 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca9c6cc nfs_link EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f922926 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f589705 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x411a8c23 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40b71224 nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44ec2bc4 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45d3ab79 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46c5922f nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a11bab0 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ad4dc01 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c2a96eb nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4546f817 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45fb7511 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47993382 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48ce5ca3 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49dabb7c nfs_read_alloc_scratch EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cca44b1 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d3a5a83 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e6911f0 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ea59572 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ff3d06b nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e7ac7c3 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fbc7498 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x508a60db nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50c297c0 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x514f3f3e nfs_mknod EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53b0d1cf nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54454266 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57491c93 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x527b87c5 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52c414a4 nfs_statfs EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5850693b nfs_sysfs_link_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59f06cfa nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b0e6880 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cedb8b1 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f918e77 nfs_read_alloc_scratch -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62dbfb95 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x642d53f2 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65f89b95 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67c8c62a nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68c4fa2f nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cb6115a nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d615e89 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cb5d9a4 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e7144b9 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f9b2a06 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60e808e6 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6377fab5 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63904221 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x649aa738 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6908f199 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a22a38e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a6165f7 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d4078c4 nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7220ac8c nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72b9ecfa nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73382650 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x705a9cd3 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x719f9206 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72ecae3b nfs_pgio_current_mirror EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7619318c nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76a6e62c nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b07c1b nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b9c4c30 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cf66193 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d3b4ba0 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7db48618 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x741b32c6 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78da63f5 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7aa4a02a nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b3230c7 nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e202e89 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ef11551 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f5c36bb nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80f25f0f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82055129 nfs_rename EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8602b07d nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86802917 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a03532e nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b8e628d nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d4ca1bb nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ea64dfa nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a0cc6d4 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ee0b240 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f08dd42 nfs_fhget 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 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95741d1d nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95f597e9 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9654f089 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96f40aa0 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x954ad2b1 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x979b66e9 nfs_writeback_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b930a03 nfs_sysfs_add_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d37b8ba nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ec5e457 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0ac26e4 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0ec9b58 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1fe5975 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2d11e2e nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa59d5691 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8544825 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c1fe13e nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c8e9252 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d3367b0 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa15e892e nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4cff3dd nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6adc150 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6cf73b9 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7e1ae28 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa835f7c5 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c5e8ef nfs_server_copy_userdata EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa409e11 nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb00dc741 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3c107e3 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb74a18cc nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7adde8c nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9026a0c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab50713d nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac4d1064 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaed00a9f nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaffa2845 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb01d5851 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0a6ba85 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb299dbb1 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4089245 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6cc24bd nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc8a4e2b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc8cafe0 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc60c8d __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe5c3701 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a43da7 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2fc8fc7 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf8846a0 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc142ee85 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4138566 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc50882b1 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc621e35f get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc667a4a3 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc536ebd7 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6548060 nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9b7db69 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbc564c7 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbe50c43 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcda9803d nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdef847c register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce32d453 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd158f96e nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5f78338 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8f0e8a9 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd90ef472 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9f22750 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc834f1ed nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc87238c4 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaf5330b nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb01fee6 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd1c3f96 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceda6580 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf3683fa nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5ee6faf nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9261701 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9597ffe nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda89eb9d unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb14499d nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc5a5057 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcd54656 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3804d22 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea906c99 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec9d3936 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeefef236 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef28dcba nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef6b675d nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1bb762f nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf457c950 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf51a6a60 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf64855a8 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8d28004 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf92825c8 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc7910be register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcca73f9 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe193801a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe29d7a70 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3c80fe5 nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe58d0c39 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6b3e149 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6d644c4 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9c5961a nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb25032f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec2c907a nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee8083c8 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf12a9347 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1fae092 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf352de2b nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4367525 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf505a001 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf53bf02f nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5739102 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf63e09b5 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf90f1bfe nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa5dea26 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbda091c __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdda752d nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x0d5a309e nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01e04f30 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd92f3a3 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdc0332c nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeaa6035 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff40419c __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x1e973557 nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02da1276 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04dee9a3 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x034ba06f __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x046659a9 nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05bbf59d pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x071e4495 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x095988d0 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09bb8b89 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aaef5c1 pnfs_generic_recover_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd06bd1 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cc4ea0e pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d381e90 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d4ef092 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0da734a4 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16a023b6 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1752326f __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11d2ab7e __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b41178 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18d7ee47 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1af0471b pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c04f756 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d57c82c __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21570d1c nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2174b794 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x244b6efc pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23422a17 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x262f950b pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x285cc7fa __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bc4c52b pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27eec786 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c21741b nfs4_schedule_stateid_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f1e21ba __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f7ef02d nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x300e0c54 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fa841b2 nfs4_proc_getdeviceinfo EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32c64a7e nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32cc774b pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35fb8b65 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x382717b2 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ab884e6 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fb80c7f pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fe073bc pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x400d78b0 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x471ba4c5 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4742ec9a nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48800137 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ba517f9 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50ac617a nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32c79b1e nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35bd9fd6 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b7e3e1b pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3db72ba1 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fc3c428 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4660d3cb nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49b49c1f nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49ef050d nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4add01fd pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cc7a3ae pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555bb1db __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5712b96b nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58b32d94 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58c533af pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5abd5b38 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b8460d4 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5eb956c5 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ee8b940 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6053ed1a pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63653b78 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x658b41ad nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6865bbc9 pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c5b616e pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cd0bce7 pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e637af7 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72c09365 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ed59795 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71ad574f pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73d8e53e __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75c9ad0a pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76ee69f1 pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79a103d1 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a003594 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b30624d pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f6adfb1 __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x802046c5 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88016ae9 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88f6c6e7 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x890e2645 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8118504a __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8525b214 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x875ba11c pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89dd81e8 __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be24f50 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c4cb1e9 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9125ef0a nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94b60ac3 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96950392 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x983467c9 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a442f pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ab16d5e __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d42f5e1 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6974c05 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9bce768 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabe47191 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0e7bbdb pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6107d31 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb803748c __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e444d7c nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e52aca8 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ffc9e36 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9091636d __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91aae81d nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92e6d47c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94be7d68 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94c28510 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d53484d pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fc6dcb8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5fe589a nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa28fe22 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5ea59e4 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8ff1560 pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbedb615 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf355c67 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0691ed0 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbacca4b9 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbec5abfd __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1e06c8c pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc70a46f4 pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca7329cb nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcde0a5fe nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xced4dfd5 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd308750e nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3339cc6 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8ecdc66 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9e10733 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce3ddaff __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf4c2dd7 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd157f7a2 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd35b5d7d nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd47333c2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6461004 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6b635b0 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda11fee8 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda245b92 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda95b085 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc054f79 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5d28eb7 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd852f347 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd934677b nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9ba391f pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda705c80 nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd342fa8 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde568c0c pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6a6f292 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7f7a7e8 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb48d189 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1b9e96b nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe27b6aa9 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6317658 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe94fc354 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2c0eb58 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf63f7af2 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee798de9 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3a13ec6 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf604c693 pnfs_ld_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf82b3ad3 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa0c5b6f nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd3ab43f pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd6646ed nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfda40441 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe13e451 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6e51903a opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9cdc5f81 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf878d426 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x05b38667 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1c9e639d nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x969a60ce nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc51528d7 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x827ee360 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x42fb9b9d o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5a12e6bf nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7988c33c nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb7d6ef41 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xda719c36 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xb973e208 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0c9046f1 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2a07c6e9 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x543d8285 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x64bc7c13 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6cace99f o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x742c59e1 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x95f1fa31 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb30a2fcb o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xba0028c5 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc5e177b3 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcd6f1818 o2nm_get_node_by_num 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 0xf43ce3a0 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfb4212da o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0748f4f9 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1a5b35bd dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4288d60a dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x42fc7bff dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x723163b3 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x43e810b5 dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x92368be5 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x97ba22ce dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x99a27f07 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xad81df17 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 0xf485642c dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf5754dfd dlm_print_one_lock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x35e05700 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3a412f1d ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5ca9bd9c ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89e99cfe ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa50b3004 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x96241d59 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xba76c3d1 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe464d7fb ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xa8c343b9 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xc43732ab register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xa149e695 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xa640b764 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x871f87b6 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xd4fcae6b unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7d1c8310 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xa7fc6c9f register_pstore_zone EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xabd9af6d cifs_arc4_crypt EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xc4c73891 cifs_arc4_setkey EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0x798f3830 cifs_md4_init @@ -18583,8 +18603,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x16d97e5c notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x421af550 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x3b49102a notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb8daf2bc notifier_err_inject_dir EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 raid6_call @@ -18595,1082 +18615,1082 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xea4b3e28 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf0a33605 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x0947feef garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x210aa11d garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x4d3b3a23 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x8e602efd garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9c65257f garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xbff408f6 garp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x2573e802 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x3aa0a854 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x3af0487e mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x60ab7804 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x80cecab4 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xbd0d8c5c mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x4e6d858d stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x7a8f6672 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x149066a9 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x5738340f p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xd79b3745 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xee7d8646 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x251df9d9 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x2848e5c2 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x492deaf2 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x51fbe58d garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x92a7f419 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xd3e7bace garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x8a6ac985 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xad8ecae9 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xb08512b4 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb9c66510 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xbaaab279 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xef0ede1a mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x3c4d5ce8 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xb41867d9 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb133444d p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xe62893e5 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 0x97786b1e 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/ax25/ax25 0xb249687f ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0ee74c80 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2c23fa92 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7aecc3ce l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x883f6daa bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x90241e93 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xab3b0475 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb4892563 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc37d2f7b l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7a02055 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bridge/bridge 0x01b7e518 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x05e80235 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x17996c6c br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1834d8e1 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1947905f br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x21af0bd6 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2a92df91 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x312b88c9 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x34408bbd br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3576ac17 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x38c2def7 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a92d7fc br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x89b6dfcc br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8f1dc13d br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5f6b82a br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xabeff8cd br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbe7c1e4f br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xca6a685d br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xca89c4a1 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcccad8c8 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd3f3db2d br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdafbef06 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xdcdd6d57 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe795f54b br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8db773d br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e140e39 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1d300d5c l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2adf0a57 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6031f939 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x73720236 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8a616602 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb5487328 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd9902023 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd9963cb6 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe14861ea l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bridge/bridge 0x068f4003 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x260f4749 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2bf4d586 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x36f168d9 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x63e16ace br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x718281c0 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x816cddf7 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8683f37e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x88921d45 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8df470f0 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x933a4c43 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9520f24a br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9ebf6f5b br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa675528a br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaebc39c0 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc7a3e346 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd0e4994c br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd288c9f4 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd3dcb47a br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdb11c990 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xde227bbe br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdfaa352d br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2426750 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe2bd0b40 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf78a9fcf br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00d5e810 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0cfca875 dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b2f8c3a dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ae583fe dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x306c8b3d dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3077049e dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x460992fb dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x499dd960 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c9776f1 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x223a0bf2 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x231cffb2 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2abd4b80 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2cce39b6 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b452c6c dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x420d57e4 dccp_sync_mss EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4fa3f24a dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x560d3541 dccp_getsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59db4cfa dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5be2c3b2 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x611e7db2 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7676d4eb dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x78c3818c dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8028a599 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a41c1a8 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ba47f43 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d76282f dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x635c351b dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ebc5ba8 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75db0add dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75e377da dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c5202dd dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7deeb521 dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x869e34ca dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x929d4fe5 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x950dd88d dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d5364a6 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93dac70e dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94844f32 dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x98aa8edc dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9928c1f0 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa89bb99f dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xac59f125 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7e859f8 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9828996 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc865c662 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc951cf84 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbbdcd1e dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd030517a dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd16c98e5 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd69dd179 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9abb576a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ce85d76 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f2561e9 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1dc5293 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa686ba19 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7a192f5 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7243861 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7921897 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7a56454 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9200fb8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcfbbb0f5 dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf17da060 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0e8daa99 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x32796aa7 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x34a311c9 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbe98e4c5 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc2bf55ca dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfb386255 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe489eb46 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x282e1be4 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67d226c4 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67e03aab dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x87e015b1 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc58883bd dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd45e4df9 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x03081f81 dsa_tag_8021q_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x24e31f4b dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x374ac2ce dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x39eac2fd dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a481fa3 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x407afb2c dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0ee618e6 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fd5e75f dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1c9757e7 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f27b33d dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a5cece3 dsa_tag_8021q_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4c5fb232 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4cd448c4 dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5edca55c dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61fc410b dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x697fe60b dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77781dc1 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7a5d2626 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88bc43dc dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x90adc75b dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9a8df7f8 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f00d9ee dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f1f4bbc dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57ff79e7 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64b21e9b dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6609065c dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6cf96547 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7077303d dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71063b32 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79418423 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80657b24 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8e6be8c1 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x998c5117 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x99958daa dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c0aaa6a dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa456a128 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa9987752 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xabd3a896 dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0db5f55 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6c36eaf dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbecbac8c dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaa4e9f37 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf03666e dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb3049e0d dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb4d3ff9f dsa_switch_resume EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc78e9a57 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc391e6b5 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb127f95 dsa_switch_shutdown EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbebe1e6 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdea8cb86 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeacd6fdf dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb0e5e47 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3793b66 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe4359c54 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xedd4d00c dsa_devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf1ef2f5b dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf3a07a4e dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf80555dc dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfb02e27e dsa_devlink_resource_occ_get_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfedcf0de dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0ff7eb1d ieee802154_beacon_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x19a50f00 nl802154_scan_event -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x21575175 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3c39f769 ieee802154_mac_cmd_pl_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5aded20e nl802154_beaconing_done -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x76463fa3 nl802154_scan_done -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x79abd423 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x848d1eef ieee802154_mac_cmd_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x27b43feb ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x62f0f0d3 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6423979f ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6dca933e ieee802154_mac_cmd_pl_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7127eb75 nl802154_scan_event EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xaf3dcbbc ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb513230f ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfb52faf6 nl802154_scan_started -EXPORT_SYMBOL_GPL net/ife/ife 0x3a7f53ef ife_encode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa958ca34 nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xab3926a1 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xaf9eb488 nl802154_scan_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb3710308 nl802154_scan_started +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcc668130 ieee802154_mac_cmd_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe0922376 ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ife/ife 0x2a89f6f1 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x57ec5389 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xa772d1ac ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x05007b1f esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7616a712 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x98bbd8b0 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x0220e60e gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x92f096c3 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x119b5bde inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x24ee3f89 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x612ac8cd inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x67f2fd18 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x68b05d83 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb4beeffc inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbe595515 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe8941ada inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xebe56743 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x9cea88b2 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x008f848b ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x04b49243 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0c316d64 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x247d3e75 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30018b09 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3c6a5951 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47d30e0c ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62e66037 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x75955d2d ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x75cf770e ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x937561dd ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x960d41fb ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xad16973b ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb41bc142 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbd3baaad ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0bb271e __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xda7d77fd ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe8080090 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xca8e4f1b ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x3d13f232 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9726068c nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x50223083 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4867890f nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x60e877d1 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x69efb792 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7b5395c8 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x945d9d05 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa5bfd7b7 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf86dfefc nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x8b935510 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1f2c8d8a nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2b4e154b nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x70fc95e9 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x254a51fc nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe2efda2b nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x321a7706 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa7a68c80 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbe8da320 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc9437326 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf5e5001e tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x505356bb setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6f79659e udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c53b229 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa7c3c64b udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc5469278 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xddfd7071 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xeafe8494 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf32d8aad udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x99ca26d8 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xab83c3cd esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe2b634d8 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3570074a ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x37fc02b0 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc8342501 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x61c04a1f udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf00ea702 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x9478f4fb ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x70749ef4 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xdbe2a833 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xe410023d nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xf682cb24 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x330a786d nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x622bf64f nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x870ee2b7 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb7605323 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc078f329 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdc06ca91 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe7fcca92 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x0cf4f479 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3487a797 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5dda5e86 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x668946f5 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x61087baa nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7362c536 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fea48d5 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2161aa5d l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x31f9d2a3 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4240f6b5 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x466c4de7 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49f0e011 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4c61356d l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4dca4a6e l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5679afce l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x63d3e061 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a21d5ef l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x70c69e04 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x781bb16d l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x781c6426 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a6bea06 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9c6f6ce4 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa917d820 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb321aec0 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb37d3eaa l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdd59a8a l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7dc95e0 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xa8ac64da l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0c92e435 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x17c92806 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa2f269b7 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x265cb277 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4253c1b0 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x28700828 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x493722dd inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5154f544 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5458fd6f inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbc6fa728 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc7dcc442 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe2934309 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf60b350f inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfc7c0160 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x5f19ca5f gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x112194bd ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63f7c5fc ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6689017d ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ad1b2b2 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84c8b1b9 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa138867f ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa3e94113 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4a6f005 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaac0fe1d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb68efe1d __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb6c662b0 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbafed1a2 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc934b276 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf465dd09 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf8af1565 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfdda3210 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xffff3f07 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x20fef0b6 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xcffd52ab ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x230f387c nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf46a9f96 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xdf2f2b7f nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x27cb2bf0 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x61ed8e62 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6b7f2a2c nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xac4bffd8 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xad28da33 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xced9d382 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd54f3ab7 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x5e53d696 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x03ee21e4 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0d846c4f nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x379c8d42 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x442519dc nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xfd3f7578 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x03916a6c tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x18b76333 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x34ac1f27 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5550eb50 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xca8ad8d0 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1f77e4cd udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1fe72ae4 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2659d5ca udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x70ebba95 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x86a0dfd9 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x97060bce udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc5ef1b38 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf8807a98 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xbf8474e8 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd1ad65ad esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xddb6637c esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x247d2392 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x81d08818 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb00c7f2b ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x14348644 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x424a40cf udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x473f148c ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x353dcc4d nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9895b4e1 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa8889ed1 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7dd417f5 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2a4a4193 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa75a3559 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb3254241 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb836b25e nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbb69f683 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbc19e898 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe512f7ee nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xd93477ff nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2ae4ef77 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x99158dfc nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xf6976699 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x8bb7796f nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xcceee16d nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x05c1b5d1 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0feecce9 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x154f2a9c l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1926a3a1 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ca6e9a9 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1f7d024b l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x247e9c30 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b462ef5 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x407dfc32 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x42596481 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5742c9de l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58fc991f l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x873a75a1 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96c0bd4d l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb2a08a8 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xce673a39 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd07e8d19 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7036857 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd904ee9b l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe38b044c l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfec9e34f l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xf6f05762 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x1a503ba5 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x48ff63de l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0091ba17 ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x041a054f ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0ab44130 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e9c9e04 ieee80211_remain_on_channel_expired EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1899009a ieee80211_color_change_finish EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x330e5a1c ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3423ab1d ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f6788c9 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45301ee9 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45b73432 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x47bf0694 ieee80211_set_active_links_async -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c66af7a ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x590f7ea9 ieee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x61315866 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6bbb6cd8 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x737ed4ab ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x78d964fe ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1eef4fdd ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x238a6a40 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x24e74596 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b1c295c ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x50869bcf ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x55270d86 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x63f3e859 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6a72b78c wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6e79458e ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6f18a8e9 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7bfa104c ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84537bea ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9583e9ed ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9605eb91 ieee80211_iterate_active_interfaces_mtx EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xac9d680e ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb9c7fd5b ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbe9f8aed ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc329f820 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc34765da ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc771a46 ieee80211_gtk_rekey_add EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda8cdf0c ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb59b7f7 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde786f78 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea22e342 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd10821be ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe13ddc74 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe92f30c2 ieee80211_obss_color_collision_notify EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec4a55a0 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf55c2acc ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1a2cbd22 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3e101863 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xef61d168 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xff546df2 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x285faaaa mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5d257338 mpls_dev_mtu EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc303a492 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeb060ae6 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf5ed335a mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09703f93 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09c9d867 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x13142845 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb4d43bc9 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbf9b6d7e mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xff2fc715 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x065ee4ba ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0e6b25c1 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x12b7428e ip_set_test EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a5e25c7 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x257e7ad0 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x257f681f ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x43665ab8 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4d7e97e7 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f67fc04 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5897b409 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f61fbb3 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6946921e ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3dfc996f ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x604943e2 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x687d7554 ip_set_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ea67547 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7a98c40a ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8062e1f9 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 0x833ba73a ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ab19eed ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x957c206f ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x95c8fd5d ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c3b2c7f ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90d4001f ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x925fee09 ip_set_put_flags 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 0xb2274266 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc948fec8 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7a41f65 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd6fce3d5 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe4268828 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5df0756 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe963e2b6 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xea6c90b6 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeeb686c8 ip_set_get_ip6_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf73c72de ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x29cd3b49 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x650435f4 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7e96c8d3 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc5bd33d3 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x215027b3 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5ac753c5 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd0fe0d0f nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5d97a518 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8029b7ce ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x847819d7 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb6c8c1dc ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x10682eaa nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x496ed11e nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x597c9201 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x886574da nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa73f50f7 nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xec417702 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xee05ab97 nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0192d3f1 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0394a05a __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x015af6cd nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0393f7ad nf_ct_helper_expectfn_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05315cf0 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08bbdcd9 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09bcd90e nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0936c5ae __nf_ct_change_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cbc587f nf_ct_skb_network_trim -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e86775f nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10d707f7 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15dced14 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18925a16 nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1937482b nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19f74f80 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ba0838a nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f414482 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26cbfb1d nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x126d519e __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f342560 nf_ct_acct_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30bf81c3 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32027f1f nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34a4eca3 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34d06ed7 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35945849 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d3a63b6 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x402a919d nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x462d041a nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48eb0da0 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bb6f3a7 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e39ae82 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f8ec0be nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60af2835 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6381328e __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67590d94 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68183b9c nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x685e48e7 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29f34094 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ccf540a nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2defdfa1 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31a4f6e4 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3355bfe6 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x340372f4 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x389938bb nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d413776 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f16c85c nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x43475889 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45004600 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47020920 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47fd0c89 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x492130bf nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d236de8 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ef6275e __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x511ff142 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x546e0210 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62c9435b nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63d16cba nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65307a66 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65feb97c nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x668c933f nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ccb3fa0 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f125bf4 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x703d408f nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a4aacc4 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x741773b2 nf_conntrack_unregister_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x776fe7f4 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78de898d nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7939e97e nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b4b72f4 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dd41314 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f54c726 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x806f053d nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83bc6fcb nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84022aa3 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8652799a nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8891f8ca nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x757108bb nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x772da1a3 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77d3488a __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ad5a979 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d62f632 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f1bb382 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81a53e79 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86fc020c nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8983fd69 nf_ct_handle_fragments EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x930e0e38 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x968f1432 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x955bbe4d nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97986fd7 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99486574 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x998cf804 nf_ct_helper_expectfn_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bdbf924 nf_ct_handle_fragments -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c7b16b0 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cac525c nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e7b2732 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa02d89e4 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa090309c nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa24be8ef nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2cc5991 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2ef4076 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa431203e nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4e08281 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa80d2cc0 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa82d416e nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa244896 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaea01b6 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac1c3ecb nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b612f2d nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d68a9a0 nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9dc3dde7 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0def2f5 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa18373f9 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1a5ae06 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1a65c0a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa32e39d7 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3d343d1 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xace75935 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacf87982 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae481f69 nf_ct_expect_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0fd4762 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb36ae6da nf_ct_set_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4617034 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbdb5a68 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfec12d7 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0565e45 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6bb44db nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6fd39fc nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7c89581 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7dadee4 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf7155f1 nf_ct_l4proto_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2fb6e8d nf_ct_ecache_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc893419e nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd080d3a9 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc48eda9f nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4aa2f73 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc696ae37 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6edb03a nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc89f2186 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca5f860e nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcad47b11 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0e227fa nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1957030 nf_ct_kill_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdabb8ffe nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8406d75 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd905e576 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdae942ae nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd539883 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe01a0c85 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4210f41 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe43c5373 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe89e079b nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9cd0e10 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea77601c nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbb80392 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcb4d646 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1dbefbb nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9386948 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb5dd0d2 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb7f2980 nf_ct_change_status_common EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef7c9dde nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0f2cbdf __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef4b7f7b nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1b6adb6 __nf_conntrack_helper_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf502d303 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf647b618 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf74476d9 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd349724 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x51b5e8a1 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xbfcd8331 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xf6969296 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x96528687 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0cab773 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc3dc0664 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0f92d76e nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0706cf76 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4cede4d0 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5f48e2c9 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa0bcce2a ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe0bce21a ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe20b7f1b ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfef2f656 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb7731201 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1855e857 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7215ce60 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x75d721f5 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa6e7e4af nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0e214daf flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0f34bb53 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x466fd331 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4dacebf3 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x53973abf flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x582fbb12 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x596ac96a flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5e98b89c nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x75616275 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x90db17d9 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa3769c99 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb3543ed6 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb8891a0c flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbe99d3bd nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc8a4b8df nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcf9119f7 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xecbe97f8 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x011a81ec nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x192c191b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf53dcc18 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5667eb7 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfed52d27 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x74c73d0c nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6477a393 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xe6b0aa6d nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x640ec7ae get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f2485f1 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x68beb364 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf34e0cc1 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x05487d66 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x46317852 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9019455c ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc1d7d11d nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdff97f98 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf4b30dd1 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf87952d6 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xf6a9bbab nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xcd55a152 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x20f62182 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4eeed8fc nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb8ae7ab7 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x05bb7ab4 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0a1fc2fa nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x22318a7c nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x330b582d flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3e71b25b flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x44297989 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x559426c0 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x636177de flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x83bdb228 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8c96f597 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb68a42ee flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb9e3804b nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc7d65cf0 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd2de6811 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xda856b8d nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeb1e3e6d nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf77e45eb flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0d41ae0d nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x238dd801 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x28180b5e nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2aa0745c nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x36442a23 nf_nat_alloc_null_binding EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4acf8a6a nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x618df05b nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x711be9e8 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x74efe02c nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x75c11925 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x852c14ed nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x86a9c7e9 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x89338021 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9721ce57 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xab07e19a nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf8623e2 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd0331611 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd21c9b87 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3778524 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4f602d6f nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58762f8f nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x62f4ac06 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7353d9f6 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x78b847d2 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7955e05e nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa35259f7 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb824687e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd2146702 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd65baf1f nf_ct_nat EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe3698efd nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb565ba1 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0c78018a nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdc982733 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe8defa02 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfbd1b21d nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0210c4d8 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0ec39694 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1a53b05a synproxy_recv_client_ack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4dc2ee3b synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7b26e47c nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x990a921f nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9ab65e10 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9e21a075 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb95e26d1 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4d9f89e6 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x58a955c5 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xab0734ae synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaee3f60e synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb6843386 nf_synproxy_ipv4_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd2f4b978 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xddf912fe ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xee5477e9 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf67aed49 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00508e27 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04047fa5 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x051267c3 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07caa985 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcc4a79dd synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdd8b57cc ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf90b7eb8 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x090703f8 nft_meta_set_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a3b6d95 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1549fe2f nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e0c944d nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e5bc849 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20ef9a4a nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2467919e nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x27edbbb8 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x300be6df nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x157bc761 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ba6cf97 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1dcba979 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2065276f nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25d5ba3d nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x263f8427 nft_data_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35c0c146 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36aadcd9 nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x390361b9 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34ecb616 nf_tables_deactivate_flowtable EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3acacbd6 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b5b9ac0 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e8b919c nft_register_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42f673a3 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x473c76a0 nft_obj_notify EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x597b7306 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f671526 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f72654e nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60c829bb nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x646e434f nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6524c3ee nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67b61a6c nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71d146ca nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7395fdcd nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8543fed1 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x897d907c nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97889c4b nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c845a80 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ef5d4eb nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa226d6bb nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbbbed866 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe1d2c15 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc032753f nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc17c1152 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda7751dc nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d202932 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c159642 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e3c0a1c __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66190bfe nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a64ef9a nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x73c4cc24 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80af13d4 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95a803d5 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9d06eb00 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f3795e4 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0ccf325 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1d48971 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba1c1a12 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb45d71d nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc27740d nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf784753 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfc4cf4e nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc603e15d nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce63494b nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0caada1 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda932f30 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdbb43373 nft_obj_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe00ad8ce nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe228ff16 nft_unregister_flowtable_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe75abc4e nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeace1aec nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3eb3cc2 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe55d5796 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7363428 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb124d56 nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed84fe5b nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0747b51 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf531420b __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3c0faff9 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xefda213f nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf134e192 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf3ad7314 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfcde78c0 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0ffa0a84 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x386f5826 nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb0d8272c nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcd4b0b46 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd1f8cbec nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd5e41729 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7a3199ae nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x95fd0b35 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb077383c nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc415efd8 nfnetlink_has_listeners EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xef1f96c2 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf8d938d0 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5ab4cc19 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x736f6393 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf01f01bd nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xaba46ea2 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe041260f nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc291da4d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xca76470a nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2f9291f6 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9d6a39a1 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xfe8a0a62 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x22bbd17b nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x54834947 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9b94db7b nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbd310261 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfa76c98a nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe06abd0a nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0ed33b81 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x31a1d8d2 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x826b5d86 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd4745714 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf9135e53 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x08480b43 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3c6c4261 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x433607cb nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5e9aa2bd nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7e68230c nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf5b57362 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1212f0ab xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x125d2755 xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x15a4b0a5 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2662227c xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3060da1e xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3acfafca xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c883e47 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3eccf39a xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x53d16408 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5590173a xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6843c10c xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6ce2f888 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7653b15f xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c23e049 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1fbbc36b xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2128df22 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28f821ed xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39606a05 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x42619040 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5d54b476 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e1fdbd6 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7015867e xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x845ff17b xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x834655a9 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c735c18 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e64c50c xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x94cf0b74 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x976c915a xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99b77860 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c04d7a5 xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9efa9e1d xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5d7be45 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6f5bf1c xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb1ea6c02 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb6583373 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc357945f xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce10941a xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce2de194 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd2111f35 xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd49cafd1 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdf689023 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf13f58fa xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf23df459 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe6cb8bb2 xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb3290d6 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc8390bb xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x0f4cc232 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4d2f0116 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x270ce535 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x85882c42 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa12b276a nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x09c04997 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x17dfe767 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe99542aa nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0x44ee4764 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x980a9b54 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1f6110ff ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x434950c5 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7da9e5ad ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x95207b7a ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9fb1b645 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe584153c ovs_netdev_link -EXPORT_SYMBOL_GPL net/psample/psample 0x45423090 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x68659fd2 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x69bd0847 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xaea51773 psample_group_take -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x1d2ca839 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5999dd5f qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7b3fcba9 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1c91680f xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4e4e1987 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1b166492 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x3150de01 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8a92e72e nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb2cf7ce6 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb7a4bc9b nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd77957df nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x017e2503 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x9ac8fff2 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x06ac48f6 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x91b8cf00 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9fe2dc66 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbfce4788 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd216843b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd9810fae ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x475bfaee psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x584609b9 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x6ebd7f04 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xda87d687 psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x228df99b qrtr_endpoint_register EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x9bd96712 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfc94d999 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x120e3b75 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x171b67c9 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x1a08a42a rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x051b0753 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x0d776b5a rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x0f1d9743 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x11b244c2 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x17d10ca2 rds_message_addref EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x26c39c8c rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x323972cf rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x34736a5b rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x2f68850a rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x2facb4af rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2fee0c1a rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x31adcfbf rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x31fbd53c rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x335af5f8 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x3567284d rds_conn_create EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x36470f19 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0x38a9085d rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x436e4e2a rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3c865f48 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x41be03c3 rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x53dbbead rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x48920647 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x4cb76216 rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x620db5dd rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x6a58e5d3 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x6c449395 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x70167e2a rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x7c375231 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x5c886347 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x6125a272 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x717e1fc0 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x7370d6a2 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x74eab205 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x7cc75c7c rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x917a9962 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x92231fa8 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x990e4fec rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x873e07e7 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x95fd3638 rds_send_path_reset EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xa39264d6 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb289f044 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xb66fc742 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xbfd2776d rds_for_each_conn_info EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc77dfc60 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xc811afb9 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xe1006704 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xe5372292 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xec9e1cc4 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xfa98d7c6 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xfc96493f rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xffa01e4e rds_inc_path_init -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x4b6f9474 mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/rds/rds 0xdb6f91bb rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xfac3be6c rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x06517f60 mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x285df2fe mqprio_qopt_reconstruct EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xd27b12ed mqprio_qopt_reconstruct -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x4ae5788d pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x90c8f7bb pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x8b187d7e pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa83de7f7 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x16f8ba5d taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x6a6b1c12 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x437c3c03 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x661e0fc1 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x96abf02a sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x972997ab sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x9cf6835d smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xc9248402 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xd31a4124 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xde64e231 smc_hash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x229fc1d0 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1ece1de9 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2b6b73a9 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x83996b63 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd06b1b70 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x7d2b9d80 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xd194d799 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xd40eadf3 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xd7de722e smc_unhash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x01a804b7 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2db89b67 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8097c7c3 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa9bda92f gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc7dde383 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xafc95ee5 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc2d98a02 svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x011d1cc4 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0276c05c rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x034d6b01 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x052dde1e xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x052dfdff rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05ae66e1 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00578b34 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x011c1a61 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x015308ec xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d720b9 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f1bbd0 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02066a5b xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a6dfff _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07dd5c86 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0892d8cf rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x099042a2 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09d41295 xdr_stream_decode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09ec4f5e rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a24e623 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cbceadc xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cc92bda xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d855b67 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e714753 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e996ce4 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f008a93 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10356009 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b44424 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1885adbc svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18eede29 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1920a5b7 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19563f2e xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19e1482b xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac1f62c xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b134095 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b9a416c rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db7a911 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06c3511e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06c46707 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d201307 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e3420eb svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x109ca775 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10e27882 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d23104 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e5bb60 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12ff8b2f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x188dcf22 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19962534 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b09f883 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b372665 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bce1c7c rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d9eb44f svc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2b619e rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2037bf89 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21532b78 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22f8b1f3 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25314b88 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26c1ad2d svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26ddf713 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2712401b xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x281f4aeb cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29107b29 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20cff7fc rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20ec5705 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x237be01d xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2826997d svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2930c6f2 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29446784 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c20dcc8 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f07005f cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f346b8d xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f497bf6 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30b178b6 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b4af1ee unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb9cefb sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cbbee0c xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d11780a xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8b927c rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fb2998e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3041b298 rpc_add_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31d7944c rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34778762 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32249ae1 xdr_terminate_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x355e334b svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x376a2c1b cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37516696 xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387eb340 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395aea0f auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39c8ea4e rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bcdf21e svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3beead71 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c45750c rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed8d6fd rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38aaa98d xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c590e1f xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d70902d rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ea90e8c xdr_init_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff19869 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40071c83 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x403b83ba svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d1227d rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4111a779 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f6937f svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47510235 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ab721d xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ae0a355 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x402d63e5 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40a20e65 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40c72211 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4186707e svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41dd71e2 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42906514 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d68760 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x449cad7f cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e07dbd svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46b35692 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x474a24ca cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x475d3772 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47a4cf71 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x480a3000 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48461967 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48814730 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48c619ab rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a1e984 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a79f58 svcauth_unix_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cd3eb46 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf81d1b xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c8faed9 xdr_buf_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f4e9a4e xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5024df74 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5048efc4 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5055102c sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5060ffc6 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51d0776b xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f09850d svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x518dfba6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5304b58a sunrpc_destroy_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53c2bcf9 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53dd9a6c xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53ea900c xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x546a8916 xprt_setup_backchannel EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5684b006 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56f3e431 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57aa1b17 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x598934ac xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f79c8f rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x563620c0 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5737637f rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591c240c xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59785c1f svc_proc_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b29a054 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c058747 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cb35643 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3be790 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f720618 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f8ddea7 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5730d9 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ad285d0 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b16d66b rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b2d17e2 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e05e73e rpc_count_iostats_metrics EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60ffc896 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62072a36 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624696d9 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66366af1 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x618051d6 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a30df2 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65a433af svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65c4445e xprt_unregister_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e64355 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69789504 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5b74d5 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b31501a rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b771863 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc8324a xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c006880 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6db0397c rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd0f55d xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff1865b rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70c5c2f7 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x690e9a82 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bfa353b svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d8f8a5c rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7037a1bc rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71019b53 rpc_clnt_swap_activate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa332f xdr_encode_word EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7336003f rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f19366 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74026191 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74589f0d rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7624b668 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7723c829 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7748e7b7 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77804d0b sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x781344a0 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79747456 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79a059fe rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a2c213a rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4a547e cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72235617 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e5ad91 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7450973e bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x746842eb xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75fdd661 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x768c930e svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d56fe4 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x772c3c3e rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x772e9eed svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x778d3446 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77920d9e rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77956924 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77a9648c rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x780372ce xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78bacfa0 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aede0bd rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b98ff94 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7be3e2f9 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c07d2bd xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc52485 rpc_destroy_pipe_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8149265e _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81809638 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81f46c7c rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8211d08e rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d80a3b xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84c96914 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x854940eb xdr_stream_encode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85b11375 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87aedcdc svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89045ec9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89efec98 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ada3c3a write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cd5f3ef xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d810843 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e729568 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9153602a xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93aed94c xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94404dff rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e03f2b5 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e52ab45 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fb96375 xdr_stream_decode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ff97730 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8077498f rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82fc1746 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8360f9d5 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x841aed0a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x853c716a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85a18222 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85d59942 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86c80855 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x870d69f5 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87749231 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x877c4435 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x881137a9 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x884d4816 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8882cab3 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af4a8d3 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b1c2253 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b1d18e6 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c324252 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa6f7d1 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fc57649 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x915863e0 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91714556 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91a3c875 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c307eb cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9371f1a7 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9384f543 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93b21e9f svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d9346e rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942c9916 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x954b9c0b rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95c77441 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96ae9526 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987c22cb xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97348d64 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9762f195 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x979a8fce rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x986f1d2e xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a4f6f12 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a502042 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a96031d sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b291208 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9db3dae2 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa09dcd0e svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13641cb rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b1d113 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa27917a9 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa389e7a1 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4496dc0 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa63a298f xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6cae919 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7de8f53 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7ff3e3e svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa965cda4 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac0fd6c6 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac21662e rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca3c822 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacbbf113 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7a43b3 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a0c0a90 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b52c3d9 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa09b7426 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1692858 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa200da20 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa278ede8 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2e7e359 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d54b3e sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6c30b1b xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa70d904b rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7328466 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa916da3 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab5d9443 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb70907 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad247e7a xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae90e037 rpc_shutdown_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0299fbe rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13fd47a svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb286fc9b rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ee59a9 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb34e204d xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb511825c svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0842601 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb08d9e9f sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb10cc5ea svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4d04d17 xdr_stream_decode_string_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51f46a7 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5809d2e rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6d1fe24 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ffe964 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb84fa81b svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb940d551 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9455c81 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3a035e xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb857b22 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcfb2456 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcfd25fe rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb684b0bc svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5aba6f rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeafcd1b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeb659ee rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf1b64cc sunrpc_cache_update EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc04024d4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfb55f7a rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc01e8cbc svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0474b20 rpc_call_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc200e9f8 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc26f25ec xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc33ff7cd xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc38e7eb0 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4a49ffe svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6b3f032 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6d752d7 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc74135b3 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ceaca4 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2f4a561 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3138507 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc387b055 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc407d024 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b76783 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7675b1a cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8679efd svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9540aa7 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcad0e0ff xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb39a7e4 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc3da083 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc917e5b rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd1c9a3a svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd3b40b5 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca19907b rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca412d30 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaaa8396 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaee5c54 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaf7d8b6 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb79a6e9 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbdd6b8d svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbe2e8ed cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd6f8675 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdd2fbed rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce18ed6f rpc_sleep_on_priority_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xced6be33 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf84a087 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfd03a59 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd02285d8 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0fd92f1 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15183b2 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd36ee0c1 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd52671dc rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7e91e7d xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd80bd810 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8833dd6 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9c688a1 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda6af2c4 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0cdc4c xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc4205e6 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc9196bc rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd4a8171 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xced0846f rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfc88478 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd02eecde auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0af4815 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c43a1f xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3f607f9 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4000aa7 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd718cf9f xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbed2aed rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbf67c80 xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdce1f736 xdr_set_pagelen EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd7ae2b7 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde6af2ac xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0d0e0c9 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a92893 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f82192 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe43fc7e2 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf232acf cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1be69ee svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe254ae0d cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe464bc04 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4a83be0 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52b7956 svc_age_temp_xprts_now EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe680a909 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6883182 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe69a083b svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe752269f rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7dd1a09 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d118ac unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe60dcaac xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe67e83e5 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6881a71 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe842d767 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e62f94 rpc_clone_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed728717 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebd354b5 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecda8fa7 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecdcba38 rpc_remove_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xede48ebb xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee273b89 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8139f5 xdr_stream_decode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef914491 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefaa59b1 xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08e0578 xprt_wait_for_reply_request_def EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0fe2eb9 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b79992 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2bad739 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf384e413 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c9c127 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf60984fb rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7436f78 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1ce1c80 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2a2b0e0 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2df5c16 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf42ba375 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf583c48b xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59f0a91 xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c866ca rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8d06254 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8ec556b cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9a5e92d svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa5b1b7 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb55f6b2 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc115726 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc355997 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc50a618 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc51f868 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd78aed4 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/tls/tls 0x60549ee1 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x67d9f33f tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x772cb71f tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xb1b28219 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9e81c40 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb507c60 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc205295 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd10378e svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd14ed53 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff372697 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff464029 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff946196 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/tls/tls 0x828d470c tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x88b5a290 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x9c45f3c4 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xd1e885fa tls_validate_xmit_skb EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16d38357 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x176c5e2a virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17ea90c2 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1926804e virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2413c59f virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24a30dda virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25c0b754 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32c8a785 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cdf8397 virtio_transport_purge_skbs -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3d8f3b8d virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x416ee746 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x508aa7a9 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5deba3f1 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f7e7767 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x629b3b52 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d9bb8a7 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e98cc51 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x816c4774 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8fc826a7 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2e245fb virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xacdc6d0f virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xae949748 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb149a549 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x095e9ee7 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e6bcb25 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15954266 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20848a97 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25558335 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x274576a9 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27e5a742 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3340057b virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34c1bbc8 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x38e0657d virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e626c59 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43490d3c virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x493cf8e2 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5f06530e virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62d59c09 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x65efb793 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77493fbf virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78aac889 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a068631 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a555aba virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8b13b802 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8e745a8e virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x955b70fb virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95a7cf45 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cf6af65 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3da59ab virtio_transport_seqpacket_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc18c962c virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc294f154 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcdb134a7 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd05bde96 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd15d5d5d virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde15d483 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe309e513 virtio_transport_read_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe73aa15d virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xede293ab virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf00b3b9f virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf4da0896 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf4dccd79 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x056269c7 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc742df7a virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc076d41 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd8f75148 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdccc5676 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe34fc0da virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4a7ea1f virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf053e661 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf324b9c5 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf3f01824 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c22861e vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c59ab52 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x251a9e78 vsock_dgram_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1b439ab6 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e6a2f1d vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x251535f3 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x334ac6a5 vsock_connectible_recvmsg -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3955f32f vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x29c20a35 vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x324442f8 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x34502f33 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3881f6cb vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x393e401c vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40daf943 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44899ccc vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40e8b32f vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42bff99f vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x450e8b59 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x538e00ce vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67fecb92 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71110e74 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8033379a vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x873d2785 vsock_connectible_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8aa264d6 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6204274c vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69d9ab2c vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d345d7d vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79f16f87 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x81614acc vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9341502a vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99528599 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x92cce12c vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x94340634 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f5bae44 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa1bd9fa8 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa47894d3 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9d99ba40 vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc70b3bd6 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd624b33 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcfc36671 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2736e52 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe9902e52 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2232552 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe69521e4 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfa00b21b vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfc0e34d6 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0183c1fa wiphy_delayed_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d927b19 wiphy_delayed_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1780d55e cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x18bb5296 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x27fd0a62 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2decb814 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x45f5c3bf wiphy_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x55c5ccb9 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x630c61c8 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x641509a7 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67463caa cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x80eb7bfe cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9c1fd7c1 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa022129a cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4f6a3ae cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcd95e5d1 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdf7a2576 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe61cdde5 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed4651c7 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf005b396 wiphy_work_cancel +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf18a7bf9 vsock_dgram_recvmsg +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x01c130f5 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x36e51de3 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4ad18bbc cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x58494631 wiphy_delayed_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x71f5a734 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x75242805 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7c8e84f7 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x87ed7a28 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8c4c74af cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x913046b7 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96d7d34f cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbb3590d5 wiphy_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbc765fed cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbde9694e cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4c97bcc cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc66e80bf wiphy_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda910d6a cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdff27010 wiphy_delayed_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfb4009c0 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xffed5744 cfg80211_wext_siwfrag EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -19683,758 +19703,758 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2f737256 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa5ae331c ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb80debaa ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xecbb3906 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0bd8b9aa ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6717b1f7 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6b740d43 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x97aad329 ipcomp_destroy EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x7cb82401 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x70ab7037 snd_seq_kernel_client_get +EXPORT_SYMBOL_GPL sound/ac97_bus 0x5848eafd snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x41840831 snd_seq_kernel_client_get EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xcbf9166f snd_seq_system_broadcast +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe412cff0 snd_seq_kernel_client_put EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf0c8f9fa snd_seq_expand_var_event_at -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf7f127be snd_seq_kernel_client_put -EXPORT_SYMBOL_GPL sound/core/snd 0x23eac65a snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x2978b371 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x47de719a snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x525dc748 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0x59c2eb97 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x140ba9d1 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x3e702d6a snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x42a8f311 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x47285ae5 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x4efb88d4 snd_device_initialize EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x6d5940c3 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x6d6b5f4a snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x8177eb7d snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x8af521d7 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x94187817 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xae4e139c snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xaf4481c8 snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0xbb614d0b snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0xd5eac405 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xdffb1e78 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xeaced188 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xf0133596 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x64ce0718 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x7088b7f9 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x77e8e5e6 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x8286d28c snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x841cf598 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x8b843521 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x93cfeaea snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x957c1ee5 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x95a5de01 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x96494b2e snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xbb739792 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xcac6c4be snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf3176957 snd_card_free_on_error EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xfb765984 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5efbacfd snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xe2f5e4a7 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x03701c3a _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x49498e7a snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x78adde2a snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x07d49686 snd_devm_alloc_dir_pages EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x159d1e05 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x19280f64 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2e3f9498 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x265fb06c snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4296a99c snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x481e1a25 snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6180351b snd_pcm_stream_lock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x667c7129 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x84d9e7a0 snd_dma_buffer_sync -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x862b6e5b snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8886bb8e snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x67fcc880 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x68b1c490 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6a2c436b snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x80dce11e snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8af34291 _snd_pcm_stream_lock_irqsave_nested EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x92551cc9 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9db3d45c snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe9bf7d59 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf31e5a52 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1172bba1 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x13304383 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2f9bb2ed snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x31f1fb0a snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x56421b93 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x65df36a3 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x72432d9d snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa3bae2e1 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa5e0f24c snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb40ff250 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe148cfd0 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf14e2d88 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xb973345b snd_rawmidi_free -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xe592b395 snd_rawmidi_init -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe7c7e43f snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf7d70dbf __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x07ff71fb snd_ump_receive_ump_val -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x3b7a44a3 snd_ump_receive +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc28079e3 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc365b7c8 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc55878cb _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcf2d5765 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd429f637 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf12e64df snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x24f435ea snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x347d6b48 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5e178db1 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x67341a86 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6dc73cba snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7a04e5a3 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x863919de snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x98c14c45 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa75c47f9 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd8b11d33 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xead47fab snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xff206b5f snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x1d85c5bf snd_rawmidi_free +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x74e1e1d9 snd_rawmidi_init +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x49fb49cf __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xb50ef7c0 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x3d07c4bc snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x57c0dec6 snd_ump_endpoint_new EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5b39d06f snd_ump_convert_from_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5f70f941 snd_ump_switch_protocol -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x958dc0ee snd_ump_attach_legacy_rawmidi -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x964e9f7c snd_ump_transmit -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xcbbc4cc8 snd_ump_block_new -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe22d09cb snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x6bb3139c snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x7fb7eda3 snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xc6ed1c98 snd_ump_receive_ump_val +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd06ef9c5 snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd74600d1 snd_ump_parse_endpoint EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe9496e75 snd_ump_endpoint_new -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x18b823c4 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1c96e836 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2961acab amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5e979349 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x971c29a1 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9c950e76 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd3012031 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd4f90fab amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdc7e9132 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xee64ae48 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf0558a9f amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf25bba66 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfdf370e5 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0cdcee9e snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0fbae402 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x12e71bfd snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x259413b8 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27bbb4b0 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x336fb422 snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x372d0a3f snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x399ce5d8 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43ce5738 snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x44e3e254 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4cbebfa6 snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5c81a54d snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5e340c18 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6ff62a61 snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x78fee599 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a89d7f2 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x801b9141 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9813e7ed snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb59bb4e3 snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xba3c508e snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbd55051b snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xda0a1a42 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xddca2665 snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf04bea5 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xee428639 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf2d7f8d2 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf3937adb snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf71fc6e0 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf81dde8a snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf843c652 snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfaa3e76c snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04348df3 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xfde76013 snd_ump_receive +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x096f1c8d amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x12c33b9f amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1c4af25a amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x52e0e74d amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x59e1e856 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6bb08f7c amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa5dfb0f3 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb64263cd amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xba9081aa amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbcf90fa4 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc7612917 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd7ca2ff1 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf80841c4 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1e782a5d snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2292ddab snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24c11d74 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2ad7bcd9 snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3111877e snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3163bd0c snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43564cc9 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4a04800e snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4bbe2753 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4d7c1e42 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x558d9c73 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6713f097 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x69a629de snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x76246b7a snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x868dc38b snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ef79f50 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8fba3298 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f6b2a06 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa8248c81 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa8f08107 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbafd5caf snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc8d67b2f snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xce175620 snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd9e35703 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xda9776c7 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xddbde0e2 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe322d1cd snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe4da4fe9 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xef18a11a snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf31e1d4e snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf7e47716 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x000a20c7 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x014d8830 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01f4944b snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0518a076 snd_hdac_regmap_write_raw EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0893084f snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b71183d snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cb8a7ef snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ed26a1e snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fa031a1 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fa69bb0 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fbebd8b snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x120ec6f2 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14322212 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x147a25ee snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x072c0949 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a866158 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0de26518 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1349197d snd_hdac_regmap_update_raw EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x163bdc34 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1643acbc snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22c5e709 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22c67af3 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x291eaa18 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34749a08 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38e17f4f snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a07f18e snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b4ec5a8 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c049a5f snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21334069 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2242d8ff snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x292c3209 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ba93fc9 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cda9a75 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f3ce469 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32914277 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3336b6a8 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34802ced snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34d88b43 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3946aad3 snd_hdac_set_codec_wakeup EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e8170a8 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e99b093 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f4aebfb snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40f09ce4 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4202b1f1 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x436f27ca snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4557168c snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46d71046 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x478e4581 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x492a5bc6 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c5f2ee9 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d4e80f9 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d5a52f3 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f287be2 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3faca2eb snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44397883 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x465f561e hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x498029f4 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c2fde03 snd_hdac_stream_stop EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cf0c69d snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50373bd5 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50a9eaf5 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x538e9055 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x550178e5 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x558c38f8 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5644ad9a snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x583a016e snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d27f49c snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5033206f snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x560a7d46 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x572160da snd_hdac_bus_parse_capabilities EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65a7a6d9 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x676b2a81 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x679ae09d snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62ae95b3 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6473f022 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64ca4e78 snd_hdac_stream_sync EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d42aa9d snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75cf8dc3 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75f19a61 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a5653e3 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b9a5e03 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6eef28ea snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x741a4ca8 snd_hdac_get_connections EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bb02674 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bc48374 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f70c9cd snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85134702 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x853999a1 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x854dbbe2 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x875ff447 snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87bb9030 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b8a894f snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bb83661 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c702d46 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ddc5dd5 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f272215 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x922c3cdc snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98f89fca snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x995ce803 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7804a0da snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ee7f97d snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f10c92b snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84e5b460 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8908b88d snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c6a6d78 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e6d1b99 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f254a52 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x933569b4 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x951248e5 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x956bbf9d snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95b35db0 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a0e6904 snd_hdac_device_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa100d971 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa417b251 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6dd2f71 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa87b2754 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad847000 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xada66a05 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae699d22 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3846d16 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3d1830e snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb45aaee2 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb547151d snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbad9d087 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb6fe360 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc68b840 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe75bb9d snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e330b62 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e679104 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9eea50c2 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1b7596c snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3ef4458 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa48cea01 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4d73252 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabfb0db3 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2ba8101 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb33860cf snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4d3cdb6 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb3bcf6a snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbd0ecb3 snd_hdac_stream_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3862d90 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7ce12c5 snd_hdac_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce3b83ee snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf70e874 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd205a0d1 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd40c1d13 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd56688c8 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf96356a _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0771ae6 snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1ab7c66 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2e682a9 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc445e65b snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc56af740 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6d751ad snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc99f5bfb _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb277bf6 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc2692de snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc5fd065 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccf3e0dc snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd0b7f2b snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xceaeb251 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfe90881 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcffd3195 snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd35a1e22 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7f09919 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9864ff8 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc0964d9 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe03699c1 snd_hdac_bus_init_cmd_io EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe556bfb2 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe64d025c snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe917a0d1 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedadaaea snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee66f49f snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf03ebe30 snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6666953 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff630c8a snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8997ba8 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecb8a016 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0825e95 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf216598f snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf235334f snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf33393ab snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf959a0bc snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x3bad5539 snd_intel_dsp_driver_probe EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x787afc1b snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x993a6a78 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xe5a40dde intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xe6072c63 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1ce264e8 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2e96a9a7 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x41ac1a79 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4644878f snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6699ed6d snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xfe362cc8 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00594a60 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04de6779 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0539e9d4 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8bfa0a4d snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xbff42cc3 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd1d8f7b8 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0cd53fe0 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x78baeb6c snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8abb3ff8 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb4bb399f snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcdf67fbc snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd218b697 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00ca30a4 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x023588a1 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x041975c0 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x044a57c6 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 0x07fc1693 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08aeff47 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09d69b6d snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b80230f snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bbb3523 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c98abfb snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e4999ac __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e790436 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fc104b6 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fd8cc7a snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10c31695 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11297209 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11ac6d06 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12d284b3 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1465acf1 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14814f81 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x149f6f8d snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x162598c6 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ac7782b snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1afbb528 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c7a3e60 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fa87451 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20acd2b0 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21d2275c snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22231fb0 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x224675cc snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x261d4e4d azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2935e814 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x324191e6 snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32edd0b7 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3582965e snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36533835 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37522b73 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08291170 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aa37d2c snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bcd2b17 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cabd5d2 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1074ba80 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x127e4f4b snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12d93f92 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1be47bff snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d969bea snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1dd08214 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1face63c snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25260a09 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32d32d2e query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3337a154 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33ad2996 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x367c55c0 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36be0d10 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37b0269b _snd_hda_set_pin_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x396b1c35 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39c49e97 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d1830cd snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x417f95f6 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42a1f25f snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4380127a snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45c3bd1f snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48898ece snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49f305b2 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b32ac5a snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c1db99b azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c36b0a1 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cc59db8 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4edab5ed snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ef9515b snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f4f6724 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52d97497 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x533162c6 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x567a1ee5 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x599d8eda snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61ff4957 snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62a329c1 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62fa02ef snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65c6cbd5 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x683934eb snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a4b9354 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c733dae snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cef43ef snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d166b90 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e463881 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e470852 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f7d623e snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fc58317 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71d1ce79 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75ea1280 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76673f64 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77c0c273 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x788b91b2 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x797ae4b2 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c6f8d18 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d25419f snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f87fb49 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88449eb3 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89172ff0 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9137e044 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b267013 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b66adde snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fcb7f75 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7e0dc46 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabaf8b92 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac03ab5a snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad73b2cd snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae247486 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafb558e1 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0fd0b18 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb38bacf6 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb84c6844 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb863f764 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc04679d4 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e75667 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5d296c5 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6801edd __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd4e4312 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce645259 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd118a8a3 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2712d80 snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd28c99df hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd29406c7 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd43c605c snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd48e2e80 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5bc1709 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbcca2d4 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd398b4a snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x412ea7bf snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4620826e azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a052d61 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a400609 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd4621e snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cd1c1e6 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d6a5364 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dce44f4 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f82ba7a snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x504e525a snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x518b1415 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5272217a snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53974577 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53b194b9 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5536d524 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x570a4408 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eb62f8b snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f8394d4 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ff4c55d snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6258cc72 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63f2c10c snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67191e56 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x673190ad snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69024336 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d3c2743 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e4c1313 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ee6b0db snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70b6bbf1 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71f24c66 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7307d96d snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0e88b1 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b6f26b4 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e31ea0c azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85550704 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87bb57c7 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87f71042 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88e8fbec snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a41060c snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a73ffd5 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c0012f0 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e0fdd35 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f3de059 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x910742ba snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9458830e snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96b46e31 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97c88576 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97fcaea9 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x984ab207 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x994a521a snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9973f086 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x997dbc85 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a64be67 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b8b6388 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d04ec2f snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d29d9ae snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d4dc832 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d798f8f snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e986f5f snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa35c1cba snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa35e2477 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa42b29b0 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa92c4c47 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa95ff4c8 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9bcfb5d snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9d20ada snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabaa6d0f snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabefdd1e snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad8474d2 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae2ac2ed snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb18f2713 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb24eb1b9 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2d1c446 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb66986ea snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7ca0b7e azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba85a41a snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd8752c0 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7b2e1a snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfd99e1f snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfed7422 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0876040 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1bb96cd snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5705efb azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc75f4a55 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7c83655 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc98dbe9b snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcafd3ee2 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc23e124 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd03f0099 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd32f3a7f __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4b4bcc9 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd58b6146 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd84c5c38 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9629470 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdac91a3a azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd2ab274 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf511c86 snd_hda_codec_amp_update EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2a013c9 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3a20630 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe447b16b snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea86b1db query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb4f6973 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe32b8fcb snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3c9ba1b snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6699bea snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb2d1b55 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebbc22c3 snd_hda_create_spdif_share_sw EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee726a8d snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf02a6afa snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1226b03 snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1307986 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf18959ed snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5d3e1e7 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf69fca7e snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6f371af snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1483806 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2964c47 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2cc495d snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3fd61fa snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf47792d8 is_jack_detectable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9e6c5ed snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbedde36 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc393560 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc8a2c16 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcf64502 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd73cf10 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd9a46b2 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x04ef02de snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x118dfb78 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1306fe12 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e96baee snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3451916b snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4919e438 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x493659a3 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6625597c snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6969978c snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c1f0600 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x72bef550 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf977b6b1 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x160d3265 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x37628b00 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3b646f0d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41ae001e snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x511b04e0 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5408a4a1 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x615f34ec snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x62a08191 snd_hda_gen_update_outputs 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 0x7866b16b snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8028ecc1 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8070b0e4 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7e740e48 snd_hda_gen_add_kctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b56069d snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0524258 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4899a06 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5f0b8e4 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd70da0da snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd86cc9b8 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfa82e0dd snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xc9244f7b mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x89444bb0 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b6f51ae snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa58242fc snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaadd2b9f snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb344b87d snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb4511502 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb760a033 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb5b4d99 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc0577092 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe2d57ea7 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf1883db9 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf45c9fe7 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x94584223 mt6359_accdet_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xe06bbc12 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x08e0b2da adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x91066aea adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x38825ae0 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x39d9d18c adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x433edfbd adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x43742a45 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4e052b95 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4ef42dd9 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7c6d37fe adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x974405d2 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc3ade7b0 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf2d982a1 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x615ec649 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x2353c10e aw88395_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x5120d557 aw88395_dev_stop -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x990c2189 aw88395_dev_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xa4cd599c aw88395_dev_fw_update -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xa506a6e5 aw88395_dev_get_prof_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xc82956cd aw88395_dev_mute -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xccc9e238 aw88395_dev_get_prof_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xdc486784 aw88395_dev_set_volume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xddbe24e3 aw88395_dev_get_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xddc5bd13 aw88395_dev_set_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xe46a080e aw88395_dev_start -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xebfb7794 aw88395_dev_get_profile_count -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x5c1c06b9 aw88395_dev_cfg_load -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xedfc0c27 aw88395_dev_load_acf_check -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3f4d7539 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x81b9ec49 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc6d971ba cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0166090c cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x13413b2b cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x22e541e7 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x935fb6ae adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x7bc35ea3 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xfd27d812 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x024aee8e adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0d9983a0 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x239ac710 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4719d612 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5b6ab3ab adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x68a55edc adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x937e9a19 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa30dce82 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcfdea1c7 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff68a6fe adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x23a18221 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1a8c2c98 aw88395_dev_get_profile_count +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x40203cff aw88395_dev_mute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x6abee55e aw88395_dev_get_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x6d5ea14b aw88395_dev_get_prof_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x737cde94 aw88395_dev_set_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x75dd5db0 aw88395_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x8a6b6e51 aw88395_dev_fw_update +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xa2a42a70 aw88395_dev_set_volume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xb783a635 aw88395_dev_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xbd6cd8f2 aw88395_dev_start +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xc9a4db1f aw88395_dev_get_prof_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd398f976 aw88395_dev_stop +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x19fcb3de aw88395_dev_cfg_load +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xe9ff9441 aw88395_dev_load_acf_check +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x135a7981 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x71ff04b4 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xef5cae60 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x31305007 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x331b109b cs35l41_enter_hibernate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x389e86c7 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x38b0a1bd cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x408a67d6 cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x439feddf cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x561528f7 cs35l41_configure_cs_dsp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x65354082 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x932eb79b cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb65311f7 cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xcf4ebbb0 cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd360465d cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd8ab5714 cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe6e38aa9 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x41b14913 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x469ee860 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x50e440b0 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x542b91fb cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6a353245 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6e9d15c6 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x74b09627 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8405f3d1 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xbaee18a3 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd816e6f6 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe39a7776 cs35l41_set_cspl_mbox_cmd EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe92ff6ad cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x241c67e7 cs35l56_system_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x4b8f9787 cs35l56_system_resume_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x51a9e51c cs35l56_system_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xd1aa0f49 cs35l56_system_resume_early -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe50d3748 cs35l56_system_suspend_late -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xfa489bbd cs35l56_system_suspend_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf7e44fcc cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x0dde8332 cs35l56_system_resume_early +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x43369be0 cs35l56_system_suspend_late +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x61a467d2 cs35l56_system_resume_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x968ef5bd cs35l56_system_suspend_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xa9ed9bcf cs35l56_system_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xd723cf5a cs35l56_system_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb44d5d10 cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xedbe3851 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x190731d9 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x35e4c2a3 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x90f5e3e1 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x95701084 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdec0d4f6 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4231a7a7 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xa3287cef cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb9dfc2b7 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x301959ee cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x45bbd49c cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x62ac7e94 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdeb926d0 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe29eba9b cs42l51_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xba54ad1f cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x883c5317 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8ae9077c cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x97363140 cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf5ff0ff0 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x29307941 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4cc5061f es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x494305c2 soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x660b109b snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xd759467b hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x4d867a3a lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xba0a9e9c lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xff71cd42 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1858c63c soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x424e2c11 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x8e83bd6c max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xba683054 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7c682818 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc8672a27 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc911f993 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xed863adf mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x0645e95c mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x239495a8 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x23a4f9a4 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xbb71a26f mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x629be112 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2b12053d es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc0175514 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x53347627 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x572eea72 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x8726dcdd soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x127c385a lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x4db0aad8 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x08eacd36 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x04c57cf8 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x13249e9f soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x507acf05 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5e5b3789 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0ec4c69a mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xa04dee14 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xca051e89 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf9d48c55 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x43347a71 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x79f74e78 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x88d8ade9 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xe2905d74 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x46a12649 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7378b94c nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xed46a5b1 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x1fb5b244 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x950879f1 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc66c89bc pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd37aa215 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x32749087 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x92b8d5d9 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3d3e5574 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xaea94469 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x310f2780 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3eed138b pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6dbdefbc pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb9385661 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4d92c88a pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x880d040d pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdf09e1e9 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf90f91aa pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xa6df9667 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x37f30a25 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7d144676 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x9f9e94a5 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x7aa4ea5e pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xbfc234f2 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x1794aff9 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xab54df24 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1d8138d0 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x4e4fdbae pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x86f616f8 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd9f7f008 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0af345a5 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3da19967 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x528f0e90 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdaf47aa4 pcm512x_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info 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-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0806e37f rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8ffd91a6 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcffa0963 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd09b9c14 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf200dcfd rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf7fb7b85 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9627cd91 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xe72a01ab rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x3ace4436 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x02cb108d rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xae9aede6 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x08616be6 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2945e8fd rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x384dbabd rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x44bc2ec2 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7d338e5c rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcf96f6ff rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x246126b5 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x83649b48 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xe7b597ee rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x6caaf7ff rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x8c66498a rt5677_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1e335933 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x21a8572d rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2af695e4 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2d25994e rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x35e78543 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1005d6cd rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x18715b8e rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1b3d3fc6 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x27efaa8c rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x47b0de37 rt5682_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7541b54f rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8a1b77f5 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb4b50173 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5b21608f rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5e6e075a rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa1402634 rt5682_soc_component_dev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc1c12ee7 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe9cb170b rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xede1819d rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xa488cd9e rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x18f06488 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3eb3a62f sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x96955630 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xeb74ebe9 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfdfc1222 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x17a311e6 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xa20656ce devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x31d8fe21 src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xce9e5589 src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x175b9236 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xcd3b00eb ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x19166634 tasdevice_digital_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x3289a1a9 tasdevice_amp_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x3a7d5a46 tascodec_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x581895c8 tasdevice_dev_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x5fcf8c53 tasdevice_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x81e509ae tasdevice_digital_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xaa7ace33 tasdevice_amp_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb38d0286 tas2781_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xc4faa02d tasdevice_dev_bulk_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd3558573 tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbcf53f6a rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc59defb5 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfb326dce rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x2c10d429 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0ff10d62 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2362241d sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x84d421fd devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa82a7b95 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcccba265 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x428f08e3 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xa443a796 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x26826a0e src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x729637e6 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x2906b15f ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xff47adb1 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x0e1cd39c tasdevice_amp_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x17fd5588 tasdevice_amp_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x2084fd0f tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x366ac094 tascodec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x3ac90bc7 tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x4a9ac203 tas2781_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x5044f7c1 tasdevice_dev_bulk_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x971a0399 tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xab0f0c21 tasdevice_dev_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xacda285b tasdevice_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb69f6554 tasdevice_dev_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd60d28da tasdevice_dsp_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf50ef3e8 tasdevice_kzalloc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf6d80dcb tasdevice_dev_update_bits -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xfc57097a tasdevice_dev_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xfe102096 tasdevice_dev_bulk_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x396f5fe5 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x8622a6a8 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xe8798792 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xeee35716 tasdevice_digital_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf372199d tasdevice_dev_update_bits +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf702d102 tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x32c100eb aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x3bca0384 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x76573a8a ts3a227e_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x3b429c30 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4c7f3fae wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x663a73f6 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb89e1d30 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcb375534 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1a33a17a wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1acffef3 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x20392356 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x385b5d1e wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x40018859 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x25adf915 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5cfd6d06 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8337f886 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x907ca937 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xef27feba wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0fdb8b3a wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x175eca58 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x26888047 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x32db1f78 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3b2d1dd2 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x41b96703 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4a074127 wm_adsp_fw_put EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5e04e058 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5ea88a70 wm_adsp_power_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6590884b wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x71069691 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8a5a2591 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8f5ed35c wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9a823546 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9bf4712b wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa399a563 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaa097b8d wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaa84534e wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xac89cf67 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb0d7c3f7 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb751c264 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe9fd1b5 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xccac5bae wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6538b8b8 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x731084ee wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7630e156 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x77ee5e79 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x86837878 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8f5d25fb wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9300be03 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9bc1dd42 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9febfa6d wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa9538045 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaa177bca wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb2d7e41d wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xce31512b wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd9c3c52c wm_adsp_fw_enum EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd413462 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe5cd4875 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe3412ef9 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe4a84ae1 wm_adsp1_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf48b7cf9 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfd209907 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xff9ed8cc wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0a7fe8ac wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2139cf73 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x276d42ac wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x33a38b47 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xed1a389b wm_adsp_power_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf6544e99 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfe3531dd wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0f802ea4 wm_hubs_handle_analogue_pdata 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 0x5e3477ea wm_hubs_set_bias_level 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 0xdc296a8b wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xecf4bb85 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf875fb9d wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x34e61029 wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x5f5cbd4b wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2e803a9d wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9412c5ad wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa8ebdf55 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcca63371 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x9557fb8e wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xc19e3d9a wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x6a091b91 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xb9e651b0 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xcb65175f imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x3666bdcf fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7b2e1c7d wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x96581d83 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc1c21dbd wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd2148158 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdc333b23 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xdffdc35d wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe621a0b6 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xa290e38c wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xa36ce257 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9e12d1b1 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xad99d38f wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc3f493d2 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf3c5c68f wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x8b2f71fc wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x171b3d8b wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x57f4d15c wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x60e3130a wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x0b9be7bc imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x34b897ac fsl_asrc_component 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/generic/snd-soc-audio-graph-card 0x4d5f166e audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x6a6a454c audio_graph2_link_c2c -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7752addd audio_graph2_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xa7068efe audio_graph2_link_dpcm -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xf5363522 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xd1876991 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x0a5d59c5 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x148e5cbb audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x48d4a83a audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xa7d5c4f6 audio_graph2_link_c2c EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x166a8ede asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x22aeaf9c asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x266cd879 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x37034f27 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4087d9a6 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4c4318da asoc_simple_init_aux_jacks -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5306de84 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x53aa7df0 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5aa69c2a asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x601cb348 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x673867a9 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6cb32e7b asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6ce94456 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6f13dff7 asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x72e269d6 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x91e947a0 asoc_graph_parse_dai -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x930c3080 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9fb67dcf asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb190473a asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc260790d asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2bc3f65 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcdf92497 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xed01c370 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfdf0ec22 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0ca6b450 mtk_sof_card_late_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x132e17b9 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1638ae6c mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x27054f15 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ba8c327 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x480bbb44 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5ac7e049 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5bb4db36 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5cc75920 mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x73934b3f mtk_sof_dai_link_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7451eb43 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x761e6b77 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x76962481 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x81fde6f5 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x884fe6d2 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8b8ce596 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8ca03e94 clean_card_reference -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x97998b80 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x99a388c3 mtk_sof_card_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9c6d8c06 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9fb5542f mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa0775e42 mtk_sof_dailink_parse_of -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xafc7e380 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xafd3b06c parse_dai_link_info -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb0612cbe mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb562f8cf mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbeefbc41 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcbd46316 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdd79c0fd mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf5114bff mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xe4728745 mt8183_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3ba32d6e mt8186_mt6366_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x568e0c79 mt8186_afe_gpio_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xbfeb1746 mt8186_mt6366_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xf2003c29 mt8186_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x8bf3b2ea mt8188_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0xf4610c88 mt8188_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xf4c7e631 mt8192_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x130941ed mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xb6cc4f70 mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x41c91bc9 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x62a0dae2 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x693b21c2 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7a63ac30 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x907c40ce axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xaaf1ce13 axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xaafe0448 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd1d941c3 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xdee0b99e axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x1d6166a7 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x09119964 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x112c0120 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x16a48873 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1c8d2add asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x22f7e094 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x258b5535 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2f286f7c asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x33da029e asoc_graph_parse_dai +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x437e0a78 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4a7d5972 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5230d2ac asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8ae733a3 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8c023df4 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8d85a059 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9d170d4e asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9fbdae87 asoc_simple_init_aux_jacks +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xab5d862f asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc01e7235 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc1ea9fa5 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2a80c5e asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc8de9cfa asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe9ce4ed6 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xed1894c5 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf4fe39ed asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0346fea6 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x03f0b6f6 mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x08f8a775 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1f747bd3 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x252cb8ed mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2c232982 mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2c3389de mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ddaff89 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2f430896 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x34bea1c3 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4dbf7259 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x665f8744 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6ef71fb1 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7416a5d0 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x74673c4c mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7779c6e6 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7a6b7b7d mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8c42e17a mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9107229f mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x910f2176 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xba0c4fb6 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbdd41e0d mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc0a743c2 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc59cc5a8 parse_dai_link_info +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc65f98e2 clean_card_reference +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc7eaec10 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd3468c8e mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe481d2a2 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf6fce84c mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfe9e7d7b mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xd7850120 mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x0de752df mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x1356892d mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x49c95e98 mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xe33d9cb2 mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0xcea8c1e1 mt8188_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0xd6bff367 mt8188_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x731df4f2 mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x250f08d4 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x9c33932c mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1ef0a6f2 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x33cd11af axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4df402d8 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x55b07818 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7269a946 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x79eabf43 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb9e67862 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe7251c46 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf68c2b94 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x03915a18 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x7ea54852 axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xfbb94282 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x10b5f14a axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x2a0c9ad7 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x30b6d180 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3e96b276 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5f8e3c2d meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x75f4e049 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x947d7494 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe14e3c69 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe653c141 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x6ad198a7 meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8b960bd2 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x9e50e7ae meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa350837f meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc6291f1b meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xd8ed579a meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x116a4782 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xfcdc010f axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x0abe4fba meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1ab8e9ff meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x1eae21f9 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x432c5ed9 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5f9e1451 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb51f2646 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb84ba0f7 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xc5282176 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3f218c7e meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x695180c8 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7207264e meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8728067a meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe0a5482d meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe7e17940 meson_codec_glue_input_dai_probe EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x3b728a42 q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xcc62bddb q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x332e5013 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x870cef3e q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb56389fe q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x14c0fc74 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x530e0dcf q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x546129fc q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd5cd703b q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x29303ab3 q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x5b30c283 q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 @@ -20452,299 +20472,300 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x0bd116ff q6prm_unvote_lpass_core_hw -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x9f4c5e5a q6prm_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xe645fe7d q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x428b5b13 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x44c556be q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xee8a4fea q6prm_unvote_lpass_core_hw EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0f6346ed q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x112fb70e audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x142fc531 q6apm_graph_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1b7da048 q6apm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x25194acf audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x26d66578 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2f37f1a4 q6apm_enable_compress_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2f51d97a q6apm_graph_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2fe33fd3 q6apm_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3bc3cd53 q6apm_graph_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x476ec3b8 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x307a4afd audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4e05c119 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x538d1f40 audioreach_graph_send_cmd_sync EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x61091a9c q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x622d92f9 audioreach_alloc_graph_pkt EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x668feca6 audioreach_send_u32_param -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x731b5eff audioreach_gain_set_vol_ctrl -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x777f44d2 q6apm_set_real_module_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6510fbe2 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7032adf9 audioreach_compr_set_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x711585e1 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x751debf7 q6apm_graph_media_format_pcm EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x801c46be q6apm_graph_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x88df5d24 q6apm_graph_get_rx_shmem_module_iid -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8abfd098 audioreach_alloc_graph_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8fa759fb audioreach_set_media_format -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x92607a43 audioreach_graph_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa1552418 q6apm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa978e3a5 q6apm_enable_compress_module -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xab3400c3 audioreach_compr_set_param -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb7c5eba8 audioreach_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcae10f36 q6apm_graph_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcb7161f5 audioreach_graph_free_buf -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd379d9d9 q6apm_graph_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd88946eb audioreach_tplg_init -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd8b5f5e5 audioreach_shared_memory_send_eos -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xda79432e q6apm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdb674a0a q6apm_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe1fe5fe7 q6apm_graph_media_format_shmem -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe9922fa7 q6apm_remove_initial_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xed8e5acf q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x97f81b02 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xab03a8c2 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb15efdc5 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb20ea6f6 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb3fa1f20 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb6677881 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb6994d68 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbf64c092 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc2f50d4a audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcb7c0bbb q6apm_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdfd8e71a q6apm_set_real_module_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfc2bab2e audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfcff58c0 q6apm_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfd8183ba audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfe654ea6 audioreach_send_u32_param EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x280c4300 q6dsp_clock_dev_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x53857c13 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x319c8b83 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x4ff8bdde q6dsp_audio_ports_of_xlate_dai_name EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x9501f8e4 q6dsp_get_channel_allocation -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xb582106c q6dsp_audio_ports_set_config -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xf3d3f0be asoc_qcom_lpass_cdc_dma_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3befad0a asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x46de8b61 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd436e89d asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd922fd71 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xde7c5022 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe4328ad4 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xaf4ec21a asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xbbdd99e0 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x679f815d qcom_snd_parse_of -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xdb323807 qcom_snd_wcd_jack_setup -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x3c991fb8 qcom_snd_sdw_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x6b5c072c qcom_snd_sdw_hw_free -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xa74b9108 qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe37cde5f q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x02416ed1 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x266ae301 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x652653bb lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x69777e78 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7291029e asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb8fe8319 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd74ebdec asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xe6cb2447 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x4906522e asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x5e3b9278 qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xb64460c1 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x47a56565 qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x9b4348cd qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xd1135678 qcom_snd_sdw_hw_free EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x2ad85b63 snd_soc_acpi_find_machine EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x48c4d20c snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x008973b0 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01176a5a snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04316558 snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04643fe2 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x049988ae snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05840e50 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x064809ea snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x068ef146 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08be2e2c snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09505f4b snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0998ee7d devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b171717 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c7af5cf snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d75875e dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fbeca95 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1044ea60 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10d9b9f5 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1345991f snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1465915a snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x153a7349 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15f56421 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16d96ad5 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17710188 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x177cfc40 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b441dd3 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b52e4ff snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d29dacc snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dd95f36 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x209ee27a snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20bb87ba snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20ed53b9 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20f107ae snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x214d5a8c snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2195c651 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21c202f0 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22707d43 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2302fe44 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0050bf84 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03228fce snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0471bd3e snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x066b7bf9 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x070f097d snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07ec2322 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x086ee89b snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0874dbbe soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08772073 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d2532b1 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d296d42 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d513aaf snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0deae9db snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e843cdb snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eafe2b6 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f56bc1c snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1477c4a0 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14f67765 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1547226b snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17e2a24e snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1823673c snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1828a6d1 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b34bc5c snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bc245c4 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1beaa6b3 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c8f0864 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e3de44a snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2283cde4 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23ed61c4 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x252a1602 snd_soc_of_get_dlc EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25ab08ec snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26ee9743 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27ff98e3 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28fab289 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a014dbb snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a73d794 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cfca378 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dc53b4d snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2de91669 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f182e94 snd_soc_component_notify_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30a98db8 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31416187 snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3236267f snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34d52eef snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x354d7eef snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38288860 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3967e4dd snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39c18883 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3def90e4 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x403ea40b devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41753591 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x417bdade snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41d8fdc3 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4266d377 snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x440c314d snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x443b6e15 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46295575 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x469f8fec snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47905b6f snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x493a012b snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c2dbf36 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c621997 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2558abe9 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26f5517e snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b91d056 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ba708be snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fec28ea snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x309a9ab0 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3254d8ae snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32742564 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x359ab63d snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36bed900 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36e820f7 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37487cd8 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37bb5ead null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x389d7e35 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b73b3e1 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c465a24 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cf0c9ee snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d56e872 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3da55c39 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f3c9f0b snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f6d2fe8 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fb70c3f snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40bfe05f snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40da41b6 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42316261 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4306f8bf snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472c980d snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47cf52ae snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a172a14 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a4e1226 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a7ce68c snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d3e17f5 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dd6c8ca snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f0a6089 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f315393 snd_soc_get_volsw_range EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50be1f5f snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50e4a0e2 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x516ac159 asoc_dummy_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52ce47da snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52efa223 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59b2da0d snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59c61957 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a97b921 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e56158a snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f747062 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x603eee61 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x628f53a6 snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62963265 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62d0b239 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x647e411f snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65985269 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66fb52f2 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6809c0fc dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d329799 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d676415 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f62dfe8 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7465292b snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x746d73fd snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x747a285a snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7527dfe8 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x777b5f0a snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77ac740f snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7812a843 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79478b7f snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a21595f snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a290065 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ac1f1d8 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b7129a8 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c27b5b5 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d83f086 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7df22e08 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e536d57 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x513d8999 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51e79c9f snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5241cde4 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52a06f26 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x539d8649 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x541ee324 snd_soc_get_stream_cpu +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x548abbe8 asoc_dummy_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54b0f9f8 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x573dfa2c snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58f1a44c snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x591573ce snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c460960 snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d9e601e snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f6e2b0f snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fbfb0b3 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x613dc38d snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6140f9c3 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6163a878 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61a7005d snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x629c2d16 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64190ee8 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64bcff24 snd_soc_component_get_jack_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6853799f snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68f39ca9 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x695f443f snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69ddbb4c snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a6abe22 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b6d0510 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6dfa04b8 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e2b0c01 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x719f9837 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721fdc94 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x767e2002 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x788ce9be snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7aff61c8 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b37cb99 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ced3c81 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d1e5378 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7df125a8 snd_soc_runtime_set_dai_fmt EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fccd90f snd_soc_get_stream_cpu -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81913961 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8295e486 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x852c13a0 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86234f37 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8783984d snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87c6380e snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8883ddbf snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a70055b snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8af1ed84 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b48b275 widget_in_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f12e175 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x901f82ea snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90c42775 snd_soc_of_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9100771a snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9122e89d snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91319ae4 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x915fd02f snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92d9e3ba snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x965f8250 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9759ac04 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b8def7b snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c836743 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dec003d snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e8b24cf snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0041ab1 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa06e355c snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa19af7a0 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1fd1e45 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3246af4 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4319741 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa433d69a snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4cd0568 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6db40a9 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa952242d snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab18c433 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac611fa3 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac81f64c snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae34259f snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf4726ed snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb12c560b snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb22a04f3 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb29247f8 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb306147f snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb37222b1 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4d93166 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb506da5f snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb595d99b snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb68e843e dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6ac6bce snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb75916da snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8d2e2fe snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb741968 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc52840a snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcbbc609 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd2a73c9 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd824193 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc02dff55 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc030718a snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0e1a8d9 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1c23120 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f485a8d snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81694913 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81cd18ee snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81e23356 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81fb97c6 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82b0626c snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b288ed snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83c19c95 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83feb3b9 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8939f12d snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ab2b422 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b52576d snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bbde9c5 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d9ef706 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e0878b5 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e736a0c snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f60684b snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x905fa356 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x906e7821 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x917111f5 widget_in_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9370a75e snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x954cc163 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x958ba852 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x970148ed snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97667511 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98952747 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x991cb546 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x999da794 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99ea8325 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b6ee283 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c8e293d snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e9b3069 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2c5ca7a snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2ed34fa snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa41c307f snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa468ced5 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4ede294 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa744bf8e snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa89e2cfa snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa94abd17 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9b2762f snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab326692 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab577c91 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac309467 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac50b720 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac5f76d9 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad6055e5 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae93a2ac snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf821457 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4538c1b snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5cb98a7 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5cfbd86 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb762322c snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a7ace4 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7aa1eff snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb061855 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb4bc5b9 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf3bf9d2 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0558b82 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0875fe8 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1ec0c5a snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4441fa3 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4924d7d snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc391f7e9 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc44f63ad snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc51bb004 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc648c196 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6d88ec8 snd_soc_poweroff EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87716e8 snd_soc_add_pcm_runtimes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9100caf snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9ade978 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca9acd6e snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb52df53 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc089ec9 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcca88900 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccbc7d90 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce34bac9 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf59c55a snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd110f389 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd36a4901 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3ae4801 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd521b1cd snd_soc_component_get_jack_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd90053a0 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf26f899 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfb41813 snd_soc_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0d4043b snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1765380 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1da5b65 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f58739 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3faf07f snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4743da0 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe55c067f snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5c89824 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe60965d8 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe616160c snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6631e09 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8693d9c snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea5b8843 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc83d91b1 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd38c0a2 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf48fd4d snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0a83ff8 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0c2e9ac snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd172c493 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd24f722f snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd43c26ff snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd47049c7 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5470214 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5ed3864 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6f9633d snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd70ccb61 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9395ef4 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9e1c55f snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda386bd8 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc8ecb47 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdca38433 snd_soc_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcaf4a13 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd154962 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde1b8637 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde7e5e6a snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe09cb60b snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe13849d4 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1518d61 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1d71866 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1fa54fb snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2348499 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe42a9908 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b53751 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9eb9fb3 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea3ec9fd snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb0f4387 snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebd79469 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed59eafd snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef5f38af snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1614420 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf45e47ab snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf831724d snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf95f6e64 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb74e5f5 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeefff55d dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef353ce5 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf05e5a3b snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1100c4e snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf288a00b snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4212e33 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4cd463e snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4cd48c3 snd_soc_dai_is_dummy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4cf3314 snd_soc_component_notify_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5cdc5e9 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5fe40dc dapm_regulator_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9899b92 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa68b1bc snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfab56df2 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb03f13e snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb26e52e snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb9d60af snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc162632 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc821851 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcca5c56 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcf99f1b snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd32f2da snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd5beafd snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe73fdf5 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff381d81 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff55b4e9 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x20b3182c snd_sof_debugfs_add_region_item_iomem -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6a0f120a snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x845a21e4 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x87f8c325 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xfb25fedc snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbbb4127 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd2794db snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd4dcb40 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd63c220 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff01fd37 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff23c0ff snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffb708f2 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0d84cad4 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5997640d snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x66718d63 snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa9efa37d snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdb1a32fc snd_sof_dbg_memory_info_init EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write @@ -20754,17 +20775,17 @@ EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xb67dbf49 sprd_mcdt_chan_dma_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xdf547b54 sprd_mcdt_free_chan EXPORT_SYMBOL_GPL sound/soc/sunxi/sun8i-adda-pr-regmap 0x37a3a5c2 sun8i_adda_pr_regmap_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xa372452d tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xbbac35da tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x23b27dc1 devm_tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2c3ebe71 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x32b93016 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x57f6031c tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x665aeca1 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7e4a0b13 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9c245289 tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9d546cfe tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf9f20bbc tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x072aed60 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xaf706d3e tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0012daa7 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x155c7e67 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x1d18d574 devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4c75c656 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9f15ece5 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xbdc94be5 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc6ca5c2b tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xcccff7ca tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf28e216f tegra_pcm_open EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da 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 @@ -20777,7446 +20798,7449 @@ 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 0xd01de23b tegra30_ahub_allocate_rx_fifo EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0xfb0dc063 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xda47432b sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x467d6eb0 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x143262bc line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1aa976d8 line6_version_request_async +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x105c32d7 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x79de0b63 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xcbc2be0b udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0e434a6e line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x128bc84f 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 0x2d31cec5 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x314476c8 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fa80b0d line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4f6bd347 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5a5baeff line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6ac72d4b line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x79b25ef1 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x83ddea87 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb061a71f line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb52431ac line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd84765b4 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe9da864b line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xea043e3b line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf08dc1f3 line6_suspend -EXPORT_SYMBOL_GPL vmlinux 0x001417ee bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x001adb44 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x001e9420 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x002dfb09 bpfilter_ops +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2947f485 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f566c27 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3a9d8ea3 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3d86c691 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3de86aa9 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x42a3bb33 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x480bca3b line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4bfc6ed2 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x73b93d09 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7b536faf line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8a08c0d4 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa13b7665 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb3981755 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef6c9c2d line6_resume +EXPORT_SYMBOL_GPL vmlinux 0x0015d24c sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x001832c8 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x003b1130 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x0055efae __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x0054003c hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x00645308 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x007af0b3 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x00a6be8b i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x00bcd0ab blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x00c5398a sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x00cb8a0b pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x00cdb521 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x0080b83b strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x00a06f98 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x00a57a53 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x00a6ac5f hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x00ba1ef0 dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d86e49 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x00d89e9b fsl_mc_bus_dpmcp_type EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x00e1ca75 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x00e57e32 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x00e3980d gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x00eb52c3 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x0109424c securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x011f6920 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x00fe2e08 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x011014aa __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x012031cb fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0121d6e6 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x013b2453 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x01374ae6 vfs_get_acl EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x0150ecb9 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x01545619 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x016ad821 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x016b45ae serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x0164d59b raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0166a4aa pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x0170fd14 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x017209f5 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0172e360 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x0174bd9c rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x017816c1 pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0x017d99d9 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x01802a0e phylink_generic_validate -EXPORT_SYMBOL_GPL vmlinux 0x0184256d meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018b48e5 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x019371f1 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x019f602c __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x018e5d75 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x0192793b usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free EXPORT_SYMBOL_GPL vmlinux 0x01a20dfe spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x01ac7df0 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x01c1af1c iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x01a87235 ma35d1_reg_clk_pll EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c7ebce dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x01d7bae5 meson_clk_cpu_dyndiv_ops EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f5843d switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x02043099 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x01fd08f8 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x0202c29c genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0204d12f dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x023467c7 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x0234f2f0 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x02380ebe dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x02248e03 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x02286628 split_page +EXPORT_SYMBOL_GPL vmlinux 0x0231976b usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x0231bc51 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x023425fc mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x0239c425 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x023aea77 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0242c9e4 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0247cecc devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024c3612 blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x024ff9fa pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x0250d662 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x0254b528 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x02718d48 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x029137ba device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x02bbf693 genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0x0259dd98 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x025de710 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x0284e134 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x0289f29d vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x028e5e57 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x0292a1d7 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x02a06ee8 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x02a3908b device_unregister EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02e60594 dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0x02efd31b of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x02f18d17 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x03068d15 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x030b973d fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x02c5c67f __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x02ca183b devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x02dd6d71 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x02e16fa8 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x02ea2e7b apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x02eb87f8 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x02f62da3 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x030bf814 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031663ce wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x03191bc5 tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0x031e8983 edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03224345 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x032ac4f3 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x0335aed6 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0326ed15 nvmem_layout_unregister EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033f8936 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x03420bac rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features -EXPORT_SYMBOL_GPL vmlinux 0x034a7175 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x034b2624 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x0352bf66 dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x0353fdea vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x03593ee3 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x03610641 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x036d7e42 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x03825b31 crypto_sig_set_privkey -EXPORT_SYMBOL_GPL vmlinux 0x039225bf skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x03950872 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x037e37f8 backing_file_real_path +EXPORT_SYMBOL_GPL vmlinux 0x03865829 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x0390a62d iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03965707 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x0399e3c8 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x03a2aacc extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x03a8bfbb fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x03b3d4d1 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x03bf2d83 mtk_clk_pdev_probe +EXPORT_SYMBOL_GPL vmlinux 0x039d5566 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x03ac7f63 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x03be86bf virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ca3464 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x03ca01c0 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d30fd5 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x03e74c1a init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x03e9ad5b ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x03ffc6e7 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x03dc16bd phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x03f813b0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x03f962f8 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040a1e35 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x040f4e1f nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x0404494f hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x040f59f9 rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr -EXPORT_SYMBOL_GPL vmlinux 0x04171068 devm_regulator_bulk_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x04195f09 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x043a3b20 sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x04401bf3 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x044bda72 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x044c9439 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x044fa301 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x0431c54c usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x044a8673 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x045230ac fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x046fda39 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x04729bd2 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x04708248 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0471d943 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x047422b8 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x047e145c of_alias_from_compatible +EXPORT_SYMBOL_GPL vmlinux 0x04893e93 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048bda80 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x048bf9f3 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x049695a0 crypto_register_shashes EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a1fccc tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x04a8601f xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x04a1eb9a crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x04a6d2db phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c5203c kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04ca5fef nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x04df79f2 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x04d61d5d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x04d76d73 crypto_sig_maxsize EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x050faad4 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x05030bc5 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x0510efa0 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x0512779d usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x0519f2e7 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch -EXPORT_SYMBOL_GPL vmlinux 0x0522a591 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x0523efac thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x0525cd0f pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x0529aed3 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x052783da devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x0528773d fb_sys_read EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x0534b443 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x053640ae nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x05378cee mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x053a8ba9 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x054bb024 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x054be87e ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x053e8161 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055a0ac0 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x055e6a5e sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x054e8a0b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x055f91c9 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x056fc812 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x057d722c inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x0587439a ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0589fa23 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x058d7304 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x059439ad dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x05b5a722 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x05bea3ba ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0595b6e1 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x059a6ce6 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x05b642fb pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x05be5cc7 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x05c3d291 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x05c6f05e dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0x05d0a649 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x05df3ab0 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x05e2be65 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x05e55bfa kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x05ee5f08 mtk_clk_pdev_remove -EXPORT_SYMBOL_GPL vmlinux 0x05fb7342 mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x05ef382c cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x05fcde83 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x0604d7db spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x0608f1e3 imx_clk_fracn_gppll_integer +EXPORT_SYMBOL_GPL vmlinux 0x0612ed33 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x061370e9 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x061ae97e dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x0618a8a1 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x061e974b devl_unregister EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain EXPORT_SYMBOL_GPL vmlinux 0x062d117f __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x0630fb71 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x06402a44 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x06496340 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x0632b6f1 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x063f5352 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x064010bb handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06510af0 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x065b2370 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x0661cec7 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x066b6392 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x06709e60 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x067b1dfa usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x0654fd6d __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x06603a8d usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x066989a5 fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x068d1c9b sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x069a578b list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x069bd70a ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x069dadbe dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x06a1553f ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x06a4744c ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x06898f9f ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x06969595 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x069af9f6 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x069c0c01 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x069fe75c crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x06b3308e rz_mtu3_8bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x06b6a328 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06c27f6d mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x06cc631f regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06db4743 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x06e1eb62 crypto_shash_setkey EXPORT_SYMBOL_GPL vmlinux 0x06e415bc __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06edac74 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x0701333b serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0711a53c check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x06eefc5b regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0704c7ed gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0708a513 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0728ee75 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0x07418234 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x073770fd iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x073ee8b1 inet_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x074256ee set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074a338d sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x074e70aa of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x07550f37 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0750938c pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x075a8ec5 ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x0764f77d rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x076d88dd device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x0773065d class_create -EXPORT_SYMBOL_GPL vmlinux 0x07734db7 sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0x07760424 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0782107a __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x07a593d9 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x077a31cb kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x0784996e dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x078cf5b6 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x07918b5a sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x07a338c8 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x07aae255 vcap_select_min_rule_keyset EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b315ee perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b72747 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x07b7bf2f __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c4045f usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x07debf95 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x07e88839 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x07eaed52 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x07f88eb3 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0809cdba pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x07d09d2f ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x07d6f7dc usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x07dbec5b dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x07eeba9a of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x07fabab6 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x0801db79 of_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081611dc phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL vmlinux 0x083a2048 fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0x084265eb devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x08227772 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x083b9cc5 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x0848a224 kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x0857bca6 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x086a32fa bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x0870b01b backing_file_real_path -EXPORT_SYMBOL_GPL vmlinux 0x087c2551 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x085a858f bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x0866db38 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x086d7568 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0874821c dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08875294 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x088ac683 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x089d5242 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x08b3faf2 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x08a9e824 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x08ab8a99 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x08ac91d5 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x08acef7c devm_devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08dc24a3 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x08d05ae0 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x08ddceb6 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x08e2b333 cppc_set_auto_sel -EXPORT_SYMBOL_GPL vmlinux 0x08ed5e54 msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x08eecd4e usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x08f1a4f2 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x090edf48 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x091b4a65 devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x091d8ff3 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0920e24d pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x0927381c samsung_sdi_battery_get_info -EXPORT_SYMBOL_GPL vmlinux 0x092e2d96 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x09225ae0 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x0924cc85 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x0935043c blk_stat_disable_accounting EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x0948ba7c regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x09548f58 file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0x0954fcc4 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x09558894 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x09659ebd amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x096835a3 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x096cf38c xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x09713e70 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x0938ff99 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x093c480f encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x0948b2a6 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x0948ba8d irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x09564569 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x096e6602 ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x09783456 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x09913a03 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x09a3a9cc ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x09a47242 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x09ad2560 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x09b263ca paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x097ecf30 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b5bfd3 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x09b72588 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x09b86bbc regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x09cf21ea scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x09d0e6e1 modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x09e1d4e4 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x09f3de53 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x09d32382 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x09e1ff53 thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0x09f46309 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x09f48874 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x0a0382e4 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x0a07844b auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x0a0bb219 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x0a1c16b6 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x0a22f608 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x0a2d8c33 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x0a4d4089 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x09fd6fc1 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x0a00ba19 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x0a21afbb evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x0a256d2a ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x0a2e066c netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x0a4e6e0a nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a5fde65 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x0a6848bf mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x0a754f39 dm_put -EXPORT_SYMBOL_GPL vmlinux 0x0a816254 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x0a6895df blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x0a76d0c1 devm_phy_put EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x0a8894f4 mas_find_range_rev EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x0a9df53d for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x0aa5f5b6 dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0x0aa72b15 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x0ab9d1a6 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x0aba280c power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x0a9fa93d xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0aa25f20 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x0ab3422b xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x0ab99fd2 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0ac12c54 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x0ac6337f blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x0add43b6 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x0abd1496 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x0adcdffd crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x0ae95764 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0af54da8 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0af6b92b devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b14d7fa acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b0a40c2 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x0b100d4b fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x0b1a2bcd of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b22832e balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x0b2334c6 blk_mark_disk_dead EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b373db0 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x0b33ea35 kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b3ee5b9 divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x0b46ba4f phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x0b49711b xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b57d76e dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x0b5df202 firmware_upload_register -EXPORT_SYMBOL_GPL vmlinux 0x0b5e9914 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x0b564626 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x0b57324b mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x0b64914c netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x0b68f164 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b83390b phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x0b80bd78 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b9fe659 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x0ba3497c is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x0ba62f70 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b95418e gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x0b9614ac genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0bac42ac register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x0bb2b278 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x0bb2ca37 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0be0475a mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x0be7e5f4 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x0bea10f6 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x0beb90eb mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x0bc284c2 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x0bcfd556 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x0bd58c1e clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x0bd6dc15 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x0bdbafc9 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x0bdce7dc regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x0be271fc blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x0be2e04a iov_iter_extract_pages +EXPORT_SYMBOL_GPL vmlinux 0x0bece64f dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf4ef18 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x0bfed055 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x0c148e83 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x0bf6291e of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0c0410d0 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x0c0e9c3e serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x0c10e0e4 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0x0c1a5ee3 log_post_read_mmio +EXPORT_SYMBOL_GPL vmlinux 0x0c267ec6 imx_unregister_hw_clocks EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c317969 mmc_regulator_enable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c35e768 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x0c3de1a8 nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c5783c2 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x0c639255 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x0c7e18dd cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x0c4e03df kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x0c527583 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x0c7665ed devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0c785d1d regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0c7cf9c5 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x0c7d7822 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x0c82fced powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x0c839808 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0c845994 pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c88e7d9 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0c9063c0 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x0c9ac64a ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0c9ef49c clk_hw_forward_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x0cad15ab cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x0c910e3d dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x0c91242c devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0c9da413 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x0ca5fe37 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x0cb7551b rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc4c7f3 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cdb5663 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0ce1c131 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0ce4062b br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x0ce41a32 folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x0ce684da fat_attach -EXPORT_SYMBOL_GPL vmlinux 0x0ceecd78 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL vmlinux 0x0cfa847f devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x0d06ea83 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x0d0a93e1 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x0d0cc9f6 mmc_prepare_busy_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0d134af0 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x0d2947a0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x0d38877e rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x0cf3569c dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x0cf5910b vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x0d0897cf vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x0d0f823a ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x0d17da6b iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x0d19d99c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x0d218405 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x0d262437 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x0d3a9db1 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x0d3cdf2e perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x0d3da5cf crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0d3e7648 mm_kobj EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d408287 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0d4268b5 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x0d435bd5 __tracepoint_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d47804a __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d5c17a0 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x0d53892f rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d5ecae7 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x0d5eed41 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x0d6274e1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x0d5ed0e6 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0d61224c msi_device_has_isolated_msi EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d6cc2b8 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x0d6d2771 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x0d72eb0d of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x0d79219f dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x0d878776 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x0d8cdc43 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0d978769 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x0d9982e6 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x0d9cba48 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x0d9f5c58 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x0dad1bdf perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0db2c69a switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x0db34ef3 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x0dbe37ad icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x0dd238c9 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x0d765c7d do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x0dad482a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x0db16364 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0deca878 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x0dfb3ebf strp_done +EXPORT_SYMBOL_GPL vmlinux 0x0de3230e ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0de5f9f4 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x0de89424 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x0def14f1 crypto_akcipher_sync_prep +EXPORT_SYMBOL_GPL vmlinux 0x0df56249 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x0df62a6e gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x0dff841c blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e028e22 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0e09be54 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0x0e0d2340 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x0e10e129 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e15c5c0 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x0e3cef1d input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x0e1c9823 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x0e4fbac8 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e62ee1a genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0x0e69fd5d xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e6c5910 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x0e6ccc81 arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0x0e7fa4c7 of_pse_control_get -EXPORT_SYMBOL_GPL vmlinux 0x0e818825 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x0e8ae71a edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x0e94fec8 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x0e8138a1 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x0e854604 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x0e8caac1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x0e96e0ff ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ea027a8 transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ea67b95 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x0ea776ed __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x0ea98af7 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x0ebc3923 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x0ebf1ef7 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0eaaa9b5 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x0eb0654c xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x0eb43ea6 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x0eba05c3 platform_device_del EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ec3c513 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x0eccd2a2 debugfs_remove EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ed7cee7 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0x0eea2d0e hid_bpf_device_init -EXPORT_SYMBOL_GPL vmlinux 0x0eecc200 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x0ef44865 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x0ef85691 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x0efb7925 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x0efd6f37 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x0ee13aef tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0ef54d61 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0ef952e5 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x0f101472 mc_send_command EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f2b6dff vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x0f31f49e device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x0f3e1acf gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x0f4150dc is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x0f56fd2e phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x0f65a091 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x0f67a0fd rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x0f681b0e regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x0f70d973 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x0f783a8f iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x0f236e84 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x0f2ebabc sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f2f3154 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x0f35894b of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x0f35dac3 bus_get_dev_root +EXPORT_SYMBOL_GPL vmlinux 0x0f4065c7 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x0f458683 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x0f4ccdc0 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0f5745eb ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x0f5d7c37 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x0f6ca6c6 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x0f6dbbfd i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x0f765117 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f867a28 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x0f87e44e sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0f896179 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x0f8ef30b imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x0f88a68c xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x0f897223 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x0f955415 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x0fac1a7a devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fb003b7 of_led_get EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x0fbe7ad1 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x0fc9b0bc debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x0fcecfca regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fecbac9 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x0fd51258 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x0fec754c __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0ff0494e rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x0fff2ccb devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x100d9e0b dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10138caa platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1016e40a fsl_mc_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x10185973 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x103acb65 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x101f7bca regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1021afe5 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x1025f606 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x103087d1 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x10333423 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x103cd676 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x104764e3 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x104f76eb pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x106357d0 mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x10698bd8 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x106a77a0 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x104bd9a5 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x106a5ccc i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1074951d fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x10768154 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x10884966 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x10896e28 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x1090f72c hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x10911390 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x1095fdb4 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x10a1605a call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x10a266d7 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x10abd2a4 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x10add57e ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10ca2ac9 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x10ce60e9 dev_pm_opp_config_clks_simple -EXPORT_SYMBOL_GPL vmlinux 0x10d59b12 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x10b8b03d set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x10c9fc34 dev_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10dcd83e fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x10e6eb8b vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x10ea9708 fsl_mc_bus_dprc_type EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f083ba dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x10f67830 thermal_zone_device_type -EXPORT_SYMBOL_GPL vmlinux 0x10fabae8 bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0x10fbdcb8 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x10eec97e crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x10fdc45b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10ffd15e pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x11040157 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x1109cd8c driver_register -EXPORT_SYMBOL_GPL vmlinux 0x1117509b extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x111a27e3 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x113bf68d sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x115f9c70 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x117d186a regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x111913dc da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x11197ea6 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x11199241 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x111b6d0b md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1120ef47 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x115704c7 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x11573ce2 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x115d4a36 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1162a7ae handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x1163e96c mmc_prepare_busy_cmd +EXPORT_SYMBOL_GPL vmlinux 0x1180ae45 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x1187f745 dax_zero_range EXPORT_SYMBOL_GPL vmlinux 0x118b1e9f rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x119718cd pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x11a1808c gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x11a3f12f sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x11aa99df device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x11a10bc0 pci_epc_linkdown +EXPORT_SYMBOL_GPL vmlinux 0x11a4bc0f __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x11a4d037 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x11b68a56 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x11c54cff dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x11c5f636 kernel_file_open -EXPORT_SYMBOL_GPL vmlinux 0x11d62a43 dsa_stubs -EXPORT_SYMBOL_GPL vmlinux 0x11dbb63b __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x11dbf7e3 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x11de8daf ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x11bb86ee pinmux_generic_add_function EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11f12eee pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0x1205f9ec uart_console_write EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL vmlinux 0x1214137e skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x121739da ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1221fa5b __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x12272cd8 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x1228b933 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x12308983 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x1272f846 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x127e2056 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x12862ea8 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x12a2846c usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x12a5292a device_rename -EXPORT_SYMBOL_GPL vmlinux 0x12b394e4 mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x12d09519 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x12ebd03a fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x12351f39 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x123bdecb request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x123f4aca of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x125c9aa8 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x12847549 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x129c152b devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12a5de49 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x12b5475a regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x12b77a0e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x12c39265 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12d90041 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x12e08f9f fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x12e31ae2 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x12e3d39e tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x12eb7ea0 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f4d70d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x12f125c2 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x12f4a8d5 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness -EXPORT_SYMBOL_GPL vmlinux 0x130ff4de of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x130f285f ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x13135ee2 dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131f236e badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x1326c507 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x132f20af pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1322dced vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x133a1c28 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x1343541b phy_get_rate_matching -EXPORT_SYMBOL_GPL vmlinux 0x134799f5 nf_ip6_check_hbh_len -EXPORT_SYMBOL_GPL vmlinux 0x1349bf6b irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x134f3a49 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x134f56a0 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1339e8ec ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x1339f93e sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x135e7b36 rz_mtu3_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x1367b4d5 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x137e5940 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x138610b8 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x13747c37 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x1374aeeb of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x137d2cf1 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x1389d269 fsl_mc_device_add EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1391c9e6 regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x139afc22 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x13a222a2 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x13adc760 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x13a4cec0 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x13a4e267 rz_mtu3_enable +EXPORT_SYMBOL_GPL vmlinux 0x13aadad4 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x13b28e46 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x13b9e193 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x13c276c4 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x13c5ff8a phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL vmlinux 0x13c716dd device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x13bc2898 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x13be3444 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13cfb2bd wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x13d3e38f scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x13d84f39 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x13d486b1 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13e8c133 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x13db385e skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x13dbe68f dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x13dc10e2 tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13ef3509 devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x141f7ddd __dev_fwnode_const -EXPORT_SYMBOL_GPL vmlinux 0x14273f08 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x14327210 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x1434e60e usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x1447e10d wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x14548fea ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x1436d075 dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x1462b904 serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x146baf8a iomap_get_folio EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1478a315 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1481fade tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x1488c825 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x1477d1c3 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x14782139 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x14a1225f usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x14a3b8b5 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x14a5d858 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x14aecfca clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x14b50115 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x14b66aa2 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x14cb1fb5 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0x14e1a270 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x14990468 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x14a81140 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x14a91584 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x14ad2064 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x14d66d43 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x14ddb266 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f7092e pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x14fbcd5e __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x14fc901d mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x14fcdd26 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x15048694 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x151e32ee iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x1526188e of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x1504f5d3 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x1507a30d open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x15122f2d irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x151b12d6 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x151de3f3 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x151ff9ef mmc_regulator_disable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x15209de6 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x152f99e9 pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153dd277 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x15402377 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x1540f5f9 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x15454975 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x15477b7e sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x1547ce4b of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x154a2851 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x15478c1d xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155213ad sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x1557c54b regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x1578e427 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x156349df pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x15688179 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x156e3d6b dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x15733132 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1579de81 dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x1595392b pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x15a30d25 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x15a78c9f dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x158b7b7b crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x159b1477 devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x15aa3e30 devl_sb_register EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15b6c596 thermal_zone_device_register_with_trips EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave +EXPORT_SYMBOL_GPL vmlinux 0x15bf05fd sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL vmlinux 0x15e87c28 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x15c8a28f dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x15cb5cc7 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x15d4c719 failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15d99769 blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask EXPORT_SYMBOL_GPL vmlinux 0x15eb7eb3 fhctl_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x160b2b68 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x1621cc6a rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x162ee802 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x1634f39c nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x16358347 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x15ff0911 firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0x160267d2 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x16246d22 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x162a2acb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x1636d309 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x163add71 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164898a9 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x164eb1dd iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x1647f35e fwnode_connection_find_matches EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165e71fb devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x1664b5fa scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0x16739eb9 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x168a0c29 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x1690b3b3 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x16881a66 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x168879f3 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16aba34f vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x16b8178a bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x16c7e4dd ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x16927580 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x1698fa09 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x16a1e8a7 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x16a2ef3e perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x16b0d2b4 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x16b71916 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x16c976a6 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend EXPORT_SYMBOL_GPL vmlinux 0x16cb6a90 radix_tree_preloads EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dd941e i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x16deb84d irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e0f89b devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x16e854d6 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x16e900ab ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x16ed11d1 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x16ee7f5b cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x16e6b1dc usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f91c25 tpm_chip_bootstrap +EXPORT_SYMBOL_GPL vmlinux 0x16f7cb3a __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x16fc8bb2 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x170c0e6c regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17180c22 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x17192681 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x172a6c90 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x172be551 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x173c9846 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1716d2e4 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x17413fdd dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1752496e tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x175c41cb ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x175eb340 blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x17668655 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1776b2a2 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x1776bf78 trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0x177b1042 __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x17961b01 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x179a32ed vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x17aa4e2e cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x17b7c69f to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x17bbde8c usb_set_wireless_status -EXPORT_SYMBOL_GPL vmlinux 0x17c32855 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x17d15c18 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x177eacb8 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x17862b7d dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x17b473c0 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x17bc915c bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x17c3dd62 k3_udma_glue_rx_flow_init EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e23ca9 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x17e3135c usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x17f213de __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180a90ad phy_create -EXPORT_SYMBOL_GPL vmlinux 0x1821e9e7 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x18253244 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x18056a38 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x182c2d5f crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x1838acd5 xenbus_dev_fatal EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x184d9627 fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0x18678a50 pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x1849d21e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x184cffad mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x185c6293 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x18601d82 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x1864952b blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x186d6a68 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18761201 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x18895e94 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x18901a38 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x1891b29d ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x18a4faab wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x18af926f cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x18baf406 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x18c238fd is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x18d10413 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x187341cc tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x1873a2a4 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x188fb5b3 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x18c3502b br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x18cafda2 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x18d1be52 __traceiter_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0x18e115a8 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x18db3702 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x18dea8fa serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e81d04 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18ef8367 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x18efe08c iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18f51c3b ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x18fa8929 gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18ff2a4c dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x1910cc73 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x191ea07e __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x19038c1b devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x190e9333 nf_ip6_check_hbh_len +EXPORT_SYMBOL_GPL vmlinux 0x191334db hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x19155e61 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x1915e959 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x191632b0 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1925c035 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x1926a798 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x192e06b3 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1928cc55 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x192f1a8c vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x19307bf8 devm_pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x193282ae acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x1933ed3f device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x193f4436 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x193f6165 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0x1955748a pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x1959c40d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x196218c5 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x196f9b51 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x19701aa5 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x1978a766 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x197f1526 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x19989247 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x199952d5 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x19a09a74 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x193f3dc3 device_create +EXPORT_SYMBOL_GPL vmlinux 0x19449b01 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1944df81 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x19492405 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x194ab145 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x19528c63 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x195dcd56 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x19831c3e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x19889415 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1997a885 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a7f477 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x19b6f3e8 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x19b90943 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x19c1b610 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x19b3b4a2 onboard_hub_create_pdevs EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19c20561 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19d379e7 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x19e00002 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x19e2159e rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x19e7fa36 xenbus_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f07a2f bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19fcf113 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x1a017980 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x1a0a0cc5 regmap_field_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x1a0cf44d cdx_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19f576b0 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x19fd40c5 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a130761 dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1ae31f rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x1a2bccba i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1a3078f4 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x1a33cfd7 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x1a3de62a tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1a4bce2c driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x1a53c21a ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x1a226ba9 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x1a23201f scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a33e2da fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x1a36482b devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x1a3d7848 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x1a42458e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1a43891e ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a7c7b2e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x1a6fbea0 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x1a778a65 dispatch_hid_bpf_device_event +EXPORT_SYMBOL_GPL vmlinux 0x1a7c0a85 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1a7c2e10 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x1a7f50f8 debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x1a88091c cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x1a959121 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x1a9dbf5a device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x1aa76985 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x1a8ab1a6 hid_bpf_connect_device +EXPORT_SYMBOL_GPL vmlinux 0x1a8e0324 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x1aa5b1a7 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x1aa7a185 __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x1ab5002a da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x1ab51588 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ae6753f perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af6941b pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x1af41433 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x1af595f9 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x1afaa2fd proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x1b0271df ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x1afc198c clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b11971a acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x1b1845dd pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x1b29fe7d tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x1b2db084 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x1b3614da fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1b3cdb8d clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x1b3e0b52 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1b4f85be vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x1b5579f0 pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0x1b5af976 tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x1b5ce455 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x1b29c72d iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x1b2a3617 dev_pm_genpd_synced_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x1b2db815 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x1b3ecd23 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x1b533672 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b669777 mtk_pinconf_adv_drive_get -EXPORT_SYMBOL_GPL vmlinux 0x1b6ac047 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x1b65aba4 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x1b6bbaa3 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x1b739ef5 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1b74f847 __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x1b75e03c devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x1b7bfcda fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0x1b84b4d0 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x1b7f5a71 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b8ef6d7 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x1b8c4233 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x1b8d8f40 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b8e2c6f usb_free_urb EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1ba8809d devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x1ba8bd36 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x1bac8608 iov_iter_is_aligned -EXPORT_SYMBOL_GPL vmlinux 0x1bb044a4 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x1bbf760c vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x1ba5505d mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x1ba7dff6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x1bab488f iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1bbe72ad iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split -EXPORT_SYMBOL_GPL vmlinux 0x1bc72828 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x1bc734a8 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1be41cd4 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x1be56d1f evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x1be604fe fsl_mc_obj_reset -EXPORT_SYMBOL_GPL vmlinux 0x1beba5f1 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x1bf8d500 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x1c15424b of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x1c17a5d4 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1c19f03d get_net_ns_by_id -EXPORT_SYMBOL_GPL vmlinux 0x1c1eddd5 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1bd0ff6c rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1bdb9973 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x1bf452ed __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1c163709 thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0x1c204f02 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c216578 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1c257b02 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c26cf62 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x1c28e5bd pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1c2b67b3 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x1c2ec818 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x1c389444 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x1c399998 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x1c484e63 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1c5413e3 pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c593e5d gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x1c5a3a70 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5b4098 clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c68256b posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x1c6a169d platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x1c6f27ee strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x1c639091 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c70de95 mtk_mux_gate_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree -EXPORT_SYMBOL_GPL vmlinux 0x1c7acf9e tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c834414 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x1c81c69b iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c8d7a73 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x1c944a0f fsl_mc_obj_open EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1cadeb67 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x1cb79fed debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1ca544a6 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x1cabc0d4 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x1cad11b8 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x1cb0a271 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x1cb31dbb phylink_create +EXPORT_SYMBOL_GPL vmlinux 0x1cb6fb0f inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc04ba0 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x1cc3b0f6 devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x1cdb6683 i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1cf0b53c nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1cea6db6 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x1cfb17f3 cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x1d01ca18 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x1d037e0d crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x1d0c4972 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x1d0e0cdf virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x1d03fdfc acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x1d0a1ec1 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x1d12a395 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x1d13bc9b skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x1d15f01e pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d36bc72 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1d42a369 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x1d57ae53 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x1d60e9e2 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x1d6606d1 regulator_irq_map_event_simple -EXPORT_SYMBOL_GPL vmlinux 0x1d681aa5 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x1d7c791d dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x1d80c992 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x1d823869 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x1d8da29d sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x1d4d41cd pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x1d5072ca da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d627000 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x1d65532f blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x1d835be3 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1d878bd6 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d92a722 free_vm_area EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9c2867 debugfs_create_str -EXPORT_SYMBOL_GPL vmlinux 0x1db1199d skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x1dc1af12 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x1dd7cf84 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x1de115e8 ip_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x1de84945 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1dacdeb5 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1daf45d8 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1db3b764 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x1dcc4957 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x1dcdbed3 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write -EXPORT_SYMBOL_GPL vmlinux 0x1dec8e77 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x1df481d5 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x1df96c56 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x1dfa54be mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfec5b1 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x1e00ddc1 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x1e045d89 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e08d21a acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x1e1dfd0a tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x1e1f81a1 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x1e08a8b5 fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x1e208a78 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x1e221cb1 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x1e27e732 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn -EXPORT_SYMBOL_GPL vmlinux 0x1e2ce3c1 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1e3b22ef sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x1e41c394 __cdx_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1e3d9c2c trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x1e4003bd regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e5390d0 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x1e4440cf gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x1e453233 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x1e47908b sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x1e511e2a __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e57c7ea inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x1e57cab7 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0x1e5954d9 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x1e71df23 rz_mtu3_32bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x1e5e0293 dsa_stubs +EXPORT_SYMBOL_GPL vmlinux 0x1e78ac60 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e814e34 dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e868764 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea68591 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x1eac5d17 devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0x1eade691 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x1eb1142e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x1ea54eee devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1eac58a8 pskb_put EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec1dee3 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ec33903 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x1ed4956f bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1eda8a04 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1ee150c1 __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr -EXPORT_SYMBOL_GPL vmlinux 0x1eeab82d regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1f0831e4 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x1f0ee2fa dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0x1f180989 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1f023cc6 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x1f10a522 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x1f1beda9 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f1f7080 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x1f293807 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x1f2a2687 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f4286d3 vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4735dc gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x1f4e683b clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f6977e3 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x1f738d98 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1f75790d devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x1f7dbfd3 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1f845d79 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fa25faa edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x1fa48995 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1faa4a27 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x1fb6905d anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x1fcbd79c kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x1fd42890 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x1fe5dfda crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1fa674a5 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x1fb71b73 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x1fc4453a skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x1fdf7692 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x1fe1ef2a pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1ff0c26c clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x1fefe2ab switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x200895e4 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200dfa5e pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x2018db73 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x201b591b cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x2024fb8e __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x20290385 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x200f19a5 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x2013a24b __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x20151d7d meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2043119b of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x2046457b phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x2049e27d irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0x204d1bd9 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x2031a000 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x2043bdd0 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x204aece0 hid_bpf_disconnect_device EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x205131af powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x2051f832 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x2057e512 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x2058865f crypto_akcipher_sync_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x205cf4e7 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x207bf04b usb_cache_string -EXPORT_SYMBOL_GPL vmlinux 0x20835be5 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x2093bc53 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x2055872d pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x205aafbd dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x20656fdb regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x20735c17 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x20777d79 devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x207b0758 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x208e77a8 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20c70851 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x20df5ce5 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x20e807f6 mmc_regulator_disable_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x20e8d297 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x20f17c6d component_compare_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x20f8410b cdx_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x2105876b __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x211418a0 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x211978d8 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x2121a5ae ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x20b67f31 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x20c06376 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x20c7ca77 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x20cda75a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x20d7bba0 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x20db7b79 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x20f4abdb of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x20f4db6b __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x20f988e9 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x210818bf ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x2108686f sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x210dcc01 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x215df377 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x2127618f debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x21288eff vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x212c837e xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x212e3337 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x2132406d pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x2159e596 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2160ebbf sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x216865a5 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x216fabcb ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x21907feb kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0x21992b7f kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x217b08b8 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x21819ee1 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21c29298 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x21cac087 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x21cb1bc5 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x21aa9dc9 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x21ae443f bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x21bcb909 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x21c5dd34 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21cf8fde regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x21da9825 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x21fd59a4 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x2203eb56 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x220a0447 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x21e48840 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x21e5b4b2 nvmem_layout_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x21f62167 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x21f9f82e scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x220d23c6 ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2256b9de gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x22572320 meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x22672073 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x227d66c8 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x228ac763 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x228c4bc7 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x221d68c9 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x221e3cf1 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x221f4856 mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x2222c4b4 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x222a79b2 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x22321793 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x225abb5e iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x225f8dba dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x228b68a5 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x228ff3d0 iommu_map EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x2292c6f7 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x22c6d4d8 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x2290e617 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x22962dc7 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x22a3a558 spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22debed0 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x22dc0288 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x22e3c85e __devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x22e9dfb2 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x22eb2f40 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f006dd serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x22f530ec pm_clk_suspend EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x2314aaaf mtk_clk_simple_probe -EXPORT_SYMBOL_GPL vmlinux 0x231c3293 devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x232befab relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x23331d17 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x23392700 ahci_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x233a768c eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x22fe681d virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2308a511 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x2311944f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x23121993 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x23208a24 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x2325b957 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x233ddfc3 sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23415b08 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x23460422 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2348dc99 clk_regmap_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235d0fc9 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x236239f2 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x236b2b5a mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x235228cd pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x2362aa55 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x2381dcc0 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x23821a39 gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238d95f8 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x23885899 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239eb245 crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x239f7772 rz_mtu3_16bit_ch_write -EXPORT_SYMBOL_GPL vmlinux 0x23a26bee __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x23a6e195 crypto_sig_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x23af4088 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x239711bf pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x2398e46e __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x23aef0fd gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x23b32166 tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x23c6da04 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0x23c7b5ae edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x23c975a9 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x23ee3051 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x23fc705f xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0x24089eb5 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x240ad161 pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x240d088a i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x23d25215 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x23e61e3c devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x23feb566 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x240100a6 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x24047943 pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x24266368 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x24273ff5 imx_clk_hw_pllv4 EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record -EXPORT_SYMBOL_GPL vmlinux 0x24522794 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x2444702e inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x2454665d from_vfsuid +EXPORT_SYMBOL_GPL vmlinux 0x245f94b0 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x24604188 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x2461ce04 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246db50c devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x24805a5d priv_to_devlink -EXPORT_SYMBOL_GPL vmlinux 0x2481983d dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x2470a43a pm_schedule_suspend EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x24852826 __SCK__tp_func_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x248732d8 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x24874742 ahci_platform_suspend EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x248ed2ef __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x249c578f alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x24ab8d43 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24c61292 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x24cf6e55 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x24d54da6 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x24ad5d1c nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x24c2c454 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x24c33ebe kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x24d54607 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x24d58bcb crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e4fecc raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x24e807d5 dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x24e991b8 usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f239e6 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x24ecd9e8 blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fc222b component_master_del EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24fd5ae8 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x2502c147 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x25219cf0 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x2524eb8f fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x252bca5a sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x252ef81c virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x2504604b pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x250a9068 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x25105f99 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x2511b748 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25146bbe usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x251dea0c devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x2524fc86 regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2533180b devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 +EXPORT_SYMBOL_GPL vmlinux 0x2535480e __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25604e40 of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x2571934b crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2573db79 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x254392e4 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x2545fc98 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x255dc135 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2562f29e serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x25648aa1 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x2578cf88 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x258a1a93 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x258c33c5 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x25768fc8 thermal_zone_get_num_trips +EXPORT_SYMBOL_GPL vmlinux 0x258068dd crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x258d1aa2 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a101a4 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x25a6f90b bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x25b6131e irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x25964890 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2599ab81 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x259d51c8 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x25b095cb pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x25bb1e0f devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25bcd564 dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0x25bdcde9 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x25bcb1b8 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x25d31884 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x25dd27d0 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x25e50f65 device_iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x25e99c7f tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x25f480d7 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x25f56298 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x26018895 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x2602e3c8 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x261b8698 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x26249ffb pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x2625b9a9 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x263c7f1d pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x2642310d vcap_tc_flower_handler_tcp_usage +EXPORT_SYMBOL_GPL vmlinux 0x25d03bf9 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x25d871dc powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x25f5435f bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x26030a49 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x261e07bf devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26354235 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x26431cbb invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x2650a8e8 dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265c4426 extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0x265f325c synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x2661a57c devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x266b249a soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x26720b93 dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0x267941b3 __tracepoint_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2690134b irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x26a8841f rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26acec3c wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x26bdaec4 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x26c2d0d1 __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0x26c44a3b __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x26c5ad6d ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26c970b0 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x26d965a5 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x26e7bc9b perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x26ebfe4c crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x26cb3f41 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x26cd0d45 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x26ceee98 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x26cf5766 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x26dda6ba of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2703f143 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x26f2f1c5 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x2701a9f7 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x270a92f9 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x270c8e47 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x271006a6 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x2728010e genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x27291ed1 __bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x272a5303 vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0x272c632b iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x27066431 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x27175b8a irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x27320532 dev_pm_opp_get_power -EXPORT_SYMBOL_GPL vmlinux 0x2736c8e1 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x2746a9a9 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x275947ad __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x27701d7c ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x277179e2 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2772d34c blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x27373bb7 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x273bad62 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x273bde8a ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x2762c6fa usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x27638f4e __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x276a7cc0 tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x278385db dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x2789117b tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x2778ae0b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x277cb7a7 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2788743e xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x2788ebe8 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x2795fc9d vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x27a72198 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x27a72d4a ata_eh_read_sense_success_ncq_log -EXPORT_SYMBOL_GPL vmlinux 0x27be079d ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0x27c4e637 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x27dd1cc9 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x27a8dee2 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x27b7a2a4 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x27c2f847 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x27d2b8cc devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x27df22e0 stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0x27df3105 hv_alloc_hyperv_zeroed_page -EXPORT_SYMBOL_GPL vmlinux 0x27ed2f2e bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x27f0c00b elv_register +EXPORT_SYMBOL_GPL vmlinux 0x27f39075 virtio_check_mem_acc_cb EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f543f5 rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280adde2 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x280c3e7f fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x2810ae97 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x2804d9cb devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x28057c27 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0x2813a5b3 devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x2825e835 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x282a750f dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x2818f2ca vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x281b3e71 usb_bulk_msg EXPORT_SYMBOL_GPL vmlinux 0x282b3f94 __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x2830f41e cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2834b7d3 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x283fb678 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x2848eb72 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x284b69d4 usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x286497f7 irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x2873f114 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x286d4067 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x28743f67 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x28755904 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x28820575 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2890765e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x2886cadd rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x28a671de crypto_alloc_sig +EXPORT_SYMBOL_GPL vmlinux 0x28a7dff6 power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28aada55 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28ab1d56 rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28bbdb22 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x28bed32c sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x28bff8e8 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x28cbd0a5 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x28dfe62a skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x28fc39a3 mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0x28fcb3a0 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x290957b5 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x290bb387 dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x28baa32b pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x28bf35e1 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x28c5a74c ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x28c629b6 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x28d01b07 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x28d5bb45 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x28e468d1 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x28eef58a __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x28f5fd35 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291d6a24 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x291eeae6 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x292cee36 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x293719f1 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x293fa53c get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x29500f1e driver_find EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x29604e6b dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x295fe8dd __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x29622ee9 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x2969c446 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x297b9844 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x29865d5d devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x299baa86 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x29b552bf spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x29bdb9d5 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x29c622b8 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x29c87af5 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x29d2eea4 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x29d6e50a io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x296c51a4 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x297ea905 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x2988e00b au_platform_setup +EXPORT_SYMBOL_GPL vmlinux 0x2989d1b9 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x298c26d5 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x299d94b9 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x29a0c97f tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x29a9f351 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x29beed14 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x29befb49 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x29c061cc sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29d76a7c tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f2f013 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x29fd6999 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x2a1bb973 crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0x29fe406a acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x2a12fbd4 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x2a27c137 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a322388 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x2a3a1296 raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x2a4e6e63 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x2a54b9ce msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0x2a58378c nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x2a5d1a93 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x2a547c42 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x2a575363 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x2a576444 folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a61ada7 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a67871e usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x2a6d97e5 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x2a696a72 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a807492 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x2a86151b __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2a77b5ca pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x2a793c35 tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9aac54 vmf_insert_pfn_pmd EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2a9ffcbe raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x2aa58a49 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x2aa77e35 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ac682e5 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x2ae077f0 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x2aaeccec sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ab51538 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x2acb08b3 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x2acf5abd ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x2acf6ef4 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2ad7b19c dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x2ae11106 devl_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2ae396ee irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x2afdcd42 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x2b090b68 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x2b0ac6f2 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2ae9db1a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x2aecbe04 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x2af44f70 devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x2af5cbc8 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x2b0ae178 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b19b445 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x2b21bac5 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x2b30a312 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x2b400414 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x2b40f981 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2b17f9ad cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x2b2c3366 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b2de99e dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2b348a3e ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update EXPORT_SYMBOL_GPL vmlinux 0x2b572e3b init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x2b5e129a elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x2b5eca12 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x2b60052b genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b64ec8b vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x2b6d0c9d sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b78ceed bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x2b7d173c ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x2b851340 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x2b7403f9 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x2b7c2f1e devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x2b837869 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read -EXPORT_SYMBOL_GPL vmlinux 0x2b8bedd2 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x2b90e8ff icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x2b9669ab bgpio_init EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba41183 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x2bb4bc56 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x2bcc0375 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x2ba63b7b xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x2bbeb154 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x2bc2ba95 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x2bc9f099 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x2bccdb9e io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x2bcd0fa8 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x2bd28928 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2be3907d trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x2bfe2739 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x2c1761fd tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x2bff23de acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x2c0f231f usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x2c176cc3 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c27f788 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x2c2ef971 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x2c223316 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x2c2b1739 of_irq_parse_one EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c327124 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x2c5bc846 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c314bd7 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x2c494324 wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2c750eb4 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x2c79b852 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7fab6e sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c883334 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x2c8908c1 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2c8db09c __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL vmlinux 0x2c93541d pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x2c9679e4 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2c92cb56 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9ed046 dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0x2ca189f2 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x2cba6c08 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x2cc05e7f crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x2cc55ad9 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x2cc7dffc simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x2c9b8230 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x2cb72080 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x2cbc312d led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ccb56cb __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0x2cd3b5ae i2c_acpi_waive_d0_probe -EXPORT_SYMBOL_GPL vmlinux 0x2cdb4399 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x2ce17907 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2ce6dd22 k3_udma_glue_rx_flow_init -EXPORT_SYMBOL_GPL vmlinux 0x2ce75849 crypto_clone_shash -EXPORT_SYMBOL_GPL vmlinux 0x2ce9bc28 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x2ceb57d4 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x2cf9b889 kvm_vcpu_halt EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d19c4b7 crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2d14f02a register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x2d187f6e i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d203d4c uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d30f5cf fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x2d31dcfa l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2d36f981 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2d3b7906 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x2d3fa449 irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d46fb42 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x2d43c97b vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x2d4fbf02 folio_test_hugetlb +EXPORT_SYMBOL_GPL vmlinux 0x2d57f413 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d6b9989 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x2d6fea6c of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2d739aac power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x2d7c67da dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x2d98860a device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x2d816829 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x2d939f75 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2d9a5a07 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x2d9a61c1 mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x2da10c24 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x2da56097 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x2da73d1a pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x2da777ad blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2db7f566 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x2db98972 devl_region_create -EXPORT_SYMBOL_GPL vmlinux 0x2dbb5f91 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x2dc3d548 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x2dc97d26 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x2dcfbbda gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x2dd1ec03 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x2df45c3f imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x2db71518 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x2dcba1aa platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x2de6d994 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0x2de8886e phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x2deab2b4 xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e27441d mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x2e3a2638 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x2e3a4612 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x2e436c36 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x2e53c3fb gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x2e581cc2 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2e3ea7bb wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x2e5266fa fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x2e6062b7 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x2e609eba register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e694774 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x2e6de266 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x2e708a8f irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing -EXPORT_SYMBOL_GPL vmlinux 0x2e92c84c iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x2e79ed7a acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x2e7dac5d of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2e88d2d6 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2e973e7d pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2ea4e204 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x2ea63e85 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x2eb2edf2 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x2eba7d7d dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec0a6aa usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x2ec47d79 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x2ec63b61 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x2ec69543 dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array +EXPORT_SYMBOL_GPL vmlinux 0x2ed45c0e thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x2eda0112 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x2ee4ba08 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x2ed5df48 ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2eeaff10 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x2eedb1fa find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x2ef3e5d5 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x2f0b51a9 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2ef09378 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x2ef27284 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x2ef314ad platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x2efc9fb1 dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0da51a divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x2f10020e simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2f1828c2 disk_alloc_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f22dbdc sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x2f207a02 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f320f8e usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x2f32da26 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2f3fccc6 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4acf0c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x2f49a27e tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2f539bb9 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x2f5c84e1 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x2f5f7537 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x2f619300 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x2f63fe23 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f6aa5c6 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x2f7207d3 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x2f812b4c __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x2f9932ef iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x2fa41058 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f777c2b class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0x2f94b219 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x2f961e35 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2fa79c33 devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fb58d85 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x2fb59978 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x2fb35f56 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x2fb57b2b alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x2fb93ba6 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x2fbcdbab tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fd7f1ad phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x2fe51383 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2fc613ba of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x2fd038f6 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x2fef1ac9 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x2ff27332 device_register +EXPORT_SYMBOL_GPL vmlinux 0x2ff2c398 acpi_find_child_by_adr EXPORT_SYMBOL_GPL vmlinux 0x2ffedb6b hv_free_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x300ef004 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x300daa7f pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features EXPORT_SYMBOL_GPL vmlinux 0x3024ecad kobject_move EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x302c6277 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x302b127b rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x303383a4 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x303ba057 devl_trylock -EXPORT_SYMBOL_GPL vmlinux 0x3043b30a devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x305bc8ac devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x30512e7a nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x30526009 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x3056ff0c scmi_protocol_unregister EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3070318a pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x308528d9 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x30856172 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x30871607 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x309c24ff regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x30a42f17 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x30b29901 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x30bd94f2 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x30caa42f gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x30d0e30e devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x30d1d9e1 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x30e1b25a of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x306957e3 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x307f9fce pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x3091c544 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x30a44c4b regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x30aa1b30 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x30b9113d xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x30bb468f sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x30cde7e9 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x30d9a746 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30efe02f dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0x30f41ff2 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x30eb9459 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x30f8fa93 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x31003be7 inet_hash EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31020fce wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x31037927 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x3104a3f3 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x31103b2e spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x31165b99 max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x31226c24 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x312684bd devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x31296b14 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x3133ba9f fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x3134d432 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3138f0af spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x31467f02 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x314aea45 msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0x315a0cc2 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x315d3719 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x315dd63f get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x315f7645 vcap_addr_keysets -EXPORT_SYMBOL_GPL vmlinux 0x315f8e28 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3164d2b7 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x317746c9 k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x317815ac pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x318ef39a __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x314254bf ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0x3166df16 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x316b5cc2 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x31795675 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31935b7d __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x319be625 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x31975f1e cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x319d2263 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x31a2f54a firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x31a5433c gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31afc507 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x31b71cb8 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x31abf4b5 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x31c63ff0 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x31c7292c iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cad0f4 vp_legacy_set_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x31ccd057 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x31cd11dc regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x31c974cf generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x31ce4594 iort_get_rmr_sids EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x31d82061 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x31d92d57 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x31db2c37 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x31dc42f5 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31de0853 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x31e00c48 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x31e47f11 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31f52aa1 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0x31f64275 sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x31fc7134 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x3204d099 devl_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x32133402 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x3227edb8 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x31f237d5 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x31ffb195 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x320b9c6d power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x321d661c vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x323771aa switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0x324906de of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x3238e904 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x323cc86f devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x3264c687 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x32653696 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x32677630 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x326b3f63 clk_regmap_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x3276a164 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x32799657 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x3279d24b edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x327c73e6 __SCK__tp_func_rwmmio_read -EXPORT_SYMBOL_GPL vmlinux 0x328a320d tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x328cf689 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x32a89f97 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32923c58 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32983878 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x32a7926e pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32af3121 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x32b6f99b cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x32b97cdb hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cf156d mtk_register_reset_controller_with_dev -EXPORT_SYMBOL_GPL vmlinux 0x32d12f95 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x32ddd7ea serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x32dfdbfe pci_ims_alloc_irq -EXPORT_SYMBOL_GPL vmlinux 0x32e14e13 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x32e2925a scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x32f0cd67 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x32cdd14b tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x32da1dc5 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x32dec6cd trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x32feab79 __virtio_unbreak_device EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x33040ff3 tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x330aafb3 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x33191230 nvdimm_region_delete -EXPORT_SYMBOL_GPL vmlinux 0x331aa0f5 set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x331adc21 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x3331bc8b regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x33260b2c stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x332a392c ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x332ab60f cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x332c446e serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x334f0096 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x334053ac bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x3348c09a edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x3352823d cppc_get_auto_sel_caps -EXPORT_SYMBOL_GPL vmlinux 0x33553b80 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x335a613c mas_next_range EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335f258a component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x3388d535 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x338a7213 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x338f7342 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x33a216fa mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x33b2c2c0 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x33cd7406 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x33dead2d sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x33ee0d55 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x33fcaf72 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x34068cb0 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x3407f5a9 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x3409d806 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x341bf8f1 mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x337eff8c gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x338a672b register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x33b05b79 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x33b2e7e6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x33c1a91c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x33cb887e divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x33db9555 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x33e19c43 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x33e87eff usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x3403fb7b sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x341b0b8a usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x344a929a aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34555904 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x34616115 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x34618b75 devl_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x3465bb55 ext_pi_type3_crc64 -EXPORT_SYMBOL_GPL vmlinux 0x34668cd6 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x34701f6e platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x34542c84 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3454edcc get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x345c0fe6 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x345c8aeb input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x34616888 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x347b23d1 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x34861d7a metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x34883243 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x347c049b xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x348e0b3c vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x348f774e edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x3490031f rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x349a6629 dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34a8186c xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x34a839b3 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x34aa5fb3 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x34cb87a3 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x34a990f0 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x34abd206 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x34acec8b dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x34acfb70 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x34b6fcdf __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x34d25836 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34dfd570 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x34e43c29 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x34e8b8d7 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34ec831f ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x34f11a9d usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x34f2402e gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x350c57dd fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x34ec7dc7 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x3505f115 vcap_keyset_name EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x351e2dcd phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x35215fe6 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x352436c6 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3515359f usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x352685f1 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3527c77d ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x3529ad0d meson_pmx_get_funcs_count EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352dbbcd crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35301a19 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x3532e506 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x352fc782 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x3536f261 xenbus_dev_error EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x354725bf kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x355579f1 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x35558d80 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x3557b74a __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x35590d44 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg +EXPORT_SYMBOL_GPL vmlinux 0x356450f2 rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table -EXPORT_SYMBOL_GPL vmlinux 0x356ba304 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x3573de62 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x35719d6f extcon_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x357fe743 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x358c69af apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x357a3ec8 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x3580abf5 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3595b685 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35b85f13 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x35b345e0 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x35cd3392 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d6ef4d pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x35db5b86 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x35db9db3 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x35f0acbb devm_regulator_get_enable -EXPORT_SYMBOL_GPL vmlinux 0x361a97fa sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x35d4d59f iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x35d8ba98 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x35fb4d22 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x360b65da tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x360edcf8 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x3619c6bf ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x361cf2d1 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x3633ea61 timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0x3636d395 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x364ed211 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x364d7f56 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x36529761 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x36656d27 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x366c147f serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x367c8b35 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x367ecded mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0x367f7793 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x3660096e hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x36611a80 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x36660651 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x36838d1e __device_reset EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x36936950 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a4a129 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x36aaf4cb ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36b950ff pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x36ba4b47 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x36c0e8e4 dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0x36d0853f amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x36d48a52 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x36b24bfa vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x36b76cd0 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x36c36fe0 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x36c725ce irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash -EXPORT_SYMBOL_GPL vmlinux 0x36f5d9d8 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x36fae03b devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37048b1e k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x370dbf44 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x36e097a4 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x36e17643 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x36ebacca extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36fe7fed device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x3701c68b ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3719d2d6 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x37323ca1 pci_p2pmem_publish -EXPORT_SYMBOL_GPL vmlinux 0x37359047 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x374574a8 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x37179b61 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x371c5d6a __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x3721ad66 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x372f29b2 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x3737597d __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x37441f32 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x3744f786 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x3746cab2 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x37479e84 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3750bef0 phy_configure EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x37597a0a tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x3760a72c usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x37580c68 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x37616023 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x3764d12b of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x376a1aa7 edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x377cd670 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x378442e8 io_uring_cmd_do_in_task_lazy EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset -EXPORT_SYMBOL_GPL vmlinux 0x378f4355 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x3793ffcb fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x379af4cd register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x37b2517b ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x37b748c0 mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37cdbb54 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x37d53f96 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x37e1f16c rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x37ed8732 mtk_mux_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0x37f2a5a4 virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x37f913a4 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x37c510de iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x37c8e1fb blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x37d9626b __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x37e73b00 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x37e86e63 rz_mtu3_16bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x37ed098f acpi_dma_request_slave_chan_by_name EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x380d5a5c locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38122e7d dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x382e0082 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x38350c96 devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x3849522a usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x384b304d spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x384c258f regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x385c1112 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x383884f7 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x38397e4e vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x383c356a crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x385500a7 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x385fe6cd pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386b3653 bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x3878ffed usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x38935951 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x389418b2 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x38723d86 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x387e3545 clk_hw_forward_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x3883c151 fscrypt_prepare_lookup_partial +EXPORT_SYMBOL_GPL vmlinux 0x38889394 i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389c6981 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x389f3917 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x38a37053 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x38a24a97 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b2c8ab serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x38b37b66 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x38b25c79 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c83336 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x38cab375 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x38d15708 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x38d29225 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x38d494d3 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x38e069ef thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e2e158 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38e7b79c gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x38edb519 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x38f1610f devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x38f473ff usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x390b4fc4 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3918cd8b spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x392617cb dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x3927eb25 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x392e0f74 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x3918fece cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x392b6fe9 devl_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x392d9849 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x3930fc20 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x39380f06 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x3955b7c2 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x3956f967 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x39472f4f devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x394e2cdb ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x394fb324 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x39550085 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x3958ccb6 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x395ad9fe sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x395b4c1f qcom_smem_state_register EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x3979da2e create_signature +EXPORT_SYMBOL_GPL vmlinux 0x39638010 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x396e8de8 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x3976abff to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x3978399c gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x397cc964 of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x39865e9c cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x3987b753 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x3988127c wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x399d8edf inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x39a3e6cc ahci_reset_controller EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string EXPORT_SYMBOL_GPL vmlinux 0x39b24a64 imx_fracn_gppll_integer -EXPORT_SYMBOL_GPL vmlinux 0x39be3abd ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x39c0bd6e i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x39c18c1f iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x39c1a0d6 rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c338d9 fsl_mc_resource_free EXPORT_SYMBOL_GPL vmlinux 0x39c3c5f0 kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find -EXPORT_SYMBOL_GPL vmlinux 0x39cb152a dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x39dd6a6e tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x39ddc5e7 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x39d15886 __cdx_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x39d474d4 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x39d9b243 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x39dd7bbf pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x39de85a9 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39dee2e5 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x39df4f75 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x39e23079 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x39fcfb10 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x39edea41 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a11ea1a raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x3a127d01 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3a21ebc3 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x3a23f07e to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x3a24743b pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a41e7ad led_blink_set_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x3a435137 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x3a4a0c8b of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x3a2706bf debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x3a2f7b77 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3a4407e5 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x3a4bc837 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a57c252 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x3a5e49f7 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x3a63a379 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x3a6f34f7 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x3a728094 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x3a776bb4 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3a8e3adc register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x3a8effc8 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x3a92e757 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3a5762f4 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x3a60613a dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x3a672070 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x3a8a1681 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3a8be8db proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab277a2 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x3aa486e1 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x3aa58e80 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x3abb0cdb rz_mtu3_shared_reg_update_bit EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location EXPORT_SYMBOL_GPL vmlinux 0x3abe6fe5 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL vmlinux 0x3ac17251 devm_clk_hw_register_fixed_factor_index EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ac979fc usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad82974 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x3ad3b9e0 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x3ad416ef bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3ad4bd5a of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x3adb32bd key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x3adba5c8 iort_put_rmr_sids EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x3aebc494 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x3af1d2a9 io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3afeece5 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop -EXPORT_SYMBOL_GPL vmlinux 0x3b07b963 devl_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b0ab21e xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x3b18b01d fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x3b224bed preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b4986bc nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x3b03a767 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x3b109287 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3b2facc4 mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4f567d crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x3b50636d clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b64b1b3 devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b78d095 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3b7d3880 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x3b8bf14c tegra_bpmp_transfer_atomic EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba7fdcd ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x3bae50b4 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x3bbd1e48 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x3bcdd8c8 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x3babd7ca devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3bb3de7c fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x3bc693d6 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3bd6973e ahci_platform_enable_clks EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be10abc pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x3bee51b0 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x3be67638 vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3be73689 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x3bea6ae3 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bed3fe6 kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c001e2c tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3bf9abc7 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3c00bf16 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x3c0debfd folio_alloc_buffers EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c1a4dd4 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x3c19c9cc device_add EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1da4fa of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x3c1e4fc6 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x3c27890a set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c2cd35c sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x3c2db28c divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x3c380048 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x3c3a0e5f regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x3c3be1df dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c45a189 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3c48524f led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x3c55295b crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0x3c56080a ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x3c5aa822 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x3c48ed7b crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x3c53f456 user_update EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c5d7891 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x3c5ef321 pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6c8afc mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x3c73207a of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x3c7ac2f2 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x3c68b8bc dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x3c6a130e pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x3c6f24d4 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3c8375c0 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x3c898605 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x3c94918e mtk_clk_register_composites -EXPORT_SYMBOL_GPL vmlinux 0x3c978ef7 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x3c9c7c52 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x3ca0a03b inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x3cab817e usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x3caecd2b devl_rate_node_create -EXPORT_SYMBOL_GPL vmlinux 0x3cafc23b regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x3cb7dfd5 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x3c87f767 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c88b17b dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x3c9322b9 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ca631a0 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0x3cb88a62 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x3cbc874a fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x3cbc9512 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x3cb9293c pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x3cbe354c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x3cca802f phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd2d440 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x3cdb2dde fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x3ce73160 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x3cea16c8 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x3cef9829 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x3d0212ee phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x3d028252 of_msi_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x3d05c8eb __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x3d0c55e7 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x3d0e67ab of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x3d262ecc tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x3d339d4f usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3cda4a4b acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3ce668d7 blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0x3cf95a95 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x3d00ee77 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x3d2bc24c unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x3d386d23 pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3ea097 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3d4a8b4e __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x3d4e06e8 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x3d472ea6 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x3d4d21d8 vchan_init EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d7799e6 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x3d5fb797 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x3d638e3d fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x3d6805af virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x3d7997a9 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x3d7e7ad1 led_blink_set_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x3d84f54e blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d8b5d81 devres_release EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d978d66 nvmem_layout_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d9aeb35 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db1d2b2 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3db781f9 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x3dc0503c __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3dc09904 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x3dcf9469 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x3dd37fd3 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x3dd547ce devl_register -EXPORT_SYMBOL_GPL vmlinux 0x3dd583b1 crypto_clone_cipher -EXPORT_SYMBOL_GPL vmlinux 0x3de20905 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x3dcc5e92 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3dd89ae9 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x3ddc25c4 xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df16eb9 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3e000a59 mtk_clk_register_muxes -EXPORT_SYMBOL_GPL vmlinux 0x3e029b05 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x3e092914 ata_common_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e26d323 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x3e1b2688 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x3e1fccb9 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x3e24f205 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3e2a65f1 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x3e2ca827 fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0x3e31f3dc cg_regs_dummy -EXPORT_SYMBOL_GPL vmlinux 0x3e3c0dc8 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x3e3c344e edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x3e33d7a4 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x3e36944f bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x3e37c3f9 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x3e3ec083 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e41d475 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x3e591f2d ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x3e5c4f65 devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0x3e5e4abc dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x3e6d2777 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x3e6d9d64 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x3e6f8eb9 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x3e703005 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7336e7 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x3e8122f8 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x3e844a3b fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3e8b9371 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3e7cd35e wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e837f33 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x3e875b76 fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3e91be85 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x3ea29b2e debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3e92ae1a crypto_akcipher_sync_post EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea5949b xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eac961e dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x3eb716bf raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x3ed0d351 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x3ed951c7 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x3eb26644 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x3eb79a5a mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x3eb85f2a debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x3ec65b14 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x3eccb59b ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put -EXPORT_SYMBOL_GPL vmlinux 0x3ee681e3 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x3ee71693 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x3eebd4b0 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x3ee2c001 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ee2fc92 of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef59177 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x3ef86c8c usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x3f16f86a fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x3f1ea308 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x3efcbffd ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x3f0ed0d9 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f12d440 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3f1cd92a devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3f291972 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x3f30e8d1 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x3f333850 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f3ec9a7 meson_clk_dualdiv_ops EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f5260a1 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x3f62bde6 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x3f6fba8d vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x3f7af13f inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3f80ba32 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x3f4dd358 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3f57a3ba devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3f59f4a7 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x3f5fe538 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x3f6e6774 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3f72ad31 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x3f81439c dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3fa15334 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x3f898557 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3f8d050d iomap_release_folio EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fbb7a2a rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x3fbdfbf7 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x3fce99e0 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x3fb71e8f __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x3fcf1af4 fscrypt_set_bio_crypt_ctx_bh EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3feb9d85 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3fee1b66 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4000c43f do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x40099ad5 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400f734e irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x402b2591 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x403e34dc __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x4032e5ec of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4033b147 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x403daa09 mtk_pinconf_adv_pull_get EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x404b6516 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x4054b2f9 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x405830d8 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x4047a8af pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4053e27b inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x405f1762 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4070fff7 kvm_init EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40766d83 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407ba16a blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x4092c4d9 put_device +EXPORT_SYMBOL_GPL vmlinux 0x4082d167 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x40864826 strp_done EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40b0dd38 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x40bd361e serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x40cb54b7 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x409c9bd0 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x40b3b56d pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x40bd47ec md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x40e76c5c device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f32e61 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x40f6d681 devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x410f9575 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x4119d6f9 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x41107072 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x4111a07e ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x4119d1d5 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x411e8ce7 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x4124e34d serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413115a2 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x413364f7 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x41357451 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4144c1f3 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4157a447 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x416489aa vcap_find_keystream_keysets -EXPORT_SYMBOL_GPL vmlinux 0x416888b2 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x4170ef86 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x41752c69 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4181914d mctp_register_netdev -EXPORT_SYMBOL_GPL vmlinux 0x418679b8 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4181a388 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x418554c7 dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41933931 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x4193ac5d raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x419b1a52 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a88f78 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x41ae9ee4 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x41b1269d devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0x41b2d356 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x41b8e7fd devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x41b74937 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier EXPORT_SYMBOL_GPL vmlinux 0x41c36b9b __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x41caeda0 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x41d5ffba crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x41e898d2 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x41e7046f mtk_clk_unregister_dividers EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f446f3 mtk_eint_do_init EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x420dfac8 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x420f122d driver_find +EXPORT_SYMBOL_GPL vmlinux 0x42059723 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x420da448 mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4230d25c devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42415136 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x42458bf3 cdx_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4211e115 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x423d0437 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x42424048 device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x424bd52e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x425807d5 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x4258c93b vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x42591087 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x4264eddd gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x426c4d3d mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x4278d56a phylink_expects_phy +EXPORT_SYMBOL_GPL vmlinux 0x4279fdae scmi_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428d7992 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x429bb8c1 k3_udma_glue_rx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42a8c20e switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x42a9e9b9 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x42b5aa3f __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42d00b7d vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x42d15e54 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x42d20923 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x42d5e362 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x42c8c8ec ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x42d2b935 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x42daa50b amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x42e732cb vcap_rule_add_key_u128 EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42ff8843 rz_mtu3_32bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x4309700f usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x431794f4 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x4314fcbb regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x431cba18 usb_of_get_companion_dev EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x432f521a page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x43344734 devm_led_get -EXPORT_SYMBOL_GPL vmlinux 0x434c8375 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x435e30da driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4321d41d pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x43771ec2 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x437c18d5 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x437ead5f platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x437fe786 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x438ad413 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4394742a mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4395a2ac usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x439b686f crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x43a32c80 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x439bb906 get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b6b795 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x43b8c5bd spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x43bed2df gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x43b366af __io_uring_cmd_do_in_task +EXPORT_SYMBOL_GPL vmlinux 0x43c8a24a __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43cc3aef platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x43d30036 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x43dc74f3 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x43eaf2f0 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x43f7912e devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x43cc7ee7 device_move +EXPORT_SYMBOL_GPL vmlinux 0x43d08a20 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x43e73fe3 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0x43ee48aa net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0x43f6b7d7 kvm_vcpu_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43feda52 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x43ff61ea usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x43ffed61 software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x44050f6b xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x440e014e sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x4413b53a vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x44083348 ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake -EXPORT_SYMBOL_GPL vmlinux 0x44173648 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x44168f08 devres_remove EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass +EXPORT_SYMBOL_GPL vmlinux 0x44237ab4 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x442affd1 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x442eb11d regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4442afed fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL vmlinux 0x444b9d9f wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x443ad9e2 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x443dd254 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x44476c5c usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x4449bd2c __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x444f4658 blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x44634568 mtk_pinconf_drive_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x44699008 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x447120de sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x44570519 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x445dd6aa fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4467a092 imx_pinconf_get_scu EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop EXPORT_SYMBOL_GPL vmlinux 0x4475dcaf hv_nested -EXPORT_SYMBOL_GPL vmlinux 0x4477058d ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x44766a6e irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0x447f809c imx_clk_hw_pllv3 +EXPORT_SYMBOL_GPL vmlinux 0x4482a17f blkcg_punt_bio_submit EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448aac5a kvm_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x448b1576 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x44954c51 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x44a09b07 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x44a1d968 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44b9d390 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x44c82821 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x44c448e1 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x44cdcf4c perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d26f9b mtk_pinconf_adv_pull_get EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats EXPORT_SYMBOL_GPL vmlinux 0x44e58976 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x44f04726 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4511083c perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x4510970b of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x45115767 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x4518551b crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x4525b000 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x4531475a pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x4517da0a virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x451f2146 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x45313034 regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x45514729 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x45384f99 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x454cfd23 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x455b83cf phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x455f4e33 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x455fe727 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x4557877e l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x45598dec usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456fb918 mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x457104fb mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x45716f71 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457f0c72 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x458e5a9d platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x458f54b5 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x459d926d cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x459e1b5c stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0x45a5a191 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x45ac4df1 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x45b5e2b6 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x45b82a91 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x45bd8178 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x45c96e77 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x45cc329d devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x45c6244e of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x45c9f62a tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x45e5298d tegra_bpmp_get EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get -EXPORT_SYMBOL_GPL vmlinux 0x45ec699a extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x45f5ded8 md_start EXPORT_SYMBOL_GPL vmlinux 0x45fa3f11 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x45fe531c xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x45fbba71 gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x460280a0 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x46089119 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x460c5227 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x4622ffa9 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x460f4837 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x4611886c invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x46372a7d clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x46620e73 genphy_c45_read_eee_abilities -EXPORT_SYMBOL_GPL vmlinux 0x466f9b55 clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0x46787511 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x462f43a3 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x462fb712 mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x4646b6d5 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x464f1ad9 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x466ddc0e clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x466e48f3 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x4671dd65 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468a9089 iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a626ae ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x46ac03cd splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x46b4a6b5 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46b50268 filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x46be8e7c acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x46c277a5 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x46ce5fa1 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x46d82f99 shmem_read_folio_gfp -EXPORT_SYMBOL_GPL vmlinux 0x46da58fc debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x46e2ba28 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x46c051d3 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x46c3bdbf device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x46c49941 regcache_sync EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap -EXPORT_SYMBOL_GPL vmlinux 0x46f286b1 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x47090d2e ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x471a0c0b pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x46f8b59c devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4706b7d1 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x4712150d tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4724b191 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x472bfc57 vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0x472e48ec dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0x4737f6da sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x4743e571 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0x475e654b devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x472416a9 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x47286790 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x472d86b1 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x4734be99 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x473b6142 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x47505974 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x47609c92 icc_put EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4762c462 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x4763f85e dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x476461e8 __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x476c8220 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x476e0637 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x47757f8c regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4771bf55 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x4777ede6 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x47846adb devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x4788b8fd tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x478f8662 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4796f56f xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode -EXPORT_SYMBOL_GPL vmlinux 0x479d9aa2 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a9e72a class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x47a16292 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x47a3079e of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x47a47774 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x47a8016c mtk_clk_simple_remove EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b1b5a4 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x47c4aaac cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x47b15c1e cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x47bdeb41 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x47bf63e9 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x47c0fedf vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x47c5ef74 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d27f7d __regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e23808 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x47ec724a __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x47f7cdeb vfs_splice_read -EXPORT_SYMBOL_GPL vmlinux 0x47fd9a0e clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4801ba6d spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x47e0fc13 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x47e1d5cf pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x47e649ec device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x47e9c962 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x47f6dd54 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x47f760a4 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x4804955e fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x480c64e6 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x480a1d5a sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4812fc78 dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x481bbdb9 fsl_mc_get_endpoint EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x483793a4 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x483d6136 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x482b2827 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x482b3317 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x4846ae9d dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x484c149d proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x485000fb tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x4843fb3d crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x4847e743 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x484923ee dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4863d14d backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0x48657d8d pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x486838a5 __tracepoint_rwmmio_write EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x488cd604 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x488d2600 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x488f4646 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x4891f138 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x4873eded gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x487ec50f xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x48901669 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x48a0ca89 of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a7ec31 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x48a81f8f fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x48bbefde regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x48a5b363 vcap_tc_flower_handler_cvlan_usage +EXPORT_SYMBOL_GPL vmlinux 0x48aabc54 __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48c35c9e __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x48d4b15d ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x48f26956 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x48f56f90 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x48f7a271 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x48fae2f5 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x48cc875e usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x48d1e7d8 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x48d5540c scmi_device_create +EXPORT_SYMBOL_GPL vmlinux 0x48f71743 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x48fcdd95 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x48ff13e3 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x49049324 pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x490b8753 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x4906c4c6 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x492412c9 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x49279cfc fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x492a6244 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x492ca2fb devl_assert_locked -EXPORT_SYMBOL_GPL vmlinux 0x49340e61 devm_regulator_get_enable_optional EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4936b585 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x4937f540 spi_target_abort EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x494a0ad5 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x4959d049 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x493fb282 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x4951cc07 reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x4960aa91 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x49611037 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x49661804 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x496c2886 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x496d5697 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x496ef8a2 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x497ed01f devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x498c8f62 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x496f60ea fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x497fc6e5 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x4988ed62 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x499b13cf acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x49a240c9 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x49ac6590 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x49b2f3e2 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x49c6f04d gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x4993d3aa usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x49990b57 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49a15892 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x49b35c97 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x49bb479d sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d34ecb scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x49d56270 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x49d85fa8 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x49d9ef88 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x49e782a7 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49cf7b1c wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x49d60474 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x49e0ac3f rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x49e65e2d blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a13b5cf regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x49eca249 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x49f009dc devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4a0cd233 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a0dabb0 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x4a17c3d0 bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a19fc4c find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x4a2c17e0 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x4a31d0e5 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4a34761e sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x4a36d238 component_del EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a53c3fa vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x4a5f1e0e xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x4a6d3051 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x4a7315e8 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a890b08 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x4a966a42 udp_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0x4a9df109 thermal_zone_get_num_trips -EXPORT_SYMBOL_GPL vmlinux 0x4aabf0d4 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x4ac09f83 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x4ac3a366 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x4ac59b41 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4acd5761 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x4acffa9b fscrypt_limit_io_blocks -EXPORT_SYMBOL_GPL vmlinux 0x4add9886 cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x4ade7e34 icc_put -EXPORT_SYMBOL_GPL vmlinux 0x4b00bdd2 rz_mtu3_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4b00c4ae fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0x4b1c1e42 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x4b20897a iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x4b2ad586 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x4b2c8bb1 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x4b57e571 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x4a448e71 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x4a5d3017 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4a5f3740 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x4a6491f2 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x4a816cc7 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4a84e180 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x4a92f9b0 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x4a967f1c usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x4aa88520 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x4abc021a udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x4abeffd5 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x4ad42776 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b01ce8c devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b0986c7 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x4b11beb9 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x4b1566a4 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x4b195550 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x4b1e0292 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x4b433ebb peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4b52006b perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b632d4e irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x4b67ffa3 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x4b7582d6 thermal_zone_device_id -EXPORT_SYMBOL_GPL vmlinux 0x4b857084 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x4b5b120a hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5cd46d debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x4b5ec580 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b64032f perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x4b66b337 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x4b6d3824 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x4b6eef4e hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x4b7e8f57 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b945ab2 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x4b954353 of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4b9581ca devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4baaa6aa sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x4baade47 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4bb7d153 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4b9680c4 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x4baeb71b aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x4bbe7a73 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x4bbf4f39 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x4bc10d06 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4bec513f __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x4bfb11a3 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x4be7dc79 mtk_devm_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x4bea242b trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4bebedb6 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x4beed30b mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4bef9b3e crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x4bfd08af devm_register_sys_off_handler EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x4c091f92 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x4c103ce6 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x4c1bab55 class_register -EXPORT_SYMBOL_GPL vmlinux 0x4c256f6d xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x4c276385 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x4c04353a uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x4c20dd97 xenbus_read_otherend_details EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x4c3f1dc0 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x4c473b3f sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4c4a4c35 genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x4c5f348e acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x4c7664dd mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x4c72ef56 bdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c96c055 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x4ca20081 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4cae3490 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x4cb05702 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbc3de6 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x4cc5d3c7 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x4cccdc57 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x4ccffc1b sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4cd63f0a mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4cdb5173 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x4ce37f15 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0x4ce63339 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x4ce9abd1 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x4ceb7da3 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x4cc3e4d1 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x4ce0f137 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d227697 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x4d23526d blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x4d1c04eb clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x4d2c230d bio_split_rw -EXPORT_SYMBOL_GPL vmlinux 0x4d2e5ac8 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x4d2c5051 devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0x4d32f61e __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4d379924 gfn_to_memslot EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d3f99b8 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x4d4aef9c usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x4d4bc577 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x4d4c1309 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x4d58ec07 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4d3e6e67 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x4d41a223 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x4d51a325 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x4d5fa319 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d7beecc bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d8b95ed acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4d95eba2 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x4d967a91 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x4d9b3056 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x4da7de0d irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4daa3693 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x4dab94a2 vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db80e85 rz_mtu3_8bit_ch_read -EXPORT_SYMBOL_GPL vmlinux 0x4dbc3f46 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x4dc03360 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x4dccf105 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x4dd17bfd __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x4ddd45cc device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x4db35178 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x4dc8fbf3 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x4dd0729b pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x4dd07c86 tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df34f74 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x4dfee50c scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x4dfefcab power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4e0ea14c blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x4e10fe77 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x4e12f918 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x4decb082 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x4deed684 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4df4fd4f __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4df57d44 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x4dfb6578 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x4e05fc0b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e0937f9 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x4e156271 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x4e168d0a __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e18e8d0 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x4e1f4859 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x4e27bb42 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x4e28e5d1 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x4e292042 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x4e18ff8a pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4e1f960d trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x4e2246e2 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4e312d0c of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x4e32c6c1 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4e374cfa __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x4e3c197a nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e410e57 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4e49a588 nvmem_add_one_cell EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e4e4a08 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x4e51adb6 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4e5bd59e fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x4e63883c wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4e54f9f8 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x4e5b1fbc xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x4e5e6771 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4e5fd38a tcp_abort EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e6ade04 create_signature EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop -EXPORT_SYMBOL_GPL vmlinux 0x4e7cd676 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x4e81a165 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4e906751 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x4e9e0e09 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x4eaa7e63 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4e8812f7 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4e88bc74 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4e9c3ff4 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ebcc131 scmi_device_create EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4edc9451 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x4eed4809 irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f103d4c sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x4f170943 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4effdfd0 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x4f03523e cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4f0846bc acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x4f0cfee3 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4f0f93d0 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4f1510d8 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f29e5a0 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2d887e blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0x4f30c8d9 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x4f35d99d debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x4f4094c5 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x4f47808c rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4f5a83fa pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x4f693590 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x4f3b1136 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4f42716c efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x4f49ecc7 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4f4bbbd1 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4f55a859 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x4f604856 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4f625d3b crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x4f6334cf ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6cceb0 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7cb4ee device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x4f84858b dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x4f810204 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x4f84cd3d of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x4f85971b key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4faf02fe nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f9f74f4 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fb9e930 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x4fbdd732 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x4fcd938f spi_split_transfers_maxwords +EXPORT_SYMBOL_GPL vmlinux 0x4fd12f4b fsl_mc_bus_dpsw_type EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdff9f0 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x4fddf907 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe49790 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0x4fe875af meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0x4ff125d6 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x50002cdc dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x50098713 device_create -EXPORT_SYMBOL_GPL vmlinux 0x500a14a0 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4fee869b fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x4ff656c6 sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x50186e8d devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x50256bf0 debugfs_create_str EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502fb9ba scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x50370ea7 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x503e3157 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x503ff054 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x504a85d1 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x5074f545 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x50269218 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x50463607 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x504db23d usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x5056eb22 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x505a3efe devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x506255a0 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x506ae7a5 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x506b7364 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x5072488b device_find_child EXPORT_SYMBOL_GPL vmlinux 0x507804ba group_cpus_evenly -EXPORT_SYMBOL_GPL vmlinux 0x507a369e tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x50881cd3 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x508362c1 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5084efaf acpi_dev_ready_for_enumeration EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x5093e76e __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x509dfda0 fsverity_get_digest -EXPORT_SYMBOL_GPL vmlinux 0x50b97559 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x50bc4c70 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x50c73245 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x50cdb5d3 netdev_sw_irq_coalesce_default_on -EXPORT_SYMBOL_GPL vmlinux 0x50db5cf9 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x50b2a064 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x50bf2211 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x50c11fb1 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x50c894c7 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x50d23ee2 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x50df1bfb dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num EXPORT_SYMBOL_GPL vmlinux 0x50eabb98 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x50efd0b0 fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x5104522a dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x510ca044 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x510ca73a skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x50fb79ee led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x50fd32a5 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x51168191 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x511a975d fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0x511fb9b1 mtk_clk_unregister_pllfhs -EXPORT_SYMBOL_GPL vmlinux 0x512ac667 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x512b7dcd acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x5121b5a5 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x512f7e3e __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513e84e1 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x5140a9d1 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x51458591 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x51489982 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5148e649 ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x5156b1b6 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x5159ae6f scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x5159e99f register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x515747a7 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x515dac83 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x5175bb8b pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5180cdac wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x518a3f8d espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x518da2e0 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x5198e62a securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x51a13351 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5188aba3 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x518a8db0 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x5198e6eb iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x51a33a22 __put_net EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a7730b gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b05cfc sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x51b08e71 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x51b6a3a6 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x51c13c23 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x51c1b274 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x51c208a0 mtk_clk_register_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x51d1887b usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x51e5e3f0 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x51ebf4a6 mtk_clk_unregister_composites -EXPORT_SYMBOL_GPL vmlinux 0x51f13373 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x51f523b2 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x51b2f83c dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x51b68a4d crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x51c15db6 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x51d47bb8 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x51e9a88b devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x51f31f8f i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x5202f411 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x520332e4 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x5208e0a3 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x520b8e79 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x521d0ee9 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0x52213722 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x5224740d ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5225f573 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x522ba631 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x522d99e9 make_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x522fb88c gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5244eadf ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x52526c83 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x52595b27 of_get_pci_domain_nr EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x52715c29 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x5274c0f9 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x527d4791 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x52807529 rz_mtu3_shared_reg_update_bit -EXPORT_SYMBOL_GPL vmlinux 0x5288707c fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x528ac8d9 devm_thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0x52a01a58 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x5266bb0f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x527baa7c skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x52825e60 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x528be62a rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x529b8711 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x52a7e3fa od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x52aaa505 class_register +EXPORT_SYMBOL_GPL vmlinux 0x52ac501a nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x52b1a2c7 dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b4494e __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x52b4190d host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x52b62fb2 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x52b7d200 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x52bd102e debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52dd077d inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x52de22c8 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x52eb0b47 crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0x52df94f1 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x52e5ecd1 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x52eadc47 call_hid_bpf_rdesc_fixup EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x52f4f130 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x52ff9362 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x53007753 register_btf_fmodret_id_set -EXPORT_SYMBOL_GPL vmlinux 0x5304591b nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x53052b5d swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0x530b7c03 sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0x530cb649 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x52ee0671 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x52fd261f tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x530d56be sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x53141545 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x53180c11 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x531c61ba _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533077aa sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x53335f35 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x5346b96e serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5348bbde blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535b243b mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x536db5e5 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x535fc925 stmpe_dev_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x53796702 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x538a9544 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x537a80f2 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x53841a72 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x5387eaa8 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x5388d8b3 component_release_of EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x539da01a pci_p2pdma_enable_store -EXPORT_SYMBOL_GPL vmlinux 0x53a6bb08 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x53a80c6b kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x53a9b1d4 device_register -EXPORT_SYMBOL_GPL vmlinux 0x53adfaf8 icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0x53bbee01 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x539aafdb devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x53b9d9af ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53d7bda3 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x53c09b31 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x53d097e5 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x53d362d4 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e9ad5a fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0x53ea3925 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x53f5c99a get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x5403efc2 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x54050b2e trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x5410c77b dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x53dd85c6 serdev_device_break_ctl +EXPORT_SYMBOL_GPL vmlinux 0x53de7c10 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x53fb3552 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x53fd61f5 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x54050635 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541e4c3c extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x542d5874 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x543669cd tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0x5447993f devm_register_power_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x544adc96 devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0x545224be invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x54255351 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x5426f2ed usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x54327e9e shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x54461eda pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x54505564 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x54579a6a blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5466ef3b blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x54697665 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x546ca010 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x5473a2e2 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x5476e081 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x547e0069 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x548158bb pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x548170a6 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x54667158 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x5477442d power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x5484073b virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x548537df devres_find +EXPORT_SYMBOL_GPL vmlinux 0x548ebf3d acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5495c06b skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x549653c7 device_attach EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54ac60b6 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x54b81648 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x54c1c926 tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0x54cae7bb irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x54cd6672 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x54e00df5 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x54f629f2 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5507f9d7 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x54c65113 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x54dc5e62 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x54de139b sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x54e460cd mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x54f62dc0 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x54fcb9ff devres_release EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551012e6 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x55151fcf clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x55153e0f __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x551a6096 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x5524c099 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x55273607 dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0x5529093a kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5525418e noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x552f95d7 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x55314e0f regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55371bb2 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x553902b8 devl_trylock EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553c4fd1 pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554498e9 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x5559d295 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0x555bc18f regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x555ca18c dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0x5560863b tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x55588ba1 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x5558d2b9 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x5559289b pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x55595608 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x557163fd lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x5571a131 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55870617 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x55954ebe ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x55b61bc9 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x55b8cfdd crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x55bc18bf sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x55c6c5fc ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x55892826 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5598b92a serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x559f8dcf fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x55a0ad7f dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55cd22ef of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x55ce0b73 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x55d775a1 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x55d77ce7 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x55d8ea92 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x55da84cd bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x55dba51a gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x55dc8de9 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x55ecef39 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x55e8ff69 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x55ec61c7 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x55ec96fc sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55fc4210 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x560e8240 ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0x561375bd tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x56214cea i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x5624f826 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562b35e5 mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5640975a dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56418b59 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x564539db cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x564f6c38 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x56522c14 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x5667cd5b usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x567912be shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x5690844f acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x5690845f of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x56908a0c pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5693ad94 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x569e0242 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x56a6b442 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x56abfc17 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x56b34b94 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x56d0ae12 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x56d3c17a iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x56d6f1b5 thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x56e892a6 crypto_alloc_sig +EXPORT_SYMBOL_GPL vmlinux 0x5648f962 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x56c72644 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56eea2a9 pci_iov_get_pf_drvdata EXPORT_SYMBOL_GPL vmlinux 0x56ef15d0 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x56f46a9b bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x56fb4081 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5703d22b pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x57074308 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x5708649b vp_legacy_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x5715e715 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0x57245009 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x57376dab gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x56fbc91a bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x56fd81d7 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x57004a87 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x57126e83 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x571bc987 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x571d505a ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x572b737a extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x573fb429 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574cccc1 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x57536da1 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x57597d51 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x575e0faf of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x57622f80 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x5765953e nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x576cbb92 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL vmlinux 0x57738446 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5773d4a8 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x57764b47 thermal_zone_device_type EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x57908912 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579881ee handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x579acf02 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b99e17 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x57a67372 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x57c1b6c8 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x57c58e9b __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57db3f9c regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x57e4df12 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x57e5b81c genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x57ef1fa4 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x57f27d5a of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x58046dda pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x581fe23a tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x581d2e54 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x5831a419 pci_ims_alloc_irq EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5859ec5d rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58345534 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x5846f3d4 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x58512cfe regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5864b9d5 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x5869c34e acpi_gpiochip_free_interrupts EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x587986b1 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587f259b dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5880f864 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x5886fe6c altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x588d7653 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x58bd3efa ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x58c950a0 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x58d25165 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x58d83a01 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x58859926 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x58949ec1 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x58bbb581 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x58bf39e8 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x58c33a0f rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x58c54258 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x58c9ac9f crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58dd28d5 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58e18906 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x58e29616 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x58f5e92e dw_pcie_ep_reset_bar EXPORT_SYMBOL_GPL vmlinux 0x58fa50c0 __traceiter_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x58fd934c ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x59083e33 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x590d9b1a irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x591ff022 vcap_is_next_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5933bcb8 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x593636ab device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x593a485f ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x59012784 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x5906ebc4 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5917d3ec crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x5927fc89 spi_split_transfers_maxwords +EXPORT_SYMBOL_GPL vmlinux 0x592a12d9 devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x593ac537 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x594826e6 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x594ab2af acpi_dev_state_d0 EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x595ab422 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x595bf706 trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0x596dda39 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x598618d6 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x595ec891 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x596619cf dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x59688e1d fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x597357c4 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x5991e9ea rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x5992dd5e devm_regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b4905e devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x59befcb7 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x59ba0e7a tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x59bb2ccc pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x59c3faf8 phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59dfd8de __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x59e21dcc __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x59e16281 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x59e39b2e list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x59e4e8bb devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59ecb0a6 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str -EXPORT_SYMBOL_GPL vmlinux 0x59f134c2 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x59efde27 phy_put EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x59fff0c5 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x5a07c7d7 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x5a125a9a da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x59fa3f64 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x5a014101 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x5a113f13 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a19b37c ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x5a1bdf55 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x5a14132d devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x5a23cf02 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x5a3748c7 mtk_clk_dummy_ops -EXPORT_SYMBOL_GPL vmlinux 0x5a416b19 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x5a2a2b3b hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x5a469961 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a529c3b dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x5a534a38 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x5a603242 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x5a62d20c ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x5a6b1d7e crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5a4bac10 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x5a4ff6e1 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x5a55785d dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x5a644860 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a6fda86 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x5a73f858 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x5a757aa9 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x5a77a943 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5a6ef6dd kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x5a75e8a9 bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a8002dc spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x5a9ec60c folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x5a8125df skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5a8cb997 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x5a9c5c69 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x5a9e5006 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x5aa1a590 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x5aa2e0ad iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x5aa61729 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5aba4d1e badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x5ad03d6c stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0x5ad32ada of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x5add32a3 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x5ae2e60d component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x5ae5a937 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x5afa0e41 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x5b03d3bf spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x5b0585c0 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x5b08cb3b serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x5b0eddea regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x5ad963d8 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5afc4bd7 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x5afc722e __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x5b10a770 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2aefef mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x5b233bad auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x5b29c787 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x5b2ca72e dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x5b4055d2 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x5b48f1b3 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5b41c9bc mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x5b4373ba inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x5b470f27 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x5b4d0cf0 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x5b50af89 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x5b533297 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x5b66a79d fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x5b7bdc5b rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x5b830bab iort_get_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x5b5249c9 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x5b59b815 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x5b6c78eb dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x5b83d7ab __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x5b89f60b fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5ba9d253 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x5bae3db8 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x5bb4de71 input_class -EXPORT_SYMBOL_GPL vmlinux 0x5bbc67fc devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x5bae4b1b __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x5bc93001 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd19c10 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x5bd2a2c5 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x5bd2a868 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x5bd3a9ef kvm_get_kvm_safe EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x5bdb1532 dpcon_enable EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bf12cf0 xdp_features_clear_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0x5bfe9fd6 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x5bffb2e4 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x5c013bb2 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5c04daaa pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x5bf02125 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x5c01a539 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x5c05aa7a xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c2d13f6 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x5c2fbbb5 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x5c368068 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5c37806c cdx_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5c1a3880 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5c1f768b __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x5c265b82 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x5c2b0159 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x5c38ac15 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x5c3ae005 devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c4ba025 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5c3c6f7a __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x5c49987d gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x5c4e0b61 devl_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x5c523273 pinctrl_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5d2d80 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x5c6217c9 mtk_clk_gate_ops_no_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0x5c628f28 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x5c73d4f0 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x5c750e99 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c7b6dd3 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c855199 pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cbb6fa1 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5ccad696 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5cce8e93 fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x5cd86a24 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x5cd026f6 mbox_bind_client +EXPORT_SYMBOL_GPL vmlinux 0x5ce3cf53 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x5ce52354 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf4a594 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d04ca0d iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5d06ce80 led_get -EXPORT_SYMBOL_GPL vmlinux 0x5d08e76a fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x5cfd54d3 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x5d054a14 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x5d069141 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x5d11e4e9 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5d12845b phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x5d0cd3d9 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x5d1051a0 __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d24d306 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d19ecbe usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x5d244883 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2e1e0c sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x5d356cc4 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x5d4faa91 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x5d570915 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x5d8049db nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x5d80686a rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5d2c4abe nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x5d370675 devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x5d4551c1 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x5d533083 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d5d9fd9 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x5d61fee5 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x5d6a6a95 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x5d6a7607 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x5d795a07 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x5d821042 ethtool_dev_mm_supported EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d85bb62 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x5d8ea4bd pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x5d986ea0 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x5d8b745e regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d9fe531 trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dae571a fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL vmlinux 0x5dc945b6 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x5dd4ab9f led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x5ddfe6e1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x5ddec4cf kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5ded0239 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e09827d xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x5e0dee6f evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x5e16f2fb debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e3db90a device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x5e1c58ee bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x5e222d6f sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x5e266019 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x5e3ea0c7 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x5e47ee10 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x5e483412 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5e4be114 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x5e50b80c driver_create_file EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5accdc xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x5e646ef4 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e8c712a static_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x5e8e9826 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x5ea297da blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x5ea64d64 devm_of_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5e886a11 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eafad43 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5eb62414 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x5ec6a71d nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5ebb2b4b kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL vmlinux 0x5ebe9c2d usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5ebf868a i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5ed55095 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x5ee2837e ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x5eced86f sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5ee63a35 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5ef2ebb3 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x5f13a40c fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x5f02dc6e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f03ebb3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x5f148f90 bus_register EXPORT_SYMBOL_GPL vmlinux 0x5f2309c7 __tracepoint_rwmmio_post_write EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f27bf17 crypto_akcipher_sync_post -EXPORT_SYMBOL_GPL vmlinux 0x5f2f2c70 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x5f2b78b4 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x5f33361a iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x5f3b7fb3 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x5f3f0c82 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x5f59c882 mtk_clk_unregister_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0x5f5a80ed debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x5f5b5490 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x5f3ec09a pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x5f5ab65c ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7e4aa7 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x5f9252e8 devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x5f971a81 component_add +EXPORT_SYMBOL_GPL vmlinux 0x5f7c12fb pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x5f7c5ea1 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5f8fe5ee nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5f97c975 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x5f9b6521 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fab493d spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x5fafe79a stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x5fb1177f fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x5fa8776e pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start EXPORT_SYMBOL_GPL vmlinux 0x5fbb1de5 acpi_cpu_get_madt_gicc -EXPORT_SYMBOL_GPL vmlinux 0x5fbdf888 __irq_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x5fbfcbf8 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x5fd3dbf7 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x5fe5d9a5 ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x6001ad3a of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fd03da8 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x600839df dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600e6c01 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6017b831 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x6021559b fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x602e6fbd dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x60345fbf devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x60102f6b fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x6014bc41 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x601da406 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x601deb25 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x602106a8 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x603c8802 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x603cffc3 pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x604116ff sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x604f2ae7 pci_p2pdma_add_resource -EXPORT_SYMBOL_GPL vmlinux 0x60563ad3 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x604d7688 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x606f7c52 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x60727ef7 devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x60915862 bio_poll EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60976260 spi_transfer_cs_change_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x609f3e94 clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a53608 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x60a9147a driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60b8d911 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x60ba0b5e regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x60c7fd7c skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x60ca9a18 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x60d86d05 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x60d8a120 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x60dbc3ea extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x60bf4692 kvm_get_running_vcpu EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f13cfa percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x60fd5715 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x610a91d2 pci_p2pdma_enable_show -EXPORT_SYMBOL_GPL vmlinux 0x6110eef4 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x60f02266 vcap_chain_offset +EXPORT_SYMBOL_GPL vmlinux 0x60f064af gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x60f0c4b9 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x610a716a subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x610d37ce pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x611ad7f2 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x611ba9b7 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x6123100c usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0x61233a62 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6120590f netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x6126cd40 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x6131cece meson_sm_get -EXPORT_SYMBOL_GPL vmlinux 0x6144e8ae generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x6133490c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x61375df8 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x61596531 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x616b8c67 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x6150c88f __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x61561640 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x615dd706 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x61718dd3 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x617ef3d7 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x6181c9e8 acpi_bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618f64f9 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x618f6a46 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x6198661d edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x61a4734a mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x61b95afa devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x61ab0d95 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x61ac54e0 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x61afcbaa fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0x61b6eeb2 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61bf9275 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61c51ec4 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0x61cbf3ec dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x61cedaf8 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x61dedba3 devlink_port_register_with_ops -EXPORT_SYMBOL_GPL vmlinux 0x61e1b3f5 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x61d18d6c dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x61e5174c dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x61f1644b mas_find_range +EXPORT_SYMBOL_GPL vmlinux 0x61f209ff compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61fc6ce6 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x620777bb regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x6219b370 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x621f7e61 usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6232e03c adp5520_read EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x623c21fc ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x624491ad dprc_get_obj_count EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x6246cdaa md_run -EXPORT_SYMBOL_GPL vmlinux 0x62493e5b device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x624a7d31 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x624e526d screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x626ba57a gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x626f0f25 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x62980e18 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x627fca28 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x628a16cb cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6292ea5d mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0x629e6064 phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x62a4a033 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x62a35249 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x62aa8f32 wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x62abdfb8 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x62ad13e7 thermal_zone_device_id +EXPORT_SYMBOL_GPL vmlinux 0x62af6077 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x62b2338a usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x62b6a4f7 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bd920e devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x62d0e176 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x62db3721 phylink_create -EXPORT_SYMBOL_GPL vmlinux 0x62de2272 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x62e88530 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x62f9ef1d rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x62bd8877 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x62dc9008 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x62e33561 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x62e41279 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x62edba87 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x62f52cef devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x6300f369 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x6310ca09 devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6315c24d fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x63489a56 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x63201c62 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x632a9ed2 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x632d1fc2 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x634448e6 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x635be3aa l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x63673f8b i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x636aa043 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x636b1b18 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x6374e210 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x638848ea __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x639aaae0 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x63a59706 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x63a653b0 __traceiter_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x63bc247f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x635d7b31 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x6366b64d dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x636f94ee hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63734b93 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x6374f4a0 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x637514b3 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x637b5fc1 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x63811e6a mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x63a14ec3 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c0802b of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x63cd7173 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x63ce4546 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x63d31495 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x63e14a24 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f06918 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x63f981a5 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x64069841 gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0x641502e6 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x64203e88 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x6400d801 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x6401c2c4 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x6406d896 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64096049 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x641279f6 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x6426b9f1 gnttab_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x6428e50e follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x642da3e2 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x6431bad7 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x643e90d2 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x644973c6 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x644d830c iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6457726e of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x64639548 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x64641e20 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x6467425a __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x6474cfba pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x644cce8c acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x64512117 mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x646e643a pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x64833846 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x647bc964 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x6488788e virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x6494ead7 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6498b46a device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x64a03e95 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64a47096 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x64a6bf44 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x64b1a47e vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x64b697c6 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x64c5131b __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64d4bfc0 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x64aa2edf skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x64aca554 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x64b27dd0 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x64d05875 vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e7fe27 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x64e815c3 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x64ece818 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650c2f8a of_device_compatible_match -EXPORT_SYMBOL_GPL vmlinux 0x6511e458 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x65058b31 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x65207600 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x65225de8 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x6522bf0d pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x6524055b ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6528d002 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x652bfc73 file_is_kvm EXPORT_SYMBOL_GPL vmlinux 0x652fe2a8 ftrace_ops_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x653248b3 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x6551cd34 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x65356b6e clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x65369c42 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x653fa4c8 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x65409b9a gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x6551d19e pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x65526233 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x6563fb1f iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x6577e505 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0x657ca2ac __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6580bcb9 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x658c279f event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x659b3be4 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x6556f17b class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x656b668b devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x656e43e2 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x6573c9e2 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x658a4228 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x659b9050 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x65a5ad86 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x65a621f4 ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x65be0e4c sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x65bb8858 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x65be18b9 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x65cc8123 serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65da3ccc devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x65d2ef04 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x65dd8b78 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65f04f87 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x65f37e68 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x65fa64b0 filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x65fe7037 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL vmlinux 0x6603150f of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6610c862 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x6611d65b inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x66146ead ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x65eda86a ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x660d4d4d seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661edc3b scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x6634a027 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x661c6081 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x662b4ea4 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x662fa84c skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x66369ffa ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663a28b8 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66412719 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x66418bac component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0x66423b7d extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x663dbc6e tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x664372c9 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x6648db98 __SCK__tp_func_rwmmio_post_read +EXPORT_SYMBOL_GPL vmlinux 0x664de9cf bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x66594283 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x6651ecc1 ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x66698d12 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x666a11ec regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x666fa7f6 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x66730a64 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x667df431 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x66664b35 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x666cbe92 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x666d08d2 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x66717896 genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6674701a vfs_splice_read EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x669eb526 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x66ad108d pci_p2pdma_distance_many -EXPORT_SYMBOL_GPL vmlinux 0x66b6dc6c __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x66b77f0e mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x668ec832 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x669ac7c3 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66bdc75f ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x66c89e2e dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66da3e51 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x66e5e0e8 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes -EXPORT_SYMBOL_GPL vmlinux 0x66f40a2b uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x6705f45d xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x66f37bb2 crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices -EXPORT_SYMBOL_GPL vmlinux 0x671d7005 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x6729815b put_io_context -EXPORT_SYMBOL_GPL vmlinux 0x672feb56 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x673d531b serdev_device_break_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6742746d thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6758760c serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x675bba3b nfct_btf_struct_access -EXPORT_SYMBOL_GPL vmlinux 0x6769686d fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x676a801a ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x676b74e5 mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x676c2422 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x6763924e pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x67692fbd fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x67722aaa sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x67759f74 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x67764e3a rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0x677c69f1 make_vfsgid +EXPORT_SYMBOL_GPL vmlinux 0x677e0c7a rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store -EXPORT_SYMBOL_GPL vmlinux 0x67807a4e fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x678b428d __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x679377f4 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679e98e5 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x67a9e241 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x67afc755 usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x67b743e3 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x679edc51 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x67a48685 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x67a4b054 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x67a5522f clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x67b33026 rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67d889e2 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x67c438c3 kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67f4fe42 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x6802297b ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x680612f3 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x68077695 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x680d9cfa ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x6817f796 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x67e24177 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x681060a2 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68287c9e perf_report_aux_output_id +EXPORT_SYMBOL_GPL vmlinux 0x682c1307 pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683314e6 generic_handle_domain_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x683ca749 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x683538c5 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x683b5f58 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x684f85ce iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x6854dc2b regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x68603381 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x68647234 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x686a2c27 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x686dcc88 blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0x6884d5f9 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x688f0fbf mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x68692fea __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x686e93a6 usb_set_wireless_status +EXPORT_SYMBOL_GPL vmlinux 0x686fffb3 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x68813f93 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x68878f33 devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x6887f37d sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x68923494 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x68926e23 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x6896aca7 rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x6897634f debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x68a27f4a dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x68ad4191 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x68c995b5 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x68cd9ecb uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x68ce234a usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x68d07b3f sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x68e2a682 devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0x68e57d7b serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68e9781d dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x68fba4d4 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x68970174 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x68a78502 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x68b6aca1 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x68bd15bf platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x68e0f2ce ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x68ebaa57 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x6900686f vcap_find_actionfield -EXPORT_SYMBOL_GPL vmlinux 0x690e6d59 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x690f6cc5 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x69126ea8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6917fee6 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x69187c92 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x691e1fe3 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0x692a904f trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x6934c725 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x6948c1af sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x692d6a2b cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x692e73cc sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6938a12c extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0x695776c5 seq_buf_do_printk -EXPORT_SYMBOL_GPL vmlinux 0x695c4053 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x695fc62b ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6965cf1a __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x69720f01 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6984b77a of_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config -EXPORT_SYMBOL_GPL vmlinux 0x69a7734d fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x69ad9635 raw_v6_match -EXPORT_SYMBOL_GPL vmlinux 0x69ae1fa5 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x69b1b804 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0x69b42114 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x69ba2661 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x69933b67 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x69baef3c of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x69c2146a vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x69c381a5 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69d262e1 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x69d687a9 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x69da8dad ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x69dcd16a usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x69db7e0f scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x69e4a4c5 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e7dd5f iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x69ed04f9 devm_clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f3b421 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x69f756bc rz_mtu3_8bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x69f92aa1 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6a00e67e sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0e48df ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1e7bc0 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x6a328aec devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x6a350da4 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x6a359f37 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x6a2c9e53 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x6a2d5398 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x6a2f4d17 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x6a3b68b3 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x6a3d013c fsl_mc_populate_irq_pool EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4aedde power_supply_put EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a6966b5 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x6a690c72 inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a85a6a6 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x6a8ec727 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x6a87f6d8 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x6a9167d8 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa30839 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x6aaa3dd3 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab0e746 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x6ab6c1e3 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x6ac439c3 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x6adaa3aa blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x6aef5dc8 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6af46177 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x6af6e3ab nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x6ab03730 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x6ab3b0be dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x6ac4e6d2 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x6ac58be7 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x6ac93b71 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6ad35a2d usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x6ae405c7 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b133d4b gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x6b16293f sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x6b2065ad kvm_vcpu_unmap EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3b54cf __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b56cc82 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x6b59706d device_attach -EXPORT_SYMBOL_GPL vmlinux 0x6b5b33cc powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x6b53f514 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x6b5f789c irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6b673eb0 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x6b722180 log_read_mmio EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b8a8b0f devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x6b97df16 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x6b9824a9 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x6b8d5d52 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x6ba0a23e perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6baf6b29 kthread_park EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x6bc25f5f rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd2d3c1 thermal_cooling_device_update +EXPORT_SYMBOL_GPL vmlinux 0x6bdb52a3 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6bdcef63 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be5365e regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x6bfda044 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x6c0d952e verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x6c179b32 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c09ba86 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x6c0f4c77 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6c18889e xhci_stop +EXPORT_SYMBOL_GPL vmlinux 0x6c1ef5ec of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c26a3a2 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c2f1bbc ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0x6c348fda scmi_requested_devices_nh +EXPORT_SYMBOL_GPL vmlinux 0x6c35e79a ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3c174a lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4807ac usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x6c490392 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c63f588 tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6e7d4e dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x6c7261f8 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x6c8593a6 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x6c9007d0 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x6c92fdf6 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6c73346b perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x6c947c0a wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x6c94bb83 tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6c977da3 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x6ca13c93 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca618e3 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x6caad2a3 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x6cb01309 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cc2522e bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x6cc280bd lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x6cd4cc70 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x6cbd6c48 crypto_akcipher_sync_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6ccc71cb badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x6cd2704f iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6cfa9d16 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ce64a7a relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x6cebad8e to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x6cee8fea serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0x6cfab41a xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0x6cfecf91 devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d094d06 devm_led_get EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time +EXPORT_SYMBOL_GPL vmlinux 0x6d2bb7dd device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x6d2bd875 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d334d0b phy_put -EXPORT_SYMBOL_GPL vmlinux 0x6d3986a7 genphy_c45_pma_baset1_read_master_slave -EXPORT_SYMBOL_GPL vmlinux 0x6d3d2cf2 crypto_sig_set_pubkey -EXPORT_SYMBOL_GPL vmlinux 0x6d43dfde iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x6d412207 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi -EXPORT_SYMBOL_GPL vmlinux 0x6d541374 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x6d5ddcf5 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x6d681e91 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d697172 dummy_con EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d726468 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x6d73f82e kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x6d7dc499 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6da58bef ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6d83ffe5 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6d930729 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6d9451b9 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x6da455df __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x6da9ca52 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x6db24856 pci_epc_bme_notify +EXPORT_SYMBOL_GPL vmlinux 0x6db5c068 iommu_detach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc57974 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x6dc70ea7 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x6dcb9bb9 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x6dccb7c1 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x6dced4e9 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd6638b perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x6df44415 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x6df6fdf1 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e15eaf3 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x6e1765c0 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x6e1ebff6 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6e2b81ee sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x6e2d4db0 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6e10e647 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x6e1bda42 modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift -EXPORT_SYMBOL_GPL vmlinux 0x6e394e25 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x6e38062b tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e3d22c1 fat_attach EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e402d8c __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e52a8a5 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x6e670a15 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x6e4d1476 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x6e552fbb iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x6e5be7d7 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e865ff0 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6e7a5e48 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6e88c531 kern_mount EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8ec561 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e96cc80 __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6e984c17 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x6e9d986b wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x6ea1ebc5 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x6e99264e dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x6ea2a99f __tracepoint_rwmmio_post_read EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec96136 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x6ec9c535 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x6ed24693 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x6ec93f69 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x6ee262e9 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f0352c3 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6efaeca8 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x6efe308c rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6f069958 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6f06a59b pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x6f09c5bc bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x6f124f8e dprc_scan_container EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f245dd1 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x6f32482f devl_lock -EXPORT_SYMBOL_GPL vmlinux 0x6f36d527 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x6f453e50 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x6f4d978e fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x6f599a77 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x6f665e7f gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6f2c9b36 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f2d8960 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x6f2df543 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x6f334bc4 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x6f3d92b7 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x6f677952 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f7a9998 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x6f6e9ecf acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x6f6edb51 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x6f7012d8 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x6f7097df clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x6f7af6ef devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f877ebb kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x6f88269f usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x6f8d509d stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x6f94efb1 mtk_clk_register_cpumuxes -EXPORT_SYMBOL_GPL vmlinux 0x6f9e5c8a fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x6f989521 bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa1c905 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6fa27fe2 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fa8ec60 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x6fc3de86 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x6fc633a8 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x6fc70656 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x6fc7120a pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x6fc6f91f gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x6fcdb7e2 ti_sci_inta_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fcff400 dm_audit_log_ti -EXPORT_SYMBOL_GPL vmlinux 0x6fda4591 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x6fddd723 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x6ff42843 mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x6fe4376b skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffdf0ef input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x6ffd4633 clk_hw_register_gate2 EXPORT_SYMBOL_GPL vmlinux 0x6ffe96ac rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x70079d69 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x700cd203 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x700f438a dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x7019d204 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x701eb466 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x702c069c scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x702ee83a ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x700da6eb bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x7019af37 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x702afda7 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x7033b8f9 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x703a6a11 acpi_dev_get_resources EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config -EXPORT_SYMBOL_GPL vmlinux 0x70630a79 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x7068f6fe restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x706bc775 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x706ce75c xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x706ce94e rz_mtu3_enable -EXPORT_SYMBOL_GPL vmlinux 0x706cfe07 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x7070fb3f net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x704df344 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x705082be crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0x705a684e kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x70614fd5 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x7065f64e crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70829a03 i2c_slave_event -EXPORT_SYMBOL_GPL vmlinux 0x70966ef3 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x709a56c6 disk_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x70a4ab9b __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x70acd03f handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x70b2ce47 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x70b4d969 lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x70bd10cd da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x70c03196 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x708d0757 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x708e39fd devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x70a0c2d6 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x70bb6997 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c5c937 pci_has_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x70ce90ca sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x70cee7d1 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x70c61eca crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x70c75892 of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d34d0c dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x70e869b9 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x70f5426c usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x70cfe02f security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x70d333fb skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x70d7cf64 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x70de6e72 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x70e062bf zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x70e189b4 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x70e55c1f fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x70eb195b skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x70f03ca2 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x70f1c72c fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x70f2a905 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x70f8379e sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710d59c5 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x711b6c22 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x710f0c1d pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0x71130890 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x711d3fe3 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x71207451 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x712544c7 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x713e3e39 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x71556769 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x7156fd93 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x7158aa04 fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0x7159124c fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x7159be77 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x715d06c6 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x715d3647 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7161f159 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71644e38 vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x7167d5c6 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x716ce9f0 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x71723b39 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x717551fc irq_domain_remove_sim EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71840e02 mmput EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a96a70 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x71b2c15f l3mdev_update_flow EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c10f07 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x71d53f77 devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0x71f5e7d1 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x720220db irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x7202ca7c subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72199cda wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x721aea37 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x722683aa __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x7241327f devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x7244414b acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x724792bd fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x71c66b5e bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x71d07fdf bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x71ef5e96 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x71fc0d27 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x72071177 extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0x722344ba rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x72287189 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x722f986d __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x72329704 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x7252b992 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x725ede3c virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x725eeda7 put_io_context EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726e7bff sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x72701ef2 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x72682602 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x72728363 dm_submit_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x729991af add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x728d749d tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x72a0ba85 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x72a550da tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72b43969 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x72b47911 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x72b91a2a phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x72c25716 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x72cdf7ca pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x72d1a071 bdev_alignment_offset EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d5d67b uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x72f64007 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x72fd4e0c of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x72fe9eeb __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x72dbb20f devl_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0x730a37ff pci_doe -EXPORT_SYMBOL_GPL vmlinux 0x731470a8 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x731aab0c gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x731f8ca4 dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x73248bf5 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x732a8931 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x733272db class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x733bb3a3 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x73483f55 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x735422f5 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x73720eb8 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x737a325b nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7345bb56 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x7354a5a5 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7358c722 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x736c4fda tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x73846fc4 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7386045c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x738ab879 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x73a26e3b usb_autopm_put_interface_async EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b8bb6f crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73cc22cc of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x73c77484 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x73caff12 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d414d3 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x73fef412 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x740b6bd0 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x740c282f dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x7413f6b3 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x742018b0 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x73ccb73d kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x73d495ee icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x73df70e3 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x74001410 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x740af2fd ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x741288ab bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x74148d72 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x7415b579 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x742815c5 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x742816a0 ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x74323c91 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7429a69e tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7429e68a pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x742c652e synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x742e365f iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x743ceb84 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7440b7d5 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7447eafb mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0x7457efc6 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x746cd02d ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x746da0a4 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x747ed055 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x74845b51 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x749504e2 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x74972101 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x744904a9 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x744f0085 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7453ca52 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x74712362 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x74928970 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x74995ce7 spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74a54e9d ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x74acf8ac ahci_platform_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74be0a2e ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x74bde1a5 ahci_init_controller EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block +EXPORT_SYMBOL_GPL vmlinux 0x74c0c38e kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74c8276f is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74d60d48 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x74df41ab edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f2c0c7 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x74f37c93 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x74f906e9 vcap_get_rule_count_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0x75048252 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x74f3417a sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x750dea0a crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 -EXPORT_SYMBOL_GPL vmlinux 0x751ae3a0 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7515d419 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x75194a40 xenbus_watch_path EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x75327bbb devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x755b3f0a __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x755e82f3 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x752430ae driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7529234e exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x75327c57 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x754743db scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x755e316a icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x7560a0d7 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x75614afd nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x756c741c ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x75809f4e gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x7584f52c regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x758767b7 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x757f691f lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x75876626 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x7587824b of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x7596f092 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x759b3906 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x759bbefe adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75a016e0 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x75a5d842 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key -EXPORT_SYMBOL_GPL vmlinux 0x75a86554 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x75b08c9a gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x75a84c4c devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x75ab896b devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x75b60244 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x75cb7160 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x75d0d84c blk_crypto_register EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75e48572 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x75e1eb2e xenbus_dev_fatal EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e64d4a clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75f0184f usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x75fea83c ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x7603bae3 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x7606376c inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x760f2413 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x7612aa68 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x76281659 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x7640bc28 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x7603dee0 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x760ee0dd fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x760f0b8a dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x760fc21f of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x76220965 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x7622772c vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x7625d227 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x762baca2 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x762d4fdc blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x762f4f1b icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x76398048 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7655d632 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7675e397 failover_register EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76852bb6 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x768c2794 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x768fdf22 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x76930582 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x7686513e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x768a25f0 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x768be187 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x768e8cb3 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x76944da3 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a18920 acpi_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0x76a61e85 __SCK__tp_func_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x76bb397c devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x76a83f8e component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x76a8e87c pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x76b19c15 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x76b746bd rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x76c1ba98 rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 -EXPORT_SYMBOL_GPL vmlinux 0x76d1dacd spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x76d26382 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76e657d1 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x76e20193 devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76ea0ea8 input_ff_event EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7708ef76 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x770d247c devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x76f01f29 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x76f552db ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x76f97996 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x770db642 dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7715c94d genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7723cbef crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x772d4594 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x7735526c usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x77405784 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x775017d1 pci_epc_linkdown +EXPORT_SYMBOL_GPL vmlinux 0x773c46d4 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x77502dfd __traceiter_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7753510a pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77635fdc crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x777168c2 get_device +EXPORT_SYMBOL_GPL vmlinux 0x776337b3 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x776ef8b7 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77928887 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 -EXPORT_SYMBOL_GPL vmlinux 0x77a2dabe devm_pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x77a71d5c lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x77980eb6 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x77a20451 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x77a28397 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b10283 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x77b960e7 usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x77bb1d37 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x77c27fac transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x77c2c499 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x77cba0aa __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x77cde20e __virtio_unbreak_device -EXPORT_SYMBOL_GPL vmlinux 0x77d3ec29 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77df65b1 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x77e0e9d7 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x77e4c122 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x77b1ee0a alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x77ba409f imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x77c6bf62 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x77d71c9d dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x77e50812 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77e7a9fb blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x77e8f134 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x77ea155c usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77f172ac __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x77ed76f9 devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x77fc4302 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x77fd0cd8 vfs_get_acl -EXPORT_SYMBOL_GPL vmlinux 0x77fd3edb usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x77ff80d3 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x7806905c devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x7809f3d4 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x78198201 blk_crypto_profile_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7821ad27 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x782ee68d inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x783d6eb6 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x78464f53 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x7846d979 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x780c4612 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x78253e9b ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x782878fb uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x782f7f84 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x78362f5e spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x78406e7c crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x78510683 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x78526b0d gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78635c93 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x786554b1 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x7870f589 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x785ab946 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x786e4e04 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78834e06 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x7886990f blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x7888811e icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x7896140a vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x789ba350 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0x788e096e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7897aead of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a4cf14 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x78a64d6c __io_uring_cmd_do_in_task -EXPORT_SYMBOL_GPL vmlinux 0x78a984f9 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x78b40d71 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x78c6cd2f tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x78a9ebd9 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x78b433b0 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x78bd218a vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x78d80be0 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78eb0c4c devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x78f4f214 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x78f985d0 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x78fa8167 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x78ff96ba ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x78debf74 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x78e74780 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x78e9306f rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x78eb8f3d blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x79064db0 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x7909cad7 led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x791c6b81 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x791dab83 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x79229214 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x7929b147 rz_mtu3_32bit_ch_write -EXPORT_SYMBOL_GPL vmlinux 0x792e5994 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7932b0b5 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x792e3803 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7943da3a em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794e211f ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x7952706d vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x795724b3 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x7958e384 crypto_clone_tfm -EXPORT_SYMBOL_GPL vmlinux 0x796a44d4 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x79714e09 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x797c4bcd vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0x79676762 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7984309e device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x798b0b13 ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x79a3eecc usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x79a4bd3a skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x79b06b67 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7993a1db rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x799adbd9 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x79ad793d vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x79ae9538 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79cf5db4 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x79d20b16 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x79d2be6a regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79eded7b clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova -EXPORT_SYMBOL_GPL vmlinux 0x79f597f0 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79fdd994 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7a056055 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x7a0e24d1 devl_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x7a10a0bb pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7a145d1c devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x7a15a86c xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x7a197e1c __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x7a1c7a1e debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x79f84f3f pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x79fc6d0b dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x7a189c53 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x7a20fab5 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x7a219414 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7a2fa0d1 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a43b975 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x7a68a8ce acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x7a6cdc45 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7a404399 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a547a9d inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x7a5a5fc5 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x7a6a752b trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7b83bd acpi_storage_d3 EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a848b15 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x7a8a20b7 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9a4a21 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x7a9d04b9 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7a99e1f4 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x7a9c09b3 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7a9c4735 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7ab3584e devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7a9f5c6e phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL vmlinux 0x7ab7e46e fsl_mc_bus_dpcon_type EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x7ac1f24c ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7ac7709a dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag -EXPORT_SYMBOL_GPL vmlinux 0x7ad19680 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x7ad1b990 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x7ad4a061 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x7adb2199 kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x7ae634bb pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x7aeed346 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7af04ccc phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x7af3c2a6 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x7af5c197 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7af1d9bb dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x7af291a3 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x7afab8f8 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b0207c3 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b02ddeb mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x7b09c578 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x7b295bc6 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x7b411d3f clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x7b4cf55a acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7b0d17a8 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x7b0df583 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7b207c05 ma35d1_reg_adc_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x7b2dea17 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x7b2eda93 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b312d5b dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7b3fe5d2 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x7b45c888 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x7b48d5d1 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x7b530286 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7b53464a find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b575127 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5d5e06 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7b5ab8b5 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x7b5ceaf7 fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x7b60a499 qcom_smem_state_register EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b73bd16 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x7b7bb4e6 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x7b816290 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x7b73d084 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x7b88e63a mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b9501d7 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b962833 kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7ba181ff gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x7ba41c33 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7ba98f12 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x7ba7a623 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7bab23f8 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb27272 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit -EXPORT_SYMBOL_GPL vmlinux 0x7be40b3a public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x7beef08a encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x7c01abef of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7bc0c6b5 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x7bc46b51 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7bcb4735 tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0x7bde36ec ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7be1de3e sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x7be988ab mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x7bf1185b phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7bf2da69 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x7bfb5bf4 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x7bfb7b13 devlink_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c09eb5f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x7c143176 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x7c1eebed skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7c216ecd ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c29a290 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x7c2be91f __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7c307893 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x7c30efce devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c53ff19 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x7c555188 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0x7c5e9093 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x7c606b94 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x7c74665c cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x7c77b732 vring_notification_data -EXPORT_SYMBOL_GPL vmlinux 0x7c7be35a ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7c863194 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x7c92dfe2 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7c425127 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x7c427633 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c47c88e wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7c51e178 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7c542dcb regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7c612506 devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca1286e cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x7ca2ba88 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x7c9b00a0 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7ca83d65 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cb49be4 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cbe97c0 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x7cc32eca ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7cc0b799 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x7cc0e3b2 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x7cc84d98 from_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x7cce902d __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cd1817f efivars_register EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7ce35965 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x7ce4cf7f disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x7ce9e140 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x7cd8e68a dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7ce2ccb7 clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf7230f devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7cfa87e8 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x7cf54d43 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d08ee9c watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x7d0f6b42 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x7d0feb37 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d27d9a2 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x7d2c62b3 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x7d3fda7d usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x7d4282a4 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x7d3587a5 i2c_acpi_find_adapter_by_handle EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d53601a clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7d4d4221 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d4f7cfd component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7d541e39 sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5d80d8 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x7d95eebf debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7d9dbf52 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x7da6e4c1 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x7db87f43 thermal_zone_device -EXPORT_SYMBOL_GPL vmlinux 0x7dc1bccb pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7d5ae25a __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7d73979e dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x7d7d7b3a kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x7d831d13 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7d84f645 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7d97837d wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x7da2fa68 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x7dace9af xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7db5c8d4 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x7dc255cd netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x7dc3a958 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x7dd2889b vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7dda9e7f anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7dde2888 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x7de1d3f1 meson_clk_mpll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7def560d sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7e15637d md_start -EXPORT_SYMBOL_GPL vmlinux 0x7e1a8445 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x7e213d47 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0x7e273c63 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x7e277f0f balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x7e2c5d18 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x7df52753 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x7e051e47 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7e068afc gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7e0b0419 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7e0dad15 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7e0e89f4 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7e14ea72 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x7e2e4afa ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x7e34b3bd kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e4b3707 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x7e4c3a44 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x7e3d125e devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e3d37f6 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x7e3fcc06 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e653c4b tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x7e6d5f05 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x7e6e2581 devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0x7e700108 ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0x7e65ec6a crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x7e67245b i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x7e6fce4b fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7dd29b i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e81f6b7 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x7e84caa7 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x7e85f919 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e8ef1ac acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7ea5e66b gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eaf6111 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7eaaeb36 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7eb21b20 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec40d59 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x7ec6d59e of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x7ed58357 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x7ed724fd gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x7edacca7 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7ebaf883 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x7ece6fca pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x7eda6d5c of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x7edea462 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0x7ee228c0 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ee6d809 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eee5819 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x7efd45e7 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x7f00bf1a blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x7f11311f blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x7f16e56f device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x7f181ac3 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x7f1e8ae1 blkcg_punt_bio_submit -EXPORT_SYMBOL_GPL vmlinux 0x7f1eea9e device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x7f2adc69 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x7f34b41b irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x7f510447 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x7f52dfb7 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x7eeec605 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7ef80f3b housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x7f074005 blkg_conf_exit +EXPORT_SYMBOL_GPL vmlinux 0x7f0de0bf blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7f0eb1a6 nop_posix_acl_access +EXPORT_SYMBOL_GPL vmlinux 0x7f10dc38 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x7f143768 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x7f179723 rz_mtu3_32bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x7f27c24a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x7f2c7170 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7f3ab615 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x7f47a075 devm_acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f81e6bf dm_put +EXPORT_SYMBOL_GPL vmlinux 0x7f82c72f mtk_pinconf_bias_set EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f869227 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x7f8792f6 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x7f8839d6 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0x7f8dedce find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7f8cb579 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x7f975d5f devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x7f98b639 devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7fa35623 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7fa42ab6 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x7fa1062d wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fb65608 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x7fb96553 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x7fc47891 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x7fd4d25b regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x7fe4e7f5 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x7fe68ddb virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fc2d9ed vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x7fcd33de sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fceddaf call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7fd69f65 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x800b7d99 ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x800ed263 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x80106b06 rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x80139875 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x801de3df spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x801f7f9a clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x8020c584 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x8029b37b pci_epc_bme_notify +EXPORT_SYMBOL_GPL vmlinux 0x802bc905 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x80317b80 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x80440bef rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x805a63a8 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x806b1c48 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x806e52e0 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x80772011 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x804a8ad0 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x80501528 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x805feeb4 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x8062ffcc __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x80713c26 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x80726a40 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807928cf regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x807ca9de ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x807d38d7 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80809120 cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x808ee852 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x80a06101 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80b3e1ed serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x80b40f6c buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0x80bcfec4 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x80c3aaa2 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x80adfa3f __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x80af61fb devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x80b27b71 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d02648 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x80ca6bbc anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x80ce68b7 pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x80d37375 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80dcc4a3 __fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x80e19cdf devm_tegra_core_dev_init_opp_table EXPORT_SYMBOL_GPL vmlinux 0x80e88177 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x80eb93fc od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x80ecc485 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0x80f52c6f mtk_clk_unregister_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x810f7e8a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x810afee1 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x810e8cd3 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x81107dae devl_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x81121fa4 kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger +EXPORT_SYMBOL_GPL vmlinux 0x811ba874 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81245dca inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x81303755 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x8133c05f rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x814892e8 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x814f2bb4 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x8151ebd9 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x81557296 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x813e8dcd add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x81427d08 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x814eaabe fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815fd404 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8163cd20 hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x8164e7ee inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x8167e363 pci_d3cold_disable EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816ef80a qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x817bf3f8 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x817f1dca cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x816f2d6b dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x8175342b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x817603f7 fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8187c49c unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x819983db devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x819c79c3 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a19e71 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x81a279c6 spi_controller_dma_unmap_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81a9e4c0 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81c9541c devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x81d0a8a3 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x81b5f9fb __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x81ca3897 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x81d328e5 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x81dcbef1 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x81df4856 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e4025b attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x81f2c68d serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x82002519 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x82079f0f of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x820ee345 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x82173ade devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x821f839c usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8223ac46 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x82393718 filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x824366fd ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x8246eaf8 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x825b9773 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x8242b92e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x82512e6e xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x825450a6 pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL vmlinux 0x8266558b kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x826ce023 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8276d119 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x825f4923 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x826b2308 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x8273b482 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x827dbb93 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82843959 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x828f4c91 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x829e7b9e em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x82915164 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x829f9253 spi_delay_exec EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82af4a58 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x82c5f6be skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x82c04f77 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x82d0b1d1 mtk_clk_pdev_probe +EXPORT_SYMBOL_GPL vmlinux 0x82d1dee0 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82ddd1e5 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x82e1630b dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x82f17fa4 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x82f4321b nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x82fc3e30 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x830217cc __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x83243cc9 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x832b3312 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x8332123c irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x82e93de3 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x82edfcf1 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x83049fa3 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x8307a59b rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x83237ff1 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x83267b65 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8330101e dprc_reset_container EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8339e030 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x833a47ae mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x8345f6d5 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x833c4896 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834a1c42 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x834d8ac9 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835a8e77 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x836ac179 dma_resv_set_deadline +EXPORT_SYMBOL_GPL vmlinux 0x83565f19 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x837d25d0 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8380fe4b make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0x83884868 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x8395c562 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x839765be iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x83b9324c tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x83cefbbf pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x83f2396b bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x840d9589 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0x840de89d pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x837770fa task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x837e5b1c spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x8387c774 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x838ec38d bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x83a82495 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x83b1420a crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x83b52b9f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x83dd60fc balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x83df95be scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x83e1efda perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x8407016b pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x840e85a1 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841aeda1 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x84248aba device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x841135a2 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x84255ea0 icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84353c28 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x84352324 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x8437a80d k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x843ae2fb regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844852ae pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x844f58bf tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x84471f3e phy_create EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845235b6 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x845aa9c8 platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x8461260c dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x846597e1 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x8467f743 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x847edc7e meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x8481db0e rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x8499a632 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x84a68e56 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84b2dcb2 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x84be4b64 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x84c36692 pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0x84c5eae3 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x84c7005d regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x84c74c89 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x84d5b3d1 vp_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x84d7cb61 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84c57654 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x84e7e8c5 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x84eb078e crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f5ab73 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x84f00007 irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x85125a94 otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x851a84e6 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x85185c33 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x851a06ff md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8520cf68 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x85214683 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x8521b851 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x852678a2 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x853e7fd3 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x853ecd4a cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x8551e0c5 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x8552784c pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x85267784 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8527c601 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x85290868 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x852a585e balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x852b9762 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x852cca9b crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0x853e374b sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x85405fcf ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8557dcbd led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x8558d80b of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x855a3989 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x856f5c70 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x857cf11c crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x858aa3aa usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x8556890d acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x855e6d9f serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x856744e1 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x8573c729 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x857c7f5e acpi_dev_gpio_irq_wake_get_by EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder -EXPORT_SYMBOL_GPL vmlinux 0x85907d69 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x8594cda8 register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x859708b2 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x85985ff7 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x85a0d057 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x85e9a643 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x85a1bb5c sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x85a55d3a ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x85b34a6f devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x85bbf8bb clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x85e7f21e __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85f0737f dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x85f647f1 max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x85f85592 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x85f92d7d phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x85fa38e0 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x86087550 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x8616fb27 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x8600c483 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x860acd98 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x8619288e md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8619ad35 devm_ti_sci_get_handle EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal -EXPORT_SYMBOL_GPL vmlinux 0x861bcbac of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x861fba6d usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x861fe8c3 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0x86211fb6 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862e535f cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x863a24c9 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x8645d655 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x864ef10b dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x86535c3e blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x8630b3be scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x86389ee2 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x863d15dc gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865e7b93 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8668f9ee ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x8665792e tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8666f5e9 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x866e4a47 receive_fd EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x86728e83 crypto_alloc_shash EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x867ed1f2 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x86821e87 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x8684c506 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868af014 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x8692a605 vring_create_virtqueue_dma EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x869d8e37 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x86b09366 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86b84397 fsl_mc_obj_close -EXPORT_SYMBOL_GPL vmlinux 0x86bd815b dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x86bc72b0 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c7226f ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x86d85474 xhci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x86d8663d crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x86e04a9c mtk_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x86e8519b of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x86e85b1e dprc_close -EXPORT_SYMBOL_GPL vmlinux 0x86eab6d5 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x86f493d6 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x86c6443e usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x86cf2709 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x86d258a7 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x86dae617 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x86dc230b of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x86df0d38 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x86df3f84 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86f969c0 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x86ffbe5c dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x871259a1 fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0x871962f6 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x871ef1f1 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x872550c2 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x8715b1d0 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x871d29b7 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x872b0c1d hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x874e42d9 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x8760908d devl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x87725347 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x877aabf5 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x878ab42e trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x878c002c fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x87309386 walk_hmem_resources +EXPORT_SYMBOL_GPL vmlinux 0x8737a993 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x874860d5 devl_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x875f0fb5 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x875f2388 phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x877bcc07 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x878a347d devm_register_power_off_handler EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x8796f901 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x87993658 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x87ab784a tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x87abaa76 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x87b83f77 net_failover_create -EXPORT_SYMBOL_GPL vmlinux 0x87b850bd irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x87d1ff8c ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x88082ccf __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x882066e5 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x882226b8 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x883fd521 user_update -EXPORT_SYMBOL_GPL vmlinux 0x884be8c2 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x879e553f dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x87d71502 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x87dac74c ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x87ddb787 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x87f41927 vring_create_virtqueue_dma +EXPORT_SYMBOL_GPL vmlinux 0x87fec446 pci_find_doe_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x880403ec int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x8809b2fe regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x882db721 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x882ec40c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x8834253f phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x88345b3c unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x883dce1e ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x886205ae ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x88637ed6 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x88671412 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x88671975 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x8860016f spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x886c74cd fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x887d5ce3 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x88878702 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x889387d4 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x889bbe3c gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x88a22a05 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x88aa7e09 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x888ce8c5 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x88998507 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x88a11eb8 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x88a59e31 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x88a6ab2b serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b5d52d imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0x88bdf359 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x88c04ac4 mbox_bind_client +EXPORT_SYMBOL_GPL vmlinux 0x88b8db49 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x88beda0c pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x88c05eb9 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88d8b66f tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x88dae84a gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x88e23ad9 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x88d60026 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x88e4b1b8 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x88e4db21 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x88f00b6b rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x88f44d84 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x88f77c4f devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x88fdd4e7 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x8920d74f iommu_sva_bind_device EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892e395b tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x8933e1a0 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x89352313 crypto_akcipher_sync_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x8937ef96 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x893804bc led_blink_set EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x893b70be pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x893b0463 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x893d6861 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x8948618e acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x89501143 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x89549d65 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x896f9ac5 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0x897f9580 __devm_clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x898fc2b8 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8997fbc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x89980998 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x89645286 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x896502a3 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x897585d3 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x8979bcc2 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x898b01cf unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x89a226e3 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89a49084 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x89a5f65c __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x89a6e4e3 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x89a7f6c2 firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b13aec device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x89b8124d pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x89b83411 dev_pm_opp_of_remove_table EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x89cff7fa aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x89daaa89 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x89ceb9c5 class_create EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e672ef rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x8a1d7361 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x8a2ae7e0 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x89e535d6 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x89ef3aea gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a009c2c devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x8a0d0153 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8a3b9381 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8a3c5c8e devl_params_register EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a45dd85 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x8a4a7f67 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x8a4ec8f5 direct_write_fallback EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a58503f pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8a5fe496 devm_tegra_core_dev_init_opp_table EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a66dd05 msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x8a6f31cc pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x8a70a97a gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x8a7fcc30 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x8a82aa31 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a908fa8 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x8a970015 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x8aa66432 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x8ab69108 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x8a9cac5c irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x8aab0efc pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8aab68a4 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8aaff30f devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8ab52622 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x8ab5ebc4 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x8ab8ec9a fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abb27aa scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x8abb4d7f regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ad73bfd device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x8ae5c5c3 usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x8aedd9c0 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x8af510e6 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8b0a46c9 vcap_tc_flower_handler_portnum_usage -EXPORT_SYMBOL_GPL vmlinux 0x8b11cb40 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x8b12779e sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ad2b8ff pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x8ad7d9e8 blk_rq_poll +EXPORT_SYMBOL_GPL vmlinux 0x8ade85c4 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x8ae49833 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x8af6ea4a fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8af9fce3 lynx_pcs_create_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8b0bb465 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x8b0f3514 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b154595 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x8b157673 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x8b16842d srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x8b291feb component_del -EXPORT_SYMBOL_GPL vmlinux 0x8b3ca0f4 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x8b1c8515 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc -EXPORT_SYMBOL_GPL vmlinux 0x8b425912 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x8b4bd4b2 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x8b55b543 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8b5ac776 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8b6634ad hid_bpf_connect_device -EXPORT_SYMBOL_GPL vmlinux 0x8b69510f pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x8b77f990 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x8b4cbe08 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x8b61308a nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x8b6d9a11 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b928410 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x8b9aa784 device_reprobe EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg -EXPORT_SYMBOL_GPL vmlinux 0x8ba14ce8 led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8ba86f89 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ba9a30d pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x8bbe527c __tracepoint_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8bcb0eb0 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x8bd8a107 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x8bd953f7 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x8bdef956 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x8be8f732 clk_hw_determine_rate_no_reparent -EXPORT_SYMBOL_GPL vmlinux 0x8bf11c79 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x8bcf1a57 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x8be744ce serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8bfb9e01 kvm_read_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0754c9 xdp_set_features_flag EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8c09d912 __fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x8c0c8035 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c1f0789 dma_resv_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x8c29959a is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x8c2f7c3f dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0x8c30d703 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x8c357dc9 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x8c2ba880 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x8c33a072 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c35e26d da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev -EXPORT_SYMBOL_GPL vmlinux 0x8c502389 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x8c52dd7c __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x8c5f1322 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x8c722676 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x8c58b32f __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x8c6a2f58 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7b3e27 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x8c81d777 icc_disable EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8ca597 acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0x8c8d2374 dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0x8c959c7d badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x8c908822 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x8c949f87 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x8c980299 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cc9fc74 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x8ccebc9c dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x8cf3e620 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x8cf8e314 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x8d03c15d anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x8d05b6f4 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x8d0ec358 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x8d164216 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x8d182e4f iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0x8d219950 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x8cc2acb6 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8cc36a57 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x8cd04e98 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x8ce2913e component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ceaf15b devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x8d085957 devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d29fc1f device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d37b780 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x8d476ec2 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x8d471ffc pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x8d4939d1 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x8d4968e1 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d52e48e unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x8d7ba3fb rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x8d565a0d __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x8d60b8da apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8d6dabf0 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8d7060f7 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x8d74a37e pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d85444f ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x8d89008c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d8fb8d5 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8d84575d crypto_sig_verify +EXPORT_SYMBOL_GPL vmlinux 0x8d848f28 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8d91e692 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0x8d9ee2c8 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x8da7d248 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x8db86d53 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x8dbc1fef meson_vid_pll_div_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc9fa80 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x8dbfa91f dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8dc70cca blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x8dd1ceaa ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd603dc max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x8de776d2 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x8df35d54 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x8df387ee pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x8dfbe1f3 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x8df7fe62 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x8e075ad4 phylink_of_phy_connect EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e20420c regulator_get_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8e2a14dd _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x8e3741b6 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x8e42fb30 tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e4ececf clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e4ffd43 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x8e5796d5 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x8e5b6645 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8e662f3b regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x8e50c5f1 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x8e61774a usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e784960 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x8e79ba95 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x8e7e7a3d rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e8452e3 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x8e84e898 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x8e896e80 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e8e2e1f usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x8e8e4ec1 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x8ea2ac69 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x8e9dd5dc skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eb25392 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x8eb66342 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x8ebc8a0d crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8ec47d4d dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x8ee650ce vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8ee6993d auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ee81038 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef5bcd2 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x8efba20b cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x8ef6254b cros_ec_cmd EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches -EXPORT_SYMBOL_GPL vmlinux 0x8f143a38 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x8f270b45 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8f13ae37 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x8f31d19d perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate -EXPORT_SYMBOL_GPL vmlinux 0x8f4374e9 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x8f46c49d ti_sci_inta_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x8f4dbceb fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x8f3bb5d0 devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x8f4f5b83 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8f5499f0 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x8f581c0e __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8f6b88cc xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x8f75b9d0 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7a1bb4 regmap_read EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f8b858d irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x8f8ed697 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x8fa2468f regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8f7be0ef bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x8f83da84 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x8f847789 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x8f8e4784 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f8f07aa __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8f9469aa spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x8f970f63 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x8f978012 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8fa724bd ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fbe2660 devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0x8fac72b9 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x8fb8ec03 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fdab57c devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x8fed4d37 __virtqueue_unbreak -EXPORT_SYMBOL_GPL vmlinux 0x8ff1aa4c serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x8ff46593 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x8fc42edb mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x8fc49022 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8fcfe175 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x8fd95a76 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x8fe9d62e bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x90125660 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x901685c3 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x9024b535 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x9025c2e4 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x902eb656 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ff72c9d raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8ffd7e03 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x90017194 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x900e0332 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x9012cb69 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x90364931 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904a5da2 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x9050398b nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x905c5287 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x90631b04 mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x90633fbf __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x9065c7f8 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x90677f39 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x907f2fe9 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x903bb2fa acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x90445b8b dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x9044a614 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x9057fbaa usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x9065906a xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x906c4306 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9070bcb8 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x907ffb62 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x9090cb65 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x90a5e3ee gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x90807a8d devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x909a600e fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x909da933 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x90a4efee regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x90a73c1b of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90b73aa5 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x90b5df1a udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90ba8c28 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x90c16e2f fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x90c46777 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x90bc4da9 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90bcc49b ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d99972 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x90edcd7b dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x90efd8b8 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x91031246 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x90cc2b36 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x90cde50f ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x90d3094f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x90d43b20 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x90df94e9 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x90e26a36 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x90f883cd device_rename EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x911a1d26 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x911a30a6 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x911d2d9d rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL vmlinux 0x9128e5e8 mmput -EXPORT_SYMBOL_GPL vmlinux 0x912ba9b8 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x912ccdc8 iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0x913071b3 devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0x91316574 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x913c31e0 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91208d89 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x912a807e xenbus_frontend_closed EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x91424d87 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x915783d1 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x915b903c mdiobus_c45_modify -EXPORT_SYMBOL_GPL vmlinux 0x915cbb81 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x915d39ad ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x915e4cc3 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x9161a050 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x9167bdc0 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0x916ca2e6 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x919147c6 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x916cacfc power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x9176318a fsverity_verify_blocks +EXPORT_SYMBOL_GPL vmlinux 0x91868702 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x918d364b dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x918fa566 phy_get EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91a27139 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x91a6f8c2 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x91ad2a0c mtk_clk_register_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0x91b2786e crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x919594bc xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x919750b4 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x9198d351 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x919b8e37 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x919d1f6f ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x91a10d6d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x91a9b3a7 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x91aa8a6c __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x91acda87 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x91af0cf6 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x91b04d9b pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91bc3c24 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x91bfef20 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x91c2df65 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91dc27ea gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x91e2cd82 dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91e3b6e6 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91ec3206 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x91ef151c fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x91fba744 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x9204f805 genphy_c45_plca_get_status -EXPORT_SYMBOL_GPL vmlinux 0x92086f50 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x920b8f25 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x91f8273f vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0x91fe76ee clk_register EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x9216c6fd of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x92254aa7 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92194daa ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x92206fcd cdx_device_add EXPORT_SYMBOL_GPL vmlinux 0x922d8801 __tracepoint_rwmmio_read -EXPORT_SYMBOL_GPL vmlinux 0x92349a60 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x92365381 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x9238ace4 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x9231ee79 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x9239cd9f crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9250f481 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x92513911 devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x92568a38 icc_provider_deregister -EXPORT_SYMBOL_GPL vmlinux 0x92643fd2 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x92715e34 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x92745ac0 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x925a80c3 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x9267aa43 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x926e4783 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x9284e609 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x929154ca devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x929e5037 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x927a5000 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x927dd538 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92ae40d1 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x92aea702 dax_remap_file_range_prep -EXPORT_SYMBOL_GPL vmlinux 0x92b18e2e crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x92b46f4b l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg EXPORT_SYMBOL_GPL vmlinux 0x92cb609e __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x92ccc557 vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x92cf74aa vcap_admin_rule_count -EXPORT_SYMBOL_GPL vmlinux 0x92d2e0fc perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dba852 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x92e7dde1 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x92dc8b5f md_run EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x930a2325 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x92eb3bea thermal_zone_device_priv +EXPORT_SYMBOL_GPL vmlinux 0x92f27e1f i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x930851ae dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x93093b48 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x930e5367 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x930fc4db tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0x931ac7c0 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x931ca574 usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x931e856b devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x9321c550 vcap_find_admin EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932ad92d devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x9326ae53 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x932d1808 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x9332a568 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x933ac9a2 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x933f55ad usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x9335ef59 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9336c73f to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x933adefe usb_check_bulk_endpoints EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x934af9b3 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x934f3847 cros_ec_cmd -EXPORT_SYMBOL_GPL vmlinux 0x9352f233 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9344f1ad da903x_update EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x93596d67 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x93588422 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x935e2f57 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p -EXPORT_SYMBOL_GPL vmlinux 0x936c63dc gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x937ef647 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x93869b75 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9362613b fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x93756a8e usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0x938cf9d8 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x939c6ce1 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x93b09268 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x93be605a usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x9392d32e shake_page +EXPORT_SYMBOL_GPL vmlinux 0x9392f6cc edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x939a8cce ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x939af874 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x93af43d1 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93ca6ff3 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d69efa led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x93de00a9 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x93e5b0b0 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93eeb5fd led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x93f5b93c soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x941648df __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x9419f6ec ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x941a3a65 mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x93f60f80 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x940f436a hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name EXPORT_SYMBOL_GPL vmlinux 0x94299178 phylink_decode_usxgmii_word EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943357f5 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x94358ef6 pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94449d22 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x9444f259 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x944d4578 fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x9456c677 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x945929ea crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x945f28f5 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x94645bb7 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x944d2f04 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x94536896 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x9458ca93 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x94698a0a fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x948b456a hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x94815af1 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a1c778 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x94a5049e dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0x94aaddfe ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x94ae8a55 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x94b0e8de __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x94b2a60b kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x94b577eb irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x94bbb62f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x94d6b1b4 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x94e02212 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x94d1c276 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x94d7b8a6 serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94ec8ca6 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x94e73f67 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f2854c vcap_tc_flower_handler_ipv6_usage EXPORT_SYMBOL_GPL vmlinux 0x94f64aa5 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x95018f56 rz_mtu3_shared_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x950336c5 pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95086ccd rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9519aed3 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952205be pci_find_doe_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x95286f7f sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x95343f1c da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x953643dd compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x953b4a6d mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x953bdb62 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x951a4909 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x951af43d debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x952a1fe9 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x953a7773 vcap_tc_flower_handler_portnum_usage EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953f0af3 crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x9568b314 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x955fdd49 pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0x9580a916 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x95826b22 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959191af netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x95934800 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x959682a4 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x9599af4f blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95a01cec mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x95a697f2 sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c46092 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x95d045d2 acpi_device_fix_up_power_extended -EXPORT_SYMBOL_GPL vmlinux 0x95e86a65 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x95c678a3 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x95c7731e devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f3f2c4 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x95fb876d of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x960f9dc5 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x95ef5ac2 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x95f0a58b debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x960a6ff7 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x960b63cf tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x960dfe28 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9616a255 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL vmlinux 0x961fbcd3 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962c181f crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x962bbaf6 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x962d0895 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9639cc7e fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x9649fb89 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x963530aa tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965e8561 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x965f2f9e failover_unregister -EXPORT_SYMBOL_GPL vmlinux 0x966fb2a4 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x9672e83d badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x9672f6da linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x967b6e9d crypto_akcipher_sync_prep -EXPORT_SYMBOL_GPL vmlinux 0x9680c71a fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x96812670 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0x9687aa75 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x96901c56 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x96a1e134 devl_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x9662d046 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x967e0575 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x96bd6ca9 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x96cb7bbe percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x96e09863 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x96e6f8bf pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x96ecb141 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x96ae506b devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96bcda06 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x96db85ac crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0x96ed4016 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x96f209f4 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x96f27864 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x9702c87c iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x97047ebe md_stop +EXPORT_SYMBOL_GPL vmlinux 0x9708c883 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97161906 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x971be4da clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x973df3fa tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9741efd8 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x97483d61 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0x974e151a rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x9747d5e0 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x974a482a devm_hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9757a5f9 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x975c106e strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x9762e0a2 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x976dd2ee gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x9770bc2d ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x97552291 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9769c4ea devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x976c8c12 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x976f7365 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x9774f8b6 ahci_set_em_messages EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x977eefcf simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x9781be85 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x97a01cdd dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x97c6bdab irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x97ceca8d cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x97d20a6d metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x97dd0687 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x979d4380 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x97a5e0eb regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x97b90cd2 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x97daaac3 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97dedc2e devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97ea08c8 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x97e30ecb fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x97f1f98b srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x97fc83d0 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x980461de device_del -EXPORT_SYMBOL_GPL vmlinux 0x9812dc01 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x97febe45 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x98071298 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x981c1692 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9822b50d regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x98286977 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x982b6784 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x982f28e9 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983b7c20 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9842db83 clk_hw_determine_rate_no_reparent +EXPORT_SYMBOL_GPL vmlinux 0x9843e8c2 devm_hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x9846d9df skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x98484124 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x984476cd handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x984ab9cd led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x986633ad __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x986caebe mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x986de03c put_pid +EXPORT_SYMBOL_GPL vmlinux 0x98629995 generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987cbe58 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x988ded9e tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x988ca088 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x989654b6 of_pci_get_slot_power_limit -EXPORT_SYMBOL_GPL vmlinux 0x98a708a4 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x98caaf2d dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x98cbb648 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x98cf68c3 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x98dce461 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x98df8112 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x98ee08aa dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x98992fb3 mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x98ab613a tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x98aeed9f battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x98c305fa pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x98ece0a5 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f0c1d9 io_uring_cmd_do_in_task_lazy -EXPORT_SYMBOL_GPL vmlinux 0x98f13871 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x98ff0399 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x99142c24 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x9917e0e2 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9919e792 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x991ba1ba pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x991f79d2 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x993e362d of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x98f320a6 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x98f7122e acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x990aa9f1 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x990dcd76 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x990e6a36 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x990f3f99 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x9913ec97 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x991470f0 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x991ad40f __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x9952547d nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0x9953acdb pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x995b3dd1 irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995e5a0f serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996e2b3f crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x9976864c gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x9964d55d led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x99763e85 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x998a876b regulator_put EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x999c66b2 devl_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99a83c59 scsi_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0x99af80e8 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x99b0ee44 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x99c8e82d fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x99c9a67b mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x99d6ca0e devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x99a1e1b7 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x99a2843d strp_init +EXPORT_SYMBOL_GPL vmlinux 0x99c93dbb fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x99d4726e crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x99d4f519 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x99e8c00f devm_clk_get_optional_prepared EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a0bc52b subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x99fbe31d crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x99ffcd78 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9a0810bb blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a12fb84 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9a1cf7b8 devl_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a2645bd ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x9a2de482 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9a2ced0f fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x9a353a46 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9a394008 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x9a427983 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x9a43e9c7 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x9a549959 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x9a5768cf rz_mtu3_8bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x9a57e866 dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5d201a acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a6ebab2 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x9a703131 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x9a8f3bd3 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x9ab748c5 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9a5f6bad regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9a5f9870 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x9a9a2e64 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x9aa6e130 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x9ab60b71 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x9abcb595 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9abe1592 blkdev_report_zones EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9ac58f15 __tracepoint_xhci_dbg_init EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find -EXPORT_SYMBOL_GPL vmlinux 0x9ad2be47 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9ad92770 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af2f55e usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9aff15f8 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x9b007bd3 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9b05bfbf devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b0ef05d pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9b0f97a8 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9b1269d9 mtk_clk_register_fixed_clks EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x9b1dcc4d fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x9b266e13 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x9b380d71 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x9b45d595 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x9b1b2ea7 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9b1f2c4c da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x9b1febd8 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x9b2c0922 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x9b32c634 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x9b4aab2c fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x9b4b90c8 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5c6e17 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x9b5f048c dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring -EXPORT_SYMBOL_GPL vmlinux 0x9b6520a5 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x9b652b6e phylink_resolve_c73 -EXPORT_SYMBOL_GPL vmlinux 0x9b673de8 extract_iter_to_sg EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b719c2d pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x9b824591 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x9b831b97 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9b868ed0 dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b94e24b ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x9b94edf9 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9b931ba9 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x9ba25d5b gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba4edad nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x9bb04430 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x9bb057b5 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x9bb20530 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x9ba4ecff meson_clk_pll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x9bb3fcd1 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9bbe21b2 iov_iter_extract_pages -EXPORT_SYMBOL_GPL vmlinux 0x9bcdcaaf of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x9bb52ec0 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x9bb9f914 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x9bc64acf iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be16bfc net_selftest EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range -EXPORT_SYMBOL_GPL vmlinux 0x9be8319b regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bfa26c9 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x9c031839 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x9c039ab4 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9c048377 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x9c060382 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9c303e0d devl_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x9c353b9d devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x9c422a91 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x9bf88f0c pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x9c008a57 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x9c0d26d5 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x9c105aa1 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x9c1ad261 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9c1b32ab dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x9c25e322 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x9c2669f8 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x9c2a2b55 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x9c2c5d0c __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x9c2d2f72 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x9c397dfd blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x9c415dad devfreq_event_get_event EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c4c3d71 xdp_features_set_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0x9c561aba fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x9c4ff9db rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x9c6eddab xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x9c6f3ebc serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c76ec76 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x9c7e8f33 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x9c71fd7b devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c89e4bc dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x9c8afe05 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x9c8f9169 acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid -EXPORT_SYMBOL_GPL vmlinux 0x9ca69903 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x9ca65051 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location -EXPORT_SYMBOL_GPL vmlinux 0x9caa32b7 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x9caae58f wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x9cb3ce35 devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x9cc3b2fb syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9cc39456 of_device_compatible_match EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc91789 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cdb39ff i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9cd79098 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals -EXPORT_SYMBOL_GPL vmlinux 0x9ce8f1fb uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ceb13ac pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x9cee96e3 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x9ce1e1a9 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf405ca pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x9cf7f3d1 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d0cb471 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x9d17f377 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x9d235bb7 xhci_stop +EXPORT_SYMBOL_GPL vmlinux 0x9d0f9c20 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x9d1db572 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x9d24fae9 xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x9d2d3f5b pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x9d2db421 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d30913f edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x9d326516 irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x9d338ff9 au_platform_setup EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x9d408472 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x9d410eac get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x9d59e9c9 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x9d6401f3 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9d666f4c key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9d40bd07 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x9d54ea32 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x9d6011a4 component_add +EXPORT_SYMBOL_GPL vmlinux 0x9d729e31 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x9d753d2d crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9d785b0d restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x9d82ac90 phy_exit EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d8e711c get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x9d94d78e ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x9d9e8eab regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9da9ae7d ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x9db24287 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x9db856a2 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x9d9c86e7 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x9dbbd471 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9dc288b2 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x9dd123d6 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9de039d3 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x9de4002a spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x9df28852 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x9df6e2e8 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x9df7e5c0 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x9df8a98f fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9e0e3803 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9e0e8612 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x9e13823c regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x9e1bf2c4 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x9e1f5ee9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x9df920ca rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x9e0155b9 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x9e133ea8 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e2938d3 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x9e30b86a k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0x9e35f437 vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0x9e42b5f6 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9e271102 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x9e319802 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9e46ec04 nf_route EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4a2591 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x9e4aae90 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x9e52f37e vcap_rule_mod_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9e54ef52 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x9e587047 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x9e5d82c1 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x9e694e58 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x9e77ea1b ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x9e792d1d sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x9e80d17b fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x9e8475c5 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x9e87fd6e cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x9e644731 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x9e810ed7 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x9e865ee9 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9e8e3823 pci_p2pmem_find_many EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9ea94ec9 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x9eb628e1 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x9ea0aa4d irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x9ebccb9d gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed55992 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9ed66c98 sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef50c2c ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x9ef6ff73 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f0c6016 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x9f11d2a3 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x9f3091b5 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x9f3bd897 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0x9f45d586 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x9f126bca devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x9f1600d0 icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x9f249653 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x9f2a0e75 rz_mtu3_shared_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9f2d5af8 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x9f2db9ad __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x9f2e8c8b ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9f3de1b2 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9f3e4164 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x9f50fb35 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f53b818 pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f6b2bfe get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9f73fd18 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x9f747d7e switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x9f90a8c6 kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0x9f991c58 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x9f9afea5 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f5fb479 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f7459a1 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x9f836f28 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9f870536 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x9f8eec22 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x9f922e1c rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x9f9a8b47 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x9f9de4c0 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9f9e22e9 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x9fa1a739 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x9fa2a460 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa75d29 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x9faa305a ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x9fac688d get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x9fad2abf usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x9faeb5e2 blk_mq_quiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x9fb5d865 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x9fb59061 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x9fb996a7 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fcc460a l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd089df nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x9fcfa970 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x9fdb90de irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe6578b mtk_pinconf_bias_disable_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fee1210 fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0xa01833f5 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x9ff3aea2 mtk_clk_register_dividers +EXPORT_SYMBOL_GPL vmlinux 0x9ff62be6 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x9ff67268 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xa0062dc8 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0223a17 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0xa03be867 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xa04c8ca5 platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa06fa7e7 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa06d46e7 meson_clk_dualdiv_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa07318cb metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa073099a acpi_match_device EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa08b01f7 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xa0972ef8 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xa09bd0c4 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xa0a334ec mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xa0c304d4 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0xa0c597c0 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa0d15197 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xa08d841b vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xa0961368 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa09b4eff inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xa0a00770 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0bfa30f balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa0ca08b6 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xa0d30723 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0e09d2b ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xa0e87fb5 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0xa0e8fb12 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa106d21e of_nvmem_layout_get_container -EXPORT_SYMBOL_GPL vmlinux 0xa107696d fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0xa111e039 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa0ef8025 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xa0fb4e0a genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0xa104e6d6 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xa10b6f7f hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11f04e8 vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0xa140963b balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xa148476d find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xa148c409 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xa149f8f5 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xa14e3b72 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xa12e5aa3 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xa1334672 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xa139104f __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa14d0903 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xa1558b46 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa156a4d7 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa163e993 scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0xa16449b4 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL vmlinux 0xa1796be3 blk_mq_end_request_batch -EXPORT_SYMBOL_GPL vmlinux 0xa194f3dc i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xa17e34f1 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xa18b4c52 fat_scan EXPORT_SYMBOL_GPL vmlinux 0xa19561fb __SCK__tp_func_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa19f197c xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xa1adb703 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xa1bbea4a regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xa1c157df host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa1bab1fe devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xa1bd53ca sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1cafcc6 devl_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xa1cf105e pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1e8cead sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xa1e8eda7 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xa1edb099 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa207c63d dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xa20856ee sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa211655c relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xa212fb74 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa2107afc tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa2159b91 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xa21e7b68 clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa220cf47 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xa22da291 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xa221e424 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xa22665c0 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xa22f9388 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xa2305a8c devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0xa242d6fd regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xa2455913 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xa24c217f fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa25455fc mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0xa2519ce7 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa25aef56 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xa25bfe35 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26e6263 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa272606a dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xa27d39d4 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xa2815e07 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xa271d17e ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xa284624a to_software_node EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa2aa4309 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2a168e3 irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0xa2c33fed kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xa2c38346 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0xa2c9f80a trace_add_event_call -EXPORT_SYMBOL_GPL vmlinux 0xa2dcacb2 blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xa2dd7390 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xa2dff83d driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xa2c32436 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2cc062b tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xa2ce45a5 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xa2deac6a pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e2bb6f bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xa2f676d1 nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa3031ef0 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0xa311e1f5 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xa31afb5c devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xa331625d pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xa331959b hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xa34e7930 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xa354ea79 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa36e6f48 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa313f868 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa31c2603 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa31c507d usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xa34d46dd wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa36107ad led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xa36586d3 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa36d1099 platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa37d2115 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xa385a596 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xa37ee1ab regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa384cdea dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa3881b3e dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xa38a1f68 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xa38a99c8 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38b9a7c pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa398de2c bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xa39af9f5 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xa39593f7 net_failover_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa395b708 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa39d7dd3 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a2a401 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0xa3a36c73 cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0xa3a74829 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3a51cc6 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0xa3ac48a7 start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xa3ad10de ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xa3b66ddb xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa3adb0b5 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xa3b4ffb9 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c260bd sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa3c79a8f dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0xa3c8446c devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xa3ceb53d devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3e37626 devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3ef8e54 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa3f02f15 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3fa5546 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xa401eecf irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xa3fd5039 pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa404aa91 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0xa4062a57 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa40c582c da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xa40a31d8 blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa42a86f4 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xa43fecd0 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa455463f virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa457f50d ti_sci_get_handle EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa4622047 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xa45e6069 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa4664491 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa46d6d04 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa4702193 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xa4718577 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xa477e275 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4964ee8 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xa499a5c0 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xa49bbf0d dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xa4991eee __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xa4a35c5f bdev_alignment_offset EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4abf746 rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4ba1fb6 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xa4be7d5a driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0xa4bf2e41 cppc_set_epp_perf EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c15933 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0xa4c58a65 vcap_tc_flower_handler_ip_usage -EXPORT_SYMBOL_GPL vmlinux 0xa4ecd6b7 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa4e5a24f ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa503737a cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0xa5089a4b tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xa50988f8 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa4f5a0ad verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xa4fbed00 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xa4fdcb78 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa502770d mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa5053eea md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xa50a3c1c of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xa50a4c3f acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa514a3c2 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xa516f51a debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa5258468 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa52f4488 dpcon_set_notification -EXPORT_SYMBOL_GPL vmlinux 0xa530336b usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xa52d3b04 disk_set_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53f842b rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xa5438388 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xa5447956 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa54be529 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xa54d864b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xa54dcd2e pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa54de5d5 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xa54c807d fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xa55582f8 pci_create_ims_domain EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xa56ec4cb debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xa5796c8a of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0xa58d6258 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xa59a8710 strp_process -EXPORT_SYMBOL_GPL vmlinux 0xa5a09013 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa5a55ded irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xa5ae5cca da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xa5af4cc9 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xa5b4a7ac ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c3c6ce devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa5c7ca35 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xa5c51bdd bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xa5cc9b96 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d36bfb pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e19190 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5ec59ea irq_gc_unmask_enable_reg EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f432f6 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0xa5fbd774 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xa60185a3 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xa605a943 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xa60a09f4 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa60a4eda task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0xa6234f59 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xa60c5bd2 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa60d21f0 vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xa61a8e3d xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xa6314431 __nvmem_layout_register +EXPORT_SYMBOL_GPL vmlinux 0xa639128b iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0xa6445323 ftrace_free_filter -EXPORT_SYMBOL_GPL vmlinux 0xa647f0ac param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xa646e26a of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xa651069c pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa654caa5 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0xa655c903 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xa65d70d5 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa675d6ea ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xa6773e10 pci_msix_can_alloc_dyn -EXPORT_SYMBOL_GPL vmlinux 0xa678f78a bus_get_dev_root -EXPORT_SYMBOL_GPL vmlinux 0xa67b01e6 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xa6817d1e usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xa68d1404 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xa69a18b8 vcap_tc_flower_handler_cvlan_usage -EXPORT_SYMBOL_GPL vmlinux 0xa69fa6d5 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0xa65f3117 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa66260ad register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xa66fad27 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xa67b50da gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xa68a434e nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xa69f7fcf __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a6ebe3 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xa6ab8457 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b418a1 blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6b9e2e8 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xa6c66d83 component_release_of -EXPORT_SYMBOL_GPL vmlinux 0xa6d24810 hid_bpf_disconnect_device -EXPORT_SYMBOL_GPL vmlinux 0xa6d35f90 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xa6cd6884 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xa6d43c7d iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xa6d8b7da unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa6db33a4 serial8250_modem_status EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6e8e2ef of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xa6f58a8e thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xa701e755 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa6f3ef6f gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xa6f4259a of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa700a84b ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0xa7095936 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70f29f3 fsnotify EXPORT_SYMBOL_GPL vmlinux 0xa7241959 pkcs7_supply_detached_data +EXPORT_SYMBOL_GPL vmlinux 0xa7255ec2 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa740a370 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0xa7488085 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa74ea32d device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa75181ff regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xa766879f __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xa774d8d2 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xa77b44e1 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xa754b1b4 devm_of_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xa776c361 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xa78016fb raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0xa790ab4b __tracepoint_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xa79dd98e devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xa79e33f9 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7aabd69 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xa7acd78d gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xa7bd1e63 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0xa7c0807c imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xa7c68231 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa7ccf462 bdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xa7cdcd5a pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xa7db35f7 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xa7e4aaf6 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xa7ea19e5 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xa7f7dc2d pci_p2pmem_free_sgl -EXPORT_SYMBOL_GPL vmlinux 0xa7f89b03 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xa7fd3af7 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xa7fd97ca palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa7d0b855 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa7d0dcd6 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xa7d71e62 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa7dee2bf to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xa7ecd883 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xa7fefb7a perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xa8002422 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xa8006be8 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa8010cae sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa801bdf7 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa80c9413 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa80f95eb nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa811f24a scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa815a512 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xa81e64a9 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xa8270df2 acpi_get_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0xa82a9ffc pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xa835f202 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xa8477c59 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xa8516777 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xa81a96ce vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0xa839274d i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xa846ccdb usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xa84aef24 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa854b7d5 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0xa876ed85 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xa87aac60 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xa87f1b27 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xa859d431 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xa880c314 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xa88274a2 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next -EXPORT_SYMBOL_GPL vmlinux 0xa895f809 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa8906af1 regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa89bcd95 hid_bpf_device_init +EXPORT_SYMBOL_GPL vmlinux 0xa89f247d tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8aa0568 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xa8ae0f42 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xa8b688f5 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xa8d99184 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xa8e30e3c vcap_tc_flower_handler_arp_usage -EXPORT_SYMBOL_GPL vmlinux 0xa8e6eac1 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xa8edb74a usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa8f4f4dd __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xa8a66a64 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa8ac2214 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xa8c45dff component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xa8c80b60 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xa8e1db11 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xa8f419dd pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0xa8f97178 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xa8fb7f08 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0xa9009338 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xa90245ea blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0xa90cd8f9 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xa918cf5e ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xa91961c1 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xa9062bf1 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xa92a0ab3 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xa92d0bef max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa931e3a2 register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa949fae7 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xa932e59b crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xa9388bd9 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0xa93c35a2 pm_relax EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa963a3af l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa976159c irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0xa9902041 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa9952b6d proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xa970a4f8 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa9728bda extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xa974d27b usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa97d9d81 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa980bd01 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9829e15 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xa987c7c7 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9c3d5b7 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xa9cd0bf9 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xa9d25fe3 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xa9e128bd spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xaa074321 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0xaa1fd8b7 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xa9a876a1 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xa9b461ac yield_to +EXPORT_SYMBOL_GPL vmlinux 0xa9b78e61 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xa9c7ee2b devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa9cacc81 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa9ef5fe8 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xa9f3e28d device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa9f679b2 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa9f81e6e get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xaa008207 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xaa1627ec dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xaa21d1f0 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xaa28ff65 irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0xaa393cc6 mas_preallocate -EXPORT_SYMBOL_GPL vmlinux 0xaa3a43cf vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xaa45b391 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xaa4d2d24 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xaa4f334a devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xaa52ecb2 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xaa546d22 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa5a7bd7 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xaa3aee8f __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xaa457c10 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6cc45c regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xaa7029f3 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xaa7445b1 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xaa7c16ca extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xaa7cfe88 clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaa8bd7ea mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xaa963bec register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xaa9b743b fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xaaa138c8 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xaa6e3d74 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xaa6e9cd7 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa80ba80 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xaa857f01 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xaa92a077 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xaa93a67c devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xaa957841 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0xaaa4f2e0 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab3f790 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xaab709df component_compare_of EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0xaaba7cf1 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xaadc8077 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xaae87414 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xaaf71d4c __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xaacfed2e simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0xaae007e7 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xaae9fac7 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xaaf0cb85 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xab0143ee acpi_dev_get_memory_resources EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab0d8f04 tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab313bf6 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xab377f5f __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xab463a6e iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xab4646be __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xab4fbe2e gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0xab517eca serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xab527a9d dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xab52bd52 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xab54e66d alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xab5a060c unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xab6486fb alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xab6af0fc pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xab2e0951 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xab5107a4 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xab58c9c4 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xab60124d dev_pm_opp_of_get_opp_desc_node EXPORT_SYMBOL_GPL vmlinux 0xab6f0ded __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xab79eba1 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xab80335f iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xab93270d rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xab942f77 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xabb1002a crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xabb65817 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xab776aa9 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xaba47bd8 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xababc4d9 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xabac27a6 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xabc11724 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep -EXPORT_SYMBOL_GPL vmlinux 0xabd382a5 serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabdc7f2b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xabe46134 __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xabfeac84 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xac17df21 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xac25c02f devres_get -EXPORT_SYMBOL_GPL vmlinux 0xac299ea6 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xac34f7a7 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xac3dc6cf clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xac44e247 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xac4681af gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xac46b967 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xac4df27a clk_register -EXPORT_SYMBOL_GPL vmlinux 0xac5e6f4b mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xac7aab41 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0xac7d5477 failover_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0xac821b9f pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xac8d1cc3 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xac8fc6f1 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xac988cf0 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xac9c4fc7 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xabd652e6 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xabe46725 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0xabe5d008 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xabfbf7ee dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xabfd0ffd acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xabfd9993 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xac017eac xhci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xac3c1fd1 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xac46133a vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xac50a2a0 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xac740de1 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xac7c9ca3 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xac8dc8f5 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xacb31e41 acpi_device_fix_up_power EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc14c34 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacd2ee03 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xace02b96 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xace1ef30 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xace92f68 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xacf968ea kiocb_modified -EXPORT_SYMBOL_GPL vmlinux 0xad05a590 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0xad0ff5f4 of_request_module -EXPORT_SYMBOL_GPL vmlinux 0xad1b44f4 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xad1c094d l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xad20ebb3 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaccba4c2 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xacd7cee6 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xace5811e devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xad00a06d phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xad086f7a usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xad2687b3 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xad361b2a serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad4085e7 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xad3f21c0 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xad413d7d __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xad427fce pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad45c3f3 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xad4d7367 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xad4e58e8 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xad48160f device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xad494138 xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad5cd75e vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xad5071f4 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xad60fdf0 mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad650639 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xad6b4bc7 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad76dc0a of_led_get EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xad862c75 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xad9ce535 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xad8f1acb vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0xad90fded hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xad9ea60a tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadbbf935 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0xadbee8ef icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xadc111c2 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xaddadca5 vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xaddd99f4 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xada76015 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xadcfd35a __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xade740b6 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xade9b48b ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xadea7981 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xadf48905 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae061eb0 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xae0aa0d2 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xae0b5a80 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xae0bbb96 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xae0d7b90 extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae2fdad4 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xae300b6d tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xae37f190 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xae1321a1 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xae197c18 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xae37a53a disk_uevent EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3c862a meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xae4a263b ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xae3df4b8 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0xae5b2219 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xae5db1eb rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6f3952 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xae76ad0e inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7f1bf0 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xaeaf82f9 vcap_tc_flower_handler_vlan_usage -EXPORT_SYMBOL_GPL vmlinux 0xaec798d4 dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0xaee1a91b phy_reset -EXPORT_SYMBOL_GPL vmlinux 0xaee7cb37 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xaefddf82 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xaf02ddaa mmput_async -EXPORT_SYMBOL_GPL vmlinux 0xaf031f18 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xae889ff8 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xae966c91 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xae99099b access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xae9d47e9 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xae9dd6e0 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xae9e885a dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xaea302ce stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xaea60b5f msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xaed84ecf vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0xaedd7073 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xaedfe2ff auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xaee16bc8 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xaee67c20 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xaee6e945 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaefb51f3 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xaefff0f3 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf118d13 devl_port_register_with_ops -EXPORT_SYMBOL_GPL vmlinux 0xaf13c2aa iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xaf181a03 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xaf189e27 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xaf15a8cc i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xaf296ad1 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf39fb79 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf56e088 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xaf587ad6 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xaf599638 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule -EXPORT_SYMBOL_GPL vmlinux 0xaf750ad4 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xaf75e21f ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf7ad94c __SCK__tp_func_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xaf7c3938 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xaf847774 vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf941686 phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0xaf9a4b68 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xaf86cb9a ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xaf8fdf7a pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xaf939d1f xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xafa53248 rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb11f80 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xafb4c104 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0xafc3fe13 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xafb2bb9d ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xafc2a59c proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xafc8f39a irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0xafcd1cb1 vcap_chain_id_to_lookup -EXPORT_SYMBOL_GPL vmlinux 0xafd64288 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xafdb8dcb tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string EXPORT_SYMBOL_GPL vmlinux 0xafdeb17b init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xafe51af1 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xafe9f651 rio_free_net EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xaff44c63 call_hid_bpf_rdesc_fixup -EXPORT_SYMBOL_GPL vmlinux 0xb00812f9 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xafebcdb5 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xb00184a2 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb027c9b2 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xb0122fec virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb01a369a pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb02c506a blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xb031575f tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0xb04087a8 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xb048d20a synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xb03a1e7c fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xb03c0d17 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb043fc23 get_device EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb0563777 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xb05a5c5b sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xb05b5aa2 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb0665f41 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xb0691de7 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb0602be5 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb06b80b5 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07c919a ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xb0783e17 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xb0802f90 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb0852671 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb081a54c rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xb08810a2 trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb098bcc9 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0xb0a9de33 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb0ace0e8 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xb090024e mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb0ac86df __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb0b207a0 of_property_read_variable_u64_array EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c90c6d devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0decc42 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xb0e413eb irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0e5ff14 tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0xb0e7ab1f __traceiter_console EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f37313 dw_pcie_ep_raise_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xb0f711ca irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xb101737f dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xb107331d msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0xb0f31458 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0xb100167c cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb11a35aa folio_test_hugetlb -EXPORT_SYMBOL_GPL vmlinux 0xb11c9207 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb10f4558 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xb11cf36f unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb11e9d6b skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xb11f1234 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xb120b3b1 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xb12a69ae nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0xb1378d3c fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xb127bcb8 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xb12b9cdd pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xb12e229b pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0xb13837ce vcap_rule_add_key_u48 -EXPORT_SYMBOL_GPL vmlinux 0xb139db6c ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0xb143d5de gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xb144065d get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xb1471fb4 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xb13d2ef3 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb1425b95 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16fd467 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xb19ac4df usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb1accfc4 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xb172f92d ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xb19bdf16 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb1a8bb59 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xb1aca456 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xb1ae65aa preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xb1b3f6ed phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL vmlinux 0xb1b4e400 sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0xb1b5cb6e scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail -EXPORT_SYMBOL_GPL vmlinux 0xb1bda58c perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c62f63 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xb1c9180f fsl_mc_bus_type EXPORT_SYMBOL_GPL vmlinux 0xb1dfecea power_supply_battery_info_properties_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e6aa4b msi_lock_descs -EXPORT_SYMBOL_GPL vmlinux 0xb1ed2614 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0xb1f2056d hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xb1e43475 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xb1e8258e ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb2019157 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xb2020b19 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb2129d43 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xb2058c4c crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xb20a6b85 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xb21a4d33 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2216d61 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xb226cc68 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xb22adb5a rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb22d2192 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xb22d790c ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb22f3385 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2458c57 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xb24b0c2f __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0xb24b9e9e dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0xb256be16 efivar_is_available +EXPORT_SYMBOL_GPL vmlinux 0xb25c1fa8 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26bbae7 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xb26dcefc __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0xb2765847 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0xb28318ae mtk_clk_simple_remove -EXPORT_SYMBOL_GPL vmlinux 0xb2835b79 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xb2938830 devl_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb26b0136 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xb27702c1 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xb27c7dd3 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2991b1c xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0xb29ff563 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xb29a3da6 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xb2ba0e5e ma35d1_reg_adc_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0xb2aa59e2 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb2b0c425 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb2b8846f __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xb2b906ae sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xb2bbf3de acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2e3d4b2 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb2c3f330 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xb2d8be61 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xb2e105e0 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb2e5128a of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xb2e62ee7 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ee1355 pci_p2pmem_virt_to_bus EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb2fc0a8d spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xb306e805 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb306bb32 phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb309d947 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full -EXPORT_SYMBOL_GPL vmlinux 0xb314d0a2 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xb31639c4 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xb325bdc4 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb3297204 fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0xb369c9ef kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb37570a8 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xb389bb9f mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xb38a9ee3 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xb39a2e9f hte_push_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xb39d1d04 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xb3bf8e34 hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0xb3e84705 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xb3f95c7d pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xb31508c8 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xb32142c3 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0xb3228499 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xb32ca483 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xb32d8f44 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xb33093cc trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xb343dcbf sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xb34f6248 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb35785f8 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xb3586bf2 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xb3681ad6 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xb37a2fef platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb38a9f6b rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xb38c11f6 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xb3b18e99 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb3bdc50a usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xb3d16b34 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xb3ddc8ce of_k3_ringacc_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb43b89a0 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xb43f8b52 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xb40d9f12 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb418b031 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xb41de8c5 nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0xb42bd845 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb431c07e xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb43322a9 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44dc39a irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb442ff46 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xb44bff93 devm_ti_sci_get_resource EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4587a12 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xb4642fc4 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb48687b2 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xb486bc06 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xb48d22da regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xb454bbee adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb47301c2 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb47cc577 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xb48686b2 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event -EXPORT_SYMBOL_GPL vmlinux 0xb4b5c19d locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xb4a8f1f7 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c24689 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb4dc43fa dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xb4e6a3fd tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xb4e888ad blk_crypto_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xb4ea41f1 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb4bb99ea gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f3a7b7 failover_register +EXPORT_SYMBOL_GPL vmlinux 0xb4faf99a blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb507a3c1 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xb50505d8 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb50e8c22 ahci_platform_find_clk -EXPORT_SYMBOL_GPL vmlinux 0xb5165473 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xb5173bd2 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xb50d8061 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xb514ee47 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb516e6ec led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb5344e9c mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0xb5374b73 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xb53aba5a mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xb54b2fd0 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xb53fea35 tc3589x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xb5517893 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xb5554ae8 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0xb556d575 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op -EXPORT_SYMBOL_GPL vmlinux 0xb55fb537 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul EXPORT_SYMBOL_GPL vmlinux 0xb570745c __SCK__tp_func_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb574984d dev_pm_genpd_synced_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xb5749fbf regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xb587f59b usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0xb58f8add disk_alloc_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0xb591f2e1 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb58094ac serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xb5a0261c usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a85b8d of_alias_from_compatible EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5ccbf16 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xb5df68dc usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xb5dfa141 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0xb5f4fb23 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0xb5fe132a alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xb606302d iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xb6192915 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0xb6200ca1 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xb6225a79 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xb5ba66bd ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xb5ce0f34 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xb5cec00c device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb5e6e981 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xb5eb0db2 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb6035e26 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xb6133bc2 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xb6182201 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xb61abc51 md_allow_write EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62b4acf clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb63a6988 gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xb63d63a5 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb63f0ebb sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xb63b4774 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb6425404 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb6428c73 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xb6445027 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb6498c84 of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xb64c7327 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xb650f183 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65cf33e power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0xb65e3f53 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0xb667cacb virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xb67469dc blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0xb65a1637 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb66bc276 irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67d2d33 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xb6871d9c is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0xb68c8dd9 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xb68dcc3e xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb69a1b42 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb6a0c08c blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xb6bd8c6f trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xb6bf6f1b __traceiter_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xb6d96652 thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0xb69ebbf8 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6c0d1df __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xb6c5d94c __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0xb6d13c2e __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xb6df2694 rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0xb6e2df56 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xb6e0f232 iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6e89af0 phy_get -EXPORT_SYMBOL_GPL vmlinux 0xb6f713c0 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0xb70662bb bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb707b473 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb70d722f clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xb6eb5d28 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb6f9a156 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb6f9b186 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xb7068eac devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xb71ffd02 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xb7214fbd blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb736e3ea rockchip_clk_register_branches EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb760d1da udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb76dc915 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xb76ff859 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xb7799721 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xb77e42b0 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xb77eae03 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xb740535e stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb75c4f60 vcap_tc_flower_handler_tcp_usage +EXPORT_SYMBOL_GPL vmlinux 0xb76676f3 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xb771c2b6 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xb774ffb7 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xb77807ea fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xb77d0765 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb7868ffd nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78d93b6 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb799c00a iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xb79fbab7 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xb799411d dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb79ca896 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xb7a3158b pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7a8ed03 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb7ad3474 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xb7b2c11b br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xb7be2a11 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xb7c2ebb0 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xb7afe736 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xb7b368ab badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7c93faa mtk_clk_register_pllfhs -EXPORT_SYMBOL_GPL vmlinux 0xb7cfe3aa blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xb7d85c79 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7d86810 perf_report_aux_output_id +EXPORT_SYMBOL_GPL vmlinux 0xb7cae072 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xb7d204bf event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xb7dc2f4e usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb7edab3e pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xb7f44bd9 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fe2ad2 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xb7fe3126 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xb805f8b2 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0xb81047f3 backing_file_open -EXPORT_SYMBOL_GPL vmlinux 0xb818e957 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0xb81fc0b0 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xb822cced pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb8231cb8 __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb829858b ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xb83fa628 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xb84d5d51 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xb82bfe0c dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xb8324529 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0xb83a1bc8 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xb83e1d90 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0xb8588432 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb85064ac dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0xb868676e mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb86c433c regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0xb87d1a7c genphy_c45_baset1_read_status EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb880adb7 rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb894326c k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0xb8982f8e nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xb89d4fdd dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a391dc cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb8a3f61a fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xb8ab62a2 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb8b45ca0 xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8bc8b92 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0xb8bd4f78 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb8bf14c9 vcap_tc_flower_handler_ethaddr_usage -EXPORT_SYMBOL_GPL vmlinux 0xb8caf459 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb8c66b88 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb8c92697 usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d675b9 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xb8e78b4b devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb8e8eda7 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xb8ea1866 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xb8d2da7d __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xb8e51035 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xb8e9457e ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8fdb502 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xb8f70f0c kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xb90e7f70 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xb9108c99 debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb91c07f9 of_regulator_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xb93c6e46 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb92bdb3d nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb9341db5 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xb934ef30 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb948aa54 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xb95a31a7 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xb941f76e vcap_tc_flower_handler_ipv6_usage +EXPORT_SYMBOL_GPL vmlinux 0xb9423bf7 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xb94d703f proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xb94f8bb8 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xb951816b powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xb957a09f securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xb963a603 kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb96cac1e __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xb9700f56 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0xb980dc42 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb9993257 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xb986c1c7 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xb997416e usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xb9aecb35 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xb9b83e9f device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xb99c1729 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xb9a83163 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xb9aa9169 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xb9b26a82 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9be8de2 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c4b60e pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xb9c7c400 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb9c5a9af kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d619ab pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xb9dbf18b regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xb9dfdf54 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0xb9e4015a iomap_invalidate_folio -EXPORT_SYMBOL_GPL vmlinux 0xb9ec4c19 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xb9f910fa rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0xba091b47 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xba0e5f4b arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0xba15ead3 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xba1bfff9 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb9e0fa9b timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xb9f3fa23 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xba055ceb kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xba1bd843 clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba2761f9 ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba2d445a crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xba3bbaf0 virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0xba67fbc1 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xba334eea nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xba3e68e3 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xba44bfe3 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xba4593f6 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xba45c682 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xba467d20 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xba65d763 __fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0xba6eb67d __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xba7a0b08 walk_hmem_resources -EXPORT_SYMBOL_GPL vmlinux 0xba895b5f crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0xba89b2ca mtk_clk_gate_ops_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0xba8ffed5 crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0xbaa4103e sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xbab76255 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xba813aae alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xba8db984 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xba9af581 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xba9cd896 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xbaa09033 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabbe65f wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xbabf4219 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xbabed63b __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0xbac94448 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xbac95420 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xbad81f39 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xbadbbae3 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbae13c29 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xbae6a159 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xbaf6106e i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb00a729 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xbafbe120 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbb004e08 usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb1afe40 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0xbb1bc7ca sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xbb1f26e3 vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb316841 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xbb3bae1b ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0xbb3e107a gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xbb30f4cf crypto_clone_shash +EXPORT_SYMBOL_GPL vmlinux 0xbb33cf02 of_request_module EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb5933c0 vcap_set_tc_exterr -EXPORT_SYMBOL_GPL vmlinux 0xbb5ab139 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xbb63ccba regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xbb446146 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbb466be8 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb76f57e dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xbb782586 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xbb7839fc devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xbb9096af clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xbb93d4f4 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xbb94745f fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xbb9d2b6f unregister_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0xbb9d50e3 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xbba936a3 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xbbb9570a iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbbbb35c6 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xbbd1ad05 dma_opt_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xbbd77045 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xbb8fe8bf __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbb934ba4 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbb93e788 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xbb9774fa fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xbb98159f ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xbbac09ba crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbbc4b050 crypto_clone_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbbca8bca blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xbbdc255e devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbf4b3e3 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xbbe98af6 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xbbec6cc2 devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config -EXPORT_SYMBOL_GPL vmlinux 0xbbf8a145 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xbbfa91a1 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xbc18efa7 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xbc1af0b3 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xbc044672 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xbc17026c fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xbc30fe3a crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc31ec09 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xbc34a1ff spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xbc3e8282 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc4223d0 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xbc531a77 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0xbc53e71b tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0xbc57606a iomap_get_folio -EXPORT_SYMBOL_GPL vmlinux 0xbc5877b3 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xbc44af8c ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xbc4a4c47 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xbc4cbd5b mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xbc55cbf3 of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc945d68 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xbc6e227c aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xbc6e2735 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xbc877034 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbc916778 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xbc93b637 i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbcb1a8ab pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0xbcb231bf direct_write_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbc9e0264 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xbcaa0955 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xbcabb819 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xbcb115e7 led_put +EXPORT_SYMBOL_GPL vmlinux 0xbcb223ce rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcb2d54b irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc6c89f badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xbccafb91 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbcd6aceb i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xbcdc9667 pse_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce83157 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xbcf11364 devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf5e5b1 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbcf8463c skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xbd01e87f balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd18b231 fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0xbd2836bf blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0xbd311bd5 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xbd391a67 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xbd15d181 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xbd1db70e xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xbd1e0b54 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xbd24aaf3 cdx_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4f8a40 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xbd57c80a devl_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbd5e2711 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xbd624c43 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xbd4d9f16 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd4dc474 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xbd602642 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xbd68056c clk_hw_get_parent_by_index EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd8b405a xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0xbd90e4f8 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbd7c5eae scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xbd7e7908 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xbd88cc55 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xbd8a5244 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbd8e0d3c sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xbd9f4a36 iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbda80161 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0xbda87a45 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xbda7465c pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdd90b3b __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbdc508a7 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xbdd0eff5 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xbdd9b869 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbdddb4eb rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xbde7bd4e blk_crypto_intersect_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xbde927e1 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xbdefff35 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xbdfa899c fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xbdfabb6a kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xbe0f3951 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xbe0fa395 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0xbe12fc3b tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0xbde1f74b udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xbde614e9 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xbdec1f92 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xbdec8173 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xbdf2465e paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xbe03cfab irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xbe0fc137 pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll -EXPORT_SYMBOL_GPL vmlinux 0xbe19cc3c dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xbe2d2251 devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xbe325781 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xbe3ea2c7 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xbe3ee6ae pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xbe3fdba1 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xbe55870c sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xbe1d0b97 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xbe28e8e1 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xbe2ec92f usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xbe351a69 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xbe361a7c switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xbe43ede5 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbe45701a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xbe4adc25 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xbe681ac5 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6a0182 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xbe8a6b67 nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0xbe6933c6 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xbe70ea59 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbe721a5d tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xbe730d2d i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbe80b64f put_pid +EXPORT_SYMBOL_GPL vmlinux 0xbe851c2d nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe92a3b6 dw8250_setup_port EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe9920bf pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xbe97a464 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9ed55b dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xbe9fdfbd acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xbea5a008 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized EXPORT_SYMBOL_GPL vmlinux 0xbeb7b7d3 __traceiter_rwmmio_read +EXPORT_SYMBOL_GPL vmlinux 0xbebc70b7 fsl_mc_bus_dpaiop_type EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbed4a887 fsl_mc_bus_dpdmai_type -EXPORT_SYMBOL_GPL vmlinux 0xbed79b5a regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xbef3e9f4 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbed61e49 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xbedd2e05 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xbee0d3d4 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xbeed7c56 vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1f2eec ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xbf263bf5 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf06206b device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xbf0ac78f devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xbf20b2e5 devl_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf3a2809 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xbf39841a of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xbf42505f devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf49eda7 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xbf53d5be devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xbf53e151 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xbf5c79dd tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xbf5f16e2 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbf810e69 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xbf96ab79 vcap_chain_offset -EXPORT_SYMBOL_GPL vmlinux 0xbf96ee0e netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xbf994cb7 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbfa7e9a7 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xbf490f98 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xbf7ad6d2 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xbf7f1d04 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xbf8de5e3 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xbf990088 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xbfa46161 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xbfa60352 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xbfbaf135 uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfdf8861 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xbfc86e40 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xbfc9dfce pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xbfcbe43a device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbfd45027 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xbfda37ea crypto_clone_cipher EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfea7440 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xbfeaa083 sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff04c66 blkg_conf_exit -EXPORT_SYMBOL_GPL vmlinux 0xbff62b3c xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc008a46b of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xc00e5278 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xc00fca3e replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0xc01ea12e pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xc022438c imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0xc02e7d0c apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xc0464c97 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xbff297bb nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xbff5ecbf mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xbff78868 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xc005e00b pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc00685d2 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xc036f14c tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate -EXPORT_SYMBOL_GPL vmlinux 0xc047278c vcap_get_rule -EXPORT_SYMBOL_GPL vmlinux 0xc049b453 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xc05725e8 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xc0553d82 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc074cf7f dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xc08e5a31 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xc0707f5b phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0xc08441c2 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xc08646ee badblocks_show EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0934624 scmi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc0a0e94f ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base EXPORT_SYMBOL_GPL vmlinux 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0b4d17a devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc0b9e0a8 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xc0c26719 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xc0c2841d sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xc0cfe5e4 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0xc0d3acfd regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xc0d3cb05 dummy_con EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e74b2b crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f31e18 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0xc0fa8a7b crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xc1009aa3 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xc0f772a9 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xc1081e72 pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc1180264 ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0xc11df5a5 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xc14290e9 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc1180783 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc11a710b power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc11e840b rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc1246aa4 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xc1250c4e fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xc1339172 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0xc14f7616 __SCK__tp_func_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0xc1532241 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xc15616c3 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc1594d11 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0xc15c71d7 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xc16923cf badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17b6101 kvm_are_all_memslots_empty -EXPORT_SYMBOL_GPL vmlinux 0xc17bae20 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc1760b17 relay_flush EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc17ffe17 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xc1873ab4 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xc19618ba ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xc17f2755 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xc1810868 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xc1941b2b acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0xc19b2437 __tracepoint_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc1b3d967 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0xc1c55ff1 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc1c8b75f mtk_clk_register_gates -EXPORT_SYMBOL_GPL vmlinux 0xc1cfcb36 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xc19be461 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xc19cb5c3 devres_get EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1e47442 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1f7a021 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc208759c msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xc20962ea virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xc21d0d97 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc221cbc4 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xc1f0cfda ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xc1f20af2 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xc20efb9c tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xc21765db mtk_hw_get_value EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23679d9 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc239f4bf genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xc245d6d3 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc258a1ba ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xc25931ec __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xc251549b ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc2665c0b open_related_ns EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc27b6771 device_add -EXPORT_SYMBOL_GPL vmlinux 0xc27f55cf __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc287dccb devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0xc288c4a3 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xc2705d90 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc27eef62 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc28e40e6 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0xc29059f2 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xc293ee77 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0xc29a0222 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xc29a836a fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0xc29ed860 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc29fedca devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0xc2965295 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xc2a0d8a3 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2a88a1e fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0xc2ae1109 folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0xc2b3625a netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xc2b6f010 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xc2c00d3a sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2d380ae vp_legacy_set_features -EXPORT_SYMBOL_GPL vmlinux 0xc2d92b55 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xc2dba4ba genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xc2dd14b9 mtk_pinconf_bias_disable_set EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e84d66 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xc2ea1aba wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc2fc334a transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2fdd68b badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0xc30dee0c __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xc310c453 rz_mtu3_shared_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc2df7460 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2e1b3c9 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xc2ffba07 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xc3042d3d sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc313f01e desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc31a5911 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc3295770 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34a3609 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xc349a1ca pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0xc35d2404 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xc3632cf9 power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc372db54 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xc376c213 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xc380069e regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc390e238 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xc3975d1b crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax -EXPORT_SYMBOL_GPL vmlinux 0xc3c3f408 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0xc3bf865a dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xc3c37619 of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3db2e6c nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc3c56dab led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xc3dd6df4 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ee2d74 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xc3f101ae __sock_recv_cmsgs -EXPORT_SYMBOL_GPL vmlinux 0xc40115c6 fscrypt_fname_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xc41ca282 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xc3eb0dbc gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xc3f18b8d acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xc4048566 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xc410ff66 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xc415d625 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xc4176058 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xc418e6ba sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xc427b949 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4288310 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc429a49d virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xc430a28c dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xc433342b __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xc43593a7 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc4280f34 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xc42e192e usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xc4339058 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc43b5016 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc43bf614 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc44eeffc sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xc450f5af ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xc45162ff dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xc4547b79 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc459fa7c mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc455c8b0 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xc460fb81 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource EXPORT_SYMBOL_GPL vmlinux 0xc47ee012 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xc49942d7 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xc48124c1 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xc487cf2c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc49e5de8 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a6197e dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4a7f2e5 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xc4ad7bf2 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xc4ba9aeb zynqmp_pm_fpga_get_config_status -EXPORT_SYMBOL_GPL vmlinux 0xc4bc8afa devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xc4c087c1 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xc4cb10d8 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xc4cde2ec sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc4bb5a5e power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xc4c4a2c6 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xc4caae16 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xc4d5e0e8 acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4e86b68 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4db11fd extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xc4e0c71d pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xc4e35e76 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4e3ccfe devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc4e4b6f6 dpbp_enable EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f21f9c devm_thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc4f9e98d genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xc5046f80 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xc50a790a dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xc50efc47 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc4f70415 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xc508194e ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xc5128a6f sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc523c253 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xc526e7e6 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xc52d92a1 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xc532e814 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc5357440 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0xc53d79e7 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xc55e6d9e rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc51ab85f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc524e659 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xc536fbea dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xc53a797a devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc54ebfb7 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56acb24 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc58018d1 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xc580b9ef ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc597e802 acpi_dev_get_next_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0xc59e1b72 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xc58e2b57 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xc59f29d5 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc5a592e4 crypto_sig_set_pubkey EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a6eb5d __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0xc5b63122 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xc5be9727 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xc5c755ff em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0xc5d02302 md_stop -EXPORT_SYMBOL_GPL vmlinux 0xc5d8d4a8 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xc5a8424d rz_mtu3_16bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0xc5b6465d acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc5bc857c phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xc5c2fcbd vcap_tc_flower_handler_vlan_usage +EXPORT_SYMBOL_GPL vmlinux 0xc5c59fdd devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5d43f1f regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc5d61c7c balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0xc5d9a126 unregister_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0xc5d9cbd0 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xc60091eb gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xc6114305 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xc611a65f __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xc5dcbaa8 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc5ff5d11 fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc62ab621 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xc62bce6c acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc62dde6f ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xc62f8747 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc6270a04 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc6284c0e fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xc62a5a15 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xc62d48e4 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xc631166f crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0xc636d60f __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xc64823f9 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xc64c2d0f devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6393ac4 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xc639f99f d_same_name EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc669cb97 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc675e625 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc6837b6d devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc67d3493 dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc6909842 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xc6952cb4 clk_register_hisi_phase EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b499f2 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc6b7f8d8 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xc6bb7d68 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0xc6bd5117 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6c0c011 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xc6cab4de bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6d25e5f cdx_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc6dabdff crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e23564 virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6e5c1aa devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0xc6f710b3 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc6e929fd kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xc6ee0ad6 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xc6f2586d pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc71536b0 tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xc716a650 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc717b72b dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xc74206d4 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xc7176f17 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xc7255a6f device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc729af03 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xc7435741 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xc7475d42 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0xc74c07ce cppc_get_epp_perf -EXPORT_SYMBOL_GPL vmlinux 0xc7556d75 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xc76cf529 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xc7646108 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xc76dc0c9 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xc775fdda ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xc77800bd __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78de536 iommu_device_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xc7984dd1 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xc7975e3d iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a389d2 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a833b7 user_read -EXPORT_SYMBOL_GPL vmlinux 0xc7a8b00b em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xc7b5eba5 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xc7aba6d9 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xc7abd11e class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7bb91ee debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xc7c0b693 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7c7dd1e iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0xc7c9ff75 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xc7cbff42 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc7d067b8 pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0xc7d62184 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xc7d9d53c power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0xc7dd3874 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xc7d45f4a rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc7df174d __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xc7e0eef8 zone_device_page_init EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7e95f72 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0xc7f24031 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xc7f8160b of_property_read_variable_u32_array EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc806528a regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc809b52f pci_find_dvsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xc80a8483 crypto_sig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc8167954 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xc827c861 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xc8288f95 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xc7ff5a96 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xc8157b94 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc8280311 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc82bb056 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc83884c4 device_unregister EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85f24ef device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xc8680179 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xc85c09fa tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xc86f4267 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xc86f9d39 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc89c2613 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xc8a9abb4 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xc8b22055 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc8c5d023 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xc8d16ff7 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xc8d38775 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xc88080d6 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0xc89de3bc usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc89e02cc tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xc8a514b2 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xc8ad01e6 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc8ae2a87 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0xc8bb0f08 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8c40e6f pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xc8d075ca pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xc8db041c ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8eef5e6 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xc8f1decd serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0xc8fdcb75 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xc8efbe26 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xc90523dc of_reserved_mem_device_init_by_name EXPORT_SYMBOL_GPL vmlinux 0xc905402b log_write_mmio -EXPORT_SYMBOL_GPL vmlinux 0xc909d200 devm_mipi_dsi_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xc9119f3c __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xc913efa4 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xc908743e led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xc91dfd07 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc925120b aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc92a4ee6 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc92e501f phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc941fe43 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xc95048b5 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc942fe85 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xc950ddb0 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc95165b2 debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95ca3a8 qcom_icc_xlate_extended EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc9654f79 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xc96a773e crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9827df5 dispatch_hid_bpf_device_event -EXPORT_SYMBOL_GPL vmlinux 0xc985cb86 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xc987f4fc wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xc98a0f4e sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0xc99d3798 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xc9ab9bf1 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xc9ae299d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xc9b196a3 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc9b3adb3 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0xc9c2db57 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xc9c2eafc __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9977201 udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xc9bd1a27 ata_common_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9ea2369 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9ee3dc6 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xc9f0648e dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xc9f27aa8 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc9f6afd2 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca011590 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xca05c1ca mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xca07e47e ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xca0fc1f6 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xca17dbce list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xca111952 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xca335f47 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xca37d8fc clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca456698 acpi_dev_gpio_irq_wake_get_by -EXPORT_SYMBOL_GPL vmlinux 0xca4b9f72 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xca47a394 devl_register +EXPORT_SYMBOL_GPL vmlinux 0xca494d5f vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca5ee3c2 tcp_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xca646d31 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xca65e273 mtk_clk_unregister_factors -EXPORT_SYMBOL_GPL vmlinux 0xca72e91c __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xca51f91d dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xca551acf debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xca5ec4c2 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xca60796b devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xca65675c virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xca6b0600 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xca6b4943 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xca6d37b6 rt288x_setup +EXPORT_SYMBOL_GPL vmlinux 0xca7440ac acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xca79da28 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca7a9261 generic_device_group EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7dab50 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0xca80db4b cdx_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xca8947d1 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xca829842 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xca859293 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xca8aa95c __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xca8f90e8 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xca9114cb uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa3ec07 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac09030 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xcad070e2 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xcad114c8 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xcad26391 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xcad2b76c imx_clk_hw_pfd +EXPORT_SYMBOL_GPL vmlinux 0xcade356a rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcafc7015 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xcafc7d67 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xcb0530be fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xcb09182d shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xcb120434 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xcb197fed rz_mtu3_16bit_ch_read -EXPORT_SYMBOL_GPL vmlinux 0xcb26bdc6 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xcb0ef90c led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xcb25063e gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xcb29a504 pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb3ef2d4 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xcb373c2b vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xcb3d8498 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb4078a3 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xcb44aa5c devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xcb546119 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb571904 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xcb5f03b7 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xcb64b513 irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0xcb750b71 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xcb8ed26e fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xcb96c7b3 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0xcb9a1278 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xcb9db39b icc_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xcbac5d06 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xcbb9d30e blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xcbd459cb kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcbd551ee devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xcb5e9514 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xcb76e7ca kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xcb7f055c sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xcb83a204 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xcb8a5d1b vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xcb9a73a4 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb9bf992 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xcb9d4d7b pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xcb9d5fb4 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xcba63a71 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xcbe1c6aa pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbeb277c power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xcbfb821e rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xcc01cdc6 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xcbffa3d2 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xcc00afd9 of_pci_get_slot_power_limit EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc217a49 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xcc161141 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xcc1a1f9f bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc28c337 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc614f73 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xcc6a4a8e xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xcc7de89e rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xcc81699a scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xcc889f22 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xcc90fffd irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xcc43cbd7 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xcc47a501 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xcc4b3728 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0xcc56a294 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xcc650abb param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xcc684414 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xcc7179f4 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xcc756dc7 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xcc794b9d of_irq_to_resource EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc97bb40 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xcc9afd96 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0xcc9c3be3 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xcc9d23be unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccb2449e devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xccb9e5bb stmpe_dev_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xccbb6f1d xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xccb89d60 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd59265 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccd91a9c mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xccefe8f8 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccffcba9 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xcd09a689 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0xcd0e91c5 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcd0eca5e gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xcd14bc59 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0xcd1d5b6b fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xccfd38e2 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xcd0e832c regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2747d0 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xcd396851 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xcd3c53b9 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcd4e06a3 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xcd608f23 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xcd2a0fde __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xcd2d89fa rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xcd3b6af6 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xcd47b9e1 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd5a388e uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xcd6d9dfa crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcd6e5e7a regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd7078f0 devl_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd78bf8a __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xcd7d3f5b acpi_dev_ready_for_enumeration -EXPORT_SYMBOL_GPL vmlinux 0xcd81b462 virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0xcd8e60cd phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd964127 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xcd9c9084 of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xcd9cca23 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcd9d5901 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xcda002b5 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xcda021a3 vcap_get_rule_count_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0xcda1c641 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcda49e33 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc3d183 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcdc5d505 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xcdc82ec5 acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd4e90e wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcddf3850 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcdf68845 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0xce01a2f4 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcdfbceed pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory EXPORT_SYMBOL_GPL vmlinux 0xce0e789f srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xce13f1b9 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xce2e5b97 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xce11c074 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xce13f159 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xce162a5f devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xce24cc11 pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce369cea fscrypt_dio_supported -EXPORT_SYMBOL_GPL vmlinux 0xce39eb30 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0xce492222 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xce34a8ad vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xce3d6f50 devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xce631f6a blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xce5d02c1 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xce6460eb thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xce64759c of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce72b300 vp_legacy_get_status -EXPORT_SYMBOL_GPL vmlinux 0xce9de0c2 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xce7c1857 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xce7fb03d phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xce8a14e6 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce8b2b40 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xce908c05 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xce9cd447 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xcea4cc91 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs -EXPORT_SYMBOL_GPL vmlinux 0xceaf7335 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xceb1348a badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb4652f debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xceb80199 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xceb98e47 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xcec1a152 blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0xcec502f0 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xceda99e4 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xcedb51eb of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xcec237d8 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xceed0f42 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xceef46d1 dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0xcef629de vcap_keyfieldset -EXPORT_SYMBOL_GPL vmlinux 0xcf16658b rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xcf2512e7 folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xcf553b72 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xcf84a142 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xcfa1fe3e bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xcfae1017 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xcfc3bcb4 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xcef4e8bc sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xcefdc27b __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xcf05e575 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xcf0cf634 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xcf17c1e8 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xcf20713b i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xcf42a650 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xcf59703a tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xcf59ec30 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf74eb56 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf8f46fe fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xcf92498f __fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xcf930df0 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xcfa739ae crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xcfb6071f of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xcfbb56e3 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfd2706a pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xcfcd9ab2 __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfdad035 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xcfe04f47 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0xcff4b4d1 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xcffeecb3 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xd00a3b13 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xd0236987 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xd00c09ea relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xd00e514c class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd0237764 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd03900c6 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd041b562 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0xd043a3c8 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xd04565d3 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd05fd0fb register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xd05ff796 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xd06106ec synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xd061fddd pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd06b096d blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0xd0778ab9 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xd0844cf7 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xd085df2e ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0xd08c7f39 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd098179f fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xd076a9d2 priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0xd07e996c acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd09c22f5 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xd0bb34b6 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xd0a210ab inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xd0bf3ed5 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c4f588 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xd0cf1b92 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0e0b23e of_k3_ringacc_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd0e0c0b7 __traceiter_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xd0f64986 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd109918d xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xd109e7d0 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xd119146e gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xd1201942 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xd1388a6d skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xd12f0776 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xd12f2be0 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xd13031c3 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd1317634 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd1333f3a dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xd143807d device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xd13a8393 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd1456975 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xd148060f ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14d47e8 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xd1528adb fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0xd1511014 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xd152d141 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xd1567fe6 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15bb90b rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xd1608c49 blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0xd179bb49 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0xd19ad946 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xd1a1de6e power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd15fec6e ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xd163e52c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd1776003 vcap_is_last_chain EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1b03e93 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xd1b57e56 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cd5598 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xd1d2128f securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xd1db24ea gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0xd1ee6ede __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd1e471fe gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xd1e65efa regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xd1e6f49f fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xd1eadc20 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xd1f11bd6 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f6b617 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd1fea41d devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd1ffc7de stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd207e995 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xd21149f3 tty_standard_install EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd21f3096 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xd22f3cf0 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xd240740b device_move -EXPORT_SYMBOL_GPL vmlinux 0xd248874e k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xd23aac41 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xd23bcd20 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xd23df5ec fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xd24582c3 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block -EXPORT_SYMBOL_GPL vmlinux 0xd24d0ca6 serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd2709737 net_failover_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd270e252 thermal_zone_device EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2768242 lynx_pcs_create_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd27fbafd gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0xd291d190 fsl_mc_populate_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0xd2985e27 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xd2887898 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2ad5d5a xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xd29e8745 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xd2a2090f blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xd2a354bc __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xd2b0b8c2 pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2bb7cdf tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xd2c2a228 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0xd2c4f4a1 inet_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xd2cc0679 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xd2d54a65 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xd2c1b45e hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xd2d5e489 failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2d68f94 cdx_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2e89ab7 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xd2ee8fae xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd2dda563 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd2eb8f77 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd31106c9 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xd31162e5 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xd3120bf3 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd3066a27 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd3156f1a kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd317b373 pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd32b9e32 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xd33798ec blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xd3227cee ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd32b1ed5 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xd333455d devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xd3344494 cdx_dev_reset +EXPORT_SYMBOL_GPL vmlinux 0xd3358f2f ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd344a68e spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xd3489369 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xd34ee096 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xd3535047 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xd33b3bef watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd33b8c22 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xd33bae75 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xd33f5974 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd34ffec3 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd35bebb4 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3698d26 vcap_lookup_rule_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0xd36b15df led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd36ca77e bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xd36e78c7 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd3724b26 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xd372cbe6 percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd379490c __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 -EXPORT_SYMBOL_GPL vmlinux 0xd385f125 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xd37e3526 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xd386cb5d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xd38f4b9a umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0xd3901d33 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0xd390a71f kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xd39861fd devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd39e8a68 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3acd1c5 power_supply_charge_behaviour_show -EXPORT_SYMBOL_GPL vmlinux 0xd3aeee38 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xd3bdd390 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xd3cb51ff i2c_acpi_new_device_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd3d3831e i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xd3e0d4dc sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd3ac777e fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0xd3b62bd8 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd3ba569c virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xd3c4eb8e __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd3cc1e31 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd3d0ce7c __fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3eeffbf dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f7da5c xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0xd402e68e __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xd3f63f5f regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xd3f79fcb security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd3fff0a6 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd403776c crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd403c2cb bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xd409dbaa regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd41dddec eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xd4219209 __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42df7d6 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xd42d95e9 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd42da5ad copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0xd42de5ca blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd447cf51 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd440bb42 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xd44728b0 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c5b0b sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd450bfdf sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xd453bd45 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xd45e0ca4 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xd4670bfc iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xd4661581 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4669d2e acpi_match_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0xd467e375 usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd47fac2b fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xd475f190 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd4766d5c of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xd479e453 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd47c5952 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xd48196c3 gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xd48a9773 drop_reasons_register_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd4919c18 kill_device EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd497f5af inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xd49deaf4 shake_page -EXPORT_SYMBOL_GPL vmlinux 0xd4af2acc blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0xd4b16656 fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0xd4b46d49 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xd4a0b7fe pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd4a7ebeb clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4bf8370 led_trigger_read EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4ca65dd crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4db4363 zone_device_page_init -EXPORT_SYMBOL_GPL vmlinux 0xd4dbf609 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xd4de08f4 genphy_c45_fast_retrain -EXPORT_SYMBOL_GPL vmlinux 0xd4e3b3c6 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xd4d14b0e fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xd4dd8720 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xd4e4ffc1 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xd4e5a028 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xd4e5d438 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4fc6549 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xd50a2a42 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xd5129fac sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd51049b0 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd515555f pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xd51d2ed3 of_mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd531d95c sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd57a07fd __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd55defd8 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xd5600088 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xd56010d7 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xd577ec91 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd58afdc6 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0xd58bc9b4 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd5828fcc of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xd588c021 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd58a1642 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd58c8fd0 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a8e8dc dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xd5af2094 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xd5baff26 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xd5d993d7 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd5e4648a __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd5ba55a8 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xd5bd6914 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd5d3a143 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xd5d68236 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd5d79c73 dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xd5f5865d __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xd5faa0e2 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xd6089375 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xd61dc74b skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xd623267e gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd624ea17 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd6125303 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd61c0091 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xd622e3fa component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0xd6251353 ftrace_set_filter_ips -EXPORT_SYMBOL_GPL vmlinux 0xd626ec6e trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xd62854f8 kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xd62d8ca6 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xd6300a3f wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xd6361021 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd63910fc ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xd6442789 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xd63efca6 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd64a9bc6 xenbus_setup_ring EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd652e920 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xd65840ac rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0xd65a5a92 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd656fd74 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xd663f695 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6752302 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xd67b86a3 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xd68efa40 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xd697fcf7 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd6992376 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd674b579 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xd68010a4 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xd6853130 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xd68bbb45 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xd690c87b led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6a9775e __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0xd6ab4a82 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xd6b948b4 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xd6bcee0e rt288x_setup -EXPORT_SYMBOL_GPL vmlinux 0xd6ce5028 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xd6b80a51 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd6ca049b mtk_mux_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6d94732 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xd6e13350 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xd6fa60c8 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xd70047a9 __nvmem_layout_register -EXPORT_SYMBOL_GPL vmlinux 0xd70d6dc5 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xd71511b2 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xd7201af8 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd6ee92b9 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd6f55b33 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xd6fb394d fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xd7075524 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd70d9e35 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd70e59fd blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xd7108ed9 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd7204c42 power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7372c78 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xd73dbd9f report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xd732c244 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xd7335dbe __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0xd73514d3 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xd73d3c35 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xd7431a8d device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xd74580da sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd75035ed led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xd750b461 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xd752e5e3 serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xd75a06ea regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd75016c3 buffer_migrate_folio_norefs EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd765cc1f tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76a0195 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xd7757a07 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xd77ab4dc kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd783fd63 kvm_destroy_vcpus -EXPORT_SYMBOL_GPL vmlinux 0xd78db587 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xd7988f5e fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xd7a18de7 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd7a21e0e vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0xd7a6c756 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xd76b9456 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xd7770b44 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xd7795d4c usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xd79d6af6 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0xd7a17443 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd7a9bfd6 battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0xd7acecbd uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xd7b2f5de __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xd7c5a075 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d4fec1 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7e6bd79 ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xd7fdb473 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xd81d314a ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xd81e7266 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd7e6374b regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd7ec7fb2 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xd7f0e28a pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7f65810 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xd7f93502 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd7fd150e dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xd8012ac5 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xd81f00f6 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xd8228c2a screen_glyph EXPORT_SYMBOL_GPL vmlinux 0xd823d36d __SCK__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xd8276448 vp_legacy_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xd835271d genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd8374cc8 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xd840b267 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd8447ccb scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd8341ac5 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0xd847043d platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd86de73d fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xd850104e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xd86b4576 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd86e379a nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xd875ed70 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0xd87cb8eb dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd885bf4d exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xd88a2432 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xd88b5be1 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xd890510f regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd89a4e75 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xd8a0c23f acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xd8a014e8 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8a83e5f spi_transfer_cs_change_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xd8aaaca4 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xd8c18b7c dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xd8c2ac4a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xd8c32ff9 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xd8d0ccac ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xd8d30130 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8da4c18 ahci_shost_groups -EXPORT_SYMBOL_GPL vmlinux 0xd8e3833a mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0xd8e5f2ab clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xd8f03dcb pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xd8e61546 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xd8f338e3 mtk_pctrl_show_one_pin EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd8fe2cf3 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xd8fe4787 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xd9007f4d kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xd905d099 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xd909e654 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92494ba pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd92e8f90 pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd930eb38 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xd94f7bae mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xd952c3f9 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xd9562d12 thermal_zone_get_trip -EXPORT_SYMBOL_GPL vmlinux 0xd95bbedb iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xd9616dfb dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xd9460b21 mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0xd9554baf pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xd95a29ff lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97c832d divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd9815f7c sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9a5c367 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xd9b19aa5 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xd9b3aa68 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xd9b64a9d kthread_data EXPORT_SYMBOL_GPL vmlinux 0xd9bb2c13 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd9c82534 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xd9c9fc39 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xd9cb9e90 devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0xd9d74a96 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xd9e14e3b __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0xd9c27f24 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xd9dc4a79 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xd9f93270 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xd9f28396 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9fc691e devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda021def ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xda044d67 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xda137f38 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xda149364 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xda23d3dd skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xda19ee7b rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xda2279c6 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xda23d5ed __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xda2743fc msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xda27eece dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3427f9 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xda3a24ae __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xda45aff3 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda4a9ce5 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xda39f130 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xda3ab3e4 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xda450e36 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xda63637c devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xda661bac regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xda6be7a8 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xda71ead9 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xda737965 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda7d9824 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xda824136 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xda88cd45 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xda797d76 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xda8d925c of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda8e91e6 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xda9f9592 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xda954391 stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa63cec sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xdab53314 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac01322 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xdac2159c blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xdac79568 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdac961ac lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xdad397cf blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xdadc63e5 ata_ncq_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0xdb1838fe pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xdb1ab1dd nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdb1c0977 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xdb20fba9 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xdaf701f2 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xdb11cd3b crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0xdb2289e5 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xdb3c782d regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdb3ecfdc seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xdb471ffd __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0xdb49d21a tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xdb4f576f hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xdb45b962 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xdb46f1d1 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xdb5876b4 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xdb5c7f9b serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb890990 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xdb6d3939 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xdb76c51d __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xdb7f68f6 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xdb825385 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xdb86adeb xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xdb897481 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8a58de iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xdb97316b device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xdba375eb bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0xdbaec005 fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xdbc694bf pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xdb8c732c devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdb95f40b mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0xdb9b2a5a of_css +EXPORT_SYMBOL_GPL vmlinux 0xdbcbc18d blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xdbd9d9a0 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbdb35a6 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xdbe11054 bus_register EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create -EXPORT_SYMBOL_GPL vmlinux 0xdbe855c9 class_is_registered EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbedec7f devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xdbedfa60 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xdbed897b fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0ff497 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xdc131b04 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size -EXPORT_SYMBOL_GPL vmlinux 0xdc1c23d0 acpi_find_child_by_adr -EXPORT_SYMBOL_GPL vmlinux 0xdc258125 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0xdc2ceb42 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xdc152b39 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xdc412c65 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xdc4314fa sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc5037d5 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xdc5b8ecb generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0xdc5e19ba devm_blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0xdc5f3b61 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xdc636206 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xdc575da8 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xdc592747 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xdc5d113b gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6ddad6 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc8b34a1 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xdc8b58d6 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdc928957 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xdc947559 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xdc97717f uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9eba40 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0xdc9f6bca __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca10691 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL vmlinux 0xdcb56376 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xdcbe6584 thermal_cooling_device_update -EXPORT_SYMBOL_GPL vmlinux 0xdcc87e31 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xdccb5d40 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdccb6e99 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xdcdf2094 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xdcd23afd crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xdcdb12c8 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xdcdcb615 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xdce27fde net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xdce4ba35 power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdcf0947f wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xdcfca2e9 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xdcec97ff gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xdcf1ff30 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xdcf9ab7f acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd07ec05 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd0a63ff sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xdd0d93e6 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xdd240f32 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0xdd25869d usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xdd393c5f pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xdd0ebb0c fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0xdd13c9ae __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdd1fbd15 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xdd261966 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xdd32f282 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdd386bbf mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xdd45bf01 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xdd4f48bd pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd763e39 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xdd720439 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0xdd7b306f balloon_mops EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd943da6 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xdd985f76 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xdda907f3 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xddb3d9cb alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xddbd7540 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xdd8938d1 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xdd8d8679 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd92c5f0 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xdda4be50 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0xdda784d1 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xdda81166 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xddb1340d ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xddba54d5 debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc2b1c0 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0xddc84c1b kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xddd40743 mtk_pinconf_bias_disable_get EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield -EXPORT_SYMBOL_GPL vmlinux 0xddda9cd5 crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0xdde5a814 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xddeec618 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xddd9cedd dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xdde0b680 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xdde1480f md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xdde3ea8d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xddeb5432 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xddf1c847 dbs_update EXPORT_SYMBOL_GPL vmlinux 0xddfe1ad7 __SCK__tp_func_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xde062954 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xde0985f3 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde0ceb34 balloon_mops -EXPORT_SYMBOL_GPL vmlinux 0xde132a51 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xde132a6e cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xde19da43 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xde203885 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xde270255 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xde225f7f ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde392ead dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xde437225 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xde528632 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xde52a59f usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xde52fbd8 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xde3a1e24 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0xde3e49bc file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xde3f1b71 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xde4093e5 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xde47746f ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0xde5574cf x509_load_certificate_list -EXPORT_SYMBOL_GPL vmlinux 0xde582dd5 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xde60fc0b folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xde6d3d93 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xde558dac nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xde5e3fc9 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0xde6294af arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0xde656ec6 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xde6ab5ff vcap_find_keystream_keysets EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde6fcb63 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xde758aed dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xde7d8da8 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xde92167e xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xde78debc regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde86e6fe kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xde8fb381 usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdea1784c rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xde9e9d8b debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xde9ee395 xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdebbbad2 __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xdece8dc2 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xded2c7c7 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0xdeb156ac xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xdeb41d21 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xdeb6168d fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xdebdafb3 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xded82e96 usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xdef7e4dd xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xdef94b9a edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xdef81bea platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf083096 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xdf03d19c usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0xdf05ec96 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf0650f2 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xdf0662fe ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xdf0afa0a msi_unlock_descs EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf1f949a blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync -EXPORT_SYMBOL_GPL vmlinux 0xdf26a08d edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2cfddc xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xdf2f3503 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack -EXPORT_SYMBOL_GPL vmlinux 0xdf32ca12 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xdf3786ea debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xdf384604 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf3fb536 of_map_id EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf54ccbb mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties -EXPORT_SYMBOL_GPL vmlinux 0xdf59ece4 fsl_mc_obj_open -EXPORT_SYMBOL_GPL vmlinux 0xdf7394d1 kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0xdf7a1017 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0xdf81962f usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xdfb025ef clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xdfb7135c __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xdfc63fec ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xdf587121 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xdf5a138f sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xdf6cf55f power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xdf6e9e36 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xdf72e642 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xdf7e718b sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xdf8a7d3b ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xdf933bda usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdf96e206 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xdfb46020 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xdfbb663e pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xdfbfc463 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfdb8c98 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xe006d94b devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xe00afc78 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xdfcde457 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xdfd13fda regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdfd5aa21 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xdfe77a05 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xdff3dc6b pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xdffc5397 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xdfff0ae8 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe00707ed gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0xe00db6dc __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe017f478 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xe018c015 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xe017af76 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe02798ed inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe0347f40 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xe051ab1c devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe0522ba9 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xe036a27f arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xe03e765b relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xe048f592 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xe04d87fd irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xe051428b iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe06907a0 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0xe07c2888 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe07e608a of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xe08bd68e bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe06179c1 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe0669978 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xe06e3695 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe0861415 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xe086dea1 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xe08f0400 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xe0942ca5 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xe09817d1 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xe09d286a usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b403a1 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0xe0b8364e __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xe0baa28a extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe0c5a9e6 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xe0d3c356 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xe0d6dc5d sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xe0e1f872 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0e38677 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xe0e48c29 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xe0ecadcd icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xe1006a63 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xe0fd7ee6 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xe102f8a1 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe118fe1a iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe1245515 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0xe12681a4 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xe126aa45 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xe1300fe0 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xe1387ac6 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe13e04aa skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0xe13e7b0c __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xe140fa65 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xe1426591 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xe12863bb mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xe13187a8 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xe1353591 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe1366af2 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xe13a8305 phy_power_on EXPORT_SYMBOL_GPL vmlinux 0xe14c718e rockchip_register_softrst_lut -EXPORT_SYMBOL_GPL vmlinux 0xe16744ad mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xe16751eb rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0xe174da8e dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0xe1940384 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe1a39eb9 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xe159ad52 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xe162dac0 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe16782d4 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xe16a36c5 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe1709805 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xe18d4459 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xe1927464 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe1b9cdc0 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c236d2 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xe1c06332 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe1c10b8d pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xe1c44c5d clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1cb6ac9 filemap_migrate_folio -EXPORT_SYMBOL_GPL vmlinux 0xe1d35156 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xe1d4a964 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xe1d54e08 folio_alloc_buffers -EXPORT_SYMBOL_GPL vmlinux 0xe1e20683 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe1edef70 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xe1f2699b debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0xe1fe635b nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xe20131cd lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe2046b97 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xe20693a4 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xe21765a2 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe22883a3 vcap_tc_flower_handler_ipv4_usage +EXPORT_SYMBOL_GPL vmlinux 0xe1cb4d3f fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1d12ca9 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xe1e82f05 xdp_features_set_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0xe1f6d14f pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe1f863b9 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xe1fe5252 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe2111832 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xe212f3be thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0xe21e455e edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xe21ef551 nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe233edd2 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe23565aa devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe23790c3 vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0xe2419732 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0xe24e0e42 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xe2523228 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe26494f1 ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xe264e2b5 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xe26cfb6a pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xe272fad1 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xe2798754 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe278baae tcp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xe27f1385 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0xe2918821 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xe29ba96e filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0xe2b03002 blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b8ca63 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xe2c4427f dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xe2b521d0 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0xe2bd0459 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xe2c646fd devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule -EXPORT_SYMBOL_GPL vmlinux 0xe2d598c2 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe2d6c2df ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xe2d7cd00 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature -EXPORT_SYMBOL_GPL vmlinux 0xe2ddf9e0 fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0xe2df9600 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xe2e216a8 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xe2db68e6 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xe2ddf7c4 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe2e0e12a regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe2e156f6 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xe2e5a915 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe2f01bc7 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xe2f10530 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xe2f94bbb sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xe2fbbb66 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xe32e725f tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xe3316c2f of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xe344489c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xe3478985 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xe347ef77 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xe34848ae spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe348b0cb __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe2f4d128 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xe30199c6 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xe3043081 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xe3092129 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xe3092271 ata_scsi_slave_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe30bbd36 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xe3177db8 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe31b81fc regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe31ebfb7 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xe32f4682 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xe330eca5 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe333208e crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0xe3364553 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xe3395e12 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xe3406868 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xe3488b3b cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xe34f4d68 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xe36ab7b6 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe37b3a1c crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xe3566d19 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xe3588e03 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xe358f5cb ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xe371f565 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe3802139 usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe38ebe69 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xe38543b4 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe3891ee5 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xe38bfacf aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe395a618 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xe396abfb thermal_zone_device_enable EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a675d1 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b89dba scmi_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe3c2a888 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe3b8535d ping_bind EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d0c501 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xe3d897e0 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe3dccb49 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3f94505 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xe3fc1c45 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xe4005d05 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0xe400a053 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe4023a5b spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0xe4062354 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe3e65021 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xe3f1a0c3 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe3ff7d23 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xe406193e of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe42ca46b devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe430db0b regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe4358bd9 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xe436e90c __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xe44e54c8 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xe45a7858 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xe465253a transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe45db250 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xe45fa769 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xe463db85 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe468415d phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xe47a8863 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xe47d3dc0 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xe47dca6c dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xe482b731 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe485d7c3 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xe4897ae9 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xe48c194e dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe49379ed irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a265c9 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0xe4ad665c fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xe4adc161 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xe49b1044 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xe49e249c sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b1d4ee rio_add_device EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c03ca7 handle_fasteoi_ack_irq EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c8513d wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe4cca86f mtk_mux_gate_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4ce792d dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0xe4daa0ea blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4e986ca ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xe4f0079e unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe4e612a7 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xe4ea1d31 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xe4f661e0 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xe506fc32 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe5081690 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0xe50893fd unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe526ee3b gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xe530d447 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0xe5402bd4 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xe549adf6 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe52d3e05 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xe52edab7 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xe53f63b3 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe541c77f platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xe5433adc mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0xe54d895b pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe55f67ab nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xe5648a87 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xe56a30d9 acpi_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xe571775a of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xe575a75a bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xe5765899 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xe58369c0 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe58398fa blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xe5531e11 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xe5582d9b __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0xe55d01d4 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xe55e5960 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe5733e2b ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5887c22 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0xe58b34c8 fsverity_get_digest EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe599ce20 blk_rq_poll +EXPORT_SYMBOL_GPL vmlinux 0xe595df88 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xe5a44d86 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xe5a79953 ata_acpi_stm EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5ac1de7 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xe5b95db3 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xe5b385b8 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe5b4a9a6 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xe5b84ef9 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c394f9 pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe5c7e998 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5dd8d33 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe5e4796f dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe5d3d754 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xe5dfe5ae pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0xe5e790e4 __traceiter_rwmmio_post_read -EXPORT_SYMBOL_GPL vmlinux 0xe5ed0ec5 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5fec8f8 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xe6030a44 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xe60476ab iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xe6047ac3 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe5fcb960 acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe6154622 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xe60aa619 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xe61c4df8 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xe61c75a5 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe625a7d5 device_del +EXPORT_SYMBOL_GPL vmlinux 0xe626c6de tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6295d74 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xe6525588 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xe664f65d ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xe668ca23 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xe66c2783 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xe6734ccd regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe674920e phylink_connect_phy -EXPORT_SYMBOL_GPL vmlinux 0xe67762a6 phylink_of_phy_connect -EXPORT_SYMBOL_GPL vmlinux 0xe6783e8e __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe67c2a54 gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xe69034a9 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe630b352 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe6314c47 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xe63b0a4f devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xe63b9004 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe64dba71 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe663ca4a blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xe66ad96f ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe676f745 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe679c6a8 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe6852086 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xe6899261 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xe68fefe3 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe69e060f mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe69e5849 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xe69eedbf skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xe6add2d3 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0xe6aef439 __tracepoint_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xe6bbf073 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe6c33cff blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe6dc58f0 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0xe6df9e28 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe6b7022d netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xe6d3f41b switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xe6dab22a trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xe6e2a7e2 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe6e370ca relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e5154b pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f0c3a1 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe6f15b8f __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f6f579 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe6f73433 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6f890db n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe70221d7 cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0xe70e341e serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe72769e2 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xe72c1627 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xe7316aab switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xe73eea0e tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xe7523429 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xe703b17b fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xe715380e devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0xe71c1ed8 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xe728e680 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe737e01e follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xe741582a sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xe746fa7e fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75b9ae9 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xe756c395 check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76c934e sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0xe778e422 scsi_block_targets EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0xe781dfc6 usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe78aace3 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe78ef29d led_put -EXPORT_SYMBOL_GPL vmlinux 0xe78fba75 mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xe79171e1 vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xe7935775 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xe78f5853 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe790503c sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe7951da1 __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xe7a49f10 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xe7a644bc i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xe7abba14 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xe7abc140 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xe7b49135 vcap_select_min_rule_keyset -EXPORT_SYMBOL_GPL vmlinux 0xe7b89b5b rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xe7cb0da1 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xe7cf4be0 thermal_zone_device_priv -EXPORT_SYMBOL_GPL vmlinux 0xe7cfa306 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xe797622c vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xe7a58b25 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xe7c84a98 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xe7d48da7 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7d6a664 xdp_convert_zc_to_xdp_frame EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7dedf91 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xe8000862 regmap_might_sleep -EXPORT_SYMBOL_GPL vmlinux 0xe8064fe6 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xe80a905f i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0xe8147c0b bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xe817c9a0 ma35d1_reg_clk_pll +EXPORT_SYMBOL_GPL vmlinux 0xe7d86217 devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xe7df518a vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xe7dfac2c percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe7f77a0f relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xe8061d0d clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xe808e37b devm_remove_action EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81f0bd4 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xe8233428 nop_posix_acl_access -EXPORT_SYMBOL_GPL vmlinux 0xe8238914 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xe84383bd xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xe8224d90 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe83ce0c0 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe847acc5 hid_bpf_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe84a3d7c virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe852222b clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xe8586028 devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85ba59d ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xe85f33ef dpcon_get_attributes EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8675025 dw_pcie_ep_raise_legacy_irq -EXPORT_SYMBOL_GPL vmlinux 0xe87dcc8e crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xe88adb52 inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0xe8901595 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xe863db13 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe86d83fb virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xe86e4242 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xe876a84f serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe88806f5 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xe8979afb mas_prev_range -EXPORT_SYMBOL_GPL vmlinux 0xe897d623 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add -EXPORT_SYMBOL_GPL vmlinux 0xe8bb2480 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xe8ad49f0 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xe8afac59 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xe8b8ba20 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe8bb97f8 sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xe8bfcfe3 io_uring_cmd_sock EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c53f3f __traceiter_br_mdb_full -EXPORT_SYMBOL_GPL vmlinux 0xe8ce2281 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xe8e06bc5 dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xe8f5e97c devl_linecard_create -EXPORT_SYMBOL_GPL vmlinux 0xe90a0dec cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8c3d807 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe8c57080 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe8c9b8b4 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xe8ef21be mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xe908a7d5 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xe90fae1f handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe916224c pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0xe932e62c usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0xe9362896 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xe93d5ef8 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe91987cb devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xe9286571 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xe9344fce devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe940dfe3 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xe945ca26 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xe9550ff3 stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe9621e4b tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xe96a8a51 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xe975435a regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe989a5a1 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe958cce4 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xe961253c xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xe96997b8 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xe9886d53 vcap_tc_flower_handler_ethaddr_usage EXPORT_SYMBOL_GPL vmlinux 0xe98a1daf kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xe98d1f81 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe999fe31 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xe9ad950a fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xe9ba5075 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe9acdd02 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xe9b061fb power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe9bc30ab powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0xe9bd3732 modify_ftrace_direct_nolock -EXPORT_SYMBOL_GPL vmlinux 0xe9be6430 led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xe9c5f858 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xe9c3fc73 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d4ff70 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xe9d1f5f7 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9d69ee9 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xe9e1b483 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xe9e35056 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0xe9f207be hid_bpf_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe9e7ef31 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xe9eb5e7e rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xe9ef201b vcap_del_rule EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0xe9fdc99b switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xe9facb73 mtk_clk_pdev_remove EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0cbac5 __thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0xea0b1548 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xea0cf04a nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd EXPORT_SYMBOL_GPL vmlinux 0xea178d19 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0xea24f36f onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0xea26ceae regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xea312c8c serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0xea34e499 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea41cf62 pse_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea41f937 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xea453ac0 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xea470aaa crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xea3ebe70 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xea47ba72 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea5401b0 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xea5b0e3a is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xea5dbfd5 fsl_mc_bus_dpci_type -EXPORT_SYMBOL_GPL vmlinux 0xea5f2b6e nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0xea62848a skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xea6971bf validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0xea86f725 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xea90683b tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xea996aff regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xea9c379f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xea649bf4 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL vmlinux 0xea6ad0a3 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xea6bd875 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xea6d2a52 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xea75d8db edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xea820d32 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xea87a3e3 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xea936e4b serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xea971da2 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xea9daf2c devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xeaa307d5 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xeab361ac cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xeac5e8c4 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xeac9fd37 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xeacb5cb7 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xead58abb pci_ims_free_irq EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0xead6ebda fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xead9755b __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xeaf2d04a clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf64e7c __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb0b1a01 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xeb14a5a1 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xeb1a2394 fscrypt_prepare_lookup_partial -EXPORT_SYMBOL_GPL vmlinux 0xeb1d7e70 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xeb028c0d cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xeb2479b3 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xeb2c9a1e of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xeb3496c4 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb4623a5 mtk_clk_register_dividers -EXPORT_SYMBOL_GPL vmlinux 0xeb56db57 iommu_device_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xeb5b4bd1 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xeb6a15c6 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xeb4a39eb pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xeb5cd86e da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeba124b4 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xebb53ae1 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xebb5ea26 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xebc7426d dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb7b1411 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xeb7b4be1 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xeb7dc106 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xeb7dcc1a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xeb8e7cf8 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xeb8f6cea watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xeba6f4ca __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0xebb14b2d platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xebc581ed power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms EXPORT_SYMBOL_GPL vmlinux 0xebe496ca __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xebe90e96 devl_params_register -EXPORT_SYMBOL_GPL vmlinux 0xebff24bb handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL vmlinux 0xec085bb9 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0xec1c040f acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xec1dab4f _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xec3ad218 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0xec554834 tegra_mc_get_carveout_info -EXPORT_SYMBOL_GPL vmlinux 0xec55bac7 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xec564fd2 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xec0b6700 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xec0d4bda gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xec27760b simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xec31b183 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xec33c460 fbcon_modechange_possible EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec74c6ff wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xec616660 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xec62e2d0 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xec6d5eaf regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xec73fe72 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec7914f2 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xec7b2a99 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xec9a24cc device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xec7b41c6 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xec7bb1cb devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xec9d9aee kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xec9de794 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0xecacfad3 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xecb46fe4 vcap_tc_flower_handler_arp_usage +EXPORT_SYMBOL_GPL vmlinux 0xecb4df89 sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbd466c pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xecc211bf inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0xecc82ed0 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xeccdc6d7 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xecd36c91 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xecbec13a clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xecc931c6 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xeccabda6 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xecd8f1de of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdbcbc1 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xecdd5289 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0xece3dee4 devm_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xecf84b60 devm_register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xecfeeb1a xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xed002bcb rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xed040166 __fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xed269ec6 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0xed285806 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xecdae0f3 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xece3fdfb __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xece9f009 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xecfd6cce blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed032259 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xed040b88 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xed0ee06f wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xed11834d blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xed252a05 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed3528bf fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0xed382f78 ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed48c4f9 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xed592300 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xed453723 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xed6000d6 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue -EXPORT_SYMBOL_GPL vmlinux 0xed8c700c add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xedd0ee91 nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0xedad8afe rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xedadc532 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xedb00a1d attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedb700ff nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedb8bf73 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xedd3c82b pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xedd69c74 of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedecb55e meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xee090107 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xee097435 fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xee37055c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xedecf3b5 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xedef78a2 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xedf537e0 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee02e56d led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee09a849 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xee0fd207 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xee1808dd scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0xee1a1117 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xee1d1cec dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xee263de0 kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee69be3a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xee6319a3 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xee6512b6 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xee74a922 __tracepoint_console -EXPORT_SYMBOL_GPL vmlinux 0xee75d6ae regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xee888d8d housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xee9746f5 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0xee9ee3d1 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xeeb1ea44 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xeed6c76e xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0xeed9482e reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeedb1d4e nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xeedb569e mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0xee885c26 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xee8ac2d5 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xeeaedb6e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeec37735 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xeed251cd clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xeed28570 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xeed2cda8 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put -EXPORT_SYMBOL_GPL vmlinux 0xeeecc4f0 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xeef52907 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xef1bc144 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xeef75588 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xeef812cc tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xeefb37b5 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xef0bb367 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xef0cfd1a devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xef0d8229 bgpio_init EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef264fd9 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xef2662c6 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xef27d69e da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef2a0f61 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xef2eeef6 dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3819ab devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xef400640 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xef44757e add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4bb61d spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xef5b66d0 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef6423b5 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xef63155e genphy_c45_read_eee_abilities EXPORT_SYMBOL_GPL vmlinux 0xef67ec35 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6f3af2 dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef729fea i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0xef7c67f6 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0xef7f6142 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xef8cbcd7 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xef80fee4 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xef846af5 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0xef84907c of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xef86bc3b skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xef86f3b1 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xef8b108e acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xef8b3051 crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xefa1d80b tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xef9a2c18 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xefa22c08 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefbd6ca6 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xefbe0455 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xefc4e5e4 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xefd2114b phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xefa53864 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xefbc1690 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xefc4f9e0 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xefe23d90 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xefe248f5 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xefe6e219 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefeb9c37 dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xeff72484 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xeffec1c7 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xf001b259 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf00808e8 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xf008a303 led_get +EXPORT_SYMBOL_GPL vmlinux 0xf009ad56 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf00c4f97 pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xf016930c pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xf023810e pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xf0342f11 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xf0386165 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xf040cbd7 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf04a33da dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0xf04e02bf __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf04bf764 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf04d8526 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xf04e77ae serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xf054e5dc of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05f32bd of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0616e7a sched_numa_hop_mask -EXPORT_SYMBOL_GPL vmlinux 0xf065353a gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xf067c6e1 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf078407b bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf07ac2fc __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf07beefa bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0xf07c7fab transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xf08acc39 fsl_mc_resource_free EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf095d71a umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xf096ac9b handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xf0a42fb1 mtk_clk_register_factors -EXPORT_SYMBOL_GPL vmlinux 0xf0ad1874 io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0xf0ba2414 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf0bd59d8 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xf0c0308f __fsl_mc_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xf0c24407 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xf0c3cb03 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xf0a33f70 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xf0b77762 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf0bf3b35 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xf0c781a9 pinctrl_generic_remove_group EXPORT_SYMBOL_GPL vmlinux 0xf0e52dc0 __tracepoint_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf0f04114 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf0e5bb0b ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xf0ebe3a9 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted -EXPORT_SYMBOL_GPL vmlinux 0xf10184ab of_css -EXPORT_SYMBOL_GPL vmlinux 0xf101c124 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf1113219 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xf10a79dd gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate -EXPORT_SYMBOL_GPL vmlinux 0xf11471dc skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf124c6db pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf12a553d mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xf13a3e87 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xf1467830 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xf1596284 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf171035c udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xf184524d inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xf1846d1e validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xf143f18e iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0xf14e35eb tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf14e8409 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xf15459b6 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xf1630903 vcap_tc_flower_handler_ipv4_usage +EXPORT_SYMBOL_GPL vmlinux 0xf1715af6 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf172e68b bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xf17325ea dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf19611d6 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xf1ba680b usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0xf1c756d1 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xf1d6f9a7 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xf1dd7f93 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0xf191b54f phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xf19559d6 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf19615ee dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1a2cff7 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf1a38add gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xf1cc417b fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xf1d7c96d lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xf1d81570 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1da04c8 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xf1e489a9 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset -EXPORT_SYMBOL_GPL vmlinux 0xf1fb6813 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xf1ff4c31 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0xf2013413 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xf21bc1d7 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf1ffcd98 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xf21d4b21 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22b03d8 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0xf2361a2f fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0xf24f5b71 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0xf250707c of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xf25c7def fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0xf25fcc9f crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xf25fcecb md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xf2611e27 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xf269ff78 devres_add -EXPORT_SYMBOL_GPL vmlinux 0xf272ad8f nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xf27738e6 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xf27ca1be usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xf22182b0 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2251d60 vcap_tc_flower_handler_ip_usage +EXPORT_SYMBOL_GPL vmlinux 0xf235bba7 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xf2383c19 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf2525724 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xf25c6305 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xf25edf6e n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xf26fdddd lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xf277dc22 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf28425ab devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf2879599 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf28d063d pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xf28da84b usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2ae0ecf synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0xf2ae9cdf crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2cc0287 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0xf2e458ec fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2bb078c pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xf2cabeba dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xf2cd2aae put_device +EXPORT_SYMBOL_GPL vmlinux 0xf2d576bb stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xf2db7599 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2f4926d mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf2f8718d led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf3147d2e rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31755f3 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3230189 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf32dde48 nvmem_cell_read_u32 EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf333f2e4 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xf33b8d8c genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0xf34105ef user_read +EXPORT_SYMBOL_GPL vmlinux 0xf34662c6 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xf34ca584 clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35d3208 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xf35d9aa9 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0xf35e47bb device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf359e2a2 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xf3773a59 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf3792849 amba_device_add EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf379a95d device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xf37bb61c pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf380dc31 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0xf39427ca register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf382af62 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf38dd2a8 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3ac1d28 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf3b3ef54 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b4ad8b device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xf3b5d66d of_genpd_remove_last EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bcecfe scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xf3c41aa8 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xf3c7127f nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0xf3ecee45 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xf3eee1db __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xf3f36760 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xf3f77a14 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xf3f82ee6 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xf415dd93 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xf41c93ee kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xf3bf28d6 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf3c36200 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3c4c03a ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xf3c87e80 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xf3c88afa debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xf3d39e75 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xf4011163 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf40135ed pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf40d994b devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xf4169414 mtk_pinconf_drive_set EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xf4324785 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf44400c2 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf44c9d2b fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xf45caf44 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0xf4221029 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf4236d80 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xf432156c pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xf436a202 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xf448fa79 mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0xf448fdda of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xf4504f7b sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf4557545 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0xf45639d5 folio_wait_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf4752d49 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xf46a2848 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47ec99e regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xf47fac3d mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xf485ff56 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xf49b5ced ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xf49ede08 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4a00c9f device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf47c5b92 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xf47e929e usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xf487b5fe validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xf4a69cd4 scmi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b0a574 fsl_mc_object_free EXPORT_SYMBOL_GPL vmlinux 0xf4b77c91 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xf4bf52d2 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xf4cd6432 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xf4b901ab rockchip_pcie_parse_dt EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4ce5b58 devl_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xf4d1abea i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0xf4d7fcd7 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xf4da50f4 phy_init -EXPORT_SYMBOL_GPL vmlinux 0xf4df91de dw8250_do_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xf4faa6d1 iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0xf4fc0feb dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xf5218c23 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf5302c3f extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5367a64 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xf53c4fab crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xf5451460 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xf548a473 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xf4da4373 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xf4e99cda imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xf4f53f26 rz_mtu3_disable +EXPORT_SYMBOL_GPL vmlinux 0xf50557e3 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf505c229 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xf520c2ae of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xf5453f83 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54f9ef7 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5628e5d nvmem_layout_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xf5749d26 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xf58105de __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xf58d84ad ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xf5562920 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf55658fa crypto_sig_set_privkey +EXPORT_SYMBOL_GPL vmlinux 0xf560d7f4 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xf56ca445 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xf5755e7f debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf58e8e4b devm_ti_sci_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b166ff devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0xf5b7207a class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xf5b74f5f clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xf5baf021 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xf5bea681 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xf5d0edc4 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xf5d28fb3 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5b1ef7e vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf5b9dbac __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf5dfee9c gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xf5e3c11c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xf5ef5d4a devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf6162fd6 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xf619c6a9 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xf6096983 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf60a0b60 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xf61c1389 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf62225cc tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xf6283577 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0xf6361543 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf61cf281 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xf6255bc0 shmem_read_folio_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf62c02a9 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0xf630f366 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xf6378566 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xf63f003a acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6428d9d __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64df834 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xf651779f of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf6577db6 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xf64dabd3 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6531a96 mtk_clk_dummy_ops EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf669c8e4 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xf67e1cd1 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xf68eb92b regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xf68f1751 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf6906340 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xf69536e5 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xf67f10be bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xf68968ba regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf6986b20 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xf69942bf sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xf69bd001 fsl_mc_bus_dpio_type EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6bfec9d pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6c203b9 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6d70163 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf6e1034e device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf6e10619 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f0de9a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xf6f092a2 ata_eh_read_sense_success_ncq_log EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf6f19ff3 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0xf6fe01a9 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xf705fc38 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0xf70b9b6a irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xf6fa83d8 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xf70423f1 icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf7056e29 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf7219f9c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xf72010d6 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf727885a pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf729731e fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72c3983 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf72b5e4a mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7333774 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xf737dd4f tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xf741251a cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf743c16c __thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0xf7454819 blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74a5ba3 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf766e243 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xf76ab51e vp_modern_set_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0xf76b3e96 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xf76c0680 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xf76f3645 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf75ce2bf dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xf760eca4 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf762d79d __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf766f77e pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xf772ff44 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf7764cb9 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xf7778fdb k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xf7792421 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf77a0fc0 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf77d3e5c device_property_present EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf78dcd5c fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xf79bb2a5 ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xf79c329c bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0xf7a1504e fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xf7a51faf usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf798451b shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf7a8dab4 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7d42774 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xf7d528cf i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0xf7fe3ccc sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xf801ded8 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xf806472d usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xf8091af1 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xf7c694d6 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xf7caca70 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf7e29642 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf7e86b16 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf7e98ec4 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xf7f6151a percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xf7f8f3ce wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xf80502fb __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xf809d25a devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf8155b47 devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0xf811d9af of_nvmem_layout_get_container +EXPORT_SYMBOL_GPL vmlinux 0xf81660c2 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xf8172c5c ping_err EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event -EXPORT_SYMBOL_GPL vmlinux 0xf8278d1b dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xf82dc92d crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xf82c3fea sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xf82f07b2 ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8389199 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf84a03ba ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xf836b510 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xf83cd4d3 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xf83fb5cc device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf84d6087 of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xf860f862 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xf855bb36 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xf85ebdbd usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf8689b9d tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0xf8702b51 xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0xf87706cc watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xf873bd3c pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf88f724d rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xf89a139c splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xf8a54a01 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xf8ada047 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xf8aeadd1 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xf8b22fd4 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xf8b5d0bf access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xf8c5f1a2 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf8f21c6e __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf88f8027 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xf8b8e330 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf8daa25a nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xf8e04412 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xf8e0cc62 xdp_set_features_flag +EXPORT_SYMBOL_GPL vmlinux 0xf8e614b7 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f3b10e rz_mtu3_disable -EXPORT_SYMBOL_GPL vmlinux 0xf8f4985d imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0xf8fb3157 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf8f7b936 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xf8fa7920 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf90e7a58 cdx_dev_reset -EXPORT_SYMBOL_GPL vmlinux 0xf915c5be sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xf9160d32 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xf917068f of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0xf926cb11 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xf928d238 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0xf929d0f6 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xf93356d1 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf90a8437 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf913713d ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf9260127 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xf92d4935 folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0xf9354307 __traceiter_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xf939f64d thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0xf93a5fb5 mtk_devm_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0xf93b66b9 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xf93c2935 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xf93e39ed scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xf94cca20 tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf965224f ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf97092f1 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xf98efdf1 regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xf99832bb rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xf967da98 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xf9738e49 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xf97ac526 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9aba594 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9d7b0ff split_page -EXPORT_SYMBOL_GPL vmlinux 0xf9d82f8f regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xf9d8f22d sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf9d9420b usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xf9e0382a __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xf9ed3b35 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa0de0f4 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xf9b88122 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xf9c223e4 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xf9d41144 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xf9e5b066 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xf9efd7c1 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xf9f88ac7 xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0xfa1a33b7 vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0xfa214c9c __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xfa2b33b5 memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa3662ce sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xfa42e22a devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xfa4ab940 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xfa43f595 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xfa48f743 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xfa4d3c24 log_post_write_mmio +EXPORT_SYMBOL_GPL vmlinux 0xfa63a15a subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa6e1805 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0xfa76f86b pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0xfa84b519 md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0xfa8eda5c vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0xfa8f1126 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xfa8fdabd kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0xfa9791ee rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xfa9de64d pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xfa729717 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfa7e7be7 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xfa935aed kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xfaa1c210 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xfaa5ff4a devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab453d5 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfabf1862 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xfac63ec2 fsverity_verify_blocks -EXPORT_SYMBOL_GPL vmlinux 0xfad29aa5 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xfab5aabc cdx_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfac3872d disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xfad6bc21 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae6901b cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xfaf89287 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xfadc8dcf otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xfae3494f dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xfaf437c0 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xfafb4a1e led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfaff2e5a ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xfb0158c1 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0xfb0d7867 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xfb1ab067 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfb183af2 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb2d5b41 akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb35890a x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xfb53fd0f devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xfb5701a6 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xfb5d8f28 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xfb5e1674 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xfb3fe85d cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xfb43632b set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfb47f8ae sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xfb4a9081 rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb6a9db9 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfb6e8630 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb74e910 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xfb920fb4 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xfba50f26 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xfbbd1fca usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xfb9191b3 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfbaeb7e7 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xfbb34327 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xfbb80937 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xfbb91f5a kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xfbbbb0aa eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xfbceb4dd rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xfbde81f3 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xfbeb9015 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xfbedc18d attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfbf77441 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xfbf9c34f bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xfbc0a603 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xfbc4e779 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xfbe43129 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xfbe7a0f3 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfbf9041a pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xfbfb0588 bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc02eda6 mtk_pinconf_adv_pull_set EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc08e1a4 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0xfc116a15 copy_user_highpage -EXPORT_SYMBOL_GPL vmlinux 0xfc15a7dd virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xfc1fc793 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xfc10e96d fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc20d722 device_create_file EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc25af50 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xfc2dd989 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xfc3a3ffe lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc3f44b4 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xfc4a173d pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xfc4bb864 vcap_is_last_chain -EXPORT_SYMBOL_GPL vmlinux 0xfc5f26c4 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xfc71c585 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xfc721c6c irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xfc7df50f rz_mtu3_shared_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xfc843745 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0xfc94120e mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xfc4af364 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xfc4e372d devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xfc5635aa __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xfc703093 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xfc916db4 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc9b1c4e fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xfc9f4caf fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0xfca4843c vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0xfcb6f8f0 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0xfcb826cc debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfca038f3 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xfca2be78 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xfca57f3d devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0xfcbbbf71 devm_acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc5347d input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xfcc6aadb acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfce069e1 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xfccc372d pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfcd06506 dma_resv_set_deadline +EXPORT_SYMBOL_GPL vmlinux 0xfcee72bf rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd03d276 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xfcfb7eeb __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd106417 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xfd08e824 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd2160a4 regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfd30dc8f rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0xfd361daf regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xfd385cbe acpi_match_acpi_device -EXPORT_SYMBOL_GPL vmlinux 0xfd3f4017 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xfd461ade meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd48c288 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xfd2e8dd6 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xfd3680fb rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xfd3e027d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xfd6029e3 i2c_client_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event -EXPORT_SYMBOL_GPL vmlinux 0xfd65ba30 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xfd6ba16f hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd73e149 mddev_init EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd796a84 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xfd79fc07 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xfd7fbeae gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfd88e301 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xfd9e5165 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xfd9f544e regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xfd7aa5da wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xfd9e1e32 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xfda3db63 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xfdb16ef6 of_dma_router_register EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc8ba11 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xfdcb3a27 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xfdd45f6e pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xfdd9e084 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xfdde8b22 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xfde46116 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdef2696 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xfdfd1c01 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xfdec0f85 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xfe01cc1c regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe02a41c devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe05c1cc devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe126682 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xfe15b704 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0xfe17758b pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe2521fe __devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xfe290ead pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe1fc0f8 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xfe27129b input_class +EXPORT_SYMBOL_GPL vmlinux 0xfe27d92c genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xfe2a2432 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3cd12e fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xfe3ec731 imx_pinctrl_parse_pin_scu EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe5aaccb iort_put_rmr_sids -EXPORT_SYMBOL_GPL vmlinux 0xfe5fb3ea ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xfe6a0c3a __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0xfe71293a udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xfe7589f2 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xfe567505 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfe633eef free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xfe6a73c9 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xfe739279 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xfe73f2c7 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xfe82e127 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xfe82eaed serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe8f6f1c i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xfe97a14f pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfe9cae3e acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0xfea0a38c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xfeb23c9f fb_deferred_io_mmap -EXPORT_SYMBOL_GPL vmlinux 0xfeb2870c sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfeb999f1 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfee450ed irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xfedef128 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xfee5e5fe bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xfee6c0c3 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfee76ea3 phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xfeec3489 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xfeede771 thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef227f2 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xfefbc15f screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xfef3d7f5 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfef42b32 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xff03a139 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0fe207 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xff11fc25 mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff18c845 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xff1b4f1d reset_simple_ops EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff355606 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xff3fcb64 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xff4096cc kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xff428d39 pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff449a27 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xff4bf9f8 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0xff535c1b cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xff5561be crypto_akcipher_sync_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xff792f99 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xff446160 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0xff4ccdae of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xff56fac4 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xff5ff839 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff8b4fb7 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xff8e974b ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0xff98f309 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xff99137d devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xff9be3f6 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xff9d1276 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xff9392ce __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xff9515b5 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xff95711c spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa1c49a pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xffac352b regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb682b7 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xffc326d9 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xffb20aa0 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xffb5c9a9 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xffbd43fd devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xffbdcf04 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xffc74583 pm_generic_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xffd1b4ba extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xffd1c9c0 __traceiter_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xffd37e3f wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xffd70b15 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xffe51211 xen_dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0xfff69adf kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xfffa0c6e sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xffcc585a meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xffcf7a26 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xffe90d17 fscrypt_ioctl_add_key FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -FW_CS_DSP EXPORT_SYMBOL_GPL 0x06be6981 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x06df8741 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x09e89580 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x107b1f18 cs_dsp_stop drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x1402c023 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0400e58c cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0913cace cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0dc8003a cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x1c817e8a cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x45561d53 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x22cf1d1d cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x2c706c89 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x37255bcd cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3a5b5314 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4b70fd2a cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4d5bbdad cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x5dc6c0a2 cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x628c1a75 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x65730714 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x6f15d91d cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7dd8713a cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x915eb332 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x951b23b4 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7b5c72d3 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7c603ca3 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x87a3e690 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xac799f19 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e3e2b89 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa0195568 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xab49ea88 cs_dsp_remove drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xe261f9aa cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xead72ec0 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xef7ae162 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf1c71bf1 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf2d0e769 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf52c2ccf cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf5e1c4d0 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfaa28510 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfc4126e0 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0xfc0b3bf3 hwmon_device_register_for_thermal vmlinux +FW_CS_DSP EXPORT_SYMBOL_GPL 0xba683c15 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbc1f86a5 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbf80570b cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc48295f0 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcd195d05 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xddcac590 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf5b56d27 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xfa0ff792 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xff9129ba cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x90185ba4 hwmon_device_register_for_thermal vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x14013dbb idle_inject_register_full vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x5f064467 idle_inject_register vmlinux @@ -28225,486 +28249,486 @@ IDLE_INJECT EXPORT_SYMBOL_GPL 0xc18575af idle_inject_set_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux -IIO_AD5592R EXPORT_SYMBOL_GPL 0xb1447d49 ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0xd674bae7 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x2df8b2c9 ad5686_remove drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0x68f1fe81 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x97cf0dee ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0xcb61dd50 ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x1fd9d814 ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0x27cd6d21 ad7606_probe drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x9f408d35 __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xbcffc31a adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0b841229 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x33570fcf __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x41bed6d6 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4e73957d devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x551e478a __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x56ea5e24 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5d73a776 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x80301f75 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8d6b0178 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbb27be44 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x89646be0 __adis_reset drivers/iio/imu/adis_lib -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x943161db devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xcd3c7903 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x63cd7770 adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_AD5592R EXPORT_SYMBOL_GPL 0x1b0de623 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xa04ac775 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x0f65fb36 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xe59b6d39 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x1a75bf55 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x201c41d3 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x4d878c89 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x9b48178b ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x6a5e317f __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x8ce5f86d adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x10dfa2ef devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x145d1b82 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1ee3098c adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x245c0f98 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x25db4680 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4adaa2c1 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5a702df5 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7b5b6c67 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x88110c04 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xeba593a9 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x550e4f21 __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x8516356f adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xfbf6418a devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xa2ca34ec adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe0cc85c5 adxl31x_chip_info drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core -IIO_ADXL313 EXPORT_SYMBOL_GPL 0xfd1cc9bf adxl313_core_probe drivers/iio/accel/adxl313_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL355 EXPORT_SYMBOL_GPL 0xe46ba2a1 adxl355_core_probe drivers/iio/accel/adxl355_core -IIO_ADXL367 EXPORT_SYMBOL_GPL 0x3bd91809 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x24ccafac adxl372_probe drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0xff9c98c1 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x0b3f4435 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x186749c8 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x75fcce9d ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7823cae5 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8e7a995e ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc8196068 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xd99bde9f ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xddc267a9 ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe45296c1 ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xed98c0c5 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0x432a332d bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0xbcc8c1c0 bma400_probe drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x05e54f70 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x8ed03191 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xcd7ecd35 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xf6b9c060 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x3d0b3668 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x9ae7ac01 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xb154291d bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xf7a7595c bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0xe2943e3d bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0xae1635a9 bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x1f2f41b8 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x395efcf9 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x519b073f bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x72231163 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x86a99dfa bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xf835dd20 adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x7ea197d6 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xa1e60311 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xe362a7cd adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x01e8a09f devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x084f8eda ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x38541bd2 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x3b97e645 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4337bea3 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x47a7c985 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x58133f7c ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x670f5410 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9e743ca8 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xee46f955 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0xd1bd85ed bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xf1957d32 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x10963dfc bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x1288b27b bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xc2fc76c9 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xc505e11e bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x2a84e048 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x2b4de0b4 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x8ee93991 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xde64107d bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x2f79cb68 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xd99f43d3 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x1c5b3e9b bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x8ca9d538 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x91705c0a bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x964db795 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL_GPL 0x2844b051 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x2246ee9e bmp580_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x306e659a bme280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x3bea6185 bmp180_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x478b445e bmp280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x6fe67b64 bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x7ad790ab bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x80b4cd85 bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x8560a606 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x8ec87100 bmp580_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xda84a528 bmp380_chip_info drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x91617887 bno055_probe drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x94c08648 bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x1bdc8723 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xc1db4b10 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xfe5693d1 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x07e6f8c3 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x3b831c29 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x995d88ec fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x9a99d19b fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_BMI160 EXPORT_SYMBOL 0xd6d6586a bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x8ccc2757 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x320b839a bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x37dfe819 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x3c773f1f bmp580_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x7d37c307 bmp380_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x85f588b1 bmp580_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x97dd03b5 bme280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x9c5907aa bmp180_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xdd59357b bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xe0382271 bmp280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xe96197b1 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x60b359d4 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x68aba31e bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x0daf99a1 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x4b7623cc fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x7b946cc6 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x00fab337 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x0ff0a965 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x720ec09c fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa22427f2 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x094bee02 iio_gts_avail_scales_for_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x296bb0cd iio_gts_all_avail_scales drivers/iio/industrialio-gts-helper -IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x48263a40 devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x4ed89402 iio_gts_find_sel_by_gain drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x53000dc5 iio_gts_find_gain_by_sel drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x54a7bad7 iio_gts_get_min_gain drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x5f338fa0 iio_gts_find_new_gain_sel_by_old_gain_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xa04ca07d devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xa3374797 iio_gts_get_scale drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xaf5aaa85 iio_find_closest_gain_low drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc061498b iio_gts_avail_times drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc25ccf30 iio_gts_find_new_gain_by_old_gain_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd7e29768 iio_gts_find_gain_sel_for_scale_using_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf42af90f iio_gts_total_gain_to_scale drivers/iio/industrialio-gts-helper -IIO_HID EXPORT_SYMBOL 0x06117b73 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x1ff89687 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x38bebdff hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x6bcb5b1e hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x6f6c5ed9 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x30cb9dd4 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x4c40ac10 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x56fa931e hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x71ffbaf8 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x780712da hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x8c743e15 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x91d0ed9e hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc779906a hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xc7f3fc11 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xcdd72751 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xcf9daf7e hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xefcbe7f9 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x1dacc669 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xac5b8e36 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe7e98ebc hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf4077ddd hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0x0fa176f1 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x14544d09 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0xeac2c620 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x748b4b75 hts221_pm_ops drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0xbd854a54 hts221_probe drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x3ff4e146 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x45fe35a1 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x9cc21491 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x2caa44c7 kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0x3d8b8ec3 kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x7b7082ac kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x94cd343a kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xaf0bf890 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x9e16bd4b st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0xb4d79e8e st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_HID EXPORT_SYMBOL 0x8f0680b0 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9f7d13ea hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb3731026 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb9f7157a hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xc3ddbf97 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xea9c9f86 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xeccbb1f6 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x094c42fa hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x16f37780 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xcefb92e1 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xfe2ec585 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x30f938ff hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x8907407d hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xd9461bcb hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x00930d68 hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0x4fe85a74 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x268dda33 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x9cbe4fda inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xb443fa48 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0xd064023a kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0xeae9f9a4 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x29ab816e kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x5d8343e6 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xe9cb21ef kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x3ca64649 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0x631ed706 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x09611423 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0d677fe6 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x1ca8094d ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x35bcfc9d ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x5c988a2a ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8857fd0d ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa5939ad8 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb55e2609 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb57a1f2b ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xba38b319 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xdb2bcd22 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x5df6293c mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x95380b64 mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfe70af6d mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x06d710f3 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x1c378190 mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x1e2ada95 mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x39a9e21d mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4ef371a6 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x62b29037 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x65304f60 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc759c54c ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xcdbcf476 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd09ce464 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd8b6d3ca ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x2f8608a5 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x716a33e1 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xdc296907 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x05910a91 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0e66cfbf mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x24fba3e3 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x25b77cc7 mma9551_read_status_words drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x560af9c1 mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x71553225 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x7fe2eb8a mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x8d54d2f9 mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x93c256a4 mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x97227431 mma9551_app_reset drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xa1ba7cc8 mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb5cf92fb mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4fb26357 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x599de672 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x5d23d26f mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6502d219 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7a1c3c82 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa51b9d9a mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa78f3ba8 mma9551_app_reset drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xdc004a8e mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xe6ef07d6 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xf24558f5 mma9551_read_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xfaf090b1 mma9551_read_status_words drivers/iio/accel/mma9551_core -IIO_MPL115 EXPORT_SYMBOL 0xb42fb7dc mpl115_dev_pm_ops drivers/iio/pressure/mpl115 -IIO_MPL115 EXPORT_SYMBOL_GPL 0x8c9bcd10 mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x6e5e1d3f inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0xf43b5018 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0xb622a0d2 ms5611_probe drivers/iio/pressure/ms5611_core -IIO_RESCALE EXPORT_SYMBOL_GPL 0x521f5e65 rescale_process_scale drivers/iio/afe/iio-rescale -IIO_RESCALE EXPORT_SYMBOL_GPL 0x5c6fc9cc rescale_process_offset drivers/iio/afe/iio-rescale +IIO_MMA9551 EXPORT_SYMBOL 0xcb926cff mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd229ce46 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xdfdc0866 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xe24b2d43 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf4348578 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x7312c313 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x0035a0c9 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x0cb07972 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xf41a107c inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x6ce4f169 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x81052b3d rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0xc0f078d3 rescale_process_offset drivers/iio/afe/iio-rescale IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core -IIO_RM3100 EXPORT_SYMBOL_GPL 0x7def1d1a rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x041feab6 scd30_probe drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0xfe675e41 scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0x4566623f sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x0296467d ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x0d988f6d ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x62909514 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x643ae83e ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x70c5c4f2 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x76ff14ac ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa5e72504 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xa7fdc380 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_ST_SENSORS EXPORT_SYMBOL 0x0495a85e st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x06f6aaa2 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_RM3100 EXPORT_SYMBOL_GPL 0xe4fb470a rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x016d1ba5 scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xf3569761 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xee749619 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x01577ba5 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x44740034 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x65a464ea ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x9bc0ef4e ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xad3d6c50 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xaff8ce2e ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xd1c1bec0 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xeed59648 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x02f28f20 st_gyro_common_probe drivers/iio/gyro/st_gyro IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x0a91bac7 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x0ad34c35 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x1b10052a st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0x32c5b78a st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0x34a19dc4 st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x36bb47cd st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x42863aec st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x60d295cf st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0x61184fd2 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x80fb8017 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x8a554538 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x8e544ebe st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x92d9a5d0 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x946b08cb st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0x9b657166 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xa43f54b5 st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xaac74e29 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xbbc1e9e0 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xbd3c2d18 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xded70b8c st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xe3ffa339 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xea579b2f st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xf8eb6fd1 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xfaee5421 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x30dbe736 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0x6ca9dfcf st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0x9ed48517 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x677b4406 zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6d68fb66 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x707e9129 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7ee980f8 zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x86865fc5 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xc32ee7ce zpa2326_remove drivers/iio/pressure/zpa2326 -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x665b653f m10bmc_sys_read drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xa7f60cde m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xb0a27c73 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xe88d8cf5 m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xfd4cbfa7 m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core -IOMMUFD EXPORT_SYMBOL_GPL 0x0f8c0432 iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x1478dc36 iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x4d7863b4 iommufd_access_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x4ee1bf6c iommufd_device_unbind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x507b3b55 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x7a0e6a25 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x7fa85003 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x874223ef iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x952ca0c9 iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xb2ffa686 iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xb3be91cc iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xd4e5b2a3 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xebb7a4e5 iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x22af6a91 iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x4d8530b6 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x9b7c95c9 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x032f34ac iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x07a1b0b4 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0896cffe iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0cfaddb2 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0efce120 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1131bb4c iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x11fc0a22 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IIO_ST_SENSORS EXPORT_SYMBOL 0x13b208e3 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x141de46f st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2ad3fd85 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x30c8e2ff st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x333711e0 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x39a44ff6 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3a17238d st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x41303ebb st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x475414f5 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x50759b26 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x5455709b st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6023ae18 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x606592a4 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x6aa02d22 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6e122c9a st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x72061822 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x76c68064 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8a8d6512 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x8f01420a st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8f312cd0 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x9233c6d3 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xb97a0f9e st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd34bcff9 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd44555c6 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf1915905 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x96fc2d7b st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x9133fb56 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xc7062b64 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0359ac29 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x07a8d762 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x10471781 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x26cd6853 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x504a7522 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x82d0392e zpa2326_remove drivers/iio/pressure/zpa2326 +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x12a61e5b m10bmc_sys_read drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x20191369 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x3e35505e m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x55df10da m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xb51dd22d m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core +IOMMUFD EXPORT_SYMBOL_GPL 0x000dbbdf iommufd_access_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x21216527 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x267408db iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x33f7ba1c iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x8cde38de iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xa83eab84 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xc1949621 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xc6321c65 iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xca1be70a iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd1b6e4d4 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd3738a64 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xe44e7a91 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xe6fcdf42 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x37364fda iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x4d24dde6 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x76c817ff iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x027b2b28 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x08da122b iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0a7df230 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x176d69ec iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1b6534b1 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1d0d8def iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x256a5396 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2638566a __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x16761ced iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1fecc5ff iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x20488f8b iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x227e62ae iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2294187a iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x245b9a38 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x28ac9dd0 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x29175ce5 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2c3b54b4 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2f48e36d iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x33d24670 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x31ae45a9 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35ac4e0a iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x36e6987e iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37333415 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x37d4dbea __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3cb194d1 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3cd84b41 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x42e926ee iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x457b96dc iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x46d42059 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x46d683f8 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x448c462b iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4501967b iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45199fc2 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x465b15c7 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x492ef578 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4afeff3f iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x513677b7 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x535689fa iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x57d4d0cf iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x58be2782 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4c85d19a iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4f96aad3 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x50f2faa0 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x524579a3 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5299cd00 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x564af401 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x58939735 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x59e3ee94 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x59fa0618 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ab15d13 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5eec6076 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x615997c6 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x63f6b549 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6657b31d iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x68766f34 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x69939735 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6af52472 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6c442d9b iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5f2cef8b iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x606f0416 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x61b925eb iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x62fa5aff iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x65e7319a iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x661b3aa0 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x66322b0a iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x707406fb iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x71165901 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x742288a7 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7757fccc iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x79888c2e iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7cca0621 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x840efcba iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x854f58d1 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x85d0597d iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8d3b4816 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8daba201 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x87625f15 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88670f7b iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8aa95295 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8b162161 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8c0e3b7a iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8d0314fa iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x92ce3a0c iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x94224727 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x94758a50 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa19b4427 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa3c5fe58 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa9ca688d iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb1bb8673 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb2958c79 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9080562f iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x917befb7 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x933ab914 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x935863d3 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x980438e1 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9939d27a iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa443f477 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xae7f7675 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaf1d5b3d iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb44b3082 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb3a5f6e8 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb741854f iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb92bb39c iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbad89c73 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbef0abc6 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbf3050e0 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc069bc6b iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc11f9cd1 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc1f32a37 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc48c751f iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc5549a52 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc74eb551 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc52262e9 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcc16a4cb iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcc5da0cc __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xce449b3d iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcf0230e4 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd1836f6e iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd4bb2b86 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd81a3fa0 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd8a9d3de iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce9be3a8 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd24078ad iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd25cb920 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd2fdddf1 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd9ab0b20 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xda8e26e6 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdb7bfb75 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdbf76dde iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe18839fe iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe1e21df1 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe5751b8a iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe73897d0 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xea4c3775 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xee3d1a51 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf018119c iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf23d4ca8 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xee65d9b2 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf4404f55 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf4b3488b iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf780599b iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfb5b449e iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfab54464 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x8c468657 ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xec5c24a8 ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x1e09cf74 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x21d72f4e mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2708bf18 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x27e17e61 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4a6e79b2 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x73d35217 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x8aeac37c mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x91c71868 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9d49455b mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb74289c6 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc1a9cbb0 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc9d40d59 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd8189542 mcb_free_dev drivers/mcb/mcb +IWLWIFI EXPORT_SYMBOL_GPL 0xfc38b234 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfcf69d93 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x9135643b ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xf0c3dfa8 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x06c7c8b9 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x32f80df6 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3c36eee7 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4a466d30 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6045c414 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x65ad0ad4 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6be1cc30 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x831fe31d mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8384da8d mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc63d7943 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xca3e8218 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd447c57a mcb_bus_get drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf4cf0e1e mcb_unregister_driver drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x1d7f7740 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x5d711326 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0x91639455 ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x49ba1f40 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x63b4fef1 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x704c7f6c nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8d48a57e nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x94943f8f nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xaabe7471 nvme_execute_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd46e3078 nvme_passthru_start drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x04e3f551 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x053659a0 peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x082833b5 peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x0a5a19ed peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x0a9778c9 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x18e6cd27 peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x28520f09 peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2ad9a15d peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x35a2f94a peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x49963b94 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4a72a27f peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4b000883 peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4bd8fccd peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6f11b566 devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x73cffc72 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x74c1d917 peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x76a3ba17 peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x963f99b1 peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x97125184 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x991bda98 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9d34a21d peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa3bcc74e peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa827d007 peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb61c0df9 peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd008fc03 peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdb60ffb1 peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe39728d9 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xec1734a7 peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf6a60455 peci_request_alloc drivers/peci/peci -PECI_CPU EXPORT_SYMBOL_GPL 0x2b6f20a6 peci_ep_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x30746112 peci_pcs_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x5487dbda peci_temp_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xad45cd0f peci_mmio_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xeea04146 peci_pci_local_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x00ecc0d2 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x0fde6991 pmbus_unlock drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x192e8c32 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x287f4114 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2913b3b7 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x29aef0cf pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x36af5a9d pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x40678a9b pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4591126a pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x58a3ab4e pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x70e3ee31 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7aa48bda pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x92d9226c pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xaa80ddae pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xac0b6f9c pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb2818905 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd4e8f7a6 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdd2de343 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xdfbebc0a pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xeef493ee pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf2cb3b9b pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x00266211 sx_common_read_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x08382dae sx_common_write_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x799a414e sx_common_probe drivers/iio/proximity/sx_common +MCB EXPORT_SYMBOL_GPL 0xf44ee2ac mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xfa3b0536 mcb_unregister_driver drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x44d51b94 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xfa9c5c98 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x72385fa3 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x09952ce0 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1cb9cf90 nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2d821e68 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x318f12c9 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x893ed21a nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc6dc18cb nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcc05f083 nvme_command_effects drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x052a659e peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0cbd15ae peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1e76500e peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x207a19c5 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x21bd2744 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x32c7aa56 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3360e23f peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4033b26e peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4087f34b peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x44aa6fc8 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x462b26c3 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4919a1ac peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4f876847 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x514d5992 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x597afb4f peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6b203677 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8733841e peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x979dcbbc peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x98af4cd3 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa4a85723 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa6f82687 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa928aa4b peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xba067d29 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc08a8f68 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xca9d595c peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd49c88e1 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xde43d16d peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf8d96cef peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfff065a1 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x372d9c00 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x387b4a1c peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x5456ccb1 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x735d75e8 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xe7b6c336 peci_mmio_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x0b38ae87 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x17f9aa99 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x354985b2 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3b720b89 pmbus_unlock drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3c925ee4 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4ad88476 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x54db502c pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x570708e2 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x640471fe pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6a40acef pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8f9fec1d pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x96210a1b pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x99dd1708 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9dc3926f pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaa50625c pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xacb06414 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbda0f48f pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcfb4bf92 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd02bea39 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xde3e22a1 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf5cb4fc3 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x15ff5bd5 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x370f162d sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x688abffb sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x72141fc2 sx_common_get_raw_register_config drivers/iio/proximity/sx_common SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xb2351460 sx_common_get_raw_register_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xda29c575 sx_common_read_proximity drivers/iio/proximity/sx_common -SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x6c09677b serial8250_pci_setup_port vmlinux +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xda41eed2 sx_common_read_event_config drivers/iio/proximity/sx_common +SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x9bea002e serial8250_pci_setup_port vmlinux +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x11c148cc hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x1503a919 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x25d30b59 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x6bddf506 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x7b301246 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xb0d597cc hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xec755f56 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x27bb1fa0 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xcc64098d cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xf52e721a cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x8ccfe897 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x2ae37ee9 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x4f7522d5 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xa9517d4f cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x1cba3e25 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x03a7f83f cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x37204bab cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x74188ae7 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x9b3293bd cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xa414fc26 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xf4be3947 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3d583669 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7e60f725 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x93e2cdc7 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xb8391968 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xe3447129 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x04e6bfa4 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x05482545 cs35l56_irq sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x2870fc18 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x3d113513 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x43b9bf1c cs35l56_init sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x506b8751 cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x827c641f cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x8f816930 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xc72a7ba4 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x65e97db6 cs35l56_init sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x7058deb5 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xa96cdf1f cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xc5e8158a cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xd864ede0 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xe131a844 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x05c2529e cs35l56_tx_input_values sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x312c0e0f cs35l56_dsp1_regions sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x569a8fb2 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x3dd25d31 cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x44e96f9d cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x64e759e4 cs35l56_tx_input_texts sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x88762c92 cs35l56_get_bclk_freq_id sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x99f4bbc1 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xbb829962 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x8b875bee cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xb5fbe072 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcd5438ad cs35l56_fill_supply_names sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xe0cf896d cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0004b805 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x1d04922e cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3a59f61f cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x52f143f6 cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5fd666ea cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x60101682 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x66d8e9c6 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x831b457f cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9e3a70f0 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa8976273 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x03926d0b cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x067d5bf5 cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x15e57180 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3762c571 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3b38f565 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x69cae78b cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7328ee81 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7639ba4d cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x796f95c0 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7c5ec24c cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9f937f54 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae4be5c4 cs42l42_irq_thread sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb8ac526a cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xbbc2369a cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd7f39546 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xdc0cac1d cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x239c663d sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe3b58ecc cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xfad2710c cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xff6e8b39 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x22997bef sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x09351149 tasdevice_prmg_calibdata_load sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1a949c7c tasdevice_select_cfg_blk sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1ab9b7d9 tasdevice_select_tuningprm_cfg sound/soc/codecs/snd-soc-tas2781-fmwlib @@ -28715,28 +28739,27 @@ SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xa7d17083 tasdevice_rca_parser sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfa72134b tasdevice_dsp_parser sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfe3a6722 tasdevice_prmg_load sound/soc/codecs/snd-soc-tas2781-fmwlib -SOUNDWIRE_INTEL EXPORT_SYMBOL 0x1910977f sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL EXPORT_SYMBOL 0x8ae863b9 sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x0b758561 sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x54090136 sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x890c9250 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x33fa51c2 sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0xa002a504 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x21e8da1d sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5735e50b sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x8ba6468a sdw_intel_exit drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xf536bbc6 sdw_intel_exit drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x22a2fb3b dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2d7ad4bc dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x42af9f76 dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8784cb45 dw_spi_dma_setup_generic drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xab78598e dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xcfa3435a dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xcfdea586 dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd8a8ce36 dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xef493b40 dw_spi_suspend_host drivers/spi/spi-dw +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd92b28e3 sdw_intel_probe drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x15e6e5f4 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1bd0b020 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5331186b dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7bf2cc0d dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb05ab8da dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb97e5cb0 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdaae62c7 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf2eefc65 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf52aac24 dw_spi_add_host drivers/spi/spi-dw SUNXI_CCU EXPORT_SYMBOL_GPL 0x079708d7 ccu_gate_helper_enable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x0a9707d3 ccu_mux_helper_get_parent vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x0c64ee0e ccu_sdm_helper_enable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x14438263 ccu_frac_helper_read_rate vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x1f23b840 ccu_nkmp_ops vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x30f76ac3 ccu_pll_notifier_register vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x3e362444 ccu_frac_helper_is_enabled vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x45837646 ccu_sdm_helper_is_enabled vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x50165be0 ccu_mux_notifier_register vmlinux @@ -28744,9 +28767,9 @@ SUNXI_CCU EXPORT_SYMBOL_GPL 0x5cddbcc6 ccu_nm_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x61abda39 ccu_mux_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x6668446b ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x6f145175 devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x7279ee3e ccu_mult_ops vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x72f551be devm_sunxi_ccu_probe vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x7847755f ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x814aca05 ccu_helper_wait_for_lock vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x831d58e6 ccu_gate_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x844f1c47 ccu_mux_helper_set_parent vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x8a845fdb ccu_nk_ops vmlinux @@ -28769,26 +28792,27 @@ +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf6c142cd ccu_pll_notifier_register vmlinux TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x06a7a8ba usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x070dab9c usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0b6854dc usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1a889cae fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x048aee3c usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0c230e90 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x12b5ea47 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x143ffc99 usb_stor_CB_transport drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x25baeca5 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x48fd2647 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4b50284c usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5b802dcd usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x739137d2 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x74929941 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7affce34 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x83481012 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8b154658 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa72fdf88 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb3eb6c49 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb7f4d9d8 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbbfb0ec3 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc3c8fa75 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc5f2a251 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd48655a8 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb196532 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe2ec67a3 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf15e854f usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf657dee7 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4554f0c2 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x58132616 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x638b8ff0 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x64662e0d usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x64bee50c usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x64cef1ee usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6508247e usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6a9a5e32 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x73ff9842 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7a572bab usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7db16afd usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x83d658db usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8da4a72e fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9f537cec usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb0bac114 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb53c39e6 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbdfad808 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xce5c835d usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb49f623 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf82f2796 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage diff -u linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic-64k linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic-64k --- linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic-64k +++ linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic-64k @@ -1,145 +1,145 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x2fd55038 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0x36b35f91 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x25fdd186 devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x3be86497 counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x4dd6ea26 counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x735216a4 counter_put drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x9f56b28f counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xafdd94b3 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xd3565730 counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xfe1f687c counter_unregister drivers/counter/counter -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0150e9f0 otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0e7191e8 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x326d10ab cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3874f3aa otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x404fb452 otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5a0e4c2c otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x77d8eaf7 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8d46b29e otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa16a9cbe otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa5aea03f otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xaa6bfd84 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb54da254 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xccc258c0 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd5764918 otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xde0a1dcd otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe3a07c37 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xfc4ed609 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xabbfb233 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb1628da0 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xf784cdac crypto_cipher_encrypt_one vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x56762e4c brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xe416c856 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x0811e5bd devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x3d24b611 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x4a998f51 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x80698df5 counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x9cabc770 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xb0332164 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xba979521 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf7affac2 counter_unregister drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x07106d75 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x27182f42 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x31175612 otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3b3f0f4b otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3fc844ef otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x56bba97c otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5d578fe0 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x6dbed0a2 otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7743718d otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xab26028d otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb15e227e otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb5d94de3 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb94bb5d6 cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xc4794c4f otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xca670f3a otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe11b1865 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe1abe4c6 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1f34913e crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7cccb978 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb6c67851 crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x01009231 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x01c39c00 cxl_pci_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0471711c cxl_mem_create_range_info drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x0680da98 devm_cxl_pmu_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x06f1af09 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x07ca6361 to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x08c840f0 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0b17444b cxl_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0ced8b37 cxl_count_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0d5fa274 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0e920c9d cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0e96497e cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x16a3c1e4 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1855d5c9 to_cxl_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1fa78251 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x26f2a6d4 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x29d95356 cxl_mem_get_event_records drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x29e70391 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2a096f73 cxl_pci_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2f856882 devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x321acf0b cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x066e3e0e cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x09aa0729 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1191fd42 cxl_cor_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x127717ea cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x190ec544 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x19caca3d devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1b51783a set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1b7371c1 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1d1274d0 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1deb0a28 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1e7f3689 cxl_setup_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2114953e cxl_add_to_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x216cac00 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23fd9bda cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x24578373 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x258f18a2 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2860de99 cxl_memdev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3247c129 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3277ef73 cxl_driver_unregister drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x3671a965 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x36a33f32 is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3afb13c3 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3cc28918 cxl_memdev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3f7e5f0e is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x43acf1aa cxl_setup_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4b5291a0 cxl_map_pmu_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x51c862dc cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x520a58af cxl_clear_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x536108b7 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x538f8ec3 cxl_find_regblock_instance drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5516dacd cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5a32ca7f is_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5b351957 find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5b81cc17 cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x62440eb8 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x645c83c0 cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x652a7a13 is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x664500c9 cxl_cor_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6a5c9545 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3b14749f cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3fca1c84 devm_cxl_dpa_reserve drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4138bd47 cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x421efbb0 cxl_set_timestamp drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4623b178 cxl_mem_get_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4a77eeda cxl_poison_state_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4ec021f2 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4f899978 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x524e99c3 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x52612947 cxl_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x565c6956 is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x591cbab0 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5a2cae02 cxl_inject_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5ed1d5a5 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6466dfe7 devm_cxl_pmu_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6539fe72 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6b4662ed is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ba96290 cxl_mem_sanitize drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6dc8e70a cxl_trigger_poison_list drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x71a21782 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x72fb05c5 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x731f6094 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x775f6875 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7bfc0da7 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7ca08709 cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7e38ca55 cxl_set_timestamp drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7148baa2 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x77f0e780 is_root_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x837bd600 cxl_poison_state_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x80c88eec to_cxl_dax_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x81ee23b1 is_cxl_pmem_region drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x88fbc09f to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8b9872e3 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x912cc573 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x890d7f72 is_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x89a248c9 cxl_count_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8aa45963 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8b179c9a cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8e8e91d4 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8fd92514 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x972d17d5 cxl_map_component_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x989f2722 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x98b28760 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9bd8e447 to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9d2f4f65 set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9fe1e2b1 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa70b25e4 cxl_trigger_poison_list drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa9e8ddd3 cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xab0bc984 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xad9f7074 to_cxl_dax_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xade08338 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb43d9ad4 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb47e2678 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbb54519b cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbbabd2c9 cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbc3d7573 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc1a7c097 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xca43be37 cxl_inject_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcbb40f0b clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcd1fa485 cxl_mem_sanitize drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd00722f9 is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd3dfb28a devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd49271ab cxl_add_to_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdb69046b devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdd6f2d3f devm_cxl_dpa_reserve drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe6536cb5 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe79b6fb3 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe7dc7f16 cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xebaba1a4 to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xec5cc98d cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xec6e87a7 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xeeb47a38 cxl_mem_get_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf2c19fba read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf6def1d2 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfbfb8fee is_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfddd673e cxl_decoder_add_locked drivers/cxl/core/cxl_core -DMA_BUF EXPORT_SYMBOL_GPL 0x03d24d7a dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x08a18318 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0d777316 dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x16d3e587 dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x2a137a16 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x2b825725 dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x443599a2 dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x45e48836 dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x54ab6f7b dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x72219c0c dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x7285e346 dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8d4cacff dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8ebe3750 dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8f519101 dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x99456942 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9dfcc652 dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xae2235c6 dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc4315c00 dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc9cde272 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc9d6e875 dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf2a97557 dma_buf_end_cpu_access vmlinux +CXL EXPORT_SYMBOL_GPL 0xa07473c0 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa17d0615 cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa285481b cxl_mem_get_event_records drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa413a3dd cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa9f6fa34 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xadccb0a1 cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb6e1d14f is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb727d393 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc2122296 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc320ee7e devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc3552af1 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc717dd60 cxl_find_regblock_instance drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcccf20ff to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcd94c527 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcfedc27e to_cxl_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd00f2967 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd28dfcd9 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd57626ea cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd5a7e21e cxl_map_pmu_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdef35e1d cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe3540279 cxl_clear_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe4f4cf1f is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe72016f7 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe7c753d2 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xea10d6bc cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf4439cb2 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf7dd9b2c cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf8040527 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf91bdb67 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf92f0b28 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfa32a8e4 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe69aa14 devm_cxl_add_memdev drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0e000f61 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x14d23215 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1c0eb2b1 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2234004d dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x24e82306 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2892c34b dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x32e4432b dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x421a97bf dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x49191913 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x502e3e9b dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x586dff6e dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x63ad4fdf dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x70905c52 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x71575ad5 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x74202c2e dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8453ae47 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9123477a dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc435c97f dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdfe6c5d5 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf4fdc8a8 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf684748d dma_buf_dynamic_attach vmlinux DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux @@ -150,7 +150,7 @@ EFIVAR EXPORT_SYMBOL_GPL 0xee5240dc efivar_query_variable_info vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x7c294e42 ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xcec2657b ce_aes_setkey EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xb8c706a6 neon_aes_ctr_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt @@ -189,53 +189,53 @@ EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x05166712 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x1709be86 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x7364f0ec crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x745dee24 crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x93524767 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xda9526b2 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x195ce613 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x5c61a631 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x5dcd90bc crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x8ba85ab6 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x90aea09a crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xd7a7d928 crypto_nhpoly1305_update_helper EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight -EXPORT_SYMBOL drivers/acpi/video 0x59b44033 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x72fc93bf acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses EXPORT_SYMBOL drivers/acpi/video 0x7de7bf50 __acpi_video_get_backlight_type EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0x91c3c1b3 acpi_video_get_levels -EXPORT_SYMBOL drivers/atm/suni 0xcb85729a suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x45b64d61 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x4937968e bcma_core_dma_translation +EXPORT_SYMBOL drivers/acpi/video 0xd0b05c2f acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0xca01c3df suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x8d3aa306 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xf1347689 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 0xbda402b5 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x2ce0cb6c rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xdadfe4cd mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x47968bac btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xef8cb562 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x65f719ad mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x17efc8ce ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x26dafff7 ipmi_smi_watcher_register -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40239ec2 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x326ddbb9 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7efeb74f ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xceed7572 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb8a057f3 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc2f5fae4 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr @@ -245,51 +245,51 @@ EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x06d6d8cd kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x06d93f33 kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0adf4b6a kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1a46f6c7 kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1fe08442 kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x2e81484a kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x4b9ba8ad kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa60ddc58 kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb8aba26f kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc9dc3562 kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd15aed96 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe3e2518f kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf3f43cc6 kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x30eaf1ff st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x350e9b91 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x41a5e17e st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x83e52da4 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0dd195b5 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8fb8e355 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xfa32f919 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x075da0c3 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x17fd7865 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1a4ea965 kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x2bb65d59 kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x327701d2 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x35c0d386 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x518bcec3 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x6e18fb35 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x78738328 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x97e0ef96 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xadccb71b kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xc0921c29 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf086cb33 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf13fe72b kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0def425b st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x304119e7 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb8b345e9 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc02958ee st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8b7d83a9 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xaefedba6 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xf93fc388 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1d570d97 xillybus_init_endpoint EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x88b4bd97 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xff1d0222 xillybus_init_endpoint -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x04b84548 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x46dc0e75 atmel_i2c_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3f16e185 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf361a559 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x10b7b71f atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x354a3c7d atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xa75a1ed2 atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xd7391897 atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x18a5115c caam_qi_enqueue EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0x8d49ae8e caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0xa165c8b5 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0x7b772b33 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0x8d34c30f caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc58fe794 caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9a97985d caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9b556d10 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc4ce5dab caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xdeb1b5c0 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xef9bd540 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc7ebe99e caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0xdea60900 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x07ce1162 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4e9f6653 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x62d3c3d1 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7410e26f caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x778f67e9 caam_jr_enqueue EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly @@ -308,707 +308,707 @@ EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash -EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x554d3f3b dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x98f7c924 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x2e521af1 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz EXPORT_SYMBOL drivers/crypto/caam/error 0x60dbc82a caam_dump_sg EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end -EXPORT_SYMBOL drivers/crypto/caam/error 0xafc8b509 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x14fbe6ba xdma_disable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x45d5ce47 xdma_get_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xd3dc77b0 xdma_enable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0xf167f363 xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0aa5f006 fw_iso_context_queue +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x0b5030b8 xdma_enable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x2dd4b0b5 xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x438e5c47 xdma_get_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x1edfd7b6 xilinx_vdma_channel_set_config EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0fb215a6 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17863790 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x17bec9b4 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1894c8a8 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1f21a5ae fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0effcf3e fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1388b540 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x196052f2 fw_core_remove_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2f291674 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x35672064 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2e0fd14e fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x312d1d39 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x33235bf4 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a3d1746 fw_iso_context_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3bfce8e9 fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4265cba7 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x471fefff fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4fa205d4 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x63f397c2 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x66cc4991 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ac0fe76 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ff9a6c6 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5127fa78 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x524900ee fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x56c0daf1 fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x812340d2 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x837320fe fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x71b17056 fw_device_enable_phys_dma EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x98d5a416 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa28036ab fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xad164eaf fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x879f87c1 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x897985cc fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9790a1e1 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa02e8ba2 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa41ac893 fw_iso_context_stop EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc5bcc0f5 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd35f6d47 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdd0bfd8d fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb43b60bf fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9d202bc fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1b0b3eb fw_card_add EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe7f2807f fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xff5a2d0b fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3a64a071 imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3fdd230a imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xeb9dd712 imx_dsp_request_channel -EXPORT_SYMBOL drivers/fpga/dfl 0xa52909fa dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xd5e40d9f __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x5ef4df1b sysconfig_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe876f04f fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeae22907 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xecde041a fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xed59ee82 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf539fdd4 fw_card_initialize +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3f851b2f imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x85c5196f imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xdaa19e93 imx_dsp_free_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x0569d8db __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xf0cf2ab8 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x4824bece sysconfig_probe EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0ea5d74b amdgpu_xcp_drv_release -EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0xa009d198 amdgpu_xcp_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0xa726730f amdgpu_xcp_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01df7c65 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02625b2b drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02ba42a5 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02ffaba3 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05cba029 drm_atomic_get_new_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06779389 drm_dp_mst_hpd_irq_handle_event -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08eb59cb drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0909786b drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b3d0b57 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f39f0fc drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x119dd7b9 drm_dp_read_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12b02f3e drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x048d6a22 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07948683 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0dcae050 drm_scdc_set_scrambling EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18b86639 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1943ed5c drm_dp_mst_update_slots EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1eea86de drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x210a91ae drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d430a4f drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f38a63c drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2112bf38 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2160c0a2 drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x230e43a9 drm_dp_cec_unregister_connector EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24a146be drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23beb183 drm_dp_pcon_pps_override_buf EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24ada755 drm_dsc_set_rc_buf_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26408d85 drm_dp_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x273b5b14 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a44d745 drm_dp_add_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c3fb451 drm_atomic_get_mst_payload_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c9c6833 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2daf2417 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26bc686a drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x27afd518 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29d995fa drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a2eeaf9 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c781ce3 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f701e87 drm_dp_mst_dsc_aux_for_port EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x30f31605 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x312702f2 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x33c92852 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36e6920a drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3053c853 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32cf86fd drm_dp_get_phy_test_pattern EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b519af6 drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3dc7a341 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x420b74d0 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43b18d7f drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43e7f31e drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x449528d0 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3bb3b588 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3f83f89e drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4168bc69 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41d9da3f drm_hdmi_avi_infoframe_content_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49448deb drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4a648f23 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e4d2791 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51c8cecf drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51dacc2b drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x536f197b drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x47f9b8ef drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x48d9819c drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4abba3b6 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4c63e189 drm_edp_backlight_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56dbda82 drm_dp_mst_root_conn_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56f9cdc5 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57ec6fb3 drm_dp_mst_edid_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5704bbd4 drm_dp_cec_set_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58b0d171 drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59861963 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59deffee drm_dp_pcon_hdmi_frl_link_error_count EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a605683 drm_dp_mst_get_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5cfd3496 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61a3bcb5 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61ccadac drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b701e0d drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f86bc57 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x606fbe1b drm_hdcp_update_content_protection EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627ba04b drm_dsc_set_const_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x629c3315 drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65e9599d drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x672e75ee drm_dp_add_payload_part2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69cf2cf4 drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b52f516 drm_dp_dual_mode_set_tmds_output EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6c29dba0 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6dbf989d drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f2df8d0 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6bd9f0a8 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d2149fa drm_scdc_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70731c8e drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x72828a84 drm_dp_pcon_frl_enable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74750f40 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74e9a283 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x763250b0 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74ea0067 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x753a02c7 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x758925d7 drm_edp_backlight_set_level EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79008c7e drm_dsc_setup_rc_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7dc1c931 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e198841 drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7b15c958 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7bf31071 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x80b6cc73 drm_dp_mst_get_port_malloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8453d56f drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85929ce4 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85feb44f drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x893d2b75 drm_dp_mst_hpd_irq_send_new_request -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x89c82adc drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b35fbc7 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x874ed62e drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8959f9a7 drm_dp_mst_topology_mgr_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d8ee147 drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x90022c86 drm_dp_atomic_find_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9018582d drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b1facb drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x90ec261b drm_connector_attach_content_protection_property EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92f61870 drm_dp_add_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x936f460f drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92d9937f drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x932189f0 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x93778f36 drm_scdc_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95883bb4 drm_dsc_initial_scale_value -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a86558d drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9cb1eb69 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9cf44e7a drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9cf90083 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9da9c759 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9ecf2d05 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9fbf3245 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9753660a drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x99c2fc4c drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x99d5a9bf drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d264918 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9e5ce853 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1297c2a drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa18e2b5e drm_dp_dpcd_probe EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4a70f76 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6935395 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3332285 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3aef76e drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3be8855 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5766d84 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5ba1c19 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5ce9b11 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa64d8232 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa70c8265 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa76f4c2b drm_dp_mst_atomic_setup_commit EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa90a32f8 drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xac1f9515 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa88d784a drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xada1a064 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xadf2ae58 drm_dp_mst_dump_topology EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf6175e3 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xafb3a2fb drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb202feec drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb414ffb0 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb42d1757 drm_dp_128b132b_read_aux_rd_interval -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5d7e744 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb61ecb10 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb80b037e drm_scdc_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8fa18fe drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb9187fe2 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba8fce05 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbbba2ac1 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc016a45f drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf4b0bb8 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf8c8f63 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaffb70c1 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0ffa498 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb158a04f drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3637ae6 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3fd5bb9 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb49ce277 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8459ca8 drm_dp_mst_hpd_irq_handle_event +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb95c0a35 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc623768 drm_dp_mst_hpd_irq_send_new_request EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc59ce54d drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc0627607 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc2be9d02 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4770f76 drm_dp_send_query_stream_enc_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc65bd33b drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7133ec4 drm_dp_downstream_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8a85d3a drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7fd09da drm_dp_mst_atomic_wait_for_dependencies EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcae2096b drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcbea9c62 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8d7eebf drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc9c0800e drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb9421ce drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc04e950 drm_dp_mst_add_affected_dsc_crtcs EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcddcc167 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd044800 drm_atomic_get_mst_payload_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0e95456 drm_dsc_get_bpp_int -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd21428ea drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd25193f8 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd3c331ea drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5013351 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5221dc6 drm_dp_mst_atomic_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd579e707 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd19fa90d drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd32bae18 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd496fee8 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd50643ad drm_dp_mst_topology_mgr_suspend EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd8d975fd drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1f0494d drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb5f1d4b drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdbd7103f drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd4419fb drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd499208 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf6fd299 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe14e4f18 drm_dp_mst_connector_late_register EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2468a48 drm_dsc_flatness_det_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe49b73b0 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4a5202e drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe286a415 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2e590dc drm_dp_check_act_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xebdf246c drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed5022a1 drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe6b13b61 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7816941 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xea8a3b1c drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb195040 drm_dp_dpcd_read_phy_link_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4e4065d drm_dp_pcon_pps_override_param EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf9ef7970 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8c983b2 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa1323af drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfaf4d1fa drm_dp_read_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfdbe75ab drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb8a752f drm_dp_mst_edid_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01c331e5 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02e2c6ff drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0352e524 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d7ac6d drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x016151d4 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0378e013 drm_privacy_screen_call_notifier_chain EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05730e67 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05829e6f drm_gem_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05865e2c drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05ae6418 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c9b735 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x063f4726 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x064c5cac drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fff198 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04054eb5 drm_gem_lru_move_tail_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x040dda75 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0434a8d9 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x043cfad2 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0466c389 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ac1d3d drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0513782a drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x051ae037 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x051d3423 drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x059c4da4 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x060d4ef9 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x066a905f drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06b3f8f4 drm_connector_attach_max_bpc_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08951f51 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08d7fb26 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0949e46f drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2d3b6a of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a3489de drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c50c85 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09cdf517 drm_connector_attach_vrr_capable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a92302b drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad3194c drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a76acfd drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b22c069 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b88a4a0 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bae49c2 drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9c9aa7 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e377ce0 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e380a5b drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4f24cd drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1d706a drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ebe4fd5 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f4f9c31 drm_atomic_get_new_crtc_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb59ecb drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb7950c drm_modeset_lock EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x105cd6a0 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1067e374 drm_of_component_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ac2be4 drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1316bbbe drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13bb4969 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x143eb0e2 drm_show_fdinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d67d13 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d8ab16 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x152ca406 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15336dd1 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15765a5e drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16530ce0 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1695722f drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1130ff44 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11a543de drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x121b07d2 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x125133f6 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12b22e70 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12dc2d34 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13577402 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1442cf8d drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14ce205d drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x153347cb drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15dd5714 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x167fb995 drm_client_framebuffer_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1794fc92 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17fe127c drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x184528d4 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18949a1a drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f76a15 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17451533 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ca18ec drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ef8e94 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f5a636 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18096708 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x186c719e drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x193bea23 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1970b9d7 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19db31e5 drm_syncobj_replace_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b63ba3e drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1baf3ec9 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cbb895e drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd074a0 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cea56ed drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d2aa76b drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e412dbc drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa9604b drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20519559 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a51d587 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a9c9794 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b2788d5 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c06432e drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c36ae98 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c6c29ee drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca6a421 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcadd7a drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec34cb5 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa8df5c drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x205512a0 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2082609b drm_gem_dmabuf_export EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x229bcb41 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x229d6326 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acd7d3 drm_gem_lru_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e9e643 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x230a331c drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23abc846 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23c6a36c drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2417e832 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2432c58d drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21acc04a drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22516cbf drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22abc22f drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2334d93b drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23716e3f drm_client_modeset_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24e2b7eb drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2516e371 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25036136 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2549b84c drm_gem_object_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e338ad drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x281c52f5 drm_mode_create_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x287cff44 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x296c98fe drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2897b89c drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28af59f9 drmm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a48728b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a22f24b drm_send_event_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b344dcb drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c0a8694 drm_analog_tv_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c517143 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e227fcc drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e9f6fa3 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b23ca15 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6f8cc8 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d8ed3db drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d8f4da9 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df534b6 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4cc35a drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea4444a drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea4571a drm_framebuffer_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2eebc1 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f350397 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eda1be0 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f1ebf49 drm_privacy_screen_get_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f815a89 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3005eef7 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a1bfe2 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30db27d2 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f846b9a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fae6e6e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fca3c20 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30711dcc drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3099b450 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x318b4551 drm_cvt_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32939e68 drm_writeback_get_out_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b6006c drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331cfedb drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f0cdb5 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35267bc3 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x357f5bd8 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e478f9 drm_mode_create_tv_properties_legacy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x367da3cf drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36fe29ca drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37609e02 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33426a58 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3474982e drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a01044 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d1b063 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d52573 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38249344 drm_put_dev EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a9d172 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a3d64ab __drmm_mutex_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ae294a2 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3afbe6ae drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac19355 drm_any_plane_has_format EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b4af5b8 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6a6523 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b12a74c drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b55f8d6 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc2ebac drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bfb601d drm_atomic_get_old_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c65f9fa drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c81a55f drm_atomic_add_affected_connectors EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1d1430 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da6f780 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db7927f drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f206033 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dc88b43 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3efc4577 drm_connector_attach_privacy_screen_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x407b76a9 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x410ef059 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4193a86f drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e89b44 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc57353 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x413635bf __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ecbee6 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4333b407 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x436c30fe drm_crtc_check_viewport EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44d813bd drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x452e234a drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44facbe7 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4506778a drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x452e2bf4 drm_compat_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45e07fc8 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x467cc4c9 drm_edid_read_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47118c73 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47232ac7 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4823aec9 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x482503d6 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c32b8d drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x478d76df drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48231cd9 drm_plane_get_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48471420 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a0ca64 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49299f14 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4843c9ad drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x486c5463 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x487ebaee drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48807406 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4947c008 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ed0049 drm_gem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a8f81fc drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aeb3bb0 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b691231 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a807399 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4afdaf83 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b32decf drm_panel_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c5486fa __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cb78454 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3e9bfa drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d57778e drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d57fbb7 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9c7324 drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df31aab drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e264b35 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c46c42a drm_mode_find_dmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea0f4f1 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efdd1ee drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5047729e __drmm_add_action EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50be4750 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5101a087 drm_edid_read_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x513fed96 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a1e991 drm_edid_read_custom -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51dc01b7 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5130d105 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51644df7 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x520e07d7 drm_gem_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x522b049b drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55414835 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x555a2904 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52de5770 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53e67c5e drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54339204 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54378651 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x545ba052 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54853e56 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x551d6d78 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55468f15 drm_syncobj_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x563acc0a drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b3b6ba drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x572c50e4 drm_crtc_enable_color_mgmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57af8e36 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x576f7d61 drmm_crtc_init_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x584f4391 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5869e426 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x589481a3 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57cfad1c drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d25c09 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x584fcb06 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x590067af devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x590152b6 drm_mode_object_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a405d00 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b2f795c drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c086a7e drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a88bb9d drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab65d78 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c1f5653 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c3f8ad7 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd2cdaa __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d61fb04 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dcc38c4 drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e361555 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e38b6e4 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eec6539 drm_client_buffer_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd4b446 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60eb4f99 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6130af76 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61821161 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62c94d5b drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6351ba8a drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63fcaa65 drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6443859a drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6451511f drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7c4148 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6077c8a1 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x617b347a drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x620a75e0 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62ba8e83 drm_gem_vunmap_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x661cbdef drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66268185 drm_crtc_next_vblank_start -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6644407e drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67ec5537 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x681d175a drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x681d2200 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68c3a0bd drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68c7a7f3 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x659f560b drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x673b6772 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67878d15 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a456d1 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6888d668 drm_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x698999f6 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a32651 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c2d9d8 drm_plane_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a82682f drm_mode_get_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b319084 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b781f24 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b7c34d0 drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b97c542 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bcab09f drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2da005 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c619302 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c701f73 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6debbdcf drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e485e3d drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea437af drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec63de8 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7039906b drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7104076b drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c6540f drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7255eeda drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0x732b7822 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73f45ae5 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74319f38 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74ba8d4a drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c7fa2c9 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d77804b drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e5c8ff3 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f16aaea drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f3afd02 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71131b7e drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x712e5adc drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72c3bc25 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7304a083 drm_analog_tv_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733212de drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a8f664 drm_gem_dmabuf_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75abf909 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75bb13d1 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c4b1c1 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x771fee72 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x773f962d drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7827ec7c drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ad312a drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78c92f43 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78df3f1a drm_privacy_screen_call_notifier_chain -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79260c32 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7672a1b4 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ff9ec0 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77975918 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77d6bfce drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x788fdc86 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78cdfe53 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79229f6b drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x793d8134 drm_framebuffer_unregister_private EXPORT_SYMBOL drivers/gpu/drm/drm 0x79a23d06 drm_get_format_info EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa8c8b4 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ac69a82 drm_bridge_chain_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bdf7af4 drm_connector_list_iter_begin EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0b5577 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc32eb3 drm_property_create_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e4c419c drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec8731d drm_connector_attach_dp_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80857a24 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e08461 drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e28a65 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f091dc1 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80347d6e drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x804faf7f drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8120b8b0 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81875d6c drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a6ee7a drm_atomic_get_old_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x823d7229 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82806a24 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x828edb9f drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82cd9d25 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8316e2d0 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x832f5d5b drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x844a679e drm_atomic_get_new_crtc_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85f129bb drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x864dd95c drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a1a950 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b91007 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8821ab66 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x887e46b7 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f0dfa0 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a1e54e2 drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a59be49 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a83785c drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a837ff9 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad7920f drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aee4868 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820dbe65 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8297fd05 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82acb431 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x836b4ca5 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a45371 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d2c273 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85f798e9 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8749eda1 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x882f60f8 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b88a8e drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8afabd23 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b115674 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b259082 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b91e9a3 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c40eb9a drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cee7974 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d59a79e __drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e18cf8c drm_atomic_get_old_crtc_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef97b3c drm_edid_override_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f593b4d drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90626030 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f6b013 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9225793d drm_privacy_screen_register_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92eaf281 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93539bcb drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x935467ac drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x939d3ef6 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x945de611 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x956891ca drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f6aff5 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da95ace drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5d2dbf drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90567877 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x917ec09b __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e0d45d drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fed828 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9256fd58 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92dee067 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x940ee4f9 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x953ee9ab drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x963f82c1 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96cf88be drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e05357 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f50cb3 __drmm_mutex_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a0362a drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e94baf drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x981b855c drm_connector_atomic_hdr_metadata_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98623846 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99768f91 drm_show_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99bad62c drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e49b27 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99fc479f drm_privacy_screen_unregister_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b0d5a0c drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x989684e0 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x995616ff drm_atomic_state_default_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8cff91 drm_connector_set_link_status_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c87c310 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c95d6ba __drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd20e98 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9de2de58 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df10beb drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e68e8e8 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a3d18e drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2355855 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d272f85 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f0cb766 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f4a0ddb drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f9e02af drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ff6ad78 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0a7b2bb drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0e323ba drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13411ce __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa148076a drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa18b5910 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b24a6d drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1b2ee99 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa211aab2 drm_modeset_acquire_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa268ad3e drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2958a5e drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa355b928 drm_atomic_bridge_chain_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3beae56 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa48ad60d drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f8c956 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5923d1c drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6aa42a3 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa714bfb1 drm_privacy_screen_get_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa773065b drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e0f1cf drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa90050b0 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa93b917d drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa52bfe49 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55d5559 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b4ebd9 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6575739 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6aa0301 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa806c2e2 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80907f8 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa81d4966 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8308acb drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8df8dde drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa90b1e99 drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9b8830f drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9fdc5b2 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa33f775 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa722b01 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaafdef88 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab027e88 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2e0e20 drm_privacy_screen_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf5f9f5 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa962e1b6 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a4abbf drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f0a3cd drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6de55f drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa770e48 drm_gem_private_object_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa83e6c7 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabba219f drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac14832e drm_dev_has_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad823c19 drm_mode_set_config_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae41d39f drm_privacy_screen_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafc5a516 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb02aff93 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb045073e drm_edid_connector_add_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c6a9eb drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec8ecfa drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafdc1ce3 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb046b3e1 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ae7135 drm_property_create_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb15e597d drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb17ece44 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ae2bd0 drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1790aee drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1bd8f02 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1f73db2 drm_bridge_chain_mode_valid EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb21475a1 drm_gem_private_object_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2366838 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb35225b6 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb21f2b6d drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3176fe0 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb350adee drm_invalid_op EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3fbb366 drm_gem_vm_close EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4106476 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb44e8453 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb46d62b2 drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb47db1e2 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4c73dee drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6041fea drm_property_create_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb62d600b drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb63770b5 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6b18f89 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6edc99d drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7a1e7e5 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8799b97 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8aab338 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb950fd8f drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6832508 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6da42d2 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7528d5a drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d88959 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a9c043 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb932ca67 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a9ba70 drm_framebuffer_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0f0cd1 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb9a69a1 drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbaea18a drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcfd0a2a drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5ffe06 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd689976 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe56f687 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc087c65a drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2204ec6 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2868cdd drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3170350 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc31ece60 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc329b73d drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d6a018 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4390e81 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc59f68e2 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc715660e drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc727d2b9 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb681014 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbba9f415 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbaec0b2 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcdef300 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcfb3110 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf602a55 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf9bc591 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e93526 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0fd7601 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2c074d1 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2dbf816 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4319c9b drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc49c81f2 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6569b67 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6798949 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc69ae195 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6edca9c drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6fc34c8 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc733a87b drm_event_reserve_init_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc792b523 drm_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc807a44a drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8926c1e drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8e6b10b drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8f05f51 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9587779 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc960da35 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca6bf666 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8a8cf7 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb48afd9 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb785eec drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0c17c0 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d4a35c drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8239ec0 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc823afb9 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc84843fd drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc983e5c5 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9a997c5 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9b0e84d drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb9b1a90 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba51cb7 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc537ee3 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc89cbc1 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccb64651 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb7cdc1 drm_atomic_print_new_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdbf9dbc drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcedcb79b drm_gem_vmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcedcc0e5 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd019d766 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd096c00e drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcde230b3 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce56dbad drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe5bec8 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0007f4f drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0bf3317 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13aecbb drm_property_create_signed_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18c1fe1 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1d52534 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1fd52aa drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ff2a37 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd151e5fa drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a75438 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2f31e77 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3c933a0 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd439fe83 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd46dd749 drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49ff62f drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd540de06 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd565eb90 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6177b7c drm_master_internal_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6b75090 drm_property_create EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7de4071 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd978109c drm_privacy_screen_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacab8cf drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f74728 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8203283 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8edb4f9 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd932146a drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9818679 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda8b3356 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac398be devm_drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdafaa0af drm_gem_prime_fd_to_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca9b46c drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0be70c drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd1ac68c drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd2c55f drm_plane_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda19609 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd52998 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde0a55f3 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde554c76 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde942a44 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec56e55 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdddddccd drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde71f8f0 drm_gem_prime_export EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb3c446 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe011cd41 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f77278 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe107efb4 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1532cf8 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0a30f3b drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0aa68b3 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe15883ea drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1f9edf4 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2f9ad8d drm_crtc_next_vblank_start +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe30f27f4 drm_object_property_get_default_value EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3bc8ce6 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e6e022 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52651cf drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59801a4 drm_atomic_bridge_chain_pre_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe63f61e9 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe71bc619 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe72a7d77 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe76b0659 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe77a9ac1 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe891a21a drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe89fc44f drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe665bd1d drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6a58360 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7278cc7 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe841a103 drm_vblank_work_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8de7cbb drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9c49aaa drm_warn_on_modeset_not_all_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb194bd4 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed61a792 drm_gem_lru_move_tail_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc14c5f drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee79acb8 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeea4fe0a drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeaf6932 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed0669e drm_privacy_screen_set_sw_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef6e0c2e drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf012e631 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea519256 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb0a04b9 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb6caa38 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb914c57 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec67ea3a drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed2e15e6 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed4a7a8b drm_gem_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee665310 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed972bf drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeff7faac drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0624816 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf08b3c6c drmm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf095dc96 drm_get_tv_mode_from_name EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf14bb1dd devm_drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f60eb0 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f8ca87 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf28518f2 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf388ee99 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf38d40ef drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3aaf553 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31e91d4 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c9dc56 drm_edid_connector_update EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf45d6f9b drm_mode_create_tile_group EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ba7f0f drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf540c9f6 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf54dd309 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf659fff7 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf67d4382 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6870255 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7eb16f6 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8196a58 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a048f7 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf609bbe7 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60deee6 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6445d8d drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf64aaa02 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6b59c7f drm_show_fdinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7b6ca10 drm_crtc_vblank_off EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a5efea drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb48f9cc drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf36e03 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc0e916e drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc745e4d __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc992665 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe199556 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe305560 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf83e9a3b drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf87941c1 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf96dd882 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf98910c7 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa436edc drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa7ba3f drm_edid_connector_add_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfabbad5d drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb1610a0 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc9db99a drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd65117e drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffebe6d2 drm_writeback_connector_init_with_encoder EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy @@ -1018,449 +1018,449 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x9af4e218 drm_fbdev_dma_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x9da3ea13 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xb04c91c4 drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x012d2323 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x045bceb7 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04ebf971 drm_fb_helper_damage_area -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x067adf2d drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0693ace7 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0795cd5e drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07971667 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a05dbee drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb1b13a drm_fb_helper_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e1ff79f drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e253ad2 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e31e20b drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f505223 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10ba5083 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10dde783 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x120a67df drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x2429ab2b drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x2e5f19c6 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xd3dae580 drm_fbdev_dma_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x003a42b2 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x005db688 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00b70f25 drm_fb_helper_damage_area +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x038cd459 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0395a7d0 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04165e0d drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08c21189 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad9cbc4 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0be16552 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d188d88 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0df06150 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e7747d0 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb4a188 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1183f73b drm_atomic_helper_wait_for_vblanks EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13463c5f drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13c86a11 drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13d202f6 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14c9bb53 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x174e484d drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18a764af drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19475b87 drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a4fdeaf drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1adb8f6c drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b347ec0 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b9dc583 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d08438b drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d12c339 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f66c6bf drm_connector_helper_tv_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fea51a3 drm_fb_xrgb8888_to_rgba5551 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x202aeafd drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x130d9822 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19abc818 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ada0906 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af17f5b drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c517989 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e487fd3 drm_fb_xrgb8888_to_rgba5551 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea6ce58 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f76587c devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d0baba drm_fb_memcpy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22c50746 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24ef986f drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x255ee084 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a4265bf drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ba22df4 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c5fab27 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22496b9a __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22613c4c drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22698490 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2311b4a8 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23f02ae8 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24bda09c __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25040677 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29152f15 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a10e774 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b275fac drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b93bc0d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc5e55f drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d39529d drm_atomic_helper_page_flip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fd5c316 drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30106683 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30d67882 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31f90074 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3225c2f9 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33585405 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3373d98b drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33a45b3f drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36e88a26 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37f332b9 drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a8299b drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38b225ea __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39745568 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x398bc55a drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d1b4a63 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4024ad89 drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40381899 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4207b50d drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4398f591 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45ed1059 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46b1c8ea drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46c187ac drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e6ceef drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e6b3df drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4901c223 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fba42ba drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52564955 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54bf7007 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x550c65ce drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e7749cb drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa49f90 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x304a4c48 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32a38bad drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36350bc7 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3677334a drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a3e150 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c425a97 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d993659 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eb709ab drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f0aac5b drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40b995c3 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40d4c4d7 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x426fec73 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4314ffd0 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43e0525c drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43fc3f85 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x442ec723 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x442ef714 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b6ad53f drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc74d54 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d139c06 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x517e6a42 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51f41c5b drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5514e941 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55329019 drm_atomic_helper_calc_timestamping_constants EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x556da21e drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55b28f8b drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5948a95a drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x561cb851 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56397820 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x581c5958 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x584999cd drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5857b79f drm_connector_helper_tv_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59480e54 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5957009e drm_atomic_helper_fake_vblank EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5408a9 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5c3eb4 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bc25c0c drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bfa02b7 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c9686df drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cc1f8de drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ceb9178 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d601b25 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5db808d9 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dbc12ed drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e2e0701 drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fbe2e43 drm_fb_xrgb8888_to_argb8888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x602e8573 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60c130d0 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62cc514b __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62d8f4f0 drm_fb_xrgb8888_to_argb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63396331 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64fecaa1 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6563d42d drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68c6b4cc drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x693f19b4 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69725baf drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dd8a3f9 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f635327 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb41313 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61fb73ad drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6460b8d5 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x663c18f6 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6696d7c3 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x697f986c drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a1e8386 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a33860c drm_atomic_helper_connector_tv_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bbaf1cf drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c94754e drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d2f3dce drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bdeb64a drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d2bff66 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d5b0cab drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dcc1781 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dda6650 drm_gem_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e93d47b drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x704cd859 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71d713e1 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7246f5e7 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7388eae1 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7700f066 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x775704ad drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7762a413 drm_fb_helper_release_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77e6c116 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x789a0c38 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ba53407 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eabdb8a drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eb6477a drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f290670 drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x804d412b drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82098edb drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83049a0f drm_atomic_helper_connector_tv_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea8f1db drm_fb_xrgb8888_to_argb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f716f32 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fb4ba7a drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72cb4b78 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72d05450 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x730b2f61 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x731d3bee __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73461376 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x770c1ec8 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78e8d0cd drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78fbb0e2 drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79ac7915 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79b14272 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a23c629 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bf538dc __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cccb91c drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e6a4707 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80613901 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80d5ecea drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82fcc7ee drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8306ffaa drm_gem_fb_vmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x856236e6 drm_atomic_helper_disable_planes_on_crtc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8755b335 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x884d8ce2 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89213752 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89fe56de drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b16e3f1 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cf4e2f2 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8db533df drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8decbb8e drmm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e278423 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ee24825 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f306eae __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f85ca5f drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x897b9593 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a06e88d drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ae7d207 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dfd87de drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e7acea9 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x913ecdc9 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91f2d6fd drm_fb_helper_output_poll_changed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93266878 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9514743f drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96ee8745 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x971a5c38 drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x990d04cb drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99e71ef6 drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93815c3b drm_kms_helper_poll_reschedule +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9437a2e1 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94c0aff0 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97affb8b drm_helper_connector_dpms EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a113561 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d08858a drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc31c36 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa005d715 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1658ee8 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2726654 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3680e0b drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3871612 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4d1700e drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5221714 drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa70a5c21 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab011a14 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a6fcb02 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a9f9cc5 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aef95e3 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c98c2bf drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d6e3101 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e534333 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f685647 drm_fb_xrgb8888_to_xrgb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1381de4 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3be209e drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa509d124 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa694cd47 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8c1f500 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac743b78 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad7acf80 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae0d1d80 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae223b98 drm_fb_helper_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafd5d76c drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb02cc36e drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb031d37e drm_fb_xrgb8888_to_rgb565 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18264dc drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb425c9f2 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4bd4352 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4d45d38 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb585f8ed drm_gem_simple_kms_begin_shadow_fb_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8495adc drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb91589a1 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9fb98a4 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbab7fccb __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbc08101 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcda2279 drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd174367 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1a6a2fc __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1de1325 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2653983 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8eff28f drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9dd7abc drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbab33a0f drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbad93c12 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb801205 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb95716b drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbce7805e __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdd7f829 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0bb1c6b drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0f54f5d drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1e1d3a1 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc237622e drm_fb_swab EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8ae8541 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8b1d03e drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6955441 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc748427f drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7f4e80f drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc804d10a drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc82d25f6 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8c9d2e9 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcadcdf4d drm_atomic_helper_check_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd3f5969 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd905830 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb326ac2 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd2b12a0 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd94fc72 drm_connector_helper_get_modes_from_ddc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0651aab drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0d50d5e drm_fb_xrgb8888_to_xrgb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd22cdeb4 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd61f14e7 drm_fb_xrgb8888_to_argb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6aaf219 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6e7dc58 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7c1ee84 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd89626aa drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8b53283 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9a4c15b drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda6e98a7 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaefa9af drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd2828e1 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde56f04c drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded9e0b6 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe15b8531 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe38fd665 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe40dc360 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe473ecfe __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4d61ef6 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5f83620 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8232268 drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe87ebb5b __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b3d82b drm_kms_helper_poll_reschedule -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed610f3b drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedb60740 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee4dcb51 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee70750c drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3010b5a drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf40de6f8 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4ffedc9 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf52d49de devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf61f9766 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7c753bd drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7e214bc drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8e6b0a3 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9a510dd devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb6baa3f drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca36bdf drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x070e0668 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0ae0533e mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x36c3c125 mipi_dbi_pipe_reset_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e66db4d mipi_dbi_pipe_end_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4e6adc70 mipi_dbi_pipe_destroy_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5ceaf577 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6340d4e0 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x670aa3cc mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6902ef70 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7e485083 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x832b3fca mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x835a2221 mipi_dbi_pipe_begin_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa9616397 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaee63239 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbe1064fa mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbf06e547 mipi_dbi_pipe_duplicate_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc1db125e mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc60fd150 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd54a98c4 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd71bca19 mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe0d5b8e0 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfc9baa71 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfcc20a7a mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x00a364cb drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x027d6424 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x120dff9d drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2dbd4ec8 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x35efbf36 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x51b87686 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x663cc9e6 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb4e26886 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xba3fa5e2 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf7de73b4 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1213708 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd16b2df4 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd16c8d44 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd194996a drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1e75592 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd29e08cc drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd47bcf56 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd491e773 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd53115f7 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd619f446 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6867127 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd74664ba drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd749f37f drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7c61aaa drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd983ca54 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda3c7482 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb3f40ba drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc5c0cf0 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc911f21 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcbe3177 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe01699a8 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3f558aa drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe429a847 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe648b70a drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb3078a8 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedd35e24 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee29f632 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeead3169 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefe3d7be drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf281906e drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf38222b5 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4969355 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5291f4a drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf60d08c6 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9c745c drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaa22293 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb58779d drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca1cb1a drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffeb41e0 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff93977 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x05f5f6a6 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0c41bcf6 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x22ee5244 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x23697ca4 mipi_dbi_pipe_reset_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x23d4adac mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x36455537 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e0fe36e mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4a9b19c3 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x528a6f27 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5c28cbd9 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaafe71c4 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb155fdb9 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb8654c50 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbc84a0b4 mipi_dbi_pipe_end_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbca3d730 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbf44994e mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc4496a33 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc9e400e6 mipi_dbi_pipe_begin_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xca1a1af4 mipi_dbi_pipe_duplicate_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcde2fde3 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xce0f585b mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe1653a05 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf097d1e0 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x19565472 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x219625e7 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3530ef52 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3cc275f5 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5760ddb6 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xae172d1a drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc58c8840 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd0529178 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd600eeb6 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf6b355f8 drm_gem_shmem_madvise EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x048a510f drm_suballoc_manager_init EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x0bad1988 drm_suballoc_new EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x8debd4c9 drm_suballoc_free EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xcfea1bec drm_suballoc_dump_debug_info EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xdd9c3522 drm_suballoc_manager_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1b33f81c drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x42fa5398 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x60f6b3da drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x905ceb73 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xb9c58e01 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0433f055 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x06493fe9 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x318c07a8 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x34150c0a drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x39da805d drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3b36622a drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4ab20f01 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5fbf0254 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x71832719 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x74aacc99 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x89a60132 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x989b2403 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xccf454db drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe73d69f0 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf81ad765 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfa74dc5c drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xbc2be5d0 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x076f47a8 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x07cdfb3d drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x124f336e to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x198fd8c5 drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d43f4c0 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d5842f0 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2196d647 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2afaee48 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31823750 drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3d2477b4 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x415e4d3d drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x583a5e1a drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5934ac16 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f8b8b48 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7889303b drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7c354748 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x82263290 drm_sched_job_add_syncobj_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8873fdbb drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8f48e139 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaaba778a drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1756b73 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd6386f5d drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe45799d3 drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf2c70446 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf61112f2 drm_sched_entity_error -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfa44f540 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x28e9eb6e sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x4f22d891 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x37345be7 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5f1996c1 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x94dd3eff drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x994da066 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf69f9e61 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3413bf41 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3a7951c2 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x42cac68b drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4602581f drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x522f9e97 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5a6c5f90 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6407ab45 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x82d81952 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x932c474c drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa86a1df3 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb90c356b drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc0a2b069 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xca6b540c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe5277b60 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xed6d6009 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xed8588bc drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xc50bc044 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x05633e41 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06d2fd72 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x08553c6e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ea52d57 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x130ec4e6 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1dcbf395 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x28d7537b drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2d3cfddd drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2dad00b0 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2eb986c0 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2ec5851b drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3e21a6bd drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3e7809f4 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4514120b drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x46e2873b drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4ad1b968 drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4beba438 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a8d0470 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8d73b12c drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9b2cc33f drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3269769 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb0036ea4 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe335c1af drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf767be36 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf967e7d7 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfde24632 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x1787e6f2 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x51118ee9 sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x53c4fddd sun4i_dclk_create EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6fadf66c sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x797c8e98 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa588d98a sun4i_tcon_enable_vblank -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xfc7cd9af sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x1b05ee4d sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x76f53fb6 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x914d57d0 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xd31e6a68 sun4i_lvds_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xb2fa3fd7 sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x004b2843 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c0e6912 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x9cff6b50 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xfb2e4acf sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0002e9f4 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x021ecb08 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0433c9c5 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06616038 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0afe0285 ttm_bo_init_reserved EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x156f51e1 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x167db345 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0de2801e ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x171d5194 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18740c0b ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x187a0903 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a038317 ttm_lru_bulk_move_tail EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ae3cf9b ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bbd253b ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2121b83d ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x256459e2 ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x274b5811 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ff017e0 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30ac0ac7 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32610641 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bc29abf ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d701d7a ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48e4ceaf ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cb0398e ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4eef9c6c ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x518a8c1a ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b43eb09 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b95131e ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60e74520 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62e723a1 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68e749b7 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x210eebdb ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2573b9f7 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x342a5af0 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37acacff ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39d1ad1a ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b635ac6 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40442513 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x460651e5 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x468c547f ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5679119a ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5aac879b ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c68b0b7 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5eb722ca ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6567584d ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x689edb26 ttm_resource_manager_debug EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6dd8b9f6 ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f033f2b ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71f6976f ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x744ab7fe ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78c99d49 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b800667 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bca5ade ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8cc2eb3b ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8da842b6 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94ade850 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97c5307c ttm_pool_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98b2236c ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99937e4e ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a84688c ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9caab672 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e2e7bb1 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f231718 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2678d6e ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2f2caa6 ttm_bo_wait_ctx -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb94a601f ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9966597 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb8616aa ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc725481 ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7905284 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc83c48ab ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8745122 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc96d9930 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc0e67b1 ttm_pool_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd50de96 ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce180504 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf277236 ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd31a2f4c ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd57bdca6 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc7e57b3 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8338f7d ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x04f91773 host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x185531e1 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d9a4926 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x714e9acc ttm_bo_wait_ctx +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7265c55b ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7898c77f ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f0ba6d1 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87ba82c3 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c56eead ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e2d1277 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95a1910d ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95e259ea ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ef0f1df ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa968fb48 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaffeed8d ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb50f38dc ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf4584b3 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc131932d ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1ca125e ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2439958 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3d5f778 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5717a79 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcaaa8a60 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcda7ad44 ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd142403a ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd17af88e ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1d465e7 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd421953e ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf1f102a ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0036cc0 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeaab7cee ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0dca3a3 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf54a2d41 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf670fcaf ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf861ea21 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0978b95c host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0b6cada7 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0e1d46c8 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f2e0c31 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2087a699 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x26e569a8 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x270be582 host1x_driver_unregister EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x27bb468c host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2939870f host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2be24210 host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x36f74ab8 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x40ce6c06 host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x432dc941 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x48db13b3 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4c97cc47 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x50152468 host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x514537bb host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x306d678e host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x30c30a13 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x33e57631 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3c9e15ad host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3d6fe7b5 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3eb2af71 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4be5b90b host1x_syncpt_incr_max EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5a74a8c5 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5ecc752f host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x63754f0e host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6b242579 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x522aacdc host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x54e54745 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5c5f1424 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x67c173fe host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x69c2c211 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x706982ba host1x_syncpt_wait EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x77773674 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x820fc6e6 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x849acd88 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x87320361 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x893ca83a host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x913f522a host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x809f54b2 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8b44403e host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8e51b298 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x91407a99 host1x_bo_pin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9c5ba480 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9d9ee40f host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9df62afa host1x_channel_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9f042942 host1x_fence_cancel -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa02c47dd host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa47efae2 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9fe4f89f host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa061881a host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa727febb host1x_syncpt_get_by_id_noref EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaeb0317f host1x_bo_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb2454bd2 host1x_channel_stop -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbb838576 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa9d77588 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xae6d75e0 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xafb146ef host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb4f6b482 host1x_job_pin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc1e060bf host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc1e9bffd host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc3f9f78b host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc4cb4ed7 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca8e3235 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd1f3c80f host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd24cb24c host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd625b1c6 __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xde15ba56 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe8195525 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xea2816ea host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf5151cfa host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd7d154ae host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd9aef00e host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdc51c370 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdc63e572 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdcbab48a host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe7a9baf8 host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xee8087d2 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xefc4a6da host1x_job_alloc EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xff71ac45 host1x_job_put -EXPORT_SYMBOL drivers/hid/hid 0x7aee93f8 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x17fda92c vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x85760f5b vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbf253d35 vmbus_sendpacket -EXPORT_SYMBOL drivers/hwmon/adt7x10 0xdf290109 adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfb547dfc host1x_device_exit +EXPORT_SYMBOL drivers/hid/hid 0x97a75a7e hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x137f34dc vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x48cd29ad vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x95bbae47 vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x3e48a11c adt7x10_dev_pm_ops EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x9973b029 ltc2947_pm_ops +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x87733168 ltc2947_pm_ops EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xa2186c09 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc097f659 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc1337842 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xdfae13c0 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7a24bfda i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xf0b7de21 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7e255abc amd756_smbus +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xfe0058e1 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x442f0e14 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7f3c9114 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb13024d7 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x898c7a42 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8b7d4885 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x22bd01c3 amd756_smbus EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1470,1022 +1470,1022 @@ EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x62bdc23d iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x63c10946 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x11101ea9 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6c5e1620 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x81fcb650 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x04811363 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x09de63fd iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x0a70912f iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x1480e147 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x1e0f1761 iio_trigger_free +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x8a6c9ae6 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9e249edf iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4245784a iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe33b908c iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xcf3ac938 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x11d3a838 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x1a135c44 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x1afc7ae1 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x1b198936 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x2d668a7f iio_trigger_notify_done EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x36196912 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x476a6957 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x4897a9ce iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x48a3dc75 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x5d0d5217 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x67b2d048 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x69230fd3 iio_trigger_poll_nested -EXPORT_SYMBOL drivers/iio/industrialio 0x72a2bacb iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x9256e3ce iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x96453daf __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xa2b8533a iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xa6be714d iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xb869cc11 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbc5846fa iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x324a6d90 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x359b4bf7 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4413b049 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x58fbfe87 __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x6c6217b1 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x76f6e14c iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x863798fc iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x879ee44e __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x901e8cea iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x94bd4035 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xa2978f64 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xdb069c79 iio_device_alloc EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xeed6fed7 __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf8f78ab0 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xfa2b99ee iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x1a3730e9 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0f87c4ae iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x33622804 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3e51cfd8 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd4064245 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x030f52f7 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x764f219e iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7d0963da iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf42ec815 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x66f2844f iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd997af09 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xca6199e1 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/trigger/stm32-lptimer-trigger 0x9e1d28dc is_stm32_lptim_trigger -EXPORT_SYMBOL drivers/iio/trigger/stm32-timer-trigger 0x9226281e is_stm32_timer_trigger -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2c553dac ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3a4331de ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x452569e9 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x456b5b27 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x680f951f ib_send_cm_rej +EXPORT_SYMBOL drivers/iio/industrialio 0xdff94939 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xe3b48410 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xe3c559b0 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xe62dc858 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xfb0e6739 iio_trigger_poll_nested +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xb65a4e8d iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x11abc155 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1df5719b iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x74449ebf iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xfe188946 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5d952e1b iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc1ce806f iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xe9c323c4 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xfcfedfff iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0091f361 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xc7d2d474 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x27735d65 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/trigger/stm32-lptimer-trigger 0x65fa30d3 is_stm32_lptim_trigger +EXPORT_SYMBOL drivers/iio/trigger/stm32-timer-trigger 0xe9c94322 is_stm32_timer_trigger +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1bbde11b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x241544e5 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x302afcb1 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37e88a14 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x454d7c29 ib_send_cm_sidr_req EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e33fb6d ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73cec0be ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fe8f45c ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d0e4946 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e59602f ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x98a0cc4d ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa428ef44 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xadde55d9 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbaa9e4d3 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcc9cffcb ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x731c33dc ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x74f344e7 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7efdb178 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x902fa580 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa002d53c ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa5fc1b17 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb87c104c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc64b1603 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdde4657d ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xec2630db ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00144bb3 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00ac1353 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00af4b10 ib_unregister_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01d3e14c ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01ff1a94 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0330c501 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03da8034 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0471cf7a ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04e91294 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05315181 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0591cf27 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05b3d9a0 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0664ab02 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x071a1bcd rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0914a7f6 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x094687dc ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x096af5f3 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a776818 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1743a8 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04dc4628 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09b4fd9e rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b91a7d6 rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x103937c8 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12056c0b rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12462498 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1376252f rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14d6110d ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17c06d3e ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18361281 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x198fb2c8 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d8bc15e ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f2066ce ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f2420a0 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14a3d7ec ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16340ddf ib_mr_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a769dc6 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ade907f ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c1aed2f rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d1dd5cb rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e764a66 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x226d7a0e rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b9be141 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x205807ee ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x206e464d ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d52a74 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22e4f5ca ib_set_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x249eac7a ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24d0efa7 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26a92159 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28a9f190 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ccc2a92 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cf97f90 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dee6556 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e6504ad ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f7487cb rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x302d13c8 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2554a670 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25e16b58 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25f46903 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29621f62 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x296d7ca8 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x296f35a3 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b39c715 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d03bc0c rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d44407a ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ef5f182 rdma_find_gid_by_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30c2d069 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x329a1568 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e2ee83 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34049eda ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3601fa2e ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36a90fd0 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x372933ac ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b0d6d2f ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b36b1ac rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b90a277 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c89540f rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9f32dd rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eb174cc ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30bf8342 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31b678c7 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34a85fd7 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x359e1258 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x369c7062 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37027609 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38a4e772 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38e5fa39 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x396ca5a5 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a9cb50f ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c2fd3a3 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f149f3c ib_unregister_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x412c5152 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4175565b rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41763af8 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40457f55 ib_get_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43753283 ib_port_register_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x463b4226 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46737140 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47949297 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x499702cf ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49f5e8c2 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4afed2f6 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d68d50b ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4841bd5e ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48e6c981 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a700b4f rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c8d3cbd ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d0d2278 ib_register_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5568e09f rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51257112 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5310d83a ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54aa4f0a __ib_alloc_cq_any EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56a8ec37 rdma_init_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5797f79d rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x581d8ee6 rdma_restrack_new EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59ee95bc ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ac0eb94 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c597936 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c74ee00 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c857180 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6046f376 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60b8df1f ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x593a0d93 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5aa16b68 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5aab8750 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be46942 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d56ed48 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d5a5906 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60489295 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e42b67 ib_sa_guid_info_rec_query EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x619baad8 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61aac562 rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63122d57 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64d82d24 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x653ac7f9 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x660fd668 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69032f45 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63b0b4c3 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6484711b rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66ed509f ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68396b6e ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69d50105 ib_destroy_cq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c35e885 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d4b1264 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e726ad6 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6db83227 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6eb50525 _ib_alloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f7784db rdma_copy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70c38e6e ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73889315 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7392eddc ib_register_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7443ebaf ib_port_register_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75d1487a rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77499ea1 ibdev_err EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x793345cb ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c864067 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e4ed17b rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fcba986 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80b7c175 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x810efab2 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x865f7f61 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x875225c6 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x890eec77 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89685a68 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89feb6d4 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8af0edce ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b17e4ef rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bdaf9de ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d04c111 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d98f404 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a4b051a ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a4f8574 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a67c00c ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x805dc413 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80787e5f ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x812e086e rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x821a1ace ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x822625c0 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82a1d74b ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85096049 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87ce9c56 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a02749e rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ce70a94 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8decf5ce ib_mr_pool_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92bd02d6 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x932d3878 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93a2f856 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93b77d18 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95be0393 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ddb4ab ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x970b85ee ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ae8e570 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cc47a61 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9df0185d ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eabe38a ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fc1b651 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0d3baa3 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa146da73 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1660b7e ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa35a6a76 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91735c4a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95a27be4 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98191b01 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x984720f9 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98ad1787 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x995a86d6 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b3c768 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99d8f7b6 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a0a0f9a rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a3eace0 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9afaf896 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b67e94c ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bc92ea5 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bfea571 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c283e5d ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e492960 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f4d09a8 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa06de156 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa16dd66a rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2f11cac ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa34b3b57 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3aee81c rdma_get_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6b4dcd7 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa726cd5d ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa795e95e __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9549d08 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa628645 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaad71514 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac0d46d7 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa503c0d3 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa52ba3e3 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa58225f8 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa619c896 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa804440c rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa827c225 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa93db664 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9b2bf0f ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0d6487 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac29ee7c rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac2bb89c ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca11c6f ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacbd9fe3 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae8cf081 ib_device_get_by_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2ca66c2 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d5c43d ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4bb467f ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaea26645 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1967d48 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb23d09cb ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb431d67e ib_get_cached_subnet_prefix EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5d6427c ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb715fa27 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb717eebc ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb72ddd35 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5301c12 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5e3ff9e rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6106cf6 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb64cba1e rdma_move_grh_sgid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9742224 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba9e19cc rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb085480 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbf95816 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc500838 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf281e82 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc01e142f ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc07b87e3 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1e5e7b6 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1e78c7e ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc200bcc4 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5fbc685 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc69a2ce4 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6c43113 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb81df81f ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba95f895 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc6b0dbd ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdfe3d77 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe6cae6f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf1ca0a0 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1293bfc rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1311b74 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc192b7ea ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d3857d ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7ca9cf8 ib_query_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbcd6c19 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccddd431 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce86d00f ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf869ca3 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcffd7779 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8e548c4 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca96e47b ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcabc8b58 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcada0a4a rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb32a648 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc980bf1 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdcc779b ib_destroy_wq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd15d0f15 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd16ae644 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0e6ab5e ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1c67f23 ib_device_set_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd531f0cd ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5a9e976 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd648e7a2 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2640615 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd36b140b ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3a6b7eb rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3b3f3a8 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd535e6c3 rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd709e0ef ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd86d8ffc rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6b20c22 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6dacb84 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6f98562 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd789c4ec rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd984c455 ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaf2cb6e ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb38233e ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc2aa78f ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf7ced36 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfb6c398 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdffad19e ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0129dd9 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe54b6951 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda2d60d2 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda33fd39 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdae88605 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc008830 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcf659a9 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd39e2de rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd510492 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0bc3b5c ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe255c9fe rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4754db8 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe52864af ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8fd1cdd ib_unregister_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb3c119b rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb65eac8 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec974871 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xece53331 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0c72349 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf14752aa ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf15956f8 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2115f2b rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2cea420 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed59640e rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeda73a2b rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede83b7e rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3f4d7c5 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3f94987 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4059b40 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf52b44bd ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5832fa3 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5b2decc ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6888b9c ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf68b65ff rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6cdec46 ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e2c11c ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7ed4ea2 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf893fa1e rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa0a9ff4 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaf61d18 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbabeab4 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd30d176 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdb3fd14 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffc4ce66 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x05f0504c ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0758e46a uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x089032b7 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fdabaad uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ad4a94a uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b6d2a5a ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e82b405 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x353ff4aa ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf711ce75 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7a1f7a3 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa27bc1d ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfab7251a ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd92a38d rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe2504d6 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfedfe7a1 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffe6a01e ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x013cf1af _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0c15863b uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ea38f01 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0fc669b0 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2319c04c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2374105d ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3562e9d8 uverbs_fd_class EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5ecaff93 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61b2ccf1 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65a320b0 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6779a9e5 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a0871ce ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a51d412 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6c47ec4f ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39c56997 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x41c1b488 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x533f4910 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x617de314 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x62a6e5ac ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a067af7 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6aed4606 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x71d0f92a ib_umem_dmabuf_get_pinned EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x79365c03 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b57996c uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d9364a1 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8068b64f uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x821f6d48 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8aeba5de uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9449eb0c _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9db46fb8 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e02c174 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa0b74114 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa1b8c27f ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb840e5c7 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe07c866 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcaeabfc7 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdaf71b2c uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4ed629e flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf72f023b uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfc53e2ad ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4a6d6232 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x609004a3 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa92aff0d iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb17bcb0d iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb5ccb852 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb5ee8d97 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbee393f7 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x75c02162 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8752452c ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x894432a7 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8c64b26c ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8eeae6e7 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94b345d7 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94b90b2f ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9517a84c uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0c4e344 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd22de1e4 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd676ed76 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd79dba3f flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdef5335d uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeb69c09c ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xec4fd2e4 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeea56b39 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf110a3f4 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xffaaf381 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2ba6ef75 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2f7816e2 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9fef0e8e iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa0952c34 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb11dbbe0 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb277012a iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd1ca0d8c iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xda3e8b77 iw_cm_listen EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfde16183 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x040284d4 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0808ccda rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f8fc51d rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2034351d rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26d4b79e rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x306d5bf7 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x360946be rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ef2b9ce rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40b303f3 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x441ae8e2 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c41018b rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e8e61b5 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x516257fb rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x609a6f2f rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67bc12a8 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e9c7143 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72ab1f78 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77215bf1 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7d1bff2e rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c7e4bad rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03ea4038 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04493d4c rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04d486b5 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1883014e rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18de2664 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3059f6a1 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a88bc4d rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65ebb20f rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6744d3cf rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72344b2e rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75625cc3 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77a4baca rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84a20bab rdma_iw_cm_id EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x929869a6 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac754443 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb856ad03 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9b4b6ea rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc2896cfd rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca9099f5 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xccd31244 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3677d30 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe380a1ea rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe6b85374 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe74c446b __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf2948e8e rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc28890d rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd500a7d rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x62949b35 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x75634fba rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x84156820 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa793e949 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb600a805 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcc69a3d7 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfa1c69f1 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x158e357e rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x16f27ae2 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91493f28 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x974ac4b6 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa02f4f05 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0d70290 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa298f66a rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4238a4b rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4f04fd0 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa795f069 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb01cb5b4 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb240700d rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb33dd61d rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb615b5e6 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd4883d4 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1750df3 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0836cf4 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdae37816 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc40aa8e rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc919a2c rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xded9e2be __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3121422 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9915087 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0fb1abbe rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x26b9d913 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x72186761 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xadc4b6f0 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb9f0ca31 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc62990c0 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd2323c66 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x20eebe96 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x33d44cab rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xaa75402f rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x96d9f1d5 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa54a0420 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xab87f79b rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x08870fc8 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x10566519 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2819b2bb rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x78e3a5ef rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x90bcdc72 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x913d6a48 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/input/gameport/gameport 0x1215689a gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2cb794e5 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3303096b gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x61a78164 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x68d03d60 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x6aa704a8 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb830e85f gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe1a12bea gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xe89cf5b1 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x5196a437 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x84093468 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x973adfd8 iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x869cccd0 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0xa125e7b2 ad714x_pm -EXPORT_SYMBOL drivers/input/misc/ad714x 0xb48bc6d9 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x0dea3f5b cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3efc22d1 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3fc4ab3c rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9a20fe4f rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaba01851 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcfd9ac7e rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfd661163 rtrs_srv_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2da65c21 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x37ac1658 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x529b828f gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x761abbda gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9644b2d6 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x98d4e6ec gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa5991177 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc4fa16ac gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9d61f79 gameport_open +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x381fa30f iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xbb40a0df iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xef0b1c0b iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xac01a240 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb680d6e0 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xdc4a5e7f ad714x_pm +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x5b222055 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/rmi4/rmi_core 0x6fc8c890 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x3ca5b623 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x3e3edca8 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5e6fe44d sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x81348143 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9361652e sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7d6add99 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xced181f6 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x42c79365 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xc6502579 qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1d263306 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7f32a497 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xad5f65dc capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd90c004f attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xee17140e detach_capi_ctr +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x240695f5 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x33635b44 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3472aa51 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc75c0fb6 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd9604ab3 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xff2dbfab sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe66792be ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe839fbda ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x41767407 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x4f04b831 qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0af882e9 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x81063f8c capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa46109bb capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa4924b9 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbdd74c62 capi_ctr_down EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4d1e3b42 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9388c644 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x938f5450 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd243cf54 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x13f167af mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3a4f11a2 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9091e462 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xba57d848 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc41b675a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf5cdfbb7 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x496f0bfc mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcab1437c mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0962c035 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0a04190c recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e74d788 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f933b10 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18ab30e4 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ee5aea8 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a8631c3 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26ebcdc3 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x288d3a59 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b1e2aa0 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b52cfec get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3091079f mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37bf1907 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a3833e9 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3c58516d bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3d1b0335 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3eea9f2d mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43f8679c mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4cea3aae queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ede65f2 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x463eaba1 mISDN_register_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 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6843180e recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x77514d7f mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e196f5a mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e4d00a7 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b4d2b27 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x67f98dee get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75d9a66e mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x80aaf685 dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa5521848 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc5dfc3e get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f67f116 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa42c2fa2 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaef90bcd create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0b995e1 mISDN_ctrl_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc645ebad recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcdc493c9 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 0xdafa988f mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2846e6b mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe5b16be0 mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9fafa3e recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdba98bf bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec7a9cbe bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xed9b0047 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb101f8e mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd01d033 mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x79728521 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x8d825667 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xc802cac6 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xdcdd654e cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xb5595189 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe56807ee omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xf9fb71f6 omap_mbox_request_channel +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xf5a173ec ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x9a19b202 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x1ae0909c omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x5d4d09fd omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xd34fee62 omap_mbox_disable_irq EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range -EXPORT_SYMBOL drivers/md/dm-log 0x92fa118c dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xcc345548 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0xd4e93187 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xfdaf2c80 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x12e32ff3 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x24ab494d dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8e6cc83a dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xad8bb084 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xd63a87c5 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xeb597ea6 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/raid456 0x838f2e44 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0xb969995e r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0772001c flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x175f5af7 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x28841aa7 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2cbbc861 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x58bfaae6 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5eca9b1b flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x73f84746 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7403eb3e flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7a05e344 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x85c35bdb flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcea8fd71 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdc00ec05 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xffbc6bfe flexcop_pid_feed_control +EXPORT_SYMBOL drivers/md/dm-log 0x0ab8370d dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x914f0516 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xa9e6c9b2 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xd4598921 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0d21eede dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x31ad4e52 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x84cc369e dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd0856582 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe858b151 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xed42409e dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x8a472dfd raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x9d191bd5 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x171ede2f flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x18a1d697 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x46d34211 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4968d316 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x79c23e74 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb6143f04 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc6f3dd1 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc10ebaa1 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd20773c4 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd2b6bf30 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd7c07065 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe0d9d724 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe46c2900 flexcop_i2c_request EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x4845a1dc cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b5cc43e cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x7aa15cc9 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7a9bac6e cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd8d997cd cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8c332e48 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x935ab8ee cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf548e2c9 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf9b5356b cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x859128c4 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x185176b8 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xb4e1dbc1 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xfa4406f3 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0faf5adf tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x5306012d tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x48380a01 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x8d8da069 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x586e05b8 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x6a5656c9 vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x060ca056 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4aa99a07 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5b4907f9 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x75334c3a vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x77d83910 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9221e781 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x052cd67e vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x08c2ce93 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2fb3440f vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x44832fb3 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4806b374 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7a7f380b vb2_dvb_alloc_frontend EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x1fcc50b8 vb2_querybuf +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x874f2eb4 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02e3b094 dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11dcee28 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17f3d609 dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1fdccac6 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1ff9c684 dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34de666e dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34e87923 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3133a7ea dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x46cc02f8 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x475223fa dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e39093b dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51ef6f60 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4023fcd7 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x428fe5fa dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4a59569d dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4caea4e8 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x515aceee dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a068571 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5902001c dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ebb326e dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x62424967 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x63828fdc dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65bb0af2 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x675a71df dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x777edf63 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e89b574 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x705c85c3 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f3973e2 dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x94bb1ff4 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9592bba5 dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa24dcc8d dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa97d6ce1 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae8f4e9e dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc772968f dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce55f8c9 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdaeb5b95 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf6ef648 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8fb7a08 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdccb94c1 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf74308f dvb_frontend_reinitialise EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe3f65a64 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe9204304 dvb_remove_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf2bb1968 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf9c22436 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xecd4d116 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf465521f dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd7a7b6a dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xffeeaf1a dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x60b18f87 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8abbbbb5 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x96d08e3b au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9bb544ac au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb682b901 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xde778191 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe1b8f641 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xee8514ce au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfb12ec9b au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xbf958b81 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xc1da10d5 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x113211d9 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x223bd6d6 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9742736e dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x98b48265 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x120ad5d8 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x166799f0 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x21ac999e dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2ebff946 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3d7d0c1c dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x490ebc46 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x528d263a dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaabb9b33 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb4f5c916 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc49f919c dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd0e9d56 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xce36432f dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xda109b6e dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x533efc23 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5d192e9f dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8c4fb6c5 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xac9544d6 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdec8639e dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x266754a4 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3f01c95d dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd3491811 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0a5d5971 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1879e529 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x36c543f6 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5b1f554c dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5bc6a93e dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6bf2c637 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x701925f3 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xac90eacd dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd479e31d dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdb63ba35 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe6516edf dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfb5fa02a dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1546926e dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x18389296 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa4a4466f dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc2e63d97 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xff2a1833 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x77f416a2 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb9e7e896 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xdc3a32ca dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xa972c61b lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x8c33df09 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xcf876a7a m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd635fd4e s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3d3127c1 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x72694f94 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x15612f10 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x25ce1f0d flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x298be72a flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x605d1c32 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x80e372d0 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd907ec89 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdefc1a7a flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x67c14ff6 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6d9bef97 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb012bc12 bt878_start +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0cf9d4a2 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x24d97d11 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x274e01fd au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7b25bcba au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x86e0340b au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8cbd2259 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x92f3800d au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa155c46b au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe6678dde au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x3010aa30 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x5a1d8a47 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3c9b1597 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9459c729 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd67f4d75 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xde5be12c dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1b98001f dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2dffdf07 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x375f47ce dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x669fa0d2 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a45c9fb dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6c0e8eb7 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71eb7594 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d50b67e dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa878b016 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbde91c0b dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc058374c dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca83b3a1 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd0c99093 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2b1663c0 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5abf4300 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa367b341 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaf1edb0c dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb8f9580d dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x18a9feba dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x57cb573b dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x91f4699d dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0b813411 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1f7d1448 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x355e9710 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4df2d16a dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x534b3215 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x634592a3 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x74a426fa dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7d54e39a dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x81d0cbd7 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x904aa5fb dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xabc9d18c dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xea481ca5 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x14b4828c dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3d1077fe dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4e8f5fd1 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x776c8fd0 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc733496c dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x199ca3ab dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb25287c3 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xba540601 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x1418212f lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x16b76edc lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x69f54acd m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4df267dc s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x519962d5 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xaf689ad3 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x01893873 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0691c506 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbd19bf6d flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc533d09e flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd792577d flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xda1858c7 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe0e9a586 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x54d4fd70 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x73dc658a bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x8941d3f8 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfed46f4a bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe092b3ff bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x007588f5 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9261976e bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9a00bb30 bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe2747dbb bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf5154e71 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x00c6a0b0 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1401e5fa rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x314313e2 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xde75807a bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x12486e1f read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x37adb8f3 write_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4f4a652d dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x66fea1da dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7f43ec0d dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaaf71ed8 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf0458fd9 write_dst -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x298da564 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4d1d8ea5 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x63c4575a dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6d6ebdba dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa89229bf dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf354b2df dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf8469645 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0c405b7c cx18_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xae0cdd7d cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb87209e0 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe3b133d2 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfb4adb3f cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa173a1c6 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa492d9db cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbbb82a58 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe1f85ce2 cx18_ext_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc 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 0x0de12772 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1cbd9b37 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x00a5b54b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x07904adf cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x27e3b653 cx25821_sram_channel_dump_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x522ba8f1 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5eb751c3 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x707db9b4 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9787f3e4 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6213efd1 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x63b2cbe1 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x85ea07a4 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdd41aa43 cx25821_dev_unregister EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf8e4427a cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9645374c vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd1b64ad4 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0ade64a4 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9421b11f cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xaa268788 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xaaf07a97 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x36d9c2bf cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x85a0e80f cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x919dc806 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa9a25c57 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xced60155 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xed3333cf cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf12b3d2a cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0fc0b3e7 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25c8c972 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x292c8891 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d43759d cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2f01bb64 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4a9808d1 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7a9a061c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd89c654f vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x16e68612 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3dd38ee9 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xbc015b54 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xd8201396 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x27ae1889 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4588a4fb cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x736e5374 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7b63f5d4 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x880dc17e cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9c45317e cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbb40ce5b cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x13ad4b1c cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1b69f9a9 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e7f4d95 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x21c20f95 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x263508d0 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x295215a8 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x29a87f9b cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x368a163e cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3885cae4 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5080fda5 cx88_risc_buffer EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x686cdeba cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x70c34790 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7232bd15 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86dbe2a8 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7b300999 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x82673714 cx88_core_irq EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x96c8489d cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x96f236b1 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x98af8d14 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9c5a3ebd cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9c8bc2d5 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6ca74b1 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd47f57b0 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd9c94114 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdaa31c9a cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeeef0843 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x10f555f2 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa2b94818 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xab980315 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcac67966 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc982e6e cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd32c5636 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd44cd241 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe2a5e3c9 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe4a24480 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0388e19e ivtv_firmware_check EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x15e18613 ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2094b3b6 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x29d69b23 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x34a87986 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b89ba21 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ed89a8d ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5c9a417f ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5cc84781 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6c410536 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x77daaca7 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a14c643 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x862297f1 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbcf33ce7 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd1f488fb ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe1c94e90 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf44f936a ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x021f3176 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1cc49fe8 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3bfabfff ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3e9588b2 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x408d06aa ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x455d8739 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x53963622 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8e3c8519 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8e4b053b ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c97d5b0 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaa5e57a3 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb01d1ba7 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb37a0d7f ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb3b87a5c ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb89e9ccd ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xea3ea45d ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xea47b8b7 ivtv_release_stream EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x073159ff saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x10a753b1 saa7134_set_gpio EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x17b02c88 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1e6e90e5 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2dc18db6 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x386fd816 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4168271a saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2dd8fdc2 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4075d6f1 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x432fbe7b saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5e18b14b saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x685c7892 saa7134_dmasound_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8231137e saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8c1efe81 saa7134_set_gpio EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba1ed74b saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd84fa009 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9b99f07a saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9bd53d3c saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb7da74d2 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf0119ccd saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfa29cda1 saa7134_set_dmabits EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0a82c98b snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x2dcb5c85 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x46b637d7 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5ea37530 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6a544e0c snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x7f7252f5 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x857fd43a snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x174c782f snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2a1d4371 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x34a57fe9 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5125bdb3 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x652e7cdc snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x88c98763 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe0d03540 snd_tea575x_s_hw_freq_seek EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x65fbb508 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xba2b7425 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf37c36b8 ir_raw_handler_register -EXPORT_SYMBOL drivers/media/rc/rc-core 0xfb90ceed ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x28c432f0 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2d82542f fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xbcdabc7d fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xedc06c2a fc0013_rc_cal_add EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x07c68af9 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x22a0f3ba cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2e496859 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6b71026d dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6cea735e dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9276138c dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x93b7ba20 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb1ba8fc4 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb6f13d06 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdc6153ac dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe2412c10 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x30ac3f6e dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6d5dea2a dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x836d39f5 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x87531ec6 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x83ff69a5 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xabfbb404 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1eef2e3c dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x26f84dd9 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2fdb94ca dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6d3fba78 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7087c9ef dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa247607c dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa42c32e3 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe04183f0 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe832a3d5 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x254027b7 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x48e7eca0 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x53c33899 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7a6199e4 dvb_usb_generic_write EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc706ae73 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe15e186d dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x21ae4cd6 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9cf1eb17 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb63b93c3 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x07e60709 af9005_rc_decode EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb 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 0x034b010e dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x204046a5 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x75e202b0 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0670ddee dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a855722 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x66a3f1e4 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x925000d1 dibusb_rc_query EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9976811f dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaa9d16a0 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbf4b6ea4 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd10015a0 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd34ac67a dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd4584656 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x2fd04ac7 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x475ad801 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7eac3eb3 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf557f3c3 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x020ecb13 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x10b8dc5a go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7e9b0761 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x99d9f62b go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3d3fd60 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaec3e37b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc77cde40 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcee873f7 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xda0bd4a6 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2076f5f2 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x29756da6 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4b3a3693 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5196a81b gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x59b28c10 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9faf1026 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb19ebc8b dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb37c6ddd dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcb041695 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd4a440ed dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x6293e92d dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xde705f2d dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x355d95ab em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x91d5a096 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0597d895 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x689df56b go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6c4968ab go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6dcd37eb go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6ed927f7 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x980cd3ef go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9fb612a6 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3bea558 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa4d566e5 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x08dea87c gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0a17c33e gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x19d852ac gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4799f494 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x536e66dc gspca_expo_autogain EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xafdbaed3 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcea6d285 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xda430884 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x9fb5be37 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xb472bffd ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7d86e6e1 v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xa8c77e6d v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb2e18fb6 v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb31e79a6 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb6d6ec3e v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xebdd204a v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb95ebf2e gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbf9ae402 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xee5264f6 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xcd257fb7 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xe6e27e7d ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x198bbfc0 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3ce7dec8 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4fc7d7b1 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x862b70ed v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8bdf3bf6 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xcc4f3f16 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x29947b7e 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 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7a6b980c v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa0b073a5 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcd8ca234 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf12c146f v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6e7e7dc2 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9141f5bf v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb074fd67 v4l2_m2m_mmap EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01ed38fe v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x035d492e v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0550b38f video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x020c4fba v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03fc22a7 v4l2_ctrl_new_int_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06edafc2 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07829388 v4l2_ctrl_activate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a389d66 v4l2_ctrl_type_op_equal -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e93b90e __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10bf7ea0 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082da276 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08d95683 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0acab33d v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b004e51 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c77162a v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0cc80d7a v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ea106b2 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f26fdec v4l2_ctrl_type_op_validate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12dad952 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13cccfe8 __v4l2_ctrl_s_ctrl_string EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x175b496b v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f51aa35 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2329797a video_device_release EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x249370c9 v4l2_ctrl_type_op_log -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28bee9b3 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2a2f54a9 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dfd77d3 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2fa1ea66 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30f21f0d v4l2_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x356f2ca3 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35a7f771 v4l2_ctrl_subdev_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ff98bf v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x389ae7f5 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3991d57b v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x399d2cf4 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3a6903d1 v4l2_subdev_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b86cd9a v4l2_ctrl_fill EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3faf063b video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x406b765a v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x41eb84f7 __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4300827f video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4595adfe v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ae6fe95 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5eef0bd0 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ef74bda v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x607fa478 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6363d3a0 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68c0c94b v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b54144b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cf42be8 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7621ba0f v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79469c55 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ebc02e5 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54d2acae v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57044408 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5879f509 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64c7b217 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x659ff3e2 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x664e8b05 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6aebe2fc v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70abfaa6 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a33f55d __v4l2_ctrl_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x820a670a v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86c771fd video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86e35ec6 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88544185 v4l2_ctrl_type_op_log EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97087f50 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99624add __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d277d10 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e9759bc v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa35eac1b v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa99cfe40 v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0694fd1 v4l2_ctrl_type_op_validate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2340266 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb33eadcf v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb473f6c0 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c043a3d v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ff54377 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x924ac1d0 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94ca3341 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x968e6e8c video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97fd7fcf v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c796f33 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d099d5f v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9eeed27a v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2e24fb2 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa341c19b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabf11496 v4l2_ctrl_request_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbe91f76 v4l2_ctrl_sub_ev_ops EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1ab9d73 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc352726d v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc88cfe85 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb957f59 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd4b0a40 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd510fed v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbddff307 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6b693a1 __v4l2_ctrl_modify_range EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd050d6fc __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdc0d388 v4l2_ctrl_handler_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd86820b4 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdcfc8e0e v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf69d363 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd3bebe7 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde44009e __v4l2_ctrl_s_ctrl_int64 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5d89455 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe62bbf6f __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea159355 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf19e66cd v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4f971a4 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe889d647 video_unregister_device EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa13475c __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa47b4f2 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcd4550b __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x24d80164 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x719fcc64 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xad119415 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xba0a03e7 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xdda90504 rpcif_manual_xfer +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf8cc272e video_device_release_empty +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x03ac1e93 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x4a7afdf7 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x819a65f7 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x846a7baa rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xe3d96c2c rpcif_prepare +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0d319c45 memstick_unregister_driver EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x200912bd memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1ff5ea34 memstick_remove_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x29498eab memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2b3b90b3 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x57ddd621 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5de4a14b memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x889ae323 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x946f36c6 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x997d06d7 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xadfd14bb memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb5bc6cf6 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcba200e8 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd334da8d memstick_alloc_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00593a41 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1224d6fa mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12f3519f mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x188860c3 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x215281d2 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3bd50137 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x412fa5b9 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x466356b1 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48510274 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a92756a mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ad7cb75 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c10fa96 mpt_attach +EXPORT_SYMBOL drivers/memstick/core/memstick 0x367f1b69 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3e1b893d memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a5bc340 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x85eebc5c memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d08a750 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x99261fe4 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb46fff43 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdb1a9932 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe12cb8dd memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xecca5733 memstick_register_driver +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x103afc78 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10d99090 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17f86589 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1b302f3e mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d4a1070 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f6765cc mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2582e91a mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32bf05aa mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3bd2fe96 mpt_get_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55bebccb mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57a15905 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a195f87 mpt_findImVolumes EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x649670c8 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68b2c8f4 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a7b39e8 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66c31534 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d04c006 mpt_set_taskmgmt_in_progress_flag EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d60f41b mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b6acd32 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x919ca595 mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93f86ff3 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x89c639c7 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9424fdb0 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9631e2ae mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc03e1ac8 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d77d8dc mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9de7111c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa48b1960 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae90b24b mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7b183e7 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc891a81 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb422c68 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc3916ea mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd04c9e70 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0b9baad mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1e28f59 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd80c74fa mpt_detach EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdfdc5c1f mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe5c2ddde mpt_GetIocState EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9fc1543 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf276e029 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4368133 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa1a2975 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe382aa3 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10f9dfc0 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13159386 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1486d5b0 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x14b7c51b mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x15d2b3fd mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1c2717b3 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ef8bd72 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x460af733 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50213224 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66a05ec1 mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x710d8283 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7130a5e2 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8403d8df mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa96656c7 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc79485fe mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc95fe7dd mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca7b17ce mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcdd562ba mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdb58f297 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdcc82932 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde350872 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8f660fe mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeac51475 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef219f32 mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf540f79e mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6a9de50 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfac3c976 mptscsih_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x1118c5c2 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x52b1168b axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x56d8bc59 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x65105c5b dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xa9a449c9 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xfdd33347 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19b8336e mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3722f93f mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4428d777 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x758557e5 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8748ea0a mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bfc1c16 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa8791a47 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcbe592a3 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xefd785b4 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfc076034 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfc12211c mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x2b68461d qcom_pmic_get +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb1da5e3 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfc0c78d0 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x038e1397 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x045c0cd6 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b2740be mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1e2e462c mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3386b113 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x386ee607 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e3adaae mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ef5542e mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5625fe0b mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5803d9fd mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5b77c5b8 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c1afbc3 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d8897d6 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d8df062 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fab4f1c mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x837c4ae3 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8df47eb9 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7624842 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae924fc7 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb32fb843 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb88d0720 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5cd3ae7 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1f6ef8a mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddfdf53a mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xebb01c36 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xebc18c35 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6eb4b17 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/mfd/axp20x 0x4d5c5915 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x73724c0d axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xee41062a axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x74eff47a dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8b8a40ee dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xc78e5b9d dln2_transfer +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x09257c19 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b378583 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1c994cc7 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2480b421 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x51495a4a mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5629bfa1 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x632aac73 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x92b6aa98 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa9fa8574 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb79d3b5e mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xec7446f1 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x0add81a2 qcom_pmic_get EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd520f912 qcom_rpm_write EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 @@ -2495,218 +2495,218 @@ 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 0x0f9d77fd wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x13864046 wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x21bcfbdf wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x419605af wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x7cc4cf39 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x8ce4426b wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9a6e03f4 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc1c5baf0 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x0d0addc6 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x252fbfc5 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x90b4314c wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9268dfeb wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xa0526472 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xc5d20c05 wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x1d9399b8 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x66cb0d94 ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x7550a62c c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xd1ea6241 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x26b066b3 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x81a82563 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0210adb1 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x04d6b432 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x0f129c1a tifm_unregister_driver EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x26481471 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x2a6eedbb tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x3c186c21 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x55a012f1 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x7162ac12 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x75245b46 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa5a1344d tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xa849eba6 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xaf29f18f tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xb435b8b1 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xd6fbc813 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xfe2eb3cf tifm_free_device -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x676f4826 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x80197800 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x8b86a6b2 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc3264adb cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe5ea53ba cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x09e48d5c dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x574fea57 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5cc6a75e dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x98cb4575 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x096b5c19 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x294e6941 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x062ebe2a cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1cf3b853 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x22359b0c cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4ac0d31f cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x703efa0b cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x81de35e5 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe2fe54ba cfi_build_cmd_addr +EXPORT_SYMBOL drivers/misc/tifm_core 0x105e81e9 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x10b67b4d tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x4d20ac2b tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6c87422b tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x70f69dda tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x832b8597 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xb3c28fbc tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xba939e4e tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xd138a357 tifm_has_ms_pif +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x015ed789 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2355fe22 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6b8f968b cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x9e92c0af cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf48190ef cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x247d127d dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x6e74faca dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x81f3f2f6 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xdec02c33 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x0dd3eadd mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x3adeef97 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0e73cd04 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3c5f1414 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4abe6b26 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x76a4dccc cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x785d3d13 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x80faa391 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8e7119b5 cfi_read_pri EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1384e698 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x21e7f8f2 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x27953974 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2d866ff7 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x8fc24235 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x8f5b1520 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x5b86d4c1 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xa058d823 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0xcd65b1f0 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1a458ba3 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x31b248b0 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbfd29404 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xd71e90c1 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2683df27 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xb7192f48 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xfc4b385a simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x87803a56 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xdf0d7d55 mtd_concat_destroy EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x64cef07d of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength -EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xdb0921e6 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x02ee8d29 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x07c9b47e of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x10ffe00a nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x16f42506 nand_ecc_register_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2f90bfd3 nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x37173882 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4e99d2e2 nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x55528aba nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x61e82f31 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x644c6c2e nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6686dda1 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x69713620 nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6f897bbc nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x740d4f55 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9ed3e477 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc2f23fc8 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcc5bdc7d nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcdf6da70 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe4a5d2c7 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2c7683eb nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2fd0d3cf nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3433ddae of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3958a8fe nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3ad22d9b nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3ec89b3c nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x41eda4da nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x44da4f6b nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a88996d nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5436b8c5 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7c83dccb nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82a89ad4 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb1f6e318 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcab835a2 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd3567457 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdebf4f36 nand_ecc_sw_bch_cleanup_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeed9e21b nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfa3af4d8 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeaf10c84 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf1ad544d nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf328ae6f nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfacef1dd nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfe3e6ed9 nand_ecc_cleanup_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff7d563c nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x78d50b7c onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xd3f3b60c flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff652f5e nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x6b8df647 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xefd85e6e onenand_addr EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x42191d91 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x87a40209 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5755271a rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6c5c1c35 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7c977522 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7cbb580d nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x829c8ee6 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x84037481 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x880fc8f9 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8d5298ff rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x4f00386c denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe9735b95 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x01eb0d9c rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3277fa2c rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3478d0e3 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4e4512d3 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5e529bb3 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5fcff4cc rawnand_sw_bch_correct EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x935940aa rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9402535c rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb23208a4 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb8a24608 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc2a557b6 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcd3089da nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdf23d2d1 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe4cf7f71 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf9dbd554 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x4aa3226a elm_decode_bch_error_page -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x9375f522 elm_config -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29e892c4 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x32c7a857 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x468722d9 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x55bf516f arc_proto_map +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa057dc58 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa41ac267 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc4245963 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xca16a112 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xca16d33b nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd53ab7dc rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd674c431 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdb3e64c3 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdbd22288 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdc482782 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xeb260171 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x15216461 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xe554799d elm_config +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0555c215 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x06fbd5d6 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1d500920 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4ff37eb3 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x512d1440 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x550cbbcd arc_proto_map EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x678329b3 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x68eaa199 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x71959df6 arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x90ce3a54 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8ec2de2 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4e1aef4 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x74a4a81a arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8819687 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc6d3eaed arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc95b7402 arcnet_unregister_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xff386ae9 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x51291f24 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6f9d9b68 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd709440a com20020_found -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x3a5b31f8 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xbd2b1498 ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf793445b ctucan_resume -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x5467216b can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xf3967b75 can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2161d1fe b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25d182ad b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27fb9670 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x286d428e b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f272cf4 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x338d4f2d b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3739e680 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3ae39609 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b1ad894 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4aaae5e5 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52d5eab9 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x599e0f07 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x59ce3a65 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c3a8c08 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65ced3a8 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x66380aa5 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69dece89 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x79115146 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7cf97bd7 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7f519c70 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80ed4951 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8381eafe b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8608aa57 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9348bba7 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa341677e b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa887cf91 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1e528f0 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb5ed68b1 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc2f1a8ff b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcf5cf981 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd02af369 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdac51e59 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde18b1a6 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe125714a b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef140152 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef23c73a b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd2b2dab b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfdc33fb6 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x35df6f07 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5640c104 b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x928072d6 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdaa5cb63 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x62a31482 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x74b92b6c lan9303_shutdown +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf841e239 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x04082253 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc62dfa96 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd7f6bd0d com20020_check +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x0073d03d ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x4532bb87 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x992e30e7 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x3a31bb48 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xb0a798e8 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16a47005 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b031cbb b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2031e9b0 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x27657706 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d764144 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30d84ca8 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3440fa81 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3dee1a40 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43117f1e b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x45f522f9 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x471ce1a2 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e93e2b1 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f3a97ef b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5050fe56 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53cd96c9 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5920f26e b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a013823 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6d605758 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7072ee0b b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7966daad b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7a658ae6 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d62a38b b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e725247 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94007c47 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x954d8c07 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9799771f b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97fa9962 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa36b5b0b b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb766eee8 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc470afdd b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5074f3e b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd04d4246 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdadd94c2 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1523841 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2239afb b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2fb70a0 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe7803e3 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff06070a b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0f62d4bf b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x28f63268 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb0c8bacb b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd187ffef b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x22dc6ebf lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x81509eeb lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xcbbd5881 lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x1b2234fc ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x67882e56 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xaa1d8b76 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2586bc81 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x427453ef vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf0c354e4 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x201aa8ee ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x815ae658 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xac7649a2 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0bd3935b vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x358f7b92 vsc73xx_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf24f4a4a vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x515fa900 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfc05e21f vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1728487e xrs700x_switch_shutdown EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xad0f51a8 xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xba5211b9 xrs700x_switch_register -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc48204db xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe5c026f2 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0f4a5478 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1161ee98 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd2b70022 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf58fbe42 xrs700x_switch_remove EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x245f7080 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3050f0cf ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x32a5cf3e ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9c9a9f0d ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc3d6a97f ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd5217da1 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe18f0007 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xee88ba12 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x46c5895b ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x658b0db4 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x74ac682b ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x86874b1f ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8c9258a5 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa2966d7b ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc31941c0 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xce85f9b8 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd76a86d9 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeecb6715 ei_set_multicast_list EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x08d93c28 bnxt_register_async_events -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x6f0a1a49 bnxt_unregister_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xc3eaf0a4 bnxt_send_msg -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xdec0fe1b bnxt_register_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x61f01d98 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x0c532724 bnxt_register_async_events +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x24381744 bnxt_register_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x5d8bb719 bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xed29fad7 bnxt_unregister_dev EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x19cc0a87 cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x81f99a16 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xaaf5cc26 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x2181ddaa cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x9b7c8b27 cavium_ptp_get EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count @@ -2724,395 +2724,394 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x12903828 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2187ba91 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x34655bbf cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36e81ecd cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6126f027 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x768bb6fc dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99e208e9 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca34551b t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf7e33eb cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd974d049 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdbca09d6 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdc9776ad t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe20a0597 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe30ba884 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3b4df4b cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe7fe52b4 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0291db82 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03b96556 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c970524 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x02f0b48c cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0580258b cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4eb3f69d cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5e3a39e7 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6295368b cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x63a8862b dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67883ff2 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6bf8f401 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6f964692 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70d18a3d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7f24eb9e cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x81816880 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x95e01963 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb0f44c7d t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb9408a79 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb831e36 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x07945ef3 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x07a8a3d6 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x08e2dfeb cxgb4_get_tcp_stats EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2d747636 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3812c646 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3fedb8b2 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x410763c4 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4db6d148 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1176b285 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13cff78e cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f6a3a2c cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x282d38e1 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29b8dff8 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2b5ca09a cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3279f5cf cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x368f5ea3 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3983f71d cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d74dd50 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e98f58f cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40388f0c cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45766933 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x464a1872 cxgb4_free_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65fcc080 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f8e7af7 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b675e05 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7db2e0b1 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x82ed14ea cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x84c11045 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x864e001a cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8e409c43 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x938503ab cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94ddc7e0 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97145352 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c4ea95c cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7434cd1 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58589b5e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63d9bae3 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73dd17e7 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87ab29f2 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87ce4bb7 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x894968f1 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d0b8197 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1cd79f3 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa583dc35 cxgb4_port_idx EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab557b39 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae7ab675 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb122ada5 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5f53a36 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb99d16a cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc11aac74 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6a7903a cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9083fee cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcbef89a8 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdb4cb58 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd32490d1 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa8902d3 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab2e3eee cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6a3a96a cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba6ef5bb cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe0c1a82 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf20f06e cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5134d2f cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc69d08a6 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca1c682a t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd0993e40 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4242836 cxgb4_create_server6 EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd87f34fb cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8e20240 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda7913f6 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe10b89b7 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe41a5286 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5a43581 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe71ab650 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea370c80 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec40e597 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeec9d21b cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0449997 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2adcc06 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfad69096 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdd212f0 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdc129fa8 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0b3ffec cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5e9ad71 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec5fe907 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecdf0a4b cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee999fc5 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3c8526e cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf75f24b7 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfccf8680 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x16609512 cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1c2eeef7 cxgbi_ppm_make_ppod_hdr EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4117ef61 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4926e953 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7ff48b04 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcc1b1bb5 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcd111edc cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xddb420f4 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4205ba8a enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x920e5900 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc74c7910 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcff48c97 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd05f1a28 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xedd5872c vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x418d8d3a cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x486a3119 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8c3bcb17 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa85b2eac cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaad9d9c0 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe09c8584 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x086ae378 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x27ded4c5 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7d0224ac vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb4a059e7 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe9d1782a vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfc15df82 enic_api_devcmd_proxy_by_index EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5d8c2788 be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x9aca9bc6 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x9b94e583 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb524ba42 be_roce_register_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xa0292ce8 dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xbb66b39a enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x3344af24 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x50911255 fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x6ae39fe8 fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xeb97983f fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2f83c9e7 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5d16afa6 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7d09b713 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa5634c37 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb097398e hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x76418f0d dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x306cafa5 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x4421763c fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5a344326 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5d8b4a02 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xa4f78b08 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3c942284 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x70035155 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x79c7ee97 hnae_get_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdda2629e hnae_put_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x0878e0ff hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3b0f28e7 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x449abb37 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4ac145db hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xbcd377bb hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc0cf46f2 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xce94b81e hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xea717a71 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xfb8c9a28 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x5cffe207 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xa42c1e55 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf5ec521c hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x343e417f hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x03d3b43d hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0f7d7419 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x22268016 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5fa6822e hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x842f7a5d hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc95675dd hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf75c4a03 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf9af7865 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x5238e8c4 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xebf73a19 iavf_register_client EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x246d2a35 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0e4177bf __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x15ca475d otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1d07c6ad otx2_mbox_check_rsp_msgs EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x24ec38de __tracepoint_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x317fee23 otx2_mbox_reset EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3a065733 otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x47feaf4c __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3b4c2c57 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3d055d10 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3d8ed8cb otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x42a784e0 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4cac3963 otx2_mbox_destroy EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6502f31f __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6541b48c otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6f8e5bfd otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x79580b4e __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8d332bf2 otx2_mbox_busy_poll_for_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x94e3e7fd otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x95ec61dd otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x96d6f2e1 __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x97530252 otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9d8feeb5 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa98606ee otx2_mbox_nonempty -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaac1fef8 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9d51bb73 otx2_mbox_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc619ea5d __tracepoint_otx2_msg_process EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc704095c __tracepoint_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xca804f29 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcc1fd7ff __traceiter_otx2_msg_alloc EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe8eb9020 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xebb47fef otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xed45728a __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0038ba24 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x067198f6 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x139153c9 otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1a5a7611 otx2_select_queue -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1d4c418f otx2_txschq_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x253c877a otx2_init_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2ae4577b otx2_config_pause_frm -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x30c23b0b mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3540151e otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3b85b29d mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5b783f9e otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5e240066 otx2_ioctl -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6c5838a9 otx2_handle_ntuple_tc_features -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x72aafb8a otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7fa97c3b otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd2c91428 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd49ba2a5 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0675b5a0 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x06d7886e otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0eb3adc3 otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0edd51f0 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x10dc0b5f mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x15bcaaea otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x166b255f otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x224ce3b6 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2588aa50 otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x26c28435 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x30f08bba otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x31da7511 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3c27b672 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x40622930 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4a17e4fb otx2_txschq_free_one +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6174c39f otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6bfb54d4 otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6fb5f563 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7c5c0401 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x83ffb0c1 otx2_tx_timeout EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84e15aec otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8a5069d7 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8c38772e otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9a2c954c mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa2585b00 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa466edc5 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa5f4117b otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xadaff1b8 otx2_mbox_up_handler_mcs_intr_notify -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb39339f2 otx2_config_hwtstamp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xba241a9d otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbd1b68a1 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc14a54bb otx2_nix_config_bp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc4324179 otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdc7ee971 otx2_txschq_free_one -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdd341fc7 otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdd8042e9 otx2_shutdown_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe7e2e70c otx2_setup_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf68b98e8 otx2_smq_flush -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf8711418 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf9d5bb6c otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xff1dbfff mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x227cdbcf prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xba7db46b prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0959acbc mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13635f42 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x177be207 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db6b1c8 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3107e963 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39c39ee4 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45743317 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4917f1d7 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c4e6558 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ca10d61 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a5cd410 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65d3a6a7 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69ac480d mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71316c49 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fda44eb mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x890f7bb0 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x92320171 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb5700f4c otx2_select_queue +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc634edd8 otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd05fbe36 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd15ca17a otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd24d7229 otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd5055089 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd785085f otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeec52f7a otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xefac2d51 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf9874afa mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfaa3be80 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfeeee1bf otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xff29beec otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x0fc91b1e prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x8c39a1a9 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01636645 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x018e9de1 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02709118 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x050b55cb mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09650b68 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x099760a6 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cfb00ff mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fda1bfd set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a5dfd9d mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bccafd1 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c585c12 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cc2ffa7 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x327c4dbe mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43033fe7 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43bb6bbc mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4613f5ef mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x481a43ff mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dbfeb80 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56338b15 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56f666c0 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ca890ac mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e374e87 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x743755fc mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77e349f4 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x790101ce mlx4_get_slave_node_guid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85b4b755 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x864f0b97 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f1bf001 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x945d8305 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x950eade9 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e55aabb mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a4a463 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa75123bc mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c395b0 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadb71d38 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb04a3e04 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb40473a6 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7ec93ad mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcd1cbc8 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb14472 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc68a61db mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcac91e8b mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd10bd86 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd185eab8 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3dbda88 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9a437d6 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdacc8ee5 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb3e38eb mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcb7c5cd mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddd48443 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde5566af mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1518ced mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf00bb8bf mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc324776 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x049a18e7 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05bdc32d mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x061d9a9f mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x075b4dce mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0765c53c mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x977000dd get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99ec29e3 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a92027a mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9be5bf55 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e113fe3 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadad600c mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6a96a3e mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b2bb49 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd4b2d67 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1193cb0 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc40ee933 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaa50548 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcd30808 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde704ca9 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe90c0bc7 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeab9d039 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed358809 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf79f76eb mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7d00960 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02a7fc1b mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02bf7eca mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04c10821 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05b17819 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x060268cf mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07751909 mlx5_lag_get_num_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089f1089 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b7b510c mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b9bdde8 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c86f772 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fe42bdd mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fff3af6 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x104ea19f mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c551168 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc52ec2 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d04cbed mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dfb84d7 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e5fcf7a mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f1c1ac5 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ffa72f8 mlx5_rdma_rn_get_params EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12135c1c __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x130ffbfa mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x181876d2 mlx5_core_uplink_netdev_event_replay -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a7d5f1a mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a8746b4 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bf43460 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13518f61 mlx5_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1456c99d mlx5_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x164b56cb mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16f616e6 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x175826d2 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1968da15 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a105980 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b831e3e mlx5_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f193aac mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d5bcdbd mlx5_core_attach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x200269a7 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2062fa56 mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x215547c6 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x216e1e4c mlx5_create_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x252fa885 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a20d596 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ceab6cd mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dec8cd8 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f4f1e4a mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27f0ca97 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29e203cc mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a5e4ac5 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f4ae922 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fed234a mlx5_lag_get_roce_netdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x351858ba mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x364bd18b mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x383cbc2c mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x393358c7 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x396c8cf1 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39c0bec3 mlx5_lag_get_next_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a36088a mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a5772c0 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d2877eb mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d5964e3 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f395952 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fa1942b mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40452ea2 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40b7846c mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35438fb6 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x379d51e2 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38c15e19 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b944a61 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b99dc6c mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ba0f2f4 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f766aa mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42c754d1 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4430bccb mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b52e00 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4810e0f6 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x482e0074 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49633c95 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4968b438 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4975054d mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c0ad8c2 mlx5_msix_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4738758a mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a6e0d13 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c242f11 mlx5_fc_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d62e046 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d956e20 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d9f0e80 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f40103e mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5013bbcf __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50fafc1f mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x518d1615 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x504158b7 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5140b6cd mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x544cb96c mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x567e46dd mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x571218e1 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59d9d284 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a5b760d mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57bd0c20 mlx5_msix_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ac61c22 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5de9fa mlx5_alloc_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cb1f1f1 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60392b13 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5caaea6b mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d98b533 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de230bf mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fa7a03f mlx5_eq_create_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63e3371c mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66002d9f mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x670b5ae1 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x673f1620 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a46b92e mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6add0095 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6beef52e mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x619a28d4 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x647f2196 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6603103c mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67ad0fae mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x684592ae mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x685bdbb6 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69413b37 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c3d1533 mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd5a182 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d21db82 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f05da76 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f78f599 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7076fcf8 mlx5_core_create_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73fc1d8e __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x777c12fa mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79574051 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a567705 mlx5_core_create_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b3eeeef mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b5066fc mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d73421e mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d7e03da mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e17d4da mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81f8fd02 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83c5f325 mlx5_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841f855b mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8488c84f mlx5_msix_free -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8560d749 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x864645dc mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bcbe227 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bf70f99 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dcf7151 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84e7f3c0 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85cbab75 mlx5_query_ib_port_oper EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e68171 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87f233fe mlx5_fc_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bdb4d60 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec56ecc mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ef99a89 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f29824e mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9019d146 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x921bbcb0 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9533b4e0 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95e23eac mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88d1efee mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x890206fc mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d0145bd mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91d33db6 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95cac6f5 mlx5_eq_get_eqe EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a03493d mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c485f09 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c96a936 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9728304c mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99b6136f __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99f7ccbb mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a08f201 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b15027b mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d603a10 mlx5_core_modify_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa077eec7 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa236548e mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2e8594b mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa53fcc05 mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6d239a9 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70b0f1a mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9daaeb02 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e0d9bb9 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fa65522 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa07438aa mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa078fdd0 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0e688ac mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2f89e4b mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa506b2b9 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8079079 mlx5_eswitch_unregister_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa953a70a mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa97e2e6c mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa167a52 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9177a23 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa22f1e3 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaae113c2 mlx5_rsc_dump_cmd_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacf1a2a6 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab674263 mlx5_core_destroy_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf201c58 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf5980fa mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb006404d mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb184fa11 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1bbc435 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb23b95d9 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf1a8cb5 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf30e080 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0693577 mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6153192 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb68f37f7 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2e030e9 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb405885e mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4510358 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb52d8701 mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb588f8f8 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5cf42c4 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6a1a024 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb700c717 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72f5436 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba469bd1 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba4cc1cb mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaed87c5 mlx5_eq_enable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb07ebdf __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1446794 mlx5_core_get_terminate_scatter_list_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca1870c3 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb843993 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c2ede4 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7a65ac1 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb8dbd40 __traceiter_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc040662 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccecda80 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcda14866 mlx5_core_query_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd044f567 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd05bdbdd mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd07723a2 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd706ddcc mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8dbb577 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd98ace0c mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9e447b3 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd02f6f65 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd22a0fab mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3dd5ba3 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd66163b0 mlx5_lag_is_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdae8aa4d __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc0ca0e1 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdff9dad0 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe06bb36e mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe454a0f3 mlx5_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5930ac1 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc1139f6 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc5cfde9 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcc21b77 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf1dac29 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe06c5d67 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1e10996 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe266a7d4 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3b23f61 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe782fdd0 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe88c6474 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8f9c24d mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb41bf44 mlx5_eq_destroy_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec38f5c1 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed4d92f2 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef3c62ac mlx5_core_destroy_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf06725b6 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf27e6b2d mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf280916f mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf50b194a mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0a3aaee mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf10e4506 mlx5_core_create_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52e1946 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6ae7e5c mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8554610 mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9c18f9f mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc1b898a mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb8ba399 mlx5_lag_get_next_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf14eec mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeb69dcb __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcbfada9 mlx5_cmd_cleanup_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x06ec5e2a mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn @@ -3125,41 +3124,42 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1ceabd6b mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2062739d mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x26867fff mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x285b1ad7 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x25dc4f6c mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x299e2562 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2ae1955d mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2da0ccee mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2fb7e39f mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x45bc6383 mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x483dde0b mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4d1e2836 mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a23c2fb mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5896d69b mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f569c49 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6168f85f mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63c4d747 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x649b9411 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65755cd7 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6921adbe mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6b8ad746 mlxsw_core_traps_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6fc3545b mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l @@ -3172,200 +3172,200 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x992df825 mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa19193f8 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa515c22e mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaac5cd2c mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xabaa64d4 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xadb0faa2 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6a4af53 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc70dbb7d mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc849a282 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc84a29ca mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xca16fafd mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1bab622 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd23e8230 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9197c76 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc5c95df mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdd7d6b22 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdf751c6f mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4acd6cb mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe99feffd mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfc04b552 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x095309dc mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xbdba6af3 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x76eab1c0 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe8f7e613 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01714e99 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05bf1408 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06f11f87 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x275cc166 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xb8cbae95 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xbb2d18da mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xcc172488 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00098bb1 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01af9c02 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05fceaeb ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06397253 ocelot_port_bridge_leave EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08791cd6 ocelot_wm_enc -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09573124 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f9544d0 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10f78aea ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12f92bcf ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c103b06 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21d8846f ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25644724 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d6a60ea ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fd588f9 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10570943 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x151f6bce ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x181721e9 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1aeff540 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b82f62f ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x233b752f ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25b2f671 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d65dfc4 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d7cb622 ocelot_mact_learn_streamdata EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3be12cc8 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ce791e3 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48bad08e ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ee92f20 ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fe90496 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54531010 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55750350 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55be0735 ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57bbecd4 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ec6c67b ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f548da2 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63204cb9 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63295759 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x640c6039 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x697d142b ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c4ec9c0 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x32a27d40 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x392672d7 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c2d3f53 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4100a5df ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b03d4ab ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d49ca7d ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f2e88de ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52580117 ocelot_reset +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x526fa064 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52e30676 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56d89b28 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x583233ca ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5860fd02 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61030855 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63158458 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x665fa8ff ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6aa87109 ocelot_bridge_stp_state_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce19e2a vsc7514_vcap_props -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x723a8482 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x749f3e00 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74bed26f ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x793cc5ef ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ca576b7 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d0a20ba ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f3c3607 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f5e80fa ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7175ba93 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x717a84b5 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x750be4d9 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x782d3660 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bcdf3a6 ocelot_mact_learn EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5aec55 vsc7514_regfields -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f0127cd ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x847df136 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85deadcc ocelot_pll5_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x884e5845 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88ee1773 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c2ede83 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c581d97 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d6fedd6 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x908c19cc ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91510372 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9649f8c3 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x96529db0 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa063ba28 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa33a19bd ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4d16046 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5e738e3 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7e1b19c ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac43b7e4 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad782e2c ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8693190c ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8760bd3a ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89bc0e42 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a5691f6 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d368fd6 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f269253 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90b184f0 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92013534 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95f22dcc ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bea41f8 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa09b9714 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa44931b3 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6584115 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7af383c ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab0278f0 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf34da21 ocelot_port_inject_frame EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0fdd7fd ocelot_wm_dec -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7425238 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9c65ca5 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf822eaf ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc07a4725 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc13e18b9 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc62e1f39 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6afb14e ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc80bffa1 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc981dc41 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce3f3630 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0611370 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3ab63cc ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4416d4f ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6d9dd79 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba7cddc8 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbae31986 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc26c0724 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3202eb2 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc87ab0fc ocelot_pll5_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc4a084e ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xccc9885c ocelot_deinit EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7734e4e ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb8c605e ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd710e9f ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe24cde4a ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd67e377 ocelot_ptp_settime64 EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe30fc619 ocelot_wm_stat -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xebb55af1 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee68cbab ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefc757b7 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf18ce278 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2d22b5f ocelot_reset -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2f22a99 ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf325b88d ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6b1c3f4 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe564ee81 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef27bdda ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2461156 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf258c5f5 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5ff81db ocelot_init EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80fc88d vsc7514_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8ae2bb7 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc77e259 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff267309 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x27e9c9d6 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbce3fee ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe75a9a8 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfea47581 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff75a368 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0a774595 qed_get_iscsi_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x66defdc1 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x759e81c4 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x90cd3262 qed_get_eth_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xaf11fbb4 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xeef2287c qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xa90118a0 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xcc3c6ac7 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x03971408 wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x085fa4cd wx_configure -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x08a9dea8 wx_free_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x14b4f7a4 wx_set_mac -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1c771261 wx_configure_vectors -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1d724b3c wx_clean_all_tx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1db9acd7 wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x211b1d80 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x29666d6e wx_misc_isb -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2e6acbd8 wx_intr_enable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x39627390 wx_vlan_rx_kill_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4485bf1c wx_napi_disable_all +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xdabc5bfa qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x86f7c84b qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xd04a3bde qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x06dde52e wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x076acfbb wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x08c1554e wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x08ecdc6f wx_configure +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0cd53f4d wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0d895c27 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x20bb6b6e wx_init_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x300c650f wx_clean_all_tx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x32756bfc wx_configure_vectors +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x35beb6b2 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3700eb40 wx_get_drvinfo +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x39e35612 wx_change_mtu +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3bbf9c07 wx_set_features +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3fd4f02b wx_host_interface_command EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3398bd wx_msix_clean_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4c188b93 wx_vlan_rx_add_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5401892a wx_set_rx_mode -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5eccb0a2 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x65e08dad wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x66a8c2c5 wx_init_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6a257622 wx_disable_rx_queue -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6c0b4309 wx_setup_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6f7aec8b wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7356f79e wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7cddf966 wx_mac_set_default_filter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7e0caa26 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x856d77ed wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8c7b2b51 wx_clean_all_rx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9152268a wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x928d9e41 wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x96fb123c wx_change_mtu -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9860e214 wx_start_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9dff8b67 wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa10885ab wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb228fee0 wx_set_features -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb83703ab wx_setup_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbc272456 wx_napi_enable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbdb37eea wx_free_irq -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc12ab99b wx_irq_disable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc1853b31 wx_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc1f80f3d wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc3c6843c wx_get_drvinfo -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xca6a6b82 wx_clear_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdf4c5e9c wx_free_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xebfd21a5 wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xeda55c90 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xee74050e wx_xmit_frame -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf1efa025 wx_flush_sw_mac_table -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfa6c5f83 wx_reset_interrupt_capability -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1cba2e4d hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x540a42e9 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x61ff001b hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd6910ab1 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe542d64e hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4e1956cf wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x56547876 wx_set_mac +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5955f3a3 wx_set_rx_mode +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5eda9530 wx_disable_rx_queue +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x647189db wx_setup_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x68408d95 wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7655fbb6 wx_xmit_frame +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7a9e1ebc wx_clean_all_rx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x833535bc wx_free_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x87bd88be wx_setup_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x906ab66a wx_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x92b0c05d wx_irq_disable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x983f893a wx_free_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9aead408 wx_start_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa3e901ba wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa4029c5d wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa6f5cfa8 wx_reset_interrupt_capability +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbac6eb0c wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbaf0c1f5 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcf688e77 wx_clear_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcf86588a wx_vlan_rx_add_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd03a23c4 wx_misc_isb +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd70f4e83 wx_napi_disable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdf8d4ae9 wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe2ec8b19 wx_flush_sw_mac_table +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe4d23c4b wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xeaefdbd0 wx_vlan_rx_kill_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xef99bcdd wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf13a5e0d wx_intr_enable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf3cc068f wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf3ff8d69 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfe018b35 wx_free_irq +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x04cde4ae hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2aaca982 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3de65315 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa2c38098 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb18db673 hdlcdrv_unregister EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x62eb612a mdio45_ethtool_ksettings_get_npage @@ -3373,1091 +3373,1091 @@ EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x5a55cf5f cavium_mdiobus_write_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x5b3d5c22 cavium_mdiobus_read_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x65ff61cd cavium_mdiobus_write_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd3be9354 cavium_mdiobus_read_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xee8ef0a2 mscc_miim_setup -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x0d2a24de xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x453acf1e xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x666fc517 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xb29b0eb4 xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xc33ee485 xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe2d8d090 mtk_pcs_lynxi_create +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x095be440 cavium_mdiobus_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x242f68e8 cavium_mdiobus_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x8394bd0b cavium_mdiobus_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xf4d110d3 cavium_mdiobus_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x4df68568 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x337e6147 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4780949a xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x98a45f8a xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xb2a228b4 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xfaacd7d7 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0x2a13f070 mtk_pcs_lynxi_create EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe9221a05 mtk_pcs_lynxi_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x8de5407a bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3ca497d8 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3ee97c9c pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x969e1e6d register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xdfe355b0 pppox_ioctl +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xc1c91acf bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x0948f432 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8007c07d pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x82b1d163 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa14f0cb3 register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xc83742b4 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x3702874b team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x464461aa team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x61eafd39 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x67b12e95 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x6f7303f7 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x9af78834 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xb610ee62 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xde043ddd team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x5c06bffd usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xb4ee607b usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xf1b6c6b1 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0ba341b1 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x102e32ad hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x37da9d19 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4b13e6c7 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x70157d50 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x82ac59c6 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xae5a54cb hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb0d88427 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb1f1aa07 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbfe0e0c9 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/sungem_phy 0xd5f62ff4 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x50e089ba team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x529b3c8c team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x68e1745c team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x78535e88 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x9f3070c2 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xb97cf730 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd0658873 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xd3c02cc7 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xbfbfbcc2 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc3c68d8c usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd163d172 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0b06c0b2 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0d5a6107 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0f852869 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x859209f1 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x89ae8af5 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8afd2e0e detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa9258877 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb6bc3735 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbf95607d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcc455599 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x09eeab2c ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x12857b38 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x25316c36 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x40e56736 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x13f3c402 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32367c60 ath_hw_setbssidmask EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76b3205a ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f85ca04 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x491f7ff6 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5b494efa ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7167981c ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x79345c3d ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b05b09c ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7f6e2823 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x81155527 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9bd46d5d ath_is_mybeacon EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa5b72f21 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xac779c49 ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaebf7fa0 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xba2f4413 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc994967e ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcf92be84 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf5af0438 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf935bfd8 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbe8cfa07 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xea9161c4 dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01acb6b0 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0544153b ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0a13c1a6 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e1b2eb0 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e851157 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x105b24dc ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10b8f17b ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2288e046 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x252add0f ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x296d1b09 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x297ae665 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3358a22b ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x383dc439 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x436666cd ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4afd37a5 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4bfaaea0 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50c64097 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x61b2b24a ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6521c873 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x689b7110 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e117b4c ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6fcd0e05 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72156e92 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x729b5b5a ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7bd36c9e ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81871961 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8318eaa6 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87ade00e ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9360ec0d ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9562cf8b ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98d171d8 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98d4e387 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9c07f107 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d4ef94b ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3ae09da ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa61de826 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7936da6 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa81a4178 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae99f97d ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb071d69e ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb291f943 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb51ae751 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd74d8a2 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbdeff458 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc055517b ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3e26005 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc3fe4c4a ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbde53f5 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dde8a38 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e7da828 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1290f27e ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18e35ed5 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19202887 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ea3ae30 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x23976862 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32bbb735 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x365fb095 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3851eb3a ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39026a89 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47179546 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c3f4762 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b6aef60 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b7bdd13 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66079ba2 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x677c17e8 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d519b04 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x734e7de0 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83bf95de ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86ff94b0 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8cae0617 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d1eea17 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e525b9b ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97f0409f ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ab578e1 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ce1c805 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9e6f10a0 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabc649b5 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac070623 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xacc035b2 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb50f02cd ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbbed440e ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe11d01f ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf23efa1 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc104ae27 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc7000e7b ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc7c1b8cc ath10k_ce_free_pipe EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc20d178 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd204e0d6 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe191ebbf ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6e5e2e0 ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea1e4e11 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebd1779b ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5091cb1 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcba3da8 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfce116c4 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x02b38e81 ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x09920861 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0d17ceb7 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd71265c ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce247b5f ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd1277014 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd25a4916 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2e30d87 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5ebb4b8 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdaedc224 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe65a3104 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe7b5a6fd ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8c03577 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe959d91f ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xea4d9684 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeb24910c ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed8153ea ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf213f7c5 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf375f915 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6afa65d ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf85a91f4 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0463b23c ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x08913608 ath11k_core_suspend EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0dae0eb8 __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1b2b135e ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20dc2c97 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x226cacfd ath11k_pci_enable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x26092d0e ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x28bd0daa ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2b27366d ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2eb8aefd ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x312d0d89 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ff432f2 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x46df47cd ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x56a941f2 ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5cb5efa1 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x62ad5f32 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x795ee03c ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7c8fe69b ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7ee3021a ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fcdbc52 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x808d10fa ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8451cc58 ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8694f24a ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x89301af1 ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x893d1f07 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8a90d1e4 ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8c0344e3 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x13efde6b ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1ba2cef9 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2a120753 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ff34cc7 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3248ba46 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3b9b322c ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3baa512a ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x45c657f8 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4ad4564e ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5dbad52d ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x66a27464 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6abefbfe ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x74fc9ab5 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x763c21b2 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7e1c9758 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x828c7b93 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x82ee73b2 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x84632190 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8615f49f ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ae592b8 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x90d46428 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93d606ec ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x94cbdfb1 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x99109a04 ath11k_pci_disable_ce_irqs_except_wake_irq EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaba0e92f ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaeea84c7 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2877928 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb58e72d2 ath11k_pcic_ext_irq_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb552930 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc51e13a0 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc854a338 ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xce0196e2 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd3ea4249 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdb069508 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdea3e96c ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe208ce29 ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe8fbc0e5 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d727fa3 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa3af1c57 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaee2211a ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb06d3795 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbaba939e ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbcdcab82 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc07833df ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcce35f0c ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe7168c4d ath11k_pcic_read EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf71ad72f ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x105e481a ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf2529a3b ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf29786d4 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf5676e8a ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf875a51e ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfe570739 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfe983192 ath11k_ce_alloc_pipes EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1c277c97 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2155e8a2 ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4f573ae2 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x587a61b9 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x63ab302c ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x74289327 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f77e5df ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3e3794c3 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4a906b58 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6ff9d490 ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x98bc4264 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9fda53e0 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x99ab981f ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9dcf39a6 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa57c299a ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa9193371 ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe412cf59 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xee4cf8f8 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10b7f551 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd95600dc ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdb1bcac1 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe138e96c ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0633aa4f ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18ebf86c ath9k_cmn_debug_phy_err EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a0aa030 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x20c70dba ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x353ad3f7 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3aa7bf2b ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4a362d18 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7186f432 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73f72cd0 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77a97747 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x83830709 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x842d9d55 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8d300815 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98033a12 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98ce52fc ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d9ba5d3 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ef5218e ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb11a0a12 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb2d93b56 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd09bd558 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a8b2dca ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21f94c18 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3406ba72 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4721e867 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4996b67d ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a40df2e ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5decb052 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5ed2c5ff ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b0e25ca ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8724bdcf ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ad30e13 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaa0cfdb1 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbf2a08da ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3ae6e33 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5b4bbde ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcc45c8ed ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd12490ee ath9k_cmn_debug_modal_eeprom EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe13b64f9 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3d68090 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf409911e ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf86afc5e ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf963f196 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x024622c3 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04d692c3 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07bfca8b ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09e5abf4 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe6bf3af3 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe802169c ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf065c672 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf846211f ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00c7eed2 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x064485fc ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x079823da ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x095fb610 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a6f4e5d ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b7c14cc ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ccfe004 ath9k_hw_getchan_noise EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1182c048 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x123fca8f ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19323ddf ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b81aef7 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b88823c ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c9d2dee ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d4a1b7d ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24bf2659 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26a86d8a ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2971d7df ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a29a394 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bb1a61e ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c793241 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c7ba5fb ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x308b60e3 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31a71505 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x343d64f7 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37cf9fb1 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38f22617 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3afe8d16 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e5c22b0 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fe73c33 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x400fcc20 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444b0c5a ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4990e472 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e2d3981 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e6a96f9 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ef41afd ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f774509 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51c1e3da ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5337158d ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5425f75f ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54307200 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54fcc118 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5757d00f ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x596c4f71 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a7429c4 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cfae4ed ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fe1722f ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a0269ac ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fef6fb8 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70fb72cd ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74307b3d ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c404460 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d5ca8ec ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x814859d8 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85270496 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85847f28 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8792d62d ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87a14a75 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87eff5a1 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88f77a23 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a2f2c9e ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f3329f1 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91dfe170 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a2772e7 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b112f97 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bf3ce59 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f4f390f ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa07ed324 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0bde49d ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3a4f77d ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4bfb9e2 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6ef20c4 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb099ee12 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb245d095 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3358ac4 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3725b7c ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb38471b0 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb73b125b ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb926a206 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9aba585 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb662b85 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc7f2388 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd0ff325 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbda260f2 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe959c56 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf3915a3 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc61aa797 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6b2322a ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8a9cb58 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9f32358 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9ff5897 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd89971e ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf7ae538 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd039e2e4 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0b0d4d4 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd60b53fd ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd80c19bf ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcf5f971 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1388611 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe38aa095 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe57e4020 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe68863a2 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb00b6c2 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeccf1391 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1c0338e ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1da62e1 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1dba4e0 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf54e9d28 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf66ba3e1 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf88f3241 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfccc58bb ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x64b4d0f1 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa97bcdba atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcdadff28 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12e5c0ad ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13a0dbf0 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14de3b17 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16608104 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1733f39d ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18311812 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d29a4d8 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ef988e7 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x219a906b ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24badfbb ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26ed66ca ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a987dec ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b2f4260 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ff6e3c0 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3041e8e0 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31230da8 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35418b94 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3634b33c ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x378f6d71 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a7fd8f5 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c558a4d ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cc31a06 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40e1cdf3 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42f127e4 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47264eb3 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47315391 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47cfc4e5 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b39e8ba ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e90fa87 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fb7f971 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51d9badd ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53b915e4 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x544d3d9e ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x575cf065 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a37b878 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x616c270d ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61d590d5 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61f4a932 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67d4a1d8 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69dfe255 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a452628 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c69f602 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73be4821 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ad4bffb ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bbd07be ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ff10575 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80b7bd1a ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80d01e89 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8287541a ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83ce2ad8 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8457c272 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84a85599 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86662af0 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e3f2e4a ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f055510 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94e128b7 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9672845f ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9825b2a7 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99205771 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x998702fc ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dd91ef3 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e6c9824 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa04a5ff6 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa30be151 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa34a7745 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa50bd806 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6d9bb12 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9d9fe56 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad204b5f ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadcbf6e3 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae17a4de ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaeb96b83 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb09040a7 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0a8ff6d ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb44530cb ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb611145d ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb63cf083 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe9d6520 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbec28d44 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1d976c1 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1f260ee ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc25b7ea7 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc549b0c8 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5cb1b4e ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7032033 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc980361a ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9a1ed0b ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb05ed17 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb384469 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddfce45b ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf3d8dcc ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe206ace5 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2bccc4b ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7728080 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee45cc06 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1791bef ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf227e698 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9662d63 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf99bede2 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe1fe738 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb431a2b8 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcb147bb5 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcd70871f init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x13c1df16 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x181629f2 brcmu_pktq_penq_head EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1e2ef49a brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2084474e brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2732854e brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2c3a1361 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x457151ce brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x55f30832 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7d3e4783 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x91a130a9 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x49d5cd83 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4f688ca1 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5c2fcf05 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7d218a2c brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x83692f29 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9fc79fd8 brcmu_pktq_pflush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc7e446e8 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa7b7490f brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xca704c83 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd2a3230d brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd4f87703 brcmu_pktq_pdeq_tail EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe07f0a0c brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe770696f brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xed10c83f brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfdb3b57e brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x07c4e13f init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x8b797cb1 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xa8532f45 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0497d05b libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0775a29c libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0f2d2d16 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x11656d9f free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x13496760 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x485931f2 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4aab77a2 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4e75f849 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5ecc6eef libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x61acad44 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x622c4ec9 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7766ec5e libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9163e7bf libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x94543f78 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9793a970 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa055a179 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa65ed944 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaf1025f0 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc6d3a9db libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe6b6eeea libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x031c5f87 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04269d95 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04c7f17b il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1022d2ca il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1129035b il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12866581 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14c436b7 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1746c294 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x187039f8 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18f1f659 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1965b849 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c5d9172 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d048916 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d6e7638 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d9b497f il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29aff28e il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdcd99aa2 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x0ce10619 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x4dcc8bd6 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x72b21e57 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x01a23cc7 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x04a442f8 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c9da124 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2ed17bb7 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4d08106d libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fe89ff1 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8afb7264 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x94616ba8 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9e1749ec libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa001843e libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa46f9edf free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa54fd96b libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xad5c2734 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xae758399 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xae9446d0 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb67bcc1e libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbde65246 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc4fb4855 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe582acfe libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf83bafb9 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x056a82fd il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08d96c80 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09770222 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ae729f5 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0db7e65b il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10695461 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18df210a il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a144889 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a5ca8d2 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d3b26a3 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e83bd10 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f140ef1 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1feff6b7 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20bddbad il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x218dbb87 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24eedabc il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25b5c044 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x272116fa il_add_beacon_time EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d4a6af1 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d91ae39 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2db1a980 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ffa9d09 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30ad07f0 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31785795 il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31a7c9a2 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31f9754c il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x322b1b25 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x326a55ff il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32876bbe il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34c23763 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39504da7 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3aec4efa il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c2ac7a9 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x354fe3d9 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3651d299 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x367522ca il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3867dd0a il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3adef9fb il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b7304ab il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e099800 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f5911d4 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4130728d il_eeprom_free EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49abc759 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b1b5560 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fc42593 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x504fb5e8 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55b6351e il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5daf943c il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x616b51d1 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x618849d6 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6db3800e il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x702063dc il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x723eb918 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73fe0912 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x762a8db8 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7765b0ca il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x793f91af il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bba9ade il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c865100 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e37af8a il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x803b4e83 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82d78831 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83ae7926 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86e4a778 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86f6d09f il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89378c3d il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8aa31a63 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d593ba6 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x920e4801 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x953ecf21 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x971d7599 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9aae838d il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x460144cc il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x469b5324 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x470173be il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eb09d6b il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x523d714e il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5465c98e il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64d6e214 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68440e66 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68c66e55 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68d55623 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6955ba82 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x737db7dd il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73f85b59 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x772fdfb3 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a6602b6 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7befbc29 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e0c56ed il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x804fd0cd il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81b18c6a il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81bb644c il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x834573a2 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8621c571 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88cfba15 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ce7e305 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e259dd2 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f23c55a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x913b3c24 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92510c78 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93d2da00 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9859e221 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9afe8886 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b017ac4 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bb2f66e il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bdeecfd _il_poll_bit EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa04ec664 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9805947 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaacd40ec il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab902ada il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad549a77 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae78ba8c il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb63ea9a1 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa057157c il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa224a9c6 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa46fa9d0 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4d972b8 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa61dad7f il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa91c9acc il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafeccad9 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaff22de1 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4836811 il_send_cmd_pdu EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65ef290 il_mac_add_interface EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7e52d64 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbaaf6d2a _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbcb2b431 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdb6074e il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfc88efd il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4772a0f il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc59cc951 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc934e6fa il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbd8d8b3 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce226a20 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0dcf8ba il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd192fd6c il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3cd6eb1 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3ff4447 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd81932a7 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1b634f8 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe21e7e17 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4c34393 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe54d6aaf il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe601464e il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6e6c8f9 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea6acd85 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefed12b7 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf244fe88 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3ea1267 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5855caa il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbad21187 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd1033f1 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1135147 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc46f973c il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4d0b974 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc50f3e5f il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6992aae il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9074bbe il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcac034da il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xceae91fc il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd10fcf2b il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd67d742b il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdac6a333 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc9f7846 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde6e4e86 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe20828d1 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe62887ce il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9a12b9d il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea8e17c2 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec66ee20 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xedfb6922 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef8824de il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2092bce il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3a3aa81 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3c77c49 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5a7f8f0 il_send_rxon_timing EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9016800 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf90a4f05 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf95900a3 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe1ef702 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0094600a __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa74d0f8 il_tx_cmd_complete EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0fa4d950 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2196abf2 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2fe339c3 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x568a553d __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x701e83a9 iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x672088d4 iwl_trans_pcie_remove EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9828a56a __tracepoint_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb396913a __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbe33a006 __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf4073229 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01897be7 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x02fc9f41 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x15989f73 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2b4bd058 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x32b192bc hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x43c3a68c hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a701250 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6178b9b7 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67f73155 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x07c21ca4 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1094d166 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1409717b hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2581948a hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x341680cd hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x37dec1b4 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3cb81ac8 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3e53f542 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5a127f73 hostap_setup_dev EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x783b1936 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x784efde4 hostap_remove_interface EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x85595958 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8bf903eb hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8f3b96db hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x91e36b7f hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x91fe6dd6 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x92ba8d51 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95aafba4 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9d05d28a hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb03f66c8 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8d1b9ef5 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x99beb1ca hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9fbaa0b4 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa32a7336 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa194623 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab5e1071 hostap_set_auth_algs EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd73b9955 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdbc2ac21 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdc591f8e hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeb5c221b hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb7b7cb1d hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbe766cdc hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc8f6ce7c hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xca916c90 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xce6b1848 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdb27b768 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe49610c5 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe84fc30d hostap_80211_rx EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf9674151 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfac5f5e7 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x118ac719 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2c789a13 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2cded446 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3148d2b4 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4f9907a0 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5b47584d free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f184b81 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x629f1ab9 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6e86dad5 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x877c0fd2 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8daa397f orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x97e5a1d9 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfeb8c44f hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x091e9497 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1f9528f2 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x37d0926c orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x462dc092 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x48acaab8 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4e5be0c0 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6520cd1b orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x714a4496 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x84af97d1 alloc_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa7a52c07 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd5999da0 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfd8aa3a2 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc5e93849 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc85a1644 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xca02cddb __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcd789ed7 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe0b80412 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe2179182 orinoco_set_multicast_list EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x00f30853 mt76_wcid_key_setup EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xcd4d99f4 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02cd1d67 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0826635e rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d1fab61 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x214440e1 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd03ea741 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x4f63acd4 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0032690a _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0315797c rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0693393b rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0dbf18c8 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14e4467d rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1707a3aa _rtl92c_phy_dbm_to_txpwr_idx EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24a84ce5 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2527f8e5 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2592a65f rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x293dd7fe rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b8edea2 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ebf64e7 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4391aea0 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4978ad4f _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x531bfad8 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x537379fc rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5dbd47c1 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x665dc54b _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69af6e5c rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c37d3c7 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x756579d2 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x877a4899 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x936b5c10 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9dcb4775 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa528736e rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad48e584 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6831f47 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbabc52c3 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd09f809 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbdb93306 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbef22daf rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc62ee33b rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9c0898f _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xccadd434 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd956014d rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda57f6fd rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde17363c rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf0040c7 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0378fa1 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6fd2354 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8d0e3ce rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf2846091 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffd329f8 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5ab8bb3b rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb4b5d3ce rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd1f08f44 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd92e165e rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x220e79da rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb6c561a5 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb946c033 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xfbed4e54 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02588f6a rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x088e4c6c efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x281513d3 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a1d8927 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x326ea73e rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3314c76b rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a7c70da _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41357660 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46a6b1df rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47418ebb _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f5ab22a rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x541e26a7 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b92f988 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fd94c86 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6652145d rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72576c7a rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75817af2 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77a91376 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e7b00d5 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8198a84b rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83a4dcd8 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a43830b rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e870033 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x964aa5d8 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99ecf5e2 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f859ff0 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf49a3ab rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb506f2f4 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd136525b rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd199cb6a rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd34e67fc rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd8085224 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0905d7c rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6a13755 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb60cc66 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef9280f4 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfee43d5b rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x45507a49 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5ef2daaa rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xed4f997b rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfb806617 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x29c4e197 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x30a305d5 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5c96119b rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7d06f2f5 rtl_usb_resume EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1637211f rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1046449a rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11408e26 rtl_init_sw_leds +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13155654 rtl_rfreg_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x293d519b rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c0fea21 efuse_read_1byte EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x345772a0 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3670bb56 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x382f3ad4 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f211e1f rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45874d3a rtl_init_sw_leds -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x492b7553 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a452ce3 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x379b9107 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43bc52ab rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48c5546e rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a2e21bd rtl_cam_empty_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c8e8183 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e0c1fba rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87416c11 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b9b05a6 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c18bd91 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60c94f01 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68fd82e1 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a8f9c48 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f3d8ec0 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7aa4ea3f rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8257e34f rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8638b113 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x879f9ca8 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8cc13573 rtl_cmd_send_packet EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x968d8e7f rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2237633 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9a2fcc9 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafaa5b0b rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc43f2627 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5b5dc60 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8e5666c rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc95e6899 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcebf28af rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf3213cb rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd484c7e0 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7140c38 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe854a056 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x922a2552 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x932bc117 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98d3c249 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e876470 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1357648 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8384c90 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa47d9eb efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdaf6c70e rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc03ff0c rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd1f5012 rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee0b21b4 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefb2acfb rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7e38f3e rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xaa966a11 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x37561d9c rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x417610a3 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xaeb47b9d rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0622bffc rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08f271a4 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c719d56 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c75bc6a rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17de7d85 rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a0bce40 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa4f6b04 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfbff3c96 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd1dab81 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x661cf697 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xfbdc811a rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x8dfc8c25 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x623ee71b rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x04359265 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x05ac1469 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11af63c0 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x12c3fa78 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x178e132a rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b472b1f rtw_tx_write_data_rsvd_page_get EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc2d072 rtw_tx_ac_to_hwq -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e28df48 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e89bef3 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f8901c5 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2031b796 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x235787b5 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2749e7aa rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c059638 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2df00e96 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21de07af rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x23e3fcd7 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x26aaf5d2 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b94e865 rtw_dump_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x345b4baa rtw_parse_tbl_bb_pg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3daf0267 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f218987 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4217e422 rtw_fw_inform_rfk_status EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x48323134 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4cf60210 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x471584ac rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49c6ced5 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4a3e0ffa rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c77156f rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50c57f6b rtw_phy_cfg_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x54cfb193 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x55344647 rtw_fw_c2h_cmd_isr EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5cbe8e8c rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60e533fd rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x68506710 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7631e463 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76ecfd1c rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78c12507 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a1b060f rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82749c7b rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x840e3fb7 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x847db2a5 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x88bf7b2b rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x898abbbc rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x937653ef rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9646a026 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ad49b52 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e3f89c3 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f0cad34 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa063a2ba rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1f517a5 rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4083b34 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4880456 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab5d6cc9 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb37f7ff4 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb79e0492 rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8501c96 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc01f07e6 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2f490a6 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc4653f6c rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8348479 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcecf34c5 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf436461 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0b6f5f4 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd45900ce rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd96aa9f1 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda5ecf84 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1007f87 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7d9d388 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf0185e16 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf241fc33 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8ead692 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa084570 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff571e94 rtw_tx_queue_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x29ef58c1 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x472c00c2 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5d68083a rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xdd179b7f rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x2b7b989f rtw_sdio_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x32c8102b rtw_sdio_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x9ed4767b rtw_sdio_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xed215c15 rtw_sdio_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x0ec01f30 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x895b8c02 rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0x0e847170 rtw8851b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xc4d0cf4e rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xb34e1dbe rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x28eb51d1 rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x044f626b rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0669f7d6 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x07193d9f rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x085316d3 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17cc6454 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e9b827d rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1eb17f5c rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2179f75d rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x21dbb125 rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x253c1a1d rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25527248 rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2dadf9e0 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x31495106 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x31620083 rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x32fd8bb9 rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x37e068e5 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x381efe23 rtw89_read_efuse_ver -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a9a47ce rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a1bf7b7 rtw89_decode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a801d59 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c3ad85c rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f92677c rtw89_encode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x57f482a5 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x608739a8 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6548cf0a rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6986f87f rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e201922 rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x720ba57b rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x78dfa70a rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7a176dd7 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7abcdcf7 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7b5fc506 rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c4d8b0c rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8117b4dc rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b49e471 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9352b6c6 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x93c5e3f1 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x96ee6277 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9a25ff71 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a254d9f rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6341e9b0 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x645f0d70 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a43ef7b rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6bfc3922 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7163b4eb rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71d32e72 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7231befd rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74848dfa rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x767813c1 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ebfa732 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7efa177e rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86be3003 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8d7eba4f rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92d40f4e rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95008a05 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f0662ed rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3a34758 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8026dc4 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9ef5716 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa5871cb rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaab5a961 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab00da62 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaee8561c rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb01a9ab5 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2986a28 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb44624c0 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbbb95cb9 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2c1e0fa rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5353d30 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd11cdfd rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd04327a5 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd3550913 rtw_tx_queue_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda520a3d rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda5603af rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd55e94d rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4d4667d rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe858def3 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed1687c4 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed2db9f0 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xefa584c3 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf082a3ef rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff1b5b90 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x36d9c250 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x59d3f088 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6f56e590 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf49b5795 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x604a9541 rtw_sdio_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x74d9a7ee rtw_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x82dff842 rtw_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xb82bc62c rtw_sdio_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x7ade65f2 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xdebf2561 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0xfb1ef10f rtw8851b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x314a4f31 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x46d49dc1 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xdd71d1ae rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0221878b rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02522951 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x050549ff rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09123a26 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13194a0e rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15f288e8 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1bea8082 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1c114ee7 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1cbe398e rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1ed1069b rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25aa88f4 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x27365a15 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2da26eea rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38899b5f rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a362d30 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45c5f2cc rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d6e7f99 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4efbc6c4 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5018ada3 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x568c7663 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x580d29f9 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5c7aa4c9 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5cf5ecf4 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65044f6b rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6783e987 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6815386f rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b1398ae rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b5c26c4 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6cd09a02 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c0716ee rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7da40f71 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82d6755b rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x83febac6 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x88a23b92 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a70cbaa rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x953f1daa rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9683bf37 rtw89_core_fill_txdesc_fwcmd_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac85705 rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa162fa6 rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa3f912d rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xad79ae9a rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaf608dbf rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc6f4735e rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc92c3392 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xced6a6be rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcfcf42fc rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd3790194 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd64388e8 rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd76eb444 rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd7b0f7fc rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd878c864 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xddd08ae9 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xde315a0a rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe147b3d9 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c7a590a rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa608681a rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa627edc5 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb7620acc rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba0ba207 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb4314ac rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbbbc5741 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbbcf8430 rtw89_encode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc35332cf rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc35c2913 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc54fb814 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc5ab3bb1 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc877f625 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8855a21 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb43841f rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcbc6b880 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcbff2bb2 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd5b589f rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcf965b32 rtw89_decode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xde938974 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe05ce44f rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe139edd2 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe2ee2313 rtw89_mac_coex_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xecb0e4e6 rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0e9416c rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf3469852 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa60b1dc rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb561fda rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd98c569 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfdea710d rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x002f341e rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0c7fb715 rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0d92e6ee rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2cdb0a74 rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3b1b62d7 rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4054828b rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4fababce rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x59063393 rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x642f28df rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9099441 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfe8efaa1 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x052d6668 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0d1a7298 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x12294e1a rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x52ab4f88 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x587b6dee rtw89_pci_disable_intr EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7b9ebb60 rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x86a8a677 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7649b87a rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7be0e4f8 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7e77150b rtw89_pci_disable_intr_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xab6c2887 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb73fd515 rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xee7fcb9a rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xef35d1d4 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa0c0f18f rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb6251bf6 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb984efe7 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcf61ca34 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xee4796a5 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf15eb574 rtw89_pci_recognize_intrs EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x79b5bc34 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x01f9c281 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x50bc6513 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6dccfb51 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdd9fe767 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe0dc17dc fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xfcefde84 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x28fd925b microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x3e4158fa microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1f22ecb7 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf7a10e63 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xfc96474b nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xfc78fb0e pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xabb85d7e pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xfcf83e15 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0d732970 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfeda3c0a rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x99b10f6e rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x03474c5c wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1f20e82a wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2087f499 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x46723262 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x482858e6 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd0a3e721 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x43bc23df microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe54c953c microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2ebe64a9 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x91ac2c59 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb28c9364 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x029a301f pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb5bb4725 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd73175fc pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3217329e s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdeb3b771 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdf7b6fc8 s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xec35c989 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x89192dd2 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8d25607b s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xed010d05 s3fwrn5_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0ca34b1c ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0fd50538 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7370700d st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x753bb7ba st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7a5e25c1 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8871f937 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9bac2de3 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbe434718 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xde106cbd st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe417260b ndlc_send -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x05d97bf3 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a981181 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0db4f689 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ddf3123 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0dffa07f st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x20aaf702 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36bdeb1a st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3c0d67b4 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5873a176 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x676d9049 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8685e7be st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9fa833f5 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4e1e7a6 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xad217691 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe22f7466 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xebbe4e06 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1852deb st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xff80c5a0 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/ntb/ntb 0x0868ea82 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x0a3bf531 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x167ff20b ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2a46e56a ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x2bd9b2ef ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x3e03e505 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x40ea968c ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x620bbcc1 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x7caa088a ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x84bcd276 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x8a336f67 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x8dce6a6b ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x9e7fd6ca ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xa5f783d5 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xaeac3440 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xb60e1fd8 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xc3f80d30 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xd4ebd3d4 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xdf3501f3 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xe11408ca ntb_clear_ctx -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x731002eb nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf7a0f3fd nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x01ef03ef parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0x092c4035 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x0c9966b8 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x174e902d parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x17f2d8a1 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x269816cf parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x46ee3248 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x487d7e54 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x4b032808 parport_wait_event +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x005b2da9 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x076311d2 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x391288e9 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3a81dbbd ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5caa6afb ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x92cf7f19 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x957b5eb6 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb2fef192 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbfe547f7 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd8cf9973 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0b5a2bd5 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27de877a st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2c4add76 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x418665dc st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x48fa9ed1 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5aabefd5 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x62245bbb st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x64bfd38f st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7503f435 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89eb03f8 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e3a0bf0 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa18366f3 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb39fcae1 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb6d515ef st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb71d848f st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc287463f st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe96c87ec st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf795dce3 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/ntb/ntb 0x2829519f ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2cc07416 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x2dcfe9a7 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x3a6a11d3 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3c1a74f7 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x3febb2bb ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x4d0cda6e __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x56d5b9a8 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x653c59a8 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x67658468 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x7901d578 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x80516db9 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x999b4d90 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb115f418 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xde36b3fa ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xdf9d1688 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xe8830ea2 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xe944c42c ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xeaf1dd0b ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xfed543a2 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x73d44297 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa411c28d nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0a8d6bcf parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x0bc035cd parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x10b40416 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x17df13d6 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x18e39b63 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x24ee0348 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x2ceac3f4 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x2e1bec76 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x3014541e __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x3728dde8 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x3bf735f7 parport_unregister_device EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4fa5714d parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x5b0e14d4 parport_ieee1284_read_nibble EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x74642f6d parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7fd80514 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x855a1529 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xa5033689 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xa5c4184d parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xa90890cc __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0xaf61ad07 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xb114204a parport_release -EXPORT_SYMBOL drivers/parport/parport 0xbaa30eaf parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xcc66db0d parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xcda6f07c parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xd68c5a97 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xdc7cf860 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xdf43c387 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xe185eba2 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xe873b176 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xeef0f9d9 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xef7b8fab parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xf07f8a34 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xf9ad07b3 parport_get_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x02a2a2a4 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x1d59d77d parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0c530d18 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1beb9f5f pcmcia_put_socket +EXPORT_SYMBOL drivers/parport/parport 0x5ea678ce parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x77de576c parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x7ee2522e parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7f23b28f parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x85052fe7 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xa24b1a8b parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xa3155eff parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa3e4bc82 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xa981f1a3 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xac29d64a parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb17097e7 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xbb7c9761 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xcb55795f parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xd14f9b97 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xe9e0aaf3 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xf0a4be3e parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xf8412150 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xf9777da3 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xfc7132d2 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xfd82dbd1 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x4c47c340 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xb118ba8a parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x11b7f008 pcmcia_get_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3b9e5033 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3fadc0e9 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x742bbd58 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x86d9023b pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8a8be7e5 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa4098a59 pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc388eee2 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x28ce8bec pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3d25a868 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6582730d pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x779f866f pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb3b02c23 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc2cc98d7 pcmcia_get_socket_by_nr EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd84564c4 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd39f8c2f pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe15235ed pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf06bbb3f pcmcia_unregister_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x8c785ad5 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x01aabfa2 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4074b247 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4e858307 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x842d49cc cros_ec_suspend +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x71158457 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0409edde cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3f0f57bf cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xb2f1c948 cros_ec_unregister EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xefdc7db4 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf8225dbb cros_ec_suspend +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x10b1bf88 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_glink 0xd7119b40 qcom_glink_native_rx -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xa0e8dc3b qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x989eb75d qcom_smd_register_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xadc8e61f qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x6c765533 rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x8fd50fd6 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0be33e9e rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x169d0d19 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1da93420 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x24955032 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42561663 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6c32246a rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x76ae45be rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7f494fed rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xac630529 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb16da8f3 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2daccb1 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb418c869 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd1225a0b rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd44170fc rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf0e7cdef rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf159ecf8 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf67a350b rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfc4241c9 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xff054556 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xd4348561 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x074010ca scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x09e43271 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x17bf88cc scsi_esp_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x18f3422c rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x9c097037 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x13663320 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1dac6d73 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x24ee7487 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2d4b5319 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3463b8c0 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3b353ba4 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5650c575 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x577cfa55 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7b9e2c8e rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x939ed270 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa5be513a rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xac3444ca rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb5e10c79 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc3e096e8 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xce5a1ead rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdc7a1582 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xeb6bfe63 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf276c281 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfdfe1f85 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x6a290719 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x097f8d76 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x21c9a6d3 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x33f5dd06 scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6c857f7c scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x37f25179 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3e0afadd fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x462e4ae8 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4b22d6b0 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4dddddbb fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x54944f29 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3691ffc fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb33c9dde fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc914afd7 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdb5925c8 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfddb33d1 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8b74540c scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x25d29116 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x35e11192 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4444b60e fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x45bbf8fa fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4b5f5f3c fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5f1c2f36 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7b0dc5d3 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa532f675 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaa9bc797 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd21e8b40 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd75be491 fcoe_ctlr_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0072234d fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0174d30b fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01fbd1db fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0273ccd9 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05ca09d1 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c116df6 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x143ed061 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x144c99d7 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17dea23b fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18cc58dc fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00eb6626 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cdb704d fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x135b8be9 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b361671 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c5ff87f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d591bd9 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fe16e3a fc_exch_mgr_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26d45968 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e1ec3fc fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x318aaaf7 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x330ff4a5 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x376bda79 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4229867a fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x427f1834 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44d2c4b5 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x489a370d fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4928c2b3 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f71d57d fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24614ceb fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33093bbd fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34255052 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f598fa2 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ad8af72 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4faef95f fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55ce9d47 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x599a5067 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60305021 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63332da3 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69cc30b3 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6aa0e76d fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b68b086 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d1bc5a9 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c3d06f1 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x618691d7 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64f996dd fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66aa444b fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d719817 fc_exch_mgr_free EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x725fa7f3 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72a5316a fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7384c996 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7889995f fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ed65b11 fc_lport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86e96304 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a1d6114 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d49638e fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92222577 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92d522aa fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x971456bd fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99ac0aac fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a2ff9ae fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bdfc2df fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x830e5628 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e6d2075 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90343348 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93b9a65f fc_queuecommand EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e29564d fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f7102b6 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1194ae4 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa16cff65 fc_lport_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa20a3c00 libfc_vport_create EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2469f5f fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4da6c27 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0c672e9 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa35a3052 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3a05ae4 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5dd1532 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0b7202d fc_rport_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb84d82e7 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbcced82b fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb125ad0a fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb913c84a fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4c72b8c fc_eh_abort EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5d3c86f fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9ba19e2 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc83d21da fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb34db88 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcca0eed7 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4fa527e fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdce05a11 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfa6ad9f fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe53643dc libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe559d012 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe571d251 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4420d23 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd875266d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda7a6427 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb4f6c11 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdceb4b55 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd072a8d fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde907570 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2f4fab0 fc_lport_bsg_request EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5c9e2e0 _fc_frame_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeca85cc5 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xef5f03f1 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf213bb62 fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfbaadec7 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfce816e4 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffbc2e65 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3f843414 sas_resume_ha_no_sync EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x846fbc22 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa9f8d1e9 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc6ba7e2c sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcb329dd7 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x5e4dbf91 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbf01fc3e sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc0f4ae7d sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcf1aaa3d sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0ea1a793 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x13c15114 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x21dc2a93 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4d16694e qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x689b774d qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7eeb678c qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7f05cbf8 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x988df8de qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaf09c787 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc42963d1 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf855ed5f qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfdbf68d9 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/raid_class 0x325af5bb raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xf51371b6 raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03164774 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x044f510c fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x228be00c fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2fb888b8 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xe08b934c mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x23657a30 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x499cda3d qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x781be71c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7bd18013 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x89708d3b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8f3fdbae qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x90af41d1 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x91cb5246 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb9d70770 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbbb410d0 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd21289b2 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7134ab6 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x20367dc7 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xe94a4f39 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2b350615 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x365be55d fc_remove_host EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4cde4934 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x80a1339e fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8c52aa6f fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c4ed4e4 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9e3928c2 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8969f9e fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc79dc40f fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc7d0f580 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbcbb369 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcfd32234 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd488a7ae fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe0deb73e fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf9f4259f fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x118c53e4 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x14f41ea6 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x183909fd sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d7194de sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1dd76843 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x263987c5 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x300c03b6 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3425b963 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35d0e3d0 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d4ac1a8 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x502098dd sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x53fe3e2f sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x589428a1 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f350659 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73ee6d5b sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x856b58ab sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x887d23c2 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x964f610f sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf98cb53 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7325dff sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc61af2c1 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcd463efc scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf2fd8ad sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7452284 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe93f466f sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9df5173 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec6a8f95 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedbd6c45 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf46cd13d sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x073fed20 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x24d8a1e3 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x40cdcfa6 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x462ed092 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5396a848 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x593a3bc0 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x70d7b8e0 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8ab00bcf fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9594dd35 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb1a9eed8 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb223a9a8 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc33ef414 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc8968037 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdd51a2f9 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe6c0238f fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xec343a03 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xedf6d875 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x164a8f18 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e9aaac4 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2669ead7 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2696ca77 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26d1a83d scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ee549f9 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x317a54e4 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36b886bf sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3affa490 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e1fad11 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x47bb613e sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5862b16a sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60cf807a sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x759ac851 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7877151d scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78d6375b sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7df7a5e6 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82923fca sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86d84aa7 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x927d2c54 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9afd2d17 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb258d41b sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe45a986 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf942bd4 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4d81e4c sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc73af916 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6f81f7c sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdc974d0f sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2cf6b86 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2bbe27ee spi_display_xfer_agreement EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4784abbb spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4d905ed3 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc75d42e3 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x30903f2b srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6d867f61 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7b374f5b spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb6024b10 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xda50910b spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x307fe12a srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x688e4a89 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9cb6d1f0 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd33ddbf0 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xda982772 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4167215b srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6443e5a4 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7f743239 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbae9bd08 srp_rport_get EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x21e76a68 dpaa2_io_get_adaptive_coalescing EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2bc276ca dpaa2_io_update_net_dim @@ -4470,450 +4470,450 @@ EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xfa0aedff dpaa2_io_set_adaptive_coalescing EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x07564e82 cmdq_pkt_assign EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x081d1a1a cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x12491524 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1c5fdb98 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x127c5658 cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f3ed632 cmdq_pkt_jump EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f6fab3f cmdq_pkt_write_s_mask_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3fc19424 cmdq_pkt_write EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x45dae4fc cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x52baad3d cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x578699c0 cmdq_pkt_finalize EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x58cdc788 cmdq_pkt_poll_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5a123a5e cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bfd584c cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x79e483a4 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8aa532b3 cmdq_pkt_write_s_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8ab965b5 cmdq_pkt_wfe EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9194f23f cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9aa4e2f8 cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa40c93c8 cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd08d09b3 cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd529f27b cmdq_pkt_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdf8340fe cmdq_pkt_write_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe86c98bb cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x7e68420f of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x255f5a35 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x03fd0fcb geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1e2bee5e geni_se_rx_init_dma -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2248e72f geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2955dea4 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x31888acc geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x36b9db7a geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3e90fbdc geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x46db4371 geni_se_tx_init_dma -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6f4e0ae3 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x97350927 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9cf653cb geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa05d8f61 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb4d68a3d geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb856a1c8 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb986b003 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe93ca394 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf4d3bd2b geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf595508b geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf601d108 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x02251219 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x05c9e16c geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x077bbc2d geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0aff1702 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x216aefb7 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5355ed60 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x75f9186d geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x90abebc0 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa66c1cd0 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb1454854 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb9e17a48 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc4529d1c geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc9a28dd2 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcff06f64 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd61eaac1 geni_se_tx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xdc63c256 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xddb3f4a3 geni_se_rx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xecb3cab8 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xed1bf7ed geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x10269cad qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7fedfb35 qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef79335 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21e5697f qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x19c8a975 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x220c9e46 qmi_add_server EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3176bb39 qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x532c3746 qmi_txn_cancel EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6b59abd9 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x729db313 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x74d0df84 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8239ad91 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9a1f125e qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9eabb252 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbfe73efd qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xde8a76d5 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x67e96c98 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9c6d4f50 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa56155f1 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa8d839b1 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdbf34882 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf66c0cef qmi_handle_release EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x4fc3a78e qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0af009f3 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xe3344472 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0409e647 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1287dff3 sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1c535d4b sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d2c34c5 sdw_stream_add_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1d8f7ca1 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x18a04280 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x19456914 sdw_compare_devid EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2294ec3b sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x249ecdb8 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x25a53770 sdw_nread_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2a53ae0f sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2e06ab69 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x30fdee72 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3832b3da sdw_bus_master_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3f3f08aa sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3c47fdee sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x44a1d23b sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x44b4617b sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x56761378 sdw_nwrite_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6a2eb320 sdw_update_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x715e59f9 sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x72fb8275 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x844e280c sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8bbf2a09 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8e5c59ad sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9d4fd2aa sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9d58dada sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x73621f3b sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fd54194 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x816f3da5 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8292ea7a sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8aeaa782 sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa00ce59f sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaacb41c6 sdw_slave_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbdccdbfa sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2b935da sdw_nread_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2c5c0fe sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc714610d sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcc9cc365 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xce622b6b sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcec7f90e sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd39c31eb sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcbd42f00 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcd7b678f sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd6333248 sdw_handle_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdbb8e7c2 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe0ef1eaf sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe4260e11 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe4d2648b sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe6fe42aa sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe95cbc3e sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdc94e653 sdw_nwrite_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdd956fbd sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe0aba5f0 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xecc4446c sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xedd59093 sdw_bus_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0394bd1a cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0cfcf590 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0d96a103 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf925b37c sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1fa92a06 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2a84f043 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x32593fc7 sdw_cdns_exit_reset EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3ad057d4 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x41fab5ad cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x454bb1a1 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x47b76ca4 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6a8e968d sdw_cdns_config_update_set_wait -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6b46efc4 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7e828dbe sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x832700f8 sdw_cdns_config_update -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x85a2a202 sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8bc84e1c sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x956c15d1 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9e0dd010 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa5e118f0 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xac833ce6 cdns_read_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe19cd600 sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x69c68d75 sdw_compute_params -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x783574e7 sdw_compute_slave_ports -EXPORT_SYMBOL drivers/ssb/ssb 0x05b3c510 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x120b5fb1 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x129a0086 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x1bb8827d ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x3951782b ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x41d61255 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x502adbfb ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x55ebcf2d ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x625ffbc5 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x6be1700d ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x9548718a ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0xac1bf01b ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xae0780df ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xb33a3128 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0xb6a3e324 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0xc0f443ae ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xc30b9cbb ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0xc5c681b1 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x358a3987 sdw_cdns_config_update_set_wait +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x432538e5 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4dced564 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x59013a94 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5ae58e9f cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5d2ad04b sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5e1e1864 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6f38748b sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7456ee1f cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa781d0ec cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb4bd2d3a sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc1f6429d sdw_cdns_config_update +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe4ce9ff8 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xeb95daf9 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xffcc7c46 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x8e165721 sdw_compute_params +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xf993eebf sdw_compute_slave_ports +EXPORT_SYMBOL drivers/ssb/ssb 0x03825900 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x078037cf ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x0a770108 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x14d42550 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x2a17c64f ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x34d40355 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x4908057b ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x56380770 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x69f726c5 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x6c4beb63 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x8232b075 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x941fcac7 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x961dd553 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x9b395ce6 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xbe38153a ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xc1af559a ssb_commit_settings EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcea02744 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xcec3187e ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xdcca18ae ssb_pcicore_dev_irqvecs_enable EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf45c9f9b ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xf4e927b7 ssb_bus_resume -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2010975c fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2a9590a8 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3017ba53 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3578de6c fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x41cc29d1 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4619d9a3 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4892f3c3 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a831744 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57182ee3 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b183a14 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d41dc2a fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8c474414 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9119cddf fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ec2ab96 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaeda2f0d fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xafc7a579 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb48f3c43 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2a900a5 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc93f0b22 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca150807 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcad47876 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd30891e9 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe61a98c5 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeeeb6f7f fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf93cacd7 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb041bdeb gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xd541cf3b gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xffc60dd2 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf6010f55 adt7316_probe -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x05d01f71 nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x313f48aa nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0827a5e4 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e9c46dd rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12498445 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x143040bd rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x15498ac8 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/ssb/ssb 0xf31ecb65 ssb_driver_unregister +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x063c9033 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2fe81fc9 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3b9bcade fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x59dc0e2d fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5d9bfc01 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6258b9db fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x668954b6 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x729a3af5 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74253f71 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x761e46b2 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78825893 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x88a824db fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5b4e827 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb76a76b6 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7a47fd3 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbba14608 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbd3779ca fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc39f24a fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd2efff4b fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd75642e0 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda9c82d8 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc1b138e fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8e76ce3 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf1a79aaa fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xff55e572 fbtft_init_display +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2a9084c8 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x960aa455 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xdcf0dbf6 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xbd9c2646 adt7316_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x0b10dc64 nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x2272fe58 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09c6e0db rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c1c2299 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1872e287 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1cdcb9a4 rtllib_wx_set_essid EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36e0ed53 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e1a1466 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ecb12be free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x492ea801 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e9008e5 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x519e1f74 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x52c674ed rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53445531 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55b3c260 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62d0912f dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6500d78c rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65bd735b rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67372c0c rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x69e2b4fa rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6fd116cf rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x723778ef rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x764e0f0d rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f18a00c rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x855f738e rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8777ebe2 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a002f3b rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f3eddda rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x93e7359f alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94ebffb5 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99b2f9a8 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b77dfff rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9cb53370 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e456c70 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0e634d3 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa72afca2 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb88df80e RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb5f88df notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc058ee2a rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4edb0d4 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce6e6020 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3d8c096 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdca04b97 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdefa9b90 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5d1f187 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7e129c7 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed28e37e rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed7edd1c rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0de09f9 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7ed3126 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0027ede1 ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0715015f ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e642595 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15a7d42f ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16235c3c ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19673c31 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b26ddd5 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25bdf39d rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fd7fb89 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30d83558 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x313795f6 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32423082 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a2c34cb rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b33c044 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40775fd6 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45835bc0 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x459823c5 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5072155b rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5509cd70 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57923c19 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6079ab6c RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64765ec1 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6adae54c rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7bedc22b rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82b73e47 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83be30a6 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x861da1f1 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b5a4850 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91c5745d rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95e2f45b rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x974c7ae7 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x974e7f57 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x976e1cec rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99210cab rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e995b95 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0ed2c9e rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2d2d6b7 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa82d56a3 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1101009 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe6cc4ca rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc438e74a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc66f45a rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd206805b rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfa38329 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe032b814 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe53f65ad alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5ba4e56 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9c5ff6d rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb4917da rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xebe0faf0 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5369a4e HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf61b4c6c rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e70684e dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f9e746e ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16652fac ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1afa48ca ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x200415ce ieee80211_wx_set_mlme EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26b740c2 ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27f2f2c8 ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d8491ad ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2fdb5c8d ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30ee0c17 ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d3d6302 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e3bdcfa is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44993244 ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a38abef notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x559d28f8 ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56480aca ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65210561 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2351de32 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2478555b is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x266ea7b3 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2df7feae ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33c56ba1 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3810726e to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x397dfb03 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44d47131 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x452d766a ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4851a20e ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51004e01 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5adb5f61 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60025020 ieee80211_wx_set_mode EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x684b2a1c ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6923b46a ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71274b2e ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8228a5ad SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x831d5461 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97e57db9 ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bfde8c5 ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c04b5ed ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cc5dea4 ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa29a4dfa rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5f2c2c0 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab3a4202 ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2f930e1 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb32c01bd ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3328617 ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9b3fa27 ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaf98b73 ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc18761f0 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc45f0414 ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8d9c9fa dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcade0dee ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xccb62caa HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce69e6dc ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xceafda8f dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd15263fd ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1df3dda ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3a7b45f dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4fb1495 ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8f9a59e ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf721400 ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe033df6f ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6981e8d8 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69c091cf dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ea470bc ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6eac3102 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x726f6285 ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x762fd7fb ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x836cdf92 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87381656 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88f4c139 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a0ff523 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d754ddf ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x935e0f33 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x93807294 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e74fdd8 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa13b73cb ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1ac6294 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa35ea5d6 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5343995 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5853b9d ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa73d4469 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad138ddc ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb620b556 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba6f61b4 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc6deedf ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5fff8e4 ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8014315 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc83e0a93 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc87593e9 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb2f8fb9 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3815356 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5dd7458 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7804d4c ieee80211_start_scan_syncro EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe498349e ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0854cb3 ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8ff4ac1 ieee80211_get_beacon -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05a06542 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x11f0fbd6 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a5f6b10 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20ac0178 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x259343bc iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2780c3a6 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29e0d82d iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b8007b4 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x394f3fd5 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bfbc0fa iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d15a39f iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42d7c976 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42e057cb iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x438c04a4 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48b9dd2f iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49ce8480 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b436297 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f6221e2 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f8d1f3b iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53b24ac8 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x639969ce iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c83e85c iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ded3b1f iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70cde4de iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75e316e4 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e08ade0 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82539f63 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84527eee iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x849a036f iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9c1f69aa iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2950b7a iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaaea2b35 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb92dd17f iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9db86d2 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd45e86f iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe8f6cb0 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc17f79b0 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0124c1e iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd0a41b40 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde00bd19 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe76f85fb iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed60c3ce iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf23efea4 iscsit_response_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8709513 ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5c76b89 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfda0b7d4 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0300eb73 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0490a1a9 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05da4787 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x063d3aff iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08838928 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0cb717cf iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13ba6a2c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d413600 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26b29cde iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c019cf1 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e5e3f45 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x30a11079 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39c1960a iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3a5ea345 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43af1bea iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43ba71b6 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49bd8769 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4aea2142 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4bb0fc32 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50b136bf iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x533e5861 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6874dc47 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a385513 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f825969 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70afbc84 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73667fd3 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84aa59d6 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86f5d1fb iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a89065c iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ed18006 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90b3b9f5 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1abc7b3 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb35a07aa iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba3331d3 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7bf72c8 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc967ff95 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcec317af iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd48aa51c iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdc4cbc6d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf898a45 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6d6ddef iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6ddfeca iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7a0a1dc iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecc7cb59 iscsit_tmr_post_handler EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5e6a7b9 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa86dadd iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/target_core_mod 0x07469fcd core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x0810b953 target_register_template +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6451048 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/target_core_mod 0x025d6a49 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x02eb81fd transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0573e566 sbc_get_write_same_sectors EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x09765f76 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f3e50ee target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x125bd906 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x093fc5c3 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a503ae9 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc2f443 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ce28a22 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1193d833 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x12cb87f2 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x137409c5 sbc_dif_copy_prot EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x163ae09f spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x18f4846b target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x1ae75517 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d786e46 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x2033b0e7 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x228499aa core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x229fea0e target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x24a14b1e target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x284ff6c3 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c9db59c transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2df51b27 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2ec74f05 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2f4b90eb target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x16f00d86 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1cbacf53 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x22f6d4f4 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x23008134 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x28539959 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x285773bc transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ef7e8c0 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x300a4197 __target_init_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x3350d87b core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x3956d200 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x357e08fc target_show_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ace37f0 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x3b88da7e target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4056a8e1 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x42149d90 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x43dedbf0 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x451358f8 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x495fa407 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x4b5692d5 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x571a56bc target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x57c69b21 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x43dd9001 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a8eac79 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5083956d target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x592f9b62 target_submit_tmr EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f6c3b8c target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x606dd212 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x69b7a0de spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x6be52e92 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6d17e9ef target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ef069cb transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x6f171903 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x79222d28 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x7bfda9d9 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x7d7fb5be target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x813a2a4a core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x8164db0d core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x8245ceb8 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x831ef82b sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x864d4696 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x86ee1378 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x894b9ed0 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f655590 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x91a49a85 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x94a0e1be target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x99b79c3d transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa444759c transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xa65273cf transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xa853d4b9 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xaacefb9a sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x65d14ba4 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x701b3977 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7044002c target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x776ec0e1 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e820133 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ea1913f passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x81a67888 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x87c2ff8e transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c229124 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x901349f3 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x943e9703 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x947c5ab1 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x99da94bf transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x9aa8d785 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6fa4ffd core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xac35ea12 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xacc6a890 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xacf2d6bf target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xad8d2e40 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xae28a698 target_send_busy EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb63485c2 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xbf4e1ac0 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0c0ec8b transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6a47b60 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xca45e916 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xcbe0ba3b transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd39c542 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0xd607668c target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xd94af313 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xde3c8313 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0xdeef3e73 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xdfaa8600 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xafac5f62 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1e468c7 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc19ba6b transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xbca437f0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2369b88 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc729e978 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7438b09 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0249645 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4a01efd target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9c6698b transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb9be7c9 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcc1394b transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf41b0d1 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe24ec507 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3728542 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3f9ad48 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe58d1ddb transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5d9ed69 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xe60e5b63 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7902721 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb6a73d0 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xec7bf5d2 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xed9930a2 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0d73e4f target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0fd773f core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3a0146a transport_generic_handle_tmr EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf41cd1f1 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xf648006d transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf86c0627 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xfab28710 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd2d6bb7 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xfdf6f2db transport_backend_register -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x36aee142 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x9a6452e0 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xaa3aa5f4 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb101d68c ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb91f0bb0 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe7dac9cd ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x1d341b1f tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xc25d546b tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x2891ca50 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xf687e865 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x5059cfe8 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xb259b064 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb3c54791 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x01ec4d42 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x06a52ece usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1b9ef49b usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x25f0ab3f usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2b4f5e74 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x32ef837a usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b7b570c usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x401ba3e4 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x88247af0 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9aac33f7 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd2dd5ce2 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x100384fb usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc537ba2a usb_serial_suspend -EXPORT_SYMBOL drivers/vdpa/vdpa 0x4d0c0e11 vdpa_set_status -EXPORT_SYMBOL drivers/vfio/vfio 0x0a8402f4 vfio_pin_pages +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7482e12 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7ee2a9a target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc95922c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x29159b9d ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x46329825 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x569d071b ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5b06b450 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5dae220d ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x93481ba6 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xc469028b tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xca38e080 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x6bdf52bf ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x6c27e718 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8e31798a usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x0b847a16 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x96fb280a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1c3df824 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5489fd42 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5e505f9f usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6b12ed78 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x795b9906 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa0e91592 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb5c14054 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd3d010e0 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe91b223b usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf8726123 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf9db82a7 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x0911ca0f usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x379960e5 usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0x87b47c54 vdpa_set_status EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x6004a773 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x240efecf vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x3d51ee96 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x73077bc2 vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xe017795a vfio_dma_rw -EXPORT_SYMBOL drivers/vhost/vhost 0x359398d6 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xb238660d vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x8663aa01 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x92230c7e vhost_chr_poll EXPORT_SYMBOL drivers/vhost/vringh 0x22535a6e vringh_abandon_user EXPORT_SYMBOL drivers/vhost/vringh 0x22f44e7d vringh_getdesc_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x31848eae vringh_notify_enable_user @@ -4945,131 +4945,131 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xd8535ad6 vringh_init_kern EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern EXPORT_SYMBOL drivers/vhost/vringh 0xe08ccbed vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/video/backlight/lcd 0x297c3074 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x2d97e81e lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x79aecd7a lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x7fa3bcdf devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x45c646e6 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4f375cfe lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x724af990 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd2a7c695 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 0x20097060 svga_tilecursor -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3b5db1a2 svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6d4415a4 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x82392d80 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5f90177b svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x64b38322 svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8a21c74f svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x93af7198 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9d5fd26c svga_tilecopy EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb3aaf4cb svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb68582f1 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb9eadaa0 svga_get_caps EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe511688d svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf3527bc4 svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x3eb7cbf9 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x7d4cfaa4 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 0x5ccc365f mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xff34a908 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x22aa08bb matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x915e1275 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xaa9910b8 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x494c5b49 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x859de332 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9b21a1a6 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9e0d4289 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x0a503d71 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xe95249f4 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3248d3c9 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x37b61327 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x55d0daed matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x79f8e752 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x8b5c2445 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xbcefc43d matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0249ccb5 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4dc3db10 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbd1fdb88 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4c80c643 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6856a832 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x77203de5 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd3077095 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xfa8f1982 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x2636c42c matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3fe5b577 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x923dc156 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa368ea0f matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xee168574 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x836d83c8 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x988cb72a matroxfb_g450_shutdown EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6233e67b matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x636bc884 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x658a0651 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xac9d3d31 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5eb7278c matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x637378e7 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9e56c218 matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe5c45e78 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdd3a6e4f matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfcf5afdb matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x52ddf4d3 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7d61b409 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb208a5b1 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc1fe9b07 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x41d4d7a2 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x52f9f964 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x25485336 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xbe2cb139 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x13719d23 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x9aecd088 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xa00a43d0 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xf262df35 w1_add_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x15944c82 __fscache_resize_cookie +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x24f6c111 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2dbcfc2e virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x34cb510a virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4fa895d4 is_virtio_dma_buf +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa0ae7366 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xae7981d0 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xaf7b8b1a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe990352a w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x36a928eb w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x3cb852cc w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x43461171 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x6b98b959 w1_add_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x05dac72c __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x08ead68b __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0e64b497 fscache_dirty_folio EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x282da18d fscache_acquire_cache EXPORT_SYMBOL fs/fscache/fscache 0x2b389369 __tracepoint_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x2e5f5985 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2dcd092b __fscache_acquire_volume EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x3225dd5a __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x3dec4e26 __fscache_write_to_cache -EXPORT_SYMBOL fs/fscache/fscache 0x3fecf48e __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x31141ce4 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x395152b1 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4140b2d8 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x431bf215 fscache_acquire_cache EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space -EXPORT_SYMBOL fs/fscache/fscache 0x45452fa6 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4441b800 __fscache_invalidate EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4ba51ff9 __fscache_relinquish_volume EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4dffa8bb __fscache_use_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x54bff4c3 fscache_put_cookie EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem -EXPORT_SYMBOL fs/fscache/fscache 0x5a39ba0c fscache_relinquish_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5c16a918 fscache_dirty_folio -EXPORT_SYMBOL fs/fscache/fscache 0x66662f9e __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x56da9a33 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x6049e183 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x62f55cb6 fscache_put_cookie EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x6eb12cc4 fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0x71fb0e58 __tracepoint_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x77e19a42 __tracepoint_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x80c14167 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7b5a7095 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fd7b3f8 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x829e5070 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x84626fc3 fscache_relinquish_cache EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters -EXPORT_SYMBOL fs/fscache/fscache 0x8e3983fc fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x91e5bb1b fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x960306e7 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x95ef233d __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9604b9dc fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa90ac95e fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xa634235e fscache_withdraw_cookie EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xba3c515c fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xbe0e139f fscache_withdraw_cookie EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xd27dd138 fscache_cookie_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xd283785a fscache_caching_failed -EXPORT_SYMBOL fs/fscache/fscache 0xd642184f __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xdc42c42b __fscache_acquire_volume EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xe4498546 __fscache_begin_write_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe5263c3b fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xedefdd50 fscache_resume_after_invalidation -EXPORT_SYMBOL fs/fscache/fscache 0xf32274bf __fscache_relinquish_volume -EXPORT_SYMBOL fs/fscache/fscache 0xf32e7247 __fscache_clear_page_bits -EXPORT_SYMBOL fs/netfs/netfs 0x06f29d15 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x50488df0 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x679b785a netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x9ebdee76 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0xff01fcdb netfs_read_folio +EXPORT_SYMBOL fs/fscache/fscache 0xdcec86e3 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe0849fed fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe0eb1e15 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe11fc6f6 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe3887e1d fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xea053a2c fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xecc99f1b fscache_end_cookie_access +EXPORT_SYMBOL fs/netfs/netfs 0x039210b1 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x045e3b72 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x6fc2ce90 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xb27229f3 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xf09eea85 netfs_stats_show EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x3df5c805 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x41199e65 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x45ab6201 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x64a52772 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x8a7a8eef qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xe9c1f382 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3b630fc7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x710c9eea qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x9a792f6e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xb16fddae qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xd48560ed qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xff65c823 qtree_write_dquot EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -5092,16 +5092,16 @@ EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed +EXPORT_SYMBOL lib/lru_cache 0x14497cae lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x15a62e97 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del -EXPORT_SYMBOL lib/lru_cache 0x2bbaf267 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find -EXPORT_SYMBOL lib/lru_cache 0xc92a8655 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative @@ -5141,873 +5141,873 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x1bdf4292 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x40dabcb8 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x59816eb0 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6ce6f53d lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x775f40f0 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc10ef2bf lowpan_register_netdevice -EXPORT_SYMBOL net/802/p8022 0x42050be7 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xab48585b register_8022_client -EXPORT_SYMBOL net/802/psnap 0x3eb62cda unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x3ef4332f register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0394d296 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x04ae017e p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x076b2cae p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x111f2b9d v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x1987a728 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x24601ffc p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x33dea1c1 __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x3460367b p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x37624541 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x3a15d33e p9_client_fcreate +EXPORT_SYMBOL net/6lowpan/6lowpan 0x184cf81d lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x373a73a8 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc5fe96f7 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdf3bf231 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xef9d3d8a lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xffadb378 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x37dd7171 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x7334a1a2 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x971088ec unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xea53ba66 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x00270b6c p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x012752e7 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x01c3246c p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x067030e6 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x06f90ab2 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x092df469 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x100c24f8 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1c66e27f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x1d12c528 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x29ba93e2 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2f97202d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x30fa9965 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x335229a1 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x38188807 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x38195b92 p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x40fd5c97 p9_client_readdir EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4b6dbe04 p9_client_setattr EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x54802327 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x548de2d9 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x5f6cef17 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x6046f4d8 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x62d20587 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x68f4c975 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x6ab39a1e do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0x71fbef46 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x556bc228 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x59a91214 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x611f0a62 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x654c691b p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x66ec7170 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x68378746 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6f5cbe4f p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6fea9eab p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x754ace13 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x75855bf2 p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x772f2bdc p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x79b3e26a p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x7e539634 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x81ad3d28 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x88ee8893 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x893c619d p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x8ce46f3e p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x919b696f p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x7bbccea3 p9_client_symlink EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9742b862 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x98169135 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x9a7ccc4a p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x9c087fbe p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xa18ab76b p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xa21506bd p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xb432905e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x96f62d7d p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x97364423 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x9cdcf324 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa65adee4 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xaa46cb63 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xaa4a08da v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xaba9de12 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xac312e64 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xaee0d0c6 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xb1a2b688 p9_client_write EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xb74107a6 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xb8558d81 do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0xbe0ec287 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbf165a8b p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xd08e5b00 p9_client_destroy EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd3a05606 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xd86239e2 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xe0113f79 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xe443b9db p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd62d5f7a __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xe40ef471 p9_client_disconnect EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xeae22bf7 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xec2d0f33 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xeda191bf p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xedadd417 p9_client_mknod_dotl EXPORT_SYMBOL net/9p/9pnet 0xee437897 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xeebd19e2 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xfe111bcf p9_client_getlock_dotl -EXPORT_SYMBOL net/appletalk/appletalk 0x18892540 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x9995955f atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xa0c87644 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xe75497c7 atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x0b6125cc vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0x283d34aa vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x28dc6b3b atm_alloc_charge +EXPORT_SYMBOL net/9p/9pnet 0xf6982466 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xfcb11daa p9_client_attach +EXPORT_SYMBOL net/appletalk/appletalk 0x2bd2aa6c atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x3476bb05 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xa20106e6 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd507b003 alloc_ltalkdev EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x3da81425 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x31fd90fe atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x3c429052 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x43d87d02 atm_alloc_charge EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x59520819 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x669e6912 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x76ca91a6 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x844e9c1f deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x88fca2d1 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x571efb64 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x683f7551 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x814a596d vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x8714b65f deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x883cd925 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x8b948f39 vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa353a539 atm_charge EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb5bb4564 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0xc5f2def7 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xdd317ad6 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xd49f3c73 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xe6ef33ba atm_charge +EXPORT_SYMBOL net/atm/atm 0xf360743e atm_dev_release_vccs EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfaa5efac register_atm_ioctl +EXPORT_SYMBOL net/ax25/ax25 0x12b6c8b0 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2a282117 ax25_ip_xmit -EXPORT_SYMBOL net/ax25/ax25 0x30a410fd ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x3eeed93d ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x32f3008f ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4637ae8e ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x4cac6c95 ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x7ab7afde ax25_header_ops -EXPORT_SYMBOL net/ax25/ax25 0x8acdb55a ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x588a0709 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x63695967 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x76239eb3 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x95df9307 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xaed8064b ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd037b24f ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf36ca7d7 ax25_ip_xmit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03c0b747 bt_accept_dequeue EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ae33681 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x163efca7 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c363654 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x11617431 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x160d7534 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18efd774 hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d17beff hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1db9bb0f bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20125a1d hci_conn_security EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x23c51097 hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27a127e1 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a9caef0 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c686e7f l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2db2ebb5 hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e53e418 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x315b4faa bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x396bb6f0 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4628ec22 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x481b91aa hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c2b6abb __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c55cded hci_devcd_complete -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4dc8a686 __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ecd6589 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f188213 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x515a63b2 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ccc4ae3 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x64bdf621 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6790382f l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6beb5d4e hci_devcd_abort -EXPORT_SYMBOL net/bluetooth/bluetooth 0x78d30d56 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x226b0240 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x271d596d bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27ec40f5 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x287cd269 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x293acb58 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38b256b3 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x397bd6b8 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ae7a9d0 hci_devcd_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d79c221 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d8f848a hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x41934b75 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x465870c0 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5065cd46 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52fbd583 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53bf56f7 hci_devcd_append +EXPORT_SYMBOL net/bluetooth/bluetooth 0x586f4dc8 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5969eac5 hci_devcd_complete +EXPORT_SYMBOL net/bluetooth/bluetooth 0x675c2103 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68ebc228 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f204eea hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x72e820e5 hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74cecc61 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7718d2bf hci_recv_frame EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x805da7d9 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x819d20d7 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8213db35 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e0302fb hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7db97256 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x815b79b0 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x835aaf13 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8deea406 hci_reset_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x94e3b113 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x95dfcb76 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa061b1d5 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c1bac17 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fdd8808 l2cap_conn_put EXPORT_SYMBOL net/bluetooth/bluetooth 0xa36d67be hci_devcd_rx EXPORT_SYMBOL net/bluetooth/bluetooth 0xa60137a1 hci_devcd_timeout -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaae11ce9 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0644f4b __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1e250d3 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb306341f hci_cmd_sync_submit -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb71f2105 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2c3d165 hci_devcd_append_pattern -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3b33440 hci_devcd_append -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5003451 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc837f91a l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1c2383 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc84a0bf hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8b7cbfc hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa580b7a hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3536096 hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9786f46 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0890352 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3bf5103 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc669b321 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc922f86c bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9c26e8d hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb161919 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce1df89a hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2e61b7c hci_mgmt_chan_register EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbf6fcdf bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd9375db hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8aa8823 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdaa7638d __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc984132 bt_sock_register EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfa5d479 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5655334 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe747ec55 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7fd798f hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe89f78c7 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe917b97d hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xed925151 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeec47c33 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3c0291c bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7ccc5bb hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7d25cfd __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa2a46b4 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfaa62ce9 hci_devcd_init -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1095df6c ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1c77d64e ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x38c6a9c7 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x49c8c1ea ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x89831c6c ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe3041268 ebt_register_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde902188 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe07d2957 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6ffbfe2 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf34f2efc bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9d51a96 hci_devcd_abort +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff10561c l2cap_conn_get +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x33f1d51a ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3b0d0d19 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6c0e61c0 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6d08058c ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc069fc56 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe07e4ceb ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x086baad1 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x0ca948a9 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x19053db8 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x2d060f6f 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 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x675564e9 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/caif/caif 0x72a19a32 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x76fc205d caif_connect_client -EXPORT_SYMBOL net/caif/caif 0x80c4e3df get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x59a96105 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x63f315df caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x4460c48a can_rx_register -EXPORT_SYMBOL net/can/can 0x459de1ff can_sock_destruct -EXPORT_SYMBOL net/can/can 0x71886d3f can_proto_register -EXPORT_SYMBOL net/can/can 0xa067bc6d can_rx_unregister -EXPORT_SYMBOL net/can/can 0xe3fd29dd can_send -EXPORT_SYMBOL net/can/can 0xef965984 can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x02641195 ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x028301ef ceph_release_page_vector +EXPORT_SYMBOL net/can/can 0x765852a3 can_proto_register +EXPORT_SYMBOL net/can/can 0x99d79a36 can_send +EXPORT_SYMBOL net/can/can 0xaad179d9 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xb253d894 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xf5b4e599 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xf79e6e3c can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x042ba498 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x044d8f9b ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x05601959 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x0651f686 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x0aedd261 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x0c0ccc7e ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x0c841929 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x0ef0c542 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x11742a09 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x052a05b7 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x0aaaa39d ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x0de4a4a0 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x0e868775 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x11d94276 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x1616619f ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x14cfcf72 __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0x159fd45c ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x18b3a4f1 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x195fe0ca ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x19a67ade ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x1d1c95ff ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x1f7440c8 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1aad32c8 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x1be560d9 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x1cec422f ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x1d8fafc0 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x1ea77f2f ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1ed9afa6 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x278ba0db osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x28343de9 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x28344654 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x296ea7af ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x24e7a5ca ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2835fff6 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x2a27aec0 osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c43e40e ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0x2c8bce47 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x2d7c9a97 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x2dcf6417 osd_req_op_extent_osd_iter -EXPORT_SYMBOL net/ceph/libceph 0x3037ac3d ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x353704c2 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x36e6cb25 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x2ba03200 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x2bf6eca2 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2cd0c4b2 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x3269ae3a ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x33097217 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x3532ff03 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x36ca89b3 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x377baaf1 ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3ac45b92 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x3bcb3a0a ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3b0ece63 ceph_monc_wait_osdmap EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d8b992e ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x4117821c ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x3f27093c ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x42f61ecc ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x456b11b3 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x426bcf30 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4820f875 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x49d63c18 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x46bd74f5 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x484fa21d osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x4880edcb ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4bb4a3cc osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x4c7a4563 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x4ef7a16c ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4f3355d3 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x4fb14145 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x4c6c180a ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x4cb8bc19 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x4ddef981 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x4ea53ab4 ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x52ad2631 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x559060b4 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x57574d01 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x57bc5b97 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x57cda480 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x584ba76e osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x58aa7bc8 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x5a1b3c2f ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5d2017f3 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x6058e4e4 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x6230ff65 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x5b7d9994 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x5bb4f082 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5e351861 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x5f9ddb0a ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x5fff1100 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x603dc176 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x61166f4a ceph_osdc_put_request EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x657bd863 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x6748980b ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x67a05515 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x640890d6 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x6817e2bc ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x684874cd ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6a8ec8c4 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x6bec2909 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x732fda9f osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0x786b6613 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x7dd2b618 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x8158fa53 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x840eb942 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x843f1e42 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6ae328b7 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x6c42431b ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x747b0cf2 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x769d3d0e ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x7e0d2181 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x7f587187 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x8333f4f5 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x843fdc10 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x864eb2ad ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x8674cdae ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x86b035f6 ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x88c3f8d0 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x8b04a63b ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x8c74c534 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8ca573a2 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x909f5305 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x91c2cd03 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x87e22320 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x8f002ab8 ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x97347f3e __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x93490642 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x970d8e1e ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9ad16f8e ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9bf48975 ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9f16bd00 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x9f16ea23 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9d4b1be2 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x9e550166 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x9eb9e5be ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x9ef5aa3b ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa0299273 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xa1f6d2cf ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xa21d8ca3 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xa6147951 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xa61dd9ec ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xa128ed55 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xa3d8c680 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa6bb2e48 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xaab3b000 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xaca575d4 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xaca7f1cf ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xaabce8ec ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xaf530bd2 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xafb3271d ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb0460e86 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xb08f2cc2 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb8231112 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xb95d26d7 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xbaf8966a ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xbadebf3d osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xbc22979f ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbc8f389a osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbe3f987e ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc09a3536 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xc17675ae ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xbe4898ba osd_req_op_extent_osd_iter +EXPORT_SYMBOL net/ceph/libceph 0xbec57d7d ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xc02ba7d0 ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc36839e2 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0xc9ad635e ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xc4c132d3 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc6cba935 ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcf39c859 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd380a127 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xce4dbe25 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xd0d06bfe ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd2ddf7fa ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xd31a2cc0 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xd34b6790 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xd485c05a ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd5fedaea ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0xdc962de8 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xd9e90ff7 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xdda49ff8 ceph_monc_do_statfs EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe0ea38bd ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0xe2d117f1 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xe3195fdf __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0xe1d5ac01 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xe2e43dab osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe8bd4064 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xe8df872e ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xec0c8081 ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xec81dda7 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xec79575b ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xed2b7d76 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee931f5b ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xeece8111 ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0xeffa3833 ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xf220a694 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf3f15f1c ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xf484e474 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xf4c67aa7 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xf8675aba osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0xfc28bd50 osd_req_op_extent_init -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x788162e5 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa0b745e5 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x24d2def3 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0xa150f6be hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1c750067 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x27b45010 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x6975c2ac wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x709f49e4 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x888a5711 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xcd0bcbb7 wpan_phy_for_each +EXPORT_SYMBOL net/ceph/libceph 0xf5c4a220 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf5cdba08 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xfbe0eec8 ceph_monc_renew_subs +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6d319d16 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x9282bb84 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0xb877754f is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xe7558de2 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0833b951 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x22aa6a31 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3cf4a327 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4962ce64 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x543c6f4f wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7dad2f01 wpan_phy_find EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x506d421f __fou_build_header -EXPORT_SYMBOL net/ipv4/fou 0xc682c563 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x850b022e __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdb2fd0d7 __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x82a30916 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa0c857ee ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa7112e38 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa934cc5c ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcc0187d3 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd8d28b10 ip_tunnel_md_udp_encap -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x08c625de arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x86093472 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xab3a11f9 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe14bfde3 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x053f5e68 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xbbcbb807 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc9a9717c ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe9e99b59 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x421222ef xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xc2d5ba4b xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x01f994ce udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1bb5813e ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2f48c289 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x69e89f4e ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x816d224c ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c38d461 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb9fcef6a ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbae8a292 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xef0d5dbf ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf2dc3b69 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x364d8833 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4398a460 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd3179cc2 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf1a6b440 ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0xd8b94907 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xe2cdb26f xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5bd83a23 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xaae6a18c xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x065c774c lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x1e6a4a79 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x22590aef lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x6ade057c lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x87029885 lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x95e4783f lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xefc450cd lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xf4d75ee0 lapb_getparms -EXPORT_SYMBOL net/llc/llc 0x3353b39d llc_sap_open +EXPORT_SYMBOL net/ipv4/gre 0x4ca0d3e0 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x17f5a77c ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa0860bbc ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xaa163ced ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe5adb7a2 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xea6b3f93 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2414029e arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb4150be3 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc7df5164 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdf9785fa arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x25149681 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5baef975 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd9217a3d ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xee36f50a ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x149d235d xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x55897cf8 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x2b1966e9 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x13a6f60c ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x54a3715a ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5a3f62a9 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5f54c64d ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x695bcf1f ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x773d0cfc ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x979b1022 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa33ef2fa ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd1ea4a9b ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6c0604ea ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x71390d88 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xebf0800e ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf9279bad ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x1de8bba7 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xc07bc06f xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3f9411ad xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd0e06da9 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x083d7323 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x540e3e97 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x673b5861 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xa23d5605 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xa56e600c lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xa82a518a lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xc25eb1e4 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xda07ec30 lapb_data_request EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x4b573864 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x4cdd2034 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x3a612444 llc_sap_find EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xb99fb767 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xda5b7ae2 llc_add_pack -EXPORT_SYMBOL net/llc/llc 0xe20e924d llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xfaf0f7ca llc_set_station_handler -EXPORT_SYMBOL net/mac80211/mac80211 0x06784ab9 ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x085517e9 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x0abd56dc ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x0e585213 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x0f618825 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x10880121 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x10b515a5 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x11a98a18 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x1234bd59 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x128db84b ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x14b236bb ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x187a190c ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x193fbe33 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/llc/llc 0x5b7549b9 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x5e85ab57 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x6d96cb1b llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x91b180e9 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xc0064c5b llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xd364b0a0 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x0074a6cd __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x011be34a ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x0bb40558 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x0c5694b6 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x116a65e8 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x1172d54f ieee80211_sta_register_airtime EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1b78b10a ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x1aa01f87 ieee80211_tx_dequeue EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1ddbf859 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x1e314aec ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x1e402816 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x1f03db8d ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x2165c5a2 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x228e05ce ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x22f44b74 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x24a9b0a2 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x29b903b1 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x2cc1f304 ieee80211_beacon_get_template_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0x3177f9ba ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x357336b3 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x35916df0 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x37eb3a26 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x39046699 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x39149fec ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x1fcce93b ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x266332bc ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x28d6d524 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x29361726 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2caa84cd ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x2e3e6603 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2f11aff3 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x334896f6 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x344060bd ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3647bc74 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x3739b6fc rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x391292e7 ieee80211_reserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3bf0ac86 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x3dc6dd74 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x3fa3c695 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x4070cc01 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x4742c77e ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x482ffe10 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x49e3732a ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x4ea9129a ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x4eb8ff5e ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0x4f6aae9f ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x516ee6b1 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x5192c90c ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x5a2ab05f ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x5a305022 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x630204b8 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x6498c485 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x667e1df5 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x67268e91 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x69ecbe9e ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6b9e448f ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x6d30f845 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x6e707655 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x6fa6eedc ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x71f2bf2d ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x74b0fd58 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x799a556b __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7d6fa753 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x7ed9a763 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x814c6d95 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x874cfa55 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x8d9f8c41 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x3d25119d ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x4083cdb7 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4267c003 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x44a238db ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x467db18e ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x46a7c001 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x47d441d0 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x4a6e21a9 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x4e3f47e3 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x4ed8613f ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x5102b535 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x529208ca ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x54fbfe4f ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x56ca80c0 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x59cb2cd9 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x611c552a ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x6a107fb2 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x6b94e621 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x6cb03e58 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6d2e2dc9 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6e82497c ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x70c35e0a ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x72aebf9e __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x73f91f01 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x743669df ieee80211_refresh_tx_agg_session_timer +EXPORT_SYMBOL net/mac80211/mac80211 0x74fc9b83 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7784e4d3 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x77b8921b ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x7a3a5d21 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x7c6415ea ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7e889d84 ieee80211_beacon_get_template_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x83deb664 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x8414ce64 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x85304886 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x85854e37 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x88cbccbb ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x8acd8261 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8c4211d2 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x8ecc333a ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x93a31a6b ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x93f50ed9 ieee80211_ctstoself_get EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x963aeb19 ieee80211_disable_rssi_reports EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99bb8fb8 ieee80211_beacon_free_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0x9a2849d8 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x9adaa459 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x9bf8fa92 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x9c4c3ee7 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9e635e06 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x9efa4610 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x9f18963e ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0xa2112458 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xa2b0e358 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xa4a6df9d ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xa5e95de0 ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0xacbcbfcd ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xadc4ea77 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xadf11226 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9f554727 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xa2f6a24e ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xa39871c1 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa3a4ab56 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa44ce0e4 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xa6e7d2c6 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xa756a749 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa76b5785 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa95f0185 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xac7de326 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xadabf811 ieee80211_stop_queues EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb2666fe9 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xb54cb0af ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xba88b737 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xbcdf4517 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xc0c5ed4d ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xc1126b9e ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc96083c8 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xca547454 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xcdc9045b ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xcec73d54 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xd0c3cf33 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xd1c50cb6 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xd241889e ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xd46624ae ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd5fd8f44 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xd7ee9455 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xd8e003b4 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0xe1478e58 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0d723 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf38d1f7f ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xf39b3dbe ieee80211_refresh_tx_agg_session_timer -EXPORT_SYMBOL net/mac80211/mac80211 0xf52e5a43 ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0xf5546104 ieee80211_beacon_get_template_ema_index -EXPORT_SYMBOL net/mac80211/mac80211 0xf8d556a5 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xfa67c3d4 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xfab676e1 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xfeb95b32 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xff1da668 ieee80211_wake_queue -EXPORT_SYMBOL net/mac802154/mac802154 0x165b1ae8 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x18367a3b ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0x33518c26 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x5d0363ea ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x5fb71508 ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0x7ac7632c ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xa3d3b140 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xae8f7058 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xd8d962cf ieee802154_xmit_error -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0d9bf091 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1046d180 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x11eda922 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2016ce82 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3476b5ed ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x469fe430 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55e76139 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x648975eb unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7037ee9c ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x742ae423 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9ecba114 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaa335ddd ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0dc5aeb register_ip_vs_app +EXPORT_SYMBOL net/mac80211/mac80211 0xb2dc98db ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xb3ae31dc ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb6bbe1c6 ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0xba088a8b __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xbcd27ff0 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xc00e8677 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xc32533b8 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc3496d6d ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc52bae07 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc958a31a ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xc97167ed ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xca09562e ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xcc169175 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xccb5c747 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xcfe733ba ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xd1d24c89 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd23ecf47 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xd92e7362 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdb031ba6 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xdc208683 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xdeddd9a3 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xe0c188fa ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xe1a30bac ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xe1d533f8 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe861459e ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xeb572766 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xf4f4f5c8 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf9a1e650 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xfba034ed ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xfcb948a6 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xff6e345e ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xfffd7784 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac802154/mac802154 0x0b1423ed ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x274b36f4 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4d4e67cf ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4de28b76 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5c20e390 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x5dcf0a70 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x894ed0b0 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x9301993d ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xc2152594 ieee802154_configure_durations +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x11a94532 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3df6aaf7 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7029b540 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x703ef8ee ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x820453a4 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f707740 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8fb3ea1a ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x94458e12 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96e27afe ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbe8f2960 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc20fe9b8 ip_vs_scheduler_err EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xefe45560 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf058fb1b ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3318d0fa nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe648f8f9 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe83df92f register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe89a7ba4 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1f53140 ip_vs_conn_out_get EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xcba366e7 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x460e52a0 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x724a8e62 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xa4585f2d __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xd89a6d5e nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x0fe5b3b0 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7c5ebd47 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x8df18aca nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xe9e12af0 __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1cbb3174 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x30f3746e xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3a84777a xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x491ea7c8 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x548805f1 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x6fbbace5 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x7ed1745c xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x828de2d2 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x54c6e4ce xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x613452ae xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x704e3b76 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x78c3b591 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x857c92ce xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa3b9e4c5 xt_register_targets -EXPORT_SYMBOL net/netfilter/x_tables 0xa9b2566f xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xae000815 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc -EXPORT_SYMBOL net/netfilter/x_tables 0xcc5e0600 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xdf1a4f58 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe73e83c9 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe386e53a xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x006f49a6 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x026f4080 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x0d868760 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x0e23caba nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x12d760e0 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x2eb125a8 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x39cdab92 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x4197e6e5 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4ab210cd nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x4bcca22d nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x4d790d20 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x4faf14f1 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x6c2b31e6 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x0a1d563d nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x116907bd nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1276a746 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x157a9ea0 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x1ad8b719 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x1e186ac2 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x4502cb52 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x5bc2adf0 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x6cdc919f nfc_hci_register_device EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x7bf74042 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x8df036d7 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xa485d4f7 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xc0236356 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xce347d0b nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd078236f nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xd75d1c1a nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd820a813 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x8d456539 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x956d75df nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x96e7bbc0 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x974ebe45 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9ca34212 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x9e46e7f5 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xa3d2804e nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xab510537 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xd3238213 nfc_hci_connect_gate EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/nci/nci 0x0e24a0cf nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x11cced73 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x1c91127f nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x2239da64 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x2412074a nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x2ba53fe1 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x2fc3fe3a nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x3b785bfc nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x3b96aa04 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x4246103f nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x479705a0 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x5243cf2e nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x708c74f7 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x74f8c207 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x751ebbc5 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x82d334d5 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x83b067b2 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x83e0aa56 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x8828ea16 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x8ab23806 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x90a0014e nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0xb3e92df7 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xb6efdda9 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xb6f037dd nci_prop_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xe0d0ff67 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xe153f82c nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xef90c76f nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0693d1c8 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x0cfd29f4 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x15cc1ef9 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x1b0da116 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x2185a1cd nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x2b17192e nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3d33716e nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x3d45ab8b nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x44a691a9 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x4a5067b6 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x5b7450b8 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x5f82a247 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6c375cd9 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x714383a6 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x74503836 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7578a6e6 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7d0739bb nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7f2a599f nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x9f6224f4 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xa4990fd8 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb61693d5 nci_hci_get_param EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbb5bc73e nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0xcbe4b722 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xd30edb60 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf7938bbd nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xfc428d5f nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nfc 0x130fad5b nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x1ed11403 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x2347dd11 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x2738f5ac nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x494cc791 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x4a0d5243 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x57031e4f nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x6ed69412 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x7b197fb2 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x882b54b7 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x8dbacc70 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xa296f1ee nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xaa856f10 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xb2c5e160 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xbf604830 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xd76d14f7 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xdefdac7f nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xdf9e08d4 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xe3ce103d nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xe3fc3eb7 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xef617598 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xf0a28357 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xf52517c8 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xf5a8d1a3 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0xf64fe6ba nfc_class -EXPORT_SYMBOL net/nfc/nfc_digital 0x1ad0909a nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x522a6b14 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x99a54e34 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xc03af0bb nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x45ed103c pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x5cd50467 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x5d6019cd pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x75753ebc phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xaa820c35 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xbe63bddd phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xbec26df0 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xf63c6111 phonet_proto_unregister -EXPORT_SYMBOL net/rxrpc/rxrpc 0x172128fb rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1f96bacd rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2172d6f8 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x26ba6469 rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/nfc/nci/nci 0xbab0c880 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc05c26b1 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xc84e706f nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd832ab53 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xde1911bf nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xdf75a7d1 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xe01e0638 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xed191870 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nfc 0x1657de38 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x171dd811 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x1ed344a4 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x1ffe649d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x277a2644 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x2aeeb081 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x33f2b2fa nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x36a548b2 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x42b7bfaa nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x467cb074 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x4d4c66c9 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x52e28283 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x58b79f87 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x6e2e49e6 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x778b1ea7 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xa98a78a8 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xba21e53a nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xbe292995 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xc01c5374 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xd8c19086 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xda2e5eab nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xdc11e584 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xecf1c959 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xed7124d5 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xfc990022 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x38f164ea nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5274b55f nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x6f9f6082 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x93ce71aa nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x23cf6079 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x370a52fa phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x43b69fb3 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x5d497182 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xa5cfe870 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xa838830a pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa869ab8a phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xeea56a09 pn_skb_send +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a186a48 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x28c85df8 rxrpc_kernel_get_epoch EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4453fedb rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4e2ae5fe rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4f4af555 rxrpc_kernel_put_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a79d4b0 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7ebefe3c rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x889837a9 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8b4c1048 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8fee5f8f rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9335c473 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9ee8d996 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc755366 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf18038a rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf33a294 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf5d712f3 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfa9837be rxrpc_kernel_abort_call -EXPORT_SYMBOL net/sctp/sctp 0xba212473 sctp_do_peeloff +EXPORT_SYMBOL net/rxrpc/rxrpc 0x456788f2 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4e4ad6a9 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8b6a6953 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8fff9700 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x95838863 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9f024f4b rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb96b1c0c rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb9fcdfa0 rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbc23e9b8 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc9179bb4 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc931ad7b rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcf565556 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd3f1f83f rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe849743e rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xef0d54f3 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8d7c3ef rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf9d001d5 rxrpc_kernel_put_call +EXPORT_SYMBOL net/sctp/sctp 0x914a6eb0 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x0843730a __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x3dc12ecb __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x76da5303 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x8a73ae76 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x9025068b __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xa053541c __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xc4ad1479 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xd24addfc __tracepoint_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xd45d907e __traceiter_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xdd96c5cd __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xf47b4ee2 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xfb31ef70 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x31ab4577 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6b0c8b8e gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb5aafc0e gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x0891479b xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x68115949 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xcfba5866 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x258dd06f tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x30674b09 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x76992baa tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x7eb42ca4 tipc_dump_done -EXPORT_SYMBOL net/tls/tls 0xfe605cd2 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x01867be0 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x0351b60e cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x035aa5ae cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x060173e1 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x060ff949 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0691e73d cfg80211_new_sta +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2cdb1b13 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x44c812d7 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x63e2877b gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x5d99f4b5 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6246b35d svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc34d5402 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x14cc7730 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x3f5f6e71 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x65624573 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x987fb943 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x8a265a11 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x01525b5d __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0a3e6d1d regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x07c1e377 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x0a1c7c0e cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0ce3259e wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x0f1c4824 ieee80211_data_to_8023_exthdr EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x11d7d1c7 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x127cb340 cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x13c58e52 ieee80211_get_8023_tunnel_proto -EXPORT_SYMBOL net/wireless/cfg80211 0x145e1754 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x1530e878 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x1659a44e get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0x181540e0 cfg80211_chandef_usable EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header EXPORT_SYMBOL net/wireless/cfg80211 0x1b82a85a cfg80211_valid_disable_subchannel_bitmap +EXPORT_SYMBOL net/wireless/cfg80211 0x1bdf2ff5 wiphy_rfkill_set_hw_state_reason EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1cf93a1c wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x2000f3fa cfg80211_assoc_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x203100f5 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x2339c4b2 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x24ed81d7 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x2583f361 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x258dde07 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x25efa58a cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x26c65f67 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x1d8bea45 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x1f0ebfe0 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x209c2ba1 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x21086159 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x21e8c4f9 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x24a9efb5 ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x28002481 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x298e3674 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x2f64c917 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x31ce2bd0 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x342d0893 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x34b0b1bb cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x28bec53d cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x2c2e1bf2 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x309d0d67 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x32559151 cfg80211_chandef_usable EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x366d36ac cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x3663f973 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x384eca1e cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x39c55d45 ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0x3aca71a1 cfg80211_get_ies_channel_number EXPORT_SYMBOL net/wireless/cfg80211 0x3c744e95 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x3c86019a cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x408be75e cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x420760d8 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x3ef2875a cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x40083a9c cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x43d86679 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x47199a56 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x4850cc1d cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x4a746723 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4826428d regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x4a01e019 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0x4abed7d4 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x4cddfb39 cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4eb551b3 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x4e19f2a5 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x515941d7 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x5267030d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x53a1a6e6 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x546b492b cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x54aedf0a __cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x56bb126a nl80211_send_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0x5889e32d cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x5a488ba1 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x5c9307ae cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x5d094fe5 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5f39f456 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x61797c56 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x62f2a58e __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x66080c5c cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x67252e36 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x6793cfa2 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x593129db cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x59cb831b cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5ac1dd4d cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5c330fe3 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5ea36ddb cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x60b7be90 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x60d97f5d wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x621be470 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x63b697ef cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x66bc0487 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x68c8daeb cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6e538484 cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x70de2a05 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x71346ea6 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x7860ca01 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x7948a2cc __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6f76b7bc cfg80211_links_removed +EXPORT_SYMBOL net/wireless/cfg80211 0x6ffffb83 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x70779df6 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x71a343d8 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x72bcd213 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x73ff81be cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x75820b8f cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x75b5a3c8 nl80211_send_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7af949d3 cfg80211_auth_timeout EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7e757ee0 cfg80211_del_sta_sinfo EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x844dd4f5 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x83446a68 cfg80211_unregister_wdev EXPORT_SYMBOL net/wireless/cfg80211 0x85de3f6f wiphy_delayed_work_timer -EXPORT_SYMBOL net/wireless/cfg80211 0x8701a0ff cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x8846a312 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x8ca8e6cd wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x8e040ad2 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x86a58961 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8eb1fdc5 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x8f8fd8cb regulatory_set_wiphy_regd_sync EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x943b42b4 cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x966af94d cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x997904b9 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x99b5b864 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x9cba6fe0 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9130e617 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x944d5ba4 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x95a05a91 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x96b2b3c4 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x9817a471 ieee80211_is_valid_amsdu +EXPORT_SYMBOL net/wireless/cfg80211 0x9a0d5bff cfg80211_pmksa_candidate_notify EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9daec138 __cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x9f53a36c cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xa41beca6 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xa8dadde6 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xaa989286 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xaca80a08 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xace0c4f9 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xad5923e0 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xae19ecd1 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xb4d611c6 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0xb522be1d cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xb55274ae cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xb756d5d9 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xb8e3f889 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xb9a475c9 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xbcdff8d3 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x9e4c92e8 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xa29b6819 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xa2d5f5bb wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa6406254 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xadb7beea cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xae2da556 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb1897690 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb32561cb regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xb63e1b3e cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb81d6abd __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xba311ff7 ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0xbae2a796 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xbb9d4355 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0xbd5febd5 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xbe500ef1 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xc1a3f9c4 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc23c4034 cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0xc3fb97ca ieee80211_get_response_rate EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc61ce5a5 cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xc7751a3d wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xc81f7c8b cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0xcaa3cb14 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xcad7ad9f cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc62da1be cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xc650c693 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xcb29db9f wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xcc0483e3 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xcc07e6f4 wiphy_unregister EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcc3b50ee cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xccb39fe3 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xd2249e0e cfg80211_links_removed +EXPORT_SYMBOL net/wireless/cfg80211 0xcd594244 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xcf568d32 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xd0079434 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xd00b5054 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd328d855 cfg80211_assoc_comeback EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd5d35228 ieee80211_is_valid_amsdu EXPORT_SYMBOL net/wireless/cfg80211 0xd6c87a05 cfg80211_defragment_element -EXPORT_SYMBOL net/wireless/cfg80211 0xd72dfe1e cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0xd96a45b0 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd8467fe1 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xd86e7dab cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xd8d5a92d cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0xd9878ca0 wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0xd9e929ab cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xda217b18 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdb9a2fc1 ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe3fc7add __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xe537d960 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xe7d473d1 cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0xeb80e400 ieee80211_strip_8023_mesh_hdr -EXPORT_SYMBOL net/wireless/cfg80211 0xece8b13a cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xeff2b666 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xf162a362 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xddcaf2a5 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xdfa190ca cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xe188ab06 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe4458d17 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe66d86a2 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe67fd3c6 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xea5b616c cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xea8a971d freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xf17df6c5 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf3768e43 __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf703df2a cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xf755d5e7 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xf835c6ef cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/lib80211 0x304676fb lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x4062edbd lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xa66857a4 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xbe7e28a7 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xc13ea004 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xdb6341d2 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/ac97_bus 0x43b9d3d7 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xda6b6a18 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf987278f cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xfc7d9645 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xfcea3ad3 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xfd2eb803 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xfd47fe36 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xfdc1b0c6 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/lib80211 0x269614db lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x625b4244 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa4ba3aee lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xba188093 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xbee29210 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xe3af97b9 lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x8309ba99 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x4da8124f 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 0x23738926 snd_seq_dump_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x37fb0126 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x38c7fd4f 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 0x7b8699eb snd_seq_event_port_detach -EXPORT_SYMBOL sound/core/seq/snd-seq 0x843bf134 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0x85cd59a8 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x9b9e8089 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa4076ef5 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xa6e19f8e snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xff073cb1 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xbf10d556 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc429f1f6 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x74769de9 snd_midi_process_event EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -6019,436 +6019,436 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xd67068ac snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x05d3a6fc snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0x05f1bc71 snd_ctl_rename -EXPORT_SYMBOL sound/core/snd 0x0835c840 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x0c74dc13 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x0c88aa96 snd_info_register -EXPORT_SYMBOL sound/core/snd 0x0f948785 snd_ctl_free_one +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x017f4072 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x09c58280 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x0c81c1c6 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x16f028c0 snd_device_register EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x2057cb04 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x23f86107 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x231736f8 snd_ctl_rename EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2615d6d4 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x2bd78e57 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x257eb148 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x2be36eea _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x2d1508a3 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x318113f3 snd_unregister_device EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x39e5a320 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x3a8f8e1e snd_device_register -EXPORT_SYMBOL sound/core/snd 0x3b36bab3 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x3d2eeba4 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x44b94b2e snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x4a3449e6 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x3a33a359 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x3dde205d snd_register_device +EXPORT_SYMBOL sound/core/snd 0x3fc33d64 snd_jack_set_key EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4b2fef1d snd_card_free -EXPORT_SYMBOL sound/core/snd 0x4ce52ef1 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x5c7897ee snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x5ffa6838 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x6442d2df snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x64f0a83f snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x729fc351 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x50110bf3 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x5bf07b8c snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x5c3d1c11 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x615dce56 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x621da400 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x63da4443 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x6465a81a snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x65a65107 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x6e6ef9e3 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x6eb89c34 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x716d1ba5 snd_ctl_remove EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x7875281b snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x7d25c242 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x8593fe23 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x73b12789 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x75f7f48b snd_info_register +EXPORT_SYMBOL sound/core/snd 0x773d937e snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x7de8f3f2 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x7f16a606 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x7f3ba059 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x7fce0584 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x80d6de4a snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x854ad0b9 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x8576e229 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x87ffab61 snd_ctl_remove_id EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8eba74b5 snd_jack_set_key EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x90285b07 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x9b7abaa6 snd_card_new EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa212b6f4 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xa439873d snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xa58dd02d snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xaabe7902 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xae72b552 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xa2417019 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xa2c4e5ad snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xa3da6065 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xb028c838 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xb1acf826 snd_ctl_register_ioctl EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb6a0f831 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0xb7a6704f snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xbbe7b4ed snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xc0a37756 snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0xc5594b48 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xb5fdc488 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xb6c4b820 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xc21d1a23 snd_ctl_find_id EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc5f510e7 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xc80321af snd_ctl_notify EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcd296101 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xcd7181ba snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xdbdd13f0 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xde377af3 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0xdfa3725c snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xe038cb64 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xe8cb5f25 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0xebcd96e1 snd_device_new -EXPORT_SYMBOL sound/core/snd 0xf2c362e4 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xfd196c1f snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xcdbd4c4b snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xda32837e snd_device_new +EXPORT_SYMBOL sound/core/snd 0xe05fad67 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xedb3d459 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xfd8f6cdf snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xfe13cd1d snd_card_free_when_closed EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x46baf1f9 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xd2df5f62 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x8233c66b snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x9eb01ce8 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xf0b30826 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x0e583323 snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any -EXPORT_SYMBOL sound/core/snd-pcm 0x02a6ee65 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x042b1f7f snd_pcm_set_sync EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x0ab74559 snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x0f8e667a snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0d4cffb7 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x0d8d4c68 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x12c8537a snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x1498402c snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x18691043 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x18a8989f snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1956b607 snd_pcm_release_substream EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1e49e6c6 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x25e5d4d9 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x270271a7 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x2bea1d27 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x3206fe99 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x323095dd snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x3744c3e3 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x1e607dd6 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x344e9842 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x3586c657 snd_dma_alloc_pages_fallback 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 0x3caebc21 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x3e2294cd snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x47ab29f0 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x4b951ed0 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0x4cdbed0b snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x4f42ad27 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x3abee5a8 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x438ad281 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x47f2175a snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4c0d4046 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x4d64f8a2 snd_pcm_create_iec958_consumer 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 0x53547baf snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x53e0e5e6 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x57e8aa00 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x5983713a snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x5b04151f snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5a873a85 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5c6044aa snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e6e51e6 snd_sgbuf_get_page EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60cde871 snd_pcm_lib_free_vmalloc_buffer 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 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x6d4ae885 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x6c4047d5 snd_pcm_hw_param_first EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x7320d243 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x7e3a7b56 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x73c0d5e7 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x7618f094 snd_pcm_new EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x898f7d78 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x92b81db2 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x8360fe18 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x88c3e7ec snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x8eb2357e snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x9128b0d2 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x92c60490 snd_pcm_hw_constraint_minmax EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x9cab0ac2 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x9d876446 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xa22a2541 snd_pcm_lib_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9fa7602 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xaa3a444b snd_pcm_hw_constraint_ratdens EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xac67c870 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xb15bcefe snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb392002d snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xad308793 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xad826f2f snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xaec5e79d snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xb61a462e snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xb7d233cb snd_pcm_set_ops EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xba290ce0 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xba5d981f snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xbb289018 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xcde611c0 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0xda7e3b2c snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0xe051a3fc snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xbe697f0a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xc8896d1e snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xc9c2b03d snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xcebc62cf snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xd22cfdc7 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xdec125bb snd_pcm_mmap_data EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe7f8e0a3 snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xee36175f snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xef350720 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xf28c5369 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xf455a220 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xf48ff61c snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xf4c8992f snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xf7f22b5f snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xfd1cbc9c snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xe5ea35f6 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xe96275c1 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe97aee82 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf686e7ef snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xf72a37dd snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xf85a01e3 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xf97966ec __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xff3f64a5 snd_pcm_suspend_all EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0077ac19 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x00f93a29 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x07207231 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x272ede94 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2a1cf877 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c44251b snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6262391e snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d417c4d snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x72f07764 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x82faf7a3 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8483d4a3 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x891fe189 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x89845626 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8ba1d03b snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9b2fd136 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd94ac150 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xec583f61 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf9e366ac snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0fc59937 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15bdf126 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x19ee9aa5 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d661aa0 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2e332a28 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x370a83db snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c1a4477 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x487fe137 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x67bd74b1 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7b7bcb1e snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x87f4523d snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8d3ddd43 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x95289a22 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x97372503 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9efdec0d snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc503711e snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd984ee46 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc53e2e3 snd_rawmidi_receive EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x1a0f50b2 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0x98e52d39 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x2bf6c944 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x3f79e715 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x4d269945 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x77552bee snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x79a5927d snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x92cb77de snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0xa06bb49e snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xb5275613 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xc1d88f4e snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xc2a6be77 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xc4b9c0b4 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xda3c36f0 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xe2f85798 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xf6ec4fa5 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xfc2e5b62 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x05822102 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x0aa3bde2 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x13ea81e5 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x17512604 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x20ae0028 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x291c51db snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x345d634c snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x75201eeb snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x84530a4a snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x981b9c01 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x98824dce snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xaf8699c2 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xc27ae3af snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xd302b6d0 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xdcbaea6e snd_timer_resolution EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xb7f278f9 snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xf7ffe678 snd_mpu401_uart_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x044c85fa snd_opl3_find_patch EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x087f85aa snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x204d0424 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x218f6f05 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x410568c9 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x65d6581f snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x729519cf snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc65e7bb9 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd752f782 snd_opl3_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x08edaa8f snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x074971c5 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4957afce snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7aec705f snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8d55c393 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8f1852cc snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8e85f1a snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xda3e2cb8 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe232abf5 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfe186daa snd_opl3_find_patch EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2726b61e snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x420620a7 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x55572769 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x80a57d60 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8c26a30a snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa07b919b snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd0c9c645 snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe3752a20 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2dd776b4 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa8221bc0 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb39474df snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc670cd76 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc8d74c35 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd275153f snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf14794de snd_vx_dsp_boot EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00bb2a55 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0370dced fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0389f110 amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08f259a3 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0eb3e118 cmp_connection_break +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf23d4796 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf796741d snd_vx_dsp_load +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04508036 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13518369 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19db9097 amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3372f979 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e2626af amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4332f4c8 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x475e8241 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ad4d937 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f01309e cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f76f073 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28c37d3a amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e6830bd cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2eacb26c amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f9740b7 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x314c4094 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x31bef653 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3ef3689e cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43f38191 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c3334f3 iso_packets_buffer_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e602044 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ae18e77 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77cebac0 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fc1e319 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5581785 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb698b772 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbeb7c6bf fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0447f91 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc229e1b2 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce0fa738 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd97ed59b avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe17394b9 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xec376f11 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeff8cf64 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa1050f6 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb73df4c fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc077e86 cmp_connection_check_used -EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x2ed51edc intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a6dd729 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x641d2238 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7b06119c cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x815f424d snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9420457d fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9990f05c amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9da9853f cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e1a6b0c amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa0fb64cc fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2be0576 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0c1a1d7 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb2433522 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc19ce22a iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd01f33c3 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd442b024 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbdfe7f4 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe70b14dc cmp_connection_establish EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb7b836b3 intel_nhlt_ssp_mclk_mask -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb147fa42 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xcaab2b3c snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1cc1c967 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2fa64f84 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7302afaf snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x852cbcac snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x896394d4 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa5a05272 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbce4c455 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf51ff000 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4e9dd738 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4fe06292 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xceff4b75 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf94edc13 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6708c7d2 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x857332e0 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x134a17a0 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x318e9806 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x52849481 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb070f7a8 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbfa2a9ad snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xca665d6b snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-i2c 0x49b9dded snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x4db13b8d snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5642d212 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x613ee12f snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x8831b8a3 snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xe15702f5 snd_i2c_device_free -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b67339c snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1eb4135c snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2627d29a snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x49b57d7e snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x523bc942 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6afb4bed snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x70a00d82 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2748cf5 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb12ec474 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb85df3d3 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcbb33a16 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcd10d42b snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd2ea2d8c snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe5e31a1f snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeae93933 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf59ce02c snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcb08e7d snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x04d76b96 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x17f05e6f snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1db01b68 snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1f05e978 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x21a6ee79 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4f7b286a snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x63313417 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6d99f973 snd_emu10k1_ptr_write_multiple -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9e125ba3 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc89701cf snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2d4d54a7 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3bddb0ec snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9a1a8a47 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0981522e oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0be974a1 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0dd00101 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2168027e oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5cb3f9e8 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5f93e84b oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64cef775 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70fb9dc7 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e49862f oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99bd21b0 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9e427306 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa268e24b oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3aba556 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa9659e4a oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc569255b oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xded4c81e oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdff2b1ab oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe49cfd19 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe705c65f oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf76e957a oxygen_read8 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x188102f2 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2db388e3 snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7d5c6ad9 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb62e5cf4 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbbe0d6b1 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb8ae9e73 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x60b2e6e4 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x98976d23 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4b2649cb snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x696e33bb snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8bd06ec2 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9f31b9b4 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb1a54353 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb42cef7f snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc75cc1d2 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe17536b4 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x63b2fe7e snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdbed1423 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xed211802 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf05dbbbe snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8c8661dc snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xeaeb4057 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x016943b1 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1b81ee85 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1d7c921f snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x795525e2 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x85c15ccd snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xad1d45a5 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x03b95152 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x08772203 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x804ba4d8 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x850af10b snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa94bce36 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xcd796437 snd_i2c_readbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x073d83c1 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07b3abba snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1cb030b8 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1febd55a snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d14710e snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x546ef826 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5dee488b snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6fc7c42b snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9017d5ff snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9164deb6 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9942ddf5 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9b16cf5e snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xabc16b80 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xac470c3a snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb91f5e44 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf96037d snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf7f8fe68 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x066b3a38 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x10381b7c snd_emu10k1_ptr_write_multiple +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1d4054a7 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2025d398 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x37bffa2b snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4d5c7dfe snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4ecb901a snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x51abdf24 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf09ede92 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf18feb43 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x93055a19 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd888ecde snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf2a87acd snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x019c2110 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x01a3b80c oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x29c9c6b8 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x317258fd oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x377353de oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d6f5bfc oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x40373f80 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60ce889f oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d8f80dd oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x83e0c482 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93c148a8 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9513315c oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98ee7c89 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d43d7ed oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd0b994b oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8406b1c oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc10afc0 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdd1188c5 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe5c72d3b oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe6418f39 oxygen_read32 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x366c4c32 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x37fb0316 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x894d39ca snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc3faff40 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf69cd7ae snd_trident_stop_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x02aae199 snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x5685d532 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xdeaff584 snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x79dc5229 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xbb578d47 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x0340a2a3 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x1be0fc69 pcm3060_regmap +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x38590da2 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x8046c7f6 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xbb9ac04c snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xa82bd9a2 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x67ff5f5b wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x1f50bf6b pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x4b6f30a2 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6a3ff06e tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x919f63e0 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x369e253b aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x69bff1df aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x6fefcebe aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x0cc51ea8 aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x9ac6f9a8 aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x265432d1 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x514261dd tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xbc21fd74 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x39712c70 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x730f56bf aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd297aa8d aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x1792e55c aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x943e4e3d aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x171a063e wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x5f1cd348 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x6e3dc2e5 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7160677b wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xffaa9ec2 wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x4fd59447 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x8d8990ca fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xbabf4446 fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xbbd22cb0 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xf33b59c8 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xb71862a4 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xe3485e30 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/snd-soc-core 0x45a0b4f8 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x4463012d imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xb2506ada imx8_disable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xbf4aa900 imx8_parse_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xd8888e82 imx8_enable_clocks -EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x551b5a95 mtk_adsp_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0085420d sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0500019a sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06a650eb sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ea531ed sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x140d0849 snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x301c4ee1 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x315219ec sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x341993bf snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34e35e30 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35d0ae3a snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35f10f2e snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x0f8ffc14 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x455a232d fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xd01b2192 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x4127ef47 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xd812ae6d mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x435a6868 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xe1c7d7ee q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0xf3231d16 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x09640f3f imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x91d420e0 imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xb561dc8a imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xc4949dd6 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x0013d84e mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x02b0cc35 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x05067935 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11c59c6d snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1fa2e1d0 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22dde29c snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x238cebd9 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23f33a12 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2703822b snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2da7761d sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2eac7a34 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2ee73100 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35649e12 snd_sof_handle_fw_exception EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38b2c5ef snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a9f492d sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3c3288ac sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4b83d9c3 sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e5873ea sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f0e5f23 snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x510eaf8d sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5200c1e6 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5619b118 sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6652e926 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x66badfb9 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c81c4b2 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x75351039 sof_set_stream_data_offset -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f02f9ed sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f571201 sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8239fbd7 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85c20285 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86d0dcde sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8dc56dd6 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9010102f sof_compressed_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x952e08fa sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f366b3a snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8c8662d snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4580786 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbd74daf9 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3360bd7 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc40f43fe snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4579cb6 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc82b2ad3 sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc83aec3c snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc84d9ad2 sof_ipc_set_get_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcbfaa094 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xccc6a34d sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce02639f snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf7c367a snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1105b72 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1d48a9d snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd20ddb8a snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd342e2f8 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda224334 snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb6ebf82 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7c0ac90 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe92c8468 sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef1e55be sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1d21cb0 sof_ipc3_do_rx_work -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf7da4c40 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf85bc7c1 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x74ffa31e sof_of_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x9dfa5fe6 sof_of_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xd74b98ec sof_of_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xdecf5867 sof_of_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xf0b87a90 snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x397ec5e4 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x72d5ed85 register_sound_dsp +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3ae35731 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x440518b6 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x501f30d2 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5204a73f snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53d5bc82 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53edd69d sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5adfa6c9 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61bd8caa snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x61daa507 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x62e60f97 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6647a55c sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x680f43e6 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ba5ac9e sof_ipc3_do_rx_work +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6dbba9f9 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ecd5d7e snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ff67c29 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x75412a0c snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78813a43 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d52338b snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90c734ee snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9151a01d snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96555092 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x99bfc169 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa31d38df sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa684bbbe snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa9be6a8f snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab0e79e8 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab1fd82d snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaea28f69 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb38f6889 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3d024ed sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8617739 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb89094f7 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbb8d7f8a snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbfc5b17e sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2bfceb7 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc664b432 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6e97837 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb87a0ed snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3b9a1e4 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd05bdde snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0463093 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0f67434 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe9c82ec5 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf21a559d snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfef7e162 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x121a49f3 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x1e3b68f5 sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x1e8f56a2 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x2a292e2e sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xf74f876b snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x68514190 sound_class +EXPORT_SYMBOL sound/soundcore 0x768a8aa5 register_sound_dsp EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x8d53d2bd register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x8e98789d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x912150ef register_sound_special +EXPORT_SYMBOL sound/soundcore 0x96c2a09c register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa536eb36 sound_class EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1ecbd8bd snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5f505cb4 snd_emux_free +EXPORT_SYMBOL sound/soundcore 0xee2dd86d register_sound_mixer EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7dba4898 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb69eb0b9 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbad02dc7 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf3b964b2 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x657c54ba snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x762e022c snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7b92616f snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa6633ac9 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc4c975c6 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe1fb398f snd_emux_register EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6458,5911 +6458,5912 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x2161ad73 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x9ec244ce __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 0x000239d1 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x00005537 dump_align +EXPORT_SYMBOL vmlinux 0x000bd082 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x0024eafd ppp_dev_name -EXPORT_SYMBOL vmlinux 0x004034d6 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x0042d9af inet_recvmsg -EXPORT_SYMBOL vmlinux 0x004b75d2 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x00510c59 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x005a296e mmc_can_trim -EXPORT_SYMBOL vmlinux 0x00711cf5 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x001e7400 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x002e46c1 serio_close +EXPORT_SYMBOL vmlinux 0x003aace5 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x004337ad dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x004827dc __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x005840eb pcim_set_mwi EXPORT_SYMBOL vmlinux 0x00928200 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x00ae4ba5 block_write_begin -EXPORT_SYMBOL vmlinux 0x00b04936 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x00ac6051 scsi_is_host_device EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00cf0f95 of_get_cpu_state_node EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e18569 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x00ead083 complete_request_key +EXPORT_SYMBOL vmlinux 0x00ec4716 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0108368b param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012b922a fs_context_for_submount EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x01345223 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x013978c8 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x013ad191 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x014314e1 rproc_put EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01487b31 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x0159a325 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x0161ccd6 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x016be117 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x0170b392 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x0170db66 pci_iomap_range EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x01813497 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x0187bd31 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01a4a37b qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01bb63fe mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x01bbdb30 pcibus_to_node EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c65ffc i2c_find_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0x01d0b020 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe -EXPORT_SYMBOL vmlinux 0x01df65ba sock_create -EXPORT_SYMBOL vmlinux 0x01fc569c input_set_abs_params -EXPORT_SYMBOL vmlinux 0x01fe66ca jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x01e5f064 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x01eb77a1 seq_vprintf EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x0215d8eb uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x0231b5f7 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x02367f45 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x02474d8c tcp_poll +EXPORT_SYMBOL vmlinux 0x0212d9c5 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x0217954b devfreq_update_status +EXPORT_SYMBOL vmlinux 0x0228bcdf get_watch_queue +EXPORT_SYMBOL vmlinux 0x023b73e1 handle_edge_irq EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024bc441 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x024c6013 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x024e3695 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x0257917b pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x0272df21 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0287a463 security_path_mknod +EXPORT_SYMBOL vmlinux 0x028f65c4 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02b44ec8 flow_rule_match_l2tpv3 -EXPORT_SYMBOL vmlinux 0x02b7a7bd ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x02a21b95 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c9954e jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x02cb602a scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x02e6ed66 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x02c2e0b8 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x02c314b1 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x02c6c606 inode_query_iversion +EXPORT_SYMBOL vmlinux 0x02eb3794 folio_alloc +EXPORT_SYMBOL vmlinux 0x02faf5d6 dev_addr_del +EXPORT_SYMBOL vmlinux 0x030b2996 vfs_create_mount EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0337ca2a of_property_read_reg EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror +EXPORT_SYMBOL vmlinux 0x0352df12 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x035918d3 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x035d25ab memcg_kmem_online_key -EXPORT_SYMBOL vmlinux 0x03608a40 free_cgroup_ns EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x0361b301 blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x0377d76b tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x038f288b sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x038d2127 devm_rproc_add EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03ac5690 pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03cda8ea pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x03d6c8dd dev_change_flags -EXPORT_SYMBOL vmlinux 0x03f3fbef neigh_for_each -EXPORT_SYMBOL vmlinux 0x03f48029 fman_set_port_params +EXPORT_SYMBOL vmlinux 0x03bd5baa iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x03c03f4e km_state_notify +EXPORT_SYMBOL vmlinux 0x03d79e6d _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x03dd5946 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x03eeb820 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x04024138 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x041294ef read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x04133a60 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x0407da44 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x0440c553 add_to_page_cache_lru EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator -EXPORT_SYMBOL vmlinux 0x04489f81 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x044910be sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x044be1b5 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x044d561f fput +EXPORT_SYMBOL vmlinux 0x044ea8a3 of_platform_bus_probe EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x045e6cbe nd_integrity_init -EXPORT_SYMBOL vmlinux 0x045e7274 security_sb_remount +EXPORT_SYMBOL vmlinux 0x045acf98 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x045f8c7a devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev -EXPORT_SYMBOL vmlinux 0x04679043 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x046c2680 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x046916cf vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x046f9d6e register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x04731b9f has_capability EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x047a252f ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x047a7ac1 __register_nls +EXPORT_SYMBOL vmlinux 0x047a1dcc d_drop EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x0486048d inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04a1b363 tty_unlock -EXPORT_SYMBOL vmlinux 0x04ba32d4 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x0488cc71 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x048bf783 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x0496ad89 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x04b285ab generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x04b2dd59 set_blocksize +EXPORT_SYMBOL vmlinux 0x04bacc5e __getblk_gfp EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x04dd9c98 __do_once_sleepable_done -EXPORT_SYMBOL vmlinux 0x04e2ed9b set_cached_acl +EXPORT_SYMBOL vmlinux 0x04e77430 dqput +EXPORT_SYMBOL vmlinux 0x04e8f463 inet_stream_ops EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04efbb82 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x04fe5602 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x0507f1bf inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050c46ee inc_nlink -EXPORT_SYMBOL vmlinux 0x05208f81 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x05144877 request_firmware +EXPORT_SYMBOL vmlinux 0x05148e88 of_node_name_prefix EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052cf015 ethtool_notify +EXPORT_SYMBOL vmlinux 0x0540a5bb dev_mc_add EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05546c7d __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x05515a18 setattr_prepare EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x05649494 netif_tx_lock EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x056f43c0 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x057c3a7e mount_bdev -EXPORT_SYMBOL vmlinux 0x0596767d filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x0597584c init_pseudo -EXPORT_SYMBOL vmlinux 0x05acc7de tcp_filter -EXPORT_SYMBOL vmlinux 0x05b2dad4 scsi_device_put -EXPORT_SYMBOL vmlinux 0x05d7c8b3 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x05865728 iterate_dir +EXPORT_SYMBOL vmlinux 0x05d47566 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x05d48ff9 kernel_connect +EXPORT_SYMBOL vmlinux 0x05fd0706 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x0604859d buffer_migrate_folio EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x060f8ff7 __of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x06141404 scsi_print_command EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061b6431 inet_frag_kill EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063429cc cfb_imageblit -EXPORT_SYMBOL vmlinux 0x063c2269 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x063e3807 xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x0644e54c filemap_splice_read -EXPORT_SYMBOL vmlinux 0x065f1f70 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x0652a57a netif_carrier_on EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06a66e91 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x06adf75b generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x06b1427e pci_match_id -EXPORT_SYMBOL vmlinux 0x06b39ae8 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x0675cf0a truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x067ec6cc is_nd_btt +EXPORT_SYMBOL vmlinux 0x067f0a34 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x06aae8a1 bio_reset +EXPORT_SYMBOL vmlinux 0x06ae986e ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x06b63f76 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06bfec23 ipv4_specific +EXPORT_SYMBOL vmlinux 0x06cfd7f1 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d4d5e9 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x06e9240a elevator_alloc +EXPORT_SYMBOL vmlinux 0x06e9e110 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x06eedbac vga_get +EXPORT_SYMBOL vmlinux 0x0708601a free_task EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x070c42d8 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x07222b9e debugfs_create_automount EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0744f556 dquot_resume +EXPORT_SYMBOL vmlinux 0x073c4fef d_make_root +EXPORT_SYMBOL vmlinux 0x0740b495 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x07473a9e qdisc_offload_query_caps -EXPORT_SYMBOL vmlinux 0x0755f59f blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x07562999 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x074ca836 vfs_symlink +EXPORT_SYMBOL vmlinux 0x07803a86 __scm_send EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x07887af4 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x078b407a devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x0799a17b mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b160c3 update_devfreq +EXPORT_SYMBOL vmlinux 0x07b4b2ec __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d6773b skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x07d69761 mount_single -EXPORT_SYMBOL vmlinux 0x07d70f60 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x07d8013c end_buffer_async_write EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq -EXPORT_SYMBOL vmlinux 0x07eaf71b ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x07ebc11a pci_free_irq EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f82a81 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x08083509 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x080c6137 filemap_get_folios_tag -EXPORT_SYMBOL vmlinux 0x080eeec1 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x081024ca skb_dequeue EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x081a087f tls_server_hello_x509 -EXPORT_SYMBOL vmlinux 0x081dc2a2 d_obtain_root -EXPORT_SYMBOL vmlinux 0x08299c02 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x081cefef flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082facda xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x08326e88 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x0834dc70 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083d2870 cdev_del EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08413fd1 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x084c437b to_nd_dax -EXPORT_SYMBOL vmlinux 0x084e782a empty_aops -EXPORT_SYMBOL vmlinux 0x086c58a7 phy_detach +EXPORT_SYMBOL vmlinux 0x084206fa ip6_xmit +EXPORT_SYMBOL vmlinux 0x084d2d93 write_inode_now EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit -EXPORT_SYMBOL vmlinux 0x087369a8 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x0891aa9b pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x08ab41de vm_map_pages -EXPORT_SYMBOL vmlinux 0x08b073d5 current_in_userns -EXPORT_SYMBOL vmlinux 0x08b26d8f blk_put_queue -EXPORT_SYMBOL vmlinux 0x08d48593 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x08db71a2 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x08db88fc phy_connect -EXPORT_SYMBOL vmlinux 0x08e10696 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0x08e245f6 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x0896e389 blk_start_plug +EXPORT_SYMBOL vmlinux 0x08a31910 tls_server_hello_x509 +EXPORT_SYMBOL vmlinux 0x08a476cf try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x08b91812 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x08c7c284 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x08ca3a20 xfrm_input +EXPORT_SYMBOL vmlinux 0x08d2c2d1 scsi_scan_target EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08e5f5f3 locks_init_lock -EXPORT_SYMBOL vmlinux 0x08e8ef75 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x08f3088f xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x08fa634f fman_port_get_device -EXPORT_SYMBOL vmlinux 0x090fcf48 skb_pull -EXPORT_SYMBOL vmlinux 0x09156daa brioctl_set +EXPORT_SYMBOL vmlinux 0x08f53cf1 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x08fa43af unlock_new_inode +EXPORT_SYMBOL vmlinux 0x090c9eb4 scsi_remove_target EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x0936ca94 vfs_get_fsid EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x093dd6c6 handshake_genl_put -EXPORT_SYMBOL vmlinux 0x09482409 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x0967990f set_bh_page +EXPORT_SYMBOL vmlinux 0x094195ad skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x0976752f fs_lookup_param EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09928028 serio_bus -EXPORT_SYMBOL vmlinux 0x09960b0d of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x09c4aabe pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x09d14140 pskb_extract +EXPORT_SYMBOL vmlinux 0x0995606d mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x0999bea4 kthread_bind +EXPORT_SYMBOL vmlinux 0x099dfd38 ip_frag_init +EXPORT_SYMBOL vmlinux 0x09b9afd4 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x09c53440 _dev_warn +EXPORT_SYMBOL vmlinux 0x09c8d8ee truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09dd4a09 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x09df0686 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0x09ead45c blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x09f1f4d0 __devm_release_region +EXPORT_SYMBOL vmlinux 0x09e78b74 retire_super +EXPORT_SYMBOL vmlinux 0x09f34878 param_ops_invbool EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a110200 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a3fe5f7 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x0a4ae91e devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x0a534057 __scm_send -EXPORT_SYMBOL vmlinux 0x0a697304 bio_uninit -EXPORT_SYMBOL vmlinux 0x0a6e9a9b cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x0a758e16 of_device_register +EXPORT_SYMBOL vmlinux 0x0a471ccc pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x0a47599a tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x0a72249c scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a7f6045 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x0a81aa35 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x0a7a1419 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x0a7d262a d_alloc_name +EXPORT_SYMBOL vmlinux 0x0a8487a3 netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0x0a92f126 vm_map_ram -EXPORT_SYMBOL vmlinux 0x0a948e56 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x0a9f07ae discard_new_inode +EXPORT_SYMBOL vmlinux 0x0a8e1baa vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x0a9086df tegra_ivc_write_get_next_frame EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aae9137 seq_printf -EXPORT_SYMBOL vmlinux 0x0ab17ebc skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x0ac24220 max8925_bulk_read EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad0bc21 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x0ae77732 security_path_mkdir -EXPORT_SYMBOL vmlinux 0x0af47346 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x0b01c684 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x0adbe5da dquot_operations +EXPORT_SYMBOL vmlinux 0x0af4541b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x0af5a24a inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x0b0bcd9f netdev_get_by_name +EXPORT_SYMBOL vmlinux 0x0b1b375f param_get_bool EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b341d43 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x0b3ef611 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x0b3fea8c neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x0b4c8fe2 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x0b2c8465 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x0b6dc6fc pci_request_regions EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8b8c17 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x0b9c28f7 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x0b96ccb5 wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0x0b9e1b0d find_vma EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba9bc83 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x0babc126 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x0baef95b dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x0ba19a8b devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x0baefe68 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x0bb2016c pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x0bb5dd4a dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0bb6be6b tty_devnum -EXPORT_SYMBOL vmlinux 0x0bb92ae3 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x0bb7754e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x0bb824ac nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x0bbd106f misc_deregister EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0be3de4f pnp_is_active -EXPORT_SYMBOL vmlinux 0x0be663fd eth_type_trans +EXPORT_SYMBOL vmlinux 0x0be685e6 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x0bf018c4 get_cached_acl EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c221c5d dquot_set_dqblk EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c27aa15 kill_litter_super -EXPORT_SYMBOL vmlinux 0x0c313b93 eth_header_cache -EXPORT_SYMBOL vmlinux 0x0c328387 blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c370b6c netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x0c393bbf md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x0c3a153f netdev_warn -EXPORT_SYMBOL vmlinux 0x0c5624c0 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x0c3d1fdd uart_suspend_port +EXPORT_SYMBOL vmlinux 0x0c4e3965 fiemap_prep EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c5d8322 blk_start_plug +EXPORT_SYMBOL vmlinux 0x0c5c9ffe vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x0c5e017e __folio_put EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c8a3ad5 cdev_device_del -EXPORT_SYMBOL vmlinux 0x0ca31818 __bforget +EXPORT_SYMBOL vmlinux 0x0c9cbc6f dma_sync_wait +EXPORT_SYMBOL vmlinux 0x0c9f99e1 flow_rule_match_control EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cc184be mdio_device_reset +EXPORT_SYMBOL vmlinux 0x0cb363d1 unlock_buffer EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cef233a ps2_init -EXPORT_SYMBOL vmlinux 0x0cf1e0a3 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x0cf2fd81 filemap_get_folios -EXPORT_SYMBOL vmlinux 0x0cf8c8bd file_path +EXPORT_SYMBOL vmlinux 0x0cf00169 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x0cff8031 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0de821 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x0d1ce50c unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x0d0cf111 is_nd_dax +EXPORT_SYMBOL vmlinux 0x0d1abb88 bio_init_clone +EXPORT_SYMBOL vmlinux 0x0d1db96b cdev_device_del +EXPORT_SYMBOL vmlinux 0x0d208081 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x0d235ffa mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x0d2b1483 pci_find_bus EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d3cdd29 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x0d3646fa register_framebuffer EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d5310f6 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x0d4ddbae neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0d501659 seq_printf EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d825574 __sock_create -EXPORT_SYMBOL vmlinux 0x0d8c0be2 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x0d95f347 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x0d5e3c16 inet_put_port +EXPORT_SYMBOL vmlinux 0x0d637559 registered_fb +EXPORT_SYMBOL vmlinux 0x0d706b49 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x0d89fe9b flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x0d92d96f jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x0d9c7072 ip_getsockopt EXPORT_SYMBOL vmlinux 0x0da37acd dma_fence_array_first -EXPORT_SYMBOL vmlinux 0x0db4521b dev_get_stats -EXPORT_SYMBOL vmlinux 0x0de004b5 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x0dea6d5f __destroy_inode +EXPORT_SYMBOL vmlinux 0x0de43d66 dma_mmap_attrs EXPORT_SYMBOL vmlinux 0x0deb72fc __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0dfc805e i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x0e0afd94 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x0e0ddb3b pci_dev_get +EXPORT_SYMBOL vmlinux 0x0e0586b5 of_find_matching_node_and_match EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e286d8e of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x0e3a15d5 ps2_init EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e44dd07 __invalidate_device -EXPORT_SYMBOL vmlinux 0x0e477aff jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x0e797be4 noop_qdisc -EXPORT_SYMBOL vmlinux 0x0e8ad97c __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x0e4c7c49 single_open +EXPORT_SYMBOL vmlinux 0x0e601e8c iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x0e6f0668 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x0e8867b1 sock_rfree +EXPORT_SYMBOL vmlinux 0x0e939cd8 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x0ea2f6d9 io_uring_get_socket EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb267d3 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0efce699 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x0ed868d3 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x0ee16e63 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0eea4c91 skb_clone +EXPORT_SYMBOL vmlinux 0x0ef8bd59 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x0f0327cf is_acpi_device_node EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0f2d0a tegra_ivc_write_get_next_frame EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f1cba94 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x0f2821a3 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x0f2f6ea7 pci_clear_master -EXPORT_SYMBOL vmlinux 0x0f3442f2 vm_insert_page -EXPORT_SYMBOL vmlinux 0x0f3452a7 seq_putc EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f3ff1d5 fqdir_exit -EXPORT_SYMBOL vmlinux 0x0f445307 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x0f538f4b rproc_shutdown +EXPORT_SYMBOL vmlinux 0x0f46202e param_get_invbool +EXPORT_SYMBOL vmlinux 0x0f46cc31 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x0f49960c tcp_seq_start EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f799fac cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x0f69c292 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9eba9b of_platform_device_create +EXPORT_SYMBOL vmlinux 0x0f9c5aed inet_frags_fini EXPORT_SYMBOL vmlinux 0x0f9fe992 sockopt_ns_capable EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb252d8 __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fd60967 rproc_detach +EXPORT_SYMBOL vmlinux 0x0fbcb0cd mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x0fc03a90 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fec2cda ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x0fedb247 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x0febe6e1 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x0ff1447e netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x0ff2c61f netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat EXPORT_SYMBOL vmlinux 0x100bddf8 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x10177f5d tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x100e43e2 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x100f4e29 iov_iter_revert EXPORT_SYMBOL vmlinux 0x101d7ff5 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x10220c15 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x102c99d9 rproc_put -EXPORT_SYMBOL vmlinux 0x1032cb29 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x10345931 __serio_register_driver EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x10366513 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x103dd279 mmc_gpio_set_cd_irq -EXPORT_SYMBOL vmlinux 0x1052f5db block_dirty_folio EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x105b5fa7 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x1062eedd security_inet_conn_request EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x106f5a54 kernel_accept -EXPORT_SYMBOL vmlinux 0x1071134a disk_stack_limits +EXPORT_SYMBOL vmlinux 0x106af32d put_cmsg +EXPORT_SYMBOL vmlinux 0x106fe028 inc_nlink EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107ca479 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10b8e8e5 devm_iounmap -EXPORT_SYMBOL vmlinux 0x10c9eb67 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x10d6d0f6 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x1096506c pci_release_resource EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e6d05b skb_dump +EXPORT_SYMBOL vmlinux 0x10e28df5 scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10f47f67 ata_print_version -EXPORT_SYMBOL vmlinux 0x10fbcb6f pskb_expand_head -EXPORT_SYMBOL vmlinux 0x1100c70a uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x10ea2f30 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x10f9aa23 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x1101182b remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x1101a61f ndisc_send_skb EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1115fdcd inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x112160b6 netdev_state_change -EXPORT_SYMBOL vmlinux 0x1132dcf5 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x1153f4e8 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x115d94b8 security_path_mknod -EXPORT_SYMBOL vmlinux 0x1163f35e aperture_remove_conflicting_pci_devices -EXPORT_SYMBOL vmlinux 0x116d1be6 vfs_link +EXPORT_SYMBOL vmlinux 0x1112e23b mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x11140da7 udplite_prot +EXPORT_SYMBOL vmlinux 0x113cfca2 param_ops_long +EXPORT_SYMBOL vmlinux 0x11475c46 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x11488e8f tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x115fe99e nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x119799f1 of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x119e1580 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x11abd442 eth_header_parse -EXPORT_SYMBOL vmlinux 0x11cbb80f tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0x11cf36e8 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x1170b194 lynx_pcs_create_mdiodev +EXPORT_SYMBOL vmlinux 0x117720aa pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x11877072 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x1195f74e single_open_size +EXPORT_SYMBOL vmlinux 0x119d42c4 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x11a2331a __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x11a358bd mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x11dc349f pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x11dd6985 __filemap_get_folio EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11eb68f7 readahead_expand +EXPORT_SYMBOL vmlinux 0x11ef4223 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x11fe5804 inode_permission EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x120fbd15 folio_migrate_mapping EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x121af0bb security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x121d4c7c __vfs_setxattr EXPORT_SYMBOL vmlinux 0x122c3a7e _printk EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x12560ac8 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x125c0ab9 i2c_find_device_by_fwnode +EXPORT_SYMBOL vmlinux 0x1266f2cb sget_fc +EXPORT_SYMBOL vmlinux 0x126d850c kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x127f768f dev_get_by_name -EXPORT_SYMBOL vmlinux 0x12923a11 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x128da69e qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12aaf8c6 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x12c2e5b2 pci_read_config_byte EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12d33a80 dma_resv_init -EXPORT_SYMBOL vmlinux 0x12dec786 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x13044355 of_clk_get +EXPORT_SYMBOL vmlinux 0x12f7418d __folio_lock +EXPORT_SYMBOL vmlinux 0x1305055d dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x130c0857 sock_setsockopt EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1311b825 blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x132402ce netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x13392689 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x134fbca0 input_event -EXPORT_SYMBOL vmlinux 0x135fe752 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x137e71f4 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x13861466 dqput -EXPORT_SYMBOL vmlinux 0x1396118b rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x1330ffcd __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x136bb243 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x13884e81 ps2_interrupt +EXPORT_SYMBOL vmlinux 0x138f8eb4 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13a55a6e _dev_alert -EXPORT_SYMBOL vmlinux 0x13b642ab __mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0x13bbf7b6 has_capability_noaudit -EXPORT_SYMBOL vmlinux 0x13bca434 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x13a2710c skb_free_datagram +EXPORT_SYMBOL vmlinux 0x13afec87 rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13da71a0 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x13dace53 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x13db6c88 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x13db9e32 audit_log -EXPORT_SYMBOL vmlinux 0x13dcbca0 from_kuid -EXPORT_SYMBOL vmlinux 0x13e370df xfrm_register_type -EXPORT_SYMBOL vmlinux 0x13e772b8 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x13eb0239 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x13f60bc5 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x140efabb phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x13dcf3e2 kill_pgrp +EXPORT_SYMBOL vmlinux 0x13e42e37 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x13ebfaaf config_item_put +EXPORT_SYMBOL vmlinux 0x13f9d9fd mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x140d2537 scsi_register_interface EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14144d75 tty_kref_put -EXPORT_SYMBOL vmlinux 0x14198cc3 of_range_to_resource -EXPORT_SYMBOL vmlinux 0x1426ef91 phy_attach -EXPORT_SYMBOL vmlinux 0x1427bae6 dump_page -EXPORT_SYMBOL vmlinux 0x1437a122 key_link -EXPORT_SYMBOL vmlinux 0x143879bc inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x143f6edc pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x14563ac3 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x1451fa65 migrate_folio +EXPORT_SYMBOL vmlinux 0x1458c2b1 tcp_gro_complete EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x146a981e fb_class -EXPORT_SYMBOL vmlinux 0x148a3423 of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x149fd1a8 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x147fde4f phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x1498f101 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x149ca725 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg -EXPORT_SYMBOL vmlinux 0x14aede9d ps2_begin_command +EXPORT_SYMBOL vmlinux 0x14aaf053 inet_add_offload +EXPORT_SYMBOL vmlinux 0x14b10275 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x14c55c68 xp_free EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14ed567e blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x14f1ec92 xfrm6_rcv EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x15033973 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x150f3101 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x151ab240 config_item_set_name +EXPORT_SYMBOL vmlinux 0x1504a893 pnp_register_card_driver EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152c8ef7 bio_integrity_trim EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155dce25 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x15723a36 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x1582598b cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x158ffc3b simple_fill_super -EXPORT_SYMBOL vmlinux 0x15a4136d xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x15afe842 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x15622710 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x1565f301 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x156ee168 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x15721bf9 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x1580afe2 from_kuid +EXPORT_SYMBOL vmlinux 0x1588b4b4 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x15892565 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x15933d29 flush_signals +EXPORT_SYMBOL vmlinux 0x159574a8 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x159a0e56 genl_register_family +EXPORT_SYMBOL vmlinux 0x15b4699e default_llseek EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bdd803 mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15d0a720 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0x15e39fa8 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x15ca5c57 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x15d173ba tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x15d9da51 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x15df8382 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x15dfbb52 dup_iter +EXPORT_SYMBOL vmlinux 0x15e58e2c skb_clone_sk EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x16036401 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x160de2cf of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x160473ff is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x16115e80 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162e00af dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x16413ac6 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x1642d8c3 qdisc_reset -EXPORT_SYMBOL vmlinux 0x164d41f6 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x1651b3e3 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x1651defa blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x165720d6 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x16475a40 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x164ab7b2 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x16574abd kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x165ad395 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0x165fe869 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x166d80f5 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x1663e9ae qman_start_using_portal EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x168f2a9d ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x168241d2 dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169b15e0 clk_get +EXPORT_SYMBOL vmlinux 0x169d60c5 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x16a2b005 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16b04b21 folio_wait_private_2 -EXPORT_SYMBOL vmlinux 0x16c56649 nf_log_packet -EXPORT_SYMBOL vmlinux 0x16cbd8fb copy_string_kernel +EXPORT_SYMBOL vmlinux 0x16caabab scsi_host_get EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16ddd145 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x16d81e5d nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x16e11718 pnp_activate_dev EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x170c2aa1 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x16ed0970 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x16f9fe1c clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x16fe6252 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1700e942 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x1710c37e __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x1716d23c jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x172cb6c6 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x173cb94b mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0x1742cd38 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x1751c33b crypto_sha3_update -EXPORT_SYMBOL vmlinux 0x1751d736 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x176f8a82 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x177487c8 bpf_link_get_from_fd -EXPORT_SYMBOL vmlinux 0x177e84ed pid_task +EXPORT_SYMBOL vmlinux 0x17150070 param_array_ops +EXPORT_SYMBOL vmlinux 0x1764d320 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x17870abe nd_dax_probe EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x178c8f72 build_skb -EXPORT_SYMBOL vmlinux 0x17a3a0b8 con_is_bound -EXPORT_SYMBOL vmlinux 0x17be71c6 padata_alloc -EXPORT_SYMBOL vmlinux 0x17c97ebc __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x17dcf8cb md_write_start -EXPORT_SYMBOL vmlinux 0x17f32727 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x17fab6b8 padata_free_shell -EXPORT_SYMBOL vmlinux 0x180d0416 rtnl_offload_xstats_notify -EXPORT_SYMBOL vmlinux 0x1812a22d seq_path -EXPORT_SYMBOL vmlinux 0x181643e6 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x17ca9a45 set_create_files_as +EXPORT_SYMBOL vmlinux 0x17cd69db rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x17e20a5a unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x17fc3894 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x18017c00 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x18022f28 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x1804a7bf is_subdir EXPORT_SYMBOL vmlinux 0x1819a3f5 register_sysctl -EXPORT_SYMBOL vmlinux 0x18207504 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0x1824f980 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x182b22f2 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x18330933 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x185125b9 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x1837ecc7 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x183d01ce rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x1850dbf1 napi_consume_skb EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x187d16af vfs_setpos -EXPORT_SYMBOL vmlinux 0x1882c1e3 send_sig_info -EXPORT_SYMBOL vmlinux 0x188492a4 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x187cf57a proc_remove EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18b3e538 __alloc_pages EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18d1605c tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x18b5369d pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x18bb43e2 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x18c78890 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x18d1e88f filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ea8f92 register_console -EXPORT_SYMBOL vmlinux 0x18eb6166 is_nd_btt -EXPORT_SYMBOL vmlinux 0x18f830c8 datagram_poll -EXPORT_SYMBOL vmlinux 0x18f99647 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x19009959 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x193f5359 key_type_keyring -EXPORT_SYMBOL vmlinux 0x19426194 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x19488443 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x194d6a2d inet_stream_connect +EXPORT_SYMBOL vmlinux 0x18ef243f phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x18fc4092 __netif_rx +EXPORT_SYMBOL vmlinux 0x190f267f ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x191d4041 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x1937a73b __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x1958b8be inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x19629280 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x19599a07 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x195a27db bio_add_folio +EXPORT_SYMBOL vmlinux 0x19619de8 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x197491a2 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x197d5b60 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x19951a81 skb_trim +EXPORT_SYMBOL vmlinux 0x199b6962 pci_scan_bus EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19ae8a47 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x19afce64 send_sig EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19be0bb6 alloc_fddidev -EXPORT_SYMBOL vmlinux 0x19d79b78 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x19ebd088 single_open_size -EXPORT_SYMBOL vmlinux 0x19f7d511 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x19fe9a5e pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x1a051acb devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x1a07443c dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x1a240083 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x1a26198f ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x1a3ca144 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x19d68591 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x19d70261 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x19e2fa7e mdiobb_write_c22 +EXPORT_SYMBOL vmlinux 0x19e31501 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x19fa4cb3 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x1a0194b8 vlan_for_each +EXPORT_SYMBOL vmlinux 0x1a0be0d0 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x1a136022 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x1a3db43c key_alloc EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a5624ec kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x1a57be22 processors -EXPORT_SYMBOL vmlinux 0x1a6f5d46 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0x1a8f435a inet_accept -EXPORT_SYMBOL vmlinux 0x1a970461 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x1a46ff18 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x1a4807a5 tcf_em_register +EXPORT_SYMBOL vmlinux 0x1a4865f2 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x1a7150c5 tcp_req_err +EXPORT_SYMBOL vmlinux 0x1a7f517c __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x1a8b7904 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x1a993971 tcp_ioctl EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aada296 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x1abccfde scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x1aa23810 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x1aa3b073 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x1aa72e4b pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x1aaff79f vga_put +EXPORT_SYMBOL vmlinux 0x1ab8ad1e pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x1ac18717 tty_kref_put +EXPORT_SYMBOL vmlinux 0x1ac3824d nf_log_packet EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1acde456 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x1aed3721 sock_from_file -EXPORT_SYMBOL vmlinux 0x1af2f355 bdi_alloc +EXPORT_SYMBOL vmlinux 0x1ae93c7c security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b095c97 dcb_setrewr -EXPORT_SYMBOL vmlinux 0x1b0e0148 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x1b1ab786 console_stop +EXPORT_SYMBOL vmlinux 0x1b291143 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1b3343ed iov_iter_get_pages2 EXPORT_SYMBOL vmlinux 0x1b335af2 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x1b49c712 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x1b4b6341 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b62dc3a key_invalidate EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested -EXPORT_SYMBOL vmlinux 0x1b95486a security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x1b9b5645 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x1b912f82 pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1baaf55c skb_pull_data +EXPORT_SYMBOL vmlinux 0x1bad2229 tcp_setsockopt EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bb9d631 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x1bbbc1f1 inet6_release -EXPORT_SYMBOL vmlinux 0x1bc89039 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x1bc8b391 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent EXPORT_SYMBOL vmlinux 0x1be00271 __nla_reserve -EXPORT_SYMBOL vmlinux 0x1be2a562 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x1bed25a9 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x1bed6a6d __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x1c4a39b4 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x1bedb897 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x1bfe9fda blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x1c04a32d nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x1c0ba49c fb_io_read +EXPORT_SYMBOL vmlinux 0x1c24f195 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x1c311a6b tcp_read_sock +EXPORT_SYMBOL vmlinux 0x1c3eb834 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x1c48f07b param_set_int +EXPORT_SYMBOL vmlinux 0x1c5145cd md_error EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c6f6e94 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x1c7b88a0 phy_error -EXPORT_SYMBOL vmlinux 0x1c818c0e address_space_init_once -EXPORT_SYMBOL vmlinux 0x1c87d511 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x1c9ddc64 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x1ca0622f hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x1ca93c91 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x1caa6d0d jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x1cb00c18 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x1c66d942 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x1c80d19c setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x1c85c2bb pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x1c99c652 phy_attached_info +EXPORT_SYMBOL vmlinux 0x1ca2d271 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x1cb0eb9a qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb5c8a2 vga_get +EXPORT_SYMBOL vmlinux 0x1cb5a36c netdev_alert +EXPORT_SYMBOL vmlinux 0x1cbf6ded __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cd29d28 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x1cc6fb04 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x1cce17ce netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x1cd0c881 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl -EXPORT_SYMBOL vmlinux 0x1cf3c766 udp_seq_start +EXPORT_SYMBOL vmlinux 0x1ce5a735 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x1cf53cf8 fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id -EXPORT_SYMBOL vmlinux 0x1cff8cb9 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x1d06e6e1 phy_advertise_supported EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0d68f5 netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d375c03 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x1d3aecc5 brioctl_set +EXPORT_SYMBOL vmlinux 0x1d3f8515 follow_down_one EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d414f0f blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x1d51d508 would_dump -EXPORT_SYMBOL vmlinux 0x1d70a2d2 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x1d48d033 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x1d7900cf netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x1d794855 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x1d7ea69f folio_wait_bit EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1da639b3 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x1db04948 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd83592 tegra_dfll_register EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0x1de6dec2 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x1df11198 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x1df7447d pci_get_class -EXPORT_SYMBOL vmlinux 0x1dfa10c8 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x1deaae7a no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x1ded352f pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x1df4666c __break_lease EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable -EXPORT_SYMBOL vmlinux 0x1e059f07 scsi_scan_host EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e18deee touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x1e1c9a6e notify_change -EXPORT_SYMBOL vmlinux 0x1e30f38f mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x1e3dc414 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x1e47aeb5 block_read_full_folio -EXPORT_SYMBOL vmlinux 0x1e4fe67d kernel_read -EXPORT_SYMBOL vmlinux 0x1e511af7 tcf_register_action -EXPORT_SYMBOL vmlinux 0x1e5eca69 skb_split +EXPORT_SYMBOL vmlinux 0x1e1749e0 __netif_schedule +EXPORT_SYMBOL vmlinux 0x1e17b6c9 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x1e1b450e mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x1e2b96ef scsi_host_alloc EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e90c02a thaw_super EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb4bd99 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x1eb704ce input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x1eba3576 mapping_read_folio_gfp -EXPORT_SYMBOL vmlinux 0x1ec10f14 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x1ea7d402 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x1ebd2451 mii_check_link +EXPORT_SYMBOL vmlinux 0x1ec2743d slab_build_skb +EXPORT_SYMBOL vmlinux 0x1ed35ead fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1eecc356 blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format -EXPORT_SYMBOL vmlinux 0x1ef5dbb5 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x1eff8457 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x1f055792 rtc_add_groups -EXPORT_SYMBOL vmlinux 0x1f3b7bd7 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x1f4a7b40 __serio_register_port -EXPORT_SYMBOL vmlinux 0x1f50e283 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x1f0688f1 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x1f06ede3 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x1f0dcbf7 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x1f3a2a7f cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x1f49f051 dev_addr_add EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f5d59f1 simple_release_fs -EXPORT_SYMBOL vmlinux 0x1f6ea53b vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x1f6f632c param_get_ullong -EXPORT_SYMBOL vmlinux 0x1f86b72d devm_aperture_acquire_for_platform_device -EXPORT_SYMBOL vmlinux 0x1f903a0f iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x1f90fd4a skb_append +EXPORT_SYMBOL vmlinux 0x1f986323 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x1f9e378c tty_port_close_end +EXPORT_SYMBOL vmlinux 0x1fa55274 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x1fa66d96 set_anon_super +EXPORT_SYMBOL vmlinux 0x1faff148 page_pool_unlink_napi +EXPORT_SYMBOL vmlinux 0x1fb9379e bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x1fbb095d generic_write_end +EXPORT_SYMBOL vmlinux 0x1fbcc432 mii_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbd30a6 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x1fc1109e proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x1fc308dd ihold -EXPORT_SYMBOL vmlinux 0x1fc3197a pci_request_irq +EXPORT_SYMBOL vmlinux 0x1fc28464 cdev_set_parent EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1febd9fd vfs_unlink -EXPORT_SYMBOL vmlinux 0x1fefb88a netif_carrier_on +EXPORT_SYMBOL vmlinux 0x1fe616f7 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x1fef1fbc gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x1ff24838 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200880c1 tso_build_hdr EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200db116 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0x20160f19 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x2040d983 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x203649c7 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x20477a1f dquot_release EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x205458dc register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x2083c259 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x20885c8e tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x208d0642 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x209d1a48 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x2094fce1 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x209ba09b mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b29514 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x20c2e6e9 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x20aa4c6f release_pages +EXPORT_SYMBOL vmlinux 0x20abc2f8 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x20b8a34d scsi_device_put +EXPORT_SYMBOL vmlinux 0x20c2c650 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x20c46a07 nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20d6a8f3 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x20daad28 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x211add25 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x21375c9f pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x20eca3d5 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x2105ef66 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x2107178e bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x21090250 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x211ad09c inet_shutdown EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x215b6a12 truncate_setsize -EXPORT_SYMBOL vmlinux 0x215e705d mdiobus_c45_write -EXPORT_SYMBOL vmlinux 0x2176d0b6 request_key_tag +EXPORT_SYMBOL vmlinux 0x216bbe87 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x216d39e8 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x2180a41e xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x218b95c8 key_payload_reserve EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x2192b192 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x21a0517e pneigh_lookup -EXPORT_SYMBOL vmlinux 0x21a1de1f unlock_rename -EXPORT_SYMBOL vmlinux 0x21adcf3e scmd_printk -EXPORT_SYMBOL vmlinux 0x21b553f1 inet6_bind +EXPORT_SYMBOL vmlinux 0x219cbdd4 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x21a4de3c put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x21b489c0 pnp_register_driver EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21d3d215 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x21d600d2 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x21d6c1d1 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x21daddd2 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x21c109aa unregister_binfmt EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e5a6d3 phy_disconnect EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight -EXPORT_SYMBOL vmlinux 0x21ece231 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f2a290 nd_dax_probe -EXPORT_SYMBOL vmlinux 0x22052454 dcb_delrewr +EXPORT_SYMBOL vmlinux 0x21f2ad1f mark_info_dirty +EXPORT_SYMBOL vmlinux 0x21f67976 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x220bf137 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x22170ec2 napi_build_skb +EXPORT_SYMBOL vmlinux 0x2220bf9f sg_miter_next +EXPORT_SYMBOL vmlinux 0x222ba9f7 kmalloc_trace EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223293b2 handshake_req_cancel EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x22469f12 pagecache_get_page EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x224e4376 input_register_device -EXPORT_SYMBOL vmlinux 0x22519ffc iunique -EXPORT_SYMBOL vmlinux 0x2274c88e pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x2283bfc7 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x228d3c29 phy_start -EXPORT_SYMBOL vmlinux 0x229af15d pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x22a26e19 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x22694647 getname_kernel +EXPORT_SYMBOL vmlinux 0x22723390 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x22736a41 __register_binfmt +EXPORT_SYMBOL vmlinux 0x229ffa58 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x22a8b28f phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x22b235f3 nf_log_set EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b9a08c ndisc_send_skb -EXPORT_SYMBOL vmlinux 0x22ca56e7 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0x22cb94d1 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x22ed6cf3 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x22f17771 nd_device_unregister -EXPORT_SYMBOL vmlinux 0x230fd6bc scsi_register_driver -EXPORT_SYMBOL vmlinux 0x2314b55e __check_sticky -EXPORT_SYMBOL vmlinux 0x2324c49b flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0x2327b55a of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x234c4bfa i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x2351f625 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x22b7d0fb deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x22bb6757 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x22c53f52 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x22c9ad51 sk_ioctl +EXPORT_SYMBOL vmlinux 0x22c9f2bb init_pseudo +EXPORT_SYMBOL vmlinux 0x22d717e2 tty_devnum +EXPORT_SYMBOL vmlinux 0x23012771 set_posix_acl +EXPORT_SYMBOL vmlinux 0x2312375e mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x23202acb of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x233c3c67 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x23463a30 mdiobus_c45_write EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x23644c99 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x235c4045 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x236da8a6 d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x23881de4 fget +EXPORT_SYMBOL vmlinux 0x236bfd7e pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x23702aeb generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x237d346f dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x2380e74f input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x238662c7 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x2391dbe0 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x23991351 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x239bc718 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x2395050b folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x239b8ba7 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x23b5d9b3 config_item_set_name EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23cc325e __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet EXPORT_SYMBOL vmlinux 0x23dc7f6c hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x23e2e2bb scm_detach_fds +EXPORT_SYMBOL vmlinux 0x23e4ea71 inet_offloads EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24249d90 pci_request_region -EXPORT_SYMBOL vmlinux 0x24275978 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x242b186d dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x241055b1 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x2412c36d call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x242346f3 bio_init +EXPORT_SYMBOL vmlinux 0x24346a6c wireless_spy_update +EXPORT_SYMBOL vmlinux 0x2437f327 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x243dcd32 request_key_rcu EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24457bc4 udp_push_pending_frames EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245d6d56 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x24675b74 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x246b1326 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x247b8e86 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2489f5d9 submit_bh -EXPORT_SYMBOL vmlinux 0x24987ebd vfs_mkobj -EXPORT_SYMBOL vmlinux 0x2498c0aa bprm_change_interp -EXPORT_SYMBOL vmlinux 0x24af12f2 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x24c16bb2 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x24c4f1d2 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x249ec02d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x24be7176 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x24bf90a1 pci_enable_device +EXPORT_SYMBOL vmlinux 0x24d15fd2 __skb_ext_del EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer EXPORT_SYMBOL vmlinux 0x24d808a6 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24f17aef rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x24f6c8a5 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x24f8fc78 register_filesystem -EXPORT_SYMBOL vmlinux 0x24ffb527 input_grab_device +EXPORT_SYMBOL vmlinux 0x25051c56 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x250e3551 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x251ee109 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x251f9e40 fman_set_mac_max_frame -EXPORT_SYMBOL vmlinux 0x252329ce xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x250939e3 framebuffer_release EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x252db0e1 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x253108bd neigh_seq_start EXPORT_SYMBOL vmlinux 0x25321eef prepare_creds -EXPORT_SYMBOL vmlinux 0x25326beb ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x25493124 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x254c7f33 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x254cfa68 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x25559351 inode_set_flags -EXPORT_SYMBOL vmlinux 0x2560bb55 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x25688786 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x2576d5c3 sock_init_data +EXPORT_SYMBOL vmlinux 0x257df05b udp_seq_start EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25853158 tso_build_hdr EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x258b9647 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25937b29 begin_new_exec +EXPORT_SYMBOL vmlinux 0x25940f5c param_set_uint EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion EXPORT_SYMBOL vmlinux 0x2598c6c0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x25a71c7a folio_clear_dirty_for_io -EXPORT_SYMBOL vmlinux 0x25c2818e input_release_device +EXPORT_SYMBOL vmlinux 0x25a17e07 vm_mmap +EXPORT_SYMBOL vmlinux 0x25b09319 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x25cd051e fc_mount +EXPORT_SYMBOL vmlinux 0x25d881cf neigh_xmit EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25fc03ce __skb_ext_del -EXPORT_SYMBOL vmlinux 0x25fe1030 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x2605aa02 vme_irq_free EXPORT_SYMBOL vmlinux 0x26060d14 set_groups -EXPORT_SYMBOL vmlinux 0x260da84a vlan_uses_dev EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace -EXPORT_SYMBOL vmlinux 0x26287b54 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x26152046 load_nls +EXPORT_SYMBOL vmlinux 0x26165e8b input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x261950d1 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x262398bb mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2625f53b unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x262b09df devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x2630730f pci_write_config_dword EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x26431578 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x2655881a scsi_remove_host -EXPORT_SYMBOL vmlinux 0x265780ab page_mapping +EXPORT_SYMBOL vmlinux 0x2644ec82 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x2645d293 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x26480041 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x2657452d tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x266cb161 pci_clear_master +EXPORT_SYMBOL vmlinux 0x2679e295 free_mdio_bitbang EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26be8003 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x26c012f5 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x26c3f0c5 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x2693051a pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x2698a896 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x26a0ff90 netdev_printk +EXPORT_SYMBOL vmlinux 0x26bb7cb3 d_rehash +EXPORT_SYMBOL vmlinux 0x26df71d2 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e9b1b5 page_readlink -EXPORT_SYMBOL vmlinux 0x27004fbd copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x2700bcc8 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x270a09f4 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271bb4cf flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x272a356a param_set_bint EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273e1d83 d_lookup EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274d534e config_group_init +EXPORT_SYMBOL vmlinux 0x275dd559 bdi_put EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x275fd26f from_kgid -EXPORT_SYMBOL vmlinux 0x2765340c ram_aops EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277b6561 nf_log_unset EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27a65f53 __folio_put -EXPORT_SYMBOL vmlinux 0x27bb828b unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x278650a7 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x278fc61e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x2790c9cd sys_copyarea +EXPORT_SYMBOL vmlinux 0x27931493 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x2798fe4d is_bad_inode +EXPORT_SYMBOL vmlinux 0x27b53141 devm_mmc_alloc_host EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27bd5a47 trace_print_array_seq EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27e08f99 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x27e6397d inet_recvmsg +EXPORT_SYMBOL vmlinux 0x27fe6505 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x27ff125d inet6_protos EXPORT_SYMBOL vmlinux 0x2801a22f proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2801e81c of_platform_bus_probe EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x282012ce of_match_node +EXPORT_SYMBOL vmlinux 0x2822d2bc __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x282c7e12 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x2848486d udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x282d4b20 tso_build_data +EXPORT_SYMBOL vmlinux 0x283a9489 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x283dc8c4 acpi_dev_get_next_match_dev EXPORT_SYMBOL vmlinux 0x28500e13 proc_douintvec -EXPORT_SYMBOL vmlinux 0x28599774 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x28599e84 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x285d9b0f kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x28546577 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2883e12c skb_unlink EXPORT_SYMBOL vmlinux 0x28864fef __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x288a548f bio_split_to_limits -EXPORT_SYMBOL vmlinux 0x2897c09b seq_pad -EXPORT_SYMBOL vmlinux 0x289fa5ea rproc_add -EXPORT_SYMBOL vmlinux 0x28cc3613 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x28d35baa devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x28db81f0 pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0x28e207f0 set_disk_ro -EXPORT_SYMBOL vmlinux 0x28eb2f0a touch_atime +EXPORT_SYMBOL vmlinux 0x2895ad3f pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x289fb352 cdev_device_add +EXPORT_SYMBOL vmlinux 0x28b0408e devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x28b0fa71 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x28cf2a59 __breadahead +EXPORT_SYMBOL vmlinux 0x28d52408 may_umount_tree +EXPORT_SYMBOL vmlinux 0x28ea3e59 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x28f264d7 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x28f496c8 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x28f48282 d_lookup +EXPORT_SYMBOL vmlinux 0x28f764cc scmd_printk EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28f9e009 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x290df59e security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0x29133eac mdio_device_free -EXPORT_SYMBOL vmlinux 0x294a764c zap_page_range_single -EXPORT_SYMBOL vmlinux 0x2952b491 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x29049e61 input_event +EXPORT_SYMBOL vmlinux 0x292f20c4 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x2935eaa7 i2c_find_adapter_by_fwnode EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2962d8ba mr_dump EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x296c4b05 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x297407ea arp_tbl -EXPORT_SYMBOL vmlinux 0x297df34b pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x297eda4b simple_statfs -EXPORT_SYMBOL vmlinux 0x299cbc43 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x29abecac dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x29be9c0c mount_subtree -EXPORT_SYMBOL vmlinux 0x29c4a44f tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x29db2a0e phy_drivers_register +EXPORT_SYMBOL vmlinux 0x2971fb48 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x297e90d9 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x2980a486 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x2982d095 d_tmpfile +EXPORT_SYMBOL vmlinux 0x299b5b90 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x29af702b dma_pool_create +EXPORT_SYMBOL vmlinux 0x29d7287f tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x29db4c5f touchscreen_parse_properties EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e5b94a tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0x29ee3000 vme_master_request -EXPORT_SYMBOL vmlinux 0x29f1b663 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x2a17b691 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x2a212f87 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x2a22c9c0 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x29e7ea96 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x29f9d9f4 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x29fbc810 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x29ff37ed mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x2a18d45c pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x2a25f7ae fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x2a30002f devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a38eb79 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x2a51c44a alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x2a59d60e dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x2a366c07 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x2a47cf4e dev_addr_mod +EXPORT_SYMBOL vmlinux 0x2a5623ed amba_request_regions +EXPORT_SYMBOL vmlinux 0x2a5910d0 tty_port_tty_get EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a713055 sock_create_lite EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2a90d39a tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x2a8ab98c inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a957bdc fman_port_get_device +EXPORT_SYMBOL vmlinux 0x2a98e901 migrate_vma_setup EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2aa0ca95 block_commit_write +EXPORT_SYMBOL vmlinux 0x2aa60738 inode_update_time +EXPORT_SYMBOL vmlinux 0x2aa836d3 of_mdio_find_device EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2aad4b48 netlink_kernel_release EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2ac382e7 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x2adcea66 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x2ae8d08a always_delete_dentry -EXPORT_SYMBOL vmlinux 0x2b03d967 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x2b10ef9b cfb_fillrect +EXPORT_SYMBOL vmlinux 0x2ab2f684 dev_set_alias +EXPORT_SYMBOL vmlinux 0x2abe97bc d_obtain_root +EXPORT_SYMBOL vmlinux 0x2ac86a29 file_update_time +EXPORT_SYMBOL vmlinux 0x2af2800d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x2af4e168 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x2b131bb7 pci_release_region EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b2f9114 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x2b31a6a5 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x2b49a328 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x2b4f21ec tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x2b4f59f8 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x2b532fdf gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x2b30dc79 register_console +EXPORT_SYMBOL vmlinux 0x2b4027d1 __register_nls +EXPORT_SYMBOL vmlinux 0x2b578965 kernel_read +EXPORT_SYMBOL vmlinux 0x2b5855ee kernel_tmpfile_open EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b61766a nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x2b8ad61e mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba8b836 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x2ba8ff05 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x2b9f049a generic_fadvise EXPORT_SYMBOL vmlinux 0x2bae204e mt_find +EXPORT_SYMBOL vmlinux 0x2bb1c81c key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bc373cd jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x2bca2539 param_set_byte -EXPORT_SYMBOL vmlinux 0x2bd247c7 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x2bbd030d mount_subtree EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bdcda5c tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x2bf9ee3b mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c0479cc xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x2c06490e tcf_idr_release EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c2f9161 kfree_skb_reason EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c489c33 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x2c38a581 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x2c3b0821 i2c_del_adapter EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c55010a scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x2c5ff573 mdio_find_bus -EXPORT_SYMBOL vmlinux 0x2c68c6af sock_pfree +EXPORT_SYMBOL vmlinux 0x2c65a066 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x2c793718 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2ca44853 uart_resume_port +EXPORT_SYMBOL vmlinux 0x2ca6b07f disk_stack_limits +EXPORT_SYMBOL vmlinux 0x2cbce9b9 mmc_gpio_set_cd_irq +EXPORT_SYMBOL vmlinux 0x2cc4911b flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x2cc49147 __mdiobus_register EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd2bead of_root +EXPORT_SYMBOL vmlinux 0x2ce4f705 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2ce73aee jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2d0ee678 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x2d1272f4 scsi_report_device_reset EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d198ebe skb_put +EXPORT_SYMBOL vmlinux 0x2d2751b6 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3db6bd drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x2d3ec3c9 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x2d492e66 bio_integrity_prep EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d5450b0 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x2d62456c netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x2d77dae0 setup_new_exec EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d945dd8 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da326da __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x2da9ea87 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x2db04517 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x2dbcf9ee vfs_path_lookup EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs -EXPORT_SYMBOL vmlinux 0x2dd833ab simple_pin_fs -EXPORT_SYMBOL vmlinux 0x2dd93b45 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x2ddac15c put_disk +EXPORT_SYMBOL vmlinux 0x2ddc8d0b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x2de04953 tty_do_resize EXPORT_SYMBOL vmlinux 0x2de3e3b7 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x2df50cb5 deactivate_super +EXPORT_SYMBOL vmlinux 0x2df8390c follow_down EXPORT_SYMBOL vmlinux 0x2e0a637d acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x2e12cb42 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e24d392 param_get_invbool +EXPORT_SYMBOL vmlinux 0x2e2ae09a do_SAK EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e35ae75 of_find_property EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x2e4305f8 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x2e3de5e8 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e5225f8 update_region -EXPORT_SYMBOL vmlinux 0x2e5948af is_nd_pfn +EXPORT_SYMBOL vmlinux 0x2e554f82 __icmp_send EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e8c1e36 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x2e945bb1 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x2e96e015 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x2ea16bd3 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x2eb19ef9 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x2eb462f2 devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0x2ec12645 dst_destroy +EXPORT_SYMBOL vmlinux 0x2e5ca011 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x2e6a044b cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x2e6b1be3 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x2e6d22ec fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x2e6e667d generic_delete_inode +EXPORT_SYMBOL vmlinux 0x2e759139 mdiobus_free +EXPORT_SYMBOL vmlinux 0x2e8608d3 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x2ea434ac ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x2eb4bb85 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2eca6e52 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x2ef36367 param_get_string +EXPORT_SYMBOL vmlinux 0x2eedab47 kernel_listen +EXPORT_SYMBOL vmlinux 0x2f007990 config_group_init_type_name EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1e918e elv_rb_del -EXPORT_SYMBOL vmlinux 0x2f2728eb i2c_get_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x2f255737 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x2f256109 __put_user_ns EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f2f14dd rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x2f302948 udp_poll +EXPORT_SYMBOL vmlinux 0x2f3279b6 filemap_fault EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f357b26 sync_file_create EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f3cbf84 d_drop +EXPORT_SYMBOL vmlinux 0x2f3b18d2 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x2f44f171 vmap EXPORT_SYMBOL vmlinux 0x2f4c61ad kobject_put -EXPORT_SYMBOL vmlinux 0x2f75660f xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x2f633c07 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x2f6c7d60 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x2f72a521 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x2f766a02 setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f790eb3 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x2f820497 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x2fc8e910 f_setown +EXPORT_SYMBOL vmlinux 0x2f85b131 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x2f977513 rpmh_write +EXPORT_SYMBOL vmlinux 0x2fb48229 vm_map_pages +EXPORT_SYMBOL vmlinux 0x2fcbd383 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x2fd0aa1e pci_enable_wake +EXPORT_SYMBOL vmlinux 0x2fd8d526 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x2fe0941f ps2_command EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe931e4 del_gendisk -EXPORT_SYMBOL vmlinux 0x2fedb0d7 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x2ff00a84 follow_down -EXPORT_SYMBOL vmlinux 0x3021f5d6 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x302b276f pcim_pin_device -EXPORT_SYMBOL vmlinux 0x302bb7c8 generic_fillattr -EXPORT_SYMBOL vmlinux 0x30324f65 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x3033371e eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x30673d3d fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x308099ad filp_close -EXPORT_SYMBOL vmlinux 0x3089ffe9 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x300aaa66 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x300c5c25 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x3011f7ab genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x30263e37 release_sock +EXPORT_SYMBOL vmlinux 0x306f0a87 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x307065be flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x3077bb68 vme_master_mmap EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309e531a freeze_super EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x310b5b70 param_get_ulong -EXPORT_SYMBOL vmlinux 0x3110f116 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x31113231 dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x3118583d generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x30af41d2 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x30b03c06 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x30bdc7bf tty_register_driver +EXPORT_SYMBOL vmlinux 0x30c7651e tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x30e59cee mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x30ec7e50 sk_common_release +EXPORT_SYMBOL vmlinux 0x30f1f6a7 free_netdev +EXPORT_SYMBOL vmlinux 0x30f9e05b i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x30fa5463 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x30fb7022 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x31165bb2 pci_request_irq EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x312c24c0 iov_iter_get_pages_alloc2 EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x313fa96a of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x314781d6 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x314dcd15 fget_raw -EXPORT_SYMBOL vmlinux 0x31887928 inet_getname -EXPORT_SYMBOL vmlinux 0x318fb5b9 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x315878c8 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x31600765 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x31620db0 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x31652178 bmap +EXPORT_SYMBOL vmlinux 0x317ec188 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x31810b8a cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x319b2297 cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31ce61e5 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0x31d13632 I_BDEV -EXPORT_SYMBOL vmlinux 0x31f31fa5 dm_get_device -EXPORT_SYMBOL vmlinux 0x31f46516 serio_close -EXPORT_SYMBOL vmlinux 0x3212fae3 udp_prot +EXPORT_SYMBOL vmlinux 0x31bd419e eth_validate_addr +EXPORT_SYMBOL vmlinux 0x31c2eccd free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x31d730d7 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x31e45080 irq_set_chip +EXPORT_SYMBOL vmlinux 0x31eabdab mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x31fa2be5 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x31fc2770 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x320de08c jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x320e979e neigh_update EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x32153eb1 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x321e1319 of_get_next_available_child EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset -EXPORT_SYMBOL vmlinux 0x322a7fe1 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x3237c719 ip_queue_xmit EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x323ecdb0 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x324fe21e generic_fadvise -EXPORT_SYMBOL vmlinux 0x3255fd02 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x32750c06 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x323feadd devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x3254d913 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x3254ed54 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x325c929e blackhole_netdev +EXPORT_SYMBOL vmlinux 0x32605406 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x32785710 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x3279baa2 md_done_sync EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x327f8c9c gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x3282fe3d tcp_filter EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x328abd15 pci_iounmap -EXPORT_SYMBOL vmlinux 0x3298f236 follow_pfn -EXPORT_SYMBOL vmlinux 0x32b5062f max8925_reg_write -EXPORT_SYMBOL vmlinux 0x32b7f137 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x32a485df wake_up_process +EXPORT_SYMBOL vmlinux 0x32c126ac add_to_pipe EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d14405 skb_seq_read -EXPORT_SYMBOL vmlinux 0x32d401f1 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x32e44357 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x32de7a8e pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x32df1a19 tcp_release_cb EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32eaea1d bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x32edf85f sg_miter_start -EXPORT_SYMBOL vmlinux 0x32fac515 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x3300bd1a unregister_shrinker +EXPORT_SYMBOL vmlinux 0x32f37c3c clkdev_drop +EXPORT_SYMBOL vmlinux 0x32ff60b2 tty_vhangup +EXPORT_SYMBOL vmlinux 0x3300d501 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x3303d6a1 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x33059440 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x3306b35e page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x33324d03 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x33056de1 dma_resv_add_fence EXPORT_SYMBOL vmlinux 0x333bfca1 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x33636a41 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x3369e92a mntget EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range -EXPORT_SYMBOL vmlinux 0x3372a679 param_ops_bool +EXPORT_SYMBOL vmlinux 0x336cd3c9 neigh_ifdown EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x3378ee13 phy_read_mmd -EXPORT_SYMBOL vmlinux 0x33972441 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x339951e9 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x33dcb043 dcb_getrewr_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x33e3b507 genl_notify +EXPORT_SYMBOL vmlinux 0x338e09d0 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x33982d38 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x3399ac56 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x33e12f54 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x33e51c45 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33faab89 xp_dma_map +EXPORT_SYMBOL vmlinux 0x33f6332f dma_map_resource +EXPORT_SYMBOL vmlinux 0x33fa1b35 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x341c7c3d dcache_dir_open -EXPORT_SYMBOL vmlinux 0x341fdf21 security_path_rename -EXPORT_SYMBOL vmlinux 0x3423a82f clkdev_drop -EXPORT_SYMBOL vmlinux 0x34331009 __scm_destroy -EXPORT_SYMBOL vmlinux 0x344013fd nd_device_notify -EXPORT_SYMBOL vmlinux 0x3449b681 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x3453f7a8 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x3474a6b1 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x34807339 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x3486648d pci_disable_msix -EXPORT_SYMBOL vmlinux 0x348e4f4c generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x342755d0 ethtool_aggregate_pause_stats +EXPORT_SYMBOL vmlinux 0x342dd666 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x343aa779 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x34535046 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x3454992a configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x34765bc8 free_buffer_head +EXPORT_SYMBOL vmlinux 0x34880e90 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x34939cd2 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x349ab46c nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a645ac sock_rfree EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34ca06b2 napi_enable +EXPORT_SYMBOL vmlinux 0x34ce9c8c pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x34d6b473 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34eb1065 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x34eb5bed filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x350dccc5 setattr_prepare +EXPORT_SYMBOL vmlinux 0x34f46ac2 address_space_init_once EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35193a2d pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x351feffd mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x353974ca key_payload_reserve EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3571c5f4 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x35843c72 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x35869eb0 get_inode_acl -EXPORT_SYMBOL vmlinux 0x3590e1f7 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x35974d17 module_put +EXPORT_SYMBOL vmlinux 0x3567f0c7 skb_checksum +EXPORT_SYMBOL vmlinux 0x356feff5 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x35735c40 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x358fe296 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x35a03243 fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b5c7e5 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x35c13e24 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x35d5ef82 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x35d6a07c ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x35dacc5d max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x35ee7d72 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x35f1cca1 md_check_recovery -EXPORT_SYMBOL vmlinux 0x3601dd28 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x35b12940 sock_efree +EXPORT_SYMBOL vmlinux 0x35c4dc8f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x35dda6f0 inet6_bind +EXPORT_SYMBOL vmlinux 0x35e2b1e5 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x35e986a2 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x35f17f90 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x360971f7 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x3609a463 __pci_register_driver EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3618efdf secpath_set -EXPORT_SYMBOL vmlinux 0x3624fa5c of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x3632ddb9 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x3633fc2c tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x3643c866 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x364659ee __devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x3612b231 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x362a5bf5 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x3633abb2 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x363a4ad8 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable -EXPORT_SYMBOL vmlinux 0x364ae8a9 ps2_drain EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked -EXPORT_SYMBOL vmlinux 0x364d24e5 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x3652b4ae input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365d1745 cros_ec_query_all EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init -EXPORT_SYMBOL vmlinux 0x366a6875 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x367561aa unregister_console -EXPORT_SYMBOL vmlinux 0x368209b3 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x36844fe9 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x3688817e ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x369686df inet6_del_offload -EXPORT_SYMBOL vmlinux 0x36a1a5de mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0x367603e1 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3678ca37 system_cpucaps EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36e78162 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x36e78582 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x37031e20 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x37046e29 devm_free_irq -EXPORT_SYMBOL vmlinux 0x37056bb3 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x3705d02e of_iommu_get_resv_regions +EXPORT_SYMBOL vmlinux 0x36b979cf phy_init_hw +EXPORT_SYMBOL vmlinux 0x36bafce8 crypto_sha3_update +EXPORT_SYMBOL vmlinux 0x36c35be7 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x36c58cb2 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x36cc820e d_set_d_op +EXPORT_SYMBOL vmlinux 0x370843f5 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x371e4274 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x373383ba udp_seq_next +EXPORT_SYMBOL vmlinux 0x37208caa iget_failed +EXPORT_SYMBOL vmlinux 0x3720be7e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3723dbcb inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x3727fdfe ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x3734a77b vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x3734c20b kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x373ac89d ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x376c719d ip_output -EXPORT_SYMBOL vmlinux 0x37705222 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x37768b32 to_ndd +EXPORT_SYMBOL vmlinux 0x3758bfb9 cdev_alloc +EXPORT_SYMBOL vmlinux 0x375e0e01 follow_up +EXPORT_SYMBOL vmlinux 0x37633c6c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x377d0a9b pci_write_config_word EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x377ed08a crypto_kdf108_setkey -EXPORT_SYMBOL vmlinux 0x378c8944 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x37998c30 udp_disconnect -EXPORT_SYMBOL vmlinux 0x37a8fca8 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x379b4737 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bd8240 input_unregister_handler EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37cc3b14 fb_set_var +EXPORT_SYMBOL vmlinux 0x37cc9f2f devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f4b294 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x37f8ae2e netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x37fa5043 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x37fc9895 neigh_update EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381e0820 dm_table_event -EXPORT_SYMBOL vmlinux 0x38268dec lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x383c22c0 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x3848171f param_ops_uint EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385a22b5 ip_defrag EXPORT_SYMBOL vmlinux 0x385c7481 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x3874d4db flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x387fb24d set_capacity +EXPORT_SYMBOL vmlinux 0x3866b268 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x386e2edb rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x387b5e18 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x3883918f rproc_set_firmware EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x38969bb2 netdev_info EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure EXPORT_SYMBOL vmlinux 0x38a56aa4 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x38a590a8 pci_resize_resource EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b3003b path_put -EXPORT_SYMBOL vmlinux 0x38e18e52 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x38e4026d generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x38d4fe73 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x38dc960d simple_get_link EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38f6ad01 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x391ad307 end_page_writeback +EXPORT_SYMBOL vmlinux 0x38ec8466 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x38f2dd11 give_up_console +EXPORT_SYMBOL vmlinux 0x38fc1a6f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x390821c4 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x3930b897 folio_alloc +EXPORT_SYMBOL vmlinux 0x3938c031 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3942e255 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x394322d5 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3947ad12 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x39555d55 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x39529464 sync_file_create EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x398d262a netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x3990290d tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x399515b9 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x3966fb42 input_setup_polling +EXPORT_SYMBOL vmlinux 0x39714d0b param_ops_hexint +EXPORT_SYMBOL vmlinux 0x3996d465 may_umount EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399c3885 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x39a0c25f find_vma_intersection -EXPORT_SYMBOL vmlinux 0x39acfb3c blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x399c98f4 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x39a1367d skb_copy_expand +EXPORT_SYMBOL vmlinux 0x39a8048c pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x39b0cd7e blk_execute_rq EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x39b28096 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x39b5ce4d pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x39bac64b is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39c29077 fs_context_for_submount EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0x39d2f370 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x39cf8eda iput EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39ec0f63 of_get_next_child -EXPORT_SYMBOL vmlinux 0x39fbb42d d_prune_aliases -EXPORT_SYMBOL vmlinux 0x39fd97e6 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x3a004315 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x3a246583 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x3a378ad6 d_instantiate_new -EXPORT_SYMBOL vmlinux 0x3a3d219a netpoll_print_options -EXPORT_SYMBOL vmlinux 0x3a49d56b __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x39e66d3f devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x39f032b9 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x39f3477b adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x3a380c50 tcf_qevent_init EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x3a5bbf8e iov_iter_revert -EXPORT_SYMBOL vmlinux 0x3a5e1a10 sock_efree -EXPORT_SYMBOL vmlinux 0x3a74b39b pci_free_irq -EXPORT_SYMBOL vmlinux 0x3a79bd90 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x3a836ce7 ilookup5 -EXPORT_SYMBOL vmlinux 0x3a8e50e9 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x3a9dad5a tcf_idr_release +EXPORT_SYMBOL vmlinux 0x3a62d0e2 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x3a7ddddf xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x3a80acd0 netif_schedule_queue EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock +EXPORT_SYMBOL vmlinux 0x3ab312cd unlock_rename EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abd2e40 imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x3ace7311 kernel_tmpfile_open +EXPORT_SYMBOL vmlinux 0x3acfcad8 iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x3ad6d6b0 xen_free_ballooned_pages EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3af15987 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x3aeda875 user_path_create +EXPORT_SYMBOL vmlinux 0x3af24076 skb_store_bits +EXPORT_SYMBOL vmlinux 0x3af2470b skb_pull_data EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b1e125c __sock_i_ino -EXPORT_SYMBOL vmlinux 0x3b209737 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x3b2811f4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x3b2c0c76 blk_get_queue -EXPORT_SYMBOL vmlinux 0x3b2df617 vfs_path_parent_lookup -EXPORT_SYMBOL vmlinux 0x3b320306 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x3b14570d of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x3b2a98b2 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x3b2f24b7 has_capability_noaudit EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b32bf34 param_get_int -EXPORT_SYMBOL vmlinux 0x3b4ea068 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x3b4ca004 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x3b502782 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x3b58575f twl6040_power +EXPORT_SYMBOL vmlinux 0x3b62d235 noop_qdisc EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6a6775 __inc_zone_page_state EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner -EXPORT_SYMBOL vmlinux 0x3b73db7d dst_release_immediate EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3b9345f8 backlight_force_update -EXPORT_SYMBOL vmlinux 0x3bab257b pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x3bbdfb19 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3bc3ec91 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x3bc7493a elv_rb_add -EXPORT_SYMBOL vmlinux 0x3bd770c4 sync_blockdev_range -EXPORT_SYMBOL vmlinux 0x3be28873 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x3be79725 _dev_warn -EXPORT_SYMBOL vmlinux 0x3c0c3720 inode_init_owner +EXPORT_SYMBOL vmlinux 0x3b9cc425 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x3ba988a3 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x3bb11bf4 phy_detach +EXPORT_SYMBOL vmlinux 0x3be057f1 nd_device_notify +EXPORT_SYMBOL vmlinux 0x3bed285c request_key_tag +EXPORT_SYMBOL vmlinux 0x3c068965 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x3c0922f1 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release -EXPORT_SYMBOL vmlinux 0x3c0f3bf4 vma_set_file EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1c13f1 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x3c2d0815 proc_create_mount_point EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c364c01 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x3c377c18 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x3c379039 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c456889 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x3c58edc9 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x3c59cbb4 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x3c66ef6b dma_pool_create -EXPORT_SYMBOL vmlinux 0x3c7709f6 acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x3c930da0 genl_register_family +EXPORT_SYMBOL vmlinux 0x3c4d4dee dqget +EXPORT_SYMBOL vmlinux 0x3c565364 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x3c70f97a dev_set_threaded +EXPORT_SYMBOL vmlinux 0x3c8b9f2e xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x3c8f052c scsi_device_resume +EXPORT_SYMBOL vmlinux 0x3ca4df91 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock -EXPORT_SYMBOL vmlinux 0x3cb50463 sk_reset_timer EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3cc2735c pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x3cc4fe43 mmc_start_request -EXPORT_SYMBOL vmlinux 0x3ccdf1ff dev_driver_string -EXPORT_SYMBOL vmlinux 0x3cd5741f pmem_should_map_pages EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce29b9f tls_client_hello_anon EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cf71205 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x3cfc3962 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x3d0a6e45 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x3ce9db1a mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x3cf3ea87 netdev_warn +EXPORT_SYMBOL vmlinux 0x3cf729ec page_pool_update_nid EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d33015c __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x3d39733b uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x3d559623 inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x3d6c7424 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x3d6fce7c skb_clone +EXPORT_SYMBOL vmlinux 0x3d31e728 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x3d3cfbbd jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x3d5946e8 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x3d7bac46 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x3d8cd275 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check -EXPORT_SYMBOL vmlinux 0x3d975c60 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x3d9a2adc ppp_register_net_channel EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page EXPORT_SYMBOL vmlinux 0x3da092b8 dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x3da479e4 udp_seq_stop EXPORT_SYMBOL vmlinux 0x3daae96c dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3db805a3 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x3dc03e7c dmaenginem_async_device_register EXPORT_SYMBOL vmlinux 0x3dc4cd68 __nla_put_64bit EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcfd8a0 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x3dcbc027 finish_open EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id -EXPORT_SYMBOL vmlinux 0x3ddd22db scsi_add_device -EXPORT_SYMBOL vmlinux 0x3dee0ed6 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x3def90e7 mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e0fadaa filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x3e10eff0 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x3e13d50a __ps2_command +EXPORT_SYMBOL vmlinux 0x3e15fabc ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x3e221eff iunique +EXPORT_SYMBOL vmlinux 0x3e331e8d twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e42b030 vfs_symlink -EXPORT_SYMBOL vmlinux 0x3e4ed49c locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x3e58b724 cdev_alloc -EXPORT_SYMBOL vmlinux 0x3e5c0db0 noop_llseek -EXPORT_SYMBOL vmlinux 0x3e6e08b6 dup_iter -EXPORT_SYMBOL vmlinux 0x3e70b9a8 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x3e7151bf tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x3e71cc31 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x3e772be8 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0x3e4188d3 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3e45636f __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x3e5d508c __folio_alloc +EXPORT_SYMBOL vmlinux 0x3e61c2c3 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x3e6d0a17 noop_llseek EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e7dc766 inet6_getname -EXPORT_SYMBOL vmlinux 0x3e830fa1 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x3e84fcd0 dma_fence_describe -EXPORT_SYMBOL vmlinux 0x3ea093bd bio_reset -EXPORT_SYMBOL vmlinux 0x3ea26464 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x3ea9f28d xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x3eb88d34 inet6_protos -EXPORT_SYMBOL vmlinux 0x3eca6a83 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x3e7ad4ff vfs_iter_write +EXPORT_SYMBOL vmlinux 0x3e821163 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3e905ce9 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x3e935220 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x3ea15e9a dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x3ea37ae5 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x3eb09988 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x3eb3bba1 fixed_size_llseek EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ee61518 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x3ed26b5f skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x3eee4b5a clocksource_unregister EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3f0046f5 kobject_del -EXPORT_SYMBOL vmlinux 0x3f0d9baf zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f216b00 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x3f2642ba __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4d90f7 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x3f7f88aa i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x3f4ec902 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x3f53d729 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x3f5b69b4 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x3f5f9789 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f9613ff d_add_ci -EXPORT_SYMBOL vmlinux 0x3fa1a48b __pci_register_driver -EXPORT_SYMBOL vmlinux 0x3fa80ce1 phy_print_status -EXPORT_SYMBOL vmlinux 0x3fae29af __phy_resume -EXPORT_SYMBOL vmlinux 0x3fb298da inet_addr_type +EXPORT_SYMBOL vmlinux 0x3f8cffbd of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x3f93c50c take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3f99ba47 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x3f9ed5f0 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc755da jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x3fd3d61b unmap_mapping_range EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3ff62788 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x400c9244 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x401b889f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x3fea4b24 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x3fefa9d3 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x3ff121b4 begin_new_exec +EXPORT_SYMBOL vmlinux 0x3ff2112f generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x3ffac3e1 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x3ffcef1e vm_insert_page +EXPORT_SYMBOL vmlinux 0x3ffe9187 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x40119beb md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x40166494 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x40233ca8 vma_set_file EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock -EXPORT_SYMBOL vmlinux 0x40251a6d ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0x402faa4f inet_release -EXPORT_SYMBOL vmlinux 0x403638c9 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x40378606 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x4043a552 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x40445036 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x405a85e1 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x4078d7a3 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x403628b6 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4042aeae iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x40482150 fman_register_intr +EXPORT_SYMBOL vmlinux 0x404f50ab cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x40514f08 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x4051f7e5 sk_capable +EXPORT_SYMBOL vmlinux 0x40599499 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x40648450 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x407643af amba_driver_register +EXPORT_SYMBOL vmlinux 0x40800c73 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot +EXPORT_SYMBOL vmlinux 0x4091bfec filp_close +EXPORT_SYMBOL vmlinux 0x40928676 dev_get_by_name EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409900e4 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x40a11f12 clk_add_alias +EXPORT_SYMBOL vmlinux 0x409db3c7 skb_copy_bits EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b0a61c backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x40ba9b20 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x40c5614c blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock -EXPORT_SYMBOL vmlinux 0x40d2efcf complete_request_key EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e40587 vm_mmap -EXPORT_SYMBOL vmlinux 0x40f27e39 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x40f2283e folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x40f9acaf kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x41024bba blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x4116ab7f freeze_bdev +EXPORT_SYMBOL vmlinux 0x40fb9c3b cdev_init +EXPORT_SYMBOL vmlinux 0x41284dc0 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x412953a5 generic_permission EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413a747b ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x414477a8 tcp_time_wait EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x414f0624 pcie_capability_clear_and_set_word_locked -EXPORT_SYMBOL vmlinux 0x4167bca4 dev_load -EXPORT_SYMBOL vmlinux 0x416ff5b4 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x417057a6 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x415f3819 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41982e5a dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x419e5c89 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x419a4f2a vm_insert_pages EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41b2ab8e alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x41bd7d47 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x41d8ee29 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x41abdc2b tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x41b2e7e7 inode_init_once +EXPORT_SYMBOL vmlinux 0x41c5a055 __bread_gfp +EXPORT_SYMBOL vmlinux 0x41d4915a elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x41ecc1a7 pci_restore_state EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x420b1724 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x42147a04 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x4224b289 udplite_prot +EXPORT_SYMBOL vmlinux 0x41f8ae22 mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x41f93604 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x4217e381 of_chosen +EXPORT_SYMBOL vmlinux 0x42186d0f skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x422dbffb dget_parent +EXPORT_SYMBOL vmlinux 0x423021be amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x4231ce4d sock_create_kern +EXPORT_SYMBOL vmlinux 0x423864f8 d_path EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424ddd63 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x42512ee5 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x4253f2c1 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4261f56d rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x4267229e nf_ct_attach -EXPORT_SYMBOL vmlinux 0x426a708e d_obtain_alias -EXPORT_SYMBOL vmlinux 0x42721aa1 file_remove_privs -EXPORT_SYMBOL vmlinux 0x42976538 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x42586943 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x4267765f fget_raw +EXPORT_SYMBOL vmlinux 0x42a9b42e vme_master_request EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42c67b6b sock_register -EXPORT_SYMBOL vmlinux 0x42dbf4ef of_node_get -EXPORT_SYMBOL vmlinux 0x42ed6915 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x42beeae3 simple_rename +EXPORT_SYMBOL vmlinux 0x42ca1ad5 vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f1df0f of_graph_is_present EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x43280721 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x432fda9a mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x4334f093 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x430386d1 param_set_byte +EXPORT_SYMBOL vmlinux 0x43049052 thread_group_exited +EXPORT_SYMBOL vmlinux 0x431a6c12 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x431eed00 iterate_fd +EXPORT_SYMBOL vmlinux 0x4332bea3 pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x4337e630 kfree_skb_reason EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x43439fb3 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x433faf71 filemap_splice_read EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43542a9f ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x435de463 of_phy_connect -EXPORT_SYMBOL vmlinux 0x43642b65 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x43659332 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x4368cbff fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x436de950 misc_register +EXPORT_SYMBOL vmlinux 0x437945dd inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43af3eac jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x438adfa9 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x43950012 configfs_register_group +EXPORT_SYMBOL vmlinux 0x439ec509 scsi_done +EXPORT_SYMBOL vmlinux 0x43a162e1 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x43afb97f tcp_init_sock EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule -EXPORT_SYMBOL vmlinux 0x43b0fe3a fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x43b85b6d vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x43b6debb tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x43b7f8cb pcie_print_link_status EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one -EXPORT_SYMBOL vmlinux 0x43c56c42 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x43c9efd9 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x43c6d6d4 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x43ca69f1 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x43ca85b2 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x43d08cfd unlock_page EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d58259 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x43e3ee3d dev_remove_offload +EXPORT_SYMBOL vmlinux 0x43ecbfe1 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x43f4b04c pcim_enable_device +EXPORT_SYMBOL vmlinux 0x43f6c5a6 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x43fe41bb generic_copy_file_range EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x440b83a1 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x4419de6f tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x442a8a80 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x4443f6ed pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x440dae7e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x442decd6 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x4443b147 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x445eac90 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x4458eb5e jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4477ea25 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x44813ab6 padata_free -EXPORT_SYMBOL vmlinux 0x449080da blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x4494dc2a set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x446cf50d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x446e5317 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x446f9dc4 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449c1427 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x44a16906 md_reload_sb -EXPORT_SYMBOL vmlinux 0x44ab567c __alloc_skb -EXPORT_SYMBOL vmlinux 0x44ae6b62 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x44af19a3 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x44c0015c call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x44c22b35 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x44ac1af4 locks_free_lock +EXPORT_SYMBOL vmlinux 0x44bef1fe sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x44d98015 nla_put_64bit EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f9793e xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x44f754eb xfrm_state_free EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45052c4d security_sock_graft EXPORT_SYMBOL vmlinux 0x450639ab sg_last -EXPORT_SYMBOL vmlinux 0x45074d73 jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450b9c03 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x4512441d pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x4519b060 of_parse_phandle_with_args_map EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x4527b9e7 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x45307ab3 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x4534fe41 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x4535178c misc_deregister -EXPORT_SYMBOL vmlinux 0x4538dfe1 mdiobb_read_c22 -EXPORT_SYMBOL vmlinux 0x45392376 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x453937a2 tls_client_hello_x509 EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45409900 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x4541db9d sock_create EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x45585c64 __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457f904c sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x45a26112 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x45a775d8 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x45bd9bca tcp_seq_next -EXPORT_SYMBOL vmlinux 0x45d60316 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x45d93852 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x45df5338 dm_put_device -EXPORT_SYMBOL vmlinux 0x45df7f12 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x45ed0b3e input_setup_polling -EXPORT_SYMBOL vmlinux 0x45f611d2 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x46016ea0 ethtool_aggregate_mac_stats -EXPORT_SYMBOL vmlinux 0x460ce401 skb_append +EXPORT_SYMBOL vmlinux 0x4589dfab pskb_extract +EXPORT_SYMBOL vmlinux 0x45ad2d42 sock_no_listen +EXPORT_SYMBOL vmlinux 0x45af4b83 ip6_output +EXPORT_SYMBOL vmlinux 0x45b07d37 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x45cc8c3e vfs_llseek +EXPORT_SYMBOL vmlinux 0x45ce879d nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x45d0359e fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x45d099b1 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x45d19a34 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x45f2eb42 put_fs_context +EXPORT_SYMBOL vmlinux 0x45ff5267 vc_cons +EXPORT_SYMBOL vmlinux 0x45ff60bb d_move +EXPORT_SYMBOL vmlinux 0x46011c93 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x460303d4 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x4608337a jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x46443a27 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x4644f1b0 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x46115aa9 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x461ec3d8 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x462081be tcp_parse_options EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x464cb303 pci_get_class EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x465f18ed dst_init EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x46705017 finish_no_open -EXPORT_SYMBOL vmlinux 0x46713494 elevator_alloc -EXPORT_SYMBOL vmlinux 0x4672b32c unregister_nls -EXPORT_SYMBOL vmlinux 0x467d6bd0 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x4678f4cb tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x469059e6 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x469138c5 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x46843791 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release -EXPORT_SYMBOL vmlinux 0x4699ef79 tcf_em_unregister EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a96276 __fput_sync -EXPORT_SYMBOL vmlinux 0x46aeacab inet_stream_ops -EXPORT_SYMBOL vmlinux 0x46b27197 vlan_for_each -EXPORT_SYMBOL vmlinux 0x46b64ff8 inet_dgram_connect EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options -EXPORT_SYMBOL vmlinux 0x46be5cc3 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46d7a6ee thaw_super +EXPORT_SYMBOL vmlinux 0x46c4aac3 bio_uninit +EXPORT_SYMBOL vmlinux 0x46d07569 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x46e577ed make_kuid EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size -EXPORT_SYMBOL vmlinux 0x47004059 param_ops_uint EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x470b3d3e inode_set_bytes EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x4729036c iommu_get_msi_cookie -EXPORT_SYMBOL vmlinux 0x4729a54a clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x4729ebc9 folio_migrate_copy -EXPORT_SYMBOL vmlinux 0x472c56f0 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0x472d156c pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x472d67b7 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x4754cb0f ptp_find_pin +EXPORT_SYMBOL vmlinux 0x4717dc84 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x4724c75c iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x473bc71a param_set_hexint +EXPORT_SYMBOL vmlinux 0x4741bb9a touch_buffer +EXPORT_SYMBOL vmlinux 0x47484db7 netlink_net_capable EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x476e63b2 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4777e08e xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x47800ddd max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x478ba7f0 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47946f99 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x479a26f3 param_set_ushort -EXPORT_SYMBOL vmlinux 0x479c8f03 dcb_getrewr_prio_pcp_mask_map -EXPORT_SYMBOL vmlinux 0x47a3c4a1 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x47b50fc5 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x47baea6c __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x479cf43d bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c35e53 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d3805d cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x47d8c351 zero_fill_bio EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47f0f278 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x47f45ccd uart_add_one_port -EXPORT_SYMBOL vmlinux 0x47faff0f dquot_alloc -EXPORT_SYMBOL vmlinux 0x47fee2f7 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x47df717e phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x4800dd22 ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x4811938c crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x48132d6a ip_setsockopt EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x482aebfa unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x48333219 bioset_init EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x485536ac tty_port_tty_get EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x486afc2e __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x487407ed input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x4879b9f0 d_splice_alias -EXPORT_SYMBOL vmlinux 0x488399ac fb_io_write +EXPORT_SYMBOL vmlinux 0x48670f61 proc_set_user +EXPORT_SYMBOL vmlinux 0x4870feac kern_unmount +EXPORT_SYMBOL vmlinux 0x4872e46f kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x4894c9c0 netdev_update_features EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a067c3 folio_create_empty_buffers EXPORT_SYMBOL vmlinux 0x48a53b47 dns_query -EXPORT_SYMBOL vmlinux 0x48a8174d flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node -EXPORT_SYMBOL vmlinux 0x48d725c1 d_genocide EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x48fdc2ab tty_do_resize +EXPORT_SYMBOL vmlinux 0x48e7d950 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x48fac0ef rtnl_notify +EXPORT_SYMBOL vmlinux 0x48fc897c __find_get_block EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range -EXPORT_SYMBOL vmlinux 0x49018d45 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x4909a790 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x491f8023 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x490d352b __devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x49137b43 udp_disconnect +EXPORT_SYMBOL vmlinux 0x491b6be5 super_setup_bdi EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x495fe6c0 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x4965e32a inet6_add_protocol EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x4970d790 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x496f1bea locks_delete_block +EXPORT_SYMBOL vmlinux 0x49700318 debugfs_create_automount EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x4979fe53 rtc_add_group -EXPORT_SYMBOL vmlinux 0x49975e64 cdrom_open +EXPORT_SYMBOL vmlinux 0x499561b4 path_is_under +EXPORT_SYMBOL vmlinux 0x4997b64b __ip_select_ident EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x499ffad5 arp_send -EXPORT_SYMBOL vmlinux 0x49a678d4 nlmsg_notify EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49c7b6d6 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x49d6f7ee console_stop -EXPORT_SYMBOL vmlinux 0x4a1c9cae handshake_req_private -EXPORT_SYMBOL vmlinux 0x4a22a94e unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x4a26f6c0 sync_filesystem -EXPORT_SYMBOL vmlinux 0x4a2aad36 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x4a39712c __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x49d04107 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x49ec84a8 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x49fafa00 mdiobus_read +EXPORT_SYMBOL vmlinux 0x49fc27b0 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x4a02c704 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x4a178f72 follow_pfn +EXPORT_SYMBOL vmlinux 0x4a2fb891 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x4a36978b vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a3ad920 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x4a3d61d1 netlink_capable -EXPORT_SYMBOL vmlinux 0x4a4b3770 input_inject_event -EXPORT_SYMBOL vmlinux 0x4a655540 fqdir_init -EXPORT_SYMBOL vmlinux 0x4a75a430 sk_ioctl +EXPORT_SYMBOL vmlinux 0x4a4baa2a scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x4a5a0edc jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x4a5a947c kmem_cache_size +EXPORT_SYMBOL vmlinux 0x4a704095 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x4a7ff227 input_set_capability EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4aa1f471 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x4abc8a24 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x4ac52780 folio_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x4accfd8f __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x4ad78a9c current_time -EXPORT_SYMBOL vmlinux 0x4ad7c2cf netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x4ae22158 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x4ab31f7a inode_io_list_del +EXPORT_SYMBOL vmlinux 0x4ac72362 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4aee2a01 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x4aef46e9 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x4af4b545 dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4af725d4 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x4af9fb6a rfkill_alloc +EXPORT_SYMBOL vmlinux 0x4afa336c sk_filter_trim_cap EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afeb3a2 devm_clk_get EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b1e16ee phy_write_paged -EXPORT_SYMBOL vmlinux 0x4b268a35 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x4b34f211 mount_nodev -EXPORT_SYMBOL vmlinux 0x4b385e6a __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x4b0c50d8 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x4b1000e2 param_set_long +EXPORT_SYMBOL vmlinux 0x4b16c6df __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4b1e03f7 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x4b212aea __free_pages +EXPORT_SYMBOL vmlinux 0x4b396a5b vme_lm_request EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b55563f get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x4b6ba60d ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b72b514 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x4b74fcab blk_execute_rq +EXPORT_SYMBOL vmlinux 0x4b70ac42 set_page_dirty EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq -EXPORT_SYMBOL vmlinux 0x4ba1839d i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x4bb69a4a qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x4bbe1815 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x4b764f9a __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x4b940a60 send_sig_info +EXPORT_SYMBOL vmlinux 0x4b99ae51 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x4bb5e9c4 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x4bca3d89 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x4bcb8458 sockopt_release_sock EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd81d77 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x4be408f3 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x4bea4ca3 input_set_keycode EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4bf3de20 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x4bfac439 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x4c05a588 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x4c02a594 nd_device_unregister EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c07ac76 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x4c0c8d1e of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x4c191bda inc_node_page_state -EXPORT_SYMBOL vmlinux 0x4c1d61c9 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x4c28c15c __folio_lock +EXPORT_SYMBOL vmlinux 0x4c36aafb __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x4c3af13f param_ops_bool EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c467d48 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x4c50a0fa sk_net_capable -EXPORT_SYMBOL vmlinux 0x4c6f4ce4 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x4c7a3855 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x4c903e6d blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x4ca29221 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x4cc1ee37 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x4ccbf32e tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x4cf116e2 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x4cf6890d ping_prot -EXPORT_SYMBOL vmlinux 0x4cfca73b rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x4cfefa0a dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x4c4397af __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x4c44cc05 __alloc_skb +EXPORT_SYMBOL vmlinux 0x4c4a5d45 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x4c4eab7b qdisc_put +EXPORT_SYMBOL vmlinux 0x4c55f7ee md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x4c604e2e tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x4c62ef28 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x4c7773f7 iptun_encaps +EXPORT_SYMBOL vmlinux 0x4c7be618 seq_release +EXPORT_SYMBOL vmlinux 0x4c952dc7 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x4c9c8cc2 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x4cb5917c starget_for_each_device +EXPORT_SYMBOL vmlinux 0x4cb65081 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x4cbc6102 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x4cbf0d7b md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x4cc6f150 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x4ce84329 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x4ced14d9 key_revoke +EXPORT_SYMBOL vmlinux 0x4cfdcc40 discard_new_inode +EXPORT_SYMBOL vmlinux 0x4d0423f5 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d120f74 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x4d2b731f __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x4d1c4d6c ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x4d2131f1 vfs_rmdir EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d649cc6 phy_attached_print +EXPORT_SYMBOL vmlinux 0x4d317a44 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x4d648ddf netif_receive_skb EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d7b0764 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x4d7e3ded lookup_one_qstr_excl -EXPORT_SYMBOL vmlinux 0x4d82d0c3 __fs_parse -EXPORT_SYMBOL vmlinux 0x4d83f357 registered_fb -EXPORT_SYMBOL vmlinux 0x4d8b8a4a qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x4d752830 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x4d7df470 of_iommu_get_resv_regions EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d962075 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9e6bf4 i2c_put_adapter EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4de44398 pci_find_bus EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x4deb6e9c tty_port_close +EXPORT_SYMBOL vmlinux 0x4decc56b f_setown +EXPORT_SYMBOL vmlinux 0x4def7809 __lock_buffer EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df951a2 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e0448c3 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x4e198462 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2defa3 dm_register_target EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e34e0df param_get_ulong EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e42d72e sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x4e4af9e0 genphy_read_status EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e608ca7 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x4e5c7422 alloc_fcdev EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e8f2880 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x4e757ecd jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x4e7b7b28 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x4e86a27f mdio_device_reset +EXPORT_SYMBOL vmlinux 0x4e89615c param_set_ushort +EXPORT_SYMBOL vmlinux 0x4e960d3b module_put +EXPORT_SYMBOL vmlinux 0x4e9e3ede remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea7fc4d nonseekable_open EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb10fdc flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x4eb20939 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ee243e5 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x4ef306f4 register_netdev -EXPORT_SYMBOL vmlinux 0x4ef80555 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x4f1740d6 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x4ec9530e kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x4ed13446 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x4edafbd2 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x4ee3630a sk_ns_capable +EXPORT_SYMBOL vmlinux 0x4eee49a8 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x4eeede17 mntget +EXPORT_SYMBOL vmlinux 0x4ef3948c sock_i_uid +EXPORT_SYMBOL vmlinux 0x4f021b74 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x4f04c406 cros_ec_cmd_xfer EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f204102 folio_account_redirty EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f219016 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2a6534 proc_create -EXPORT_SYMBOL vmlinux 0x4f2b1e48 rio_query_mport +EXPORT_SYMBOL vmlinux 0x4f3e4075 __ip_dev_find EXPORT_SYMBOL vmlinux 0x4f43d496 kobject_set_name EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f62b24d clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x4f6c0c6e vfs_statfs -EXPORT_SYMBOL vmlinux 0x4f6df79d pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x4f78eeab make_kuid +EXPORT_SYMBOL vmlinux 0x4f6e9aa1 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x4f7972b1 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x4f798f7b security_sb_remount +EXPORT_SYMBOL vmlinux 0x4f7ab0c0 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x4f865e5b netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f972862 filemap_flush -EXPORT_SYMBOL vmlinux 0x4fc4e3fa key_validate -EXPORT_SYMBOL vmlinux 0x4fcfc9a3 seq_read_iter -EXPORT_SYMBOL vmlinux 0x4fe3848a tcp_close -EXPORT_SYMBOL vmlinux 0x4fe71095 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x4f8cd82c sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x4f8f5deb km_state_expired +EXPORT_SYMBOL vmlinux 0x4fa40fa4 input_copy_abs +EXPORT_SYMBOL vmlinux 0x4fc8fc9e ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x4fd6a959 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4febfe78 da903x_query_status EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x50094ffe do_splice_direct EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500dced1 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x50208c00 inode_update_time EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x502799f7 fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5060d113 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x5039cae6 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x503d9172 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x50450796 max8998_bulk_read EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506285a9 devm_ioremap EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x5082a92b softnet_data -EXPORT_SYMBOL vmlinux 0x50885565 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x5089287d cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x507e87b1 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x5085d1b2 __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50901b99 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509d8210 unregister_key_type +EXPORT_SYMBOL vmlinux 0x50a337e0 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50ae270b d_find_alias -EXPORT_SYMBOL vmlinux 0x50b33c04 input_unregister_device +EXPORT_SYMBOL vmlinux 0x50ab0a8f of_device_alloc +EXPORT_SYMBOL vmlinux 0x50ac72a5 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x50b3917f generic_buffers_fsync +EXPORT_SYMBOL vmlinux 0x50b69f3a kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50be9c90 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x50cea537 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d39ce6 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x50e22641 ethtool_aggregate_phy_stats -EXPORT_SYMBOL vmlinux 0x50f07fd3 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x50ee92a9 netif_device_detach EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50fdf56f d_find_any_alias -EXPORT_SYMBOL vmlinux 0x51028658 netif_device_detach +EXPORT_SYMBOL vmlinux 0x50fb0e81 read_cache_page EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x51075b69 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x5108fed2 seq_dentry -EXPORT_SYMBOL vmlinux 0x51141a0d dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x511fb457 param_get_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x512dcd34 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x5132f617 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x51395ad0 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x510fc21f udp_seq_next +EXPORT_SYMBOL vmlinux 0x51155033 bio_free_pages +EXPORT_SYMBOL vmlinux 0x511b6491 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x51301f5a tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x51354346 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x51374618 rw_verify_area EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec -EXPORT_SYMBOL vmlinux 0x514bbbaa vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x514ea471 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x514e2302 dev_add_offload EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x515cdb52 submit_bio_wait EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x516223db acpi_pm_device_sleep_state EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5166e2ac _dev_err -EXPORT_SYMBOL vmlinux 0x517edae2 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x5197620e netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x516dad51 submit_bio +EXPORT_SYMBOL vmlinux 0x5174c81d xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x51782770 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x517a791d bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x517d1670 gro_cells_init +EXPORT_SYMBOL vmlinux 0x518a070b unregister_netdev +EXPORT_SYMBOL vmlinux 0x5195de67 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x519d209c neigh_event_ns +EXPORT_SYMBOL vmlinux 0x51a123e0 tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x51c5b228 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x51cd1de6 iget5_locked +EXPORT_SYMBOL vmlinux 0x51c28efb pipe_lock +EXPORT_SYMBOL vmlinux 0x51c6c61d flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x51c8bffb generic_setlease EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d7e51d skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x51f92955 dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0x51fbad07 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x51db3049 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x51e20c5d block_write_begin +EXPORT_SYMBOL vmlinux 0x51f63131 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x5206b6d7 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x5208cbd8 cros_ec_query_all EXPORT_SYMBOL vmlinux 0x520e97c4 proc_dostring -EXPORT_SYMBOL vmlinux 0x52121497 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x52221ef1 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x523e2c65 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x524684d4 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x524d3d54 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x526e3a23 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x52210c27 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x52355abb inode_init_owner +EXPORT_SYMBOL vmlinux 0x524eba12 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x526ee26d inode_set_flags EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x527a054d textsearch_unregister -EXPORT_SYMBOL vmlinux 0x527f11ab cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x529652a5 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x529678c1 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x52869734 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x5293b428 nf_log_trace EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52cf3e88 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x52d4e974 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x529bd912 inet_listen +EXPORT_SYMBOL vmlinux 0x52a8eb96 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x52a931c6 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x52b22e65 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x52be78ce textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x52c7d49e of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52db144a pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0x52ec7bba ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x52dd7c59 simple_setattr +EXPORT_SYMBOL vmlinux 0x52e87cfe fman_port_bind EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x52ff379d blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x52f9a83d phy_error +EXPORT_SYMBOL vmlinux 0x52fca39c bioset_exit +EXPORT_SYMBOL vmlinux 0x52fee01f folio_end_writeback EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x531c98d1 tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0x5322135c mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x5322663e acpi_get_handle EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533a0ef6 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x5342a26d tcp_req_err +EXPORT_SYMBOL vmlinux 0x53402a2c rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x5348ef11 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x535db568 unregister_netdev -EXPORT_SYMBOL vmlinux 0x535e3bb6 udp_poll -EXPORT_SYMBOL vmlinux 0x5380a7f0 __find_get_block +EXPORT_SYMBOL vmlinux 0x53626f95 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x5373fc4d dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x537fac90 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x538d11ae fsync_bdev EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53a86446 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x53adf7b2 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x53b2d5e0 can_nice +EXPORT_SYMBOL vmlinux 0x53b67528 drop_super_exclusive EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53e5961e page_pool_destroy +EXPORT_SYMBOL vmlinux 0x53bbd5f5 vfs_rename +EXPORT_SYMBOL vmlinux 0x53cd732d setup_new_exec +EXPORT_SYMBOL vmlinux 0x53df22e0 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f43f80 hid_bpf_ops EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings -EXPORT_SYMBOL vmlinux 0x53fc734a napi_complete_done EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x540cefe3 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x5411a2df proc_mkdir -EXPORT_SYMBOL vmlinux 0x541392e6 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x541d2ffc clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x54208890 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x5437bce6 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x54265a2c sk_stop_timer +EXPORT_SYMBOL vmlinux 0x5427d453 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x543429ed skb_kill_datagram EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54484db2 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x545d467d vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x5460942d _dev_crit -EXPORT_SYMBOL vmlinux 0x546b01b0 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x54897475 scsi_host_get +EXPORT_SYMBOL vmlinux 0x54728d42 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x54816889 filemap_get_folios_tag +EXPORT_SYMBOL vmlinux 0x5488c8e3 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x5492a59b jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x549c6c82 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x54ae8548 sock_init_data EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54b2c68a i2c_get_adapter -EXPORT_SYMBOL vmlinux 0x54bc1662 km_policy_expired -EXPORT_SYMBOL vmlinux 0x54be4b30 dma_set_mask -EXPORT_SYMBOL vmlinux 0x54c78508 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x54cea66c dev_kfree_skb_irq_reason EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54dd20f0 _dev_emerg EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e860f4 filemap_release_folio EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54f6cf21 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x5508ffc7 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x550f2f58 input_set_timestamp EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x552355bf remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x552abff3 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x552b242f kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x552ae9ed padata_set_cpumask EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x5536e2e4 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x55443d1f ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x553f9c42 dcb_setrewr EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5585e6d9 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x556f73c1 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x5580722c sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x558258d0 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x558921a4 inet_sendmsg EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559d3057 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x559dde9f sk_capable -EXPORT_SYMBOL vmlinux 0x55b4d410 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x55ca1a2c drop_nlink -EXPORT_SYMBOL vmlinux 0x55cd9485 input_reset_device +EXPORT_SYMBOL vmlinux 0x559127ea devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x559a2d08 pci_iounmap +EXPORT_SYMBOL vmlinux 0x559f5742 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x55a5a100 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x55c561c5 bdi_alloc +EXPORT_SYMBOL vmlinux 0x55cf0104 dm_table_get_md EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e33730 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x55f5b57a bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0x56062489 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x5610160e iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x560fea2e generic_file_open EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x561d928c blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x56248e35 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x5621d85f sock_from_file EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x564273ce eth_mac_addr EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x565b7469 param_set_long EXPORT_SYMBOL vmlinux 0x565caca8 abort_creds EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5688222a jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x56923fa0 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x56a1645d __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x5682652a blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x569268b5 mdio_device_free +EXPORT_SYMBOL vmlinux 0x56a29bb6 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x56a7bae8 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x56ad18fa dev_lstats_read +EXPORT_SYMBOL vmlinux 0x56b0321d tls_client_hello_x509 +EXPORT_SYMBOL vmlinux 0x56c17ea3 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56f5175f dquot_operations -EXPORT_SYMBOL vmlinux 0x5708c9c7 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x572d123c phy_read_paged -EXPORT_SYMBOL vmlinux 0x57377241 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x5737f8b0 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x56cad71a rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x56ef9255 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x5711b06c pci_choose_state +EXPORT_SYMBOL vmlinux 0x572c3d10 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x57320435 peernet2id EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x5750fc97 udp_set_csum +EXPORT_SYMBOL vmlinux 0x574d66f8 dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x575aecaf tcf_exts_change -EXPORT_SYMBOL vmlinux 0x576567f8 putname +EXPORT_SYMBOL vmlinux 0x575917b6 __skb_gso_segment EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x578372c2 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x57890d1c ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x576a368c blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x576cf19a simple_getattr +EXPORT_SYMBOL vmlinux 0x5771b4e7 rpmh_invalidate EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x579231d2 blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a62aca d_add +EXPORT_SYMBOL vmlinux 0x57a2ead0 dquot_initialize EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57ca487d cdev_init -EXPORT_SYMBOL vmlinux 0x57d74bf9 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x57bf618b copy_highpage +EXPORT_SYMBOL vmlinux 0x57c8f53b file_modified +EXPORT_SYMBOL vmlinux 0x57ce6ddb __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57e47e15 dev_kfree_skb_any_reason EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57fcee33 mdio_device_register -EXPORT_SYMBOL vmlinux 0x581340f3 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x5813bca4 give_up_console +EXPORT_SYMBOL vmlinux 0x580b7303 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581ca139 vc_resize EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58216e37 flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5855fc7b md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x58584064 inet_listen +EXPORT_SYMBOL vmlinux 0x584180d6 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x5875a600 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x587a363e dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc -EXPORT_SYMBOL vmlinux 0x587eaf2c xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x587e02be devfreq_add_device EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58898c08 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x588b8738 rpmh_invalidate -EXPORT_SYMBOL vmlinux 0x589130b9 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x588583e4 bio_add_page EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x589928c6 __netif_rx -EXPORT_SYMBOL vmlinux 0x589c544c d_move -EXPORT_SYMBOL vmlinux 0x58a0ffe7 ndisc_ns_create EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58afe91a fb_set_cmap EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b50e2a memory_cgrp_subsys EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58b86111 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x58c8e139 poll_freewait -EXPORT_SYMBOL vmlinux 0x58cdf2b0 netdev_err -EXPORT_SYMBOL vmlinux 0x58d37883 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x58e0b03a tty_unthrottle -EXPORT_SYMBOL vmlinux 0x58e28ca0 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x58b9bf95 dma_resv_init +EXPORT_SYMBOL vmlinux 0x58d54bb8 import_single_range +EXPORT_SYMBOL vmlinux 0x58d91c7b pps_event EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58f4f259 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x5916d83b __mdiobus_c45_write -EXPORT_SYMBOL vmlinux 0x591e62d6 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x592afc66 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x592ca47b kmalloc_caches +EXPORT_SYMBOL vmlinux 0x59196748 redraw_screen +EXPORT_SYMBOL vmlinux 0x59253c01 bio_copy_data +EXPORT_SYMBOL vmlinux 0x592c657a skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x593a3914 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x594c7460 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x596405ee __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x594e3bf7 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x5955fdbd tcf_block_get +EXPORT_SYMBOL vmlinux 0x5964f331 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x596644ea cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x5968dc6d proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5971e012 serio_reconnect -EXPORT_SYMBOL vmlinux 0x59776420 buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0x597a9e11 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x5972645a pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599f000f invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a9b98f security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59bca70e __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x59bf2b72 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x59ccd31f generic_update_time -EXPORT_SYMBOL vmlinux 0x59d00c25 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x59fc020a nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5a07abbe refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x5a0862bb devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x5a0916ca sock_no_listen +EXPORT_SYMBOL vmlinux 0x59be950a get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x59c0083f fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x59fb65d2 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x59fdbcfa vfs_fsync +EXPORT_SYMBOL vmlinux 0x5a0b0db5 pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a1043ab d_alloc_name -EXPORT_SYMBOL vmlinux 0x5a1bfcc6 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a35c3a5 genphy_update_link EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4b7232 __nlmsg_put EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a52ff35 ip_frag_next EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a6ed9dd vme_slot_num +EXPORT_SYMBOL vmlinux 0x5a6d728d tcp_make_synack +EXPORT_SYMBOL vmlinux 0x5a720b69 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x5a8889b3 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x5a921311 strncmp EXPORT_SYMBOL vmlinux 0x5a956b5b empty_zero_page -EXPORT_SYMBOL vmlinux 0x5a99681a config_item_put EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9b2825 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5abd645e textsearch_unregister EXPORT_SYMBOL vmlinux 0x5ac01b95 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x5ace13e5 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x5ad9db45 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x5adeabd8 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x5ac4d666 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x5acf0df8 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x5ad88f91 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x5ada8654 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5adf586d pci_remove_bus EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae4415e netdev_info -EXPORT_SYMBOL vmlinux 0x5ae49ede page_pool_unlink_napi -EXPORT_SYMBOL vmlinux 0x5ae725a2 inet_add_offload -EXPORT_SYMBOL vmlinux 0x5aeb97b2 mdiobus_c45_read_nested -EXPORT_SYMBOL vmlinux 0x5af116ae clear_nlink -EXPORT_SYMBOL vmlinux 0x5af7c62c irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x5afd1cf8 sock_bind_add +EXPORT_SYMBOL vmlinux 0x5b080727 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x5b0c8861 of_find_node_by_name EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3c3842 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b70e604 config_group_find_item -EXPORT_SYMBOL vmlinux 0x5b7f597c fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x5b7fef1a skb_clone_sk -EXPORT_SYMBOL vmlinux 0x5b800510 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x5b801381 dev_uc_add -EXPORT_SYMBOL vmlinux 0x5b8491f9 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x5b89c54d _copy_from_iter -EXPORT_SYMBOL vmlinux 0x5b8b90b4 mii_check_link -EXPORT_SYMBOL vmlinux 0x5b946050 __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x5ba7ffd2 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x5bc1b2a3 of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x5bc38edf put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x5b5ff1aa fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x5b693857 pci_dev_get +EXPORT_SYMBOL vmlinux 0x5b6bc058 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x5b95b835 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x5ba6d54d phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x5bbcbcf6 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x5bcaf784 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0x5bce69b9 elv_rb_former_request EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5bdcdfef config_item_init_type_name EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bfa95b7 generic_buffers_fsync_noflush -EXPORT_SYMBOL vmlinux 0x5bff2ef2 may_umount_tree -EXPORT_SYMBOL vmlinux 0x5c0a88bc inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x5c0b7e6b pci_scan_bus -EXPORT_SYMBOL vmlinux 0x5c15e83d register_qdisc +EXPORT_SYMBOL vmlinux 0x5beff67a pcim_iounmap +EXPORT_SYMBOL vmlinux 0x5c096988 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x5c0c8739 wireless_send_event +EXPORT_SYMBOL vmlinux 0x5c143a30 param_ops_int +EXPORT_SYMBOL vmlinux 0x5c1edaed is_nd_pfn +EXPORT_SYMBOL vmlinux 0x5c228e90 kill_pid EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c2a8e37 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x5c3af12f xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x5c3b013d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x5c3a7134 of_get_mac_address_nvmem EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c610099 key_task_permission -EXPORT_SYMBOL vmlinux 0x5c65103e skb_store_bits -EXPORT_SYMBOL vmlinux 0x5c719def netdev_alert -EXPORT_SYMBOL vmlinux 0x5caf973c try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x5cc7e3ff vfs_llseek +EXPORT_SYMBOL vmlinux 0x5c4b0985 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x5c4c9c28 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x5c58b51a netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x5c5e8083 processors +EXPORT_SYMBOL vmlinux 0x5c73bd08 block_truncate_page +EXPORT_SYMBOL vmlinux 0x5c7a9e9a blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x5c7de796 inet_frags_init +EXPORT_SYMBOL vmlinux 0x5ca6c7d0 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x5ca8da7c sock_no_linger +EXPORT_SYMBOL vmlinux 0x5cad9b9a skb_expand_head +EXPORT_SYMBOL vmlinux 0x5cc1c12e nf_log_unregister EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x5cded57a fc_mount -EXPORT_SYMBOL vmlinux 0x5ce712d9 copy_highpage +EXPORT_SYMBOL vmlinux 0x5cd8d161 of_cpu_device_node_get EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf7355a mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x5cf9f864 noop_dirty_folio EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d0dfa79 input_set_abs_params EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d18d97b dm_table_get_md -EXPORT_SYMBOL vmlinux 0x5d297143 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x5d42370c key_alloc +EXPORT_SYMBOL vmlinux 0x5d2b7e2b param_set_bool EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d4b43d6 may_umount -EXPORT_SYMBOL vmlinux 0x5d546dfa of_get_next_parent -EXPORT_SYMBOL vmlinux 0x5d64c989 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x5d8d8537 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x5d932d4a flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x5d53c232 simple_rmdir +EXPORT_SYMBOL vmlinux 0x5d622a75 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x5d64c5e0 register_qdisc +EXPORT_SYMBOL vmlinux 0x5d801863 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x5d855a48 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x5d860cbb tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x5d92cb70 cont_write_begin +EXPORT_SYMBOL vmlinux 0x5d9fafab get_phy_device EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dbb1eb4 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x5dd4fa4a posix_test_lock -EXPORT_SYMBOL vmlinux 0x5dd8a3bd dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x5df16469 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x5df29088 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x5dd459d4 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x5de9bd96 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e22b07c write_cache_pages -EXPORT_SYMBOL vmlinux 0x5e23bba7 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x5e22e440 tegra_dfll_resume EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e363ada i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e5ad668 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x5e413c52 rproc_del +EXPORT_SYMBOL vmlinux 0x5e4e2609 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x5e6b28b9 pci_assign_resource EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8b3c57 clk_bulk_get -EXPORT_SYMBOL vmlinux 0x5e9181e3 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x5e85b9bf sys_fillrect +EXPORT_SYMBOL vmlinux 0x5e87defd vm_iomap_memory EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5ebdb8f4 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x5ebf3518 stop_tty -EXPORT_SYMBOL vmlinux 0x5ec07d28 vme_dma_request +EXPORT_SYMBOL vmlinux 0x5eaeb147 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x5eb5ec92 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x5ebdf5ae submit_bio_noacct EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec93a40 nd_region_release_lane EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed65787 wait_for_key_construction EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edcb1e8 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x5ee3902e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x5ef3a792 phy_suspend EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f10d146 devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0x5f192e2d tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x5f1b7bc8 neigh_destroy -EXPORT_SYMBOL vmlinux 0x5f220120 kern_unmount EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f316ef0 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f5b7c84 tegra_ivc_cleanup EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f6da450 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x5f71be03 __folio_alloc -EXPORT_SYMBOL vmlinux 0x5f77e28b jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x5f7919e5 fb_get_mode -EXPORT_SYMBOL vmlinux 0x5f89dd2f mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0x5f916078 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x5f7dc049 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f9b6b99 mmc_register_driver -EXPORT_SYMBOL vmlinux 0x5fa38c2e page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x5fc329f5 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5f9c0ed9 mount_single +EXPORT_SYMBOL vmlinux 0x5fb4c4f4 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x5fbd9f3b pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fcba25d free_buffer_head -EXPORT_SYMBOL vmlinux 0x5fd55bde set_user_nice -EXPORT_SYMBOL vmlinux 0x5fd68ab4 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x5fe95551 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x5fee4d17 register_framebuffer -EXPORT_SYMBOL vmlinux 0x5feebc61 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x5ff233f0 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x5fdd7aaf nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x5fddf0f2 param_get_charp +EXPORT_SYMBOL vmlinux 0x5feafd37 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x5ff621c5 inet6_offloads EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffba861 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x6002a549 prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x60030a5f jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit -EXPORT_SYMBOL vmlinux 0x600d07c7 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x601566db mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x600e8fce block_dirty_folio +EXPORT_SYMBOL vmlinux 0x601c68f3 timestamp_truncate EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x60246b72 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x602a1639 dput +EXPORT_SYMBOL vmlinux 0x60286301 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x602b4dd1 pci_reenable_device EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603eef27 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x60481d5b dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x60359e33 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x608376bc dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x60734336 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x60838727 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x6083eca1 napi_complete_done +EXPORT_SYMBOL vmlinux 0x60841de2 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x60878e08 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x6089e73e vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x608a43d8 __mdiobus_write EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6092694c ppp_unit_number EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add -EXPORT_SYMBOL vmlinux 0x60b2dafc phy_init_hw +EXPORT_SYMBOL vmlinux 0x60b24e64 scsi_dma_map EXPORT_SYMBOL vmlinux 0x60bbb124 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x60ce89db __netlink_dump_start EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e3567a jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x60e3cf42 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x60e8c7c5 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x60e9b51a pipe_lock -EXPORT_SYMBOL vmlinux 0x60fcfeb5 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x60e9384e input_match_device_id +EXPORT_SYMBOL vmlinux 0x60f398fe mmc_hw_reset EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x610ee505 devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x611d164a vme_irq_free +EXPORT_SYMBOL vmlinux 0x61125cbc tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0x611a0cd3 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x61264db4 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x61300164 igrab EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x613f0574 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x614c474e textsearch_register +EXPORT_SYMBOL vmlinux 0x6155235c pci_write_vpd EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x615977f5 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x615c15cf sock_create_kern -EXPORT_SYMBOL vmlinux 0x61634198 netif_device_attach -EXPORT_SYMBOL vmlinux 0x6174c0d2 audit_log_start -EXPORT_SYMBOL vmlinux 0x61752532 mii_check_media +EXPORT_SYMBOL vmlinux 0x61682bfb folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x616c5f78 elv_rb_latter_request EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x61803091 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x61858ab7 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x61834a6c dev_uc_sync EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618bdc22 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x61949fba alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x619d77f9 folio_mark_dirty -EXPORT_SYMBOL vmlinux 0x619da02c page_get_link +EXPORT_SYMBOL vmlinux 0x619def3e mfd_add_devices +EXPORT_SYMBOL vmlinux 0x61b23fe7 par_io_of_config EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bcbd29 filemap_get_folios_contig -EXPORT_SYMBOL vmlinux 0x61c25005 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x61c2198a rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x61c8996f dev_disable_lro EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e61334 get_user_pages EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61febbb2 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x62136ad2 param_get_byte +EXPORT_SYMBOL vmlinux 0x61f36597 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x61f8f770 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x61ff7cfa mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x620d1a76 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621552b3 param_get_charp -EXPORT_SYMBOL vmlinux 0x621b681e bio_init_clone +EXPORT_SYMBOL vmlinux 0x621540a1 netpoll_setup EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623c7346 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x62447109 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x62447142 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0x6264074c tcp_prot -EXPORT_SYMBOL vmlinux 0x62651cbd tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x625bbc17 sync_blockdev +EXPORT_SYMBOL vmlinux 0x6265021a fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister -EXPORT_SYMBOL vmlinux 0x6274176a seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x627619ec seq_read EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range -EXPORT_SYMBOL vmlinux 0x627c3f90 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x6276d129 kill_anon_super EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62862c4c fman_get_revision EXPORT_SYMBOL vmlinux 0x628c0f8f dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x628f3436 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x62908b1b dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x62975709 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x62b04df6 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x62b67ee9 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x62cce8dc pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x62ce0f11 skb_eth_push +EXPORT_SYMBOL vmlinux 0x62caacb7 key_link EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62d9821f filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62f8a199 __sk_backlog_rcv EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x63238c10 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x63304835 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x6340e69e km_report -EXPORT_SYMBOL vmlinux 0x635dcfcf iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x6362466b fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x63760a98 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x632cd56b platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x633778e5 folio_mapping +EXPORT_SYMBOL vmlinux 0x6353f72d tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x63620245 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x6362d4d0 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x6365263f mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x6367f1c7 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x636eb412 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x638c09f0 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ac532d sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x63b2fbc8 ppp_input +EXPORT_SYMBOL vmlinux 0x63b92448 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x63d06e1f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x63d7e9d1 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x63e86337 dquot_alloc +EXPORT_SYMBOL vmlinux 0x63e9b8e6 ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ed2ebe input_open_device +EXPORT_SYMBOL vmlinux 0x63f007b7 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x63fea3e4 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x6402c8df sha512_block_data_order +EXPORT_SYMBOL vmlinux 0x6403413e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x640ced11 d_exact_alias +EXPORT_SYMBOL vmlinux 0x640ed29a __vfs_removexattr EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6426eba0 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x6428b9e6 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x6429f026 tcp_conn_request EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x6435fca7 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x643a5420 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x644b7a25 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x644a0893 of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x644d7da0 rtnl_create_link EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x6458f3c4 locks_free_lock -EXPORT_SYMBOL vmlinux 0x645f74f7 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x6464551d migrate_folio +EXPORT_SYMBOL vmlinux 0x64588d0d scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x645dbc8f configfs_depend_item +EXPORT_SYMBOL vmlinux 0x646173cf forget_cached_acl +EXPORT_SYMBOL vmlinux 0x646a8a57 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x646dee59 pid_task +EXPORT_SYMBOL vmlinux 0x6470fc66 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x6476e971 logfc +EXPORT_SYMBOL vmlinux 0x647c985b mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x6489492f xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x6486160d posix_acl_chmod EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6494a939 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x6497162e of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x64929874 pci_dev_put +EXPORT_SYMBOL vmlinux 0x649e7e35 submit_bh EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64ac6ab6 reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c4d365 phy_request_interrupt EXPORT_SYMBOL vmlinux 0x64d11af1 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x64e2d878 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x64e32caa security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x64ed325b posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x64f1a05a __napi_schedule -EXPORT_SYMBOL vmlinux 0x651079a6 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x64ddc5fc path_get EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x65173aa6 __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652006eb generic_block_bmap EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652cb26f mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x65212459 bpf_link_put +EXPORT_SYMBOL vmlinux 0x652a3be3 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6540f668 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x6553a30b eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x6567c456 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x654e4cb5 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x6550002d posix_lock_file +EXPORT_SYMBOL vmlinux 0x656256e0 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x6565c929 dev_mc_unsync EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x65712553 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x6577f342 pci_choose_state -EXPORT_SYMBOL vmlinux 0x657d77a7 dst_alloc -EXPORT_SYMBOL vmlinux 0x65820e00 __bio_advance +EXPORT_SYMBOL vmlinux 0x6573ea81 folio_set_bh +EXPORT_SYMBOL vmlinux 0x65773df7 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x657defc3 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x658075a5 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x6591d855 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x6598a10d tegra_ivc_reset EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x659ff59b md_check_recovery +EXPORT_SYMBOL vmlinux 0x65abb527 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x65bb589a sockfd_lookup +EXPORT_SYMBOL vmlinux 0x65cb86e1 of_node_put +EXPORT_SYMBOL vmlinux 0x65d05b2b netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d30590 unlock_two_nondirectories 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 0x65f7ec3d netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x66015e0c blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x6606ee3b inode_to_bdi -EXPORT_SYMBOL vmlinux 0x6607a778 genphy_suspend -EXPORT_SYMBOL vmlinux 0x6617f7ed tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x65f5d1e5 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x661ab26b tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x66230956 of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0x6626afca down -EXPORT_SYMBOL vmlinux 0x663e72c1 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x662730cd migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x662885f8 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x662dbf46 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x66410879 param_get_long EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x664fb036 ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x665f0afb mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin EXPORT_SYMBOL vmlinux 0x666c14c0 __traceiter_dma_fence_emit EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x6676b21d __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x667c414d udp_pre_connect EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x6683efba seq_escape_mem EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x6690018b tcf_idr_search EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x66a1d03c dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x66a26545 inet_protos -EXPORT_SYMBOL vmlinux 0x66ab793d set_page_writeback +EXPORT_SYMBOL vmlinux 0x66a4fb2e of_n_addr_cells EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66c9d01c vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x66cbe60e generic_block_bmap +EXPORT_SYMBOL vmlinux 0x66bb22ad blk_put_queue +EXPORT_SYMBOL vmlinux 0x66d416c1 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x66e6911f mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x66ead2fd vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit -EXPORT_SYMBOL vmlinux 0x67051488 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x673870aa netdev_printk +EXPORT_SYMBOL vmlinux 0x66f1fdc0 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x66f8a5cc xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x670910dd block_commit_write +EXPORT_SYMBOL vmlinux 0x670c4f13 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x672c6b03 file_ns_capable EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674e05a5 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x6753a1aa kmem_cache_free +EXPORT_SYMBOL vmlinux 0x675ce589 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x676efc3a inet_csk_accept +EXPORT_SYMBOL vmlinux 0x6785df17 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x6787d6ca flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67a2f60d n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x67a4432e proc_set_user -EXPORT_SYMBOL vmlinux 0x67aeade2 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x6792b565 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x67aba7a7 to_ndd +EXPORT_SYMBOL vmlinux 0x67ac7551 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b43390 mmc_release_host EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67ba5fb6 generic_update_time EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67c2b2e7 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x67c5ef32 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x67d6dbcb scsi_print_sense -EXPORT_SYMBOL vmlinux 0x67e82127 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x67e96071 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x67ff6f60 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x67c875e5 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x67eddea1 proc_create_data +EXPORT_SYMBOL vmlinux 0x67fc960d finish_no_open +EXPORT_SYMBOL vmlinux 0x680de08f configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x6812f116 regset_get -EXPORT_SYMBOL vmlinux 0x68195f1e security_sctp_assoc_established -EXPORT_SYMBOL vmlinux 0x686239a8 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x68632b4d netlink_broadcast +EXPORT_SYMBOL vmlinux 0x6839f57b arp_send +EXPORT_SYMBOL vmlinux 0x683ec08e phy_attach +EXPORT_SYMBOL vmlinux 0x6845520c __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x68480848 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x6849bc78 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x6858ed6f phy_print_status +EXPORT_SYMBOL vmlinux 0x685fed39 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x686a9eba of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x68700990 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x688cd572 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x688d452d fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x689067dd dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x689301b8 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x68cb2a50 load_nls_default -EXPORT_SYMBOL vmlinux 0x68fae144 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x6897c397 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x68b61cec of_device_register +EXPORT_SYMBOL vmlinux 0x68bac59e page_mapping +EXPORT_SYMBOL vmlinux 0x68bce9e4 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x68d8032c mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x68fe5a61 key_type_keyring +EXPORT_SYMBOL vmlinux 0x69014441 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x69052844 __ps2_command -EXPORT_SYMBOL vmlinux 0x691b3fe8 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x691efbc9 uart_register_driver -EXPORT_SYMBOL vmlinux 0x6928111c netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x692c7f1c dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x69361207 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x694e77ec phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x695130f8 kill_pid +EXPORT_SYMBOL vmlinux 0x6911c728 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x6920ebab dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x69526f18 blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69929e9a ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x699bc8da pci_bus_type -EXPORT_SYMBOL vmlinux 0x69a6dfbd mod_node_page_state -EXPORT_SYMBOL vmlinux 0x69d532f1 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x69d59237 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x6997f2b9 build_skb_around +EXPORT_SYMBOL vmlinux 0x699e9fe6 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x69b08cba pnp_device_detach +EXPORT_SYMBOL vmlinux 0x69befb9c cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x69c580b0 keyring_clear EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e64352 xfrm_input -EXPORT_SYMBOL vmlinux 0x6a005c9d phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x69e15b2c mount_nodev +EXPORT_SYMBOL vmlinux 0x69f730fc in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x69fd2b9f textsearch_prepare EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a1efd10 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x6a2ad337 pci_fixup_device EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe -EXPORT_SYMBOL vmlinux 0x6a45b5ee icmp_ndo_send -EXPORT_SYMBOL vmlinux 0x6a4895df __devm_request_region -EXPORT_SYMBOL vmlinux 0x6a4fa5f3 key_revoke -EXPORT_SYMBOL vmlinux 0x6a51d398 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x6a5addd9 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x6a3a524e vfs_link +EXPORT_SYMBOL vmlinux 0x6a5653a4 folio_migrate_copy EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5d1e97 param_ops_hexint EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5f7cb7 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a6fa01d folio_set_bh +EXPORT_SYMBOL vmlinux 0x6a746a94 param_set_copystring +EXPORT_SYMBOL vmlinux 0x6a7e59d0 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6aaa6528 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x6ab8338c devm_of_iomap -EXPORT_SYMBOL vmlinux 0x6ada6f1b tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x6a9edddf inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6adcea4f md_cluster_ops EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aebadac kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x6ae67321 param_ops_charp EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6aef9d13 acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x6b09f53d netdev_change_features -EXPORT_SYMBOL vmlinux 0x6b1704dd pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x6b19553b rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x6b210f22 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x6b21f842 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x6af8d4c1 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x6afac232 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x6afcd045 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x6b1ed756 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x6b228603 folio_migrate_mapping EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b2dc2d3 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6b2eb934 rpmh_write -EXPORT_SYMBOL vmlinux 0x6b3b0fc9 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x6b3f2e6f fb_io_read +EXPORT_SYMBOL vmlinux 0x6b3c52a2 skb_copy +EXPORT_SYMBOL vmlinux 0x6b3c6ce1 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6b47c8e2 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x6b4cfdde folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b6f5a60 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x6b6003ad pcie_capability_clear_and_set_word_locked +EXPORT_SYMBOL vmlinux 0x6b7c61ed ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b86c7f9 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x6b8a136d ip_fraglist_init EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6ba4190f xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x6bbd2f3b dev_addr_add +EXPORT_SYMBOL vmlinux 0x6b8c6a77 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x6ba8b2a5 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x6bc300d5 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc7bf08 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x6bc8e09a __nlmsg_put +EXPORT_SYMBOL vmlinux 0x6bcb5a4a tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bdcf835 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6becdf96 may_setattr -EXPORT_SYMBOL vmlinux 0x6c0bba4c udp6_csum_init -EXPORT_SYMBOL vmlinux 0x6c109881 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x6bf155cd dev_trans_start +EXPORT_SYMBOL vmlinux 0x6bf19bfe cdrom_check_events +EXPORT_SYMBOL vmlinux 0x6c0d2f56 netlink_capable +EXPORT_SYMBOL vmlinux 0x6c1d6550 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c302e1a fb_set_suspend -EXPORT_SYMBOL vmlinux 0x6c39f4ce xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x6c533e1a fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x6c5dceab pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x6c5df981 key_invalidate +EXPORT_SYMBOL vmlinux 0x6c265151 __block_write_full_folio +EXPORT_SYMBOL vmlinux 0x6c3205b9 mmc_start_request +EXPORT_SYMBOL vmlinux 0x6c34605e pci_release_regions +EXPORT_SYMBOL vmlinux 0x6c3ee783 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x6c46fb57 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x6c50fec8 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x6c5da010 dev_uc_init EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c649d7f flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x6c80e282 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x6c8bf545 tty_hangup -EXPORT_SYMBOL vmlinux 0x6c90ff36 skb_ext_add -EXPORT_SYMBOL vmlinux 0x6caed466 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cce413c security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x6cddf49c __module_put_and_kthread_exit -EXPORT_SYMBOL vmlinux 0x6ce72e6c xfrm_state_add +EXPORT_SYMBOL vmlinux 0x6ccae380 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x6ce17dec gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x6cf01d30 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf3fc91 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x6cf4218b mmc_release_host -EXPORT_SYMBOL vmlinux 0x6d1374c1 netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0x6d154784 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x6d04ed7e new_inode +EXPORT_SYMBOL vmlinux 0x6d06b940 sock_no_ioctl EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d1eea85 kern_path_create EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d52a391 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x6d38433a security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x6d43381c tty_register_device EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x6d681ca7 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x6d6a985e folio_add_lru -EXPORT_SYMBOL vmlinux 0x6d6f8b72 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x6d5f6fe8 d_instantiate_new EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d7d4702 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x6d804f47 kern_path +EXPORT_SYMBOL vmlinux 0x6d7dea3e neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x6d8e93c1 sock_no_bind EXPORT_SYMBOL vmlinux 0x6d933508 lynx_pcs_destroy -EXPORT_SYMBOL vmlinux 0x6d946641 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x6da3968f pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6dac1a1e xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbf5623 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dd9a645 cfb_copyarea EXPORT_SYMBOL vmlinux 0x6ddfd09c unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x6de7d815 add_to_pipe -EXPORT_SYMBOL vmlinux 0x6deb2d3a dst_dev_put -EXPORT_SYMBOL vmlinux 0x6dec2cc3 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6dfeb2de xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x6e2ae2a1 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x6e462554 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x6e48d76c vme_slave_request -EXPORT_SYMBOL vmlinux 0x6e5a0931 inet_sk_get_local_port_range +EXPORT_SYMBOL vmlinux 0x6e12eb85 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6e1f26ba blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x6e29e0c0 skb_dump +EXPORT_SYMBOL vmlinux 0x6e32f639 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x6e46f3c0 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x6e56b7a1 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x6e57529b invalidate_bdev EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e632a48 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x6e65631c fs_param_is_string EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e74abe4 param_ops_long -EXPORT_SYMBOL vmlinux 0x6e7b98a0 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x6e853470 kobject_get -EXPORT_SYMBOL vmlinux 0x6e8a1390 md_write_end -EXPORT_SYMBOL vmlinux 0x6e8e39e5 file_update_time -EXPORT_SYMBOL vmlinux 0x6e95e0b3 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x6e857108 __sock_create +EXPORT_SYMBOL vmlinux 0x6e864560 mntput EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea1cdb8 read_cache_page EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ee41401 finish_swait -EXPORT_SYMBOL vmlinux 0x6eebdad1 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x6ec17c44 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x6ece52b6 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6ece9b91 devm_memunmap +EXPORT_SYMBOL vmlinux 0x6ed2332d copy_splice_read +EXPORT_SYMBOL vmlinux 0x6ed49100 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6ef00a4e sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x6ef02b2f page_symlink -EXPORT_SYMBOL vmlinux 0x6efab1d3 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x6eee0bc7 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x6f061ad5 msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f1bb6a2 dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0x6f2125ab proc_symlink -EXPORT_SYMBOL vmlinux 0x6f417334 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x6f1a1eb2 dma_find_channel +EXPORT_SYMBOL vmlinux 0x6f1b8053 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x6f37894f iov_iter_discard EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove +EXPORT_SYMBOL vmlinux 0x6f465266 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f4e0717 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f5e7570 config_group_init +EXPORT_SYMBOL vmlinux 0x6f6c49d3 set_nlink EXPORT_SYMBOL vmlinux 0x6f7793a5 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x6f7b4532 block_write_end -EXPORT_SYMBOL vmlinux 0x6f7e1c6c md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x6f78224f xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x6f913e7d tcp_shutdown EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f95b22c nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x6f9eb717 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x6fa78686 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x6fa92f9d fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x6fb306e1 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x6fa1c1df sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x6fa5da11 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x6fb3699b blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fbfc5fd inet_bind EXPORT_SYMBOL vmlinux 0x6fc48021 dynamic_cond_resched EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fcd06dc inet_put_port -EXPORT_SYMBOL vmlinux 0x6fd29976 blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x6ff305e1 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x6fefded6 sock_create_lite +EXPORT_SYMBOL vmlinux 0x6ff0af50 ping_prot EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched -EXPORT_SYMBOL vmlinux 0x6ffbaf37 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x6ffe69ec vfs_fsync EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x70055f1d trace_event_printf -EXPORT_SYMBOL vmlinux 0x7009a44f devm_mmc_alloc_host EXPORT_SYMBOL vmlinux 0x700c6c17 key_create -EXPORT_SYMBOL vmlinux 0x700ec63d tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x701acced scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x701f2f4b tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x70136916 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x7018e09e ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702892eb __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x704ff147 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x70598d05 blk_rq_init +EXPORT_SYMBOL vmlinux 0x703d761e rproc_detach +EXPORT_SYMBOL vmlinux 0x7056319c generic_buffers_fsync_noflush EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x7061ee19 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x707504fb console_start -EXPORT_SYMBOL vmlinux 0x7080b9dc inet_offloads -EXPORT_SYMBOL vmlinux 0x70813b20 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x70aa4561 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x70630e1b skb_queue_head +EXPORT_SYMBOL vmlinux 0x7063bf25 finish_swait +EXPORT_SYMBOL vmlinux 0x70659f83 netif_rx +EXPORT_SYMBOL vmlinux 0x7068e7f1 devm_request_resource +EXPORT_SYMBOL vmlinux 0x707108ce uart_register_driver +EXPORT_SYMBOL vmlinux 0x707aa253 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x7096f2c7 phy_disconnect +EXPORT_SYMBOL vmlinux 0x709bb8b7 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x709c8b92 xfrm_state_add EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70b61aa5 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x70bfe622 pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x70c82f20 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x70b7dddc flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool EXPORT_SYMBOL vmlinux 0x70daa11e dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x70e0ad33 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x70e3d74a vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x70efdd5f of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x711203ff skb_vlan_push +EXPORT_SYMBOL vmlinux 0x70e513f7 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x70efe712 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x7103c747 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x71040e73 to_nd_btt +EXPORT_SYMBOL vmlinux 0x710ce73c dev_deactivate +EXPORT_SYMBOL vmlinux 0x7114c5ed mr_table_alloc +EXPORT_SYMBOL vmlinux 0x71188dd4 init_special_inode EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712ba7b7 of_get_parent +EXPORT_SYMBOL vmlinux 0x71400b58 register_filesystem EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x71424db6 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x7150f4fa mmc_can_trim EXPORT_SYMBOL vmlinux 0x7155bcf8 sync_file_get_fence EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715c5839 crypto_sha3_final +EXPORT_SYMBOL vmlinux 0x715f93df pin_user_pages EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7176211f mmc_erase EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x718f955e task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x718ab9e5 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x718d91b5 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x7199df71 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71ac5d2d jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0x71e50d08 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x71e90c94 path_is_under +EXPORT_SYMBOL vmlinux 0x71a8e295 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x71c44335 pci_request_region +EXPORT_SYMBOL vmlinux 0x71cffdad __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x71e10c7c scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x71fb6892 dma_fence_array_next -EXPORT_SYMBOL vmlinux 0x71fbc315 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x72026e69 node_data +EXPORT_SYMBOL vmlinux 0x71fbb4e7 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7204254b dma_async_device_unregister EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x721a9366 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x722148b9 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x723e0d47 tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0x72436f7f param_ops_short -EXPORT_SYMBOL vmlinux 0x724a0513 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x724f9a7a tty_port_close -EXPORT_SYMBOL vmlinux 0x7263c3eb qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x72690b5b i2c_get_match_data +EXPORT_SYMBOL vmlinux 0x7224f15e bio_endio +EXPORT_SYMBOL vmlinux 0x722c9d86 open_exec +EXPORT_SYMBOL vmlinux 0x7235d66f rt6_lookup +EXPORT_SYMBOL vmlinux 0x723b71de dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x725d6672 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x7264b122 irq_domain_set_info EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x727443ec follow_up +EXPORT_SYMBOL vmlinux 0x72747e9a flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7278c1be genphy_read_status EXPORT_SYMBOL vmlinux 0x727de424 mem_section EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72aa4b09 put_fs_context -EXPORT_SYMBOL vmlinux 0x72ae3262 netdev_notice -EXPORT_SYMBOL vmlinux 0x72b6d014 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x72a81468 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x72acf879 skb_recv_datagram EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bdf3d2 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x72bf067f of_find_node_with_property EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eee775 __bforget EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72ffba79 param_get_short EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL vmlinux 0x731f8cfd param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7345901f qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x73486e70 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x732fadd4 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x733af489 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x734836ec pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x736ce8aa inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x737d82bd sk_mc_loop +EXPORT_SYMBOL vmlinux 0x7369d0b5 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x7369e263 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x737c8086 pci_get_device EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738c2a3b lookup_one -EXPORT_SYMBOL vmlinux 0x738f5db2 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x7392031a twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x7394f085 xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0x7380f8ce vfs_create +EXPORT_SYMBOL vmlinux 0x738da691 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x7390a41a freezing_slow_path EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr -EXPORT_SYMBOL vmlinux 0x739a6859 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x739c5bbf md_register_thread EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a520ef tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x73a6b911 invalidate_disk +EXPORT_SYMBOL vmlinux 0x73a4a3f2 vfs_iter_read EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73ba5b9d pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x73c48e57 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x73c5c088 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x73c823af bpf_map_get -EXPORT_SYMBOL vmlinux 0x73cced5c of_device_is_available -EXPORT_SYMBOL vmlinux 0x73e9ce3d prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x73ff0855 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x73bcb39b dev_remove_pack +EXPORT_SYMBOL vmlinux 0x73e49ba6 dev_uc_del +EXPORT_SYMBOL vmlinux 0x73e4e40c phy_device_remove +EXPORT_SYMBOL vmlinux 0x73f3f71f xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x74064124 mmc_can_erase EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive -EXPORT_SYMBOL vmlinux 0x7415b83a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x74243429 remove_proc_entry EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x7437b92c param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x742b828e mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x743a5e06 mdio_device_create EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x74531cf6 __blk_alloc_disk EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7462af76 redraw_screen -EXPORT_SYMBOL vmlinux 0x746e33d3 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x74715bcf phy_get_eee_err EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x747be31d genphy_resume EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749d082b copy_page_to_iter_nofault -EXPORT_SYMBOL vmlinux 0x74a0cf61 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x74a4be8e tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x74968f58 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x74972b6a pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x749dc9d6 tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c6d9f0 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x74d90991 key_move EXPORT_SYMBOL vmlinux 0x74da064a set_security_override EXPORT_SYMBOL vmlinux 0x74dd9e0b dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x74e1178d of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x7504f93d build_skb_around -EXPORT_SYMBOL vmlinux 0x751885b7 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x753079c3 fs_param_is_path -EXPORT_SYMBOL vmlinux 0x7537b8a7 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x75381a71 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x74e6a388 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x74ed7a75 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x74ef111a acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x74efdc93 _dev_info +EXPORT_SYMBOL vmlinux 0x74f12c4b pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x74f801d3 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x7504ebc7 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x752310e6 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x752460cb blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x7525393b fman_set_port_params +EXPORT_SYMBOL vmlinux 0x75360773 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x756b41b7 single_release -EXPORT_SYMBOL vmlinux 0x7573bb6e devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x757664f1 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x757bc3f4 pci_enable_link_state +EXPORT_SYMBOL vmlinux 0x757daa59 mmc_command_done EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x758986a4 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x758cf88a scsi_remove_device EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c0a002 simple_transaction_set EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d129b3 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x75d48d6a inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x75d26887 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x75d3a33d fs_param_is_blob EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e102c3 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x75ec978e mmc_remove_host -EXPORT_SYMBOL vmlinux 0x75fb11a5 bio_free_pages +EXPORT_SYMBOL vmlinux 0x75defefd find_inode_rcu +EXPORT_SYMBOL vmlinux 0x76059f56 inode_sub_bytes EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760ecb65 inet_shutdown -EXPORT_SYMBOL vmlinux 0x7610e5a3 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x760e29da make_bad_inode +EXPORT_SYMBOL vmlinux 0x7612c4f7 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x761a4783 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x762c1d56 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x76392a35 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x7640538b jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x76276d15 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x7627e0cf mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x762ab9ef fman_reset_mac +EXPORT_SYMBOL vmlinux 0x7638c526 genl_notify +EXPORT_SYMBOL vmlinux 0x7642ffb5 acpi_dev_get_first_match_dev EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764d3ee5 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x7649a3f5 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x7665bd43 serio_unregister_driver EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766e9428 module_refcount -EXPORT_SYMBOL vmlinux 0x76749262 mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x7683aea1 input_reset_device EXPORT_SYMBOL vmlinux 0x768ee329 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x769aa9fe configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x769e3289 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7695caa5 scsi_remove_host EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76b079d0 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x76b58d0c skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0x76c33059 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x76a981de vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x76ac9a3e pskb_expand_head +EXPORT_SYMBOL vmlinux 0x76b0f532 uart_match_port +EXPORT_SYMBOL vmlinux 0x76b7c37c textsearch_destroy +EXPORT_SYMBOL vmlinux 0x76b98a6c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x76bb8e41 sock_release +EXPORT_SYMBOL vmlinux 0x76cb9c4f pps_register_source EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76e771b0 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x76d3db86 crypto_sha3_final +EXPORT_SYMBOL vmlinux 0x76d6b3a4 md_bitmap_unplug_async +EXPORT_SYMBOL vmlinux 0x76da6bc1 max8998_read_reg EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x76f41285 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x7725281b retire_super -EXPORT_SYMBOL vmlinux 0x772d9a8f amba_device_unregister +EXPORT_SYMBOL vmlinux 0x77051b19 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x770890e9 mmc_add_host +EXPORT_SYMBOL vmlinux 0x772ec0da pcim_iomap_table EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773f2c68 vme_bus_type EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77689913 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0x776b9d1f jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x77720963 da903x_query_status -EXPORT_SYMBOL vmlinux 0x7789bdb8 tcp_recv_skb -EXPORT_SYMBOL vmlinux 0x778e1a9d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x77863b97 d_invalidate EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77a5cb77 bdi_unregister -EXPORT_SYMBOL vmlinux 0x77b19a49 tty_port_tty_set EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77cb29b3 amba_request_regions -EXPORT_SYMBOL vmlinux 0x77e6c1e7 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x77c5818c pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x77e35b0a zap_page_range_single EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77fb99c8 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78083464 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0x78161f39 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x782595c4 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x7829af80 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x783bdb64 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x783e1a5a scsi_host_busy -EXPORT_SYMBOL vmlinux 0x78409856 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x78447d2f inode_insert5 +EXPORT_SYMBOL vmlinux 0x781e2a76 netif_device_attach EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7853f17b deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x786c436a sock_edemux -EXPORT_SYMBOL vmlinux 0x7883f96d dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x78844988 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x784dc3e0 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x7855aed8 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x789e7e1c create_empty_buffers +EXPORT_SYMBOL vmlinux 0x789e7e38 xen_free_ballooned_pages EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a2d6e3 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78bdbc54 of_node_put -EXPORT_SYMBOL vmlinux 0x78d773dc mmc_retune_release +EXPORT_SYMBOL vmlinux 0x78d70ef4 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x78d767ee md_write_end EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78f3efd0 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x7900ede7 lynx_pcs_create_mdiodev -EXPORT_SYMBOL vmlinux 0x79135f61 acpi_dev_uid_to_integer -EXPORT_SYMBOL vmlinux 0x79195781 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x78e33429 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x78edaa35 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x7907e852 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x790a8f63 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x7926e2f7 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x79271879 rproc_boot -EXPORT_SYMBOL vmlinux 0x7934a5a7 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x7934fcb7 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0x7956ab41 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x7981bb7b sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x7928ae30 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x794b5cc7 md_done_sync +EXPORT_SYMBOL vmlinux 0x794d4bd1 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x794da2ec jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x7950a778 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x795e2568 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x79620f6d netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x797ff425 handshake_req_alloc EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x799b0812 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79c4b045 rproc_del -EXPORT_SYMBOL vmlinux 0x79dbbb5f write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x79c2d860 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x79d33975 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x79d7406c sock_no_shutdown EXPORT_SYMBOL vmlinux 0x79e4cbe8 override_creds -EXPORT_SYMBOL vmlinux 0x79e64740 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x79f7311d xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x7a0b97fc nd_btt_version +EXPORT_SYMBOL vmlinux 0x79ec68cc kill_fasync +EXPORT_SYMBOL vmlinux 0x7a030f14 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x7a11dda5 genlmsg_put EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a250bc1 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x7a1d9a5b mmc_put_card +EXPORT_SYMBOL vmlinux 0x7a22de1c dst_dev_put +EXPORT_SYMBOL vmlinux 0x7a26eac5 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7a27c714 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2c2b37 __module_get EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a3c1a70 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x7a3fab7a cdrom_release -EXPORT_SYMBOL vmlinux 0x7a434382 mmc_free_host +EXPORT_SYMBOL vmlinux 0x7a302bac phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x7a406707 pci_map_rom +EXPORT_SYMBOL vmlinux 0x7a461f8d tty_port_init +EXPORT_SYMBOL vmlinux 0x7a524dcb sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a6d5af7 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x7a7bd6ac netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7a591b99 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7a60c814 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x7a67de76 of_match_device +EXPORT_SYMBOL vmlinux 0x7a743335 dentry_open EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7a9eb147 md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aab0947 dev_uc_del +EXPORT_SYMBOL vmlinux 0x7ab05c46 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x7abd6aff of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x7ac2fe6c uart_get_baud_rate EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad279a3 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x7ad85caf ps2_begin_command EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7adca249 genphy_c45_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x7ae056e2 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x7ae5244e bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7ae599d6 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7b03ba55 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7b04e095 path_put +EXPORT_SYMBOL vmlinux 0x7b0d5583 d_alloc_parallel EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store -EXPORT_SYMBOL vmlinux 0x7b27deb5 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x7b322a05 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x7b34b413 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x7b141a13 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x7b1ab162 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x7b26ae43 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b4a0ec5 jbd2_journal_start EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b539ddf seq_lseek EXPORT_SYMBOL vmlinux 0x7b54f270 posix_acl_valid EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b604864 key_put -EXPORT_SYMBOL vmlinux 0x7b6a076d ethtool_aggregate_ctrl_stats -EXPORT_SYMBOL vmlinux 0x7b7da303 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x7b6b9a82 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x7b7dfc36 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x7b7fc3f0 mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b89099f dquot_scan_active -EXPORT_SYMBOL vmlinux 0x7ba52a9c consume_skb +EXPORT_SYMBOL vmlinux 0x7b8811f8 genphy_c45_eee_is_active EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7ba8d5ba pps_event EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc46dca flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x7be2ada9 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x7be9864f phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x7bf4a740 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x7bd35e66 dev_activate +EXPORT_SYMBOL vmlinux 0x7be8458e netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x7bf0a806 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x7c0f7e00 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2511f3 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x7c295c80 dev_deactivate EXPORT_SYMBOL vmlinux 0x7c2d03a6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x7c3133e7 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x7c3f3671 get_vm_area EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4c8ae0 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x7c6019a9 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x7c73232e scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x7c809dd3 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x7c83ae14 fman_register_intr -EXPORT_SYMBOL vmlinux 0x7c947740 mdiobus_scan_c22 -EXPORT_SYMBOL vmlinux 0x7c947bc2 genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0x7cb46ab3 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x7cb64014 pcie_capability_clear_and_set_word_unlocked +EXPORT_SYMBOL vmlinux 0x7c47df50 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x7c63ae22 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x7c69796f mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x7c76bf05 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x7c798b8c fwnode_iomap +EXPORT_SYMBOL vmlinux 0x7c7b97b8 __devm_request_region +EXPORT_SYMBOL vmlinux 0x7c8f5f10 netdev_crit +EXPORT_SYMBOL vmlinux 0x7ca0cb5e dquot_resume +EXPORT_SYMBOL vmlinux 0x7ca3435f configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0x7cbe0cd2 drop_reasons_by_subsys EXPORT_SYMBOL vmlinux 0x7cc18181 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x7cc408cf security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x7cca3de1 bdi_put -EXPORT_SYMBOL vmlinux 0x7ccc8b4f xp_free +EXPORT_SYMBOL vmlinux 0x7cd2d497 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages -EXPORT_SYMBOL vmlinux 0x7cdce266 pci_unregister_driver EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce2665d user_path_at_empty -EXPORT_SYMBOL vmlinux 0x7ce43d0d request_firmware_nowait EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cf2bd9d __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf38745 eth_header +EXPORT_SYMBOL vmlinux 0x7cfcc951 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d041930 ip6_output EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d126441 sock_set_priority EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d1f2a14 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x7d149c2b jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x7d19aef3 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d29a07a unlock_page -EXPORT_SYMBOL vmlinux 0x7d30761d __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x7d39c09e jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x7d3485f7 would_dump +EXPORT_SYMBOL vmlinux 0x7d37d666 input_register_handle +EXPORT_SYMBOL vmlinux 0x7d4194d0 tty_check_change EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d53a901 forget_cached_acl EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d5e3767 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x7d60a017 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x7d618683 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d97b435 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x7d9f8fe7 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x7da74b44 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x7d7fe33f ip_check_defrag +EXPORT_SYMBOL vmlinux 0x7d837c00 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7d996277 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x7da59177 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x7dae1960 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbf0979 crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dc83483 mii_check_media EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7dd2e087 folio_end_writeback -EXPORT_SYMBOL vmlinux 0x7dd56fb6 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x7dd874da vga_put -EXPORT_SYMBOL vmlinux 0x7df04d15 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x7df9d6f0 bmap -EXPORT_SYMBOL vmlinux 0x7dffa723 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x7dd72e7d blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e15354c ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e38fede xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x7e464e1a inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x7e3ea39e proc_mkdir EXPORT_SYMBOL vmlinux 0x7e4c3df5 efi -EXPORT_SYMBOL vmlinux 0x7e4ec77c param_ops_int EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e6b4a4d vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x7e71347a jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x7e9de03d __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7e5f4ea4 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x7e60dd97 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x7e65c10d padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7e7b17ae mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x7e8f4fd1 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7eba0711 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7ea9169c mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x7ec21cfa dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7ec5e051 sys_imageblit +EXPORT_SYMBOL vmlinux 0x7edf2530 register_shrinker +EXPORT_SYMBOL vmlinux 0x7edf66cc simple_write_begin +EXPORT_SYMBOL vmlinux 0x7eeb70fe md_write_inc EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ef713d8 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x7f0011a4 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x7efe8bc4 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x7f013622 msm_pinctrl_dev_pm_ops EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f0a1a07 scsi_device_get -EXPORT_SYMBOL vmlinux 0x7f149c4f fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x7f185a8c inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x7f108ec6 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x7f211345 tegra_dfll_runtime_suspend EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f50f8c6 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7f2509ae netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x7f2b1511 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x7f2ec180 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f6d6f20 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x7f789e7c scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x7f7b0cfe devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x7f7e601a sock_no_bind +EXPORT_SYMBOL vmlinux 0x7f6a7272 vme_slave_request EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f91cdc0 finalize_exec -EXPORT_SYMBOL vmlinux 0x7f9825e8 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x7f9bef1a tls_server_hello_psk -EXPORT_SYMBOL vmlinux 0x7f9c0acc phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x7fc6942e phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x7fcd7586 dev_activate +EXPORT_SYMBOL vmlinux 0x7fc08278 sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size EXPORT_SYMBOL vmlinux 0x7fde1fbc acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x7fe0e916 seq_release EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe686a3 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x7ffa73f8 thaw_bdev -EXPORT_SYMBOL vmlinux 0x800265f5 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x8013cdd2 fiemap_prep +EXPORT_SYMBOL vmlinux 0x7fea05da fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x7ff4ace5 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x801a3ca3 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x801f1d68 dquot_destroy EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80418933 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x80573170 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0x8064c67d cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x8046bbdd dcb_getapp +EXPORT_SYMBOL vmlinux 0x804c9bf6 uart_resume_port +EXPORT_SYMBOL vmlinux 0x805f0ff8 md_handle_request EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock -EXPORT_SYMBOL vmlinux 0x807ee8ab xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x809da41d nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x80893750 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x808a255a dquot_quota_on +EXPORT_SYMBOL vmlinux 0x8092bae2 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x8096533f flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x80a1857f of_property_read_reg EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80bdf13c fs_lookup_param -EXPORT_SYMBOL vmlinux 0x80c4be7e gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x80b22ad5 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x80c1e44d netif_skb_features EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cd3a99 input_copy_abs EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80d77c03 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x80da59bc pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80eff470 vfs_rename -EXPORT_SYMBOL vmlinux 0x8106d2cd blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x81078ad4 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8126d5fd elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x8134cf75 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x81480273 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x811f0fa6 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x81286671 scsi_print_command +EXPORT_SYMBOL vmlinux 0x813926cc bio_add_pc_page EXPORT_SYMBOL vmlinux 0x81491054 security_binder_transaction EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x81611d19 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x815fff7e get_user_pages +EXPORT_SYMBOL vmlinux 0x81659021 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x81793247 of_phy_find_device EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x8185b9d7 alloc_buffer_head EXPORT_SYMBOL vmlinux 0x8186333b cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x818e24bc ethtool_aggregate_rmon_stats +EXPORT_SYMBOL vmlinux 0x818c4720 serio_bus +EXPORT_SYMBOL vmlinux 0x818d5e11 device_match_acpi_handle EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x818fae56 security_sock_graft -EXPORT_SYMBOL vmlinux 0x8193d4b3 of_chosen +EXPORT_SYMBOL vmlinux 0x819b99d6 pcie_capability_clear_and_set_word_unlocked +EXPORT_SYMBOL vmlinux 0x819d1aba notify_change EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload -EXPORT_SYMBOL vmlinux 0x81ab037c sock_no_connect +EXPORT_SYMBOL vmlinux 0x81a8a86c locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x81ab5a96 of_get_parent +EXPORT_SYMBOL vmlinux 0x81ac55b5 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b44fac seq_write EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x81ce7d95 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x81c919cb phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x81d6c28b acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x81d8dd23 __bio_advance EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81dd0b5d genlmsg_put EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81e8c892 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x81ebae0b dquot_acquire -EXPORT_SYMBOL vmlinux 0x81fa3992 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x81feb2fa phy_write_mmd -EXPORT_SYMBOL vmlinux 0x8202f161 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x82202936 seq_release_private +EXPORT_SYMBOL vmlinux 0x821c7b31 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x82221f64 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x82339dbc pnp_is_active EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x8255ad10 genphy_loopback +EXPORT_SYMBOL vmlinux 0x823e6cb9 skb_push +EXPORT_SYMBOL vmlinux 0x82530c8a vfs_fsync_range EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk -EXPORT_SYMBOL vmlinux 0x82640dce irq_set_chip -EXPORT_SYMBOL vmlinux 0x828aec1a pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x828d6e33 simple_get_link -EXPORT_SYMBOL vmlinux 0x8295bafd pci_release_regions -EXPORT_SYMBOL vmlinux 0x8296014d rfkill_alloc -EXPORT_SYMBOL vmlinux 0x829be447 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x829e4757 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x826b09d8 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x82776a88 rproc_free +EXPORT_SYMBOL vmlinux 0x8280803d jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x8282e225 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x8289e10b get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x82a1975f _dev_err EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d7620c of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x82cc0390 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x82def7e6 vfs_unlink +EXPORT_SYMBOL vmlinux 0x82e42043 dput EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82ff9959 dma_map_resource -EXPORT_SYMBOL vmlinux 0x8309624e security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x8320ca59 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x83369991 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x8344b2ac netdev_crit +EXPORT_SYMBOL vmlinux 0x82f4ccf9 fd_install +EXPORT_SYMBOL vmlinux 0x830db1aa pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x8324f8d5 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x83252a23 fqdir_exit +EXPORT_SYMBOL vmlinux 0x83281902 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x83435d94 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x8344e98c send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x834de2f6 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x83553d77 netdev_notice +EXPORT_SYMBOL vmlinux 0x83569cfc i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8363d3b3 folio_unlock -EXPORT_SYMBOL vmlinux 0x836b34c9 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x8374103a kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x83854ed7 dma_sync_wait -EXPORT_SYMBOL vmlinux 0x838a4b46 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x835ab9ba __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0x83622fe9 param_set_charp +EXPORT_SYMBOL vmlinux 0x836b7e1c jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x83817f3c ipv4_specific +EXPORT_SYMBOL vmlinux 0x8386b301 tty_port_close_start EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83bddf62 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x83cf1c5d dma_free_attrs -EXPORT_SYMBOL vmlinux 0x83d070d6 vfs_getattr -EXPORT_SYMBOL vmlinux 0x83d65741 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x83d73658 mmc_request_done -EXPORT_SYMBOL vmlinux 0x83da174f security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x83e115ba get_watch_queue -EXPORT_SYMBOL vmlinux 0x83e36164 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x83f2cf8c elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x83fd1100 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x83ff5488 param_get_ushort -EXPORT_SYMBOL vmlinux 0x840436b9 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x84122f77 sock_alloc -EXPORT_SYMBOL vmlinux 0x84169850 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x84253f9b can_nice +EXPORT_SYMBOL vmlinux 0x83a99f46 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x83bb06b5 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x83c4f58a elv_rb_find +EXPORT_SYMBOL vmlinux 0x83d20bf2 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x83ed3875 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x83fbf9e3 to_nd_dax +EXPORT_SYMBOL vmlinux 0x840cc2ef dst_init +EXPORT_SYMBOL vmlinux 0x84177090 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x8423eeb4 pci_unregister_driver EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x842e1aaf __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x8449f222 generic_file_open -EXPORT_SYMBOL vmlinux 0x84530837 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x846de86c tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x845eebfb seq_dentry +EXPORT_SYMBOL vmlinux 0x84659a81 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x84878626 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x8490419a __wait_on_buffer EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x849af2c5 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84a7f44b cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x84afa237 flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0x84c50dd7 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x84e0ff89 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x84e23d43 bio_add_folio +EXPORT_SYMBOL vmlinux 0x84a5923a mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0x84d0aa78 __register_chrdev +EXPORT_SYMBOL vmlinux 0x84d5b94b mmc_free_host +EXPORT_SYMBOL vmlinux 0x85094aac ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x85101436 vfs_mkdir EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel -EXPORT_SYMBOL vmlinux 0x854be21d xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x854d1c10 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x854ea9fd page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x852626f4 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x85332520 arp_create +EXPORT_SYMBOL vmlinux 0x853a05d9 dquot_disable +EXPORT_SYMBOL vmlinux 0x854422ed inode_needs_sync EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85766ecd dev_addr_del +EXPORT_SYMBOL vmlinux 0x8577c8b0 pci_match_id +EXPORT_SYMBOL vmlinux 0x857d5983 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x858c5c03 device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x859c591a netdev_update_features -EXPORT_SYMBOL vmlinux 0x85a71f05 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x85b20d76 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c4b93e i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x85c858ee xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x85cc3246 of_get_mac_address_nvmem -EXPORT_SYMBOL vmlinux 0x85d7361b param_set_short -EXPORT_SYMBOL vmlinux 0x85ddfc6b compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ed2033 __skb_recv_udp EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f50e99 blk_integrity_register EXPORT_SYMBOL vmlinux 0x85f596a4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x862256b2 generic_read_dir +EXPORT_SYMBOL vmlinux 0x85fc7466 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x860a2e2d __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x860d1b0b proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x8615ba74 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x861eb9a3 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x862f8d93 sock_no_getname +EXPORT_SYMBOL vmlinux 0x8634d283 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x8636c447 of_translate_address +EXPORT_SYMBOL vmlinux 0x8636ce41 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863dbe09 param_set_uint -EXPORT_SYMBOL vmlinux 0x86455179 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x865838f4 d_delete +EXPORT_SYMBOL vmlinux 0x866645d1 input_allocate_device EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x867f1614 dst_discard_out +EXPORT_SYMBOL vmlinux 0x867c0251 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x868301ce cdrom_mode_select EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86adefc7 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x86c26fcf iput -EXPORT_SYMBOL vmlinux 0x86ca5c02 netdev_emerg +EXPORT_SYMBOL vmlinux 0x86905073 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x86cbdfe4 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x86cddd72 cfb_fillrect EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86e3bd1f mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x86e93533 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x86f6d7d7 skb_trim +EXPORT_SYMBOL vmlinux 0x86f4e1ec qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x872a7c52 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x872cdca9 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x8758cfd9 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x86fe719a dma_set_mask +EXPORT_SYMBOL vmlinux 0x870cfa9b tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x87165cc1 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x87239ce4 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x872c082d seq_hex_dump +EXPORT_SYMBOL vmlinux 0x8743a4bb of_get_next_child +EXPORT_SYMBOL vmlinux 0x87453dfd __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x8746aa1b device_get_mac_address +EXPORT_SYMBOL vmlinux 0x874f1871 __destroy_inode EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8768270a pci_request_regions +EXPORT_SYMBOL vmlinux 0x87694fbb pnp_start_dev +EXPORT_SYMBOL vmlinux 0x877516a1 sg_miter_skip EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x878125ea ps2_end_command -EXPORT_SYMBOL vmlinux 0x879a576f skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x878499a2 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x87872f12 km_report EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b159e2 param_ops_byte -EXPORT_SYMBOL vmlinux 0x87b7b390 tcf_classify +EXPORT_SYMBOL vmlinux 0x87b19427 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x87bf6804 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x87bf8743 pci_disable_device +EXPORT_SYMBOL vmlinux 0x87c8000b pcim_iomap EXPORT_SYMBOL vmlinux 0x87c8c92f dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x87d6de65 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x87e29638 sock_no_linger -EXPORT_SYMBOL vmlinux 0x87e995a7 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x8808f96c dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x880e451d add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x87cc0e94 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x87d3196b ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x87d58ddc ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x87d9d76f skb_find_text +EXPORT_SYMBOL vmlinux 0x87e16819 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x87e4c464 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x87f83eb9 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x87fb51a6 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x8800d9fc acpi_dev_uid_to_integer EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8812c922 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x8813237f xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x88354791 ip6_xmit -EXPORT_SYMBOL vmlinux 0x8836b3b6 fb_show_logo -EXPORT_SYMBOL vmlinux 0x886b9575 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x88718cb9 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x881e6f98 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x882520cf xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x8828a873 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x88390ea7 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x883e6cc1 __alloc_pages +EXPORT_SYMBOL vmlinux 0x887c88df dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x88806bbd md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888c7f36 poll_initwait +EXPORT_SYMBOL vmlinux 0x888a2666 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x8896d745 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x889aeeb2 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88a1bc43 xfrm_state_free -EXPORT_SYMBOL vmlinux 0x88a9fb4a netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x88ab02dc inet_register_protosw -EXPORT_SYMBOL vmlinux 0x88d5ac82 param_array_ops +EXPORT_SYMBOL vmlinux 0x88af3ada sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x88ba5849 truncate_setsize +EXPORT_SYMBOL vmlinux 0x88c296ea vfs_get_tree +EXPORT_SYMBOL vmlinux 0x88c50613 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x88cac717 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x88d5e254 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x88d674aa unregister_nls +EXPORT_SYMBOL vmlinux 0x88da55fc posix_test_lock EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e485fb param_set_charp -EXPORT_SYMBOL vmlinux 0x88e6145d netif_rx -EXPORT_SYMBOL vmlinux 0x88e643ec unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x88f0257d register_cdrom +EXPORT_SYMBOL vmlinux 0x88e4ba6d devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x88fc03e5 fs_context_for_mount EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order -EXPORT_SYMBOL vmlinux 0x893f70e0 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x8927ba3b sock_i_ino +EXPORT_SYMBOL vmlinux 0x893a4364 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x89412936 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x894cfe7f pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0x894eebf6 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x8953dd3e ip_local_deliver -EXPORT_SYMBOL vmlinux 0x89559c3d nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x8959e689 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x896acace __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x8992740f lease_modify +EXPORT_SYMBOL vmlinux 0x8968a38e cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x89774539 rio_query_mport +EXPORT_SYMBOL vmlinux 0x897a1a40 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x897bc586 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x89854df1 dquot_acquire +EXPORT_SYMBOL vmlinux 0x8987b32c xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x8988ebbb netdev_err +EXPORT_SYMBOL vmlinux 0x898dfeff ndisc_ns_create EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89b44861 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x89b84613 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x89ba0ad4 fsync_bdev -EXPORT_SYMBOL vmlinux 0x89ba2d9a remove_proc_entry -EXPORT_SYMBOL vmlinux 0x89cc49f8 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x89cf42be ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x89d8bc19 km_state_expired -EXPORT_SYMBOL vmlinux 0x89e356e8 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x89e91c80 vfs_mknod -EXPORT_SYMBOL vmlinux 0x8a137956 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x8a318b63 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x8a3bc857 pci_find_resource +EXPORT_SYMBOL vmlinux 0x899e032c jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x89a3372f _dev_alert +EXPORT_SYMBOL vmlinux 0x89d08687 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x89d5330e inet_release +EXPORT_SYMBOL vmlinux 0x89f7f7a5 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x8a0d689f udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x8a16a291 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x8a174aee vme_init_bridge +EXPORT_SYMBOL vmlinux 0x8a1f3b1f genphy_update_link +EXPORT_SYMBOL vmlinux 0x8a27a525 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x8a377d05 drop_super +EXPORT_SYMBOL vmlinux 0x8a3f04ca phy_find_first EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a50a423 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x8a54be20 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0x8a54c9e7 rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x8a5a0197 devm_devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x8a631a66 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x8a49d9fb cdev_add EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory EXPORT_SYMBOL vmlinux 0x8a833583 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8a8997b7 __module_get -EXPORT_SYMBOL vmlinux 0x8a8d9bec max8998_update_reg +EXPORT_SYMBOL vmlinux 0x8a835793 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x8a8ce8e1 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8a929d56 skb_ensure_writable EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa50e12 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0x8aaecd60 __put_cred +EXPORT_SYMBOL vmlinux 0x8abbd4be acpi_pm_device_sleep_state EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8adf4846 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x8b006e38 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x8ac343b1 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x8ac4f284 dquot_file_open +EXPORT_SYMBOL vmlinux 0x8acf4ac0 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x8af4b55a seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b07fed6 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x8b0885a1 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x8b2097a6 vfs_statfs +EXPORT_SYMBOL vmlinux 0x8b24d74f clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b5d5e77 load_nls +EXPORT_SYMBOL vmlinux 0x8b355eb5 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x8b4c3dab devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x8b4f7f3b tcp_mmap EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b66380c folio_unlock +EXPORT_SYMBOL vmlinux 0x8b71aca9 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b80a3b6 vfs_get_link +EXPORT_SYMBOL vmlinux 0x8b83d4ca fs_param_is_u32 EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8ba573b3 bio_endio -EXPORT_SYMBOL vmlinux 0x8ba89ad1 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x8bb00291 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x8bd0f726 __icmp_send +EXPORT_SYMBOL vmlinux 0x8bc3437d devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x8bd60c9a ihold EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8be68433 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x8bf44466 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x8bfb6610 device_add_disk -EXPORT_SYMBOL vmlinux 0x8bfcf606 fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x8bfed4b8 proc_remove -EXPORT_SYMBOL vmlinux 0x8c03d761 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x8c0a8c29 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x8c1ffab6 tso_start +EXPORT_SYMBOL vmlinux 0x8bfb60e9 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x8bfeba02 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0x8c07fda2 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x8c22c4f9 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c2cb3e7 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x8c302ec3 unload_nls +EXPORT_SYMBOL vmlinux 0x8c2b47a5 dst_destroy +EXPORT_SYMBOL vmlinux 0x8c2d11d6 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x8c2d2611 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c3a09ea dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x8c44d4f3 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x8c51ea6c ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x8c5841a1 netlink_set_err +EXPORT_SYMBOL vmlinux 0x8c42f884 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x8c496982 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x8c6f38f8 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x8c78d520 pmem_sector_size EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8e3007 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x8c92f2f8 msm_pinctrl_remove EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca29cf4 bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0x8caad757 param_set_copystring +EXPORT_SYMBOL vmlinux 0x8caf1d47 __mdiobus_c45_write EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb18c57 param_get_uint -EXPORT_SYMBOL vmlinux 0x8cb57333 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x8cbe071d d_delete +EXPORT_SYMBOL vmlinux 0x8cb80acf netdev_get_by_index EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cce2db8 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cef8252 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x8cf88d90 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x8cfa581a set_blocksize -EXPORT_SYMBOL vmlinux 0x8d0cbf4f phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x8d0db4ac pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x8d0fa7ec nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x8d1b5e2d tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x8d332e10 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x8ce0295f mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x8ce3ac6f of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x8d0af9bf pci_iomap +EXPORT_SYMBOL vmlinux 0x8d240856 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x8d26d863 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d3f6327 mmc_get_card +EXPORT_SYMBOL vmlinux 0x8d3a8cfc kill_block_super EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d50ec20 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x8d4effa9 inet_addr_type EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d639a3d kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0x8d65dced config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x8d5e1ccb unregister_md_personality +EXPORT_SYMBOL vmlinux 0x8d5ee6c6 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x8d6c9ea3 mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8da1dc0f fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x8d74fb03 xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0x8d8759e7 generic_read_dir +EXPORT_SYMBOL vmlinux 0x8d92e72b key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8da735d3 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x8dab3ef3 genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x8dafaf22 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x8dc32518 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x8dbbff3e udp_gro_receive +EXPORT_SYMBOL vmlinux 0x8dc81f85 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x8dd83bfb dump_skip EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de97619 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x8de3288d skb_eth_push EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum -EXPORT_SYMBOL vmlinux 0x8df8cb3a handshake_req_cancel EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv -EXPORT_SYMBOL vmlinux 0x8df96065 mmc_retune_pause EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e010c99 km_state_notify -EXPORT_SYMBOL vmlinux 0x8e0d9153 _dev_info +EXPORT_SYMBOL vmlinux 0x8e127c29 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e3986cf bio_init -EXPORT_SYMBOL vmlinux 0x8e398c2f kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x8e3ad107 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x8e26236e phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x8e29b76b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x8e3a8588 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e469fe8 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x8e4686f2 __inc_node_page_state EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e605583 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x8e7d7e17 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x8e806ada gpiochip_irq_reqres -EXPORT_SYMBOL vmlinux 0x8e8f4940 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x8e695be2 md_write_start +EXPORT_SYMBOL vmlinux 0x8e6d4a3e cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x8e8f2ca7 skb_dequeue EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8eaa44a1 from_kprojid +EXPORT_SYMBOL vmlinux 0x8eb93115 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ed8ea51 dquot_file_open -EXPORT_SYMBOL vmlinux 0x8eea2bf4 iterate_dir -EXPORT_SYMBOL vmlinux 0x8eff3bd4 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x8eccdf41 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8ee73056 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x8ef78507 clear_inode EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f166fb9 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x8f1bf78d fb_set_var -EXPORT_SYMBOL vmlinux 0x8f23d677 pci_save_state -EXPORT_SYMBOL vmlinux 0x8f626d5a nf_log_trace -EXPORT_SYMBOL vmlinux 0x8f8c1f0d set_nlink -EXPORT_SYMBOL vmlinux 0x8f975700 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x8f1ccdcf xp_can_alloc +EXPORT_SYMBOL vmlinux 0x8f27922e phy_device_register +EXPORT_SYMBOL vmlinux 0x8f44d20c seq_file_path +EXPORT_SYMBOL vmlinux 0x8f510737 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x8f6eb12b devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x8f876662 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x8f8f26bb simple_unlink +EXPORT_SYMBOL vmlinux 0x8f9042f9 netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9a2fba sock_wake_async +EXPORT_SYMBOL vmlinux 0x8f9bf157 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fa5be3f sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x8fbcfbd4 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x8fb5db84 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content -EXPORT_SYMBOL vmlinux 0x8fccb5e7 pci_enable_link_state +EXPORT_SYMBOL vmlinux 0x8fcb89b0 ps2_end_command EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fdec7c4 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90239dc8 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x902485e1 vc_cons +EXPORT_SYMBOL vmlinux 0x90178c49 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x901bd757 vme_slot_num +EXPORT_SYMBOL vmlinux 0x901cc6fc serio_reconnect +EXPORT_SYMBOL vmlinux 0x90212fec udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x90243ca2 file_path EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x90331c92 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9055868c flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x90547155 netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90813ea5 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0x9092defd proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x9098b2c1 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x90b6f83b import_single_range -EXPORT_SYMBOL vmlinux 0x90ce5e9e phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x90f56767 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x90963b38 __quota_error +EXPORT_SYMBOL vmlinux 0x90e1b968 config_item_get +EXPORT_SYMBOL vmlinux 0x90e557ef netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x90f0fb65 max8998_bulk_write EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x911e7294 dquot_destroy -EXPORT_SYMBOL vmlinux 0x913fb567 xsk_tx_release -EXPORT_SYMBOL vmlinux 0x914b5ca9 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x914cc839 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x91587a9c netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x915d38f7 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x9166a7d9 get_task_cred +EXPORT_SYMBOL vmlinux 0x9122f29d __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x912787b0 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x912915c7 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x915a5dc4 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x915a9a53 dump_emit EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue -EXPORT_SYMBOL vmlinux 0x919687e5 bio_copy_data +EXPORT_SYMBOL vmlinux 0x916c2736 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x916e582b empty_aops EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91ac73e6 dump_skip_to +EXPORT_SYMBOL vmlinux 0x91ae255b ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x91b84b64 consume_skb EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91c5fe77 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x91d15566 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x91d97ecb of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x91f2b5e9 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x9203c7c6 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x920c8f1a devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x920e85a7 scsi_partsize -EXPORT_SYMBOL vmlinux 0x920f4ad8 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x922a01f5 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x9206dcfb padata_free_shell +EXPORT_SYMBOL vmlinux 0x92092549 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x920ce71e mr_dump +EXPORT_SYMBOL vmlinux 0x9220719a unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x9231d7d5 inode_io_list_del -EXPORT_SYMBOL vmlinux 0x9235be4d phy_stop -EXPORT_SYMBOL vmlinux 0x9236d395 inode_init_always -EXPORT_SYMBOL vmlinux 0x92380a93 tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0x923ac5b8 serio_open EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923b2b6b dquot_drop EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states +EXPORT_SYMBOL vmlinux 0x926e10cf dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9282f1f5 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x92873df6 __block_write_begin -EXPORT_SYMBOL vmlinux 0x928b90af flush_dcache_page EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9292b965 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x92931357 filemap_get_folios_contig EXPORT_SYMBOL vmlinux 0x929878b2 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x92aeaa8e rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x92a0a9af __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x92a0af20 tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c2afec uart_update_timeout EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92dbb7ce scsi_partsize +EXPORT_SYMBOL vmlinux 0x92e43ded mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach -EXPORT_SYMBOL vmlinux 0x92fa6ebe qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0x92fc078b xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x92fc6999 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930aed53 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x9315a863 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x93248249 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x9366393a __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x9314ecfc skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x931c867f of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x9336b772 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x933c3b32 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x93469913 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x93480ed9 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x93517d12 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937d3e8b tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x93838549 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x93967fa7 request_firmware +EXPORT_SYMBOL vmlinux 0x93797dc9 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x937c52c6 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x938edfb2 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x93911d51 ethtool_aggregate_rmon_stats +EXPORT_SYMBOL vmlinux 0x93947c01 tcf_classify +EXPORT_SYMBOL vmlinux 0x93952400 phy_get_pause +EXPORT_SYMBOL vmlinux 0x93a133cc icmp6_send EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93af3b3a bio_split EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b7bfba of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x93cfed15 dump_skip +EXPORT_SYMBOL vmlinux 0x93c8a469 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x93ce11ae vme_unregister_driver EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93e4cf89 __free_pages -EXPORT_SYMBOL vmlinux 0x93f3cfe6 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x941ca802 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x93f40be3 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x9418e231 fb_find_mode +EXPORT_SYMBOL vmlinux 0x94273f78 serio_open EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x943a8782 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x94301356 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x9436f197 lookup_one +EXPORT_SYMBOL vmlinux 0x9440d1b9 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x945c46aa skb_free_datagram -EXPORT_SYMBOL vmlinux 0x945ceba7 setattr_copy -EXPORT_SYMBOL vmlinux 0x94659e1f genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x94736422 mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x947e3b09 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x944c6656 seq_open_private +EXPORT_SYMBOL vmlinux 0x9476915e dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x947f2d65 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x9485bf5b lease_modify +EXPORT_SYMBOL vmlinux 0x948dd4d4 sock_setsockopt EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a34cfd sock_wmalloc +EXPORT_SYMBOL vmlinux 0x94b21c77 rproc_report_crash EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94d2ccb9 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x94d9461a kernel_write +EXPORT_SYMBOL vmlinux 0x94c82564 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x94ed7d43 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x94f788c2 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x94fac168 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x94fb2bcf phy_get_eee_err EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x9504ff83 devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x9508874e d_make_root -EXPORT_SYMBOL vmlinux 0x951459e3 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x9515eee2 nf_log_set -EXPORT_SYMBOL vmlinux 0x9517cc19 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x95208c50 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x953384bc remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x950f886a vif_device_init +EXPORT_SYMBOL vmlinux 0x9512c526 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x952b001d dev_alloc_name +EXPORT_SYMBOL vmlinux 0x9531fd3b free_cgroup_ns EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp -EXPORT_SYMBOL vmlinux 0x95451253 proto_register EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x956a49b3 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x95544b88 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x95558e1c pci_select_bars +EXPORT_SYMBOL vmlinux 0x956f2609 sync_filesystem +EXPORT_SYMBOL vmlinux 0x9570c576 nf_reinject +EXPORT_SYMBOL vmlinux 0x9579aa40 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x957bd8c8 cros_ec_check_result EXPORT_SYMBOL vmlinux 0x957c9ebf neigh_proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0x959c9b73 __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95c00bcb param_ops_bint -EXPORT_SYMBOL vmlinux 0x95ccaf3d tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x95e18f3b km_query -EXPORT_SYMBOL vmlinux 0x960028a2 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x9604a589 get_vm_area -EXPORT_SYMBOL vmlinux 0x963fe9d4 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x964917a2 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x9654030b netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x966700c7 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x95ac1070 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x95b36f8b rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x95c2d836 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x95ca4e0b module_refcount +EXPORT_SYMBOL vmlinux 0x95cb3de8 putname +EXPORT_SYMBOL vmlinux 0x95cb48e9 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x95d079c6 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x95d14fa8 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x95de45d3 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x960c64c8 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x962750ba md_unregister_thread +EXPORT_SYMBOL vmlinux 0x9627557b dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x962bbab1 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x9660cd6f con_is_bound EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x968584b9 unregister_key_type EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x96903d4d clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x9694d59b twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x96a6eec0 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x96a83a7f mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x969f29e9 put_watch_queue +EXPORT_SYMBOL vmlinux 0x96afb8b2 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x96b090d3 ps2_drain EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b8b5b2 dev_mc_del +EXPORT_SYMBOL vmlinux 0x96b2ca8a __f_setown +EXPORT_SYMBOL vmlinux 0x96bd301b register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96da1847 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x96e12d1d xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x96e4b60d inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x96d53fda seq_read_iter +EXPORT_SYMBOL vmlinux 0x96deb7a0 set_user_nice +EXPORT_SYMBOL vmlinux 0x96e31ed6 of_xudma_dev_get EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96f99688 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fedec5 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x970899f8 ether_setup -EXPORT_SYMBOL vmlinux 0x9708f91e dev_disable_lro -EXPORT_SYMBOL vmlinux 0x97165a6f phy_device_remove -EXPORT_SYMBOL vmlinux 0x9716e0e6 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x9717bb27 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x9720e9e9 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x97396766 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x973d6530 sk_error_report +EXPORT_SYMBOL vmlinux 0x9716d72e update_region +EXPORT_SYMBOL vmlinux 0x972af846 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x973e1e71 mount_bdev EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x976d541e iptun_encaps -EXPORT_SYMBOL vmlinux 0x9772a873 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x97986429 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x979a1a49 phy_device_free +EXPORT_SYMBOL vmlinux 0x9746c445 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x9757e29d key_validate +EXPORT_SYMBOL vmlinux 0x975caf75 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x975f104c blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x976c15b7 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x977a6e2c phy_write_paged +EXPORT_SYMBOL vmlinux 0x979f7211 inet_frag_find EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97abb81c __skb_checksum EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97adf85a napi_enable +EXPORT_SYMBOL vmlinux 0x97b58a15 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c0279c __skb_pad -EXPORT_SYMBOL vmlinux 0x97e7338e amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x97fbcbaa dm_io -EXPORT_SYMBOL vmlinux 0x98095121 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x981fd0b7 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x97c1ff46 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x97e1ca62 get_tree_single +EXPORT_SYMBOL vmlinux 0x97ee5793 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x98029dd1 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x9818fcc7 simple_open EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x98342280 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x984792bc vme_irq_handler -EXPORT_SYMBOL vmlinux 0x98502910 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x982ea1fe user_path_at_empty +EXPORT_SYMBOL vmlinux 0x98342600 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x984157df alloc_mdio_bitbang EXPORT_SYMBOL vmlinux 0x98555a05 dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 +EXPORT_SYMBOL vmlinux 0x987882e8 simple_release_fs EXPORT_SYMBOL vmlinux 0x9891d33c dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x98a02302 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x98a4decc sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x98c06814 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x9892381d fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x9892d8a3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x98ab5560 file_open_root EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98cb878e proc_dobool +EXPORT_SYMBOL vmlinux 0x98cde8dc _dev_emerg +EXPORT_SYMBOL vmlinux 0x98cf4c18 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d45c9a __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x98db26ef __dquot_free_space +EXPORT_SYMBOL vmlinux 0x98deb77a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x98df04ba filemap_map_pages EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x99043d4f file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x98f2d757 task_work_add +EXPORT_SYMBOL vmlinux 0x990898a7 kfree_skb_partial EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x992d1b8f tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x990e385b jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x991f096a neigh_lookup +EXPORT_SYMBOL vmlinux 0x99284f4a setattr_copy +EXPORT_SYMBOL vmlinux 0x992ecaae mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993ee5a2 udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0x9950e425 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x9949083a freeze_bdev EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995d722b genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x995f1f8e udp_sendmsg -EXPORT_SYMBOL vmlinux 0x996a44c7 dentry_create -EXPORT_SYMBOL vmlinux 0x99828f64 seq_read +EXPORT_SYMBOL vmlinux 0x996c57db rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x997cece3 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x9988cd4e scsi_print_result +EXPORT_SYMBOL vmlinux 0x999a6b67 netdev_has_upper_dev_all_rcu EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a420ef __of_get_address -EXPORT_SYMBOL vmlinux 0x99b86ef3 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x99a70a78 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x99b54723 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x99b6f1d8 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x99b9c31d blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99de577d set_bh_page +EXPORT_SYMBOL vmlinux 0x99e4a2dd vme_new_dma_list EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a07d6ca pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x9a0b3235 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x9a034069 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a216732 ___pskb_trim EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a325faf iterate_fd -EXPORT_SYMBOL vmlinux 0x9a429ff2 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x9a464cd4 vmap +EXPORT_SYMBOL vmlinux 0x9a2d8fd7 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x9a41e674 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5842c5 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x9a58a839 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x9a5e1160 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x9a69a0e0 tty_hangup EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a740c7f is_acpi_device_node -EXPORT_SYMBOL vmlinux 0x9a815b68 single_open +EXPORT_SYMBOL vmlinux 0x9a854362 udp_read_skb EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9aba8d8f dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x9abaf2cb input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x9abf9d5d param_ops_ullong +EXPORT_SYMBOL vmlinux 0x9ab1421e blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x9acaf1bb mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0x9acd2f4b reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x9acf62b8 regset_get_alloc -EXPORT_SYMBOL vmlinux 0x9ada4e3c fwnode_iomap -EXPORT_SYMBOL vmlinux 0x9adc3a60 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x9adfa242 fput +EXPORT_SYMBOL vmlinux 0x9ad1862c console_start +EXPORT_SYMBOL vmlinux 0x9ad69b31 devm_release_resource +EXPORT_SYMBOL vmlinux 0x9ada887b acpi_notifier_call_chain EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9b09880f pci_enable_device +EXPORT_SYMBOL vmlinux 0x9aeb7679 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x9aef8357 i2c_transfer +EXPORT_SYMBOL vmlinux 0x9af821f5 folio_create_empty_buffers EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1ea9b6 remove_proc_subtree EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b26d10c serio_interrupt EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b427826 set_create_files_as -EXPORT_SYMBOL vmlinux 0x9b43c94e tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x9b47b22a skb_condense EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b5897ac pnp_device_attach -EXPORT_SYMBOL vmlinux 0x9b6772a5 free_task +EXPORT_SYMBOL vmlinux 0x9b57fccb jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x9b5f0d16 dcb_delrewr EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b743d09 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x9b89b4dd blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x9b90d808 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x9b93eee0 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x9ba9e39f dump_emit -EXPORT_SYMBOL vmlinux 0x9bb33cc5 pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x9bb4114c dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x9bc317f5 pci_pme_active -EXPORT_SYMBOL vmlinux 0x9bcb8d50 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x9bd30e03 __bh_read -EXPORT_SYMBOL vmlinux 0x9be49e04 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x9bfa8eb9 mdiobus_write -EXPORT_SYMBOL vmlinux 0x9bfe5a20 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x9b7e0c6c sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x9b908f48 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x9b984d99 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9bb45369 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9bb9d1d4 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x9bd5c8f5 serio_rescan +EXPORT_SYMBOL vmlinux 0x9bd97115 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x9bdb05e2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x9bed7fe9 skb_pull EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1cd3fb pci_add_new_bus EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c214b42 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x9c253ecb pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x9c34ad23 clkdev_add -EXPORT_SYMBOL vmlinux 0x9c3af727 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x9c21b99a blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9c25d7e6 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x9c444693 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c7089ff set_anon_super_fc EXPORT_SYMBOL vmlinux 0x9c79caa6 kobject_init +EXPORT_SYMBOL vmlinux 0x9c82d2dc scsi_bios_ptable EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c914f9c dev_lstats_read -EXPORT_SYMBOL vmlinux 0x9c96a61c adjust_managed_page_count EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user -EXPORT_SYMBOL vmlinux 0x9c9b7cdc fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x9ca241f4 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x9ca293fd set_binfmt +EXPORT_SYMBOL vmlinux 0x9c9bd408 dev_change_flags +EXPORT_SYMBOL vmlinux 0x9ca24e27 tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cbaac96 sget_fc -EXPORT_SYMBOL vmlinux 0x9cbd0e4a open_exec -EXPORT_SYMBOL vmlinux 0x9cc39561 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x9cce8a0f module_layout +EXPORT_SYMBOL vmlinux 0x9cba138f dev_get_flags EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cdf53a5 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x9ccfdf3d crypto_sha256_update EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9d068295 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x9ce01cda __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x9ce6f23d page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x9cf0fe30 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9cf58568 xattr_full_name EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d12f777 get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d1ba575 of_root +EXPORT_SYMBOL vmlinux 0x9d1f7ec1 dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d5489f6 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x9d3ca594 ram_aops +EXPORT_SYMBOL vmlinux 0x9d558658 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d6f59ee cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x9d8976ca nf_reinject EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d94babd __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x9d95066b is_bad_inode -EXPORT_SYMBOL vmlinux 0x9daa6930 noop_fsync -EXPORT_SYMBOL vmlinux 0x9dc993c9 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x9dcf00a3 md_bitmap_unplug_async +EXPORT_SYMBOL vmlinux 0x9d9d0cfb tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x9da1a1a2 __check_sticky +EXPORT_SYMBOL vmlinux 0x9daec790 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x9db0b8e1 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x9dbcda79 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x9dd938c6 genphy_resume EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9de751e2 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x9decafa7 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x9de2a41f pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x9de5d99a tcp_prot EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel -EXPORT_SYMBOL vmlinux 0x9df3d87d logfc EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits +EXPORT_SYMBOL vmlinux 0x9e04f67d of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e1094fb __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e190dea crypto_sha3_init -EXPORT_SYMBOL vmlinux 0x9e1b0b1f devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x9e1b839e napi_get_frags -EXPORT_SYMBOL vmlinux 0x9e2717c6 __neigh_create +EXPORT_SYMBOL vmlinux 0x9e144e79 i2c_add_adapter EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e30905d sk_stop_timer -EXPORT_SYMBOL vmlinux 0x9e4068f0 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x9e41a599 phy_device_create -EXPORT_SYMBOL vmlinux 0x9e477338 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x9e4c7f23 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x9e3e0859 input_flush_device EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5011e5 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x9e577a7f tegra_ivc_init EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e5f970e __kfree_skb EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e7ceac1 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9e757acb tcp_close +EXPORT_SYMBOL vmlinux 0x9e7bd29d cad_pid EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e7d98b9 sock_i_ino +EXPORT_SYMBOL vmlinux 0x9e853253 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x9e858b69 mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0x9e8b2dfb bio_put +EXPORT_SYMBOL vmlinux 0x9e8bea94 filemap_range_has_page EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea010f1 tty_name -EXPORT_SYMBOL vmlinux 0x9ea8cc03 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x9eaae217 param_get_short EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eae0081 input_match_device_id +EXPORT_SYMBOL vmlinux 0x9eb18528 audit_log_start EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq -EXPORT_SYMBOL vmlinux 0x9eb54b6a inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x9ebb7278 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x9ebb8580 dcb_setapp +EXPORT_SYMBOL vmlinux 0x9ec03c98 nf_register_net_hook EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecd6e2c security_sk_clone EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large -EXPORT_SYMBOL vmlinux 0x9ed717c7 genphy_read_abilities EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee24e15 submit_bio -EXPORT_SYMBOL vmlinux 0x9eeb3e6a km_policy_notify -EXPORT_SYMBOL vmlinux 0x9f13872a dquot_transfer -EXPORT_SYMBOL vmlinux 0x9f2767f2 tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0x9f2b0abc mmc_command_done -EXPORT_SYMBOL vmlinux 0x9f45b3e5 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x9edb46ed csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x9edf95eb __post_watch_notification +EXPORT_SYMBOL vmlinux 0x9ee6ef93 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x9f1d7827 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x9f1e83b0 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x9f4132c1 simple_fill_super +EXPORT_SYMBOL vmlinux 0x9f46244d seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f475fe6 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x9f481979 jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f50dd91 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5fb1ad param_set_ullong +EXPORT_SYMBOL vmlinux 0x9f74f2d3 seq_pad EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f7d12a0 __block_write_begin EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f8f93c3 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x9f888aeb page_pool_release_page +EXPORT_SYMBOL vmlinux 0x9f953bcf sockopt_lock_sock EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f987828 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x9f9e92d8 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fab4fe1 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fbd902e pci_fixup_device -EXPORT_SYMBOL vmlinux 0x9fbe06c5 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x9fcbb696 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x9fd43b2e tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff4dd9e xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffd7abe twl6040_power -EXPORT_SYMBOL vmlinux 0xa00a4fc6 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x9ffc6bdc bioset_integrity_create EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa0106f18 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa0112ff5 inet_del_offload EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa032325d iov_iter_init EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa039a518 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xa0355c46 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xa041edd4 of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa043e8a2 inet_sk_get_local_port_range +EXPORT_SYMBOL vmlinux 0xa0469cbc devfreq_get_freq_range EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa050b43c sock_set_priority -EXPORT_SYMBOL vmlinux 0xa051bdf3 iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0xa05325a1 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa069b58d vfs_get_link -EXPORT_SYMBOL vmlinux 0xa06f5ba7 qdisc_put +EXPORT_SYMBOL vmlinux 0xa060133c flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr -EXPORT_SYMBOL vmlinux 0xa07b1244 dev_add_pack EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa085a9c3 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xa08fe4ba dquot_drop EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0a0f70b sk_stream_error +EXPORT_SYMBOL vmlinux 0xa0a6bdc7 path_has_submounts EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0bf49db netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0xa0c394e0 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xa0cab898 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0xa0ce2436 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xa0b7a09f dquot_commit_info +EXPORT_SYMBOL vmlinux 0xa0d89bad dev_printk_emit +EXPORT_SYMBOL vmlinux 0xa0d9f646 blk_mq_alloc_disk_for_queue EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0df9de3 pci_find_resource EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function -EXPORT_SYMBOL vmlinux 0xa0eb7744 netpoll_cleanup EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0ef7e70 i2c_get_adapter EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fbcd3b d_invalidate -EXPORT_SYMBOL vmlinux 0xa106ad1a ata_std_end_eh EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa115da49 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xa12c416c xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xa131aa11 param_get_bool -EXPORT_SYMBOL vmlinux 0xa13666df configfs_register_group -EXPORT_SYMBOL vmlinux 0xa136a81c __put_user_ns -EXPORT_SYMBOL vmlinux 0xa13cc6c7 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xa1448abc generic_buffers_fsync -EXPORT_SYMBOL vmlinux 0xa14510d1 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0xa1711d04 dcache_readdir -EXPORT_SYMBOL vmlinux 0xa19d0864 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xa1a08d2b i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0xa1bcc2cb blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xa1d5acb6 user_path_create -EXPORT_SYMBOL vmlinux 0xa1d90b5e free_netdev +EXPORT_SYMBOL vmlinux 0xa1165c99 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa11718bf genl_unregister_family +EXPORT_SYMBOL vmlinux 0xa1229e26 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xa12ebe94 vfs_readlink +EXPORT_SYMBOL vmlinux 0xa1379122 param_get_ushort +EXPORT_SYMBOL vmlinux 0xa1472dc6 vme_register_driver +EXPORT_SYMBOL vmlinux 0xa1480c3b tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xa1485b4f backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xa1592cc5 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa1b62f2b flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xa1f50324 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa1fd6165 blk_rq_map_user EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa2261065 alloc_pages +EXPORT_SYMBOL vmlinux 0xa20afe6a phy_init_eee +EXPORT_SYMBOL vmlinux 0xa217d0aa page_symlink +EXPORT_SYMBOL vmlinux 0xa218e8bf bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xa21b668c pci_get_slot +EXPORT_SYMBOL vmlinux 0xa2225d78 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xa22798c3 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xa22c4c3a skb_ext_add EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2450fd1 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xa2492752 udp_prot EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2854f64 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xa28b63d7 sk_wait_data +EXPORT_SYMBOL vmlinux 0xa2646cb5 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xa26dd887 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa2888d7d reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2ade439 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xa2aeda7d scsi_report_opcode -EXPORT_SYMBOL vmlinux 0xa2bdd141 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xa2cec20a timestamp_truncate +EXPORT_SYMBOL vmlinux 0xa29b1abc inet_register_protosw +EXPORT_SYMBOL vmlinux 0xa2ae7fa5 simple_link +EXPORT_SYMBOL vmlinux 0xa2c7ced4 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d30dd7 iterate_supers_type EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size +EXPORT_SYMBOL vmlinux 0xa2d58b8f security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2da58b4 stream_open -EXPORT_SYMBOL vmlinux 0xa2ebb3d0 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0xa30df0a4 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xa3128239 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xa2d988f8 proc_create +EXPORT_SYMBOL vmlinux 0xa2e1a2f6 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xa2ee4f66 dev_mc_del +EXPORT_SYMBOL vmlinux 0xa2fae208 filemap_get_folios +EXPORT_SYMBOL vmlinux 0xa30173ee ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0xa3201caf mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0xa3394ba7 nla_reserve EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa33f0979 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0xa34b59f6 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xa34fd87f ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xa3516dc6 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xa33bcae3 cdrom_release +EXPORT_SYMBOL vmlinux 0xa34908cc vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0xa349778e phy_read_mmd EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa363a57b mode_strip_sgid -EXPORT_SYMBOL vmlinux 0xa3693023 __mdiobus_read -EXPORT_SYMBOL vmlinux 0xa373a20a __skb_checksum -EXPORT_SYMBOL vmlinux 0xa37c7e44 dev_open -EXPORT_SYMBOL vmlinux 0xa3963182 input_free_device -EXPORT_SYMBOL vmlinux 0xa3b02eb0 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xa369c29c sock_cmsg_send EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c8176a pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xa3c910c1 dma_resv_iter_next_unlocked EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3d08222 flush_dcache_folio -EXPORT_SYMBOL vmlinux 0xa3d0f770 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xa3f0498f pci_set_power_state +EXPORT_SYMBOL vmlinux 0xa3db9986 md_flush_request +EXPORT_SYMBOL vmlinux 0xa3f4a94c qdisc_hash_del EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40f400d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xa40da5da flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4150a86 __d_drop -EXPORT_SYMBOL vmlinux 0xa4244a4b simple_rename -EXPORT_SYMBOL vmlinux 0xa43645d6 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xa4250153 build_skb EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa4471bbf sock_register EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa4499c02 d_path -EXPORT_SYMBOL vmlinux 0xa451af05 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xa454f393 wireless_send_event -EXPORT_SYMBOL vmlinux 0xa4a886f6 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xa4b26cba make_kgid -EXPORT_SYMBOL vmlinux 0xa4c56691 simple_link -EXPORT_SYMBOL vmlinux 0xa4c7e5db vme_irq_request -EXPORT_SYMBOL vmlinux 0xa4d554fc fs_bio_set -EXPORT_SYMBOL vmlinux 0xa4dc1677 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xa4f45ffc __block_write_full_folio +EXPORT_SYMBOL vmlinux 0xa4546e40 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xa464c457 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa46a9bbe fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xa47a9c91 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xa4875ee3 bio_chain +EXPORT_SYMBOL vmlinux 0xa487d2a0 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xa48ae562 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa48d4957 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xa4b81d3a proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xa4b9b5e3 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa4d06947 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xa4d84cfc dcache_dir_open +EXPORT_SYMBOL vmlinux 0xa4da6e2f netif_tx_lock +EXPORT_SYMBOL vmlinux 0xa4e863e1 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa502eb44 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xa52a508a i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xa4ff7615 fb_class +EXPORT_SYMBOL vmlinux 0xa502ac6d blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xa50c7654 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xa50d9ebc dcb_getrewr_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xa522fcc0 iov_iter_zero EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa545d5af inet_del_offload -EXPORT_SYMBOL vmlinux 0xa54a5fca unlock_buffer EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xa54bdc00 make_kgid +EXPORT_SYMBOL vmlinux 0xa54f48f7 blk_mq_start_request EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55aed1d jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xa56035ee xp_alloc_batch -EXPORT_SYMBOL vmlinux 0xa572d9b0 fman_port_bind -EXPORT_SYMBOL vmlinux 0xa57756a1 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xa57d2dc9 tty_check_change -EXPORT_SYMBOL vmlinux 0xa58a67b9 bpf_link_put +EXPORT_SYMBOL vmlinux 0xa55abebd mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xa5660fc2 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xa571e5aa nd_region_to_nstype EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa58d60be xfrm_register_type +EXPORT_SYMBOL vmlinux 0xa592161d vga_client_register EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5abca30 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xa5c37c37 pci_disable_device +EXPORT_SYMBOL vmlinux 0xa59df18d serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xa5a5bfa2 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xa5a725c0 of_phy_connect +EXPORT_SYMBOL vmlinux 0xa5c82fbd scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xa5cb68b9 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xa5f65c78 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa607a7ff unregister_md_personality -EXPORT_SYMBOL vmlinux 0xa612b2b5 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xa5fa0b09 vme_dma_request +EXPORT_SYMBOL vmlinux 0xa600791b input_get_keycode +EXPORT_SYMBOL vmlinux 0xa616e1c1 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xa61a8fcc dquot_release EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa61d8b8e ppp_unit_number EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa63be7ce __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xa632e9b5 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xa6405d7a __neigh_create EXPORT_SYMBOL vmlinux 0xa6457c89 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa650a14c d_set_d_op -EXPORT_SYMBOL vmlinux 0xa654bf73 unregister_filesystem -EXPORT_SYMBOL vmlinux 0xa65bd597 pcim_iomap EXPORT_SYMBOL vmlinux 0xa65c6def alt_cb_patch_nops -EXPORT_SYMBOL vmlinux 0xa6653beb ptp_clock_event -EXPORT_SYMBOL vmlinux 0xa66b4254 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xa6798c2d blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa682614e ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xa686a537 mdiobus_read -EXPORT_SYMBOL vmlinux 0xa6a0cd0e mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xa6a4db34 mdio_device_create -EXPORT_SYMBOL vmlinux 0xa6a7e94c jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xa6b36446 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xa6b3899f nf_log_unregister -EXPORT_SYMBOL vmlinux 0xa6b92f7d key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xa6d8903d devfreq_update_target -EXPORT_SYMBOL vmlinux 0xa70b7d42 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xa692ab37 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xa69c3778 __bh_read_batch +EXPORT_SYMBOL vmlinux 0xa6c90eaa dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xa6d2e4d1 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xa6f5505d phy_driver_register +EXPORT_SYMBOL vmlinux 0xa7011c5a sock_no_connect EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xa714ecbc tcp_mmap EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71b3f90 of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa7309ca2 skb_checksum -EXPORT_SYMBOL vmlinux 0xa73571dd nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xa739d458 bio_alloc_clone EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa757c702 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xa7570a80 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xa758aaf3 sock_pfree +EXPORT_SYMBOL vmlinux 0xa75970ef from_kgid_munged +EXPORT_SYMBOL vmlinux 0xa7667853 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0xa7691280 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa77075e8 scsi_host_put EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7b8df5c blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0xa7d416c7 seq_file_path +EXPORT_SYMBOL vmlinux 0xa7842662 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xa7b3da05 tcp_read_skb +EXPORT_SYMBOL vmlinux 0xa7c41395 __scsi_add_device EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7d60863 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xa7eacb4f rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xa7ebbbe4 pci_set_master +EXPORT_SYMBOL vmlinux 0xa7d72fb7 block_write_full_page EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa80926fc tty_register_device -EXPORT_SYMBOL vmlinux 0xa82d4ad4 to_nd_pfn -EXPORT_SYMBOL vmlinux 0xa836d77e nd_device_register -EXPORT_SYMBOL vmlinux 0xa83775c6 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0xa839f656 clear_inode -EXPORT_SYMBOL vmlinux 0xa842b02a ppp_channel_index +EXPORT_SYMBOL vmlinux 0xa7ef09ef devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xa7efd916 ip_frag_next +EXPORT_SYMBOL vmlinux 0xa7f60df6 fman_bind +EXPORT_SYMBOL vmlinux 0xa8190dd7 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xa838c0d1 key_move EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa84b11af phy_find_first EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa8611e17 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xa8628a09 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xa8649ee9 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xa85f6a85 skb_tx_error EXPORT_SYMBOL vmlinux 0xa8676398 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa87ba7d9 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89ea3b5 tcf_block_put +EXPORT_SYMBOL vmlinux 0xa8a6271e uart_add_one_port EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8c1e8a4 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xa8ac3ef4 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8ceedca revert_creds -EXPORT_SYMBOL vmlinux 0xa8d6c9b7 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xa8e4f3f4 generic_write_checks EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f2e242 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xa8e6b130 handshake_req_submit EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f9299e mpage_readahead +EXPORT_SYMBOL vmlinux 0xa8feb510 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xa90af76a tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa90e685b tcp_child_process +EXPORT_SYMBOL vmlinux 0xa90df053 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xa95a7da8 generic_perform_write +EXPORT_SYMBOL vmlinux 0xa91b4f7e ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xa92f4db3 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa9309fd4 tcp_connect +EXPORT_SYMBOL vmlinux 0xa934f6ef seq_puts +EXPORT_SYMBOL vmlinux 0xa948c871 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xa952a96b dst_discard_out +EXPORT_SYMBOL vmlinux 0xa9548aa9 dev_driver_string EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa97582c9 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xa96d484f jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xa971a5d5 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9a1c5ab mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xa9b2f426 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xa9b67c81 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xa9b7d0ba napi_gro_frags -EXPORT_SYMBOL vmlinux 0xa9e197ed sock_no_accept +EXPORT_SYMBOL vmlinux 0xa98769cb sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xa98c767b netlink_set_err +EXPORT_SYMBOL vmlinux 0xa98d3bc1 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xa990952c __brelse +EXPORT_SYMBOL vmlinux 0xa992cdef xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xa9ac6dca udp_ioctl +EXPORT_SYMBOL vmlinux 0xa9bced2a inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xa9d0e3fc napi_disable +EXPORT_SYMBOL vmlinux 0xa9e7f833 nlmsg_notify EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9efccc8 set_posix_acl EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa02c83f fb_pan_display +EXPORT_SYMBOL vmlinux 0xaa015f98 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xaa027e62 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2f92dc generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xaa2b41ea set_binfmt EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa5b47ec security_path_unlink -EXPORT_SYMBOL vmlinux 0xaa6b9c19 neigh_table_init +EXPORT_SYMBOL vmlinux 0xaa46af63 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xaa517eb7 keyring_search EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa796650 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xaa7e7d2a kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xaa7fd007 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xaa798f82 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xaa7aad05 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xaa7fdbe6 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa83b226 page_pool_create EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xaa908409 max8925_bulk_read EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaab01a08 of_match_device -EXPORT_SYMBOL vmlinux 0xaab2dd73 flush_signals -EXPORT_SYMBOL vmlinux 0xaab4c808 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0xaabf240c input_allocate_device +EXPORT_SYMBOL vmlinux 0xaace3ca0 tcp_read_done EXPORT_SYMBOL vmlinux 0xaacf03c1 dma_fence_signal EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad2dd7a filemap_flush EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaae93155 keyring_alloc EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaafaaf66 d_alloc +EXPORT_SYMBOL vmlinux 0xaafc76cb _dev_crit EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0028b2 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xab0abd3a watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xab0d4234 follow_down_one -EXPORT_SYMBOL vmlinux 0xab0f9815 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xab1be595 pci_iomap_range -EXPORT_SYMBOL vmlinux 0xab1c9cfb xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xab07ce13 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xab0e0031 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xab10e045 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xab132601 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xab34673c fasync_helper +EXPORT_SYMBOL vmlinux 0xab3529ed scsi_mode_sense EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3b2524 max8998_bulk_read EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab4a8f38 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xab557167 slab_build_skb +EXPORT_SYMBOL vmlinux 0xab412729 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xab5ae4bf lease_get_mtime +EXPORT_SYMBOL vmlinux 0xab5edbf7 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab60869b max8925_set_bits EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab656504 netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab6aa383 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab726f73 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab90f4eb dump_align -EXPORT_SYMBOL vmlinux 0xab9e66ff iget_locked -EXPORT_SYMBOL vmlinux 0xaba0ff53 of_device_unregister -EXPORT_SYMBOL vmlinux 0xabf0ceac rt6_lookup +EXPORT_SYMBOL vmlinux 0xab78948d ethtool_aggregate_phy_stats +EXPORT_SYMBOL vmlinux 0xab90225a skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0xabaea314 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xabb35f12 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xabd35bdf netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xabda0d17 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xabe2b9c6 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xabe406da of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xabe7d9dd tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xabeafd56 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xabece2d0 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf36725 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xabf789a8 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0xabfba65e scsi_device_resume -EXPORT_SYMBOL vmlinux 0xac053932 folio_mark_accessed -EXPORT_SYMBOL vmlinux 0xac0bc51d phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xac11c50e tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1c8e21 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xac1e84b4 skb_split +EXPORT_SYMBOL vmlinux 0xac23a239 phy_attached_print +EXPORT_SYMBOL vmlinux 0xac2c359e devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xac30797b kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac34003b __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xac4558d5 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xac4177db dump_skip_to +EXPORT_SYMBOL vmlinux 0xac4aeeec pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5cc8db __dquot_transfer +EXPORT_SYMBOL vmlinux 0xac5b602f sock_set_mark +EXPORT_SYMBOL vmlinux 0xac5ea999 of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac8756a9 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xac9affec twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0xaca59ba6 generic_permission -EXPORT_SYMBOL vmlinux 0xaca84561 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0xacab224b init_special_inode +EXPORT_SYMBOL vmlinux 0xac70e1da phy_read_paged +EXPORT_SYMBOL vmlinux 0xac785f3c inode_insert5 +EXPORT_SYMBOL vmlinux 0xac827b43 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xac8bbe6a tty_port_open +EXPORT_SYMBOL vmlinux 0xac9179f7 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xaca7500f try_module_get +EXPORT_SYMBOL vmlinux 0xaca77471 ilookup5_nowait EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacad5894 of_translate_dma_region -EXPORT_SYMBOL vmlinux 0xacc1c241 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xacc54815 xattr_full_name -EXPORT_SYMBOL vmlinux 0xacc69ab0 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xacc01a62 genphy_suspend +EXPORT_SYMBOL vmlinux 0xacc05fc4 tls_client_hello_psk EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdd0ded fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacf04bc3 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xacedbb1c component_match_add_typed EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfa56a9 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xacf9368d mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xacfbf12b xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xacffa380 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad391074 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad549ba1 input_grab_device EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad7107a7 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad732de6 fget +EXPORT_SYMBOL vmlinux 0xad733bda sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xad80facf path_is_mountpoint EXPORT_SYMBOL vmlinux 0xad830966 trace_seq_acquire -EXPORT_SYMBOL vmlinux 0xad8accb5 xudma_get_device +EXPORT_SYMBOL vmlinux 0xad8baa13 file_remove_privs +EXPORT_SYMBOL vmlinux 0xad8f10bf blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xad90b619 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb02cc5 acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xaddb98d7 ethtool_aggregate_pause_stats +EXPORT_SYMBOL vmlinux 0xadd405b1 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xaddeedb2 input_free_device +EXPORT_SYMBOL vmlinux 0xadf85204 sync_inode_metadata EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae110a7f xp_can_alloc +EXPORT_SYMBOL vmlinux 0xae0e4756 generic_fillattr +EXPORT_SYMBOL vmlinux 0xae1697b0 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xae18d938 dentry_create EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae2b7332 tcf_em_register +EXPORT_SYMBOL vmlinux 0xae1f95e2 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xae20b8ef skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae318220 keyring_alloc EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae40d11c pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xae4644b4 tty_vhangup -EXPORT_SYMBOL vmlinux 0xae50244d filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xae532d86 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xae541084 tty_port_init +EXPORT_SYMBOL vmlinux 0xae533b41 simple_statfs EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae630f06 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae7be5aa d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0xae7c03cb gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xae7c05d7 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xae82961f netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0xae930447 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xae976ed9 d_tmpfile -EXPORT_SYMBOL vmlinux 0xae9a4fda simple_lookup -EXPORT_SYMBOL vmlinux 0xae9f8343 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xae69390e xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xae9eb079 key_unlink EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec2e287 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xaec445dd devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0xaecbd486 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xaed2f0bf nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xaedeffd1 update_devfreq -EXPORT_SYMBOL vmlinux 0xaefb74f9 blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0xaf197ca0 ps2_interrupt -EXPORT_SYMBOL vmlinux 0xaf1ddfc3 sys_copyarea -EXPORT_SYMBOL vmlinux 0xaf2734d0 __kfree_skb -EXPORT_SYMBOL vmlinux 0xaf284627 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xaf286f2f dm_table_get_size -EXPORT_SYMBOL vmlinux 0xaf2d810c inode_permission +EXPORT_SYMBOL vmlinux 0xaedd0c02 input_open_device +EXPORT_SYMBOL vmlinux 0xaee88b16 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xaef8ffa8 vme_irq_request +EXPORT_SYMBOL vmlinux 0xaefc54b6 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xaefd9119 dcb_getrewr +EXPORT_SYMBOL vmlinux 0xaf10a7a2 padata_alloc_shell EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4d3da6 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xaf49ff99 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xaf55c992 register_mii_timestamper EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf69f6da __netif_schedule -EXPORT_SYMBOL vmlinux 0xaf714be6 no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xaf721ef1 d_exact_alias -EXPORT_SYMBOL vmlinux 0xaf749f8b skb_find_text -EXPORT_SYMBOL vmlinux 0xaf7dc34a truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xaf8ceee0 cdev_del -EXPORT_SYMBOL vmlinux 0xafa30210 register_quota_format +EXPORT_SYMBOL vmlinux 0xaf5dca71 phy_device_create +EXPORT_SYMBOL vmlinux 0xaf5fbdbd hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit -EXPORT_SYMBOL vmlinux 0xafac2afa __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xafb06455 dquot_claim_space_nodirty EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafbd2fb7 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xafbc92aa twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xafbe0337 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error -EXPORT_SYMBOL vmlinux 0xafe937c5 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xaff2c2cb generic_listxattr -EXPORT_SYMBOL vmlinux 0xaff93584 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xaffe0d0e rtnl_create_link -EXPORT_SYMBOL vmlinux 0xb0063b89 of_node_name_eq +EXPORT_SYMBOL vmlinux 0xafd3b6d0 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xafd70f17 __devm_release_region +EXPORT_SYMBOL vmlinux 0xafe1e9b5 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xafefcd91 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb0005441 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xb0060507 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xb00acb5a nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xb00bed82 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb03eb4f4 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xb03ed73e __mdiobus_read +EXPORT_SYMBOL vmlinux 0xb0471aa1 genphy_read_master_slave EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb04c4937 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xb056dae6 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05cb6f9 skb_orphan_partial EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb060438d iov_iter_advance EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xb06ad012 set_anon_super -EXPORT_SYMBOL vmlinux 0xb0840615 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xb096b318 md_update_sb +EXPORT_SYMBOL vmlinux 0xb0647ea1 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xb07470ea pci_irq_vector +EXPORT_SYMBOL vmlinux 0xb07eeb81 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xb08d726e mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xb09762eb dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b22324 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xb0bc683e tcp_read_done EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0cba9ed component_match_add_typed -EXPORT_SYMBOL vmlinux 0xb0dbf7de migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xb0d1996c mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xb0d3fd76 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0fe7f9f tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xb103370a make_bad_inode -EXPORT_SYMBOL vmlinux 0xb1153f6b i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb0eec693 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xb0ffccab pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xb10c68d6 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb1270094 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb12f503d vme_lm_request -EXPORT_SYMBOL vmlinux 0xb12f8405 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb139ee68 rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fb9d2 generic_file_mmap EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb154936c skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xb1561a5e mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xb15c2a89 file_ns_capable -EXPORT_SYMBOL vmlinux 0xb167f59a nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xb17ee270 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xb1802331 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xb186a159 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xb1a9620b dma_find_channel -EXPORT_SYMBOL vmlinux 0xb1b9f4b3 set_page_dirty +EXPORT_SYMBOL vmlinux 0xb15ec5bc uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xb16b97f8 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xb19f4284 flush_dcache_folio +EXPORT_SYMBOL vmlinux 0xb1aae70c scsi_host_busy +EXPORT_SYMBOL vmlinux 0xb1b59bd1 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb1c002a9 device_add_disk EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6fb3b scsi_rescan_device EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1dc0a3a nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e6438c pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0xb1e8f5f6 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xb1ebeac1 setup_arg_pages EXPORT_SYMBOL vmlinux 0xb1ef2d50 cred_fscmp -EXPORT_SYMBOL vmlinux 0xb21e0f7a netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xb1f770a4 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xb2085515 passthru_features_check +EXPORT_SYMBOL vmlinux 0xb21cc966 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xb2224c00 poll_initwait +EXPORT_SYMBOL vmlinux 0xb22a9db7 security_inode_copy_up EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb23c1dc6 filemap_map_pages -EXPORT_SYMBOL vmlinux 0xb27c5cd5 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xb281c574 devm_memunmap -EXPORT_SYMBOL vmlinux 0xb29744ce padata_do_serial +EXPORT_SYMBOL vmlinux 0xb237063e xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xb23b00cb sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xb23c28c9 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xb2442f0b pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xb25eabff twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xb274ede2 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xb27d4c19 security_sk_clone +EXPORT_SYMBOL vmlinux 0xb2811138 generic_write_checks_count EXPORT_SYMBOL vmlinux 0xb2a9cf10 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0xb2ac6883 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xb2b14c2a devfreq_remove_governor EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2ce7d98 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xb2dbd412 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xb2e62480 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xb2caaab4 unix_get_socket +EXPORT_SYMBOL vmlinux 0xb2daf8d0 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xb2e675bb unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xb2ea2847 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0xb2ff4726 netif_skb_features -EXPORT_SYMBOL vmlinux 0xb3060fd6 fixed_size_llseek EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31502d8 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xb3197b72 pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb33750b8 wake_up_process -EXPORT_SYMBOL vmlinux 0xb33df93e simple_open -EXPORT_SYMBOL vmlinux 0xb34c7daa netlink_unicast -EXPORT_SYMBOL vmlinux 0xb34daffd fb_find_mode EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36931fc alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xb37a66c9 sock_edemux +EXPORT_SYMBOL vmlinux 0xb37b813d clkdev_add +EXPORT_SYMBOL vmlinux 0xb37bde67 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert EXPORT_SYMBOL vmlinux 0xb386e0fd nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb38d12a7 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xb39d143c _dev_notice -EXPORT_SYMBOL vmlinux 0xb3a2290c mr_table_dump -EXPORT_SYMBOL vmlinux 0xb3a46a92 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xb3a63406 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xb38a2a59 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xb38ff70c security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xb39afa7d phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3a8f62d phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xb3b92593 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xb3c6038d mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xb3cb43d9 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xb3a8b538 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xb3abd02b dcb_setapp +EXPORT_SYMBOL vmlinux 0xb3ba08cb dev_mc_del_global EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d487f8 elv_rb_find EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run -EXPORT_SYMBOL vmlinux 0xb3f26be1 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb4172abc dev_add_offload +EXPORT_SYMBOL vmlinux 0xb4093986 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xb4097e36 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xb4215377 jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb42f5181 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xb43540c1 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xb43a7492 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xb43b5855 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xb4499e29 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb461d495 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xb47ce6a9 sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0xb48b847c copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xb465c279 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xb4793693 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb48a727a __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xb48c9d04 dcb_getrewr_prio_pcp_mask_map EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49108e0 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xb4938bee iget5_locked EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xb4a0cf47 dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0xb4ab2f04 register_md_personality -EXPORT_SYMBOL vmlinux 0xb4bade42 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xb4cc8032 of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0xb4e9cbc8 __lock_buffer -EXPORT_SYMBOL vmlinux 0xb4fe997c __dquot_free_space -EXPORT_SYMBOL vmlinux 0xb50275e5 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xb50411df fsl_ifc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xb52e09c1 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0xb5397c22 mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0xb49f06c0 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xb4a79a90 touch_atime +EXPORT_SYMBOL vmlinux 0xb4a8e284 netlink_unicast +EXPORT_SYMBOL vmlinux 0xb4aa59db xfrm_register_km +EXPORT_SYMBOL vmlinux 0xb4acc0f8 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xb4c33ed0 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xb4c99e41 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xb4cd5b3d netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xb4d16ec6 stop_tty +EXPORT_SYMBOL vmlinux 0xb4d7d82c udp_pre_connect +EXPORT_SYMBOL vmlinux 0xb4df0875 block_write_end +EXPORT_SYMBOL vmlinux 0xb4e5b606 clear_nlink +EXPORT_SYMBOL vmlinux 0xb50cc060 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0xb51e5e37 fb_pan_display +EXPORT_SYMBOL vmlinux 0xb525e325 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb5499ac8 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xb555e016 phy_resume -EXPORT_SYMBOL vmlinux 0xb559f50b netdev_get_by_name -EXPORT_SYMBOL vmlinux 0xb56027b3 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0xb5696e40 locks_delete_block -EXPORT_SYMBOL vmlinux 0xb569ef66 generic_write_checks_count -EXPORT_SYMBOL vmlinux 0xb56ef293 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xb576ce6e init_task +EXPORT_SYMBOL vmlinux 0xb5401f7a mmc_request_done +EXPORT_SYMBOL vmlinux 0xb543a06a tcp_child_process +EXPORT_SYMBOL vmlinux 0xb55b63a1 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xb5642313 input_unregister_device +EXPORT_SYMBOL vmlinux 0xb56a23cb __folio_batch_release +EXPORT_SYMBOL vmlinux 0xb56adc08 padata_alloc +EXPORT_SYMBOL vmlinux 0xb573ff37 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xb5783c11 twl6040_reg_read EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb58f1769 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xb59ed673 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xb594b2fa tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb59d40b0 secpath_set EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a5d7ee __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5b71ffd platform_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xb5bac3d6 d_alloc -EXPORT_SYMBOL vmlinux 0xb5c693cc dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xb5dff3d6 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xb5b7b036 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xb5b9f3bd devm_clk_put +EXPORT_SYMBOL vmlinux 0xb5c83bf5 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xb5d21e8a qdisc_reset +EXPORT_SYMBOL vmlinux 0xb5d54afc get_inode_acl +EXPORT_SYMBOL vmlinux 0xb5d8196c md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xb5db41c1 unregister_quota_format EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb60e4cc8 fs_param_is_string -EXPORT_SYMBOL vmlinux 0xb6136d76 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb626a8e8 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb6374d82 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0xb64d07c0 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xb654366a netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xb638f41f d_alloc_anon +EXPORT_SYMBOL vmlinux 0xb63c9c48 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xb644b14b security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb64da73f __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb65dce7f mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xb6699087 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xb66b4210 pci_disable_ptm EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67ece35 d_genocide EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6831d50 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xb6865917 skb_checksum_help EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb697e49c sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0xb69b4fed __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xb6a065f5 get_cached_acl +EXPORT_SYMBOL vmlinux 0xb694ea94 proc_set_size +EXPORT_SYMBOL vmlinux 0xb6a8591b ww_mutex_lock EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6afc109 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xb6b241b9 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xb6c2e344 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xb6b1e6a1 pci_set_master +EXPORT_SYMBOL vmlinux 0xb6b4e64c tegra_ivc_init +EXPORT_SYMBOL vmlinux 0xb6c3962e netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6cd0cb4 kthread_bind EXPORT_SYMBOL vmlinux 0xb6cf91fc nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6e529ec vfs_setpos EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb706b54f xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xb7084ed4 textsearch_register -EXPORT_SYMBOL vmlinux 0xb7140f74 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xb705ddf0 get_task_cred +EXPORT_SYMBOL vmlinux 0xb707d753 ip_options_compile EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb716cd79 input_flush_device -EXPORT_SYMBOL vmlinux 0xb719aaa8 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xb71e6c33 rproc_free +EXPORT_SYMBOL vmlinux 0xb71c0c53 napi_gro_receive EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb725e15f devm_clk_get -EXPORT_SYMBOL vmlinux 0xb72e08ed simple_transaction_release -EXPORT_SYMBOL vmlinux 0xb732237f ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73e3c11 md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0xb749578f unix_attach_fds -EXPORT_SYMBOL vmlinux 0xb7513823 tty_lock -EXPORT_SYMBOL vmlinux 0xb754391a end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xb7622ae8 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0xb764b3c6 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xb74b70e7 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xb750f174 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb77f3d4b bio_chain -EXPORT_SYMBOL vmlinux 0xb784ba0a napi_disable -EXPORT_SYMBOL vmlinux 0xb78841e2 __f_setown +EXPORT_SYMBOL vmlinux 0xb77a3f0f nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xb781e7fe devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xb7888bbd blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb793af74 dev_mc_add -EXPORT_SYMBOL vmlinux 0xb7978b93 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xb7ae0189 path_has_submounts +EXPORT_SYMBOL vmlinux 0xb78e6032 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xb7a1ba6b alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xb7b47c0f xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c3c772 ilookup5 EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7c99048 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xb7d8dedc of_n_size_cells -EXPORT_SYMBOL vmlinux 0xb802df72 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xb806c3a8 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xb7fa2b6e get_fs_type EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb80d451c inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xb80febc6 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xb8157661 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xb81e4e11 kernel_write +EXPORT_SYMBOL vmlinux 0xb82811a7 dm_kobject_release EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb84e3164 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xb847eeb8 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xb85cb38d dev_add_pack EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb862cc97 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb8655d43 neigh_changeaddr EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86a8620 param_set_invbool -EXPORT_SYMBOL vmlinux 0xb86aaabb remove_watch_from_object -EXPORT_SYMBOL vmlinux 0xb86d05a4 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xb8747475 pci_release_region -EXPORT_SYMBOL vmlinux 0xb87de988 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xb883e8a1 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xb883ea2d __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xb893d14d vfs_rmdir +EXPORT_SYMBOL vmlinux 0xb87071fd scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb871516d fb_set_suspend +EXPORT_SYMBOL vmlinux 0xb87827be security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8aedfee crypto_sha1_finup EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8c2a18e request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xb8e67dae jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xb8f4edf4 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xb8dd2daf udp6_csum_init +EXPORT_SYMBOL vmlinux 0xb8eacf93 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xb904b19d rt_mutex_base_init EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb91e7cd6 mmc_add_host +EXPORT_SYMBOL vmlinux 0xb9185365 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xb918f09d skb_vlan_untag EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xb92cb1b3 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xb93dc56d iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xb9423131 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xb92398e7 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xb9251a40 kill_litter_super +EXPORT_SYMBOL vmlinux 0xb93079fa dquot_commit +EXPORT_SYMBOL vmlinux 0xb9309716 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xb9349805 twl6040_set_bits EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9446cad skb_splice_from_iter EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94bd3ff inet_frag_kill -EXPORT_SYMBOL vmlinux 0xb94be7e5 mdiobb_write_c45 -EXPORT_SYMBOL vmlinux 0xb969eb93 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xb94cef01 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xb94e0568 param_set_short +EXPORT_SYMBOL vmlinux 0xb94eaf67 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xb95b07ed migrate_vma_finalize EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb989e46e ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xb9a36354 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xb97e19c2 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xb998c162 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xb9a378d7 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xb9ab6f0b netdev_features_change EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9b9e568 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0xb9ba6a43 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0xb9bb53e0 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xb9c0ebfe vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xb9d4b964 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0xb9d51aec proc_create_data -EXPORT_SYMBOL vmlinux 0xb9db98a5 vfs_create -EXPORT_SYMBOL vmlinux 0xb9dc259c __i2c_transfer -EXPORT_SYMBOL vmlinux 0xb9df8ef4 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xb9e0b75d __register_chrdev +EXPORT_SYMBOL vmlinux 0xb9cd55da ipv6_select_ident EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9e97c8c proc_set_size +EXPORT_SYMBOL vmlinux 0xb9f41bb0 sunxi_sram_claim EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xb9fd18b7 phy_init_eee EXPORT_SYMBOL vmlinux 0xba00daa2 dma_fence_allocate_private_stub EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba13cce6 of_find_property -EXPORT_SYMBOL vmlinux 0xba14e6e3 dev_close -EXPORT_SYMBOL vmlinux 0xba3fed6c deactivate_super -EXPORT_SYMBOL vmlinux 0xba452bcf secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0xba45dd6a skb_tx_error +EXPORT_SYMBOL vmlinux 0xba40c3c9 param_ops_ushort EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba555f63 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xba58bf5d vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xba66cfd9 freeze_super EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba715f93 __seq_open_private +EXPORT_SYMBOL vmlinux 0xba8658d6 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xba899dd6 param_ops_ulong EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xbaa94fd9 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xbaa98fbf vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xbab8f4b9 dm_put_device +EXPORT_SYMBOL vmlinux 0xbabfbd55 sk_wait_data EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbad85d2e rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xbada1fcf inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xbaf4c99d drop_super -EXPORT_SYMBOL vmlinux 0xbaf9d5d3 ipv6_dev_find EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb0fc011 seq_write -EXPORT_SYMBOL vmlinux 0xbb1b3ccf fifo_set_limit +EXPORT_SYMBOL vmlinux 0xbb1e1440 nf_setsockopt EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address -EXPORT_SYMBOL vmlinux 0xbb22de1b tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xbb24b0ed fs_bio_set EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb3bc55a vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xbb43ecaf get_fs_type -EXPORT_SYMBOL vmlinux 0xbb471a46 param_set_hexint +EXPORT_SYMBOL vmlinux 0xbb2a1307 sock_no_accept +EXPORT_SYMBOL vmlinux 0xbb4d2359 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xbb4e8328 finalize_exec EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb65b6b2 sget +EXPORT_SYMBOL vmlinux 0xbb50de0b devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xbb56e8e9 blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb6ba3c5 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xbb74722d jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xbb7eb204 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0xbb84e33c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbb7fa7a2 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbb358b9 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xbbc8ddb6 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xbbbd3349 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xbbbdb497 mod_zone_page_state EXPORT_SYMBOL vmlinux 0xbbda18c4 dma_fence_free -EXPORT_SYMBOL vmlinux 0xbbdb8400 device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0xbbe7552e md_integrity_register -EXPORT_SYMBOL vmlinux 0xbbf0aec5 devm_memremap -EXPORT_SYMBOL vmlinux 0xbc05785e free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xbc06883f filemap_alloc_folio -EXPORT_SYMBOL vmlinux 0xbc0d8274 _dev_printk -EXPORT_SYMBOL vmlinux 0xbc1b6196 vga_client_register +EXPORT_SYMBOL vmlinux 0xbc033f73 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xbc1514f5 param_get_byte EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc91e232 dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xbc965534 skb_expand_head -EXPORT_SYMBOL vmlinux 0xbc96dbcf sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xbc275905 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xbc3bba03 mmc_erase +EXPORT_SYMBOL vmlinux 0xbc549fa2 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xbc5ae914 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xbc5fdaa8 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xbc8b465d xfrm_policy_delete EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcae0a20 tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0xbcdebf9b ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xbd02a115 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xbd1ebd40 task_work_add -EXPORT_SYMBOL vmlinux 0xbd2c71e4 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0xbcdc75cc __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xbce8f8ca kthread_stop +EXPORT_SYMBOL vmlinux 0xbd17d291 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xbd2a77c2 devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd51a4d3 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xbd554418 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xbd58b162 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xbd61826c bpf_map_get +EXPORT_SYMBOL vmlinux 0xbd61fa6f register_quota_format EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd7137f7 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xbd7c79d4 pci_select_bars -EXPORT_SYMBOL vmlinux 0xbd954609 mdiobb_read_c45 -EXPORT_SYMBOL vmlinux 0xbda9b244 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xbdd5b831 xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0xbde0b436 gro_cells_init -EXPORT_SYMBOL vmlinux 0xbdeda6f6 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xbe114dce i2c_find_device_by_fwnode -EXPORT_SYMBOL vmlinux 0xbe2b9d02 device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xbe335b43 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xbe43a69e lock_rename_child +EXPORT_SYMBOL vmlinux 0xbd82cc54 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xbd893bd5 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xbd961d35 kernel_accept +EXPORT_SYMBOL vmlinux 0xbda9fe26 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbdbc09ef sg_miter_start +EXPORT_SYMBOL vmlinux 0xbddd80ed tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xbde150fc kmem_cache_create +EXPORT_SYMBOL vmlinux 0xbde5c514 may_setattr +EXPORT_SYMBOL vmlinux 0xbde65034 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xbde85efe lock_rename_child +EXPORT_SYMBOL vmlinux 0xbdf00ab6 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xbdf08c58 simple_empty +EXPORT_SYMBOL vmlinux 0xbe085ada netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xbe18ff4f blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xbe26cb36 devm_ioremap +EXPORT_SYMBOL vmlinux 0xbe3fbf09 of_range_to_resource EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe5b9cc4 ilookup -EXPORT_SYMBOL vmlinux 0xbe60c7a9 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xbe67b641 framebuffer_release EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe77d382 skb_copy_header -EXPORT_SYMBOL vmlinux 0xbe851ecf padata_alloc_shell -EXPORT_SYMBOL vmlinux 0xbe87dc90 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xbea8bb7b tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xbea97112 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xbebdcc2f start_tty -EXPORT_SYMBOL vmlinux 0xbebf472f unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xbed278a3 pipe_unlock +EXPORT_SYMBOL vmlinux 0xbe7d1592 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xbe855c4b mii_link_ok +EXPORT_SYMBOL vmlinux 0xbeae195d simple_pin_fs +EXPORT_SYMBOL vmlinux 0xbeaf594a input_release_device +EXPORT_SYMBOL vmlinux 0xbebc4645 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xbeca9c87 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xbed08193 param_get_int +EXPORT_SYMBOL vmlinux 0xbee05433 mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf10a4e0 of_device_alloc -EXPORT_SYMBOL vmlinux 0xbf137a7b blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0xbf167b5d tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xbf263601 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0xbf2e4419 inode_init_once -EXPORT_SYMBOL vmlinux 0xbf363b0f of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xbf0c569f eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xbf0c5ce7 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xbf0ea639 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xbf1568ca pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xbf188a84 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xbf2320c4 rproc_alloc +EXPORT_SYMBOL vmlinux 0xbf375c8d nd_btt_version EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf5fd50a mmc_put_card -EXPORT_SYMBOL vmlinux 0xbf6dd0dc __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xbf7ef17f phy_request_interrupt -EXPORT_SYMBOL vmlinux 0xbf8a9a8f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xbf6547f1 ilookup +EXPORT_SYMBOL vmlinux 0xbf77b6f1 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xbf7d0d32 param_ops_string +EXPORT_SYMBOL vmlinux 0xbfa01200 ip_output +EXPORT_SYMBOL vmlinux 0xbfa12a0b amba_release_regions +EXPORT_SYMBOL vmlinux 0xbfa3d6d7 md_reload_sb +EXPORT_SYMBOL vmlinux 0xbfa4954d con_set_default_unimap EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate -EXPORT_SYMBOL vmlinux 0xbfb3fd23 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xbfc0df9b ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xbfc60def jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0xbfc654b9 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xbfb11334 security_path_unlink EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfcefe5d folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0xbfcf0c68 fasync_helper -EXPORT_SYMBOL vmlinux 0xbfd026e8 sock_set_mark -EXPORT_SYMBOL vmlinux 0xbfd09a86 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xbfd64e43 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xbfdc65d7 sk_free -EXPORT_SYMBOL vmlinux 0xbfdfad1b io_uring_destruct_scm -EXPORT_SYMBOL vmlinux 0xbfe34d6e skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xbfe86a99 blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0xbff32ae0 netdev_offload_xstats_push_delta -EXPORT_SYMBOL vmlinux 0xbff7426e napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xbff99c75 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xbffe28c5 dev_set_threaded -EXPORT_SYMBOL vmlinux 0xc00091ea disk_check_media_change -EXPORT_SYMBOL vmlinux 0xc011f50a pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xbfda391f blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xbfe6fb46 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xbfe9f42a mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xbfee83bb register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xbff8a9a7 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xc00af2c2 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xc00d46fb of_graph_get_port_parent EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0432846 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xc04be660 flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0xc04c489d neigh_table_init EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get -EXPORT_SYMBOL vmlinux 0xc068e6cf pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xc07304f1 unregister_framebuffer EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc080da9d __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xc083e31f pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xc0a386c9 pci_remove_bus -EXPORT_SYMBOL vmlinux 0xc0aadaac __serio_register_driver +EXPORT_SYMBOL vmlinux 0xc07e3102 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xc0984d80 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xc0a4ef35 tty_port_put +EXPORT_SYMBOL vmlinux 0xc0add342 tty_name +EXPORT_SYMBOL vmlinux 0xc0ccbaea pci_pme_capable +EXPORT_SYMBOL vmlinux 0xc0db48df vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc105cd61 dentry_open -EXPORT_SYMBOL vmlinux 0xc109b72e eth_header EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc1246c2b mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xc1316525 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xc13424d2 shmem_aops -EXPORT_SYMBOL vmlinux 0xc138a50b phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0xc138e982 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xc11d1e7e xp_alloc +EXPORT_SYMBOL vmlinux 0xc13900d3 sk_free +EXPORT_SYMBOL vmlinux 0xc13afc95 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xc13bbb72 lock_rename +EXPORT_SYMBOL vmlinux 0xc14af41c sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc152d2a4 __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc15f5324 textsearch_prepare EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc165d03e tty_write_room EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16c222e pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xc16f71d6 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xc196c343 neigh_lookup -EXPORT_SYMBOL vmlinux 0xc1a696a4 vfs_dedupe_file_range -EXPORT_SYMBOL vmlinux 0xc1c90f3c fman_bind -EXPORT_SYMBOL vmlinux 0xc1c968a8 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xc16fc4b6 seq_putc +EXPORT_SYMBOL vmlinux 0xc1865007 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xc1b46161 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xc1bbb875 _dev_printk +EXPORT_SYMBOL vmlinux 0xc1c12246 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xc1c17606 netif_tx_unlock EXPORT_SYMBOL vmlinux 0xc1cb419c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xc1d13e82 md_handle_request EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e1722a from_kprojid +EXPORT_SYMBOL vmlinux 0xc1ddc4a0 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1f231bb neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xc1e6b6e8 pm860x_reg_read EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc206cefb generic_file_llseek -EXPORT_SYMBOL vmlinux 0xc20b3f8a sk_common_release -EXPORT_SYMBOL vmlinux 0xc20b8ff7 block_truncate_page -EXPORT_SYMBOL vmlinux 0xc21249f3 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xc2181c0e devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xc2072cc0 dcache_readdir +EXPORT_SYMBOL vmlinux 0xc210dba6 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xc2140ccb tcp_check_req +EXPORT_SYMBOL vmlinux 0xc21c5c03 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xc227a703 tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xc230e101 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xc2301f39 security_dentry_init_security EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc233a0b9 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xc2464185 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xc24b44f6 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xc256dc62 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0xc26e9b47 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xc26f97b9 ppp_input -EXPORT_SYMBOL vmlinux 0xc280ae59 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xc2486d54 param_get_string +EXPORT_SYMBOL vmlinux 0xc24dea78 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc252cbc8 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xc280c16b tso_start +EXPORT_SYMBOL vmlinux 0xc2852526 pci_save_state +EXPORT_SYMBOL vmlinux 0xc28de0d0 pci_add_new_bus EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a930a2 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xc2aff5f9 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xc2b8bf93 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xc2c722d3 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xc2c59554 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2cd7b78 unregister_console EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2fda782 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xc30544dd eth_header_cache_update EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc306c379 thread_group_exited EXPORT_SYMBOL vmlinux 0xc310b981 strnstr EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc320515a dev_open +EXPORT_SYMBOL vmlinux 0xc3241632 alloc_pages EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33fdd90 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xc341d31a user_revoke -EXPORT_SYMBOL vmlinux 0xc34838f4 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xc340e3e6 scsi_device_set_state EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc35b509a component_match_add_release -EXPORT_SYMBOL vmlinux 0xc37059eb neigh_event_ns -EXPORT_SYMBOL vmlinux 0xc3731002 pci_restore_state +EXPORT_SYMBOL vmlinux 0xc35caa92 pci_find_capability +EXPORT_SYMBOL vmlinux 0xc35eabe1 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xc36766bb gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xc368f018 kmalloc_node_trace EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc3777fb5 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xc376f2c3 rproc_add_carveout EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c07b3 phy_free_interrupt EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3a19894 acpi_device_hid -EXPORT_SYMBOL vmlinux 0xc3a9e69d inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0xc3b9fb69 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xc3c53749 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc38d7ccd backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xc38f172f jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xc39e5a08 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xc3bab59f kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc3c94aa0 io_uring_destruct_scm EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3db6489 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xc3dfe023 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xc3f082bd blkdev_put -EXPORT_SYMBOL vmlinux 0xc3fc97bd vme_register_driver +EXPORT_SYMBOL vmlinux 0xc3d7c042 padata_do_serial +EXPORT_SYMBOL vmlinux 0xc3df1d98 disk_check_media_change +EXPORT_SYMBOL vmlinux 0xc3f82474 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xc3f9fa0d param_set_invbool EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc3ffc512 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0xc41edbe1 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xc40cc37a generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xc41f9c09 mdiobus_write EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc4218d50 _dev_notice EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc4305060 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xc43c01ef __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xc4476586 netlink_ack -EXPORT_SYMBOL vmlinux 0xc44da01b inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xc437c333 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xc43b3e27 sk_alloc +EXPORT_SYMBOL vmlinux 0xc4407afa pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc459a66b iov_iter_xarray -EXPORT_SYMBOL vmlinux 0xc46b90e5 tcp_read_skb -EXPORT_SYMBOL vmlinux 0xc46fcf4c netdev_pick_tx EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc48c1d5e fb_blank -EXPORT_SYMBOL vmlinux 0xc4936691 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xc4957d9b generic_setlease -EXPORT_SYMBOL vmlinux 0xc49ac658 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xc47a87ca input_register_handler +EXPORT_SYMBOL vmlinux 0xc4804803 send_sig +EXPORT_SYMBOL vmlinux 0xc488c42c __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4b50450 simple_empty -EXPORT_SYMBOL vmlinux 0xc4cdf291 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xc4cf3a11 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xc4d9ef9b system_cpucaps -EXPORT_SYMBOL vmlinux 0xc4e187dd xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xc4f16a10 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xc4ff1a53 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xc51beb44 readahead_expand +EXPORT_SYMBOL vmlinux 0xc4b5fc63 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xc4bff103 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xc4f2e26f t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xc4f8f7bf tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xc4f94b9f pnp_device_attach +EXPORT_SYMBOL vmlinux 0xc4fcd645 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xc50cbeb9 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xc513da86 generic_listxattr +EXPORT_SYMBOL vmlinux 0xc513e35f skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xc518921f __d_drop +EXPORT_SYMBOL vmlinux 0xc52090b3 clk_bulk_get EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc52d420c inet_frags_fini -EXPORT_SYMBOL vmlinux 0xc53e874b tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xc54aa8d5 dm_register_target -EXPORT_SYMBOL vmlinux 0xc561526b has_capability +EXPORT_SYMBOL vmlinux 0xc528fc33 elv_rb_add +EXPORT_SYMBOL vmlinux 0xc5613b86 dm_get_device +EXPORT_SYMBOL vmlinux 0xc56b983b inode_init_always EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc56f3b3a __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc580fd1c flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xc5835461 load_nls_default EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc5914938 tcf_block_put -EXPORT_SYMBOL vmlinux 0xc5986822 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xc597be82 pci_scan_bridge EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5acaa8e inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xc5ad70df mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c14347 __folio_cancel_dirty -EXPORT_SYMBOL vmlinux 0xc5c17cc8 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xc5d4b70e ipmi_platform_add EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc603559d mdio_find_bus EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc612bda6 kernel_bind -EXPORT_SYMBOL vmlinux 0xc6189179 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0xc61c2b89 inet_frag_find +EXPORT_SYMBOL vmlinux 0xc61e3526 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc62fa5ae acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xc62fa6a5 bioset_init +EXPORT_SYMBOL vmlinux 0xc62d73ea pci_bus_type EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc658c168 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66e9f83 find_vma -EXPORT_SYMBOL vmlinux 0xc66ec987 simple_getattr -EXPORT_SYMBOL vmlinux 0xc67de0df mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xc67ae9a7 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xc69b212e close_fd_get_file +EXPORT_SYMBOL vmlinux 0xc69cc6cd scsi_done_direct EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a098ae security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xc6a5f108 iov_iter_npages -EXPORT_SYMBOL vmlinux 0xc6a9c2a4 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xc6b8607b tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xc6af871e tls_handshake_cancel EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6f154fb tty_unlock EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6f5e489 xfrm_dev_policy_flush -EXPORT_SYMBOL vmlinux 0xc6ffae57 sock_bind_add -EXPORT_SYMBOL vmlinux 0xc702813f pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xc6f649cf of_get_compatible_child +EXPORT_SYMBOL vmlinux 0xc7030e1f nd_device_register EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc70b933b acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xc714c036 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xc715b0a7 param_ops_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xc71ba3d7 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xc70a496e __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xc71071f4 kernel_sendmsg EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7278bf6 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xc72c6296 of_translate_address -EXPORT_SYMBOL vmlinux 0xc733c13f tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xc73478cf cdev_add -EXPORT_SYMBOL vmlinux 0xc73eeaa4 register_netdevice -EXPORT_SYMBOL vmlinux 0xc7420533 pci_get_slot -EXPORT_SYMBOL vmlinux 0xc75c1029 iov_iter_init +EXPORT_SYMBOL vmlinux 0xc72853b2 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xc7488647 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xc75c75f8 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xc7632e8a fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc78f9625 seq_bprintf -EXPORT_SYMBOL vmlinux 0xc7914d82 dev_printk_emit -EXPORT_SYMBOL vmlinux 0xc79c577c zpool_register_driver +EXPORT_SYMBOL vmlinux 0xc78cc657 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7ae9925 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xc7b041a1 folio_mapping -EXPORT_SYMBOL vmlinux 0xc7ba2050 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xc7b80877 simple_nosetlease EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c35fe4 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xc7d7708b dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xc7eb9d67 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0xc800a6e4 cont_write_begin -EXPORT_SYMBOL vmlinux 0xc8019e09 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xc7cccbb5 inet_getname +EXPORT_SYMBOL vmlinux 0xc7e9c7a7 scsi_device_get +EXPORT_SYMBOL vmlinux 0xc7ecb385 ether_setup +EXPORT_SYMBOL vmlinux 0xc7ed8ca8 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc7f47e66 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xc7fe7bbb igrab EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc825f0ea cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xc8107598 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xc820c97b of_n_size_cells +EXPORT_SYMBOL vmlinux 0xc821104e qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc829adcf generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xc8320a55 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc839da8d generic_file_fsync -EXPORT_SYMBOL vmlinux 0xc83a514f pci_iomap +EXPORT_SYMBOL vmlinux 0xc83e0aeb udp6_seq_ops EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc859393f mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xc85c6cc8 vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88b5666 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc8a16106 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0xc8a198d8 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0xc8a8fc9a flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8bf6d96 __breadahead +EXPORT_SYMBOL vmlinux 0xc8bdbf35 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xc8be3fcb __neigh_event_send EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e5a4ea security_inode_init_security -EXPORT_SYMBOL vmlinux 0xc90ce671 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xc8ee5a87 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xc8f58e27 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xc8ff0aea read_cache_folio +EXPORT_SYMBOL vmlinux 0xc90a9b92 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc93476d2 inet6_add_offload -EXPORT_SYMBOL vmlinux 0xc93ba16f input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xc921e239 register_key_type +EXPORT_SYMBOL vmlinux 0xc92e7a8d __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xc93ce140 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9617c57 edac_mc_find +EXPORT_SYMBOL vmlinux 0xc9436202 of_device_unregister EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96835e7 tso_build_data -EXPORT_SYMBOL vmlinux 0xc96e24f2 bio_put -EXPORT_SYMBOL vmlinux 0xc96e3bb9 key_reject_and_link -EXPORT_SYMBOL vmlinux 0xc96f1e2d inode_get_bytes +EXPORT_SYMBOL vmlinux 0xc969fa0a clk_add_alias EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc972f0ee skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xc97bff97 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xc97dfb53 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xc980b9ab param_get_uint EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc988be6d blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xc9899542 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0xc99c4a9c netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc993cec1 param_ops_ullong EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9d61487 import_iovec -EXPORT_SYMBOL vmlinux 0xc9dc7080 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xc9a8ca2f __phy_resume +EXPORT_SYMBOL vmlinux 0xc9ca7747 __fs_parse +EXPORT_SYMBOL vmlinux 0xc9d16e4e xudma_get_device +EXPORT_SYMBOL vmlinux 0xc9d87f34 pci_scan_root_bus EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9edbabd sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xc9f39e32 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xc9f3c1d0 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0xca0de34e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xca162905 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca242cf9 validate_slab_cache EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca4e181d skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xca5cdd50 i2c_del_driver EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca69c82a skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0xca7152ea napi_build_skb +EXPORT_SYMBOL vmlinux 0xca834b35 init_task +EXPORT_SYMBOL vmlinux 0xca8b6cdc fddi_type_trans EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcaacba8f security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xcac6d3e3 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xca9ddb38 genphy_c45_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xcaa83fba genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xcac01981 inet6_release +EXPORT_SYMBOL vmlinux 0xcac05179 page_get_link EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcadc7a24 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0xcaeb3e4a kobject_add -EXPORT_SYMBOL vmlinux 0xcaf7cc5d devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xcaf8775c xsk_tx_release +EXPORT_SYMBOL vmlinux 0xcaf96fde rt_dst_clone EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb1476da sock_release -EXPORT_SYMBOL vmlinux 0xcb1acbb9 netdev_get_by_index -EXPORT_SYMBOL vmlinux 0xcb2d32d3 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xcb3a1198 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xcb323d6f phy_validate_pause +EXPORT_SYMBOL vmlinux 0xcb355ef6 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xcb363d87 seq_bprintf EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb555d84 sk_dst_check -EXPORT_SYMBOL vmlinux 0xcb7232fb devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xcb459866 inet_protos +EXPORT_SYMBOL vmlinux 0xcb4a7cbe write_cache_pages EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcbb39c54 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xcbb8647a netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xcbb9bbfe phy_loopback +EXPORT_SYMBOL vmlinux 0xcba5a636 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xcbbb3970 set_capacity +EXPORT_SYMBOL vmlinux 0xcbbb8042 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc31700 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xcbca5989 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xcbcce0b6 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xcbcdb783 udp_set_csum EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd73352 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xcbe27bf4 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xcbf2bf18 genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0xcbf745c5 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc067575 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc275bf8 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xcc2bbf72 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xcc2b2731 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc346b6d kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xcc346b9b ip_do_fragment EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup -EXPORT_SYMBOL vmlinux 0xcc3c35e4 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xcc3c5bd0 sk_error_report EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc41bf86 phy_start +EXPORT_SYMBOL vmlinux 0xcc4e01f7 inode_owner_or_capable EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc539641 nonseekable_open EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5e9797 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xcc6cc05d i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0xcc71ee54 param_set_bool -EXPORT_SYMBOL vmlinux 0xcc97952a tty_port_open -EXPORT_SYMBOL vmlinux 0xcc9fd8c2 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xcc648695 phy_resume +EXPORT_SYMBOL vmlinux 0xcc6b6baa blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xcc7502c9 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xcc78800a ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xcc7e3d08 phy_start_aneg EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id EXPORT_SYMBOL vmlinux 0xccaf994e dma_fence_set_deadline -EXPORT_SYMBOL vmlinux 0xccb43bd5 param_set_ulong -EXPORT_SYMBOL vmlinux 0xcccf66f4 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xcce41200 rtnl_notify +EXPORT_SYMBOL vmlinux 0xccba746a dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xccc33b00 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xccdcc9f5 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xccea8541 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd09d26e of_iomap +EXPORT_SYMBOL vmlinux 0xcd0c3b01 mpage_readahead +EXPORT_SYMBOL vmlinux 0xcd18a5c1 napi_get_frags EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd48be7c vme_bus_type -EXPORT_SYMBOL vmlinux 0xcd5fb2c5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0xcd6ba04c nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xcd70ab1e pci_map_rom +EXPORT_SYMBOL vmlinux 0xcd372531 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xcd46cff0 tcf_register_action +EXPORT_SYMBOL vmlinux 0xcd6e5297 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xcd84fe1a fman_get_revision EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd8dfcad request_key_rcu +EXPORT_SYMBOL vmlinux 0xcd99a3cd udp6_set_csum EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xcd9d72c7 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xcdaced8a qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0xcdb2751a inode_get_bytes EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc91376 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xcdcd679e keyring_clear -EXPORT_SYMBOL vmlinux 0xcdde28c0 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xcde02e67 fb_prepare_logo EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdebc167 netif_receive_skb -EXPORT_SYMBOL vmlinux 0xce030c10 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xce08cd2a mii_link_ok -EXPORT_SYMBOL vmlinux 0xce1c0e13 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xce2320de pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xcdee8f03 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xcdffc784 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xce14b620 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xce2411e7 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2ac4d9 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xce326b82 security_inet_conn_request -EXPORT_SYMBOL vmlinux 0xce3db622 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xce29eebe nf_hook_slow EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4d5ddf phy_attached_info EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce51de6d tty_port_destroy +EXPORT_SYMBOL vmlinux 0xce562074 d_find_any_alias EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce619901 blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0xce66071a lock_rename +EXPORT_SYMBOL vmlinux 0xce6e4537 dm_table_event EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7c5ee6 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xce7d69a6 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce96cc4f add_watch_to_object -EXPORT_SYMBOL vmlinux 0xcea79d4c mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcec3a43c __sk_receive_skb EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcee28849 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xcee400c5 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xced654fd bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xceedab60 current_in_userns +EXPORT_SYMBOL vmlinux 0xcef4df5d vme_irq_generate EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefdc3bc xp_alloc -EXPORT_SYMBOL vmlinux 0xcf069ab1 do_SAK +EXPORT_SYMBOL vmlinux 0xcf14c7aa devm_of_iomap EXPORT_SYMBOL vmlinux 0xcf2a6966 up EXPORT_SYMBOL vmlinux 0xcf2ea86b __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xcf378ced vfs_iter_read +EXPORT_SYMBOL vmlinux 0xcf39ea0d inet_accept EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf47faf3 bio_alloc_clone -EXPORT_SYMBOL vmlinux 0xcf49d4d1 pci_dev_put -EXPORT_SYMBOL vmlinux 0xcf4fb226 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xcf42f34b find_inode_nowait +EXPORT_SYMBOL vmlinux 0xcf44648b security_sk_classify_flow EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf638ce7 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0xcf7582bc of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xcf8d5ee4 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0xcf950c87 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xcf512b0a is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xcf5edfd4 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xcf6c0146 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xcf92c67c try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xcf92f9b0 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfbd0b9f __seq_open_private -EXPORT_SYMBOL vmlinux 0xcfc59f96 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xcf9f744e dev_get_iflink EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfce8851 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfdb3eee d_prune_aliases +EXPORT_SYMBOL vmlinux 0xcfdbddda of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xcfdd5c8f elv_rb_del +EXPORT_SYMBOL vmlinux 0xcfe99cc1 generic_perform_write EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xd03be630 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xcff0802d start_tty +EXPORT_SYMBOL vmlinux 0xd00a6f0f lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0xd00c0f68 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xd0307bc8 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xd04514a6 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05cc4b7 d_set_fallthru EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06a8cfa pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xd06d068e jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0790f9d rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xd09b70da ata_print_version EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd1299386 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xd0c4b71b skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xd0d17af0 mmc_get_card +EXPORT_SYMBOL vmlinux 0xd0d8c00a param_set_bint +EXPORT_SYMBOL vmlinux 0xd11c30ea inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xd1218152 dquot_get_state EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd138af35 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xd144c058 pipe_unlock EXPORT_SYMBOL vmlinux 0xd15cb96e nla_put -EXPORT_SYMBOL vmlinux 0xd165cad1 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xd17d6d9a jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xd18dbd9c __brelse +EXPORT_SYMBOL vmlinux 0xd16a51aa phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xd18ef3df con_copy_unimap +EXPORT_SYMBOL vmlinux 0xd190571b mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd198c566 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xd1c3f31c security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xd1d6b1ae mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1ed530a pci_find_capability -EXPORT_SYMBOL vmlinux 0xd1faafe3 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0xd20052c9 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xd1da52e1 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xd1e8ccbc filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd210b5cb __register_binfmt -EXPORT_SYMBOL vmlinux 0xd21d1aab tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xd211a1eb invalidate_disk +EXPORT_SYMBOL vmlinux 0xd21babd0 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xd21dc504 proto_register EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd226be83 bio_kmalloc -EXPORT_SYMBOL vmlinux 0xd22d9a27 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xd2321d28 ppp_input_error -EXPORT_SYMBOL vmlinux 0xd23d6aa6 rw_verify_area +EXPORT_SYMBOL vmlinux 0xd23a086a of_get_next_parent +EXPORT_SYMBOL vmlinux 0xd23ad2c1 dma_unmap_resource EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked -EXPORT_SYMBOL vmlinux 0xd2447a31 rproc_report_crash -EXPORT_SYMBOL vmlinux 0xd251a0b6 mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xd2532459 fman_get_qman_channel_id EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd25f93bd scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xd26b0a68 dqget -EXPORT_SYMBOL vmlinux 0xd270cbcd mii_nway_restart +EXPORT_SYMBOL vmlinux 0xd2696798 pci_enable_device_io EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd2b0d30f flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xd2a6c7e3 make_kprojid +EXPORT_SYMBOL vmlinux 0xd2b09dd5 sock_wfree +EXPORT_SYMBOL vmlinux 0xd2b0a80e mmc_detect_change EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0xd2b6e5c5 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xd2cddbcf dev_set_alias +EXPORT_SYMBOL vmlinux 0xd2c82f76 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2f2f923 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0xd2fec8e5 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xd2f73991 inode_to_bdi +EXPORT_SYMBOL vmlinux 0xd3135a75 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd336e9e0 devm_release_resource -EXPORT_SYMBOL vmlinux 0xd3417c4b devm_request_resource -EXPORT_SYMBOL vmlinux 0xd34b6f7f dev_uc_init +EXPORT_SYMBOL vmlinux 0xd31f3587 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xd3229614 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xd33f61b8 mii_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd35886fa cdrom_open EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xd36182fb mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xd368e24f skb_copy_expand -EXPORT_SYMBOL vmlinux 0xd36adf01 dst_release -EXPORT_SYMBOL vmlinux 0xd36b4c1c pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd3667ef4 vfs_mknod EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd3720409 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0xd374d55e sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xd3813629 hid_bpf_ops -EXPORT_SYMBOL vmlinux 0xd38dd8c7 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xd3720b37 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xd3727c98 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd3733a67 mdiobb_read_c22 EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd39dc3c4 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xd3cd5d15 filemap_release_folio -EXPORT_SYMBOL vmlinux 0xd3db3707 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xd3e3e0d1 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0xd3e6e0cc netpoll_setup -EXPORT_SYMBOL vmlinux 0xd3f1c474 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xd4041dd7 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xd3bf760a key_put +EXPORT_SYMBOL vmlinux 0xd3c271fa register_netdev +EXPORT_SYMBOL vmlinux 0xd3dd9767 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd3e8bda9 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xd4040aa3 ethtool_aggregate_mac_stats EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd41ce723 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xd42950d0 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xd430e9ff release_pages -EXPORT_SYMBOL vmlinux 0xd43878b1 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xd43ebe5a simple_write_begin +EXPORT_SYMBOL vmlinux 0xd4191e1a neigh_for_each +EXPORT_SYMBOL vmlinux 0xd41e6fd1 __serio_register_port +EXPORT_SYMBOL vmlinux 0xd42e90a0 tcf_exts_init_ex +EXPORT_SYMBOL vmlinux 0xd44062e5 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xd441a95a init_net +EXPORT_SYMBOL vmlinux 0xd44a717b dev_uc_add +EXPORT_SYMBOL vmlinux 0xd4561512 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xd4563886 of_clk_get EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd45e8db9 sk_alloc -EXPORT_SYMBOL vmlinux 0xd4628e06 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xd463198d jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd45ff0c9 __bh_read EXPORT_SYMBOL vmlinux 0xd469bccc __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd46d0130 tcp_check_req -EXPORT_SYMBOL vmlinux 0xd47c16e0 kill_anon_super -EXPORT_SYMBOL vmlinux 0xd47e42b3 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xd47f6d5d bdi_register +EXPORT_SYMBOL vmlinux 0xd4831f1d security_path_rename EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd486472a skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xd48a9b12 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0xd4a0ccb6 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd48d1e52 netdev_emerg +EXPORT_SYMBOL vmlinux 0xd49dc777 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd4a677d4 dst_release EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4abed7d page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c6a5d9 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xd4ccdb9c nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4dd6925 tcf_exts_init_ex -EXPORT_SYMBOL vmlinux 0xd4eb9cc1 udp_ioctl -EXPORT_SYMBOL vmlinux 0xd5185fc8 rproc_alloc +EXPORT_SYMBOL vmlinux 0xd4d76647 input_inject_event +EXPORT_SYMBOL vmlinux 0xd4f4f053 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xd4ffa9e1 unload_nls +EXPORT_SYMBOL vmlinux 0xd500fc0e I_BDEV +EXPORT_SYMBOL vmlinux 0xd51a0c07 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xd51a4c63 of_translate_dma_region EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd53b048d devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xd57d98ff fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xd5864901 genphy_c45_eee_is_active +EXPORT_SYMBOL vmlinux 0xd53efc45 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd548a03d thaw_bdev +EXPORT_SYMBOL vmlinux 0xd548e32c blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xd59dc297 d_instantiate +EXPORT_SYMBOL vmlinux 0xd59ed09d __nd_driver_register EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5bd6d10 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0xd5c99a1b mr_table_alloc -EXPORT_SYMBOL vmlinux 0xd5d6f66a unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0xd5dd5747 block_write_full_page -EXPORT_SYMBOL vmlinux 0xd5f360d1 path_get -EXPORT_SYMBOL vmlinux 0xd5fac50c __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd5ce72ab genphy_loopback +EXPORT_SYMBOL vmlinux 0xd5d3a00a ip_route_input_noref EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd61b9970 cdev_device_add -EXPORT_SYMBOL vmlinux 0xd6233dd2 con_is_visible +EXPORT_SYMBOL vmlinux 0xd6159261 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xd6231654 locks_copy_lock EXPORT_SYMBOL vmlinux 0xd62b1e45 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63525f5 tcp_mtup_init EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd64675e2 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xd64898f3 bioset_exit -EXPORT_SYMBOL vmlinux 0xd648b57f mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd676a85d get_tree_bdev -EXPORT_SYMBOL vmlinux 0xd678263a tty_write_room -EXPORT_SYMBOL vmlinux 0xd68c3f15 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xd6741095 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xd674f30e inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xd689a003 of_find_node_with_property EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd6914230 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xd69cf850 pci_get_device +EXPORT_SYMBOL vmlinux 0xd6a1d9d8 get_tree_bdev EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6aca313 unpin_user_page -EXPORT_SYMBOL vmlinux 0xd6b4fad8 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0xd6bda1b5 of_graph_is_present -EXPORT_SYMBOL vmlinux 0xd6c064ad __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xd6c1b488 param_set_int -EXPORT_SYMBOL vmlinux 0xd6c38ba5 kill_fasync -EXPORT_SYMBOL vmlinux 0xd6e80fee uart_match_port +EXPORT_SYMBOL vmlinux 0xd6a98898 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xd6ab371c ppp_dev_name +EXPORT_SYMBOL vmlinux 0xd6b05c02 done_path_create +EXPORT_SYMBOL vmlinux 0xd6d78073 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xd6e20f9b pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xd6e24b51 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xd6e33e1f udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7097f9a __inet_hash +EXPORT_SYMBOL vmlinux 0xd70c81ab nf_log_register EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute EXPORT_SYMBOL vmlinux 0xd71104b3 vm_node_stat -EXPORT_SYMBOL vmlinux 0xd7190381 dquot_get_state +EXPORT_SYMBOL vmlinux 0xd714fb95 phy_connect EXPORT_SYMBOL vmlinux 0xd7356c1c ns_capable_setid EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd73ce153 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0xd73d69dc phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd751ba70 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xd7781802 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0xd7908987 dquot_initialize +EXPORT_SYMBOL vmlinux 0xd75b27d5 param_get_ullong +EXPORT_SYMBOL vmlinux 0xd75e39b4 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xd766e88f current_time +EXPORT_SYMBOL vmlinux 0xd779927a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xd794be5e __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7beb2a4 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0xd7c0799d __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xd7a3cc43 of_get_property +EXPORT_SYMBOL vmlinux 0xd7aac6fb netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xd7b27a9a scsi_add_device +EXPORT_SYMBOL vmlinux 0xd7b690cb param_get_hexint +EXPORT_SYMBOL vmlinux 0xd7b8b606 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xd7c84fc2 dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d2905f input_get_keycode +EXPORT_SYMBOL vmlinux 0xd7de9096 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0xd7e9e59f jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xd7e77998 __page_frag_cache_drain EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7f9625b inet_frag_destroy EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd807bdd5 i2c_del_driver -EXPORT_SYMBOL vmlinux 0xd807d212 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xd804fc27 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xd8055684 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd81506a8 i2c_transfer EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write -EXPORT_SYMBOL vmlinux 0xd83389d9 genphy_read_lpa EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd84758b4 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xd859107c flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xd869a378 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xd86b5da6 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xd8826365 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0xd88cd78b udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0xd88d6b36 kthread_stop -EXPORT_SYMBOL vmlinux 0xd899d158 finish_open -EXPORT_SYMBOL vmlinux 0xd89a11a8 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xd8428f5e flush_dcache_page +EXPORT_SYMBOL vmlinux 0xd8496d09 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd8565abd kthread_create_worker +EXPORT_SYMBOL vmlinux 0xd8638998 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xd8715837 vme_bus_num +EXPORT_SYMBOL vmlinux 0xd889c713 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a79874 rpmh_write_async EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b043b5 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd8b24856 eth_type_trans EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8d54793 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0xd8b745cd proc_symlink +EXPORT_SYMBOL vmlinux 0xd8beb740 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xd8cbf34a md_register_thread EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8ece3d8 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0xd8f97656 kill_block_super -EXPORT_SYMBOL vmlinux 0xd8fa6545 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xd9084e7b dcb_getrewr -EXPORT_SYMBOL vmlinux 0xd915d3aa sock_wmalloc -EXPORT_SYMBOL vmlinux 0xd917a2d9 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xd9191a10 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xd91d4028 __skb_get_hash EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd9206209 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xd92b3ff7 dma_resv_fini EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd92e1820 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xd93bbc01 vc_resize +EXPORT_SYMBOL vmlinux 0xd93c2578 vfs_getattr EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd95d34e6 dev_kfree_skb_irq_reason +EXPORT_SYMBOL vmlinux 0xd9655cc6 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xd96690fa mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xd9800493 arp_xmit EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9872cf0 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0xd98b76d6 scsi_host_put +EXPORT_SYMBOL vmlinux 0xd98b8bfe __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xd9902421 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xd9a1fc16 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b801b8 fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9c3b419 md_flush_request +EXPORT_SYMBOL vmlinux 0xd9bbaa82 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xd9c15c39 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xd9c1bf5e __remove_inode_hash EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9f7614b filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xda082c2c key_unlink -EXPORT_SYMBOL vmlinux 0xda0d5b59 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xda0dea11 make_kprojid +EXPORT_SYMBOL vmlinux 0xd9e5dee1 rtc_add_group EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda1d1f0c __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xda25733d dev_mc_init -EXPORT_SYMBOL vmlinux 0xda373d8b setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0xda1628a8 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xda175fd0 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xda17e8a5 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xda1f6191 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xda22707a simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xda34eba5 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xda354306 key_task_permission EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open EXPORT_SYMBOL vmlinux 0xda3f8a71 nla_append -EXPORT_SYMBOL vmlinux 0xda746a5e netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xda755c67 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xda7b574f tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0xdabe4bde dev_get_flags -EXPORT_SYMBOL vmlinux 0xdabec6be __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xda453271 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xda53ec23 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xda59dff8 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xda827acd rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xda83e18e blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xda85b3d6 seq_path +EXPORT_SYMBOL vmlinux 0xda92626e iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xda9e30d4 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xdab5fcbe clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xdab8689c end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xdabe9cab mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule -EXPORT_SYMBOL vmlinux 0xdacc1b76 handshake_req_submit EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdadacb5b fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xdaea8145 sock_queue_rcv_skb_reason -EXPORT_SYMBOL vmlinux 0xdaec5227 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0xdafa18cf tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xdade9874 sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0xdaee8704 dev_load +EXPORT_SYMBOL vmlinux 0xdb09e591 fqdir_init +EXPORT_SYMBOL vmlinux 0xdb0f703d netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xdb12b1a7 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xdb14ca0e ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xdb1d3ebf phy_loopback EXPORT_SYMBOL vmlinux 0xdb1edee6 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xdb22daae sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xdb298abc sunxi_sram_release -EXPORT_SYMBOL vmlinux 0xdb2e2680 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xdb5d0850 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xdb634248 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xdb63c572 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xdb29f55c stream_open +EXPORT_SYMBOL vmlinux 0xdb3a5739 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xdb620100 trace_event_printf EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb759f56 iget_locked EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb8d163d md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0xdba8d9f2 udp_read_skb -EXPORT_SYMBOL vmlinux 0xdbace494 kernel_listen -EXPORT_SYMBOL vmlinux 0xdbb1f794 scsi_done_direct +EXPORT_SYMBOL vmlinux 0xdbb66d94 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xdbbea1c1 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbcba1fe get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdc6f07 folio_wait_bit EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe26341 arp_create -EXPORT_SYMBOL vmlinux 0xdbe52178 done_path_create -EXPORT_SYMBOL vmlinux 0xdbff6df7 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xdc0ddbf9 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1bd61a mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xdc1b9af9 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xdc2a808e blk_set_runtime_active EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init -EXPORT_SYMBOL vmlinux 0xdc349365 arp_xmit -EXPORT_SYMBOL vmlinux 0xdc3785dc unregister_binfmt +EXPORT_SYMBOL vmlinux 0xdc38aed5 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xdc3ac923 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xdc3c3436 devm_memremap EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc47cc1f dquot_initialize_needed EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4f5a16 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc567afd blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xdc7affdf fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xdc7d8080 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xdc90a8ab xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xdc5c8056 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xdc5f1939 fb_blank +EXPORT_SYMBOL vmlinux 0xdc76f600 vm_map_ram +EXPORT_SYMBOL vmlinux 0xdc8da8c7 d_add EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb063fa dump_page +EXPORT_SYMBOL vmlinux 0xdcb3667f audit_log EXPORT_SYMBOL vmlinux 0xdcb764ad memset -EXPORT_SYMBOL vmlinux 0xdcbc36ef pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xdcbc83d4 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcca4943 of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdce23ed6 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xdd03e8c4 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xdd160149 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xdce0f21a __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xdcf3c7c6 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xdcf6ab2b security_path_mkdir +EXPORT_SYMBOL vmlinux 0xdcfafd8f napi_gro_frags +EXPORT_SYMBOL vmlinux 0xdcffd9dd jbd2__journal_start EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3a5a23 xp_dma_map +EXPORT_SYMBOL vmlinux 0xdd408451 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xdd4618ba jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock -EXPORT_SYMBOL vmlinux 0xdd5101be posix_lock_file EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0xdd5fdb52 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xdd621328 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd687ad7 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xdd79fa7c jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd7ec929 import_iovec EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xddac6c2f vfs_mkdir EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddbcfcc0 sg_miter_next -EXPORT_SYMBOL vmlinux 0xdddcfd9b phy_driver_register EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done -EXPORT_SYMBOL vmlinux 0xddfacf54 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde111fda pin_user_pages -EXPORT_SYMBOL vmlinux 0xde16ef4d __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xde10ed60 del_gendisk EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde36ca24 __do_once_done -EXPORT_SYMBOL vmlinux 0xde4ba58e tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xde2aedd3 i2c_get_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0xde2cd49b shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xde3db55b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xde3f7c97 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xde5ae252 scsi_execute_cmd +EXPORT_SYMBOL vmlinux 0xde5c139c of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0xde67419e sg_split -EXPORT_SYMBOL vmlinux 0xde6feb74 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xde726efe sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xde817c6b netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0xde93397f cdrom_check_events -EXPORT_SYMBOL vmlinux 0xde9757ed nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xde7958e5 user_revoke +EXPORT_SYMBOL vmlinux 0xde94bb30 blk_rq_init +EXPORT_SYMBOL vmlinux 0xde9def57 of_node_get +EXPORT_SYMBOL vmlinux 0xdea5139d gro_cells_receive EXPORT_SYMBOL vmlinux 0xdeb99119 dma_fence_init -EXPORT_SYMBOL vmlinux 0xdec5c4c8 try_module_get +EXPORT_SYMBOL vmlinux 0xdec17680 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xdec68da5 __inet_hash +EXPORT_SYMBOL vmlinux 0xdecb5293 rproc_add EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded6aff5 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xdee8a33e inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xdededcb4 rproc_boot +EXPORT_SYMBOL vmlinux 0xdee9648f tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf100b1a unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xdf14bbcf input_register_handle -EXPORT_SYMBOL vmlinux 0xdf165fc6 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xdf121590 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xdf1b0a8f pci_pme_active +EXPORT_SYMBOL vmlinux 0xdf2464ec mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xdf2f7af1 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xdf34651b ip_options_compile EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf4c746a devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xdf49a89d tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5f5770 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xdf633bb5 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xdf635ad3 simple_rmdir -EXPORT_SYMBOL vmlinux 0xdf688eed neigh_xmit -EXPORT_SYMBOL vmlinux 0xdf895f83 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xdf622995 datagram_poll +EXPORT_SYMBOL vmlinux 0xdf6d06e8 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xdf81f369 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf92554e scsi_print_result EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9663c0 sg_miter_stop EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdf9c60d9 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xdf9dbe78 fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0xdfa412f8 tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0xdfa5f94d security_cred_getsecid -EXPORT_SYMBOL vmlinux 0xdfabae96 get_phy_device -EXPORT_SYMBOL vmlinux 0xdfb4725f dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0xdfb4d52f phy_register_fixup +EXPORT_SYMBOL vmlinux 0xdfb3afff ip_defrag +EXPORT_SYMBOL vmlinux 0xdfbb2e31 ipmi_platform_add EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream EXPORT_SYMBOL vmlinux 0xdfcc992c current_work EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdfde8069 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xdfe16ad3 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0xdfe49c0c amba_release_regions -EXPORT_SYMBOL vmlinux 0xdfec2c91 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xdff3035d mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xdff2c882 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe0034045 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xe0037a9f inet_csk_accept -EXPORT_SYMBOL vmlinux 0xe012f67a mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0xe0131766 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xe01c9cd3 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0xe020dce2 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe00153f4 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe02ec0ad skb_seq_read +EXPORT_SYMBOL vmlinux 0xe03962e8 dm_io EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe04ebd95 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xe050b58c __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xe06e10b0 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xe0789329 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xe0474998 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xe04cb731 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xe07e086b phy_write_mmd EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082a39f pci_disable_link_state EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe08a6ea4 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xe08bfd5d mq_change_real_num_tx -EXPORT_SYMBOL vmlinux 0xe090c83c iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xe08f5368 inet_select_addr EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe092f55f touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xe0a64f0b md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b5224e tty_driver_kref_put EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c07bfb close_fd_get_file -EXPORT_SYMBOL vmlinux 0xe0c3b558 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xe0ca1205 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0xe0dae523 dcb_getapp -EXPORT_SYMBOL vmlinux 0xe0e49cbe eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xe0c92a72 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xe0daa401 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xe0de3443 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xe0e57a30 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xe0ef7597 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xe0f14581 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xe0fd8dbd tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe119a3e8 inet_frags_init +EXPORT_SYMBOL vmlinux 0xe1221310 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xe1238a50 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe12c84dc vma_alloc_folio -EXPORT_SYMBOL vmlinux 0xe12fdf10 crypto_sha1_update EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe162d411 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0xe1696adf dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xe16a063e mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xe1587f13 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xe159f047 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xe166b704 pnp_release_card_device EXPORT_SYMBOL vmlinux 0xe17568e3 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0xe18af7e7 md_error -EXPORT_SYMBOL vmlinux 0xe1b4cdeb __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0xe1d4f2c1 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xe175f230 sock_alloc +EXPORT_SYMBOL vmlinux 0xe182102f softnet_data +EXPORT_SYMBOL vmlinux 0xe18f38f0 noop_fsync +EXPORT_SYMBOL vmlinux 0xe19779c2 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xe1c8d3f8 __of_get_address +EXPORT_SYMBOL vmlinux 0xe1cc3cde flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xe1d4077a folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xe1da8a64 xp_alloc_batch EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1dfdea7 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0xe1fbace9 iov_iter_get_pages_alloc2 -EXPORT_SYMBOL vmlinux 0xe20581c4 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xe1f554a8 md_wakeup_thread EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe23827b5 file_open_root -EXPORT_SYMBOL vmlinux 0xe265ed17 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0xe26f8530 register_key_type -EXPORT_SYMBOL vmlinux 0xe282ea5f dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xe28e1b64 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xe294f08e filemap_fault +EXPORT_SYMBOL vmlinux 0xe22108a9 fb_io_write +EXPORT_SYMBOL vmlinux 0xe23ab3c4 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xe23e8fb6 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xe26c0563 __fput_sync +EXPORT_SYMBOL vmlinux 0xe26cfb25 bdi_unregister EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up +EXPORT_SYMBOL vmlinux 0xe2b272e3 mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0xe2bbfa56 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xe2be330d framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xe2d1fe74 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xe2d514c7 kernel_connect +EXPORT_SYMBOL vmlinux 0xe2c5b7a1 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e26207 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xe320d4f9 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xe2ede657 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe2ee0624 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xe2ef64a4 simple_lookup +EXPORT_SYMBOL vmlinux 0xe2fe592b locks_init_lock +EXPORT_SYMBOL vmlinux 0xe3176ada phy_stop +EXPORT_SYMBOL vmlinux 0xe324d9d7 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3480256 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xe34df963 devm_clk_put -EXPORT_SYMBOL vmlinux 0xe3557249 seq_open -EXPORT_SYMBOL vmlinux 0xe3618329 param_get_hexint -EXPORT_SYMBOL vmlinux 0xe3687585 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0xe36e184d dget_parent -EXPORT_SYMBOL vmlinux 0xe3734cb0 ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xe37d3739 keyring_search -EXPORT_SYMBOL vmlinux 0xe38cbf53 sock_i_uid +EXPORT_SYMBOL vmlinux 0xe32fc5ed genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xe330647d eth_mac_addr +EXPORT_SYMBOL vmlinux 0xe339a1b4 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe34476ed scm_fp_dup +EXPORT_SYMBOL vmlinux 0xe3448933 tcp_poll +EXPORT_SYMBOL vmlinux 0xe356fd1c arp_tbl +EXPORT_SYMBOL vmlinux 0xe35dab30 pnp_get_resource EXPORT_SYMBOL vmlinux 0xe392bb00 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0xe3958c67 sock_ioctl_inout -EXPORT_SYMBOL vmlinux 0xe39b214a inode_query_iversion +EXPORT_SYMBOL vmlinux 0xe3945f4b tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xe3951683 handshake_genl_put EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a625e7 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3c8da68 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0xe3da6de0 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xe3e3756b pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xe3b32d53 devm_iounmap +EXPORT_SYMBOL vmlinux 0xe3bdbf9d ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xe3c15f18 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xe3d15472 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f4e614 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xe3faec14 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xe3fbbde2 __folio_batch_release EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe404998b copy_page_to_iter_nofault EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40bdd3d netdev_state_change EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe40cfbf5 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xe40e1f7e tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0xe4237c0b tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xe44030bb is_subdir -EXPORT_SYMBOL vmlinux 0xe45c4ca3 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xe40fd0d7 of_iomap +EXPORT_SYMBOL vmlinux 0xe43e0bdf dev_mc_init +EXPORT_SYMBOL vmlinux 0xe43f2c8f rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xe455e8ca dst_alloc EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe464463b scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xe468f23b fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0xe47b0a20 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xe47b9bca __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xe48bad99 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xe468c50d blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xe49a2e19 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4cbff0b mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xe4d6603e mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0xe4df1082 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xe4e4810b sock_wfree -EXPORT_SYMBOL vmlinux 0xe506afbc clk_get -EXPORT_SYMBOL vmlinux 0xe507e8a1 param_get_long -EXPORT_SYMBOL vmlinux 0xe5138505 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xe5163946 fd_install -EXPORT_SYMBOL vmlinux 0xe5210b21 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xe4e09ce9 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xe4e9dcb8 tty_lock +EXPORT_SYMBOL vmlinux 0xe5086fb8 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xe509727d fifo_set_limit +EXPORT_SYMBOL vmlinux 0xe5205175 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5301879 scsi_execute_cmd -EXPORT_SYMBOL vmlinux 0xe54cfdaf sock_no_mmap -EXPORT_SYMBOL vmlinux 0xe55436c0 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xe5556b2f iov_iter_advance -EXPORT_SYMBOL vmlinux 0xe56b3041 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xe52969cd of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xe553a323 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xe55c6220 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xe56abe1a blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xe570ab8d sget +EXPORT_SYMBOL vmlinux 0xe576d0d9 netdev_reset_tc EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe58b08af skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a60665 touch_buffer -EXPORT_SYMBOL vmlinux 0xe5adf0be pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xe59d6229 mr_table_dump +EXPORT_SYMBOL vmlinux 0xe5ac8975 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c86024 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xe5c9526c to_nd_btt +EXPORT_SYMBOL vmlinux 0xe5cae8ae ppp_input_error EXPORT_SYMBOL vmlinux 0xe5cee291 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xe5cfd9a9 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xe5d37564 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xe5d828da find_inode_nowait -EXPORT_SYMBOL vmlinux 0xe5dc9075 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xe5e2cd68 init_net -EXPORT_SYMBOL vmlinux 0xe60209ab devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xe6034e31 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe6121e57 set_page_writeback +EXPORT_SYMBOL vmlinux 0xe6163f3f ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xe61b912a security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xe6239995 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xe623c18a vfs_get_tree +EXPORT_SYMBOL vmlinux 0xe62740eb i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xe62fbad9 __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xe6365413 padata_free +EXPORT_SYMBOL vmlinux 0xe644bbba xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe66bff9b fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xe674b745 mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0xe679fd4d tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xe65a8a02 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xe68a88a5 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6b1931f tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xe6b76934 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xe6bd65f5 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xe6c2fb5c netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xe6cc7d5c crypto_sha512_finup EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6d4bb8e mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0xe6e7c840 write_inode_now -EXPORT_SYMBOL vmlinux 0xe6f751f8 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xe6d9192e shmem_aops +EXPORT_SYMBOL vmlinux 0xe6ddb2e9 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xe6eb5b7b ip6_frag_init +EXPORT_SYMBOL vmlinux 0xe6f19df2 filp_open +EXPORT_SYMBOL vmlinux 0xe6f5812c pci_bus_add_devices EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe6fee57d of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xe70dc6db ip6_frag_init -EXPORT_SYMBOL vmlinux 0xe71c4fef wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0xe7080d9f dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7279afd blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xe730f069 pcie_get_mps -EXPORT_SYMBOL vmlinux 0xe73a4510 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xe73e29a2 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xe7781026 mdiobus_free +EXPORT_SYMBOL vmlinux 0xe76202d0 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xe76af48e node_data +EXPORT_SYMBOL vmlinux 0xe7757dcd mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xe7793bba balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xe77a057f blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xe787aa8f ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xe78f6ba2 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xe797cd18 xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a3e4d3 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xe7a56caf sk_dst_check EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7b09f80 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xe7bc9f13 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xe7ce27b7 seq_vprintf +EXPORT_SYMBOL vmlinux 0xe7b2ca9d phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xe7b2d61d inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xe7b394c1 dev_get_stats +EXPORT_SYMBOL vmlinux 0xe7bcd783 inet_ioctl EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d4f784 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xe7df9af6 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xe7e552ad get_tree_single -EXPORT_SYMBOL vmlinux 0xe7ee4c73 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xe7f6c4fa page_pool_create -EXPORT_SYMBOL vmlinux 0xe80c408d release_sock +EXPORT_SYMBOL vmlinux 0xe7e1646e find_vma_intersection +EXPORT_SYMBOL vmlinux 0xe80bd9cc module_layout EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe82203fe tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xe82370ed fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0xe829ecce gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0xe83d7906 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xe8576b3c iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xe85dc9f0 input_unregister_handler -EXPORT_SYMBOL vmlinux 0xe85e53fa tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xe819c235 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xe83808eb netpoll_send_skb EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe890bab1 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xe87dbec6 i2c_get_match_data +EXPORT_SYMBOL vmlinux 0xe87dc0f7 flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xe8a333be kset_unregister -EXPORT_SYMBOL vmlinux 0xe8b71135 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xe8bd88e5 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xe8bda4a8 serio_unregister_port -EXPORT_SYMBOL vmlinux 0xe8c167ce phy_config_aneg -EXPORT_SYMBOL vmlinux 0xe8c24769 amba_device_register +EXPORT_SYMBOL vmlinux 0xe8b8257b d_splice_alias +EXPORT_SYMBOL vmlinux 0xe8ce3f2e mnt_set_expiry EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8e39aab xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xe8f7b050 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe8f192bd uart_get_divisor +EXPORT_SYMBOL vmlinux 0xe8fb453c neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xe8fb9ca7 udp_seq_ops EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get +EXPORT_SYMBOL vmlinux 0xe905e897 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xe9084bdf mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xe90964f0 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe912fcde tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe922ab48 inet_select_addr -EXPORT_SYMBOL vmlinux 0xe9275ab4 xen_alloc_ballooned_pages -EXPORT_SYMBOL vmlinux 0xe9305955 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xe9401b3d seq_puts -EXPORT_SYMBOL vmlinux 0xe946ccc9 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xe94b075b mpage_writepages +EXPORT_SYMBOL vmlinux 0xe94ba530 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xe94ff5ae dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xe9529ccb sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95864e8 serio_rescan -EXPORT_SYMBOL vmlinux 0xe967229f par_io_of_config -EXPORT_SYMBOL vmlinux 0xe96c9055 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xe979b6be pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xe97e6c34 __quota_error +EXPORT_SYMBOL vmlinux 0xe9575577 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xe9586d9b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xe995c7e7 of_device_is_available +EXPORT_SYMBOL vmlinux 0xe998032c devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xe99d7659 dcache_dir_close EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b78775 d_alloc_anon -EXPORT_SYMBOL vmlinux 0xe9b7b9f3 bio_add_page -EXPORT_SYMBOL vmlinux 0xe9d4961d sys_fillrect +EXPORT_SYMBOL vmlinux 0xe9c5e7cc nf_ct_attach +EXPORT_SYMBOL vmlinux 0xe9d4f213 dma_free_attrs EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xe9ddc3a3 skb_condense -EXPORT_SYMBOL vmlinux 0xe9e4e6f8 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fefd09 phy_remove_link_mode EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea16e08b phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xea1177db pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xea16de5a neigh_destroy EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea1cafe9 ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0xea25a3c1 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea456222 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0xea47e08a msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xea4dc836 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xea4ef95b scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xea55353b pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0xea5dbf17 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xea68e756 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xea5c2e7c __napi_schedule EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea7a335b input_mt_sync_frame EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options -EXPORT_SYMBOL vmlinux 0xea9d9fdd sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xea885c8d param_ops_bint EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac2f889 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xeaca848b set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xeacbae59 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xead399e2 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeae6a624 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0xeaed7a9b sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xeae64fd7 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0223e3 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xeb133a3d tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xeb16e83c genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb27c68b mpage_read_folio -EXPORT_SYMBOL vmlinux 0xeb2cb18c inet_del_protocol EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb5f4a11 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xeb5f7487 tcf_block_get +EXPORT_SYMBOL vmlinux 0xeb4a993a tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xeb5a067d __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xeb5cb9b5 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xeb64cf5d jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xeb6a9b55 devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb859973 netdev_core_stats_alloc -EXPORT_SYMBOL vmlinux 0xeb95b90b xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xeb9c7c8f register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xeb9ceb55 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebbde022 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xebc26ca8 ip_frag_init -EXPORT_SYMBOL vmlinux 0xec04e953 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xeba5c33f __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xebec9691 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xec0cd689 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xec1dce6a mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xec266a75 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xec2a1aab crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2f15e5 dquot_disable -EXPORT_SYMBOL vmlinux 0xec337623 sock_kfree_s EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec485f37 skb_push -EXPORT_SYMBOL vmlinux 0xec4d2945 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xec47fc60 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xec4a204f security_inode_listsecurity EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec515eae param_ops_string -EXPORT_SYMBOL vmlinux 0xec56b64a devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xec7a2000 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xec7a5939 block_invalidate_folio -EXPORT_SYMBOL vmlinux 0xec829cfd nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xec897747 file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xec8dc3d4 sys_imageblit +EXPORT_SYMBOL vmlinux 0xec68f7a2 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xec778910 __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xec782b33 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xec9cb422 handshake_req_private +EXPORT_SYMBOL vmlinux 0xeca61768 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecc48932 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xecc8825a neigh_direct_output -EXPORT_SYMBOL vmlinux 0xecc98a20 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xeccf0646 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xecd3dbe3 file_modified -EXPORT_SYMBOL vmlinux 0xece72a30 phy_get_pause +EXPORT_SYMBOL vmlinux 0xecb1ced0 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xecbb4e10 md_update_sb +EXPORT_SYMBOL vmlinux 0xecbd5fd1 serio_interrupt +EXPORT_SYMBOL vmlinux 0xecd23d0f __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xecd86f5b fb_show_logo +EXPORT_SYMBOL vmlinux 0xecd8b424 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece97414 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xecf4fb9c max8998_write_reg EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed2ae8bb tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0xed345ca4 misc_register -EXPORT_SYMBOL vmlinux 0xed4ab362 netif_set_tso_max_size -EXPORT_SYMBOL vmlinux 0xed4e7abb neigh_app_ns +EXPORT_SYMBOL vmlinux 0xed02cf16 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xed264ad8 sk_net_capable +EXPORT_SYMBOL vmlinux 0xed2ff372 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xed4ebbd3 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xed50f8e1 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed5eb8a0 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed749524 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xed73eb16 seq_open +EXPORT_SYMBOL vmlinux 0xed7570e4 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xed83871e napi_gro_flush +EXPORT_SYMBOL vmlinux 0xed83c38d param_ops_short EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xeda2d7e3 kernel_getpeername EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xedabad60 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xeda921a7 eth_header_parse +EXPORT_SYMBOL vmlinux 0xedb30b26 __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbb96ec of_find_compatible_node EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc4c3a0 new_inode -EXPORT_SYMBOL vmlinux 0xedcd49f8 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xedcb6ec8 inet6_getname EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xedd2995d xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xede896b5 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xedf01c0e simple_unlink -EXPORT_SYMBOL vmlinux 0xedf1ad22 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xeddbab69 mdiobb_read_c45 EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xee2b7e30 input_close_device -EXPORT_SYMBOL vmlinux 0xee2cc027 unix_get_socket +EXPORT_SYMBOL vmlinux 0xee0d0638 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xee17b9dc blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xee1e7920 register_cdrom +EXPORT_SYMBOL vmlinux 0xee236976 param_set_ulong EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3c6465 sync_blockdev -EXPORT_SYMBOL vmlinux 0xee53cf64 md_write_inc +EXPORT_SYMBOL vmlinux 0xee2e894d mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xee317489 kern_path +EXPORT_SYMBOL vmlinux 0xee424ab1 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xee4848b0 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xee56cb39 nd_integrity_init EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee768e96 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xee5bd332 dev_uc_flush EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7e2a5a ppp_channel_index EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee8069d7 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xee85656d mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xee85ad8a lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee8e3d7c cfb_imageblit EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee9f559d unix_detach_fds -EXPORT_SYMBOL vmlinux 0xeea6756f netdev_features_change +EXPORT_SYMBOL vmlinux 0xee94af78 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xeea83b58 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xeea975bd uart_write_wakeup EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec56a7a tls_client_hello_psk -EXPORT_SYMBOL vmlinux 0xeecd5bb3 cad_pid -EXPORT_SYMBOL vmlinux 0xeed4dc1b path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xeeaf7228 nf_log_unset +EXPORT_SYMBOL vmlinux 0xeec1a76c tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xeecabee3 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xeed1e864 __invalidate_device EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xef0a2949 __aperture_remove_legacy_vga_devices -EXPORT_SYMBOL vmlinux 0xef0bbd7b acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0xef0c69ad mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xef4d3873 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xef5c8fbf bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xef5d072b pci_disable_msi -EXPORT_SYMBOL vmlinux 0xef686d03 copy_splice_read -EXPORT_SYMBOL vmlinux 0xef68a2e0 pci_get_subsys -EXPORT_SYMBOL vmlinux 0xef754ca2 tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xef776677 tls_handshake_cancel -EXPORT_SYMBOL vmlinux 0xef8633f1 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xeee7f0f6 md_integrity_register +EXPORT_SYMBOL vmlinux 0xef1117c6 seq_release_private +EXPORT_SYMBOL vmlinux 0xef149d52 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xef1f908b neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xef49cd38 netlink_ack +EXPORT_SYMBOL vmlinux 0xef593bb8 km_query +EXPORT_SYMBOL vmlinux 0xef7615ec input_close_device +EXPORT_SYMBOL vmlinux 0xef7f438e inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xef81946c md_bitmap_free +EXPORT_SYMBOL vmlinux 0xef87a066 set_cached_acl +EXPORT_SYMBOL vmlinux 0xef89549c end_page_writeback EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef987e4b udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xefa3f4c9 genphy_c45_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefbd9327 skb_copy -EXPORT_SYMBOL vmlinux 0xefc19010 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xefc2decc pps_register_source -EXPORT_SYMBOL vmlinux 0xefc3289f d_instantiate +EXPORT_SYMBOL vmlinux 0xefc829cd __do_once_done EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd1962f vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xefdacf02 km_policy_notify +EXPORT_SYMBOL vmlinux 0xefdd9385 km_new_mapping EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeffbe47f __starget_for_each_device EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf006c91f mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0xf0071cae tcp_time_wait -EXPORT_SYMBOL vmlinux 0xf019bb44 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xf01eb01c __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xf002e3d5 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xf003b716 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xf00c6911 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xf00dd364 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xf0101259 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xf0168ad9 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xf018b11a km_policy_expired +EXPORT_SYMBOL vmlinux 0xf0222144 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xf0223e45 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf0627937 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xf03d3d0f __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf0741925 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xf07562b5 mdio_device_register EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table +EXPORT_SYMBOL vmlinux 0xf08b8313 eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0aee8df input_set_capability +EXPORT_SYMBOL vmlinux 0xf0a868a9 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf0a8cae3 __lock_sock_fast EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0b996fc t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0xf0b9a4b9 commit_creds -EXPORT_SYMBOL vmlinux 0xf0bdd76e con_copy_unimap -EXPORT_SYMBOL vmlinux 0xf0d2e779 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xf0e7f13a alloc_fcdev +EXPORT_SYMBOL vmlinux 0xf0d30e46 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xf0dd53db tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xf0de7921 tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xf11450f3 phy_suspend +EXPORT_SYMBOL vmlinux 0xf10e7aa6 page_readlink EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf11fa93c bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf1455e9b backlight_device_register -EXPORT_SYMBOL vmlinux 0xf16fd646 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xf14bb6e3 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xf15cffd9 mpage_read_folio +EXPORT_SYMBOL vmlinux 0xf1698750 crypto_sha3_init +EXPORT_SYMBOL vmlinux 0xf16a4be7 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xf170f3b1 devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf1869e10 config_group_find_item +EXPORT_SYMBOL vmlinux 0xf1910c4a folio_zero_new_buffers EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19971f6 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream -EXPORT_SYMBOL vmlinux 0xf1abd598 km_new_mapping -EXPORT_SYMBOL vmlinux 0xf1b9b210 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xf1bf2f4e generic_file_mmap +EXPORT_SYMBOL vmlinux 0xf1a8bbbb inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xf1b41ec7 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf1d76dae skb_put EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ed80bd d_find_alias +EXPORT_SYMBOL vmlinux 0xf1f6f71c netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf21d29ce get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xf225f18f rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xf22f0ce9 fman_reset_mac +EXPORT_SYMBOL vmlinux 0xf211d400 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xf2181b6f xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xf23ce00a rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf253bcc5 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0xf25724a4 of_cpu_device_node_get EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf268eada sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xf2751c85 skb_checksum_help -EXPORT_SYMBOL vmlinux 0xf281cdfd simple_setattr +EXPORT_SYMBOL vmlinux 0xf27c3419 pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf28fdc17 serio_unregister_port EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0xf297dca5 pnp_device_detach -EXPORT_SYMBOL vmlinux 0xf29bf008 clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xf2a05c20 generic_write_checks +EXPORT_SYMBOL vmlinux 0xf298fe1e __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xf2a11284 tegra_ivc_reset EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0xf2ab792d eth_header_cache EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2cdbf44 kill_pgrp -EXPORT_SYMBOL vmlinux 0xf2de43cb pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f4b30c blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xf2f479b8 drop_nlink EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf317c3a8 genphy_c45_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xf31b37d5 __break_lease -EXPORT_SYMBOL vmlinux 0xf31c475d ethtool_notify -EXPORT_SYMBOL vmlinux 0xf321609e mdio_driver_register -EXPORT_SYMBOL vmlinux 0xf32bff12 put_watch_queue -EXPORT_SYMBOL vmlinux 0xf341feb7 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xf2f5a638 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xf2f77105 phy_device_free +EXPORT_SYMBOL vmlinux 0xf2f798c5 unpin_user_page +EXPORT_SYMBOL vmlinux 0xf2f9d5f4 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xf2fd7be3 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xf31cf99a fb_get_mode EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf3463696 kmem_cache_create -EXPORT_SYMBOL vmlinux 0xf3464fc6 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0xf351ce97 sock_no_getname EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35796f7 of_find_all_nodes EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0xf3653540 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf3653958 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xf36563e6 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xf3696ff6 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xf369c856 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xf369d9dc __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xf36dc3e5 __dquot_transfer EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf37f9d95 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xf386eb22 backlight_device_register EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39264a2 mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf396ea4e crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xf39c8a37 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xf39e79b9 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xf3a083bc __skb_pad EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3b8b483 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xf3b9cc06 seq_open_private +EXPORT_SYMBOL vmlinux 0xf3b59af4 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xf3cfa76a __nla_put -EXPORT_SYMBOL vmlinux 0xf3e08368 register_shrinker +EXPORT_SYMBOL vmlinux 0xf3d52c64 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3ec0356 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xf419465f read_cache_folio -EXPORT_SYMBOL vmlinux 0xf422bb65 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xf42ea726 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xf43bf962 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xf3f7c6b2 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xf3fa7366 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xf4031984 register_netdevice +EXPORT_SYMBOL vmlinux 0xf40b3ff0 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xf41b0854 poll_freewait +EXPORT_SYMBOL vmlinux 0xf428c3e3 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xf42e0039 from_kgid +EXPORT_SYMBOL vmlinux 0xf439bbd9 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf442972d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xf44a4a8c zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid +EXPORT_SYMBOL vmlinux 0xf4581af2 dev_close +EXPORT_SYMBOL vmlinux 0xf4655f31 register_md_personality EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf48a044b mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0xf4a203c5 vfs_readlink +EXPORT_SYMBOL vmlinux 0xf48e6686 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf49994c1 security_d_instantiate EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4b7ffb3 nf_log_register -EXPORT_SYMBOL vmlinux 0xf4cc7282 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xf4d9e491 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xf4bb4e57 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xf4c36784 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xf4c91a36 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xf4ca8a85 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xf4d8c753 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e4ffb0 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xf4dd9735 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f22014 __ip_dev_find -EXPORT_SYMBOL vmlinux 0xf5053a93 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xf526dfd3 param_ops_charp -EXPORT_SYMBOL vmlinux 0xf534aa3e iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xf539c9b0 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xf53c726d skb_queue_head +EXPORT_SYMBOL vmlinux 0xf50886b0 mpage_writepages +EXPORT_SYMBOL vmlinux 0xf51d0987 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xf52873b7 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xf52ca221 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5549cbb kernel_getsockname -EXPORT_SYMBOL vmlinux 0xf558b99b input_get_timestamp -EXPORT_SYMBOL vmlinux 0xf576b2aa genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xf599c189 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xf5a1a9a6 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xf5532719 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xf5551832 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xf557721d xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xf55d0a16 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xf56d8b47 netdev_change_features +EXPORT_SYMBOL vmlinux 0xf577313e _copy_from_iter +EXPORT_SYMBOL vmlinux 0xf58074a0 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0xf5934845 blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5a8b5df iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0xf5c163b9 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0xf5c61b41 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xf5d7c190 __neigh_event_send -EXPORT_SYMBOL vmlinux 0xf5e3477b devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf5da411b default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf5e5d58a kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f4e9f0 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xf60a1026 dev_trans_start -EXPORT_SYMBOL vmlinux 0xf60f9e05 mdiobb_write_c22 -EXPORT_SYMBOL vmlinux 0xf611176a crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xf611b283 of_get_mac_address -EXPORT_SYMBOL vmlinux 0xf6195bd5 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xf5eab88a sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xf62672cf tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xf626ee46 kern_path_create +EXPORT_SYMBOL vmlinux 0xf62afa7f __netlink_ns_capable EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx EXPORT_SYMBOL vmlinux 0xf6340eed kset_register -EXPORT_SYMBOL vmlinux 0xf63cabbb super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xf6416cf9 max8925_reg_read EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf64da1fe gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xf65a3628 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0xf6473337 put_disk +EXPORT_SYMBOL vmlinux 0xf64c7a39 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xf65237a5 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66a4b17 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xf66f8ba4 of_match_node +EXPORT_SYMBOL vmlinux 0xf6733369 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xf6776e9d ip_do_fragment EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68a5629 max8925_reg_read -EXPORT_SYMBOL vmlinux 0xf6949d13 config_item_get -EXPORT_SYMBOL vmlinux 0xf6c5379c devm_arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0xf6cc00b6 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xf6db3f1f devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xf6dfbf4a dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xf6e6d887 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xf689cadc sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xf69c3880 proto_unregister +EXPORT_SYMBOL vmlinux 0xf6a621b8 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xf6cd902d blk_get_queue +EXPORT_SYMBOL vmlinux 0xf6da20b8 devm_free_irq EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f9677e proc_mkdir_mode EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf71869b5 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xf71c1727 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0xf71c22da dev_kfree_skb_any_reason +EXPORT_SYMBOL vmlinux 0xf712f64a devfreq_update_target +EXPORT_SYMBOL vmlinux 0xf7230e76 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf74983b5 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xf754424d pci_resize_resource +EXPORT_SYMBOL vmlinux 0xf74fec50 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf767781d eth_gro_complete EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf76cd10c xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf795ee61 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0xf79a08c6 tty_register_driver -EXPORT_SYMBOL vmlinux 0xf7a6b1be cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xf7c29ac3 inet6_offloads +EXPORT_SYMBOL vmlinux 0xf77f0318 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xf790e88b __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xf79c46ee md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xf7c7cd03 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xf7ca542b pnpacpi_protocol EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7d9512b twl6040_reg_write EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e95e5f kernel_bind EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr -EXPORT_SYMBOL vmlinux 0xf7ed295c is_nd_dax -EXPORT_SYMBOL vmlinux 0xf7f02eae scsi_done EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf7f20b6e filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xf7f54d6b tcp_init_sock -EXPORT_SYMBOL vmlinux 0xf801c343 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0xf8063162 input_register_handler -EXPORT_SYMBOL vmlinux 0xf809d0e4 input_set_keycode +EXPORT_SYMBOL vmlinux 0xf7fdb337 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8124b25 tcp_disconnect EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf820e1d0 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xf823ba64 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xf815e910 param_set_ullong EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf83002be netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0xf83346b4 of_get_property -EXPORT_SYMBOL vmlinux 0xf8424353 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xf83afb63 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xf8405571 skb_copy_header +EXPORT_SYMBOL vmlinux 0xf84a9c0e twl6040_reg_write EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84dd17e dev_get_by_index +EXPORT_SYMBOL vmlinux 0xf859efd8 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xf875a491 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xf88ecec4 kvmemdup -EXPORT_SYMBOL vmlinux 0xf8935327 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xf8a3bb08 vif_device_init -EXPORT_SYMBOL vmlinux 0xf8a8f8a5 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xf8acf92b of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xf8aefa35 peernet2id -EXPORT_SYMBOL vmlinux 0xf8b91cd1 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0xf8c44fc3 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xf88f5874 con_is_visible +EXPORT_SYMBOL vmlinux 0xf8b94db8 skb_unlink +EXPORT_SYMBOL vmlinux 0xf8ca4579 input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8dd4bb0 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xf8e60f5c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xf8e70359 __scm_destroy +EXPORT_SYMBOL vmlinux 0xf8f288a4 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8f84b34 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xf900c1fc iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xf902e3be rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xf90df187 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0xf912e5b8 default_llseek +EXPORT_SYMBOL vmlinux 0xf8f90ea4 param_ops_byte +EXPORT_SYMBOL vmlinux 0xf901499b dev_get_by_index EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf91f9a32 sock_wake_async -EXPORT_SYMBOL vmlinux 0xf92ebbea serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xf93377f5 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xf92de386 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf92ff5dd devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xf93869a2 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93ba841 i2c_register_driver -EXPORT_SYMBOL vmlinux 0xf93dc904 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94336e9 amba_device_register EXPORT_SYMBOL vmlinux 0xf94536c2 proc_dointvec -EXPORT_SYMBOL vmlinux 0xf958faa6 generic_write_end +EXPORT_SYMBOL vmlinux 0xf94e2714 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xf95187a9 single_release +EXPORT_SYMBOL vmlinux 0xf956b6b8 skb_flow_get_icmp_tci EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf95d254e mntput -EXPORT_SYMBOL vmlinux 0xf96307aa jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xf9704caf fman_get_bmi_max_fifo_size EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9966ccc sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xf99ed6c3 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xf99b20e7 locks_remove_posix EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b3fe10 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xf9b86188 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xf9b88ea1 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xf9bc22de pci_write_vpd_any EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9cdc7f6 pci_scan_slot EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9e6ef15 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xf9f08d37 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xf9f0e104 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xf9d10991 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xf9e5215d fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xf9e7515d dquot_free_inode +EXPORT_SYMBOL vmlinux 0xfa034a7d skb_queue_tail +EXPORT_SYMBOL vmlinux 0xfa03cb40 configfs_register_default_group EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa16d0ae udp_seq_ops -EXPORT_SYMBOL vmlinux 0xfa18c918 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xfa120d27 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xfa19c21c kmalloc_caches +EXPORT_SYMBOL vmlinux 0xfa266008 vlan_uses_dev EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa2fe70b mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xfa338f92 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xfa3baf06 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xfa3fb718 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xfa4ba3f0 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa4ff7f3 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xfa5471e3 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xfa577746 uart_unregister_driver EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa917da7 put_cmsg -EXPORT_SYMBOL vmlinux 0xfa9495c6 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xfa5a1ebf __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xfa5c5585 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xfa5eab16 blkdev_put +EXPORT_SYMBOL vmlinux 0xfa8048fe input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xfa9d42d7 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab0f3fe shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xfac0a388 handshake_req_alloc EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfae9eab4 kmalloc_trace +EXPORT_SYMBOL vmlinux 0xfacc3fdb of_graph_get_endpoint_by_regs EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xfaf51efd phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xfafd9bde seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xfb00d222 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xfb07dff6 devm_arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xfb2220d9 pnp_register_driver -EXPORT_SYMBOL vmlinux 0xfb262228 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xfb27d1b5 ps2_command +EXPORT_SYMBOL vmlinux 0xfb2d4509 acpi_device_set_power EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb397668 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0xfb3d256c jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xfb44d667 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xfb497f88 __bh_read_batch -EXPORT_SYMBOL vmlinux 0xfb5e7691 __bread_gfp -EXPORT_SYMBOL vmlinux 0xfb60b0c2 inet_bind -EXPORT_SYMBOL vmlinux 0xfb68e098 d_rehash +EXPORT_SYMBOL vmlinux 0xfb3dca9e mdiobb_write_c45 +EXPORT_SYMBOL vmlinux 0xfb4d93bd block_read_full_folio +EXPORT_SYMBOL vmlinux 0xfb51a70a pci_set_power_state +EXPORT_SYMBOL vmlinux 0xfb529293 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xfb57b1ba __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb77c435 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xfb9ac804 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xfb6edc74 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xfb901057 ptp_clock_register EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 -EXPORT_SYMBOL vmlinux 0xfbaa725f fb_validate_mode EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbabcae5 pcie_set_mps EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb7f02c dev_set_promiscuity EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbc694b unix_detach_fds EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd04387 fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xfbd12eb8 pci_release_resource +EXPORT_SYMBOL vmlinux 0xfbd01fcd do_splice_direct +EXPORT_SYMBOL vmlinux 0xfbd03468 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0xfbd3307f ns_capable +EXPORT_SYMBOL vmlinux 0xfbd38dcf fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xfbde8e29 vfs_ioctl EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbe2aca2 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfbfaeef0 pci_read_vpd_any -EXPORT_SYMBOL vmlinux 0xfc0408c3 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0xfc1eeb29 tls_client_hello_anon -EXPORT_SYMBOL vmlinux 0xfc2dc503 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xfc32109b flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xfc0d711a set_disk_ro +EXPORT_SYMBOL vmlinux 0xfc18421c bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xfc1b9b78 folio_add_lru +EXPORT_SYMBOL vmlinux 0xfc280318 of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit -EXPORT_SYMBOL vmlinux 0xfc3e4ef2 netdev_reset_tc EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc4a9a3b vme_bus_num EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc5856be of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xfc6269af security_d_instantiate +EXPORT_SYMBOL vmlinux 0xfc7311be mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xfc75c4e4 d_add_ci +EXPORT_SYMBOL vmlinux 0xfc8656ab tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc8b8245 phy_device_register EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfca89898 icmp6_send -EXPORT_SYMBOL vmlinux 0xfcb844ab vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xfcc78b8a ppp_register_channel +EXPORT_SYMBOL vmlinux 0xfca754f2 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xfcb83c43 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfccf3a34 icmp_ndo_send EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcdf5373 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xfce0f8f2 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xfcdc1f24 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xfcddcb95 __sock_i_ino EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf6062a passthru_features_check -EXPORT_SYMBOL vmlinux 0xfd19f980 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xfd37f2d4 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xfd505c94 bio_split -EXPORT_SYMBOL vmlinux 0xfd50b5e6 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xfcf0b2e2 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xfd045fb8 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xfd30a15a devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xfd6be661 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xfd72bfd4 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xfd7d221d __netif_napi_del -EXPORT_SYMBOL vmlinux 0xfd9b2be3 dquot_commit -EXPORT_SYMBOL vmlinux 0xfdba759a reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xfd5cc092 component_match_add_release +EXPORT_SYMBOL vmlinux 0xfd635491 mdiobus_c45_read_nested EXPORT_SYMBOL vmlinux 0xfdba919d __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xfdc8c43f pci_read_vpd -EXPORT_SYMBOL vmlinux 0xfdc963dd md_cluster_ops EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdd1fb21 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xfdd93556 lookup_one_len +EXPORT_SYMBOL vmlinux 0xfde45289 kthread_destroy_worker EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe065664 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xfe09337f __skb_flow_dissect EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update EXPORT_SYMBOL vmlinux 0xfe215b97 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0xfe350663 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xfe3a95af submit_bio_wait EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5355b9 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xfe5ae854 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xfe4bd673 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe7bcec8 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xfe7d1098 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xfe80b75f mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xfe71a39f dquot_transfer +EXPORT_SYMBOL vmlinux 0xfe72cd36 lookup_one_len +EXPORT_SYMBOL vmlinux 0xfe79e865 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xfe83e9da bdi_register +EXPORT_SYMBOL vmlinux 0xfe8b647b neigh_parms_release EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe8eac21 backlight_force_update EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe973ac3 dma_alloc_attrs EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeba0ba1 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xfebe3c51 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0xfedbe6e5 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xfebf74d6 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xfec04ae8 sk_stream_error +EXPORT_SYMBOL vmlinux 0xfed0014d dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xfed96708 edac_mc_find EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfee2993b filp_open +EXPORT_SYMBOL vmlinux 0xfee2f416 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xfeeb480f md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xfef4e06e proto_unregister EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff06ed72 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xff01f5d6 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xff06c150 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xff0f271c phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff23851c simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff2c7f66 tcp_connect -EXPORT_SYMBOL vmlinux 0xff3528cd sockfd_lookup +EXPORT_SYMBOL vmlinux 0xff3bf7b0 input_register_device EXPORT_SYMBOL vmlinux 0xff41a709 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xff59bec7 tty_port_put +EXPORT_SYMBOL vmlinux 0xff433d7c copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xff528f69 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xff5c6c13 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0xff651524 max8998_update_reg EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff697674 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xff69d48b iget_failed +EXPORT_SYMBOL vmlinux 0xff7859f0 fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg -EXPORT_SYMBOL vmlinux 0xff7f55cc inet_ioctl -EXPORT_SYMBOL vmlinux 0xff82b872 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0xff87122e netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff88e189 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xff896a21 i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xff9c18ce fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xffb51aff vfs_parse_monolithic_sep EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffd3b5b8 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xffd94162 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xffddabb1 amba_driver_register -EXPORT_SYMBOL vmlinux 0xffdf8302 mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xffe564d0 uart_get_divisor -EXPORT_SYMBOL vmlinux 0xffeab683 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xffcf5624 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xffd8ad00 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xffdb8ddd seq_lseek +EXPORT_SYMBOL vmlinux 0xffe2a40b __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xffeddf87 fb_validate_mode EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff41b94 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xfffc612b devm_mfd_add_devices -EXPORT_SYMBOL_GPL crypto/af_alg 0x0f534346 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x112b3b77 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x26a02899 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x0c19df13 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x1f2b7a68 af_alg_count_tsgl EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x4b7e7ccf af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x55555caa af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x5aabede8 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x3051b14d af_alg_alloc_areq EXPORT_SYMBOL_GPL crypto/af_alg 0x634264a9 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x72d7f2c5 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x8fc0f71e af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xa83e95ba af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xd4790731 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xe74643fe af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xec4841d9 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xf366e341 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xfda90bdd af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x74f3218c af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x79c72615 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x985ab536 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x9da38b5c af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xba16d0da af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xc20c1efe af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb5dcfca af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xe9ff2296 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xf3c5907c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xf4aacb50 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xf903ad9d af_alg_unregister_type EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt +EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a8f90e6 aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/aria_generic 0xf487deb6 aria_set_key -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x0ecb2cfb async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd8e90c4a async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xeb6609ca async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6492c8fa async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xcfcafb7f async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x06c337c3 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x24c5954b __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x39e8e085 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x584bb07a async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x037778cf async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x27927c75 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc8c219dc async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xdba7f997 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xf0149ff8 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x62cb0fcf async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xf04956c1 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6f01cd8b async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xfb0ba42a async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x267fc8eb __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4620b3c2 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x682ee11f async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe748ccc6 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x22b51b9b async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6014f0ec async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc3ab352d async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe22ec410 async_xor_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x450ebf38 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd7895bb5 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa3789322 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x4d148053 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x16dc3a23 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xb534901e cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x03e8c835 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x151e6724 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x1a6a5578 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x28e52cd6 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x4e630b1e cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x66738ab1 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x70912540 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x88ed49be cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x9fbb4361 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb1d3f37c cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb2510316 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xc2e7209d cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xfd801b01 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x07a3994a crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3105d51f crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x39be67a1 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4902fa3f crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4e165c7c crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x79f948eb crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7f2e72f2 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x869f49e8 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9d5f6526 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb96d1bf6 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc7c5e7bd crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd3534263 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe33f15ff crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe76c26ac crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf1639e3a crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x0ec0d725 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1c1b6dfa cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x275379e0 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x330278d2 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x50be643e cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x77f68046 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xb17c9950 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb90e9b6c cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc0f76ec2 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd0fa41ed cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe1080370 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf147fa65 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf33aeffa cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x04395721 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1e68a4a1 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2321f74e crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3d74e8d5 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x51a9cf43 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5bae1bb6 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5e9b51cc crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5f3dfb80 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6b48f39e crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7204b3d7 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x746e52b4 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaaa06b55 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb32810ae crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xde363dc1 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfba91802 crypto_finalize_kpp_request EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key EXPORT_SYMBOL_GPL crypto/polyval-generic 0x1936413e polyval_mul_non4k EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x5d19f2fc serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xde2b4a7b serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm2_generic 0x71296268 sm2_compute_z_digest +EXPORT_SYMBOL_GPL crypto/sm2_generic 0x029771f8 sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL crypto/twofish_common 0x05b219d3 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x260ae173 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0cc6a0f0 synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x128c20bf spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0c32c1ef spk_synth_is_alive_restart EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1ef6ab37 synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x21cdc0aa spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x26298606 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2f8a8d39 spk_do_catch_up_unicode -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x33ecd639 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1ee0a11d spk_var_store EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4657d242 spk_ttyio_release EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4d170091 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x74f2b99c synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x50c21540 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x54a7ad0f spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5b7c165c synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6315c60c synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6b760d6e synth_current EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7e61e199 spk_do_catch_up_unicode EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8d9655f2 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8db8d74c spk_do_catch_up EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x91eb1f93 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9529ebb2 spk_ttyio_synth_immediate EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc13a7662 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc29cd929 spk_do_catch_up EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc58f6e50 spk_get_var_header -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd0b56587 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xcb197c18 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd3dc90cb spk_synth_is_alive_nop EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd93829dd speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe120e00f spk_synth_flush EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf2f1d044 spk_var_show -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x121da723 acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x23bf8a3d __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe5e7eab3 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x01e8b94d acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x0583f133 __acpi_nvdimm_notify EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x466af2b5 __acpi_nfit_notify EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xb34b3daa acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xde3d5456 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xfc04ea4f acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc898de90 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd4af1b62 acpi_nfit_init EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x1f9f9b2b pata_parport_register_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x9a15c5f0 pata_parport_unregister_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xe326a6b8 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x69c4a488 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x06f2d218 pata_parport_register_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x79bdd358 pata_parport_unregister_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x52e9d5c6 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xffe02abf sis_info133_for_sata EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc @@ -12390,155 +12391,155 @@ 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/auxdisplay/line-display 0x3a0c0347 linedisp_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x7892e33d linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x277fe533 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x27a2fc23 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xd54db21b regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xb6799d41 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x2ad28739 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xc9d91388 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x04b413f4 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x985434d7 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x81db8347 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xa999ff71 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x3fb9699b __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xb9d4e4a7 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x320a308d __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x56493e30 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x10b32866 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1161d9eb __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5e64d36c __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xc2198709 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x0cee5252 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x4bfd4f20 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d091b17 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x10587882 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1e7625c4 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2a02059f bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x32827fa8 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34338e4d bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x41cef7e0 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x42aeaf26 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5db39c9a bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5e48dd98 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68949f93 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ff6ba50 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x82f1588e bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91c2afa9 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa8be187e bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba54a853 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8bb6bb4 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd05fb39c __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe4a74ae4 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8844363 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef5437bf bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf3459910 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8d529db bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfee5b5c2 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1f928643 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x22371f9f btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x27ac758c btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x466dc3fa btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x99bfd38f btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa5e13a8c btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf4e2b2bf btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xff03bd70 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x11d9dbf1 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x25eaefd2 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3576b098 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x425c78b7 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x53410533 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5657f8f6 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x66a443da btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6dcf6724 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85b52f6a btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9394f8f9 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xac78902f btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb4df383a btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc51ce1f2 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce19e094 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe031a1b1 btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeafd9b63 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xebc70d05 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x365d4408 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6046e4df btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x62393cff btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x718adf7a btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x893c7c93 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x991a902c btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaf5492b5 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf191051 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xea632ac9 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf032d723 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf3bdd5b3 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x0e86c46f btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x704ce47f btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xdd0ab940 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x40d2fbc1 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x48e5e8b4 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x76cd81c5 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd894f2e6 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xecc46fd0 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1f2870f7 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8e6845af btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa52ebac9 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x80f9accc linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xab290fc6 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x51f1a51a __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7c414a42 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xd34e730d regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xf98caa11 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x5f990c7c __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xc89d9631 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3c62d007 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3ed15a0d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x51c3b426 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xf33a5643 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x37592e5a __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xf02458c8 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xb0dc9c70 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xc7a9d6e5 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x55bd0f31 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xdf6c4007 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf7fbd6c5 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfec4c624 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xecaf4d1e __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xf1a2a9ba __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x011d43a8 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09387ef2 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1445fe99 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x14847fdc bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x186561a0 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1df83834 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2947279a bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ee5ba3c bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3f10d07a bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x58cd8f61 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c476cd0 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x745c27e9 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x888b2aa3 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9712846b bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2538698 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa361d5de bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xae63ff95 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb2bf4176 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7b9f6ed bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xba5bddc7 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbd4b7178 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe49b158c bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf7f0c6b4 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb8c6cf0 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x171adbfa btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1bb717cb btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2b01d75f btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5dfcb302 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x84ce27e3 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8d75736b btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb2fecea6 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd1fb35cd btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0a3961b2 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0defb261 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1ccc5e69 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x34cfc024 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6053a5d1 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x899be031 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x89bdc4d7 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8d857410 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9a345785 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa40addb7 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa95670b5 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xae569a59 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbd1b91ac btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdad8ae15 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe62325b3 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xef251cd6 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf47f3951 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x24202d9b btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2cfb03f7 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x39a15604 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x756d805a btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x912a8857 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9cc72a27 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa51a7fa3 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa4dedb8 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd74a20fd btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdafec314 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf622ef9e btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x1fb7ed3b btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x32870a1c btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x8609c3ed btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbbb4efa8 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbcec9d89 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe1b54a84 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe8eefd8d qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfd514d66 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x3064d8b4 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4f227b7a btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6e93ffa0 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x75ea979f btrtl_setup_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xba7adf5c btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xce92044a btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xef45bfd2 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x16d20236 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3ae6a13e h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x70131785 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x76d04510 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0454c23f mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0ea1a237 mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5ebabdad mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6ff1dbb4 mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x95b34285 mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xad0dda01 __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb90de943 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xcf59abdb mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x01c7578d mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x03fb0ae0 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x107feabe mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x16aa824b mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x25c75bf5 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x29c45299 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x30025e55 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4dd957b6 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4ed9623b mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x53af2635 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7a1cfe36 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b661dd6 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7bb4d622 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x90437cae mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x999ce83e mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa30dc470 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa1a6fa4 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb354a310 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbb6008d0 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbf02b75f mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc62ebc4c mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcd04ba20 mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd7d94edd mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd820e0bb mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdfbaf387 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe776889a mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe90d7635 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xeb771dd2 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xedeb5a1d mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf9f05cfe mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x6ac52154 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x939c4fb8 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x99193c59 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xf98112cb moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x02a5f1e2 __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xf510e9ed sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x37b715b6 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xa6991d9e meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xba7667f2 meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x18daef66 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd9ae85a2 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfc9432b3 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x455449c4 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7aa21f4a hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb7f7d356 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe372b759 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x03042fe7 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x84863a2e mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x97514cdb mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xaa05543e mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xafc36c46 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xbbd41987 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xca71ef86 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xd6f382f1 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09f309e5 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0b6c65ad mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0e4d5bfd mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1b4da7c0 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1e3147ac mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2667c27e mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x29760edf mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2e96b4a2 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x322bc5db mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x489692da mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x526d661f mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x535f51ce mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6ebca370 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x70b1bc8f mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7f6e5f96 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8b0546e7 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8f6d53e6 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9882a70b mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa8745dcf mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa9266073 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaed3f7f9 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb5c97e38 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc3cb6645 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcca58c96 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcff31ca6 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe800c67e mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xedd08b06 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xef256621 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf69883e1 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfb2f1c64 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x54cda2f8 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x893562b7 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x979ff295 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xe29fd0e4 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x89bde7d0 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xc7359c04 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x1eaca4fd meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x780eb48b meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x805ced37 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x041aea56 meson_sclk_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e7eb9a clk_alpha_pll_stromer_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0509a95c clk_fabia_pll_configure @@ -12546,9 +12547,8 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed3d921 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1a04017a clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0f202d3d devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1b28da5e clk_trion_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp @@ -12557,66 +12557,68 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3080e1de qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x31193885 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x33b4ddf4 qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x35261f7e clk_alpha_pll_regs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x37dafc55 clk_rivian_evo_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfdf146 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4d0129d7 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5f18e967 clk_stromer_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6045867d clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x643fd964 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6610661f clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x686ba092 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68c45b89 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b8e2aa0 clk_pll_configure_sr EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6d308251 clk_alpha_pll_fixed_lucid_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x70156ec0 clk_alpha_pll_postdiv_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x784f0655 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x793d7cb5 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x82afa55e clk_regmap_phy_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x84de1c98 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x88c0add9 clk_rcg_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e4c395e clk_edp_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9123fa67 clk_zonda_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x93bc2a64 clk_ops_hfpll EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c464a3 clk_rcg2_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x95117477 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x953b97b7 clk_alpha_pll_postdiv_lucid_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9821a599 clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9befe3a8 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c401604 clk_rcg_esc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa0755dc3 clk_alpha_pll_fixed_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa95ed447 clk_rcg2_shared_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaea28295 clk_rcg_bypass2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf105ec4 clk_branch2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3d93f1b clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb83509b8 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8d0697b clk_lucid_evo_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbb2b9610 clk_agera_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbdb9e159 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0126fe0 clk_pll_sr2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0d2ecb0 clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc84bacf3 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc9cb9fbf clk_alpha_pll_zonda_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb2d25f8 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd12e0cb0 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ec30a3 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd414cffc qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd98fe91b clk_alpha_pll_fixed_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4a8dbf9 clk_disable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5d0aba5 qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe8c0478b clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xece7aea3 devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeec69605 clk_rcg2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf2522383 clk_alpha_pll_rivian_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf3bf69c3 clk_pixel_ops @@ -12624,102 +12626,119 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfafc1469 clk_branch2_aon_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfbd6578d clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfde3de53 qcom_find_src_index -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x014e2f31 sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x038c62df sprd_mux_helper_get_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x07c7ee84 sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x512f8a07 sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x53d46ab3 sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x649d3c2a sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x80a158f2 sprd_pll_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8475a3d0 sprd_div_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x864856cb sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8cf1925b sprd_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8da63521 sprd_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9f3d7c50 sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf5c81975 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x093a8538 comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0b9a9eaa __comedi_request_region +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x11804dfa sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2f8d864e sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x47966d7b sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5773ccf5 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6c0a271d sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x769c63f3 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x94c9a341 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa9df23bb sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb0c12df1 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb1821541 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf3a7ef12 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf8bb44f1 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfb23de99 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03387ada comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x052506f3 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0b2eeabb comedi_buf_read_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0dbdd82d comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x163a64a2 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x19db5f03 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f45cc91 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1faee9d0 comedi_bytes_per_scan_cmd EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26ea654b comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2923cb3d comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x23b56e4c comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x28c19987 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2a6f6489 comedi_nsamples_left EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x37375f4d comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x380308ce comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e395cd7 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x411254cb comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x321c4e55 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x33a73a8e comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x37b30d6e comedi_set_spriv_auto_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fcedd57 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4e2ed172 comedi_alloc_subdevices EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x541402c0 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x568392aa comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x59aeef81 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x59fd122b comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b5a8839 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x679641af comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x757a1f17 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7607b779 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b9c3418 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x51a6a1b7 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x58f05f14 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5aeade39 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x78a7dfa6 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x78d4eda3 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7a0b6648 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fd4046f comedi_handle_events EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x86de9a8f comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x89fae0c3 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x97ca39df comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9a34458a comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa7187f25 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa8968fdf comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xace3e60a comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb061c630 comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb33f83d2 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb56710de comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8497421e comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x87b1372b comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8af98677 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x957c43d5 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9bad4c64 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9eb55d43 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xabb6f607 comedi_dio_insn_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbab2e3a5 comedi_dev_get_from_minor EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc13a564e comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcdeaf58e comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xced87d79 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd4f52f46 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd5da6fa3 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc1a78ac0 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc4920e2c comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd0c9e8cf comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd5810219 comedi_alloc_devpriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdfa19b4e comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeb5bc210 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0cc02be2 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3236fbbd comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3a39f9f7 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4c613a36 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x60ed1f19 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9e5b37e4 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xac9c7514 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xef3aa52f comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3736ec31 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x46ce621f comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5c99b94c comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7cc7c3a9 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa69ebe87 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf7e994e9 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe846ec69 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xedaab218 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf728675e __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x29de7653 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4ea00e97 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x518d5631 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x61724951 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6625037d comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x98c3421d comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9e9468a6 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd8dc0582 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x313cbefb comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x365d3944 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3ccd1c96 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc2f08cce comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcf331946 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd0e9754c comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x5d9141c0 addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x86571d4f addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xb988620c amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x9ceb5d89 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xf5d6aff2 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xf69bad58 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x22012cb8 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x32247424 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x445df832 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6b8ad478 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x73572bf1 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x87f37a31 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x892c42c3 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8eab327d mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa5c8e5cf mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd0548ddc mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdb5673c3 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdff67ca1 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe9298d52 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xecb48a3a mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf118d363 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfda94e4a mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x67adeedc amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x6c46315e amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x9d7d49e4 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2973f63e comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x29b06ca1 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x469befdd comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4855787a comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x536b1b44 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8f9b6cf5 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8ff319b1 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x98542119 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb660c531 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbfbe426a comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdb16af53 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdf9b2a45 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf533d271 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa452ddea subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xc9b079a2 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xedf37d46 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x09ccb144 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x038eabf8 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x08f7501d mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x096c4125 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2c0bc4f8 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2d4cdee0 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2e07e1ab mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x313ae6a0 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3e038fa4 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5a57cdb4 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x62adc7c7 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x745d00ed mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8afaecdf mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x94ebdf60 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xaf54b4f8 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf0209128 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf9383520 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x6ce22828 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xb3eb4342 labpc_common_detach EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12730,323 +12749,323 @@ EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1a851c4e ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1bf0ecc4 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1cf7d689 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1d30a39d ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2013e950 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x274427e8 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x45d6767a ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x499ddda6 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5263364a ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6081df93 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7dd3e7e2 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8ca73552 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb365f258 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb9e45c47 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe11b461f ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf1372f92 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3d6c9ce9 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x72671567 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xbbc6efd8 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xbe61ad06 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd3469c63 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdaccbaac ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0f84bc20 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2392c8f9 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2693aef6 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5eeada1e comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x794e0c6a comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe46153d5 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xff3d53e4 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0079f0c3 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2c320e62 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x431c0621 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4d319edc ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x58251af4 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x65e14082 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6c7ac321 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x79739e4f ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7d28747c ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x894bdc40 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x95285d71 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb4efb89f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xccfc94af ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd984e300 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe3499f18 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf1bcb3b2 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x05af2d05 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x17267f21 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x173b982f ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x299f4f33 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2e00a638 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdfb08841 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x05a0f71c comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x15de46f9 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5020c147 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x5d6d77a5 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x671b5082 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb04ef498 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb91e3205 comedi_dio_bitfield2 EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x940fb0ad ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x03e095b6 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0d613b86 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x10797a2f hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1231f549 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1299f990 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x15a5b99d hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x246d70bd hisi_qm_mb -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2851b6c8 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x417737e6 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4323c23b hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x48cab84a hisi_qm_get_hw_info -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4c2a34ad hisi_qm_wait_mb_ready -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x58f77807 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x69c0dcfc hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x77241990 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x789c120f hisi_qm_acc_diff_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7b933e52 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7dd5a021 hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7ef04b6f hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8182d718 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x81a84e85 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x85278997 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8e17ecb4 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8f36dce1 hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9227126f hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x980c2090 hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb419173d hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb7060b0a hisi_qm_regs_debugfs_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb9153ab4 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xba954b79 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc5b13c29 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc6560ab5 hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcc4251b6 hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe131098a hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe2ef2900 hisi_qm_regs_debugfs_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe6a643c3 hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeb4e6d53 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf0868da2 hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf1e52d68 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf80cc679 hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfa9e8b4b hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x401f9710 hisi_hpre_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x6cca7a40 hisi_sec_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x1a15bdee hisi_zip_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0298b9ac adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x03738c5e adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x048c46ce adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x09dd33cb adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0b0a557c adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x15357167 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x165e2e21 adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2027daec adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x23cb466d adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x262d1261 adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x26c1a313 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x66aa7846 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1498184c hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1d8e8978 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2a348736 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2b79ae9b hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x314be050 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3dc96df7 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x40b2d64b hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x430e1a2e hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x46d3ee97 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x471dda1e hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x498f6508 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4becbfb5 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4d18591c hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4f8644fa hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5624cea7 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5726cd9d hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6c28982f hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x76d8a1ee hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7a04136d hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x81cf39f9 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8252f9b4 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8537e881 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8c359fde hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x90eadd69 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x910a00c0 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x97230f18 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9cfe5859 hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9e3e0214 hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xaf19d68f hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb4996047 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbbc0a74e hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbf05c494 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbfc13c86 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc4fe2b3f hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd1228341 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd5110f5e hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd66c4e97 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd8649ed5 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xda011466 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe79372c3 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf6524ca8 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x5ef2b518 hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x415f2cc7 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0xf6c5dd7c hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0a29b662 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0e26dd9c adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1548134e adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x15737115 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x197000c6 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1dda2be1 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x206214b0 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x206bda14 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x233aa1ff adf_dbgfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x28006447 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x28de9e67 adf_enable_vf2pf_comms EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2c6c468c adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2d54a95b adf_dbgfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3b350e7a adf_dev_down -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3b8d6876 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3cf3e11a adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3d615f2c adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3dd59b2b adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2c289692 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2cf31653 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x306687b3 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x33d40d5b adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x369c1a8a adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3cc36240 adf_gen4_handle_pm_interrupt EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3fa47f47 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3fddb2c9 adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x41a2c092 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x493d31b8 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4cb751b3 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4f4439a8 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5187dfdf adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5a249a1a adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x62281ca2 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x69adeb76 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x73f2d94b adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7944b8aa adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7e20d17b adf_dev_up -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7ebf96a2 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x81e052c7 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x82352642 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x84689a2f adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9461171b adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x99c2122b adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9cf14731 adf_dev_restart -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9d70985f adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9db52fe3 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9e9ced6d adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9fa0b1e4 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xacc471e9 adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaf2d93e2 adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb441f0ba adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb4d9ba56 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb5b435cd adf_dbgfs_exit -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb5bd041d adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb6468b10 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbe7f36b5 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x404c8647 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x44e9d772 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x46cae156 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4a8ff8bd adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4be0c2e7 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4c5ea39e adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4e476d52 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4ec24661 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4fc0d6a2 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5c051d7d adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x64282a73 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6ae4916b adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7137182c adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x71e69ccf adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7369789e adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x77399979 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x83e16215 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x844cbbb6 adf_dbgfs_exit +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x86f9641e adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x880a3662 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x91cb6a2e adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x964c004f adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9850e5bf adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa7568009 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xad1a8df5 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb247cdce adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb258045f adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb6541672 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb90d1fe6 adf_cfg_dev_add EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc72af615 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc669736a adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc25ff2c adf_disable_pf2vf_interrupts EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd5adebd7 adf_gen2_dev_config EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd9ffafc0 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xda435582 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdd1512de adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe2b4b692 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdbbbe307 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe18c818e adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe1b27a82 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe304d8da adf_gen2_cfg_iov_thds EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeaace194 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeb7e21c3 adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfd287cfc adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf3216451 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf55f6e02 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfa9b685e adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfc36a8b8 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfcede099 adf_dev_restart +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x30c76413 otx_cpt_eng_grp_has_eng_type EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x9999fa63 otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x35b085b0 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa1803c24 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x072226be dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x58407e29 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7d6f2fcf idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7ddbb32a do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xacd2a7ef dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb3f4b690 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc2422390 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf1c87b9d idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf68a706b dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x0138f6e4 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x215a1cdd dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3b0e6b0e dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x49b047db dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x57fc2014 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x64135fa6 dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x788efcdf dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb4d2eea4 dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc7717cb7 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd9778f95 dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0d0215c7 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x23ac4d50 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x475c14ea fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x489b2fc4 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x63661115 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x78095285 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7b298765 fsl_edma_prep_memcpy -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7d18eb5d fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x83ed07f0 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x87c8a158 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92528fc3 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc314ed6e fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd177e052 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd7cff9fa fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe43a007f fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfb000227 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfce42247 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x4372a396 hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xa3a74345 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x0907b56e dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xcfb95187 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x11b46b86 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4a170c9a dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6973217d idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xad30821e do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xba939361 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbaaf7498 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc00fcb91 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd6b220c6 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe713dfdd do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x12bbe8fa dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x20e2e4e8 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4a911b9b dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x52de22ff dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x587e762f dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6a6551ca dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x9946bde6 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb9cd9d99 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc1cc899b dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xdd1608cf dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1ddb78d5 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x280b1f9b fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2ded0616 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x34477819 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x43c70664 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x45a7b711 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x45f913fc fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x499fd403 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x49b7e8b4 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5e940a0f fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x674cb46f fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6d74cb2a fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7708f8c9 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7f3ceb95 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9e3bb49b fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa7fa1407 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd5a5f0f2 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb02f2928 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xc25f3bd8 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x4d7dc83d fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xd8fd3b9c fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xcd60c56d __fw_send_request EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xfc2a060c __fw_send_request -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x0485d67f ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x46a0a01b ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x64c7cd36 ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x87923bd6 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8bf4e1be ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x88e76648 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x1639802f mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x344563e8 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xb6452e4e ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc66826ed ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xcc078e70 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xf89e9fa5 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x6dfd2113 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0xc1e1fb4e mtk_adsp_ipc_send EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x5dfd01ac stratix10_svc_request_channel_byname EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xa7ed2f69 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x03cbd413 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0556458d dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0e36ba67 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x15806291 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1aff11cd dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1be0aefa dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1c4a50ba dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x346a6202 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x51fe03a0 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57b88e44 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ea36bd8 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x782b96e9 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x799fa298 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x82483211 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x88331fe6 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x944372db __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa4208fa0 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb8dbe386 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc29b8eac dfh_find_param -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc4f89222 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe40bb254 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe673faa9 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xecdfe343 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf1b520e7 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xe88f9e98 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xee45c867 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x12c0abd0 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x174d201a dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1b3ab1d5 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2fec2101 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x364fd213 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3d1ff076 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4f1b1abb dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6238611a dfh_find_param +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x63d77d5a dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x79c0d7df dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7c333d54 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x90773bc0 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x920e07db dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x93621080 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x955185ee dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa205c4ad dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa71c662c dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa84e4deb dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa92cc50d dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab1518b7 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd2d33e6 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe32c4dca dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe422631a dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf9d50822 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x05f5ae9e fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0a9bc1a4 fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1f4d7096 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x16ad3a5d of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1b3391b1 fpga_bridge_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2e2b2aaf fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8818c9bd fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x93603265 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x983a66b6 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbc566fc2 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd3ba1113 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe6209701 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x01d1f233 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e303db6 fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3ea04761 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x58cfc9ba fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5ba9818d fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5fc5001d of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x69e61849 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x857dd25c devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8a501b23 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x933c903e fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xae80033d devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcf84bb60 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd27e37b7 fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x340f1067 fpga_region_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4031261e fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4dc78616 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6956a61c fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xeb2b3fe3 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x08346ff0 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x126a4b4d fsi_device_write +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x388ed15d fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x56bcf539 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7379923c fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa1500c60 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc7739c34 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf4b0abc1 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0b6b24c6 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2defc922 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3e519966 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x46768f8d fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x65c87296 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6c39a192 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8e1056ef fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x99384391 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdc4edbb7 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe1ee248c devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe633993a fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xea110d08 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf712fdd1 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4a08b25a fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5846acb9 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6890c8cb fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x861e7582 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb96a6e53 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x08de6836 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x10c85b54 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x11ebde9a fsi_master_rescan EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x56d1f82c fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4e9fd7fb fsi_device_write EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x642169c0 fsi_driver_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x824fca90 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x95489c72 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9fdaf0de fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9556d60a fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcb503878 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xccd07ddf fsi_driver_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf5654fbe fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf57f1f0d fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf7a3b0af fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfab7b96e fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xd278c153 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x341095f0 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x98411a09 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x637a305d gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x642e6292 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8ca62628 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8cf59a6f gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe3299558 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3341a52f gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x572ccf75 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x70b7bf7d gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xab0b0001 gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb8bf331a gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xef69311c fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf9145722 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xa6185c23 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x88c513f0 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x8ced0d2d sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x18e36361 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x405eaf35 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x79d0abef gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa323e3c3 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb98e93bb gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x01054cf0 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6599512f gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x73a3212c gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb27c83f5 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd4ac66b2 gnss_serial_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x3a96ae88 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x8282b00b __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x11effa94 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x74fefd60 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xda17c629 __max730x_remove EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xabcc2162 gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xdebf5041 gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0df7e32d analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1ab9b59e analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xba7bff0b devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2d9c9bf7 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3710448c analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3bcd9672 analogix_dp_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4cc824c6 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbd05c2c5 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc5977433 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd819751d analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xed609d4c analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xef0926f5 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x0a3547a3 ldb_remove_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x41109cde ldb_bridge_mode_set_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x568eef1c ldb_bridge_atomic_check_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x5d3e9a88 ldb_init_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x634e1768 ldb_add_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x737bd496 ldb_bridge_disable_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xabae8d6f ldb_bridge_enable_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xbe164802 ldb_channel_is_split_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xc3d4ce6a ldb_find_next_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xde6e3d30 ldb_channel_is_single_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xf7c0c838 ldb_bridge_attach_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x88d95898 samsung_dsim_pm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xa7d811c2 samsung_dsim_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xee8f0a2e samsung_dsim_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xafe5bc80 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd1ae00fc analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd3774595 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfb108d6e analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfc086497 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x08c3c1fd ldb_bridge_disable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x1ef92de9 ldb_bridge_atomic_check_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x230b4c04 ldb_bridge_mode_set_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x4250373a ldb_bridge_attach_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x4411e40d ldb_bridge_enable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x53a946f7 ldb_find_next_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x75e41a5c ldb_add_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x81c1be9b ldb_channel_is_single_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x94b542f9 ldb_remove_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xc4371293 ldb_channel_is_split_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xfc443e8c ldb_init_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xea4c67f2 samsung_dsim_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xea5a6fc9 samsung_dsim_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xf198dd55 samsung_dsim_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status @@ -13055,18 +13074,18 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x46e7962e dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x57455550 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x624bfe21 dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xaab7a6f7 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xa662407a dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce8e7f36 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd32faf88 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable @@ -13075,573 +13094,575 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xa02b5a0f dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xd188f640 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xe6ec5772 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x08972069 devm_of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x26dff41e of_dp_aux_depopulate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x61f7a0a6 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x80c82d36 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x95cd4ec9 of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x00719ba1 drm_of_get_dsi_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x018494bf drm_of_get_data_lanes_count_ep -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1300f36d drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x13b4c428 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x15a84265 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x26648f7b drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b103be7 drm_of_get_data_lanes_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4f485ec9 drm_of_lvds_get_data_mapping -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x608f0866 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x630d7166 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x63fb31f2 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xc573220d dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xfe414bd2 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x70b2b53e drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x1b874574 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x20505480 devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x2ade4456 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x864cdf90 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xf165ff38 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01c55226 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x09e16040 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x119c3214 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x122f3fd9 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1f823adb drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1fc14616 drm_of_get_dsi_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2d39265a drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2dfe0c45 drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x43c7738c accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x48552195 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e879c97 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x62e4d1c9 drm_of_find_panel_or_bridge EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7bf321d3 accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7d2f3133 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x821a6786 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x83275ce2 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8c4446fa drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa8cbf009 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaaea3cea drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x688a4e2c drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6ab017c6 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7dee396a drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99c68924 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0f469a6 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa670d0fb drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa9146d0 drmm_kstrdup EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcf0f45cd of_get_drm_panel_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd065c8a6 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdffb4055 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe1845496 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf205aa92 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xae345f22 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd0b4962f of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe6c4dff0 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfc6061aa drm_of_lvds_get_dual_link_pixel_order EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x38f051d2 drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x53644fb5 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7ea1a527 drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x80f98980 drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x83053eb1 drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x9f75e2cc drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa1c88bae drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb23bca9e drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb49fdfa8 drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc130624c drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc64e1edc drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xdc0835ef drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x116df601 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x50e94c40 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6102c3df drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa6a78b86 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb3669d0e drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc95f4460 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd2d6eb7c drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xfe08a344 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x0c347f12 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x115884dd drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x28369bff drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x47d165fc drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x63acbd79 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7734d49e drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd64e065c drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf0735173 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/dcss/imx-dcss 0xb0843603 dcss_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0225aeae drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x20360a36 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x24dd6bd6 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x2874d56c drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x61de2d7b drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x659d291e drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7116b9d9 drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x907e9a38 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb2bf3815 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc6331c5a drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xde91d153 drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xedaf83cd drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x366b419c drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x42eb9904 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4a672a6e drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6b60e644 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7542ea25 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x89b2968e drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x921ac4c7 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf899bbd6 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2540f739 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7e00bf6b drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8cc33218 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa7d3a711 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xba5b47f6 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc5af1826 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xcc63d3f7 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf93c865a drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/dcss/imx-dcss 0xcc7a6590 dcss_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x254ab5d7 meson_vclk_vic_supported_freq EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6ea0109f meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x795a7bcd meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6224dbf1 meson_venc_hdmi_mode_set EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb290eadc meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xc5685713 meson_venc_mipi_dsi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xdcbe89da meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x4de56ff5 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xa3e0eb50 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0x8d4f133a panfrost_pm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xed4672ea pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x00015993 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x140d0756 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x1cfbfef7 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x1e815fe8 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x2f75da4e rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x799ece49 rcar_lvds_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x9e6668bf rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xc20308bb rcar_lvds_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x598d2666 rcar_mipi_dsi_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0xba7e886a rcar_mipi_dsi_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x174981de vop2_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x5a4cc32c rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x69545745 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xb2e5f88a meson_venc_mipi_dsi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xcc57e93f meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xd130bf80 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xd1f47fb4 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xe2447023 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0x9dbc680e panfrost_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x3403d8b4 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x1f6f1684 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x9669eba6 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xa797969f rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xdbb20066 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x58c3e36c rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x5a12ef7f rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x8d8af933 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xff0a283a rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0xb1f97c17 rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0xdc3f1002 rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x245e4ef5 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x614f6d79 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7d869928 vop_component_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x395919f6 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x5d7c4491 ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x660e2612 ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x0ce50838 host1x_memory_context_put -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x3c3e9455 host1x_memory_context_get -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x7b438154 host1x_memory_context_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0711988f gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1034c0b1 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1112debf __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x126491a5 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x93b9d8ba ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xf6538cac ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x893fe1ed host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xa765fd79 host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xb992f22b host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0c620d34 gb_connection_create_flags EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1520241f gb_connection_disable_rx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x17dc536c gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1a7a05bf __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x251e4060 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26d8c1b7 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x27781d55 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a44d1c6 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ecfb785 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x231f7541 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x24bf6cf5 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x273cd497 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d710f7a gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2df663a5 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f85649e __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3052cb3c gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x318d9238 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31d1400c gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36607062 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4512bd5f gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49bff67f gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x61aff119 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x676e2f6b gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3184669b gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32574214 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x352a8796 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4a8f3b67 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e40f454 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x528de444 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x546f23b9 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57426253 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x57c8c9be __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58780cbc gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0c7743 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5e7099b9 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5f4c7983 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6077bf18 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68cbacad gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6e63d688 gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6fa01fda __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x793a13e1 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e4523d0 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7613c7ef greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f21d46b __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8170fa3e gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8235346b gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8460e251 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x889f33dd greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x842fd418 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x857dd0e1 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x861755de gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86e89b01 gb_connection_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8e142ccb gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x91fa57f6 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98eb9200 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f108700 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3d42962 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb65aa3b3 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb97803ad gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90065010 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x931929fe gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x966aa73e gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2e249b3 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa394bf28 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5ecfca9 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb432a6bd gb_connection_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf2c07db __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfcbd842 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc2635001 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc31e5281 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc52f6458 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc2561006 gb_connection_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca574fcc __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb5fa452 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd680a63 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcf311e7a gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcf43ee72 gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd33373a8 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4f15cf0 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd937bea9 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe124c3bc gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe3e2dd29 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe61125bb gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xea114b65 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xefe95261 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf357c63d __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf473b84e gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9ff9220 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05fd93d8 hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a85813f hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b0ba89c hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ed33b17 hid_hw_close +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfe67162a gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0185d7dd hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04080a88 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f2bc307 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f6a77fa hid_hw_stop EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x19ff5c76 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x281ac787 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bbc917c hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d9ed316 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f2fb83e hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x308033a3 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x343bd5f1 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a569ca6 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4275cd6e hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5001f65a hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x55804797 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x584ded3d hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x60031024 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x61a3862f hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c742bd6 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f4fb1c5 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x70967d2c hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x77e2a75e hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ace0444 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d2703bb hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82b595a1 hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8591c414 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cc32ff6 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x243bdb57 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24a4839d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2df4e899 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x393dbe93 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f8cc6da hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42d04b35 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42d24521 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43eb8323 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d8907d1 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f0a372b hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51c8cfbc hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x566561a1 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58bbb79d hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a07cfc9 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x607f5306 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6597544c hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7b8edffd hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c6871b5 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f6e1ccb hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x858d56d3 hid_hw_request EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bdca8a0 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c74f695 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f45c9bb hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x95c4c084 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x98defa07 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x99af5871 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa07077b2 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5fd9d10 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa629971d hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa69683d7 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa7564cf hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2e78e0d __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7462953 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb92be0b4 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbaf52deb hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc31feae6 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc51abb80 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd55566d5 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd840fb03 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xec50259d hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0ebb394 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf86c48b1 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9175fbf5 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x91dd2af2 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9334431e hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ad6c420 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa06a823b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa47c3336 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa73d4590 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa8e81e9 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaad11120 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xadc9ac4e hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf23ab9e hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0f010c6 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb15c3bc7 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb193eb32 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb73f62ef hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe7d4a9d __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1bf7d3f hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc317d383 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc95d00c7 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd89f2139 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4ef09e7 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7149fc5 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7d38f29 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec946908 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed1b750c hidinput_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc8596c0 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd53fff7 hid_add_device EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xb234edc6 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x068d02eb roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1612a70a roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x538471b0 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x81222a44 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x881026c7 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x92be0b06 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x11c0ad0c sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x28eaf6d2 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x39d78645 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4a73c5a4 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6ec398e0 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x70c8d734 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb934e4e2 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc33249e3 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf44c5883 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x2eea1b89 vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xf57c2b3c vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x185a9e3a i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9b856c20 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xdeab9f48 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xef5e97e3 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x3223771b surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x5322dc88 surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x92f3385a surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x03bf17dd hid_is_usb -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5b2b3029 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1c2a6e69 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x259117e3 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x36aecbe4 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46637686 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46f27692 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x63a95962 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2ead784a roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x420c2531 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7ee23622 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdb4d255b roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf73983b5 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf77f188e roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2c02d31e sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x328457fc sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x36cb3546 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4e9be3ad sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x524792cc sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xca4f308d sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd481a416 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe83166eb hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfe314c4a sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x500e057b vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x84c2125a vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x2ce7d009 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x2d857600 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x82403411 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x99b1f9ba i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x198d3e02 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xaaf40007 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd043141d surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4438eb30 hid_is_usb +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7ed053b7 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0ee9b7ef hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x259dd811 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x44ef2c72 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x461aaac0 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ca85aee hsi_unregister_controller EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5dc909e0 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x63b1b3c3 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x76249644 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x89187621 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94725ee0 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x96b0bef1 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c4d90c0 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb15b12f6 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb1b110d3 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbe54ce50 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc78157ff hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca0db03d hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd30bb750 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x10d0283d __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x135cf144 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2dafdc04 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x53507270 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x629bf80b hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x65d5f6f0 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a278b91 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7aeb7596 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x864a3740 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb3f713df hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb75d3446 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3160132 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeb9efe6f hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed0a8e72 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xedb7a925 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0d79bd1 hsi_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x00667a1d vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x07a65f0c vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x07f0ae20 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x09bd4524 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x16425994 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1ac3c700 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1c82c40f vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1e284ee4 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2ed4b1f7 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2fcc8669 vmbus_set_sc_create_callback EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x389608a6 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3d5ffb3d hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4276aea5 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x42f14a26 vmbus_sendpacket_mpb_desc EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x494cb85a vmbus_disconnect_ring EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4f60c7f2 vmbus_sendpacket_mpb_desc EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x548521b1 hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6440e37b vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6547af57 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6aaaf496 vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74299733 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x831d0436 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x898c5658 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x921dead8 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9bef7baa vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9c812eb6 __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa118dc2a vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6e4ec63 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb5129073 vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb5171ec6 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb869e69c vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbdf7fbb8 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc20a0d56 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc37de9d1 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe4321f26 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe46860ca vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe57ad0fd vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xed7806d9 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf48fc1c3 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc03f922c adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5cf5937e vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x68613777 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6c01ab5f vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x765e7cb7 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7f5a2280 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8a6844b4 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6e0ca2d vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb4765251 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcd57d129 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcf86d298 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdd7275fb vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe6df51ae vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeb3e544a vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf2dca9c3 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf3001552 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfbe75eb4 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xffb8d507 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5660971e adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x110e52ce nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x35493bf7 nct6775_show_alarm -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x70cf501f nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x84531d28 nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x940cd98c nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xcb05fc60 nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1f043690 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x561a6230 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x609b9ff7 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x85fdd049 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xab177d1c intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc8f13654 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xda0fb4df intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe68f256d intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf7d0d967 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x20a1cf09 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xbed84107 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf5366164 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x00f2385d stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0502f9ab stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1ae43a18 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3565d076 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb7783404 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2f2dcad to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xeda9c087 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf8f68346 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfd7e49b8 stm_register_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x7be2122b i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0038989f i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x67d92440 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xea6485a1 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xedb7d1be i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x82c54bd4 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x919715a7 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbe8d9b0b i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xdc9c8030 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1064f986 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x148d72c9 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2274bc31 i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x25046890 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2f78e771 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x32e9980f i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3e345e62 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3e60b3cf i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x44e4e62b i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74cbd190 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x03c2fa6b nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x1edfc2cf nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x926c754e nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x96f7341c nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xa58df2eb nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xddb72c4d nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0b1cb34f intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x13b74ddf intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5dccd971 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x61253cc4 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8a6c98be intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x973b7105 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9ea4b383 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa7f37d86 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc5507c93 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x218f920a intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7c4ca71e intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x8ddd3ee7 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x138c4699 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x23f45c06 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x23fd03c1 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2d6c5a9b stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4d041af9 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7a6c5862 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8ec6464d stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa898ffa4 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc5b0dc7a stm_data_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xd84b3c8b i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x1530ac63 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5ddd4afa i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x91670a35 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa010b15b i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x00c7dbd9 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x029399fc i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x763fdc2e i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd83b134c i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0d9dd8f1 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0fe2a534 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2979ed9f i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x30351fd4 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x48089ebd i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5412371b i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6309a394 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64a2ca2d i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x65a67bd4 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6841c00b i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74b73888 i3c_device_do_priv_xfers EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x84b4b5ba i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8e056f3b i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8e922984 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x92f659e3 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa48e1742 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xac98d3b9 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xad23d29c i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xad286440 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc44cd6fa i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcb4e81ca i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdad92128 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe16ef36a i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe3c7814e i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xede9e4a5 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf82a0fcb i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x0ff70125 dw_i3c_common_remove -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x452b811b dw_i3c_common_probe -EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x4fa973b1 stm32_dfsdm_release_buff_cb -EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0xe97420ae stm32_dfsdm_get_buff_cb +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7a362352 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7aa7af15 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7ac2d98c i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9b0934af i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaaaf33d4 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb2b37052 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb4cb68dd i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb4f84d6d i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe0a46118 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xee8b4036 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf663092d i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf6c0c6c3 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf7b89f58 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfb6275e7 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x06dc137b dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x925c04a9 dw_i3c_common_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x51480d4d stm32_dfsdm_release_buff_cb +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0xc95351ee stm32_dfsdm_get_buff_cb EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-core 0xa81a1502 stm32_dfsdm_stop_dfsdm EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-core 0xb2f7302a stm32_dfsdm_start_dfsdm -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x06ccd6a4 iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x0756f6a7 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x034d31a4 iio_channel_cb_get_iio_dev 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 0x66611497 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 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf1f9a79c iio_channel_cb_get_channels -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x028f738c iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0f652272 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x269082af iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x35d9d44d iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x46414fe3 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4b5bb94b iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6790a90b iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x69574cfd iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc8edc241 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd36f82e8 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe520da68 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfbb6f9e9 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xdecec3a4 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc59d32db iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x16ed3be6 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3ff0c381 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x43f5eb88 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4664b81e iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x54af4a89 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6fd1111e iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x78fb223f iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8fae57dd iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb298dac6 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcdfab03c iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe48873ca iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xec5e0e81 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xca8cea9b devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x003dce29 devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf8a07ac iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd5e8899a devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x808e92d1 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x61fcffb3 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x03767f0c cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1236227a cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2defc72c cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5534fe52 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x58e7051b cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8451a9c4 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xfe2267cd iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x861d3751 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x671ce722 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1dcea4de cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x20ad9236 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4ceddfd7 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x60244ae4 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x636cbf74 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7f3a2e54 cros_ec_sensors_ext_info EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9fa720e5 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc5067640 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcb98b837 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xdfba3204 cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf6b18e51 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5b2ead0b bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6ee3ec6e bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x9cfc2c8f bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x60ad3ff2 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09488bec iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d222e8e iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1116d622 iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x133c4a6e iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d81bd16 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2057b962 iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x211f5549 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x240314d3 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26cbb5fd iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc6d6855f cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0249ba1 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf8d76c1f cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfea0857b cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfeb828b3 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe4de9b3c bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe8913d74 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf2e82cf4 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x2a0429f1 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x074f5a35 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x081f0283 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b5906df iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f57925e __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x128a6ec0 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x138ce7fc iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15717ab5 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17adcb44 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1bba1c28 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d1ee10b iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ebd0c66 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x265e5617 iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fa45eec iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32b233f3 devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x385e00de iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c02746b iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3cbc17d7 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ff1329c iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x431f2b65 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4618afb1 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ca03674 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f9a542 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ccafff6 iio_validate_own_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32e3992e iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x333aa4be iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x347e9556 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x355fed66 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35c14297 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x394a71c6 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dbc722e iio_map_array_unregister EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x502f7951 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5adacfd4 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f9c9d48 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f9fb81d iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6186aa88 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x651ada79 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68465ef2 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69c0211b iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a832fbd iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6cf46017 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6d0206c0 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71ddcdb0 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72d0b7d6 devm_iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74c121fe iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7bd802b4 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7f7af3bd iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x805c059e iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e0e202a devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92e5751d iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9325b908 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9bfc2660 iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f03af81 iio_device_claim_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8f6dc46 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa360ca9 iio_device_release_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf9780c9 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8db9f43 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc64d03b4 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7579d10 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9becd2b fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb57f253 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbaf6552 iio_validate_own_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd2caeb51 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2ed67d7 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9f45b97 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3d98ee7 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6992e83 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf69c133a iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58838f27 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6be73dbd iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6d8e2ae5 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70381264 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x743e9987 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74716e55 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x774062b9 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a62575d iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ab1041c devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7be7d1b0 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c6be7f9 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8fda5a61 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x901d8fd0 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95be1837 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9695009f iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0cc773b iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa82a3f63 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb17f4563 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb234857a devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4e731fa devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb662373e iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8737709 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb4f528c iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc14d8b2e iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8e7109a fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbc4def6 __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3809b76 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd3dfa312 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde7dcbbd devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe439c206 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe470e3e5 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe4b8cb46 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9cce972 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4c99770 iio_convert_raw_to_processed EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2d1260f8 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3e9ab8a8 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x44d32e02 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x82a67530 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x961763b3 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x96722176 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa18f5cf6 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbad83b30 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbc9d5e11 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcc236471 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd58173fd rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xda4d40cd rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xec72dfee input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x0b45fc36 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x640eab4d adxl34x_pm -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7e75b2ea adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x14ad58e3 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2358d873 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x297c90cc rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x37c281bd rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3c1183d3 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x49b89cbf rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b064ef9 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6947b795 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8466129a rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa5ce822e rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc771046b rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc891a229 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x6d2db277 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6c599835 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x81a67af9 adxl34x_pm +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xc02e1ba1 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x092029a9 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1f31aa62 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3ec4facf __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x420335a8 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x43e61d9a rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7c60cf3e rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9c4f3213 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb162c9ec rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbd798e12 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe3ece58c rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe8fc2fe7 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf6334303 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xffe5a7c7 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x0727d9f7 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xaade062d cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe959082f cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x740f53b3 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x883b8701 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x5b3895f3 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x9c110463 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x52a2069d tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6557a1b8 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x891bc6bb tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb1c55b29 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5a6a8e70 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6036916c wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x715cb63b wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa4bda182 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa5ebcb5a wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xac9c91f2 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb1228ca8 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc508e5b9 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd4842749 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd978bec9 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe128fd15 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe4e61d2e wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x00a4a50d icc_clk_register -EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x637b77ab icc_clk_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xb33dccd1 imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xf7e76f93 imx_icc_register +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0e9c9310 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x31590726 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x40f7bba8 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4ca32d0c __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x614f6387 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x833a1415 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9bec0918 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc32cfebf rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc6050e11 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdc45f6c4 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdcf4c5cb rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe16555f9 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xff35dcb2 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x023ba0f1 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcaff197d cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xeb4d5f2a cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3e388916 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xeb9877af cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x9bf01c39 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa0ef8ca0 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x01c5aeb4 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1093d9c7 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4b9620b3 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x898421ed tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x04f9901b wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x073a127b wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x10b2a83f wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3847e904 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3ce9ecf1 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7cb48465 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x94be4de7 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa5380783 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xae24a6da wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcb9012e5 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcdc91012 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd62e0fbf wm9705_codec +EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0xae75ecae icc_clk_register +EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0xe779b369 icc_clk_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x4896a1d6 imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xe0d5e7cc imx_icc_unregister EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x7a5fb3dc of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x52c1aa56 of_bcm_voter_get EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x936a7e97 qcom_icc_bcm_voter_add -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x20a35df3 qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4c07b6cf qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x895fcfc0 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xab40f9de qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd1220051 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xf6cac09a qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3f0ca226 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x70d8cc4f qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x9e47dfa6 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xc7436fae qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd6fbf1db qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xf3d07117 qcom_icc_aggregate EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x20bca0b1 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x21eeafcd ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2dd0978f ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7baeb370 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8e60841e ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa09b9035 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xade0678a ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb6514ec5 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcdbb8fbf ipack_driver_register -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1133490f led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x26437e80 devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6cf180e9 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6e28b092 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7c322651 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa2dfbf34 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc208094b led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc915fbd0 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x07761477 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5f16d432 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc77fe50a devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xcf7edbb7 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd9bf893d led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0612b982 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x262294c0 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x453717e6 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x67e4ac54 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6964055f lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x73835b73 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x75061b7c lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x767ce310 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x87192096 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd9c776f7 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x20d37f26 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2455aa4c ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2c293cb6 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4387b54e ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x639af707 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x82dea236 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x93661c7e ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc8222333 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe7c1943c ipack_device_init +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0468a929 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x04938ae7 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x12399ba8 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x80f5e54a led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x896fe1a5 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xae75ace3 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb7d0be8f devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc7aa2ec8 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x37ba8b3f devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x53f4d8fb devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x557a0310 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x95bacf98 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xced8759a led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0ae023d6 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x28571e4c lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x961152a1 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x96b07445 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa2a78d83 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa7887b56 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb19fc9a1 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc0e3ddff lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd7820e41 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xde1ab448 lp55xx_read EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get 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/md/bcache/bcache 0x03fc5a44 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04b25810 __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05058957 __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x063306f1 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0dfa838f __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy @@ -13651,118 +13672,115 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e4bd799 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x362eda19 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37808fd7 __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37b31e4f __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a3eb678 __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3feb7def __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x41130343 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44bb87a3 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x45b3a87f __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47b2af54 __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48b8700b __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b80cfaa __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b96c8a0 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4fc832fd __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51513c82 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x544a62d4 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e2d09d6 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f9386a1 __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6119e203 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6380c66e __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6223e48c __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6529655b __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x65adefb6 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66232cfe __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e7df078 __tracepoint_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71a90620 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79c436e9 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81d4d2d1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x864bf911 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87ab169d __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b652e82 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b9fa1d8 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8bba9251 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f71a41e __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f7308be __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92cce496 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c8c39b __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98761cb5 __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99c9c2f9 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09a6b09 __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5a5c7ac __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa366f1dc __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaacd2565 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4c410a1 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb588f66b __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbba47d1b __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc3c90a9e __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4cc724b __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbaf0414f __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbf40b63 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc121f1c2 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc27e9d09 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc53ec031 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd3f6755e __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6e41843 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd714f8c5 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7824450 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd89ca726 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8aa1746 __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f63855 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdac84f45 __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd1455a7 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe147e0d8 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe38d7ce3 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5e53e86 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea3a1ab2 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec3327c6 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf021519f __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1b4f8b9 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf2db5b7f __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfaba20e1 __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc0a0b57 __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd5d057b __tracepoint_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfed8327b __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x05689bf0 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0658ec50 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x18dcf648 dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a43244e dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a9f7219 dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5f4187dd dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x34054d9f dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5cbe4cee 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 0x6b866fc1 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6a30d771 dm_cell_error EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x83d31382 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x84ece5c3 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8bba8469 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9b9fcb7a dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9e97bb90 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8994825e dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93121a66 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9437a745 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa4adbb59 dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xafc7679f dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xafd15285 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 0xc61b2931 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc2035468 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc3a17768 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca0158a5 dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc0271b0 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd4397f8c dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xce81d94c dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcf28183b dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcf4e1a7a dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd4883635 dm_cell_unlock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfaa7f4e8 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda9c51e8 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfbe845f7 dm_cell_put_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x656100cc dm_bufio_client_reset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6b4558ab dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6cdb2d56 dm_bufio_prefetch EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d83826d dm_bufio_get_block_size @@ -13770,6 +13788,7 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x91f00abc dm_bufio_set_minimum_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xab4d6947 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async @@ -13789,33 +13808,33 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4becb830 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x50b3c64c dm_cache_policy_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6056ec2d dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x62b0ab06 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65eea825 btracker_nr_writebacks_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf318bc1 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc0953264 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x423840ff dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdca19e32 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x1becff5e dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x446d7824 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 0x1cbd0cfd dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x32a5a422 dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 0x3ea7277e dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x64321bd3 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x72c0824a dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x77c44b13 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 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7e891a45 dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x86ce387f dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb27f6701 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb63a4ab9 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 0xc32672dc dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcdbeb7d1 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 0xf92b8a3d dm_rh_get_region_size EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight @@ -13843,7 +13862,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40720a25 dm_bitset_set_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x418204e4 dm_array_set_value -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46479a4b dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46c56110 dm_bitset_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f2c653e dm_btree_insert_notify @@ -13855,6 +13873,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5b04d3fe dm_bitset_clear_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x67c6c5b9 dm_array_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x68f34c27 dm_array_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6b4bb029 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bfa88c8 dm_bitset_cursor_begin EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c600395 dm_btree_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6fac2256 dm_array_get_value @@ -13894,75 +13913,75 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xedf5036f dm_bitset_flush EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x036f6fb0 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x06e7df13 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1a30bc0d cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1a437f31 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x269c2240 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x321d6cfd cec_pin_changed -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x34165491 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37ae840c cec_pin_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3b8530ac cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3c71c31b cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x401f12e0 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4e225301 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x563263f0 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6cb1e150 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6d812ae2 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9a55cb8b cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9d90566b cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x191355c2 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3284da32 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x35d051d2 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3d7c8379 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3e619804 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x57668b1c cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5cad720a cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x60cc6fb7 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6212d12f cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7078b4f7 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x73ea72f9 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x77e8b7c4 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7cd34d9f cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7f8998e0 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x920ff459 cec_delete_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xae3bdff2 cec_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc4303a91 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc94ce2bf cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd1fddbbe cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd8895d35 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf8415bc7 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdd261729 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe5b9df54 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe744c085 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xefc9be57 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf12d8932 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf930f8a4 cec_unregister_adapter EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x266733b0 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2ecc08ba saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x565e7626 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5bb87f3e saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5bcfb975 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8d46f8cd saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9c343c53 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xabda61d0 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xce2d6bbf saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd8b74536 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x40aa824d saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x449fadfa saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4544c78d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x62e6ff78 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x98b4c86f saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa13384a5 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xafba4f4f saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb28d70c1 saa7146_setgpio EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x17e7be93 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x62aae876 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x684406ea saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb96f564a saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd7bac495 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0223637d sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1229d9d8 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x135aeff9 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1e95a801 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe4127610 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xef4bcf63 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x25a4f03a saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3f795dc9 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x834dde2f saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb5a1b22f saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf4be5cca saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x10baa7fb sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1d9d5e92 smscore_get_device_mode EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x29107d14 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2e270937 smscore_unregister_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x40ff0b5f smscore_unregister_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x512a56cb sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5a18ee4b sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5c2d8bae smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5c742247 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4c2f5e46 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5f35b0ee sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x71f5f18e 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 0x7850daf3 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b6e4958 smscore_register_client 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 0x8ca8fbae smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa170ae93 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaa0031eb smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9b99d1ed sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa7d871e1 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaccd0ae7 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb1d97a9d smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb42f6c12 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbabd51bb smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc9b3f8cd smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcaf16b49 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf46ce45a smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf5565a2d smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeb743d21 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf9bcd0a1 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfac8e4dc smscore_set_board_id EXPORT_SYMBOL_GPL drivers/media/common/uvc 0x08c5db3e uvc_format_by_guid EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text @@ -13981,527 +14000,527 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x053934d1 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x03d883ff vb2_request_buffer_cnt EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x12fbf7a5 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c317bb5 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x221d56b8 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2780c579 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2a91b129 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2ec54b89 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x33886b9f vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e8c70d5 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21f8b782 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x264bb679 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2e7d326d vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2e9c73e9 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2ff3e28d vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c22713a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x42037feb __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3daa0701 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x41fbab76 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48885ba8 vb2_plane_cookie EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50a1bb4a __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x555ecef1 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x564653a0 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7005309b vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x71a448f6 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ad12bd3 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7e923f72 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x54c71897 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5845cf1b vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5c740d76 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x63fb8e9d __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x66a11999 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7217216b vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x751aa18c vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7c5ce891 vb2_request_object_is_buffer EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ee32286 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f309ede vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8211ca29 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ab83f57 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9d59a9da __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9fb5dfb2 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa134f555 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb2821e19 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fc1a4e4 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x86550154 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x88ebac78 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91c3de9e vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9ca8c579 vb2_core_reqbufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc1afe612 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9eea6fe vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcdc9e1f1 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd1fc0b1d vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe06e4fe3 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf26c1e30 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce2afee7 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2decf7e vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf08bfeb3 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf8607d7c vb2_core_prepare_buf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf97a7c84 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfb1a16a4 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xffc21ff6 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x095ac768 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf2f506bd vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x70640feb vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xae8c69e3 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x03d08049 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x16661f76 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1f443a38 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a15ae1d vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x367950a2 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3b8c4734 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x478bdfaf vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x49cb7357 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4a35efe1 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c226179 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4f11c208 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5043c51e vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x59785c7d vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6434d11a vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x653ff28e vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6b3d4e5e vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7f6d32a7 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x89f82bfb vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a649704 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8cc10d93 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9354e8b2 vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x96b4bdb1 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa17cb3b4 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa17de763 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa1b69432 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa3ff32f0 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa7041f33 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa9bcdebc vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb8f16161 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd5ad42a vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc061b197 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcd79106c vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb95b951 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf6b798ec vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x4e7525c2 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x58bccf67 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x82f855af dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9191473e dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x78ba0db0 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x48e2bb1a ascot2e_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x4efae291 atbm8830_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0xa0cbefb9 au8522_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xb4b4ed66 bcm3510_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0xf08ada97 cx22700_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x0cebb691 cx22702_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xeb9a90f8 cx24110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x79c8168f cx24113_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xf298d8ff cx24116_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x25b8f0a1 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x307dff8e cx24120_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0xf8af8a19 cx24123_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xbd1d39ec cxd2820r_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x891d5bfb cxd2841er_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x911c7c69 cxd2841er_attach_t_c -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0xee664c5b cxd2880_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x92764f0e dib0070_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x065e15d5 dib0090_fw_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x2bb44af6 dib0090_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x29ed7881 dib3000mb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xe401c929 dib3000mc_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x5aa938d7 dib7000m_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x9fc18e6b dib7000p_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x758bb17c dib8000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0xef511b5b dib9000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x1412a687 drx39xxj_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x4e38a649 drxd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x20f04a02 drxk_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x1889dda3 ds3000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xc161533d dvb_pll_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x018c6046 ec100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x169420a0 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x4e9d0fef helene_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x4ff8bf54 helene_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0xf770d111 horus3a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x554bb65a isl6405_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x732ce9d1 isl6421_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0xb514ef71 isl6423_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x141d3f2a itd1000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x055b7e22 ix2505v_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x2c40e6f2 l64781_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x572a7793 lg2160_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xbd6724de lgdt3305_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x64fed2f5 lgdt3306a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0xe4fb4e7b lgdt330x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x34d55f59 lgs8gxx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x3aecad03 lnbh25_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x4c802b9c lnbp21_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x90a86008 lnbh24_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x20b96f7d lnbp22_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0xe4b950b8 m88ds3103_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x4cd406e1 m88rs2000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x4996d796 mb86a16_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xfe2a72a9 mb86a20s_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x8e4946cf mt312_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0xcd867d9b mt352_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x932aaa7d mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x82c84182 nxt200x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x477d7b51 nxt6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x607b315e or51132_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xc74f09f4 or51211_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0xecb24420 s5h1409_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xcab1ff4c s5h1411_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xbd1efb13 s5h1420_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xc400d290 s5h1432_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x2306cd2c s921_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x02007a1b si21xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x44285971 sp887x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xa6e10973 stb0899_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x0ea842cc stb6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0xd5646181 stb6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x5b9784b7 stv0288_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x0b804653 stv0297_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x00f51444 stv0299_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x6df8ffea stv0367cab_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xdc3a1bbd stv0367ddb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xecca0587 stv0367ter_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x15cbc06f stv0900_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xc7a2cb55 stv090x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x821ca8fe stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0xa67854ca stv6110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xf9e7d870 stv6110x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xc7d671a5 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0xe00ab21f tda10021_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xdc18b28b tda10023_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xb77caca6 tda10048_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x80ad2a91 tda10046_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xbb2035e5 tda10045_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xf8024813 tda10086_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x6158fbbc tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xb19407cc tda665x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x9f8b2ed1 tda8083_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x262eeca3 tda8261_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0xe9383659 tda826x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0xa26bcb90 ts2020_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x9c647228 tua6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x0186386c ves1820_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0xeb9549ee ves1x93_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x99a235d0 zl10036_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x011fda13 zl10039_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x9e4daaba zl10353_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x5d39ba63 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x7e9143d1 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x060658ec max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x089ebac2 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x15bd618c max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2c915ec6 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2f5838ca max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3b5e3a4e max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4d6ec554 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6e888dec max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8903e6e5 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa979d7fd max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xac5e0979 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdf9b64dc max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfe54d63e max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x03edda82 __media_pipeline_entity_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0a336386 media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d230123 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x138a3c3e media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x15628cf7 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x185cdcd2 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2000d494 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x28155169 media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x28201f61 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b5f1fbb media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x310f8470 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37c9e374 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3ce266ad media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f50597d media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40d9ba20 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x477dfa8b media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4879a268 media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a70cc13 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x529bf1af media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57f0c9b2 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65b827e5 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfa5543b9 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x99695b65 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xfc13bd82 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x1a35003c vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x0e28fbfc vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0347a8ff vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x12c09469 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2d139e75 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e22bb7d vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x35c90652 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3e19d8b6 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x49333df3 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x52011164 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x59ac6af2 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6cf3d53d vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7055fec8 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x766a1e1e vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x792e6ac5 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7c01e7cf vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8b0cb855 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9800b216 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f1d4fb0 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa403225f vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb48aac99 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4b24c25 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb98e5670 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc43bf0d vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcc118f0e vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcd57e99f vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcee30755 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd02cddfb vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe269f4f3 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe35cb4ca vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe98201dd vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec132cb4 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf5ef2883 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf9b7ec80 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb248d60 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfc591f46 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x56a833ba vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0b7d1bef dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc76df45f dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xca8b1031 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x97c392ca as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xb296b5f0 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x55d505c9 atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x12a72e63 au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x4bc33c89 bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x4de03da3 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x643a4127 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x56f077cc cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xe581390e cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x5b92e1b7 cx24116_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x98d21795 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x6bf2b19f cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x0e59874c cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0x626f6ece cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x0d912ae4 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x677841e8 cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0xb4b335c9 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0xb268eacb dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x1a23b04f dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x62822f4e dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xc5dae9b8 dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x5c7f863b dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x7f354cec dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x8a4e27c6 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0xd93b935b dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x30af630c dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x7b304a4c drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xdb55ef57 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xf562a77f drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x73d6ee20 ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x9b170596 dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xea7bef26 ec100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xdfe07789 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x3a0da72c helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xba1711b2 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x0d04dffb horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x6154e2c0 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x3272e5e7 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x5f76f1ac isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x185971f8 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0xe211b613 ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x34baf813 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x553dc68a lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xecbdbb56 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x9c06db15 lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x73224fc3 lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x0de05f64 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0xcccf0fe9 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xc6d33be7 lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xe1250661 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xbb915407 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x9de06322 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0xdf41742a m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x8c61a13e mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xc5281128 mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x786ae425 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x4a32d067 mt352_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xdf2611d5 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x10c8e55a nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x861d5320 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xf27b9586 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x46aa06a3 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x0f61cc48 s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xa21c74fd s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xbd88fe9e s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xacad5921 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x238667b0 s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x6ad18dad si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xf87e2239 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xae9fab2d stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0xb3fd38a7 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x030c3492 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xc71ad23a stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0xd9aa059f stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xfba8d4e3 stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x19cd6d15 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x293d732f stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xa80f8942 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0xeb532928 stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xdfa8c7a6 stv090x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x76a9d658 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x81be65ec stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xfdd548a5 stv6110x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x2f5e0655 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x714cb44f tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x4f8dc040 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xf356e04a tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x96321c6f tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xadbf031b tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x1f488022 tda10086_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa6050018 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x52a0091f tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x22e1c9e5 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x3dd9bfd5 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x093ca37d tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x77f926ed ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x21310843 tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x604dcf7a ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0xd0972a6f ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x9b859330 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xe997ade3 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0xa15dcb4c zl10353_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x591ef302 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x63e67090 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0954adbc max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x41fa0939 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4444cfa7 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x52b101aa max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x63403c74 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x761d0aa9 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7a06152e max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbea1e3d9 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc2f5d6f3 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe2938c1e max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe99b6631 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xed5c5a97 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf3cf58b6 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x03781c7c __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x058f9f9a media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0862a72c media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ec8a17c __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x168c24f8 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x17baf92a media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1d5b7c7a __media_pipeline_pad_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1f471773 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20eda72d media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29b287d3 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b4acc02 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31ce86cd media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x32aeec8f media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x363709b1 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3735c2e4 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x395ad16c media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x399704c5 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d2c9ee8 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4245e83e __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45f561c8 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x46aa5e48 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4d9ecc46 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x538664c6 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x54eac70b media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62e93ca5 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x631aae8f __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64f99292 media_request_get_by_fd EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65dd67e0 media_pipeline_entity_iter_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x72a2b6df media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x741724af media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x744d7bfb media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7452a0cd media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76286e16 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77413a79 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ac3e79d media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e81919b media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x913b4828 media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9202f802 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x962c2e0c __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x97d455b9 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ca562a0 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d798a6b media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaaae95ce __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb00d9d98 media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0acc3c6 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1c51b4a media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb3dcfef4 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6ff0b1f media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba347c40 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfa402c3 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3c32081 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc6cb1175 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd1b5694c media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd23be771 media_pipeline_entity_iter_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdbe7e7c3 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdda92188 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67ca070d media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67f426c4 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67f90f30 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c0db36d __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c4939c1 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6fd4b60e media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b5bb4ec __media_pipeline_entity_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x981e7729 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a61d38f __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d53cb6a media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3bf342a media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabf5fa8d media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2585fe3 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb6381009 media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba6e4fe2 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbfa7400d media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc625eb65 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcc1ee6f1 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf6abdaa media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd2743296 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd459c03f media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd490f772 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb25d875 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0075ce6 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0935f34 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1cc7ab6 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5766861 media_create_ancillary_link EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7f9b177 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefc39ef4 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf24f5d03 __media_pipeline_pad_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf525ae07 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf74ba129 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf77fb444 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7e994f2 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8c45d3d media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x7c7247fa dst_attach -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x2eed4b91 dst_ca_attach -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xb44e042f cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xc3fbe8d6 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0d069c42 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14818eae mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d93608c mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x416e34c5 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x42d29e41 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x46dd63b9 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4addc9c2 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4d6e9ebe mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4ed2343a mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8731ee0c mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x990eda55 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa33925bc mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa99f5980 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1045248 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcb157d04 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xce0049ab mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeadda145 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf6887edc mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfb4f7dbb mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x09f328d9 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3132dd59 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x461b5cda saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x468c43f4 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4fddb3b2 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x53271ca5 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x540d393f saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5759b73d saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x703ea03d saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7efb41f1 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8bf76b28 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x95f6f2d3 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5c58774 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa88ca14a saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc5ef931f saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc870f717 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4981241 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe997542a saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe9c47333 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3090b858 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5cdbb3ed ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6765022c ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x76032940 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb33b628 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeba80269 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff14c0ec media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xa13d355e dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x59d4c891 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x4d165e69 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x7a483657 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19bf3163 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2ae95ca4 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2fdffcbd mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x307c9d2e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x351e222b mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x357b920e mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6779bfae mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7106f625 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x73e9dd2e mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x790e61c9 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7db86138 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9020e8e3 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9d412365 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa89c1816 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb05a8103 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd24d9546 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe3f34dd5 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe68c3e32 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8fcc210 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x061fd9ae saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x34a87060 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4c53926b saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5aece95a saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8335fbc9 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ecfe9e6 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x99b65c90 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x99f70bbe saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9d1b5081 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa59acc0a saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xae9c53a5 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb3bb9513 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf752ddb saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd26e7a53 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeccbb474 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf19d5d35 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf288b40b saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf70b347a saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf71ae66c saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0eff453a ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x140ca774 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x23d17137 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 0x8dada699 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa1100ce9 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc85c79db ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x006b2663 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x01994488 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x193f78e7 nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x3906f217 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4805af79 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x6c2fe231 nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x74428f7c nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x834692de nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x939ae44a nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa1dc9732 nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xbb4e15fd nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc99a0bf7 nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xce8fb582 nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd18cd0bf nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x4b5caf0e mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7b81ad5b mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7c7d51da mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xdb6ea976 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xf4dcb1d3 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x10e2f502 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x2165482d vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x38fa2d72 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x60d93083 vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xbefcf48e vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xc6c757ec vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xcb9340c6 vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xdb12dce0 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0e4c4e34 venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0ee12574 hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0fab849c venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x12c332fa venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x19028707 venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1d685e8a hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1d6d8057 venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21cec9c9 venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x234c288c venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8221306d ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x88275bb6 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x92f770b1 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbf7f644d ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x05b8b32b nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1af6c2cd nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2604f5d5 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2824c005 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2f34ca2e nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x313204b4 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x6b806194 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x79ef20e9 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9a29b2fa nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9f9603d7 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xad25ea9a nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xca335c8b nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd7901be6 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfc5a7928 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x20085531 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x4193fd1f mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x4ba16d0f mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xce0194a8 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xf9fd4dce mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x148d7222 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x2e20de1e vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x3a2c1362 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x5478ac3a vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x68169a13 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x6f3c73e9 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xceb984dc vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xf774d89f vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07ffffe8 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0e1b8568 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x19eb58ff venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1b25158e venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1b7eae60 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x273b3665 venus_helper_unregister_bufs EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2c856155 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2c8931f4 venus_helper_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x316d064d venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x31f08bac venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3ca578b1 venus_helper_change_dpb_owner -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x41b36206 venus_helper_vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4737a738 hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4c982402 venus_helper_check_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x51b61617 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x56a48951 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5a215eb8 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5af7d36e venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x60261cde venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6713069b venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6cd933a8 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x70c60f58 venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7273a317 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7317a27e venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x75cee7c4 venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x78844b5b venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x867cee37 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x871eafd1 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89a023f2 venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8acecf19 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8d225a90 venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9bb4b5cd venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9e0108ae hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa684c234 hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa9a3e63d venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaa00d013 hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaac491bc venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xabca4510 venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb031528d venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb1cec1ed venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2f3810d9 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x306bab3d venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x35b323d9 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3f726005 hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4f0661a5 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x51c00915 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x58ad1306 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5b7004f9 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5dfa83b1 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x61f78f91 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x634b9d4b venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6f4a0803 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7563e679 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x78ba33b7 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7d6804d8 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7e070e80 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8417acec venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x84d1a977 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x87caa9ad venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x92d240a8 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x94690a86 venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x95ca1f20 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9c77711d venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9d8e7e70 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9dd9d2da venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa8b403d0 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb1720e41 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb4f48ac1 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb53d8b12 hfi_session_unload_res EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5da1da9 venus_helper_get_framesz_raw -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb6c8a684 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbaefc9be venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb707bf1 hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc3a57168 venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcd76f23e venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb48723f venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc3291653 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc7e81f30 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xce452d98 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcef72856 hfi_session_flush EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd21da2e4 venus_helper_get_framesz -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd81193c1 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe11ce74f venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe460c8c8 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe4b949d6 venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe93b3116 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf7efdecc hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf8348aa6 venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfcc59829 venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd2845496 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xddb25e4a venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe5790c9f venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe5e0d8e8 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xece63f97 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeecab21c venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf2830a01 venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf485ab43 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf6e89a10 venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf947fc4e venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfb717802 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfb9345e7 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x2e89532b rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x71503dcd rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x3d343158 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x5043233c vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x90ac2397 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xb4b739d3 vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc066f092 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc9350650 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xecb3531c vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x329bbaee xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x21f15ebf vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x2b5e1efe vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x2ca9215b vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x70251edd vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x776e902b vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x93aae962 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9fd4d349 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0f2d1cc2 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1cae4095 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x27e2a480 xvip_init_resources EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32a020d5 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3cca8af3 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8892eae9 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x978780bc xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7651c8e5 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7b800d87 xvip_clr_or_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbb42cdf0 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbc6cbbd8 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd73c05c3 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc92aff77 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd5a2ca8f xvip_of_get_format EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x0111a6fc 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 0x02194672 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9331d637 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x21368039 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6ddc06c4 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa8f192ec si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbd25c149 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe4f9ccbb si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x022600bd rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x06a7ea10 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b81235c ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x21564b1b ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xfb6fc35e xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x38b407ba radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd80f729b radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1445a095 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x96b2d3e0 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc5738c4d si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf0500325 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xf6a0e089 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03d9110e rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d53477e rc_register_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3b065b12 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cc49378 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x52669353 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5aab9577 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x673b50fb rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6b7a19ed lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7e79bacb rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90bbfbf3 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9ba92d32 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac26300f ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb66b9fe2 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x44519283 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x516f32c3 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a1794e2 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6261a96d rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x654b12d2 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6672401e ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7451e7e8 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x75e85a9c rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x849b2a34 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x91a5e049 ir_raw_event_store EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc6f86c26 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1e0aba6 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe6b80517 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcce522b3 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf90cf7a rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd1dce326 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd68336ac lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf1339ea0 ir_raw_event_set_idle EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x17dd388f fc0011_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xd18574a5 fc0012_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xaa6064f6 fc0013_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0xba446a9c max2165_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x5464681b mc44s803_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x2e992602 mt2060_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x0aaabe2a mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xf275705b microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x3305b40a mt2131_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x77cd7613 mt2266_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x1ec7b343 mxl5005s_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x59b07453 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0xdadb2517 qt1010_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa4b8fe76 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xe3539bb8 tda18218_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd10d25ff tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x47a34dbc tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x51446147 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7bf8e209 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x1544ef42 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x53218e21 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xbc19ffdf tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0582c475 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd359e424 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x6894659a simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0x516062fd xc2028_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x409746a7 xc4000_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xe840ded4 xc5000_attach +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc7e251d ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x7c272f7d fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x08694369 fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x323ade10 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0xd60723bc max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xcee0d9ce mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0xb4badc9b mt2060_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x902e0fff mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x28a89df1 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xa9264e93 mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x4027f340 mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xcb555e3e mxl5005s_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xefdd6f0a mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0xed31a044 qt1010_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x7554524d r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xc495aa9e tda18218_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x1968d7ed tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x2683d51f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x48985791 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdec3be65 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xfdcc98b2 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5491882f tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7e2c5776 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x9165085d tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xed0ab385 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x6814cf06 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0xed4737c1 xc2028_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x283acd16 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xe8d6db59 xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x065280dc cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x13ceff9c cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x163b21f0 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2751ffba cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2f6947bb cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x36d310e7 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3adc6ba5 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3d145844 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4877d1ee is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x498c94bf cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4f8604e0 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x64dbed94 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x689096d8 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d33948f cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78ff82dc cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93e3fd1f cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb36fe9e3 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb3a3a949 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf748bc5c cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf87f5943 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xc01bbdb6 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xda28d57e mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x107afe15 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2f94a9e6 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4efec249 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x55aa1d6a em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6145d87b em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6781b9dc em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6818b982 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6885b612 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6917cc7b em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x03c52e18 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04774782 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x148fab34 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b67382b cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34c1c05a cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x35ee9c0c cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x365377f8 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3afa7d10 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x40c62f2d cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x49abd32c cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d0ba798 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6d90b50c cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8a7efa76 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8f463971 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb06322ed cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbb45978d cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbcd8293e cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc6e7bcd cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd36799f8 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeb6b1625 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb0b5b01f mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xe68ca793 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x167697c4 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x18b520a5 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2fb9cf2b em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x32aae3e9 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x355fb1cf em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x36d5b68d em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4951bf49 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5134c7a6 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ae93a86 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c0020a8 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6e2b672e em28xx_set_mode EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x76686986 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7704d4cb em28xx_audio_setup EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb6294f57 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9fdc2aa em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd1656a9c em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd5914578 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd9758064 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xea79ad03 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf75c5e3c em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfe03beb4 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0e6e1f46 __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x18fde65c __v4l2_async_nf_add_fwnode -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3c37dbee __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x6cb672dc v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xfdaf7ca0 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x991c1e53 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb0593b12 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc18e938e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdb38b59f em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa2b003c em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd950933 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0b3f5beb __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0de01646 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8488e804 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcbd0d089 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd0a32ced __v4l2_async_nf_add_fwnode_remote EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -14519,20 +14538,20 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x377a2ca9 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x51082e58 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x9c3e61c3 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0a078171 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1db04b60 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3b4e4bca v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x55e9d8d6 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x572df263 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x589b389a v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa30a4f58 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa60a982d v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x099c2a6e v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x1715e8dd v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x34aa9f37 v4l2_fwnode_endpoint_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6c214a9f v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7d6c558e v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa899464c v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa8ca2aec v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb923ca3f v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x67742a31 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x67cbf5ae v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x695b958d v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x745cbf56 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x84e031c2 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcf7badbd v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf9454dca v4l2_fwnode_put_link EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists @@ -14541,53 +14560,53 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8956e3f v4l2_jpeg_parse_huffman_tables EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8f40f9e v4l2_jpeg_parse_header EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xf8ffd565 v4l2_jpeg_parse_quantization_tables -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0017fcc2 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11fb1894 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14accaa8 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1965f1b3 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1c7cb5b9 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20857133 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a2c870c v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3320504d v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37bc95d5 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4045b935 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a062f34 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a65e538 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x565a91dc v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59eb0c5b v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c3dd616 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e6c4a29 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7131173a v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x09ce7685 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x09d86d74 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0eab6f2a v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18c812d7 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a000905 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bedb187 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bf452fa v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2dbed477 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x31f65c05 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3d8dc2a8 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x46a19c68 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4778cdbd v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x480acd79 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49fd0163 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4adbd40f v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4efdc7ed v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55a69e35 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56b0e7bf v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5de772b5 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69efa1aa v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70fe1422 v4l2_m2m_ioctl_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7435124b v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7cfd423c v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8665c02f v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x892421eb v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8edee7ab v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8faad356 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a32d299 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ab798d7 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c02796e v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ce72fea v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9f17190e v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa7e298b1 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb042fa1f v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb40878bf v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x732058be v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79fc8629 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82538e2b v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b69b9f9 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e432f3a v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x984d2102 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e2eb28a v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3e703e0 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa7598e98 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacccb2a1 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0bbbf19 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb185a208 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4ff5b94 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc44f0d0b v4l2_m2m_register_media_controller EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb80d68f v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xccd4093b v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0bcb450 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1bdc66b v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1efc75e v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd35a7c97 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6538da3 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe441ae4d v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0abf167 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0f51364 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2512c1b v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd9688681 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdaccaf57 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd741ec6 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe04c47e9 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe61d3aae v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0887f61 v4l2_m2m_streamoff EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7b6ab75 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf9ef1a28 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff26edcb v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4ec44cf v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa56ce5a v4l2_m2m_ioctl_decoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled @@ -14597,364 +14616,364 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x008c750f videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x082d5d1d videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0ac9b00f videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b8a64a1 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12ac782c videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ab78e19 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1bdaf9f7 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x221da951 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x374fa4f6 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x428e5dd7 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x560809e3 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5af615b2 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e211747 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73ace1e2 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x898a447f videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa518dc3e videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xadfccd81 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3745a35 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe873af34 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2901492 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4abd2ba videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4f854cd videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf762511d videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf7a30362 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x04073125 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ec40c50 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x40908224 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50a22505 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x659bb153 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73e03003 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77453aef videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8f8bc689 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9697adb5 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d3fca88 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa09d37b8 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb29511e8 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8677e58 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9a44764 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0ce42b3 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7fafad4 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda1a01f3 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc1b7334 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdd9aa780 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xddf23670 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe6581410 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2b04124 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb209f34 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfc10b5d0 videobuf_querybuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x58a5a48f videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa8abc06f videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc7972f1a videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd9db31bf videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a666508 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c3c4bb8 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c5fdf7c v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d1e06df v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f0a49b9 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0fbe2794 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x5ecb15ef videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x68da7fdd videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6ce1f551 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xae041f97 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0315a0ec v4l2_subdev_set_routing_with_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0415ee0e __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0917204a v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a828949 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0cd3c010 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0da5fd1e v4l2_subdev_s_stream_helper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0dd68f1a video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f2b3b9a v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10959bb1 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x112909fd v4l2_spi_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c8db858 __v4l2_subdev_state_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d1214a2 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x208a1625 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2309db93 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26052925 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12db95af v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23fd0cff v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26a0493d __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2aa0c44c v4l2_subdev_set_routing EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b6856cd __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ca04457 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cda28d6 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d531316 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34badde3 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c8eee3e v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2dd50f72 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x301d24ba v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x318adf09 v4l2_subdev_disable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31c5853c v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b015736 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45c86d46 v4l2_s_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4894cd55 v4l2_subdev_state_xlate_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4bb629c8 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ec7bf92 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4eed9406 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4a8091d8 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50527023 v4l2_fh_exit EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x532d4303 v4l2_subdev_put_privacy_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x577a63eb v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f20772f v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6099bce5 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62d34970 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63355823 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x636abb57 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c8a6719 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5cabbd5e v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e182add v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x604e8b59 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61b529b6 v4l2_src_change_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65d7839c v4l2_subdev_state_get_opposite_stream_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65e93ce8 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x662e36a7 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66e5a802 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a82931b __video_device_pipeline_stop EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7077435a v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c1187a1 video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d6c33d2 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x800339ed video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x800e211c v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8180aea5 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81d50062 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x865f95fc v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x885a7b2f v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89d48243 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8ed2b760 v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x929dfbc4 v4l2_subdev_disable_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x946d4fff __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x964f9b96 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x979b14b3 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97a864fe v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d10e4ab __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72395266 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x723a82b7 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x728f7839 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73d0d44f v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x753613f1 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78fec767 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b8e1392 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d1dd42d v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d6e7b6a v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7dd8793e __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x855c71f5 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86b1a550 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x875ee693 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8986dcc4 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89c6813d v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92186c42 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x929e3639 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x959cd0c4 v4l2_ctrl_request_hdl_ctrl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa62346c7 v4l2_subdev_routing_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa85a42e6 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa12bcf43 v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa25d5419 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa88a9c4c v4l2_device_unregister EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadaeee9f video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae20e55a v4l2_subdev_put_privacy_led EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3dd8d6 __v4l2_subdev_next_active_route -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf6a914d v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb04d52d1 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xafd5559d v4l2_subdev_routing_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb48cf8aa __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5a337db v4l2_subdev_state_get_stream_compose -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb93a460f v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9abd295 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9e1a282 v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbaada547 v4l2_subdev_has_pad_interdep -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb73a3d9 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd72b6cc v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbeb9e033 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf5b369d v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc30d9cf1 v4l2_subdev_enable_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc385e7bd v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3ac4608 v4l2_subdev_get_privacy_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4ac1fc8 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6d25547 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7076e5e __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8913108 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe39fe2c v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3c8dd87 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc46744d7 v4l2_create_fwnode_links_to_pad EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc86897a7 v4l2_subdev_state_get_stream_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca61bcb7 v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd7f86c2 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xceda3fcb v4l2_subdev_set_routing_with_fmt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754c8f v4l2_subdev_routing_find_opposite_end -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9c39042 v4l2_subdev_s_stream_helper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde4574f2 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1977518 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1a54d4d v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd573429c v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd65bf72c v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9cf01c7 v4l2_subdev_has_pad_interdep EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde6e37d9 __v4l2_subdev_state_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdef3dffd __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdfc218ca v4l2_subdev_set_routing EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0b98a71 __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5ae710c v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe66f93ec v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeac2c60c __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xecbd4e5e __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6087bb2 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec3c97d4 v4l_vb2q_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed6c9ccf v4l2_subdev_state_get_stream_crop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf06ba4c4 video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0dedd95 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf248db42 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf28510b3 v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5164c82 v4l2_spi_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7c34861 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbb98780 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfbe8ff85 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xffbcdbc7 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb106ec1f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6515d03 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf739f76e __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9a072b8 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9c86bb9 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa8f3840 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff1b320c v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x46c84939 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xab136894 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd82f2c52 pm80x_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf3ea2b94 pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xfa45ad1d pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x015da1f6 wm8997_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02b2fecf cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x09b3bba9 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0aa0f19b wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x10a4309e arizona_clk32k_disable EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1949d8fa wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1b52276f wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x25a99193 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x262d74c3 wm8998_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3501187e wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x37dfa237 wm5102_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39419a43 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3c22f25a wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x45248cfd wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x499830d7 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x68d3e874 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6e3c32f1 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x794460a8 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9901f3f6 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9dcc7349 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb4cb64ea wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcaa6336a arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcf75ad11 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x394c00a8 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3994c3f5 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x40fe1ddf wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4291e3d9 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4a29fbf0 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x57235406 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5c7b2dd1 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74e7637b wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x89b43746 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8d389aa4 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xab40702b arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xabe7a21d arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xca8cf60a wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd2a4aa8d arizona_dev_init EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3fee6a6 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdf926902 cs47l24_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdfbe649b wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xef190611 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf7f3a5a6 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x03c90bcc atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xdf810280 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x48f3698a da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x665a0ef7 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8173e6cd da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9506869b da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc69771ed da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xca31a849 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcb009431 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x61cd09a9 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xfba72c79 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x48c73bcb da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x595e6c77 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6dd1f480 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9ba99a18 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb7519787 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd41ebb74 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdec19d1a da9150_bulk_write EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0b3a9fc4 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x12739c53 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1402d523 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7126551c kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9ba69086 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xaf6c7b96 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb52f18b4 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd656497f kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x26249314 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8724568b lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa07dc9ed lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0689e4d9 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1ad058ed lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2185629a lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6e49cf34 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x70c025f0 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7db203df lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa9be381b lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x65c099c0 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x975a6346 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf4b55b7a lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0e639028 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0e6e4c68 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x238cdb76 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3c0d529d kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x50d910fb kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x62237da3 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6d890424 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7d2a1835 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdb40922e kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xefffa1a5 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1245edc1 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1f202d70 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5d2e2850 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x13016149 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x43ab3eda lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4d387224 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8bea3d9a lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x917ca3e1 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xae9d8370 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xeb2f10f1 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x367fd96a lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6b624e85 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfff0d89e lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0cf6827d cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0cfb5e3d cs47l35_32bit_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x16b6e798 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x16bb3bd8 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2137fc65 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x213a2025 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x30c281bf cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c110b50 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3c1cd710 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4d568d24 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4d5b5164 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5583fa94 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x558e26d4 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6202e169 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x620f3d29 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6fd7d2e9 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7f24165c cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7f29ca1c cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x89479640 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8c14249f cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb3bacba0 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb5e7bc90 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb5ea60d0 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbd63f475 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbe27ea9b madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe0043abc madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x11d07548 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x11dda908 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x26516eb5 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x265cb2f5 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e841905 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3e89c545 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x47802682 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4fc39f71 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4fce4331 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x52e56844 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x52e8b404 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x656473b9 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6569aff9 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7bd98036 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7db10409 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7dbcd849 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fae1abe cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x850035bd cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x850de9fd cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8c8036c4 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8edae7c3 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc63528b1 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc638f4f1 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd5a3b58d madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe0b88c3b cs47l90_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf6d2a19c cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf6df7ddc cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2084d630 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29003f23 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x68efae63 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x69ba7403 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7bb5816b mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe8ec201c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0f0fa72 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2b0f423d mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4252599f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8c8be97e mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9e841c16 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb402ab23 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcc31a25e mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x03fbeaf1 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x30c3a6a4 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x32d12b6c pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3cf7a746 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4d9ec296 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6bf2511d pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x97e1d068 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9975688b pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd4a03764 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd809b72a pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf87619f pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe61d3367 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x315de2ea pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x80a63893 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1e7b6b54 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x70f0dbbb pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb254aa16 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb3db411e pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe464380e pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x293cd61d devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0116615e pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x205d0051 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x22722bc4 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2680917b pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4f9263ee pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x629c7105 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x69fb7dad pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x74310e5e pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7518482c pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x89d92f88 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x922b2efa pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbccf3509 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0a80229a pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8a48c169 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8f701e9a pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9c33ba5e pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbba3d971 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc6259edd pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xde5bc23d pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x3d4965cf devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x16ad4e55 rk8xx_resume -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x3f342f3c rk8xx_suspend -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x5e52bc52 rk8xx_probe -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xc074b95d rk8xx_shutdown -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01118e7c si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0bed942c si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1185a72d si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b0a0b6d si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c5c9b8d si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1de61fa6 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e04d353 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27b8a3cc si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2bcfbdfb si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d7ce099 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2fe942e8 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x358e2f8a si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3696a3ec si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x417b9433 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x42ef117c si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x513fcf1c si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x569ec733 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5da98c83 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60bd13b6 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64a89fca si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ffac115 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98523a7b devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa7f847a2 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa836bdad si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb74451b2 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb645982 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc2ab246 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd76a264b si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3d4b91a si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea50619d si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefcc1d64 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfcc4575c si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe63c2ed si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfee3e2c8 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x259be908 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x71d47070 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa86586d0 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa9b7653d sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe223db67 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xaaeb9ed1 sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stm32-timers 0xb5f402d5 stm32_timers_dma_burst_read -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x92c42a55 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xebf93765 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7b84610e am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x872ec8c7 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x88d78c5e am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe3fb3d88 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x4cef9d02 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x5db31b64 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x77c2f7d2 tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x9266d1c0 tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x949f2fa6 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa10f44af tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xefc341b4 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x04c8ee3e tps6594_is_volatile_reg -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x939abb49 tps6594_device_init -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0917622b alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1da8c43c alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6ff035e2 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc66cf9e1 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xccc4d9a0 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd4886c8d alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfdd296c3 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d413a35 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2f6eea91 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2fd29ba4 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x32012357 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3490a6b5 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x42d5fac3 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x511bd32a rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x56472a87 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x642ffb4d rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x69b3653f rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6c35841c rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x86a11662 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8c59a5db rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8d4d02cf rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x930aff63 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x950c215a rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa163a88a rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1f6d9f3 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa79444ab rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb5969c32 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcbb2accb rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcdbd2479 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb7d1f9c rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf57cb888 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x073398c8 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0e63f148 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x22b1edaa rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4561da62 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x45a5e490 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x47c1873c rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5c8d68a0 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7a8bc8ad rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb3025d45 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc37ffcef rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc66def00 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xec14674b rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf461d6b9 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x00f39f6f cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x106b14de cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6e50459f cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa842b739 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x14753e32 rk8xx_shutdown +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x6f9b9b68 rk8xx_resume +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x8bdca4c5 rk8xx_suspend +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xe8f0e5cc rk8xx_probe +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x076e63a9 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x08ed7d4c si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0da47bc2 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x111e1cc3 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b1d7fd9 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20f65de8 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27e1fd11 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2983dd4f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3fec8163 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d6716f7 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x51678fed si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ba66a26 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5bb3e8bd si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5db4455c si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68a9da0c si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69bcb533 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93a0f64f si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a0edf55 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ab568f8 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9abb7ffb si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cf550d8 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9c5c902 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae56244f si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb427d82f si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba7adcc7 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5c5578e si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1262354 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd6adfa43 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xda51dfc7 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4fd68d5 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6ec4674 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef83f84f si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf29a5fe3 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf4cf2f6c si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x30379624 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5ebf93b0 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6e70b775 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9ade8269 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbb9c6940 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xc5f43dea sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stm32-timers 0xe0eee7b4 stm32_timers_dma_burst_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x56378011 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xacf67036 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x30aff214 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x647f319e am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x6f33e68d am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xaca00d0a am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x1196c53a tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x716174ce tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb3992baa tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xee9a173c tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3cd05d71 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6ca21ca4 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaebb4951 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xbf0e5500 tps6594_is_volatile_reg +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xf6f258cb tps6594_device_init +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0e969c86 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3001a31f alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4bd13a75 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8d9c024d alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x929ac579 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xaea9d516 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xda100b30 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x07d02646 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1118f12c rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x17cdf2df rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1b31684b rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x251e45a1 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d7267ed rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2f1e9be0 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x32683caf rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x39a26ad6 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3f5b4d16 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6774d7dd rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6de597a1 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f0ed46c rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7cc50933 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d827aa3 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x954c1825 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x97e8fe8a rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaf1946bf rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbdb11c09 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc8d1b0fa rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdae1d7cc rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4f31043 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe782b705 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf0f31005 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x091e4dd8 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1c974c1b rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1e4023e4 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3153817f rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x330f4a97 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x47e304ba rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x661b93ae rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6f4500c4 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8a08ff5a rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa5082cc8 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xaadcccb0 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbb18f24e rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd600c892 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3afc2503 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5c02a0c3 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb5e776b7 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe72aeeef cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14968,45 +14987,46 @@ EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0ca9d783 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4712bad7 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5b340863 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa3806a7a enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc35d06ad enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe06f6c1f enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe4ae521e enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe52cdb89 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x02036036 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x11678a5b lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x14169677 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x17a7662b lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x71b161b0 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7d2d72b0 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7f69d94e lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x815acdc8 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xc8512e62 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0d7ba066 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a3b0819 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4a23a039 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5ec760e9 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbc83bd68 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc1f365f9 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xec9a7ca3 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfb9653c7 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x428c781d lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4f1527ea lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x62d55d49 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x933cb95c lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x93f86660 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x98e6ba46 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc17cf9f8 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf1eb3f03 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x2ad562a5 devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7a67653c st_register EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf1f33992 st_unregister -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x27c41e97 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x3c7c6a39 uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xedf2832b uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x3a022a36 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa22e93ab uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc5a81e01 uacce_remove EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x09268f4b vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x32e15c1a vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5d502eb5 vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x60e6617e vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb2e6cb01 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes @@ -15015,763 +15035,760 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe7563d22 vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x5881d8cf dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xc8329b1b dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd14c9559 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x4c318a41 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x5860bdaf mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x7dfb6cfa mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xda5b79ff mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x74ea42ab renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x75023c7b renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x19f82d6b sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b60bea1 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x236b4ffb __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2cbc3b8d sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x334abafe sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36382681 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x383357dc sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3df43b92 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45ae845a sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45b0ae56 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4baca30a sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x525370e1 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5d107df9 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5fdaa594 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62c68136 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x68336750 sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6965acd4 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71d2eed0 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7c8743ca sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7e626749 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x833e9df4 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8949b9cc sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8e5db737 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fd1a2ec sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c42bdb6 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f609c88 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa82912d0 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb9366dda sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc3a83b10 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4df38d2 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5f84228 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc9ae3ac4 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf37767f sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd20e8c27 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda59800b sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe493d814 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeac354bf sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed070ed8 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee10c110 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf1a5661f __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf561a51d sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfdc3aa0c sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x654bf421 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8d7db0a4 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8ff0e37f sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd892874e sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdb153d1c sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe5f9b8e3 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe6a34cd3 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xea810463 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf7ab61cd sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0a8a7edd tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1fe914eb tmio_mmc_host_runtime_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2e8bf1c6 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x4ca5ff54 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x61d0fd63 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x6e25177c dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x8c21008f mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x92f128a7 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xa3d08edd mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe2768dc2 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x41c15b79 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xadb79d94 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x00d6f9ab sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03a474f4 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d4f00ac sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x16886e2e sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ac77642 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2af829b7 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ddc2d42 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4592e092 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x467be254 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x47c573f3 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56cede10 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x660e5c1a sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x68381a0f sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x78b02460 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ef43843 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82071bf3 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x825c01b3 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89cfc030 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8b1d2332 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x918b2170 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x924a9eb0 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9446628a sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa917551d sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xac0f28e6 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1aa7616 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc4548c4 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbea0a9ba sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8aeacde sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcec9a5fb sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd048a57d sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd26d11ce sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd5307731 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd606c1e2 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd6079b21 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd8dc1a3a sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdfb28c00 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe36e5199 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7c03833 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9a77661 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed00a5bb sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee0dd5bb sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf6b71a4d sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x023a725e sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x106e273b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x11217ca2 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x238537af sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x48369624 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x62e9792c sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbb31930f sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbcef1d18 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe1fdfd22 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x30bc33a1 tmio_mmc_host_probe EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x51aeaadf tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7725fb03 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa9a40b65 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb085f0e2 tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcbeef19c tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf52e5a7e tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/most/most_core 0x17636bc0 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x57ccd1db most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6bf10e50 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6da001da most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x779ae9e1 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x79fe30a8 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x832a5ce2 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x8840f2a8 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x94fe4adc most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x971faf6d most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x99e31dc7 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd6c3fa6a most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xda6ac1ea channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf261124d most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x291740c6 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd4096550 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xeb2040b8 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x38643822 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb5cfbc74 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcb9df7a4 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5a5a9123 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x2ab80c81 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x717bd468 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd8bf964d cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x11c347cc hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x5ab5c5b4 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0735a32b mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0871f989 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0dbb5f7e mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13218a46 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x183b2928 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23f88144 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25a3b430 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26a88dd9 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x32a6d4e2 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x355762c6 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35e6722f mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c694ac4 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fd6a0e2 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x411c152d mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x47c5b08c mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x485b9e1f register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b72153c mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c50718b of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ee098d9 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x970eb47e tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9bef2052 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9c2324d3 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb0d86d23 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb1a68632 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb57717b1 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe84132eb tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfeae50ba tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/most/most_core 0x06a0a3f6 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2602c25a most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3bfdac6b most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3d2d5024 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3dcc61e7 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x510e1dfa most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x68ff35ea most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa585cb7d most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xcd3c0db0 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdc6ec671 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdd574ee6 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe77d79f4 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf01c3453 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf0733d2e most_register_interface +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1c02e8c9 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x232bcd21 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe11ccd5f cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x03967a3d cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7dc431ed cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf06fb5bb cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x92511cba cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x47c1410c cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x83cf1efe cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x90de2cc1 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x82fbc4df hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xcd27fe0b hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01e96656 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04c5ce1d __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06afa495 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1218c2e4 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14677c0c mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16e307c1 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x186862f9 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ca89d64 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fa1baef mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x263b7ba1 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a447154 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ca6dd85 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d90a0a1 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x35afb1a7 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36e3a9a6 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3732a39d mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x390cb1a7 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e50d6e8 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44d6a32c mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ef485f0 mtd_pairing_groups EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5346a8e8 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57d6b361 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ef9e983 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60016b09 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x655ce3a6 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cff6812 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x704f0b87 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72c5b642 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73d0a216 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74761cc2 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b913344 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c8eec3b unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f4e8dbd mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84d19201 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a0b3c00 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8eff0bee mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9891b4a1 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x996f1bda mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0c762cd mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0d2561f __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa4742509 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab548eba mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb20bee64 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x511463b4 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x669498a8 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6fb4030c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72fb0e5b kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ac39036 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84b981dc mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8568e9f9 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86798b09 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88f4c04c mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ef40590 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97c71323 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98ac6820 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e631114 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1311ace mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9f8648c mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac561b46 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac900438 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb4d63cf7 put_mtd_device EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc5183b7 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2313485 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc7e6e04d mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc84749e2 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcea96a27 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1131f93 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe16a87f1 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe59f54c2 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea12fa3e deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeedfe485 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7965590 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfdcb47f6 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa3f1920e register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xaa30d04c add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xded32271 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe1395494 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf47e49a5 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x053235ca nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0f84ef23 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x10292a6f nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x26a640bd nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x30c8a9b4 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3f64bb38 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4d06420d nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x636b3c54 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x641f88af mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x68f99748 mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x746579cf nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x76c35d6d nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x93afc8d0 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa486e22a nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaa8d8883 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xad951fc9 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb0423c83 nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb333bce8 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb6118a89 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc126a023 mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc3955663 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc6d26027 mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd3d015b6 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd9dccaea nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf4695b35 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4438ed26 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xa012b534 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x071b91bc brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x51703923 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xe96ef749 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x2baaabf7 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2a37137 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc33d622b __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4c9c95f mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9731508 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca23b9b6 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcad53728 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcec5c80b mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd133e568 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdca76d79 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe01b5601 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3f7df85 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xecddacab mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb600c41 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfdd096f2 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe154343 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff3ae527 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0d94753b deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa390f00a del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd500ff44 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xeb9429a0 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfb17287c add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x14f9f952 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x200125bd nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2123e80a mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x37fa8684 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x43b830e8 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x54bd7235 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x585b5702 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x60600751 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x74184454 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7b4e305a nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8061380b nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x80b9e782 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x81698b88 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8e87b8f1 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ec38404 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x97326c67 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9d2788b7 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9d6bf6c0 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa63228de nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaeec6bd3 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc8a206b8 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfa3bf4b nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe25cb4ab nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe51a377d nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfea8af60 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x39fcb5ee onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x769aea70 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x21dd6fd5 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x5f168d1e brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xfb3dfe41 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xe72c07ad denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x09becbdf nand_gpio_waitrdy EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1f975073 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x27dd4b15 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2cf294ed nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x12317ef9 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x14e6d80a nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x200757a3 nand_decode_ext_id EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2e1a17b0 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x40f5b77c nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x43700ba1 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4f025f88 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4687bf76 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x46895a44 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x514d1b71 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x53f21c94 nand_status_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x56dc9409 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5dc359d4 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5ffcc803 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x705a869b nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8616fca6 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8bc8a27f nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8ce37583 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa7bc00c1 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xabee6def nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb532ab24 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb8721a69 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x64170397 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x76e3c269 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x814282ef nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8890d435 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9de2cdd3 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa4eb2461 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb202d5c6 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb5641937 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbc45b548 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc16ef99d nand_readid_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdbf0233a nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe27c82c3 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe822c71a nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf06f2040 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa9ee7ba nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfd9e09c6 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x9b71f2a5 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xc65d5e56 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1bf09769 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2a4e2256 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x333c17c8 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd70f713e nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdc5b0b6f nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe781edc3 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe7eab3fe nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa40eb3f nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa94bce6 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xa9326753 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x5fd58c87 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2c4803a2 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x366d96cd ubi_leb_change EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3b8ed482 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x41d1f39c ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3bc28e91 ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4cc91065 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5fda6aa3 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x623990f8 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6333159b ubi_open_volume_path EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6710a52f ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6ee0e0ca ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x76c98c9b ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7d1c91eb ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x852089c4 ubi_open_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9cb4af7c ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa143e0fd ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaaca0186 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xab43180d ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8ebc80d ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc5524bd6 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x956f8744 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa514708c ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8334947 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca6bc679 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcf26411f ubi_leb_erase EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0558eccd mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x00556a84 mux_control_put EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1a2e7c2c devm_mux_state_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2459c8bd devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x28bcd6d7 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4b27a9ea mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5d1b972a mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5f88fa02 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a758a0e mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x15caaae8 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x308bdf0f mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x43f57962 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4f6ad1d3 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x513dad40 mux_control_deselect EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbd7ddbff devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc2d35c5a mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd2525468 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd5fca26e mux_control_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe16b9615 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xef220c04 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x87c41349 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8ee6628f devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9615fce1 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa28fd669 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbdd99642 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe67005cb mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf634bcd5 mux_chip_alloc EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfbf76504 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3d3370f2 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8e345690 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x293aa47a register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2d712ac4 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8d9b6ff8 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x92c9d55b unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xacf62068 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf241db98 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x49e71e97 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x71670808 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb1d13c22 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd45f5b7c alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x00418192 alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0346e3eb of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x05473460 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x09d63cf2 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0d1a1e31 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0e5541a1 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8e26ea88 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf1c7855d devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x82c107fe c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x95a68ba8 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa31dbca2 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbb8b1757 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd1b956e9 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe8ead570 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7757c34b register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9cb76bf3 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xcf2a3fe1 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeec6bd36 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x08740464 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0b353c0a can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0cb393ee can_rx_offload_get_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x14d3de22 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x14ea762e can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x312d6d06 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x32617de2 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3505788c can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4ab83208 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5d9ace9a alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x13adcd04 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x14ec45e7 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d180f8f can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x280e52ac can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d3f584b alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4436c877 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x558021c5 can_rx_offload_queue_timestamp EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x703db9e8 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x713c6359 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x731ffb16 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7410c2df register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7e5c473c can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88749fb4 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9462e02b can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9c32e4fa can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa97fad52 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xac93044b safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3d17e2a can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6cbe320 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd2da544c can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdbd31a3b free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdcf0b151 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe7e06872 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xed373055 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x64cee930 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x66d41b19 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b9f0c2e can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d2c3b7f register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x75aa0f53 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88686dfb can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8ba73ef5 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x935bc3c1 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96b40643 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b9a2080 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad126aef can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae33d4a6 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcbfc0684 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcc5f3443 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd15aa657 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd559d7bc can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdee9c94d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe0941d09 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe252cc7e can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xee484e3f unregister_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2c2684e unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf30d61b0 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2c856a6a m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2d4e4607 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x374cd6ec m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x779a6b66 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x979b684e m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd5077a46 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xda3ffc89 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xea3dc737 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x312f2b7e register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf699798a can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfb700865 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4bfc90d9 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x69210126 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7b6e97f7 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb40292d5 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb66bbec6 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xba87380f m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcb9600c8 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd19686d4 m_can_class_register EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e3d9a13 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7dfdc851 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7ff0d355 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x163203c6 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xb84af395 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x21d60dff mt7530_probe_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x74090c1c mt7530_remove_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xa7e13914 mt7530_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xc52e5ef4 mt753x_table -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x25e6a549 felix_netdev_to_port -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x478d2c0c felix_port_to_netdev -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xf1912a2b felix_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xcaca88ab rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1c81e6be rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4ed49dac rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x54791e95 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x74cf8908 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x79d4cdb8 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7c0faf56 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x805a6a56 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x90e9c763 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9d788253 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc7154bc4 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe3983677 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf9cefe9d rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x063b9638 pdsc_get_pf_struct +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x543f562a register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7913943b unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb4dc0403 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd4ff66d3 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x67e91033 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xc07ea1d4 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x2257b08f mt7530_probe_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x55fbee9f mt7530_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x77c447f3 mt753x_table +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xd6ca89cd mt7530_remove_common +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x605addeb felix_netdev_to_port +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x6f2cd54f felix_port_to_netdev +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x990d2525 felix_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xb128ce5f rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2679781e rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2ce87ec6 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x46b13137 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x47e38faf rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5c610e2d rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x61b93800 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8f77d524 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa534ba43 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc2334554 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdae6bf48 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdd1fdd02 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfbb82ca2 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x1c7d2e84 pdsc_get_pf_struct EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x45b87b4f pdsc_register_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x663c358d pds_client_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x789577b1 pds_client_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x8945027c pdsc_adminq_post +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x63dde55e pdsc_adminq_post +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xa0b1db7b pds_client_adminq_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xb386d82c pds_client_unregister EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xce714617 pdsc_unregister_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xe5ef4cb6 pds_client_adminq_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x07c95bb7 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x61fe9d94 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x00c6e404 lio_process_iq_request_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x079dc440 cn23xx_setup_octeon_vf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x080f1818 lio_enable_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0867ec60 lio_process_ordered_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0b3677a5 octeon_set_io_queues_off -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0b455f8a octeon_read_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0d6727f1 octeon_free_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0daa52a1 octeon_ring_doorbell_locked -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x104db791 octeon_droq_process_packets -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x10bdfc77 lio_setup_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xe789de2e pds_client_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x5dccfa2f arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x7b384a60 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x042081fe liquidio_get_speed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0b4b057c octeon_send_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0ddac684 octeon_unregister_droq_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0ee414f6 cn23xx_fw_loaded +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x105b4030 octeon_get_conf +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x113cbfb1 octeon_write_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x14a4dbe4 octeon_setup_instr_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x15111155 octeon_free_sc_buffer_pool EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19cb4e69 liquidio_link_ctrl_cmd_completion -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1d372379 liquidio_set_feature -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1dff0822 cn23xx_tell_vf_its_macaddr_changed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1fe3df10 octeon_alloc_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1cb03517 octeon_get_rx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1d7457ee octeon_free_sc_done_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x213ed44a octeon_setup_interrupt EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x241a2a6c lio_fetch_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2997e282 octeon_droq_check_hw_for_pkts -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2e2c2d00 cn23xx_fw_loaded -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x34efa446 octeon_free_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x37bb9e66 liquidio_change_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x37da075d octeon_deregister_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3b583327 octeon_read_device_mem64 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3f24e3c2 octeon_send_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x404f99b2 octeon_prepare_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4b79e446 octeon_mem_access_ok -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x52f40615 liquidio_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x56e53a04 octeon_register_reqtype_free_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5a8b1501 octeon_send_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5eb0d536 octeon_delete_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x604358dc cleanup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6176c27f octeon_wait_for_ddr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x632112f9 octeon_setup_output_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x24d10470 liquidio_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x25261f9a lio_pci_readq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x254ed74d octeon_delete_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x30a3c28c octeon_droq_process_packets +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x31c36d2c lio_enable_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x34f9f152 lio_pci_writeq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3962d7b2 octeon_set_io_queues_off +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3be4f0c9 octeon_wait_for_ddr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x439246fc octeon_setup_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x44f835e1 octeon_alloc_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x46fe8686 liquidio_setup_io_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4d176adc lio_get_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x508fdd4a octeon_register_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x56ddb2c8 octeon_droq_check_hw_for_pkts +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x56f70231 octeon_setup_output_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x57a3965a octeon_pci_read_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x591e909a cleanup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5965dd58 octeon_send_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5be6a667 lio_wait_for_instr_fetch +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6127eacb octeon_free_soft_command EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d0d28ef octeon_init_device_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7112ea11 octeon_setup_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x78915538 octeon_delete_instr_queue -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7cc3577c octeon_free_sc_zombie_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7ece489e octeon_pci_write_core_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7ef32539 lio_wait_for_instr_fetch -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8950aab0 liquidio_get_speed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8b683730 octeon_write_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8c5ad23b octeon_free_ioq_vector -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x921a4041 octeon_setup_interrupt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa6d03e4f setup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa893ec2c cn23xx_vf_ask_pf_to_do_flr -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xaa87c560 lio_wait_for_clean_oq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xadc2bccc octeon_alloc_soft_command_resp -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xaeb8c620 cn23xx_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb4b8f952 octeon_get_conf -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb9c038c0 octeon_free_sc_done_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbcbe90c9 octeon_register_dispatch_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbd8e7674 octeon_unregister_droq_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc1432b67 liquidio_get_fec -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc1a124ae octeon_register_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc2c94385 liquidio_setup_io_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6fc88b77 cn23xx_vf_ask_pf_to_do_flr +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x747a0ca3 octeon_register_dispatch_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x76f7b84d octeon_free_sc_zombie_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7a8669ca lio_setup_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7b1a5cd9 liquidio_get_fec +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7b2e006a octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x82cc2207 octeon_setup_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9c635069 octeon_allocate_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa15e164a octeon_prepare_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa1828cc1 octeon_read_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa5dfa59a liquidio_change_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa686e94b octeon_delete_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xac1c947b octeon_pci_write_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xacd46397 setup_cn23xx_octeon_pf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xaeedddfd octeon_mem_access_ok +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb2565715 liquidio_set_feature +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb277a160 lio_setup_cn68xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb5dfb17c lio_delete_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbb27ff55 setup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbbfe9b00 lio_process_ordered_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbc435b5e cn23xx_tell_vf_its_macaddr_changed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbd4bed82 octeon_deregister_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbec48e8e octeon_delete_instr_queue +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc10ab627 cn23xx_setup_octeon_vf_device EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6abc5b1 octeon_core_drv_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6c83c7d lio_pci_writeq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc9c5525e lio_pci_readq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcca6814a octeon_free_device_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcd43d80a octeon_setup_instr_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcf23df42 lio_setup_cn66xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd09dbf4e octnet_send_nic_data_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd36011c6 octeon_setup_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd4f3d619 octeon_init_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd695ad0b octeon_delete_droq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdbe8d4d9 setup_cn23xx_octeon_pf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdc259c63 cn23xx_octeon_pfvf_handshake -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe0f3aa63 octeon_allocate_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe2bab985 octeon_get_rx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe3a12b96 lio_setup_cn68xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe5ec1aa3 octeon_pci_read_core_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe6b34526 octeon_allocate_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xca765bde cn23xx_octeon_pfvf_handshake +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcaed14fa octeon_read_device_mem64 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd51eb8c6 octeon_get_tx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdcbd7c2c octeon_init_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xde082c59 octnet_send_nic_data_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe1b5a72e cn23xx_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe35bc1da octeon_register_reqtype_free_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe3aca871 lio_process_iq_request_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe664c5e6 octeon_delete_droq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xead6b16b octeon_free_device_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xebec4a99 octeon_allocate_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xebf4cbf9 octeon_ring_doorbell_locked EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec7f00a5 lio_get_state_string -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xed6f9136 octeon_delete_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf9fdd0cd octnet_send_nic_ctrl_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfcad57d8 lio_delete_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfd23ea13 lio_get_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfdde4c04 octeon_get_tx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x06c3ea62 enetc_xdp_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1ef2cb55 enetc_alloc_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2159949d enetc_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x27cce7b8 enetc_set_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf4ce89bc lio_wait_for_clean_oq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfbecd392 octnet_send_nic_ctrl_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfc708da5 octeon_alloc_soft_command_resp +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xff6b00ea lio_setup_cn66xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x06a82912 enetc_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0f98700b enetc_pci_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1ddd118c enetc_port_mac_rd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1fee5e02 enetc_set_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x23ca825b enetc_close EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x290512bd enetc_set_rss_key -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4e1f99b4 enetc_reset_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x5820c2c1 enetc_port_mac_wr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x5c8646f8 enetc_pci_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x64ae915e enetc_alloc_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x6cd17ec7 enetc_get_si_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x75a84b85 enetc_pci_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x7662041d enetc_setup_bpf -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x79085bad enetc_setup_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x7ada2800 enetc_init_si_rings_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x807998e1 enetc_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8e44c1a5 enetc_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8eb1b3f9 enetc_setup_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9151b562 enetc_free_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x94be82ec enetc_port_mac_rd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9cec7d6b enetc_close -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa6699973 enetc_configure_si -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb46ea4ec enetc_get_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xba9da798 enetc_teardown_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc98f22bf enetc_clear_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcc93a106 enetc_set_features -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcf0cf8ff enetc_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd34cdef9 enetc_get_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe648db20 enetc_send_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe93336bd enetc_ioctl -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf7267f5e enetc_set_fs_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf8f13b7f enetc_mm_link_state_update -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf9db5fd0 enetc_set_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfbcf244f enetc_free_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfefc8286 enetc_open -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x53e194a2 enetc_mdio_read_c45 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x877f30f2 enetc_mdio_write_c45 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x87d0c692 enetc_mdio_read_c22 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc1f3167c enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x31884b22 enetc_init_si_rings_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x435bf45c enetc_get_si_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x541338ab enetc_port_mac_wr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x5d27b8a3 enetc_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x66ad4ebd enetc_get_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x6bf69927 enetc_send_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x72d4fd2d enetc_setup_bpf +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8a06c64a enetc_configure_si +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8af9b63a enetc_set_features +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8cd4b8d2 enetc_pci_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9eaff88c enetc_ioctl +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa41e4d62 enetc_get_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xaae90466 enetc_setup_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xaea37303 enetc_open +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb82eaa02 enetc_alloc_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xbc63f21f enetc_mm_link_state_update +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc5b05de8 enetc_alloc_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc871bd17 enetc_free_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xca6cd0a4 enetc_free_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd36b1ee6 enetc_set_fs_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd5347154 enetc_teardown_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe156fb9e enetc_clear_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe1d5f76d enetc_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe23a7115 enetc_reset_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe4ae6ff7 enetc_set_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xee43ed83 enetc_setup_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfaa71457 enetc_xdp_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfcd7854f enetc_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x25e1f46f enetc_mdio_read_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x278a2182 enetc_mdio_read_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x46fbff13 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7c1827f1 enetc_mdio_write_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd4eb4efb enetc_mdio_write_c45 EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf19cca7f enetc_mdio_write_c22 EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x257057e2 fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x35cd2504 fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x405d650e fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6311d28b fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x80a6c930 fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x87acae17 fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x99bf5d5b fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb411dcda fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd8bf914b fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdb91831f fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xf6be024f fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x0dae0062 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xd4c15487 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x366448e5 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x443bd555 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x915c8f8f ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xcfd5c78f ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf89f5363 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x2c20a87a otx2_ptp_tstamp2time -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x3bec6791 otx2_ptp_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x4ee76983 otx2_ptp_clock_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x5d70c9e3 otx2_ptp_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x044453e5 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x046369fb mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08748167 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x098c2a41 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09f6e9b0 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a53a7fc mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f85a5b8 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x149408a1 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14f23793 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bd430c9 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e10eb02 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20022928 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x207d2760 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24cebb7b mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25049fca mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2620dc3d mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b36aa59 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c3afb4c mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cde38b9 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d883c2e mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30158736 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31ce484e mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3231dc43 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x330acf1c __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x333166a5 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33d5b243 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39244429 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d3ec781 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d89b35a mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x420ebdc2 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4244ad8d mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44975c6c __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x469f0609 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48525f28 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ac3152c mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50c9ddf0 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x512c375b mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5288bbc7 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x545a43e2 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55550aa3 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55566453 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b00e06 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b9a06d8 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cf1c310 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61e6bf6d mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6298133d mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6470975c mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64f4777b __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66679b6c mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6908208a mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6de783c3 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e5adfff mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9ca61a mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7014a22d mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x706c6014 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70ebabe4 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x722e934f mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7380e11b mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x745461a8 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x766dabdc mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7814aa9a mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78607e8d mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78944faa mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78e193ed mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a84a2f2 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c7eb576 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d3dcc13 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f030572 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f9e6225 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x841eccd0 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87b54c03 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x886f0856 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8983d7b7 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b2af648 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f90e29b mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9067a6f5 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x917c14ee mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91b676d3 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x940be6a2 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9667f9e5 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97ca23ab mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9957798f mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ae43616 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d0c427a mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d4031d9 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0a1aa5a mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4566398 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa81fda19 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa2a49c5 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab443d3d mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab6ea484 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb05d4144 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6fc5928 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba5ec20f mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf3282f9 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc35b6abb mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4f7c972 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7d70763 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8f7fb56 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca827eab mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfcd9820 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0363221 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0a8cfb1 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0bde1d9 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1e0720f mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd496c623 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7673af6 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7b9860f mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeaad12b mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfa4e1a8 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfc7e911 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe661978c mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe67b05eb mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe69f8eee mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe905e7b1 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefd71e5d mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf06259f1 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf13bb1ef mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x02d8b2f8 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x29ac00da fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x585a077d fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5b31dce2 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6be57526 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x80957d11 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x9ad5d81c fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb3b50048 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcadbccc4 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xccd73afe fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xfc598d45 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x4bb2bbf6 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x7d4eeacd i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x383bc657 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4948b214 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x66851f98 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8b058503 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf7849306 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x067729be otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x869bfb0b otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x8fa30214 otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xddeb0595 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00a97a6d mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x039c0bee mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07c8c935 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09dc0635 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10030ff0 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x123a6494 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13c45ef1 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1410d2dd mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17356078 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x186b5a88 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18fe4054 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bfd6635 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c6f1aac mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c9e83aa mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dfc1820 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21f877f5 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2514e16c mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ac2a213 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ad5624b mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31f06a3e mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x320832ec mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35a5f005 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3985ca19 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39e1208f mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a76349c mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dd36bc1 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4199d32e mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44564b5a mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a4b6b21 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c1722ce mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c81219f mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ee90150 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fe3cce4 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x502fecb8 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5242e895 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5398b613 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56f3c21c mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63b56336 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x643cf5dd mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x650aed27 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65d33ba9 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x665e7cd5 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67024907 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x673d11c7 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67ba9680 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x680235aa mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x695762eb mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6975b672 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69adfaf4 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6af2e4a7 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c551045 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d4901a1 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ef9346d mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7162510a mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x751b17e8 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x779f89b4 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78bf2241 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cf84bc6 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ed1b7b0 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef6b628 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83862faf mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84eefed4 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bd82e55 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dfda3ce mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91c59bf3 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x932055bd mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93cd44b5 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94326d89 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94368492 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9678b734 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0b65f23 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4c1c404 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa53910b0 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa91f778b mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabc59c69 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac1111de mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacab41f8 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb26b4639 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb97694ec mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc150ebc mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd344631 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc031f7af mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0652b65 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc09ae0a3 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2ddf3c1 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2fcd916 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43ce215 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc48774f8 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc550c4d2 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc55516b0 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc55c5a4f mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8bee48e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca59b1d6 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc8ede7b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0397126 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd48f1629 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5184bc1 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5341a84 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5be7588 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8441d4d mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8a06d93 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb73b705 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbef7ac5 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd0288d3 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde69e6e8 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2dfa958 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3926150 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7ad7ee6 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0ffb965 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf13ee2b3 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2bc2973 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f8f943 mlx4_set_admin_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b0999f mlx4_put_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd18218 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd7a0ebd mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe7ce84c mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4d63839 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5901600 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf73605fd mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7474c66 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf81ec49d mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaadbaaa mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc35206 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff90cb97 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffe7c68a mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x025c60ca mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05fc9e53 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x063a257a mlx5_query_port_vl_hw_cap EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a03f647 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b0e5858 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0de5695b mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12dbc3a3 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1426433e mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b752ba4 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e5556a7 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f9386ad mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x200c8056 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x211795ad mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25b6340f mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25fbde4a mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x274b7af2 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28e9daff mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b15cdf8 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30ef73d1 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x333878c1 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x361933a0 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x380cb276 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ba3e1f4 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff64626 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40cb0475 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e10964 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b64abea mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dbae1d2 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e3e5ae3 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x531f002d mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5368d302 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60605d15 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x608b89a0 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ea9a0b mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65254803 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x671893f2 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7725bbdf mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7aa3fba8 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d19cd3a mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07703dc9 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c25235d mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c561bf2 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x137c719b mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15eedba9 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16eec9ed mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18724764 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b28cf1b mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d68c992 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f212167 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x279b6e31 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b413ace mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34a2a985 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35a9e331 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36c50732 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36d4b229 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3960a926 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39c7dfff mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aafc501 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42f6d5c3 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4edf7d6e mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51cd6f48 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e7a4fc2 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ea8a4fc mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b13eba2 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x722cd901 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72fb8a75 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76cb09b9 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x797929f9 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a342004 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80e4b294 mlx5_set_port_pfc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x824f6bab mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x848620e2 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89cd2acc mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b5289c3 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d3327d0 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x907a4875 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e6d918 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91d7d6e1 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x966badf6 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a80802 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb15381c2 mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7099d62 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8e1830e mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba2f9258 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbde3193b mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2d3965a mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7fe7f7f mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8716ac6 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde9d4b9f mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe49f3856 mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e14772 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5415c8c mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe70d6e1f mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe751473d mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe771f08e mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebdf2bfa mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedaf6711 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfab7e20a mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfad6ac3d mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc0a98fe mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd0e044e mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x42fc3958 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x88e26a4e ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x939521ca ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc1a14bdf ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x0e1de853 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x843ca7f9 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88bb8b2c mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b8e930b mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ca18a2c mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97cbc5b8 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9abbbfc7 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dbba7bf mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa74fcfc8 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7e1e6d5 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa97b8c66 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb01d51da mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb31093a5 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb4687ab mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbec49352 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4125db9 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4f8ca03 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc64be0b2 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd38a21f7 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd71934cb mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda0ba264 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda24fe16 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe10354b1 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe10f5420 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2aeb64f mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3edc2e2 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3f3c7b6 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe53c35ef mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb6e9773 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf10dd0ca mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf21fb468 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf75b6a94 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8e8c2e1 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd85e835 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x28eb6edb ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x2a453ee8 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x78733c60 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xcec1cbe0 ks8851_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x005e5d64 ocelot_mm_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x005e82c0 ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00f947f4 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03391a0d ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x034a7a35 ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x042173c8 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x056ae803 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0af27b63 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c6618f9 ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f0670ac ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fd30181 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1538158c __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a75f643 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4030673e ocelot_port_set_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43d3b80a ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x458bf8fd ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x501de5a3 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x522dd2be ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x553643ce ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57300fb6 ocelot_port_get_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a9715cb ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ad65798 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d01060d ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72a4f606 ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e135029 ocelot_port_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f4ca107 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81f0535d ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8321c613 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x881eb39f __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x894cc3b7 ocelot_phylink_mac_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8db8f20e ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fad631f ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93b426ef ocelot_port_configure_serdes -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9494845c ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c14dec6 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1dcba9e ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb399c6a1 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb0377cd ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc377a523 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeaa4d561 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb7806bd ocelot_port_get_mm_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef7beaea ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa73eea7 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe46d351 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe9b0c0e ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xedb5df26 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08a98fef ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1287f71f ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17082657 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1cfc67bd ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1df8d910 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fa864c6 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21ad688d ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2552a36d ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27d2ad4e ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b1c03e9 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38f39f3b ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ae82319 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x436c3ada ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e8f49b7 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57da138c ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ecc0dce ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x604ab102 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6565bf02 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x724636f4 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74aa9f93 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d59614c ocelot_port_get_mm_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x890a1f2d ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8bfe108c __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ec18238 ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99316ea0 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9edb8fab ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5807475 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab80ec83 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb352ac8c ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb555eacd ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb956bf55 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbcaf8d81 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf5b4b5d ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc63ecf6e ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9b6fbe7 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc2cfde5 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd388b623 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4e8a3d1 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd82e6b97 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd9382a3e __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeaf27025 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed3c3b32 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf01058b5 ocelot_port_configure_serdes +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf40a2693 ocelot_port_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb938466 ocelot_mm_irq EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3ce2099a stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4d3a001c stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x17848910 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x17a14917 stmmac_dvr_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x777c8f4d stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x906ba2c1 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7cdfa92d stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8aefb904 stmmac_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xccfcb312 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd1f9e95b stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x05d708e8 stmmac_pltfr_remove_no_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2a16050c stmmac_pltfr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x32ff5f7c stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3aada512 stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x68ee6906 stmmac_pltfr_exit -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x741876b9 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7887d455 devm_stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xab6f5b51 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xefccd59c stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf275da92 devm_stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf4232254 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x2f5eb753 am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x933f0be2 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa792edc8 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0195c6ec stmmac_pltfr_remove_no_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1fcc1903 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8030195b stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x84abced1 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8d63a912 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8ed664ab stmmac_pltfr_exit +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a7eb3d5 devm_stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb8d1fee8 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcba1a7eb stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf0794736 stmmac_pltfr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf377cb58 devm_stmmac_pltfr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x59b6e185 am65_cpts_tx_timestamp -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x5cd5abcc am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x5798b3c2 am65_cpts_prep_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x6ab9a4a1 am65_cpts_release EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x828c824a am65_cpts_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable @@ -15779,1026 +15796,1028 @@ EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xe0cbdf78 am65_cpts_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1bf25081 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8022e914 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x80aebd8b w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb343aaa3 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x69f53607 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0cbf677a ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x67840aca ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x935f2e0f ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xef9c5008 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf187aa10 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0x0ff4b4b8 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x339ba8c7 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x396d89ba macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe4cbb208 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfe5d2c24 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xfe117f3f mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfcc6a027 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfd3967b9 am65_cpts_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0d6e2f6a w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x88ae1f44 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa791f19f w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf418274b w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0xc28d5dab geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x029b94bc ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1dee09e2 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3199abe2 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x621f3cae ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x75305589 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0x87ccccc6 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x784aa7bd macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x91a90357 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb00e97a3 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb8768119 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xd01674fb mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x3ccb2f54 mdio_mux_init EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0xfc53475b mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xb74544f6 devm_mdio_regmap_register -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x384bfd26 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x48d03b12 xpcs_create_mdiodev -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5efda68f xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x60cbae17 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8cd5cbad xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0x1b44b6ec devm_mdio_regmap_register +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x27dc2399 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x946234a4 xpcs_get_an_mode EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b430bc5 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa308dd06 xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x00a3be5a bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x072f0175 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0b9db53e __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0cb0f1ca bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0fff1be4 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1bc13c64 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ce071cd bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e7aa14e bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x221ef6e0 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x23d92efb bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30f52bee bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a7c6d62 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4072f708 bcm_phy_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4808c8ae bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5aad272a bcm_phy_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x64dbd3ed bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6e10ad4d bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x701c38e0 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7f39e06d bcm_phy_led_brightness_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f4ca5e0 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93696afc bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d84baaa bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa4f3ecb8 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xad14a207 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xae937803 xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xded461ce xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x075eb2dc bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x112fe479 bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x149cfe90 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x14a63451 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1dd579ac bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x20ce32ce bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x21d1d4e8 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x407f790b bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42a0f6bf bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x511df3b4 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b314ed1 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c6f7edb bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5cf9db64 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5f421288 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x606ec175 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6239c0b4 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x724f2767 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7656af42 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d77b8cd bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82a47a57 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83c00238 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83ddb8ae bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9085d0ba bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa091d012 __bcm_phy_write_rdb EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8ca98d4 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9e41a5a bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb1c3834e bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb42b6b2b bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbe21d32d bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf15604f __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0b06d0e bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6c139b4 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcad2a188 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcf26da40 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd60ee7a7 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6b62e04 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdccb57f4 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe49d43b5 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd7606f2 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x620576e0 bcm_ptp_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xc7e0a17b bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xad0dea3d bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6dcbe4d bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9bced50 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc20fc824 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5c75d91 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6265cc9 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc71d8660 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccfc6d6d bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcffe138c bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe38b8689 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe8ebb4cc __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xecf070d3 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbe06f68 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x6020b9b5 bcm_ptp_probe EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x0b17b18f lan87xx_read_status -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x2f7de109 smsc_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x3ecfcd6b smsc_phy_probe -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x66bf2237 smsc_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xaf25982e smsc_phy_get_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xb77069e4 smsc_phy_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xc3ece28e smsc_phy_set_tunable -EXPORT_SYMBOL_GPL drivers/net/tap 0x0ffec095 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x53b5c81c tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x61170916 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x67fb29a9 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x8e8f6213 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x983f594c tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xb3f42b47 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xcfde7049 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xff26a9a4 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6392d769 usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6d7cc477 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x939e9e38 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9997ddcc usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbf5c0aa8 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdd484722 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf2a81c13 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0c108e86 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x27ebab07 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5c4feddb cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x636c6bdb cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x85993cb4 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd37285be cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe501d947 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe6ec317c cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe72c9868 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfbaef1a4 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfc5e3ebe cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x33b3cc7d rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x434d1f3f rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5b0a6171 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6c25d86e rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9e0a6d44 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbd9f4b01 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdd604b61 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x050c4b95 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07380f5b usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14c503f1 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1641fed4 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ab302f3 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x241c3c4a usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x25a29d32 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x280571be usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x303f64cf usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3294950b usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32cb09e2 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39b2ac0f usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39e0bc05 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a641135 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x40ab1e50 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d0f8923 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5ffc95ba usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6456b89e usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b4b7d4c usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77b56ab3 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x836aa2b5 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83d80cd4 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x868cf6cc usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9127323b usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5b13c1c usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xafecd466 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0c5b694 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc145cf3 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc94c71f8 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcbaaa4b0 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcca1b99c usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf941bec usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd411eb0c usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb57feb4 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x06256346 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2b69c151 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x3deb50f8 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x62b61f2c vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x708bcec8 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24660ad8 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b25eb44 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3172c52b il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f0fdf87 il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7a8d1bc _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xea663119 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x1269767a smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x35297823 smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x477b3fe7 lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xa1903fd4 smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xc832e49e smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xe17d4e9f smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xfc09a030 smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/tap 0x157d2157 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5344df71 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x70036d70 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x93ab5709 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x9e013111 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x9fe59111 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xbfc8f4a7 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xcb88aef6 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xf17c63f4 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x046386e3 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x531cf8ba usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x75524ab6 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc5f3800b usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd02ff452 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe4f9ed96 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf844d4e7 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2145e498 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x24fe6fa0 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x57bbc54f cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x57cf70eb cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5a5b7f94 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5cbadbcd cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x62a806a9 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x63345e1a cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7b005920 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc5fa1770 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd992fee3 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x2fd53c4d rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0389fa60 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1c3d71b6 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x54b63624 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x79aea598 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbfe0bf4d generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfa656e2a rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ad34066 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d1b296a usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f10d7fc usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20049796 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ac6c15a usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c6b7315 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2de5f08b usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38ffc635 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x40a5f1c2 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49468043 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49866edd usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a8ff9b3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a76d5f4 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b016ee5 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b89024a usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d221dc3 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70b5f86c usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8daf8165 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9180e7f1 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca2f9b04 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcb688737 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdc7b5a7 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd06fa513 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd073277a usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd091700f usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9688978 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde4bb8d9 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe111e5bb usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2864534 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2a01a7e usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe96fca46 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef5bb991 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa4bce76 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe81849b usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x3293ed02 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x41edd52a vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7a6dc153 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xae4c8a75 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x55a22e8f libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x472ef363 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f9906dd _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b81fb72 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf380802c il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf461c1f1 il_dealloc_bcast_stations EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13863121 iwl_fw_lookup_cmd_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443a0ac3 iwl_fw_lookup_notif_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x205ed8d5 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2e254218 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x61313155 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9645b0e3 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa1cfeef3 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb7f6cbf8 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb8db4b2b p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb958c167 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xff27f22a p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1bd5f489 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2248f65b lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x25efcbca lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4b8f8222 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5279ca73 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5b672a8b lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x72b2a2d1 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8a77046e lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9141a114 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa7a6836c lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa874f252 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaddf2ffa lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb9625f33 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc1c30e68 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe4c6d11e lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x00c898c9 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1a2d8efa p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x34d33ff4 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x650fcacd p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6897aa8a p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7b02dac5 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd22b5bb4 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd3c9eae5 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xfc91ac9d p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2881e3d4 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3157638c lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x36100b11 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4bda3f86 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4df43861 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x59c790a3 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x767583e0 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x925a601c lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9aa61111 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa925faf4 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb893d4c9 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbab951cf lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbbc5043c lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc61c0564 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcdaf13a6 lbs_notify_command_response EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfb7bb051 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x03a6a6ae lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x13423e40 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x375b6212 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5edb8f15 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x62c57f95 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9447f9fe lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfb8b421d lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x21580f98 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x449f8121 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x60157c64 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x73f9cbf8 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x750e17cf lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x77ad7ee2 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x975d47a9 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb4800bce lbtf_send_tx_feedback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd2651069 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xee6e7c87 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0700b851 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2dadc226 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3ea0a3ba mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3fd9377b mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x42e5cfc1 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4a2152a3 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55ff8d7e mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58101645 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67bdbc8a mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x70a73318 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x79778ffb mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x855b0497 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9bdbf492 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb69a5e76 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc87a7337 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0243c3b mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd434817a _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0bc5a8d0 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2928f8ff mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2e781ab9 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x354d6c91 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3d2ab66e mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f0d504b mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4a9354c7 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4ec5db5b mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x50032063 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x503802d5 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5c88b6c9 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x66f7eb83 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6ab4757e mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6cd985ea mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7854ab4d mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x81500ffa mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8ed781b8 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xafa92020 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb4bdb19c mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbafff6ca mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd08277d9 mwifiex_write_data_complete EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe16c58ab mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe39c6af3 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe4fa9204 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe65dabec mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf58b63c7 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf6833b6d mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfbdcfbf5 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x035f79d3 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x050c0cf4 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x084ac0ae mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08c4a8df mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09b0a222 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0aa2b77c mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0bc00582 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17d58abf mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe6eb9a75 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe9964781 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf4ff90dc mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00a7f5df mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02dcf311 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05aa04be mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08361405 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08e81a86 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08f01bd6 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f37f746 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x132f02b9 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x163578a7 mt76_tx_status_check EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18d52713 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bcdb36c mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c5da00f mt76_get_min_avg_rssi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f56f57c ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8083c5 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2882dc09 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ea493ca mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x387867c0 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a2762fe mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d0fcd72 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d2db233 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ebc477c __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f058b22 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f696ff7 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4870bef8 mt76_ethtool_page_pool_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f6b2eb8 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x505cfe0e mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50cd7fc6 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51a18bb4 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5456d88c mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54f803ea mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x554c4fac mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55a9c792 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59d93464 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5bf92efd mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d5fb209 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e39835a mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60ca40e2 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60e2314e mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6836b29f mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c023536 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d22bc58 mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d731f09 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70555168 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77ccd1be mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d2d96ca mt76_create_page_pool -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fd27633 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26380c40 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2da1bb20 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3145886c mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x334a3192 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33d33833 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x359d7f55 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b9e9c31 mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e0adeb8 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e5050f9 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f6e0b45 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fa6c4d1 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ff4ef60 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4118e60e mt76_ethtool_page_pool_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4546b2e1 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4667fbf1 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49f8c8fb mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50f19bde mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58de0140 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1f751c mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f267852 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64fe15dc mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68db89d5 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a1e9621 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6aacc86a mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bbf707e mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bd99e32 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6cba565f mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71cfe6ea mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73084890 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74eb0b48 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78308e52 mt76_rx_token_release EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81790521 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85655fd2 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86c3d4b9 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a00790d mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90f28fd2 mt76_dma_wed_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91f47ebb __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9859693f mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a000feb mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bc8dab8 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x817dc85d mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87c3149a mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88266c15 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x897bc4ba mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8aea2b98 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b6c59aa mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c2dae4b mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9176ba8e mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9365810a mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x952b6b3b mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9874c695 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9acf8f7e mt76_set_channel EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d28c26e __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ea41c3c mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f9dc22b mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa24744ba mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa369a6e3 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9dc17760 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1c5eeb5 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3bbb858 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa5ab823 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa73995a mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab209820 mt76_create_page_pool EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xade9ec33 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae47b717 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf4659c1 __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb235561c mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xadc7816b mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaf15fffb mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4d26239 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5f9c851 mt76_get_survey EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb608bb75 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8602dee mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc27428c mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe8d0f7c mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfb31d76 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc38f5aed mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc19bb75c mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc410a19a ____mt76_poll_msec EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb3a4d4b mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd1f8178 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcf13037f mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfeb933d mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0e9ea25 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd49e5dab mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5fa9af7 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7a524bc mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7c479e3 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8c93d6c mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdac3ef3a mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde69e824 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf80acfc mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca5e8fca mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcce72495 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd992aa0 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcdcd4c5d mt76_dma_wed_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcf724a12 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfc95e74 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd38fb24d mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd394fdb3 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd644297a mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda69cd22 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc64d8c6 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde8a9098 mt76_mcu_skb_send_and_get_msg EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe75a2285 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9833195 __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb2b4891 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebe48ca5 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee5e4c7d mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef8e0baf mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4ac5626 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf58870bc mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6fdb71d mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8adcd7c mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x006aee6f mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x042fc5fa mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04ccd4f1 mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x05eeeea9 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe42a5966 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9b56090 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed002692 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8af9a69 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc05576d __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc1bd016 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfc8c5951 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff1689f1 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x09c9206b mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a217e26 mt76_connac_mcu_add_key EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a25337f mt76_connac_gen_ppe_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b4071ab mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0bfcd028 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0dec65c5 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0facd580 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11919678 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1575c9c8 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17aec55e mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18b64d40 mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f97e1fe mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x24ba9a5f mt76_connac_get_eht_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2627af7a mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x283e54ad mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b1be3ad mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2c1fbd3a mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d29cc64 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f60e1f1 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f9fbcd3 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x32c7091f mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3494343c mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x39a91ca8 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c7fe0f2 mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3d110078 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f6d7752 mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55c19a21 mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x56a41564 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x57423ae2 mt76_connac_get_phy_mode_ext -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5b16f6f3 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5bcff5d1 mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5db9faac mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e76facb mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61b8c73b mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6647af95 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c20e4c7 mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f7a4bef mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x71a07559 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74588d03 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74dce2bf mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7579ad33 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76fe620f mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78b1994c mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c37c13b mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x80e15a47 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x818c4cd7 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x83acade2 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x856e4b7b mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x895303d9 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x89fd3fcb mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8c81b569 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8fca3648 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0aec26ea mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a72ff88 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1eefca9f mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f48e90f mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f9f2564 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1fedc6f2 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x207ed7f7 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x275347c9 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f3a21cd mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2fc3e1a5 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x30370f1e mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x30eb5aac mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x31fe9986 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x361a5272 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x366e8bb8 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3807e70d mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x415ed2f9 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45389c88 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x463876c4 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46a0b8ac mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c0361d9 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e1b315e mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e3621c7 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60c3c610 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64920074 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d14a964 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e884d1b mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ed2ccee mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76870ea2 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x77600873 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b59216f mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e6660f4 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ec23fe3 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ff38d52 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x814ada9d mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x828fba23 mt76_connac_get_eht_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84b8f871 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84c0011f mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x868c8f22 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8867858d mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d57f489 mt76_connac_mcu_bss_basic_tlv EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x967e6a57 mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96fb7edf mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9792a251 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9da354f8 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa33bdfe1 mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa4103d99 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa95bd341 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb73639ae mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd754431 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc771910d mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc81a5ea0 __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca22e766 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca4daa07 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcae69a58 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xce7e3479 mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2805b53 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd58c3dde mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6bbe676 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdff72d3c mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3def4a9 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe9943d4c mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf16a7dc2 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf477ca04 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x24525739 mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2bf54cb5 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x40df7689 mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4abab694 mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5b6d5055 mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5c8f69d6 mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6543b3d2 mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6aa5eb8b mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x813259f1 mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8b4b1518 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9c61b235 mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa31a61ca mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xaa75d1c8 mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb11e69ae mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc62a99c0 mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc6576539 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x10420f19 ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x224ce519 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5d1e1eee ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6fabe66f __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x82458046 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9b0ce176 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa2a0da9f mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa77be04f mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb56b4710 __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbfc1fdc2 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc022755d mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd37d7229 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdc61a3ef mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf5ef6b0d mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1313c68a mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x185fcd95 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1db5f516 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2289eda8 mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x22d82bfd mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3c2dd7f3 mt7615_led_set_blink -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x452a4341 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x47bbc10f mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x55b2dfa9 mt7615_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5d9a1d32 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x600ae7e0 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x635fa0d2 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8919e1e1 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ffc33e0 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x90c1218f mt7615_led_set_brightness -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x920e6be7 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x98137f12 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa01bfe68 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa2971a2e mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb934d10f mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb94a5850 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb9f22a9e mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbbdafb66 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbe380496 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd58dca8c mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe56cceb2 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf0d0dcf7 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf0e89cc5 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf46c96a3 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xff10a8c1 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x13b091f9 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x96987724 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x98d189cd mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d07b1d7 mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ec598d8 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ef218c6 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8a51db3 mt76_connac_get_phy_mode_ext +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9007a44 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa4c40d5 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa52b4a6 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaceaee4c mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xadf9ff14 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb186309c mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb1b3f42f mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb54b73b2 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb8797df8 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xba8816b0 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb4b7693 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb86c058 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc0527f6 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcac44b4f mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb512b8f mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2d4fe2c mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd755be0d mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda62f02a mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda838bbe mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde2c9bff mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7feec29 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed0cfbff mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf444baf5 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf51667dd mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf58e4604 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf871484c mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe38d3e1 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0cca47e6 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x20ce71d6 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x25d5031b mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x363c3502 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3d5750d7 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5aaa9d0d mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6b6c8ef2 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6deb6c22 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x91dddb39 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xafce9df5 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc063f791 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc865a941 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeb149ca9 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeb740bb7 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xeca36fc4 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xffc0c2bc mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2b818bfe mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x39d8e4aa __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3df54155 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4da995d4 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5773981e mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5b6f86c2 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6127ca59 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8829d161 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9b4aedc8 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa0f8b393 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa7ed06c1 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc8d31802 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd91456f7 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe6be7516 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0138ae60 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x02925385 mt7615_led_set_brightness +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x09fd549d mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0d1a7f59 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2257c420 mt7615_led_set_blink +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x299c708b __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2aa33043 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3bce1850 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x40966c8c mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x43584377 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5152d343 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5f5de9dd mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x629c05a8 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x692866e7 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x71efa3e1 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x76d2f145 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ae3b5be mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7c79863e mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x82900352 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x82a99bb6 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8609c8b3 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8eb61715 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x97c172cf mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9b41f363 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb792d13a mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbd80e916 mt7615_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xced842ba mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf69e5da2 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfba22b1e mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xffc1bf68 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x0b668b6b mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x00f2fc42 mt7663_usb_sdio_tx_prepare_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x8f507dcf mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x9f563e33 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xaa6bf46b mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf0e2b8f8 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1759ba96 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2b1a5729 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x36a3e511 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3b8b6de9 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5f16ddaa mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc1388c30 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf8ff74a6 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0de66635 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0e8587e7 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12f1bfff mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c5a9edb mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d2c8a95 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25d2e63d mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x291627ba mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2aa5c0e6 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b45bbd7 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e8d8818 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f54ef16 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f7da16e mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3047660f mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3250cd48 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36737549 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37e8e892 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ffd26c1 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41fea6f0 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49eb0b38 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b72c507 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4f6ca6f5 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x565bd68e mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x33f902d6 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7a1eeb71 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa80c40a7 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4b46d25a mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6404101f mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x797c840c mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x885425b6 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc53057e6 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc6c5ad79 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd048f123 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x04124888 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x069d2442 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10d0559f mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1131051b mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1bc3d2df mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c0d973c mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1cec57c8 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x208fafdf mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2129d714 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22421cea mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24ca78d8 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x271c84eb mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d2eae5b mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ea7d64e mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2f2fbfcf mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x301b3771 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30f4d4b9 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3291dc82 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b550a55 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x402c28c8 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41232f72 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x41c5f720 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4415c988 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4813bf55 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x481f7e1a mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4bc630a4 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x574b9298 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x584ef80b mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58edbacc mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b49b074 mt76x02_remove_hdr_pad EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x600a0d9f mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62c60686 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63ae3382 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6550f478 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e93c773 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fbee863 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x701fff3a mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e66fbbf mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f007984 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x68a98a27 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71579f32 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x726108b7 mt76x02_rx_poll_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b2038a2 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x837c1d4e mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x918c72e9 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x77a1fb13 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7bda45b1 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d83e618 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x829d4d93 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8b0ccf64 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ba0d1eb mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f8c37fa mt76x02_init_agc_gain EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92715874 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x930f1472 mt76x02_ext_pa_enabled EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97de45e0 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b5d8941 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa10c5820 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5827fc8 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5964e1c mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab2373e4 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99086e6b mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa343d01f mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa8bcfd95 mt76x02_sw_scan_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf6a3db1 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb3ee8d40 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb430a515 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5000268 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7ed1228 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc07a93b7 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc19fb36e mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1d8e52c mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5491d82 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca53b748 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca9a2207 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcce978f9 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf409706 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf9c878c mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd48b8ea8 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd63f4b9a mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb2fe101 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe1bc8997 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7cad140 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0bb0271 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf78f6c5e mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf9ad76b1 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbdfbee3 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc2618ee mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc8047cc mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd8d1a5f mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe8d838d mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0eecb731 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x14f63b63 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x51f96c91 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x52c9efc9 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x8837957f mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc63b96ff mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcd118750 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf2e1cfd0 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0222f117 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x025ba401 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0bc71983 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0e9a473d mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x14bd7638 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2f0d5f4f mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x32dcd0fd mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x392479b5 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5829fe06 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x74d340cf mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x753e61af mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x756c0923 mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x92431ae6 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa18b360c mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa7e72321 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc29f56cf mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce71cbb4 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xde3a76bc mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf3defe2 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf99b80a3 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x08b63f26 mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x23dd98d8 mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2b5a754a mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x35493699 mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x57df868f mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x59f8f34a mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5a849a42 mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5f797468 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6354effe __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6e97ddb3 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x74af2399 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7d4672d3 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x824ffd58 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x88dadde0 mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8e02f6f3 mt7921_get_mac80211_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8ea04d3e mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8fa2a48f mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa2ff64ed mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa3283077 mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xab4977bb mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbda45754 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbeab9f73 mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdb833f6d mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x742009f2 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7cead7b9 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7e9ca5eb wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8e9ab6eb host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa08d3cd2 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa6f5ddeb wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb5e86803 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0f28244b qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x190b1ed0 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xada13a36 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xadfcace4 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb50706ac mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba802455 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc343c0a mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4030270 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4047295 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5e466af mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc73a9d74 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcafbedc1 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd01dce02 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd2a0f5c6 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd40973fa mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9338596 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee22922f mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1ab5a19 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf35fb249 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf41270f8 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfda3c731 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xffec7927 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0d12f37b mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1affac2c mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4ddb06d0 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4f5bb562 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5bbadc24 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbaaae6c7 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd868f7d5 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe1bf5028 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0d2045bb mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0d5d42bb mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1c983907 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e016b26 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2044a33c mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x37108667 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3eb5e44b mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3ee567fa mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x48bf39af mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5251b896 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x598559e7 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7617a77f mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x786b7965 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7ae29fbe mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8a10bcb6 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb702abae mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc0887e14 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd114f426 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdb8b27c2 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe8532b4a mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x07380e86 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0a994a18 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x10ea7af4 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x15418c89 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1d481847 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x227dcc2f mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2e233566 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x41c3fa8e mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x496f5853 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x62ab0dc7 mt7921_get_mac80211_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x62dacc40 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x77248995 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7d7f5ce0 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x86d83d90 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8ffa609b mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb5af8bce __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb750d465 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb8011219 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc72a91e5 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe115acda mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xeb6a68b9 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf442b769 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf4e024e2 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x07d5f3f2 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x161ba422 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x35d79ba4 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x370b1139 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3c1d6c30 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9b7cec1f host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa8c95678 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x055d4b0b qtnf_wake_all_queues EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x38918138 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x68f3de08 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x891e31a2 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xdfc59c15 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x021c39b4 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0383ad3a rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0683bee1 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09b73819 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0add6145 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22dee6d6 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2e852aef rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2f1b30ad rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x31ccc89e rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x369fdf22 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e5cd0fa rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ef287bf rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x46a4fe1e rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b0f4144 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c93b0cb rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d0da502 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60bce8b1 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x71460eb6 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x725ee2b6 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x77879690 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x78f9bd24 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8465d16e rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x856c8c8b rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8580e00f rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x91d89985 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9e2b1500 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7d7b557 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf52f647 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb43364a3 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1023418 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1c458e6 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc91820ce rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc939be4a rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc2d8851 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd3445a98 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0739dbf rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe68f7db5 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe6b65cf6 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe89d7a4d rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8eafe22 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8f227d0 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8fd70cf rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeda83d2d rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc81a5f5 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x05843656 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x08905d5a rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x099e1d2b rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0a8968b7 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x38f3d20b qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4d440b4e qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6193dbdd qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcca31df6 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf97a2599 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x04f7d3e6 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x05b33214 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09b9f43b rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14366212 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x148d3ca0 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16537888 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16a58c3f rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bc5e865 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x26545776 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2aa8c205 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ae35a46 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ec2102d rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32a6ebf9 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35999dfe rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a42a342 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a5d293a rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3b7555d5 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4bfa92a7 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d844d21 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x505824ed rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6942e419 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7035a5c9 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83faff06 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84f0c093 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x94622545 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x962a7b1c rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9e3061c2 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9f444a81 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa9873d3d rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb1e38ab9 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb24cd544 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb2682cff rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb4be8c60 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf333a47 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd51167a0 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbbf6760 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0bb6c7f rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe0d1f5b2 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe35e1ffe rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb1df315 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed75f7ad rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1e7429d rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf212f320 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf2a8bfee rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x18c1c52d rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3a9dadeb rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3bc09de9 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x360d44db rt2800mmio_get_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x428519fc rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4f07670a rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4a7647a5 rt2800mmio_queue_init EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x547e164c rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5d714390 rt2800mmio_toggle_irq EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7501beac rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x78918c5b rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8c8b92fe rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x93774568 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6116c81e rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x621edfa0 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7b69ee40 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8f6d61db rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8f70894f rt2800mmio_start_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9990d42a rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9b0e7416 rt2800mmio_toggle_irq EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd2276847 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xec1c620e rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x002614fb rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x03a00363 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04ebe5dc rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x069c0a95 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22986945 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x27cfe3e4 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x37134209 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3be00a00 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x449de93d rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x494d47df rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4efcf0b2 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50356111 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x508c79bb rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50bcaed2 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50d6018f rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52be423a rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x546b4671 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b6613e2 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b951bb6 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61b9ee18 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x647196fb rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65ba437c rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6aefb283 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71274825 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x736bd487 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x869dccde rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x915a0f29 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x992ac1cf rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa2842e5a rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa3b4fad2 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa67eafa3 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf5f114a rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0042135 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbdd1ad0c rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4bb0e32 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd0eca0f rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd266b6f2 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd429f016 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe0f3698d rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe0fa472f rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9915246 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea80303f rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf282a3df rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf46eb4bd rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf63249d3 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf8ef710f rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd6e329d rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x0811c603 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x11c3fefd rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1c8b214d rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x24d12de1 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5025a219 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x017a57c5 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb8897805 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd82bc53b rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3287a079 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3325b091 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ab6660d rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4c2b4bcb rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4eaa04fa rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x50addd92 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x53001551 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5997f301 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5ceba1fd rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7f039e9d rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x80b99ae6 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8562cdc5 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x85ceab3b rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8d3d3382 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa18976dc rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcd348979 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d031ca0 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f700148 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae23b00f dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb84c99f7 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x11530f9b rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x148af43e rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x263b8349 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2851db8d rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2bf6d59b rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36b7a28e rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x378c1ac7 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa3340c22 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa39a2112 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa93822bd rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb1eabc7a rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb9e8a051 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe3a8a406 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x08f9701b rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12a2ca11 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1783ff16 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17d24081 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ccd8631 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e7594ff rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x243f9f78 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2742e5a8 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x299fa438 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2ad0f4c8 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2be36549 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30cbf012 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3265bf92 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x364ebb48 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c895c4b rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f653a58 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x40f45938 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x42056085 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4390a86f rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x45c508c5 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4718bb7b rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47f267de rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x528c18dd rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x52b80d86 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57489b44 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69077ba7 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x737eb9c2 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85c73f0f rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x861a5707 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f68f312 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94701828 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9782c19f rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0a01a88 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa1ca349f rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa46b5cd6 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa970b1e6 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xade8eb92 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb1288fed rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb855f894 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc968234f rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcac1a6c6 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9a2dc0b rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe28bfd7c rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea393058 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb0a9187 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeee7e21a rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6ed5bdd rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4264f5b4 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5c67dea3 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8c0dc1d2 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa17767fa rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xaf08af05 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x889418de rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9f799004 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xd550095d rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4acf6708 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x527c8b20 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5c6325cd rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5dd6d2d9 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6331cf50 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x714b3dbd rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7275a4b2 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7348e83a rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9410b6a3 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xacacddcd rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc0f4294a rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc72f8d71 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcd37e21e rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdaba1c54 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeb503e89 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfad9b952 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28d3d2be dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x675dc5d8 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x754d0b44 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc08b975 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x061e766e rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f171f7f rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1f31fc1b rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x31a3bee6 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3cd6bd12 rtl8723_phy_set_bb_reg EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6101689a rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75681d64 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7db924dd rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x46eb8c11 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4a90a57c rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x578a5a19 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5d3d459c rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f70270f rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x675bfeab rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6cdd26d7 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6dc6a781 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f97563b rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x70b2cf11 rtl8723_dm_init_dynamic_txpower EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92fe6893 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x943a76a5 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa6248eef rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9ec6e73 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf7fdc75 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb4cf36d1 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9e6e2b9 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1c3dd34 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc39df3c6 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6be6804 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd8ddaf08 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb219331 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe1c136fe rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2cc64c4 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebe84bee rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07b1dab0 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e8bf0ff rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1eeae325 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22c3b5af rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241a6ba9 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ccc1baf rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92188e66 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ab5be58 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0279dac rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad43df5e rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3c401d6 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc87b4c5 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe22751ea rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf5d5838c rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfaf55037 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0728f5ba rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e2027b6 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27a08366 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 0x2d32cdfc rtl_lps_change_work_callback EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3313535f rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x373f50d4 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ba0a20e rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x438352a6 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e893e6a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x406cfb6c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46c58459 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b54edf7 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c35a2e3 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c448c4b rtl_fw_page_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54cd39de rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62acc97b rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x563501a0 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57a8e46b rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63dc316a rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6cc9bb01 rtl_lps_enter EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6eb7c569 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71af0e97 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7556ec2c rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e1e1894 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x969813a6 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x706f5de4 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7eacc742 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8029c06f rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x840d71ae rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90f50409 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x934c5527 rtl_deinit_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa774b12c rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa88b6060 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7f064b4 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb952d9c6 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb6a188a rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc838c098 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf8c08e0 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeadb90ef rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfac8daa8 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa48e010c rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa04ff83 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb69916d8 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1c2b102 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdce6cece rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb7e1c65 rtl_lps_leave EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1f2612d4 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4e7b6942 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x743563c1 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbd19bdd3 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x194c1d9f rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x621ede52 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6b21581c rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x79bfb2b2 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8d0080a1 rsi_mac80211_detach EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcf443a99 rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2bbb9199 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x556103c6 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x70be8f31 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7e500283 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x58264207 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcd955188 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd475017b wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d0aa5c wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x032e7209 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7621794f cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaa4ec966 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xac600f62 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x2456589b wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5ce63d63 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa1bdd285 wl1251_free_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08cd537a wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d095b9e wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cb1302a wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1126d4c6 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a5711dc wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c94fc2a wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1dd809f7 wlcore_boot_upload_nvs EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x237ef15c wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x284d805a wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f9b409f wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x302bb645 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31a821d1 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x344c81d8 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x353a80be wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36408f12 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d3c3874 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x403c9b6e wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47dde051 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x485bde64 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57b2815e wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5bf7963f wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d2cc204 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61824d4d wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b34ecb8 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e788837 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79835d72 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21694c15 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a89c437 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f509c6f wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x301bad83 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x318dfe7e wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x332263f7 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35162ae3 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3cf2df0f wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x514030bd wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x51644441 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6372d05b wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6a59e976 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78f84381 wl1271_debugfs_update_stats EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x865a7ce0 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x905e16d0 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4708e54 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf3ca674 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb16fa927 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3a072c4 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb54cd1d5 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb95f6164 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd05bfee wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0ff4cda wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7587eb8 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd15d93b wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd24c213c wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4495002 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd58b1d4b wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdea3ac72 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe0c808bd wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe4e7b44b wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xedf06783 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0e506c9 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7d861ee wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x0be48cb3 wwan_unregister_ops -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x18ef9637 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8de628f1 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f7f3506 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x928032b7 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x946858b9 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e9f473b wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f788dee wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3d58889 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac22fbeb wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae8a3c2d wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb235bfc6 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4075dcc wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb77b2420 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb8798ad wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc11cb473 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc2ab3f75 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc4bc2cc0 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6dd9e17 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc82ebd37 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc90b4635 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd15e68a9 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd348eb30 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5cdf7f3 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1919a38 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecdb314d wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa7825de wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x2f734999 wwan_create_port EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x6a520396 wwan_create_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x80f09f80 wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x9b293d3f wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x5ebac96b wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x7478e2e8 wwan_register_ops EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xe9d3f4fc wwan_register_ops -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x22e5cf10 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3886131b nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x83c69772 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9a2ce805 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x12614da1 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3de11496 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5f0a7ff4 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x77d1e340 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7d1cee2d pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x88633b53 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd93de39d pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb81d2250 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xcd3ef736 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xe299905d wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0f69ae2b nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x484da446 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4c1306cb nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x60467e76 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x11561042 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x54e4aa18 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x84502957 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaa7409d9 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xafa51940 pn533_finalize_setup EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x06607711 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2004918d st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x36de43ed st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x71bb9f9c st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7cc4d868 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb568bd78 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb83a8113 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfcfb73b1 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x284c6441 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x3120249a st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xc0b5050b st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe6b67c47 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xee31881a pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x07c6dbfe st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3fdb5a59 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x610ea962 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x693cbcb5 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x74c161e2 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xab2b3ba7 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb33055df st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd285afce st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x925a4790 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xc1582f10 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe2bacc84 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x015d5abd 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 0x35ef0450 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 0x5a944827 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 0xb1ea9b3a ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xbffd6912 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 0xd59a1bc4 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/nvdimm/nd_virtio 0x1b52528c virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xc8fe33ff async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x07c53958 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xca7024da virtio_pmem_host_ack EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1a383575 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x2afdcd64 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x50c1c9e3 nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x58c07f34 nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x7a124596 nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xe29fe5b1 nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00ab5ce0 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03c6da82 nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x053b571d nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x05e23a45 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0fbed623 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02801f96 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0618dc9b nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0aba5053 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0abf6d8f nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c905ec2 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e062b36 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0fd78237 nvme_auth_init_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1358f107 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1469d051 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15f1b8a2 nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x177af10b nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a09a967 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2231ff20 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x271b62d1 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x12a75f82 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1919b74d nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x196c036d nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x237285df nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24f34a97 nvme_stop_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27fcbedb __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ac33be2 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x32bb687c nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3779b30f nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bd7817e nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d63ce14 nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40b9aecc nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d8e4d57 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34e36ab6 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a1ba67b nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46a4c9e1 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x470b3df0 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48b129c3 nvme_stop_keep_alive EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50282edd nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5037d8b7 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x55138d40 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x568158b5 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59a94cee nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cc9d2ae nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f1efd30 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6309c445 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x494b6152 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4cb46514 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d1f2153 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4fe516ed nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57a32ca1 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a7d1476 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x643b526f nvme_complete_async_event EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67ca5373 nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6ef203e4 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7b68dcbf nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fe89563 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6517fb51 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69329312 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c7be7a5 nvme_cancel_request EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c3cac53 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8d9d6bc3 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8eb81c5a nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f8ee475 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa513ccc7 nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb00548ac nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb054aea3 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb34b1580 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5b9ccef nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb3855a8 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf12dfc7 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc15fa4e6 nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc38310ee nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc991d9f1 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x905d0b79 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x96b5b45e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98606475 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98e04a78 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b2553a5 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ec67d38 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4d9b604 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa77c21b9 nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa78bf517 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa81077b7 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0f228be nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb182fcb0 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4a313d1 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4cd8eb8 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb54bde3f nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb72f025e nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbca57946 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2aadc90 nvme_auth_free EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd53f911f nvme_auth_stop EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf639984 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe192a1c7 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8b788f3 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee73edc7 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf0f4c022 nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf1eb08f4 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3326f3b nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf720ad97 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfd358aac nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe141ba99 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe559a6c7 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe78f8625 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef0a1bf8 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9341f4f nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa56eab9 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc080014 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdbc3db1 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x18b43855 nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e328d22 nvmf_set_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x289c8574 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x38ff8b22 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x59f47d77 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6356643c nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6ac24e3b nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x83e80238 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x841646b4 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x98d9c745 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb4caff29 nvmf_map_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xce2de70d nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2e0ec27e nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5972c9e3 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x62dea769 nvmf_map_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7ac7a361 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa1d576e0 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa2863ed5 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbc6f58ae nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcf4dc77f nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd846fad7 nvmf_reg_read64 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd8af66e nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf63e7a7a nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeaa0fbe3 nvmf_reg_write32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcc8a2d78 nvme_fc_io_getuuid -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xdcfd24eb nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x24dec7d7 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x298bdaa1 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfe3dfcd0 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0361f704 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0510f76c nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1bcfb01d nvmet_ctrl_fatal_error EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x421a9d2b nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x639f741d nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x699ee56a nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x705f3bc2 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x95225693 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9eb88627 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbfaaa1da nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfa1edf74 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfca1f30e nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x424d9be3 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6c052105 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x93394b13 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x94c49c82 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa0e7dfb1 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xac42368b nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xba8518bb nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbbcf1c06 nvmet_req_free_sgls EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x200b66ba nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x54a3bf07 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport @@ -16806,540 +16825,540 @@ EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x968757c3 switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x0aedd387 nv_cspmu_init_ops -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x893ffab6 arm_cspmu_sysfs_format_show -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xe5b9253a arm_cspmu_sysfs_event_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0babbff9 hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2aac2dec hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2efe0737 hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3b9967b8 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xaa15d28a switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x30db1c38 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x97c2d1ec arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x9a69b9a2 arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x020fde3e hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x10696308 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x226696b9 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2d20cce9 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2e0b25c9 hisi_uncore_pmu_start EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x45ca1d66 hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6fdde64f hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x75e1683e hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9137b847 hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9614e42f hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb8819d7f hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbb4736a5 hisi_pmu_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd3a9dd30 hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe48e14c6 hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe7718b0f hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe97f3faa hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf32942d0 hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfa8655a5 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x42468c91 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x557d05b6 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6278ac30 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x63f72f49 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x70157641 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x76aabd5d hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xab84cf9d hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xafd5d075 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb33134ea hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe4000d6d hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe48488d7 hisi_uncore_pmu_event_update EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x27d0d8b1 sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x031856f3 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1d191e0a tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x403c23ac tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4ed2be0b tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x50d0a9dd tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x621c38be tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x62ebdca6 tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x66ae77aa tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6d5c25af tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x74549ad7 tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7a791a5c tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7bdd741f tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x826cff63 tegra234_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x82e64206 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8f16daa5 tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaa974da7 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd16ec33f tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd6f3354a tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfa2732f1 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfd702e94 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfc8081a3 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x4cba19f2 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x13090262 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3b5a9880 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3e71afb2 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x55a06c52 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7b42d17b tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x815f4bdb tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8fcc1fa3 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x93d128fb tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9486349e tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaf07540f tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb5bcb972 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xba9a6211 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc3b1928b tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc52fd109 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc5c4e356 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd25f7389 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd2fba997 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xeb4050c7 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xec474469 tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xeccdf90c tegra234_xusb_padctl_soc EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4e5661fc mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x5b5ee7ef mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7e2dc513 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x6e869d5e lpi_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xe07c6bf4 lpi_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xc853b5d3 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xdd7a7883 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x95f9d1e2 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xa582750d mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xfd52f7d2 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x6ae99520 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xe9bdfc8c lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x2631dab6 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x4f8a44d0 cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x04232715 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x08a6640a ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0be888c2 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x13316b05 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x15a435af ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1cf3889f ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31365da5 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x36abf04a ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3810d1a5 __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x40e49274 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x502f6a1d ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56ed4eda ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x58da55fb ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7e1d7477 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x85cfd253 ssam_request_do_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x87d4f684 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x971e2672 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x99148990 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9db3305b ssam_request_do_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa4f593ac ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa8dfe348 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x058d7f1c ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0850da78 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x134d1f9a ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x27c1a759 __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x433dabd6 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x46f5e715 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4abf6c1b ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4dc4d464 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56d1b03b ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x585b8adf ssam_request_do_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5dd89f1b ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6365decf ssam_request_do_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6ad26b42 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x78bb127d ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7cbb6bc9 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x824c7070 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x82b11bc4 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8b0ea245 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8d8f7131 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x92561a38 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x936f2fb8 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x97646dee ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9ed97919 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xac3372a4 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb69f818a ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbd52568b ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc119c32f ssam_controller_get EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc4157831 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc51c1435 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc65ab220 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc98860b5 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc9dbccc1 ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcc45384e __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe0828023 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe40e95b2 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xed08ecb1 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf3b6559a ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfa3fd102 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd09a397b ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdb3b6b0b ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdba6ff01 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe3c8daaf ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeddb7a8f __ssam_notifier_unregister EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd602727c san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x59314696 san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x16b59b6e devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x4bcfd886 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x589e37a5 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xfd82537d reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x9d7d388c bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xae47be42 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xf04d1e71 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x31bd0e5b pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x71c9a0b8 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xfd393c95 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x17e7a724 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x409e560c reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8b6e8c62 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd3a4f307 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xde55edf1 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x785e567b bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb277f5ec bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd930935d bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0fca458c pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x3f2b6fb8 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf8c6384c pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x1c7c6e30 ptp_qoriq_adjfine EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x53051305 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x97e2c3a0 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc730f532 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc7f59cac ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xcd9e1d8f ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xdab112f6 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xeab58255 extts_clean_up -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xae45caf6 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xedcbb120 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xefc9cade mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf2bd42c1 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf332e73f mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xe6a9f4d6 rohm_regulator_set_voltage_sel_restricted -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x344c4060 wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4e1002b4 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x57efddfa wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7982bff9 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xed48f65c wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfc607981 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x6862e038 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x025eccbe scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5333648c scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6c5ee81d scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x79e5fb87 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xaf2e2645 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xde92d245 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe3302e5b scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x39a21039 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5065b0d5 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7ab3c40d ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb1f62f2b ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb75132ad ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xbc481ece ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc4818110 extts_clean_up +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x71733ec6 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xba2715bf mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd4473d3c mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf9fd6515 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfaa413f2 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x61f4f14e rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x23226a16 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x501a3cea wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x69d871d4 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9ab45a43 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb220c281 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfe6ab5fe wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x6485b837 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x25b98805 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x4587c88c scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5ced13f5 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x87735e67 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8f937d76 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x98bf270c scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xbc6627d9 scp_get_vdec_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x57fa693d scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5faa088d scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x67c76c2b scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x9b4f4787 scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xf4ad2e6a scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x6c66f300 pru_rproc_get -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0xc8e5477e pru_rproc_set_ctable -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0xcd8591e8 pru_rproc_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x1c97c003 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x542990e4 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5ddecde7 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x86a36a9a scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x878f27ce scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x04a315b7 pru_rproc_set_ctable +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x0af4f2fa pru_rproc_get +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0xd47b879a pru_rproc_put EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x102dca21 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x16c6e349 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x52bb89a7 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb493ed61 qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd0274bff qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x107e4280 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x217a145a qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x48e458f4 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5f867a88 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xbc67a1f9 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc219d69f qcom_register_dump_segments EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdcf33c74 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xed3604c5 qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf727c15d qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xda4108d9 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe5b2f883 qcom_add_smd_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6b980566 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x827fb8a1 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x8d720f95 qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9e45f9e2 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xad9ecde0 qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xdc973132 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe6c71a6e qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x0ec5401e qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3e183454 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x71eebc26 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x769393c2 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x8304e444 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd59a2951 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf0df3143 qcom_q6v5_deinit EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x8b601c01 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x5ed6b7e9 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x7c20bffd mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x3b9a4a3a mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x89c8b35b qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xd6f93381 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x4fe311b0 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xdebaac96 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x794c91af ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x045dc164 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c39232e cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ccca3bc cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13f03820 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19aaf296 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2352449b cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24475afb cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cd3f047 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2efdccc9 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34266d81 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3fd8c38b cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4049d838 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41be6131 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48b37123 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48c2df71 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59cd95d0 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x696d2522 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69b48155 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d61a7cd cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x750ec838 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79dd0c43 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7cd21f7e cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xcc8ec560 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x15bc9e74 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04cda568 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x070b7b3a cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c1f0f1f cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0fbf1b9a cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1550beb2 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x187fc27c cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25b37c9d cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30e22a99 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x313e9087 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31fbd1d1 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36b54866 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x377efc8e cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b8f791c cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3cdd8e3a cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x433573e9 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4cca34d6 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52f031af cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54487441 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b176e39 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6bfd4790 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6dc82dbb cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b07f7b9 cxgbi_device_portmap_cleanup EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9161141d cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92a9a4de cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x936dba24 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9402b450 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94b0cb47 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97e7b1d0 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa30749dc cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac48f1f8 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb272507c cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb536f664 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba600566 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba86066b cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc65fe17c cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc965768f cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9755f44 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8fa20b8 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb9395bf cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdee0aa36 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3c906f1 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xebb2414b cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88a69ea8 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c966b47 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x902aabc2 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x926252aa cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9521de37 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6e13ec9 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa747f3c9 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7411f81 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb990d76 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbcb8b358 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd3c1508 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd88ae3e cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc922785e cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xca0511e3 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbc2072e cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0967e97 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2739694 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd228b0b cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6671f7d cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe66d4584 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xedc8c9fe cxgbi_conn_tx_open EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf024726e cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4f37a42 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0604449d fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13062c64 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x199629d2 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2586dbe5 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x26837369 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2a9763ab fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c586bfd __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3dae6b59 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6fc23b16 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x70df47b8 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x72bb05af fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8312ed64 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9b7830da fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfee96b00 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x220a4b88 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2e24107c fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f04c64f fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4dcd2034 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5270d3b2 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6104dc29 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6167326d fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fba8977 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9859898a fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c4c1221 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6cde5f4 fcoe_libfc_config EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc37f323e fcoe_ctlr_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4b0a793 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe0ecff0c fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8ce488b fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcebd46e2 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcfd3f24e fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd989170f fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2aade51 fcoe_get_wwn EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x42f3c08d fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xfd977bd8 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0fc86a7c hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1a7761ca hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x249673a4 hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x26acb084 hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x38b3c246 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3d6cb76c hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x632a1861 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xce434713 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0ea31f7c to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1caac1da hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x255a6f7c hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x35b04160 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3a92d831 hisi_sas_notify_phy_event EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x40ac648c hisi_sas_get_prog_phy_linkrate_mask -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4155d6b3 hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x484253aa hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4844a733 hisi_sas_phy_bcast EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x57adc715 hisi_sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x59097b4a to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x641600b9 hisi_sas_phy_bcast -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6b42c3f7 hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8246af26 hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9caeddff hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaadbc280 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xabd6b4c6 hisi_sas_sync_poll_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x533120ef hisi_sas_sync_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5bd581b0 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x75015bcc hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7f9d3742 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x808313ea hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x855f35f9 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8e34c054 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9a8563e8 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9c9593b8 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9f858fb1 hisi_sas_sync_poll_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa2e8c0d1 hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa55e920a hisi_sas_phy_enable EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb4a3fb96 hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xba2db47b hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbde3060c hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb0b96d61 hisi_sas_free EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcbc2f0c6 hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd9933fc2 hisi_sas_sync_cqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdf2a736c hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd5e8a0e4 hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdaa3d967 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xde662718 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdfcb2d9a hisi_sas_probe EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe70d1866 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe39a40e2 hisi_sas_controller_reset_done EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf27fee4b hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf42c7122 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfcd53f90 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0f857a88 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x41d54d8b iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x729f0694 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc0f31be9 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd2409a46 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe37f35e9 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfa1cd216 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf3a0eb88 hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfa70546d hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x02a6b929 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0b776621 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x40b202f2 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4b60435a iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4fbc2498 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5cce488d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9b79f526 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x6635b0f7 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01488d13 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c6aa525 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c6de622 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0eb8584d iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11c4e273 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ad72489 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x116b9716 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12736a0d iscsi_session_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17feea3a iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19342d3f iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21642a2b iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a79a189 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2da762a1 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f392648 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3309f51b iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13917836 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x187bc1ab iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ee5cf52 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2844ac07 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x293dadb0 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f21685a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x318f0b7d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x365bd77d iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38b53691 iscsi_conn_failure EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e0a82fe iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40a46301 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45ad4b7d iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x462d1d4b iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48e8373c iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ee28d91 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x629f8de0 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d04e4aa __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e1a3c67 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x714b19dc iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7405f86b iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79783327 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82db13e1 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x874c6806 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dc5b1e3 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e4e9bfb iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f40fa9a iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4163d65c iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46d93b46 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48b1e41f iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48b7e444 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48e6e550 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5296f995 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f370370 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73239cf9 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x785bc018 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a4f38b1 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81ef4d71 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83aba9ee iscsi_put_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d6812dd iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9506ea04 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0b7327b iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4dca59a iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8a4b7e3 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8c18c96 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaedfca4d iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5babe4e iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6b65bfb iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf87eb80 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6fefb01 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc223458 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd20b75d3 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd34e6ce6 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd41713ee iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7af5890 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda608d2f iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfb5ce5a iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfd1308a __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe405237a iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe5dc23b7 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x942abca6 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a986231 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1097a27 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3610a8e __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa60cf33 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf5aba7f iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf6c6331 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbfc1c46a iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0624054 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc606fef4 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccb825be iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce3b5b02 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4f44f24 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7b11109 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd838e697 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe90f9382 iscsi_itt_to_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2f12c19 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16353fae iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x17fccbc9 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2bb6bede iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3aa97b8a iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3dd34465 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8dcf9ee0 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xab703a64 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc313e3d3 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcf6c6de4 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2d477f2 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe123cc41 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe1df158b iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2ae3f69 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee02293d iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee538c22 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf6ee5a97 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfb65834e iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06bd3534 sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0ce0c96b sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0eb0964e sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f968774 sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10479f32 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x109b7ac8 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x116103a6 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2941348b sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b50eaa4 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30a2cda5 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x33aa7493 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d0a3f99 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f0d41bf sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x40058f99 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45b608d2 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54e38a1a sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a496d2a sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b21c151 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x60a6442e smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x69038f16 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6913eb56 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c7ff3f4 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b5ed5c2 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c5b8aa3 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7eead4e4 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x812e9a3b sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84bd89bf sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x88f3c823 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x93d22c25 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9503d7b7 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x982cc1aa sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3d21820 sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda5b3927 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1308d0a sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe5df057d sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf432e7ec sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x7b63a261 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x047f2a2c iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06fb7994 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d8c14b0 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0db0449e iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12d232c2 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14bfd67a iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21bf0adc iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24e6acf9 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35aaf59b __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x362717cd iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb761d0d iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf055e320 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf79c1781 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7a8eb08 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdacea4f iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0a01cfb6 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13caab4c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3596f62f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x364cab23 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x36975afa iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3f7c460d iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x404cf6cf iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43c737f3 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54612832 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6ea05771 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x76465ea3 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe2120d7 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4fb1d16 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd843cc61 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe3715ce6 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe9ed1989 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfa0e8780 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00b82160 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02b4db78 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04c4456f sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18a04148 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x250c2b43 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x25247005 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3531f8a9 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b1ee2e5 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4446e481 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b92e5cb sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c020312 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d8bebca sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x645c6d99 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6466e8b7 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7bdbd3eb sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7bfd33b1 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ea5cbbe sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99895aae sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ad8c5bd sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa70cad49 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xac9e6bdf sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9ecf0bc sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9f05c4b sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc06fc6b7 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0cde494 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc19ae474 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3f284f4 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc613d337 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc75643b8 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce4451d8 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcf947c9e sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcfe87ee1 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeaf01d20 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf041cc0d sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2813376 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf32b1a22 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x7feda900 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x044090dc iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07609147 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0aa572b5 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b7134a3 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c8da397 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1512dfeb iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1bf85289 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25c6ce16 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27946e17 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2dd0b087 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f20afd2 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x327ae9fc iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x333cf201 iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x363ef721 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38b0d82c iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39317736 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4766509a iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b76b951 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c113beb iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4085b8fa iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54679369 __traceiter_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a5679c2 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6214b29b __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x687463ba iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x587cec3d __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b8f0a04 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bf127c1 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60598aae iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60791c9b iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69c65575 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c2056cb iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7001cace iscsi_create_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x730f8f83 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x768c6861 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77a70881 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81e68e3f iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f827f3d iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x85d81ba3 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87774ddd iscsi_find_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fee2ca8 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91d7c775 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96dd3f29 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa362917a iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89656a37 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c029045 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93ec5216 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9417de56 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x983f9594 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cb2ee63 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa223190b iscsi_remove_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ac06cf __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa860ec90 __traceiter_iscsi_dbg_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad106f5c iscsi_post_host_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb32662a6 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4ede703 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb575eaff iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb64643b7 __traceiter_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0eb25df iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0fa409a __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe21b431 iscsi_force_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6264e7a __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf6cf4df iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1a578a0 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1ddd810 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd2d631f6 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5e6b1ed iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8405143 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcbaa07e5 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd64ee9e8 iscsi_add_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda09b986 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe27bcb9c iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3c1c03e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfc75607 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe02abf6d iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0dbbf88 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe130925d iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe21a4c59 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe389a2d1 iscsi_register_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe74b7f3b iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb8d7582 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf404ef37 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5bd3dc6 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf694992f iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf860f9db iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfaaabb05 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd35af86 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1ccbabf5 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9a399ab1 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa11cdb27 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfd94cf6c sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebeaae0d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xecf82be0 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0193b80 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb26812a iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff3de298 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x067f5d06 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb4d1ad67 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd1f00968 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfc7ace09 sas_tlr_supported EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x8f5eac70 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_spi 0xf3cf8ae2 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x071af470 srp_rport_add EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x339a6db0 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x355da458 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x402a7896 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8732ac5d srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb7a3a183 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfee22e5d srp_rport_add -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x08434c1a __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x41244c15 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x982990a2 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa6f79d03 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa7997bae siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc078cd16 siox_device_synced -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0db1a846 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x15140331 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d5d098d slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22b180a4 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x29829f37 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2f84d258 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3cbf4421 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5aa28ea9 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b090c82 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5b659cb1 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x67fbfa7d slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7122fae5 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x74993c89 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x85b7d361 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8dc563bd slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f59b8aa slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad829602 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3790f87 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcb8111d9 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcf0c9b4d __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd5ad4b44 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd8974785 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe421eccb slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xec37d655 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf7267722 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc60fd1b slim_stream_enable +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x24208e5e srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x292b521d srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4465bdd2 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb568d6be srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe46c4d9d srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x28dea739 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2c26fea2 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5f915055 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x986550ee siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x98f9cdd7 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf0ae1b57 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0d500922 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x104d8398 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x13aa1e90 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x165f9678 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x22e27f89 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b366d64 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x411a75bd slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54a5ab90 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x64531db0 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7020e2bd slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70fe091f of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x76ed95ca slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x81611397 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x83f1b318 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x848b4d4d slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x949460be slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa8adcec9 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xacb89a0d slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc63df964 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcc00b2dc slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd150bebd slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd2b7c97a slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe75631c1 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xea5bff71 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeb73689f slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfddf3e0d slim_free_txn_tid EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xc7b77a27 meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x155fbe02 apple_rtkit_poll -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x226180c6 apple_rtkit_wake -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x3affb006 apple_rtkit_is_crashed -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x420cdc71 apple_rtkit_reinit -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x49e26bd5 apple_rtkit_idle -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x74441a85 apple_rtkit_send_message -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x78edb3ce apple_rtkit_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x8ac9892d devm_apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xac01bf5e apple_rtkit_start_ep -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xac585681 apple_rtkit_shutdown -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb10db87f apple_rtkit_is_running -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xc8ba5e6c apple_rtkit_quiesce -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xcdfc4a86 apple_rtkit_send_message_wait -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe64dd14f apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xf23c7985 apple_rtkit_boot -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x35cd0e32 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfef62a5b meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x01a1efe1 apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0f226fbb apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2a7fe45e apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x501c9630 devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x562ccefe apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x6153977b apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x65f865f0 apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x6f2a0ef0 apple_rtkit_poll +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x742b2931 apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x7d2ac0bb apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x82f1babc apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x84f4ce91 apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x90d8adf0 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa6c60f45 apple_rtkit_idle +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe99864b1 apple_rtkit_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x73697f5f devm_apple_sart_get EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xbaec16a4 apple_sart_add_allowed_region EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xf2253fbc apple_sart_remove_allowed_region EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0f38c18d dpaa2_io_service_register EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1e56648b dpaa2_io_service_deregister EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6bfe223c dpaa2_io_service_deregister EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xa9d5c81b dpaa2_io_store_create EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xecdd4188 dpaa2_io_service_register -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x2cd7af0c mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x509077ce mtk_mmsys_ddp_dpi_fmt_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x561c9570 mtk_mmsys_vpp_rsz_dcm_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xcbfca3e4 mtk_mmsys_vpp_rsz_merge_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xd0bfb673 mtk_mmsys_mixer_in_channel_swap -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xd3db0397 mtk_mmsys_ddp_connect -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xd722908e mtk_mmsys_merge_async_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xd8c342b9 mtk_mmsys_hdr_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xfb64e33e mtk_mmsys_mixer_in_config +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xbf05a7d5 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x0e3bfc9d mtk_mmsys_merge_async_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x37e9f77d mtk_mmsys_mixer_in_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x3f045c19 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x46b4bf3e mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x67088b5b mtk_mmsys_hdr_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x7d6b28d6 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xa12480f4 mtk_mmsys_mixer_in_channel_swap +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xb34de142 mtk_mmsys_vpp_rsz_dcm_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xb984d970 mtk_mmsys_vpp_rsz_merge_config EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x1736cec6 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x1d6696b0 mtk_mutex_disable EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x2fcc9ff2 mtk_mutex_add_comp @@ -17349,34 +17368,34 @@ EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x71a9a3ab mtk_mutex_acquire EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x7534596b mtk_mutex_write_sof EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x8c90882b mtk_mutex_get EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xbdf4e7cf mtk_mutex_get EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xfa95f801 mtk_mutex_write_mod -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x37a088f1 gpr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3e9096fd gpr_free_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3ef0d2c7 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x4f342b58 gpr_alloc_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x87d23f69 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x915c967f __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xb4a09d7e gpr_send_port_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe5060a0a apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x0b1d08d2 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2e4f46f6 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6bdca466 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x6da4dd13 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7786f7b4 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9bd39ae7 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe484b72b apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xf8fed778 gpr_alloc_port EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x11bffb48 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x2c62b79a qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x95f3cd47 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x9e5171a8 qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x1248ccb5 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x349543fd qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xd7d3fe44 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xd8ec1f7c qcom_mdt_read_metadata EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xb19f4904 devm_pmic_glink_register_client +EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xaecfa9f2 devm_pmic_glink_register_client EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xc161d729 pmic_glink_send EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x50d28b20 qcom_ice_evict_key EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x82936acb qcom_ice_enable -EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x925a9652 of_qcom_ice_get +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x9390dd50 of_qcom_ice_get EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xc994d57b qcom_ice_suspend EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xe4280d97 qcom_ice_program_key EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xf0e63b1a qcom_ice_resume @@ -17385,554 +17404,556 @@ EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xe583bba3 qcom_smem_get_soc_id EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x086202ff pruss_cfg_get_gpmux -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x2239f608 pruss_put -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x59b986e5 pruss_cfg_miirt_enable -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x62dd8650 pruss_release_mem_region -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x7690d6f1 pruss_get -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x7e500e17 pruss_cfg_set_gpmux -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xb90f7af1 pruss_cfg_gpimode -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xe506f140 pruss_cfg_xfr_enable -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xfda543cd pruss_request_mem_region -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7f33fe5e __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa17a2e40 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb4dd500a sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x65be487a sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7c7948ab altera_spi_init_host +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x16aec61c pruss_release_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x4ed7169e pruss_request_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x508a74d6 pruss_cfg_gpimode +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x6a140367 pruss_get +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x8e344657 pruss_cfg_set_gpmux +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x9d0b1f4e pruss_cfg_get_gpmux +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xa68fc342 pruss_put +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xcefb71cf pruss_cfg_xfr_enable +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xfc13bb5d pruss_cfg_miirt_enable +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0c5ac80b __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x2e86a041 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x95e6c32a sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xfd758d06 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x2d780246 altera_spi_init_host EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4774cac1 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x65e1fd20 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x97c3621d spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa1721270 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd40bf281 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe615c0e3 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x1e9866da spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x905741d9 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc061432e spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x04db5e16 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0a16a5da spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1aa4dd6c spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x329dbfb5 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3929cfdc spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4747df0e __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53669348 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53881606 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53c240ba spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c12e0f1 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7240fe7c spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7d3178fd spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f529d34 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc143747c spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc40672b9 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xce7ec4e2 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8c64f86 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf97a81c4 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfb0145e6 spmi_register_write -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xf275ce02 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0b1156dc anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2af15923 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x462456f9 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x46bd21d0 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4e371ed3 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5635c116 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5d2693ea anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6df57f29 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8a90c1d3 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9374d070 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x98955e9a anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb2819b04 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc4009f99 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1845cfcf spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2cd64e88 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4d4ed11c spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa9b9d875 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd5c14897 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe472f2c7 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x659a8569 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x693130ae spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xdbc1f258 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x01a0f899 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03caa1c0 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0826b9a5 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x124ad7d7 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x16390eb7 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4702a83b spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x485958bc spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x57b643a8 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c06ab63 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x606f631c spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x629b5479 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x62d0b65c spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7c730438 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8f85ff92 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8ffdcd2a spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9ebfe035 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa6249ac8 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcc962405 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9e9a718 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd383d95f ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x48976c09 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x50e3119d anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5c25ee43 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x797dc031 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8e8334c0 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9f8741b0 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb488ea26 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc23558c7 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcb116150 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcd126b22 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xde1e64fc anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe1031b88 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf4adec6f anybuss_read_fbctrl EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x41abfb44 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x81efd74e fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9937cf1a fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xae187609 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x030c234a gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x12896bed gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x155d4c0c gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4e5b8b2d gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5e23ded2 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6e962c51 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x70fd34cc gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7f0ade62 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x83436608 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbd500b22 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd845a129 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdf9186c8 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf027605a gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0649591d gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x08a38293 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x100d0ce6 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x31d67c40 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x412e60d0 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x41a2377a gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x53c12118 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5a82f9fa gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x77062010 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x95fbeabe gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc4d88688 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc5b0b4b0 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc6122aea gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6563e34f fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc490f02c fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc89d9c70 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf23237ca fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x012cde54 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3fde3e6b gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x73157a1b gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x762d897e gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7983d2bf gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7aa6f7d3 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9bd0c3cc gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9eeff2b4 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa2a66382 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc682b765 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe05aea4b gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xea20af0b gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xecd194e6 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x01dffc39 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1c75c5c0 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2653c110 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5e53fd60 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6a081cec gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9c45ea56 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa5fc71e1 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xadcff784 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xba97c1a8 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc8359f55 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd66928d4 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdbb22ea8 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf1fb77df gb_audio_gb_disable_widget EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x26201af7 gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xf5f2bc48 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7753f2c6 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xf1ff5318 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x32bc7c56 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xed581cfa gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0bdb6128 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x9c1352b2 sp8870_attach -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0b80e4a1 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x15854812 imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x17aa334c imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xe09aad8f gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xffe2cc2b gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x561005ba gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xdf4a4220 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x3c61fe04 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x4783f3fa gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xd568fbf9 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x204529fa sp8870_attach +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0af1641d imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1728ebc1 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x28dafbf3 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x34d29da8 imx_media_capture_device_unregister EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x41dffcb5 imx_media_capture_device_error EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x54efe19a imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x57857120 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6cb6476d imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6edca759 imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa52509d6 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x54f0db6d imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5b9aeb38 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6669267f imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7692ab01 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8e5e77c1 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9bb3d7eb imx_media_capture_device_init EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa63ed5ad imx_media_capture_device_init EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xad17f251 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb027985c imx_media_pipeline_set_stream EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbc237201 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbc50176d imx_media_dev_init EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc884ae9e imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcd9ec310 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc586c4b3 imx_media_free_dma_buf EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe65114ac imx_media_free_dma_buf EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe9ac4323 imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xef09c11f imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x03e60308 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf1360378 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf142db0a imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf8b762b6 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfbbabd78 imx_media_add_video_device EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x12072bcd codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x19d6cf01 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x13232512 amvdec_write_dos EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x25e38938 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3ae5ff6d amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3fdad65a amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x49de186b amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5100e372 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5415ebf7 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x550b12e0 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5e44405d codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5f6a92dc amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x216e888d amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x29ec8ba3 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3ad9fb17 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x3e5d87a1 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4fc34ba4 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x50fc74e6 amvdec_read_dos EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x701bf7f7 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7e29e60b amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa5c3348a codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa8a2b516 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa8f9a95e amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb63027ce amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe1ee45a9 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf49cd04b amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf993324d amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x3484d9fb nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x61ec9b3e nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x815eee41 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6ac82081 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6db22661 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x854fd22d amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xadd899f4 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb114b7d8 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc3d9e5d4 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xce3e5cc4 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd1834994 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdba123a9 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe0423717 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe0a8948c amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe114b009 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf2309f91 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfdd5c452 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x1097fa45 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x932a93cc nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xbc084cec nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x00bc79cf target_init_cmd EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b9b3376 target_stop_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x45d4e5ac target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5611b424 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5704b06f target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2fefe083 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4389dcb9 target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d24150b target_free_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x81a63fe5 target_submit_prep EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb4489234 target_wait_for_cmds EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc65e34a6 target_alloc_cmd_counter -EXPORT_SYMBOL_GPL drivers/tee/tee 0x152c0a7e tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x25b020b9 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x29a5f175 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2bcde15c tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x49a396ed tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7367dbb5 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x770de424 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xddceea82 target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x001b9489 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1076188b tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x10c2840c tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x14d74c2b tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1545e810 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x19937f74 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2bb59485 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x38c2fbfd tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3bed5d6b tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5f3fa615 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x71e60412 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x82159bc7 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85eee337 tee_shm_get_pa EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x90fc4ccd tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x92baac15 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x971f5823 tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x981f06e1 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa0f7f9ec tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa648990a tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa9bff26e tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xabc59ca8 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0xba3ceec5 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc1bd5f40 teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc389f962 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc0a42cd tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xccf29ed9 tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd8e98c15 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe3c9b954 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x682ff618 st_thermal_pm_ops -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x7a274191 st_thermal_register -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xe83daf7e st_thermal_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9bcf0d69 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xac840a45 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb94d9014 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc59aa328 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc7e6e948 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe32884c7 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe59978d1 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xefd20bf1 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf6777672 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x3befb8fb st_thermal_pm_ops +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xa733b82a st_thermal_register +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xb977d57c st_thermal_unregister EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x07613c62 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x10e3d8b1 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x24d35370 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0e7e5ace tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x173f31db tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x189de4fd tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1e815995 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1eab4112 tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x50ae2ee9 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x578897eb tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b042253 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x548d682a tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x63162e28 tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x67e635a3 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73710f9d tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6742a561 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6b352c2b tb_xdomain_find_by_uuid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x751dbc8c tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x783c9bd4 tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fb2baa7 tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8ea759c8 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9ac9ffcc tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9b4256b9 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8d49c41d tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9aced5e8 tb_ring_start EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa97cf0f3 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaa71e551 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaba2e991 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb631ebe8 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaebae17e tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbc9604a7 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc4ebd806 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc55dced1 tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc6d6d71c tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd525d74a tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbae39e50 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc52ec9de tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdacc33e8 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdb93703b tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe616a216 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe76d413c tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xebbdb5b4 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf0cfb323 tb_xdomain_enable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf266fe36 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf549068e tb_ring_poll_complete EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfdc31dc3 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x03a71504 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0b826486 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c09dad4 ufshcd_system_thaw -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x37e82950 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x39fbd1df ufshcd_mcq_config_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x47ec0743 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4bc6db4a ufshcd_mcq_write_cqis -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4cdbf831 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x50a3e902 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x52a1805a ufshcd_system_restore -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x599e629d ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5e6840a8 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5e9d1426 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x61dcc8a5 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6a29c563 ufshcd_mcq_poll_cqe_lock +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfcf60afa tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfd63023f __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x13729d54 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x29df933a ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2ba30ce7 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c81c414 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x41104a15 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4ca6a0a4 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x59a75fe1 ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5b829a12 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x603506a3 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x634f0648 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x65b89a8b ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6d51e710 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7094bc52 ufshcd_link_recovery EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7d8ebf11 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7dbe49ee ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8b8aceb4 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa2e6911f ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xaa7124a7 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb091e47f ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb417b84d ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb4f92105 ufshcd_system_freeze -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbb3896f0 ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc03246d8 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc4cc5a1a ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc710c3e9 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcf46d47f ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd1898ca4 ufshcd_mcq_enable_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe09bf961 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf76bc979 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfccdb51a ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x761dd1a2 ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x87bb5850 ufshcd_mcq_poll_cqe_lock +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x97da7aea ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9df24e54 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa322c7f7 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa722deae ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa86a6338 ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xade8751d ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb3a77415 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbbf6a3e3 ufshcd_mcq_config_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcb53b872 ufshcd_mcq_enable_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcbd7fe90 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xddd7dbda ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe6d81c9b ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xed2a329f ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xeef43bd2 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xef4cab54 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xefb58fa6 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfd57c6b9 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x1fa2db07 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x72cbe264 ufshcd_populate_vreg EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff6d365a ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/uio/uio 0x9a654430 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xad7cffd8 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xe2930d06 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xed75c045 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x05179592 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4ce59dd8 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4fdd6605 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x532543cc cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5b5dd05a cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6540f7e7 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8408cf4b cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb0809699 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc0fa478a cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd7ba4afe cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfd41ab0e cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5d39526a ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6a69e1db hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x93b30181 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xad91cbbb ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1bc1f12b imx_usbmisc_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x35bc9d53 imx_usbmisc_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x602e9b39 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6dcf23d3 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc29e6133 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xfe302932 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x342f7f98 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x56c769a6 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa6373b6f ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb1181899 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc1350a9f __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd1f20f96 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2599c58b g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2f479651 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x520b942e u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x538dc016 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5390a05a u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5398d981 u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x682cd2b8 u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x73f9fa7c u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x76fd85df g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x88cf5932 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb54fcb12 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbd448c59 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc020e039 u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc0a4ba45 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf2dbe6a4 u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01411b7c gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x060068da gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x11a786f0 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1fe91e1b gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x278aa1b3 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2aae0cb5 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5794ee77 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x590e4703 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5dd7b25d gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x64a9b198 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6663cd66 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6819f526 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7ff5525e gether_setup_name +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x94e71c70 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/uio/uio 0x12ab2287 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1bcef56d __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa8639155 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe403d270 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x465ccbc9 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x569aad04 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x14b20078 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x28aef051 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3dcc733b cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x50b98ddc cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x69f5073e cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8b02ff2a cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9e7e5053 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9ea084a4 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xac349b31 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf73ccda2 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x507487de ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x51f690ac ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8acd4088 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9cf72936 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x053dd0fb imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x35ac8b0f imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8ed01f54 imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x99e4a580 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb386247a imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xffd66281 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x043102e3 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x17493bb5 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x29a370d5 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4e7c4c7b __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdf72c698 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe7b45ddf ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x12915d93 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2e3a9863 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5ec2d6d4 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x60c326f8 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x63cb2cf1 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6fa3949c u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x72a12429 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x88b12f99 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x892eb8dc u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa45ca694 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbb5a57d9 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbfe97e1e u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd90afe14 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdeec2208 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf1dc51d6 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01d8316d gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x09a6a6b8 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x184b324a gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2165076c gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x294780f5 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2d8c7cb6 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x51e45e1a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x52b626af 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 0xa024a450 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xae67ccb3 gether_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2a864c3 gether_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf7adbd32 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfe7e6d38 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x22a49c76 gserial_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x31a6cc11 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9ce8f96a gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa45a13ba gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8454325 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xab8e5815 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbac0dc68 gether_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc6d75a85 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd72169c7 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd8a595eb gether_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf82798cf gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfeb90778 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x207ca947 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4e61032e gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7bfc67d3 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7e5915c7 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc65a388a gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc6c5850c gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1401f3a7 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2789dd99 ffs_single_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x99c0e434 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x00e84757 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x032f4512 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x075b20ab fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0c906171 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd30458ae ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0435ee81 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ee8da21 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x10a411db fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x13c62ddc 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 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1cfeff67 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x26527544 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1e4754d6 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x22d441af fsg_store_forced_eject 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 0x2c660fff fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x37bd650b 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 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3e0b837e 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 0x44d471d2 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4f8e971a fsg_store_inquiry_string 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 0x579e300b fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ca0f62d 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 0x73f82690 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x76f9da55 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7043cfea fsg_show_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 0x8b2bd1e5 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9538f994 fsg_store_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 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa4fddd67 fsg_show_ro 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 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3396a30 fsg_store_inquiry_string EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address 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 0xbce3afda fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xba7c127a fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd131024d fsg_show_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec7009e2 fsg_show_file -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec864de6 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeb0707b2 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xef8471b4 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1609b21 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 0xf960cf91 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x004a8ed9 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x36a6f408 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3e4c5a94 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x442cc11f rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4ed51c76 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x54778a60 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5cb92709 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x688009c6 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6a339adf rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x885d08a1 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x99bcdc09 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9a601d93 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbade898d rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeb1acf90 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfe56d79f rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x037e530c usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0ad688f7 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfae73ccc fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x01bedb76 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x03c835c9 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x04a1adf2 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b69a528 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2b6bb905 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66aac551 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x72bd5d9e rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x764fd1f1 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f20af1d rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9b6e0879 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa09db49f rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb760dbd8 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xba3387a7 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xea98f20c rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf0085f6d rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x076b8d61 usb_put_function_instance EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1254eb7a usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1c34366a usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x20dc7686 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x254af009 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a463b1d usb_free_all_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d9fbc66 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2deaf723 usb_ep_autoconfig EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a01a196 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40a139e2 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4516cb0a usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x309ff616 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x34cf16d8 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x394b31d8 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a3d6ef4 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a9b6dff usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d328315 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4402aafe usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x491b7cdd usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x49a9bd92 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a34d118 unregister_gadget_item EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58e08a17 usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ec8b656 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b8dd3c7 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52d4edca usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56174434 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d386e2e usb_func_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x715e1520 usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fae09e0 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80da5a61 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86f82ccc usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8aac4198 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c4f4da6 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90daa40e usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa2e9c769 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xade61e05 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaf5ea330 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbbe5952a usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc09dba5c usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6cb8d0b usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc1be280 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0c7c460 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x79a7d2bb usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7baa1cfc usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x85b4dc5c usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f485ba0 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9005b07e usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9052a3e0 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7d5ae89 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9a14940 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xabe35553 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb19948b2 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb224f422 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb7115f55 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc0a4dcb4 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca0e542b usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcfba1feb usb_remove_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd98b9962 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3b8835e usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2d4aea0 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb78e25f usb_otg_descriptor_alloc EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd7e2264 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/rzv2m_usb3drd 0x9f395034 rzv2m_usb3drd_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1c7d2258 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x343740ec gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/rzv2m_usb3drd 0x0c2807e6 rzv2m_usb3drd_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0bf4efe5 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x267ad37a udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4ed3d03e empty_req_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x760186c3 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8b75b74a udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9c0883cc udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa64e83b0 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb7d2ca4c udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe395e4f0 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xef93b9b9 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6c321973 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x75b81161 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9bea62c5 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc036facd udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xead94bd2 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfa814062 free_dma_pools EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0064d469 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01e2950c usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08e34bb5 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x07b37a53 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c088661 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x22f006be usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x28934043 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x296c4fed usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2a48ba39 usb_gadget_set_state EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b319e7a usb_gadget_set_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2f23b94d usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2fbe9b44 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3193528e usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x39871dfe usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2d57c4ae usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x34cc7e48 usb_gadget_frame_number EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3fb49939 usb_gadget_register_driver_owner EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41201df8 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49ab3947 usb_del_gadget_udc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x58b47c68 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6ba789dc usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6c0c84bd usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6fbe18c0 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc04084 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x668314fd usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66ef5cd8 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6e571186 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x741b03c0 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x75eea37f gadget_find_ep_by_name EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7f4f7598 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x85fffa5e usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8b69f29c usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8de9b4c1 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x85f95009 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a75c519 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x916654dc usb_gadget_check_config EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x94b1daaf usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa64194d1 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9a585600 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9f9c0be9 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0d3c3c7 usb_del_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xad068855 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae4de31b gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb98e0470 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xad055f03 usb_gadget_set_remote_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbb8b2e53 usb_initialize_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3ff93f9 usb_add_gadget_udc_release EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8bd9ee6 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcbf713d1 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd4a76efe usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd845c604 usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3e343c5 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3f30353 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf11e062c usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfbe9b36b usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x4b5e010f renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x0602b39c xhci_plat_pm_ops -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x9d352914 xhci_plat_remove -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xeabe0bc2 xhci_plat_probe -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xcf853a1b ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe35ecd13 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc86dad9 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xddbfcf03 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1e9e64e usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe3e5184e usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe5994f73 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x82b8aab7 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x08df6e18 xhci_plat_pm_ops +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x74dc0b85 xhci_plat_remove +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x9a8af801 xhci_plat_probe +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x08a35007 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9f8636ba ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x23254ebd musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x14618ebe musb_get_mode EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2d73630c musb_get_mode -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4fdf9895 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3c2cc3a6 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x65804e8b musb_queue_resume_work EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x722aaa27 musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x96c7e4bc musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x9a3153e3 musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc951d727 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7160be00 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7a1df658 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x980394e0 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xae894ecf usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xb128b5e6 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xa575fc7c isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x34157c5f tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x3e2d5cd3 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x69fe9d9b tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xc057882f tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3fddca77 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x02cea4a3 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0a59d686 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x23983237 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2640a5f0 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a739564 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3fff623b usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4088f63d usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x463e45a1 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bde1d16 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x79bcd3cf usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x98a9e580 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9de4ae79 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa2f9ff22 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa35dd122 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae7be045 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbcc44bc2 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7ab3a31 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd7b2f127 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe307b802 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xebdfa14c usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x0ff899b7 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xded0894e dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf1d5c08a musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf761be88 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x0dab0f19 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x3d45a2be usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7e749658 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd549731f usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd859aa57 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xdb04432f isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x24b5cc9c tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x8e21fc56 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xbdb7a92d tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xf3f3bf47 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x586c082a usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0bccbc83 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c634549 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x22253e7f usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x235c3810 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44340ec7 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x462932ae usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5229a397 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x595c6bdf usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d1ed9f5 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d6d47ef usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x92a299d5 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9922ca2d usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9aa5bc1c usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb465cd6f usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb5b65381 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb9e7c367 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe657dc2c usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe97ea5b5 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xebd28aea usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf8d645f4 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x1eeb93d1 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x6531a64c dp_altmode_probe EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xad50e1ad tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbb9b7da9 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x727193bb tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive @@ -17942,222 +17963,221 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xda86a83d tcpm_port_is_toggling EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xf559c4a8 tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x001aa296 usb_power_delivery_unlink_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11f1652d typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x13c71cee typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x14df2d5e typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x15367067 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16fe239f typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f3d1f17 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x241e9b35 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x294b2822 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0494f78d typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05533be3 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x05fccdc7 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x062e718b typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a83ab00 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e2777f1 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e6f0166 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f7b660f typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1c48b8d2 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1ef373f7 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2398604a usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x262425a6 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b2aaabe typec_partner_register_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30e5bbd4 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x372e4bb3 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a428c1b typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a643fc2 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e90afbd typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3fdcca18 usb_power_delivery_register_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49ff0853 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53762f14 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x53fb5fe7 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x55f63a93 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x574a7c8a fwnode_typec_retimer_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x591ac7b8 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b616b91 typec_retimer_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c6d852f typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5d4ef1ed typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e87c93a typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60753496 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x660f0c66 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66e590bf fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x673ea80f typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6837fcf0 usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68446164 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30a9fdeb typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30aa9647 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x37dde81b typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e78e1a0 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45d6ff25 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ce970fc usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x536e3055 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54c7c5df typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57e93836 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58b27cd5 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b150964 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e21ca98 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e335648 typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e8d8026 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x654ba3c4 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66fc71e0 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6859dc13 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68fad304 typec_register_plug EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75448ad2 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77402f2e typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7839f07e typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x798d319d typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b1fdcea typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d830ef3 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6dcc1089 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e67f4fe typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f08bdc1 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ac711b4 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x85acf173 typec_unregister_partner EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86a6093a typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86c3a1c0 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x881dd11b typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x896a3935 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a7af4a0 typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f453168 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8bf60d8d typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f983447 typec_unregister_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x904a7e54 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x975e2514 usb_power_delivery_link_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x97e8fbc4 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x994247ee typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a238419 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x936f6aa2 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95c5f2c0 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99b50cb8 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b82c37a typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9c6004bc typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9cc48f8d typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa15af84e fwnode_typec_mux_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa43a1dc0 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa50499a6 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaa8048a8 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac8235f7 typec_port_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xad9068cd typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1d3857b typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb270a68f typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb52b9c7d typec_partner_usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb9b6f13 typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbe32e9b9 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc4ae69b0 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc7d83dde typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc7deb9ac typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf53b6ef usb_power_delivery_unregister_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2cf5831 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa40dd546 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa61851eb typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab510fb3 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xae3d1e22 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaf26db55 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb48522cb typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9d94b90 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba05d4c4 typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbc6e6102 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbe4b4fba typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1ce63c7 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf484f64 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd04fe7f4 typec_retimer_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd6113134 usb_power_delivery_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd86f1b64 typec_retimer_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc6f87b0 typec_retimer_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0123f11 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe19e858e typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7f76189 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd80d2023 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfd2d9f3 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfe195e7 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe044e9a1 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe3088b69 typec_altmode_update_active EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xedd2eef9 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xede53b21 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef1419fc __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef74d6a6 typec_cable_is_active EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9f08094 typec_partner_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc886485 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf44242e6 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf99b29f8 typec_set_orientation EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1db2fd6c ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1ea0c852 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x26b375d9 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x37d7bf1f ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x572033cd ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa7bb6558 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa9df6baa ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaf550aed ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc17688fa ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x045814a8 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x36b55c69 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4b760f87 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x556efe4f usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x64d9a9d7 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6dc3c209 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3f37344f ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x61c4612c ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7682a7bb ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x82b57ce7 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x878ccfa1 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9f50f490 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xae87b6bb ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc0548336 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xcbb1015f ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x04379c46 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x08c54d3f usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x12333050 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x28909c0d usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x468c820a dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78fa24a4 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x92acfd41 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa6cc846d usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcecdeddb usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x85cd6501 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9a43dcd4 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9dcab1ac usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xadc4d75f usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbaf9e7cc usbip_recv EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdc432ded usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe093cd03 usbip_stop_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe29a76d0 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe837109c usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfdff4d82 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0f97f2a8 vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1a5a1519 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4db1b023 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6682c01d _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x82ba823d __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x87dd77ae _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x882cdaf8 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbd620369 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc2582559 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe29a9dfc vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xee976865 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x10d3f6f8 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x8613a096 vdpasim_schedule_work -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c05e275 vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x104d3fa2 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x121b67bc vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4be387be vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf0039ddb usbip_event_add +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x266e715c vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x41e2d93b _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x56ab2adf vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5d86eda7 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x72c9ae68 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa7e18c4d __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xab1daa94 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb1f51897 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd5cfc128 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf1e29bc9 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfbb17eed __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x0abf7455 vdpasim_schedule_work +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x7dfe56ca vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x040667a7 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c0ba023 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1bff024e vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2e87484f vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2f36d4fc vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x32ba8778 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x372bbaf1 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x38888f23 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x39c89ddb vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x44079dbb vfio_pci_core_match EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5932f0eb vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x78202d17 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8ca32b1d vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8f5b8c75 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x91c58fbd vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa2949ea3 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa5b41e4f vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaeea4a22 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb057f279 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbb9ce028 vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbd30116f vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc369b74c vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd7630e5b vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe6109a6a vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb199139 vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x1394542c vfio_platform_open_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x188fcba9 vfio_platform_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x1e680598 vfio_platform_close_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x30c1779e __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x720d1ebf vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x97f386ae vfio_platform_read -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xaa2fb60a vfio_platform_write -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdb723d74 vfio_platform_release_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf5da44ab vfio_platform_mmap -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfa37d377 vfio_platform_init_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x12ab3644 vfio_iommufd_physical_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2055250d vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x33bee852 vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3931e99d vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3a4d89ba vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48d61c00 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x56ff1792 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5e46016d vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x71d242c9 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x94a36176 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9e7b4c7d vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc368c4ce vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd2009c20 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd507d594 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe3c4337e vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x0aab1f3d vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x1cd064fd vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3efa9cc3 vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3fd40b15 vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x71b39cb6 vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa5eccdd5 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xad6f4c85 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb2f375f6 vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe91e0d54 vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf3a2ff1d vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x08671028 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x144a6432 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x19fd8564 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x225b05c2 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26271c9b vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x269a9aed vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3628554a vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3f882bf4 vfio_virqfd_enable EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x53c7d462 vfio_iommufd_physical_attach_ioas EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60eec034 vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x621a5fcc vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6a1c37ac vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x71ac30d7 vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x73219d2b _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7a649d66 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7a97a679 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7c6e3b0b vfio_iommufd_physical_bind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x82fa9f11 vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8abe95e2 vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e98d0b5 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x90bd073d vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x977e8320 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9968bafb vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa6201647 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd267c945 vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd8201c9b vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x00a5dc23 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x17e2db72 vhost_vq_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b06f2df vhost_vq_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25b9dcbd vhost_worker_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x34c4ae15 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3af1f05d vhost_vq_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x432e8fa7 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a576b97 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb33680 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53fd2257 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ce9f349 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f04d494 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x624b0ac2 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63480dde vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63804163 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63a26d0e vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ef3e58a vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x73aaca73 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bfe9667 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88394134 vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91e4ab2b vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x971b7dfb vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9cb3e42d vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa15061ae vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x84c83c7d vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa2731565 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa790159d vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc260aa4f vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc310b8c5 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc9079865 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd6882f00 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd7b52f65 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe0f08fbe _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf8ae72a9 vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01c757f5 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0654df47 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x070a5899 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x105d0640 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19eb3c34 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f2e7b88 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23a95d24 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25c28046 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2be3e239 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36f63a2a vhost_worker_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44befa1e vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4953b920 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4c214934 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x55c6f1d5 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x570bd0c1 vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5db17638 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e7fda53 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cc96892 vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7245abd9 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b43cbf1 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7be7bc2f vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e1625d7 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8592b5a5 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0b3584b vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3348aea vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa7b28620 vhost_vq_work_queue EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa928e9f9 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0a62d48 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf98c923 vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7e2bce8 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf09b497 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd283a7c0 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3feb5f7 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4252998 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6097334 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6d51ee5 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8908515 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf05a4c3 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb37489b vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xebbf79bc vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2fdcfd2 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa3f7955 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfc968453 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xacc51d9d vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0747854 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc70030e8 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbadc2df vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce3b0a64 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfca6d4b vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd48a5741 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6f50295 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc8f6dd2 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe77e6607 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe79cd1fd vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec1dfd73 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec3a572d vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf246bcd3 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf66bb027 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb0a3ae3 vhost_poll_queue EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfdca5c4a vhost_poll_queue EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first @@ -18168,397 +18188,397 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x09942b9d ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x56a174d2 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x69358c74 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa8acce0e ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd3bc4eb7 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd66c7790 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe28a599e ili9320_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x18d7909c fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x758f3153 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb28126d9 sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x037c2a1d w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x0eb59a5f w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x14789b18 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x29d22a00 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x47947bd6 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4a2da1d9 w1_write_block +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0995acb1 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1b78d109 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4ff8c6d0 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5dae817e ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x771aa1d2 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x77bc125b ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9b977ad8 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x4d9e522c fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x34563cff sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfcbaf94b sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0c1e55e8 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x17ff48a6 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2da1019a w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3d4c1603 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5562f260 w1_read_block EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9adbedef w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa89cdb74 w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xad30a6ec w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb6c136da w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf1bb2006 w1_touch_block -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x5610bf1d xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa2e41b81 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc70f4acb xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe0302e40 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf0f5a83e xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x1dd8b047 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xd91ffd50 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x20e0150d dlm_posix_get +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fb05290 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x852ae3bd w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8534a88e w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9c673230 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdd51ccc9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf22aedf9 w1_touch_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x24d5c378 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x5e492544 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8d1e294f xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa925e631 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xaaba7a71 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x6eb3c06c xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x71aa3939 xen_privcmd_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x611ac8ab dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x88d200c9 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8d606b32 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x95325ecb dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf5bbfb1e dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x13d5c04e nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x78186d3f lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7db20e5f nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x857c3e08 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8f15f658 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9ad77c19 nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00414e36 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x084efc22 nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2afab2e0 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x655413a7 lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa9ace978 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd733634d nlmsvc_ops -EXPORT_SYMBOL_GPL fs/netfs/netfs 0xc1364d0d netfs_extract_user_iter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x012498e6 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xca5e35f8 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd708a2b8 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdbdba6a6 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdf3b8891 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/netfs/netfs 0x25ede46b netfs_extract_user_iter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00c22bf0 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00e00dca nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x019d1a04 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01a0d649 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01c0dcfd nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0235abe7 nfs_rename EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03d0d9f3 nfs_show_devname EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x056a2e3e nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06f332c3 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07237892 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07d05268 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0836294f nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0925bea4 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a8c3be2 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0babed57 nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c812770 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d7c83e6 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d9781c0 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eaca678 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x044ca9d4 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07d8ac96 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0935c220 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cca7afa __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cd3ecc2 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e6f383e nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ed5a2eb nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x108395cc nfs_close_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11a159cd nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x155f0a03 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19750f58 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ba8420f nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cc4fd1b __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e2c32d8 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e2f1588 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2087f427 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10dc8db8 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12da8205 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14ccb2bd nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x156a6374 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17f57cf0 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19242724 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1de85c02 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20575a25 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21571420 nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x234dd6d3 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25cfab2b nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23f2d86c nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275f0323 nfs_sysfs_link_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29086fa3 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f05b1fa nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f91f2af nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x315354bf alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2935b02c nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a179476 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2af4056b nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b7089e2 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d2db56e nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2edbf8ab nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f04c197 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x306f22f1 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3255c0d9 nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34566b51 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34b547be nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3600879b nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3711b7bc nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37f3b692 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x388bdebc nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39cac596 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39dcb002 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34ee5e6d nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d5ed56 nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aaf1154 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d907f99 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aa19666 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c4129fc nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3db54e0f nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e0021b4 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e9087f4 nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42cd6452 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42a34951 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42d0e1ab nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47eeba2a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49b8287a nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49fceea9 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a10dbba nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4abb683f nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b8c0824 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44480eee nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x444cccac nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45712712 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46189820 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4695b2de nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x484f2a4c nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48cd132e nfs_read_alloc_scratch +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a4074ea nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cd88fe9 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ecdbc64 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x510851be nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e97c5b2 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50c133d5 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51186beb nfs_file_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5272bcf0 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52af37e9 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53bc20a4 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x569e5f9c nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5758c393 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52da8f01 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5614691b nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5799d0bb nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57b9aed7 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57cb5307 nfs_mknod EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58619a4d nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b8a3195 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c9f124e nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62bbb0d1 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x647000d3 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64b9b07e nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66534071 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67d4624d nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x689162b2 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x694d868a register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cfad7eb nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e1dc0fa nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f8633ef __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63515fd5 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68a50b85 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cb8e23f nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e504bdf nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f22fc38 nfs_sysfs_link_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff57365 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70ad3e27 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x719b27b4 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f625f6e nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7201c01b nfs_initiate_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7646aef7 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77b0c1a9 nfs_read_alloc_scratch -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a87ecf1 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b06c1a2 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bf4e1cc nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d59b3ea nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x762529c9 nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b3b439 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b14882f nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b556077 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cc99c1e unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d23cda3 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e202e89 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e40dd75 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x826486d8 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e51296d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e62fb13 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fe8c440 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81119b2c nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8172de9b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82a98fb1 nfs_create_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ea2761 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86e31941 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cb42709 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d258d9a nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fb3d432 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fe11071 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90901524 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88f5688b nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c8cb7ef nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d471ac0 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f4ed4ef nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fab2691 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x912afdd2 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9218e4e1 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92515bdd nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93aab994 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9403b18a nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9311cd25 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93577b38 nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9572cd8a nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9622d7b6 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x971e3ab7 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x951c4afb nfs_file_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bdbf147 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d93cc29 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f51bad1 nfs_sysfs_add_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa200ac91 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa208a151 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa37904b9 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4479cd3 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa801f057 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa81d3100 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aa400a9 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9aa66a8b nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c903b9e nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f14b40e nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0c6c4b9 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1c87473 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2fcec27 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa30598f2 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3723c81 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8bdaaaa nfs_file_mmap EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8fed77c nfs_create EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad93e851 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaea5462c nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf2f775f nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf3ef7da nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf61bd28 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0f419ff nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb369325a nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc411f2f nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc72992e nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc9504f0 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab1bde42 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab9d11ed nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac55cb18 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad3bdb2e nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad4ce51d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c80db8 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2cfb4cc nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3023fa0 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3e7c91e nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb619c84b nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbade7759 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc60c8d __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb02620 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbff7433b nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc01b8422 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdb79ebe nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdf2b7ce nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2ee212e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc39956a3 nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5dd58b6 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc62dca6d nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc644060a get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc1d3b8 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfdcb5d9 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd27811de nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2a93bdc nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc752de4f nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd00bd356 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd011888d nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4060964 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd72c31b5 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7944272 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9a060b6 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda923a2e nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdab5a14d nfs_invalidate_atime EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf248bf6 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf8def55 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe07e3367 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1b4a67e nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe380a586 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3de51d1 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4dd273b __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5198fac nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7b2ce5e nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe80d745e nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe90330d2 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9cee847 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea93bec3 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed94aa76 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0747504 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf57acdf2 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6445b00 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf66f2db0 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6871b9c nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf89a9cc6 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc484b71 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde806c06 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe02b0d5a nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7b0100d nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8b1eaa6 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec9ace6e nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed1ed7cc nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed23a31b nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedc63354 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeec6535a nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf00a0d38 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0c3be4c nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf354f44a nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf46f9e15 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa520a94 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa4567de nfs_free_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7396d1 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb64be3 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfec578e5 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xe6f1322b nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcd4a64c nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x1ac77419 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02549724 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02955fd7 pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02da1276 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x046f1e26 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a5b81c3 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08ea7751 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09539719 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a411cf1 nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd06bd1 __tracepoint_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d381e90 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e02bb3f pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x110b0e48 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x133e8043 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14869a91 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16824884 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x171f5409 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x102013a8 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16d1c88e pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1817ecc0 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b41178 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1956b4b2 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a712d43 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x198bf69e nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c43a31b __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d57c82c __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21293f47 nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2174b794 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21f9949b nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x247d7fd6 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x272009de pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2265eea9 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x227d9aa0 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25dccc25 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26fcdbaf nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29f80c0d pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b15758f nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dad67da nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dcf7194 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2807d72a pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2de98d55 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e76a52c pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f1e21ba __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f966665 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3360df16 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36368ca4 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b1ef311 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ecf61f2 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fbad0d6 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x477f69a8 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cf0fcf1 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5001806f nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x515475c1 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30cd0902 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x327f76ac nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x387e4d9d nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ebb6e2e __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ee05a61 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x416327e4 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x418d841a pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4314e115 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4871cc38 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b188b72 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dde8ad4 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x527a18b0 pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555bb1db __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56e61bca pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x598ed395 nfs4_mark_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b65e937 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b84bf13 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bc40f1c pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5bd12746 nfs4_mark_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62a0d932 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69a9f4ab __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c992347 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e492f19 nfs4_schedule_session_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e637af7 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ff78f7a nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71c3cfd5 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7431c71a pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7459c17f nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x764043eb nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76d6abe7 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73635043 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x798b44de __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x791a93a1 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7de78bf4 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e2f2262 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ef9f0a9 nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x802046c5 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8462ba5c __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88932113 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89c03e8a pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x844400cc __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x899ea8b6 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ab00e63 pnfs_generic_search_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be24f50 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9551485e __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97464b86 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99ce90da pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ae9f610 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f2bbe4c nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2becb2c nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6032c2e pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9926f49 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab4f4205 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb06f92f0 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb125e9cc pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4ae1bb2 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5e5df8b pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb85211ee pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9b736d6 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c9bb19e pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d149bf2 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97bb5671 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97fe3491 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x995ab6ca nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ad10bb5 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d995a52 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e7c851d pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f14d301 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa578c956 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa96d8272 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaae89983 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0695361 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5f162d3 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8350da8 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb97e8cd8 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbae8df84 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc32ae1bc nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3cc0e25 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5eb441a pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6e90fbc pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbda886e1 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe8d55a5 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf8be2bd __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7157583 pnfs_write_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc84fe2fc nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc748c9a nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf482adc nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1b8f04d pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9d3d940 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca0dd4a4 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccd7a51b pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce3e73dc nfs4_proc_getdeviceinfo EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd47333c2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9d56ec7 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdaebb21b pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb70e932 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda343829 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdae28d16 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb0d3216 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd342fa8 __tracepoint_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfac5db9 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe08df0a4 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4a356bc nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5030f4f nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee16ccbd pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1650300 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf40e72c6 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4bdb9e3 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedccbdcd pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0402f5a pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1f21717 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf514c325 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7ec2791 __traceiter_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9fbd221 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc199d15 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe1716fc pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfaa6182a nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfab34ae1 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffd26bfe pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6e51903a opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9cdc5f81 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf878d426 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0b3bf526 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0bc01c23 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6fc36599 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xbf8eb94c nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x174b9074 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11aa1dcc o2hb_register_callback +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x958a431e nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa584cb89 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xaa4dd3af nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb4e82904 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xb3a87b83 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x329d7e3d o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5322c2e5 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4de4561e o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x596710b5 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6087bf4c o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x934c6637 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xaaf3f854 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdf15a9ee o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe52b533a o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xeeecb507 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdfcbe12c 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 0xf24607e8 o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x141c305a dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3fdf54c0 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4cce2c37 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x539927b6 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xff159303 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2af0b175 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x37a98951 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9da93038 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc409bd4c dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x812f36c1 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd3fd97d7 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 0xeee52d91 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf61a645a dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x35e05700 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3a412f1d ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5ca9bd9c ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89e99cfe ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa50b3004 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x96241d59 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xba76c3d1 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe464d7fb ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x2031d956 register_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x8081d1fb register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xba587b5b unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x72e2b4af unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xbb56bd11 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x84e789c1 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x6714dfbf unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7123373f register_pstore_zone EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xabd9af6d cifs_arc4_crypt EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xc4c73891 cifs_arc4_setkey EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0x798f3830 cifs_md4_init @@ -18580,8 +18600,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x16d97e5c notifier_err_inject_init -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x421af550 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x3b49102a notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb8daf2bc notifier_err_inject_dir EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 raid6_call @@ -18592,1082 +18612,1082 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x036f1cc5 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x603c5767 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x18e365aa garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x1ae1ed39 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x30ddbbc2 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xa8c7ec2c garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xb1a55674 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xdbb87174 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x0423bf4b mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0718c7af mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x3b224494 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x3b72a4be mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x69efd94e mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xcc1d00df mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x0f723521 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x36c7f008 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x0c8ac07e p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0xacbe08da p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x0d94d123 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x680723e9 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x00820dce garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x4a5a8dd5 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7315926f garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x98653c55 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xc4af9faf garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xe4255b7a garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x11e05ba3 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x147201f2 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x2e9ddac3 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x34666292 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x39b62b1e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x9d71c11e mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x8ba77343 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x9f45f394 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x044b32d1 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2031a491 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 0xd93eb073 ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x03612bab l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x04d1c306 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2b7d6271 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4a057052 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x52355bcb l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5ab68489 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9f9ebd0f l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcfd7a7c4 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe2a9c500 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bridge/bridge 0x002052e7 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0739e01e br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a0c81fa br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x11982970 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x194c5941 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x239eb829 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x329e5106 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x397fc9a4 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3a35c8a6 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x420b92ed nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x59ff9f0f br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x63bf2b82 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x68ee138f br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f2f944b br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x83b05cd4 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8460b4a2 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x85d4891a br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x88d4564a br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa25d638a br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0c53367 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbee19506 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2f48bbb br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd444b9ca br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd50e191a br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xff85b142 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0042cbf5 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x06c20c19 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x09aa9e7c dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1741250e dccp_poll +EXPORT_SYMBOL_GPL net/ax25/ax25 0xf7d77ab3 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x133b8320 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2ad5733f l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x514e5ad1 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9a3585db l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb88b7fc3 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc0bf2d01 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xde96f811 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeb8cb549 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfb779c92 bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a16b212 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a46ac65 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x10da088e br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x123c9ce8 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1cd4d23e br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x276426c4 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2f7ab686 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3c7262af br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f1e85d9 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x790035f4 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b001ee8 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9c63ea98 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xab47acef br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xad32359c br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb4740657 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbeca9d17 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdaa0bbe7 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe987b7b0 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xedfab14b br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa536dfe br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfc0b750b br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd58baf1 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfdbc5944 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfe0717f2 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff1a796a br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e376828 dccp_destruct_common EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bfe9873 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3606e2c0 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x43376efb dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4354afb5 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c48209e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x185023dd dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d1373ef dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f5da992 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2486c673 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2735d719 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27cba271 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a0b2f2b dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d1346d8 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d4aed71 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2dd82bae dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48203252 dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x52bcfb9f dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x55d0cde2 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4d94bfc4 dccp_poll EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x67814d24 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fd59a41 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x736f2669 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7051c95e dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x790d67c2 dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x84dae172 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x86367508 dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86fb435e dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94c48281 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94f96b51 dccp_getsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9df0b915 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e884cb0 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0131fdd dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5175633 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8e4f7fa dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9c1cf7a dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3d8fc67 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6b0a18e dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb93d192e dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1fa275b inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc94637bf dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc6ad277 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd688808b dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x97e15717 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a3ecca8 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9da53653 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e181faa dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad1db88b dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf4f92a5 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5c34e0a dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb7936f21 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5f43b82 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xccb4adb0 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4e7f12e dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd52eaa5d dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe07020e8 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf173acbc dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc86bada dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7738b2db dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7ac95046 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcfad0d3d dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd70e7a83 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe9f597f7 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfaaf7856 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdabe15b5 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf018856b dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3b23e497 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x47e80c06 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbbb4e5ba dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc5a1c523 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc7a7b898 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf9893204 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x02440ecd dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x03ee5b99 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x084d317f dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x11ef7abb dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x19364ed2 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1bb47657 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d6571d3 dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x317c50e8 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36d7c777 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0cf88831 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1fb618c4 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x23ceacfa dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27001d13 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x315bf447 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x35ad4ede dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36d8a357 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3aeb3531 dsa_devlink_resources_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4662ebdf dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x483a5f2e dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x484b91c8 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f92a9c8 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x52424b7c dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x551c7d0f dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57b68b0e dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c3829c1 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64233f09 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x708206ac dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72a1a824 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83baf2a5 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x848f9f37 dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x90f12678 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c5129b1 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a4c8fae dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4eb3c2d1 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x51ba47e6 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x54405e22 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5858d552 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ff930f1 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6524a900 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x67869a11 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b9b41da dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80a7ed45 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x85b8cb40 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x91607188 dsa_devlink_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa2bda913 dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa6f88a51 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb16159f2 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa83ec345 dsa_enqueue_skb EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcfae7126 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcc803fb9 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xceb8aaca dsa_tag_8021q_bridge_join EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd55bf0e1 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd886439a dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7be7e12 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe80126f8 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe8967c79 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xea8744c4 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb843de2 dsa_port_from_netdev EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4274e67 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa89b1d1 dsa_register_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1aead27a nl802154_scan_event -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3382acc4 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3a4c5f7d ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x626a922d nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x056f3585 nl802154_scan_started +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x108f315d ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x251d039e nl802154_scan_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x381080ef ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5c433e5b ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x66485674 nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x66f3d795 ieee802154_mac_cmd_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8871b77f ieee802154_beacon_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xade92441 ieee802154_mac_cmd_pl_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb299839f nl802154_scan_started -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc52a6ae2 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc76cc1b4 nl802154_scan_done -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc92887fe ieee802154_mac_cmd_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf5f6d7e3 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ife/ife 0x15015ea7 ife_decode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9cb93145 ieee802154_mac_cmd_pl_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbac7f9f8 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf14e7f7a nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf588a68e ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ife/ife 0x12c1a440 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xe622468e ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x72b81845 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0731ab1e esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc2672929 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe4ac0fce esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x427070c7 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0x8ff0548e gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x55733ca7 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x601946e0 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x75145278 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7b0264ca inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x85a10843 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9c085da1 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdc3201fa inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xee7ea8a4 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfe30d66b inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf8ae05be gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00c934c5 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x09ef709c ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0c86f6fb ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x15432f3b ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x24548a07 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x31bb1790 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x50b2fee4 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x79a5ff61 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7e10ff98 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x81ba17b7 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa391d2aa ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xad09b7da ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf1894b9 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0c5b78b ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe888dcae ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec95564d ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeeeca9f4 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1cb10e67 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x59068eba ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9732a7a7 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xdecc9472 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0a43c87d nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x028294a6 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5f901e8d nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x64260d9e nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x66eb5151 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x74af6ac4 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8ffe121a nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd7949e4d nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x1e081c81 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1010884c nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x70579f11 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb9fe9469 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x12cc888b nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x41c24898 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4784dce3 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x91ab0bd3 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9c01597b tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa4367796 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc9543566 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3b0aa2cd udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x553852a6 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x554a361a udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x96e91cea udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x97863192 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb29212e3 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb4f86ef6 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb8bd923e udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x03eb8441 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x72a84bd0 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x89547a80 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x45b1d621 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x998554a0 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe933f93b ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3baa7c18 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xdffc47e9 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf4488a91 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1129f4bc nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x306ec952 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9123f3fb nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x0fc3e10c nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x329435e3 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6a0cde98 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x718debe9 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa0a1f285 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb6dee800 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb7927fb0 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd56e647f nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x996fbde8 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xab351a7a nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc499d184 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe7b8110c nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7b9792d4 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x838d9d4a nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c431b3a l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1d9fa4ad l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fd42e5b l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b512925 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x35e752c0 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57244fd6 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a557c64 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7566c895 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x803018fa l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a79dc96 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8c3e6cdd l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x97f696bf l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa35da896 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa849cf16 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xab371b47 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8c5e4ae l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcde89fd3 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1cf0101 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8686194 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe43f6e14 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6cacb2f l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xf5f55aae l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x10e0e9bc l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x74054f40 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc4ca712f esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe66e4b15 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x82425a42 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x82c70dd2 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2ce81ff4 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x390783a0 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8ec7ae76 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa6085436 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd877ba42 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe261e0ff inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe2cea0ca inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe564659e inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe5be7ec8 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf85c1a59 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0b41718f ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x202a13c9 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x259c6992 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x345d9cd8 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x440f5218 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56cd852c ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7d64d4ba ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82f063a6 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x88577d8c __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9af87b22 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca6e7356 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcb981326 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdeb27bca ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe32baf3f ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec9e5647 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf82a9dd9 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xffa787af ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1a759e03 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xca9265f0 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xc14b6589 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd1ea8b93 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xe1bbd66c nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x068fc642 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x17eedfd2 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x352fba58 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x917f492e nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe2ae7dc2 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfccf66ad nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfd8248fe nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb50ed28e nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb2bbffa1 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xdf6a4e02 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe2ce024c nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe54d196e nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe9760b40 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2b6b4bae tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9ada4224 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa1167907 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb0461f3f tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcfa66143 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4c090698 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x613d4e1c udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6c420c98 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x90b26ae6 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbdfba4c1 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcb9d3072 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcdcdf92c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe5266b4a udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x10ce47bc esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5d0d1fae esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc892ff1a esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0961b8d7 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4e4fbd44 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd81ff525 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x310f155b udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x828d75a4 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x5b04d784 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x219d1613 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x74df9070 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb07fe3f9 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xe426e464 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x00aa57e3 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x20721d9d nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x21f49614 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x22f517a8 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7e64d4b5 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa9f3d904 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc90f86e2 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x326973e7 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x30271ffb nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x47c87669 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6064ee88 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf21d5905 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf9727c3b nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x00fdb99c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x089dcfa5 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d8c36fe l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0dd91384 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1491b0de l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3b1fb3d5 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x44f72f66 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x661f971e l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6efaeb39 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x75de6e73 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e409273 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f720fa2 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8fd2a253 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb72245dd l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd7f107f l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc64b32bf l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6d8152d l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcc07d3e7 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd08ebbb8 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf107df41 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf3c73bcc l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x19f2bd64 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0d863638 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x107ba568 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfa9e0334 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a4f54e0 ieee80211_set_active_links_async EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26223a99 ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2fd15ce3 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x30f69aa9 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x343c8dd4 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b2b45dc ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e70622d ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5db573c8 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x73caea56 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7d66763b ieee80211_set_active_links -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x87cc834e ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f4da315 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9370804e ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x93a14a31 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1ecc94af ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2e8a80ba ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3072202f ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3dd02d10 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4635174f ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4aabb3bb ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x769b316a ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x76f54e0b ieee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7c09b767 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84eb11ea ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x86f3f103 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a669304 ieee80211_iter_chan_contexts_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2b669ba ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc585f0ce ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xca2e8ed9 ieee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e345377 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa0d6a5be ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xabc32f6e ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb5959954 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbde56695 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc0091e8b ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc686447a ieee80211_ave_rssi EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdcc3ee58 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe3361016 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea19c52b ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd44c6e5e ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe19b0c68 ieee80211_request_smps EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf3eee57f ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8886cd5 ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x26012eb4 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x65af3d89 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8550f51a mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf389074d ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9098636 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfd094cad ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x84c52503 mpls_output_possible EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcc94d65b mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xda1df2cc mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0bd6e650 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x12107c99 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x226319f5 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x905076a5 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb84ab7b5 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd212301e mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xfe6db543 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1e9fef1f ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28e7ed34 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2efb3bb4 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23c00bc9 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x270a5214 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2f9c7d6a ip_set_name_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3edc41fc ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x428000a3 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f0f574a ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x763e0b89 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47092ed7 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x476dfceb ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c7b6e53 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5077d165 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5eb42963 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6648ca05 ip_set_nfnl_put EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7bf39d2e 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 0x85cfe6a8 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8faf9bb6 ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa911976c ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xad9a71f5 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb2b36f02 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb5684fa4 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf4a380b ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe1b13521 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xedce8f76 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf369c7cc ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbc993798 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbedcae5c ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe7c99b9e ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb6bcde0 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfd29eebe ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcb40f914 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd0859358 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd798140e register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdeeac147 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x17668b17 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8c562ace nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9a3969f6 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaf34b151 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4b2240a ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf5f60efb ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6042d49 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x97ca485f register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc5d5ce55 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd1507769 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdb390056 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x22ff87c5 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2f8d6d46 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x334580c0 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9b9a24bd nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe8164dfe nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe5ae1ff2 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00a0b222 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00d0db37 nf_ct_helper_expectfn_find_by_name EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04dbb209 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09107a9d nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b0ed9f7 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0521100d nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0694b267 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09279b9a nf_ct_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10535bcc nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1181cc6c nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1345113b nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x176dd570 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1800b10f nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1940a279 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21a5eca5 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23e7d554 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x109540c4 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11162f12 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16e9dbab __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19a40128 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d8c4b59 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ff6fc5b nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x259d1d78 nf_ct_bridge_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x292783ba nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32122295 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33376dc2 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34d924d4 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35fac61a nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3de0db68 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x411a9c4f nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41b571c8 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46c8ff7f nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47f5f93b nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c1b1f01 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4daccedf nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50216a9a nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5450dbc7 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a99eead nf_ct_handle_fragments -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60240b74 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60edda5b nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x633df271 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b5fa0b2 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3322bcad nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3483bc37 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x377da50d nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37820bc7 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44bcee1e __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4a22ec59 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ade952a nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ed457f9 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53af1f17 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x54b9e494 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a0df177 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a33a8bf nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bc65360 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61c3bc78 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62b0fa96 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x648a834d nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65396244 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67565ba5 nf_conntrack_helper_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e88ae37 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x711fce0b nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7167fd9a __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74124938 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f0b998e nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x707d8433 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72f0b07b nf_ct_helper_expectfn_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x784d044e __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79cd37e0 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b484e66 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b82533c nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d6a2e8b nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ea6f37f nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8404474d nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x849c5ba8 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87cb8835 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8877cc5b nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a9adabb nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b994c48 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bb3f254 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d82b996 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e9edd91 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7572bd56 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d337e4a nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83aa8482 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x857ebd59 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85c1cc1e nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85e1e88f __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8aa4cb32 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b002964 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c062c2d nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e444820 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffaf5c4 nf_confirm EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x927b0756 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x931ad10b nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93d0c9d1 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93ecbfa2 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x948c3e5d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98b09920 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91371550 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91fed235 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x925f9bc5 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x944d62ef nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96a8e4bb nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98170f78 nf_ct_seqadj_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b844ead nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cded75f nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e19b95e nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4408940 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa51579af nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7492e82 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7bbb5f4 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7c3f17d nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa540e6f nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacb75710 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad395071 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae1e6dc8 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ec09ecf nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa281b948 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa293a741 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa46c5c85 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa62ef6a4 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa854c472 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9495382 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaed586c0 nf_ct_helper_expectfn_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9d0cc79 nf_ct_skb_network_trim -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd30853a nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb43e1988 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb93dd1dd nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba77c8ac nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb74d734 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbceaa36c nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdc17bca nf_ct_gre_keymap_destroy 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 0xc4643203 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc67084d0 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc55fc37b nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc57cdad4 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b915f3 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8777a4c nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9583e85 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc97d6db1 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0a07ab4 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd25d470f nf_conntrack_free EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6a1939a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9356ec1 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb69745f nf_conn_pernet_ecache EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc098d38 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfc4dd44 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfda5615 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe56749f5 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec49ec00 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe895a741 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe90f2510 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9c7035b nf_ct_kill_acct EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed1663cb nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef055203 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef4b0ec6 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf11ab5ad nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed8465dd nf_conntrack_alter_reply EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5e435d8 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf99e0eeb nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb73b4c5 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfee83ca8 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x8a9a9d85 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2ca8ccda nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x19820ea6 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x685f61d9 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8980f4b6 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xefad69d3 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2c087c9b nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x02db1163 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x138aa684 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1c9ae7a6 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x24b567c0 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x523c09f3 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x756a8ccc ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc0462d00 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x0f413089 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x2aff4607 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x00d8dc10 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4fa26395 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbd2abcd3 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0703d42d nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x140f6d2d nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x172ca670 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1a682f62 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x22bb5109 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2bd1a839 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x49e59383 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x642e8aa4 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8cfbc891 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa1eaee50 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa5bec29c nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb1f34b16 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbcd91cac flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc1e0d0d4 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd5d7cc8a nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdc927a72 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe91d36ff flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03422bae nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x117c629b nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x17ce8e0e nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d294564 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5326756 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf53cd91d nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7454608 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7e87f23 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9a6639f nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb22c00c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffcd5bd0 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa78630b4 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x43b3924c nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x07963d6f nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2137cf5a nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6804f468 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xeb9ad3f6 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xb29f7867 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2dd0b856 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5342b0f0 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5d2c4586 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x615e78c6 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x802c390a ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc5719260 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe575490e ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xd5c8ade9 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xbad9fab5 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3b27bf3c nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4765b3e2 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xda846c70 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x07b6a78d flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x08fae3eb nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0fc8cabe nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x138d8b87 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x16c41312 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x44c939be flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x46a7893f flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x472e897c flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x56d74917 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x57a29fcd nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8666dddb flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8960ed3d flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8b1ab525 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa718a804 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc58f5d05 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xccd50397 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe35975fd nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1af0b003 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1c450900 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1fc50129 nf_nat_ipv4_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x55451d56 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ecc28d3 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8b9275dd nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8e0d98b0 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9168dbe3 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x91b3a551 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9ea8e73d nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa7ef0b36 nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb3baa569 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc670189f nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3b92a53 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x46ab3871 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x48873bf3 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4bb8ff92 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4d53c487 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d6b306a nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7e6dccbb nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84f3bd8e nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x88e6c984 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbbaa856a nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbc801be3 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbc8c439c nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc9e40d65 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xce16a9b7 nf_nat_packet EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf32a30bd nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfccbf353 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfe13f386 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe453ca01 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf5025b9c nf_ct_nat EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x407fcaf0 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x692aadaa nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x74513976 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x82da0c0e ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x858fd53c synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9d04dff3 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9f399cbb ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xad0975b1 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb072e16d nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc1077ea9 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x24719ebd synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x48502c72 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x60649de8 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x68d7dda2 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7eda0111 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x875e5c73 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa9a9d398 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xace2b94c ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc0a27811 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc811385b nf_synproxy_ipv6_init EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfdbe11d1 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03da4781 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x046c11e6 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf656a422 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x02a74c59 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0448d0a3 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x086818f9 nft_reg_track_update EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a3b6d95 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0db0304a nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10eda1ec nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1cf80c23 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1dc0a6c9 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2828f063 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2a456323 nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b508c11 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2cd27e0a nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e5ae105 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f932859 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e3bbde5 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1231948a __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17981ae2 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a1e60cb nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b3c34cc nft_reg_track_cancel EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3442edec nft_meta_set_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3acacbd6 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3d52f650 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e6419c6 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3f154898 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40f7ecb7 nf_tables_activate_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46cc3688 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c804a69 nf_tables_destroy_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4dff6d30 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52388756 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b6ed3f0 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x643dc226 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a2a5406 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f3289d1 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f909360 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x748bb126 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77e92489 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88e35ec0 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x920f517d __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9acded9b nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf0808a9 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb16c85ec nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4d68a4d nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbaac6151 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc86de19d nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd3070ba8 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7501a3d nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc6b3c74 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d306f3f nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56c4349c nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c53e81f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6136513b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d0a92cc nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6faaeccc nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x706b03d1 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71c9d690 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72e9eff9 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x738c2b7c nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8203d249 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f93374f nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ffd0787 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9369ac9a nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93899b23 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98e0b5e6 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8dfddde nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa914054b nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae9320f6 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcbf989a5 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf6466c9 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4d4c816 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd08fbf4 nf_tables_deactivate_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe034a563 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe1fe2974 nft_set_elem_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea62dda1 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea823797 nf_tables_destroy_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed84fe5b nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0ce660a nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf7e389dc nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe194e94 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff6d3e0d nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x19a6140a nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x37341102 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeea07f2f nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8eed949 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa2230cf nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc10ce88 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x36cf6c2d nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ba70dbc nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6d517f85 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x73f75efa nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8efe2f88 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9e17e4cd nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x756e08e3 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb984c949 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd4af445d nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd794b31b nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf4dc0d4b nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3a73fdd9 nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5313a976 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe4f24498 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa37bc285 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb4082528 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd42ecab6 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf006d793 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5c643ce5 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x64876fab nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x18c0baa5 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x23a4da70 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5447e989 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7a767558 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc1765851 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5ff1316c nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf7df2a8c nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x04f70feb nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x25609850 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5b35e291 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5ee95d87 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x890c34eb nft_fib_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4e115f22 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x97f4856e nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x451b6212 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x93bfa744 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9e27a468 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x02f26f71 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfb2e2f61 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0666e275 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x08dabec8 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d9f4be1 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1045754b xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x15c611ce xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1893afc3 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24709b31 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x250c9e13 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x343d9486 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b1001e3 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6daf8758 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6ef24ded xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7176f8a6 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x092af2f4 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d291807 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x130f73de xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24508a1c xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d085e72 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x475a2160 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a965fb2 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x505f4a0d xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5862b788 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6225d337 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63df8d4b xt_compat_match_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e92cabe xt_request_find_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x816ca3f1 xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x831bb454 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f913fef xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8d933374 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e724afb xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa54c4457 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa5fb4a85 xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaea2d5f4 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbbb618c9 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe36aea5 xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc0602da1 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc3715619 xt_proto_fini EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd0d1c55 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd065491a xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc92396d xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdbbda2af xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb0b61ba xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebeee0a9 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf72364ec xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfcc0dd52 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7b44fb64 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x96261b2d xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1d85b9d1 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc7a293a5 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf5f2b324 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5aae678b nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x71399c76 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf3324058 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0xc47522be nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xdb4756ab nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x06ab71b4 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0f6f0dc9 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x175a5247 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3fc1f5c0 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaea65bc3 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbef616be ovs_vport_alloc -EXPORT_SYMBOL_GPL net/psample/psample 0x0b17b448 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x20b3ca51 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x6542ddff psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x7e2e95a9 psample_group_put -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x79f3652e qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x819e0bbd xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xa6e4b11a xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2bab0382 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4a9bf964 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9df344a8 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x31a569fb nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x50b03839 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe95962c9 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x9fc08fec nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xefe422b5 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x96b15735 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9ca3d7d4 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbad32822 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd498fe47 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xeb99a318 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf5274f84 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x46ce5cb6 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x9881ea8f psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x99305b27 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xf8aeaa58 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x50a5cffb qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5ed8eacd qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8506b555 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x94c0a114 qrtr_endpoint_register EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xcd6e7422 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x23078de4 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x23ddac39 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x070ab01b rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x0a58713d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x0ddf63eb rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x135a90e2 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x1c211ca9 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x23f39155 rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2bc9a2d3 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x317091a0 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x3221f107 rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3b87745c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x418a91ab rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x42bfebf1 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x43dbee8f rds_conn_path_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x51a8e50c rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x544f9422 rds_inc_put EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5d0faad0 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x64c3e6f3 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x6b9d9ac1 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x7106385d rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x72c52f2d rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x72f5a42b rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x5d035951 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x643e9e8e rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x6b95961e rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x727ccbbb rds_send_ping EXPORT_SYMBOL_GPL net/rds/rds 0x788ef4da rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x7c89668e rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x7f15c321 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7dace348 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x81f79d58 rds_message_unmapped EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8faf844a rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x91744097 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x9a0fda59 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x9dac951b rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x8c0c7119 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8cdd823f rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x9927e3b8 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x9aea4eda rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x9ba42d46 rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xa5c7530d rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xaaf2bb13 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xc0fefcae rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xaae0570c rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xade4323f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb639edfc rds_info_register_func EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc4a89a1e rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xd2142467 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0xd5a9ca55 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xdedd160f rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xe9f18a99 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xf9925094 rds_recv_incoming -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x6d49d06d mqprio_qopt_reconstruct -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x909e0409 mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/rds/rds 0xc7097faa rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xe2855d25 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xf1db188a rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xf6f44b42 rds_message_put +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x00fd50bf mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x61043a4d mqprio_qopt_reconstruct EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x914f8b2c pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe213f887 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xd7b6af80 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xeb8c9381 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x16f8ba5d taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x6a6b1c12 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x0f438eba sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x9af0fbfd sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xa0805bb2 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xa5bbcea8 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x40f84029 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xd028621c smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xe1250ebf smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xfc20b3ae smc_unhash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00eedabf gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0e06441e svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1de582da svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0x445594ec sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x870916cc sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x985c53fa sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xb74b9ca3 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x12de375a smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xab3ae520 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xce3160bf smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xe55b1bb3 smc_hash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0622bd13 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0d0c1ca4 svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4685d7cc gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6f594171 svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d8b6d2 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f01e8b xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a1730d __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05270746 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0540302e rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a82ac6 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05bad04a rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xddd282a6 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a01504 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0241ead6 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029066eb rpcauth_init_cred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x060d71fc rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x063c98bb rpc_killall_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06d3a4a4 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06ea1479 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07392567 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07d04765 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09087c69 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x095867d1 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0972ad72 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09bc6e43 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c52eae1 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d61cd2c xdr_stream_encode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11de1112 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1234ccae rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1277b5ac xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x133a4a61 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16165eaa xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1656dca3 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b5bece rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b503f74 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bdc57b6 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c11f9e2 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d6717c8 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dfee511 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06a606ca rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a9b772 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07c1738b svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a1cf03f xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a8ad379 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa10bf3 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac9f827 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b0ef582 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b48e614 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c75de70 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f3b527f xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f6e570d rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1001daf3 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x139be9da rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15f559a3 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x165ea823 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1681c3ef svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16af520e rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1734be9d rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b5924a rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18a7d57a svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18fe879d rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1956c065 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a5a41e8 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af9ebd8 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cfd1335 svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ec58661 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa19bda svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21c4eb5f xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x222b0178 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2286f730 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23044ca7 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261b7681 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2838ce33 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e351100 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e7359d3 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f289a9a xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d2dc20 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21e1ef4e rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23160214 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24deba4d rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26f90dd0 rpc_force_rebind EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29921a5f svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b9f0605 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cc8af30 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f60c2ea xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8c3be7 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fb69fce xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30770ac2 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x318bbe63 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1dae42 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a8359dc rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a8e4fda put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b72f6fe sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2baa445c rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c2296fd xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e034d4e rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e1fc2b8 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e7a82a8 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e995952 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9b5d34 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee2768d svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fc187a6 rpc_remove_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31ba38c1 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b35a00 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34628e1c xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32007d69 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32eb390f rpc_find_or_alloc_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34fe2980 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c25e27 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36383a7b svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3649cb46 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36ee6b4d rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35036755 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35a14a32 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3726d38c gssd_running EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3893eee6 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39835b52 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c2478e1 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f745ac0 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3973c059 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39accfcc sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a93aff2 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b06417b rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c1d0257 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e1382f1 rpcauth_unwrap_resp_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41b662c7 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45ee518a xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x465202f5 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x469865b9 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47f76df5 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x482b29d3 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x482b97c6 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d23518 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49cf1547 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0b23ac cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a234ac6 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4acfc418 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40060fbf rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x445a3ebc svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x479e2f8b svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ebcfb3 xdr_stream_decode_string_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c00d333 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c75afde rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d77c945 write_bytes_to_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e6abd56 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e3797c7 rpc_clnt_setup_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f554371 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5034a46b xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x509fd63b xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50a7f750 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50c28a2e xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x514aec6e sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eac436f svc_print_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x538c44c5 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x540acb10 cache_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54ef4297 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556dbc5b sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5594cde0 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x564d5812 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573f7164 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57f22f18 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5824cba6 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a40b46b unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e40d95 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5586906d xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58a0b37f rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d3a97f xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591ad0b7 cache_check EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a4a5b92 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5acab8de xdr_truncate_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b270280 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2b49ec svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fdcc2c9 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5be971 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b27f3ce xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b7468f4 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c103e3e svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c8c5e34 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc1cbc8 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d08f4dd rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d211eb0 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2af93a xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e56f069 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f2b370b rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f90a4e2 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60680879 rpc_malloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x617497b2 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a44f3e auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x644ba38b rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x650724ca rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x658c628a rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6639a163 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6699423d rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61257f41 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61752112 xdr_buf_trim EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66fc2ea0 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68a8c66c rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68d328b3 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69fbcdec svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5124b7 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6abcfded rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6af98bb3 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b307b21 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c05f72f xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c17dc32 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d36d310 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dd0f538 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f98f0ff svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fcca5cc rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x713c203b xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67cb7e88 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x693abfe6 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d7d615 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a125bc3 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5bb772 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a642c82 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6baa1052 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c11a245 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d7d1d62 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9e4a16 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f50fe6d svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70fe18d8 svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72bcc360 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75a83457 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x760fd894 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bc197e2 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc20e7a read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b16ad4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73076fe5 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e91922 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7462725f rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x763ee8f9 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78a5247c xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x790c4b4b svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a7639ca rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b98f7d8 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bfab25c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c52c45c bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf4b066 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7b5951 rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7edc25e0 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f9c08b9 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80811ced xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e2fa24 xdr_stream_decode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85238caa rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8627f41c _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb1540d cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca418b6 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e316112 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91cfa069 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91ef8fd5 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x809e667c rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80adab6f svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8381f5d4 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x886f2314 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894cb4d9 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a0555ef sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aa83f25 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b3d3287 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca87bc1 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dd92341 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eac8618 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91bf3c53 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91f0c28c xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x933a91a0 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x934541f0 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9387a565 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942a696e xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94aced36 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c8dd01 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x959fa58f rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9671c691 rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96d6e32a sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x973d0956 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x991ea7ce rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96ac6773 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98395433 xprt_wake_up_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a346ae5 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c70a9dd xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c85313c svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d19e5dc rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ea9acf3 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2684ef2 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29e72ff xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a5e4e5 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56d0b34 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56f057d svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6839735 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6e804fa svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76b8209 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76ea135 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7f08165 xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa857846e cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8602720 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8603c3e svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa963f2bc rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaa65f79 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab8f0450 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac91fe21 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99b8fccd cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b9332c3 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9caad468 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d124693 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ffc68f9 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa14059a0 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa149e63e sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa320282f xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3d946f0 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5c17fc0 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa639d450 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6f73b0d svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8016ff3 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa84c8a2f svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9ddff8b rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8b627f svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef4d6fe xprt_register_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf955302 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0cccc10 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb120bfa7 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1647953 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2bf03de svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3c5b342 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb496c974 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5175826 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf648000 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf898fbf xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafcf1d42 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14f0dfa xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1affefe svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb23df587 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4fee021 svc_fill_write_vector EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb534807b xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb57c1ffe rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb86677a1 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba23bc22 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbad0903c xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd8a57cc svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe3c6c35 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe6ae0de rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe9ae704 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf2a249a rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb52db5bc rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5554f83 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb63a05c6 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6ea9f31 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb71a3f28 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb741c4a9 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb99154af svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbae8506c rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb0d25ab xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8418ec rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce1c854 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdd46472 rpc_restart_call EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0800899 rpc_switch_client_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0dbc2fe rpc_switch_client_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1bf9191 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc26cdcdc rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc27220da sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc34f4328 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67eb353 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6ef8e54 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8b1c81e rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8bc79bd xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8d99f55 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc469d36a xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ab27e0 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b2a07f rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6e7cea4 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc81a7f96 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8de5f76 cache_unregister_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc93c46bf xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9e78731 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa8ca2d rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb8b7b58 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd1cac7c svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcde8f6dd xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce0f14bf xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaebd5e0 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb21e207 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb8e0cd5 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcba10d81 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc773402 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccfa500f xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd23c239 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd3e85bd cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd49a9e2 rpcauth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceac214f svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfb892f3 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd128fada xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1551ed9 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2340785 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd67b24da rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8fd3e6e rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd93675e4 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd94d36ea xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9d21535 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb93e4d5 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc78f27b rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd55f285 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0f79a6e rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1827834 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f2e29d rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd386036e auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd42bd200 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c1d70d xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5509d72 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6278217 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd792673d svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7ba0582 xdr_stream_decode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd854e943 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8feb6fd cache_seq_start_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe02040b8 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c8db19 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe403ca0f xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4be5d75 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe575f7e6 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdef96120 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff9e167 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0dfeedd rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe10b9c73 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1179cf1 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f92e4f svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4e09cd7 rpc_release_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6f92315 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8d3c83e xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9631aee rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9682cc2 rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeac03558 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeafcb5ee rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb617a8e write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebb83d7f svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeca117d2 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecd56f09 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedae5f24 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea746182 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xead2f975 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebdb4b73 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed7e58f7 rpc_run_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedebb0ce rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedf1942f xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee3b92c2 xprt_lock_connect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefa09b65 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefa6ca19 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf089807a svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0a9783e rpc_net_ns EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf161cfc0 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2fc05ad rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf43a1bc3 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5b96aae svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf675a3a6 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7b7da18 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0faf395 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf201a72e xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf20ec669 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3152bca xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf344d443 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf48021b0 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5cc222c rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf70b660a rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7aa6e0c csum_partial_copy_to_xdr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c866ca rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99a9067 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb99dce8 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeae4869 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd0364b auth_domain_lookup -EXPORT_SYMBOL_GPL net/tls/tls 0x15f264f2 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x425ec572 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x9bc65ffa tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xc72f8218 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a3197a virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf875328a rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9ea4763 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb4961f3 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba43e70 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbed7d0c xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc8080e5 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc95b797 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd77cdab xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd7cdcc0 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdee6160 xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0b72ba rpc_sleep_on +EXPORT_SYMBOL_GPL net/tls/tls 0x3bbd27fe tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x474ef9d5 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x4ed3f804 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xf9950110 tls_encrypt_skb EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x045c77ec virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09426b61 virtio_transport_purge_skbs -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15c1583b virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1dd09720 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a220d75 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a3305f7 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3047653f virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x35380101 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x358524cd virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b67a95d virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x454b2304 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46146bf5 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c438ab1 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d0d0b24 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e0e06d7 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6199e12b virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x657c4025 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7297aeb4 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73937ddf virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x749ef23c virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7616003f virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b1ffbdb virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82bc8bc9 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9964d7df virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ade4d69 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ced8224 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb46261cd virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0c2bc396 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10cc21f0 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17f64f55 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19cab9fe virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1db480c6 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1fe97479 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x33a54210 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x36b5661d virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ae31ea1 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x496f33b4 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a066247 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6249bc03 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x697ca6a2 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e2dc6d4 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7652cbfb virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7dc6af28 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fb9b0ca virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x985861c0 virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98f845cf virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99612e9b virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a5421f4 virtio_transport_do_socket_init EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc02a3cda virtio_transport_read_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde3351d6 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2735be7 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed93c1ff virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0e7fea4 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6d0660f virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd902f54 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0bb34acf vsock_connectible_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc6eb3b58 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcaaf0772 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd510c27b virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd580f5c7 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5fb80d9 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb84af90 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xded91d78 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe24b0bf6 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2d3344b virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe53999ba virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea1d1a1b virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea300212 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf787a410 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa583ad8 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x09a61a0d vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15006343 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1964b1ca vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1dec7d1c vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x236a2911 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x197375bb vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e4547fd vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x214fe86e vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x27ea16a9 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c1e9c66 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3652e0ed vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2dd3ee10 vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40e0dd2b vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4876d744 vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49135219 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4270396c vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x446eb865 vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x514f5071 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x78fa9188 vsock_dgram_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x507459a4 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x50d388d3 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53b132f8 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x84507db7 vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x917c1621 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97ed6c6e vsock_connectible_recvmsg EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa171ec95 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa8ff0e0c vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xab61ad20 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb8dd8211 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc5dd205b vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb17e6f2e vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb73b2c02 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb742a92c vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc680fa66 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd13a160d vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd1ba56aa vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd288d64a vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd3fd2ee9 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xde2670ba vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe6dec5f4 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe7e280ee vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcb80c8bd vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xce0ad468 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd5ea189c vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xddf9ad0e vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10fe81ea cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x35aab63c cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x37fdddfe cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4a30fa2e wiphy_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4abfcfc0 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x550872ad wiphy_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5a3cf120 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x68685d38 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7a811f5e cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x891074f4 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x89c18356 wiphy_delayed_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa6cc868e cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaa3c6623 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5804924 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5e8fd3c cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xba211091 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbc5bf4f2 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcba01ec4 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcd7e21ee cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb1523ea wiphy_delayed_work_cancel +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf123bf43 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf540a6b3 vsock_dgram_recvmsg +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x09d69835 wiphy_delayed_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e92fb26 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x21c1eca3 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2a3c6384 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x37feca85 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x44c8a234 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4a2abf76 wiphy_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c7aed76 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4cc70f78 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5651fb18 wiphy_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x58656a67 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6440b1f9 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8d8fab88 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb2e6f177 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbe978d1 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd46c2413 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd8f1f932 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec0eb835 wiphy_delayed_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf496b235 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc9a230a cfg80211_wext_siwfrag EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -19680,754 +19700,753 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0aa60ef7 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2925d456 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2adcf5a1 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9c2d0919 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1f36e25d ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2aad1b1a ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3daee44f ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc5bc64b0 ipcomp_output EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x039f9e59 snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x70ab7037 snd_seq_kernel_client_get +EXPORT_SYMBOL_GPL sound/ac97_bus 0x54f2fd0b snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x41840831 snd_seq_kernel_client_get EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xcbf9166f snd_seq_system_broadcast +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe412cff0 snd_seq_kernel_client_put EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf0c8f9fa snd_seq_expand_var_event_at -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf7f127be snd_seq_kernel_client_put -EXPORT_SYMBOL_GPL sound/core/snd 0x0987190e snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x0af2f770 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x2335f0c2 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x23eac65a snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x2978b371 snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x47de719a snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x53fa2156 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x09c8f665 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x140ba9d1 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x20c26a59 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x3e702d6a snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x42a8f311 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x4efb88d4 snd_device_initialize EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x6d5940c3 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x6d6b5f4a snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x8177eb7d snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x94187817 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0xaf4481c8 snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0xc0de83af snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0xc39eac53 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xd5eac405 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xdffb1e78 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xf0133596 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x64ce0718 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x7088b7f9 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x70d7c181 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x761ac4e5 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x77e8e5e6 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x841cf598 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x872772d8 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x8b843521 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x93cfeaea snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xbb739792 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xeede853a snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xf3176957 snd_card_free_on_error EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xfb765984 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x675c5750 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x6ff3ac39 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x290ee356 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x43113e14 snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0598fe79 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x07158f50 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0724a674 snd_pcm_stream_lock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0fb03a1c snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1db1835e snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3c848520 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x47467fff _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0a8fd1a1 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x415f17cc snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x44e59b6a snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x540c6695 snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6d29d91d snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x690e93ca snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6a988d76 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x74cf2a1f snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8de9b4b2 snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa37b05da snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa43d8a17 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xabc36ea0 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xac92ed0b snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc900f90c snd_dma_buffer_sync -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcf9ab55b snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf04d76a2 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf6fc5984 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3420b8b2 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x607d38ad snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x87f94ba7 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8a3eebd2 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8d9cb454 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa6486b70 snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc81f934d snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc8c73f4b snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd1d0ad5a snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd469c643 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf6593fb0 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf8b32fc7 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x8c957ab7 snd_rawmidi_free -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xe9d788bf snd_rawmidi_init -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe7c7e43f snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf7d70dbf __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x046fe6d4 snd_ump_transmit -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x11c5661d snd_ump_receive -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x1c8ab613 snd_ump_switch_protocol -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x318a4e4b snd_ump_attach_legacy_rawmidi -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x501f7a66 snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc490b3db snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd64d9e47 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe1c89d8c _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xed58db4a _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x026de87d snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x02a14624 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7722f340 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8511d687 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x94bc0cf7 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa4a000ca snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa9fbef53 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb49f8626 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc42f2ef2 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcaa59bc3 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd1125274 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xedda5295 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x196134f8 snd_rawmidi_init +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x8e4bb4d9 snd_rawmidi_free +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x49fb49cf __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xb50ef7c0 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x381ae2d6 snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x3d84e4b0 snd_ump_receive_ump_val +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x47ff0fea snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x51a05d43 snd_ump_receive EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5b39d06f snd_ump_convert_from_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd4907fd2 snd_ump_receive_ump_val -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xdcc762b5 snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5ebd9905 snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x72f236a6 snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x89cef468 snd_ump_endpoint_new EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xff136dcd snd_ump_endpoint_new -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1420e7ed amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x20364065 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3bae4760 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4bb0ebe8 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5e7c1193 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6bf9e200 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x72d3e29b amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7ec4298d amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xafa45c75 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb2bcda62 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc1657d2f amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd129e5f6 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfbc2193f amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x00036ae7 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0b8f63da snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x120231bf snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x16a11a62 snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1eb6a3d9 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x28366acb snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x314711ed snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x373f73e0 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c3dbc66 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5772a15d snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x582f4ab0 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5969866e snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5d06c839 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6604f150 snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x70eb8bc8 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7609756c snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x77f269b1 snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7b1abb1a snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7ec60b74 snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x85a95847 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8de7c4bc snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8fa19ecb snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa0d4afd6 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb8fb9f55 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc4ab6a8d snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc6bb0f97 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdd01bdc2 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe339d8bd snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6d6a42b snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xea953f50 snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf7305916 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00120b9c snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04e890f6 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xed4a0343 snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3a97339a amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3cf41fa2 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4dfd6ec4 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x52a7bedd amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x56ad943a amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x606d00f4 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x77e93f6e amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7eed2433 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7f70a59a amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8a1b105a amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9aa10098 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9e1464d2 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd0fa6e7f amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06d655ec snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0f02c294 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x133b5d2c snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x343cab32 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c2caf96 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3de7f7e8 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4afe6b3a snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4ebccd9f snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5533f85d snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5cf0b0e6 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5eaff15a snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x671cd4b6 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x67c54633 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x70f9ee83 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x732f4a63 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7bd09ad9 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x827c2a0c snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x850594ec snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x850a076a snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8cb8ba49 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x97392ff0 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa66e8b11 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb0319e9d snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc2c7738c snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd0e9dc85 snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf704dda snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe3791221 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xecb50818 snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf303a731 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf48299eb snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf72c9d59 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02bd53e9 snd_hdac_bus_alloc_stream_pages EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d30371b snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10dc9df7 snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12acfbb3 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14555081 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14881433 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05c9097a snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x074ba1cc snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07b9c2be snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fc8eb6b snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fea933b snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11f1a749 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13e7af87 snd_hdac_bus_exit_link_reset EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x158a5f28 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f330ac6 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fbb91ce snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21a6488b snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22c5e8e9 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x235954d1 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2630ca45 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29ffa88c snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x398aed02 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39b08a5b snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39e64b3f snd_hdac_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b6999fc snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14d1e611 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15105ff7 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1739b0e4 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18ec97d2 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c1c1e96 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22de3c88 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23e21086 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24780e30 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2adadda7 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b768a43 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bca532b snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f1e3700 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3359a759 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33a323ae snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33b7c174 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3491face snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37aae544 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38088eef snd_hdac_bus_handle_stream_irq EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43bea64e snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45cb01c5 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48be512f snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e970115 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42b05ba3 snd_hdac_device_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ded8aba snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e8463ca snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x549aadad snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55ec37af snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5722fa32 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5be5c513 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51fc1d40 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5324bc06 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54944d52 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x575dc096 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x598c1583 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a1bdc38 snd_hdac_device_register EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x621dae1e snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x644c1a3c snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x630d2983 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66d8fe1b snd_hdac_setup_channel_mapping EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69423973 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a19bd46 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a9879ac snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6cd800d6 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e0579f7 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7004005a snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x702597a6 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70be8a31 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72886cba snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7397294b snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x748a4284 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74cac77e snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75b1eee3 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75dbb311 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x691131d9 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a71a1c5 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c8dfef0 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ff7dc69 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7050509d snd_hdac_dsp_cleanup EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b6d9370 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80f7ada1 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81e848a4 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89b9fdb8 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89ded770 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cd598d6 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f3ca71a snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9369ce25 snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95a93e50 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x977044d5 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ab864a2 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8370babd snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86baf1ca snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x878b1222 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d2b799b snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e1882fa snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ea9b266 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92685247 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9359e627 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94062260 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96835551 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x987e7e8d snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a5d6b98 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a80b343 snd_hdac_stream_reset EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b16f2b2 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9dc32909 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9df26447 snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3aed5fe snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa537cc0c snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa55f1c87 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7e226e8 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabe877f5 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xade2598a snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf4565a8 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb05ab503 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb13128dc snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba148c11 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ff9aedf snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa318b4cf snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3a4dda8 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa432a8ce snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8d89e24 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa538200 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad3e9653 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb08971f2 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb280da41 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb61e6a0d snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc526d4c snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd1692ab snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdd63441 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 0xbee8ca2b hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc01dadb3 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5c9e076 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd3fb3a1 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd35c8b1b snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3aca596 snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3cb5e3f snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe127876b snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3631339 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0409e57 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc13a2879 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2b4694b snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5b845ad snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc74f106c snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca957e00 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdd7411c snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf4c52f7 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9816f15 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb320034 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbcdb6d4 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddc3be04 snd_hdac_regmap_write_raw EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe67caf68 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9ed3115 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb395859 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebe416cd snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecf763f9 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed7b1992 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefea4ccb snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4b0d34b snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf51af25f snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6bbcfe7 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7a0a994 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9d0de77 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb36a78c snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcb8ef06 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdd8aedd snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe046783 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x363799eb intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4236bdf8 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6d95bbe snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe759f161 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb87ba9b snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf058147c snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf081dcd2 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf29bbf34 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf393620f snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6c5921b snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6e77821 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf81aa10f snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf98bedd1 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcef7158 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x48a5daab snd_intel_dsp_driver_probe EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xa9f82e25 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xda7359c1 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1cbfe234 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x79681cda snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x89aa8851 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa4f6a980 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd3ba15fd snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd6615a96 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0235cc8b snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03699c93 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xcf105dae intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd0c8a8a7 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xfcba9a90 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0818320a snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1ba7cccb snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x483c41a7 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4e3590fe snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7d3a7bca snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb6845af6 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x046a6515 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x059396ce snd_hda_lock_devices 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 0x06beda7c __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08ceb1e6 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0955d054 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a6e6ef4 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ab442bc snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b36cbd7 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bd5132e snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c31a58d snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d43c56c snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10ffd1fd snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12471ce2 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13e5e79b snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14b0008b snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16119964 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x169b3c82 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18e98b8a snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a103703 snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ad181b8 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b4c1d36 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d43e5cd snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e208eef snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ecd7c6c snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x246c801c snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28f7ad12 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d2f6343 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30a9c6ac snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30f39f7c snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35593cc6 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38271bc7 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3854e382 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06ebac21 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ed32f87 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f7b2edd snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12e3e478 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14572b7e snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16509b83 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1726bcc6 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1cb9cb9b snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d972446 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1df7e318 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ea602f7 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f667c0c snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20e56fda snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22f78998 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x251dbdb2 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25abb0ee snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x278ae9e9 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2882d0dc snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a890911 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aa86128 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c7db6a2 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f34df82 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32a77255 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x371dbd0f snd_hda_add_nid EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x393c9f31 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ee8f542 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x438dcf6b snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45059221 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47aa8ff7 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x483710e0 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e4b403a snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fb81b60 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52707fd1 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52d52f4a snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54c95878 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57f4c185 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58a0d04c snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b2fa3a5 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c364c93 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cb7f434 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5db60a0b snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x608286f7 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x613a36f9 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x626b11ae snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64e1670e snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66303ed4 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69415824 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6971f178 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9dfac8 snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c5dac6c snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c76c303 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cc70567 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e555991 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6eb1b172 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x772da7af snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x785b9046 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79687fed snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f2f6970 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f46fcdc azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8090fa47 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x831ffa5d snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b8e22a8 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d787303 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e02304b snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e32dff6 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92a84fec snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9303b743 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9505395b snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b7fb736 azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d30c4f0 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d54757a snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d8d6bad snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e57d9f2 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9eb413b4 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1e62bb9 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1f11ef2 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa400db72 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa56b8c07 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa91e2281 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa99b6bb9 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa4d1b23 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadfae50f snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaeef4589 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba4d1ced snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbae5afb7 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbb1f59b is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc6ec009 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe52eeb3 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc22e1684 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc23ed54b snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc33ff542 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7b1b39d azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9a4d441 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca6f382e snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcadbc407 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc109c1a azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce16ebeb snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfee667c snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcffe72ce azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd02f97f8 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd131cf42 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd27ddd00 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2ae106a snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd58dd52d snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6431454 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8ba057e snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaa6ff17 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf8178ac snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39a5c2ef __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b023eaa snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c07a3b3 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ed29593 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f5430de snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x403a2703 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x443ff13c snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44f8cc6c snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48a090e3 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x493d027e snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49bcc0ab azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49f688f9 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a5bda7c snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bb53ce9 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d5da347 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dd22e5b azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5201a3bb snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x524d01d0 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x531fe803 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54e54c51 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5533810c snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5873bb04 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59a5d04f snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c3639b5 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d4b87a4 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d702ca7 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dbaa1e4 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f9ee769 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fa9613b snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6113bc25 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62b9e7d3 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x637e709b snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6403da16 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x652c65f3 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6908af1e snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b171225 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cb15e84 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fa8cffd snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fc09fa2 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74de4de9 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74eb1423 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x756d582f snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7873aeb6 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79038576 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d60e0fb azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e026807 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f6dc9b8 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fd6b907 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8020189d snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80cbf4ff snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82297e4c snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x827291a8 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x863d6acc snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cfb1633 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e289895 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fb4df94 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fd87934 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ffd179d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9173e759 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9925e7a9 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9afefa05 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9db9c60e snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f941746 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa28b7c38 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa41bdc0c snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5537c42 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb27fb915 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6d75be9 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb3bef76 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbea2b031 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfdd0ad4 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0735663 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc08b1ce2 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccd3cae3 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf7eb34e snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1433878 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1d6bbb4 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd28a0f6d snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd466565e azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5efc1ba snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd94ffae2 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd984451c snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdac0826d snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcc3917f snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfbfc1b7 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfd9f6dc snd_hda_jack_detect_enable EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2b7534f snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6a71ce1 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea91e917 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaa874ce snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xead12406 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebc7687b snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec4defba azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1b25809 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe25e3dfb snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe493b7be is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4e5214a snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9a7de40 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9bac214 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebb188e5 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed4eb0f5 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed68b947 snd_hda_attach_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1394284 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf446a215 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee82596b snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf40ef0e6 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf45bcecc snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf46ab725 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf63e59c5 __snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb000c3f snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbffae42 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd6000c1 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe66e56c snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0c5dac11 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1002f643 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2174efda snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2bbf3f60 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2c3a840d snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33d3e0e7 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9ca27f1 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa295091 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb58f1b9 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x04906f2d snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x147412bf snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19781f47 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x25e54cd3 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4107261d snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x55fefcdb snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x57cf8d74 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5b9237ba snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f7a1762 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x612a3338 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 0x7ea2be8c snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x81674532 snd_hda_gen_parse_auto_config EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x94086ab9 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5d1792e snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb1a217f9 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb81109ff snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb990a2d snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbcfbc20e snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbff2a18d snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc12c7d00 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd06d8377 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd1b0be8a snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe17de252 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec80bb07 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7be57e2 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfa24873f snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfbb803ce snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x502f3781 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8bab7a54 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9628f24b snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96e76d61 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf5b927a snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb5ebfce3 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbbd1933e snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe5bad84 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcae60db1 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb11779c snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x995767c1 mt6359_accdet_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xbe3f41a3 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xb774ccfd adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xbc150ebb adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x06202af0 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x16fa7663 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x58eb8fa8 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x743544b1 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x746e873a adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9f79abc3 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa7cd06b2 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xbf977ee6 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc77b2d69 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe75c6248 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xb7471982 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x0112be4c aw88395_dev_stop -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x01924832 aw88395_dev_start -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x137d8248 aw88395_dev_fw_update -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x15f2b512 aw88395_dev_mute -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x2f3905b2 aw88395_dev_set_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x3bf9992b aw88395_dev_get_prof_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x4291df88 aw88395_dev_get_profile_count -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x44b91c4b aw88395_dev_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x5b1c8672 aw88395_dev_get_prof_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x9d6cb1c1 aw88395_dev_get_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xcac869ea aw88395_dev_set_volume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xea2298e4 aw88395_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x48637a4e aw88395_dev_load_acf_check -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xc01f53ef aw88395_dev_cfg_load -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3f3d20a2 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xbf25f710 cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc87798c1 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0c414c2b cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2bd28c68 cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x334755ca cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x66b39c8f adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x1ed54371 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x9ef3118d adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x042191e6 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0d335b8c adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2908bec5 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x305d912e adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6269a5f0 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6a9c179d adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7d0df316 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x877704fa adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9dbae3f2 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa054b7ca adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x1d5a7a27 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1e6ff901 aw88395_dev_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x35ddcdb8 aw88395_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x456fdc13 aw88395_dev_mute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x93cf1f23 aw88395_dev_stop +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x992a0fc3 aw88395_dev_set_volume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xae985e74 aw88395_dev_start +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xc0042eda aw88395_dev_get_profile_count +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xdb832f1d aw88395_dev_get_prof_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xdc894cf7 aw88395_dev_fw_update +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xe3543c04 aw88395_dev_get_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf09307f1 aw88395_dev_get_prof_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf1f26299 aw88395_dev_set_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x03e4f6ea aw88395_dev_cfg_load +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x42ef0f76 aw88395_dev_load_acf_check +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x4c4c1e39 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd6e1dadd cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xf646df05 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0e03bb7f cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3799a14a cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x382b9b0f cs35l41_regmap_spi EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x389e86c7 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3e57ff2d cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x72fc2037 cs35l41_configure_cs_dsp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x78910936 cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7def3d20 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x85125315 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x855e334b cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8acd4854 cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8fc569b8 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x971c0ef8 cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa7973712 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xabff8e0a cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3b49f4ee cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4d1761fe cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5e108427 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6eeb1820 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x79c048e9 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7ad7cd40 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8e7e9dd0 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb7ad5610 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdfeb42f4 cs35l41_otp_unpack EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe92ff6ad cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x06bfce90 cs35l56_system_suspend_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x2aa7c0d9 cs35l56_system_suspend_late -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x5ada657b cs35l56_system_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x6bfb865d cs35l56_system_resume_early -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x6e465bad cs35l56_system_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x9b633bd5 cs35l56_system_resume_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x1d4af39c cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf4ca67c7 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf67ded6f cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x20a9a690 cs35l56_system_suspend_late +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x4bdf8ea0 cs35l56_system_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x8cb2ac7e cs35l56_system_resume_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xc3da164d cs35l56_system_resume_early +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xc6fa3c2a cs35l56_system_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe1c4652e cs35l56_system_suspend_no_irq EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8006d6bf cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0ba38601 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0be2a462 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x159daf0b cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x33a4f7e9 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4efc6c23 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x33ced687 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x91193027 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xbb445234 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x27e6e529 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4ddec9b8 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x52f23ec5 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x78c1f166 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x85c5248a cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x39da6b59 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x443a7373 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 0xd6ef0baa cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xedc6aba8 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x570518ce es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf6528f96 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x1bb14614 soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xdbb64200 hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xeeffad3b snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x4d867a3a lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xba0a9e9c lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xbff5fc63 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7ab4c94d soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x82a88d70 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa7df9e4a soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xcb45f23b max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0df5101a mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x55ecd003 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x63a5b2bc mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd720a2a3 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x0c97dfc1 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x76597a0e mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xae92a713 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xb812cfde mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x3444fa9e nau8821_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x825162fd nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xde1e20cc cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x023f7eea es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x162256d5 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x2a6f451e soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x63e8e98b snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xaab2178d hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x127c385a lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x4db0aad8 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x19defd16 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x28cdae6a soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x86df9c82 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x95c59386 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xfb1e6d81 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x49f50ed1 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x717601be mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8e929a08 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc7f766a9 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x1a791f8c mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7c999002 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa3b8a0f9 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xeadd5c58 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xd3f56b94 nau8821_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xcb4fe4f7 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1f0cc689 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2d5c1386 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x8f465201 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x18bc6aa1 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xcc938683 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x354fa318 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x8ed029c1 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x05bc1f8b pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8de94dd6 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xbc6d71c3 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xf19d125a pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7208df64 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe3d04492 pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf6a516d4 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xff708c41 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xe7b99fe8 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xe905aea4 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x5fd10932 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x9efa3021 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc340f219 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x12b3e643 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x994a9c09 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x1e88a240 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x962536f4 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0e143574 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1a790402 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x38b63f7f pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5ccf573b pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1a0e0139 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x25926cbd pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6f2807c0 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb8cd822e pcm512x_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info 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-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x44306bf8 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x620045fb rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x647d1063 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x93249dcd rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe334cacd rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xff0ccebb rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x626f1cfd rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xad2404f3 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xf2aefc26 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x21be979d rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xe3a17ceb rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x344b85f7 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x585ebe3c rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x96bf41f3 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9ae6b0de rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9d306991 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd2128077 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x2e1de810 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb6028ea8 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xef898bfa rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x616d5522 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xbfdefda6 rt5677_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0cb80d10 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x062365cb rt5682_calibrate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0fe3a087 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x49f4b156 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x51367f7d rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x574a780b rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1fcf1799 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x362849ba rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x369e0d32 rt5682_register_dai_clks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7df6cec6 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa12c0741 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7e78ea33 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x85eb42f7 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9530f1d6 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xade9ad74 rt5682_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xba01c47e rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbaa7a4c5 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd746a9c5 rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf1a05aa7 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x5c681861 rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x07ffe881 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x22d1e235 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x60bbdad5 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc9644aa4 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd81948f6 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x1127ee23 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x3efba60f devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x449aeaf1 src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xaccfb536 src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9d5f2d4e ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xfeeed533 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x0877476e tasdevice_amp_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x0bbb818a tasdevice_amp_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x1e10696e tasdevice_dev_update_bits -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x2b8150b5 tasdevice_dev_bulk_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x31338318 tasdevice_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x40b4074b tasdevice_digital_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x4378c1af tasdevice_digital_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x5d587af3 tasdevice_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x728712fd tasdevice_dev_bulk_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x79fcf600 tascodec_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8486e5ad tasdevice_dev_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x84a51f55 tas2781_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x866f9ea0 tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc93bbf3f rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdd1ff2b9 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfad1b693 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x78ffadd7 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1e826eaf sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x62b3b2d6 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x67a2d824 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x78b2ad64 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd13f549d sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x0e39c8be devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x116e469a devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x5bde95f0 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xc56c1c59 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1ca9dbe6 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xceed1a11 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x0c7d7bce tasdevice_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x34c0061f tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x363ca8d8 tasdevice_amp_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x6ada49dd tasdevice_dev_update_bits +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8181bea0 tasdevice_dev_bulk_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8d15975c tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x934433ce tas2781_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xa6997c89 tascodec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb5fc0451 tasdevice_dev_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xc964d307 tasdevice_amp_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xcb987dc0 tasdevice_digital_getvol EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd60d28da tasdevice_dsp_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf427fc92 tasdevice_dev_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x396f5fe5 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x0d9987f8 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xdffa8f95 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xdf1b7776 tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xe9290391 tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf5aa13bc tasdevice_dev_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x32c100eb aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xd9c60a36 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xc2ef50f3 ts3a227e_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x14515ce2 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x897fed1a wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x919b01b2 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa1a859d8 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xca12d14d wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1a70fa0a wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1df268bb wm_adsp_power_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x206029dc wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x20cf1ce1 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x26a2130f wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x360ec091 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x380db26b wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4385596a wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ba3678e wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x18241629 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa2bde912 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc116f219 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe628b41e wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf1853413 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x05e06921 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0a9554e9 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0c7a83f9 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x23327459 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x239521a2 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x40c428cb wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ed75382 wm_adsp2_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5e37e1ca wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x60c64fdc wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x653b83fb wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6688bf7a wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x674f18da wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7e3e76b0 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xabdeaa22 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb5391d8d wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbe7c5a02 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc529c02f wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc8241592 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcbc1bb36 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdb2471bf wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x55570835 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x59297d7b wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x593cf5a5 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x598166ef wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6eff75dc wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x756f2d92 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7c65eaa5 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x895f728f wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8cd8efc8 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9105051f wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x922eb68c wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9e7038d7 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xab0a31bb wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb5ea6120 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd4a86012 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd6f71acd wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdbe04bea wm_adsp_early_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdfd62f9c wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe44574fb wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe62a22a3 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe8c426b9 wm_adsp_power_up EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf17e064d wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1343caa4 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2a9fa94f wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5afbb9bd wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf9f77df9 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x10d2ec95 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x290e8f7e wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3bc142b1 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x50410e3f wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x55c3d097 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 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9413929f wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9cdb7d54 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa296c9d9 wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcec01427 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xeb141a21 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x49b4a63e wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xe28ca037 wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x17179300 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2e854c24 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x67d04204 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb97c034d wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xbde643a7 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x174eb7b0 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x66fba841 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xe8da0c73 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xc097af20 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe4ef89f5 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc1dda8ea wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc2d4854b wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc51cb0c9 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x9e9b2f3d wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xae22b631 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4bae7aea wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x94452005 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcef59567 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xde8c2be2 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x2fd4d823 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4fafab7f wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x0a98f05d wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xe7bcce80 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x7b58ec2d imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x141337bc fsl_asrc_component 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/generic/snd-soc-audio-graph-card 0xe7b5cbc5 audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x1782f937 audio_graph2_link_c2c -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x2c5df564 audio_graph2_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x36fe54ff audio_graph2_link_normal -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x9bac93bd audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xa1e6eb5c audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x0de0486b audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x5bdee4f6 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x9d520b3d audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xd082b3cd audio_graph2_parse_of EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0c79965a asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x23157b34 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x257a0c34 asoc_simple_init_aux_jacks -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3a9cd22d asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3b5a4e62 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x465bdcbb asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4bd2110e asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5098062f asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6283c11b asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x66b4a116 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7324b549 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7936fab2 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x853a1933 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x880471c1 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xad20e467 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb32e35b9 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb73c0f40 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbafde3d0 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc32702ff asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd352ecce asoc_graph_parse_dai -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xddb91a18 asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe7caecfa asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe8a545f3 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf526b078 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0c18e1d8 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0d41fda0 mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x111c1c5a mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1208fb4f mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1352e4bd mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2a633a8c mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ea347b6 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d47fbd9 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4ae790e3 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x61198f76 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6aba9060 parse_dai_link_info -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6df49e78 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x76eebc2c mtk_sof_card_late_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x860c0082 mtk_sof_dai_link_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8a495475 mtk_sof_dailink_parse_of -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8e0b37fa mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8f34ddd0 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8f5a18f4 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x96a24539 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa17c08a9 clean_card_reference -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa4a83605 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb4ac910d mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb89fa2b3 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc3917fed mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xccbe2bc6 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe14f8d32 mtk_sof_card_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xea65fdcb mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xef6e6f9a mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf72def2c mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfe24e770 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xff5b0131 mt8183_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x0031fd82 mt8186_afe_gpio_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x220fa605 mt8186_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x6bda5c18 mt8186_mt6366_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xaf6a3df8 mt8186_mt6366_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x274b2ea8 mt8188_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x6fd271c1 mt8188_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x17c80345 mt8192_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x28793d8f mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x3ec81f46 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0d2479d2 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x113b50d7 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x27a9c730 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2a41d82d axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6381625f axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x95d2e930 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa3531981 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf444d0f8 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf86c0013 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0eb6f12e asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x14182d2a asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x159c5eb3 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x25ec78fd asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x32294493 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x40e8b17d asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5e3a4c1c asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5f2a366f asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5f4b20b6 asoc_graph_parse_dai +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x638d79b0 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6a843449 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x73038763 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x76034dd7 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x88c8b83b asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa033b24d asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xab66d77b asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xae147906 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbb6544e3 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd1711993 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd69aa408 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdec9de5e asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe4911a99 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe8eb5555 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf21e741e asoc_simple_init_aux_jacks +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x01bf2fe4 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0757c33f mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x086d8175 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x115346b9 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x13209887 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x27af6b5d mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x32567924 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x381e7731 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x40d8a5d9 mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4545f423 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4a64cc09 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4cd1a09a mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x50696185 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x579ed9c1 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6070e3c0 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7169d75f clean_card_reference +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7eb7f577 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x84ebdd15 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8f3ab961 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa56c6744 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaa958f99 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb79b8086 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc755f508 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc95a5637 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd7699b3f mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xda525cb1 parse_dai_link_info +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdca5e022 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe257cdd7 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xef1a89df mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfc032afb mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x665c026f mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x18bda804 mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xcc745763 mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xe0207ee4 mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xe77cfb39 mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x6c8f4f2a mt8188_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0xeab93861 mt8188_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x0b315fcc mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x74405ecc mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xf17c412d mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2594b094 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x64058b15 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7ea1dce2 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9687e373 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa6cb285a axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb35d95c7 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xeaac7c05 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xedc1322d g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf700d1e2 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x3c5d6099 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x6993ca2d axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xb1fd514c axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x6b3aa9ee axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x738444de axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x0c740989 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x29755014 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3a6e8fe4 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4e16f3f0 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5911552a meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x729cf675 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x83a72b92 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe6dea96c meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5357cdd8 meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x82835d5b meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8f283768 meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8fe7ac4d meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe8a5282f meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf8560bfe meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x116a4782 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x79d073fe axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x25db6498 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x32729576 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x384d125d meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x845f3dc9 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb60a0326 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbf71813c meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe0a6c584 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe82b24ba meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x03800209 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x1b9ad9c4 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x4c24cb3e meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x60eecf3b meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x83256165 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe6678077 meson_codec_glue_input_set_fmt EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x3b728a42 q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xcc62bddb q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x332e5013 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x870cef3e q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb56389fe q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x33b3d634 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x8151e96a q6afe_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x8bb194b5 q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x986de97d q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x21ef092f q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read @@ -20435,6 +20454,7 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x8d0d6393 q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xb37ed108 q6asm_enc_cfg_blk_pcm_format_support @@ -20449,299 +20469,300 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x360dff73 q6prm_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xa25bd530 q6prm_unvote_lpass_core_hw -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xba4532b8 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x1d4b79cf q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x2b05a267 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x8cbf70dd q6prm_vote_lpass_core_hw EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x065dfcdd q6apm_graph_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x167eb202 q6apm_graph_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x16c010df q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1a039e25 q6apm_enable_compress_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2132c6ea q6apm_graph_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2fe33fd3 q6apm_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3366cd79 audioreach_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3bd19d3c q6apm_remove_initial_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4f2d98a7 q6apm_enable_compress_module -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x54fb8fc3 q6apm_set_real_module_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x37175daf q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x38b926ef q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x44c06c45 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x48e8bda9 audioreach_send_u32_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x52a3efe2 q6apm_graph_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5f6639ff q6apm_graph_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x61a4d5e4 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5a66f1d8 q6apm_graph_media_format_shmem EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6e3a2376 audioreach_shared_memory_send_eos -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6edbaa28 q6apm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7584d3f5 audioreach_set_media_format -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x774c6458 audioreach_compr_set_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x66c1466d audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6f7ae062 q6apm_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7b0bd569 q6apm_graph_start EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x827ad82a q6apm_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x929ee4a7 q6apm_graph_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9981d959 audioreach_alloc_graph_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa40e496c audioreach_graph_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xac90c7c0 q6apm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb5db28ed audioreach_send_u32_param -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbeaa783a audioreach_tplg_init -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcc72a177 audioreach_gain_set_vol_ctrl -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd3dfa156 q6apm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xda2f4a63 audioreach_graph_free_buf -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xde02110f q6apm_graph_media_format_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xec7ac988 q6apm_graph_get_rx_shmem_module_iid -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf97c4108 q6apm_graph_media_format_shmem -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfac614ba q6apm_graph_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfce63e83 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f7c1f1c q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x80c056fd q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x845a7b5f audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9ce034a4 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa12e357c audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xaf0ed3fc audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb01ce7d4 q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb21599d0 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbd8d27a0 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcf8c9746 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xda83a9f3 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe0992fab q6apm_set_real_module_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe3a10358 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe6d5b047 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf03bd7c3 q6apm_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf3410bda q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfe40c1cd audioreach_compr_set_param EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x280c4300 q6dsp_clock_dev_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x8c98e835 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x319c8b83 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x52ce9faf q6dsp_audio_ports_set_config EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x9501f8e4 q6dsp_get_channel_allocation -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe8f91c86 q6dsp_audio_ports_set_config -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xe4bae63d asoc_qcom_lpass_cdc_dma_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x20385626 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x268dfce2 asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x351813b0 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb9178ebc lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xdec60faa asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe6928b0c asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x9d8d7902 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xe1644127 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x38ec7c70 qcom_snd_parse_of -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x3ebd7b1e qcom_snd_wcd_jack_setup -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x57f38659 qcom_snd_sdw_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x5d7179a5 qcom_snd_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x80630d2b qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xb9fe3d73 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x7720ec34 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x30130716 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x55caf55a asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9026c280 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb54cf000 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xea895dcc asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xef4de3c9 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x4f158859 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x786f72f0 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x05cd6392 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xd7c2d0cb qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x21085b0b qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xc571330d qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xff7c9520 qcom_snd_sdw_prepare EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x2ad85b63 snd_soc_acpi_find_machine EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x48c4d20c snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x014dbeef snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01b2c871 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01ddd804 dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02935dbe snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0379c7b4 snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05257aaa snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x060e9152 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x061c7909 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0737265b snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0814267b snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x082faee3 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09325584 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09611052 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0981f1f0 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09b9d3f9 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09ef189c snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0acd4428 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e423150 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e4e8b6c snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10a27c50 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11d3d8c3 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13bca6dc snd_soc_component_get_jack_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15414090 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17a18b0f snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1884c1e2 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18e24a10 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x194e3e11 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x197e17ca devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a6e44b4 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cbd7c4f snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eaba9d2 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f8a6820 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20455ec3 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2496e7f5 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x251396eb snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02fe5c85 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05542fd4 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05c615d6 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0774cdbf dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a35d9a8 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a767dcb snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ab49700 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b89fa84 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d2c78be snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d7de04a snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e0ffa8c snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe1cd23 asoc_dummy_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10487bca snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x105b3e71 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12be433e snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13fca6ae snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x159a0338 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16dcc78e snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16dfe3ef snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18393644 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x191b16e8 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d74ff77 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20a179aa snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x220993a9 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2236a3c4 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24114712 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2461cb20 snd_soc_of_parse_card_name EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26472930 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281f5aff snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x291197dd snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2abed9e6 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aed42c8 snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c201a4d snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d6eb46d snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3135c7ce snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3161ba14 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31e8ddc6 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33d435da snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x341dfd8b snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36077a58 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x364a547a snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36b0ad0b snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39563855 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39708ade snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3997fe86 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a10cecc snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b3db82c snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bfada97 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c564e77 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c8a8149 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ce2aafc snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ddeb44b snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ef7cb38 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4014583e snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40e4bf2d snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41037b23 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4241f041 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45f00d81 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4611a6fd snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4613f746 snd_soc_add_pcm_runtimes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x466e1c24 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46f753fe snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a54ca62 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4adf5d61 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25577bc4 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x255dfa3e snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x265e2a08 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26ab5231 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x270ffa4d snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x286d0cef snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x289bdfdb snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28abfb78 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x295e3b3d snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29facd6d snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bfe21d8 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cac8bb1 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e0a2864 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2edb780b snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ee3836c snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31004269 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x322e0636 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33fc1f12 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x357c8973 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x367ae8cf snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3770b7b3 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x381d56c0 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x389c8bf5 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a829356 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3afbc1f6 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b414911 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d50fbbe snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d90203e snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e273351 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41c65375 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41e8e7c4 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4459faba snd_soc_of_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44a694fc snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47dcdf62 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4afd51e9 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c0b2b6d snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f59147a snd_soc_lookup_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51f56306 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x535a3e35 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54859961 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58ccff3f snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b032e94 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b62b8dd snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cd03d1e snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f1d1371 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61267cf3 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61e21d9b snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62900c1f snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62c08b73 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63223ac4 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65194cf0 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68b23688 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x698cd22d snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a03ad30 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b080cad snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c19b043 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6caa4289 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fe6191c snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x733b584e snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7635a312 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76997038 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76acdb40 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7766ca75 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79201704 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7959f334 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ad18cda snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d4d342a snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fe57042 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5084bd0b snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51446ff6 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51b13294 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51b41941 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52d21d84 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x537ad42d snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54c6d27c snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5536074d snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5582155e dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x564830e3 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56a6e45c snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5718dad9 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57e3052c snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58a68e48 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58e1e6ff snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59953dc9 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59c740c7 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b054100 snd_soc_get_stream_cpu +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c6594a5 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5df78942 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e5b3df3 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61f770e4 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6279a896 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x631303cc snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x649ba754 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66398eaa snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6643e202 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67701ac5 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x681d40f4 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6963bfe3 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69a53de7 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6af6b870 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c81b7b2 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cf48ef8 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x707b1d9c snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70cc787a snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70d01610 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70e3946c snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7132edc9 snd_soc_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7152eef5 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72791de0 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73bb9fb1 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x754c51f9 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758584b5 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7587fa40 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x760eba31 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x762bc89a snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x769b11b2 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76da8340 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x773698fc snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7799358d snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77a7ed64 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x786410ea snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78b0fa1e snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b3addc3 snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b74b1a5 snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e73df15 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fbe80c7 asoc_dummy_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fe18ad3 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80183561 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81b287ad snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x829fa336 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82ceeb22 snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84df5974 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84f8ae47 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x859f202f snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86d1a1a7 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c770a89 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ce9fac5 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f9085fb snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92146e40 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e80d96 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92ecedc8 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x939990a8 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94748f5d snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94a37b84 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x960b3ce2 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x961a8526 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96f383d5 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97181006 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x994489a5 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99a9ad1b snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a5a66c3 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c179aeb snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c18364a snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d0f797c snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d25b50f snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d44f529 snd_soc_get_stream_cpu -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa06edcb5 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0c30241 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa119964a snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1dc1cca devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa225c5e2 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3b24973 snd_soc_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa448aeb2 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4b83311 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa690f463 snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa77251a1 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaab22c91 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab9f87e9 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad257f36 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad6ca487 snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad831b59 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadb1ce7d snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf8aee62 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafb0add7 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb079ad9a snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e4c07a snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3eb92f7 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5c20599 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6b6b9f2 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7470d82 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb99dc6a5 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb99ffb1e snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbad07d2d snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd53c04b snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf9edb41 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc054e139 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc09e5635 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0e3c1e7 snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc30b20f1 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f7b6838 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f828341 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x831b338f snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x838543e2 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x854542c3 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88d5dc8f snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x898ed17c snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a891645 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8add8d57 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d08fd28 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dbe4870 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dd41890 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e61e17b snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8edbcfe5 snd_soc_dai_is_dummy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fefd84a snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x901e97f9 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90555d29 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90a93661 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9591b54f snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95997258 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x983b06b3 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x986ea02f snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99e3418a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a4c22c4 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d4332ae snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9edc71a7 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa346cb69 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa44d1911 snd_soc_component_get_jack_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4a48b2d snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4d42b15 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa83d1771 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9805e0e snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9b847eb snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa028dec devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac6ca6b8 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xace6e891 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf2d460e snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf919efb snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb065a8d4 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1e46e84 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb660537c snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb807cfba snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8d498df snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb90b0821 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9dbbd39 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb225e34 snd_soc_component_notify_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb852351 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd7197ed snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe03534b snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfd01791 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc05d8dff snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc083b2bc snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0c573d9 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0ca1b9a snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0f0b5e1 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc11a32f4 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc148fc0f snd_dmaengine_pcm_unregister EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc378beab snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5eeb673 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc68d4ad2 snd_soc_of_put_dai_link_cpus EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb0a2759 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc8f21c5 widget_in_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce525d0b snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceb17a2a snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf1061fe snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf99f955 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0061c93 snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd02f7df9 snd_soc_component_notify_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd286b548 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3a87ab5 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3ab257d snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4d2c4f4 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e34e96 snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd94d5501 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda54431e snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda8f98f8 snd_soc_of_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc8015f2 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddb2b9b8 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde2c7b05 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfcb70ca snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0ace438 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1a195e4 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe328f523 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3aeee8e snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3f6c1b9 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4245cb1 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4851e1b snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4fcbac3 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe520f150 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe62b3c05 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6d3d376 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7e9c424 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8176b8d snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8b4cf1a snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc919a6de snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc93b4f8c snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9e832fd dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca2a00d0 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc951365 widget_in_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd8f2ea0 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdea3bdb snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdfedc1a snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0dea724 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd19540ba snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c2c63f snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd50e579f snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaf73a4d snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcfae005 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf10ffb0 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfb20a0a snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe073f138 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0d57db6 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe218d51d snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2523d70 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe43e07d2 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe49cf27b snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5bfe6d7 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5ee2b7f dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5f036d3 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe871d1b0 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe962bdbd snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea3555b9 snd_soc_info_xr_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb95dd80 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebbfdb88 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed6c726e snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee1d8ee9 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee65ebd9 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef5a1ff1 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf02cab89 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0d290d9 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1d39545 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf61286d3 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf63ff62d snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6c22b4b snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7c0efab snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec776866 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed3fae05 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1e2a438 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf27ca56b snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf374edaa snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3b054bf snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4dfc0e5 snd_soc_runtime_action EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdfd3a42 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe522a27 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe75be55 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfefbf7ca snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffce45f7 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffd1417d snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3c5f236c snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x60c18909 snd_sof_debugfs_add_region_item_iomem -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x61da31d9 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x648e8baf snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xba90c8e2 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb8711f0 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd31ef11 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdedd3da snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfea31107 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff2f253b snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffb7d12b snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffc7235c snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa4d5c184 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc7fb5b7e snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd1d9c0a7 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd1fa31dd snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd249f2f8 snd_sof_free_debug EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write @@ -20751,17 +20772,17 @@ EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xb67dbf49 sprd_mcdt_chan_dma_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xdf547b54 sprd_mcdt_free_chan EXPORT_SYMBOL_GPL sound/soc/sunxi/sun8i-adda-pr-regmap 0x37a3a5c2 sun8i_adda_pr_regmap_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x10188b1a tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x83d99c41 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x13011a78 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4798d190 devm_tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa6ad2e54 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc64a4693 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd2120e9e tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd3bd7e37 tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd9a19c26 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe1dae1ee tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf18a33c2 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x1ab6f645 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x6ad9fb9f tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x210e1d89 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x30515915 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x30a844cd tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa99ea06b tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xaf99b49b tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb6cf6641 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd2ebb0a3 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf25ce365 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf8500a0d devm_tegra_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da 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 @@ -20774,7445 +20795,7448 @@ 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 0xd01de23b tegra30_ahub_allocate_rx_fifo EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x78069fb7 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xff080d46 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xe40bc386 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0e6ba64b line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fe8e671 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x12db8aa0 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x425efdeb sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x4a5c0e6c udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x00298e18 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x05db3f1f line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x09544c0e line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x19730cec line6_resume EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x204c35eb line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x222ddbfe line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x43fb1b71 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4c31f4fe line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x889c203e line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x97c4a2ce line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xadb42b13 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb49da448 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcebba9ce line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd5f56b5c line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd7fb5162 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe498f95c line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeeda4ebb line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfaf431cb line6_write_data -EXPORT_SYMBOL_GPL vmlinux 0x001adb44 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x00295cf9 kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x0029f012 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x002a3612 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x002dfb09 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x003c4651 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x0043ff00 stmpe_disable +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2051ec75 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x30148416 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x36dda634 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x39ecdbc1 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53ba412f line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x75f6db54 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x849107c0 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b77de50 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa8fd94ae line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb107053f line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc379758e line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf9dd50b0 line6_read_data +EXPORT_SYMBOL_GPL vmlinux 0x00138be5 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x004ba8ec tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x004f1bee pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0057dd3d pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x005d16e3 vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x006f0a49 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x0082d312 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x008f85c4 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x009f0a62 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x00a55dfd trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x00cb8a0b pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x00cdb521 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x00cdbd5a __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0084eb7e blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x009781ee __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x00a06f98 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x00a2e73a tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x00ac16e5 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00bfdf2e ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x00d4a0d7 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d9ee28 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x00db1817 crypto_sig_set_pubkey -EXPORT_SYMBOL_GPL vmlinux 0x00de3527 msi_unlock_descs EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x00e52787 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0x00e57e32 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x00e37511 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x00e3980d gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x00eb52c3 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x01010e35 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x01063a17 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x011f6920 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x012506af usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x00fa9a4f fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x011c148a fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x012d4783 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x013665ed blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x013b1947 bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x014c175c gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x01545619 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x015c1296 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x0166a4aa pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x0174bd9c rt_mutex_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0x017d99d9 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0x01826416 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x0184256d meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x017ee893 regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x019497bf bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x01992707 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x018ad388 vcap_tc_flower_handler_portnum_usage EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free EXPORT_SYMBOL_GPL vmlinux 0x01a20dfe spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x01a5a6fb ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x01b31e86 ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0x01b3f064 devm_of_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x01ba1bd7 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x01a87235 ma35d1_reg_clk_pll +EXPORT_SYMBOL_GPL vmlinux 0x01b6447b __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01d52845 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x01e1a2ac synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x01c8676c free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x01d3cd18 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x01d7bae5 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x01d7e322 crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0x01d8359c ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f9365d devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x01ee0aee rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x020964f2 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x022b2c82 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x0208df39 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x020abdba of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x021a8f04 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x0220223d ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x022278ac devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x02292dba kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x0231f8d1 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x0242c9e4 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x025bf235 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x0263c720 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x028a34a5 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x028be748 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0294e8e5 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x02662274 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x027c2818 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x02840e2e gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x0294afca rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x02a06ee8 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x02c21d17 i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02e60594 dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0x02efd31b of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x02f18d17 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x02f76556 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x030373b1 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02ca183b devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x02f35f81 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x0304887a bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x030fb681 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x030d29b0 ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031663ce wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x031cd701 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x0322d5e4 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x03301d54 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x0326ed15 nvmem_layout_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03334a86 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x0340e001 wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03469e1a rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features -EXPORT_SYMBOL_GPL vmlinux 0x03494395 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x034e43f1 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x03593ee3 clk_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x035ed9d1 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x0366f4d4 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x03610641 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x0367e4f0 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x0375096c ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x03786d0b crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x037c5687 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x038013b5 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0380621d scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03a2aacc extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x03b0ab5c device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x03b61f7a anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x03bc5bff device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x03bf2d83 mtk_clk_pdev_probe +EXPORT_SYMBOL_GPL vmlinux 0x03a1d6ea ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x03b121d9 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x03b7bf2e wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x03bba296 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x03c012b7 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03c53e3e inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x03c5ccbd kpp_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x03ca3464 meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x03cbea2f bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x03ca01c0 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x03cc8610 nf_ip6_check_hbh_len EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03e1134e unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x03e869b9 iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x03f437ad vring_create_virtqueue_dma -EXPORT_SYMBOL_GPL vmlinux 0x04015d21 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x03d878ca __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x03de15e0 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x03ed8843 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x03f2fbdf acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x03f7abec dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x03ff6423 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x04019c88 dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x040a1e35 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x040b652c arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0x040deff0 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0404494f hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x040b9d19 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x040bab36 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr -EXPORT_SYMBOL_GPL vmlinux 0x04147c3b vp_legacy_set_features -EXPORT_SYMBOL_GPL vmlinux 0x04205f4d sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x043a599b receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x043ca384 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x04401bf3 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x044505d5 perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x0456c103 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x04593cfe devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x045eda7c proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x04209779 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x042e63c6 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x045230ac fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x045c1196 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046d07e7 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x046aeb9f crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x046e43de ping_close EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x046fda39 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x04708248 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0471d943 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x047ebf8d serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x04820f99 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x048234d9 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x048ae364 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x047e145c of_alias_from_compatible EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048bda80 fsl_mc_portal_free -EXPORT_SYMBOL_GPL vmlinux 0x049679f5 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x04979507 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x049bdfc7 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x049d21fc pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a1aada inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x04b810e6 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0x04b70339 acpi_gpiochip_free_interrupts EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c10cc5 devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04dbe5c6 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x04d81046 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e5a2e9 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x04f78b46 kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0x04fe21a2 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x04f14994 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x04f34964 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x0504356d devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x0514171b pci_p2pdma_add_resource -EXPORT_SYMBOL_GPL vmlinux 0x0515baf3 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x05129c18 __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch -EXPORT_SYMBOL_GPL vmlinux 0x0522a591 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x0523efac thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x05315381 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x0534b443 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x053640ae nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x05378cee mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x054b0053 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x054b34b9 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x0557ef31 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x054e8a0b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x055b9fe9 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x055f91c9 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x0560279a ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05652cb8 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x056575cb gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x056bac33 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x05700938 xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05a3257b gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x05c9f77c fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x0592b584 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0595b6e1 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x05b5d8bf devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x05b642fb pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x05b73693 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x05c202f0 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x05c6f05e dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x05cc5fd2 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0x05d4dc80 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x05eb6714 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x05ee5f08 mtk_clk_pdev_remove -EXPORT_SYMBOL_GPL vmlinux 0x05fb7342 mtk_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x06023c32 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x060515d2 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x05e8b7ff ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x05ec0a75 dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0x0608f1e3 imx_clk_fracn_gppll_integer +EXPORT_SYMBOL_GPL vmlinux 0x060bff8a validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x060f5c38 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x06113256 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x061b5bc6 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x0623ff14 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x062b9bf4 pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x062d117f __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x063e204e cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x064872e0 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x064b89ae fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06313900 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x0631cf36 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x063c09fa sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x063e6c37 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x064010bb handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0651131e eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x065f0c6f fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x0660879f vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x06709e60 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x0673d26e vcap_tc_flower_handler_ethaddr_usage -EXPORT_SYMBOL_GPL vmlinux 0x0674b8df crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x067d851b fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x06509d38 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x065ffdd8 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x0660251d ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x0667992a dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x066eef79 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x067fb2c8 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0x069dcec8 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x06ae121c fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x0683989d ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x069af9f6 dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x06b3308e rz_mtu3_8bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x06b5455d phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select -EXPORT_SYMBOL_GPL vmlinux 0x06bf0391 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x06c27f6d mtk_clk_unregister_ref2usb_tx EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06cdeee9 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0x06dbbc16 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x06dc97f3 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x06e415bc __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06edac74 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x06ee204c tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x06f88043 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x07072251 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x07080c23 vp_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x0718f3ed pci_epc_linkdown -EXPORT_SYMBOL_GPL vmlinux 0x071b068b usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x06e5178f irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x07072166 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x0714bda1 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x07311e23 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074e70aa of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x074ef324 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x0748bbba gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x07550f37 devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x075fb34d debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x0760a23e edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x07677688 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x0767a488 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x076c601d tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x076d5d22 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x076ff336 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x07734db7 sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0x0780853b kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x0782107a __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x07a6461f __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0768c6ff __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0771095a icc_put +EXPORT_SYMBOL_GPL vmlinux 0x077208be debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x077f65a7 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x0784996e dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x078c7825 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x07a338c8 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x07ac07a1 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b8664b shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c32ce3 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x07e956ee pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x07ebedd8 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x07f04e5a ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x07f88eb3 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x07fedd56 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x0800c7ea rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x0805c158 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x080b0a0b regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x07e8eb44 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x07ed28e9 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x07fabab6 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x0801db79 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x080a767f ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x080dee7e pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0812f45b scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0814425b fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x081eaf9b nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL vmlinux 0x0829be3c pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x084265eb devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x084f1659 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x0855c039 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x0822becb user_update EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x085900de regulator_map_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x085bffd1 trace_seq_bitmask EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0881335c uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x08813770 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x08814137 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x088c6ebb pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x088fa423 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x089884a1 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x08a7e97d clk_hw_determine_rate_no_reparent +EXPORT_SYMBOL_GPL vmlinux 0x089f6689 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x08b3faf2 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x08b48117 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x08beeec1 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x08c178ca __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x08a9599c kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x08a9e824 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x08ac91d5 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x08acef7c devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x08ae5176 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x08b18d6d usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x08c310f4 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x08c38db6 usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d434fd dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x08e2b333 cppc_set_auto_sel -EXPORT_SYMBOL_GPL vmlinux 0x08eeea08 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x08f07293 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x08f1a4f2 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x08f2460a pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x08fee76c ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x0901959e regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x091b4a65 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x090dd65a tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x091415fd rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0927381c samsung_sdi_battery_get_info -EXPORT_SYMBOL_GPL vmlinux 0x092881f1 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x092f17bf kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x09225ae0 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x092ab6bc devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x0934da3b dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0936a9f7 perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093ef3e1 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x093c480f encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x0948b2a6 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x094b2f23 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x09600444 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x0960b854 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x09659aac genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x096e7558 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x09702028 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x097648b2 mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x097dcdf1 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x09837dd1 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x098639a3 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x09a780e1 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x09783f89 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x09860f24 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x09884426 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x09951c17 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x09997cd4 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x099abecf debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x099de2bf pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x09a90101 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x09acdfb9 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x09ae4d1b inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b86bbc regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x09beb2f6 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x09b6f1cb regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x09b7c924 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x09bf8004 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x09cbf147 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x09d0e6e1 modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x09d92282 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x09e8d7c3 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x09df9950 io_uring_cmd_do_in_task_lazy +EXPORT_SYMBOL_GPL vmlinux 0x09e1ff53 thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0x09f46309 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x0a07844b auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x0a09ac05 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x0a0bb219 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x0a0e7f4d virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x0a1a6453 usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0a2d8c33 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x0a4a91f4 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x0a4d4ee7 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x09fd6fc1 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x0a0384d3 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x0a12ba23 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0a2d4076 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x0a2f4e2b devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x0a4e6e0a nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a59265d __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x0a5d4874 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x0a76de8a ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0a6c3efc vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x0a6ed88f pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x0a715d6b dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x0a7ea3a9 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x0a87b1e5 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x0a8479d6 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x0a8894f4 mas_find_range_rev -EXPORT_SYMBOL_GPL vmlinux 0x0a899d5c iov_iter_extract_pages EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x0a99407f usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0x0a9df53d for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x0aa05de0 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x0aa5f5b6 dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0x0ab9d1a6 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x0aba280c power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x0ab09dbd __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0ab1d2df devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x0ab61430 device_create EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0abf4f15 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x0acac8b3 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0adb3807 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x0ad4367c dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0ae54aee of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x0af097ac dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x0b029517 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x0b067b9d platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0cf490 devl_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b0edea8 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x0b0a40c2 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x0b1426c3 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x0b1f35b6 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x0b2d2276 usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b313308 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x0b3a02f7 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b3ee5b9 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0b4a8e31 blk_mq_freeze_queue EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b541661 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x0b56c6f9 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x0b597ec2 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x0b5df202 firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0x0b5728d5 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x0b57324b mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x0b5cf97d gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x0b6824ef phy_create EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b6d293e ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x0b6fca00 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0b71297f bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x0b8439e6 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x0b85c80a pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x0b8baf9d generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x0b8c236b rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0ba1f6fe phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0ba3497c is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x0ba776d9 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x0baf7caa da903x_read EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x0bb2b278 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x0bbaabff blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x0bbd4b68 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bcfb742 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x0be0475a mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0x0be1a5af icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x0bea10f6 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x0beb90eb mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x0bd58c1e clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x0bde8448 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x0be3d798 fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf4ef18 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x0c0a7d8f ping_close -EXPORT_SYMBOL_GPL vmlinux 0x0c0e4b0b fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x0c168e13 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x0c175fc1 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0bf6291e of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0bf9d50c rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0c08dd7d acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0c16c7f0 ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x0c1a5ee3 log_post_read_mmio +EXPORT_SYMBOL_GPL vmlinux 0x0c1f51f5 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x0c267ec6 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x0c27491b devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x0c2a6876 gnttab_pages_clear_private EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2cfc34 usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3c45c8 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c547729 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x0c734b98 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x0c7c0d97 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0c7ce61d ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x0c406f71 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0c4aa6b3 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x0c534b30 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x0c684d6b unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x0c69658a tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0c6fe3d6 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x0c7d7822 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x0c82fced powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8fa2a0 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x0c92b40a of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x0c9cb249 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x0cac22b9 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0cb44fd7 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x0cbdf156 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0c9075b3 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0c91242c devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0c968a0b virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0cae997e fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x0cbb5186 pci_generic_ecam_ops EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cbf000f pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0cdd6026 extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0x0cdb5663 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0cdd82de unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0cecd975 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x0cf7cde4 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x0cfa847f devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x0d048668 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d1c753c vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x0d2947a0 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x0d30b99c iort_get_rmr_sids -EXPORT_SYMBOL_GPL vmlinux 0x0d353829 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x0d38877e rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x0ce6864d da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0cf49270 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0cf7b192 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0d066920 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0d1381aa crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x0d19d99c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x0d3550cc bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d3a9db1 qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports EXPORT_SYMBOL_GPL vmlinux 0x0d435bd5 __tracepoint_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d476c03 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d49a916 regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d4fc43b iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x0d525095 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d530e41 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x0d55b68e pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x0d57a531 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x0d59c486 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x0d4f1b0e bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d5de731 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x0d5eed41 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x0d5fa5d6 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0d645fc5 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x0d5ed0e6 __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d6cc2b8 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x0d6d2771 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x0d72eb0d of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x0d79219f dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0x0d7e6353 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x0d978769 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x0dac13dc __put_net -EXPORT_SYMBOL_GPL vmlinux 0x0db34ef3 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x0d7b46b9 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x0d7fcc2e ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x0d80f3d4 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0da30005 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0dad482a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x0daed6dc devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x0dc444bf shake_page +EXPORT_SYMBOL_GPL vmlinux 0x0dc97c8e nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x0dcf081f crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x0dcf88fe tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dded373 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x0de4d332 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x0ded1aa3 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x0de28698 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x0dea55ed phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x0dfca04f blk_crypto_register EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0923ff spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x0e0a9e0f noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0x0e10e129 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e2e3ca9 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0e3248b2 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x0e3cef1d input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x0e518232 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x0e52e89c thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x0e55ac4d of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x0e1af9ae regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0e2e3ed9 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x0e35d14a nf_route +EXPORT_SYMBOL_GPL vmlinux 0x0e5184c4 mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e662772 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x0e6b151a blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e6e2ce1 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x0e6e7079 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0x0e706431 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x0e73fac2 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x0e74c204 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x0e801079 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x0e854604 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x0e981c84 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x0ea027a8 transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ea67b95 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x0eb5c6f9 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0x0eb779a3 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x0ebc3923 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0eb65aa0 of_pci_get_slot_power_limit EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ec79e4b devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x0eceddf4 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x0ecfaba3 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ed06f9c dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x0ed12e0c __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0ee1a9c9 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x0eeb73b4 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x0f0ca92f regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0f10307b dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x0f1450f6 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x0f149f99 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x0ed353b5 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x0ed3b7ca fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x0ed6b382 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x0edac54c thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0f101472 mc_send_command EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f31f49e device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x0f681b0e regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x0f6bea9e __traceiter_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x0f73c35a icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x0f78c831 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x0f35dac3 bus_get_dev_root +EXPORT_SYMBOL_GPL vmlinux 0x0f3b31a9 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x0f4c2067 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0f6ca6c6 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x0f7019cd pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x0f7427d0 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x0f7a002a devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f86032c unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x0f867a28 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x0f8815fa tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x0f8ef30b imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x0fa1a311 virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0x0fa45430 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x0fa6dcd8 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0x0fbae432 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x0f88a68c xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x0fadbcc8 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x0fb003b7 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x0fb7bae8 rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x0fbd687c devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd8ea27 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0fde7f5c pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x0fea8e25 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x0ff0bc54 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ff2ebcb ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x0ffc277f crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x100077ab fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x100285dd wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x0fd58285 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x0fe1283e devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x0feeda35 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x0ff6f764 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1001f059 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x1012f90d ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10185634 vcap_find_keystream_keysets EXPORT_SYMBOL_GPL vmlinux 0x10185973 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x102286ef class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0x1020cc3c generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x10268b3d mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x104269b4 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x106357d0 mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x107c1e50 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x1068ec02 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x107d8700 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x108544c5 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x10874b37 raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x10911390 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x1094ca78 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x10a01bd2 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x10b02747 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x108ed438 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x1099509a xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x10b60c76 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10cc607f kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x10c9fc34 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x10ca2bdd shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x10ce99f8 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x10ce9ba1 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x10d58041 icc_disable EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10e3abff dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x10e0bb69 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10eccde9 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x10f61384 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x10f968f2 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x10ef6d64 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x10f0aa19 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x10ffd15e pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x1109cd8c driver_register -EXPORT_SYMBOL_GPL vmlinux 0x1117509b extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x113bf68d sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x113c9d2f crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x1146af16 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x114d9286 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x115a1f54 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x11602fff skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x117ed5de devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x110c6fe8 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x110fa048 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x111913dc da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x11197ea6 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x11199241 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x111a9cdd nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x11284594 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x112fc93b vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x113427d7 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x115704c7 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x116004ce cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1162a7ae handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x11639db2 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x117b38e2 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x117d8b43 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x1180ae45 usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x118b1e9f rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x118e1540 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x119718cd pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x119dc413 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x11b00522 pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0x11b68a56 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x11c0024e bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x11c43ea5 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x11dc64c3 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x11bb86ee pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x11bd5b6b pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x11db0da4 i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x11edac25 acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x1204a7ac ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x11e5bb2a class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x11e80caa ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0x12069f3c cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x12079397 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x12100493 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x12129496 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121dd276 msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0x122a470d dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x12337d78 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x1222acb4 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x122969a7 acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x1245db56 pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0x12495432 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x1250fffe crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x125a5917 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x12660fd6 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x1277b03c devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1296d81f ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x12a7ef3d rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x12b394e4 mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x12e57b6f key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x12e82cef tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x12eb6ddd iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x125c9aa8 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x126d284b acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1275b379 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x12805c94 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1282eef9 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x12a02be9 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x12a5dab9 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x12a5de49 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x12b535f8 class_register +EXPORT_SYMBOL_GPL vmlinux 0x12b5475a regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x12c62df8 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x12c9d81e fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x12d458a0 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x12ebd59c br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12ee7439 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x12f8b12e __virtqueue_unbreak EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness -EXPORT_SYMBOL_GPL vmlinux 0x130915b7 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1316e949 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x13179813 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x130c1e96 fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131d7fc5 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x131f236e badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x132cb26f register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x13247456 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x132a7e21 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x132c9d6c md_account_bio EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134b1f2c virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x1359899f usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x13397d01 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x13407135 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x13539857 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x135bab6c switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x135ce98e device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x135e7b36 rz_mtu3_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x1367b4d5 pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x136adddc trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x136e0233 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x137c4a99 iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x1380f466 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x1387a94e mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x1379e910 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x137a6f58 mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x13963faf relay_close -EXPORT_SYMBOL_GPL vmlinux 0x13a3c4a6 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x139d3394 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x13a1707c bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x13a4cec0 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x13a4e267 rz_mtu3_enable EXPORT_SYMBOL_GPL vmlinux 0x13b9e193 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x13bae417 devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d0d964 shmem_read_folio_gfp +EXPORT_SYMBOL_GPL vmlinux 0x13d4a328 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13e0e44f tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x13e8c133 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13ef3509 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x13f9ae4e ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x13fcdb83 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x1407f7d8 dev_pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x141905bd phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142ff3fa dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0x1447e10d wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x144bfabc sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x144fcc0a devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x14307e98 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x143617a4 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x1438ae45 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x14459d8d ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x145373cc of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x1465e345 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x145741dc tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x147702c1 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x1477d1c3 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x149e203e sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0x14aecfca clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x14b50115 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x14c04236 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x14cebc3a perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x14e1a270 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x14e4ff90 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x1494638f mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1497ac6c acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x14c5d21b pci_epc_linkdown +EXPORT_SYMBOL_GPL vmlinux 0x14cd5323 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x14e09737 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x14e40b9f crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14ee0c6a pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x14f868b3 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0x14fbcd5e __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x14fe1be7 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x14fdfa3e dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x15028c8a fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0x150b1249 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x151bc900 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x1521d5a7 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x15122f2d irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x151408c2 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x151de3f3 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x15209de6 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x152f99e9 pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153dd277 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x15402377 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x1547ce4b of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x1550ae46 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x1547db53 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155213ad sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x1560dc8c pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x1565a0c0 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x1574cfed blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x157536a6 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x155f1509 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x156349df pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x159f98c4 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x1588e17d irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x15915623 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x15ac83b0 acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15b29a5d dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave -EXPORT_SYMBOL_GPL vmlinux 0x15c1f8f0 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL vmlinux 0x15e5db49 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x15e86515 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x15d4abe3 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x15dcc6a4 phy_configure EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask EXPORT_SYMBOL_GPL vmlinux 0x15eb7eb3 fhctl_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x15f7b6fa trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x15f7c933 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x16045d89 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x161997bd usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x161d1897 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x161d8308 blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0x1626dc9e led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x1626eed9 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x15f18a62 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x15f83fb9 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x15ff0911 firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0x160267d2 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x16284587 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x1629354c sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x1636d309 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164898a9 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1649748b user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x164e53c8 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x166ef67d dw_pcie_link_up -EXPORT_SYMBOL_GPL vmlinux 0x1679be19 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x167c1aa3 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x16531e2d timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x1656cbdf crypto_clone_shash +EXPORT_SYMBOL_GPL vmlinux 0x166ae7fe devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x1673dcab usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1674365d kick_process +EXPORT_SYMBOL_GPL vmlinux 0x1675ada7 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x167963cf kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x167df933 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x16816027 devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168879f3 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x168e6394 dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16b95705 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x16bca2b1 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x1698fa09 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x169cd789 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x16a1e8a7 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x16a25d41 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x16a57825 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x16b03349 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x16b0d2b4 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x16b2f914 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x16b4a330 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x16c976a6 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend EXPORT_SYMBOL_GPL vmlinux 0x16cb6a90 radix_tree_preloads -EXPORT_SYMBOL_GPL vmlinux 0x16d2dd5b devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x16d8d082 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16db89c9 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x16df88aa crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e0f89b devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x16e31e44 devm_pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x16ee7f5b cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x16e5ee82 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x16e6b1dc usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x16efb2f7 tegra_mc_get_carveout_info EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16f7e6b8 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x1700247e devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x170c0e6c regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17157c7a tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x171fc754 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x17249a87 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x172ec47c pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x1730551f ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x1733e72e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x1716d2e4 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x172f47e9 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x17322a80 sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x174c8ef8 of_genpd_del_provider EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x175c380f vchan_init EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x176427ff ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x177b1042 __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x179bc043 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x17aa4e2e cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x17b7c69f to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x1784eba8 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1786e9bf __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x1788e583 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x179ffc86 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x17a9dba1 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x17b473c0 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x17bcff13 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x17cf98c7 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x17dff054 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e26555 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0x17f080a7 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x17f12c77 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x17ff9c0a nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x18008c4d sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x180b8027 ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0x180e7cdc mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x18185f08 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x18207c92 thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0x18010165 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x1807e087 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1827ee71 mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x182e5696 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x18458096 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x184c4dba pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x186d35f3 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x184547e3 net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0x184d5010 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x18516daf lynx_pcs_create_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1864921c irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18795deb tcp_plb_update_state_upon_rto -EXPORT_SYMBOL_GPL vmlinux 0x188870e5 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x1888bbcc crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x188bdac7 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x18ae8ffa dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x18af926f cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x18c3ad65 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x1873a2a4 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x18836007 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x188a5304 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x188c4651 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x18a134a6 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x18b4cffe ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x18bd21ec platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x18cafda2 devm_release_action EXPORT_SYMBOL_GPL vmlinux 0x18d1be52 __traceiter_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0x18d2138e pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x18dafc70 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x18dbaf3a xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x18dc9e14 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x18d2bff7 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x18e1e05c acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x18e2fc1e vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18ed1141 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x18ef8367 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x18ea594d udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x18ee0cbc pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18f20d40 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x18f31749 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19017c7d fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x190cea72 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x19133317 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x1917281a ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x191c8528 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x191f597d xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x19038c1b devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x1925c035 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x1926a798 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x19291f84 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x19307bf8 devm_pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x193282ae acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x193f6165 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0x194155a3 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x1959c40d cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x196218c5 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x19701aa5 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x1978a766 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x19814e8f vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x198f4bfc pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x1992ad3d __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x19966688 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x19989247 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x199e14a6 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x19a04ef8 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x19a09a74 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x196074be relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x19621a21 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x196f5817 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x19774ada icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x19831c3e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1998ea6a clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x19991825 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x199bfd76 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x199c128f set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19adbe16 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x19b6e005 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19c30766 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19d021e7 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x19cbf2c3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x19cf9796 devm_spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19ee0c10 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19f504d8 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x19fcf113 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x19fe1cd4 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x1a017980 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x1a01c2e8 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x1a01d143 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a216654 devl_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x1a247937 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x1a44544b modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1a5bc722 genphy_c45_fast_retrain -EXPORT_SYMBOL_GPL vmlinux 0x1a648e4d vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x1a23201f scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a278287 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x1a28c48d pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x1a2fb40d pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x1a36482b devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x1a36f1d3 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x1a3d7848 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x1a3fb5d9 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x1a42acca dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x1a4c2a02 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x1a4e9576 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a749396 devm_register_power_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x1a74a356 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x1a7c2437 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x1a739f44 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1a7967bb vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x1a965be6 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1aa31fc2 phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x1a86ab20 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x1a89d6a0 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1a90cffa device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x1aa7a185 __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x1aafeb4c phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL vmlinux 0x1ab5002a da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x1ab77511 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x1ac81d90 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x1acabe28 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x1acaf082 gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad0f294 device_add -EXPORT_SYMBOL_GPL vmlinux 0x1adc8cde to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x1ad05ea4 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1aef7d4d security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af6941b pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x1afa09c2 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x1af388e1 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x1af41433 mtk_pinconf_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0x1afaa2fd proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x1b00338b pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x1b03e188 iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0x1afb41d2 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x1b005727 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b060863 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x1b1845dd pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x1b26ace6 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x1b2dc773 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x1b35466d scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x1b3614da fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x1b3c6047 msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0x1b3cdb8d clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x1b469263 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x1b5af976 tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x1b669777 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x1b063be3 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x1b0f80aa regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x1b1c73ef vcap_select_min_rule_keyset +EXPORT_SYMBOL_GPL vmlinux 0x1b355b7a fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x1b5c9e14 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x1b6bbaa3 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x1b6cc743 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1b6ce043 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x1b739ef5 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1b814c35 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x1b82d1e2 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x1b7ab964 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x1b7dedcd bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x1b7f5a71 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8e506d iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1b8ef54d devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1ba82ab6 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1ba8809d devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x1bbba351 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x1ba5505d mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x1ba9f4c2 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x1bb06668 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1bbcc88c ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bcb0dfe fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x1bd07d96 tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0x1be09651 vcap_tc_flower_handler_ip_usage -EXPORT_SYMBOL_GPL vmlinux 0x1be22f19 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x1be604fe fsl_mc_obj_reset -EXPORT_SYMBOL_GPL vmlinux 0x1be6fc33 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x1beba5f1 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x1c046c81 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x1c17db81 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x1c1eddd5 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c2129a8 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0x1c2abd5a nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x1c34384d dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x1c3ac9c8 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x1c42308d lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x1c492633 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x1c49407c blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x1bd88601 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x1bdb9973 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x1bfce724 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x1c087a68 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x1c163709 thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0x1c204f02 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c257b02 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c27f7b9 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1c38fad5 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x1c41cf95 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1c528b4b __kthread_should_park 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 0x1c70de95 mtk_mux_gate_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c7d50bc regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c834414 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x1c80d929 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x1c82d3d5 kthread_data EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c9412dd ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x1c95a559 pci_epc_bme_notify +EXPORT_SYMBOL_GPL vmlinux 0x1c944a0f fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x1c9453a2 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0x1c9ec4e1 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x1cae7fb0 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x1cb17a71 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0x1cb7bd37 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x1ca4fb70 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x1ca544a6 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x1cb76084 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbb99af usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cc25976 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x1cda50ed vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x1ccfbae5 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x1cd5c550 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1ce6017d __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x1ce83da1 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x1cf96184 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1cea6db6 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x1cf1bc84 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1cf5f0f3 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x1d04ae4d cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x1d0d33e4 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x1d1c19bf of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x1d153307 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2a7d17 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x1d31805d usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x1d434432 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x1d46f602 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x1d512a9a genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x1d749464 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x1d8da6c9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x1d2d29ef phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL vmlinux 0x1d473e4d __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x1d5072ca da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d5bb532 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x1d5e0690 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x1d63cb74 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x1d6cc420 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x1d878bd6 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d949715 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1dabf961 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x1dc1af12 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x1ddac397 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x1de84945 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1d997446 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1dbe2116 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x1dcdbed3 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1dd919d5 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x1de31104 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write -EXPORT_SYMBOL_GPL vmlinux 0x1dec8e77 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x1df744c1 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x1df96c56 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x1dfa54be mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfadbb7 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e187c6d fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x1e208a78 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1e2395e8 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x1e26bfb6 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1e2176fa pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x1e23d0ff device_create_file EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn +EXPORT_SYMBOL_GPL vmlinux 0x1e33605e of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e44d28b phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x1e511e2a __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e563c07 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x1e71df23 rz_mtu3_32bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x1e634f92 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x1e679937 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7deea1 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x1e825079 mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e893752 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x1e868764 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9580ac platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea68591 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x1eaeb639 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x1eb898ff dm_audit_log_bio EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1eda8a04 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1eddec8b iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x1edaf5e3 crypto_sig_verify EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1ef89498 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x1f01f365 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x1f070df0 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1f0831e4 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1ef413ed key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x1efb0a2b devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x1f12722e usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f1efef5 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x1f245377 blk_stat_disable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x1f34e672 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1f37c64d __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1f2dcc90 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f418d96 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4d948d regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x1f4e683b clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1f49f00d __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1f4e80c2 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f662e18 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1f6ece5d genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1f629b49 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x1f690c94 crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1f6c924a battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x1f738d98 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x1f75790d devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x1f80e52c __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f96de87 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9ce5bc pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x1f9d6e3a phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fa48995 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1fadfa2f of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x1fb3946a synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x1fcd964b clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x1fce7efb vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x1fd7b14d phylink_create -EXPORT_SYMBOL_GPL vmlinux 0x1fdbd705 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x1fa9b6b7 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1fbe8465 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x1fee7136 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1ff0c26c clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x1ffd664f blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x20038109 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x1ff0ce45 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2018db73 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x201b591b cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x201de97f edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x2022a382 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x20151d7d meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x201cc3ce debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2029efe9 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x203c23db tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x2049e27d irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0x204d1bd9 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x205131af powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x2051f832 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x205b7f1a elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x205ed691 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x206aaf25 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x20716296 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x2078999c ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2059388c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x20697c9e gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x206d53b0 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x2073ba93 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x207be98c tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x207e9232 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x207ed93a gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x207ff69b tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x2080edb8 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x208e77a8 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20990798 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x209b3312 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20a579a9 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x20b43dbc pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x20c419e6 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x20ec9326 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x20f0c9ab irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x20f17c6d component_compare_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x20f59507 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x20f9b9bf acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x21057e58 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x211418a0 clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x2116207f kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x20aa075e __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x20b02ee7 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x20c49790 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x20cda75a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x20dbfc92 hid_bpf_disconnect_device +EXPORT_SYMBOL_GPL vmlinux 0x20f1d0fa platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x20f4abdb of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x210cd603 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x21168b41 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x21339986 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x21341c89 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x213479d9 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x213cd0f9 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x212fa59a user_describe +EXPORT_SYMBOL_GPL vmlinux 0x213dbd39 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x21529510 inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2174ced5 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x217589be acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217ee841 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x217f5ae6 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x217a930a dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x2198de9b ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x219ea73b simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21b853f2 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x21bd09fb dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d52bbb of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x21ea04f7 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x21fd028d genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x21fd25f2 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x220102f2 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x21d4aa11 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x21d79a38 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x21d8350b led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x21e15bbd wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x21e5b4b2 nvmem_layout_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x22094d6e genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x2216e9c8 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x221addc8 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x221e7bab failover_register -EXPORT_SYMBOL_GPL vmlinux 0x222211de simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x2228e90d blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x2246ead7 blk_crypto_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x2247cee0 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0x2256b9de gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x22572320 meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x225b6fdb crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x226eeb25 disk_alloc_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x22789321 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x22812bef fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x228ac763 clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x228c4bc7 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x221e3cf1 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x221f4856 mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x2222c4b4 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x22442324 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22496eda device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x225f8dba dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x227d542a dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x227e5059 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x228b68a5 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x229e0fc2 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x22c9d7d0 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x229cf52e __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x22b7c7d8 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d90f0e __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22de26cc dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x22e5690a fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x22ebee5f devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x22e3c85e __devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x22eb199d tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f530ec pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x22f80fa5 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x22f944e4 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x23073114 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x230b1abb clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x2314aaaf mtk_clk_simple_probe -EXPORT_SYMBOL_GPL vmlinux 0x2320a535 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2322c991 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x2334a69e usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2334b834 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x23074fb7 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x2308a511 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x230c2130 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x230fae56 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x23208a24 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x2323df67 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x232e2806 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x233fad01 reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23415b08 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x2344c1f8 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x2348dc99 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x23499364 disk_uevent EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x235d0fc9 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x236239f2 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x236395a8 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x236b2b5a mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x237a9428 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x237f409d phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0x23823dde xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x23835b58 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x235fd257 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x23639eac dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2380887e tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x239151c4 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239c1e64 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x239f7772 rz_mtu3_16bit_ch_write -EXPORT_SYMBOL_GPL vmlinux 0x23a204b2 of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x23a263a3 pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x23a5b987 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x23b7f1d3 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x23bf12b8 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x23c3460f mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x2398e46e __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x23a294c4 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x23aef0fd gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x23b9712b usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x23c330c2 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x23f045bd devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x24089eb5 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x24138d2c udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x2413fc38 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x23c56cf4 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x23cbc51e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x23d5ab3e pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23e61e3c devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x23e896ed ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x23ecb91b phy_init +EXPORT_SYMBOL_GPL vmlinux 0x240f079a skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x2418a125 pci_enable_pasid EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x2426c879 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x24273ff5 imx_clk_hw_pllv4 -EXPORT_SYMBOL_GPL vmlinux 0x2429762f ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0x242d8b94 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x2439ab0d dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x243a2198 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x243df014 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x2435ef3c blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x24385aa8 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x2451e376 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x2454665d from_vfsuid +EXPORT_SYMBOL_GPL vmlinux 0x24604188 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x2461762f tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x2461d361 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x2481983d dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x2470a43a pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2477f8c6 dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x24852826 __SCK__tp_func_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24bb8696 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x24b9c74a gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x24d1f17e of_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e5a555 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x24e7b61d thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0x24e807d5 dpbp_close EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24ebedd7 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24fb0c15 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x24fb4e51 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x24fc222b component_master_del EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x24fd5ae8 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x2512ea18 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x252bca5a sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x252f8a2e inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x25007be8 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x25012d38 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x250caed9 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x25105f99 devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2533180b devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25494913 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x25664d4b shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x256c009b devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x2539aa0f nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x2540b33a tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x2544c79a to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x2545fc98 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x25530319 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x255b4e6e ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x2573c4e9 crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x2590813b dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x25768fc8 thermal_zone_get_num_trips +EXPORT_SYMBOL_GPL vmlinux 0x258c3dfd ohci_resume EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259c27cd lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x25964890 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25aeccde dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x25bb1e0f devm_gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25bdcde9 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x25bfb843 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x25c55d30 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x25f480d7 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x260e23da gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x261b8698 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x2625b9a9 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x262d044b ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x26327f9c iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0x264464ce ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x264bac20 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x25cca744 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x25d871dc powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x25e323ef tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x25e4fd12 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x25e9cea8 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x25eb097e bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x25f0eab6 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x25f9c887 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x25fce153 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x2600f860 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x26065c37 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x2615ea18 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2632028f irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x263f0caa splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x2646aa90 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x264a8748 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x264c40f1 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x265c4426 extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0x265f325c synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x26735183 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x266b249a soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x26706777 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x267080f9 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2670b688 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x26759f1b iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x267941b3 __tracepoint_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2681d057 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x2698ac4a acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x269e0ea7 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x268db497 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x2694ad2a __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x269649e8 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x269e6b00 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26be840d ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x26b1c482 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x26b8786e blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x26c44a3b __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x26c47133 tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d86e81 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x26e6d678 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x26e7dc7b xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x26cb3f41 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x26d7a333 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x26db6963 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f5f8b7 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x26f2f1c5 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x2701987b __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x272bf468 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x270e96c6 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x270f7b20 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x2711014f icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x2729a73d devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x275b846b ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x276d01e5 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x273598d7 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x27615da7 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x276546c7 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x276f6db4 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x277138dd folio_alloc_buffers EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x278ba63c wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x278dbaee spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x2778ae0b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x277a1c5d bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x277b789a pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x2788ebe8 em_dev_unregister_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x2795fc9d vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x27a72198 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x27b86a2d rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x27c4e637 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x27c790f4 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x27db4705 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27a4ca4d unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x27c456ba strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x27cc9b68 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x27d198d6 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x27d2b8cc devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x27df3105 hv_alloc_hyperv_zeroed_page -EXPORT_SYMBOL_GPL vmlinux 0x27e99f4b __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x27e5e45d acpi_processor_get_performance_info EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f6964a devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fce1ed dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x2804d9cb devm_qcom_smem_state_get EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281d2ec9 dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x2825e835 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x282a750f dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x2827d864 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x28298bbd pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x282a167f apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x282b3f94 __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282d1691 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x282e4775 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x282cfa56 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x282f88ae __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x283ed631 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x284345a9 icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x2849979e __sock_recv_cmsgs -EXPORT_SYMBOL_GPL vmlinux 0x284b5678 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x285a79b0 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x2834b7d3 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x2853fef8 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x285cd8a1 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x285f8016 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x2866b6e8 tty_port_tty_hangup EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x28730a07 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x286e5707 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x28743f67 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x28755904 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x287b196f dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x28812285 find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28839324 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2884e38e __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x28a7dff6 power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28aada55 scmi_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b574e5 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x28bee37e ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x28bff8e8 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x28cfd50c iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x28df6b52 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x28e2aba4 ahci_platform_ops -EXPORT_SYMBOL_GPL vmlinux 0x28f5fcff mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x290bb387 dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x290fcb1f dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x28bb6154 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x28d00b98 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x28d00ecf tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28dbfb67 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x290e9620 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x2915fd6d mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29230e9b cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x292cee36 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x29491b8a crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x29500f1e driver_find EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x29604e6b dprc_scan_container -EXPORT_SYMBOL_GPL vmlinux 0x2963069a dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x295f9fac fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x29628a61 of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x2969c446 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x29865d5d devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x298db61d ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x298e3f52 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x298fb5c8 xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0x299baa86 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x29a9acf9 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x29c17313 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x29ce4b06 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x296c1385 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x296edd06 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x2989d1b9 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x298c5f2c fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x298ea4de pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x29bda2fb usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x29be9b3a virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x29beed14 usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29dc14a3 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x29df73e2 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x29e93a4b page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x29d76a7c tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x29de7502 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x29e89095 acpi_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ecfcc1 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x2a00c930 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x29ed6935 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x2a0d1825 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x2a13a7a7 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x2a2c4e83 __fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a31f858 dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0x2a322388 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x2a41d668 acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x2a4ff910 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x2a3165f4 devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x2a3addda pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x2a443c97 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2a4b1034 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x2a54b63d fsl_mc_bus_dpdmai_type EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a8461c3 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x2a8520f8 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x2a9173a3 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x2a7ae06d nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x2a7b5495 vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2aa0c6ef kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x2aa2e911 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2a9b2ab0 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x2aabfc84 iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2abda76a dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x2ac7ae65 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x2aca07a6 mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x2ace1afc ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x2ac6354e irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2acde38e acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x2ad04e37 fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2aef892b cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x2afa5987 nfct_btf_struct_access -EXPORT_SYMBOL_GPL vmlinux 0x2afd5899 genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0x2afe93e7 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x2b00671f rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2b0ac6f2 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x2aeb14be sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x2aecbe04 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x2af44f70 devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x2af5ca33 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x2b0ae178 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b1db904 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x2b21bac5 power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0x2b231b44 devl_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2b263124 crypto_clone_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2b3f472d sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x2b40e895 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x2b40f981 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2b17f9ad cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x2b1f2d91 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2b224414 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b2c3366 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b39d12b blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x2b3c149b param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x2b44fe3c dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b492cfb tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x2b4c8e68 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2b4fa4c0 led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x2b572e3b init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x2b5eeb7e devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b6e7572 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x2b78b39c ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x2b80b7e2 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x2b7c2f1e devres_close_group EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read -EXPORT_SYMBOL_GPL vmlinux 0x2b8bedd2 led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0x2b8f7961 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x2b951b3d gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x2b9669ab bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x2b96f910 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba4b826 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x2bd3706e br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x2bb484a4 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2bd55015 of_get_fb_videomode EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2be336f5 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x2be9eb2a __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x2bea7d1d icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x2beea673 vcap_tc_flower_handler_tcp_usage -EXPORT_SYMBOL_GPL vmlinux 0x2bf1fae3 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x2be87ad3 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x2bef06a7 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x2bef9fa1 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x2bf430e8 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2bf5f827 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c176cc3 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2aac4e hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x2c2b1739 of_irq_parse_one EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4838fb skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x2c5cf6a7 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x2c62e8c0 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x2c4456e3 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x2c494324 wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c72a454 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2c6a2a4d dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x2c70fd2d folio_wait_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x2c750eb4 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x2c763218 ahci_platform_disable_phys EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c81b00b fsverity_get_digest EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c88a620 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x2c8b63d2 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL vmlinux 0x2c8f2cb0 usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9cd538 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2cba6c08 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x2cc227f8 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x2c9dd9ab pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x2cafa123 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2cb4fc07 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2cb8c106 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x2cbc312d led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cbf71c4 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x2cc25a02 serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0x2ccb56cb __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0x2cdb4399 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x2cdf71a6 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x2ccfd5e9 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2ce9bc28 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x2ceb57d4 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x2cf10e7a iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x2cf1ed60 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x2d01f7ac serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x2cf32552 vcap_tc_flower_handler_ipv6_usage +EXPORT_SYMBOL_GPL vmlinux 0x2cf8d645 of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d077692 xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0x2d0c471f crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1fb38e perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d286a24 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x2d24371a iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2d274834 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d2c7f8d vp_modern_get_num_queues EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2dab9a spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d3cd9e4 tpm_chip_bootstrap +EXPORT_SYMBOL_GPL vmlinux 0x2d2ea1f1 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x2d3f7267 vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d46fb42 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x2d5097da ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d52d8a3 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x2d57e602 balloon_mops EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d72640a i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x2d739aac power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0x2d82459b ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x2d83173c pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x2d8b16c0 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x2db46a44 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d61727b unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x2d64ec26 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2d65b680 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2d7332d4 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2d816829 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x2d8ba2eb lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x2d939f75 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2d9b46b6 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2da10c24 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x2db2f9af serdev_device_break_ctl EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2db8370a metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x2db91ed0 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0x2dbb90e7 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x2dc53be6 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x2dcfbbda gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x2df2edb6 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2df45c3f imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0x2df57126 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x2dfb937b dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0x2dfbb1d8 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x2dffe6ee strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x2e00fb33 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x2db71518 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x2dcf7a06 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x2de80a9f pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x2df30624 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x2df7f5b3 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e27441d mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x2e27aab1 crypto_clone_ahash -EXPORT_SYMBOL_GPL vmlinux 0x2e318da2 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x2e440032 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x2e500ec6 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x2e5402fc pci_iov_get_pf_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x2e618f6d devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x2e2f8e1c register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2e5f280c i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e74733d pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x2e694774 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x2e6b0b68 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing -EXPORT_SYMBOL_GPL vmlinux 0x2e7950e5 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x2e83e06a blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x2e97509a ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x2e9ccac7 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x2e7dac5d of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2ea63e85 devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x2eb569bc copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x2eb22d22 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x2eb59014 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x2eb83402 pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x2eb8874f pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array -EXPORT_SYMBOL_GPL vmlinux 0x2ecd3314 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x2ed240fc scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x2edca094 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x2edf46e2 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2eedb1fa find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x2ef35afa kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x2f0d60e6 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2eea66e7 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2ef27284 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x2ef4f80e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x2ef9dcd1 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2f013baf debugfs_create_str EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1e9bc7 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x2f0da51a divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x2f0def1c aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f275caf phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x2f263561 scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f2d955b spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x2f32e9fd __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x2f40f105 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x2f478c14 hid_bpf_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x2f3fccc6 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2f47a9ec scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f48a70b dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2f539bb9 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x2f581e75 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2f5f7537 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f85058e user_describe -EXPORT_SYMBOL_GPL vmlinux 0x2f9ca910 tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x2f6e366b usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2f6f5345 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x2f79fc2d ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x2f8b14b5 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x2fa92b74 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fb05d75 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x2fb2cf9d serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x2fbae62f phy_put -EXPORT_SYMBOL_GPL vmlinux 0x2fbe70c9 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x2fb93ba6 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc3de43 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x2fc6990f inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2fc93a2c elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x2fd6993b dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x2fe55e98 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x2ff34a9a cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x2ff91e6d of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x2fc613ba of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x2fc94858 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2fd038f6 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x2ff732c3 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2ff9593b thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x2ffedb6b hv_free_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x300db04c __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x300f86f5 virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features -EXPORT_SYMBOL_GPL vmlinux 0x301a14a8 phy_power_off EXPORT_SYMBOL_GPL vmlinux 0x3024ecad kobject_move EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x302ab55a tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x302cfb2d regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x30307e13 pci_dev_lock EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x304f2f68 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x305ded38 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x30606eb1 devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x30411cdd serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x30417ed4 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x308ba5ae bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x308e883a vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x309c24ff regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x30a42f17 __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x30ba5276 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x30cd2332 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x30e1b25a of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x307a0761 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x307b4424 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x30810047 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x309a30a1 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x30be88c2 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0x30d16cee inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x30d1ab4b sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x30d79f9d ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30e2518a rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x30e4699b fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x30eb3862 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x30efe02f dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0x30faad89 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x30f25262 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x30fb9848 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x30fe74c7 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x30ff6cdf nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x3112ab3e tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x3118448e dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x3116bd52 folio_test_hugetlb EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x312319b7 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x31226c24 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31296b14 mtk_free_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x3132cbf4 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x3127ae95 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x3129e031 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x312b5508 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x3134d432 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x31373d10 blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x314266c8 of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x31495bf2 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x314c4067 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x315831fb iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x315d3719 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x317a405d kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x317e430c backing_file_real_path -EXPORT_SYMBOL_GPL vmlinux 0x3189e049 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x319126ac ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x314271d5 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x31486ec5 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x315be77a __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x315fc9b9 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3161608b platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x3166df16 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x31695c82 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x31718d10 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x3176f28b tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x317f03dd ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x3184573d to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a345eb kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b46f38 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0x31b71cb8 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x31b8522e of_regulator_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x31c5d5be peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x31aa0658 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31c964bd shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x31d78350 device_move -EXPORT_SYMBOL_GPL vmlinux 0x31d82061 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x31d787ac dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x31dc42f5 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e7ffc2 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x31e00c48 sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31f64275 sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x31f7bd83 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x3208aabd acpi_match_acpi_device -EXPORT_SYMBOL_GPL vmlinux 0x32133402 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x3227edb8 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x31f237d5 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x31ffb195 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x320b9c6d power_supply_set_property EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x32355368 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x323eedfc sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x324906de of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x32515c22 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x32332226 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x325377e3 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x32603f6f platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x3266e357 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x32689a86 spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0x326c7aca devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x326b3f63 clk_regmap_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x326f1114 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x3276a164 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x327c73e6 __SCK__tp_func_rwmmio_read -EXPORT_SYMBOL_GPL vmlinux 0x328cf689 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x328ee1ec xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3291a4fb sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x32a3c8b1 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x327ffb70 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x328d985a sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x32923c58 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3293f7f8 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x32945d0b skb_segment_list EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b09609 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32bc825d gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x32c351bf finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32cf156d mtk_register_reset_controller_with_dev -EXPORT_SYMBOL_GPL vmlinux 0x32f01d51 cdx_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x32fb3f0b adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x32c7b8ec crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x32eaf2be rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x32ebe7a5 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x330b0107 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x3311b014 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x3319d725 blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0x331adc21 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x332a87d5 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x332f1c6d pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x333faf11 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x333fd555 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x334899ad devl_unlock -EXPORT_SYMBOL_GPL vmlinux 0x334bfac8 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x3352823d cppc_get_auto_sel_caps -EXPORT_SYMBOL_GPL vmlinux 0x3352f76e device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x33547673 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x335a613c mas_next_range -EXPORT_SYMBOL_GPL vmlinux 0x335bff24 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335e4261 pci_ims_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x335f258a component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x3366ec46 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x336db4ec usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x33830fce __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x338551ca __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x3386a183 kthread_func -EXPORT_SYMBOL_GPL vmlinux 0x3388d535 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x338a7213 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x33976e99 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x339b0911 stmpe_dev_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x33a89b43 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x33b2c2c0 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x33b8a784 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x33d79acd rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x33fcaf72 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x34068cb0 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x3409d806 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x3419f3ad sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x341bf8f1 mtk_clk_unregister_muxes -EXPORT_SYMBOL_GPL vmlinux 0x341d63f8 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x33647e50 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x3367d25a uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x3368374c nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x3379640e scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x337d475d kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x338f9b46 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x33b05b79 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x33bc14ab fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0x33be8731 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x33cb887e divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x33cc6acf fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x33d54ac1 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x33dccac5 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x33df46a3 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x33eb8497 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x33fd581d phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x33ff0e35 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x3404d5ca mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x340cdfe4 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x34215cf5 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x342887e7 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x343d4a20 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x344271ce dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x3443a12d fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x34445cd1 crypto_alloc_sig EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34555904 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x34682796 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x34517109 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x345c8aeb input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x346f55a0 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x347a92d7 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x347c9c61 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x34883243 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x348a7283 i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x349a6629 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x34a08735 nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34a8186c xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x34ad438f blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x34c99d86 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x34abefee ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x34b6fcdf __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x34c3d416 usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34ee0cf1 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x34fbc177 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x34fdf107 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x34ec7dc7 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x34f25bd3 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x35041d55 devm_regulator_bulk_put EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x352436c6 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x35266279 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x3512a23f ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x3512b526 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x3529ad0d meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x352b3705 irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352dc1bc lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x352e3aa3 dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x353b1354 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x353bc900 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x354070d8 vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x354bfe1b ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x354ec966 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x3555fefa nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x3560c81b cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356711a1 inet_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x356d0cac __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x35719d6f extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x35736396 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x3578e5ba xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x357963e2 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359a8cfb devl_assert_locked -EXPORT_SYMBOL_GPL vmlinux 0x359ce2ea __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x35989ef4 vcap_get_rule_count_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x35a31886 of_clk_hw_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35aee5dd vcap_tc_flower_handler_cvlan_usage -EXPORT_SYMBOL_GPL vmlinux 0x35c1604d firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x35c97240 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x35b3c015 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d5dc01 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x35e67f6d dev_pm_opp_get_power -EXPORT_SYMBOL_GPL vmlinux 0x35e6a39a platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x35e7bc85 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x35eec283 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x35f56bfa iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x35f58c6c __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x360c3466 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x360f5b31 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x3622d9d9 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x35da21d6 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x35ebb3db stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x35ef5bda mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x35f42cb3 thermal_cooling_device_update +EXPORT_SYMBOL_GPL vmlinux 0x35f6a5ca __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x3606ba46 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3613336c ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x361cd19d find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362ab239 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3636d395 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x3643f2d1 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x364f1bbc pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x3651f0aa nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x36544fce fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0x36556f8b param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3631e230 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x363d9554 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x363dd338 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x3642cbf5 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x3646218a vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x364d7f56 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x3656c1a8 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x3678fa01 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x367f7793 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x3680b4a5 xdp_features_set_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x3685bbff __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x369aa2bc devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x3693489b ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36989037 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x369b400b xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x369bd9e7 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a8c0ce usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x36a00ff7 vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36c74ce0 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x36d9c317 vcap_tc_flower_handler_portnum_usage EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash -EXPORT_SYMBOL_GPL vmlinux 0x36dc4809 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x36e2a092 __bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0x36e30945 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x36f6b902 rt288x_setup -EXPORT_SYMBOL_GPL vmlinux 0x36fae03b devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3702415d io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0x37071af4 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x370dbf44 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x36ebacca extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36f3f39a dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x3701c68b ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3702aba9 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x3704e52e ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x37311de8 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x37383461 ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0x374574a8 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x37478275 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x37179b61 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x37289d54 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x3732ca6a iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x373a9ddf genphy_c45_read_eee_abilities +EXPORT_SYMBOL_GPL vmlinux 0x3750a879 relay_close EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x3760a72c usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x37689267 phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x3768c689 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x37580c68 irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x378d5900 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a54160 regmap_might_sleep -EXPORT_SYMBOL_GPL vmlinux 0x37a5cd35 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x37a7f09c class_create -EXPORT_SYMBOL_GPL vmlinux 0x37a97367 cdx_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37aabf42 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x37b3ec0f irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x37a495a4 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x37bcf432 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c9a036 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x37d53f96 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x37ed8732 mtk_mux_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0x37f20e06 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x37f539ea i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x37c1722c tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x37c4713e pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x37d28ce3 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x37dde227 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x37e05392 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x37e86e63 rz_mtu3_16bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x37f94365 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x37fd96f9 __cdx_driver_register EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38126311 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x382323dd folio_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x38350c96 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x382b1ed0 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x3840d689 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x3839d6a3 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x38426d26 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x384a7b3d crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x38638bf1 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x38722bbf ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x38832654 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x3883baf7 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x388d6c65 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x389418b2 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x387874a6 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x38809985 put_device +EXPORT_SYMBOL_GPL vmlinux 0x389a8a1c devm_tegra_memory_controller_get EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389d5ae7 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x38a18aa1 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x38a5e914 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x38a189c8 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38afa38d gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x38baea71 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38d6b19d kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x38da25c0 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x38dd5048 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x38cedf31 tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e2e158 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ed93ff crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x390026b4 raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x390d1a2b inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x392e0f74 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x38f8b79e cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3917914b __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x3918f413 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x3918fece cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x39262189 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x392e2eb2 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x393c2ab9 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x3951455d vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x3955b7c2 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x39472f4f devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3949bbd7 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x3954d7a2 kvm_release_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x3958ccb6 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x395b4c1f qcom_smem_state_register EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x395c9658 file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0x39661858 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x3979da2e create_signature +EXPORT_SYMBOL_GPL vmlinux 0x396caac1 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x39740932 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x3987b753 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x39981f0c kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x3998c114 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x399b175f blkg_conf_exit +EXPORT_SYMBOL_GPL vmlinux 0x3992eb15 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39af02b7 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x39af5b73 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x39b138cd set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x39b24a64 imx_fracn_gppll_integer -EXPORT_SYMBOL_GPL vmlinux 0x39b52c03 dev_pm_opp_put EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c338d9 fsl_mc_resource_free EXPORT_SYMBOL_GPL vmlinux 0x39c3c5f0 kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find -EXPORT_SYMBOL_GPL vmlinux 0x39cde71d dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x39d5fe51 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x39d8d1c7 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x39dd7bbf pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x39de85a9 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e0269a iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x39e23079 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x39e76e00 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x39e8e034 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x39fcfb10 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a052c0a sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x3a127d01 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3a02e907 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x3a077e66 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a244a14 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a41e7ad led_blink_set_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x3a496f23 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a52fbb6 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a806825 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x3a8effc8 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x3a9068af regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x3a5762f4 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x3a6099f6 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3a847921 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x3a883af8 of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3ab277a2 mtk_clk_gate_ops_setclr -EXPORT_SYMBOL_GPL vmlinux 0x3abb6b3a dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x3aa58e80 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x3aa5b8de gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x3abb0cdb rz_mtu3_shared_reg_update_bit +EXPORT_SYMBOL_GPL vmlinux 0x3abce26e irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location EXPORT_SYMBOL_GPL vmlinux 0x3abe6fe5 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL vmlinux 0x3ac17251 devm_clk_hw_register_fixed_factor_index EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3ac9993a nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad669b1 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x3ad82974 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x3ad1bf70 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x3ad3b9e0 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x3ad416ef bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3ada184c lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x3aecf800 vcap_get_rule_count_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop -EXPORT_SYMBOL_GPL vmlinux 0x3b21aed8 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x3b2ad998 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x3b39340a iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x3b455060 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x3b4986bc nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x3b2de649 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3b3ace71 vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b50636d clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x3b554bec rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x3b616530 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x3b747019 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b768818 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x3b4ca5ef lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x3b4d23cf usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3b5fd857 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3b63b773 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b685821 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x3b786c40 pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b78d095 devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3b7a916a __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x3b992a80 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b7be51c securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3b83791b gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x3b881585 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba76178 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3bb08a7c usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x3bb26c16 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x3bc28d58 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x3bcdd8c8 irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0x3bce590e device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x3bb676bf stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc809e debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x3bf168c4 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x3be2e25e blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0x3be73689 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x3beece38 dax_inode EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf2d2dd of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x3c015c68 debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c1aa4d4 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3c12c6e9 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x3c14dc89 debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1da4fa of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x3c24aa43 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c2d3d24 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0x3c395648 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x3c2db28c divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x3c393601 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c48524f led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x3c581c0f vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x3c447ffa mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x3c48f3fb xhci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c60279f regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3c62c2af ahci_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6c8afc mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x3c6d8d7d ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0x3c80e2c8 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3c68b8bc dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x3c77a71e sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3c901d84 phylink_fwnode_phy_connect -EXPORT_SYMBOL_GPL vmlinux 0x3c94918e mtk_clk_register_composites -EXPORT_SYMBOL_GPL vmlinux 0x3caf52b1 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x3cafc23b regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x3cb7ac45 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x3c8d5b55 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x3c940789 acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x3cae3e57 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x3cb88a62 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x3cbb3fa7 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cc16d6c stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x3cd0d7f1 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cdbf109 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x3ce2aa28 devl_register -EXPORT_SYMBOL_GPL vmlinux 0x3cef3c1f register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3d028252 of_msi_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x3d0a1199 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x3d0acb7b __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x3d12aa99 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x3d2090a3 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x3d31f28c usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x3ce010c9 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x3cf49e4c edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x3cf95a95 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x3d0c33dc bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x3d10f5df tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x3d2dc1b0 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x3d386d23 pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d39729e max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x3d4e06e8 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x3d3c37d9 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x3d414ce6 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x3d5011dc pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d6309ba regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3d728f86 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d5598c6 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x3d55b814 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x3d5fb797 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x3d697605 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x3d6e839c event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x3d6eab3b sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x3d7e7ad1 led_blink_set_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x3d7f52d0 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d8b5d81 devres_release EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d908a05 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x3d978d66 nvmem_layout_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3da5b3c2 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x3d98a6e0 shmem_read_folio_gfp +EXPORT_SYMBOL_GPL vmlinux 0x3da78625 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3da7e141 stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db10d1b gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x3db69cea of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x3dbb71b3 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x3de19757 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3dc948c9 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x3dd9b2d4 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x3dddc996 crypto_register_instance EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3deaf71c crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3dec53b9 folio_test_hugetlb +EXPORT_SYMBOL_GPL vmlinux 0x3df555c1 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3e000a59 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x3dff8b7f acpiphp_unregister_attention EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e1587ee open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x3e2ed865 xdp_features_set_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x3e1b2688 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x3e24f205 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3e2a65f1 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x3e2a77f9 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x3e31f3dc cg_regs_dummy +EXPORT_SYMBOL_GPL vmlinux 0x3e33d7a4 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x3e36c534 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3e39d7c1 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x3e3f8c40 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e43bb9a spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x3e466842 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e548a37 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x3e6d9d64 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x3e6f7321 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8122f8 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x3e887d53 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x3e8b9371 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3e837f33 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3e9b8870 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ea696ca dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x3ec19937 fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x3ec1badc watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x3ec3e57c md_stop +EXPORT_SYMBOL_GPL vmlinux 0x3eb3b542 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x3eb5161f iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x3eb81afc blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put -EXPORT_SYMBOL_GPL vmlinux 0x3ee71693 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x3ede6dc4 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x3ee63d92 scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3f1c458d amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x3f1d5dd8 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x3f452016 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3f127ad9 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x3f12d440 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3f3ec9a7 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x3f411224 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x3f4156d0 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4db7c4 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x3f568f94 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x3f503b3b dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x3f5d819d fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x3f5fe538 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x3f6d372c of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f8d8995 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x3fa15334 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x3f8a8172 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x3f8e6c98 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x3f9cddfc vcap_set_tc_exterr EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fc2f3d9 devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3fc41680 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0x3fc9a484 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x3fb826bc get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x3fbed8f0 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x3fd1c60c trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3feb9d85 of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x3ffaaa29 fs_dax_get_by_bdev EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x40061c8d blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x4007b458 vcap_chain_offset EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400f734e irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4019e452 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x401de19c cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4027416d serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0x402b2591 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x4037b6c0 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x402e60ff clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x403196fd pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x403daa09 mtk_pinconf_adv_pull_get EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x40514a34 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x404daf4d device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x405272e3 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x4057520d ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x405e7ec3 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x40645ba1 devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4070a006 amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x40719acf make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x406f99fd blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4071eda8 fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0x40750334 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x40766d83 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x408987c9 xdp_set_features_flag +EXPORT_SYMBOL_GPL vmlinux 0x408f106e iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x4093888c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x4097adc2 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40b1d542 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x40daafda regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40e04e1f bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x40ea5ded vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x40a4ceef device_move +EXPORT_SYMBOL_GPL vmlinux 0x40a4fbd1 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x40d46e3a rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x40e163ed switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x40ec74b2 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x40eed98f bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x40efb0a0 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f32185 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x40f3ed2b pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x40f3480b __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x40f6d681 devm_fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4111b420 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x41109397 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x411c56a3 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature -EXPORT_SYMBOL_GPL vmlinux 0x41243838 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x41256c7f iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412f8f72 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x4140f615 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x415a8272 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x415cb708 lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x415cd182 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x416200a2 gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x4170ef86 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4163fe39 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x41694e20 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x41752c69 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x417a5b39 nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41826b3c acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419b1a52 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41b5d2f3 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x41a4f09f devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier EXPORT_SYMBOL_GPL vmlinux 0x41c36b9b __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x41cfdbeb __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x41d3b20f i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x41e3afc7 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x41c9555a udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x41d88c6b pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x41d91ead pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x41e7046f mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0x41e7fa6d securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f75808 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x41f446f3 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x41fadfc3 bdev_alignment_offset EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x42064329 check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x420f122d driver_find +EXPORT_SYMBOL_GPL vmlinux 0x42059723 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x42061944 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x4208021b pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x420da448 mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42103bc8 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x42183d91 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x422ded42 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x4230d25c devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x423d3ba5 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x421a72a1 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x421dc785 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x421e7a90 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x422c249c mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x422c6ca4 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x4231761c kvm_vcpu_on_spin EXPORT_SYMBOL_GPL vmlinux 0x424bd52e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x425e8d78 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x42599534 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x425dbb41 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x4268cd3b crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x426d5346 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x426aa12f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x427388c6 filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0x4278d56a phylink_expects_phy -EXPORT_SYMBOL_GPL vmlinux 0x4281dc20 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x4279fdae scmi_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42954ebf proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x42986623 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x428c5135 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x42996272 phy_power_off EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429c8546 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x42a87a95 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42d15e54 cpuidle_get_driver EXPORT_SYMBOL_GPL vmlinux 0x42e732cb vcap_rule_add_key_u128 -EXPORT_SYMBOL_GPL vmlinux 0x42eb54e7 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x42f07567 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fac5ad iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0x42ff82d3 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x42faadbe tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x42ff8843 rz_mtu3_32bit_ch_write EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x430ec616 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x43190c32 acpi_dev_state_d0 -EXPORT_SYMBOL_GPL vmlinux 0x431d5328 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x431e2348 devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0x431fd49c vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x431fde29 pci_free_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x432a1c5f gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0x43344734 devm_led_get -EXPORT_SYMBOL_GPL vmlinux 0x4342a7d3 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x434d0724 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0x4354ce31 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x435e30da driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x434c0a2d fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4370d106 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4384178f __irq_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4390f2da clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4394742a mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4398549a kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x439a08b4 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x43a37ca8 i2c_slave_event EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43ac4873 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x43b746db of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x43be87b7 of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43d53323 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x43dc74f3 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x43e0a2c4 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x43e5fac3 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0x43f625e7 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x43eaebda ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43f94aee ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x43fc5eef cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x43fa2941 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x43fdc0ca tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x43ffed61 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x44009f2c dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake -EXPORT_SYMBOL_GPL vmlinux 0x44168189 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x441b5043 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x44168f08 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x441fc073 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass -EXPORT_SYMBOL_GPL vmlinux 0x4424bd63 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4425d069 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4432960f anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x4438037b pci_find_doe_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x44371b07 iomap_file_buffered_write_punch_delalloc EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x4442afed fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x44476c5c usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x444a9fd0 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x444ae02b fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x444d1b73 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x444f1bad usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x444f41fa simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x4450ee81 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x44634568 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x445f74bf __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x4467a092 imx_pinconf_get_scu EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop +EXPORT_SYMBOL_GPL vmlinux 0x447320cc gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x4475dcaf hv_nested EXPORT_SYMBOL_GPL vmlinux 0x447f809c imx_clk_hw_pllv3 EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4487c684 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x44883367 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4491065c sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x448f0300 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x44a09b07 devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44aa0605 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bd4301 acpi_fetch_acpi_dev EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x44cf4134 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x44ca5f6c __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x44ca8cdc xen_unmap_domain_gfn_range EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d26f9b mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0x44d2c6cf rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x44d80faa scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x44df0e51 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x44e15490 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e4721b skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x44e58976 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x44ebfb21 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x44e7f7d3 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x44ecc007 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x44fa914d pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x450564b8 dm_submit_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4510970b of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x451567ec kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x4525db5a dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x45304adf clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x4542c3ea device_register -EXPORT_SYMBOL_GPL vmlinux 0x4545e9b3 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x45460550 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x454de39b __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x455cba89 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x455a8138 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x45627783 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x4566444f __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x45716f71 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457f0c72 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x45908dcc __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x459d926d cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0x45a6d12e gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x45b1478d sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x45cc329d devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x45d430d9 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0x45da6eb2 failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45ab8c6e nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x45c6244e of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get -EXPORT_SYMBOL_GPL vmlinux 0x45e8d476 devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x45ec699a extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x45fa3f11 synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x460406a2 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x46056523 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x46078852 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x46089119 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x460c5227 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x4619e52c sk_psock_init EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x46372a7d clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x46534f24 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x4659c057 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x465e5fdc sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x466df64f nop_posix_acl_default -EXPORT_SYMBOL_GPL vmlinux 0x466f9b55 clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0x46770174 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x462fb712 mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x463883a4 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x4646b6d5 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x464c5cca rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x46513c9d pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4657f8c9 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x466c6050 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x466ddc0e clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x46746685 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x467f8217 crypto_clone_cipher EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469210a3 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x46950941 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x46ae4fa0 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x46aaecff pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x46d504fc phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x46dc23aa i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x46e3d566 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x46c49941 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x46d8952c crypto_clone_tfm +EXPORT_SYMBOL_GPL vmlinux 0x46e2e011 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x46e45528 acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap -EXPORT_SYMBOL_GPL vmlinux 0x4700be48 dw_pcie_ep_raise_legacy_irq -EXPORT_SYMBOL_GPL vmlinux 0x4704129d usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x47105c17 fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0x471a0c0b pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x46ecc438 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x46efed1e usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x46f8b59c devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x47062cd6 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x4706b7d1 thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4724b191 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x472e48ec dprc_remove_devices -EXPORT_SYMBOL_GPL vmlinux 0x474162a7 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x4748493b genphy_c45_pma_baset1_read_master_slave -EXPORT_SYMBOL_GPL vmlinux 0x4753bd29 ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x475e654b devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x4760f65c dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x472416a9 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4734be99 devm_clk_get_prepared EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x476461e8 __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x476e0637 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x477ee8c5 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x4771bf55 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x47846adb devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4784d8cc __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x4787292a zone_device_page_init EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478c3181 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x478ae970 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x47964126 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x4795555b of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x47974ebc acpi_device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode -EXPORT_SYMBOL_GPL vmlinux 0x479c489f crypto_sig_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x479d9aa2 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x479c9992 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a21e15 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x47a6f2e3 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47a47774 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x47a52de2 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x47a8016c mtk_clk_simple_remove EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c28dc4 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x47c49370 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47dcc778 pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47df5e0d cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x47e312ec gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x47e66af0 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x47ea2dc7 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x47ebd0b3 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x47f323af crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0x47fd9a0e clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x47e1d5cf pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x47f6dd54 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x47fd3127 device_del +EXPORT_SYMBOL_GPL vmlinux 0x4801b417 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480f3b5d iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x48088a0e blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x48092cc1 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x480cb290 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x48139823 pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x4818cd93 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x481e0244 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x481eb817 vcap_keyfieldset EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482cf432 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x4844c955 io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x485db5df lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x485e92c9 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4864638a bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0x486838a5 __tracepoint_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x486d3c96 tcp_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0x486d52c6 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x488b0c01 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x4880a22a irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x489cebc6 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x48a0ca89 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x48a11104 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48ad6395 trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0x48b4353b icc_provider_deregister -EXPORT_SYMBOL_GPL vmlinux 0x48baae27 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x48aabc54 __devm_regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48c35c9e __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x48e2f6b4 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x48eb67e3 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x48c37b92 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x48d2b9fc pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x48d5540c scmi_device_create +EXPORT_SYMBOL_GPL vmlinux 0x48e54d8c rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x48e95bbe copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x48f51b39 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x48f78ce5 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x48fdb4a1 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x4905136a dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x49058a5d usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x4910c62f mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x4906a045 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x492cab60 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x49391878 devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493caea1 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x4940754d ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x49409e60 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x495271e8 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x4959d049 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x495daa05 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x493d5e3e usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x4941ea99 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x4949c133 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4956cf8a devm_regulator_get_enable_optional EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49661804 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x496ef8a2 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x4970da82 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x497a3651 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x497e5d8c ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x498084c0 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x498d4375 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x49614f9a da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x4968840b devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x496c9530 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x496ca76f __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x497dba84 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x497edfc8 cdx_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4991d27b regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49a240c9 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x49a8a9c8 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x49cc924a pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x4994b306 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x49990b57 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49997190 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49a15892 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x49a65794 rt288x_setup +EXPORT_SYMBOL_GPL vmlinux 0x49b625e5 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x49b9361b iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x49bac0e5 __folio_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49cf58d9 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x49d34ecb scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x49d99fb5 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x49cf7b1c wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x49d099b3 crypto_sig_set_privkey +EXPORT_SYMBOL_GPL vmlinux 0x49d16025 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x49e181ef phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49efc3df devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0x49f284c6 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x4a03716d crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0x49f009dc devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x49fed049 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x4a0374b6 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x4a0dabb0 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x4a136743 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a3188e0 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x4a21b094 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x4a36d238 component_del +EXPORT_SYMBOL_GPL vmlinux 0x4a3f1fcf bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a43bf34 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x4a5bb2f5 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x4a5f38e0 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x4a7b7657 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x4a8bccfc fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x4a8c3e1e crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x4a9df109 thermal_zone_get_num_trips -EXPORT_SYMBOL_GPL vmlinux 0x4aa61486 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x4ab49d49 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x4ac09f83 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x4adcdd3a cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x4ae6d55d dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0x4afa903a dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x4b00bdd2 rz_mtu3_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x4b00c4ae fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0x4b4e0aaa fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x4a49edb9 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4a6f6646 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x4a7a1e85 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x4a816cc7 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4a82b926 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a90f60c phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x4a9e111c iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4aaac3f7 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4abf76fe device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4ac2166e dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x4ac7072f pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x4aeec0be phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x4b01ce8c devm_thermal_of_zone_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b034c3d __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x4b473a34 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x4b4cb79b __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b70b5b5 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4b8082b0 crypto_init_akcipher_ops_sig -EXPORT_SYMBOL_GPL vmlinux 0x4b83bf35 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x4b5b120a hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x4b64bab2 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x4b66b337 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x4b6eef4e hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x4b749e15 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x4b8ab5c3 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4b8d5090 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b9cc733 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x4ba3d784 put_io_context -EXPORT_SYMBOL_GPL vmlinux 0x4ba8e5d7 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x4bad3355 tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x4bb7d153 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4bb38e39 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0x4bbe7a73 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x4bbf4f39 hte_ts_get -EXPORT_SYMBOL_GPL vmlinux 0x4bc3977f usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x4bc10d06 devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bca82ed mmc_prepare_busy_cmd EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bdafb86 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4bda3b00 spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4be4376f disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x4bf71a75 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x4bfab5fc xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x4be7dc79 mtk_devm_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x4c1089f1 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x4c16155f __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x4c007a7a kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x4c214c1c gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4c2416df proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x4c4e2334 vcap_tc_flower_handler_ipv6_usage +EXPORT_SYMBOL_GPL vmlinux 0x4c50bb19 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c54c47b __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x4c56a3a5 __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x4c5c64a8 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x4c5c7f4f fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x4c5f348e acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x4c67c6b3 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x4c7664dd mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x4c6ca808 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4c71895c fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x4c725350 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x4c754c2d clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4c7cd3ad tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x4c7ec253 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x4c83c3ca dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8c9ba7 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x4c8e9320 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4ca43ae2 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x4c8bbae4 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x4c9e67d1 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4caf6621 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbe9064 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x4cce237d device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x4cd362cb netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x4cd63f0a mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0x4ce9ab13 crypto_sig_set_privkey -EXPORT_SYMBOL_GPL vmlinux 0x4ceb7da3 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x4cc2267a usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4cc530e1 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x4cd8e3b0 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x4cdfdc55 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x4ce80d01 thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4cf9c9bb sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d2283cf switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x4d02cfc9 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x4d0b8068 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4d17105b usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x4d17be11 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d292701 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0x4d32f61e __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4d394285 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d4708eb rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x4d4bc577 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x4d5d625a shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4d604471 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d3cda63 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x4d3deab8 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d5096cd eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x4d51a325 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x4d5774e7 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4d689b15 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d8ba066 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x4d8f25bb acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x4d912329 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da6ba56 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db80e85 rz_mtu3_8bit_ch_read -EXPORT_SYMBOL_GPL vmlinux 0x4dba7377 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x4dc03360 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4dc61d77 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x4dc8fbf3 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x4dda3f88 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x4ddfa950 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4deeddf6 of_css -EXPORT_SYMBOL_GPL vmlinux 0x4df34f74 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x4dfdc468 vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x4dfefcab power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x4e07f551 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4e0882b8 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x4e12f918 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0x4e17bdff class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4df0ea35 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x4df8d0ac device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4dfb6578 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x4dfd1882 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4dfdf2fb regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4e0214ce devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e11977a sync_page_io EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e18e8d0 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x4e28c046 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e2d09e3 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x4e18ff8a pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4e19b122 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x4e1fddde xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e2246e2 anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e447a97 devl_params_register +EXPORT_SYMBOL_GPL vmlinux 0x4e400517 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x4e435852 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x4e49a588 nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0x4e4c35af devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e63883c wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4e578bc5 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e5bbaea put_io_context EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e676bc4 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e67c694 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x4e6ade04 create_signature EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop -EXPORT_SYMBOL_GPL vmlinux 0x4e7cb785 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x4e7f5e86 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x4e993f1e led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x4e9b761e blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x4eab100a virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x4e88bc74 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x4e8a7023 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x4e9d5691 max8997_read_reg EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb2aea5 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x4ebcc131 scmi_device_create -EXPORT_SYMBOL_GPL vmlinux 0x4ecc68a4 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ee2801a trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4ed3eb88 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x4edc9451 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x4edd6790 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x4eed4809 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4ef1932f mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f003224 blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0x4f170943 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4f03a4b2 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x4f0c3fde devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2d44f7 disk_set_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4f33d178 vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x4f357770 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x4f394922 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4f46416e pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x4f561f5b regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4f5a83fa pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x4f60fe0d dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x4f309cc8 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x4f32d967 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x4f3b1136 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4f42716c efivars_register EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7ab772 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4f7d2c4e umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x4f8c8d15 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x4f7c83e1 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fa29765 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x4fa61989 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4fa6d7ac usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fb90738 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x4fbdd732 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x4fcf6694 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4fd494be ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x4fc020d3 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe298eb devl_trylock -EXPORT_SYMBOL_GPL vmlinux 0x4fe54f69 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x4fe875af meson_pmx_get_funcs_count -EXPORT_SYMBOL_GPL vmlinux 0x4ffc927f of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x5008df2e acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4fea2325 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x4ff83785 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x500488ea sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x500a8b01 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x500c3984 extract_iter_to_sg EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x50174317 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x501e62ab nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x502272d3 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5023b8cf kvm_arch_ptp_get_crosststamp EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5026de4a ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x502955c9 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x502a480c unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x502ff3e5 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x503706db fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x504047ac nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0x504a85d1 da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x5050813c security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x50533443 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x505b6dcc __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x5028deaf device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x503d7ffb kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x505a3efe devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x506b71c5 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x507804ba group_cpus_evenly -EXPORT_SYMBOL_GPL vmlinux 0x508307f1 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x50881cd3 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x50794e22 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x5079cb33 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x50819705 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x5083ba6a ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x5093e76e __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x50949d30 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x50bc965e __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x50cfe61d ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x50d92bdd scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x509862d1 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x50c11fb1 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x50c4137c tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x50c554a2 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x50d80f3b rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x50d9281a skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num EXPORT_SYMBOL_GPL vmlinux 0x50eabb98 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x50ebe8ea ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x50f2c4a6 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x50f303d6 xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x50f3a6cf kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x50f3604a fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x51019896 devl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50fb79ee led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x5103ab9d generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5104750e of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x5108b7fb ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x510ad2af dispatch_hid_bpf_device_event +EXPORT_SYMBOL_GPL vmlinux 0x5115d286 mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x511a24b2 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x511cd506 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x511fb9b1 mtk_clk_unregister_pllfhs +EXPORT_SYMBOL_GPL vmlinux 0x5125c9f6 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x512c5ca6 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x512f7e3e __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x51489982 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x5152d966 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x513f9a44 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x5144d054 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0x5158874d pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5159b12b __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x515ae9b9 __fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51654cca is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x515e13f3 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x5169c08a __sk_flush_backlog -EXPORT_SYMBOL_GPL vmlinux 0x517839ac regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x5182923d gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x5172aa44 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x518734a9 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x51898333 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x518da2e0 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x5188c24e ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x51915626 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x5195d4c8 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x51a2495a fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a39ebc crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x51a55aee dw_pcie_ep_raise_legacy_irq EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b6a3a6 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x51c1af70 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x51c208a0 mtk_clk_register_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x51c79af7 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x51d60ecf crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x51e07ebe devl_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51ebf4a6 mtk_clk_unregister_composites -EXPORT_SYMBOL_GPL vmlinux 0x51f13373 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x51f589c0 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x51c30c18 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x51cc3f10 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x51df865c spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x51e7edb8 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x51f4d571 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease EXPORT_SYMBOL_GPL vmlinux 0x520332e4 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x520c3967 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5205c3e4 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x52099dd2 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x520b8e79 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x52126984 regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x52213722 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x5223a584 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5225f573 firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x522d99e9 make_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x5242e5d4 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x52429d11 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x5245d688 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x524afcd1 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x52526c83 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x525d2419 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x5263dec5 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x52452686 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x5261f162 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5262efb2 fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x526f4c16 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x52715c29 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x527da95e dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x52807529 rz_mtu3_shared_reg_update_bit -EXPORT_SYMBOL_GPL vmlinux 0x5280c199 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x5288707c fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x528ac8d9 devm_thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0x5295d8a5 k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x52970f7b rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x529e8c80 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x52713f22 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x52825e60 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x528ef7b5 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x5296369f ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5298af86 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x529b8711 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x52a7e3fa od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x52aa9cbf pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52bcd52c crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x52c2a542 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x52b4190d host1x_context_device_bus_type EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c671f2 devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d020aa acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52e6a856 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x52df94f1 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x52e6f48e kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x52ecb051 i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x52f84fb9 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x52ff9362 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x5304591b nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5304b1c6 ethnl_cable_test_amplitude -EXPORT_SYMBOL_GPL vmlinux 0x530aadff usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x530b7c03 sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0x530cb649 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x52f71e2d vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x530ca9d0 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5311c03f usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x5314f582 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x53168213 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x532334c3 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x53180c11 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x53191338 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x531ed5f2 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x53243526 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x534ed341 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x53522a62 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x532c19f7 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x534bcaa0 alloc_dax EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x536db5e5 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x536ac559 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x536d1135 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5372dd5a iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x5379b1dc scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x538110e8 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x53820c5e acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x5388d8b3 component_release_of EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x53a390ef crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0x53a6bb08 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x53b17ec3 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x53b2381d scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x53b953b5 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x538dfa59 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5399faf9 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x53a57d9d virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x53ac9e6b virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53cb8916 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x53c37abe crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x53c8a108 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x53c90106 devl_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e0b0fc acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x53f05cbb crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x53f2605a strp_process -EXPORT_SYMBOL_GPL vmlinux 0x5403efc2 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x54185ca3 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x5400f82f ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x54050635 __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541c9765 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x541e4c3c extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5435615c iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x544491be xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x542f6dbb mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5458e7f5 of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5477d0e0 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x54904e16 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x5475a9ae ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5477442d power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x548537df devres_find +EXPORT_SYMBOL_GPL vmlinux 0x548b996c ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549625b3 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x549a88c6 usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54d035d3 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x54d0c8a1 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x54d4a25e spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x54d897d1 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x54e00df5 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x54e0afea ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x54f04e6b wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x54f629f2 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5502c582 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x54ac062c lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x54afc538 kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL vmlinux 0x54c65113 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x54dbaef7 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x54e70a00 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x54fcb9ff devres_release +EXPORT_SYMBOL_GPL vmlinux 0x54fd8c99 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x55073d2c regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x55098580 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551012e6 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x55171cdc sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x55194e0e sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x551e192f dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x55212480 crypto_akcipher_sync_prep +EXPORT_SYMBOL_GPL vmlinux 0x55124237 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x552f95d7 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x55314e0f regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x5534dc4b sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554498e9 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x554f0af6 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x554fa6cc nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x555ca18c dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0x556126c5 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x55588ba1 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x558a6ec6 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x55954ebe ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x55961023 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x55a37494 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x55a3c152 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0x55adbe4d ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x55bcdbc5 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x5580564d k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x558a8f9c iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x559e1273 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x559f8dcf fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x55a60254 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x55bd55e0 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55cd22ef of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x55cbf3c4 xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x55d2364c vp_legacy_set_status EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x55da84cd bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x55e62ec1 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x55ecef39 led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55ef88d0 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x55f18b03 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x56037ca6 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x560e8240 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x5611fdfd kvm_io_bus_get_dev EXPORT_SYMBOL_GPL vmlinux 0x561375bd tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x5616ea6c tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561a518f skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x5624f826 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562f674d ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56378f4a ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x563ca9c6 tcp_get_info EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56418b59 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x564539db cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x5649d99a kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x564f6c38 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x565689fa dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x566d6446 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x566fb5a3 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x56707cae ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x5690dd27 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0x56ab6241 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x56abfc17 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x56c24b8f of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x56cdf7d6 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x56d7fe3f of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x56e2cbea blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x564774f5 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x56492a82 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x566658b5 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x566c2831 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x566fb9ad nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5671489f acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x568dab9d pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x56a0425a genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x56cc578c pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56eed739 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x56ef15d0 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x56f2d157 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5737271c crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x57376dab gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x56fef4ee regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x56ff4fef metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x57126e83 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x571d94ee __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x571e8ec5 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x5724428c netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x572b737a extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x573744d5 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x574409cf debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574cccc1 devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x57597d51 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x575e0faf of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x5764a268 elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x57679acb securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x574a8464 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x574f4cb7 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x575570cb rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x57558d86 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x5763f32f class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee -EXPORT_SYMBOL_GPL vmlinux 0x57738446 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x5773f56b fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0x57781fba rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x57812b56 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x57890a16 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x578b7c6f usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x577d06b5 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x5784af6d ahci_platform_enable_regulators EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579129d4 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x579881ee handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x579bd963 of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a59e87 of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x57b4cc4c of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x57b6e50c devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x57b7ef4c vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x57b99e17 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x57a0c41e rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x57a67372 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x57b66d66 spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0x57c58e9b __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x57c70c90 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x57cda220 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x57ca683e of_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase -EXPORT_SYMBOL_GPL vmlinux 0x57dfaadc pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x57dd376c pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x57ed6737 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57fa77b2 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x58046dda pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x580fdb1b phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL vmlinux 0x5816f8d1 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x580229e1 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x58147d52 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x581d2e54 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause -EXPORT_SYMBOL_GPL vmlinux 0x58301078 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x582fdaed event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x583c2e12 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x583e479c skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x5845b689 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x584e0513 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x583e0a7a fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x587986b1 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587d141b paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x5880fac3 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x5886fe6c altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x588ef734 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x58a4899a get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x58ac840e gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x58afeda7 clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x58b23aef rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x58b6fd3a virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x58cd0fee dm_put -EXPORT_SYMBOL_GPL vmlinux 0x58d25165 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x58859926 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x588edd06 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x58949ec1 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x58cc0621 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x58cf0869 scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x58dc7cb3 filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58e97a60 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x58f97633 strp_process EXPORT_SYMBOL_GPL vmlinux 0x58fa50c0 __traceiter_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x59083e33 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x590c4fb1 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x590d9b1a irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x591a4021 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x591a7f0d usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x5933b3a9 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x5910c0a4 stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x592a12d9 devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x593ac537 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x593eb8d1 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x59405c3a usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x594a397d set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x594dad72 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x5952c034 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x594e14e0 of_regulator_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x597a471c fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x597b4054 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x5985a9e1 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x595cb938 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x595cfbaa rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x595fb526 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x597357c4 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x597e7167 of_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59a8902b acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x59a99c70 call_hid_bpf_rdesc_fixup EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x59b08d1c debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b64aa8 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0x59b6756e ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x59b47d7a kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x59b5a336 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x59bb2ccc pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x59bcb38b shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x59c1ca94 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x59c1f4dc __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c4fd1b fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x59dabaa6 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x59d818f7 gnttab_foreach_grant_in_range EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str -EXPORT_SYMBOL_GPL vmlinux 0x59ef0ab0 balloon_mops EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f46298 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x5a0be784 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x59fa3f64 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x59fa4ed2 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x59fc1dfe acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x5a04fc0a gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a168c7b debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a22749d pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x5a207a6d rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x5a23cf02 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x5a24c5d0 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x5a2fd15c crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x5a33ce0c pse_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a3748c7 mtk_clk_dummy_ops -EXPORT_SYMBOL_GPL vmlinux 0x5a47af73 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x5a28e7a6 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x5a2d872f regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5a4587ea ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4ee522 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5a508a88 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x5a5c3024 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x5a603242 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x5a634bf2 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x5a69dce8 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5a6cb7a0 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x5a4b9c95 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5a61db58 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a73f595 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a7f036a hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x5a7f6fa2 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x5a84996a bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x5a8cb997 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x5a9e1ba4 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aad7ded da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5aa92888 fsl_mc_bus_dpni_type EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5aba4d1e badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x5ab69782 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x5abee767 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x5ac4da5d regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5acd287e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5acdb3ca phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x5ad32ada of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x5add813e __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x5ae2e60d component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x5ae5a937 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x5b1a5aba generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x5ad954c8 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x5ae8bc4c ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x5aeacd80 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x5af78e03 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x5af7ea50 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x5afc4bd7 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x5afc722e __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x5b011923 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x5b1037dd tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x5b1988f6 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2ac5fc fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0x5b2aefef mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x5b233bad auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x5b262381 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x5b39f8e3 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5b357a13 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x5b39e22f regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x5b3d1fbc devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x5b50af89 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x5b5a1950 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x5b5b2ab0 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x5b59b815 clk_hw_unregister_composite EXPORT_SYMBOL_GPL vmlinux 0x5b83d7ab __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x5b9c33a8 spi_transfer_cs_change_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x5b8a8179 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5ba6d24b ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bb4de71 input_class -EXPORT_SYMBOL_GPL vmlinux 0x5bb4ee21 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x5bbc67fc devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x5bc060f7 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x5bc1bf35 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x5bac14a1 spi_transfer_cs_change_delay_exec EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5bcc44cf wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd7bdfd pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x5bdb1532 dpcon_enable EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be565d8 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x5bf30831 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5bf43c45 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5bf991ca fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x5c013bb2 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5bdd57d3 vp_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c11c0ee serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x5c2c902c device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x5c2f3b7b debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x5c2fbbb5 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x5c372265 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x5c0f8736 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x5c1cb9e9 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x5c22c666 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5c265b82 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x5c2d1c82 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x5c36cc53 fsl_mc_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c43f94c usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x5c51484d fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x5c549697 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x5c4de299 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x5c523273 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5c56c8f1 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5bdcc9 iommu_device_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x5c5bf36b phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x5c6217c9 mtk_clk_gate_ops_no_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0x5c6b88d1 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x5c6c3aec msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x5c60f5ee ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x5c7b72c1 ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8639ef crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x5c864cfd phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x5c88f746 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x5c9cafb4 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x5ca537fd devl_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cbaf0e9 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5cb121c6 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x5cb6b5d5 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5cb89801 fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5ccad696 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x5cd172a9 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x5ce0d87a pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x5cd026f6 mbox_bind_client +EXPORT_SYMBOL_GPL vmlinux 0x5ce54c69 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x5ce964ee xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf97fe3 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0x5cfc658d of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x5d043030 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x5d06ce80 led_get +EXPORT_SYMBOL_GPL vmlinux 0x5cf800a2 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x5d11850e iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x5d11e4e9 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5d12d7e8 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x5d13ab08 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d24d306 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d189f85 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d356cc4 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x5d3f36ea shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x5d459195 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x5d490765 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5d59c20f blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x5d2c4abe nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x5d30b699 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x5d3928c8 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5d421e12 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5d533083 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d576e09 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x5d7cc9b9 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d84b30e fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x5d85bb62 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x5d8ab639 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x5d8e00d4 mmc_regulator_disable_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x5da1ce63 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x5da5db76 i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da775d0 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x5dae571a fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x5dbe00d1 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x5dc0f884 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5db88857 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL vmlinux 0x5dc19979 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x5dc1fba0 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x5dc44e73 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x5dc5d9a4 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x5dc68b60 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5dd8f24a mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x5ddb2574 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x5ddfe6e1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x5ddea885 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5de54c7d xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x5deaa92d platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5df3454f dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x5dfef38e tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5de8fdd6 perf_report_aux_output_id +EXPORT_SYMBOL_GPL vmlinux 0x5df25012 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x5e13f20d md_start EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e20248f fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x5e37a0b5 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x5e48e76b pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x5e1c58ee bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x5e346f80 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x5e47eacc regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x5e50b80c driver_create_file EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7ddb43 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e8ebddc perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e9a1e96 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x5ea21880 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x5ea8ddd1 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5e864655 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e9f8641 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x5ea3a6a4 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x5ea5d9bf virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x5eae46d9 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eafad43 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5eb927fb of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0x5ebdc594 __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x5ec9cc7d is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x5eb77983 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5ee63a35 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5ef2ebb3 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x5ef65aa5 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x5f14edb4 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x5f201f6a md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x5eea61b1 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x5ef0f37e mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x5ef5adc1 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x5efbb511 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x5f07548f regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x5f093266 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x5f148f90 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x5f1e13b1 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x5f22c3cb pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0x5f2309c7 __tracepoint_rwmmio_post_write EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f338acf pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x5f3d9d7f __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x5f52ede6 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x5f59c882 mtk_clk_unregister_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0x5f6dc406 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x5f3d5071 devl_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x5f3ec09a pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x5f3fb9fb serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x5f5687ce i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f6bc5c8 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f74e7c6 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x5f78ced3 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x5f9248f3 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x5f971a81 component_add +EXPORT_SYMBOL_GPL vmlinux 0x5f783839 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5f7c12fb pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x5f80d110 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x5f8d7119 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5f8fe5ee nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5f94f9d2 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x5f97c975 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x5f9869d0 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x5fa4140b blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fb62e1c acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x5fb736d8 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5faf6a74 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start EXPORT_SYMBOL_GPL vmlinux 0x5fbb1de5 acpi_cpu_get_madt_gicc -EXPORT_SYMBOL_GPL vmlinux 0x5fcd2bd7 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x5fde6d96 iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5feba93f acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x5ff3469d virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x5ffb0ddc acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x5ffbdf20 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5fbe7df9 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x5fcb1efd devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x5fccae7d __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5fce20c3 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x5fe5c919 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x5fe94dd8 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x5fec3733 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5fec91b7 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x5feda820 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5ffe99db ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x60037828 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x6004e5e6 regulator_set_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600e6c01 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6021b77b devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x602c8c69 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x60345fbf devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x6014bc41 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x601d5c76 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x60266ac4 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x60299fc3 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x602c2f9f crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x60357038 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x60381113 usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x604cce3f pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x60563ad3 of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x60645ea4 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x60666391 ata_eh_read_sense_success_ncq_log -EXPORT_SYMBOL_GPL vmlinux 0x6067af2d bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x605ed4d8 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x606f7c52 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x606fc1b3 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x606debcb blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x6071e1f9 rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x6091917f dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x609f3e94 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x6098146f led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6098e789 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a140b3 xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a632a5 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x60a9147a driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60ab79d7 __io_uring_cmd_do_in_task EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60afdbe6 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x60b8eb0b pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x60ca9a18 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x60dbc3ea extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x60dbc802 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x60e76cf8 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x60d0ea1f dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x60d34040 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x60db8a0a balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x60eb85dd nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60ed57c9 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x60f13cfa percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x60f85f82 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x6114a48f regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x60f4eb9f trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x60fa1c9b thermal_zone_device_type +EXPORT_SYMBOL_GPL vmlinux 0x6105ebaa dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x610a716a subsys_interface_register EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x6125650c swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x613dc7a3 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x613f462c pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x614169c5 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x614a2e29 vfs_splice_read -EXPORT_SYMBOL_GPL vmlinux 0x614aa94a noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x612c9928 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x61355e9f mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x61596531 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x615bec48 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x616226e2 platform_bus EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618f6a46 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x61841004 i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x61a534a8 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x61a7aa81 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x61b2124f ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x61b95afa devm_of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x61bbe4df simple_rename_exchange -EXPORT_SYMBOL_GPL vmlinux 0x61bcf3eb fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x61a18418 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61ab0d95 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x61afcbaa fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0x61b15a10 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0x61cbf3ec dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x61d71592 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x61d8155c set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x61e5174c dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x61f1644b mas_find_range +EXPORT_SYMBOL_GPL vmlinux 0x61f209ff compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x61f2655c cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f6dac2 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x61ff5f65 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6206a691 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x61fb4f0f rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x61fc7657 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x622add1d alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x622abdfa ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62316e24 amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6236949c device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x622fcf28 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6235ea0b xenbus_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x62407182 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x624491ad dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x624668a8 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x62493e5b device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x6249e3e5 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x624a5a34 acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6258cb70 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x6258c75f regmap_get_raw_read_max EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625cc0c8 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x62751b0f led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x6286db80 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x628cd8cb kvm_are_all_memslots_empty -EXPORT_SYMBOL_GPL vmlinux 0x629874c8 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x625dbff6 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x626e5f7f xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x62701100 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x62925954 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0x62a649b4 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x629a1983 xenbus_unmap_ring_vfree EXPORT_SYMBOL_GPL vmlinux 0x62abdfb8 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x62ad7bef scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bd920e devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x62c665cc crypto_sig_sign -EXPORT_SYMBOL_GPL vmlinux 0x62d0e176 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x62d97955 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x62ea657d free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x62f9ef1d rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x62fc1b46 devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x6303222b vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x62c29b8b __fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x62c6a4c2 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x62d2cbfb __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x62e314c0 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x630f937d regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6310ca09 devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6319106f tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631fcdc1 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x632e47fb pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x6331e4f4 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x63350931 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x6336406c gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x63489a56 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x631d0bde __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x63201c62 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x6331a74d bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x6339055f blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x63406dfa bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x63719490 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x638d859d __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x63bbbe6a devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x63be0135 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x636d4a3c gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x636f94ee hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6370d29d devl_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x637b5fc1 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x63886947 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x639a42ff crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x63a73fc7 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x63ab61a4 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x63ac8c1b ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c0802b of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x63c2c486 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x63c652b5 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x63c6f657 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x63cb9d04 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x63d099ad ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x63ce4546 devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f548fd ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x640b33ef lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x63ecf394 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x6406d896 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x640a6d3d iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x640d6214 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x641d35ed virtio_check_mem_acc_cb EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x642c206d proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x6437f7f2 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x643e90d2 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x644933c6 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x64639548 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6474cfba pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x64456827 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x64512117 mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x645f8310 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x646e643a pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x64711499 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6477a2eb inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x6477c4f9 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x647b8889 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x64926968 acpi_dev_gpio_irq_wake_get_by -EXPORT_SYMBOL_GPL vmlinux 0x6494ead7 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x649b8426 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x649ec3bb fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x6495a47d fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64a6bf44 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x64a7bf17 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x64a9cf9b __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x64b27b03 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x64b61dfe crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x64c9ac82 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x64cd821c fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e4b552 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x64e815c3 hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x64eed2e0 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x64e37508 pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f6c312 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x64f7a8c0 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x64fee0de acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650c2f8a of_device_compatible_match -EXPORT_SYMBOL_GPL vmlinux 0x651ae685 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x6509634a skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x65130f33 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x65254fa6 vcap_tc_flower_handler_arp_usage -EXPORT_SYMBOL_GPL vmlinux 0x652d40f1 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x6522bf0d pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x6528d002 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x652fe2a8 ftrace_ops_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6531aefd __traceiter_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x654f664a vcap_chain_offset -EXPORT_SYMBOL_GPL vmlinux 0x65508832 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x653fa4c8 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x65409b9a gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x65430aef fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x65495cec rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x654cdc07 __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x65526233 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x655327fb kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x6561793f irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x65657c0f fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0x6580bcb9 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0x65968a51 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0x659bebef tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x659cbdfd genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x65a61f45 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x656e970f fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x6573c9e2 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6575717c acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6575f09c phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x657f0576 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x658c0571 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x65953a20 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x65a8dfe6 fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x65b8014b ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x65c61c7f fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x65b2c8b3 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x65b38b75 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x65b7cb0a device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x65bab0e5 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x65c687e1 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d98a5c lochnagar_update_config EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65e3543d pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x65fe7037 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL vmlinux 0x65fe8ef4 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x66002d28 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x660f1f81 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x65e4bae5 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x66000c22 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x6604965f __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66202c02 dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66418bac component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0x66423b7d extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x663c4552 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x6648db98 __SCK__tp_func_rwmmio_post_read EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x665422dc dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x66590f5c kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x665b18fd ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x66542bbf clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x665441ed platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x665bc30f crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x665c352a dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666fa7f6 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x66762e98 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x6677fead phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x667df431 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x66803337 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x66676db3 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x667b1f4e iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6685c181 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x668b6614 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x669d752d cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x66b77f0e mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x668561e1 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x668778ac tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x66968829 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x669ea96e vfs_splice_read +EXPORT_SYMBOL_GPL vmlinux 0x66a67d0a acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66cdc95c devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x66d0269c pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0x66d84d7f stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x66d385dc vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66d906de tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x66da3e51 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x66dc6355 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x66e13f25 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x66e5e0e8 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes -EXPORT_SYMBOL_GPL vmlinux 0x670a821a edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x66e8d07e pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x66eb5828 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x66f453b5 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6709ebd2 kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices -EXPORT_SYMBOL_GPL vmlinux 0x6717d922 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x671871ab phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0x67287015 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x673025ba ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x673699e0 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x670da760 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x670fc704 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x67253a92 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x67298b2a ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x673d586e acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x673dd015 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x674116d9 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x674139bd fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x67428d21 ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6743e1b1 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x674b1f61 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x6754ed4b vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x675b0987 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x676b74e5 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x674563cc pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x674f6b86 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6750163a usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x6755c768 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x6765bcad device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x676a2bc1 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x676ff35a fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x67717adc ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x676e4ff6 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x67702ed0 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x67788d00 nf_checksum_partial EXPORT_SYMBOL_GPL vmlinux 0x677c69f1 make_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store -EXPORT_SYMBOL_GPL vmlinux 0x678b428d __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x678ed23c blkg_conf_init -EXPORT_SYMBOL_GPL vmlinux 0x6791f3c8 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x678fe491 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x679211b3 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6794127d virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679f0570 ata_common_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x67b743e3 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x67bae466 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x67a5522f clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x67ac8978 dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67cb5161 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x67d087bf nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x67cfc2e7 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67efd396 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6817de35 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67e1d022 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x67e24177 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x67ec053e __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x67efbe2b platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x67f1d909 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x67fa7b7f ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x68064d64 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x680deded xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x68189f7a pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68288bea xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x682c1307 pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683314e6 generic_handle_domain_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x68393826 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x6839d6fc phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x68316e7e ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x684bfb9b md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x684f4271 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x6859906f xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x6859fc8d tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x685b6b25 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x6879cb8f mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0x68838c02 iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x68899a47 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x688f0fbf mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x685444d6 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x6854a5e7 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x68804518 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x688eacf1 serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x6893cb41 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68cee078 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x68d48b9f spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x68e2a682 devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0x68e9781d dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x68f40c83 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x68996650 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x68a64faa crypto_sig_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x68b6aca1 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x68c732e5 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x68c89598 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x68c8a837 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x68d352e2 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x68d84588 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x68de2a14 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0x68e02ca0 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x68e3295f usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x68fc9895 devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x6900686f vcap_find_actionfield +EXPORT_SYMBOL_GPL vmlinux 0x690dc5d1 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x692247d1 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x69187c92 mtk_hw_set_value EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0x693a1adc spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x693ab99f acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x692c17d7 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x6938a12c extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x6945ba99 cdx_dev_reset +EXPORT_SYMBOL_GPL vmlinux 0x694e152a usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x69518145 serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x695776c5 seq_buf_do_printk EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6965cf1a __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x696cb125 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x69794512 acpi_device_fix_up_power EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697c9430 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x69814fb3 i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config -EXPORT_SYMBOL_GPL vmlinux 0x6992f78e kernel_file_open -EXPORT_SYMBOL_GPL vmlinux 0x69b1b804 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0x69b9a09c debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x69bccb70 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x69931c90 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x69a4cfe5 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x69a6c27e udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x69aa12f0 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x69b19791 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x69baef3c of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x69cdfaf4 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69d008c0 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x69d0f8cc inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x69d37ffe iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x69dcd16a usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x69deb005 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x69df7df7 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x69cf8c86 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x69dedb44 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ed04f9 devm_clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f33d30 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x69f756bc rz_mtu3_8bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x69faaf96 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x69fc52e9 phy_get EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a09d7a0 vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x6a0eafb0 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x6a12dc9a tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6a071e14 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1a5259 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x6a3d013c fsl_mc_populate_irq_pool EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a462aba of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x6a4a0dad of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x6a4aedde power_supply_put EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a54997d usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x6a5b3fc4 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x6a61816d wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x6a6276c6 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x6a67204a kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0x6a719724 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6a681afe i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x6a760e93 vcap_tc_flower_handler_tcp_usage EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9167d8 devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa654b7 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ac197a5 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x6ad80fe9 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x6ae49d68 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x6ab83a49 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x6ac85402 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x6ac93b71 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6aca3a5b vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x6acdc08b alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x6ad13439 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ae79d12 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x6ae91196 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x6aeccc5f iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x6af29f32 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x6b078371 usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b261f55 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x6b11855a bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0x6b157436 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x6b1b0c39 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6b1c8997 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b3490df usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b4034aa blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b450130 pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b4cf6c2 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x6b56c1af generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x6b598ef4 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x6b5b33cc powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x6b651a37 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x6b658694 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x6b6ecfef __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x6b4cc1aa kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x6b58dae9 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x6b680639 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x6b722180 log_read_mmio -EXPORT_SYMBOL_GPL vmlinux 0x6b73ce69 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x6b723075 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b8a8b0f devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x6ba0316e i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x6b987f04 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x6b9c564d gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6baba6d6 devm_of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x6bc755e1 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x6bc95903 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0x6bcc1ce0 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x6bbdcfcc kvm_io_bus_get_dev EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bcf3c51 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x6bd087b2 device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be40ec2 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x6bfe0445 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x6c0243d0 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6c0d952e verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x6c0e8a58 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x6c10fc09 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x6c13ee8d nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x6bea417a securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6c1ef5ec of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c22d6e4 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x6c236708 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x6c348fda scmi_requested_devices_nh -EXPORT_SYMBOL_GPL vmlinux 0x6c387db3 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x6c37fae0 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c491f8c rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x6c496d5d hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x6c49fb7b lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c43b9bc sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c50aaf3 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x6c549e4c sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x6c520008 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c6054b3 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c720bc0 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x6c7dab3b blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x6c8072d2 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x6c8593a6 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x6c8e4221 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x6c9007d0 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x6c92fdf6 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c9ca7f1 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x6ca3d017 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cac99ed of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x6ca57b92 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x6cab3726 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6cb01309 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cb7f34d __traceiter_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x6cc4c4a3 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x6ccc9a75 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6ccc71cb badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x6cfab41a xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0x6cff26b7 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x6d008f2e pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x6d00f7cc dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d094d06 devm_led_get EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d09d6f3 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d1075f5 nop_posix_acl_access EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time -EXPORT_SYMBOL_GPL vmlinux 0x6d2310f0 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x6d27f3ea iort_put_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x6d2a4924 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6d2cfe40 dma_resv_iter_first EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3a6e67 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6d3f55a4 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x6d3f755f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x6d33ceaa dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi -EXPORT_SYMBOL_GPL vmlinux 0x6d4ce635 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x6d50c1e0 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x6d5645c3 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6d5ddcf5 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x6d684ed8 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x6d58c026 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x6d58edb7 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x6d5a62df device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x6d62017d crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x6d64a1e2 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x6d786bab ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d990c57 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x6d7f5dc4 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x6d97ebe4 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x6d99731d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6da498cb trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x6da9ca52 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x6daa5004 tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0x6db8387e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x6db6398f xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x6db9c0ba netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dcb9bb9 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6dc9ad4f phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dcaf76c genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6defc9be sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x6df07807 cdx_dev_reset -EXPORT_SYMBOL_GPL vmlinux 0x6df21348 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x6dff7b5e crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x6e03cbca fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x6e082dc2 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x6df44415 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x6df6d1a8 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6e0983a7 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e0c2f41 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6e133a81 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL vmlinux 0x6e1765c0 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x6e1d8508 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x6e290819 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x6e29ce02 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x6e164f32 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x6e17081a mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x6e1bb90b __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x6e32f788 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift -EXPORT_SYMBOL_GPL vmlinux 0x6e36c0eb device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x6e3f878a regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e453a5e usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e4d147d driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x6e52a8a5 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x6e55bc71 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x6e607bfb __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x6e6edecd vcap_lookup_rule_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0x6e706672 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x6e4adb4d dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x6e5e7010 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x6e5fd1ea mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x6e6ad168 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x6e6adb50 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e865ff0 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6e7c5979 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e9d986b wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x6e9f08b8 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x6ea2a99f __tracepoint_rwmmio_post_read -EXPORT_SYMBOL_GPL vmlinux 0x6ea7ab17 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x6eac82c1 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6eb042a3 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec9c535 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x6ecfb615 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x6ed0f1be blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x6eeefa07 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x6ec6e9b9 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6ee46f9b spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x6eec32e6 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6f055a97 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x6f0094b4 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x6f069958 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6f09c5bc bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x6f124f8e dprc_scan_container EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f3a5da6 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x6f453e50 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x6f4565c1 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x6f53d7d3 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x6f608245 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x6f67c84d __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6f23a94d firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x6f24212a pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f277e7f devl_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x6f2c9b36 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f2d8960 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x6f3a4727 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x6f4ae442 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6f677952 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f6b7ce7 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x6f6daeb8 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x6f6edb51 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x6f6f3af6 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6f7097df clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x6f738061 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x6f7af6ef devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f887161 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x6f914603 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x6f94efb1 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x6f7f9ea3 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x6f83d32a scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x6f8f43b5 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fbeac9e devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6fa6c00f nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0x6fb108ed vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0x6fc7e458 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x6fcdb7e2 ti_sci_inta_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd9b0f8 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x6fdd7ed6 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x6fe2d561 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x6fe74fda virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x6feefc46 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6fef2ff2 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x6ff42843 mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x6fd3c2f4 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x6fd623c0 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x6fd6e3b9 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x6fdc79da of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6fde07ff edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x6fefab22 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffdf0ef input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x6ffd4633 clk_hw_register_gate2 EXPORT_SYMBOL_GPL vmlinux 0x6ffe96ac rockchip_clk_register_armclk EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x70079d69 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x702263e6 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x702287bd pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x70380463 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x700b7093 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x702ba46d dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x70378818 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x703bac90 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config -EXPORT_SYMBOL_GPL vmlinux 0x704a5baa i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x70502c28 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x706ce94e rz_mtu3_enable -EXPORT_SYMBOL_GPL vmlinux 0x706cfe07 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x70545636 vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7075819e device_create -EXPORT_SYMBOL_GPL vmlinux 0x70895766 __fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x709e1af1 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x70a8f4d6 devm_tegra_memory_controller_get -EXPORT_SYMBOL_GPL vmlinux 0x70acd03f handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x70c29cdd register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x70771de0 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x70ac5d4b xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x70c0a60a i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c75892 of_irq_find_parent EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d767d3 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x70e4e91b fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x70f043a5 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x70fa2ae7 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x70e268aa register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x70feb0c0 fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x71111322 crypto_clone_shash -EXPORT_SYMBOL_GPL vmlinux 0x7111b46e pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x711d8bbc vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x711e0c40 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0x71207451 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x7120ba54 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7126a07c of_get_pci_domain_nr EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7145929b bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x714c6266 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x714d7461 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x7156fd93 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x7159be77 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x712b64e5 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x712baf46 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x712d28da device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x71504c1b __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x71596b32 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x71608687 devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716367c9 folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x717c1bdb serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x717ebef8 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x717551fc irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x7177b393 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x717a8c09 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7183aec9 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0x718916af devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x718c06f0 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x718c8164 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x7191c28f iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x71977a63 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x7196c46f devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a1b686 validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a77284 fsl_mc_bus_dprc_type -EXPORT_SYMBOL_GPL vmlinux 0x71a7e90a md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x71a8e130 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x71b44ddc blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71be170d devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71ce9cd2 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x71d53f77 devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0x71f5e7d1 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x720220db irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x7202ca7c subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x72072cd6 __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x721aea37 pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x7220388f usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x722c8131 device_del +EXPORT_SYMBOL_GPL vmlinux 0x71c691a8 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x71d97172 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x71fc0d27 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x71fc5fcb sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x7206becb devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7218e477 blkg_conf_exit +EXPORT_SYMBOL_GPL vmlinux 0x721b9c47 devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x721c733c blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x72287189 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x72359f84 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x723a92fd set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x724c8889 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x72570761 blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726b44f1 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x726e7bff sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x726d1697 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x7273cecc spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x72786e22 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x729da34f onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x7297df8d device_bind_driver EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72b52baa fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x72c02925 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x72b22e27 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x72babe7c __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x72bbb220 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x72c545e2 ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72dfaf88 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x72f3f22e ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x72fd08a8 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x72d4265d vcap_tc_flower_handler_ipv4_usage +EXPORT_SYMBOL_GPL vmlinux 0x72d47dbf __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x72e052e2 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x72ed9fae blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x72f70ba1 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x73027df3 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0x730a37ff pci_doe -EXPORT_SYMBOL_GPL vmlinux 0x731470a8 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7320ba63 devlink_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x7311603d gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x731da6c1 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x732a8931 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x7334fc05 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x735422f5 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x73678307 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x738ae833 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x738bc540 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x738e1eaf xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x734981c0 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x739068b6 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x73939cf7 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x73a13042 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73abae6a __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x73b1ac58 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x73a874eb ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x73cc22cc of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x73c5caa3 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x73caff12 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d0f684 switchdev_handle_fdb_event_to_device -EXPORT_SYMBOL_GPL vmlinux 0x73e6330a cdx_device_add -EXPORT_SYMBOL_GPL vmlinux 0x73e85dea xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x73f1ca94 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x74028223 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x740c282f dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x740e01fd regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x7424b0f7 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x7428380e posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x73ded63b devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x73e837c8 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73ecdadd hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x740f6864 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x741288ab bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7415b579 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x7418114f dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7418b975 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x741a7b63 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x742f7c89 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x7429a69e tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7429e68a pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x7430fe03 icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x74326d22 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x7439fd60 spi_split_transfers_maxwords EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x743ceb84 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x745c8ea3 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x74611952 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x747fe006 devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x74966af3 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x74972101 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x7450bbd4 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x7455a71e fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x74621390 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x74704115 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x7473c04b nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x747614c8 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x74785425 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x747a88d8 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x748211ac ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x7483e3a7 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x748ac630 __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x748cb921 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x74a05956 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bb973d __rio_local_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block +EXPORT_SYMBOL_GPL vmlinux 0x74c741fb dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74d6212d wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x74d742a8 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74edf55d mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x74f0c3f9 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x74fb1380 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751d1c34 pci_p2pmem_publish EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log -EXPORT_SYMBOL_GPL vmlinux 0x75206d81 msi_lock_descs -EXPORT_SYMBOL_GPL vmlinux 0x75216d1d genphy_c45_plca_get_cfg EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7532b98f regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x754beae5 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0x755a3479 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x75667c7d dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x75691fb4 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x75725a0f spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x75784364 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x757ba67a tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x752430ae driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x752570d9 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x7529234e exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x752aba38 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x752cef62 crypto_akcipher_sync_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x753b81ba __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x75416575 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x75461e16 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7546def7 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x75484056 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x756aa227 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x756adb16 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x756f4bc3 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7572cefc cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x7577b12c pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x757ce4fe hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x758518e7 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x75876626 of_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x758e5bd1 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x758fec3b sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key -EXPORT_SYMBOL_GPL vmlinux 0x75ba6355 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x75abe865 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x75b60244 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x75bb4881 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x75bd5800 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x75db65d2 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x75dcbda1 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75ddff05 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x75e51454 of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e64d4a clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x75e9b1e0 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75ede2d9 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x75f2a212 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x75fa87fe watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x75fb1abd gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x7605a474 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x760df590 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x761ab255 devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x76281659 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x7639bb18 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x763de798 gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x7644600d shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x7646462c perf_report_aux_output_id -EXPORT_SYMBOL_GPL vmlinux 0x76467994 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x76472936 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x760f0b8a dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x76210c57 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x76220965 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x7623caf0 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x762f8679 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x7637e8f1 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x763d72f1 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x7646d368 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7646d46a simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x7650631c clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0x76559ef2 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x76521c92 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub +EXPORT_SYMBOL_GPL vmlinux 0x76569f1b param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x765d78a9 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x765de75a fsl_mc_bus_dpaiop_type EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x76665a4a gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x766feb5c md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7687be51 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x768a25f0 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x768dd13e regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x76a61e85 __SCK__tp_func_rwmmio_write -EXPORT_SYMBOL_GPL vmlinux 0x76bb397c devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x76bc0a6f vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0x76a83f8e component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x76b19c15 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x76befeda tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x76c283e8 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x76ce1b88 usb_autopm_put_interface EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 -EXPORT_SYMBOL_GPL vmlinux 0x76d36293 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76ddb69d thermal_zone_device_priv +EXPORT_SYMBOL_GPL vmlinux 0x76e059a1 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x76e336b8 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x76e76e33 blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76e8c759 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x76ea0ea8 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x76ecf5e1 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f60c4d xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x76f64451 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x76facef1 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x770be27f hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x7712646f fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x77010eb8 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x770e7699 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771e0b7e usb_set_wireless_status +EXPORT_SYMBOL_GPL vmlinux 0x771b1752 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x7720b52f usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x77237c90 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x774c6f4f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7731db63 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x77469bcf usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x7756bf37 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x7753510a pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776fecd5 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x77731c65 devlink_port_linecard_set -EXPORT_SYMBOL_GPL vmlinux 0x777df075 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x7758360e hid_bpf_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x7758976e genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x77652b90 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x77840fc1 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x7793498f dax_add_host -EXPORT_SYMBOL_GPL vmlinux 0x779380b7 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x77928887 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x77a133ba irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x77a197db devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x77a20451 of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b10283 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x77bc78ad virtio_require_restricted_mem_acc -EXPORT_SYMBOL_GPL vmlinux 0x77c27fac transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x77cc3ddf xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x77d3ec29 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77d787a2 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x77dcd627 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x77e1c329 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x77e24ffd usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x77b6bf48 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x77ba409f imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x77bd536c devlink_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x77bffcf0 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x77c44498 hid_bpf_device_init +EXPORT_SYMBOL_GPL vmlinux 0x77c5446a msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x77d71c9d dprc_cleanup EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77e8f134 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x77f28f4f ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x77fdb838 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x77ff80d3 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x78137305 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x7821ad27 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x78259939 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x78269e06 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0x783ca670 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7801e6ca dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x780d1a11 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x782749e8 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7827969d ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x7830e243 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x7851cfef pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x784b1376 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x784b7a8b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7857c16a ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786d2380 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x787455ab acpi_pm_set_device_wakeup EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x78862e7c acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x7883932a wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788ff947 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x789321d7 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x789ba350 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0x788e096e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7897aead of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78b2a433 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x78c52c48 xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x78ce007c sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x78db718e xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78df7196 register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0x78eaf978 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x78eccbcf scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0x78f8286e nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x78debf74 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x78df2bd4 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x78e9306f rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x78fdba6e phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x7904be53 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x79064db0 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x7907f1b2 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x79193d11 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x791a5d21 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x791bcf21 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x7929b147 rz_mtu3_32bit_ch_write -EXPORT_SYMBOL_GPL vmlinux 0x792e5994 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x79333899 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x793ad944 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x7942b062 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x79438677 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x7943da3a em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79464bf3 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7960172e fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0x796d6bb5 bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0x797104f5 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x797bd17a vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x798a35b2 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7953788f dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x79704523 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x7978ca52 failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79842182 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x79884d98 acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7992f1cb mmc_prepare_busy_cmd -EXPORT_SYMBOL_GPL vmlinux 0x79af0235 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x79b06b67 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x799a9d31 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x79b857f1 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79d73e29 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x79d15ba4 mmput +EXPORT_SYMBOL_GPL vmlinux 0x79d85435 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x79de7522 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e5672e led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x79e3db30 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova -EXPORT_SYMBOL_GPL vmlinux 0x79f3b9bf crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79fb3739 pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x7a08399f rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x7a10a0bb pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7a12da1c nvdimm_region_delete -EXPORT_SYMBOL_GPL vmlinux 0x7a145047 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x7a1a9425 timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0x7a1af1cc acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x7a1eb8cf crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x7a33d205 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x79fc6d0b dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x7a047c81 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7a0b9925 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x7a0dd59c virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x7a1b633a crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7a1d5551 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7a2eb69e __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7a332c79 is_dock_device EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a4174ac tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x7a58efd9 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7a6e8bf8 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x7a70dd43 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x7a4109d5 crypto_akcipher_sync_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7a501cc1 mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x7a5d6188 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x7a718565 devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7e4760 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x7a80031b regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7a7879f4 dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a90a7b9 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x7a9a4a21 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7a99e1f4 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x7a9c09b3 driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7a9ef02a rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0x7ab5e470 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac25c1b pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x7ac464e7 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7ac64c80 dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acd9aca devl_trylock EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag -EXPORT_SYMBOL_GPL vmlinux 0x7ad19680 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x7ad46dbe sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x7af3c2a6 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ad48de9 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7adbb195 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x7af4772f __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x7afb16ee __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b082dc7 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x7b0ce725 devl_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x7b1d76d8 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x7b1fc91d irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x7b411d3f clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x7b451a69 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x7b45baa6 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1b1e78 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x7b1bc751 fscrypt_prepare_lookup_partial +EXPORT_SYMBOL_GPL vmlinux 0x7b207c05 ma35d1_reg_adc_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x7b229e72 mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x7b25ac94 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x7b2fea2f of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7b39a42e bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x7b530286 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7b53464a find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5b991e bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x7b69323c acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x7b5ceaf7 fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x7b5ef2c1 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x7b60a499 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x7b6a25a2 xenbus_probe_node EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b87729b mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7b710019 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x7b73d084 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x7b76d081 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval -EXPORT_SYMBOL_GPL vmlinux 0x7b8aba0e cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0x7b8f0595 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x7b8ee90c __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b913d1c regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7b9501d7 sprd_pinctrl_remove EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b985b90 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b9a5daf sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7baa3982 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit -EXPORT_SYMBOL_GPL vmlinux 0x7bb406af direct_write_fallback -EXPORT_SYMBOL_GPL vmlinux 0x7be40b3a public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x7beef08a encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x7bf55abf dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x7bf72b4d add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x7c091b8d phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x7c187f16 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x7c21be0c gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x7bbf4fbc relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x7bc46b51 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7bdf7f9c pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x7bfec21b irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7c0caf78 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x7c0ed730 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7c12f41d crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7c1c81d6 devl_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2a3e0a of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x7c32e9eb clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x7c355985 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c512e8e __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x7c555188 meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0x7c5fca3a tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x7c69afca regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x7c7022e8 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x7c7c60e1 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x7c8a8787 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x7c92dfe2 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x7c948bc9 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x7c47c88e wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7c5fd608 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x7c612506 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x7c69f2ea init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7c77ff8b __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x7c7b132f __traceiter_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca00c84 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7c9c9301 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cb50e35 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cbee719 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x7cbe342e __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x7cc3cfe5 regulator_irq_map_event_simple EXPORT_SYMBOL_GPL vmlinux 0x7cc84d98 from_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x7cce902d __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7cced930 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x7cd1817f efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x7cd25457 vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7cd96c19 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x7cdac9a4 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x7cde137b blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x7ce35965 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x7ce52d2c fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7cdb2dd0 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x7cdb3c82 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7cddf7dc fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x7cded5e8 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x7ce29b95 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x7ce2ccb7 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x7ce3b6fb fwnode_connection_find_matches EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf36c51 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7cf54d43 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0d395c fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x7d0eb906 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x7d0ece7a __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x7d09c714 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x7d0f6b42 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x7d13eb89 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d27d9a2 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0x7d30244a crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x7d3fda7d usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x7d3e09c0 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7d3ef316 class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0x7d467c87 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d4cf3d4 switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0x7d53601a clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7d4b3b5f call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7d4f7cfd component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7d541e39 sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0x7d558968 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x7d58e192 serial8250_em485_destroy EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5f1f83 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x7d719991 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x7da799e2 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x7daca92a tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0x7dbc7f37 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x7dc1bccb pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7dc9617b irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x7d5ae25a __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7d5cb51a xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7d89a7d3 __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0x7d9cd384 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x7dbcb5b0 acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7dda9e7f anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7dde2888 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x7de1d3f1 meson_clk_mpll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7df65afa vcap_is_last_chain -EXPORT_SYMBOL_GPL vmlinux 0x7df94344 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x7e0905f1 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x7e0f2f24 dw_pcie_ep_raise_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x7e129ad8 pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7e1a8445 pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x7e1dcbd3 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x7e1fc0ec handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x7e213d47 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0x7e2b2492 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e381e02 __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0x7df39df1 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7e023305 crypto_sig_set_pubkey +EXPORT_SYMBOL_GPL vmlinux 0x7e207201 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x7e2ee03d dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7e303abc trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e59dbe1 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7e3d125e devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e4e696c of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7e583740 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7e5d3f71 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e5ec1d0 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7e623851 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6c3596 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x7e6e39e5 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x7e72372d dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x7e7701da serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e7e81cd mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0x7e822da9 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x7e8707ca skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x7e89acf4 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e81f6b7 usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e8edcda kvm_write_guest EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e9aee61 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7e99c3e5 devm_of_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eb0432a pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x7eb495eb regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec3749c platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x7ec6d59e of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x7ecb1c16 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x7eb83f5e dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7ec63fad perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x7ece6fca pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x7eda28ca xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0x7edacd5b dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x7ee228c0 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ee6d809 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7ee79de4 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eef1abe regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7ef5b94c tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x7f07201a acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x7f23ad57 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x7f290e15 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x7f3c2dde tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x7f47aab6 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x7f510447 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x7f572462 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x7eeeddd9 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x7f08551d iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x7f0dce95 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x7f13f6d0 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x7f179723 rz_mtu3_32bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x7f2c7170 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7f2cf013 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x7f380a46 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7f3d2e47 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x7f4bae16 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f6c01a3 uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f7aafe3 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x7f7ca439 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x7f777676 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f7bd826 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7db044 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7f82c72f mtk_pinconf_bias_set EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister EXPORT_SYMBOL_GPL vmlinux 0x7f8839d6 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0x7f8b5038 iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x7f983558 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7f8cb579 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x7f900f6a lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x7f98b639 devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7fa49952 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fc6c17b fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x7fd1f1a8 backing_file_open -EXPORT_SYMBOL_GPL vmlinux 0x7fd4d25b regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x7fd8c8e4 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x7fe36050 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x7fe36ba5 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x7fa97c02 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fc39e7a ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fc693e2 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fea2872 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fefad8c nop_posix_acl_access EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x8006de30 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x800a2757 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x8002f4f6 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x8009c88b crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x800da7ca balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x802082e8 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x80225bba vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x80244985 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x80349104 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x8035183a pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x80206d5e rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x803e9a86 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x80569bdf regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x805866ea ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x806dc0ad __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x80387764 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x80468540 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x804a8ad0 reset_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x80799404 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x807d47fc dev_pm_opp_config_clks_simple EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x80839901 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x808b1b5b kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x808e90dc iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x80809120 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x8089df7e udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x808b0a99 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x808e4b04 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80c1a908 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x80a35236 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x80aa4949 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c96e56 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x80cba572 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x80cbd742 virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll -EXPORT_SYMBOL_GPL vmlinux 0x80d529af dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80d67496 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x80d7cc32 device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x80e19cdf devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x80e173ff usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x80e88177 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x80eb93fc od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0x80f52c6f mtk_clk_unregister_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x81050d0d rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x810f7e8a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x80f742f2 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x80fc91f0 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x80fda3e3 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81303755 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x813595a1 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x8144a3e0 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x814d31a4 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x81557296 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x8126b7ca pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x81411f81 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81427d08 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x814cdea4 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x81545449 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815dd5e7 serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8163cd20 hisi_clk_init EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x816ef80a qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x817f1dca cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x816ae892 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x816b3e2b serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x816f2d6b dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x8170a535 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x81799217 ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x819983db devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x818c2b27 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x819c79c3 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x819f1b76 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x819dc705 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81ade4b7 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x81b18a14 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x81badbfc trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x81c5dad1 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x81c9541c devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x81b9440f __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x81baadf2 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x81c696d5 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x81cc8050 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x81cf5282 trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e3e61d pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x81e4025b attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x81e6a0a3 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x81e9f115 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x81eaae7e dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f5dd9c ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x81f60255 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x82061f04 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x82079f0f of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x8211cb73 acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x823ffb7b dma_opt_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x82596503 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x825b26fe ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8242b92e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x82441e9a kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x824c410a skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x824cf74b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x825835ce spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL vmlinux 0x825d543d spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0x826d99f0 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x82702829 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x8275fe10 of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x8285ce6b pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x8285a6e3 rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x8293f08e tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0x829504e0 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x829a759d iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x829e7b9e em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x829bc953 xhci_stop EXPORT_SYMBOL_GPL vmlinux 0x829f9253 spi_delay_exec EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82aebc53 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x82af4a58 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x82b417eb devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x82b729cd regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x82c6ccc9 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x82a97f31 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x82d0b1d1 mtk_clk_pdev_probe +EXPORT_SYMBOL_GPL vmlinux 0x82d5e3e3 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e1630b dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x82eec2f5 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x82f91e8a fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x82f988f0 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x83168c84 devl_region_create -EXPORT_SYMBOL_GPL vmlinux 0x8318f4ce devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x831d414b usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x8332123c irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x82d9679c lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x82e04274 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x82e93de3 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x82edfcf1 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x83155187 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x8315d0d6 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x83237ff1 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8330101e dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x83309147 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x8339e030 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x83408eba is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x8341d513 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834be125 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x834d8ac9 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835a8e77 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0x83615646 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x83560c6c rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x8372b42d kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x8395f03d ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x83989831 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x83c73735 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x83c9471d ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x83cefbbf pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x83cf4c26 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x83e7aeae vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0x83e87920 gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x83fb8209 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x84032099 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x840ccafd phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x83773ac8 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8383aa7a vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x8384e157 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x8399f2f4 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x83b52b9f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x83ccb7af tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x83e06ba4 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x83e8ddf0 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x83fb2730 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x83fd9ea6 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x8402ccd1 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x840e85a1 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841a07ca __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x841c761a devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x84292f71 dev_pm_opp_sync_regulators EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x8434bcd0 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8434abe6 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844b2d02 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x84501525 regmap_exit EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845235b6 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x845419e3 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0x845aa9c8 platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x845af053 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8461260c dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x845cd648 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x845d265c ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x845f79d6 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x8460b342 vp_legacy_config_vector EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x847edc7e meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x848d319e synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x84a34dae pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x847a9f1c rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x847dc5d3 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x84a5d127 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84af617a bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x84b19510 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x84b627d7 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x84c74c89 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x84e66601 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x84e85067 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f9f769 vcap_is_next_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85011f22 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x84f09aed usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x8507ffae wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x85168d71 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x851dc0e8 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x85185c33 transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85214683 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x8521b851 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x8522fdca led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x852bc320 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x8531aa45 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x8552784c pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x85267784 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x8527a35b cdx_device_add +EXPORT_SYMBOL_GPL vmlinux 0x85290868 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x852c16fe __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x85345ae6 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x8538d055 pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8557dcbd led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x8558d80b of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x85611024 dw_pcie_ep_reset_bar -EXPORT_SYMBOL_GPL vmlinux 0x856abea2 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x856f5c70 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x857168b7 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x85792007 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x8557ad69 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x8565ae9f virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x8569a1b9 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x857de33c sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x8582055c of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder EXPORT_SYMBOL_GPL vmlinux 0x859708b2 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x859a4c2d fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x85c11a37 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x85ca14f6 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x85cfb045 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x85e3b2a8 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x85e55c5b rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x85ebb64e __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x859c6e3c sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x85b19112 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x85d630a4 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x85dbd833 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x85e7f21e __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x85eda7cc genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x8609869e irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x86020699 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x86028548 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8605d811 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x8607b556 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x8619ad35 devm_ti_sci_get_handle EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal -EXPORT_SYMBOL_GPL vmlinux 0x861bcbac of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x86221934 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862e535f cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x8640e06d ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x8637eeb5 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8639119a device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8641a5d2 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86616c46 pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x86666f67 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x86669cb9 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x866e481d spi_add_device EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8675f057 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x86762218 nl_table EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8680ec7d dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x8684c506 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8687ac1a iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x8694041f led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x86a430ff gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x86a533b4 thermal_cooling_device_update -EXPORT_SYMBOL_GPL vmlinux 0x86b0ab5e gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x869df476 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86b84397 fsl_mc_obj_close -EXPORT_SYMBOL_GPL vmlinux 0x86bb12a3 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x86bc9d1c usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x86be7bef blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c1a75a ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86c92fa8 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x86ca2d16 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x86d74cf7 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x86dd7772 inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0x86e04a9c mtk_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x86e8519b of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x86e85b1e dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x86cb175c pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x86cf2709 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x86d958cc devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x86dc230b of_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f84633 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x86fa8ffd __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x86ffbe5c dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x8705f9f2 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x87080e2c platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x870f6a07 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x871259a1 fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0x8715c654 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x87142905 pci_pr3_present EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x87305eb5 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x8733e419 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x87491cf0 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x877aabf5 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x877c1bfd wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x878b92f2 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x873074b4 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8740348b usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x8742fed0 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x875e9db3 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x876ba930 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x876c3776 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8771c1b8 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x8775ba84 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x878a986c ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x879844ae bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x87b256f9 i2c_client_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x87c07ff3 disk_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x87e7ac2e fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x882226b8 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x88361e38 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x884357e6 fscrypt_prepare_lookup_partial -EXPORT_SYMBOL_GPL vmlinux 0x884914f6 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x884ce26a vcap_keyfield_name -EXPORT_SYMBOL_GPL vmlinux 0x88507a69 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x8853e6f5 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x87b5cfcf pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x87c046df security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x87ccddee blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x87d6141d perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x87f3b1fa icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x87f74657 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x87faeae2 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x8810317f tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x8814f22f fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x882b53cb dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8863f0ad of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8874ec27 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x8877a801 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x88780640 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x886ac54f pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x88750c2b blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x8890ca96 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x88a41ff0 dev_pm_opp_adjust_voltage -EXPORT_SYMBOL_GPL vmlinux 0x88aa7e09 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x889289cd perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x88a11eb8 cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active -EXPORT_SYMBOL_GPL vmlinux 0x88b2b329 split_page EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b5d52d imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0x88c04ac4 mbox_bind_client -EXPORT_SYMBOL_GPL vmlinux 0x88ca67cb regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x88b788dc bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x88c61b49 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x88c64654 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x88c7f3e8 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x88cb10f2 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88e18dc3 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x88de5d9e bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x88de685c blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x88df4284 io_uring_cmd_sock +EXPORT_SYMBOL_GPL vmlinux 0x88e4a649 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x88e4b1b8 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x88eaba1a fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x88ec164c vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x88fef8ce of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x8905b073 regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89258a34 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x892f11ef modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8932cbb1 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8937ef96 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x893804bc led_blink_set EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x89466ca7 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x8942f4de ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x89467e79 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x89472572 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8964d544 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x89713f3d kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x897f9580 __devm_clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x89819133 acpi_subsys_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x89920877 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x89930408 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0x8997fbc9 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x8999bb13 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x89a1873e dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x895649bf perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x89726a48 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x897585d3 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x898746d8 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x899dd467 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x899f7fa4 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x89a152e0 usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x89a9af36 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x89a7f6c2 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x89a964a6 user_read EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b8124d pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x89b83411 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x89b7dc05 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89c5641c gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id +EXPORT_SYMBOL_GPL vmlinux 0x89e2901e dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e8b986 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x89f07235 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x89f31bba tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x89fda861 devl_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x8a108d16 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x8a191ed8 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x8a2d0424 rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x8a3d695c iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x89e9ce42 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x89fb6ad7 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x89fe3896 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8a0981e1 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a3b9381 of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a456372 edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4e9b88 pci_p2pmem_virt_to_bus EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a57d888 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x8a58503f pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8a598ba7 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8a5ba266 blkcg_punt_bio_submit -EXPORT_SYMBOL_GPL vmlinux 0x8a5c5ea7 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x8a595190 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x8a5fe496 devm_tegra_core_dev_init_opp_table EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6b3348 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x8a816716 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x8a69d0e8 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x8a7026e5 regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a91dba4 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x8a9c79c9 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x8a9df7a3 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x8aab855b rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x8ab33571 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x8ab949c0 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x8a8b7b28 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x8a8e49f1 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x8a9a6fbb devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8a9cac5c irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x8aa1ec61 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8aa3b1ff switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x8aab0efc pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8aab68a4 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8aaff30f devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8ab950de acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8ab95526 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ad111b9 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ade7022 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x8ae5cd4b kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x8af6d1a5 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x8afff033 filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0x8b1350b4 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x8ade85c4 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x8aea6e65 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x8af6ebe1 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x8b051bd3 uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match EXPORT_SYMBOL_GPL vmlinux 0x8b16842d srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x8b291feb component_del -EXPORT_SYMBOL_GPL vmlinux 0x8b2b442a blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x8b395b04 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b4038d1 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc -EXPORT_SYMBOL_GPL vmlinux 0x8b425912 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x8b47111d ahci_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x8b4acd6d get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x8b5ac776 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8b6b62f3 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8b6d1e6c xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x8b8187f7 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8b4fd14a regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8b58fa7d dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x8b5a820e dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x8b835765 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x8b864f4b kvm_vcpu_unmap EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall -EXPORT_SYMBOL_GPL vmlinux 0x8b9f86b3 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8b938765 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8b9aa784 device_reprobe EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg -EXPORT_SYMBOL_GPL vmlinux 0x8ba14ce8 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x8ba1883c rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8bad5ce6 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x8bae339c fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x8bbe527c __tracepoint_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8bd1af52 __virtio_unbreak_device -EXPORT_SYMBOL_GPL vmlinux 0x8bdacbbd acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x8bcf1a31 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8bd25921 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8bd2d047 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x8bf20aaf thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8bffc0e2 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x8bfbb12d kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x8c01b90c fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c16a7fd acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8c2529ad ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x8c2df5f4 devl_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8c357dc9 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x8c2b24c6 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c3a69f1 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev +EXPORT_SYMBOL_GPL vmlinux 0x8c4d5874 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x8c52dd7c __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x8c56669d devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x8c5cf31d tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x8c69c857 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x8c71dcfe pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x8c722676 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x8c5d4884 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x8c63550b of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x8c66840a get_device +EXPORT_SYMBOL_GPL vmlinux 0x8c701509 of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c7b3e27 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x8c88b724 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8cfe24 dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0x8c8d2374 dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0x8c959c7d badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x8c91a3f2 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cba454a ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x8ceb4c73 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x8cefe4c9 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x8cf8e314 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0x8cfa8ea6 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x8cfb1d61 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x8d0ec358 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x8d16315d blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x8d1cf238 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x8d1cf819 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x8d20d4bb platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0x8d219950 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x8ce0b82a unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8ce2913e component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ceaf15b devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x8cf405eb icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x8cfc8133 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x8d085957 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x8d0d4b90 pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d27826a ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x8d2784d0 ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d3a8b34 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d53b65f thermal_zone_device_register_with_trips -EXPORT_SYMBOL_GPL vmlinux 0x8d53c8c4 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x8d62c2c2 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x8d6bdaaa task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x8d5eba24 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x8d7972ce usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d85aa25 virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x8d8842dc balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x8d89008c divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d8fb8d5 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8d890918 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x8d89e44f task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8da719b6 devlink_to_dev -EXPORT_SYMBOL_GPL vmlinux 0x8dad3c33 k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0x8db91128 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x8d9225eb iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x8da55504 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x8dbc1fef meson_vid_pll_div_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dc2a1aa of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ded6890 hid_bpf_disconnect_device -EXPORT_SYMBOL_GPL vmlinux 0x8df1a980 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x8dfbc4af devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8df7fe62 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x8e089792 xdp_set_features_flag EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e16dc16 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x8e1b08b2 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x8e1b19d4 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e30a6fd folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0x8e3833ef lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x8e44c562 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x8e48abc0 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x8e1ccb23 onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x8e1e671a ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e2087f0 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8e30ac98 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8e35065f sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x8e460072 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8e4705d6 serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e4ececf clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x8e588e67 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x8e634fc7 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e78234a do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x8e784960 of_irq_to_resource_table EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e87f8ab gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x8e898d5e buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0x8e992c8c acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8e8db60b usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e8e2e1f usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x8e956e67 crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x8e9d4687 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8ea446bd request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x8ea6f824 __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eadc7f8 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x8eb22050 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x8ebc1878 k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x8ec98b2d thermal_zone_device_priv -EXPORT_SYMBOL_GPL vmlinux 0x8ed3503e regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x8ed45f36 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8ec83bf6 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8ed28eb8 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x8edef03c uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x8ee67c36 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x8ee6993d auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eed125c tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef0bfd1 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x8ef4703a fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x8ef5cb25 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x8ef6254b cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x8ef922d2 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8ef9815d cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start +EXPORT_SYMBOL_GPL vmlinux 0x8f04efc7 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches -EXPORT_SYMBOL_GPL vmlinux 0x8f1338d3 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x8f263c80 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x8f280b96 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8f2f3c9d regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate -EXPORT_SYMBOL_GPL vmlinux 0x8f46c49d ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x8f420f39 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x8f44dc06 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x8f4f5b83 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x8f5157ea __fsl_mc_driver_register EXPORT_SYMBOL_GPL vmlinux 0x8f581c0e __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8f66021a clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x8f691111 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x8f6a5304 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6da6f0 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8f6e05a2 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x8f72557a xenbus_watch_path EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f895888 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x8f8b858d irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x8f9a92f2 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x8f9b4b1a relay_open +EXPORT_SYMBOL_GPL vmlinux 0x8f7be0ef bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x8f847789 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x8f8e4784 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f8f07aa __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8f9f8c56 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x8fa12f54 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8fa4b25a device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fac9c35 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x8fae3f4b sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fd9d6a8 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x8fe7dcb4 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x8ff1f4e7 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x8fd28b3e ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8fe462c6 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ff494f7 pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff6f5b1 trace_array_init_printk -EXPORT_SYMBOL_GPL vmlinux 0x9002c267 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x9024b535 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x9025c2e4 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x902eb656 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ff67c10 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x900bf587 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x90364931 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x903e2bf3 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x904b366e tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x90631b04 mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x9065f2ee devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x906663ab crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x90677f39 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x906ea39a spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x9070884c pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x9071b778 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x907569cb phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x907e7240 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x90498936 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x904f1f12 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x90606682 of_regulator_match EXPORT_SYMBOL_GPL vmlinux 0x907ffb62 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x9089c381 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x90953dd0 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x90807a8d devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x90807c6e devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x9097d129 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x909a600e fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x90a4efee regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x90a73c1b of_property_read_string_helper EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90b5f27c unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90ba1766 lynx_pcs_create_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x90ba8c28 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x90c16e2f fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x90c55e80 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x90ba8474 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x90c7e9f3 tegra_bpmp_put EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90e7c1f5 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x90eca40c devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90eefa7d pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x90fa23e2 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x90fda31c tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x910819af fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x910cf239 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x910e79bb __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x911a30a6 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x90cb88a6 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x90d43b20 nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL vmlinux 0x91230732 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x913721bf ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x9152e41a sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x915554e9 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x91540b70 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x915aa639 bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x916ca2e6 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x91786a57 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x91802cc5 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x91879465 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x918834f8 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x916cacfc power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x917296cf tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x917881af xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x918dd49f usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91a27c26 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x91ad2a0c mtk_clk_register_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0x91b47fd1 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x919b8e37 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x91b04d9b pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x91b726e9 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91bc3c24 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x91c48b1e edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x91c089d9 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91da43f9 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x91de91e1 tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x91debd38 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91f1a5c2 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x920b8f25 __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x920efef4 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x92140d86 ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x921666f5 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x9216e0e2 ext_pi_type1_crc64 -EXPORT_SYMBOL_GPL vmlinux 0x9217589e posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x92254aa7 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9221e946 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x9223e03e usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x922d8801 __tracepoint_rwmmio_read EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x924934e5 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x924951fa blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x92513911 devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x9254f2c7 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x92650e17 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x9266ade0 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x924ebe2f vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x92698fef crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x927085c2 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x927242fb net_failover_destroy EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x92755719 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x927815e9 mdiobus_c45_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x92811a3e pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x9284e609 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x92891e1b pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x928d3846 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x92941372 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x927dd538 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92ac8413 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x92b1c8af usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x92a4e17b blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92ba1268 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x92c1733c devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x92cb609e __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x92cf74aa vcap_admin_rule_count -EXPORT_SYMBOL_GPL vmlinux 0x92d20613 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x92d2e1a2 uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d493e1 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x92d87184 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dba852 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x92e14eff of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92ea5c9a vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x92fa93df cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x92fefcc8 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x930deaa5 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x9312c141 k3_ringacc_ring_cfg EXPORT_SYMBOL_GPL vmlinux 0x931ac7c0 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x931d4dff inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x931dbede iomap_swapfile_activate EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x93260729 regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x932f93f3 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x9332a568 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x93392832 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x933eb01d nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x934f3847 cros_ec_cmd -EXPORT_SYMBOL_GPL vmlinux 0x93501aeb scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x934b4945 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x934d27ce tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x934dcbd3 ata_scsi_slave_alloc EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x935353cc xenbus_dev_remove -EXPORT_SYMBOL_GPL vmlinux 0x935e389c dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x93588422 device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p -EXPORT_SYMBOL_GPL vmlinux 0x937ef647 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x9386bf99 icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x936a2415 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x936f6620 vcap_tc_flower_handler_vlan_usage +EXPORT_SYMBOL_GPL vmlinux 0x937244eb lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93743fcc skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x93756a8e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x937aa394 pci_p2pmem_find_many EXPORT_SYMBOL_GPL vmlinux 0x938cf9d8 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x938d0f1c gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x9397e357 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x939f64db fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x93a079ae gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x93a3d1d6 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x93ba28a9 arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0x93c4aeb9 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x939af874 fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93cbc703 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x93c8b63b devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x93d0a049 xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d69efa led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x93dd9a61 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x93de6086 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x93e00920 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93e1b9e3 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x93e5283e kvm_get_running_vcpu EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f5b93c soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x941888fc dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x93f010f3 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x93f25a6b genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x940431d8 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x94278340 kvm_vcpu_wake_up EXPORT_SYMBOL_GPL vmlinux 0x94299178 phylink_decode_usxgmii_word EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9431f29a irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x9433f61e vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94486f0a fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x944d2f04 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x94531ac1 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x945334b4 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x94536896 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x94564c46 ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0x94579cb3 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x9458ca93 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x9468fdf8 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x948b407d wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x948b456a hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x94712adb of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a31303 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x94a5049e dpbp_disable -EXPORT_SYMBOL_GPL vmlinux 0x94b0f223 fat_update_time -EXPORT_SYMBOL_GPL vmlinux 0x94b54b66 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x94b9faaa kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94b577eb irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x94bbb62f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x94bcb115 md_run -EXPORT_SYMBOL_GPL vmlinux 0x94c460e8 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x94c595bc dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x94ce1930 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x94d0836b devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x94e2ff7c acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94e7d2b0 scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0x94ea6034 devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f050d9 put_device +EXPORT_SYMBOL_GPL vmlinux 0x94f41146 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x94f64aa5 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x94fc92ed tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x95018f56 rz_mtu3_shared_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x950336c5 pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952512f1 vcap_tc_flower_handler_vlan_usage -EXPORT_SYMBOL_GPL vmlinux 0x9529f2aa regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x9530a815 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9532880b thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x953643dd compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9538b7e6 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x953b4a6d mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x953bdd2e sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x951a8864 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x951e6544 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x9535d135 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x9535f87a usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x953d5187 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95437103 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x95450847 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x954e6b98 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9553ed1a tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x9554b6e0 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x955a82ba of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955fdd49 pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0x9581e351 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x9576e97e device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958795c4 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x959682a4 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x95979e51 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x95983142 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks -EXPORT_SYMBOL_GPL vmlinux 0x95b27baa regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x95b5b411 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x95b7fe47 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x95b9859c acpi_create_platform_device EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95dd64b4 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x95eefd6b ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x95c678a3 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x95d91250 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x95db7021 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x95df929f crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f43f1d inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x95fb876d of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x960bae74 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x95f896cd get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x960b6952 fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9616a255 phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL vmlinux 0x961db3da acpi_device_fix_up_power EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x9629f5cb alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x963d021f dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x963eeca4 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x9631e682 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x963f13e6 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x9649d9eb to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965e8561 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9672e83d badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0x967b9249 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x9680e19a dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x9694879a skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9681474a platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x96999f91 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x969b720b virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x96acbe48 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x96b1fff7 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x96bd6ca9 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x96cb7bbe percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x96cccb3d of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x96d99da4 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x96db43ab __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x96dd1e92 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x96e10cad pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x96e44d0c devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x96f7328a fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x96a7f6ea sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x96bcda06 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x96e220a4 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x96e8c7be usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x96f67695 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96fdb546 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x96ff9d3d usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x9703c45e ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x970457e6 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x96f9bc89 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x97008daa rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x970ce8e7 rockchip_pcie_deinit_phys EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97165e86 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x971be4da clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x972e5d4e inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x972166d5 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x972f9e7a regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9741efd8 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x974a482a devm_hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97650463 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x9762903c regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x9765ba9f pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x976c8c12 extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9781be85 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x97a4d9ef irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x97b5d62c rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x97d5bc34 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x97d6358d fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0x978a623c ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x9799adc7 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x9799d2d0 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x97a047b8 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x97a048a1 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x97a22a92 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x97a5c1b5 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x97a5c39f iort_get_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0x97b69e4c vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x97c039e7 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x97c1a7af usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97e6ebce stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x97f1f98b srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x9818c2b1 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x98291741 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9814b1e9 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x981c1692 ti_sci_inta_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x982b6784 rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98361d72 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x983d07e4 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x9843e8c2 devm_hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984476cd handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x9846b0c8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x984ab9cd led_compose_name EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x98527310 xenbus_dev_fatal EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9859b7c2 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x98629995 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x986628ad i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9872e139 cdx_bus_type EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9884589a fuse_do_ioctl EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98aed7c1 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x98b5bc43 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x98c8489b debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x98cbb648 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x98d02e8c fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x98e88ae5 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x98bb00d4 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x98e20778 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x98ec87f2 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98fed7b8 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x9942a83c kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x98fc17ad blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x98ff96b8 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x99043e5a usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x992736af vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x99324977 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x99452279 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9953acdb pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x9954d5f4 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x995b3dd1 irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996b6bcc kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x996cbed9 fsl_mc_bus_dpseci_type -EXPORT_SYMBOL_GPL vmlinux 0x996e3f24 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9964d55d led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x99763e85 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x9986184b __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x9989542c fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x9990d0b6 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x999156b0 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x9992f4f6 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x999c8668 mark_page_dirty_in_slot EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99ad92f0 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x99b5a439 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x99c0922e fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x99cbb186 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x99d6ca0e devm_mtk_clk_mux_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x99d95b7e crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x99d99c4d fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x99c6c6ea genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x99e0ff6e devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x99e8c00f devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x99e9089e vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99fe347e usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x9a0bc52b subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x99fa8ed5 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x99fdb459 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x9a0adfa6 clk_hw_determine_rate_no_reparent EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1bf850 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9a1f81fb k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x9a1cbbda of_pci_get_devfn EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a58ad84 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x9a4a5b32 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x9a549959 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x9a56e32d icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9a5768cf rz_mtu3_8bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x9a57e866 dev_pm_set_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a6f31ae of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0x9a7be203 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x9a8a1e2e xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x9a9062af bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x9a9227a2 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x9aa31910 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x9ab6596a ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9a5f6bad regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x9a620052 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9a734454 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x9a7aed5d ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9ab4acf4 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac34d9d __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0x9ac58f15 __tracepoint_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0x9ac7919c __irq_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x9ac7b037 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x9ac77c46 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find -EXPORT_SYMBOL_GPL vmlinux 0x9ad2be47 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x9ad6b96f serdev_device_break_ctl -EXPORT_SYMBOL_GPL vmlinux 0x9ae80da9 devm_memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af19ff5 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x9aebebda rio_mport_get_efb EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af8d8ba iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9b089770 crypto_alg_mod_lookup EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b0ebae7 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x9b1269d9 mtk_clk_register_fixed_clks EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x9b223419 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x9b225590 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x9b266e13 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x9b29e82b k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x9b3fdd7f ethtool_dev_mm_supported -EXPORT_SYMBOL_GPL vmlinux 0x9b45d595 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x9b51c2b2 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9b1765ef blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x9b2abaea stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9b3ee309 thermal_zone_device_id +EXPORT_SYMBOL_GPL vmlinux 0x9b407d94 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x9b48c449 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9b48fd2b trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x9b4aab2c fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x9b4b9d31 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5ed99c kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x9b617652 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring EXPORT_SYMBOL_GPL vmlinux 0x9b652b6e phylink_resolve_c73 +EXPORT_SYMBOL_GPL vmlinux 0x9b6a511d driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x9b6ba307 virtqueue_get_avail_addr EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b70f921 rcu_trc_cmpxchg_need_qs -EXPORT_SYMBOL_GPL vmlinux 0x9b78704d pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x9b7b9ded crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b954a3b usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x9b9d0e12 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba61ad1 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9ba4ecff meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x9badef62 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x9baf269e __bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0x9bb3fcd1 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9bc9066c regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x9bde11fa relay_file_operations EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range -EXPORT_SYMBOL_GPL vmlinux 0x9be9fcc0 gnttab_unmap_refs EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9befe698 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x9bf4fada acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9bfa26c9 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x9bfbb831 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x9c048377 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x9c2c8d31 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x9c4013cc tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x9bff78b7 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x9c08c4b5 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x9c0d26d5 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x9c1534bf ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x9c1aaa8e serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c20888d dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x9c25e322 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x9c31f1df vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x9c3833d2 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x9c415dad devfreq_event_get_event EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c47c95b __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x9c4c1399 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x9c4eb529 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x9c5e972e trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x9c6859ca bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x9c68eb33 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x9c6f7e3d udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x9c64fa07 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x9c677099 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9c9b86c4 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location -EXPORT_SYMBOL_GPL vmlinux 0x9caa32b7 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x9cb0b024 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x9caae58f wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x9cb3ce35 devm_hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x9cbb2986 fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x9cc3b2fb syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9cc39456 of_device_compatible_match EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ce86d0b regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x9cef3074 devm_otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cfc1de6 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x9d007b09 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x9d026abd rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x9d05d96d devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d0ecd15 static_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x9d151686 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x9d21c960 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x9d0a42c3 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x9d0ff1a0 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9d17fd79 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9d18acbd io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9d1930e3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x9d1db572 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x9d2b4f04 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x9d2d3f5b pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x9d2db421 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d326516 irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x9d602e35 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x9d6597a5 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x9d69205b vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0x9d6f5502 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x9d820eb1 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x9d8719e7 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d3b0733 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x9d5e9b0e fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x9d6011a4 component_add +EXPORT_SYMBOL_GPL vmlinux 0x9d64ce29 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x9d6bf8ae acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x9d77287c i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x9d845cfc devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x9d8af274 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d8c6278 ahci_host_activate EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x9da584b3 walk_hmem_resources -EXPORT_SYMBOL_GPL vmlinux 0x9da9a720 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x9db24287 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x9dc30fd6 gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dccc46a udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9dd6e714 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x9de605f0 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x9dc562d1 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x9dc597d4 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x9dd123d6 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9dd80a6b wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x9ddd050a usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x9de4044f bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x9de6d27f screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x9de821df nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x9de94483 folio_alloc_buffers -EXPORT_SYMBOL_GPL vmlinux 0x9dea7f94 scsi_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0x9df6e2e8 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x9df7e5c0 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x9e0a0072 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x9e0e8612 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x9e13823c regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x9e178071 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x9e1b5700 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9e207bba clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x9dea1a3e failover_register +EXPORT_SYMBOL_GPL vmlinux 0x9decf99f sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x9defade6 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x9df16eaa mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x9e0ba139 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x9e174946 ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e2938d3 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0x9e31a8f6 failover_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e36a19c __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x9e3e9257 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x9e42b5f6 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9e250973 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x9e319802 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x9e34ce9f perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4811a7 devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x9e52f37e vcap_rule_mod_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9e54ef52 device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x9e587047 mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x9e5d8ed8 spi_get_device_match_data -EXPORT_SYMBOL_GPL vmlinux 0x9e6c1292 blk_mq_end_request_batch -EXPORT_SYMBOL_GPL vmlinux 0x9e71f28f gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x9e869d05 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x9e87fd6e cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x9e9a2e82 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x9e5b0898 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x9e644731 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0x9e92e937 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x9e9c2ba1 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9ea3630d pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0x9ea3dc26 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x9ebb5528 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x9ec352e2 devl_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ed4be19 acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x9eaca984 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x9eae9365 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9eb36f53 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x9ebbbf29 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x9ebccb9d gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed55992 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x9ed86680 fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x9ede2a80 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x9ee66e93 reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eef3068 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f0c6016 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x9f11d2a3 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x9f3f03b1 fscrypt_fname_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9f47b76e phylink_generic_validate -EXPORT_SYMBOL_GPL vmlinux 0x9f4f4a68 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f126bca devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x9f12b855 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x9f2a0e75 rz_mtu3_shared_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9f396d9f ata_eh_read_sense_success_ncq_log +EXPORT_SYMBOL_GPL vmlinux 0x9f3aa856 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x9f4f8295 folio_invalidate EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f53c67a devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f57e19b dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f5c37f3 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f622c51 raw_v6_match -EXPORT_SYMBOL_GPL vmlinux 0x9f6353be dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x9f641407 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x9f65fb85 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x9f663889 __io_uring_cmd_do_in_task -EXPORT_SYMBOL_GPL vmlinux 0x9f6db31f phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x9f70caa8 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0x9f818b06 clk_hw_forward_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x9f876f45 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x9f8a6ecf tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x9f6e2117 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x9f7c03fc dma_resv_set_deadline +EXPORT_SYMBOL_GPL vmlinux 0x9f7ec53c dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x9f836f28 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9f847605 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x9f8c6d67 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x9f95990d iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x9f9a5576 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x9f9a8b47 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x9f9aff56 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x9f9de4c0 pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa56d90 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x9faa305a ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x9faceddb bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x9fb7b051 phylink_create EXPORT_SYMBOL_GPL vmlinux 0x9fb996a7 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x9fba051a rio_add_net EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc35d9d regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x9fcbec70 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fdb90de irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe6578b mtk_pinconf_bias_disable_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fef3758 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xa00bd066 devl_lock -EXPORT_SYMBOL_GPL vmlinux 0xa00d1ce4 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa01132f8 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xa01a1876 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9ff12e32 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x9ff3aea2 mtk_clk_register_dividers +EXPORT_SYMBOL_GPL vmlinux 0xa0008005 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xa0110575 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa0148951 acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0223a17 mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0xa040effd uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xa01cb7f6 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xa021c4d9 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xa0320196 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa03fb15a acpi_spi_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xa044a3aa yield_to +EXPORT_SYMBOL_GPL vmlinux 0xa04edc13 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa053bfc7 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xa056c963 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa059c70e debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xa05e7aae regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa06fa7e7 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa0552c7e xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xa06d46e7 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa070bd2b blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa07f06c3 fsverity_verify_blocks EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa0c2bcb3 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xa0cf07c4 thermal_zone_device -EXPORT_SYMBOL_GPL vmlinux 0xa0d15197 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xa087b62d page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xa0a00770 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0a89e1c clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa0aafb1a pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0dfbee5 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xa0e0f95d clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xa0f519a9 dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xa0f7df8e devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xa106d21e of_nvmem_layout_get_container +EXPORT_SYMBOL_GPL vmlinux 0xa0d98651 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xa0da4196 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa104488f tcp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xa10647f2 acpi_match_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0xa1089e8f ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xa111cb31 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11d553b fscrypt_limit_io_blocks -EXPORT_SYMBOL_GPL vmlinux 0xa1202483 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xa1324841 replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0xa13539c1 filemap_migrate_folio -EXPORT_SYMBOL_GPL vmlinux 0xa139c339 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0xa11ff0ea xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xa12e5aa3 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xa1396acf kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa13ee96c sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1598e51 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0xa15c6b32 devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0xa160c4bb inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0xa16449b4 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL vmlinux 0xa17b5f6c mmc_regulator_enable_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xa17cbd90 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xa17e4987 blk_mq_quiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0xa18301ad gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xa1834173 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xa18d39ab devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xa1913c4b sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xa174277b kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa17646a5 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xa184c973 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xa1866517 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0xa19279f5 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0xa19561fb __SCK__tp_func_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa1a8ba55 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xa1a8fdf8 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xa1ad9435 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xa1b070fb inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xa1c157df host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa1a23c68 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xa1ac8a47 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa1adae27 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1c65971 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xa1cddad7 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xa1c87d05 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xa1c96a75 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xa1d2d39d acpi_subsys_poweroff EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1d88369 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa1de00e5 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xa1edb099 devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa1fa49a5 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa1d99895 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xa1dcdace spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa1e12b0e get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xa202e4f7 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa207c63d dprc_open EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print +EXPORT_SYMBOL_GPL vmlinux 0xa2096bae msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa20ec609 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xa212e2b7 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xa2159b91 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xa21e7b68 clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa22665c0 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0xa22d9548 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xa2345922 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa2421a31 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa242e116 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xa2439e3a iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0xa24b3b7f iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa25455fc mtk_clk_gate_ops_no_setclr -EXPORT_SYMBOL_GPL vmlinux 0xa2577adc acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xa25a39f9 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xa2627e99 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa266975d device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa25680dc rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xa25bfe35 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa2815e07 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xa27d711f irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xa284624a to_software_node EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa29f26d4 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xa2a1ccff usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa2ad2e80 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xa2906694 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xa2a168e3 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xa2aadc27 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0xa2c4a9bb nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0xa2c5a2e5 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xa2cace1e sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e466c6 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xa2f676d1 nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa2f86c94 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa3031ef0 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0xa3074bc7 md_start -EXPORT_SYMBOL_GPL vmlinux 0xa30d0261 dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0xa314ff87 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xa3158555 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xa31afb5c devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xa331625d pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xa333711f pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xa3340a3b __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa34571cf rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xa34a45cf wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xa34e7930 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xa3581867 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xa35ee0fb sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xa363ab7c cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0xa36b2a5c pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xa30d75e3 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xa319a980 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xa33f746f vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa35c2390 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa36586d3 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa36be0f0 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xa36c67d8 dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa3710c36 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa37d2115 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38b9a7c pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa38ca5ec dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa38d5c56 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa3985d76 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xa39c5ba3 devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a0c5ad regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa3a20397 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0xa3a36c73 cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0xa3a5e28c sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xa3ac48a7 start_poll_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c80866 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xa3cee15e iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xa3c260bd sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa3c8446c devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xa3c8d284 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xa3cb3bea devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xa3d5a536 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3e5992d vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xa3e3ea75 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xa3e92ec9 gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3ef8e54 __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3faf858 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xa3f4cf3c vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xa3fd5039 pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4054aec crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa405bfe9 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xa4046cd7 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0xa4062a57 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa409f96f ahci_ops EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa426a66a gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xa41fcd17 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44cabe2 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0xa45144c7 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xa44a1f7a fscrypt_fname_encrypted_size EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa457f50d ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xa45a197f balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa4622047 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xa4664491 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa4718577 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa49211e6 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xa499a5c0 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xa49fd5b0 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0xa4888ffe blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xa4a9a0a3 backing_file_real_path EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4ad72bf fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xa4b0644e nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b44ae8 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xa4bd72ca virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0xa4bf2e41 cppc_set_epp_perf +EXPORT_SYMBOL_GPL vmlinux 0xa4bf55ed acpi_unbind_one EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c15933 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0xa4c6e97b inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0xa4cb14dd ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0xa4e6f7ff ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa4f14f5e debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa4fe6f19 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xa508bc30 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xa50988f8 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa4f5a0ad verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xa4f9d677 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xa4fdcb78 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa502770d mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa514a3c2 irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa5205841 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xa5258468 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xa52f4488 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0xa52b2fc7 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xa52d52ba tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa534b580 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xa5447956 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa5326793 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xa53f0886 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xa543c3ee device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa54be529 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xa54d864b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xa54dcd2e pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa55ddf46 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa555a608 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0xa5562681 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa569aaca gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0xa57d5ae1 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xa57ed083 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xa58ed084 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xa5a09013 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xa5a55ded irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xa5ae5cca da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xa5af4cc9 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xa5b813bf dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xa5950c64 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c3c6ce devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa5c3dd5c devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xa5d0b34c dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint -EXPORT_SYMBOL_GPL vmlinux 0xa5d3d398 bio_split_rw EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5da812a thermal_zone_device_type -EXPORT_SYMBOL_GPL vmlinux 0xa5e3812d fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0xa5e79567 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xa5e97b87 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xa5eb3443 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xa5ec59ea irq_gc_unmask_enable_reg EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6051f8f register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xa60a26a9 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xa60ef2c0 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xa620bd39 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xa6031b47 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xa603904c inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa604c102 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xa6314431 __nvmem_layout_register EXPORT_SYMBOL_GPL vmlinux 0xa6445323 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0xa651069c pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6532a80 fwnode_graph_get_endpoint_count EXPORT_SYMBOL_GPL vmlinux 0xa655c903 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xa65adfdc tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0xa65d70d5 devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xa675c63e ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xa678f78a bus_get_dev_root -EXPORT_SYMBOL_GPL vmlinux 0xa686f758 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0xa69fa6d5 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0xa655e9e5 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xa66a85e3 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xa66fad27 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xa68b79cb dw_pcie_ep_reset_bar EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a5c870 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa6a21593 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xa6ab8457 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6b945e3 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xa6c1016f sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xa6c535c5 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa6c66d83 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xa6cada4e phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xa6cd6884 of_detach_node EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f43a8b __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa6e5efe6 crypto_alloc_sig +EXPORT_SYMBOL_GPL vmlinux 0xa6f89d98 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70bbf57 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xa718d49a gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xa7111527 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xa71d864c adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xa7241959 pkcs7_supply_detached_data -EXPORT_SYMBOL_GPL vmlinux 0xa72d5591 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xa727a90e i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0xa72f8483 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa738a61b thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xa73b8de5 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xa741594b bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xa74ea32d device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0xa762a3d4 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa740e042 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xa7757eeb tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xa77ddd2d max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xa780978f devl_register EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa78e66fe xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xa78f4429 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0xa790ab4b __tracepoint_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xa7a13ab4 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa7aafaa2 crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xa7b0fdb5 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xa7b2487f inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xa7b2d684 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xa7bc5e94 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa7bd1e63 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0xa7c0807c imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xa7c68231 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa7fcc57d l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa80b5551 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xa7d0a8a2 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa7d2daa2 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa7d71e62 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa7e23b4e preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7e81b99 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xa7fca8be blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xa8006be8 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa8010cae sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa83725ea tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa822d907 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa83b5243 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xa850451e regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8595242 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xa8710e8d fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xa876ed85 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa859d431 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xa8811b66 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next -EXPORT_SYMBOL_GPL vmlinux 0xa895f809 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa890d941 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a1656b devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8ae0f42 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xa8b64390 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xa8caf80d skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0xa8ccbd41 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xa8e41180 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0xa8e58bdb icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xa8ec891d sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa8b789ce sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xa8bab36d vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xa8c31e51 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa8c45dff component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xa8c80b60 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xa8cc9d96 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xa8eea576 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xa8f2358d vcap_tc_flower_handler_ip_usage +EXPORT_SYMBOL_GPL vmlinux 0xa8f419dd pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0xa8f97178 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xa9009338 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0xa9052025 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xa90cd8f9 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0xa91c1669 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xa90cb106 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa91d3a05 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa91ff646 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93d8a05 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0xa9443763 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xa95a1a76 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xa95af706 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xa9388bd9 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0xa947471a tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0xa949d912 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa96a9bc5 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa9730caa dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xa976159c irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0xa97a7ecc acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xa9902041 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9728bda extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xa977dc26 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xa98418f7 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xa987c618 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xa98a2316 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xa99d3e71 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a37eee of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xa9a7da2d __cdx_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xa9ac5756 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xa9b7030a of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xa9ba51bd device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0xa9bf8837 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xa9d25fe3 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xa9d7fb0a dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xa9f0a0e4 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xaa121eea ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0xaa1fd8b7 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xa9a676f8 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xa9c730c3 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xa9c7ee2b devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa9d4ffc4 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9e1ed4c crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa9f073bb crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa9f679b2 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa9f6b26a bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xaa008e77 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa11aed7 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xaa1f5e2a gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaa2a89c8 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0xaa2ca3d1 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xaa32000e phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0xaa393cc6 mas_preallocate -EXPORT_SYMBOL_GPL vmlinux 0xaa4795d5 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xaa488322 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xaa570767 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0xaa5738fb simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa7c16ca extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xaa8c0c1b dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xaa9a293e nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xaa9e0407 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xaa6e9cd7 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa81e17e tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xaa89e812 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xaa957841 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0xaa963daf msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xaa9b9177 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xaaa310ab usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab626a7 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xaab0b6bc usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xaab709df component_compare_of EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0xaaba7cf1 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xaad83af9 switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0xaaeb9dc0 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xaaf8bc31 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xaac0d292 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xaac71ee3 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xaada83ee usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xaae1c9d0 msi_unlock_descs EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xab010232 of_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab0c7535 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xab0d7c4c rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab1eb9fc unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xab2df881 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xab38f0b7 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xab4be360 tegra_mc_get_carveout_info -EXPORT_SYMBOL_GPL vmlinux 0xab4fbe2e gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0xab5b81b4 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xab63964b tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xab66ed89 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xab408f6c bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xab427506 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xab5107a4 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xab528eb7 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xab5d2fd7 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xab60124d dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xab64431b iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xab6f0ded __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xab76a048 net_failover_destroy -EXPORT_SYMBOL_GPL vmlinux 0xab76c56c xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xab8310ed k3_udma_glue_rx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xab8a89c9 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0xab8c30c3 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0xab8deac1 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0xab9578ce apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xabad2dc0 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xabbec581 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0xabc4d703 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xab776aa9 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xab8b3870 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xab8e3cac mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab969da3 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xabac5db2 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xabb08504 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xabb2915e gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xabb8d90c wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep -EXPORT_SYMBOL_GPL vmlinux 0xabcfee2c pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xabd318bd dispatch_hid_bpf_device_event +EXPORT_SYMBOL_GPL vmlinux 0xabc75ebc paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xabc75f42 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xabcacbe5 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xabd24366 dm_internal_resume_fast EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabd6f69c i2c_slave_event -EXPORT_SYMBOL_GPL vmlinux 0xabdc7f2b bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xabfc3961 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xabfede5c relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xac016d65 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0xac17df21 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xac19d180 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0xac25c02f devres_get -EXPORT_SYMBOL_GPL vmlinux 0xac28c413 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xac321fe7 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xac3982f9 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xac3dc6cf clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0xac432a61 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0xac4a0f96 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0xac550784 mctp_register_netdev -EXPORT_SYMBOL_GPL vmlinux 0xac82efa3 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xac83706c ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0xac8f96c3 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xac98a697 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xaca60970 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xabf12d8f spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xabfbf7ee dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xabfd9993 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xac3f60c1 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xac6d24df devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xac7857eb dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xac7bc13a hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xac7c0b9b inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xac7d3377 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xac87c02b spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xac8cd652 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xaca8bdfd tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xacb0974b __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xaccdb97a securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xace02b96 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xace1ef30 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xad05450e mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0xad054e3b xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xad0defcf nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xad0ff5f4 of_request_module -EXPORT_SYMBOL_GPL vmlinux 0xad10073c usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xad31cfd7 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xace34f14 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xace5811e devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xacfcb06e blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xad093d47 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xad1cd321 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xad33e484 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0xad3ddd0d dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0xad40b6d1 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xad3b4053 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xad42ae3a blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad50c3ae gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xad5070c2 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xad538d64 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0xad60fdf0 mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad729d57 thermal_zone_device_id +EXPORT_SYMBOL_GPL vmlinux 0xad692f11 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xad6af2a7 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xad6c55d4 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad76dc0a of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xad7aedb6 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xad9ce535 dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xad9de4c6 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xad8d3378 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xad90fded hisi_clk_register_phase EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xada25ad4 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada5c1cf crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xadb2c3e5 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xadb2cd0c sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xadcf18ea devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xadcf2250 devlink_free EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xadf1c080 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xadebaf24 folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xadfcd15e inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xadfebac2 mmput +EXPORT_SYMBOL_GPL vmlinux 0xadfe1c3b i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xadff899e nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xae001e0a pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae021239 of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xae061eb0 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xae0bbb96 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xae0d7b90 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae054e77 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae11fd40 crypto_akcipher_sync_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xae17b5f3 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xae37a0e4 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xae383dba ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xae147bcb mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xae15c02b tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xae15e0e4 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xae1682bf i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xae197c18 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xae2aa12f spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xae33c66e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xae3674f0 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xae39bbc8 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3c862a meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xae3f164b stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0xae430a3f au_platform_setup -EXPORT_SYMBOL_GPL vmlinux 0xae472f19 folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xae57cc0c __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xae642a53 usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xae66f023 max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6ab55c trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xae7ab067 genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0xae6f3952 meson_eeclkc_probe EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae99ab8c ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xaea577d2 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xaebdc985 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xaec51a62 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0xaece8abe inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xaee543e1 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xaee55e2d __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xaef56e95 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xaef72ea6 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0xaf0552e5 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xae889ff8 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xae95bd84 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xaea55cbf kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xaed1fd32 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xaedfe2ff auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xaee52c37 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xaee67c20 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xaef97eef bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf0dc9b5 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xaf19b51a ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0xaf2be9ec xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xaf30c8e9 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0xaf328a6d pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xaf227049 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf40fa57 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xaf49198e apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xaf4caf33 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xaf4f8971 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xaf5de7de dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xaf6925e7 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xaf467e03 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xaf59e2ec platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule -EXPORT_SYMBOL_GPL vmlinux 0xaf6e5622 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xaf73ab87 crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0xaf78b9ab aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf7ad94c __SCK__tp_func_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xaf7c3938 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xaf7ef282 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf874ef8 crypto_sig_verify -EXPORT_SYMBOL_GPL vmlinux 0xaf93950c mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xaf9a4b68 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xaf86b9d8 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xaf8845b9 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xaf9bcfa8 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xafa211c9 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0xafa2562a ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb0fe50 hid_bpf_connect_device -EXPORT_SYMBOL_GPL vmlinux 0xafbacc3f bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xafb2016d gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xafc7ae0d rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xafc8f39a irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xafcb9ab2 pci_p2pmem_virt_to_bus EXPORT_SYMBOL_GPL vmlinux 0xafcd1cb1 vcap_chain_id_to_lookup -EXPORT_SYMBOL_GPL vmlinux 0xafd695ce folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xafd9f6a9 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xafcf58f6 xen_unregister_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafdddd0a noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0xafdeb17b init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xafe83848 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xaff470d9 regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0xaff7b2d2 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xaff03af8 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xaff45379 pci_p2pdma_add_resource EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb015d61b shake_page -EXPORT_SYMBOL_GPL vmlinux 0xb02578b8 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0xb027c9b2 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb03c8581 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xb03060c7 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb04319f4 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb0579c12 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb0642480 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0xb066e318 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xb0694857 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xb05ba566 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xb06adb8e iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xb06d8524 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xb071be95 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb07748de regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xb074ed45 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07e4c5e dev_pm_opp_get_supplies EXPORT_SYMBOL_GPL vmlinux 0xb0802f90 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb0852671 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb08ed07b blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xb08fe1f8 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb091329b fsverity_get_digest -EXPORT_SYMBOL_GPL vmlinux 0xb09fc5aa kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xb0b31a25 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xb08bb5fe vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xb0b207a0 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb0b64611 edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c28e25 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xb0cfdeb4 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xb0c7a02c iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xb0c9ae5b crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d5341b nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xb0db26bb serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xb0e413eb irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0xb0e7ab1f __traceiter_console EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f1d891 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xb0f4826c msi_device_has_isolated_msi -EXPORT_SYMBOL_GPL vmlinux 0xb109f270 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb0ed3365 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb110a4af da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xb115d100 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xb10f4558 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xb11786e4 ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb12468bb acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0xb12a69ae nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xb12b9cdd pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xb12e229b pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0xb13837ce vcap_rule_add_key_u48 -EXPORT_SYMBOL_GPL vmlinux 0xb1403479 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xb14256a0 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xb13ccad6 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xb13d2ef3 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb13e48a8 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb15294d1 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xb155056d ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb1633dbd device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16fd467 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xb1861565 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0xb19c3821 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xb1a63415 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xb1794732 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb1930226 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xb195bcd2 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xb19bdf16 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb1a8bb59 mtk_pinconf_drive_get EXPORT_SYMBOL_GPL vmlinux 0xb1b3f6ed phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL vmlinux 0xb1b90c86 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1d93f26 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb1de30ba sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xb1de9661 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xb1dfecea power_supply_battery_info_properties_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e531c2 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xb1e7b9d7 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xb1e93072 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xb1eae8fd perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb2038af4 acpi_get_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0xb20cc688 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xb2081f92 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb20b456a scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xb20edbc4 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xb216b2b1 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb219283a clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb21e9147 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb238ddbe kthread_func EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2546c86 rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0xb256be16 efivar_is_available -EXPORT_SYMBOL_GPL vmlinux 0xb25c4f3f hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb2684b41 dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2794412 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xb27dc069 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xb281c34a fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xb28318ae mtk_clk_simple_remove -EXPORT_SYMBOL_GPL vmlinux 0xb2841056 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xb2873be6 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0xb28a7ae8 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xb26b0136 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2a436b0 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xb29d541c usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xb2a88e0f debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb2b163db __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xb2ba0e5e ma35d1_reg_adc_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0xb2bf0bc5 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xb2bf9063 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xb2af3afd __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0xb2b906ae sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2e13190 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xb2cbf3f7 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb2d1906a cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb2e105e0 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb2e5128a of_phandle_iterator_init EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f5d6ac iomap_dio_rw EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb3014ff2 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xb305cfb9 of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xb306e805 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb2fbf714 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full -EXPORT_SYMBOL_GPL vmlinux 0xb30e3499 iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0xb31639c4 pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xb3327bde gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xb340876c irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0xb36db586 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xb370ce86 kvm_vcpu_halt -EXPORT_SYMBOL_GPL vmlinux 0xb372d553 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xb39a2e9f hte_push_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xb3bf8e34 hisi_reset_init -EXPORT_SYMBOL_GPL vmlinux 0xb3d7b8ca ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0xb3ddebd2 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xb3df268b blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0xb3ebe5e9 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xb3ef9b5c switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xb315461a usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xb317f148 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xb31ae166 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xb31e55f0 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xb32142c3 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0xb32ea6d8 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xb3369d74 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xb33fc614 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xb34f6248 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb363d4f2 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xb3756bf5 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xb3769d16 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb38d872d dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb38ef765 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xb38f9712 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xb3985338 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xb3c57d70 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb3ed4cc5 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xb3fb610a dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb41935aa vp_legacy_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xb429b3b7 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0xb43076c8 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xb43e4028 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xb40d9f12 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb41022b8 devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xb41685b8 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xb4185411 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xb42bd845 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb43322a9 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb43416d3 vcap_tc_flower_handler_cvlan_usage +EXPORT_SYMBOL_GPL vmlinux 0xb4387adf __traceiter_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4409bc4 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0xb44dc39a irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb44bff93 devm_ti_sci_get_resource EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4581805 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xb48e37c5 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb44fe07d crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xb45908d5 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xb45f38d7 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xb46c8637 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xb48278bd __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb486fdf7 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb48bc51a devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event -EXPORT_SYMBOL_GPL vmlinux 0xb48f5618 of_phandle_args_to_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xb4a03790 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0xb4a04d49 fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xb4a1941c inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xb4a42ebb bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xb4a8b978 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb4a51cd2 virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c462ac blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xb4e5cdbf irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xb4c4c61c tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xb4c5ffc1 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xb4c86222 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xb4c93de4 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb4cc7e2e crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xb4d39d40 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected -EXPORT_SYMBOL_GPL vmlinux 0xb4ebce2f nf_route EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f48b32 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xb4fd60b1 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50505d8 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb518a1b2 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xb51e9825 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb516e6ec led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5227715 failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb52c7fcc regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb52e350f ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xb535d001 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb5410943 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xb556d575 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb55a6cf1 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xb558cab7 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb55ce405 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul +EXPORT_SYMBOL_GPL vmlinux 0xb56e2a52 blk_crypto_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0xb570745c __SCK__tp_func_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb572e996 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xb582cd29 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xb585c9a0 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb57807aa i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xb58b8896 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xb5972cc4 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xb5a0261c usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0xb5a3098d devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xb5a85b8d of_alias_from_compatible EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5c03fc5 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xb5f2d2f1 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb6192915 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0xb61b5764 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb6229d97 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xb5b96f4c spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xb5c518da gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb5da9911 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xb5e6e981 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xb5eb0db2 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb5f6d1d1 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xb600536b devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xb6098d04 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xb60b9fad register_trace_event EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62cd777 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6382fe5 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb6462605 genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xb6489fa6 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xb64b7642 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xb655bf45 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb6445027 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb64ab085 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xb64c7327 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65cf33e power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xb659693a __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xb65f18d4 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xb660295c pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xb6630d60 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xb6681ff6 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb692f239 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xb6952c20 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xb67da13e vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xb6858572 battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb6a22ee0 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0xb6b05e0a strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb69ebbf8 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6c1adbb xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xb6d7987a set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xb6e3cb2b ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f713c0 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0xb70ac04c pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0xb70b18a5 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xb70cf451 inet_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xb717a9a5 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb6e9f3c7 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb6eb4a63 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xb6eb6a60 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xb6ee5463 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb7068eac devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xb72055d5 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase -EXPORT_SYMBOL_GPL vmlinux 0xb7355931 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0xb736e3ea rockchip_clk_register_branches EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb73afc40 xhci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xb7578a36 devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xb759228c acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xb75e4f08 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xb768369a sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0xb76b3d52 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb75532d6 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xb755ae0c udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xb75aaa96 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xb774ffb7 pinctrl_generic_get_group_count EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb7851cd6 perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78e787e fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0xb7982c48 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0xb7a10e5f sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb78dd39a rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xb78e1171 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xb79252e1 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xb799d5d5 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7ae6e43 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xb7ae9a94 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xb7c640f7 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xb7b368ab badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xb7bfc575 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7c49c28 iommu_present EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0xb7c93faa mtk_clk_register_pllfhs -EXPORT_SYMBOL_GPL vmlinux 0xb7d85c79 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb7e55888 __fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0xb7e76d4f ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xb7caf0d7 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xb7cb32ad dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xb7cc93d3 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0xb7cdf084 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xb7d516ca devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xb7da0e0b device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb7def645 usb_set_wireless_status +EXPORT_SYMBOL_GPL vmlinux 0xb7e97e6b pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb7ed7d2f evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xb7edab3e pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xb7f26611 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7facb64 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0xb805e37d crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xb809f01e md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xb80e18bd acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xb7f9b8ce dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xb7fdb4b6 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0xb8128df3 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xb81f8e87 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xb820e7ac dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xb8234392 iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb82c531f gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xb833092e lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xb83e485c ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0xb844eca5 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xb84eb882 scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0xb87501e9 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xb853e023 sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0xb87de2a4 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8842525 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89b0a39 usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a00dbb iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xb8a5352c key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb8ab62a2 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8c91c50 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb8c01f53 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb8cb6751 vcap_tc_flower_handler_arp_usage EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d360db ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xb8de59a0 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xb8e0c5df dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xb8dd0c91 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb8e5c923 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb8ea4998 bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f16ebc fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb8f7f138 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xb8fb5a9c tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb90cda1c phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xb90e7f70 irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb91e2f98 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb91e52de usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xb91f975c device_rename EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb964bf4a ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb951816b powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb96a2515 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xb96e63ee tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xb975c014 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xb97aec75 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xb97d13a4 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xb980dc42 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb980e20e preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0xb9b26a82 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xb9b3e988 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c4b60e pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9dfdf54 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0xb9ec4c19 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xb9ecbfd4 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb9efd823 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xba0556c0 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0xba1c9863 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xb9d7de36 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xb9f62b9f sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xba05d147 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xba169797 device_link_del EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba224ac3 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3f41b9 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xba44d4da irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xba48c08d ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xba4c37bc rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xba4eb143 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xba571836 genphy_c45_read_eee_abilities -EXPORT_SYMBOL_GPL vmlinux 0xba57e94d inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xba5a350b pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0xba5a3d4f xhci_stop -EXPORT_SYMBOL_GPL vmlinux 0xba5efd18 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xba32881e skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xba334eea nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xba3e68e3 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xba3f707d wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xba45c682 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xba5c34bf debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0xba6eb67d __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xba723ffe ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xba7e8c7e tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0xba865e9c user_read -EXPORT_SYMBOL_GPL vmlinux 0xba89b2ca mtk_clk_gate_ops_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0xba93f7b9 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0xbaa0bda4 get_device -EXPORT_SYMBOL_GPL vmlinux 0xbaa4103e sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xbaac0404 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xbab76255 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xba75ee87 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xba7f4bb1 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xba93eaa3 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xba96eed1 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xbab5fe80 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabf4219 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0xbac74178 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xbabed63b __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0xbac94448 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xbac95420 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xbad1ca3b perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xbad59fef devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xbad4b339 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xbad81f39 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xbadbbae3 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbadc2258 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xbaf5d387 usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb00a729 clk_hw_unregister_composite EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb159ca7 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xbb1a331a sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xbb1c69ff regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xbb1c3987 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xbb207209 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb258c68 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xbb29c0cd dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xbb36d5ad fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xbb36ecc2 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xbb2ae2c9 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xbb33cf02 of_request_module EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb45c820 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xbb5e6e21 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xbb6025ec __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xbb416e29 tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6d877f sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6fe4c1 elv_unregister EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb745ef7 ahci_shost_groups -EXPORT_SYMBOL_GPL vmlinux 0xbb7c9da1 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb78e3c4 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xbb87b75a mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xbb8ccc82 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xbb9a812c sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xbb9d50e3 pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xbbaabdbc validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xbbb764ad pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xbbbb35c6 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xbbcdb421 usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xbb7f3324 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xbb83ce2f gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xbb934aa4 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb9d8cb6 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0xbbc9d7b4 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xbbcbe985 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbed243d phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xbbf3b047 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xbbe98af6 sprd_pinctrl_remove EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config -EXPORT_SYMBOL_GPL vmlinux 0xbbf985ea device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xbc011208 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xbc1428a4 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbc24a427 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xbc052d4f tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xbc08f8ec md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xbc14bdc7 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc31ec09 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc4f7ee4 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xbc5a5aa6 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xbc436969 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xbc4cbd5b mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xbc501e1a fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xbc55cbf3 of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary -EXPORT_SYMBOL_GPL vmlinux 0xbc63acac ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xbc628b19 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc70523f xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xbc9268d6 __traceiter_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xbc959fe0 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xbc79374e devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xbc79e9ce net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xbc85fb73 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xbc8e7584 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xbc9a022b ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbc9ac7ff task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbcb81494 devl_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xbc9ca256 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xbca02394 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0xbcabb819 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xbcb115e7 led_put +EXPORT_SYMBOL_GPL vmlinux 0xbcbd9fdc devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xbcbecf17 genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcd1caee spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbcc6c89f badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xbcd5e77c dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcdddff2 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xbcecc2ad kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0xbcedfde8 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xbcf11364 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xbce59061 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xbcf12724 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf23c80 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbcfa66ee __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xbcf9c5da au_platform_setup EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd0f7fff vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0xbd277914 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xbd29cd2f pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xbd311bd5 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xbd0a4bcc usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xbd16944e __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd5c1113 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xbd70a824 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xbd710374 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xbd43c97d regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbd47edd4 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xbd4dc474 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xbd4e9605 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xbd5c5304 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xbd6b91ba vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xbd6ec873 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xbd6ef9c8 __xenbus_register_frontend EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd86909d bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xbd7e7908 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xbd8dadf9 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xbd8e0d3c sampling_rate_store EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xbda515cc xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xbda78987 clk_hw_forward_rate_request EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdd24435 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xbdd683f3 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xbdb4466d __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xbdc508a7 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xbdca1314 usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbde0cb5e to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xbde370e7 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xbdee26e5 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xbdef61e2 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xbdefff35 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xbdfb5118 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xbe0f3951 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xbe0fa395 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xbde614e9 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xbdedd8c3 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xbdfb1052 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xbe0bb41a dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll -EXPORT_SYMBOL_GPL vmlinux 0xbe1dbc01 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xbe2d2251 devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xbe325781 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xbe4cae66 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0xbe57621f ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xbe1d0b97 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xbe30947e mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xbe3eb7eb phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0xbe43ede5 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbe449721 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xbe490ab0 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xbe4adc25 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xbe597b91 priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0xbe5a6145 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xbe608cc6 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6c0354 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xbe732be2 vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0xbe748c6c lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xbe7a147b i2c_acpi_new_device_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xbe82bb76 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xbe844967 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xbe70e97b tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xbe7f2111 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xbe938818 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe98ec55 devm_blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0xbe9920bf pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbead4e73 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xbeb7b7d3 __traceiter_rwmmio_read EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbed546c1 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xbed65fd8 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xbedd6b58 phy_get_rate_matching -EXPORT_SYMBOL_GPL vmlinux 0xbedf7518 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xbeec1704 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xbeec64ef ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL vmlinux 0xbeed0661 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xbef07b42 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xbf037960 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xbedb9ebd rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xbef1c441 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xbefb3147 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1f98cf phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xbf055d78 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xbf0686b2 icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0xbf0ac78f devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xbf164213 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xbf1de9ad dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xbf2df345 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf39841a of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xbf3ce445 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf53d5be devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xbf5e3c9f tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0xbf5f0d9f gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xbf73d15a __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xbf9bace4 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xbfb61871 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xbfb7c655 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xbfbbace7 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xbf500593 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xbf5965e1 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xbf6b6aab led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xbf6ec8b8 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xbf78d8e2 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xbf79ee3c raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xbf7e16da add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xbf969a1f rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xbf990088 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xbf9c3f4b gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xbfa4b99e of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xbfa60352 pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfc383f2 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbfde8bd5 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xbfc44337 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xbfc4f592 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfea7f1d xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbffd3638 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0xc002bd55 regmap_attach_dev -EXPORT_SYMBOL_GPL vmlinux 0xc0073751 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xc008a46b of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xc022438c imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0xc03a3f18 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc0464c97 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xbff297bb nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xbff5ecbf mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xc0010569 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xc00685d2 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xc02822ac regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc02b11e5 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xc034773d phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate -EXPORT_SYMBOL_GPL vmlinux 0xc055d240 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xc056479e iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xc05725e8 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xc0583825 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc05885f9 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0xc04c7e04 devl_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc06826ba tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xc0617f31 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xc0628446 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xc06676fc mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xc071b3c5 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xc077ec6b ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xc0819052 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xc072eb0b led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xc08646ee badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xc088f204 devl_params_register EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0934624 scmi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base EXPORT_SYMBOL_GPL vmlinux 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0aec531 sysfs_add_file_to_group EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0b2efef pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xc0bf25e5 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xc0d3acfd regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc0b8565e dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0be5b77 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0ea2529 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc0ee5c18 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0fef643 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xc0f2f29c ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xc0f5ce0d kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xc0f772a9 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xc1081e72 pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc115aa11 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xc127255b acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xc12a2e76 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0xc12ca5c5 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xc140e9be pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xc14bdd74 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xc10fd746 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xc1182aec crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xc11a710b power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc12554db vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0xc14f7616 __SCK__tp_func_rwmmio_post_write -EXPORT_SYMBOL_GPL vmlinux 0xc1524904 acpi_device_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xc160b752 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xc167e4ff i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0xc16976fb tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xc156cd82 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc1594d11 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0xc16923cf badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xc16e752c fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xc170fd28 device_add EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc17e9a10 rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xc18460d4 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xc18ee617 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xc18c18f7 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc19572cb __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0xc19b2437 __tracepoint_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc1a66d67 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xc1a8aea3 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0xc1b00d85 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xc1bc8d4b ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc1c8b75f mtk_clk_register_gates -EXPORT_SYMBOL_GPL vmlinux 0xc1ca8eb9 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xc1d158a4 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xc19cb5c3 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xc19e1925 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xc19fff37 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1ac3d59 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xc1ce8e03 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL vmlinux 0xc1d3f2ce __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xc1d6c74c rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1e18092 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1e6f9ea crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc1e88513 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xc1f13467 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0xc1f6ea22 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xc1fbeaab devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0xc204f417 rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xc20916aa register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0xc20c3a39 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0xc2104038 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xc1f4a2fe proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xc207fb92 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xc20f78e6 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc211b869 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xc21765db mtk_hw_get_value EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22cb285 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0xc232e1bc blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xc23679d9 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc23ae458 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc23dc090 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xc245e798 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc24c3d16 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc247d106 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc263a522 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc26736df blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26980c1 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xc26d5898 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc2706ee4 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xc2765306 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xc27ed15c crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xc2853595 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc2872e5d register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc29059f2 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xc293ee77 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xc2955cb0 of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ac4aff of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xc2ae8dfa cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xc2b95293 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xc2bc4dcb inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2c2efe7 iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0xc2c57e63 nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0xc2cc653e fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xc2d147eb pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc2dd14b9 mtk_pinconf_bias_disable_set EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e8bd59 io_uring_cmd_done -EXPORT_SYMBOL_GPL vmlinux 0xc2ea1aba wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xc2fc334a transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc2fdd68b badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0xc2fe69f7 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xc305e640 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc310c453 rz_mtu3_shared_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc3119d9b ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc31bc750 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xc31db993 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xc3298d19 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xc3336b06 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xc2df7460 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc31d9777 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xc337b5b5 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3389d42 devl_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34a3609 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xc3667a28 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0xc36c2797 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xc36d1ca6 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xc351f10f tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc3632cf9 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xc3647fd4 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc3679af2 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xc3689f7a wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc378b6b6 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc390d66c event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xc387c050 usb_of_has_combined_node EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc3a89da0 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xc3b2d7f7 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xc399947f thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc3a5452f led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xc3a5a944 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax -EXPORT_SYMBOL_GPL vmlinux 0xc3b7f213 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xc3c299e3 kvm_get_running_vcpu EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3d02202 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xc3c56dab led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xc3d36bf1 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f96249 acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xc3fee537 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0xc41cdc52 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc424b8c6 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xc3efb632 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xc3f41642 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xc4002197 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc40afb04 mpc8xxx_spi_rx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc449aeef usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0xc44a5dee wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xc4280f34 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xc42dc9f8 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xc4339058 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc43bf614 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xc44928b0 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc44ccdae netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xc45090c5 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xc452abaa __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xc4547b79 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xc44b2888 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xc44c7829 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc459fa7c mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xc45b7789 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0xc4628c98 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46a2548 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xc46c6021 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc474a404 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0xc47ee012 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xc492e271 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xc49942d7 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0xc49b87ac dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xc4889eeb ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xc4917512 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xc49c3bba ulpi_viewport_access_ops EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4b08737 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0xc4ba9aeb zynqmp_pm_fpga_get_config_status -EXPORT_SYMBOL_GPL vmlinux 0xc4be46d1 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xc4bb5a5e power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0xc4d5e0e8 acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4e86b68 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xc4f0436b usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xc4d6a8dc root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4db11fd extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xc4e3ccfe devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc4e4b6f6 dpbp_enable EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f21f9c devm_thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc4f9d6af espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xc4f70415 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5085fb7 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc5093c54 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xc50f0ee9 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc514021e vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc5163e1f tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xc529dae6 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xc52d92a1 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xc532e814 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xc53d79e7 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xc55475a1 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xc51ab85f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc52c1c1a mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xc54ebfb7 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc5741866 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xc572446b vchan_tx_desc_free EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc59f29d5 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a5ea51 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc5c755ff em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0xc5d4fc27 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xc5a8424d rz_mtu3_16bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0xc5bde0ef tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xc5be51fe usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xc5c0c88e rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xc5c49c48 set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0xc5d9a126 unregister_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0xc5e4d1ec blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0xc60a44e5 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0xc611d2eb dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xc5d9ea74 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc5e432f8 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5e544bd msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xc6042890 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6231be2 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xc623bcc6 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc62b382b pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0xc636d60f __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc6393ac4 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xc645e06c acpi_dev_get_memory_resources EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc65a2970 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc661bb71 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66e451c platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xc66efa60 skb_segment EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc68a637c sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc691594f ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xc6952cb4 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xc69760c0 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a019f8 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xc6a16394 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6b4c6c4 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xc6ac66d7 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc6afe31d usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0xc6bd5117 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6cab4de bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6d1c2d8 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xc6bf4261 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6cf91dc ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc6dabdff crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6e5c1aa devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0xc6f1473f vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xc6f57d31 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc6eeff31 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xc704c969 genphy_c45_plca_get_status EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc7094570 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xc70afe61 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0xc71557ba ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc7136af9 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0xc716a650 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc733f8b5 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xc73ff2af invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xc71d4d92 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xc7258b3a __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc73a7d64 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc73fb2f4 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xc7455557 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xc7462f42 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xc7468ffe vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xc74a04d4 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0xc74c07ce cppc_get_epp_perf -EXPORT_SYMBOL_GPL vmlinux 0xc7556d75 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xc76c76c8 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0xc7718d2c shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xc753381f kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xc757329b synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xc75a05b3 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc76523f5 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xc7658996 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xc77249df regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xc77e79b0 strp_init EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78e82ec usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xc7961161 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xc7a16d3e of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc79c6d98 i2c_add_numbered_adapter EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a8b00b em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xc7ab67fc device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7aba6d9 clk_register_composite EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7d9d53c power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc7df174d __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xc7e5c73b fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7f8160b of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc7f04f58 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xc7f1ab1a unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc7f995a0 pci_p2pmem_free_sgl EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc805cf32 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xc8167954 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc80cebd6 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xc8157b94 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xc816a467 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82ba746 fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc841a4ae bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xc848e9b8 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0xc8572353 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xc82d3996 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xc83349ac mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xc856cb5b call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85bd429 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xc8677dc5 vcap_del_rule -EXPORT_SYMBOL_GPL vmlinux 0xc86b836e otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xc869bbb3 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc88c87a1 ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xc89ff2df dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xc8a39bee ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xc8aadac3 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xc8b51388 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xc8cc707b fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xc8d851eb edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xc88080d6 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0xc8872423 devl_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xc88ddaa3 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xc894253f pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc8aeaef1 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc8b01b62 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc8b2baa6 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc8d075ca pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xc8d2721c metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc8d3d900 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc8d57480 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e8eb29 fsverity_verify_blocks -EXPORT_SYMBOL_GPL vmlinux 0xc8f404b6 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc8fdcb75 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xc8ef7ab5 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xc8efbe26 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xc9049185 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0xc905402b log_write_mmio -EXPORT_SYMBOL_GPL vmlinux 0xc909d200 devm_mipi_dsi_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xc913eda6 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xc91b38fd ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xc91bb50c perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xc91c9c13 regmap_read EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc92a7e14 ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc933a902 of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0xc93ae625 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xc93c0c57 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc94a22bc clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xc94d2381 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95d3091 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xc960e7f3 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xc95ca3a8 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0xc9615bea rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc963d2a1 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc96427e5 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc972d441 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0xc977d1fa xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xc978c2f8 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9824234 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc99bbbd1 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xc99e23db devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0xc99eacf6 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xc9a27115 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xc9a75b5c task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xc9ab8de3 acpi_bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc9ae299d bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xc9afe936 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xc9880ff8 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc98dbbef __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0xc99e1d89 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xc9a580fd ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xc9ad9ae2 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xc9c9d1dd pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0xc9eaca31 ping_hash EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f1ffb3 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xc9f52c70 tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fc2ecd xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca05c1ca mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xca0fc1f6 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xca280938 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xca372e36 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xca200a7d device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xca209301 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xca24d6ec nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xca33350c espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xca37d8fc clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca4e291c pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca5470df __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xca65e273 mtk_clk_unregister_factors -EXPORT_SYMBOL_GPL vmlinux 0xca71387d pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0xca72e91c __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xca7b7160 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xca5455c9 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xca60796b devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca8bbd68 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0xca8bd3da pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xca94e80e spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xca7fe857 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xca8659b8 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xca8aa95c __auxiliary_device_add EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9c6f0d i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0xcaae2d6c uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xcaaf4691 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xcaa1f631 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xcaa3ec07 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xcaa8cf70 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xcaaee429 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xcab250fc devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcac8ea02 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xcad2b76c imx_clk_hw_pfd -EXPORT_SYMBOL_GPL vmlinux 0xcad3fa94 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0xcadfa50c __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xcad88f18 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcae09710 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xcae0d251 __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcae993f7 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xcaea9737 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf58e77 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0xcafc7d67 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xcb0530be fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0xcb1701e8 crypto_akcipher_sync_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xcb197fed rz_mtu3_16bit_ch_read -EXPORT_SYMBOL_GPL vmlinux 0xcb1a1d2d __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xcb1cd6d6 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xcb216f84 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xcaf2f916 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xcaff5b9e sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb0ef90c led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xcb149080 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb30b996 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb430435 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xcb44aa5c devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xcb4fb22b debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb5c489d edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xcb6431db dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0xcb64b513 irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0xcb8cb8ab regulator_irq_map_event_simple -EXPORT_SYMBOL_GPL vmlinux 0xcba31040 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xcbc57f64 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xcbd10880 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xcb5d8509 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xcb626205 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xcb6429a9 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xcb6f3cff adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xcb83a204 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xcb90e8f1 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xcb9a73a4 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcbb8c215 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe5df68 pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0xcbeb277c power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xcbebfca0 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcbf449b8 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xcbed56c7 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbef6691 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xcc0dca80 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc1478e5 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xcc1a1f9f bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc23d941 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xcc37c5b2 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc4c2d16 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0xcc5391ec dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xcc572afd inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xcc5e6306 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xcc614f73 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xcc66cd3a ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc89647a edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xcc90fffd irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xcc4b3728 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0xcc508514 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xcc54579b device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xcc56a294 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xcc676cfa icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc7179f4 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xcc794b9d of_irq_to_resource EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc95aaf7 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xcc97bb40 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc9b3272 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xcc9dcd78 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xccabcb6d blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccb24ff6 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xccb0ebbc debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd0ce97 blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0xccd11720 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xccd08d37 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xccd0f6a5 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccd91a9c mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xccee494c rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xcce1f5ba usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xcceb1a58 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xccf33cc1 rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccf68879 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xcd0be490 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcd0eca5e gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xccfd38e2 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xccff5dae usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xccffce41 split_page +EXPORT_SYMBOL_GPL vmlinux 0xcd00d8d2 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xcd15e2c6 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xcd188e0d ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0xcd1c1a53 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xcd1d51c0 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xcd20a2fb phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd405519 io_uring_cmd_do_in_task_lazy -EXPORT_SYMBOL_GPL vmlinux 0xcd4e06a3 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xcd4e1ccc clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xcd58276e pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0xcd5d4939 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0xcd69b5e0 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0xcd6d1109 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xcd401bcf ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd78bf8a __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcd907c0b adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda1c641 policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb83725 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xcdbdd2f6 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xcdbebea5 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdcd7dc8 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xcdd89f54 fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcdf264cc virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xcdfbe0ad fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xce01a2f4 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce05c24b __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xcdecd5b2 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xcdee2ce9 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xcdf58068 _copy_from_iter_flushcache EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory EXPORT_SYMBOL_GPL vmlinux 0xce0e789f srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xce0eb74b scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0xce13f1b9 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xce1e99e0 device_find_any_child -EXPORT_SYMBOL_GPL vmlinux 0xce28fe13 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0xce2ea96b bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xce0ef8a0 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xce0fb05e thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xce162a5f devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xce1de820 device_register +EXPORT_SYMBOL_GPL vmlinux 0xce2aa4f1 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce373a74 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xce3ea276 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xce3d6f50 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xce520e1c cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce5d02c1 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xce61e924 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xce67fafa device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xce6894e9 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce6de2c5 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0xce7ce79f iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0xce81735b alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xce85a546 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xce6e56fd of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xce908c05 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xce9cd447 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xcea4cc91 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs -EXPORT_SYMBOL_GPL vmlinux 0xceb1348a badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb63601 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xcec182df shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xced6aa8c spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xcedb51eb of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xcebf6ec7 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xceca31f5 rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xcee8a1a9 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xceeb5b8c blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0xceeba223 regulator_get EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcf01b9b7 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xcf1a1f81 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0xcf41cbf2 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xcf6a2ef6 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xcf84a142 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xcf8b8e84 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xcf9977d9 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xcf9ee73b devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xcf9fd6f3 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xcfa0e67d dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xcfaa07df fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xcfbc7c88 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xcfc0f0c7 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xcefdc27b __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xcf153d5d ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcf1cb943 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xcf2ec2b7 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xcf3483de led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xcf42a650 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xcf59ec30 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf603727 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xcf6a6440 devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xcf7d8eea clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xcf8fb35a irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xcfa0cf1c __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xcfa90a08 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xcfaad54b crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xcfac8dc9 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xcfad3ce7 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcfb6071f of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfceb2d1 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xcfd000b3 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xcfd30430 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xcfcbea6b __phy_modify EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfef7b10 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xcff0f0cb spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcff6a477 debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0xcfdd32d9 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xcfe8ce67 cdx_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xcfe8ea3b unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xcff24cb0 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xd00c198f devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xd0150514 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0xd01e4684 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xd0008d45 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd0074fd7 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xd01a7cf2 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xd01cba26 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd033e79f ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xd02bc2b1 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0xd043a3c8 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xd0408017 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xd0450272 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd04eee59 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0xd05ff796 pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xd0603ee0 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd04c6f62 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd04f66a8 hid_bpf_connect_device +EXPORT_SYMBOL_GPL vmlinux 0xd0507839 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xd057d7e6 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd05ad2f8 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd061fddd pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd0778ab9 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xd083f6ab ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xd086cbf3 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xd097b2e4 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0xd06beaa8 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xd085060d devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xd085ae33 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xd0872711 fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0a6ef85 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xd0aca4a2 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd0bc1dc0 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xd0bf3ed5 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c189a4 nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0xd0d92b54 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xd0d90410 blk_crypto_has_capabilities EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0dc0cd8 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xd0dfbcd3 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xd0e36ec4 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd0e48684 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xd0ecfe76 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0fe2631 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xd10dbd42 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0xd10747e6 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xd10e2609 crypto_akcipher_sync_prep +EXPORT_SYMBOL_GPL vmlinux 0xd12112d9 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xd12eb6bf skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xd13031c3 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xd13b308e vp_legacy_set_status -EXPORT_SYMBOL_GPL vmlinux 0xd141f710 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xd13d1dd9 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xd14247ed invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd1523622 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xd1527878 bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0xd1528adb fsl_mc_object_allocate -EXPORT_SYMBOL_GPL vmlinux 0xd1584302 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xd150fdd5 blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd1677f31 crypto_akcipher_sync_post -EXPORT_SYMBOL_GPL vmlinux 0xd16956a8 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xd16ceb7c dma_resv_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd179bb49 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0xd196b978 sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xd19c3392 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd1a1de6e power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd16f00cb sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xd1899fc0 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd193b727 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xd195beb3 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1b1eb16 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule -EXPORT_SYMBOL_GPL vmlinux 0xd1c45fbd rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xd1c65e0e icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xd1c9d036 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1ee2876 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0xd1f1f244 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xd1d6ee5b __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd1eadc20 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xd1ef14a1 pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd2008f44 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xd20c4679 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xd20f9f6a md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xd2106110 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd216d1a2 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd23de84e iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0xd242cf7d xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xd243056f tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xd2459481 cdx_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xd222db92 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd223df22 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd22ef4a9 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xd233de08 dm_put EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd24f001a pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xd252a79c scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0xd250c298 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xd2535e14 dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd271f7c4 genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova -EXPORT_SYMBOL_GPL vmlinux 0xd27f121e trace_array_put EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd27fbafd gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0xd289e48e k3_udma_glue_rx_flow_init -EXPORT_SYMBOL_GPL vmlinux 0xd291d190 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xd29885fc devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2a1f263 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xd2a6277b fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xd2a84019 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xd2a00f4c iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0xd2a0aeaa pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b13939 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xd2b40441 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xd2b65487 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xd2d54a65 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xd2b2e42f kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd2ba9216 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2c09d29 msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0xd2c3bc11 phy_set_media EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2dda563 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd2e1844e skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2e68f2a __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd2f16c9f xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xd3062172 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xd30fbfc2 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0xd31106c9 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xd2fed2c2 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xd306d94c usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xd3076d51 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd30966c2 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd30967c1 pci_user_read_config_byte EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd32291dc virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xd33ac486 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd32e3989 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xd3385597 fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd343dd9c dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xd3461e62 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xd35256f4 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xd3535047 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xd33f3414 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xd3442a61 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd34ffec3 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd3579661 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd35bb407 regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd3632cea alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xd355f797 ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36b15df led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xd36fe26c gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xd3716fab __fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xd372e557 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xd36e8feb fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd372cbe6 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xd372fad6 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 -EXPORT_SYMBOL_GPL vmlinux 0xd37dc21b __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xd385f125 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xd37f0530 uart_set_options EXPORT_SYMBOL_GPL vmlinux 0xd3901d33 acpi_dev_resource_address_space EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a7b7c4 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xd3acd1c5 power_supply_charge_behaviour_show -EXPORT_SYMBOL_GPL vmlinux 0xd3b3298d __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xd3b6703b usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xd3b7fb52 rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0xd3bacb7b phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xd3c0aaa7 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xd3eaecb4 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xd3a2587f ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xd3cc1e31 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd3cd4794 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd3e13434 pci_find_doe_mailbox EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f2f3a8 regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xd3feafe3 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xd3fb7b42 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xd3fff0a6 wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd407417e rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xd40c459b virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0xd41148c6 class_register -EXPORT_SYMBOL_GPL vmlinux 0xd41c531f platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xd41f4758 xenbus_setup_ring -EXPORT_SYMBOL_GPL vmlinux 0xd4232f6d pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xd409afe8 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xd416104a devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xd4199291 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xd424b2b8 phy_exit EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42df7d6 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xd42cf881 devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd449c324 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd4317e6f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xd4339a28 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xd4342e63 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd43b573f fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xd43bd02d irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xd43c46b6 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c5b0b sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd450bfdf sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xd453990a regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd47548fd fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xd48456f9 devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0xd4766d5c of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xd47c5952 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xd4893466 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0xd48a9773 drop_reasons_register_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd48be6b1 da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd49cabf3 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xd4ab0019 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd4a7ebeb clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done -EXPORT_SYMBOL_GPL vmlinux 0xd4b7b9fa get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xd4b935ed gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4bb42b8 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xd4bd89b3 usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c7e162 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd4c8a124 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xd4cb75a2 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd4c6ff40 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4cdd27d tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xd4dbf609 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xd4e3b3c6 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xd4d3c19c pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xd4e1835b list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4fe045a alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xd5267db5 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xd509a4e0 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd515555f pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xd51762be tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xd52e3c5d __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd540ba7e skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xd533330f spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5374e3c inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xd55895bc vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55cddda xdp_features_clear_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0xd57d7827 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xd579b8e9 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xd57b96a1 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd590cb09 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xd58c8fd0 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5aa02b7 __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd5abb3c9 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xd5afa936 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xd5ba7e0c rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xd5cc1760 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0xd5e4648a __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd5ebf9b1 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd5aca1d5 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd5ade454 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd5b18051 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd5b19472 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xd5b98b2e ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xd5bc350e file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xd5cd0a50 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xd5cd53a2 fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xd5e02829 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xd5f5865d __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xd5faa0e2 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0xd604ad68 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xd60d5eef gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0xd61d89ad i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xd6075da4 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd60bf8a0 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xd60d162c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xd61ea631 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xd61fb282 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xd622e3fa component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0xd6251353 ftrace_set_filter_ips -EXPORT_SYMBOL_GPL vmlinux 0xd62e239b vp_legacy_get_status -EXPORT_SYMBOL_GPL vmlinux 0xd6361021 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0xd6388d57 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xd63910fc ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd6274be5 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xd63cb46d skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd651209d crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xd657b0c6 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xd6588867 usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xd66273c5 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0xd665631e follow_pte -EXPORT_SYMBOL_GPL vmlinux 0xd666f589 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd6518703 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xd6523098 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xd6582de0 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd65ec4d4 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xd6620657 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xd66ffac0 vcap_set_tc_exterr EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6752302 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xd67b86a3 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xd674b579 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xd678ae2c kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd6853130 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xd68bbb45 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xd690c87b led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6a8c876 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd6a9775e __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0xd6ac59e1 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xd6cd39e1 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xd6ca049b mtk_mux_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6edf1d0 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xd6fbda18 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd70047a9 __nvmem_layout_register -EXPORT_SYMBOL_GPL vmlinux 0xd70e79f7 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xd71c7d7c thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd71ea161 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xd72361a3 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd6ddc98f of_css +EXPORT_SYMBOL_GPL vmlinux 0xd6ea35f5 dev_pm_genpd_synced_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd6eba4b9 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xd70bac11 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xd70c3173 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd7108ed9 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xd713e601 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd714217f bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xd71c5fd6 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7204c42 power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7285112 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72985ad wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd72fecb8 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd732aa05 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xd733f086 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd73383b4 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd7341a3b static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xd73d3c35 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xd74580da sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd74f0d4f __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd75c7ade l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xd75e9f65 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xd7601e93 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd7665279 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd768e653 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76fa8e1 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0xd773a63e blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xd7814cf9 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xd792aa54 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xd7a0c5f5 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xd772983c xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xd77b2532 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd78367c0 pci_epc_bme_notify +EXPORT_SYMBOL_GPL vmlinux 0xd78d74eb sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xd7b07c9c tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xd7b2cbf9 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xd7c478e3 device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7cd28f9 ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d194f8 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xd7d70771 vring_notification_data EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7ec72d2 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xd8091666 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xd8122b83 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xd7deaddf tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd7f702fc sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xd800f719 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd819faf1 pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0xd823d36d __SCK__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xd82f1cad kiocb_modified -EXPORT_SYMBOL_GPL vmlinux 0xd8370acd devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd845629a regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd828f4fd rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd8341ac5 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0xd8368393 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8598097 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xd86de73d fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0xd870dae8 devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd87c9fde of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xd8533461 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xd862c2ea ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd8667819 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xd87738fc device_find_child EXPORT_SYMBOL_GPL vmlinux 0xd87cb8eb dma_fence_unwrap_next -EXPORT_SYMBOL_GPL vmlinux 0xd87e0249 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8811728 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xd885bf4d exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xd88a2432 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xd8a2db1d irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xd8c23ffb blk_rq_poll -EXPORT_SYMBOL_GPL vmlinux 0xd8cdb6d0 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xd8d3e197 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd8d631ed acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xd8a014e8 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8a852bb skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xd8aedbe4 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd8b4f66e acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xd8b50481 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xd8bdba6c tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd8c37f07 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8dba5bb trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xd8e3833a mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0xd8ee440d vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0xd8ec36c6 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd8f338e3 mtk_pctrl_show_one_pin EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd8ffb628 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0xd9007f4d kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd912fa5e ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92b0944 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xd92e8f90 pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd949a981 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xd9562d12 thermal_zone_get_trip -EXPORT_SYMBOL_GPL vmlinux 0xd963c28b acpi_dev_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xd968e3ae rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xd937cf1e acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xd9460b21 mtk_clk_register_factors EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd98d9768 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xd97141aa xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xd9783f2f usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xd97c832d divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd97e93b8 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xd9845733 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xd98eb734 pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd9993e78 ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0xd9a0d8bf fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xd995056f watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd9a58deb dsa_stubs EXPORT_SYMBOL_GPL vmlinux 0xd9b19aa5 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xd9bb2c13 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd9bd8950 elv_register -EXPORT_SYMBOL_GPL vmlinux 0xd9d5844f ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0xd9d5e762 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xd9d61984 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xd9dab097 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xd9bb93cd __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xd9e822d5 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xd9efcf66 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xd9f71e42 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9e65843 cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda01ac7b user_update -EXPORT_SYMBOL_GPL vmlinux 0xda03133b pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xda08cddb dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xda021def ti_sci_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0a470c iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xda149364 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xda12b46a kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xda1831f9 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xda2279c6 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xda25c315 tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3427f9 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xda3a2900 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xda3e2bc5 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xda3efeea icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0xda428c3c sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xda42fc27 gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xda4e8eb6 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xda621d06 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xda6e05b3 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xda706b2e dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0xda74ddf8 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xda71ead9 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda824136 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xda8a4ce4 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xda849819 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xda86e869 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xda8d925c of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xda8db26d debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda8e91e6 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xda9307c6 iomap_invalidate_folio -EXPORT_SYMBOL_GPL vmlinux 0xda987ad6 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xda965d38 hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa300e9 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xdab3acc1 devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdabc9646 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xdac6d31e ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xdad76656 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xdae76216 blk_crypto_profile_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdaecdfa0 sync_blockdev_nowait -EXPORT_SYMBOL_GPL vmlinux 0xdaf1a628 pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xdb050f0b pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xdb096b3e key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xdb0ea706 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xdb1352fa sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xdb1ab1dd nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xdb1e069d rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xdab87d09 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xdac48a98 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xdad5d448 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdadc4b5f regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xdaf2ed5c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xdb05fee1 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0xdb2289e5 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xdb3ccf3d con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xdb48f949 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xdb4f576f hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xdb343b9f ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xdb3ff11a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xdb418fa3 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xdb5354bd pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6d2d1d spi_async -EXPORT_SYMBOL_GPL vmlinux 0xdb8952f6 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xdb8a0da7 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xdb6a4f37 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xdb7278ee dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xdb76c51d __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xdb7d9540 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xdb7f68f6 irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8b741d battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0xdb931d6d usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xdb980a89 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xdba08b49 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0xdbb059db mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0xdbc6bcf6 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xdbca7f30 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb8c732c devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdb8f97a2 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xdb95f40b mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0xdb9d54df sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xdbaa3be2 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xdbbdf4d5 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0xdbc33910 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xdbc72976 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xdbcb2e44 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xdbd9d9a0 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe11054 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xdbdc3e45 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbf10336 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfb5b5f devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xdbfd6562 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xdc02243b devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0e8a99 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xdc131b04 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc0af4ce vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size -EXPORT_SYMBOL_GPL vmlinux 0xdc200631 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xdc214485 cdx_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xdc298b95 devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xdc32a52c __traceiter_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xdc331897 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xdc3e7dc5 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdc1c5130 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xdc3846ca __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xdc389a6e dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc4683ed unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xdc4771a4 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xdc4b0440 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xdc575da8 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xdc5a695d i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xdc5de028 vcap_tc_flower_handler_ethaddr_usage +EXPORT_SYMBOL_GPL vmlinux 0xdc64fe52 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc74fc07 phylink_connect_phy -EXPORT_SYMBOL_GPL vmlinux 0xdc7659c1 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdc6b9b3c kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xdc6ddad6 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc706b3f kvm_vcpu_kick EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc9132e5 usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0xdc91485e unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xdc850530 tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9f6bca __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca56bd1 vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0xdcace563 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcaa7667 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL vmlinux 0xdcc87e31 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xdccb5d40 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xdcd50083 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xdcb5e0a4 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xdccb4c7a rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xdce4ba35 power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0xdd06b24c pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd07ec05 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xdd0a63ff sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xdd178478 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xdd211bc0 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xdd4e9449 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0xdd51e159 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xdd08d1c6 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xdd0ebb0c fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0xdd138471 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xdd145a37 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xdd254d9a sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xdd261966 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xdd2a9a42 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xdd31bb3e fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xdd32f282 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdd33308c wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdd3391a6 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xdd340ddb pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd37bf28 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xdd386bbf mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xdd4f4b3e fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xdd571b9b debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xdd5daeb0 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xdd5f7ab9 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd6c9a70 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xdd73fa7b balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xdd7ef2e8 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xdd689c40 crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0xdd817e7b ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd87cbcc bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0xdd97d75a acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xdd985f76 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xdd99473a add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xdd9f5df2 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xdd8d8679 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd920b57 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xddaf3639 pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0xddc84c1b kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xddd40743 mtk_pinconf_bias_disable_get EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield -EXPORT_SYMBOL_GPL vmlinux 0xddda8da9 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0xddda1a59 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xdde8ae21 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xddea3280 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xddeb5432 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xddf1c847 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xddfa54d2 fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xddfe1ad7 __SCK__tp_func_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xde039eeb pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xde070f6b spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde132a6e cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xde1bb506 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xde2425c7 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xde270255 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xde0fa7b0 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xde15d5ad iov_iter_extract_pages +EXPORT_SYMBOL_GPL vmlinux 0xde16b3b9 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xde1856f9 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xde1afe35 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xde1f6ca5 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xde2e19a1 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xde2fac8b cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde36b1d8 pci_p2pmem_publish -EXPORT_SYMBOL_GPL vmlinux 0xde398a6d gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xde4aed1c led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xde52a59f usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xde52dd21 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xde3342d0 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xde3488ff ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xde4e5239 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0xde5574cf x509_load_certificate_list -EXPORT_SYMBOL_GPL vmlinux 0xde6a27cf usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde728970 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xde935fd3 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xde7556cd acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xde7f7330 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xde970bdd rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm -EXPORT_SYMBOL_GPL vmlinux 0xdea0fd67 ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xdeacdf78 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdeb6b7f4 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xdeb7fad0 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xdec0872f rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xded3d448 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xdedd822e pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0xdeb04fee regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xdec6d779 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0xdece1f52 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xded57af1 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xdeec8472 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xdeef3ab3 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xdef042be netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xdefb7354 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf01e918 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xdf03b13d i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xdf083096 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xdf05ec96 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf08de6a mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf10f371 register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf291ecc tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0xdf30cc90 usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack -EXPORT_SYMBOL_GPL vmlinux 0xdf3fb536 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xdf348f85 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xdf37b050 __blk_trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf4d7c80 fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xdf54608b regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xdf51cdc8 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xdf529f0f thermal_zone_device EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties -EXPORT_SYMBOL_GPL vmlinux 0xdf59ece4 fsl_mc_obj_open -EXPORT_SYMBOL_GPL vmlinux 0xdf5d84c3 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xdf70d35c skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xdf716c60 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0xdf83edfa dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xdf89bbec dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0xdf8f90ce regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xdf914309 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xdfae37a7 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xdf60b5a4 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xdf6cf55f power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xdf829b30 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xdf849215 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xdf89f7a2 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdf94371b regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xdfa4671f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0xdfb3fbe0 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfccb02f of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xdfd26c60 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0xdfdaa1f2 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xdfdccba0 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xdfeebfdf acpi_find_child_by_adr -EXPORT_SYMBOL_GPL vmlinux 0xdffb8bd3 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xe0015c23 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xdfe39bba fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xdfef327f gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xdff55001 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xdff74569 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xdffc5397 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xe005aba0 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xe00707ed gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xe00731e7 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xe008b938 devlink_priv EXPORT_SYMBOL_GPL vmlinux 0xe00db6dc __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe0136d63 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xe017f478 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xe01c8889 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xe01db1df dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xe00ee556 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe024c0a2 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe02a8f10 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xe02d866d usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe03e08d5 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0xe03e4b3e i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xe05c6931 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe032d378 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xe048f592 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xe04d87fd irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe067ff06 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xe06b8522 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe08011db pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xe0847222 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe08a2fc6 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xe0a767a2 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xe0b071ad gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xe0615518 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe06179c1 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe086dea1 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xe0911cc6 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xe0a1d87f fb_sys_write EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0b8364e __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xe0b8e815 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xe0b981eb sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xe0b8f6d6 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe0baa28a extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe0c25bee ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe0c6cde4 ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0xe0d13037 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xe0de4952 devl_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0f84f2d usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0xe107435a usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xe0efd26a usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xe10262ff gnttab_dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11754fa serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0xe1181fef regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xe1245515 led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0xe12681a4 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xe126aa45 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xe1300fe0 clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xe13d31bb devm_hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xe13f4c1a xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xe13ff9c6 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xe1426591 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xe12b8f46 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xe12fdbc6 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xe1392ebf genphy_c45_fast_retrain EXPORT_SYMBOL_GPL vmlinux 0xe14c718e rockchip_register_softrst_lut -EXPORT_SYMBOL_GPL vmlinux 0xe174da8e dpcon_open -EXPORT_SYMBOL_GPL vmlinux 0xe17bf29a pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xe17f88f3 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xe18cae26 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe191d1e5 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0xe1a80a9f mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xe153574b usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xe15a1aa6 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1664840 vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0xe1a16291 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xe1a62d7f rio_free_net EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c06332 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe1c10b8d pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xe1c448fb ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xe1c44c5d clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1e1cf10 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe200d594 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xe1c9a304 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe1d552cd sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xe1da6d2d dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xe1fe5252 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xe2010386 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xe21ef551 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xe227b708 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xe22e4920 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe233edd2 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe23565aa devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe258b2d2 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xe259a25d tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe264e2b5 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xe27330a5 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xe2798754 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xe28f3b14 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0xe2a6b4f8 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xe25d4876 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe26f8378 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xe273be5f cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xe27b1278 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe28074af fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xe287f849 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xe2a52c8f scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe2acdcb0 receive_fd EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b36b70 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xe2b7f4e7 xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature -EXPORT_SYMBOL_GPL vmlinux 0xe2e3910a usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xe2e50ea9 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xe2dcb38e __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe2f117d5 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xe2fbbb66 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xe2fd00eb mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xe3000ba7 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0xe302efb3 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xe3083da0 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe308eca7 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xe316c4d3 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xe31da391 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xe31e9ee6 put_pid -EXPORT_SYMBOL_GPL vmlinux 0xe32a0c4c fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xe33cfc2a spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xe34df854 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xe306f693 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xe3115084 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xe31f4bf3 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe349f618 stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0xe34f4d68 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xe3603ca7 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xe37be146 pci_msix_can_alloc_dyn EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe3864abe blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xe38d102e phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xe3940b87 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xe395a618 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xe397843b md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe39a5f47 skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b89dba scmi_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe3c818f9 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe3b0b858 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3de694c irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xe3e33248 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe3d794f0 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe3e3487a regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e5948b gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xe3f9f723 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xe4037b3d mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xe4057927 usb_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe428a4f7 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe432c679 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe43482b7 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xe436e90c __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xe436fcab device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xe439720d genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xe43f4f61 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0xe447b309 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xe45a7858 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xe465253a transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe465b780 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xe47c26b6 nvdimm_setup_pfn -EXPORT_SYMBOL_GPL vmlinux 0xe482686a synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0xe48c7b13 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xe491abae dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe442c613 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe4541a79 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe45be071 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xe480c27f inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe482248b bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xe482b731 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a59d16 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xe4adc161 of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4bc1255 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c03ca7 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4c04611 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c8513d wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe4cca86f mtk_mux_gate_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4d1c5fb strp_init -EXPORT_SYMBOL_GPL vmlinux 0xe4db5e50 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xe4cff72d disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xe4d7b6f8 serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e612a7 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xe4ea2f67 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xe4f661e0 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xe4fda012 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xe505c541 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0xe50893fd unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe5245324 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xe546f6d8 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xe50ab469 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xe52d3e05 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5327016 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xe5433adc mtk_clk_unregister_cpumuxes EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe55f67ab nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xe575a75a bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xe55b08a4 class_create +EXPORT_SYMBOL_GPL vmlinux 0xe568d4b1 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xe57d1512 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xe580f16d usb_string EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe5a638fd yield_to EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5b8b635 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe5b385b8 sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c247d1 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xe5c29c70 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5dd8d33 of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe5de8f8d usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xe5daaef5 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xe5dfe5ae pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0xe5e790e4 __traceiter_rwmmio_post_read -EXPORT_SYMBOL_GPL vmlinux 0xe6047ac3 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe5ef8ced tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xe5fac4bc devl_unlock EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe6212c20 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0xe627ae82 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xe60c7abd ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xe6171c6f pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe619ca1d gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xe61c75a5 sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe62f9378 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xe64cd6fb rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe668b294 rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0xe6859b5e devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xe68e7721 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xe690e26e dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xe69bdc0f vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xe69dd564 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xe69e5bd9 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xe69ff186 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xe62fef7b virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xe635f998 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xe646f923 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xe65df7a0 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xe66179ce cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xe6852086 dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xe6902d84 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe69e5849 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xe6a14058 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xe6aef439 __tracepoint_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xe6b08786 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xe6bbf073 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe6df9e28 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe6b4b4aa ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xe6bce1c8 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq -EXPORT_SYMBOL_GPL vmlinux 0xe6e5154b pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f354c3 tcp_done EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f7cd71 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe70221d7 cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0xe71d7d09 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe72050c6 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xe7277b91 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xe727a9d7 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0xe72880f1 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xe72c1627 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xe731f2d5 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xe74c5e93 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xe702a4b8 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe703b17b fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xe709571b ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0xe70d490f usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe715380e devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0xe72158e5 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xe728e680 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xe73219f6 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75a8ed0 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe77034a5 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xe77ccb40 regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe788ffcd sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xe78aace3 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xe78cbdc8 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xe78ec5f4 mdiobus_c45_modify -EXPORT_SYMBOL_GPL vmlinux 0xe78ef29d led_put -EXPORT_SYMBOL_GPL vmlinux 0xe78fba75 mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe7a3e6a5 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xe7abba14 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0xe7ac4e3a wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xe7d2884c sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xe7a14632 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe7a56a68 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xe7a58b25 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xe7ac804e mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe7bc6ead get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe7d0cfee dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xe7d51d19 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7db04a7 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xe7e54173 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xe7f1839b icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xe812dc3b mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe817c9a0 ma35d1_reg_clk_pll +EXPORT_SYMBOL_GPL vmlinux 0xe7dfac2c percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe8061d0d clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xe808e37b devm_remove_action EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe8201172 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xe827d677 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0xe830b9ae acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe836f18a acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0xe8446b45 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xe81fa687 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xe8224d90 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe8232a08 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xe82aeeff vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0xe83f4be0 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xe8486506 security_file_ioctl EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe852222b clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xe8586028 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe8521ded of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85bb0d8 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xe85f33ef dpcon_get_attributes EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86c046e debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xe8771c76 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xe86ab76f crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xe86e4242 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xe88d1fb9 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xe8979afb mas_prev_range +EXPORT_SYMBOL_GPL vmlinux 0xe8a4daac crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add -EXPORT_SYMBOL_GPL vmlinux 0xe8bbdf4e usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xe8a9f5ed gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xe8b8ba20 devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xe8bf5c78 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe8bfb913 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe8bdb59b fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c051a1 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xe8d5af91 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xe8da8ea7 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0xe8e2da85 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xe8e34adc mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xe8e98326 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xe8ffda0b aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe90a0dec cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe8cb4618 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xe8ed6cc8 acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0xe8ff42e8 blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xe90fae1f handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9183935 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xe91c1c15 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe93939a2 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xe93d5ef8 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xe9167cdd dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xe92b73e3 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xe94d34e1 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe94e1af6 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xe9537cb9 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe95412be ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe967ed7e fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xe96a8a51 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xe96b5445 fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0xe9847e77 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xe9885d9b device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe989d22c fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0xe957eb37 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xe96350b7 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xe96ebf4e regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xe96f5b6c vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xe9751d10 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe982450f vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0xe98a1daf kobject_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9a9cbd1 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe9bcad32 vcap_tc_flower_handler_ipv4_usage +EXPORT_SYMBOL_GPL vmlinux 0xe9a52512 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xe9b061fb power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe9bc30ab powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0xe9bd3732 modify_ftrace_direct_nolock -EXPORT_SYMBOL_GPL vmlinux 0xe9bec722 rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xe9c5f858 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d584d1 xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9e39521 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xe9ebc15f regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe9d8a0fc serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xe9e7ef31 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xe9e943f5 dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0xe9ff896d xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xe9facb73 mtk_clk_pdev_remove EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0a76fd adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xea0b410e phy_get -EXPORT_SYMBOL_GPL vmlinux 0xea0cbac5 __thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0xea0286d1 of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd EXPORT_SYMBOL_GPL vmlinux 0xea178d19 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xea21b7a0 acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0xea312c8c serdev_acpi_get_uart_resource EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3f041f fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xea44c9bb devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xea418e4b msi_lock_descs EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea52c65c device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xea61a72d ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xea63b311 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0xea6d1495 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xea9f268c kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xea58e00c netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea5985f0 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xea629c07 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xea6bd875 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xea6d2a52 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xea729165 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xea7b20f7 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xea826cda nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xea9daf2c devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xeaa46e7c serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xeab361ac cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xeac744a5 pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xead8d265 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeadec86e dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xead9755b __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae9cb48 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0xeaeef434 devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xeaf08782 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xeae4c694 bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb03a133 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xeb129b9c inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xeb14a5a1 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xeb19d2e3 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0xeb3be0e0 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xeb401769 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xeafb2c7a regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xeb0c4b5d sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xeb0da4ee skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xeb11413d pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xeb1d519e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xeb1e8866 tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb4623a5 mtk_clk_register_dividers -EXPORT_SYMBOL_GPL vmlinux 0xeb604a87 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xeb69bcc0 hid_bpf_device_init -EXPORT_SYMBOL_GPL vmlinux 0xeb71fd34 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0xeb7782c0 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb5cd86e da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xeb669b11 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xeb786c37 dw_pcie_own_conf_map_bus EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb79ef42 fsl_mc_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xeb97fff9 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0xeba124b4 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xebab6526 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xebad0c7f pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xebb8d046 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xeb812a96 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xeb940a15 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xebb271ec ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xebbd2a1f get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xebc26fbf tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xebc581ed power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xebc8e014 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xebcbff24 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xebd43d4d i2c_dw_adjust_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd8febb __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xebd9b02f usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0xebe496ca __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xebf2e288 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xebf71e14 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xebf93d62 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xebfcb385 skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0xebff24bb handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xebf63b5a follow_pte EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL vmlinux 0xec08de58 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xec1ce88b __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xec2214f1 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xec2fbfde pskb_put -EXPORT_SYMBOL_GPL vmlinux 0xec3b5659 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xec3cb9e7 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xec4d8404 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xec55bac7 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xec1cc495 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xec29d5d1 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xec2a03f0 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0xec2a585d __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xec4ae65e vring_create_virtqueue_dma EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec70143b pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xec74c6ff wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xec5ef349 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec65e88b thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xecb10842 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xec79ab96 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xec7f763c iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xec88730e blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xec91260c ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xec93bea2 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xecaf6d41 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbd466c pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0xecbf3b2c genphy_c45_plca_set_cfg -EXPORT_SYMBOL_GPL vmlinux 0xecc018fe rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xecce4c42 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xecbec13a clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xecc931c6 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xecd21872 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdbdb25 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0xece3dee4 devm_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0xed002bcb rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xed00f9e6 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xed14eb1c pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xed169bbc __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xed21ee18 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xecdac3e1 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xece7a33b crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xece9f009 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xececbb8a netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xed010cf5 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xed0d7587 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xed1190a8 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed125e48 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xed167eee posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xed1fdb7b debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xed24d509 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed3528bf fsl_mc_allocate_irqs -EXPORT_SYMBOL_GPL vmlinux 0xed38cae9 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xed33307a rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xed35e20d blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed57f980 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xed5f1c04 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xed68f4b9 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xed7de10c devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xed80095d dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xed829887 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xed84520c tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xed44a06a inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xed5b6324 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0xed5e79b5 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xed625186 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xed63a71f __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xed7b4570 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed9645d4 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xed9cd482 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xeda67be4 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xeda985fe devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xedaa11eb xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0xedb4ce60 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xedc20a24 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xedc80916 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xedd0ee91 nvmem_add_one_cell -EXPORT_SYMBOL_GPL vmlinux 0xedd24c7c skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xeda69afd gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xedb00a1d attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedc14c8f gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xedc9c89a xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xedd3c82b pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedecb55e meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xedff1048 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xee0198f9 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xee1834c3 dsa_stubs -EXPORT_SYMBOL_GPL vmlinux 0xee2bc079 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xee2e1244 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xee36a227 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xedec62ba devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xedef78a2 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xedf4413d spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xedfc2a9e __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xee07da90 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xee09a849 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xee37077f devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee3c1e24 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xee3f3307 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xee4e48cc blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee56d87c net_failover_create -EXPORT_SYMBOL_GPL vmlinux 0xee632615 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xee51cc45 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xee6319a3 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xee68aedb k3_udma_glue_request_rx_chn EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee6cc085 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0xee6e7474 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0xee74a922 __tracepoint_console -EXPORT_SYMBOL_GPL vmlinux 0xee7a8bc2 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xee83407a debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xee8436f0 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0xee89dcaa devm_register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xee946f00 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xeeb5320f xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xeed7378c of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xeedb569e mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0xee835b98 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xee9f3ba3 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xeeb9bd15 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xeebeaf2a xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xeebeb9ac crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xeec2fc2f account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xeed251cd clk_fractional_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported -EXPORT_SYMBOL_GPL vmlinux 0xeedfb2c9 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xeee03826 gnttab_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put +EXPORT_SYMBOL_GPL vmlinux 0xeee6e743 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xef125d6b nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xef1ccb53 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xeeff0f6e pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xef010a4e rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xef0d8229 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xef0eade0 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef1fb87d of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xef236a62 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xef264fd9 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0xef2808be edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2a4775 dev_pm_opp_get_supplies EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef37b82d tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xef3819ab devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xef3ef634 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xef35db8b synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xef3df3ec usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xef437cd1 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef58f3b0 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xef4b2711 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xef553fea stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xef578492 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xef5bae6c serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef61ff25 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0xef67ec35 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef7c67f6 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0xef86d679 pci_alloc_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0xef8d19f3 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xef7ce34a ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xef84907c of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef9857fb mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb79025 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0xefbd6ca6 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xefbe0455 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xefc4e5e4 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xefc7491e blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xefce78ec of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xefd05d87 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xefdbf93f devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xefa8c477 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xefb67a70 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xefbbda52 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xefdf9903 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xefdfda0c i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xefe23d90 irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xeff7e750 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xf008a303 led_get +EXPORT_SYMBOL_GPL vmlinux 0xf009ad56 altr_sysmgr_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0xf024bef2 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xf026bd7a usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xf0294735 vcap_keyfieldset -EXPORT_SYMBOL_GPL vmlinux 0xf02a8218 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xf0321ff8 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xf0439b2e of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0xf043c7df fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0xf016930c pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xf020197f dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xf02b926f ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf031f2e5 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xf03c9868 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf04e7468 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf054c9a9 virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05e3c28 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xf05e6d9a put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0616e7a sched_numa_hop_mask +EXPORT_SYMBOL_GPL vmlinux 0xf062d84c kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xf063944f iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf078407b bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf07fe6cb ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf07c7fab transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xf0839e29 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xf08acc39 fsl_mc_resource_free EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf092fe30 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xf093eb47 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xf096ac9b handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xf09e47d7 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf0a42fb1 mtk_clk_register_factors -EXPORT_SYMBOL_GPL vmlinux 0xf0ba2414 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xf0c24407 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xf0c3cb03 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xf0d35068 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xf0dbb9d1 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xf092ea2f inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf0b843fc nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xf0c3dd63 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf0c781a9 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf0c85c58 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0xf0ca36a3 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0xf0da47f4 ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0xf0e52dc0 __tracepoint_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf0f0e8d0 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xf0f1eeba br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xf0e9cc2b rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0ee213c fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xf0f2117a genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted -EXPORT_SYMBOL_GPL vmlinux 0xf1101e6e fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xf100460a crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate +EXPORT_SYMBOL_GPL vmlinux 0xf11bcd82 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xf11bdeda relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf122eaa6 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xf12a553d mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xf153aa62 bdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xf15fa945 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xf16c376a crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xf16ea4cb genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf16f5663 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf1711c3c dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0xf17f8da7 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf12d7607 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xf13c6dc2 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xf1524712 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xf165d3a4 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xf180bfe4 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xf1827c30 dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf19611d6 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xf198436c devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0xf19e2429 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xf1a88456 devl_linecard_create -EXPORT_SYMBOL_GPL vmlinux 0xf1bcf251 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xf18e8fd2 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xf19a4be4 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xf19f882e ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1a2cff7 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf1a51c41 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xf1a659f6 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xf1bf80c9 iort_put_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0xf1c4b4c3 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xf1c4bc68 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xf1d81570 bus_unregister EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xf1f04a81 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf1f05181 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xf1f8286f __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0xf204c291 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf20acb9a firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xf201370a rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xf21ad951 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf23646dc devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xf23f80f0 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0xf24f5b71 of_phandle_iterator_init -EXPORT_SYMBOL_GPL vmlinux 0xf268a8fe phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xf269ff78 devres_add -EXPORT_SYMBOL_GPL vmlinux 0xf272c223 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xf27453c9 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xf22182b0 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf224c7c8 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xf2330fac irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf23c48a0 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xf23d85c2 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xf2497894 vcap_is_last_chain +EXPORT_SYMBOL_GPL vmlinux 0xf25f0fd9 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xf276d6c4 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0xf277ab29 fbcon_modechange_possible EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf27e8104 usb_amd_pt_check_port EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf28bcdcb pci_find_dvsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xf2909181 ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf29e3687 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xf2a3ec67 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xf2a62655 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xf2ababd2 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xf2ab9ae0 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b31885 of_pci_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2eead61 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf2b37cdb genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0xf2c86f7f devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0xf2c91c03 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf2d3b1a7 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xf2db7599 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2ee9860 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xf2f42668 i2c_acpi_find_adapter_by_handle EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf3154f97 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3230189 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf32dde48 nvmem_cell_read_u32 EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33d7c0f regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xf3517328 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xf33a64ee register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf34772e2 cdx_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xf34ca584 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf34dcad3 set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35732f6 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0xf35ce21b mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0xf3673dac regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xf3700393 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xf3759dad __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xf37868a2 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf3539dfa led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xf35831d8 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xf359e2a2 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xf36739ef dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xf36d1779 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf3741020 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37a22ae wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf385067d dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xf3986289 ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0xf386c72b edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xf3898c1d platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xf38ddee5 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xf39a117f strp_done EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3a22210 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xf3afb887 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xf3a556e9 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b584f7 usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3c376bf devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xf3c7127f nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0xf3dd10e0 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xf3df278f vcap_select_min_rule_keyset -EXPORT_SYMBOL_GPL vmlinux 0xf3e2c43b kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xf3fb64d7 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf4103722 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xf41396ed wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0xf4139d36 sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xf415dd93 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf3bf28d6 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf3d96f83 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xf3f786b2 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xf3fda2fd usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0xf4011163 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf40198a1 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xf40ab29c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xf40dd275 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4169414 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xf41c167d __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xf4204541 tegra_bpmp_request_mrq EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xf4235727 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0xf4245b4b fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0xf42c6ffb rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xf43f8b7f shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xf442a3f3 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xf44400c2 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf45a9bd2 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0xf45eb7ad msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xf4253f01 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf429ede8 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf432156c pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xf44142c7 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xf441accf edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xf446572d genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0xf448fa79 mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0xf449ffd6 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xf44c0192 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xf4557545 driver_set_override EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf4701787 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf46a2848 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47fac3d mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xf48f685a debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0xf4931183 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xf4a7ba4d housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xf48f30cd __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xf4936cc4 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xf499bd8d xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf499cc48 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xf49a4d4f usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xf49abc6b sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf4a3e56a tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xf4a4683a k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xf4a69cd4 scmi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf4a9fb19 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4af54ac devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4b0a574 fsl_mc_object_free EXPORT_SYMBOL_GPL vmlinux 0xf4b77c91 kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4e47785 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xf4eb3d12 vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0xf4ec93ea led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xf4ee6098 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xf4f3ab8c phy_validate -EXPORT_SYMBOL_GPL vmlinux 0xf4f6caee crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xf4fa58e4 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf5050fb0 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xf5135a88 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xf51dccc8 pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xf5302c3f extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf53f3305 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0xf5451460 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xf4e99cda imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xf4f53f26 rz_mtu3_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4f682f0 pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xf50557e3 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf515280d devl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf533c486 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xf5404918 backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0xf5418111 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0xf547b2f2 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5628e5d nvmem_layout_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xf57646a5 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xf57bad1f devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf595f777 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xf55f4226 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xf5634118 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5651dfb simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xf58e8e4b devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf5a05542 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a4e810 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5b166ff devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0xf5b444f8 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0xf5d28fb3 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xf5d4bc71 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xf5a82e93 md_run +EXPORT_SYMBOL_GPL vmlinux 0xf5a88bab perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xf5aed51c blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0xf5b5df8e task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5cbe59b clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xf5cd13d0 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0xf5e1a77c trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xf5e4d3d0 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf5e3c11c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xf5ef5d4a devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf601b93a iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xf60f20fe cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5fcd21c vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0xf6055578 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6085bfe clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xf61b468a dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf624c324 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xf6283577 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0xf62f9c39 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0xf63a5e75 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xf6234a43 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xf62c02a9 mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0xf63f003a acpi_gpio_get_io_resource EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf651779f of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf6533115 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf64bed1d gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf65057bb vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0xf6512dcd iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xf6531a96 mtk_clk_dummy_ops +EXPORT_SYMBOL_GPL vmlinux 0xf6556ac9 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf667759e usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xf667c738 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xf6703726 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf671f7e6 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0xf6790c4d usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0xf68ab68f perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xf68ccee9 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0xf69536e5 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xf6965381 priv_to_devlink -EXPORT_SYMBOL_GPL vmlinux 0xf6987433 dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0xf671f335 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xf67a8c3d pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xf68c7b9d dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6aeb469 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xf6bdae2a regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c203b9 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf6c37894 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c81a94 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xf6c7d679 sdio_enable_func EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e00782 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xf6e10619 dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f0de9a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xf6ef64e3 devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks -EXPORT_SYMBOL_GPL vmlinux 0xf6f30120 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0xf708ae04 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0xf70b75cc iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xf70b9b6a irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf7101da1 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf7219f9c transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xf723531e spi_split_transfers_maxwords EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72ba86b pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf73fecc2 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xf741251a cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf743c16c __thermal_zone_get_trip EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf7477c6a mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xf748d319 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xf748d8c1 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf766e243 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf757dc83 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xf75ac67c iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xf75ce2bf dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xf76be446 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xf76d9ca4 walk_hmem_resources EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf7792421 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf77a0fc0 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf77bf7eb vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7855afe aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf7915397 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf79a2afe crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xf7b6dfb4 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7bccc72 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7bdb286 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7dd5f57 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xf7ed0949 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0xf7f6bc29 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xf7c7a523 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xf7d0b5e5 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xf7d2fced tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xf7df4568 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xf7e04f41 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xf7f44bc5 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xf7f6151a percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xf7f6947a dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf809d25a devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf809d87d class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xf80a969c spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf811d9af of_nvmem_layout_get_container EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event -EXPORT_SYMBOL_GPL vmlinux 0xf82ca562 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xf82c3fea sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83238c0 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xf8389199 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf83c0b66 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xf84698b8 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf84d239a __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf8589d1b blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf87706cc watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xf869b28d clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8736e77 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xf87e80e7 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xf8802bdb regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf8814468 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf885c563 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xf891b831 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf89ce0ee call_hid_bpf_rdesc_fixup -EXPORT_SYMBOL_GPL vmlinux 0xf8a54a01 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xf8bc8737 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xf8c5f1a2 irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xf8db4349 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xf8f103be fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf88c88a6 blk_rq_poll +EXPORT_SYMBOL_GPL vmlinux 0xf88ce32b dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xf8957992 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8990a91 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xf89f4c07 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf8b00ba0 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf8d0b14e devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xf8d50fed skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf8e04412 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xf8e1b468 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b0c0 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8f3b10e rz_mtu3_disable -EXPORT_SYMBOL_GPL vmlinux 0xf8f4985d imx_unregister_hw_clocks EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf903a262 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xf9060b16 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xf909f3a7 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf90c9b6e PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xf90cdbcb __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xf90da857 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xf9160d32 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xf91a1295 folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xf928d238 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0xf93356d1 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf90a8437 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf924ffec devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xf9354307 __traceiter_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xf93a5fb5 mtk_devm_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0xf93c2935 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xf949a577 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf93f5d2d mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xf94503df tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xf94fb5bd kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xf951b414 virtio_break_device EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95cccdf clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf970982f pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xf97223ce regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xf97913dc ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xf98a1228 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xf98bd054 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xf996d24b cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xf99eecb9 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf968c52d l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf96d7789 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf97920a4 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xf98a2287 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xf9984f75 crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a14b02 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9a476d9 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf9ad4f1b addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xf9b0f796 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9cb234a ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0xf9ead04a fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0xf9ed3b35 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa0b63ad to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xf9be1335 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xf9c09f41 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xf9c223e4 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xf9c7bc98 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xf9c895a9 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xf9d65143 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0xfa214c9c __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xfa2db9b8 ahci_platform_find_clk EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa34f506 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xfa42e22a devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa48d05c __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfa4951b0 regulator_desc_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xfa4d3c24 log_post_write_mmio -EXPORT_SYMBOL_GPL vmlinux 0xfa544390 pci_p2pmem_free_sgl -EXPORT_SYMBOL_GPL vmlinux 0xfa5bc9de ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xfa5165fa pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xfa63a15a subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa761ea8 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xfa76fad2 usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0xfa84835b skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xfa899f0d ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xfaa17232 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0xfaadeaaa tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xfa6ca7d6 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xfa6d7e05 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfa6e03c1 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xfa8c0afe rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xfaa57102 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xfaa5ff4a devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfaa90657 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab67a75 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0xfabf1862 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xfacda9d0 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xfabbe5d6 tpm_chip_bootstrap +EXPORT_SYMBOL_GPL vmlinux 0xfad6bc21 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae0301b kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xfae6345d kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xfae71002 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xfaf89287 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xfafd5021 md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xfb0099c8 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfb02f92b of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0xfae3494f dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xfae653f2 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xfafb4a1e led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfb018590 pskb_put EXPORT_SYMBOL_GPL vmlinux 0xfb0d7867 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xfb302033 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb22eaed dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb35890a x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xfb489ef4 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xfb496bf9 __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xfb53fd0f devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xfb3e5808 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xfb3ea855 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xfb3fe85d cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xfb4a963b wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb74e910 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xfb766f94 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xfba64b10 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xfba682b4 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xfbad7d9c serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xfbb2cc1e sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xfb8bc788 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xfb8fd23d led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xfb9191b3 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfba3da57 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfba4c9b9 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xfbad1e9e kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xfbb55532 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfbb72b61 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xfbb80937 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xfbb96567 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbf82d4 spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xfbccb3d7 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xfbd71696 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xfbd9852b pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xfbedc18d attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfbe0355e blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xfbe43129 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xfbf0a563 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xfbf0c866 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xfbf3bfed devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfbf3eab1 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0xfbf9041a pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xfbfc477f iommu_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc02eda6 mtk_pinconf_adv_pull_set EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0a0fe8 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xfc08850b xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xfc12de02 crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc300a37 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xfc342614 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc4a173d pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xfc5c1d1c securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xfc709b63 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xfc7df50f rz_mtu3_shared_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xfc869c9c platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xfc874dc7 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xfc8e3b81 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xfc929e95 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xfc3bce7d regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xfc453b16 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xfc46933b irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xfc4af364 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xfc5635aa __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xfc5b57a2 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xfc69ed48 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xfc916db4 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc9b44d5 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0xfca2a261 pci_p2pdma_enable_store -EXPORT_SYMBOL_GPL vmlinux 0xfcacc891 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xfcb114b1 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xfcbb954b sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xfca038f3 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xfca2be78 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xfcbccfd5 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc5347d input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xfcf417a2 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xfcc1ffad serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xfccc372d pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfccc3d71 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfccd5c51 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xfccf6afa sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xfce4769a dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xfcebf185 sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcfa4ecb device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xfd03d276 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xfcfa5b9a dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xfcfd2717 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd0094a3 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfd04f1b6 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd116e0a wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xfd0f4bab xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xfd105c53 serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd269ce7 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xfd361daf regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xfd3a98ac tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xfd461ade meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xfd48c288 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xfd586fc0 dev_pm_genpd_synced_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xfd610239 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd38f3de trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xfd3e027d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xfd52ce82 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xfd5fc325 memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event -EXPORT_SYMBOL_GPL vmlinux 0xfd65ba30 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xfd720c28 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd79fc07 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xfd7a70c3 nf_ip6_check_hbh_len -EXPORT_SYMBOL_GPL vmlinux 0xfd88e301 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xfd8bebea tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd9d843b platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xfda81913 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xfd7f5a68 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xfd8bb31a iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xfd964d35 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xfda0d2ed xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xfdaaa9bb is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc481ff bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfdc58690 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xfdc59d36 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xfdcb3a27 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xfdd03115 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xfddeaf14 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0xfde511a2 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xfde83548 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xfdd291dc devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf78071 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfdfe52f9 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xfdfeda19 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xfe0439c6 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xfdf7f19e lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xfe02a41c devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe05c1cc devm_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe15b704 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0xfe17758b pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe2521fe __devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xfe290ead pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe27129b input_class +EXPORT_SYMBOL_GPL vmlinux 0xfe2cf51f dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe4141b3 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xfe3ec731 imx_pinctrl_parse_pin_scu EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4f79f3 usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0xfe57cb0d pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xfe595e5d pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xfe705dfe __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xfe765880 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xfe7c4fb7 udp_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xfe809bd4 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xfe840ea3 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xfe514859 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xfe6070f1 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xfe6527d1 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xfe683874 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xfe6b5227 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xfe73f2c7 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xfe853079 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfea0a38c handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xfea3333d sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0xfec309ae fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0xfe9e1fbb devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfea15148 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xfea2a30e fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xfea95cdd ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xfead1944 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xfeadc6e9 pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfee0f15a wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xfee450ed irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xfed3f229 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xfed69e60 direct_write_fallback EXPORT_SYMBOL_GPL vmlinux 0xfeec3489 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read -EXPORT_SYMBOL_GPL vmlinux 0xfef05b78 of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0xfef50da3 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xfef2adcc dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xfef3d7f5 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfef42b32 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xff03a139 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0e0ac5 acpi_pm_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff1b4f1d reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xff19983c crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff361e96 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xff40e4da fsl_mc_bus_dpbp_type EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff53e9b5 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xff5f032a pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xff476f63 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xff4be9b5 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xff4ccdae of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xff51cfb2 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xff71305d pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xff7d8eb0 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff80ed62 kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff98f309 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xff99137d devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xff9b3b2b nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0xff9be3f6 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xff99ee34 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xff9f793e blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffc1e276 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xffc26b49 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xffbac3b7 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xffbd43fd devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xffc74583 pm_generic_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xffd1b4ba extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xffd20df8 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xffd37e3f wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xffdbcb98 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xfffb88f1 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xfffc5478 dma_resv_set_deadline -EXPORT_SYMBOL_GPL vmlinux 0xfffd93c7 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xffcc585a meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xffefce59 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfff19b9f __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xfff537b8 amba_device_put FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -FW_CS_DSP EXPORT_SYMBOL_GPL 0x06be6981 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x06df8741 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x09e89580 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x107b1f18 cs_dsp_stop drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x1402c023 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0400e58c cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0913cace cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0dc8003a cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x1c817e8a cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x45561d53 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x22cf1d1d cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x2c706c89 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x37255bcd cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3a5b5314 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4b70fd2a cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4d5bbdad cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x5dc6c0a2 cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x628c1a75 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x65730714 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x6f15d91d cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7dd8713a cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x915eb332 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x951b23b4 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7b5c72d3 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7c603ca3 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x87a3e690 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xac799f19 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e3e2b89 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa0195568 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xab49ea88 cs_dsp_remove drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xe261f9aa cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xead72ec0 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xef7ae162 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf1c71bf1 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf2d0e769 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf52c2ccf cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf5e1c4d0 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfaa28510 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfc4126e0 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0x1c0113e0 hwmon_device_register_for_thermal vmlinux +FW_CS_DSP EXPORT_SYMBOL_GPL 0xba683c15 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbc1f86a5 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbf80570b cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc48295f0 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcd195d05 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xddcac590 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf5b56d27 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xfa0ff792 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xff9129ba cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xee4b98a3 hwmon_device_register_for_thermal vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x14013dbb idle_inject_register_full vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x5f064467 idle_inject_register vmlinux @@ -28221,486 +28245,486 @@ IDLE_INJECT EXPORT_SYMBOL_GPL 0xc18575af idle_inject_set_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux -IIO_AD5592R EXPORT_SYMBOL_GPL 0x1262c691 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0xc5d056c2 ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x3bea5b55 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0xb57773c6 ad5686_remove drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x4a63372c ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0xb477052c ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x782d2085 ad7606_probe drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0x80636199 ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x883423ff __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xa322cf2e adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1d818f31 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x62785c7b adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x75b70858 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x77fcdace __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x81019969 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x833a098e __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x98aa21b0 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xad728f26 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbe6d915e __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xcebd7e60 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xb5adf3cc __adis_reset drivers/iio/imu/adis_lib -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x943161db devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xcd3c7903 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x63cd7770 adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_AD5592R EXPORT_SYMBOL_GPL 0xb20a637a ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xf7e4a333 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x1c6a6928 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x5ef656e6 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x3f419058 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xf80141f9 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x58ddc67c ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xbd4c2399 ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x201288b5 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x3fb414cb __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x06e90313 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x15bcff6a __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2a532de6 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3997e9a0 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x559576ed devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5bd1d9c3 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x668c60f0 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7c53fc7d devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbde7a32d __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd4cef242 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x064fdc81 __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x8516356f adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xfbf6418a devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xa2ca34ec adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe0cc85c5 adxl31x_chip_info drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core -IIO_ADXL313 EXPORT_SYMBOL_GPL 0xfd1cc9bf adxl313_core_probe drivers/iio/accel/adxl313_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL355 EXPORT_SYMBOL_GPL 0xe46ba2a1 adxl355_core_probe drivers/iio/accel/adxl355_core -IIO_ADXL367 EXPORT_SYMBOL_GPL 0xcba50942 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x6c9c14e1 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x7b6fbeea adxl372_probe drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x305aac36 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4bb098f8 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x60c433ad ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8e2dcc0b ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xae3d5406 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb5ab3720 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb5b5f2ea ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc898350e ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe71f9dc0 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe9a80d27 ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0x4f4c0a3e bma400_probe drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0xe26c3842 bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x5cce219d bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x85538634 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x92795a61 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xfe93f427 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x8704fe9a bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xaaf00676 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xad382ddf bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xf035f415 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0xd1a172bf bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0xf92809ff bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x1f2f41b8 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x395efcf9 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x519b073f bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x72231163 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x6a77df1b bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xf835dd20 adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x646bb412 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xc6d71e25 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xe71daa64 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2bdb2eb2 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x816b6835 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x859a1500 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8a97a013 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa7fd4395 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb42670b6 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb75385f3 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb8b664db ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe49fa26b ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xeb285aa4 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x3d11c5fb bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xbdff7b32 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x3b9879c5 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x58ac8835 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x5d60a128 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xb7a91f2c bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x38ee49db bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x47eb1fe8 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xb6ce6648 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xbc550630 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xfa623703 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x1cf964ea bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x1c5b3e9b bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x8ca9d538 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x91705c0a bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x964db795 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0xb0b1fc22 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL_GPL 0xac01227c bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x21f2c6ea bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x2426ad69 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x2c78fe53 bmp380_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x2f8e7a6f bmp580_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x9ebe8be9 bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xb1771f25 bmp280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xc6923ee1 bme280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xcd163afe bmp180_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xcea0700b bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xd4bab5e5 bmp580_chip_info drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x91617887 bno055_probe drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x94c08648 bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x5570f04f fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x8a3ccfcc fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x9093c98a fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x547b8969 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x63c54ebf fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x83fdaf31 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc11bda7a fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_BMI160 EXPORT_SYMBOL_GPL 0xcf956cc8 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x11dd8db2 bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x2108d4dd bmp580_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x33205fd9 bme280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x38a45bc6 bmp180_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x44c57e1d bmp280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xd5aa6a71 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xd9ca9f6b bmp380_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xf0f387d6 bmp580_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xfb5b50d0 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xfe8f3b53 bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x60b359d4 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x68aba31e bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x3e55ddb1 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x9aa8d370 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xf70fbe85 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x01f65616 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x69ee1b60 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xcb308fa5 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xf5676a83 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x094bee02 iio_gts_avail_scales_for_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x296bb0cd iio_gts_all_avail_scales drivers/iio/industrialio-gts-helper -IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x48263a40 devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x4ed89402 iio_gts_find_sel_by_gain drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x53000dc5 iio_gts_find_gain_by_sel drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x54a7bad7 iio_gts_get_min_gain drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x5f338fa0 iio_gts_find_new_gain_sel_by_old_gain_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xa04ca07d devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xa3374797 iio_gts_get_scale drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xaf5aaa85 iio_find_closest_gain_low drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc061498b iio_gts_avail_times drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc25ccf30 iio_gts_find_new_gain_by_old_gain_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd7e29768 iio_gts_find_gain_sel_for_scale_using_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf42af90f iio_gts_total_gain_to_scale drivers/iio/industrialio-gts-helper -IIO_HID EXPORT_SYMBOL 0x03890658 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x066f117e hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x09bbce8d hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x412a1225 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x42b07f05 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x5f276181 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x69557a04 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x72b27690 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x74ba1282 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x1e091208 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2a42ac46 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x73c24769 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7b0342eb hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x8b056d74 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xb185a56c hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xcb10562b hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x75502ad8 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x787360aa hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7b04c38d hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd90f7b44 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0x0fa176f1 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x14544d09 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0xeac2c620 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x450f1a36 hts221_pm_ops drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0x94ce7fee hts221_probe drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x466f03c3 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xa7bb28c1 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xdca611c1 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0xa4651873 kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0xc8af4da5 kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x7caa5599 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x94a2e014 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xc0337a1e kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x6f2eaa1d st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0xa7151fb7 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_HID EXPORT_SYMBOL 0xb73bd7a9 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc578feeb hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xd2dace0e hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xdf793cdb hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xe0f563b1 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xed4a5266 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xfc913958 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xfdeb0ee0 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x11f2d937 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x68a67dae hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdf413843 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe6f24263 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x30f938ff hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x8907407d hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xd9461bcb hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x66137300 hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xfee661c8 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x5d02bc57 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xaa8a134c inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xe7d5deba inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x26be8f75 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x6243a855 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x194147dc kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x3ee54494 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x85d3a1a3 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x250d650c st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xa56d092d st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x234f95ec ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0ba302a3 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0d8932b8 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x183dc7e0 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x1861d8fd ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x3bdf18a0 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4a74b593 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x52be579e ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xad68d2f6 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb12519bb ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb3010bb3 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xef92dc1d ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfa5e5bbb ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x5df6293c mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x95380b64 mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfe70af6d mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x005a745e mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x1b379533 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x317434a9 mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x36c6709d mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xcf18a110 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd2958c6f ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe35ca824 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe9f1f1c0 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xea9cc1d3 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x2f8608a5 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x716a33e1 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xdc296907 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x0b809647 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1a8c0a3b mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x208f59dc mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x348d31d6 mma9551_read_status_word drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x685ae4f5 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x74e5a9dd mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x76df7377 mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x7ea58b6c mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x8baee868 mma9551_update_config_bits drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x900eeade mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xa905a60c mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb51443bb mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x61c0c082 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x73a26d10 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x773f7529 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x8a54b022 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x9fc70ae4 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb5a57943 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb8e0c77d mma9551_read_status_byte drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xcfe09c8e mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xd4ba9122 mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xf5dd4181 mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xfb90d622 mma9551_read_config_byte drivers/iio/accel/mma9551_core -IIO_MPL115 EXPORT_SYMBOL 0xb42fb7dc mpl115_dev_pm_ops drivers/iio/pressure/mpl115 -IIO_MPL115 EXPORT_SYMBOL_GPL 0x8c9bcd10 mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x15626058 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0xf7c6c3eb inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x4d688dcc ms5611_probe drivers/iio/pressure/ms5611_core -IIO_RESCALE EXPORT_SYMBOL_GPL 0x521f5e65 rescale_process_scale drivers/iio/afe/iio-rescale -IIO_RESCALE EXPORT_SYMBOL_GPL 0x5c6fc9cc rescale_process_offset drivers/iio/afe/iio-rescale +IIO_MMA9551 EXPORT_SYMBOL 0xc045bea5 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd2fd6f19 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xe0c8e5fc mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf037bcca mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xfbce558c mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0x7312c313 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x0035a0c9 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x7695f674 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xffc2d706 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x9039ae23 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x81052b3d rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0xc0f078d3 rescale_process_offset drivers/iio/afe/iio-rescale IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core -IIO_RM3100 EXPORT_SYMBOL_GPL 0x7def1d1a rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x13c7aad1 scd30_probe drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0x14b8f2ef scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0xff72150a sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x0296467d ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x0c19bb59 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x0d988f6d ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x1dee65de ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x38f59e53 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x3f1c384b ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x4d4aab2e ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x76ff14ac ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_ST_SENSORS EXPORT_SYMBOL 0x025c0446 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_RM3100 EXPORT_SYMBOL_GPL 0xe4fb470a rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x2945075d scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xf6840f5a scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xaca6578e sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x21c222af ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x44740034 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x65a464ea ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x76f29765 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xad3d6c50 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xb939eaf6 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xccdc441f ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xce8c0ebb ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x20135d2f st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x208bc40a st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x26777761 st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0x28f9d57a st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0x36c849ff st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x567d8de2 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x599ebfaf st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x5d859d21 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x5e531ed6 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0x5fa48fa2 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x608e79db st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x6e2f144f st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x73abae06 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x810e24ea st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x8a0c4c8c st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x98276eb8 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa151f1d4 st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xa8bed230 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb47b4b6c st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xb90d1edb st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xc2f5ff8a st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0xd2096675 st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xe0e989db st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xea9009e6 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xf9ad2599 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x08515e14 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0x6ca9dfcf st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0x9ed48517 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x3ed24f8c zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x757dab5b zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x75c20fdb zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x889fd07d zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xd62c57c7 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xfd554d3a zpa2326_remove drivers/iio/pressure/zpa2326 -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x665b653f m10bmc_sys_read drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xa7f60cde m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xb0a27c73 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xe88d8cf5 m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xfd4cbfa7 m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core -IOMMUFD EXPORT_SYMBOL_GPL 0x1478dc36 iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x25ff396f iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x2fcd4a27 iommufd_device_unbind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x507b3b55 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x5c52fa1c iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x952ca0c9 iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xaf29dd95 iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xd69df677 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xe92d9462 iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xee11d74a iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xf01546d4 iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xf11ef5be iommufd_access_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xf557ea44 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x27c65ccd iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x38810aa3 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x5287c072 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x025dbd02 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x03329c49 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x04edb602 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x09e190cd iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0b702eb5 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0ffeb993 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IIO_ST_SENSORS EXPORT_SYMBOL 0x0c899ecf st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0d6ed9a9 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1534968f st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1ce64512 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x27ba75c9 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3292bead st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x41ad5dc2 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x45ded0b4 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x4b73d2b4 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x4d17f8fa st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x52194e87 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x604c20ce st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x6a44b246 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x859637d3 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x87575096 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9fa597e3 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xabc324fb st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xb924702b st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xbc8ba70e st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xbe4d91f2 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc4f7bb1a st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xda62eb3d st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xee9c02d0 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf1b8eb6f st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xf6b1d85e st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xfe37b322 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xfdaf630c st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x9133fb56 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xc7062b64 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x197f9fa1 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x2cb2b611 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5b5bf5f2 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xa06ab8ec zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xac784d32 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xd221e61d zpa2326_pm_ops drivers/iio/pressure/zpa2326 +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x12a61e5b m10bmc_sys_read drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x20191369 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x3e35505e m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x55df10da m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xb51dd22d m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core +IOMMUFD EXPORT_SYMBOL_GPL 0x1c7bd643 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x267408db iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2ca4ee70 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2e72ea5a iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x395fbaee iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x64feea2e iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x90473a7c iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x978238f6 iommufd_access_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xaf0f8a33 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xc1949621 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xca1be70a iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xe67012e0 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xe84dbbe6 iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x004f4fcf iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x1d8b2a35 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x9ab6228d iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x019efd25 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x023876ef iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0359451d iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x059ea00c iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0771a664 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x10f1a9e3 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x15a789e8 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x15cc3c06 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1b6859d3 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1ba556fa iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1d0972ce iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1f090caa iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x25f26bf5 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x13dfa045 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x141b6632 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1b995f08 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1e4dc51d iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x206ddfb3 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2624ef16 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x26dd701e iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2fa7c8b1 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x32b8f42d iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x275b5e22 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2a06980e iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3006d06b iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3230d135 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3bb17d5b __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3c576535 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3f717dc8 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x40f3580d iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x44c1ab2c iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x45bdc1b4 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f5fccfa iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x415727c5 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45403c44 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x46c59580 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x50023305 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x52bedd4a iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4ac49e44 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x55b709ef iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5795a1e9 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5825da18 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x588cb4e0 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5898eac8 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x58aa9a33 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x609dd8bc __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6793b087 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x68a07e1c iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6c64581e iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6e36e3d1 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6e4491d6 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x733cddf3 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x73891bf1 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x750ceec7 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x75bd5831 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5eceabbc iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x63708d2a iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6593800e iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6ba230d5 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6dee3041 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x719ee597 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x76032371 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x788d67f3 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7772c452 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7d96c219 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7ee393cb iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x80b16b52 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7a2af98d iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ba479d3 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8456b06d iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x82b4e4dc iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x86e40566 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8741ab43 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8639e7ec iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x89d5e27a __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8f0521c8 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9077c3ef iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x916ac58a __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x987fb3ac iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa197300a iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa2b83644 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa65450e5 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa6f4cfd7 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa85eccf3 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa8883ccb iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa8eff38c iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaaad9b4f iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaf6e8434 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb15732a0 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x934f2006 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x96ebadd9 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x97b71faf __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9916a109 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa2f278b6 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa4b19047 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa6fa3574 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa8755fc7 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa87bfab2 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xad083a8d iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xae65b946 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb5dad539 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7aa8576 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb8da0807 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb940f6c7 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb9fc4da8 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbc0c7206 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc115cf32 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc2467411 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcd632212 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcd8365d6 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc31deda6 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc4ac8dc6 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc94e42c3 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd69f1a6e iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xddc5c844 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe075592a iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcf9d9293 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcf9f8e3a iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcfd011c1 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd233098c iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd64e78d3 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd84c7e6e iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdba9a862 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdd95d05d iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe2305ec6 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe536c6c8 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe2095061 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe4739054 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe64a28a5 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe71614aa iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe86571b1 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe8721baf iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xeb7281b9 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xeea9e458 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf174d691 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf31c08f4 iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf4338e80 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xef1d1c0e iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xef75b6b4 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf059c6a7 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf9a4c13c iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfacf8a25 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfc172d94 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfc8b4488 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x0986c950 ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xd36f85f6 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x1e09cf74 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x21d72f4e mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2708bf18 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x27e17e61 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4a6e79b2 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x73d35217 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x8aeac37c mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x91c71868 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9d49455b mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb74289c6 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc1a9cbb0 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc9d40d59 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd8189542 mcb_free_dev drivers/mcb/mcb +IWLWIFI EXPORT_SYMBOL_GPL 0xfdd70b7f __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfeceda76 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x67a87fc2 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xcef7d878 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x06c7c8b9 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x32f80df6 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3c36eee7 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4a466d30 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6045c414 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x65ad0ad4 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6be1cc30 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x831fe31d mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8384da8d mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc63d7943 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xca3e8218 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd447c57a mcb_bus_get drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf4cf0e1e mcb_unregister_driver drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x1861adea ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0xcce5ad22 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0xd25aec8e ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x11a6999d nvme_execute_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x161c8db8 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x37d957f8 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4afda294 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb30c5cfc nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe693e194 nvme_passthru_start drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf8d3a99d nvme_ctrl_from_file drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x09880e12 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x0a62d00e peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x10f458be peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x15b9b2f4 peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x15e43be1 peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x37b09967 peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x46cdffc4 peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4a894d4f peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4ae9bae5 peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4ea6d6b9 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x56e4ec88 peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x56e578bc peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5a82bb68 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5f720894 peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x64d3091c peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6f11b566 devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x73cffc72 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x76334130 peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x791029c4 peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8e69b23a peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x940d275f peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9d34a21d peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa2c329e0 peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb1620b74 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xcb6051f1 peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xcbeef935 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe198cfa1 peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xec63240b peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf1b3b08c peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI_CPU EXPORT_SYMBOL_GPL 0x2b6f20a6 peci_ep_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x30746112 peci_pcs_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x5487dbda peci_temp_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xad45cd0f peci_mmio_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0xeea04146 peci_pci_local_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x032e24b6 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x0697f240 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x159d2372 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1a106659 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x238cf966 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2bd2c268 pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3528efa2 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x36dc4dca pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4baee2d1 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4dd3e9e1 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x677e5367 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x948ff48f pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x97c3e032 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa9478dc1 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xacd390f9 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb6140372 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xbed79754 pmbus_unlock drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc41ea416 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc94cc865 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd324ae3f pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf5e60a85 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x2096a75e sx_common_probe drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x3881db47 sx_common_read_proximity drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x513beb11 sx_common_write_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x87450b93 sx_common_read_event_config drivers/iio/proximity/sx_common +MCB EXPORT_SYMBOL_GPL 0xf44ee2ac mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xfa3b0536 mcb_unregister_driver drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x3ed2de5e ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x7a10b5c8 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x23b89548 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x04b510a5 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6a5f718f nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x936b1ffa nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa071f335 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc473dcfc nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd0cd067f nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe41eb221 nvme_find_get_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x03baf200 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x06ce1987 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0cbd15ae peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x14068ffb peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x207a19c5 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2a7fe3df peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x37072a4e peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3aeb0a36 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3c6bdd78 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3fd40184 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x49f5101b peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x52c48b31 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x543373e6 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x681c4e7e peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x769cda79 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x79360041 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7f6a9e25 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8c5d2027 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8e1749fd peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x918db4a0 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa1eef435 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa6f82687 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa818b069 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcf74e06a peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd22510d5 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdfb83d23 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xeb19f334 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xedb20bf4 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf53ba4b9 peci_request_dib_read drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x372d9c00 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x387b4a1c peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x5456ccb1 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x735d75e8 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xe7b6c336 peci_mmio_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x11292a96 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x27048aed pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2c7ea6dc pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2ec4dd56 pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x54f59893 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x592786f1 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x62255745 pmbus_unlock drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x66503614 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x687ecd33 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6fb2f48f pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x89597932 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8ed73be5 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x984b7020 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9bfacfd5 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9dc44164 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbdea910d pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc12dff1f pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc8228d99 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xca113907 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xda37dffc pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe50e47c7 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x1a6e3d83 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x216db39d sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x5a94846e sx_common_get_raw_register_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x67402e7c sx_common_read_event_config drivers/iio/proximity/sx_common SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa34c7541 sx_common_get_raw_register_config drivers/iio/proximity/sx_common -SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x96da6f4d serial8250_pci_setup_port vmlinux -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x128482ba hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd4a7c749 sx_common_read_proximity drivers/iio/proximity/sx_common +SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0xe9c72a1d serial8250_pci_setup_port vmlinux +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x09d86896 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b416df1 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x413f44b7 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xc9080abf hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xf4698c25 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x28fccdf0 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x3f47ddf9 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xcf855d46 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xa6e35f18 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xa82f0c7c hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xa33a35fd cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xf109fb17 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xf17acb17 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x1c4be5c0 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x232029cb cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x008ba162 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x04afe2fe cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x34128963 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3a63c045 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x795b0109 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xa933b64b cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xff53901d cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x43b3602e cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x4b26f796 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x8a652ca0 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x05482545 cs35l56_irq sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x133e4311 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x36d48f29 cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x5e157c1a cs35l56_init sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x6c85f4c5 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x8403f0b6 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xd404a337 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xf2589f65 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x035513e1 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x203706fc cs35l56_init sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x2067a2b8 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x2641b55b cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x3c4bea83 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x58c76dd7 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x75a19627 cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x96202d5c cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x05c2529e cs35l56_tx_input_values sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x2c459dbf cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x312c0e0f cs35l56_dsp1_regions sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x5bc84b19 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x64e759e4 cs35l56_tx_input_texts sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x7a6e214d cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x88762c92 cs35l56_get_bclk_freq_id sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcc3b2792 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x9a109b60 cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcd5438ad cs35l56_fill_supply_names sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xd8b13b64 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0678acd4 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0724d68d cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3a703530 cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x40997d7f cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x574ac2f6 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9d7226d7 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa3dc3fc4 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xe32ba9cc cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4096d262 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4381f7e1 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4e09919c cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5645501e cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x58b33ce4 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5a93d2a5 cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x613881e9 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x78605bc8 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7b16df57 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x96828c79 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae4be5c4 cs42l42_irq_thread sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb9c8662f cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc02e2e47 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc4d1f71c cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd68aa883 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xdaaa653b cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xdbcccdc5 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe13d2528 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf732d418 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x54bf32c1 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd017ac57 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd4cd9d5e cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xeccd12cf cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xa6e26899 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x09351149 tasdevice_prmg_calibdata_load sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1a949c7c tasdevice_select_cfg_blk sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1ab9b7d9 tasdevice_select_tuningprm_cfg sound/soc/codecs/snd-soc-tas2781-fmwlib @@ -28711,28 +28735,27 @@ SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xa7d17083 tasdevice_rca_parser sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfa72134b tasdevice_dsp_parser sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfe3a6722 tasdevice_prmg_load sound/soc/codecs/snd-soc-tas2781-fmwlib -SOUNDWIRE_INTEL EXPORT_SYMBOL 0x523fa6e7 sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL EXPORT_SYMBOL 0xc1c75221 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x22145458 sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x685b0409 sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x6c479c77 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x14f91412 sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x8701e0d4 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1114cd71 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x207d9aba sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x351e0f3a sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xfb7bb2d1 sdw_intel_probe drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x06ba7275 dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0c072601 dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x19ba56de dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x513b62de dw_spi_dma_setup_generic drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6f2ed7a8 dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb12db38c dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb7a66215 dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf34c45a5 dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf5f9f897 dw_spi_add_host drivers/spi/spi-dw +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xba4e8acb sdw_intel_exit drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x631591cc dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x67c3fcd3 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6ba3864f dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8764ebe9 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa068d389 dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa4730698 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa829cf17 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xcbea3147 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xfc50ff0b dw_spi_remove_host drivers/spi/spi-dw SUNXI_CCU EXPORT_SYMBOL_GPL 0x079708d7 ccu_gate_helper_enable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x0a9707d3 ccu_mux_helper_get_parent vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x0c64ee0e ccu_sdm_helper_enable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x14438263 ccu_frac_helper_read_rate vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x1f23b840 ccu_nkmp_ops vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x30f76ac3 ccu_pll_notifier_register vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x3e362444 ccu_frac_helper_is_enabled vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x45837646 ccu_sdm_helper_is_enabled vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x50165be0 ccu_mux_notifier_register vmlinux @@ -28740,9 +28763,9 @@ SUNXI_CCU EXPORT_SYMBOL_GPL 0x5cddbcc6 ccu_nm_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x61abda39 ccu_mux_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x6668446b ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x6f145175 devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x7279ee3e ccu_mult_ops vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x72f551be devm_sunxi_ccu_probe vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x7847755f ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x814aca05 ccu_helper_wait_for_lock vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x831d58e6 ccu_gate_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x844f1c47 ccu_mux_helper_set_parent vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x8a845fdb ccu_nk_ops vmlinux @@ -28765,26 +28788,27 @@ +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf6c142cd ccu_pll_notifier_register vmlinux TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x0a097ed8 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x12712704 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1b64010a usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x03242d99 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x172fb17e usb_stor_resume drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1c1a173c usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2cc3187b usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x37eb91ef usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x45dbfb43 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4c09b9ad usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x55f3f0e1 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x583982d2 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5a1dd402 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5b256535 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5bababef fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x66dfa25c usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7c8a6846 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x850c622e usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x924d78cd usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa52b8577 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb1395efa usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb3a536c1 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbb07b4ad usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc5f52d03 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcb2aced3 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf9b36f40 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1f2f6cda usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x318fde84 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x369ed05b usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3929055b usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5393638d usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x58186be1 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5c35977a fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5dc62bf7 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6b3979a7 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6d40d770 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8279e6d4 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x906eec90 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x94ead28b usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x961c67c9 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9950e7a8 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc17c8da3 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc71c8830 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd06d8fbe usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdcc8f4fc usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe263ff81 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xede24656 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf17a80f3 usb_stor_control_msg drivers/usb/storage/usb-storage diff -u linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic-64k.modules linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic-64k.modules --- linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic-64k.modules +++ linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic-64k.modules @@ -207,6 +207,8 @@ adl_pci6208 adl_pci7x3x adl_pci8164 +adl_pci9111 +adl_pci9118 adm1025 adm1026 adm1029 @@ -228,6 +230,7 @@ adp5589-keys adp8860_bl adp8870_bl +adq12b adrf6780 ads7828 ads7846 @@ -255,10 +258,12 @@ adv7511 adv7604 adv7842 +adv_pci1710 adv_pci1720 adv_pci1723 adv_pci1724 adv_pci1760 +adv_pci_dio advansys adxl313_core adxl313_i2c @@ -310,6 +315,8 @@ aic79xx aic7xxx aic94xx +aio_aio12_8 +aio_iiro_16 aiptek aircable airo @@ -360,7 +367,14 @@ amlogic-gxl-crypto amlogic_thermal amphion-vpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 amplc_pci236 amplc_pci263 ams-iaq-core @@ -726,6 +740,7 @@ budget-patch bxcan c67x00 +c6xdigio c_can c_can_pci c_can_platform @@ -774,8 +789,10 @@ cavium_ptp cb710 cb710-mmc +cb_pcidas cb_pcidas64 cb_pcidda +cb_pcimdas cb_pcimdda cc10001_adc cc2520 @@ -996,6 +1013,7 @@ com90io com90xx comedi +comedi_8254 comedi_8255 comedi_bond comedi_example_test @@ -1175,7 +1193,16 @@ da9150-gpadc da9210-regulator da9211-regulator +dac02 daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 davicom dax_cxl dax_hmem @@ -1281,6 +1308,7 @@ dme1737 dmfe dmi-sysfs +dmm32at dmx3191d dnet dp83640 @@ -1334,6 +1362,12 @@ dst dst_ca dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x dt3000 dt3155 dt9812 @@ -1653,6 +1687,7 @@ fit3 fixed fjes +fl512 flexcan fm10k fm801-gp @@ -2453,6 +2488,7 @@ igc igorplugusb iguanair +ii_pci20kc iio-mux iio-rescale iio-trig-hrtimer @@ -3384,6 +3420,7 @@ mdio-thunder mdio-xgene mdt_loader +me4000 me_daq mediatek mediatek-cpufreq @@ -3516,6 +3553,7 @@ mp5416 mp8859 mp886x +mpc624 mpi3mr mpl115 mpl115_i2c @@ -3680,6 +3718,7 @@ mtouch mtu3 multipath +multiq3 musb_hdrc mux-adg792a mux-adgs1408 @@ -3880,6 +3919,13 @@ 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_routes_test @@ -4293,8 +4339,20 @@ pcie-rockchip-host pcie-tegra194 pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad pcmcia_core pcmcia_rsrc +pcmda12 +pcmmio +pcmuio pcnet32 pcrypt pcs-mtk-lynxi @@ -5268,6 +5326,9 @@ rtc-wm8350 rtc-x1205 rtc-zynqmp +rtd520 +rti800 +rti802 rti_wdt rtl2830 rtl2832 @@ -5371,6 +5432,7 @@ s3fwrn5 s3fwrn5_i2c s3fwrn82_uart +s526 s5c73m3 s5h1409 s5h1411 diff -u linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic.modules linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic.modules --- linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic.modules +++ linux-oracle-6.5-6.5.0/debian.master/abi/arm64/generic.modules @@ -207,6 +207,8 @@ adl_pci6208 adl_pci7x3x adl_pci8164 +adl_pci9111 +adl_pci9118 adm1025 adm1026 adm1029 @@ -228,6 +230,7 @@ adp5589-keys adp8860_bl adp8870_bl +adq12b adrf6780 ads7828 ads7846 @@ -255,10 +258,12 @@ adv7511 adv7604 adv7842 +adv_pci1710 adv_pci1720 adv_pci1723 adv_pci1724 adv_pci1760 +adv_pci_dio advansys adxl313_core adxl313_i2c @@ -310,6 +315,8 @@ aic79xx aic7xxx aic94xx +aio_aio12_8 +aio_iiro_16 aiptek aircable airo @@ -360,7 +367,14 @@ amlogic-gxl-crypto amlogic_thermal amphion-vpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 amplc_pci236 amplc_pci263 ams-iaq-core @@ -726,6 +740,7 @@ budget-patch bxcan c67x00 +c6xdigio c_can c_can_pci c_can_platform @@ -774,8 +789,10 @@ cavium_ptp cb710 cb710-mmc +cb_pcidas cb_pcidas64 cb_pcidda +cb_pcimdas cb_pcimdda cc10001_adc cc2520 @@ -996,6 +1013,7 @@ com90io com90xx comedi +comedi_8254 comedi_8255 comedi_bond comedi_example_test @@ -1174,7 +1192,16 @@ da9150-gpadc da9210-regulator da9211-regulator +dac02 daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 davicom dax_cxl dax_hmem @@ -1280,6 +1307,7 @@ dme1737 dmfe dmi-sysfs +dmm32at dmx3191d dnet dp83640 @@ -1333,6 +1361,12 @@ dst dst_ca dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x dt3000 dt3155 dt9812 @@ -1652,6 +1686,7 @@ fit3 fixed fjes +fl512 flexcan fm10k fm801-gp @@ -2452,6 +2487,7 @@ igc igorplugusb iguanair +ii_pci20kc iio-mux iio-rescale iio-trig-hrtimer @@ -3383,6 +3419,7 @@ mdio-thunder mdio-xgene mdt_loader +me4000 me_daq mediatek mediatek-cpufreq @@ -3515,6 +3552,7 @@ mp5416 mp8859 mp886x +mpc624 mpi3mr mpl115 mpl115_i2c @@ -3679,6 +3717,7 @@ mtouch mtu3 multipath +multiq3 musb_hdrc mux-adg792a mux-adgs1408 @@ -3879,6 +3918,13 @@ 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_routes_test @@ -4293,8 +4339,20 @@ pcie-rockchip-host pcie-tegra194 pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad pcmcia_core pcmcia_rsrc +pcmda12 +pcmmio +pcmuio pcnet32 pcrypt pcs-mtk-lynxi @@ -5268,6 +5326,9 @@ rtc-wm8350 rtc-x1205 rtc-zynqmp +rtd520 +rti800 +rti802 rti_wdt rtl2830 rtl2832 @@ -5371,6 +5432,7 @@ s3fwrn5 s3fwrn5_i2c s3fwrn82_uart +s526 s5c73m3 s5h1409 s5h1411 diff -u linux-oracle-6.5-6.5.0/debian.master/abi/armhf/generic linux-oracle-6.5-6.5.0/debian.master/abi/armhf/generic --- linux-oracle-6.5-6.5.0/debian.master/abi/armhf/generic +++ linux-oracle-6.5-6.5.0/debian.master/abi/armhf/generic @@ -1,127 +1,127 @@ -BRCMFMAC EXPORT_SYMBOL_GPL 0x28b1d3d4 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0xd203a7ca brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x12f90cef counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x1795dacc devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x48b893f4 counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x8ab518c1 counter_put drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x8ac67611 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x8b77acd2 counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xe34feedf counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xe7643fc9 counter_unregister drivers/counter/counter -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x44d063fc crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4ef3074a crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xbddccde0 crypto_cipher_encrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x0205b057 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x04c8481e is_cxl_port drivers/cxl/core/cxl_core +BRCMFMAC EXPORT_SYMBOL_GPL 0xb8fcc01d brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xe0a826b6 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x34ef1972 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x709b0c10 counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x70b34d94 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7dfded5b counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x9b48f449 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa1fc5fe4 counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xe002599c devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xe016abfa counter_priv drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x04117077 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x4d63e805 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9b829bce crypto_cipher_encrypt_one vmlinux CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x0f6654fa cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0f81c5e7 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x148870ed cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x17970fdf cxl_clear_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1b25ff59 cxl_mem_get_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1d3dbb41 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x21fdec69 cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x28415299 cxl_map_pmu_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2b571204 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2e970373 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2ec72964 cxl_mem_get_event_records drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3084abe6 cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3305ea04 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x06ab5941 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x07c26538 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0b6cef5a cxl_mem_sanitize drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x126967c1 cxl_add_to_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x246a4048 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x24d2a5da to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x28fc8781 cxl_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x290e9e39 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29ce7c51 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x325472b0 cxl_memdev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x32a79e7b cxl_probe_device_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x3435ff8d cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3c9e9f78 cxl_memdev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3dad6327 cxl_port_to_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3dcd1d51 cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3ead0ab1 cxl_find_regblock_instance drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x45afdde1 cxl_setup_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4b34d579 devm_cxl_pmu_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4c7d84b9 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4d0a3e49 cxl_mem_sanitize drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4ef2dbe9 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5466fa44 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x57fc612e to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x583f4e4d cxl_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x592985f5 cxl_pci_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x61dd3cdc find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x66075c70 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x678789c5 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x694ab97a cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x69b96505 cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6df2babd cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x35f0bec3 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3c92213e cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3cd2bab4 cxl_poison_state_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3ce61dc5 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3d2629c5 is_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3dab5a21 cxl_find_regblock_instance drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3e4af4dd devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x40f880da schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x41e02ac6 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x453f310d devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x46452873 cxl_count_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4be12a35 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x52be13ed cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x52f01452 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5f0a45b5 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x682e28d0 devm_cxl_dpa_reserve drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6f429ce3 cxl_cor_error_detected drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x714ffc45 cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x75fe4aa9 to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x78d80e8b to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7d527813 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x70be7354 to_cxl_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x72dfa4d0 cxl_mem_get_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x72e6a73b __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x738abcf6 devm_cxl_pmu_add drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x7fa99f75 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x83c0f4cf set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x801a322b cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8394c5ed devm_cxl_register_pci_bus drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x87358246 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x88749916 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x892b221c cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x89787e99 is_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8cad4137 cxl_set_timestamp drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9045600f schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x96949d2b is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x976d26aa is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9806d5be is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8665bc54 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x87c06c04 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x89410dab cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8ae6cb9a cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8af38b4d cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8bfd3a18 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8d3dd50c to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x954b18c5 to_cxl_dax_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x95b20b66 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x976d007c cxl_map_pmu_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x977184ae devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x97e09281 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98144a4d cxl_set_timestamp drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa0639d36 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa21c4d53 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa36608bf to_cxl_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa984cb9f to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xac9df000 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xae352b0d cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb068176b cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb4f7cdef cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb8fea56f devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb98b44db read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbb6cf48c devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbc557194 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc02d13b8 cxl_inject_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc1f177fe cxl_dvsec_rr_decode drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc2e92b78 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc69eb914 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcb3be736 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xce05265f cxl_poison_state_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xce44fe27 cxl_trigger_poison_list drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd12d48b5 cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd4975923 cxl_count_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd719c628 devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd9341133 cxl_cor_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xda14cf28 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xda47a0f7 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe0d4b6d2 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe708a509 cxl_add_to_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xeda679bc to_cxl_dax_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xee07c155 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf155782a cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf9b5f87b to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf9f1d8d6 devm_cxl_dpa_reserve drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xff515e6b is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xff5d6db0 cxl_probe_component_regs drivers/cxl/core/cxl_core -DMA_BUF EXPORT_SYMBOL_GPL 0x01bd01e3 dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x050a6e4f dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0b8f0254 dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0ed654e1 dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x1cc64d8c dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x24a57362 dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x25cb9bfc dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x26a00723 dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x4823146d dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x558e82c4 dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x63234aec dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x63cc18b6 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x6710d9ef dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x7169a5c1 dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8c0f06f1 dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x92c2074a dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xa3ee4a28 dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc3db8109 dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd8396513 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xdbd2e2dc dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf3cd016d dma_buf_pin vmlinux +CXL EXPORT_SYMBOL_GPL 0x9a04f056 cxl_setup_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9bff5d5b cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa39a8ebe cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa97aaf3f cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab8dbe81 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xad14c3c7 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaefbeb52 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xafb626e6 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb07b095d cxl_mem_get_event_records drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb0f45ca3 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb401c6b0 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb66c098b cxl_pci_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc03697dd is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc29a370d set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc65c8eaa find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc852d7fb is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcea3a34a cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcf5f0ded cxl_inject_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcfcb4a79 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd49c1a15 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd9e61b5a cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xda1d5368 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdbfe6169 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xddcf25f1 cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe235f0e9 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe49b2427 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe868214c cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe9115fe6 cxl_trigger_poison_list drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf2d9599d to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf3e509d4 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf5828670 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf966d80e cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfa444325 cxl_clear_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfce176ec to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfda49a59 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe8c443b read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfea3536f cxl_dpa_debug drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x02d54cbd dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0baa90a7 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x253c594b dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2a8deca3 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x30593975 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x312d520e dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x33bb1db3 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3fab9fc9 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x44bd74f6 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4a00e195 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4a7d9034 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4ca10c3f dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x690e6cb2 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x90963327 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9ede5545 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9fd513c7 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9fdfc364 dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd8e9ee0f dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdd92b40d dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe3dc19c7 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xebcf3558 dma_buf_unpin vmlinux DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux @@ -139,8 +139,8 @@ EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x1c3e6e5b poly1305_init_arch EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0x6ddf27bc poly1305_update_arch EXPORT_SYMBOL arch/arm/crypto/poly1305-arm 0xf39f5240 poly1305_final_arch -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x5c7c13fb crypto_sha256_arm_finup -EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xbf4cfa35 crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x01549010 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x87cb9cd9 crypto_sha256_arm_update EXPORT_SYMBOL arch/arm/lib/xor-neon 0x2e9a6ad4 xor_block_neon_inner EXPORT_SYMBOL crypto/blake2b_generic 0x99d7fe16 blake2b_compress_generic EXPORT_SYMBOL crypto/ecc 0x16e410ff vli_from_be64 @@ -173,38 +173,38 @@ EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0xb343cc5d suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x089c61f8 bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0x0eb2dd27 bcma_core_irq +EXPORT_SYMBOL drivers/atm/suni 0x721c612f suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x7bff965c bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xa32746f9 bcma_core_irq EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x37dd7c46 btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x300e9eb4 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x3d306b09 mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x3f7f0ef3 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x8d5834e0 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xf17cdd6c mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x36c0105b ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4da0375b ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5c951921 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6901d9e0 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fe670c6 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9559ef77 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9b63b0eb ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe595adf0 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe98c507d ipmb_checksum EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user @@ -224,31 +224,31 @@ EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xec355a0f kcs_bmc_read_status EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xef0b2ab5 kcs_bmc_unregister_driver EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf511c601 kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4bd44804 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6fef1dd2 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7890e63e st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7f1dfe82 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x527c375f xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xbffb06f4 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xeecf8d23 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x0eed4e2a xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1c153d2d st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x458ef26b st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7717a599 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd1be1e7b st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x1cb20836 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x3d74df56 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xacabf894 xillybus_find_inode EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb224da4c xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcb7b5ad5 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x4e1fb3b6 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x4e177cbc xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x824c52a7 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8c93018d xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5a05a302 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x84e1eba6 atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xaf7874bb atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xcd402c4d atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfa2eaef9 atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x0c119109 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3919bc42 caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x66e0fa00 gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9a5da55f caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xee21120d split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1bc0d37e caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x469eac60 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa2d3ecc8 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb8a0c4ca split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe954b0b3 caam_jr_alloc EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly @@ -267,693 +267,693 @@ EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash -EXPORT_SYMBOL drivers/crypto/caam/error 0x2431b08c caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x722f1cd7 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end EXPORT_SYMBOL drivers/crypto/caam/error 0xbb7c7f1e caam_dump_sg EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x09c38a6c xdma_disable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x6e847f42 xdma_enable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xbbcf984e xdma_get_user_irq -EXPORT_SYMBOL drivers/firewire/firewire-core 0x25980f7c fw_iso_context_start +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x64f21e25 xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x9737c24f xdma_get_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x98ddf4b8 xdma_enable_user_irq +EXPORT_SYMBOL drivers/firewire/firewire-core 0x00626761 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12c0cf11 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12e2c29d fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x13f78668 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x166d7aa6 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x175400f7 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1ef238ba fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x283b4585 fw_iso_context_flush_completions EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b3d5a06 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c24a7bb fw_send_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x408023c7 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x410c606c fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x42f1e301 fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x44e971c0 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x45d24efd fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4951eb92 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5152e7cd fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dae71c9 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x42f33ac3 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x48c6fb7e fw_bus_type EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x63d18fe6 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5705839f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x57ab890d fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x58e2bc59 fw_iso_context_create EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x70a39269 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cb853cd fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e3c365c fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ecdbc06 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x793c8e63 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e601a23 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x85549f2c fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x887437b2 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c6381ac fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e958e9a fw_device_enable_phys_dma EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ec4e37e fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x95a260d2 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c5d12d2 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9099a758 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa5f303ab fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae864b56 fw_run_transaction EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb929f6ea fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbc67b069 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xbfdaa6fe fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd7a01fb5 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdbb05fcc fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe20b09d8 fw_iso_context_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe7cb5563 fw_core_add_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd18a784 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xff61bbda fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb189f67 fw_iso_context_start EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3f5147b8 imx_dsp_ring_doorbell EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xe9402607 imx_dsp_request_channel EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xfe04ba4d imx_dsp_free_channel -EXPORT_SYMBOL drivers/fpga/dfl 0xeba6e4cb __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xfa4e37ae dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0x9f5035f1 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xff394817 dfl_driver_unregister EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x1b5427ad sysconfig_probe EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0ea5d74b amdgpu_xcp_drv_release EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0xb18a62c1 amdgpu_xcp_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x03a916d5 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0581e782 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06877d9c drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06dc05ff drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0928170f drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0aa60f0d drm_dp_atomic_find_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0ba5dd20 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0de634d1 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13b95451 drm_dp_read_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14615863 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0550a772 drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07a67f00 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09759d03 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0a06f46e drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0fde43e0 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11790823 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11ea69b0 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12733e7e drm_dp_dual_mode_max_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x163c326b drm_dp_read_downstream_info EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1860dbbc drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x17a6c6a4 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18223db5 drm_scdc_get_scrambling_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1ca25652 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20381759 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20945715 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20dd0144 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21ccab56 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b32c00a drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x22629325 drm_dp_read_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x249845dd drm_dp_send_power_updown_phy EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24ada755 drm_dsc_set_rc_buf_thresh EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26eede1c drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c0de4b9 drm_dp_mst_root_conn_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e59d5f3 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a36474d drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c182a7b drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2d38f50f drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f107683 drm_dp_pcon_hdmi_link_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fc6087e drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x30787dc8 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32baf38d drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x331360cb drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34dd7e25 drm_dp_128b132b_read_aux_rd_interval -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34f152ae drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x356bac2f drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3605f58d drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36d34b2f drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x30517c26 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x379f079d drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x38d576bf drm_dp_read_lttpr_phy_caps EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3c06d309 drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e4ea8a4 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4316c0a8 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43d16730 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3f10f516 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40b667be drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41627e2e drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43000d88 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43144aef drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4358ab88 drm_dp_dual_mode_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4933d3e7 drm_atomic_get_new_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e4063cc drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x52692572 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4673d855 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4863fe25 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49d9f8f7 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b2a0927 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4f5081bc drm_dp_pcon_pps_default EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x54e26b01 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5603cef7 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5668789d drm_dp_start_crc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57492fd2 drm_dp_send_real_edid_checksum EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x587da3f5 drm_lspcon_set_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d9746b drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x595c1f2e drm_atomic_get_new_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a410061 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a60cd0c drm_dp_add_payload_part1 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x60578764 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5bd25361 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c21f246 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c322cd9 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ce8b123 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5d341b99 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e710c04 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f1bc652 drm_dp_pcon_pps_override_param EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627ba04b drm_dsc_set_const_params EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a690b1 drm_dp_dpcd_read_phy_link_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64b5cff6 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65811cdb drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6898b759 drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68f15b76 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69e53246 drm_hdcp_update_content_protection EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6afb3172 drm_atomic_get_mst_payload_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d260dfb drm_dp_atomic_release_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e442d07 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e769b79 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f26c487 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x701eaa6d drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6bc85b5c drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6bcbfdce drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6dae4e41 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6dbaa8b7 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70497df3 drm_dp_mst_hpd_irq_handle_event EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75622688 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75a7fbad drm_dp_mst_edid_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x77896075 drm_dp_cec_unset_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79008c7e drm_dsc_setup_rc_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f175de8 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x80e2f197 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81faec4d drm_dp_read_lttpr_common_caps EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x883ba6c3 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a1e39a3 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86a7fe1a drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86b4fb19 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x877bad9a drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8949e203 drm_dp_cec_register_connector EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f56f224 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f671058 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f6ff2d9 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ff27746 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x91d35d02 drm_dp_dpcd_probe EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x94d16e99 drm_dp_add_payload_part2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95883bb4 drm_dsc_initial_scale_value -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x96274aed drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x96c8c162 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9934275c drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9b242d68 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9b8973df drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9c570d04 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa08533ef drm_dp_mst_edid_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa16547a7 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1d82362 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x96b9c1e2 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9e545309 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa05f9263 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0b5edd4 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa182eb6d drm_dp_read_downstream_info EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2219a87 drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2323890 drm_dp_remove_payload -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa233e1af drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa50acd26 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5c4a687 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa795ae56 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2192d9c drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa458fd84 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4ade59f drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa578c677 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa581dcb2 drm_dp_pcon_reset_frl_config EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaa65543a drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xae22576b drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xac9d8655 drm_dp_mst_hpd_irq_send_new_request +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaec43703 drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf30f38c drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb22a463f drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4820e9e drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5170abe drm_atomic_get_old_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb71694ec drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7255bde drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8627853 drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcbca4e2 drm_dp_mst_hpd_irq_send_new_request -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbd25bef9 drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbe983247 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbeb9bcd3 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf28c57f drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb575c0ba drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7aeb183 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcd0208d drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbe6f17f0 drm_dp_atomic_find_time_slots EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc274176a drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4ed7f79 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc313a48b drm_dp_downstream_debug EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5da6eee drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5f1602e drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc6a96cde drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc703c617 drm_dp_pcon_pps_override_buf EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7a5590e drm_dp_mst_hpd_irq_handle_event -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7e7acfc drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7ee2b91 drm_dp_send_real_edid_checksum EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc9ef81c6 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca3ed6b5 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb2be8fe drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb733c6b drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca4fd92c drm_dp_cec_set_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcdff6970 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf81033a drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcfedaf4a drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd24d96a drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce9f16ed drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf89144f drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0125a9c drm_dp_mst_atomic_check EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0e95456 drm_dsc_get_bpp_int -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd4c51d58 drm_dp_read_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd58c7f1d drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd119278c drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd1b5c4e5 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd3bd1ff2 drm_dp_pcon_frl_configure_2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5afe7b5 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd8641210 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdbeafe9a drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1ea5b38 drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2273fd2 drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd734862e drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda1fa37f drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc079e08 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd74b7a3 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde7e949e drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdfbee99e drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe085ae60 drm_dp_mst_put_port_malloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2468a48 drm_dsc_flatness_det_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2a5c393 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3ea7a7a drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4a39791 drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe59fea82 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe67b155b drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe6c2a930 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe905f3eb drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe6b43579 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe8083d42 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xea12cc37 drm_edp_backlight_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf3337910 drm_dp_mst_update_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4e40930 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4ffaebf drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf5599ec1 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeede576e drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf1fb56db drm_dp_aux_register EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8be9306 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfab2e668 drm_lspcon_set_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfde8e5db drm_scdc_get_scrambling_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm 0x006d7c74 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b6e0ad drm_connector_oob_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01cb7e89 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01dc291e drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0270b865 drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x033e826c drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe221866 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfede7bba drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f04e93 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01045f0d drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x012a5467 drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0148e448 drm_plane_create_rotation_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x041f6e52 drm_get_tv_mode_from_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x047e5e85 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04f7439b drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05056e90 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x053828a0 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x062665a4 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x083bf448 drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08ac6417 drm_gem_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x092292c5 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09786347 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a59d5e8 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04f68c02 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0630264c drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x066289aa drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06bdbd1f drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06cacb5b drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x083cb172 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0866fe7d drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x096309d6 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09fe050e drm_property_create_bitmask EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d195cd4 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d3ac6ba drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a7c2b0c drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b4090e0 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b9fef02 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b9ff4ce drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bab07b9 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bb943c8 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d32d25f drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d66b1c5 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d882de1 drm_crtc_arm_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f0a3ded drm_vblank_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8b448d drm_gem_dmabuf_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1018188b drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x104cb226 devm_drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1246cbe4 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13300963 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1342a042 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13c4ef41 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d908ce drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1406643a drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14c749cd drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1508dd98 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15aefd28 drm_debugfs_add_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15ffe5c9 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b453e8 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1222ca47 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x132bbaba drm_connector_set_tile_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c89a6b drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17b621f4 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19316dca drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c8df5b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16e43f24 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ae4d79 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x185be778 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18793397 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a05a20 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a345ea8 drmm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd12d26 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1be850cf drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d0612c1 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dff8b7b devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec00e58 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2087c576 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20e8264a drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x210a0b12 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1afe4933 drm_analog_tv_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b399d77 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5af3d5 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d596e9b drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e03b12b drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eaf9c24 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f2be6d0 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f79686e drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20c90deb drm_object_property_get_default_value EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22561e1b drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23cf1722 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2216e249 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22da0a9c drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x231d2552 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23bf2dcc drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24442506 drm_of_crtc_port_mask EXPORT_SYMBOL drivers/gpu/drm/drm 0x2494ced8 drm_driver_legacy_fb_format EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25b80ba4 drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25737455 drm_crtc_vblank_helper_get_vblank_timestamp EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27bd4beb drm_gem_lru_move_tail_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2761d008 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2840d025 drm_invalid_op EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b2249d drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28d9fc43 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2925d36a drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x294c7a53 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ca2bcf drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28eb242f drm_connector_update_privacy_screen EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a1e0ed2 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a32c15d drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a5b8980 drm_property_create_object EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ab683ee drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac4f199 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c600861 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d1873ed drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d295c6e drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d5e8ec3 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e5b797b drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac6315b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c71f872 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9eaf92 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cdf646d drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e30159d drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ea0f1e6 drm_dev_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2feaa3b6 drm_atomic_get_new_crtc_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3007d353 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3119feee drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x312bb92c drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x313fd430 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3155b719 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x316730ce drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f0d4ddf drm_edid_connector_add_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8f2876 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2faab42d drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x303e0dca drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x303f0e7c of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x308d1fa3 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f1d1b2 drm_vblank_work_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3223f575 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32528171 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x327d7fbe drm_connector_attach_max_bpc_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3692775d drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d742b3 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37db0e44 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a384d0 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ca6f54 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x330208f9 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3316af82 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x337acfae drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x339a8262 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3404d2a1 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35534885 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36ad8048 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c38adb drm_crtc_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x384599c3 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3861fe47 drm_atomic_get_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3882ee2c drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x389b329e drm_client_modeset_commit_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x391d8f2c drm_universal_plane_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x39ccfa6f drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a284163 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3981305b drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c6fba6 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39df7796 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a9b2910 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab04635 drm_mode_validate_ycbcr420 EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b1251b2 __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b1cd9cb drm_mode_create_tv_properties_legacy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b5e0061 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6624e0 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4a3968 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c787d02 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b784509 drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d442612 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d95e248 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e54bd74 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea65a88 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e483cfe drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ecdf8e7 drm_syncobj_get_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x400e6fa7 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x408500ac drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4357e81a drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43aa8606 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4400aa2d drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f4b32a3 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f71a552 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40ece62a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41624bd9 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x417bdebe drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41bfb8e2 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41f50360 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4339ae58 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43a7a053 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e93d9c drm_crtc_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4497cc4a drm_sysfs_connector_status_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44bd1322 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x452a21bd drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45acb024 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46624751 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x466e8fd0 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x470cf44a drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d58470 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47e026c1 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4839156a drm_gem_private_object_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x485107bb __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4858520b drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bde83a drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4991069e drm_show_fdinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46714040 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47344641 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48aa9805 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49086ff2 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49603142 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a1be510 drm_connector_attach_edid_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a49ae42 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b11750b __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aad44ea drm_plane_get_damage_clips_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc20082 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce84395 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf0ea37 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c7fef6b drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d6402ec drm_hdmi_vendor_infoframe_from_display_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df1d4d2 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e6e9676 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4a6aa7 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e717103 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e9d55e8 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eee01d7 drm_gem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50166d51 drm_gem_vunmap_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x508ffb02 drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x509985f9 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a0c756 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a9cd40 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x512deba6 drm_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5134e3f7 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5137b282 drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x522718ae drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e3c0e3 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53012fba drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x533b916c drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5397fddd drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d0da53 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5425c3cc drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52337ae4 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x523aa24f drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5242065d drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e576fd drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x540a23d3 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5455dd2c drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x545969a2 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c28d45 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x553ce3de drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55559258 drm_connector_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56d43c82 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57030186 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562236f6 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e7b914 drm_cvt_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x585aeadd drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5867d74f drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58936f7a drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e3cd22 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f64029 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58fe9daf drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c361b3 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5844145e drm_gem_prime_export EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x592236aa drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59553f32 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a0fd69c drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a5d9513 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c77fde5 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca19b66 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f5279af drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a798036 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af088bc drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c027bd9 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2b17bc drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d8da9ad drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5da948ea drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df64163 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df873b6 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e786062 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e84e750 drm_connector_list_iter_begin EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f84aeca drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fa3572d drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x601ade61 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x603e10cc drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6098d7f4 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6025318b drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x605962cd drm_connector_set_panel_orientation_with_quirk EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a1ac52 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60aff4de drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d6bf9f drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62514289 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62ee5cf5 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x630300b5 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63f52771 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6411ed58 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x647e1441 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64fd09ea drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60fd4cb8 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60fe2824 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x613778e4 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6140e45d drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x620f8697 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622258e5 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6275af37 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6315a362 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x635ed9da drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x642ac92b drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x650fbd94 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x655d89cf drm_connector_set_vrr_capable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6616bd9e drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6677d4b6 drm_gem_lru_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6725cb86 drm_crtc_next_vblank_start -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67348353 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x678d7760 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x683a9ce5 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65f57068 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6755437d drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67b9e2b8 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67fed5fa drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1287c0 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aaa8d04 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x699d30fc drm_crtc_set_max_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b4bdb70 drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b9b183a drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3eeee1 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c5df5d0 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c7063d2 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c925d98 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9a48ec __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ce24a1a drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dae72f9 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e78a5c4 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70ee756d drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bdd3f27 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be9cf06 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c8dd97e drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ceeeae4 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d213ea4 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcc890f drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec205ab drm_crtc_next_vblank_start +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f87276b drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8c77f3 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x707f4733 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71183b38 drm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71646b93 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x719356fe drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7215a347 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73501377 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x736981fc drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d3f403 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d6c29e drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x720f60a7 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x732eaac0 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x740c677e drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x745cceeb drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74e0e0f0 drm_mode_create_scaling_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74efee2b drm_mode_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75414a41 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75596874 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x762c68ef drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75853460 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x762c5900 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7630513a __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76569ea4 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b2e593 drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ba16f4 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76e61222 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77460be4 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7757cd06 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7873b805 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79685df0 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79927836 drm_show_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aabc353 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b1666fc drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b99120d drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ba230dd __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd6744b drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76eff237 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7726a294 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77de005e drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7871e3b5 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7976af87 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a4d7639 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7abf31bc drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ba1d8d2 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ba7c117 drm_writeback_prepare_job EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c886101 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d60719b drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e43b210 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7568a1 drm_gem_lru_move_tail_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d3cb2c2 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3292f5 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6f83e6 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ed629cf drm_show_fdinfo EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f0b9f5b drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f211c84 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fb92f2a drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80dc2387 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82fe9bd5 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x835f852f drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x841c8fe7 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x858d0d0c drm_debugfs_add_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86489425 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b6934c drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8824fc6b drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x891f87ed drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x894f4608 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a165158 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b254236 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b915592 drm_analog_tv_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bbe7923 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0734dc drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce88714 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f7781c4 drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fdb6cff drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x813fcd27 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ba15e0 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8245a562 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8251dc01 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8279fa2f drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8299b47e drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ecfead drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8307f9be __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840ca663 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85376b56 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85461b9c drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x856e0ce1 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x858fd859 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x859234cd drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86cde75c drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86f68c40 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871f7150 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c2eadd drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bc17da drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x897e5b44 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d454a54 drm_edid_read_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d875127 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db6a500 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f48a57b drm_edid_read_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9193d36e drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92286980 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x924c0457 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92584d05 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x938bcb66 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ac2d63 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95aecde0 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d9818d5 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5f2f10 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x905859a8 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9063ded7 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d4a9bc drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9113fbb7 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92e83732 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93b77205 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95147f97 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9561d02f drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d3df26 drm_open EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98558812 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9977f4f6 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x999316c3 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99981859 drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c9740c of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x987b74ba drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x988329e8 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98856e23 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x989e7e82 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99819ea6 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x998d7e7d drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99aa1219 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99bcae9c drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99c99f48 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab1e10f drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b10e4da drm_gem_objects_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b501e03 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8b24a1 drm_crtc_set_max_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c172802 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c1b2825 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8401f1 drm_event_reserve_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cf4ada7 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbfcebd drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f535221 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0bbdb52 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f28065 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c4784e drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df11a7a drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb40881 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7c17f8 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f90efde drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fa3d313 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fe1c520 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0074a7e drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa08f3b86 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14d6c99 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa21a1f1c drm_connector_attach_scaling_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4268e5a drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa453089c drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa48be08d drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d6aa09 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa595afe9 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5f1f9f6 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa730eae3 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7d94ca9 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f56157 drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab3ac3d4 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabde2585 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac1fe4db drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4352cd7 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa44cba19 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa45fd95e drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa499cb6a drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa552f06b drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6923456 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f8f1d4 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa833ea2b drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9d356a8 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa3767fe drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6ea2ce drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa9d7f5b drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd2a995 drm_atomic_state_default_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9aca1c drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xada0433a drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade04c54 drm_hdmi_avi_infoframe_quant_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae48df6e drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae6996d8 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae8a4604 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf4f6cf7 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0260353 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae48dbcf drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaefa0fa5 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf3a88aa drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb025fbf5 drm_mode_create_suggested_offset_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d2fc6a drm_writeback_signal_completion EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb167716f drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1e5cd04 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb20b1198 drm_crtc_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb249dfa1 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d397d9 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb217c04a drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb316b1d3 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3368d24 drm_debugfs_remove_files EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3e3c09c drm_edid_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb45c4a62 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4815564 drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb497327b drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5119c7a drm_gem_private_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xb52cda4c drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb574b9e9 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a31455 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb54eeed4 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55cb438 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5b2fb79 drm_atomic_get_new_crtc_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb62dbdb6 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68a8cf1 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7549517 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7bb9fb0 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7e9276d drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ee2beb drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb905e2eb drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6647f7f drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb78bc12f drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb78e9a1b drm_connector_list_update EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c4492c ___drm_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba049ba2 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba8036be drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0bb0b9 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf64343 of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc3bf8a3 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcdd9aa5 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd2222ca drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd3b74e4 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6b1b6e drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbde096b6 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe22fbfe of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbec52113 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfb25650 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc010fe6d drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f0bc73 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa4d597 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae321b6 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb69ca84 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbed0c0b drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe435143 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe43e13e drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe71ab16 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbefeebf4 drm_gem_private_object_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe0536b drm_atomic_get_old_crtc_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05fee8e drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f9db82 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc34b648d drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36845a0 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc475416b drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc571e83a drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5989cba drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5ebe324 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc61b8e7e drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6e88bf3 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8cb4939 drm_edid_override_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8f1f89d drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9d92e60 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca7136e4 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd157968 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd813307 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcda6a1dd drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc07daf3d drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0862d8a drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0bd2ab5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2980458 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc38ab6fb drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4af8767 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50057ff drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70baea8 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc744d99b drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7acef43 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc805bc94 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8f8c1df drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9436871 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9587711 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad6c1f1 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb31cdcc drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbcf08cd drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbfe8c27 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0ead7c drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd135a4a drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3f2464 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd660ac1 drm_modeset_drop_locks EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4b6e40 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf6ad4a3 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf8969cf drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfba57b7 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce33d5ed drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce6c1a7d drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce8c001e drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf22395d drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd03ab578 drm_crtc_from_index EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0786eb7 drm_edid_connector_add_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13ec380 drm_gem_private_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd330908f drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd432ace5 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd46a02a5 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd50fd622 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5862483 drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a17546 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5f1f880 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd296bd7d __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c9e039 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd30ba6fc drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3e00d6a drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd407945e drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4914902 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd55aebc7 drm_state_dump EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd68ea52d drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d6ba03 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd767e6e1 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78a4278 drm_edid_read EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88344d4 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd915a49d drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9abe9f0 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd82d4baf drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8a542fe drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9903509 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9985819 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad41e85 drm_display_mode_from_cea_vic EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb1ea20 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcae26d2 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb883da4 drm_crtc_vblank_count_and_time EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc28ce3 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddccb453 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea0f2e4 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd7402a9 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddab7d63 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde5e0a2f drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde8490c9 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf373936 drm_print_regset32 EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf579a20 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf524347 drmm_crtc_init_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfc0328d drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe084b904 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1e995e3 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe21cda94 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe253b9f8 drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ab2a0d drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfadbe58 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe01d6a66 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0927661 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe199720b drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1edf82b drm_mode_prune_invalid EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3580ade drm_crtc_vblank_helper_get_vblank_timestamp EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3f9782c drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4c60c0d drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe538dd26 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5446d25 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5526b39 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe59062e8 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe423c92d drm_atomic_private_obj_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66d71c7 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe77076ab drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7c1f710 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7c81367 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e49251 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe641bbdd drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe76c6c63 __drmm_mutex_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8094d9c drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe82147b8 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe82699cc drm_debugfs_create_files EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe944585e drm_connector_set_path_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea0f9b9a drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb20a1cb drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebcf0888 drm_edid_read_custom -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed1531a3 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedc9a8ad drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee02ac58 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefb5ccb7 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea6cc151 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb421ed0 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebb8a302 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf4e228 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0108121 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf02b512b drm_gem_lru_move_tail EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf074af1b drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1003b81 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf10e0524 drm_atomic_get_old_connector_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2086287 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31698fd drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2a44aee drm_gem_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3466690 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3fbbc00 drm_atomic_set_fb_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43b59c5 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4f50a26 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57f7027 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5da1e4e drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf60e105b drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6686505 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf710c3fc drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7504537 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7674ca3 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41e899e drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf479d719 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf56061ca drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf64a7ec7 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf676ebd4 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf678040c drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf791fb5b drm_bridge_chain_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8d4e35d drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94c8646 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf95377c4 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf981ee48 drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf993188b drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b141e2 of_drm_find_panel EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a5ebd7 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa20827 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2d1946 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb928556 drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb9f91bd drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba9d7be drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc994a15 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd1e7b58 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd8df5f5 __drmm_mutex_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdb37042 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a6d346 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf226df drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2c5642 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc007a57 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfea1b833 drm_connector_oob_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa2976e drm_property_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy @@ -963,436 +963,436 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x4d819e13 drm_fbdev_dma_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x84628023 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xe6c20771 drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01937463 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01e385cd drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0394979b __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e89215 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09a103dc drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b4a7dbf drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0db28b6a drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x125b2152 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x131743c7 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x138cd596 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19773eb7 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ac60d62 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c78cd41 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ccf99a7 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d6c1374 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea352e2 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x227bf7e3 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2373133e drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2519fc00 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x283491b5 drm_fb_helper_damage_area -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aa34df2 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x2e39d389 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x406d2f63 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x660a8055 drm_fbdev_dma_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0136390c drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01efadb7 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04732e20 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x067ef8b7 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c326f5 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09068ab0 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09e0d9fb drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a088cce drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a7b6b16 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb7fa36 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e0fd323 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e763387 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1078be74 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127eee5a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1328b03a drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15002c3e drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15a731a3 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16a2304a drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x197a9cd1 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a61a2d7 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b149df3 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c1c655f drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cef61ad drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d49e434 drm_fb_xrgb8888_to_rgba5551 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1da2409e drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e392eb1 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2193b5e3 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21ea7091 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22a788ec drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23929d97 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x241634bb drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2485aa50 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x263eecb7 drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x295648f3 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c183bf7 drm_fb_helper_set_par EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2daf9a32 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30d634bc drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x334c1c5d drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x372f04cb drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38e10bf0 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39d642dd drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a71349a drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d455d9f drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40fc45ee drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x420d71c7 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x443803f0 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45a57c0a drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46f68562 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f9bafd8 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31a0776b drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x339e09a6 drm_fb_helper_damage_area +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3421b8a6 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34701930 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3624c726 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x371f1ac0 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bbb23a6 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bcc71ba drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c667f9a drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f02143f drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41d996e1 drm_fb_xrgb8888_to_argb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x421b57d6 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42a945e5 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42e99fe2 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x430a3a41 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x454a7790 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45c66294 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48129da5 drm_simple_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4834906a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491e28e8 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a2e86d7 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a54690f drm_atomic_helper_connector_tv_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bc747f3 drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c7db542 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d50a80c drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d76222f drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x508b93a6 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x509f4a4a drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512a4d38 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5509252d drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55a82e26 drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5681d5a9 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57967f8b drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4928180f __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49acde9a drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a00de10 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c8c30d7 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ec5bdf9 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f2d55b6 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f3c2dde drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5032578c drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50e3a808 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5118ff78 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x556e1e8c drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5687f322 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x591c828f __drm_atomic_helper_connector_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a7dae2f drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b12c318 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b3e06e3 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cb3bb61 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d761eb6 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60dc56bb drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x617afa98 drm_fb_xrgb8888_to_rgba5551 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6228e598 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6300061a drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64699043 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66820436 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68bf4a16 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69b5cbd4 drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a78a623 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7d4e73 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dc5eed2 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f9e4c92 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6022cba2 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x636c6c72 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x637caf97 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63cbae39 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63d02d1f drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65af653b drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x666d7998 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67e9f012 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68dbb732 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6925f727 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x695ece88 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69ad2bdf drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69bd86f3 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69e63345 drm_atomic_helper_commit_tail EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b0b9550 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b561b2d __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b1961c0 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b372ff5 drm_fb_helper_setcmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b95e66a drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c4b44b4 drm_fb_xrgb8888_to_argb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c7c941f drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cb1f9ac __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ce8a241 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6df4cc38 devm_drm_panel_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea9447c __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6eb249a1 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x718a2ce0 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71c4b586 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71c93ff1 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x729dbdc1 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f46259 drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7383391c drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x768ddaf8 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77b36d25 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7849effd drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x797ce7e7 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79f6dadd drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bf16790 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c1d42b6 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e92af94 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f7d4577 drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x703a45d2 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x707fb18f drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x717b9bc6 drm_atomic_helper_connector_tv_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71982de9 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73d93ecb drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x757ef7af drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76298084 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ce2173 drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x776f0c85 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79c32c5c drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a2f5707 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc8e3f2 drm_atomic_helper_crtc_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e016d38 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ffa75f4 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x807c854e drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80c01a93 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80fef1d7 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x817422f3 drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82728048 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e1d526 drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84473f1c __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8488c2dd drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x856a39c6 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x866275f0 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8426e395 drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84622e03 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8567e139 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85b82718 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85fa2444 drm_panel_bridge_add_typed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87d86562 drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8981e9a4 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89ca021a __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cc6d26a drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x909e2918 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91bfc21e __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91df81da drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8780bf9c drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89279be6 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x895d09a9 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ae3bca5 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c0782fb drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d2a0462 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8df211ba drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e1db8c6 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ec969d8 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ef6e908 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f12432a drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f7f71c2 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fee4176 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9004d3a3 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x905df30a drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91d4bac3 drm_mode_config_helper_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92915ccf drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x935cd1e3 drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93b43158 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97dadfd3 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x981c944b drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93b731f2 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94262a83 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9561109a drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9602760d drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x985c0a59 drm_atomic_helper_crtc_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d3bb254 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d3c1ad3 drm_fb_helper_damage_range -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ea35767 drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f672edf drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ff2328d drm_fb_helper_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3793622 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3db1c16 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4d4263b __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6b46e67 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6e93ff2 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa70db508 drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa829ea0d drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9a28920 drmm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9d38118 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaa2fbf6 drm_fb_xrgb8888_to_argb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac672724 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad79914f drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadda5def drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb025af38 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a31cb53 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0cf77cc drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0f6a72b drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa17bb570 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa377bf7e __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4e51a41 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6d00f09 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8cd2e37 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8f39c0d __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab03ca86 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb93abc drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaef1c82d drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf8e074d drm_gem_fb_begin_cpu_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d40aa3 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1a196ff drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3edac68 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4594824 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb501238a drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5613b2b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1f3ce84 drm_kms_helper_poll_reschedule +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb442cae3 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb51ab83c drm_helper_hpd_irq_event EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb82e423c drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8e896fc drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb955b43c drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9bebed6 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb312d34 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc6cc8de drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcd1b1be __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd25f348 drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbecd0d0c drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbffe0507 drm_fb_helper_release_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1d700a8 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3079d27 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c66a78 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7013378 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc77c9245 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc841b97e drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93d2f2f __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca137a92 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca704437 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca815413 drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca989ce6 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb14146b drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8ba1bd5 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba938c23 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbad78e89 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbf76a02 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc381f90 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd3c238b drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc03cdcdf __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc22a827e drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7867a88 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7e74e3a drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8dd9f80 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc93493a7 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca3450f2 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcac3dd2b drm_i2c_encoder_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbeeaf79 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc970087 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb5d0ce6 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc856a37 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccc4eefb drm_atomic_helper_swap_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfdfc93e drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd024130d drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd02eae0a drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1637b70 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1ab120b drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcffa5982 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd04e23cd drm_fb_xrgb8888_to_xrgb1555 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1fc5f14 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3e22d2f __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4371b8c drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd52c3726 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd559e92d drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5677d6b __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5871c4c drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5bf170f drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7abd9f1 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd991ece6 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9e1f781 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda22ae9d drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb1628b8 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb8cc6f1 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbcb818b drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5f4c2fa drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7d4452b drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7e0c7ec drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd93aa1f4 drm_connector_helper_tv_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9fa37b7 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda8f8a92 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb3a85eb __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc3be0f8 drm_atomic_helper_connector_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc833fbb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde50f6cc drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdeff06f7 drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe09f94e6 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3f9e900 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe556452c drm_fb_xrgb8888_to_argb8888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe70d866f drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe81691e6 drm_fb_xrgb8888_to_xrgb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe86aac6e drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8ccd04e drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea4962fd drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec3d4185 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeefc9f2e drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1952c9d drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3444481 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3d72882 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5670a61 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf57d0949 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5d1486e drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8ee55d4 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9ed3be6 drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa540bb4 drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbb991db drm_connector_helper_tv_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbf73dc2 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd6e63ec drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe798d51 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe89155a drm_kms_helper_poll_reschedule -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x100ad0ae mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1b7d95c5 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x45ebd8da mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x49f8d147 mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4bf81274 mipi_dbi_pipe_reset_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5eead773 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x808af9ce mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x95f67b44 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9887ede3 mipi_dbi_pipe_duplicate_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x98d598bb mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9f2590c9 mipi_dbi_pipe_begin_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9fc914ee mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb061816e mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb0812e77 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb58b4cec mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb5cac917 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc19546ab mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd2b5c3d1 mipi_dbi_pipe_destroy_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd85e849e mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd9b83e3a mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xda422c3c mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xda50fbf7 mipi_dbi_pipe_end_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xddd62e97 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0dbc93ca drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x204b33c4 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x30d996fc drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x31c52c72 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x487c1015 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x633a73ee drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x8b145448 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb2eee66f drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdd09e323 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xea72310f drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdccb9720 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd72f773 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd88b74e drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde0313e4 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf5227f5 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfb6aa69 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe03927cb __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2187c13 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe24bd452 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe298d7b4 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe71bc766 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8db986a drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea3e5ace drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xead1754f drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecf5c2e3 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed9bebc0 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef061c0b drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef2dcad4 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef95264e drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf464987b drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf56f73da drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5a1bdec drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7c42b9e __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca60e3d drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcc2fea0 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe7b19a2 drm_fb_helper_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6f566e drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffdccd1e drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0c8f9674 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0d7f822f mipi_dbi_pipe_duplicate_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1a7f8544 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x30e21176 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x35c46219 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3ca13b01 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3ee8a277 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5ebb94e8 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x662fa37b mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x706aca9b mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7e8fb445 mipi_dbi_pipe_begin_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x807eff19 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8c747e41 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9c4f8af0 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9e7e3a98 mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaa702a82 mipi_dbi_pipe_end_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbddcad8a mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbe3493bf mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc0fc2e0e mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc165d9bc mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xea6eca11 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xeb27b068 mipi_dbi_pipe_reset_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf7e923b6 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x215e016f drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x30635642 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x306f827b drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x4c992977 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x58d09b6d drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6af64458 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd0a0ddd2 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xeb3b632a drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xefe0145c drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xfefa0846 drm_gem_shmem_print_info EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x3ea3e147 drm_suballoc_free EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xa5c1baba drm_suballoc_manager_init EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xc3df1eec drm_suballoc_new EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xc9908474 drm_suballoc_manager_fini EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xcf372f7b drm_suballoc_dump_debug_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x34c702b1 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4f849d4b drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7e927aa3 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xa7ab0c25 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd84e599e drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3995e9d2 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4a91bbbe drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x56f6eb8c drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6c0add7c drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6e6b0a69 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7218ab4c drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x80ccc69f drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8936c57f drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa6c591a3 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa6ecd94f drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcbaca637 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe4479332 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe7d8dcbf drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe919fc6c drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xef1c09e2 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf584bb47 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x31c65dd0 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12c7b269 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x16555573 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1d395da0 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21c480f6 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x222bc4eb drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x240c5a6f drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x30601b58 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3e7c304d drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x42aee2ac drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x25d54a72 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3604c710 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8b8a0b14 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf6e7f716 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf733f5d6 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1f6eba28 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x225066ca drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x305e39f6 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x346572e2 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3f96e8d3 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x472dcd48 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8929e809 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x939672a2 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9f71434e drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb019891c drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc231ad17 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc666d3ac drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc6b1edf7 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcb4176f8 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd8f8204e drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe9c16415 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x11efba3f rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x012d6cef drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0b2f25ee drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ff44458 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x24ea3a0f drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2903b7aa drm_sched_job_arm EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x47b0bf77 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6cdf1616 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6ebd7faa drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7140363b drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x78cb8f2c drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x790948c0 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79934f10 drm_sched_entity_error -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7aadabd8 drm_sched_job_add_syncobj_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7bfa52b8 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x85d7bf2e drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8a9f33be drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9173cd4b drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa4e3ae4f drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb2ba82e3 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc498186b drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc774161c drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xea0e4116 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06b144a1 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a4f309a ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ceb2190 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0de6cae5 ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11d367ca ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16276d90 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5242f603 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x547aab71 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5c96ae17 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5ec0b158 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f8bbbed drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x76174726 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x81c4b76d drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8822b847 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8ca94e32 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9499924e drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa4680dcc drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1fc4966 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd90634a drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbe4cf5ed drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcd890e8d drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdbd3db48 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xde505c37 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xed7fc6c3 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xff3cb964 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xffa9e2b0 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02c4390e ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x094b389b ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c5f8673 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fc12672 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fe99dff ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1301d6b9 ttm_pool_free EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e6d8d74 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f674925 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20cc144c ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2337942c ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29630671 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d08a84b ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38686939 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45dbfab3 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47b3f8dd ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4800c171 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x494643a6 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fa6987b ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57d70862 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fb977ed ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23c9755f ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x258e79e4 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x359a957b ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40cd9242 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f38663d ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50a60442 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5db57123 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x675d0b6f ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68be41a6 ttm_bo_vm_fault EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6aba3b4e ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f2b221a ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e9d6c30 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x822cdb9f ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x854f2bf0 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e6f0973 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9186afb5 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91d521c0 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6bf21620 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e16fcd1 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70e65c57 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71893066 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75ddfb4a ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c95cf80 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d06de45 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e3f6ad5 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8031ecb0 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85531cd5 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ae9db02 ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e934d0c ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90c4e798 ttm_device_fini EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9378e1c6 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9bccb3cf ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c103abc ttm_bo_wait_ctx -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d13dd44 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa13d052b ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabd63f3c ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac30c707 ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac51d04c ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaea36cc8 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaec6a270 ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaed639c6 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb145b57a ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2675ae3 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb306a113 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5cec9ce ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba7c1101 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbdcbecf6 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc240f1c1 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc376d769 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd116d38b ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd37b0036 ttm_pool_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd423cf79 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd47fe0d9 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7d71fd7 ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3a79716 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xecd77463 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedacbfa1 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xede4e889 ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf30d9c20 ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9caa22b ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb926ff5 ttm_pool_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcc45e5a ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x06f64991 host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x086e3985 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1178022a host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1b66e592 host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1db4a9d7 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x21bbf93d host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95a5ba85 ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c866717 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d9ed0fe ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa944696 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaadced9b ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab4b5d1c ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae19df13 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae95f44e ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf92d43b ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb779bf5f ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb792f8d6 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8bd38df ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbe20892 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5670779 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd93b169 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfe55c8d ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd18ea45b ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd48dbd8d ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd531f10d ttm_bo_wait_ctx +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd74afe0e ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd8cfcbe ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde814eec ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe68fcd0d ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe91b66d5 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea71129c ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2277d2d ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3f1aac5 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6f58416 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7db8524 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x01cadf1b host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0b36dcdd __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0db485a0 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x16af2f7f host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1c3ad92c host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1f216a31 host1x_syncpt_get EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2258e15d host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x263a755a host1x_bo_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3452a267 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x37307bd5 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x38ec7e62 host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x449a58d1 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x46497a6b host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4c0b6eb7 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x30a1059d host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x31a21080 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3ee5192d host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43c08ee8 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x44ab5e3d host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x47647c81 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x496ed5c7 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4f21ea68 host1x_job_pin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x55a22903 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5d2935cc host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x66a73844 host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6c30400e host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6c5740be host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5447a898 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x54670244 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5bdad111 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6154061a host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x62f4a18c host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x645f7a7b host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x65d23273 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6b838f87 host1x_client_unregister EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8ea45810 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x929f9923 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x75da4577 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x846365c0 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x873fc430 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x90086a21 tegra_mipi_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9809577b host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x983d1639 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9edbf994 host1x_channel_stop -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa62262a8 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x96f0606c host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x991d2663 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa025bd51 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa0a47577 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa447d6ba host1x_syncpt_get_by_id_noref EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaae57bf6 host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xae04bf26 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb4e24434 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa79421ed host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa911205c host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaf385b4a host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb0d8dc3d host1x_job_submit EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbebe26e1 host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc5023f50 host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca51789f host1x_bo_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcb1a0e4c tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcce817d3 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xce7f5b14 host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd5fd00dc host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd6f5c7d5 host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xda6511d9 host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdc476800 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xed1937f1 host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf20fc37e __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf64d2eb8 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf6a8f77c host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbe30b775 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbf961806 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc9fdf70b host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd3f6bf56 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf01e6465 host1x_job_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf78e77bd host1x_fence_cancel +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf83c425b host1x_channel_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/hid/hid 0xa2a1e367 hid_bus_type +EXPORT_SYMBOL drivers/hid/hid 0xd225ba11 hid_bus_type EXPORT_SYMBOL drivers/hwmon/adt7x10 0x8d9efe9b adt7x10_dev_pm_ops EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0xc88d4ea9 ltc2947_pm_ops EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x74d0b1a0 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x51bf83ee sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9b8dd86a i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc8a7e215 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xcc61cb69 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5fdde900 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe5e726a5 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xa384de30 amd756_smbus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xbfa1d61d i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd18d29da i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe0637b9f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x24744d35 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xba36c1c6 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x9684a80f amd756_smbus EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1404,33 +1404,33 @@ EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x116b79ba iio_triggered_buffer_cleanup EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xbd4cec28 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x09fe7432 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x700cf917 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3ee9d80d iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8407e155 iio_kfifo_free EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x14e88122 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x154ed644 iio_push_event EXPORT_SYMBOL drivers/iio/industrialio 0x1b841769 iio_trigger_set_immutable EXPORT_SYMBOL drivers/iio/industrialio 0x1ce2f86a iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2aa67dbb __iio_device_register EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x32dad179 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x3cdc44f2 iio_device_alloc EXPORT_SYMBOL drivers/iio/industrialio 0x4f71c5e4 iio_trigger_validate_own_device EXPORT_SYMBOL drivers/iio/industrialio 0x5646dd8b iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x5b3e7c39 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x62e30f5f iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x63fc494c iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x682857eb iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x68c4b5b6 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0x81869ada iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x577b20c8 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x60de5bc6 iio_bus_type EXPORT_SYMBOL drivers/iio/industrialio 0x81da92fd iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x895b5e48 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x8b8dffe0 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x8eb80129 iio_device_set_clock EXPORT_SYMBOL drivers/iio/industrialio 0x94b52117 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xb7d76a53 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xc7dc1fd0 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x9819e272 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xc0ad1510 iio_get_time_ns EXPORT_SYMBOL drivers/iio/industrialio 0xcad508f3 iio_trigger_unregister EXPORT_SYMBOL drivers/iio/industrialio 0xd176f590 iio_trigger_poll_nested EXPORT_SYMBOL drivers/iio/industrialio 0xdc4b3217 __iio_trigger_alloc EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xea031bd1 iio_device_unregister EXPORT_SYMBOL drivers/iio/industrialio 0xec8fda32 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xefd515a6 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xf4115154 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xfa23c24a iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xfa62529b iio_device_free EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x3959a94b iio_configfs_subsys EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2996705b iio_sw_device_create EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x811a0300 iio_register_sw_device_type @@ -1442,345 +1442,345 @@ EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x9273fcc7 iio_sw_trigger_destroy EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa1bf8c03 iio_triggered_event_cleanup EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xf8bcafb6 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xaa4f6de3 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2661727e ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ed94720 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x426d85e2 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x53af8abd ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x580d13e8 ib_destroy_cm_id +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x9dc77751 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0d5e27cf ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x140afdc6 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2735968e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f79c641 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f7c18ce ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4f98a371 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5da17e5b ib_send_cm_sidr_rep EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7285002e ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9619ea8b ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9edb1def ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa8415c91 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc6a5bc57 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc9b6f2f5 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd9d31043 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe98195f3 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xecf07b9b ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf4257627 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00b27d61 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ea6190d ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x983b17b6 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0ba7b82 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdf8ff1a7 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe68b8977 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe85dd4ba ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeed590ce ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfee2f119 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00101bff ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0034e431 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x005fd7a5 ibdev_alert EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c395a1 rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03ab53c9 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09b44d06 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3a76c1 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dd9b358 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14a48d3b rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14ee1774 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x151dd683 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1762578b rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x182df0c2 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19845ff3 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x024d1fd7 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x044f9edd ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0618bd65 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0673d295 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a7ebd5b rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0abfa158 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e0b6f6a ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1204b34a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1251edac rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13420a03 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1460f6f5 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x148e8be7 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14dc1572 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15af9dd6 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1653ad6c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16fa07bd ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1906c256 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1952ae08 rdma_create_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eeabae2 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21968ebd ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24a0bd23 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24b7f232 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27672b6a ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27cccc22 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2944de50 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29ea4390 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aac5bb9 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b69553e ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2beb6dfe rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bf269dc rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d614a8d rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d9c31ba ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b3f2bd8 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b61ac5e ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bcbb464 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c1174b6 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d901c40 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f236a25 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27cd0771 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27e070a5 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27ff2596 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28d8165b rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a6b381d ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ceb57db rdma_link_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f384613 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ffe9f79 ib_port_immutable_read EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30c767d2 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x312429c9 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3498041c rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35ad4af7 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37c1cf1d ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37fed6c7 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ab8b7da rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b151af4 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bf01357 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ead1dfd ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33305b3d ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34ffec08 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35aa15b0 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3710f1a9 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37fe4f44 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38e5b223 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3972e1fc ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a82bd5e ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c18f5e9 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c8c8da0 rdma_read_gid_l2_fields EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40938b1e ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41d8cb49 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42924249 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x431eba1f rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x413da4ab rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418c13aa rdma_restrack_count EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44b05cb1 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45bd0dc0 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43751ab1 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x451d2552 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x454adf03 ib_create_qp_kernel EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4623d21e rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4676bbf4 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c08680 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4814fa02 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4831c3b4 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ab27510 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b871a5a rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c713d13 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ca9db0a rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4653cead ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47e05b8f ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49471452 ib_init_ah_attr_from_path EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e372520 ib_mr_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50c9072d ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50c60a71 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50cea334 roce_gid_type_mask_support EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5214b8d3 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x522bac8b rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x527a8b6b rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52accc55 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5320ea6b ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x538bafcb rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x542f7728 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5557cde7 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5459d9a7 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54aa6ee1 ib_destroy_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bc3874 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57e6392d ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59bc4ae3 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d066cdd ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d50973f rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d5215c5 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60ca5104 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58ffc87f ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5987492d rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a1a6248 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a701071 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bc0a9e5 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f1f22c3 ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61b9e7c4 ibdev_crit EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6542ff9b ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62e921e5 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x639638a8 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x650de998 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6557d688 ib_modify_qp_with_udata EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68b01471 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68d8f65e ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x666d7c0e rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67fe8878 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x685d8e4f rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6884fbc5 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6978aacb ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b57eb45 ib_modify_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c718775 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bd915bc ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bdc80e5 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d078dc8 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d0ed236 ib_destroy_wq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7039f177 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f556ee9 ib_destroy_cq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71961a14 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73523e68 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x741bf3db rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x748899c0 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72178ca6 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7283e9a7 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x747f911c ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74a80681 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x755e554f ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x758994c9 ib_get_eth_speed EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7845940e ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75f84229 rdma_nl_put_driver_u64_hex EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x798208ef ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b9566af rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d5dcf90 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7da42781 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f30084f rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8098daef rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80aa2451 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81982041 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83cb7024 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8449815e rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84909e3d ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x858585ff rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x867dd998 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x889e3179 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d9a43e ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88f308f9 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ad620f7 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ba38f4d ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d77e72a rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fb8a0cc rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fd9fda5 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x803e4ef8 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80d3529e ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81505015 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83af4d6b rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86f01bfb rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8831447f rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89785942 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ab4a0f7 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b17e6fd rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b665dd5 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cd07fcf ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d1443b3 rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ea0aecd ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fcb45f1 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x900c9b85 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90870937 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fbd3773 rdma_roce_rescan_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9193d16e ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91ae1d70 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91afe0b6 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9200ef6a ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93f3e816 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94a7965f rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x983e6b29 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99971adc ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a8e801f ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9abd29e7 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba3cc2f ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa02889ad ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1e39917 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3dda0a6 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa44e5548 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6027a10 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91a26920 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95aeb65b ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9754a441 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9909ebe9 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a1f15cd ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a8efcc6 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b86d084 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd80d57 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c527d5f rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e2ca106 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ed4ca9f ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0f8a1c8 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa12617db ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1a41355 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2d2de94 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ca0bee ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4b1219f ib_map_mr_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c4c123 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa817e146 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa899c01a rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9282a1d rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabe4aec0 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadefad59 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7ec16d1 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa93e87ff ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab512d64 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac1410ba ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad0b479e ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xade198d1 ib_cq_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf61ec4a rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf857b45 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb00d7c5e ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb056eb32 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb092e840 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1272651 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb183ff33 ib_modify_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2059287 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2cb0916 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3218e4e ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb371085c rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb506e5e1 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb511414e rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5fba313 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6a1151f ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6b049b1 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb759723f __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6386c4a ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb63c48b4 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb68ae046 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6d5bae3 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6d8134a ib_device_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7ca3b98 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb81f7a02 ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb84c4ff2 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8bffa4c ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9070905 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb307633 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb9eb5ec rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc952269 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbecd37a9 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf789f73 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc12b5288 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc17e4d38 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4f8c7e1 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc513d21 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccbb006c rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd499dfa ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcddf1b12 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf06c7de ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8754cc5 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8bdfb7e ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8d18f04 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba1c6e9d rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba5a665f ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbca931f5 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd1a012c ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc06ad95f ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc13b5fd2 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3e12543 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc51d5cc7 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc69c4ee1 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc74a8fc3 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc868ecc8 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc906a4ed ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb186ced ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd501b5c ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd87388f rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce9c65bb ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfb912df __ib_alloc_cq_any EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0544489 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0a65d8b rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd14a435f ib_get_rmpp_segment EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd270075c rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4b714d7 ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5fa8c60 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6208f4e ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3ca54ba rdma_port_get_link_layer EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda03aabb __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6a7a5c5 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8a88e5a rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8de92df rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9cfed52 rdma_restrack_set_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbada95f ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdeb9e9b0 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe028a995 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe10dfe02 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1a5c852 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0b23548 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1862a85 ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1f59d3e rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe22a5cdc ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe256db78 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe29f745c rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3a945dc ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3aed8b4 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe23d69b0 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2698503 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe32b2672 ibdev_notice EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5d85b2a ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5ff0102 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6f1459f rdma_nl_unicast_wait EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe853eb10 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe89472ea rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe93161b7 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9ae11e3 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe89359ec ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe94da553 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe99ea686 ib_unregister_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea10068c rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf01dba36 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1638c2b ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2db998d rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea70f4da ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeabfce23 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeacf58f4 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecaf8785 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xede7445a ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeee9cd46 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf01e0839 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf08764b4 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf29193a9 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4c053e2 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf531dee4 rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6defb8b ib_unregister_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf95e8ed4 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9fb3a64 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa8c81aa ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaa21953 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbce1617 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeb9eec6 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffafaf1f ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02ca1a75 ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16bc2f2f flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1cbadbd1 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2025bd22 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x240be6e6 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x27d7df3c uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a581f0b flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x32507f7c _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf70d210d ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf80f7a02 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8855b45 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa9f6f05 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb2c7d86 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07705698 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x077bb590 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x095fe6d8 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0bdaca3a _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18f17103 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x215b9659 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x216f9d44 ib_copy_ah_attr_to_user EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3c0339e0 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3eda8725 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x46813496 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5cbefb85 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d3d43fa ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e742fec ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e928b1b uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x399dde45 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x407fd5db ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51ffa54b _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x52b45235 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x531487c6 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5422e1bf ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x54c71881 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63956925 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65017948 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x73a16de2 _uverbs_get_const_unsigned EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82df5e94 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83cf3a18 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x859f2585 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96848bd5 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa995139a ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaaaabfb0 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb064d70c ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb163727a ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3af97e2 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xda40893f ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdaf620ab ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe095a2c0 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe1c234c1 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf08873fd uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2b97e48 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf42329a9 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf80750a9 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xff83645c uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x270c3b56 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x41580dfb iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x684f4f87 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x80733e55 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaa847760 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb0dc4017 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd2ff3859 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7bb16696 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x91f0942e uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9576cfc6 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4692b91 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4537302 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xba436341 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xce1921f5 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd82a3763 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbec2a59 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe2c03f49 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeaed262f uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeaf8604f uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeba8fddd ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf37dc0b4 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5435593 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd52aaea ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2aa721f3 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x35278092 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x36b4ffc7 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x39b1e70a iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3b702348 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x502f6af5 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa348706d iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xab672c8e iw_cm_accept EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfe70beaf iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a1cf163 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c2ac5a1 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d8a4fe2 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e59d3c5 rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ee288c9 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2285974c rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24f71217 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x276c85f3 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31d408c8 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41527afb rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4553d175 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e2fc49b rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4eb6ceca rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x630436ae rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x647291cb rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x65a71929 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x772a29c5 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7840ee7d rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80d2c7ef rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8375a2bb rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x034ff043 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x062536c3 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x116d3124 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13a24eb6 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16f60c16 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2d0292fe rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3158f5e7 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3684fd7f rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4e0a6845 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50de97d8 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x583816c6 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x592a1fa6 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61726eb2 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ba388b5 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73d2bcd0 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77aaef0b rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ef31c31 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8497129f rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d4c0072 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8eada942 rdma_create_qp EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xacff990a __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4023c01 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb46ead76 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5994b9c rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf9c893a rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1dc6117 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc98ac0e7 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda3d4b5e rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb0cf35f rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xddb1459e rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe306643b rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe44db7ac rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf1cb1749 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf458f940 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3dbb889b rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x65bf293c rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7f7853e8 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9279a721 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x99345435 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xed9e3c72 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf4c54e0e rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2f5c2986 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9622baf0 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99108311 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99941775 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fe4e79a rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa23ab815 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa37d0c73 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5d43d0c rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac8b7234 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd2eefef rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf095c01 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9daf582 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec322fc3 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeeceae85 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf18da071 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x115d9734 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x161fe639 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6b23bea1 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x764cccf3 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x82743941 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa3f75c6c rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xad7026b5 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x07a2c532 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x29227313 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x67029a33 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x70cf6579 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x91a3d61b rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x926b41e5 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa4198f5b rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0f9c582 sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xff0b45a6 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x071abe65 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3d76d7eb rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7a9aac23 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7f588370 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xbda666f1 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xbec3f125 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xf68dbff4 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1340a7f3 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x294714d2 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4b3e23b4 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6c602e6a rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x81d819e6 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xede93170 rtrs_srv_get_queue_depth EXPORT_SYMBOL drivers/input/gameport/gameport 0x156a05c0 gameport_set_phys EXPORT_SYMBOL drivers/input/gameport/gameport 0x243fb999 gameport_unregister_driver EXPORT_SYMBOL drivers/input/gameport/gameport 0xa4359853 gameport_open @@ -1790,77 +1790,77 @@ EXPORT_SYMBOL drivers/input/gameport/gameport 0xf8509ecb __gameport_register_driver EXPORT_SYMBOL drivers/input/gameport/gameport 0xf90f80b0 __gameport_register_port EXPORT_SYMBOL drivers/input/gameport/gameport 0xfb6adaca gameport_start_polling -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2fbfc8e0 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x6d16c766 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9459917c iforce_init_device -EXPORT_SYMBOL drivers/input/matrix-keymap 0x3ba45643 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x1cdd2c6d ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x797bd06a ad714x_pm +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x18f33f02 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2738d1ee iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x41198105 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x8466d7bb matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc9a65e05 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe20ae3b1 ad714x_pm 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 0xade0a690 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x96d4f09c cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x2841118f rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2cc8d89d sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x447f2ce4 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x5b3728da sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0x799f5f83 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x8284232f sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x1fb69be9 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x2183e287 ad7879_probe +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xd1fc24e1 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2515a988 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7d537a0f sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9291a7d6 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf33988f8 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfe19f55e sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x08f67805 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7a1a81e6 ad7879_pm_ops EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x4351af12 qnoc_probe EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x874c4ea7 qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x145d49a1 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31e04e05 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5f685af8 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x68d76321 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfa95b792 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3c6c1d7c detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4d57ecd6 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8444d404 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc2f5853b attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd1737c19 capi_ctr_down EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x04b7803d mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x77004b0e mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x867edf17 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xcecf9a65 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x5017c5ae mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xb83a45c5 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x220d0615 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x59a88739 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x636e72ae mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x940e5290 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x50bc4199 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa43cfd7f mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0275730d mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0b606177 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f999b85 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2072e048 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x233dfd41 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x27a4ab39 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b0abc6a mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2f19c092 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2d1c5163 queue_ch_frame EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32278fc2 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x394daf19 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ed69472 bchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x583a9da5 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x571acdab recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x728f9a4a bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75ff1a7a mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x848f1d56 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87a5d7e4 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f42f57a queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x98da9c23 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6f3e3765 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c556ef1 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ebc62c4 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f35aa38 mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7f21ef5 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaecf8566 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd0eaf11 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbfee07c5 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0329ea7 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab2208f8 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb85251b7 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc30f4d74 dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc827cca3 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc891a5e recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd22cee59 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe47d9924 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdadae6fe mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdd728e1a mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1bc1cea recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2db7f84 recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf0d43d98 mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6aea473 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfd709f83 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeae5ae3e bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf05df900 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1bb89ad mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law @@ -1869,588 +1869,588 @@ EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xbb95e750 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x30b3fc36 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x1ee2a62f omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7139276f omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7daaada7 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xe6917dc5 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x48b38935 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7061a7f8 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x73fd5552 omap_mbox_enable_irq EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range -EXPORT_SYMBOL drivers/md/dm-log 0x1006635a dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x5ebea84c dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x8425be46 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xdee41cbc dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x37f3b46d dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x635ef7f5 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x64ebcc09 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa201cf0a dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xa508d684 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xccdb1370 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x06da6f74 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x0cfe0f35 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x39abd04f flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x47415f5e flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5c1b657d flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x60a7b936 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6365267c flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x876a9e99 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x994e2551 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9f0b7c27 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xacdee1a7 flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb0cec82a flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc553db27 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc7719e86 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdbe32cdb flexcop_device_exit +EXPORT_SYMBOL drivers/md/dm-log 0x62926578 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x8f676bd6 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xb86baedc dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xeca22a61 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0b25441b dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3c769a5e dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x55eb7f11 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9c352344 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbb66dc39 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe441147c dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x2a70394a raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x53eeb9cf r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0b8c8fce flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1f450edc flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x50fcf8e2 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6b123dd4 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x91208723 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa60bcb71 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb2da5495 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbcb90825 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc10c735d flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3178030 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeaf56783 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xed5ae53b flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf8776252 flexcop_pass_dmx_packets EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x24e703d4 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1fb87f9f cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x4731d522 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b5cc43e cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5d2d6550 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x9bc30a66 cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd9991b3c cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8aff2836 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb916f6d0 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x315386b4 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xbde2c417 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x0b15674d ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xedf9d2c0 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x3919b2b1 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x1dcfdc37 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x3fe8d192 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x753dc615 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x2228337a vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc99b795b vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x63f9d095 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x784f9ad4 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa2e07a94 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xacc5691a vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbc73e1be vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd88c8945 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x17254d38 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6a48424f vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9316721b vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa648e8ef vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb05f7413 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfa636965 vb2_dvb_dealloc_frontends EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xd3d48f8a vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x025bc4c0 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x35a623a0 vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0b6c154e dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0b5cd57d dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e011ea8 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0eefe4d2 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a3d7b7e dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d6363ba dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2e651649 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x333ea588 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32fd5b1d dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee5957f dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fd96ba7 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x40b4eaf0 dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4478fb73 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4875aa38 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50740107 dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x661f522c dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x751bd389 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x757d7e12 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8002896c dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72be5b96 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7760667c dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8026ef3e dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82143c17 dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82e3ef8c dvb_net_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x887785e5 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fee867d dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x95b56b1a dvb_frontend_suspend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x97547bb4 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c94bdf6 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x938a5685 dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x989a4a69 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98d0a0a3 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab10da8 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9aedba1a dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa39ac1a3 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa628adeb dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae3a6e57 dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2edd80a dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2f1505c dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3740339 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7870bc7 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7feaf5a dvb_dmx_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0b93899 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f01680 dvb_remove_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc4426d5c dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce0d4fa9 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc47cd254 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7a1edab dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0606bba dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1cdbe7d dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7fbbc73 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd98b95c3 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe21f42ef dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe267e2c8 dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7367529 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf21bd1ef dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf55a94af dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfe73d116 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x38fa5613 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5bedec54 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5e30ebd9 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5ec76acb au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x60264e41 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7863269a au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa70c3979 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcfc629b4 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xef0c3477 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x49467560 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x15e3b255 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x546bd87d dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5ee0a84a dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x929f54f4 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa8427870 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x00380a6d dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x17b341d4 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x23d252a3 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x32c7b2a1 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x42573636 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4f0713f8 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5ee573dc dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6e82af85 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x752e0d88 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8e354768 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9040c308 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfb61a97d dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xffa3f67c dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x070dcdb0 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9207b31a dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa235a576 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd802c1d9 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xec57def5 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0a8d545a dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x691670b6 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x76853a10 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0d813418 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0f707089 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1008fab4 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x15df2f49 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x61281734 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x61c9027c dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x72e93e8b dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb0a1597f dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbf641824 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd28d556a dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd7b12a96 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe7e796a3 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7f45a505 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb46aa600 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb8ab5ead dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc99a0d72 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf0fa4c88 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4c92bab8 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb16b3ab6 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xe75c9ed0 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xac80f652 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x61516482 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5236d6ab m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x020c5fce s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xf30b4947 zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xfe135083 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x34aa4b50 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3b751aa6 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa9f23bcf flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc4008aae flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc5e1adfc flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc6058769 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd63ce26b flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x58947405 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7d7bac20 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa9c22133 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xad9f2030 bt878_stop +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1aadd1b5 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x35549895 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7db94855 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7e72c85b au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x90584428 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb4cacb92 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbac434fa au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe83b58fd au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf22eef60 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8d56e5f3 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x832d44b5 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1dfcf910 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4d844adf dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa979ab26 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc46880e7 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x280270ad dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x36108ddc dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x373ef0f3 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x45385852 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4a06f164 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7cbd008c dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9d8a9263 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9e0bcb8e dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa9fe9f98 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc194ad96 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd37857f2 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe5a24857 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe8943f33 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x09687961 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x36dc66b4 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x42f8631a dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4a134192 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa471eaa5 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3a0a4ef3 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa43d9be3 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xae80ef73 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0158fb2c dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x03d80ada dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x15c86e24 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2f6c45c4 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x581532bd dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x815fa173 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8642654b dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x938f8b34 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa2e559c5 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd685e740 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe107eb1c dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe80ffc07 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x113927e6 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4ee58dce dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x627b033a dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x66cd92ee dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc516a7fb dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x21358501 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8afba169 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xd4a9598c dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xea70d979 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xcd7e531c lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8868d128 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x94c2a92e s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x2d302ecf zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb5e2b9e0 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2b416421 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3fc86b5a flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x54821fe0 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x654ba12e flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe4bfaac8 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe9a2ad11 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xfa1d16fd flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x788bf6cd bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc78ac2ef bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf923640f bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xffc0132a bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x76f6995d bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3b114ee2 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x543de2d4 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 0xc13934a2 bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xcecc53ba bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x418c4f22 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe3a4d996 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x08709032 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0a3c0770 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0d0c5e96 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x29a2d492 dst_comm_init EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4461d3c0 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x79bb4e5c read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa6b19c4d dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc3571a8f dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe0b339ce write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe0c54646 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf02cd000 dst_comm_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x19c968fe cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1b7e4757 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x59a52a9f read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x90caa600 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc6d8cb05 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfd8f85ce rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x144efc56 cx18_claim_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x99165baa cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xda7cb60c cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf6498069 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8429dbda cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9f12406b cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc706b5f6 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdbf95d08 cx18_ext_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xc46aeddb 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 0x07ca54d8 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2d481778 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x79fbc84c cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xaf34bec7 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd9f38c78 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xddd97354 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe110e894 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4664e629 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4aa8a668 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x52e1a95f cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5b9cd8f6 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xaec8322d cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc3fc0bc5 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd5825c57 cx25821_sram_channel_dump_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x658392c0 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x99c01f1b vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1b5c0457 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6d2e45a4 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8e64072b cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x95334c13 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1f0ecf91 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x277e9132 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5fb69258 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x68a52bf0 cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7e89f97f cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa4c1c5ba cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbcb801fe cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3e90dc96 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4a842f98 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4aad3771 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1d42832b vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x35e05c8e vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2ce44f10 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa6e71bfb cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb3a22e00 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdbd0c6c6 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3c8da8f9 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x45de735d cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x48b043d7 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x61a30baa cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x774f9e79 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8f63d66c cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd54a1c9c cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x23ac62c8 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x43e152af cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x58294068 cx88_reset EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f33f3a8 cx88_set_tvnorm EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6b47484c cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72284903 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x729bb771 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x82808069 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a7eb0bc cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72072e12 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x743e5f4f cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x78b9d9b8 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b7c20e6 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c28210c cx88_core_get EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8eba60c5 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ff8acbc cx88_dsp_detect_stereo_sap EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x913d9fab cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x92e485d1 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x964eb332 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa313fbf0 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa8d6808d cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbee3a385 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc0204522 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7ffed1f cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe3ef3831 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee13de20 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf28fa394 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4d86cf9 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x01cfe4b9 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ab23d0c ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0cef35b0 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x91c2304c cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x920bda22 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e115cfc cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc0c1215a cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc4805ccb cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf63c883 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8e9386e cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe41a8ae1 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe43edecb cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x099973fc ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x11d346ea ivtv_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17714129 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3af1aeff ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ddc19ba ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x51199533 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5411914d ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5d11bf0d ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6391900b ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7e2c9054 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x84025d76 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8de3d60e ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa37430c1 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb066c228 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe5cede14 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfe26ddbb ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x151051db ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1bc4ea50 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1fae2f20 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x359e2fbe ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f2a541b ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a548df5 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x68075489 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9691cf1c ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9a5764de ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa30d7c48 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa4d05754 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf9dc51c ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcdb1fccb ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe1f10c28 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfc2d7f6e ivtv_reset_ir_gpio EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0f6ee4a6 saa7134_ts_register EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x194e58f1 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x27f033e5 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x327829d7 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x19398f92 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3005bb4f saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6a43ff0f saa7134_ts_register EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x761a9ccd saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c7c40c6 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7731240d saa7134_dmasound_exit EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x80daafb6 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9cab5646 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa7254b5f saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd0b1f585 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdf5746ad saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8fac6b32 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8fb7443f saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ce74ec0 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa08626e5 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa2c58068 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa6b08ba2 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd6326181 saa7134_tvaudio_setmute EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x6671c6ea vdoa_context_configure EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x6ce9e4a5 vdoa_device_run EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x7fe3d6f9 vdoa_context_create EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0xd96c63ec vdoa_wait_for_completion EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0xfc58eef7 vdoa_context_destroy -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x3cbec24b csc_set_coeff_bypass -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x5422de64 csc_set_coeff -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x93488a47 csc_create -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0xb6476067 csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0xc1e5f960 csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0xc390492f csc_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0xd51f1f90 csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0xff05d720 csc_set_coeff_bypass EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x0627f440 sc_set_vs_coeffs EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x397d39b2 sc_dump_regs EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x69957c68 sc_create EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0xf6f83bd1 sc_config_scaler EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0xf8a90c2a sc_set_hs_coeffs -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x0517f7e9 vpdma_unmap_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x061c8eab vpdma_list_busy EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x07464bcf vpdma_add_cfd_block -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x081fcc29 vpdma_set_max_size -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x18ad9e09 vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x09168c0e vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x19e8cccb vpdma_hwlist_get_priv EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1e2920b8 vpdma_list_cleanup EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1ee5d41c vpdma_add_in_dtd -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x238451ac vpdma_set_line_mode -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x2daa59df vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x23e443fb vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x2e9174ea vpdma_list_busy EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3269c1e2 vpdma_add_sync_on_channel_ctd -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3964828c vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x366a8e74 vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x39c16116 vpdma_set_frame_start_event EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3b3f4afb vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3c7d730f vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3f24c397 vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x43eefc4a vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x4485d842 vpdma_clear_list_stat EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x4b415663 vpdma_hwlist_get_priv EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x6ea95e2f vpdma_free_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x727bf09d vpdma_get_list_stat -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7392c856 vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x6f3fd182 vpdma_list_cleanup EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x73ae3d42 vpdma_add_cfd_adb -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7bf612ec vpdma_map_desc_buf -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x924e07c7 vpdma_create -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x9be1fbcf vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x76df721d vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x83c54c57 vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x9144a791 vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x9232c621 vpdma_unmap_desc_buf EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x9de56bd8 vpdma_add_abort_channel_ctd -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x9ec6c746 vpdma_hwlist_alloc EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x9ece601a vpdma_free_desc_list -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xbd9fc207 vpdma_update_dma_addr -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xca421bba vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xc3e66b09 vpdma_update_dma_addr EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xcc78bec4 vpdma_rawchan_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xcee8968b vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xcf800b5f vpdma_create EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xd0aeae6a vpdma_add_out_dtd EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xebbec4fb vpdma_alloc_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xf0515644 vpdma_enable_list_complete_irq EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xf82483c6 vpdma_reset_desc_list -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xfddfe387 vpdma_enable_list_complete_irq -EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0xfec7d2ce vpdma_set_frame_start_event -EXPORT_SYMBOL drivers/media/radio/tea575x 0x03c6af4f snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0b9cf65a snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x22efbf7a snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x40b0977c snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x65b7265e snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6fb3681a snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd9f4f4f0 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x22578815 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x26dd834d snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x32872c31 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3930a013 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6ba3a6dc snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x946fd7d4 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa7867aac snd_tea575x_enum_freq_bands EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x71df722f ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0xacb44fab ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0xf7d1e915 ir_raw_handler_unregister -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4cc4e0fd fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7c9e2318 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe4d44163 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8a5f21f5 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd7811717 fc0013_rc_cal_add EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x462a3966 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x6443e081 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0a7a5a15 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1e92a0d3 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3a9e5f69 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x70677f47 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8d288b06 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb1c57f54 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc25dd144 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdcbec64e dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf3f0dc88 dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x19a120ee usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x21faac11 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x42da7aca dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x37afd675 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf142eeec cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x138f3bf8 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5fa4baa7 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x798d08f3 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7afb0467 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x858b3d6e dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8e135b17 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc3163ee1 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcc64ad47 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xce938591 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0d8b2dea dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0f4523db dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x45d4d2f3 dvb_usb_device_exit EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x65d933e3 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x674b5523 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd6d9ccef dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe4ee96fb dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa0f6d594 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xddecdb16 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe645a412 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x274e5188 af9005_rc_decode EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xb3b68b08 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 0x00e06fd3 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0d1b3660 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x122e4b96 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7dabb84b dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1246b0d8 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x147ea695 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1d4f7da6 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2dc266bd dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3ad661a8 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x48455631 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x804474a6 dibusb_power_ctrl EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9e951a21 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa8ac6418 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbe6ca9d1 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc24d1a18 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xea1291c1 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x70ff2746 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xf50394c1 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0d86a819 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x27b41c1e em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x012b925b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0ada03e9 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x202079f4 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x277805e1 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x30c52dab go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x30e674ce go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x53bd02c5 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa0502839 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdbb22d91 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x09806bfd gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0db784c7 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x390691bd gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3ad09695 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x42a07e13 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x54dfd1fc gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8a482438 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf354c83f dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfdf7020d dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xa58d6c54 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd9ea283f dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x39b661b3 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdf4a344c em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x30d9e5c6 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x518cffcc go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x53bd3c94 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x55bb84f1 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x60db3918 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x78da097a go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8aa175c5 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe277b625 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe7296a80 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1c7d7b06 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4a014f1b gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6828ebe2 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6d73fc07 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8df30539 gspca_disconnect EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9c840617 gspca_resume -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xdbe83585 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf02f344f ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x32fcd387 v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4b1eb1a8 v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc5609f77 v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd7975611 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe013b7f4 v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe4ce4648 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd325a230 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd8ea448c gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xef1ae5e2 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd2472e84 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf9802f4e ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x27467914 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x304fb2f0 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4ce4d5d4 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5a1b258a v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf04364ad v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfa6cd640 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1b0ba5bd v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1b8a4131 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3f7f195b 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 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xaaff1b92 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xac29e6d0 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xaeab913b v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdd33dc3e v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe3edffc3 v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01f2c36b v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0177bc2d 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 0x07fe7cee v4l2_ctrl_activate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ef6025f v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0bd69bd9 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11285361 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11414ebf v4l2_ctrl_new_fwnode_properties EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12b53d6c v4l2_queryctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17edc893 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1872acfb __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x198b4235 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c098447 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f6853b0 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f6b3695 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2027334d v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22faf6a2 v4l2_ctrl_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27de5754 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ac38056 v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3081d1a8 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x275450c1 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29eed5d5 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dcb59b9 v4l2_query_ext_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35db060d v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34d94639 v4l2_ctrl_handler_free EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ff98bf v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37125756 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x365d1bd4 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36a32e41 v4l2_ctrl_request_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b7424f6 v4l2_ctrl_subdev_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b86cd9a v4l2_ctrl_fill EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ef403d7 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f8f8156 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fed3042 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x435382f3 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e642f3c v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51292665 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51fba366 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x686796e4 v4l2_ctrl_type_op_log -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b94057f v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d2c7170 v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d89aa98 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c90b1c7 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cd6f8fd v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f49c1c9 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x401bc1c9 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43b7ba1b v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47f52b41 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48ca76c4 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c179953 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e811ad2 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x523f1ccb v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x537fb3e9 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5938cf3c v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61d247ee __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66304716 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x695987c1 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c33b408 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x721f1d88 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fa07667 v4l2_ctrl_g_ctrl_int64 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x835e8db3 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8372d6e8 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x898d068b __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x87f3907f __v4l2_ctrl_grab EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8eab6dce v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9441751c v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96da7c64 v4l2_ctrl_type_op_equal -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9dd97b12 v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa198fb80 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa829e4b2 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa83e18d6 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad7006ad v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae3c8fb2 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb14870c7 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb43b789e __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8abd3e39 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0a4e2d2 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3262af9 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6cbf7b4 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa80ca6fc v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab592024 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb09bdca4 v4l2_g_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbae2661a v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb4b7d08 v4l2_ctrl_new_std_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbebc880f v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc68df9f0 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc288b2fa video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcce9d016 v4l2_ctrl_type_op_validate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdf476a4 video_ioctl2 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1bd7e71 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1d9eaf7 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3bb7171 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf8516e6 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe19047b8 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda93d2a9 v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbd08dbc v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2ab2fbb v4l2_ctrl_auto_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe49a22e0 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5563643 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe61eb6c7 __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe748f8fc v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea22b1e3 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe356f6d5 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe48b8234 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe741d566 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed3f499f v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef6d9c56 v4l2_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf428491a __v4l2_ctrl_modify_dimensions EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf793c4da v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf984bbda v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbad146b v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffa1e78c v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf886ec45 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf973015a __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfabd6301 __v4l2_ctrl_modify_range EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x191c74aa rpcif_sw_init EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x9be49f7f rpcif_dirmap_read EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc6be9d3c rpcif_hw_init EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xe076c447 rpcif_prepare EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xfc6091df rpcif_manual_xfer -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a5b0055 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x209c6753 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2a35a21a memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2cd4b1e3 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2f2f27e2 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x010a2be3 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x376a5792 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x48731d5a memstick_detect_change EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg EXPORT_SYMBOL drivers/memstick/core/memstick 0x51cb13f8 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x87e4fa0f memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8fc92650 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xad55928f memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc90c5565 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xcf28ae8e memstick_add_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe1e36272 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe3c551c0 memstick_suspend_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0dbafb38 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13366d09 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d334068 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2557835b mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x27d5e1e8 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b36b1e6 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b4e663b mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a0e7106 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4addcdfb mpt_suspend +EXPORT_SYMBOL drivers/memstick/core/memstick 0x52f738fc memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x74df0e21 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x866236e9 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae0d9bb2 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc10b96b4 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1a97083 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdd9c18ed memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe0c0075b memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe642399b memstick_add_host +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x043d5bca mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e304160 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10390dbc mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c5406a6 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x254432d0 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d6dae8b mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33b2606d mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3815015d mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a45f7cf mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3ff4c134 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40bb400f mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a9bba27 mpt_halt_firmware EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5ba0e039 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x56a22eb0 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c95a116 mpt_device_driver_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66ad9da6 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6fb50879 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6cfbf0b0 mpt_attach EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76a47e43 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83e801e7 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x871af986 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f955fd9 mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x91a20aa2 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x92fa4db1 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ab9dc33 mpt_get_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x98d68c40 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa6eb4303 mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa70b0c44 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa7f9ff40 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1795bff mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbaeb2969 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd91ac335 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9c184832 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa010118f mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa18cb72b mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb597cdd8 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfe7b06c mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc69651fc mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc81a224c mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1dacae7 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd878cb61 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd975bf9f mpt_clear_taskmgmt_in_progress_flag EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe179f1cc mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe0bffb10 mpt_send_handshake_request EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea361e3d mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf083c261 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf45c53d3 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1116a59a mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1644ae51 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x169bf36d mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d7ed734 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23cf1630 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3294a610 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44fe0148 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x46a08256 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b431d05 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c70011d mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5844bf0c mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e86dc54 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6fd6f046 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79766da1 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8b816a19 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa36ba3c5 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1bc5fd2 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb98ee16c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbdcff4f0 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc3ceb4cd mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc4f29fe1 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6c3ee18 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd036f34a mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0d90374 mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdafd666d mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe404a077 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf06f24bb mptscsih_abort -EXPORT_SYMBOL drivers/mfd/axp20x 0x23f44d4c axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x65323fb8 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xcd7b3c4c axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x029da62d dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xcc2933a2 dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xe8e05af2 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe937585b mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf1a69df4 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03fe002b mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2cdb9bed mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x325adb25 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ab19e76 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x507daf93 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a909136 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d923c00 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fb7e879 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69d5738d mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d64885d mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x714aa5da mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7669818d mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7b138656 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c904cbe mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x838be4b1 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8430ad72 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87543d68 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c72e53a mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d454478 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9635a4ca mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1425ed0 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0606d67 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb564c308 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6acb5b2 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca1e3851 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf1ec0546 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8ea193d mptscsih_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x8962050a axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x9f304c9e axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xaa9f635d axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x2e9c174a dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8f04be12 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xdf104efd dln2_unregister_event_cb EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1747c864 mc13xxx_irq_free EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1e45b68e mc13xxx_irq_mask EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x214e031f mc13xxx_unlock @@ -2472,10 +2472,10 @@ 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 0x00b312bb wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x1f77f6dc wm8994_irq_exit EXPORT_SYMBOL drivers/mfd/wm8994 0x63c59b07 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x878f278c wm8994_irq_init EXPORT_SYMBOL drivers/mfd/wm8994 0x9b336092 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xbdc49dde wm8994_irq_exit EXPORT_SYMBOL drivers/mfd/wm8994 0xce9d22b3 wm8994_regmap_config EXPORT_SYMBOL drivers/mfd/wm8994 0xfca7992a wm8958_regmap_config EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9a3b59c6 ad_dpot_remove @@ -2483,25 +2483,25 @@ EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init EXPORT_SYMBOL drivers/misc/c2port/core 0x760b0116 c2port_device_unregister EXPORT_SYMBOL drivers/misc/c2port/core 0xd8ee8bed c2port_device_register -EXPORT_SYMBOL drivers/misc/tifm_core 0x18034300 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x237ffe44 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x05803bd6 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x0b60db67 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0c28e5b0 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x2411fae7 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x28e13c25 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x3924c655 tifm_free_device EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x4ac1a4c5 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x6ad6b01e tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x6efcc282 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffb4dc tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x805c0ace tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xa76fad99 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xba089e86 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xd5482002 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xebf99d2f tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xf8c62f2e tifm_unmap_sg -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x15fb99d0 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x497fd646 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xac5428e3 dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xc7c77c36 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8c21c042 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xc46d4a79 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/misc/tifm_core 0x50b8c684 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x5f17a874 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x661b6d82 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa390aa3e tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xaa017190 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xeaefaa33 tifm_alloc_device +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x04ca06db dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x05acd584 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x13f1fcb6 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x1a2f954d dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x84729c03 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe6cc78b4 mmc_spi_put_pdata EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x05bbead7 cfi_fixup EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x227b474f cfi_read_pri EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x48010aa6 cfi_build_cmd @@ -2517,481 +2517,481 @@ EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done -EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x7a12bd97 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x9581774d of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x2736c3fd onenand_addr EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x55afe715 flexonenand_region EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x411339db denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xbef02909 denali_remove -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x00cdf2bf arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x33e08f37 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5924d22c arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x630cbe90 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x63a1fd8f arc_proto_map +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x515d4df3 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x5d53b975 denali_init +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0f3e2bc8 arcnet_timeout EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6f74589d alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7106bfee arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8db87986 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb294765e arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe1ced1fc arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x699956b2 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6b92dc79 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x71208f77 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8450e934 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x887dddb1 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x937da592 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9e06205f arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9ea03815 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbe10ccd8 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc12e8e4a arc_raw_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf75ba963 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x04150030 com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc004cbbf com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc4ec6ae5 com20020_check -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x655c639a ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x877edeb4 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xbb712f18 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x064d3092 can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xdb7e0599 can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x06c4714c b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0ee76d2c b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x11c3d6c8 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13588fe8 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1da852ef b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x248e3ddc b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2634dabf b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x272ecbcf b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3673c503 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b9246f0 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3f417dd3 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4900cd59 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53b22d27 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54fab606 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5607308b b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5b023aeb b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f86b986 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63d18615 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6bb0c2e7 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f1542ae b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7064d4a0 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7bd5909d b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83628818 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad61ed84 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc09d2f48 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc2244a82 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc407bacd b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc4108755 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd0e71904 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd306e5c7 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd3dac4c5 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde45cfa4 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe40adb61 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe4dae949 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed785dd7 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf17c402f b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf87a84ae b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe67c031 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x00488c00 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3dbd46d8 b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x82127ca9 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdb390e66 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4cd5dbaa lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x8ea3cdf8 lan9303_shutdown +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6c0fb9fc com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8317eacb com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe8669f5e com20020_check +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x045bf5f0 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x53f65dce ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x544fd934 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x0ba5d2c3 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x72a2f4b2 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x04252e94 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07c4614a b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x09ad8f06 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1c0eb7aa b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23e20fc3 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2791add1 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x311e0cfd b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c0674cc b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5050494a b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5ddf00f3 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5fe46a0f b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6330b181 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6503c094 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65272f95 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x72ede0b9 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7edd148a b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x86b9535b b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x88ddf824 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x898639bb b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b36854a b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x907cbe1a b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x909f007e b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9258c9e8 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x92a10c94 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94859afc b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x95fe1e09 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x99a1a78d b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad7ab4c2 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb742a408 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb36fdaf b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd2076c4 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcd4225ee b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdafb29ef b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xea5c9457 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1033def b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd58a333 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe12a234 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfef0fb57 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2ad34b3e b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x30c7b61f b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3ac33450 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x79802b47 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x74ccaca9 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x97675a7e lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xfe4f57f4 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x2e34520e ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x61fc2eaf ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xe95745bd ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3c98d0b6 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3d0e815b vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x75605d06 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd435a463 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x02ada9ae ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xd303906c ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xf7beee54 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x0de457bb vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x89c434a9 vsc73xx_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x4b046b75 xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb0814f3b xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc9c1969b xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb59b8568 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x24711cff xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x77b40488 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7ffee71f xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x865da3b4 xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd7d44a07 xrs7004f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xdd11431e xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe63c509a xrs7004e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xecf95983 xrs7003e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xfd2341d3 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x005017fd ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1161dc87 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0fc97267 __alloc_ei_netdev EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2a8c2d2d ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x484534cb __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5c2beced ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6ae6d198 NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x71f2d615 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8bdb95a0 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb15507e2 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcad864a2 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x56d03d05 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5c529714 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x71050440 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x79347aaf ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x89240b9b NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8a3a8b0a ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x96460a59 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcb238ef0 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf7b3bf8a ei_netdev_ops EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0xea515029 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x0535fb58 bnxt_register_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x5a934d6c bnxt_unregister_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x6f363d17 bnxt_register_async_events -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xb62b4dd1 bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x080c59f6 bnxt_register_async_events +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x19f88c81 bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x8fa5f21c bnxt_register_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xbe49cde7 bnxt_unregister_dev EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa7c51029 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x061f6d4d cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x066a41f4 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0cc5febf dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x38b0a2e2 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x42f26263 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6c979213 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x86f985b9 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x906d4666 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x96633b11 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x966dcb6e cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9935ea45 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d0785b1 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa3d35aec t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4bc9e73 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd901267c cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3dee23a t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00fc8218 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x022308f7 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09a8ad25 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x8c16c919 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06b8b9d7 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0ea6719d t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0ef6d73f cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x126a5453 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3f126bf0 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4fe7191c dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9dc5fb9b t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa00d4e1d cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa2aca9fd cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa48498ce t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcacbff97 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcadaed46 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce805c19 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdbf7116a cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe1636b67 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf28f7118 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0029440c cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0affcd31 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c6ce908 cxgb4_iscsi_init EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15fec91f cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33148efb cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a6a0f42 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c29e8a3 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e1bc2b8 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4013df73 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x404642a3 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49d614c8 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1230505b cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a544da6 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ebace18 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ff10a6c cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2179ba85 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x234b2f77 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25a79e38 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c1a8030 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c2de13f cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d7b34e cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x382371f0 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38d7208b cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38d9cf39 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b83c582 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d7bab54 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e1f386c cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x436d9457 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ad5549e cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50b1ba5f cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50bf8f06 cxgb4_inline_tx_skb EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51fc457a cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53cfecbc cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x552f2d0b cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59f41e02 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e8f0d6f cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x608d39c5 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x631bb275 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69a34722 cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c395e2f cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70f1b941 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x72d7800f cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7910b076 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x833fc224 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86e139d9 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a07aa2d cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ad64419 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c54b8c9 cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9293ac9f cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x980b755c cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d21b5b8 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1ac1a0f cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa588f2c3 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa706c69a cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc27278e8 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5c98aca cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcced2940 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bbed3b1 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x68a26098 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a5dc000 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fd4a94d cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86a78531 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x885770f1 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89064395 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8b28bb0a cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x92d9fca2 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94eed2a8 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9abf0448 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f36fd85 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa12169e4 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa69e838d cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa97fbaa8 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab2ad26e cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb809b7a6 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb820548a cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc56db1e8 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdaa3803 cxgb4_l2t_alloc_switching EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6a0dd20 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb6760b6 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdcb25da9 cxgb4_ring_tx_db EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xded2869b cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe47a44a0 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee789958 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeea6d924 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf032b85a cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6ad5cfb cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc0d6ed3 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf35d435d cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf628064d cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff5b116f cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x12198aaa cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2867c0f7 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x44919a01 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x91a06538 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa0362d58 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc3b8dc2f cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe77055d0 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xea17bde8 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x05cfc808 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6f58c028 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x70c59694 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb474d8fa vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbed46a98 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfb9aba9d enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0d4f1237 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x27462a48 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4fcbdba9 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x56a49cef cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x66676db8 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6f59f4f0 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcba71db9 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2adde86e vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x55822d1c vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc71776d7 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd1d27bf9 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd2264d6c enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xeed97f13 vnic_dev_unregister EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xf2b06412 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x11213f29 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x52349a08 fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x874deded fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x926bb8c1 fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xc29a9399 fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0b2cd0e9 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x52651045 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8ecc61ec hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa029ab6d be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe74bcb3d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x3655a85f enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x279f4149 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x54a7aa49 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x931e8c52 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xd59a77fe fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x165b00d7 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x16f30d36 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4fd6b11f hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x8e5613b4 hnae_put_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xc9a51579 hnae_ae_register EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe76e796f hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xa5a2028f hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x466d459e hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x481705fd hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6645117c hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7cd2cfd3 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9ebc76f2 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd2272340 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xeae3da12 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf07404bd hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x22cddf93 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xa09ec0f5 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xfed71540 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x75d61ecb hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x22537047 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3b669dbf hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4f34ab6b hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7e0be7f6 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xad6f7175 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd1dc2dc7 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd90838e3 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe8020b3c hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x67a36a25 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xb95eb2f9 iavf_unregister_client EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x6dfaeca0 ice_xdp_locking_key EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xb1a07cbe ixgbe_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x458ba0d3 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xc73cced0 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a026cf4 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x102b3d05 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20bf65a3 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275d2190 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a1f6a36 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2acb4357 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bf5d676 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b7cb17 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35bf96cd mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416b7b93 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x432c0411 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43db517d mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45287c35 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4601df21 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c4e74b3 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eb8d89a mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5180431c mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52368422 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cd1b7f9 mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5daa731d mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ffe30d8 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7110ef30 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7732fb16 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x774ab004 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x1c1a7f13 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xc52d7278 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04c74319 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04f68f71 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18d00af5 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1963b0c7 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f92fc05 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fbd7feb set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2059cac3 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29b1d688 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f31e2c9 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38e7ecd3 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b3b8f49 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4434d7cf mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x464c6ba0 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46728197 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x590a2bfe mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a8700b6 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5adb5b26 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60dd5c09 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6179a0e2 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65e4477b mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x671b2a01 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7243da8f mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a7054ea mlx4_get_cpu_rmap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80f0c288 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90fb20f1 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x962cceca mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a78f97c mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c14f148 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa849d68a mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0618119 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3a2237b mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6a4e02b mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba03a7d2 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbad4ded3 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc4380c7 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbde81328 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc64e1947 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf616e5b set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd59e9fb1 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7f4b27 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe04cca0d get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4d9ddea mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeab58399 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00ced550 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04fe8b1e mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x050fe093 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05a2afcc mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ffd0104 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8074b294 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x890b14cb set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e5738cc mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90ae863c mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90f6937f mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9278945c mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x956be6f8 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9ac502e mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab26b09f mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadea5122 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb58e2520 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9b42a7e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2f5e3b0 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6619b2a mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0661c53 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1cb5cff mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea71a283 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2cb7edc mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8efca28 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdfa1a02 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x020825a7 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x037a9a56 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07ad452c mlx5_qp_debugfs_cleanup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07e409a2 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x092b1b06 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x096abcb3 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c49acbf mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d373367 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f07dba6 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10533530 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11f06381 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1349c5ac mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x144e2662 mlx5_core_uplink_netdev_event_replay -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x148a4310 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1689b1f8 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18dc660b mlx5_lag_get_next_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19ab8073 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cb55b28 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08499fd5 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08d26970 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d7128aa mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0faea57e mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12f5f1fd mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1443e90a mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x149a9c89 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d2338f mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16aac257 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a86dfc4 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1afe15a7 __traceiter_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce4ad6e mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f8ffdd3 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21b6a881 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x235fb943 __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x248c98ca mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26eed3fc mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27d5d844 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29be299e mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d081076 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ecefcf4 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f55d0f3 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26a287e5 mlx5_fpga_mem_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29d2c248 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a868ae0 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c2bbba4 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ce33335 mlx5_lag_is_mpesw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e6c7036 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ff36b14 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31100e2f mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31c1125c mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34200323 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a8b9c65 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3040c3e8 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33a15772 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33e527b0 mlx5_core_destroy_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x347d899d mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a5779ec mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b24f896 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36dccbb6 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3964a8ca mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b1cbdd6 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ca73052 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cbce097 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e843fa7 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f8a3aa3 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d6aa1a0 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e591eeb mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3edb2d20 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fb48ff0 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x407f783f mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41713bd7 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41ce3322 mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45febc21 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46167ccd mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x477c8fd9 mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a705fad mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b764e7d mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x504da0f0 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d7be351 mlx5_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50220215 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5071254f mlx5_debug_qp_add EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50faa015 __traceiter_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517539e0 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51a034e8 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52236e1c mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53823b99 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53eaa98a mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x572b865d mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58a661f8 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b5cdf2 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59004395 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59371b04 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59d15575 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bea41ce mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5637875d mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56901f4f mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b727e74 mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c3cf66a mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cbd52c8 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d9dd3b2 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ee990be mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f37d5cb __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5d3825 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6e1e68 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f632329 mlx5_core_dealloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6165399f mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x619b80e4 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61d5561d mlx5_core_get_terminate_scatter_list_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62bb903a mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660b4830 __tracepoint_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x665ee5cb __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x673c618a mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67f66f12 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68742d8a mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x697df2a1 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b9b8408 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c799beb mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f0f6211 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x701e2367 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71479009 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x715f6a2a mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69b043ec mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ef8c089 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x704d872a mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x741f9ab5 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a82809f mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a8e88a2 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7422f377 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76c13339 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76c563c5 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x771e3f7f mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d0eacde mlx5_comp_irq_get_affinity_mask EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f13ed88 __traceiter_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8017807f mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x843c5880 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x849878ce mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x855ad6a6 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87673182 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88f11b2e mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d4b21e5 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80a92869 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80f90485 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84afe06c __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8508baa3 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85f932c6 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86cf615f mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x885d272a mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88d40aac mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89282939 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8958be09 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c474e82 mlx5_add_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d55ac5b mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d911db0 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d9dc49b mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f1e60a0 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fc67867 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x912f5019 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x916cbc69 mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9553016f mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x956ce153 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x956feb57 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96188ec9 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fdbceca mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e2754e mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93ebd3b3 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x943ea765 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94bfe8c5 mlx5_debugfs_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x986952f9 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x992d2735 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x976d7f94 mlx5_rl_remove_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99bb603d __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ac30f71 mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ac8c8a8 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c5570b3 mlx5_rsc_dump_cmd_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e3e73e3 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4b793e6 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa51de9f8 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa214d6d mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab2a6eb6 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab862eac mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacbee0c5 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad1224b5 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e3d1efd mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ee00cdf mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa138bc0d mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa159016d mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5fc65c0 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa772800b mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac29a917 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac33f943 mlx5_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacca49b1 mlx5_core_destroy_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae8883ee mlx5_core_create_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaed21604 mlx5_create_flow_group EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaef0be61 __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf2f8a0c mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafb1eece mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0a19cea mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb346abca mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb412b345 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb57ff801 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb2d768b mlx5_msix_free -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf53999c mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf74007e mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4377cd7 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb54765bb mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5581a9a mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8ee2c89 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8fd210f mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9b89c91 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba1b7442 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcb2ae44 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe7c0180 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf7829ee mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc04abeeb mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3dd81af mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3fab60d mlx5_alloc_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc546ea0c __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5de18f6 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc72a0e8f mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc548a487 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6e16ad9 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc74665f5 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7531581 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7641760 mlx5_msix_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8b44726 __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc90e4e87 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9875551 mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca64444a __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc0a0cc7 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccf7c4ac mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce34905d mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcace1c46 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc76b0f4 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcca9f6d1 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccbbca7e mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdc6b8c1 mlx5_cmd_init_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf1ffff3 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf3d06a2 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf6d91dd mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd02774c5 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf3c82f6 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0bd8bf6 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1061bae mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd38b58df mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd38cee7d __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd52a77a9 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6965a8b mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd85d7059 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd360e6c mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde1b84ad mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe00f12be mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe00f9410 mlx5_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1421676 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe31434da mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3759dd9 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea047f1a mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea18c0b0 mlx5_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaf196b9 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9d315fc mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc66f6c7 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf426d67 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0af10ba __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3e82730 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe52ad97a mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5697cea mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e86181 mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe76fea0d mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed156cc1 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3cd7484 mlx5_msix_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed8b5e5c mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeed89eac mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef0c2b17 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefe2070b mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf02d6e96 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3a9f90c mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4b936ad mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c2fac3 mlx5_core_destroy_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbe7d161 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc3dfab3 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc559745 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa48b875 mlx5_packet_reformat_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfca48079 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd0da137 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe951091 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe7c89ce mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe8ee416 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x0728a89e mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x04d774d4 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x073628a7 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14c5b4cc mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16673aec mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18889573 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1efe6714 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1ec79a3f mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x25fa0c9b mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x299e2562 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2cc5b98d mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x305c9a94 mlxsw_core_port_devlink_port_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x33bcf1e7 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x34eee5b4 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x35e06e0a mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3bffe69a mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x452be35a mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47372d44 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a558271 mlxsw_env_get_module_power_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4cc76783 mlxsw_core_port_netdev_link -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4fdb132e mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x532808b5 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x535e2670 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57e736af mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a96c80a mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode @@ -2999,15 +2999,16 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6762f344 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6f69e51b mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x78c98ae1 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f1e8e23 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8283d6bc mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create @@ -3015,26 +3016,25 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9f211f47 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8b5874d mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaa600760 mlxsw_reg_trans_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb63d892e mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb95d02fc mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb96901d6 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9ffa846 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbd7a457 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc4359d39 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc967ca3e mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcce33454 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcdbb18a2 mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcf3a316a mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1bab622 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag @@ -3044,10 +3044,10 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc5c95df mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdd8c794e mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe40a67b2 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeca0348c mlxsw_core_schedule_dw @@ -3055,155 +3055,155 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfd329be4 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf83c8efa mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x0dffd36e mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5121513b mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x7ee92b1e mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xb8db93ee mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x29f8ed0d mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x51ecb9fa mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x922e882c mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9ef362d3 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02927dcd ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0428d066 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0451eaed ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0831007a ocelot_port_set_maxlen EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08791cd6 ocelot_wm_enc -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x088ef6df ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x096d9b1b ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a786716 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e0eb812 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ef680e0 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10b9fd08 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x133dc084 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17cd5e3c ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a616783 ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d54b3db ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f43e22c ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fab921d ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2510cbea ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2595aecb ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2623daff ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b665835 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bd1bfa4 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e056dac ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1617c4c7 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2003e51e ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x253f7faa ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25789377 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x276fc373 ocelot_vcap_filter_add EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ef8285c ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f2d92e3 ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x396cdbc7 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c67cfc2 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3cbbdacb ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42dc2520 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43231f47 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4539f0b7 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c39239c ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54fce08e ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x569f43cd ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x588cac6a ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x59683aee ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5aa39baf ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5feb2d8a ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6588c100 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c0b2b5c ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f9d7c55 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30b97f72 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3347ce94 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34046c9d ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x353911f3 ocelot_pll5_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d40f7a5 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x454af9b6 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48578669 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d4e5019 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4dc833a0 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f398087 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5442ef72 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x564e7774 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a59b9d3 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5cb959a3 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5edaca80 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f7d7d4f ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62bde828 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64fc758d ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ae39661 ocelot_port_lag_leave EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce19e2a vsc7514_vcap_props -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7501306b ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d54304d ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7b246e90 ocelot_get_strings EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5aec55 vsc7514_regfields -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a36e0e3 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91be8c90 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91fe7d2c ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93b19ec2 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x995e4364 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a6f7c78 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9be13b1a ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9be34278 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c4fd999 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f783674 ocelot_pll5_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5c4a704 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaaf0e717 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xadb68099 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xafc26225 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ef3884f ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80d8a615 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81017192 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8485c0dc ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84dc29d3 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85934f3f ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x873a3c10 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b023e40 ocelot_reset +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cd31222 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90bd90f3 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93dfd4f7 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x954da9cd ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d405639 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9debae6b ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f17f147 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa93d960 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb02aea7d ocelot_port_pre_bridge_flags EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0fdd7fd ocelot_wm_dec -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb44bd8ca ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5a49730 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb716b071 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf1d592f ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc00a7f45 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc15eac3a ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1c4c39d ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc58f68eb ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7305bc8 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7caf066 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce7cde3f ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd06c0533 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2006710 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb231a3ca ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb26cd9ac ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb49508dc ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb798a1a9 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc16fe19a ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3614bc4 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4f2d018 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc54c9a1c ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6340ea6 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7ed192a ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8c0f776 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc90bffcb ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9c553f8 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb86be02 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc50ad66 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf245e9f ocelot_get_sset_count EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4a3ca16 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdad07930 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2f61528 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd300041e ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2879a2e ocelot_sb_port_pool_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe30fc619 ocelot_wm_stat -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3f476bf ocelot_reset -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7c57c98 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7ce7bba ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe86c5167 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee7fff0b ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeed7ad46 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefc3ec46 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf05f34c8 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf329208b ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb31455c ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef76b2bf ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3d5cb21 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4dbaf67 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7054dc2 ocelot_mact_forget EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80fc88d vsc7514_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8f016aa ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa0903f9 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb20571c ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbd055c0 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffb61eab ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xffb95114 ocelot_deinit_port EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x8d99e036 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9666d478 qed_get_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeb59bc qed_get_iscsi_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc8ed1943 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xce580912 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0152a2ff wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x03b58b29 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x067107f2 wx_napi_disable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0e92422c wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1143adc3 wx_mac_set_default_filter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1525f7b9 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1998adb7 wx_misc_isb -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1a051643 wx_free_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x224b23a8 wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2258e0b2 wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x26baeac9 wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2b5e7a24 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2bc35f70 wx_flush_sw_mac_table -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2dbdce13 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2e7df96e wx_change_mtu -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3454f09c wx_clear_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x36ead6ca wx_get_drvinfo -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x372c391e wx_xmit_frame -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3834716e wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3ad765cc wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x41723947 wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x49cf5f96 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe8748af5 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x004c3097 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x06385f1f wx_clean_all_rx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0ab05654 wx_set_mac +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0c9652d7 wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x12de62eb wx_get_drvinfo +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1300b2b4 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x16c85362 wx_irq_disable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1b3bf4ca wx_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1b3ec818 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1e85ea80 wx_configure +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x234e34cd wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2db0369a wx_misc_isb EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3398bd wx_msix_clean_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4d5b12fa wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4d6d0b65 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4d9bbda0 wx_set_features -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4e266cac wx_reset_interrupt_capability -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x53763ed4 wx_intr_enable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x76264f84 wx_disable_rx_queue -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7ac18782 wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x81423d73 wx_init_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x81b3f716 wx_vlan_rx_add_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x81dcdf1d wx_setup_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8bc2fedd wx_configure_vectors -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8f4618c4 wx_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9fe6bec6 wx_set_rx_mode -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb8184980 wx_free_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc34289c4 wx_free_irq -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcb267752 wx_set_mac -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd523adea wx_clean_all_tx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdbaace3e wx_start_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe4a509da wx_napi_enable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf27ac78b wx_setup_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf295d8ba wx_irq_disable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf57e5e35 wx_clean_all_rx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf6cb7ced wx_vlan_rx_kill_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xffa2e02e wx_configure -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1fad0073 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x52eac3d5 hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7c882c9d hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf84634f8 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfffc9b2b hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5042c7b0 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5352545a wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5d90b63f wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5e08d3e6 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5e34104f wx_vlan_rx_add_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x638e4482 wx_vlan_rx_kill_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x691e6199 wx_setup_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6958b7d5 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6a63fb2e wx_free_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6b54c95b wx_configure_vectors +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6dbfde9a wx_change_mtu +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x82955df7 wx_setup_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x888a67ca wx_reset_interrupt_capability +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x89827942 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8f8f0a4c wx_clear_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9a97c154 wx_disable_rx_queue +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa12f14f7 wx_start_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa7b57b63 wx_intr_enable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa800faf7 wx_xmit_frame +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaa557302 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaae7c672 wx_init_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xac874fc0 wx_clean_all_tx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xadc86b1d wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb6843bb9 wx_free_irq +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbc389b0c wx_set_features +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbd48676b wx_flush_sw_mac_table +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbffa00d3 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc02911b6 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcfcbdd6d wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe2f2879c wx_set_rx_mode +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xeba31024 wx_free_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xee28bb66 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf0b0abbe wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfb78c2ee wx_napi_disable_all +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x57b0c514 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x67057f4c hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc00caaaf hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd3b6c68b hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd7d81eb4 hdlcdrv_unregister EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x62eb612a mdio45_ethtool_ksettings_get_npage @@ -3211,1093 +3211,1093 @@ EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xc0945a30 mscc_miim_setup -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0d6c55cb lynx_pcs_create_mdiodev +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xa994fd3f mscc_miim_setup +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x5831828b lynx_pcs_create_mdiodev EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x6d933508 lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0x0496a39f mtk_pcs_lynxi_create +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xa549f24f mtk_pcs_lynxi_create EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe9221a05 mtk_pcs_lynxi_destroy EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0x2ea7f375 miic_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0xaca3887c miic_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x368e2113 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0xacf70433 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xc3232e66 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0xdda5c8ba register_pppox_proto +EXPORT_SYMBOL drivers/net/pcs/pcs-rzn1-miic 0x4f56bd95 miic_create +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xb75ae21f bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x16b8c802 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4dd4655b register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc843c59b pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xe332721c sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x0ae0f7b0 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x27bc52e2 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x5856c0a8 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x8eae8995 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xc1e2b5ef team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xc9247b96 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xe67f75fc team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xfdf1eefa team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x57429865 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x7846d0c5 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xc4ef2bec usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x167bd98b hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x3e0ccdc8 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x47ff2b11 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4a938b8b unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x54eaaaf9 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xa4407b19 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xafa1ffe0 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbfa1b740 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xd227f422 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xff8814cc attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/sungem_phy 0xf176cbb6 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x150b450d team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x22df14e3 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x2a35ce12 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x2b8d7454 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x69243a20 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xd9f5aa33 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xdf19165c team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xe13da558 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0687b9a6 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8de14eed usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd47041d2 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1a49f0cf attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2c09461d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x37a1ce84 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3edb9949 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8321dcad hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x88dd6d25 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbb6d8aed hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc58ab706 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd55d64e1 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf28a4512 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0a9f3282 dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x126e63e9 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19435b37 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1edf974b ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x205fae99 ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6ac2c1db ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b21fd26 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7631bf99 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7a6299da ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9cded1f5 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4da93641 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86c32de0 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa05d357f ath_hw_keyreset EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa4667582 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb50dd5a4 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaba64955 ath_key_delete EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbcfa7209 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc106098b ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd3476034 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb793df5d ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbb487147 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xca39b84c ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xca8c4801 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb513b68 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdcac209c ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf7b47a97 ath_hw_keysetmac EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09f1c383 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0bf0d65f ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04ffeb0c ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06a55b7a ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09d71180 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09f7091c ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c079ff0 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d8fcead ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0de6ff00 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e0870ca ath10k_ce_dump_registers EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x112c7297 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x119e3ef3 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11c5febc ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x149b5f26 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14a89fcd ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x17dbc010 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26a2c5ed ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28847d51 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36507277 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c88318c ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x425b851f ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x446fb3a4 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x46f6dab9 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x550a15f7 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x595b99b9 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d9be3f1 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x617ded3a ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67283d67 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67fabf9b ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x695cc8c9 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69e2f850 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6fc0520e ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73676b28 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76cdde05 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x782f2776 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ed633ef ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x806391c2 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8ca1a98a ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90c02c3e __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x919fab31 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9201550d ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa15f906d ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa7cace76 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac4552f8 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaff215fa ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb01d1cfe ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb396bc28 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1c8719d ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4309370 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xccf0fc91 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcdd1cd3a ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd51ab472 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5bdd28e ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd648180f ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xded18d3c ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf2b7dec ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdf9e472e ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe3148a77 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe482d295 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe71023b4 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec46271e ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf28e037e ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf3b5b298 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf69d7580 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf717b90a ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x187a6681 ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x31575208 ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x31803220 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x33fc3db4 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x34dc38e5 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x35e014aa ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x388a3be7 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x38f33134 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3a896d9e ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3dd96e7a ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4040d85d ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x415fd83c ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4949e8bf ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x51408950 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x58cb636b ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c3a0607 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5fc9bfce ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x675a2a04 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x727b5baa ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x72ea6149 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x84a710da ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x88ce7496 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8bb94b67 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x977a7f1f ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1567c90b ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d84812b ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33abefb8 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x348ed9bb ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c13835a ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3fa5bfe7 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4218a245 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47891df3 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d6eb1d4 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52b1f25f ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5e65b54b ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62d3d690 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63fa4b33 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x655ec5d4 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b1749d8 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x701016fe ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70e518e1 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7316c156 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75a3eb3a ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c95a024 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f4d49ad ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x820ed30f ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83f74042 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84a81fea ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8613a638 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a252c35 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c506108 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d0b1a33 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e0e9e5d ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9098ce7c ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x951db021 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95528f88 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d847f38 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0f31888 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa41c1cbe ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa70c6f44 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae79cebc ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafc57326 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb42814ee ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9a5dff9 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca9afef9 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe19f4897 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe518e58d ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9a4acf2 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee9009ff ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf4e39771 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6310245 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf78a3e27 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x12e38ef3 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22c9aefc ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x29aa3581 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3810e7f9 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x38f44074 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x45da68c2 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x465455f3 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x52946910 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c57a2ae ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f20ed7f ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6120b3fe ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x652d4867 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7a55d51b ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8278873f ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x855a6a78 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x87aa4a1f ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x925289f3 ath11k_core_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad046f91 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb65cdec5 ath11k_pcic_ext_irq_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb7116edc ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc483cb42 ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc56f63a6 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0059c4b ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d630de2 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa717217e ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa86c7db6 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa8af0479 ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad11730c ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaff1cfb0 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb280ea60 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb36db334 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb5cc6d75 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6386a3f ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb7e30041 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbc185f37 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbc32f6d6 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbdeb56dd ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc66e1070 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc6cecf4b ath11k_pcic_get_msi_address EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0a2ad57 __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd20c27e6 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd26a27e2 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd309c936 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd67fa683 ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd720af1e ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xde220bfa ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeff41a9d ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd2914019 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd8e26f2a ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe099d6b8 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe39c1c22 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe48c8a60 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe8ea476b ath11k_pcic_register_pci_ops EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf1161b0a ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf1559b3a ath11k_pci_enable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf415072c ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf6e58a8a ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x12e8e6c8 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf080e831 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xff458cb0 ath11k_pcic_config_irq EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33ebf3d3 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2491c5c3 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x259838dc ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x31f686f3 ath6kl_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4d4acc44 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x552bd9a3 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x69b8f907 ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7d9c7416 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8d10baf8 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3ea5dcb1 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x559b60d0 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5748ede7 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 0xad2532df ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb7906cb7 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x93ddcabf ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc35c9600 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf90f66eb ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x07183cd4 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x121d1a96 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc1896fec ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc35eda02 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc504cad7 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xebdb3b0e ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x11c10ce1 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1495760d ath_cmn_process_fft EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a0aa030 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2cfb0a85 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3e1c5f71 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46b7b17a ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5614430a ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x632ffa4e ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68959f37 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68b6e6eb ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8386bc41 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a333fbb ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9b3cc00d ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c577710 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa0d697f5 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab0217d5 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1143150 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb461e706 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbbd6693c ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbf913c69 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c39b9e9 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26625cb1 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3768010c ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x413deaaf ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43568f62 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5438f830 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c01042d ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6a5164ad ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6b43640b ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6b4375f2 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d18faa8 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x765e3f50 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x82303057 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98de535a ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9c8f07b5 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa82faca2 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa99ba24d ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd281549 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbfbb4685 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd0b09a39 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 0xd4f7c2d8 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde763127 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe0f18601 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xedb16967 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01d9b71a ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0439098e ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0486f455 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04ec74c2 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bc73413 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe9ceea8e ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x010ad26d ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0489948a ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0823962b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09a53d0b ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09f40c0e ath9k_hw_puttxbuf EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x102b8495 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x121cda27 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x141b73cd ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14352217 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16910ddf ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c6bc54e ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d20bc5c ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dd7a83d ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x228854d6 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24e24855 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a824534 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c3ccb55 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x305f2056 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31f38535 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3608163d ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36acd77b ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39c63192 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d69b3c2 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fe915b2 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4002e1d5 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46d7c75d ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49489004 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49582447 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4af4bd2f ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b9cb3cf ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ffb67f5 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5120a3a7 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x523f4e45 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x534739df ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55efae67 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x590f3957 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5968047c ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5abcc51f ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ad5d138 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c60a8ef ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6196b477 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x667badb0 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67056a6d ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d87b81c ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e3a302a ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x704ca37f ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x718028da ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x791166ff ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79428630 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7be51c72 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c1060cd ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f9ee2d2 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81912103 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x840d195b ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x899da6ce ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d067f6a ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e53f716 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f2d55de ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f91ef52 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x912a2317 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9295fb47 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92a4c3d5 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x941c6016 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x974b081b ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x975fb604 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9871a212 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b9020fe ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa341eec9 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa44d322f ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7f376c5 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9ab564f ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac5b9f5b ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb004bc8a ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb28245db ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb37f589c ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6ce84bb ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6f962d2 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7f95daa ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba83c035 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf0ab7e2 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc538bcdd ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5c317e7 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc671b584 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc83734df ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9011164 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd078b890 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd15e8bc2 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd73a232e ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda226f1c ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb4bb1d8 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfda79d2 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe24fb779 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2ccd40e ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6298b77 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe73a5d9e ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7e78b6b ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9cd2d68 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9f99c58 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecc931a1 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0265855 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf13697de ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf336b74c ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6278acd ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf77390f7 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa94a916 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe12414b ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff44ef10 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1393a1f8 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x62058052 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe0028120 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x06f41c0f brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x07f13079 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ff36319 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14c931cd ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x166de4ca ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17e46d82 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20364e46 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27a3f4d3 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a42c46f ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a9253a1 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b5fc5d4 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bf245f6 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e8ef47f ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x310630c1 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x351b281a ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3547ee0f ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35c94945 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3917c689 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a359c51 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4039d70e ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4da2ca01 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5036af25 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51eba7e9 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x544debec ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54902c14 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5aeb894a ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b01216b ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c8cc129 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5daeb367 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5db0f658 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f85ae55 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60aa597d ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63b70617 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64036b2d ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65235661 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a46ee0d ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6beca565 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eadac00 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73c43ed9 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74256dc9 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74c14381 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x760c964b ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78143a82 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a3aa24a ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bf63a28 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f3f3aee ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7feb22a0 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81961bc8 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8212b995 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x822cba47 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x840ab226 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87a90043 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a0c9717 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bc8eba7 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9404747b ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9574e908 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96d8f943 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fff7c84 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5dbab7a ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa659301e ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7b98720 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafa186c6 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2103d45 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb460ba1f ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5a923b0 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb63b8583 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7fdb09b ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb88f7dca ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb93d791c ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcbe2448 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1b77eb8 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc337abbe ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4518945 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf3be57b ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1d5eb9f ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4df1048 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd545cfa6 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd71df489 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8569ba7 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda4f0cba ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda6aa7f9 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda7df419 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd79ee8a ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde397f85 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf1d61b9 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf4025b8 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe37c08e8 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6382289 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe682fcec ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaa27bb8 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec77005d ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xede9c3a5 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee0c22d4 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf092edfc ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1e91a51 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1ec0d8b ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf65ea1be ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf74251a7 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf82b5206 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa0d824c ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa8dafaf ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbe814e4 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffaf712c ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffb1735a ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4f7fdb5d stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9aa2caec init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe3ccacab atmel_open EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2cd3d698 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x44ab2162 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4700f859 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8599c803 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x88b4017f brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2a2ae205 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x318bf453 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x39012a0f brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3e4bf8ee brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8ee2b62b brcmu_pktq_penq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa1954a8b brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa6ce5713 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd10f30e2 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa48b2fb3 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb446c8c0 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbcb3289c brcmu_pktq_penq_head EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe8b3e875 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xef7a3ea6 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf785b5a2 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x1a2965b2 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x8326d1a7 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xdd203501 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x145325e7 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x292e52b5 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x36fda883 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5fb4c399 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x669e3258 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6956b57e alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6d27aa87 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7f751a24 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x93a78790 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa01e9699 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa577f4ee libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbf093440 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc4d11fef libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xce5ab7ba libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd35011fc libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe60eb719 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe79ab2a3 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe880d45d libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xea35ae22 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf7ae8a4b libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02f9379c il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04fbcea7 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x071a45e3 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x084af097 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0884381c il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d08453c il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x103c3ddc il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11d5de49 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1593e8ed il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x169b335b il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cc7b28f il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cefd087 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20ad4989 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23ea8de1 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2571b683 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2750b0b8 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdd20959f brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe432d7b0 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe5af4757 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe726852b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeaeb6776 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2994f8aa stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x35806ec6 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x822ab0b9 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x045ed0ca libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0f8d19f3 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x33377ed6 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5fd55f83 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x652c10a1 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a218e25 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8568560a libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8d93265a libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x983093fd libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa886b9ba alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa90e5d47 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xae8a100a libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb0b86213 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb352c6a6 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbbac7add libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc61dc990 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd542e35c libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe417564e libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf38541a3 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb5ba98e free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x051461b3 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x052349ec il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a4d8c70 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d47c372 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10b8489b il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11608694 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14944a38 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14e266e4 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x195f14a7 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1da4c320 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x250d6406 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27778d19 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2816b8bd il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28195231 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a328d76 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ad8b483 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b04b3b5 il_alloc_txq_mem EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31ed450a il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x339f433e il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35415be4 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35438c9c il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x383d73ea il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3845f3da il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x399cc780 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a23113d il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cbb483d il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x410f2d0b il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c08a0ca il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c817d05 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a9715f5 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f6275a2 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x407ee52e il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40d8845a il_setup_scan_deferred_work EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4233907f il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x429f4110 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x445192cc il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49ae16c9 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4bf694c6 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cdc4faf il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d8be08e il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5319010b il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55758ec5 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x557cc501 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58f245ab il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a273882 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6794de31 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c222fcf il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bc5a8d3 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c108557 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c5ad7d0 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d09e6f7 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7db611d9 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80535f8f _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80b7b54c il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80f4a8e5 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8209cf08 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8225a3fe il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x846cd228 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x861a4a52 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x898dca9e il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a82a381 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8eb132cc il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91d930b4 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9511d1c5 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a377ac8 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a89297b il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c617664 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42134bdb il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4303d7fd il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x467b1acb il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x469d93dd il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4766d5b2 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b77759a il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53a849a6 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x565e0fc6 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57742200 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59d34d9d il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5d2f3438 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fe5617a il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6143d150 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64a901b5 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66b28b5e il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6791692a il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a4af9b7 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a535bcd il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x703fc66a il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72afa60d il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x750f1f04 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c963253 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e83f032 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x864b4841 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8650e44c il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b3d3225 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b793199 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fb93306 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9405b143 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9abcb5b5 il_get_single_channel_number EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9faf4316 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0ec1600 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa12fdf4c il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa789cebc il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9f16938 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xabb37172 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac08a0d1 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacd80b43 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3bc98e5 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4948a31 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb523de0b il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb618d897 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e36f485 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ead4c68 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ef7cc1b il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa074a0b0 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2f5795c il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3080828 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4e45300 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa535d5ee il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5a0f676 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa86ffead il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8a1f30e il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad910650 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb101e561 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb176868a il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3dab404 il_tx_queue_unmap EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bcf3f2 _il_poll_bit EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbad90a5 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe532c86 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfae6520 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfb41db6 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc05e960a il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0b5edf3 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0f0cce7 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc766de2c il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc98eedcd il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb13e314 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcced110c il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd6fe99f il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcde3b915 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0903224 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd33ef786 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3e0d1d9 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7a42e8f il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc97c824 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe49aee4a il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe504f5a2 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe85075d3 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeaa583e6 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebb8c685 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebee3507 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf21f9d68 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb22a50a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbf618a09 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc257b0af il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2972a13 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc90a2ebb il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9c6a249 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc39a8dc il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc3fd37c il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcff3a92d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1d06a10 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd20ce615 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd33d51dc il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd56380a1 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd59641ed il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7dc4e9e il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda7813ee il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcf79faf il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfa4f6dc il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe15eb563 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe56d5848 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6f60241 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9d9ef21 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xede78755 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef2d1be7 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0e3d0a0 il_cmd_queue_unmap EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x04829802 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x069e6423 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8379324 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8e3a9a9 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc3117d9 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd97944b il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe446070 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x15cbd6d1 iwl_trans_pcie_remove EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1bdb5aea __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x28de498e __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3981e77c __tracepoint_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7e567530 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xae0d9b46 __tracepoint_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf22a3376 iwl_trans_pcie_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf512d1b8 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x08a7ff00 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdc95076a __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x06fa4427 hostap_setup_dev EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13942ba1 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x14d8d5f7 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x15d6941f hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x20bdc7ac hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x21f32466 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x324f8b7a hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x32953b0a hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52fd3294 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x616cb5da hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6e0acc2f hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x784ef119 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x18ac65c8 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1fc5e708 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x22511d9f hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2a17cb2d hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x321c623b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x55559e8a prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5bbf4dd5 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x643cf2b1 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x68c1e946 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6c8de306 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6d25d635 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6dda8e8c hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6ff2f1e0 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x74cb5c06 hostap_set_hostapd_sta EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x82d3dbc7 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8664ea33 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8aa78e18 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9928a344 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb1b9f471 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb3316688 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8e4f36f7 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90bf3a5f hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9e502c24 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaf5c7c0a hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb171803d hostap_master_start_xmit EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb5e81769 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbc5fa603 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd9e6ae9e hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdeca1429 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe99bd715 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xefda9a47 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf892a060 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb5671dd9 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb573895f hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeacc243b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeed2f1bb hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf89ce34f hostap_remove_interface EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x043b4ba8 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0b396d94 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2646db0a orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5811b589 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x59403268 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5c11ba0f orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6402d5da alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6cb06a3f orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8756272d free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa5c46e69 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb03ea172 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc18e265c orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe44c137e orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2150f173 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x229f7db8 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4272fb9d orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5db530fb __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7979d26c orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8eebf9b9 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x93056357 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x949eede5 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9d3695ea orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9def15e7 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xafd650ce orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd1ee523a orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd2cb741d orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdb9670af orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe89df396 free_orinocodev EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xeb06cb81 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xec6508c7 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf181fe18 __orinoco_ev_rx EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x978cb0e4 mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x4c470702 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07239943 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12c7f6e1 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14bcd0e1 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x209d988b rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x23243d9b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x50c8abdb mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x83eb21f0 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0293a88d _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0983d1c3 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b0cd357 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e7ccb67 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x106d82f9 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x131b6a9f _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x205dd4e2 rtl92c_dm_bt_coexist EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b312b90 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31248446 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4367460a _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4dff9cd7 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e24533a _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a850fe3 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ad78f68 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x626ec611 _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6445569d rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6728d5d7 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d05c994 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f50fb02 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x784b5ebe _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88d5b367 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x954bc978 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9694f3eb rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b4f5ec5 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c16d57c rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa23d9789 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3af61d9 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc48ff3c8 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5991139 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5fa8fe9 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf1bf208 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4f5f5ae _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd8509814 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda3ad0bf rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd449788 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdeb8ac2a rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4072d39 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4d7399d _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe96969c0 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea751b06 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeada5207 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf272a564 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa09f92a rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0695c358 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x15a6079b rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x487f011a rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xde651120 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x307bcaab rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3b01d6f4 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4cd989a1 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x69006419 rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a9a6599 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x25d016f7 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x319fa5cf rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x363f67aa rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a5f26d1 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c86870a rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3cc308f4 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40b027ad rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a46afa0 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x54a6dce0 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61508985 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70b8fd2f _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x724895b2 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76d51cfa _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7d40c8cb rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7eb5b6e0 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x847254b8 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8acb0618 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ade987b rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b049158 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x946dffe4 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x956a9d67 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9785ce6e rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c318f0b rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1c101ab rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1c7aa52 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa71f3fc7 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae7d3987 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb21a45ef rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3d6dbe9 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbf928dea rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd610a673 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9bed66e _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf74955f0 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff9348a5 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x18708c41 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7475a0ed rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd9286e38 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf1acdc54 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x181bb012 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6057b332 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x81717b16 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb61b97d0 rtl_usb_resume EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15c107a9 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b942e17 rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7277f6 rtl_wowlan_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x276ed4ab rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2946e1ac rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2af0b6d0 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d36a5df rtl_init_sw_leds EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36aad30a rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3eef05df rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x323fc6fc rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33d2f1d0 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x376f2cc0 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3985b72f rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x532de551 rtl_hal_pwrseqcmdparsing EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d3579de rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70a9dc51 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73f1f0e0 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75daa800 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84319447 rtl_init_sw_leds -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b720e2a rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91740876 rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b2ef1b0 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e2ed5a5 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa41a6852 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaee17b3d efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf5c0498 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb3e0eec5 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4ba9823 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb056418 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc8fc4c0 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8fe6af9 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf652d0f rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x596ec5d8 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b807160 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x695b7f52 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69bd6d9a rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71d0a480 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76bfa97f rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7783a0d3 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d0af996 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8955f9c7 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8cd7126d efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ef8af38 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x905e03a3 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x947244fd rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf123f69 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb70a2833 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb978c1ef rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf1d9b28 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4d8505c rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5873508 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6348e5e efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8565367 rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbeb4dc6 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea9897cb efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed4e8afa rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdedabcb9 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1648cbd rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe40f6bbc rtl_cam_del_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1d210c1 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf24be9d0 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x7bd0e0d9 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xe6109754 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x90309a6b rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x7ff2f155 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b21ed53 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c65f92a rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0eac6c64 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f439e98 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0fbe04f1 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x111fc4bc rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x191fbe19 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1be30212 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefbe134c efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc708445 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x0085ee43 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x9d4599ce rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xeb6594f1 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x04a7ffcf rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x009e4ab8 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00ca758c rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b5c2353 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ffdcc5b rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x128edb51 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d29ac0f rtw_phy_set_edcca_th EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc2d072 rtw_tx_ac_to_hwq -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2436b061 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24c8624a rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x27ed01d3 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c829ff7 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c86fe21 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30e366b7 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24c5f934 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2618efde rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30a40b55 rtw_chip_info_setup EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x361a7df1 rtw_phy_pwrtrack_need_iqk EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37d630cb rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a0a59ce rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a32c5cc rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4246c570 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37603394 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b6688ec rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4156cf45 rtw_phy_parsing_cfo EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4bb845cb rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50a02a7e rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47846eee rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x492ce213 rtw_core_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5404b82e rtw_phy_pwrtrack_thermal_changed EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5fc9e075 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x62021941 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x687ffe07 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a30ce2f rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a835f68 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74628656 rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x776170ae rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77a0791d rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e3a9800 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7f821a06 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84a945b2 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b880cfd rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e75fb0b rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x908f6426 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x943f1863 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95ccfaf5 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ffb6e57 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa46825d4 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5005aa1 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5614e12 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa85b1ff6 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9822a9c rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaecda8ed rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb07eda7a rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3d239cf rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb62cb16b rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbee53843 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc78792de rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc805b8e4 rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc8c634d1 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd4223209 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd930e260 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe366c529 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6bc4f73 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9d09f42 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xedb605b0 rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xef037162 rtw_tx_queue_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf228184e rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf3b66d2e check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf6f852e9 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x03630d07 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3885115c rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8b07a2c8 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xfef9a625 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x07c61dc9 rtw_sdio_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x80e4db17 rtw_sdio_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xad5f6105 rtw_sdio_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xcecf6aff rtw_sdio_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x8b3ae05c rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xb12dc674 rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0xdde61548 rtw8851b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x17b2ab76 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x602c7986 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xfb8935e9 rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x01dc02eb rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02023c39 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c865afe __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c8a50f4 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x11d9a8bc rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x132a09eb rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14c4ee6d rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15bc0899 rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x20d4c2cf rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x22be2ee7 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x252f3321 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2ae2eb11 rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x317ffea3 rtw89_encode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x33ef601c rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38e8783f rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ee50dd8 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46dce1b8 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4de9df65 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4e428f7e rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f2843ed rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5e97a195 rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x69468517 rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6a9256b2 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7250ebb7 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7327a46a rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x74b9debf rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7b6cf7b4 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fe77928 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82fa08b9 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x87fa3ab2 rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b2ca6fc rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90c8fde2 rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x944d88aa rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x95bbb1f7 rtw89_decode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x96af7b6e rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x97e3c2e2 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9948cd78 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x604ae9be rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x606cc310 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6122e301 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6172ea13 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6295830d rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6528f708 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x676cf2f1 rtw_tx_queue_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e3ff5cd rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f97d690 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ff2fc42 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x70cbe1da rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7b16cac6 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7b620642 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7dede996 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89842bb9 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9196df0c rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x93e59a6e rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97191432 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97377e33 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x98476664 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ab9b0cb rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa053a568 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3bc6170 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8b95931 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab6bd6fb rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3e9f262 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb5fac207 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7662761 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb88b4dc1 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9558236 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbdcb6a26 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc0a7b281 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2554832 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2c862ba rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc505e300 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcd313fab rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd33c54fd rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd37002d0 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd56b2a59 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb54e77d rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdecb7481 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf08abc2f rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf0beaf89 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb926ef1 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfbdb3952 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfc556f8a rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x554ca53f rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7cab5beb rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x919abe3e rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xae46c4f0 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x160c2122 rtw_sdio_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x2ba073f7 rtw_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xc5d56633 rtw_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xd118b74e rtw_sdio_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xa33c91e9 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xbf8f429d rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0x630c18c9 rtw8851b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xa958a6f7 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xdec67407 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x45633868 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x00498f44 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x061c1e69 rtw89_decode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0823f7c7 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0d492306 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15269194 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1723a13f rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17d2836b rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2724ae18 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x293cabd6 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x311d654d rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x328b765f rtw89_encode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a63c25e rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ca964d6 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x408d0f33 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x463a9af4 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x503a909d rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x52e6116b rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5af8dea3 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5e2157bd rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x618b60e2 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6bb2e186 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f6ed841 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f74b69b rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6fe74fb0 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70d90007 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x74c01fda rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7aa1963e rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ad661a1 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x88ca09d7 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b1e2b88 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8e9a8305 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f065a20 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x92f5fda8 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9345f98f rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9661b5f6 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x99d43b94 rtw89_chip_info_setup EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac85705 rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa06d46ba rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa4be6a26 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaa5ceb92 rtw89_read_efuse_ver -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3aea5d5 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3f4b985 rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4cabf00 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb6ea673a rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbbac5daf rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd71367c rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbde06e11 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc760cd87 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc799b279 rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc9433bdb rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xca3f1d1c rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xccd9119c rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xced0b414 rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd496ef26 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd649d384 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdcc8836e rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdf236bfd rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa16de711 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3c240e6 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3f7cb86 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa60c3b33 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa619595d rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa7fbee2d rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xab4270c2 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xabac4ef6 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb77043e6 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8ed990f rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbda0aa99 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbee82b5c rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc1867e53 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc591c289 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xceb3156c rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0709177 rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe1884631 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe28e7d0b rtw89_core_fill_txdesc_fwcmd_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe6489ddf rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0d5ec2e rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf679aaf9 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa06b73e rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd7c6521 rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x34f035e5 rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5001eb8b rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5ff09028 rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x63005ddf rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6e77442e rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe9468f2d rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xed86df20 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf057d586 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf69ad337 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf7880ac9 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf79f9608 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9a4aeb6 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd7f91db rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x05416403 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x08a0c29d rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1ffaab72 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x23ab3d45 rtw89_pci_remove EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9c9246b2 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x790306e6 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fa17d6a rtw89_pci_probe EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa0f5721d rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa1197a7d rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbafd2988 rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc5267a44 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd0eef02c rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd44bdaeb rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd4cb8786 rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe31c9855 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe9803a58 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa9b4dc86 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb7179d94 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb79701cf rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbe3b3863 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc29f71f5 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xce847adc rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd4846407 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe4e38985 rtw89_pci_disable_intr_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x9eeb5548 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1a251518 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa98dffd3 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb524e81b wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf63fc4f1 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x64502aa7 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x840854f9 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x1a2eed7e microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x3256ef72 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x83252f90 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc36d4dcd nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xeaad4305 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x105f542b pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xa3f1614a pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xacb2776b pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x05cd5a53 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6ca6f266 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfed73bb6 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x6e67d6f5 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x061f3410 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3210f6a8 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x53ea7d02 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7cff5adb wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x36c9adeb fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe3db8dae fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8fa02289 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x9e3d23dc microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb0eb81b2 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb82d22aa nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe4b91645 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x9e60a53d pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x455ab536 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x49497115 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x363ee06a s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa77d42ba s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x970fc051 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9c7e3486 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xefeb71e7 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xefb945c6 s3fwrn5_probe EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1c88ef71 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x44588255 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x95904577 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9e1c0bae ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9e97d1d0 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa6ddc26c st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd9d3aa2c ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb75c883 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe5443a47 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf37e519c ndlc_send -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x069f7a0f st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x17704bbe st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x19195a54 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e21e2fc st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x26eddc95 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2cc4ca1f st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3a5aa46e st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4f9771c0 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x60042f0a st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x78cc73e2 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9740c709 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a5bd932 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa9b85cc st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbea7cd67 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf27a8f3 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd28c4f63 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd816dbe1 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf5d176d3 st21nfca_se_init -EXPORT_SYMBOL drivers/ntb/ntb 0x07349169 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x11a268f9 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x180f758c ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x1a8b5e4d ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x30ebcf6e ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x53691ba0 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x59178b35 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x716ce07e ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x7996c591 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x7abcfd13 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x7c0de9c1 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x846155b0 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x878aded0 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x99834e29 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9a4e66d4 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x9c05b809 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xb3ed2198 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xd6180920 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xeee7baff ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xf67a4412 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x18abd7da nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd013a5f1 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x01796933 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x05b2b195 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x0a1af6a0 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x0ec1db0f parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x1f958fe4 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x2a31d28e parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x2bb7a09b parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x2c6d0cdd parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x2d5d239b parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x35839c36 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3b9682db parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x4266d26b parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x45b4bf31 parport_announce_port +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x200f8a4f st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x39fee0a2 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x44d2f50c st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5773de83 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5803fad6 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7a795788 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x91d302e3 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa82b8a1a ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa870fef0 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xba48e4e3 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0705d265 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2d627eee st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2ecdb675 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3e6d1adf st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69c93011 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6f139ff5 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7cc804b3 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x845148dc st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x877f90e1 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x937547c4 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9830fae6 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x98425214 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1c89f24 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb1d5e05b st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcc21f9d1 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeab8d2dc st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee78858e st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf5a8d0ed st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x084d8240 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x0e728ffa ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x2dd884aa ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x481ce9d8 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x65f23011 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x67463fe7 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x6db38353 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x6f48eadb ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x73209721 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7fcf156a ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x82611b36 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xa3a20b57 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xaee145f6 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xbd285c8a ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xd5780a28 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xd7460ef5 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xda9d356d ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xdbdf4db9 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xea0470e1 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf0cd6fae ntb_msi_setup_mws +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xbd344227 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xc4f749d1 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x03d9277f parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x08c81af7 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x10544cbd parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x115538d1 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x303e64b3 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x32f3c013 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x3cc89563 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x44121e9a parport_ieee1284_epp_read_data EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x5167c252 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x5355ce5c parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x5559f8ea parport_read +EXPORT_SYMBOL drivers/parport/parport 0x4de71d30 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x53ac0b6a parport_release +EXPORT_SYMBOL drivers/parport/parport 0x556c3f16 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x58b07fdd parport_read EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x62ae5a3c parport_write -EXPORT_SYMBOL drivers/parport/parport 0x67997da2 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x72abdedf parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x7a2609dd parport_release -EXPORT_SYMBOL drivers/parport/parport 0x8246fd71 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x8dd178d9 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x8ea0f255 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x8f9683e6 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xa5e4a046 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xbb6527c0 parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xbddf97e7 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xc4312561 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xe08797e7 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xeb0b8fa8 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xfdf3d8fc parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport_pc 0x40701431 parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xc5c9ad52 parport_pc_unregister_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x067b3b73 pcmcia_reset_card +EXPORT_SYMBOL drivers/parport/parport 0x69da49f7 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x7a5950dd parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x845a7d01 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x91c78852 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x92357c62 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x9836ade5 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x9be86640 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xa5f492ed parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xa858926a parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xb0c418c7 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xbf87598d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xd107be9e parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xd1deb775 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xd9511273 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xe9edc7e8 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xf91d62ad parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xfbbe5e4a parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xfd8a7dd7 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xfdb9dae6 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport_pc 0x09dbd261 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x615279b7 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0ca0f943 pcmcia_get_socket_by_nr EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1c780fab pcmcia_socket_list_rwsem EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x40f76841 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x41ccca8e pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4f39e920 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7edad45e pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaa58b7c3 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbc3b9864 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbe1cf460 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcb4830ac pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3e5e0865 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5b397c81 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc49ded36 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc9516b97 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcd873d6d pcmcia_register_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe26137b0 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9471b6e6 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x218056c4 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x41f2f339 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x8e0756bd cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xae9800e2 cros_ec_register +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xdf14ecf0 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe3ed325c pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfd83e63c pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfe9665bb pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x08c5d436 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0519e191 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1cd147b2 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x82c097ed cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x95c67872 cros_ec_resume EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x0f1e724b rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xdcc0c109 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_glink 0xd7119b40 qcom_glink_native_rx -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x6d08b3e4 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x8e12373b qcom_smd_register_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xadc8e61f qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x19bfc483 rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x3b838af8 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x12332493 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x300f1c3b rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3bc30e81 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4915f851 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x49997694 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x64cff47a rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8ab206ba rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x96ebc8bc rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x99940046 rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9c27a308 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9ff18936 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa2606a97 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb3a1c38f rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb8dd1a79 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbfba45f4 rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd09100a0 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdf306a94 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xebbd1d0b rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xef35b1b7 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x49b3cbdd rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x43081c11 scsi_esp_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x4b9cfcb9 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x521d4044 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0c0f29b5 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x11072925 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x14002d23 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2365c3b4 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x286e2f88 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3ac13ff9 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5db6a3c0 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x62c90e5e rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x63038388 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6c19be2a __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7bc41c9e rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8bb30825 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9dbc7c6c rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xac01862e rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xacd0f668 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb6e2e998 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbaae521e rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbd998417 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe71e3506 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xb23fc14c rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x050c3117 scsi_esp_register EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x82e155f5 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa69b5a2d scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xed6191a8 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0b96aa31 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1a780b7e fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1b8400f5 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1cd30a02 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3b7d5ed1 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x57c7da87 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x58189d01 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x994de9ca fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9d7e0d28 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa2e063fa fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc92b9a28 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x040a1563 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16db9b48 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20472dc6 fc_rport_create +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x718591cd scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9fa37160 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd22b99b3 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0a67cdac fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d2be5d5 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x463fccfb fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bf1ea1b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x635e3309 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x64bf85f2 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7a643795 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7a7a6b84 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x99f7e123 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9a5e586b fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xac687d06 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x121d5f67 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x169c6003 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17293e88 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e254cad fc_linkdown EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22f79184 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2533518b fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2769324e fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27b85ff8 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30f285be fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31734d28 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34b1d512 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36376b99 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36c5e6cf fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4011568a fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ad36d93 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c103bbe fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x502feb1d fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x525eca77 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55a4b45a fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f0b139d fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35e37260 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3901f71f fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a87517f fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d3b3e59 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x403337e0 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40cb77ab fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x459bbe6f libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4864dbec fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49852bd4 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d65d3d9 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5081cdf3 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52b5222b fc_disc_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56d0c024 fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x580a650a fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5998663c fc_fabric_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ec4ee25 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x616e2252 fc_get_host_port_state EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63a50fca fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6426d42b fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67102abe fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6740697a fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x681f9dd6 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d31a5de fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7373b400 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78798fc4 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78905c13 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7b96bae9 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e31b090 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x747c790a fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x762916ff fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c38fa8b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d5b50d0 fc_exch_mgr_list_clone EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8033aaec fc_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x821b01c9 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x830a5381 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85531b05 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85d2e736 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x815007d7 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8755d88f fc_set_mfs EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8789ebb2 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8be1196a fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x955e9ed3 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x899f4890 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8dd9cfdd fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8deface8 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92c73c96 fc_exch_mgr_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f04ce48 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f5542e9 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ea02038 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1787eb1 fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa37b5136 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8dcf489 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4db9926 fc_set_rport_loss_tmo EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb704c2c7 _fc_frame_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7ae4a6b fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7d90c83 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7b66882 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc0f5f65 fc_fc4_register_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbec259e3 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1ba63b8 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8c23ef4 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc4b801d fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce3c8591 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6144e58 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8672850 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc31f2c95 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3f09b46 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc56410af fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca00320d fc_rport_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9799f29 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeca27654 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6cc658a fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb1a1d14 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd4b7b2c fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfc2a112 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xefdaaffb fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xefe96781 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf85612b3 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9990824 fc_seq_assign EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4efa15 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa9bb823 fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd471b29 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffc27191 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x41c497f7 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x45c5b236 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfeb93dd8 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfefbd659 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x23047d2c sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4b916f9c sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a79e8d4 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7a901403 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbae6daa2 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf199ed92 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xbe04d9aa mraid_mm_register_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2c5dd9a5 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3539bbd5 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3760f679 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3be741bc qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4c9ae4d1 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x63a53248 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x856f4620 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1657436 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb1a51495 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc085cdf4 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe31c0002 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfb12912c qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/raid_class 0x66e2e1f7 raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xce911f8e raid_class_release -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x04dfc88c fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0eb94cfc fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xc00b914e mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x01760c46 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x40dfcb17 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4dec41f7 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6fc479ae qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7337d413 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7565bcda qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb98e51a6 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbfd2f849 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf0fe11a qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd17b502f qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf6ba261e qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfbdcf45e qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/raid_class 0x4fe8a8ff raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x5172bf7d raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0a470eb5 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0a6ba498 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1ec576eb fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a1f548a fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2cde588e fc_host_post_event EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3ad716fb fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4e003e91 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a5826de fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x605dd6e2 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x65f577d4 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x673f21aa fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x85513f3f fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa159e42d fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa98c1fa2 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd0c2542d scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1318c05 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd64224cf fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf98d7cd5 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfc3570ee fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd224e1d fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x009c8260 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09f9cb31 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32a30ee6 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x384e8996 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50fcd973 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54dd10ec scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56f2f6e9 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6188f6bc sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6290da56 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b8252ee sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e5bd186 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81eee8e4 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x872151c0 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fa0061e sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x94673992 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9bc839f9 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xafbf84b7 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc17dd790 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc310e1a5 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6259f2e sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd305ff53 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4f4e006 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6dbcd9e sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5caa254 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xecb8d3d9 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xedb559f3 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf30649c9 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf652cde2 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff8280e0 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x33957aea spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x385d7931 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3a0c4b8d fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3ea35a48 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4bcfdb8c fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x54b31e76 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x81ea3734 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x95de104c fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa36ada07 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb153a042 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb1be4bb0 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc5b7c59f fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf9affad5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x047cee75 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x094d6e85 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0daa9c04 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e1d4cca sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10cad01c sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29f4f3f8 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55e5bd8c scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x560e807b sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58f5dd7e sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6588079b sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c006e1c sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d320c56 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6dc2e037 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e4d0a3c sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ed038db sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e3d93c6 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1da2aa6 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb327beae scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7959e5b sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb1e0b4f sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc189c5dd sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce27f9b9 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0077bdd sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd02f0631 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1b63d94 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3630218 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd674707b sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7012baa sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4bdc2a5 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x23d495fd spi_schedule_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3e87e01f spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xafb87632 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc0621e63 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfc019019 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0ca4dda4 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x38581a06 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x99ae8428 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcca68d46 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd0ef332f spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe6d5fafa spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4049a7bb srp_rport_put EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x410a7cdf srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x77aaf644 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xebaf30b9 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x69b12a16 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x8261ae16 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x97d9026f srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfc101b88 srp_timed_out EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x07c67545 cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x08e8f13b cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0cafe582 cmdq_pkt_set_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x150e62d4 cmdq_pkt_wfe EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1fbbd154 cmdq_pkt_write_mask -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x2babbd5b cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3b8edb0a cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x47372f33 cmdq_pkt_flush_async EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5dc77432 cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7e9a21e0 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8361f498 cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x85062817 cmdq_pkt_poll_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x95cd56e4 cmdq_pkt_assign @@ -4308,8 +4308,8 @@ EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc3a9e0eb cmdq_pkt_finalize EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc4c5493d cmdq_pkt_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc5616551 cmdq_pkt_clear_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xcdc247aa cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe2ee5cac cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xcacbd73a cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdb655729 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf8ee0415 cmdq_pkt_jump EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x7ccf2ecf of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate @@ -4318,43 +4318,43 @@ EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x09d30fe5 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1b2e10b3 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x294712ce geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x305dbfa9 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x47b7ea27 geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x54960e84 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5afeab98 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x61559669 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x653c3586 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7ee81b62 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9048a682 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x96c95700 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xae9278f8 geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb28c22cd geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb8a56a43 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc0f0a7d6 geni_se_tx_init_dma -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcc954c7f geni_se_rx_init_dma -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xded46735 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xfaad79da geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0620ffb7 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0dd493c4 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x34469115 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5d1135f1 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6553936e geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x68623b72 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8b6357b7 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8d0270bf geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8d94ec12 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9ccbe76a geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa6967262 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc12b05f2 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcc20a29e geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcfd499fa geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd9d6e05d geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe7e95473 geni_se_tx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe905037e geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf7021d4c geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf7839915 geni_se_rx_init_dma EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x0d4df54f qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xae4b53c5 qmp_send -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x02e40f29 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0607ed39 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x08602e1e qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0996d13f qmi_add_server EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x34c150c0 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3ba3e352 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3fbc1302 qmi_txn_wait EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x75c6027a qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7a9aa6c1 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa1343d21 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbf58ba12 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5859ba25 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6da5e8ee qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x791a964d qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb3fe24ab qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb7238830 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xbc34314c qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc5bba6ca qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xebf53df3 qmi_txn_cancel EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf600d6b5 qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf72d561d qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfdc0d23f qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x46bb046c qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x129293c4 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x64dce203 qcom_wcnss_open_channel EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0136d0e2 sdw_slave_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0fcde734 sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1259a9c3 sdw_compare_devid @@ -4368,7 +4368,7 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b52d002 sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4051306b sdw_update EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5c5f501d sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4fdfbb20 sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x65077199 sdw_show_ping_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6b69905a sdw_update_no_pm @@ -4381,340 +4381,340 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x78faf357 sdw_bus_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7eb49446 sdw_nwrite_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85760d6d sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x87e4e55b sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8e5b90aa sdw_read_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa53bd713 sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa7f35e58 sdw_bwrite_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb01d8cee sdw_extract_slave_id EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xce7f4572 sdw_stream_remove_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd20d27c5 sdw_bread_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe19c6c24 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe5a01c7a sdw_stream_remove_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf1d1dec5 sdw_handle_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf65d3813 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf963bc0c sdw_stream_add_slave -EXPORT_SYMBOL drivers/ssb/ssb 0x0073f05f ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x168d7dfa ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x22a494e8 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x31770729 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x346cd584 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x41d95aae __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x4bf9c519 ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x53fd5fd2 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x5a67cea0 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x6c5c201a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x907c5fdf ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x9165a4a8 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x98902db7 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xb15d7364 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0xb55b0a91 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfd6a7185 sdw_stream_add_slave +EXPORT_SYMBOL drivers/ssb/ssb 0x0432320b ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x2428cdb7 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x4178a758 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x498a40a3 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x5667e3ac ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x5a21b97b ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x5cdfed66 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x5e7dfdcd ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x60506d2b ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6270104a ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6441a59d ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x6b9e761b __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x73374097 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x789150cb ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xa098725b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xb0578494 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xb17d8586 ssb_set_devtypedata EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd421ff5d ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xd67c764e ssb_dma_translation EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe0670c71 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xec965b6a ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xf5c51381 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c8503ef fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11d110fe fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c5f7244 fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25b0a3fd fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x266354b9 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x27a84ff9 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b0bd27c fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2fedcc8b fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x46a5fd91 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47b423e5 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4959ff71 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4af5b3c7 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d0442e3 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b2869fc fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f8f5ee8 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d4cae6b fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7743f94d fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79b8340d fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7a296761 fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x980b3f13 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd46e95da fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2dec820 fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe6a01389 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeaf96637 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xff02240c fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x52fe173b gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x94b83cc6 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xa49a6b02 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x85d02c6b adt7316_probe +EXPORT_SYMBOL drivers/ssb/ssb 0xe3c0f434 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xe5c7b4eb ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xee52b842 ssb_bus_suspend +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x06b185ec fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0df0fb57 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x137beb14 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e332d5b fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44bd067d fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48ad61e6 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ae46744 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x57e1d626 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5dccea5f fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x72062a2a fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7a7ffca5 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x80fb7b15 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x86f53386 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89f6d8b3 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8dc5cd91 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9850779b fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc48b6303 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc83b3dd8 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca5c93fc fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcb572083 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce518231 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdfcd66a9 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe781683a fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xedbe0899 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf83b02c1 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x3d58004d gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x54786263 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xe27b0a12 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x2b4da0d7 adt7316_probe EXPORT_SYMBOL drivers/staging/nvec/nvec 0x3c81e6f6 nvec_write_sync EXPORT_SYMBOL drivers/staging/nvec/nvec 0x4ab06e49 nvec_write_async -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01906a05 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05584490 RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0867ef9d rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x101181cd rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12f6c429 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14c9c6a5 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1af40c04 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c4f1682 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01f378aa rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03e5bb45 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b575b36 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b1368ca rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d744d3a rtllib_start_scan_syncro EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2263d959 rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28b39e59 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a5de872 rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a997f4d rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d3e19e6 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3725461a rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x46eb955b rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a09fb13 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e437d5f rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x581e0f1d rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6184d383 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6646a1a4 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x699fa7e6 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75b9beeb rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c618549 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ca51276 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7cbcd70c rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f2f5de0 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80c1a1fe dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80edaf38 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x810ac0d9 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d2f3914 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ed577f3 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabdedb51 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb37230ae rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfb40396 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3df5741 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc46fbf5b rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce4e0bc4 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd020480e rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd9b3bac rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfbe22c0 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe03b623d rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe788e070 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb87c189 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeea044e7 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefa8225d rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf08d7cf1 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1c8bade free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff6a5e21 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfff140d9 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x043f537c ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06935222 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07468601 ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d21fbaf dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e99788d ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fceb464 ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1575a0d5 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b6a27bf ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25f67be3 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x29297d03 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2afbbf5b rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2caf40a0 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x301643e1 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32a992a1 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ae0552c rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b892b03 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x454785da free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x47736bdd rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4c2d640d rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x537f28b1 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ba95fd2 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e4f5aa4 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5eccd3c8 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fc64a24 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6170554d rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66644639 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6da59426 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x704dd91c rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70cf43b7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75497e14 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76fd5e87 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77c3d795 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a0903c9 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7bdb4a11 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fa7070a rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fba7ca7 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80163b0a rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x827c9d6e rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88f3a361 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d7b3b3b rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a4dca8f rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f4477b6 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac2d48f0 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1267765 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6713617 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd59ee6b alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7ae2f45 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd11b382c rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb036d52 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xefc7b74b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfac82866 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb91b36f RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0eba048b notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fd3c0c8 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10c9f7ce dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1cbc62f4 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d3a42f3 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21591820 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22e0a6bf ieee80211_get_beacon EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cf0c883 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2dea61a2 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33cbcf28 ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a0a41b3 ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4477efc0 ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bfb1949 ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cad3c9f ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cf0eeec ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x587ae8bc ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f5ef586 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62cf0cb0 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d14788a ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d32ef4c rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x306b11fe ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3812a0b8 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3feed01d ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47132090 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51ae8380 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x522bf33e ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5391eba1 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65f85dca ieee80211_wx_set_freq EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66979591 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x709a181b ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x744c773c ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74b202c0 ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74de900b ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x755c7446 ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79d3c7de ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7dcd78cf ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x870ff7ab ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89ca3efe is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89f7796e ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d2c4534 ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f68df25 ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9557d740 ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97ba7338 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99b73313 ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9df3bb03 ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f6022d8 ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f95710b SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa34747ff ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5923a40 ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc124d7c8 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1cb6873 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc560e48c ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc63b574b HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc82939d4 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca4a1f3f ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd57a0396 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfb9400d ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe28cb67a ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3d0e8aa ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5087686 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69a236a6 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6dca52d5 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e0b3c7e ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e666308 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x770d485e ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b2f7e6e ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80ae4a9e ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8261892b ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d89b59d to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9286c14a ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96d79b10 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9787ced1 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x989600ae ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99631854 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9975a0fe ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a3e6c47 ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c74af65 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e2c77ca ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5a5b252 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb280f988 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba43968c dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd06ea40e HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd34dcf67 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5adb371 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1830971 ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4550b4e ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe466dbcf ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6abc8d7 ieee80211_stop_queue_rsl EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe825617f ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec74b0c9 ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf81795ed ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd92ab5e notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03fb186b iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0523cceb iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09ec1436 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f25b159 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10d3e204 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x185dd08b iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23bae17c iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x25fb4b8f iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27cbcad1 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a63a080 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39f44ef7 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49288752 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a697842 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fed990e iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5443e17b iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59f79a4b iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a9e71d9 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b5a9bd2 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e753230 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6fcf1a05 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70254219 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x76c3460c iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x821211a0 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86b359db iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89a55604 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c852f72 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90262304 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9aa2a18d iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1ccbbf9 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2377906 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa54b1555 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaeafde22 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1102975 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb777862 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbcee2419 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbb8747a iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd16e4254 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd24d2075 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe772f3cc iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef706263 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2288cc6 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeaa8d1ea ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xece5ac7a ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf138ee96 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7b6584e ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfacb8f22 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb03a40c ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc3573a0 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd0f1111 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0283e4d0 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x053adad8 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24c200b1 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29a01b77 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b0d1f87 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3540e0c9 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42c4d9c5 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43ac557e iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49cdc027 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d4f166a __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66b3d17c iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e62675c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71997f9b iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7434110a iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x78f2736b iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7be0595a iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c00e751 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83bb8db2 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x843992a0 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8be24b8b iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e3e6f74 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e846a6f iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95238f49 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9828026e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x998b3a5d iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b11a36e iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa359ec63 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa925eb16 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xabb01dc4 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc10bb339 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc87edcf8 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xca710294 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce291433 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd14b8293 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2cff4c4 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3f4b33f iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6119b28 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd63c136e iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb332c39 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe26d1349 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4d2f520 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5ace020 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe700c356 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebbec53b iscsit_logout_post_handler EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf451d340 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7d5fcab iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfad9da2e iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc77cb8f __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/target_core_mod 0x0619afb5 transport_backend_register +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffdf4973 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x035ee60a target_put_nacl EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0c6a3924 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e96a497 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f9313ce transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x11060b2d transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x1330d43e target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x13e06f07 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x1060f7eb sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x1265c234 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x134d2207 transport_register_session EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1bf0da56 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d3e9d13 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2132d485 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x21f27e7d spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b928249 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x308d4385 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x345595c7 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x388ac418 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x20ab86de target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x2439108e transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x263de7a0 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x294dd63d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a958b42 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f27a061 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f95e601 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3308e1df target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3431b40c transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x34e6faf2 core_tpg_get_initiator_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ae521e6 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x42cc6437 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x438788df passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3bb1b51c transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ca8b546 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cd9ece8 target_complete_cmd_with_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x4d339657 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d80b5c0 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fc70d25 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x556963ef transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x561b0934 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x57cf9b8d target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5929e619 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x5a694421 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d4adeef sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ee845c0 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fb8caeb spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x5044abc3 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x50932014 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x52301736 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x52bd3c15 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f1b16ed target_cmd_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6428d7bc sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x6841f96f target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c51977e transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e51ddce target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x719b6e7d target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x735425f3 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ae81334 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b5c3219 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e193697 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f8d2735 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x70cd1282 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x71c4b30e core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x72d709dc sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x7430545a target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x77cde9f1 transport_backend_register EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7aa07359 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e8a0c2b transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x85244077 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x87039b20 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x898b6225 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ab38d9e core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b995392 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8fc45911 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x98e2ed43 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa4789d95 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6781c4e target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xa74dd7f4 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xa8c1bae4 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xabd8c34a target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xac8f5290 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xacbf1bdb sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xaf3afcb4 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xb2449924 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3fc6cda target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0xbbb81821 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc8d3a7f transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xc2a94112 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xc822826d core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xc9938621 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xcafe54f0 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdef26b8 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xcfc6f147 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xd5e24490 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xde2b4c18 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xdfae372b sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5cdde1e transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0xe7bb839f core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe891fb36 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xe921ece2 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xea779450 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xec4ea1ee transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbcbb24 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x81c13cd2 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8248e13d target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x84425378 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x8885792c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a4907aa target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x93dd0683 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x94375abb transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x994794b1 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b25276f passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0f715a4 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xa544ec40 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7d1ce9f transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb409f26f sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xb92e9b44 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xba040be8 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbaac5c2e target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc4e48f6 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc08f0f7b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6e3945e sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc701b189 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcacbdc37 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd1a617c spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xd48843c7 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9d71fff target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbae5444 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0dce5d8 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4625746 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe61a9eca target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe69a677f core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xea92ebcc transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xee317472 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xf186593d transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1bf7a2d spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xf226890a core_alua_check_nonop_delay EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf54f7e74 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf7db73da spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xf81f3613 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd56de8d core_tpg_deregister -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x074f6bef ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x37a01276 ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7a6733a1 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe87c4abb ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xf086caed ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xf7b03248 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x1a95fa83 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xd7f0c3c5 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x8c664788 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xf9033bc7 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x611b89a0 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xdcabf878 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x9a9b5eae sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1ccf5e18 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x23fdc5cc usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x30cc6dde usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3565f757 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x36e12b70 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6416a279 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd3040cb4 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd667c91f usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdfc6a4c7 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe0657bcf usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9f197ea usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x5956e661 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xf087a5c4 usb_serial_resume -EXPORT_SYMBOL drivers/vdpa/vdpa 0x14ca62ab vdpa_set_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xf67aa9e0 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf987bef6 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbedee37 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfda1f8a3 sbc_attrib_attrs +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x053680af ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x4c1185ba ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x60324abd ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6e2efbe8 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x733a7d92 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x80e60810 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x741e0715 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xd3f8a215 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x3b4026dc ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xb7cf4672 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xba4f4851 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xdf86b3fb usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x43e433fe sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x06b56aa4 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x41d563d5 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x43880c39 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9b63a023 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9f0ef93f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xabddcaa4 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbf8b4a3a usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8570ffa usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe9a391da usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xed8a4f51 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf9badaf5 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xce59d8df usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd2229e3b usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x45a541bb vdpa_set_status EXPORT_SYMBOL drivers/vfio/vfio 0x05b8cfda vfio_set_irqs_validate_and_prepare EXPORT_SYMBOL drivers/vfio/vfio 0x0f655355 vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x4aebca99 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x33411870 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x51f16cdb vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x95814e6f vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xa2c3c32c vfio_unpin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x0f0292de vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0x61fed759 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vfio/vfio 0xccea51ac vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0xcd8357ca vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0xab822baf vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xe149b7a3 vhost_chr_poll EXPORT_SYMBOL drivers/vhost/vringh 0x0bf267dd vringh_getdesc_kern EXPORT_SYMBOL drivers/vhost/vringh 0x1068cf96 vringh_getdesc_user EXPORT_SYMBOL drivers/vhost/vringh 0x22d94896 vringh_notify_enable_user @@ -4746,57 +4746,57 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xf7b0edfb vringh_complete_kern EXPORT_SYMBOL drivers/vhost/vringh 0xfa4921e6 vringh_notify_disable_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0xfb907629 vringh_notify_disable_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x3a35dbbf devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x43bf7091 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x491aaca5 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xb6d8018c lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa1501dd6 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb94088ec lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe28b57ff lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfca63b00 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 0x31d32b32 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x48a1e633 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x226298d8 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x27fccd2b svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4badcb9e svga_tileblit -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x716a2e75 svga_tilecopy -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x763e8c17 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x75d79c9a svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8e8a59d7 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9c712168 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9f7a8ef2 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xba05007b svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc9135531 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xed1dc233 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0c2e92dd cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x29c95a5a 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 0x026dec08 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xa376ddde mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x46bbfa1a matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x4cfb0c29 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7c17a919 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x62d5701f DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb386d2ee matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbd12764a matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd1e45010 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xfbfcf05d matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5de2ff72 matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x185f8bd2 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x316c31a1 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x756dcd08 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbfe8bd03 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa452e91b matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf2e70fff matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd3adf7bd g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe001cd66 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xef367c53 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1e0c28c7 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x24c85cb4 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5109723f matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe1066d00 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xb5094564 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x613a751a matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1689c2e0 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1c6ba5dd matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8d30a969 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x932ecd29 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0e8b5355 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x261bc9c6 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1dc8e032 matroxfb_DAC_in EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x86cb0817 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc1f500a5 matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd2fdff34 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd566dfe8 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe0bacaaf matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe5972a09 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe1de1315 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xeaa8f132 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf3e78bcc matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x01ea132e dispc_runtime_put EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x03005606 omapdss_get_version EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x11a1957f omapdss_output_unset_device @@ -4871,76 +4871,76 @@ EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x6c972b98 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7102f421 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7242a053 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xd9150c2e virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1418a8d2 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xaaf7c1bb virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xacbcedfc is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xd9d534a5 virtio_dma_buf_export EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe05f1b24 w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xf2960930 w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x61904d86 w1_ds2781_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf886d777 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x0c3c6fd4 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x14149373 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xb6e06326 w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0xc4e7630f w1_unregister_family EXPORT_SYMBOL drivers/w1/wire 0xd6a93afc w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xe7854ae1 w1_remove_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x029faf5e __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x06c7f790 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x07cec7c0 fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0x0a5537a3 __tracepoint_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x0d9487bb __fscache_begin_write_operation -EXPORT_SYMBOL fs/fscache/fscache 0x14fb72bd fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x192c1d81 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1288f749 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x14f074ee fscache_withdraw_cache EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write -EXPORT_SYMBOL fs/fscache/fscache 0x1c05ee79 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1b929b30 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1eba2435 __fscache_resize_cookie EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x24995a42 fscache_dirty_folio -EXPORT_SYMBOL fs/fscache/fscache 0x28453711 fscache_cookie_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x297735c6 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x249dd753 fscache_acquire_cache EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x309e220a __fscache_relinquish_cookie EXPORT_SYMBOL fs/fscache/fscache 0x342ac6a3 __tracepoint_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x37824c88 fscache_withdraw_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x4274f4e3 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3a8e6927 fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4551b39f fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x457eff66 fscache_add_cache EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4a9aa5d3 fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4fb85407 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x4d5daf97 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x5008d52a fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x5a3ab407 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x69536890 fscache_withdraw_cookie EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x77f4dd7b __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x713385ac fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x7218f4a5 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x7547f433 fscache_dirty_folio EXPORT_SYMBOL fs/fscache/fscache 0x79c17b43 fscache_addremove_sem EXPORT_SYMBOL fs/fscache/fscache 0x7c4daa19 fscache_clearance_waiters -EXPORT_SYMBOL fs/fscache/fscache 0x86cc2d85 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x876eeb62 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7ea8b5be fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x879540fb fscache_wait_for_operation EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x9d52cfe1 fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa5790b6e fscache_resume_after_invalidation -EXPORT_SYMBOL fs/fscache/fscache 0xa64fc131 __fscache_acquire_volume -EXPORT_SYMBOL fs/fscache/fscache 0xa8ca56e3 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0xa63753a5 __fscache_clear_page_bits EXPORT_SYMBOL fs/fscache/fscache 0xaaed39ad __tracepoint_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xad83fd98 fscache_acquire_cache EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb5228740 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xaf24e83e __fscache_acquire_cookie EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc6a1d1a8 __fscache_unuse_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc77944d9 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xbf821d2d __fscache_begin_write_operation EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xcd7b04fd fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd0d0e8cb __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xe2adf714 __fscache_relinquish_volume -EXPORT_SYMBOL fs/fscache/fscache 0xe8093a54 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xf1cc3653 fscache_wait_for_operation -EXPORT_SYMBOL fs/fscache/fscache 0xf31c8c25 fscache_withdraw_volume -EXPORT_SYMBOL fs/fscache/fscache 0xfa101622 fscache_io_error -EXPORT_SYMBOL fs/netfs/netfs 0x2b696ddc netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x4945a675 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x540d6976 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x67f60d39 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0xa5575752 netfs_read_folio +EXPORT_SYMBOL fs/fscache/fscache 0xee6eab12 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf95b58e4 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xfe2dc4d6 __fscache_relinquish_volume +EXPORT_SYMBOL fs/netfs/netfs 0x249514fa netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x3cad6290 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x475cdcba netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x6e040866 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xc571643b netfs_readahead EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x03d7c0e8 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x3353464a qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x3a9da842 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x46a5c496 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9f4eed40 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xbdb10e4b qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x525ac333 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x74ea53e8 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xb151dafb qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb2ed2600 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc754fc26 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdc522760 qtree_read_dquot EXPORT_SYMBOL lib/crc-itu-t 0xa2048e95 crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -4965,16 +4965,16 @@ EXPORT_SYMBOL lib/lru_cache 0x2257d5b6 lc_try_lock EXPORT_SYMBOL lib/lru_cache 0x2838dcbd lc_create EXPORT_SYMBOL lib/lru_cache 0x2ff949a9 lc_reset -EXPORT_SYMBOL lib/lru_cache 0x32816da5 lc_seq_printf_stats -EXPORT_SYMBOL lib/lru_cache 0x3d0d014a lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x3dcbf915 lc_get EXPORT_SYMBOL lib/lru_cache 0x4fbe8be4 lc_destroy EXPORT_SYMBOL lib/lru_cache 0x5fd4497c lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0x72122451 lc_get_cumulative EXPORT_SYMBOL lib/lru_cache 0x7d905c59 lc_del EXPORT_SYMBOL lib/lru_cache 0x906000b2 lc_find +EXPORT_SYMBOL lib/lru_cache 0xa003b465 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xa7b3f653 lc_try_get EXPORT_SYMBOL lib/lru_cache 0xa7d1f625 lc_committed +EXPORT_SYMBOL lib/lru_cache 0xad42a785 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xf6041b6e lc_is_used EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize @@ -5012,870 +5012,870 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x12932db6 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x39e7fd4b lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x3c4ee709 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7f447b2f lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xc6731d3a lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xd6905310 lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x9dd3f974 register_8022_client -EXPORT_SYMBOL net/802/p8022 0xe8df94f2 unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0xa6be30a9 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xf7d0e3e2 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x04c2fe55 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x06d8d7f9 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x0b92e1e5 do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0x1afa9ae4 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x1c158491 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x1c248a1f p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x25744e2a v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x315eb146 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x320b14a2 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x3c0a0f46 p9_client_symlink +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1fdb0055 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6102ac10 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x819f04f4 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x87526855 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe179c59e lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe5de5efb lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x7402ab3f register_8022_client +EXPORT_SYMBOL net/802/p8022 0xd8b4099f unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x73c0e812 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x9aa57ca8 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0335d8c1 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x03c7319f p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x098d1b33 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0a4314d1 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x10ba09a2 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x14e49e8a p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x18882745 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1af9e081 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1e9b4d99 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x20c555c6 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x2436a9c3 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x24dffcd0 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x2cb03eb0 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x2eacb784 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x2f1d57c2 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x36a991f8 p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x3f9998d0 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x45ceb6d4 p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0x46baf750 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x4927a3ee do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0x50f650bf p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x52501e46 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x58dd6901 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x597f4c55 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x65fcb72d p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x6cbcb35e p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x4eb25aa6 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x53aa7848 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x545ff1ee __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x55fb6875 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x587343ee p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x59af22e4 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x59b762e0 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x5caba4cd p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x5e7bcd3b p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0x6db7033e p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x71ea969d p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0x726b0dc9 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x787f8944 __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x7f7b4a76 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x866439dd p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x86d01590 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x878179a0 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x8fd70764 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x93e68cb1 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x9893043b p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x98d26682 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x99a2e4f0 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x9eaa34ec v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xa7bb4184 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xaf42d6df p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7338f57e p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x76fe9aee v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x89a337f5 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x8df39cd9 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x9acd2565 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x9de0f38f p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x9ebb4c5c do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0xac1d53da p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xae009822 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xb2c800a1 p9_show_client_options EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xb838c3a6 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xbd68818b p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0xbe31a5b9 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xc13acdd7 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xc6de23f0 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xca2263ab v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xce8d86f5 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xcfd472dc p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xb564181e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xba49763f p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xc68b6656 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xd2d312cc p9_client_lock_dotl EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd3a6bdca v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xd45eb4b8 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd4775209 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xd65c4f5c p9_client_unlinkat EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe654d519 p9_client_attach EXPORT_SYMBOL net/9p/9pnet 0xe6b1e55e p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0xec0ef982 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xfcd0a4db p9_client_setattr -EXPORT_SYMBOL net/appletalk/appletalk 0x30d5d468 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x891b746f aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xb48adddf atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xca1de14e atrtr_get_dev -EXPORT_SYMBOL net/atm/atm 0x04991704 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0x08e57be3 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x293ea90b atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x299ecb12 deregister_atm_ioctl +EXPORT_SYMBOL net/9p/9pnet 0xeebf10e3 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xf569a037 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xf88a6db1 p9_client_wstat +EXPORT_SYMBOL net/appletalk/appletalk 0x09a12b8b aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x2ccd3466 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xa278a38c atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xdabefc80 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0e112075 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x102c1c29 atm_charge +EXPORT_SYMBOL net/atm/atm 0x16fd6af4 deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x373d9390 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x370fc048 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x410e1bb5 vcc_release_async EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4e64cd06 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x4ef3e7f5 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x53491999 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x44b6f73a atm_dev_deregister EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x75ba9486 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0x7c7e54a1 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x7fbb40b9 atm_charge +EXPORT_SYMBOL net/atm/atm 0x79a3e359 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x8c041d91 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 0xd1f88a2a vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xd75b51dc atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xad7c688e vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xc87d4b3d atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe2feb2b1 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xe5a06e07 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xedbdffef vcc_insert_socket EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x04b40d27 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x0fbdcca9 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x343470a5 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4888e601 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4aa14d08 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x4b712509 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5799893b ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x5bba6c43 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x782ce470 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x9a0e7009 ax25_listen_register -EXPORT_SYMBOL net/ax25/ax25 0xb54cc390 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x94bee830 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xbfdc25cc ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xcdf21bde ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xdf3dabf9 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf5a92335 ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x057ebf45 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x058950ea l2cap_register_user EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x10cb8da4 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x164e1f92 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x16fbad60 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x17a83c76 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x19429081 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a76f623 __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c28a7d6 hci_devcd_append -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ec4ac67 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x20c0cbb0 hci_devcd_complete -EXPORT_SYMBOL net/bluetooth/bluetooth 0x211a477b bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d0e55b1 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0dd42ed9 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ea08477 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ed80c2b __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x139c1898 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16e067a3 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17fad334 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x195b02a9 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e7a8744 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f4d92f7 bt_sock_recvmsg EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x275a18a6 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2dd6cf7c hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x32020e19 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x26b79db8 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x285290a3 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2901aeeb hci_devcd_complete +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a460728 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d38beec __hci_cmd_sync EXPORT_SYMBOL net/bluetooth/bluetooth 0x32c9a10c hci_devcd_timeout -EXPORT_SYMBOL net/bluetooth/bluetooth 0x34c71821 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x375a7802 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x38959d74 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x458b315f bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4759e3a2 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b8035ea bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a1ea695 hci_devcd_abort -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cdf3614 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x659e8854 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x66f2d2c6 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b3c027d hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d4a280f hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x71d35212 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f9bf2bf hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x447f66a6 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52386d4c bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52efbe74 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x534d5515 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53e2d3b8 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x673c3a2f hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e80273b hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77e8b58a hci_conn_switch_role EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f42bc3f hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x81155b2c hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x819d79c8 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82db9322 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x84805b23 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a1e49dd bt_procfs_init EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x91a63abc l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x92c29cdc l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa01a519f hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0842c87 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa538b378 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7042bc3 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf8c081c l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb17ec411 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x977c8be9 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1b79a17 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1d0f09f hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3205604 hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0xadf2b0a1 bt_accept_unlink EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4870d75 hci_devcd_rx -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd6d1bce hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf7d96eb hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc17bcc99 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd26109dc hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3121cea hci_devcd_append_pattern -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3c706b6 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd45d8a91 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb70389c7 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb768708b hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb864dd1a hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8badb44 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbe16c09 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc148af79 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc52a30f0 hci_devcd_append +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc66fc52a l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6c6e17e l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc802857b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8e6d09d bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc93dbe62 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd635702d hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6bcec81 hci_devcd_abort EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8ef2354 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdab6d14f __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc2060d3 hci_devcd_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcb38aa0 __hci_cmd_sync EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0838b1d hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe091d27a __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6e7b99d bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xed780b92 hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0xee87505f hci_devcd_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf185a724 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5397bef hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf55e3eb2 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf66ae8a5 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf96b4665 hci_alloc_dev_priv -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x30c5d4bb ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x59b62d3f ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x638aa49c ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x746bd6d7 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xee6344c5 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xef4819f4 ebt_do_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddd77d9c hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe618fc6b hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7e1a173 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe96de55b bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeea5ac87 hci_devcd_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0759183 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf9cf8ad3 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb4624be l2cap_chan_close +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x206cc134 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2bd30f56 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x668f0343 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8c318235 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd0e8974c ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdfc0ce61 ebt_unregister_table_pre_exit EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x295795c9 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative -EXPORT_SYMBOL net/caif/caif 0x2d44c060 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x32bac8d5 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x3618e5dd caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x3fd8b898 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x6e6143cc get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0x77215311 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x81211305 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio -EXPORT_SYMBOL net/caif/caif 0xa59ae5ce caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x3209e14d can_proto_unregister -EXPORT_SYMBOL net/can/can 0x6f9de6ed can_send -EXPORT_SYMBOL net/can/can 0x70ccdb97 can_proto_register -EXPORT_SYMBOL net/can/can 0x7200e9b1 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xc2e90432 can_rx_register -EXPORT_SYMBOL net/can/can 0xec73de19 can_rx_unregister -EXPORT_SYMBOL net/ceph/libceph 0x08f62741 ceph_osdc_get_request +EXPORT_SYMBOL net/caif/caif 0xc8983aef caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x48810b49 can_rx_register +EXPORT_SYMBOL net/can/can 0x66484361 can_proto_register +EXPORT_SYMBOL net/can/can 0x8a0ce6d6 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x94932ae1 can_send +EXPORT_SYMBOL net/can/can 0xeb03cf53 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xf15d6675 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00205c96 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x03c5504a ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x0554e247 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x08b4b7f3 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x09af35f1 __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0x0a9e6570 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x0c547162 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x0dde77b8 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x14fd3cbc ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x17b1debe osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x18edf981 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x0ee4e9bf ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x11cf591d ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x13e3a8e7 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x14015b40 osd_req_op_extent_osd_iter +EXPORT_SYMBOL net/ceph/libceph 0x1b1ff0f1 osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x1dbe7bbb ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0x1ef6ea1d osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x1fc17db0 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x1fd0aba9 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x1d09a81b ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x1d41897b ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x213b4d38 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x2240058c osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x23db2481 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x241f6c57 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x247c9413 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x26404676 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x269009d3 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x287e6734 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x2a610871 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x2a8b9baa ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x2ab8d325 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x2b8ebd46 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x21d4132c ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x21e446b5 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x24c8d8dd ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x286c53e3 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x2914a196 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x29e3a9d7 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x2aa4bbfd ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x2b092dbf ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x2ba29c9c ceph_msg_put EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x32c5d3c5 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x33b7e074 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x33b8db95 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x34244a3e ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x348587ff ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x3841140b ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x38e29f8e ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x36e55d69 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x37e04df6 ceph_msg_data_add_pagelist EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3ade9162 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x3c2c1772 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x3aae7f1a ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x3af670b5 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x3b10778d ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x3d7c326d ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x40192189 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x41142968 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x4365502f ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x43f6d6b6 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x44b5610e ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x3eeaa28d osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x3f412f9e ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x41c6fec8 __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0x42531d8d ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x4395cce5 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x443c646d osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46af7350 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x480800ae ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x47c64a03 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x4a2a5e0d ceph_destroy_client EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4c2e679a ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x4cd1d925 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x4e47647a ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x4f606e65 ceph_monc_wait_osdmap EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x5146d591 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x50fccf86 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x50fd7371 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x5484f640 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x578aebfa ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x591e812d ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x57fd8d72 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x599b016c ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x5ac080c9 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x5ad4558e ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5ec009c9 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x5f44cff7 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x5b54285e ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x5d9b84ae ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x5f22428d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x5fbf2de0 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x61e1f97c osd_req_op_cls_init EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x640f9ca6 __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x6431869a ceph_pg_pool_name_by_id EXPORT_SYMBOL net/ceph/libceph 0x644b6e50 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x64cf9030 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x65a739f5 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x68317eca ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x69a65eb5 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x64729a3e ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x69e13cb4 osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6be9fb97 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x6cd2e8e1 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x6ebf840e osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x72c5fae1 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x799d1337 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x7c2388cd ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7de3f684 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x82466c93 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x6f6f77ed osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x700ad30a ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x70615784 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x744dfa58 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x7cee433c ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x873d6059 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x89269696 ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0x8bd5050e ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x9273ca2d ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x949f6c58 osd_req_op_extent_osd_iter -EXPORT_SYMBOL net/ceph/libceph 0x96a96143 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x8da1d911 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x8f40aed5 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x98b7cbc5 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x992f4dcf ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x9a7fcec9 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x9a8c1dbe ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x9ad119c9 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x9ba83037 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x98e35a43 ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9e9a4b2a ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x9cce8ba3 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x9dbd1276 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x9eef3a2b ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x9fb77680 ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa0a80cad ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xa1ed0df9 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xa1bc0940 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xa28d646d ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers EXPORT_SYMBOL net/ceph/libceph 0xa6a242f7 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0xa948a73b ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xa8ee44e7 ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xada5bc1b ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xaf55532c ceph_check_fsid EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xaffc9d22 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xb2526913 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xb1919343 ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0xb5289443 ceph_pg_poolid_by_name EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb600d675 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xb708403f ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb76fc2b2 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xbad10ef4 ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xbae00da7 ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0xbcb203ab ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xbb09f024 ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf18bdf8 osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xc20c8ca8 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xc7795bb6 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xc38bb42e ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc4ca6e9b ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xc5525de3 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xc683b7f5 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc85446ac ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcc6b5260 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xd4069245 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xcbb89cb8 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xcbc09464 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xce4f0b56 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd14c7260 ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd66eeaae ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xd83351cf ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd9c64a0b ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xdac3e274 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xdc73bed5 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xdd2d66d1 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xde9c7f19 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0xdee8f3cc ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xdf641442 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xd9fdf88c ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name EXPORT_SYMBOL net/ceph/libceph 0xdfd9af6b ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe02b59ed __ceph_alloc_sparse_ext_map -EXPORT_SYMBOL net/ceph/libceph 0xe18e4614 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xe2c2fd6a ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xe4486603 ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xe63e4847 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0xe88461fd ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xe8960d58 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xe90128f3 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xea3ac423 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0xeade247b ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xed4720cc ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xe37df937 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xe5d9a31e osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xe73b8c74 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xe8a8da09 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xede718c2 ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeee7ff38 ceph_print_client_options EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xf0430c2f ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xf099e084 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xf174b4ef osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf2c17d66 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xf5166bc5 ceph_msg_new EXPORT_SYMBOL net/ceph/libceph 0xf562aab7 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xf6b0d1ad ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0xf7225e3f ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0xf8f57aeb ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xf9f5ca04 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0xfbee30bf ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xff2bc467 ceph_parse_param -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7c7a2a27 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xdfa6265f dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x84d919f8 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0x85ec5802 hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x309fa5d2 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x5ea66e31 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x76fb6a18 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x8e469cac wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa323ff91 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xbda3ee41 wpan_phy_free +EXPORT_SYMBOL net/ceph/libceph 0xf5f35229 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xfc5f8f6c ceph_msg_new +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x38277439 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x546d5a16 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x4796686a is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x76e0c395 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x07b02a9c wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x563b0fb2 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x84b96dd0 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x975fc42d wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb4384c83 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xca18af2b wpan_phy_new EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x4b696586 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0x5d5eba53 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x541f61a6 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xc23dc8f6 __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xff1adff3 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xff5f923e gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0e3627fb ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x13740a1a ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x230781fb ip_tunnel_md_udp_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x474b0a4a ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6aca2c5c ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x63134e94 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x72187bc1 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb30f6779 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdbfa12b1 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x002ec995 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x09dcc2bf ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe625e4c0 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xefc8c42d ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x2c865790 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xbf5a5a56 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc49b9cf3 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x10c65555 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x41d77ed2 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4233f09d ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5235c45a ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x618315ab ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x638fa1c6 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xca4e1cef ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xeca91c30 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf2bb406b ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0a8ce901 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x25df2852 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd4e81543 ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe52487b8 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x79c37903 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0xde24a1df xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x14666538 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8847796f xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x06067400 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x0c5f75d3 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0x655d59e7 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x71c1d076 lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x90c63949 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xb8398d3e lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xe4c8cbe4 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xfd42bea0 lapb_connect_request -EXPORT_SYMBOL net/llc/llc 0x121d5ec1 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0x22ae3028 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x332ec9f6 llc_add_pack +EXPORT_SYMBOL net/ipv4/gre 0x2d54d2aa gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0d20f002 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x68a177a4 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x69c05f7a ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x85408976 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb9123fe2 ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x08e74fc7 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x31f54472 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa6b63fff arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb07e0c18 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3f6f9060 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x81e34c59 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa864358b ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xcfbf6a45 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x1aa89ad1 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x24c2db49 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xd57da6da udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2c8ec4ef ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5d487226 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6720eab2 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x67e4aea8 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8d838ab8 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x95448203 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xab7cb74b ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb92190a4 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd5bc10f1 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x57998e1d ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x63b05d66 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7542f707 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8e0f2184 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x344a4e15 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x524d8407 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa71631ea xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xcb488e79 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x09deca66 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x3c3a2789 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x4b18e554 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x618686ae lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7cd12303 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xbe7a7a61 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xc82cb4ad lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xf0ff1602 lapb_unregister EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x560fdf10 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x7a895a03 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x7f8afccb llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xf7ddca58 llc_sap_open -EXPORT_SYMBOL net/mac80211/mac80211 0x02b9df60 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x09274e58 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x1323a8ce ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x13328538 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x146a3c07 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x169596ee ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/llc/llc 0x617dc5cf llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x68586c85 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x9d513a18 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xd0d062f9 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xd0ff90cd llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xf5c0946a llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xfe7a6844 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x0c450c4a ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x0cbe1e36 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x15d6d65e ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x162eed78 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x176ee0bb __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1841d645 ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1b23ab72 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1added93 ieee80211_wake_queue EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x24cfdf11 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x257f5de2 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x30f070a4 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x3118ce74 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x327187b7 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x384acf98 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1d26e5d2 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1f08a59d ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x1ff563ce ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x22d52b65 ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0x230b8c2e ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x237ecfb7 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x27fc5ca3 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x2c1b69f0 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x2f08439d rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2f7020b6 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x318c0393 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x32285c62 ieee80211_stop_tx_ba_cb_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3a2c29fe ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x3a5f2a7e __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x3b78ba8b ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x3f6aa64b ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x3fb730ee ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x47f56ec1 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x4b42932d ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x4b9871b6 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x4df39b09 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x4eead0e2 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x517cf6fb ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x53a77ec9 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x53dbc6ae ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x5547d1cf ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x5645125f ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x56510c94 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x5997e9e3 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x59b5339e ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5a098508 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x5db9b4c6 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0x5f62b788 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x6086a6ab ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x63e27d3c ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x65258f99 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x69427402 ieee80211_beacon_get_template_ema_index -EXPORT_SYMBOL net/mac80211/mac80211 0x6cc6038d ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x736fa32a ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x73c75695 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x76644d74 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x76a799c3 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x78d60a96 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x79a6c3b3 ieee80211_beacon_free_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0x7a7a00dc ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0x7aba64c6 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7b927ca8 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x7c21d03e ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x82476e80 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x82a889a4 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x8863b28c ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x895013a0 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x8b157d1e ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x8d1abfb2 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x39b59e07 ieee80211_refresh_tx_agg_session_timer +EXPORT_SYMBOL net/mac80211/mac80211 0x3f179571 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x3fed2935 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x41b550c8 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x432eb0ce ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x436d057f ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x467fb721 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4a6094f7 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4c0ba626 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4c6c09dc ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x4cc8e784 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x54d06bae ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5908aa59 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5c98f28e __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x5ce61655 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6253d121 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x69f62af6 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x6a66ae84 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6b11e6b3 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6cce4873 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6edc79c9 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x6ffbefd5 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x753b2f6c ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x779dbb14 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x78166ea5 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x7dae0117 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x7fe31ded ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x86ec230d ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x875d4895 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x8777d45f ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x87df74d5 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x899f786c ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x8b61bd44 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x8c04aa4f ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x8c068ad9 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8cedf491 ieee80211_next_txq EXPORT_SYMBOL net/mac80211/mac80211 0x8d41726d ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x8f480698 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x92139501 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x92b8a199 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x8e5cc5c7 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x908e5cf8 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x9194fe17 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x93327640 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9551a529 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x9593f84e ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x97e88fb4 ieee80211_stop_queue EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99294ed1 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x9d6bd4f3 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x9f2733d2 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x9f8225b2 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x9fe82b94 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa11334c2 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa326fc1b __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xa7b8e07a ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xa7deaccd ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xaa79beba ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xaae091b6 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xabea6aef ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0xabf7543a __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xaea1404f ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9abf63b6 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x9f152bd6 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x9f992591 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9fe67ef1 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa3dcb0a7 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xa4aa3798 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0xa59c9808 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xa69fb8a4 ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0xa75f9ddf ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xa837a59a ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xa8cf2101 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xab054a35 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xab28f75a ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xacf401c5 ieee80211_pspoll_get EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xafa7c7a3 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xb1b53222 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xb274c58b __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xb29a4d76 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xb4e12c73 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb5018f97 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xb60cd5f9 ieee80211_beacon_get_template_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0xb8b6e8d7 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xb99f05e8 ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xba5825bf ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xbcf20ca9 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xc097588e ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xc0ea65aa ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xc34454f6 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc6075bc6 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xc730264f ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xc8180ba6 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xce366d0c ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xce58df6c ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xcf44943c ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xdfaa7874 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xe03c2e45 ieee80211_refresh_tx_agg_session_timer -EXPORT_SYMBOL net/mac80211/mac80211 0xe3e8b511 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xead25a53 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xf87ee0fe ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xf8ac7295 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xf8bd89a9 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xf8c80868 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf8f9dc64 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xfceb4101 ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0xfe121f9c ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xfe7f69f7 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac802154/mac802154 0x52d8fbaa ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x5aedaad4 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x80d98ab4 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x90a7f608 ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0xb2095cd9 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0xb3ea6855 ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb6b57437 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc1c446e2 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xed89ee6f ieee802154_configure_durations -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15f9ec3a ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x164a8805 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x19c0756c unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3eabd1fc ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4678b857 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x50da72cd ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75ad1d2b ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7664ba4a ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x869ee02f ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa64973c1 register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb46417e3 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9eaf5a3 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd4e89f7c ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/mac80211/mac80211 0xb1db41bb ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb39a24a5 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xb8d3abca ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xb9c2126e ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xbc87faee ieee80211_beacon_get_template_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0xbff7fa0d ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc00249ed ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc1465533 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc1c25de8 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc2a962a6 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xc6918847 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xce4b1a0d ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xcf7d1d38 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xd21d7e64 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd48fb306 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xd60dab3e ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd8802723 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xd9571bd9 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xe099d132 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xe0abbeae ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xe17f9700 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xe34b4f73 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xe5e65959 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xe756ab77 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xeefdfe1d ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xf7272183 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf83954be ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfc7c1c49 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac802154/mac802154 0x02685236 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x0a847edd ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x4706924a ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x4c29cf1b ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb256f4e9 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xc4e25aee ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc8e6c437 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0xe5f3f1b6 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xff068212 ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x03cc5fb2 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0cdee1d0 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1126f295 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1b372376 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20ef524a ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x265d3566 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x500b2a60 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55e3a716 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7238805b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c7f1f75 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae36d910 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb690ea03 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7b5dc9a unregister_ip_vs_app EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeafc70db ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xec09185e ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc6d7c36 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf2161569 ip_vs_proto_get EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x43082665 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf86cbea8 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x19b40a84 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x214866b2 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xc3d1ec61 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xe13543fa __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x0489f527 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x0e511755 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x18c185df nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x547192c1 __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x055e8674 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x08b9f041 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x10d1fada xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x1d574e8c xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x30641fd2 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x373e7d17 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x1a0acedd xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x5469dbbe xt_register_match -EXPORT_SYMBOL net/netfilter/x_tables 0x5d716556 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x756f93ff xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x4cc6366d xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6a95162d xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x81aa8f5b xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x9138b3a5 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbaa50de9 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc7ce0961 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd3d2d67f xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe3dfba00 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xe628025d xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xf8f3e64e xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x18cdf5f5 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x1a360899 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x1e2c2dcd nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x2479d752 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x4e3469e4 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x5ce9985d nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x5e142eef nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x02a97463 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x0aaa65b6 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x1699af47 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x1c7f1619 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x24d57788 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x28bbe0ff nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x2d92c6ea nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3741caab nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x39b8a7b2 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x3d019587 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x4f689313 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x6a968383 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x6f730985 nfc_hci_get_clientdata EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x81608a3e nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x822259d2 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x88ced09e nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x8fbfb82a nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x908fc66d nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xa2c8048b nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0xaa148595 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xaf06d1be nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xb754828c nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0xc09c3ace nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xc26ee857 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0xc5d30888 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd6a528c1 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x82a790f5 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x99fa7f74 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9c448e39 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xb0b0b68b nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd0b69259 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xd2597c15 nfc_hci_reset_pipes EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xe1775ae4 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x06525d7f nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x09933bc1 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x0c189792 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x0cf7f9d0 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x107f154a nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x35b5cacb nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x36a7ff20 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x38bb9465 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x3be677f8 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x40347a65 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x560c9dd8 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x5c935009 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x708c44a2 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x80fb3cea nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x8c0f852e nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x8dd04b89 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x96c7c2fd nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x9ea32636 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9f69701d nci_core_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xf0a89e97 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xf30da403 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x09c197c3 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0d1c84e1 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x1412c1c2 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x18e0cd0a nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x1c728114 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x319a2635 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x3ca4518d nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x3d192e5f nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x55e33c33 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5f445a07 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x929dd191 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x965106d8 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x9c44bf4f nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x9cd5972f nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x9fc5d5d6 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa4fcb261 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xa8a58dba nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xae27b714 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xaf3875ba nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xb704d0c4 nci_core_cmd EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xcee22bb1 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xdec0733c nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xdf07c84b nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xe1a33f3f nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xe9fd2ba6 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xee59af18 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xf31552de nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xf8a9a258 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0xf8abdaa5 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xfcddcf0d nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nfc 0x00604cca nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x104dbfb3 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x1b04e458 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x1ef4cd52 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x22f21748 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x28701f99 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x2f8b7734 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x3f09ab71 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x48e2c3af nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x619f0108 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x63361ec4 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x6bf64f03 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x6ddd4530 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x7972fcf6 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x7cffc331 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0x7fc72fcd nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x8e1d94f5 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x8fffefba nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x96a0bcfa nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xaf7ea124 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xc060dace nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0xc17a399f nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xc371445f nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xdf0c884e nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xee4867f6 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc_digital 0x0b733f93 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x44a3e562 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x8b09ccac nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xbe6a71be nfc_digital_register_device -EXPORT_SYMBOL net/phonet/phonet 0x1f034a86 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x40ab8309 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x461d9504 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x46e2a08f pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0x7f197314 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x98676821 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xafb63835 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xd08fc8f4 pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x14ab56b8 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fa6efcb rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2f10ff1d rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/nfc/nci/nci 0xbb8c3f8a nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xc1a0a491 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc536d7d6 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xdefe8316 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xea800558 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xf588567a nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xf647905e nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xf72b4a39 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xfaddd0c9 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nfc 0x03e54c78 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x0bf95629 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x12bb8b7c nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x23df0742 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x33915854 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x457dae27 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x5b9856c2 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x6422eaa8 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x759f0574 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x8210ad29 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x918cea37 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xa1015fe8 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xa3a0991e nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xad907ebb nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xbae59b30 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xbaefcd5a nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xc1dbb912 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xcef249b7 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xcf940cf2 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xd88b7e2d nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xd8ed6a40 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xe9b649a2 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xef8b6bdd nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf58a18b4 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xf7c39cca nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc_digital 0x1af1c5a5 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x68d4591b nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x963539b1 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xad3dbb07 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x20fd0a62 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x48a64d89 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x6dc81ff1 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x8bd1cb8e pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x91cf4ea1 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x9861f493 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xa566db4e pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xc6e3d11c pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x19142635 rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1c18ae7c rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1e531d15 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x268bc996 rxrpc_sock_set_min_security_level EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x385360f8 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x457b7a24 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4788dade key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x623072f8 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x69bcc10b rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a8aff46 rxrpc_kernel_put_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6bbb0cfc rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x841669ac rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb6436457 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbf269f89 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc52049a8 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd3891fef rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe6c840b1 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xebfe541e rxrpc_kernel_shutdown_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf31489b1 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf7a9802f rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/sctp/sctp 0x57c37157 sctp_do_peeloff +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3b406bff rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x48556293 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4c998ffe rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x62cf44f8 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x870f4b6c rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b84bfec rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa27b6b52 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa73baa32 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa8eedbd7 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaec04517 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbc9bd65d rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbcb23cb5 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbe55648f key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdfbe5fa2 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfeb7da0a rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/sctp/sctp 0xf3ea124a sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x2977ed0d __tracepoint_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x6e5d3492 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x662f9809 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x7d5ff7f3 __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x9793b915 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xabd6f0ec __tracepoint_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xcb75dd4d __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xe013c135 __traceiter_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xe5810542 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xe1fb23d7 __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xf32fae85 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xf85e5851 __tracepoint_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x57a3cf97 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x72a7a7c6 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfcdc2149 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1f530167 xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6118e63f xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x957c5280 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x5123053e tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x9b977f0e tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xbadb6fa3 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xd5ff5208 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0x83b14ff2 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x029bf25d cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x035d2dd7 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x06c49aef cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4aa951ee gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6f1a908d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf977cf28 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x0a9e93a0 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x117c9b5a svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb22daf9f xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x11adc083 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x3d10415b tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x66576d1e tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xc832af79 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x139551d3 tls_get_record EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0765748a cfg80211_bss_iter EXPORT_SYMBOL net/wireless/cfg80211 0x07a6333d cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x08146f6a cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x09a589e0 ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0x0878dc6c cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x0a5cfe5f cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0bc73a0b cfg80211_links_removed EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x0cdd0cca ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x0d5f6d0b cfg80211_gtk_rekey_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0f831c7d cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x1065d37c cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x10c4180a wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x1158daff cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x12ac3f95 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x0d0b9220 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x0d2a6d73 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x0df12c15 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x0e4753e5 ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0x0ed832ed cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0f978c9a cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x1231c399 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x12c9a85d wiphy_free EXPORT_SYMBOL net/wireless/cfg80211 0x13c58e52 ieee80211_get_8023_tunnel_proto -EXPORT_SYMBOL net/wireless/cfg80211 0x1853f2c0 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x1509e4ab cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x1583b95e wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x15c57338 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x1858e83a regulatory_set_wiphy_regd EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18c8ad30 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x18a1c68b cfg80211_cqm_pktloss_notify EXPORT_SYMBOL net/wireless/cfg80211 0x1b82a85a cfg80211_valid_disable_subchannel_bitmap -EXPORT_SYMBOL net/wireless/cfg80211 0x1bc6986b wiphy_new_nm EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d4c163d cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x201ddeea cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x231044a4 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x23d3bef3 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x25dd4a73 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x282d91e0 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2c567345 cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x2cc3f028 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x2d1c5aa5 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2db0865a cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x2eda764e cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x31bb4134 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x34d9b76c cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x1e97ab32 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x247369bb cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x249c249c wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x252ae2a1 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x257b70e5 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x258ea01a cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x290a5ce9 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x332281e0 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x33871389 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x339d5077 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x356cdc8f cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x37ddce27 cfg80211_nan_match EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x3935dd23 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x398a5877 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3b931848 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x3c047efe cfg80211_ibss_joined EXPORT_SYMBOL net/wireless/cfg80211 0x3c744e95 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x3cf06ab3 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x3dc7e60c cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x3e7b89de cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x41f91961 cfg80211_tdls_oper_request EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x4332e791 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x435dad3f ieee80211_is_valid_amsdu EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x44a344f2 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x4577f0a9 regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x49183257 cfg80211_check_station_change EXPORT_SYMBOL net/wireless/cfg80211 0x4abed7d4 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x4c73840a cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x4f266c2f cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x524b6df8 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x4b8f7a2b cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x4bc5cc67 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x4d619b3f cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x4d671670 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x4de67d68 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x503e6e2e wdev_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x53351a48 cfg80211_defragment_element -EXPORT_SYMBOL net/wireless/cfg80211 0x54425a53 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0x5472ee32 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x5335fab7 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5462542f __cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x57992649 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x5a25e107 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x5c58e29b cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x5d23c7ea wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x5e2e0501 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x6014f935 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x63413262 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6515954f cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x657ce44a wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x66885ee6 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x566cb44a __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5d1ec95e cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5d2ec998 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x5e390568 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5f05b409 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x615a67ad cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x632855d8 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x6508d26d cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x6649a418 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x68caf222 ieee80211_get_hdrlen_from_skb EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x69f1f236 cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0x6a75e3e0 cfg80211_links_removed +EXPORT_SYMBOL net/wireless/cfg80211 0x6abdc13d freq_reg_info EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6bf51d8e cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x709a8c14 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x70c759bc regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x77194df8 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6d908cd2 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x78046103 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x798dad96 cfg80211_tx_mgmt_expired EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7a3ffdee cfg80211_inform_bss_frame_data EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7b163def cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f78e037 cfg80211_assoc_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x80767297 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x81008f32 nl80211_send_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0x82dd5310 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7f044b58 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8126081b cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x82b6b087 cfg80211_tx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x83408773 cfg80211_get_ies_channel_number -EXPORT_SYMBOL net/wireless/cfg80211 0x83b8569e __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x83c6b489 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x85136cf8 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x85767a40 cfg80211_background_cac_abort EXPORT_SYMBOL net/wireless/cfg80211 0x85de3f6f wiphy_delayed_work_timer -EXPORT_SYMBOL net/wireless/cfg80211 0x8a890100 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x8b0983d6 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x89e2affa nl80211_send_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x8a52ea82 cfg80211_classify8021d EXPORT_SYMBOL net/wireless/cfg80211 0x8b24e88f cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x8d644278 ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x9916cfdf cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9ac92eeb freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x9acec73c cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9b2e8758 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x9b3e5485 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x933a9051 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x94967a5c cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9744dd2e cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9a982bdc cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x9aaa5ced __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9ab8ed6b cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x9ba6629c cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa1e4b3dc cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0xa23fbf1d cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xadfe5ad0 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xaf0df409 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xb21c9f65 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xb23988ff cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xb24500ad cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xb3c28afb cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xb920c82e ieee80211_is_valid_amsdu -EXPORT_SYMBOL net/wireless/cfg80211 0xbbc2e6a3 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xbe7269cf cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xbe7ee118 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xc0051388 cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xc1b5749b cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xc1f2ce80 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9da295b0 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xa0722652 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xa40781bb cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xa6d841c5 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xad0a4bdd cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb3e3057d get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xb5fafe3c cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xbd4c91e2 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbf816883 cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0xc3fb97ca ieee80211_get_response_rate EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc581fa55 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0xc6c280e4 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0xcb40e721 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xc4d44957 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc58b3913 ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xccd52ff8 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xccf236ac wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xcd903d3a cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xd2909d2a wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0xd4feebf8 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xce7d67b4 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcf27d68f cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd3a206e9 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd47a6668 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xd5055527 cfg80211_assoc_failure EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd6854618 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xd6f34dd7 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd809eef5 cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xd9df58fa cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xd9e7cb6e cfg80211_mgmt_tx_status_ext EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xde00bf2d cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xe20bd651 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xe245fc79 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xe5427356 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xe879c525 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xeadf070c cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xef1702f3 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xefb931c6 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xf2053e38 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xdc215e74 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xdcc35d76 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xdd283dbb cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xde8a9ec0 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xdec98305 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xe390a403 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xe9a51916 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xeb1f0b13 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xebdc8460 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xed6893dc cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf44ece3d cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/lib80211 0x110a9d74 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x24e5020e lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x2a4363b2 lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x567fffb2 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x74c957bc lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xdd381430 lib80211_crypt_info_free -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xc11fb4c5 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf676aa50 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf678d779 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xfd1ac0de cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/lib80211 0x1b044b43 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x542bb603 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x78f28773 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xcf2f0805 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd12f4f34 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd4fa8119 lib80211_crypt_info_init +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xb6ea3cb8 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 0x23738926 snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x2df95fe3 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper -EXPORT_SYMBOL sound/core/seq/snd-seq 0x445d4408 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 0x6c330b02 snd_seq_create_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach EXPORT_SYMBOL sound/core/seq/snd-seq 0x85cd59a8 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x9a015622 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x9b27efa9 snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0xa6e19f8e snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb71df669 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa7f6cf66 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 0xe8c31daf snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x74769de9 snd_midi_process_event EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -5887,206 +5887,206 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x56efbc6b snd_midi_event_reset_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdaf3383a snd_midi_event_new EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfc732294 snd_midi_event_encode_byte -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xb3434f7d snd_virmidi_new -EXPORT_SYMBOL sound/core/snd-hwdep 0x723fb823 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x08e50f86 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f1f5585 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x38058f8d snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e133081 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x63a436b8 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6707bebe snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x72c34a5d snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7c5ff80c snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x8bf977bc snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x92aa464f snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa5de2778 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb66ef35b snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb845ee65 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd937590 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc5da481d snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd7d672eb snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdfa19402 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe45ecdfb snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xe9b0223c snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x211af311 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a76357c snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x163e70eb snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x21f6bf1f snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d19b2c8 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3bb043b4 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x47fe679f snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5133e17c snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6813f454 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ffc061c snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x845349d6 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9f095bf3 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa890c2ae snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc1a865b snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc2e46bb9 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc95a26a4 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xce8197e2 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfcb4fcc4 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfd2fcd91 snd_rawmidi_input_params EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init -EXPORT_SYMBOL sound/core/snd-seq-device 0x501fc26f snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x63ad2156 snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0xe0adbe56 snd_seq_device_new EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6e7c1164 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 0x1009e404 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x13405b38 snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1cdae847 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x261cf59e snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x92e75e78 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb57f5a0e snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd3a5d98b snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe5574e58 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe625764d snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1afe89eb snd_vx_resume +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x37fee106 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4e5c6760 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x839b7593 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8cddb074 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8f53bc05 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xabc32ecb snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd628fe47 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe1fc7a09 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf41dcc6f snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b6b6705 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 0x5ea585e8 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7affce06 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbd93c09f snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc47349e7 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdef2cf95 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe1880011 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe84fbead snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x25671769 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x653d4032 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x73d2dd92 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa9bb39f0 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb02b72dd snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc2f469f1 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd62d291d snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdb26734e 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 0xfb428995 snd_vx_suspend -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e131cf3 cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a8098c8 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b4fe676 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d72cb7a iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01d8c248 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x05007927 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x10f4a297 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1adf397c iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bed4d1d fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d0f337d amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x207c18cf avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x24118cce fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38ec98b2 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x294267ce fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a792c1b cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36e81cf7 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47fd30df amdtp_stream_add_pcm_hw_constraints EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x572438d8 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5cdb5c9d fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x722952c9 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72c8bdcf cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78173e04 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e5d8c09 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x871de6a3 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x896987fc cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89cb901f amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8eb3f9e5 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9547cc97 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e963bc0 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa22f4d62 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa65a4d0e amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa956f7c5 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba191383 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc28e391 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xea111199 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3508c69 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf3e6562a amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf79df402 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc45d1f5 fcp_avc_transaction -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7f251aac snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8eb5f369 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x102f390d snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4f9adee4 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa4958eb6 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa4e4314f snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb5c8a33c snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb6fa2dd0 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd0543df4 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfcfdb894 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2d029aee snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2f2d84b8 snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x85dc4117 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xca5585ff snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d31a925 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fb050f0 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8fce7d41 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97241efb amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ce8686e fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa11ad64e cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa19ad792 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5f216fa amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaae963b1 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabfba71f cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaee7c421 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5ed9bb4 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc73f48f8 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdce76a33 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdf5f3d58 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe634d63d amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7f0e952 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf61ecd8c fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd7d3b93 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2a65c303 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8826d032 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x08743825 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2ebab080 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3752c201 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x450e244f snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbc9d869f snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbf11795c snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf25de22f snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfc895d9f snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x44c76062 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x46cd8bb6 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcdf216b5 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe1ddb0ef snd_akm4xxx_write EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x138b4e94 snd_pt2258_reset EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xed6c0018 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2bead058 snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x415af39d snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x523dca28 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8eed2c49 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb0ecb833 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb45e9493 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x298857cd snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x34bc76ca snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x38d9ef25 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb4a059a8 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdfa8ac6b snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xec9f70e5 snd_cs8427_create EXPORT_SYMBOL sound/i2c/snd-i2c 0x2b4fed94 snd_i2c_probeaddr EXPORT_SYMBOL sound/i2c/snd-i2c 0xb22f9200 snd_i2c_device_free EXPORT_SYMBOL sound/i2c/snd-i2c 0xe2f62f3e snd_i2c_bus_create EXPORT_SYMBOL sound/i2c/snd-i2c 0xeebaa212 snd_i2c_device_create EXPORT_SYMBOL sound/i2c/snd-i2c 0xf034964b snd_i2c_sendbytes EXPORT_SYMBOL sound/i2c/snd-i2c 0xfe37ff90 snd_i2c_readbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b46e7cc snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2251a2df snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x31d56fab snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x43ce7163 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x582cfe65 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x644ad9df snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x64e844b6 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8e95620c snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa33c4d23 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbb4c614e snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbeb21c87 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc1b3c2c8 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce359b05 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8b9ab48 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe59952dd snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe8acb3a3 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfde889e9 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x08c50b08 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x17c67950 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x29a0f16d snd_emu10k1_ptr_write_multiple -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4ce26212 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5b8f9f0f snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7c9616c7 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa3ee9b8d snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xafd0fba1 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd273c82e snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfc482f7e snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8259e876 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x993498c4 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfb80b89f snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0397ba92 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x10f3a2ca oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b3e6cd9 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2d8c2594 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3f95c0fd oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x49778f8a oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x60549bf5 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x624f4b2c oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x679d36e1 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7c16ad09 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7f7adf38 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x852f9ff5 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8a984c33 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad9567e4 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaf3cb3c9 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf0c3635 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xceeee2fb oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf129474b oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf56c9d73 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfd549886 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x07fb3235 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x438b8b9a snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb1a47b9d snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd3b6f194 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf6b7dcc1 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10e6a31e snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c148b1b snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1dc4c75f snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x301f0796 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3ce78f93 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4045526e snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x546784e6 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7097c63b snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x74c70a38 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x794ae30d snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x99610aac snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9e045f92 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa40f8bac snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xac0b41e0 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xafd11169 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc74639b1 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd1f4904e snd_ac97_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x211a6e0f snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4c1fd90b snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x660534d3 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x957fab93 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9a75fa27 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa8bc3b8e snd_emu10k1_ptr_write_multiple +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb5853af8 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdeaf7208 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xeb776343 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf4d55d59 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x77446542 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc0e73fa6 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf52d055a snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0029fe56 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b18ae35 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x182c870d oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x18ad8954 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x24c41a15 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3e81cec7 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4ab32a0e oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5fa8b4b8 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7c78a07d oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9974468d oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a471be1 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaae66c6b oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf24aa40 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc3a4ab19 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc78d01cd oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcfa997a8 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdef9f323 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee287b59 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef9cd223 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf05813f9 oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x42647832 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x573c7f02 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x829c254c snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa1449ad1 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc0424d03 snd_trident_write_voice_regs EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x30913123 snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x5fa29a1e snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xe712ec0a snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x92bf6806 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x30a58504 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x9fff6396 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa06fe411 pcm3060_regmap +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x2eca644d snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x40bd8594 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xef1deb27 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xef5a5130 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x4f91b42e wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x883414e0 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xae3562f3 pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x36296455 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x7c105fe8 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0ae79846 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xdfe39ba6 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe8161f66 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x451ef83f aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x5c00290f aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x080b120d tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x4933f713 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x15b4aead aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4644c1a4 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe550ace5 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x6936decf aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xcbc434e4 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x2817293a wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x542835f3 wcd_mbhc_init -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x5fa9dc7d wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x6a2c1b76 wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9aa75871 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xc6414f6f wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x4447e33f fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x58c20b4b fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xd74a289f fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x213036ab mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x23ce0754 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x2189781b q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x2ee7a7cf q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x13bd9839 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x16865fb5 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2d16f2f6 snd_emux_unlock_voice +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x55d50005 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x913288bf fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xa18140bb fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x7885c65c mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xf3f92ebc mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x6dca4ed9 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xd98d528e q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3b00ff0e 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 0x8b54156a snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9878f2ba snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd348f7ee snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6a5852f9 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcc7cb13d snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xceed5ddf snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe0021b44 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe664bc40 snd_emux_terminate_all EXPORT_SYMBOL sound/synth/snd-util-mem 0x17b16e1d snd_util_mem_avail EXPORT_SYMBOL sound/synth/snd-util-mem 0x2d2c67a0 snd_util_mem_free EXPORT_SYMBOL sound/synth/snd-util-mem 0x83c5ced7 snd_util_memhdr_free @@ -6096,5788 +6096,5789 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0xe160090a __snd_util_memblk_new EXPORT_SYMBOL sound/synth/snd-util-mem 0xe18f74c7 __snd_util_mem_free EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x375e7f77 __snd_usbmidi_create EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7fb19698 __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 0x0014f647 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x001e99d4 mii_check_media EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x0027b783 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x002ab0c4 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x002b7e79 block_read_full_folio EXPORT_SYMBOL vmlinux 0x002d54aa hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x004d2d71 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x00534edf param_set_bint +EXPORT_SYMBOL vmlinux 0x0031f5b3 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x004fafdb pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x0054b559 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x00567f82 tcp_req_err +EXPORT_SYMBOL vmlinux 0x005cc469 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x006f1771 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0x006ff2d5 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x00763eef vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x007844d3 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x007f1b55 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x00881376 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x007a1cf2 of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x008330a2 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x008d5d88 vfs_getattr EXPORT_SYMBOL vmlinux 0x0091f11f cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x00990e7b vfs_ioctl +EXPORT_SYMBOL vmlinux 0x00b2dbd1 md_write_start EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c2febb inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x00c09252 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x00c3a55a tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x00c8b69c dev_addr_del +EXPORT_SYMBOL vmlinux 0x00ce5e8c locks_copy_conflock EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count EXPORT_SYMBOL vmlinux 0x00dc13d2 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x00e59628 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x00f1ca64 dcb_getrewr +EXPORT_SYMBOL vmlinux 0x00de4e6d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x00e2a7db sg_miter_next EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x01016a5c setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0x0106c674 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x010d447b sock_i_uid +EXPORT_SYMBOL vmlinux 0x010dc37c blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 -EXPORT_SYMBOL vmlinux 0x011b08cd d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x01200085 dst_release EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x012e51e6 __free_pages -EXPORT_SYMBOL vmlinux 0x01344c42 may_setattr -EXPORT_SYMBOL vmlinux 0x013a54ca pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x013a7a03 scsi_partsize EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x01567ae9 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x01709cb5 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x0150f88b simple_transaction_release +EXPORT_SYMBOL vmlinux 0x016699ae disk_stack_limits +EXPORT_SYMBOL vmlinux 0x016771ca i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x016ee82c __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017faa8d udp6_csum_init EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01b486ee mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x018375ad vm_insert_pages +EXPORT_SYMBOL vmlinux 0x0198adf9 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x01a24056 sys_imageblit +EXPORT_SYMBOL vmlinux 0x01a900e3 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x01b1c0bb phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x01bcee1c md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x01c2cb02 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x01e1819f scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x01e26bac of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x01e33afd mii_link_ok +EXPORT_SYMBOL vmlinux 0x01c4a50b ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x01ce764b __skb_checksum +EXPORT_SYMBOL vmlinux 0x01d0a9a3 amba_release_regions +EXPORT_SYMBOL vmlinux 0x01ddf100 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x01e585a0 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x01e61227 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x01ee596a is_nd_btt +EXPORT_SYMBOL vmlinux 0x01f049be tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x02058f71 phy_attached_print +EXPORT_SYMBOL vmlinux 0x0208fb26 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02159bc0 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x0215a76b fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x020e2b43 vif_device_init +EXPORT_SYMBOL vmlinux 0x02112eab skb_vlan_pop EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv -EXPORT_SYMBOL vmlinux 0x0222c2d7 generic_buffers_fsync_noflush -EXPORT_SYMBOL vmlinux 0x022592e9 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0x02396a24 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x024dc834 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x025c1fc0 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x0222cf23 tty_devnum +EXPORT_SYMBOL vmlinux 0x0255d383 generic_write_checks EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0277dca4 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x027d8d08 skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0288e1cf __netif_rx +EXPORT_SYMBOL vmlinux 0x02940ac8 bio_alloc_clone EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate EXPORT_SYMBOL vmlinux 0x0296dd87 padata_do_serial -EXPORT_SYMBOL vmlinux 0x02996bac dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x02a3aa90 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x02b5e3ce d_obtain_alias -EXPORT_SYMBOL vmlinux 0x02ba3794 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x02b6f174 dma_sync_wait EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02ccaf1e napi_complete_done -EXPORT_SYMBOL vmlinux 0x02d967f4 udpv6_sendmsg EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact -EXPORT_SYMBOL vmlinux 0x02f70464 blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x02fe6577 xattr_full_name -EXPORT_SYMBOL vmlinux 0x030ae5b2 sys_fillrect -EXPORT_SYMBOL vmlinux 0x03148742 ethtool_aggregate_pause_stats -EXPORT_SYMBOL vmlinux 0x0315529f alloc_fddidev -EXPORT_SYMBOL vmlinux 0x032159d6 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x030a2873 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x03175a91 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x031ee84a ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x032d5a99 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0335c1eb flush_signals +EXPORT_SYMBOL vmlinux 0x03368e83 dma_sync_sg_for_device EXPORT_SYMBOL vmlinux 0x0337e486 prepare_creds -EXPORT_SYMBOL vmlinux 0x033d3ff9 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x033ff8fd end_page_writeback +EXPORT_SYMBOL vmlinux 0x0344d9ad tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror -EXPORT_SYMBOL vmlinux 0x034cfb3a phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x0359b9fb phy_sfp_probe EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0366a962 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x038a5cad bio_integrity_prep EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039c454f inode_set_bytes -EXPORT_SYMBOL vmlinux 0x039dedf9 neigh_carrier_down EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all -EXPORT_SYMBOL vmlinux 0x03bdd32f i2c_get_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0x03be02bf pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x03d88179 dst_init -EXPORT_SYMBOL vmlinux 0x03dd9d87 of_get_property +EXPORT_SYMBOL vmlinux 0x03ca9a71 empty_aops EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x040d94ad __brelse +EXPORT_SYMBOL vmlinux 0x04025af3 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0x040f220f security_binder_transaction EXPORT_SYMBOL vmlinux 0x041776ca textsearch_prepare -EXPORT_SYMBOL vmlinux 0x04187379 register_console -EXPORT_SYMBOL vmlinux 0x04405fb7 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x043b451f param_set_dyndbg_classes EXPORT_SYMBOL vmlinux 0x04426f14 mem_section EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock -EXPORT_SYMBOL vmlinux 0x045074d9 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x0471880d _dev_warn -EXPORT_SYMBOL vmlinux 0x0476e1ac iget5_locked -EXPORT_SYMBOL vmlinux 0x04792683 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x04a5d345 tty_port_init +EXPORT_SYMBOL vmlinux 0x04ae2183 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x04bf5e47 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x04c165a3 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04d3ec28 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x04e498bc register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x04eb39dc scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x04f50a16 __block_write_full_folio +EXPORT_SYMBOL vmlinux 0x05003c3f md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x05008a20 ram_aops EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x0517e62c sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x050bb50e handshake_req_private +EXPORT_SYMBOL vmlinux 0x051d940a skb_headers_offset_update EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052ff103 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x053f7f16 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x054c5c28 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x056946d5 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x0552ff41 is_bad_inode EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x05848f33 __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x058ab2d6 init_task -EXPORT_SYMBOL vmlinux 0x059d0bc2 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x05a0d72a mod_node_page_state -EXPORT_SYMBOL vmlinux 0x05a98b0d mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x05766d68 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x058b1f98 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x058cadb6 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x059583be iov_iter_npages +EXPORT_SYMBOL vmlinux 0x05a22c51 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x05aad019 path_put EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x05bdbfc5 keyring_alloc +EXPORT_SYMBOL vmlinux 0x05b72ce6 genphy_c45_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x05bd0585 dma_resv_init EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x05d0b3ed pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x05dfc9a3 tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x05e29ca2 bitmap_from_arr64 -EXPORT_SYMBOL vmlinux 0x05fd4c20 snd_dma_buffer_mmap -EXPORT_SYMBOL vmlinux 0x0601c721 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x05ea32cd import_iovec +EXPORT_SYMBOL vmlinux 0x05f9a121 phy_init_eee +EXPORT_SYMBOL vmlinux 0x05ff6a9c mmc_remove_host +EXPORT_SYMBOL vmlinux 0x060a9021 softnet_data +EXPORT_SYMBOL vmlinux 0x061038cf folio_add_lru +EXPORT_SYMBOL vmlinux 0x06132b3e mmc_detect_change EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062732fe fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x06381ad1 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x063b1f04 md_finish_reshape -EXPORT_SYMBOL vmlinux 0x0658225d qdisc_put -EXPORT_SYMBOL vmlinux 0x06660c66 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x064198ea xfrm_state_add +EXPORT_SYMBOL vmlinux 0x06581b80 __module_get +EXPORT_SYMBOL vmlinux 0x065c320d insert_inode_locked4 EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066f1ccd inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x06741299 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x06849313 snd_card_set_id -EXPORT_SYMBOL vmlinux 0x0695ed2d devfreq_add_device -EXPORT_SYMBOL vmlinux 0x0696d889 vme_lm_request -EXPORT_SYMBOL vmlinux 0x06a0e722 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x06a448b1 sync_blockdev_range -EXPORT_SYMBOL vmlinux 0x06bc839e of_device_unregister +EXPORT_SYMBOL vmlinux 0x0674f50f tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x067c8315 inet_put_port +EXPORT_SYMBOL vmlinux 0x06a660b7 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x06aa7443 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x06b1c54c netpoll_poll_dev EXPORT_SYMBOL vmlinux 0x06c13ebd __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x06c8b918 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x06caca8a unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x06ced2ec dentry_open EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d75d89 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x06e4672e dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x06dc815a __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x06e827e3 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x06f58113 dentry_create EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x07245561 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072e1585 msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0746c806 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x0762cd0c page_pool_unlink_napi +EXPORT_SYMBOL vmlinux 0x076380ab phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x0769a483 skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev -EXPORT_SYMBOL vmlinux 0x0787570c __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x078220b0 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x07829313 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x078545a5 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x079ba5dc sock_alloc +EXPORT_SYMBOL vmlinux 0x07a61367 netpoll_setup EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07cbc9d2 param_get_charp +EXPORT_SYMBOL vmlinux 0x07adf91c mmc_command_done +EXPORT_SYMBOL vmlinux 0x07c32f08 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x07ca4724 inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d6546b scsi_host_lookup EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x07f4018d d_set_d_op EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f8e666 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x07fea90f del_gendisk +EXPORT_SYMBOL vmlinux 0x07fa0c01 has_capability EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x080ec70f __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x0814a2e8 trace_event_printf -EXPORT_SYMBOL vmlinux 0x0815c50e tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x08204616 pci_iomap +EXPORT_SYMBOL vmlinux 0x08068cdb vme_bus_num +EXPORT_SYMBOL vmlinux 0x0814bf87 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x0826f931 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x08294ec9 page_address EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082ca31f set_disk_ro -EXPORT_SYMBOL vmlinux 0x082cdc4d devm_rproc_add +EXPORT_SYMBOL vmlinux 0x0835200d inet_register_protosw EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0841fad2 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x0842aea8 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x08509c48 param_get_hexint -EXPORT_SYMBOL vmlinux 0x085135be mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x085ce734 nf_log_packet EXPORT_SYMBOL vmlinux 0x085e0c04 memcg_kmem_online_key -EXPORT_SYMBOL vmlinux 0x08655adf sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x086dcbde pci_get_subsys +EXPORT_SYMBOL vmlinux 0x08618204 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x08692af9 devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit -EXPORT_SYMBOL vmlinux 0x0872a10d serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x087532af devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x0885e448 d_obtain_root -EXPORT_SYMBOL vmlinux 0x0890d82c param_get_byte -EXPORT_SYMBOL vmlinux 0x08a5b63c tcf_idr_search -EXPORT_SYMBOL vmlinux 0x08cfcf7a rawnand_sw_bch_correct -EXPORT_SYMBOL vmlinux 0x08d225e0 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x08894e3c tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x089589f2 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x08b38640 rproc_alloc +EXPORT_SYMBOL vmlinux 0x08be7a56 uart_resume_port EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x08e39050 of_lpddr3_get_ddr_timings EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08ff24c1 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0905f53c sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x09323c23 find_vma -EXPORT_SYMBOL vmlinux 0x096658b5 simple_write_begin -EXPORT_SYMBOL vmlinux 0x096993d3 input_register_device -EXPORT_SYMBOL vmlinux 0x096d5527 rproc_add +EXPORT_SYMBOL vmlinux 0x090194ce setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x091bd7dd genphy_c45_eee_is_active +EXPORT_SYMBOL vmlinux 0x091e77df jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x0924f3e7 start_tty +EXPORT_SYMBOL vmlinux 0x092c4b50 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x093be578 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x096311d8 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x09640fe9 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x0966a4d4 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x09714d72 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x0972ba54 _dev_emerg EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a9452f __of_get_address -EXPORT_SYMBOL vmlinux 0x09c0f987 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x09c895ab flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0x09cd4ffb d_lookup -EXPORT_SYMBOL vmlinux 0x09cfab84 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x09a926be __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x09ac7ff9 km_state_notify +EXPORT_SYMBOL vmlinux 0x09c3662d __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x09cb05da fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d98a67 __icmp_send -EXPORT_SYMBOL vmlinux 0x09f0f3f0 dst_alloc +EXPORT_SYMBOL vmlinux 0x09d96689 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x09e903cf wireless_spy_update +EXPORT_SYMBOL vmlinux 0x09ea3b41 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x09edb4de of_find_device_by_node EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a0ded25 mii_ethtool_sset EXPORT_SYMBOL vmlinux 0x0a0e735c rpmh_write EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a1f2594 iget_failed -EXPORT_SYMBOL vmlinux 0x0a213818 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x0a244ed2 set_capacity +EXPORT_SYMBOL vmlinux 0x0a1ebb8b get_tree_bdev +EXPORT_SYMBOL vmlinux 0x0a212c8c pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x0a24ee1e phy_stop +EXPORT_SYMBOL vmlinux 0x0a2cd5ca inode_set_bytes EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr -EXPORT_SYMBOL vmlinux 0x0a45b847 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x0a49660f dentry_open -EXPORT_SYMBOL vmlinux 0x0a4ba46a simple_transaction_release -EXPORT_SYMBOL vmlinux 0x0a51024e md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x0a3fd128 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x0a504d53 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0a5ec6ed nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0x0a76de69 security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x0a784a6e devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0x0a7add56 ether_setup -EXPORT_SYMBOL vmlinux 0x0a80a069 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x0a874cd5 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x0a8e1191 filemap_splice_read -EXPORT_SYMBOL vmlinux 0x0a93df7c ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x0a9683a7 netdev_update_features EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0a976ace devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x0a9c291d mark_info_dirty +EXPORT_SYMBOL vmlinux 0x0a9ce304 security_socket_socketpair EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aac5d7e __module_get +EXPORT_SYMBOL vmlinux 0x0aa40d45 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x0aa67941 napi_schedule_prep EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0aaec1a7 set_posix_acl -EXPORT_SYMBOL vmlinux 0x0abc55a9 seq_pad -EXPORT_SYMBOL vmlinux 0x0ac43245 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x0ac3237f vfs_rename EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad78c75 dev_add_pack +EXPORT_SYMBOL vmlinux 0x0ae4aa41 d_exact_alias EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update -EXPORT_SYMBOL vmlinux 0x0af98949 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x0b0b4d77 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b24907d register_sound_mixer -EXPORT_SYMBOL vmlinux 0x0b27a12d __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x0b2ddd30 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x0b350e5a dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x0b3a6f5c default_llseek -EXPORT_SYMBOL vmlinux 0x0b41755c inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x0b4567bd pci_disable_msix EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init -EXPORT_SYMBOL vmlinux 0x0b657463 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x0b4d152b max8998_read_reg +EXPORT_SYMBOL vmlinux 0x0b5c6480 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x0b6161d0 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x0b6fcbc7 udplite_prot EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b8185ad __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x0b856b77 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x0ba0316b pci_write_config_word +EXPORT_SYMBOL vmlinux 0x0b805c69 register_console EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba2e1ac add_to_pipe -EXPORT_SYMBOL vmlinux 0x0bbcc7fc simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x0bbcd8c9 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0bc4016b bioset_integrity_create EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bce8c67 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0beda391 backlight_force_update +EXPORT_SYMBOL vmlinux 0x0be01411 wrap_directory_iterator EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf7725d setup_new_exec -EXPORT_SYMBOL vmlinux 0x0bf8bfb8 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x0bfcb53b inet6_getname -EXPORT_SYMBOL vmlinux 0x0c0fc770 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x0c113f5d rawnand_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0x0c172259 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x0c0d96ce alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x0c238e51 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c3494d2 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x0c39d9e5 sock_set_priority -EXPORT_SYMBOL vmlinux 0x0c4b40e6 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x0c4bd72d __sock_create -EXPORT_SYMBOL vmlinux 0x0c4f857b set_user_nice -EXPORT_SYMBOL vmlinux 0x0c56ddf0 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x0c6cbe2c vm_map_ram -EXPORT_SYMBOL vmlinux 0x0c6dae04 mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x0c717a4f dma_free_attrs -EXPORT_SYMBOL vmlinux 0x0c7c7d21 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x0c7d8e8e tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x0c7dc0c2 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x0c2f8814 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0x0c2f91c1 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x0c3483a3 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x0c3edbc3 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0c4e1dd1 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x0c947aae vga_get +EXPORT_SYMBOL vmlinux 0x0ca0cb6f gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x0ca47c4a tcp_add_backlog EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca80d76 param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cc6df79 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x0cc79937 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x0ccdaf69 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x0cce418a security_d_instantiate EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cfcad69 kmap_high +EXPORT_SYMBOL vmlinux 0x0cdd163a mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x0ce0ec12 generic_listxattr +EXPORT_SYMBOL vmlinux 0x0cfcb042 iunique EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d1eaada snd_info_create_module_entry EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d51ca57 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x0d2d0aae __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x0d41bdea of_device_register +EXPORT_SYMBOL vmlinux 0x0d424eb9 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0d4b5dd1 mpage_read_folio EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5672a1 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL vmlinux 0x0d5f68f7 kern_path -EXPORT_SYMBOL vmlinux 0x0d6c0cb1 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x0d9a8fe5 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x0da3ecb3 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x0da42b9f xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x0db5ce37 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x0d56fa50 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x0d68d3c7 build_skb +EXPORT_SYMBOL vmlinux 0x0d6bbc6d page_pool_destroy EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dbdb441 __devm_of_mdiobus_register EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex -EXPORT_SYMBOL vmlinux 0x0dc6b7b3 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x0dca1a7d sk_alloc -EXPORT_SYMBOL vmlinux 0x0dd0c46d ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x0dd52ce4 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x0de01172 dump_skip_to -EXPORT_SYMBOL vmlinux 0x0df40f95 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x0e126a5a bio_copy_data +EXPORT_SYMBOL vmlinux 0x0dccf411 skb_split +EXPORT_SYMBOL vmlinux 0x0dedda69 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x0df5fe3c datagram_poll +EXPORT_SYMBOL vmlinux 0x0e1263b1 simple_unlink +EXPORT_SYMBOL vmlinux 0x0e15ebfd __register_chrdev EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1eb568 pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0x0e2c46da mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x0e585103 pci_find_capability +EXPORT_SYMBOL vmlinux 0x0e19a603 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x0e1a336a mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x0e1a8669 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x0e236c2d ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x0e45625c mmc_can_discard EXPORT_SYMBOL vmlinux 0x0e5da8f0 utf8_normalize -EXPORT_SYMBOL vmlinux 0x0e6a9ae7 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x0e8db758 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x0e6ebc85 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x0e6fabd7 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x0e7a3900 param_ops_long +EXPORT_SYMBOL vmlinux 0x0e7ada6b xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x0e839370 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0e854a8b get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x0e8615a7 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x0e9c705c io_uring_get_socket EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eb0481a tcp_init_sock +EXPORT_SYMBOL vmlinux 0x0eb53eeb dcb_delrewr +EXPORT_SYMBOL vmlinux 0x0eb640e0 inet_addr_type_table EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ec57d3d blk_finish_plug +EXPORT_SYMBOL vmlinux 0x0eb7c750 inet6_offloads +EXPORT_SYMBOL vmlinux 0x0ec465c1 i2c_transfer EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ed2fd9e __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x0ed5451d tty_unthrottle -EXPORT_SYMBOL vmlinux 0x0edf306d cdev_device_add -EXPORT_SYMBOL vmlinux 0x0ee071d0 generic_file_write_iter EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy -EXPORT_SYMBOL vmlinux 0x0ef38f35 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x0f012940 md_write_end +EXPORT_SYMBOL vmlinux 0x0f05bc84 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f143489 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f25aea2 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x0f3f3981 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x0f3fdf6a pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0x0f4b88ae dma_fence_array_create -EXPORT_SYMBOL vmlinux 0x0f4cabd1 mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x0f5844ea rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x0f69577a mdio_bus_type -EXPORT_SYMBOL vmlinux 0x0f744264 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x0f4c8532 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x0f704b91 default_qdisc_ops EXPORT_SYMBOL vmlinux 0x0f7b2cad devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x0f7c3451 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x0f7d1073 generic_ro_fops EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store -EXPORT_SYMBOL vmlinux 0x0f835dde set_blocksize -EXPORT_SYMBOL vmlinux 0x0f851b14 tty_port_open EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0faf3ac9 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x0f8da511 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x0f9d15c2 tty_port_tty_get EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc472cc security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x0fcd5d2e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x0fb49995 flush_signals +EXPORT_SYMBOL vmlinux 0x0fbad00a devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create EXPORT_SYMBOL vmlinux 0x0fdd8dad dns_query EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff20ea4 init_pseudo +EXPORT_SYMBOL vmlinux 0x0ffd428e to_nd_btt EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm -EXPORT_SYMBOL vmlinux 0x1000ad40 single_open_size -EXPORT_SYMBOL vmlinux 0x1000cc22 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x1000bc94 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset -EXPORT_SYMBOL vmlinux 0x1008bdc6 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x1016f92c mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x1017fdd1 request_key_rcu EXPORT_SYMBOL vmlinux 0x101837d0 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x10323db3 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x1033d208 mmc_retune_pause EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x103bc8ed sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x1046ca0f blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x104daa81 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x104ec19e flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x10552209 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x106019de folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x1064dc06 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1068c7cc jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1072f3fe elv_rb_find +EXPORT_SYMBOL vmlinux 0x106f3ca4 mfd_remove_devices EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1087f40b super_setup_bdi -EXPORT_SYMBOL vmlinux 0x1092fc67 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x10997af7 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x10a72829 snd_ctl_remove -EXPORT_SYMBOL vmlinux 0x10aefe14 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x10cbde86 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x1081148f security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x109baf0e tcp_ioctl +EXPORT_SYMBOL vmlinux 0x10a6b310 set_nlink +EXPORT_SYMBOL vmlinux 0x10b13345 scsi_device_get +EXPORT_SYMBOL vmlinux 0x10c292c2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x10cb694c generic_file_read_iter EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e5f07b __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range EXPORT_SYMBOL vmlinux 0x10f41730 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x10f762a6 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x10f8b9cc tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110adb43 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x11111b83 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x11116bf4 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x110de24a ip_check_defrag EXPORT_SYMBOL vmlinux 0x11140e26 load_nls -EXPORT_SYMBOL vmlinux 0x1114abd2 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x1153f718 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x115f7f1a phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x11697bbd xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x111c5530 sync_filesystem +EXPORT_SYMBOL vmlinux 0x111d92fc tty_port_init +EXPORT_SYMBOL vmlinux 0x1121b533 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1126f8e7 mdio_device_register +EXPORT_SYMBOL vmlinux 0x1148b2bf qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x116804e6 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1190952f rw_verify_area -EXPORT_SYMBOL vmlinux 0x11929eba tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x117df79c of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x118ba14c uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x118f87fe jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch -EXPORT_SYMBOL vmlinux 0x11afacd5 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x11d9a833 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x11b96b2c mmc_request_done EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11fafa71 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x11ed0e4d folio_create_empty_buffers EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x1207df25 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x1210fb32 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x12225afd handshake_req_private -EXPORT_SYMBOL vmlinux 0x123aeb40 pci_get_device -EXPORT_SYMBOL vmlinux 0x12406020 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x1227c530 pci_write_config_byte EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x127c55b2 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x125d3106 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x12844554 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x128963dd always_delete_dentry -EXPORT_SYMBOL vmlinux 0x128fb8a2 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x12c43835 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x12abb958 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x12c69214 snd_pcm_set_managed_buffer EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12cfc93c alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x12d72e20 mii_check_media -EXPORT_SYMBOL vmlinux 0x12d7e369 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x12db6160 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x12debbd4 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x12e221e1 unlock_page +EXPORT_SYMBOL vmlinux 0x12ecdc49 dev_get_iflink EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x13087c68 dma_fence_array_first EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1320e24d genphy_resume -EXPORT_SYMBOL vmlinux 0x132cd007 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x134f8bd6 pci_find_resource -EXPORT_SYMBOL vmlinux 0x1357c18a tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x136ae7e4 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x136b5b4c skb_copy_expand -EXPORT_SYMBOL vmlinux 0x136bfe09 tcp_check_req -EXPORT_SYMBOL vmlinux 0x13862f0d of_range_to_resource -EXPORT_SYMBOL vmlinux 0x139dc062 tls_client_hello_psk -EXPORT_SYMBOL vmlinux 0x13ad00d5 tcf_idr_create -EXPORT_SYMBOL vmlinux 0x13c16c77 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x13d0a83a reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x13116708 misc_deregister +EXPORT_SYMBOL vmlinux 0x132024a6 cqhci_irq +EXPORT_SYMBOL vmlinux 0x133fbea8 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x135ea3ef udp_sendmsg +EXPORT_SYMBOL vmlinux 0x135f56cc pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x135fca8f secpath_set +EXPORT_SYMBOL vmlinux 0x13750832 qdisc_reset +EXPORT_SYMBOL vmlinux 0x138dc0f8 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x13b9c0b2 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x13c72e07 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x13c840a3 skb_seq_read +EXPORT_SYMBOL vmlinux 0x13cdf9d5 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x13d00fe6 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d8048c xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x13d90c9c cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13db5458 md_error +EXPORT_SYMBOL vmlinux 0x13e25ea6 input_register_handler +EXPORT_SYMBOL vmlinux 0x13f19361 request_key_tag EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x1409c61f wake_up_process EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x141007c7 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x1416ebfe vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x1412eb93 proto_unregister EXPORT_SYMBOL vmlinux 0x141f2ee6 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x1424abd1 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x143b81c2 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x144ad481 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x1420e1c8 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x142c4b53 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat EXPORT_SYMBOL vmlinux 0x14524c1d nand_ecc_get_sw_engine -EXPORT_SYMBOL vmlinux 0x14566d15 skb_pull -EXPORT_SYMBOL vmlinux 0x145783d7 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1462f27b genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x1464e902 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x14684da2 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x14754e5c sys_fillrect +EXPORT_SYMBOL vmlinux 0x1477663a flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x1485ba5d vfs_mkdir EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x1494670a param_set_copystring -EXPORT_SYMBOL vmlinux 0x149f4ed7 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x149d80d6 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x149ff4c2 proc_symlink +EXPORT_SYMBOL vmlinux 0x14aaf8aa nf_log_trace EXPORT_SYMBOL vmlinux 0x14acd218 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x14b5581e pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x14ca931d pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14f76525 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x1514d813 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x14d78a23 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x14de8abb keyring_clear +EXPORT_SYMBOL vmlinux 0x150c9f0c finish_open +EXPORT_SYMBOL vmlinux 0x151637a4 snd_pcm_hw_constraint_step EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x15383749 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x1535155e may_setattr EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x1557439c dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x1561eae4 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x157ea8d4 user_revoke EXPORT_SYMBOL vmlinux 0x157f6944 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x159e92b5 netdev_core_stats_alloc -EXPORT_SYMBOL vmlinux 0x15a21eba blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x15b72067 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x159e6003 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x15a88b50 kill_pid +EXPORT_SYMBOL vmlinux 0x15ac3924 zero_fill_bio EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bc1de8 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15bfe623 dev_mc_flush EXPORT_SYMBOL vmlinux 0x15cfb2b3 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0x15d0d020 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x15dae4c1 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x15d4229c bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x15d676ed snd_register_oss_device EXPORT_SYMBOL vmlinux 0x15f0358a __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x15fcbe84 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x160ba558 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x16043d02 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x160e1668 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x1612b674 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x161a118a tegra_dfll_suspend EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x16403fbd pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x1644e1b3 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x164b3a41 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x1642572e of_chosen +EXPORT_SYMBOL vmlinux 0x16457e4f param_get_string +EXPORT_SYMBOL vmlinux 0x1651e688 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find -EXPORT_SYMBOL vmlinux 0x165307c3 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x165679f1 crypto_kdf108_ctr_generate -EXPORT_SYMBOL vmlinux 0x16573803 unix_get_socket -EXPORT_SYMBOL vmlinux 0x165d25f1 nf_log_unset -EXPORT_SYMBOL vmlinux 0x168de206 lookup_one -EXPORT_SYMBOL vmlinux 0x16ad14d5 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x166b376b iptun_encaps +EXPORT_SYMBOL vmlinux 0x166c3af4 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x167182db gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x1680ee1b flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x16882bfb write_cache_pages +EXPORT_SYMBOL vmlinux 0x169197b1 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x1695edf5 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x16a51a53 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable -EXPORT_SYMBOL vmlinux 0x16d2c5b1 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0x16da7903 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x16ba1baf sock_wfree +EXPORT_SYMBOL vmlinux 0x16c7bc04 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x16dba1a4 inet_frag_find +EXPORT_SYMBOL vmlinux 0x16de1bb6 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f687b4 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x172bb2fe poll_initwait -EXPORT_SYMBOL vmlinux 0x174482c6 import_iovec -EXPORT_SYMBOL vmlinux 0x1767d362 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x17728b0c snd_pcm_hw_constraint_step -EXPORT_SYMBOL vmlinux 0x177576c2 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x177c6c86 skb_find_text +EXPORT_SYMBOL vmlinux 0x16ed673b ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x16f58a2a simple_get_link +EXPORT_SYMBOL vmlinux 0x16f7a167 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x16fbe3e4 dcb_getrewr +EXPORT_SYMBOL vmlinux 0x16ffdcc8 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x1701e9de dump_emit +EXPORT_SYMBOL vmlinux 0x1703adaf flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x171d7eeb rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0x172f0f3f ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x17341f4e dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x1736d896 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x17484ea1 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x1756e785 param_set_bool +EXPORT_SYMBOL vmlinux 0x177304c1 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x177dd743 cont_write_begin EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x178ce36a pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x179b1f78 _dev_alert -EXPORT_SYMBOL vmlinux 0x179d6741 iput -EXPORT_SYMBOL vmlinux 0x179e8185 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0x17b13309 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x17ce2786 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x178ff5c1 genphy_resume +EXPORT_SYMBOL vmlinux 0x17a2ebcb mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x17aebc51 pci_iounmap +EXPORT_SYMBOL vmlinux 0x17b497be i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x17b831cf eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x17b9e6e8 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x17c66d5d dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x17ca7a4d param_get_short EXPORT_SYMBOL vmlinux 0x17d12c76 nand_ecc_init_ctx -EXPORT_SYMBOL vmlinux 0x17d5a258 snd_soc_alloc_ac97_component -EXPORT_SYMBOL vmlinux 0x17e464a6 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x17ee1a54 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x1820f9f0 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x17d88eaa proc_create_single_data +EXPORT_SYMBOL vmlinux 0x1826bfce dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x182ef12b pci_find_parent_resource EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x183acaf3 sk_dst_check -EXPORT_SYMBOL vmlinux 0x18533dab vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x1857f472 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x18589135 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x183879a3 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x18491ec7 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x184f9194 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1864a55d get_unmapped_area +EXPORT_SYMBOL vmlinux 0x186853e3 d_make_root +EXPORT_SYMBOL vmlinux 0x1870773b fs_param_is_bool EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x187f53b0 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x187f6711 handshake_req_submit EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18997e5f ip6_xmit -EXPORT_SYMBOL vmlinux 0x18a0affa netif_carrier_on -EXPORT_SYMBOL vmlinux 0x18a15cb6 devm_devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x18aed985 edac_mc_find -EXPORT_SYMBOL vmlinux 0x18b247ff mdio_device_free -EXPORT_SYMBOL vmlinux 0x18b26450 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x1896ad55 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x18b7678d crypto_sha3_update -EXPORT_SYMBOL vmlinux 0x18d2f28d eth_header_cache EXPORT_SYMBOL vmlinux 0x18d7195e hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x18db6c44 snd_mixer_oss_notify_callback EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18eae593 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x18f02fad __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x190a6ea8 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x191c9c57 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x192871be of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x192d485d mpage_readahead -EXPORT_SYMBOL vmlinux 0x192daa28 devm_request_resource -EXPORT_SYMBOL vmlinux 0x192f2776 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x1933364a blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x18ede970 __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x193fe4f1 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x196b7a5c dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x19793ebe inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x1980b0ce rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x195b4e78 param_get_int +EXPORT_SYMBOL vmlinux 0x196b4d88 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x1978242e dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x1998ae31 md_finish_reshape EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp EXPORT_SYMBOL vmlinux 0x19a8c34e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x19a91af7 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x19aa23c6 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x19ac9cea skb_checksum +EXPORT_SYMBOL vmlinux 0x19b1b7b8 dev_driver_string +EXPORT_SYMBOL vmlinux 0x19bba86e con_copy_unimap EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19d0d60f skb_copy -EXPORT_SYMBOL vmlinux 0x19d6c1e6 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x19dab9df dm_table_get_md -EXPORT_SYMBOL vmlinux 0x19df968a show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x19e1c68a input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x1a0403f8 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x1a22e536 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x1a489b02 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x1a5641d6 snd_ctl_unregister_ioctl -EXPORT_SYMBOL vmlinux 0x1a5ac2fb fb_set_var -EXPORT_SYMBOL vmlinux 0x1a5c69d3 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x19db0440 cdev_alloc +EXPORT_SYMBOL vmlinux 0x19f36da5 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x19f7ab87 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x1a02693c dev_uc_flush +EXPORT_SYMBOL vmlinux 0x1a074944 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x1a0a8748 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x1a268a85 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x1a287565 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x1a46dba9 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x1a5247e5 cdev_init EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn -EXPORT_SYMBOL vmlinux 0x1a6afaaf sk_ioctl -EXPORT_SYMBOL vmlinux 0x1a70dcb6 ilookup EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 -EXPORT_SYMBOL vmlinux 0x1a80bf99 register_qdisc -EXPORT_SYMBOL vmlinux 0x1a937b20 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x1a7ed48d __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x1a8789b0 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9b476e ethtool_aggregate_ctrl_stats -EXPORT_SYMBOL vmlinux 0x1aa4591d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x1aa1922c devm_backlight_device_register EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim -EXPORT_SYMBOL vmlinux 0x1aa90648 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x1acb456f iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x1ab74207 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0x1adc9255 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x1ad4cd00 mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x1ae53272 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x1ae93b64 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x1af610c5 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x1afcbb8c jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b0bff37 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x1b1f27ed __traceiter_module_get EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store -EXPORT_SYMBOL vmlinux 0x1b3984fe __alloc_skb +EXPORT_SYMBOL vmlinux 0x1b411ae6 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x1b45e6b8 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x1b5aa92b generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b63555e netif_device_detach +EXPORT_SYMBOL vmlinux 0x1b6c1af1 inode_needs_sync EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b8d781f freezing_slow_path -EXPORT_SYMBOL vmlinux 0x1b9d2fe9 sock_alloc -EXPORT_SYMBOL vmlinux 0x1ba9f3a4 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x1bb61020 ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0x1bbe1676 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x1bc521de pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x1bcbfcaf pci_disable_msix -EXPORT_SYMBOL vmlinux 0x1bcf7967 dma_async_device_register -EXPORT_SYMBOL vmlinux 0x1bf65e55 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x1babc649 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x1bb67393 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x1bd10658 tty_port_tty_set EXPORT_SYMBOL vmlinux 0x1bfd1a61 vm_event_states -EXPORT_SYMBOL vmlinux 0x1c017d71 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x1c0d093c ps2_drain EXPORT_SYMBOL vmlinux 0x1c113e21 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x1c1826cd gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x1c3c7b89 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x1c3f2486 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x1c42ca75 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x1c43778e fscrypt_fname_disk_to_usr -EXPORT_SYMBOL vmlinux 0x1c512e0c mdiobus_write +EXPORT_SYMBOL vmlinux 0x1c1c0e53 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x1c1c336f proc_create_data +EXPORT_SYMBOL vmlinux 0x1c4b9b51 pci_request_irq +EXPORT_SYMBOL vmlinux 0x1c5b79f1 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c705273 dcb_getrewr_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x1c798d89 dm_unregister_target -EXPORT_SYMBOL vmlinux 0x1c8a5ccd bio_reset EXPORT_SYMBOL vmlinux 0x1c8c1b67 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x1c95d0db pipe_lock +EXPORT_SYMBOL vmlinux 0x1c9de4a5 seq_pad +EXPORT_SYMBOL vmlinux 0x1ca2656c bmap +EXPORT_SYMBOL vmlinux 0x1cb4f2db inet_del_protocol +EXPORT_SYMBOL vmlinux 0x1cb82d44 dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc57d26 block_read_full_folio -EXPORT_SYMBOL vmlinux 0x1cc7465a mdiobb_read_c22 -EXPORT_SYMBOL vmlinux 0x1cd85d37 __find_get_block -EXPORT_SYMBOL vmlinux 0x1cebec5f vfs_ioctl -EXPORT_SYMBOL vmlinux 0x1cf31572 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x1cf8543c pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x1cff9db4 inet_add_offload -EXPORT_SYMBOL vmlinux 0x1d016ea0 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x1cd16cb4 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x1ce98f3d security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x1cea5519 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x1cf8a8c6 jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL vmlinux 0x1d0e9087 param_get_string -EXPORT_SYMBOL vmlinux 0x1d21cef5 of_property_read_reg +EXPORT_SYMBOL vmlinux 0x1d081ca7 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x1d15f337 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x1d24b3d2 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x1d268e6e qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0x1d298759 snd_device_register EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap -EXPORT_SYMBOL vmlinux 0x1d3f106a jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x1d4c1d32 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x1d4f045d xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x1d5a089e netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x1d38b1fa blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x1d3b14ab scmd_printk +EXPORT_SYMBOL vmlinux 0x1d49e5e5 vme_slot_num +EXPORT_SYMBOL vmlinux 0x1d658d41 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x1d66ca27 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0x1d7fa516 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x1da451b5 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x1dc16649 tty_name +EXPORT_SYMBOL vmlinux 0x1d94a98a __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x1da97463 __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x1dc13fb9 max8998_bulk_write EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dd1c1c3 md_reload_sb +EXPORT_SYMBOL vmlinux 0x1dcaa298 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0x1ded359b get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x1dfce12b pcim_set_mwi EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable -EXPORT_SYMBOL vmlinux 0x1e073ee2 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x1e03ef64 flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0bcf99 kobject_get -EXPORT_SYMBOL vmlinux 0x1e1bdc23 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x1e3b2095 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x1e4680ab key_reject_and_link -EXPORT_SYMBOL vmlinux 0x1e471d9d inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x1e4a42b2 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x1e506e58 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1e0c12c9 task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x1e11ad57 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x1e2b8985 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x1e38102f nf_getsockopt +EXPORT_SYMBOL vmlinux 0x1e50f448 page_pool_create +EXPORT_SYMBOL vmlinux 0x1e51401f phy_attach_direct EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x1e59f605 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x1e63e265 genphy_suspend +EXPORT_SYMBOL vmlinux 0x1e5e0ea2 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x1e5ff13c hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e7804af tcp_disconnect -EXPORT_SYMBOL vmlinux 0x1e96e17f crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x1e77cbbe tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x1e792959 ip_frag_next +EXPORT_SYMBOL vmlinux 0x1e87da70 iget_failed EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x1e97ee8a I_BDEV EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea3efd7 of_node_put +EXPORT_SYMBOL vmlinux 0x1ea17773 mdiobus_write +EXPORT_SYMBOL vmlinux 0x1ea50916 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x1eb5ab92 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1eb7408e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x1ecced53 inetdev_by_index EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ee1a3aa __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x1edc27d6 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x1ee1d820 seq_bprintf +EXPORT_SYMBOL vmlinux 0x1eeca6a8 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format EXPORT_SYMBOL vmlinux 0x1efc8594 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x1f0e16f7 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x1f148e7e block_invalidate_folio -EXPORT_SYMBOL vmlinux 0x1f19dc8f input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x1f1b12cc security_path_mknod +EXPORT_SYMBOL vmlinux 0x1f084d04 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x1f1c0177 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x1f4cfdf9 snd_card_free EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x1f61de17 fqdir_init -EXPORT_SYMBOL vmlinux 0x1f657ea0 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x1f6632af end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x1f817742 unpin_user_page -EXPORT_SYMBOL vmlinux 0x1f92ff86 of_translate_dma_region -EXPORT_SYMBOL vmlinux 0x1f9c1074 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x1fbb3d89 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x1f7e1d5e __lock_buffer +EXPORT_SYMBOL vmlinux 0x1f87f47a ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x1f89f24d sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1f9ccd45 simple_release_fs EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcd1392 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fdc6ee2 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x1ff5c8e9 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x1ffd931b mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x1fd0f584 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x1fd50280 deactivate_super +EXPORT_SYMBOL vmlinux 0x1fe92d22 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x200544ac snd_info_free_entry EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200f6ff0 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x202a550f xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x202d818d netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x2035b9d5 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x204a6967 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x2021bc02 unlock_new_inode EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x204e0f31 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x205532f6 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x205a2dc9 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x205d16b4 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x2090fc0c of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x2099db0f of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x20a1a5a4 inet6_release +EXPORT_SYMBOL vmlinux 0x205908e1 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x2073a0c5 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x2085ea1f __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x20a522a1 pid_task EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20ab1792 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x20afef30 xp_dma_map -EXPORT_SYMBOL vmlinux 0x20bed940 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x20d16633 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x20a8f339 wake_up_process +EXPORT_SYMBOL vmlinux 0x20b745e1 set_bh_page +EXPORT_SYMBOL vmlinux 0x20cf9218 nand_monolithic_write_page_raw +EXPORT_SYMBOL vmlinux 0x20d561f9 inet6_del_offload EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20d97115 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x20dfaa61 sock_from_file -EXPORT_SYMBOL vmlinux 0x20e86551 neigh_for_each -EXPORT_SYMBOL vmlinux 0x20ef0e9e pcim_pin_device -EXPORT_SYMBOL vmlinux 0x20f2fb35 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x20fa2b2a d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x210e2365 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x20ff9149 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x210e0e5e sock_set_mark EXPORT_SYMBOL vmlinux 0x21110dbf mmioset EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x2121a50d dm_kobject_release +EXPORT_SYMBOL vmlinux 0x21270664 ps2_init EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x21533d6e ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x2153857d dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x2142374f __of_get_address EXPORT_SYMBOL vmlinux 0x215667b2 zstd_get_frame_header -EXPORT_SYMBOL vmlinux 0x215708fd inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x216a28f0 netlink_capable +EXPORT_SYMBOL vmlinux 0x215a15e6 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy -EXPORT_SYMBOL vmlinux 0x21748c32 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x21750d68 rproc_set_firmware EXPORT_SYMBOL vmlinux 0x2183b0a9 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x218b418a tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x218c26bd proc_symlink +EXPORT_SYMBOL vmlinux 0x218d22ea zap_page_range_single EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21aa1e6f tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x21b9e815 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x2197328b block_write_begin EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21c17554 snd_pcm_new_stream -EXPORT_SYMBOL vmlinux 0x21d18f9e lease_get_mtime -EXPORT_SYMBOL vmlinux 0x21e099d1 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x21deba87 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e252b4 bio_add_page -EXPORT_SYMBOL vmlinux 0x21e7e82e input_grab_device EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight -EXPORT_SYMBOL vmlinux 0x21f38f5c vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x21f3c657 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x21f4075d __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq -EXPORT_SYMBOL vmlinux 0x21fec371 dcache_readdir -EXPORT_SYMBOL vmlinux 0x220dffd3 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x22054260 seq_file_path EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2222ed65 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x222b6dda netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223130c9 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x224b6951 sockopt_release_sock -EXPORT_SYMBOL vmlinux 0x224f47a6 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x22532078 sock_init_data -EXPORT_SYMBOL vmlinux 0x225d6a1e fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x22684a6e fput -EXPORT_SYMBOL vmlinux 0x2276756e mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x22302e07 copy_splice_read +EXPORT_SYMBOL vmlinux 0x223468c6 devm_release_resource +EXPORT_SYMBOL vmlinux 0x223de738 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x223e06c8 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x224408b4 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x22552284 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x22643c52 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x22694647 getname_kernel EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision -EXPORT_SYMBOL vmlinux 0x2289dd34 follow_pfn -EXPORT_SYMBOL vmlinux 0x229083e8 get_tree_single -EXPORT_SYMBOL vmlinux 0x22ab08db _copy_to_iter +EXPORT_SYMBOL vmlinux 0x22a1099f ipmr_rule_default EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b364fb jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x22cf3dbf vfs_fadvise -EXPORT_SYMBOL vmlinux 0x22efda1b neigh_xmit -EXPORT_SYMBOL vmlinux 0x230bb040 param_set_hexint -EXPORT_SYMBOL vmlinux 0x2311b219 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x23421c03 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x2345e05e eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x22b8d288 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x22c1dd26 set_blocksize +EXPORT_SYMBOL vmlinux 0x22e07e96 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x23115614 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x23537291 sock_no_bind +EXPORT_SYMBOL vmlinux 0x235fa110 fasync_helper EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x2365829a netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x236c80ed xsk_tx_release -EXPORT_SYMBOL vmlinux 0x2376048d dst_discard_out +EXPORT_SYMBOL vmlinux 0x236d9b58 pps_register_source +EXPORT_SYMBOL vmlinux 0x2382a32b scsi_scan_target EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x23905639 of_chosen +EXPORT_SYMBOL vmlinux 0x239476dc tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x239d69f2 genphy_aneg_done EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c08a2c netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x23d34168 netif_rx +EXPORT_SYMBOL vmlinux 0x23b9db73 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x23d690c5 disk_check_media_change +EXPORT_SYMBOL vmlinux 0x23d890f2 tcf_exts_init_ex EXPORT_SYMBOL vmlinux 0x23de7eca nla_put_64bit -EXPORT_SYMBOL vmlinux 0x23e1e226 rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x23ead41f cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x23ee116d phy_aneg_done EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count -EXPORT_SYMBOL vmlinux 0x23f78bb0 dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x23fdf711 bio_uninit -EXPORT_SYMBOL vmlinux 0x243eb052 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x24378595 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244b194e dquot_drop +EXPORT_SYMBOL vmlinux 0x2458e7c6 __find_get_block EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245cd5d4 input_setup_polling -EXPORT_SYMBOL vmlinux 0x246092a3 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x246790df idr_for_each EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update -EXPORT_SYMBOL vmlinux 0x2479bac8 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x249c2f42 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x2490ae22 scsi_done_direct EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL vmlinux 0x24a9e2fb remap_pfn_range -EXPORT_SYMBOL vmlinux 0x24b8b69f generic_block_bmap +EXPORT_SYMBOL vmlinux 0x24ba293b of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x24ccab35 snd_ctl_rename EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d70a4b finalize_exec EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24e94e5d __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x24ef4aca blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2503706a security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x2538c670 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x254fe7bf param_ops_charp -EXPORT_SYMBOL vmlinux 0x2567ffcc dm_register_target -EXPORT_SYMBOL vmlinux 0x256ca7b4 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x257a30ba tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x2523bd05 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x253ad0e9 vga_put +EXPORT_SYMBOL vmlinux 0x254d113e sk_net_capable +EXPORT_SYMBOL vmlinux 0x2562328d tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x2567bd7a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x257bbdaa snd_pcm_release_substream EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258ae8e4 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x259b8818 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x259fadd7 configfs_depend_item -EXPORT_SYMBOL vmlinux 0x25ad1813 pci_set_master -EXPORT_SYMBOL vmlinux 0x25b0c38a mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x25a180cc inode_init_always +EXPORT_SYMBOL vmlinux 0x25af9ba8 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x25afa631 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0x25c5a5b1 kobject_set_name -EXPORT_SYMBOL vmlinux 0x25e1f0b7 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x25ccddd5 bio_put +EXPORT_SYMBOL vmlinux 0x25db41f6 inet_release +EXPORT_SYMBOL vmlinux 0x25dba8b7 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x25e39dcd fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25fee50d dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x25f87065 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x2607b300 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x26280874 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x262979a1 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x260a14fb inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x260f76c7 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x262bc539 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x2630260a inc_node_state +EXPORT_SYMBOL vmlinux 0x263366c5 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x26456b6f param_get_long -EXPORT_SYMBOL vmlinux 0x26516d66 framebuffer_release -EXPORT_SYMBOL vmlinux 0x2651acc9 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x2652f35c sock_create_lite -EXPORT_SYMBOL vmlinux 0x2658d616 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x267130d7 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x263d6286 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x264ad39b sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x26564038 input_set_poll_interval EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x2699c5ae cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x26a6fd40 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x268aec6e tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x2696eaf1 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x269bbd15 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x26a34f1e skb_queue_purge +EXPORT_SYMBOL vmlinux 0x26a7b390 pci_alloc_dev EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x26c22971 vga_get -EXPORT_SYMBOL vmlinux 0x26e4c29a __i2c_transfer -EXPORT_SYMBOL vmlinux 0x26e7acb6 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x26c44746 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x26d3cfa7 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x26dafc37 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x26dcc9b8 tty_port_put EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x270f3d25 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x27246c03 cont_write_begin +EXPORT_SYMBOL vmlinux 0x270ed2bd param_ops_uint +EXPORT_SYMBOL vmlinux 0x272b5fed phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x273d247f __serio_register_driver EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2754cf55 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27605b8d tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x2761465d generic_permission -EXPORT_SYMBOL vmlinux 0x27754c94 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x276da046 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277dbbf3 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x27777a56 __skb_gso_segment EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x2788c45c netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x2798b859 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x27a3e60a dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x278dd531 __kfree_skb +EXPORT_SYMBOL vmlinux 0x278e7e85 __bforget +EXPORT_SYMBOL vmlinux 0x278ed376 user_path_create +EXPORT_SYMBOL vmlinux 0x279a4847 fb_get_mode +EXPORT_SYMBOL vmlinux 0x27a23ba2 tty_driver_kref_put EXPORT_SYMBOL vmlinux 0x27a6c7e7 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x27a72c1c vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x27b12a87 crypto_sha3_init -EXPORT_SYMBOL vmlinux 0x27bb7c9e phy_start +EXPORT_SYMBOL vmlinux 0x27b54240 neigh_carrier_down EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27cc7d36 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x27bc73a3 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x27bddbec pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x27c534e6 d_add +EXPORT_SYMBOL vmlinux 0x27cd89c2 of_device_get_match_data EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d65593 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x27e2e7fe jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x27f17958 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x27e0da03 __dev_remove_pack EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 -EXPORT_SYMBOL vmlinux 0x281383d0 folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x28178d1d vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28218726 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x283243d6 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x28393d30 fget EXPORT_SYMBOL vmlinux 0x283b8e0e nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL vmlinux 0x28535337 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x28675d27 rproc_boot +EXPORT_SYMBOL vmlinux 0x28592325 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x2862b23b d_prune_aliases +EXPORT_SYMBOL vmlinux 0x286bd278 rproc_detach +EXPORT_SYMBOL vmlinux 0x286be854 i2c_find_device_by_fwnode EXPORT_SYMBOL vmlinux 0x2873438a zstd_init_dctx EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy -EXPORT_SYMBOL vmlinux 0x288227d2 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x2899972b dev_uc_init -EXPORT_SYMBOL vmlinux 0x28ac9ed6 param_get_ulong -EXPORT_SYMBOL vmlinux 0x28b89237 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x28c9e536 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x28ce5f0d ps2_interrupt -EXPORT_SYMBOL vmlinux 0x28d03792 peernet2id -EXPORT_SYMBOL vmlinux 0x28f61781 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x28802e68 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x2892bc71 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x28a0b155 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x28a78f88 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x28be48a1 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x28dd05a4 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x28f2552c tcp_init_sock EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable EXPORT_SYMBOL vmlinux 0x290737e5 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x2911d24b __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x2933329b ps2_command -EXPORT_SYMBOL vmlinux 0x293d7211 snd_timer_notify -EXPORT_SYMBOL vmlinux 0x295f0e7a snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x290ba731 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x2923db66 init_special_inode +EXPORT_SYMBOL vmlinux 0x2930aff8 submit_bh +EXPORT_SYMBOL vmlinux 0x2943bda7 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x294639c7 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x294bcd3c elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296058b2 phy_write_paged -EXPORT_SYMBOL vmlinux 0x2960bc11 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x296d75dd xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x297d92a9 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x2980230d devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x298d7e74 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x29a06178 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x29707b53 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x29728ec7 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x29778a09 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x29821d2c mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x29858405 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x29862039 inode_init_once +EXPORT_SYMBOL vmlinux 0x2990e17f scsi_execute_cmd +EXPORT_SYMBOL vmlinux 0x29ab2ec2 __neigh_create +EXPORT_SYMBOL vmlinux 0x29b87367 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x29bb18f1 d_alloc +EXPORT_SYMBOL vmlinux 0x29c4557f inet6_register_protosw EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x2a1a407e device_get_mac_address -EXPORT_SYMBOL vmlinux 0x2a1a9bb9 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x2a219b46 param_set_charp +EXPORT_SYMBOL vmlinux 0x29e42588 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x29f04c2a inc_node_page_state +EXPORT_SYMBOL vmlinux 0x29f5cc62 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x2a12bc8b blk_execute_rq +EXPORT_SYMBOL vmlinux 0x2a23b7a5 genphy_suspend +EXPORT_SYMBOL vmlinux 0x2a2a28df file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a30fac9 snd_timer_global_new -EXPORT_SYMBOL vmlinux 0x2a3a89a5 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x2a310922 find_inode_nowait EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit -EXPORT_SYMBOL vmlinux 0x2a3aebcc jbd2_journal_invalidate_folio -EXPORT_SYMBOL vmlinux 0x2a5581d6 snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x2a3cad6b vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x2a47f325 clear_inode +EXPORT_SYMBOL vmlinux 0x2a4a0a33 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a7ef400 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2a790dc4 tcp_poll +EXPORT_SYMBOL vmlinux 0x2a8f9bbd pci_unmap_rom EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp -EXPORT_SYMBOL vmlinux 0x2ac1284e sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2aa0f016 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x2ab29baa pci_scan_slot +EXPORT_SYMBOL vmlinux 0x2ab89be2 _dev_err +EXPORT_SYMBOL vmlinux 0x2ad0f1c9 iterate_dir +EXPORT_SYMBOL vmlinux 0x2ad20847 nf_log_set +EXPORT_SYMBOL vmlinux 0x2ad41808 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x2ae04ae6 begin_new_exec +EXPORT_SYMBOL vmlinux 0x2ae04d53 inode_to_bdi EXPORT_SYMBOL vmlinux 0x2aeeab83 __put_cred -EXPORT_SYMBOL vmlinux 0x2b0c1997 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0x2b0c92c2 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x2b0ce902 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x2b0fa487 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x2b152eee kernel_accept -EXPORT_SYMBOL vmlinux 0x2b2b9e0f rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x2b7beff3 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x2b8f4dae pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x2af3f7fa get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x2b0062a7 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x2b213a43 kill_anon_super +EXPORT_SYMBOL vmlinux 0x2b2d4382 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2b550e65 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0x2b565dad framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x2b5b9637 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x2b65ce21 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x2b6a5b19 kthread_stop +EXPORT_SYMBOL vmlinux 0x2b925f9d free_task +EXPORT_SYMBOL vmlinux 0x2b93637a blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x2b982772 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x2b9cc702 genphy_read_status EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb5bb7d d_add_ci -EXPORT_SYMBOL vmlinux 0x2bc963ed tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x2bcaa3fe unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x2bda1d30 freeze_super +EXPORT_SYMBOL vmlinux 0x2ba47fe4 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x2bcedd25 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x2bd45234 dqget +EXPORT_SYMBOL vmlinux 0x2bd59534 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x2bdb189d locks_free_lock EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed -EXPORT_SYMBOL vmlinux 0x2be232cd __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x2befdb5f ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x2bf10f5c vfs_getattr -EXPORT_SYMBOL vmlinux 0x2bf1d70a dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x2bf83fef sock_common_getsockopt EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy -EXPORT_SYMBOL vmlinux 0x2c1a2a69 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x2c24cf93 thread_group_exited EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c29be9f blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c413f7d __netif_schedule EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x2c52dbde phy_validate_pause EXPORT_SYMBOL vmlinux 0x2c5460be serio_open -EXPORT_SYMBOL vmlinux 0x2c65153e new_inode -EXPORT_SYMBOL vmlinux 0x2c6889cc configfs_register_group +EXPORT_SYMBOL vmlinux 0x2c5d12f5 pci_request_region EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c739edd filemap_range_has_page EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8a28dc pcim_enable_device -EXPORT_SYMBOL vmlinux 0x2ca4a195 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x2cb9f300 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x2cc0b3d8 commit_creds -EXPORT_SYMBOL vmlinux 0x2cc8cb20 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x2ccac775 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x2cd15e7b dput -EXPORT_SYMBOL vmlinux 0x2cd9178f sk_capable -EXPORT_SYMBOL vmlinux 0x2ce358bd xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x2cc598b5 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x2cdf1b03 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x2ceabb6b dcache_readdir +EXPORT_SYMBOL vmlinux 0x2cf44ed4 snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0x2cfc2ab2 snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt EXPORT_SYMBOL vmlinux 0x2d02c558 set_security_override -EXPORT_SYMBOL vmlinux 0x2d07f996 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x2d0c0734 fb_validate_mode EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d2cac42 snd_card_disconnect EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d4390d6 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x2d4472c2 zstd_find_frame_compressed_size EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d5ac1a1 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x2d61192c twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x2d6af04a __mmc_claim_host EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc -EXPORT_SYMBOL vmlinux 0x2d79d5c1 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x2d7e4f01 cdev_add -EXPORT_SYMBOL vmlinux 0x2d7e502f kthread_create_worker -EXPORT_SYMBOL vmlinux 0x2d858789 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x2d7d8b42 d_rehash +EXPORT_SYMBOL vmlinux 0x2d8f5aee __mod_node_page_state EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d93ea12 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x2d943363 param_set_copystring EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2db2a69d ___pskb_trim -EXPORT_SYMBOL vmlinux 0x2db48d89 napi_get_frags -EXPORT_SYMBOL vmlinux 0x2db8a4b5 page_pool_release_page -EXPORT_SYMBOL vmlinux 0x2dc8779f devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x2dcd263d folio_mark_dirty -EXPORT_SYMBOL vmlinux 0x2dcdce10 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x2ddfd26d rproc_del +EXPORT_SYMBOL vmlinux 0x2d9ab5de snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0x2d9acd19 kernel_bind +EXPORT_SYMBOL vmlinux 0x2ddedcb3 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de47e57 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x2dfbe3ee __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x2e0520ce phy_config_aneg -EXPORT_SYMBOL vmlinux 0x2e0b91af __devm_request_region -EXPORT_SYMBOL vmlinux 0x2e0f566a find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x2e198065 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x2deb578f phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x2e08da30 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e21b8c4 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x2e22fa38 i2c_transfer -EXPORT_SYMBOL vmlinux 0x2e2ba3fe pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x2e1f1022 dev_change_flags +EXPORT_SYMBOL vmlinux 0x2e275e08 path_is_under +EXPORT_SYMBOL vmlinux 0x2e2dfa08 snd_pcm_lib_get_vmalloc_page EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e4f291c vlan_vid_del -EXPORT_SYMBOL vmlinux 0x2e5284e7 bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0x2e5e2b95 netdev_emerg -EXPORT_SYMBOL vmlinux 0x2e66583b pci_resize_resource -EXPORT_SYMBOL vmlinux 0x2e6ba8b8 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x2e80a1b5 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x2e824cab tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x2e8380cb kernel_getsockname -EXPORT_SYMBOL vmlinux 0x2e895adc param_ops_hexint -EXPORT_SYMBOL vmlinux 0x2e981bea mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x2ead9c6f cdev_device_del -EXPORT_SYMBOL vmlinux 0x2ec42e40 consume_skb +EXPORT_SYMBOL vmlinux 0x2e878b8a icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x2ea8d775 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x2ebdb8df scsi_block_requests EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2eed043f pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x2efcab4a sk_free +EXPORT_SYMBOL vmlinux 0x2edf2f65 param_set_ushort +EXPORT_SYMBOL vmlinux 0x2edf7635 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x2edfbf2b xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x2ee98b00 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x2ef2bb2d pci_choose_state +EXPORT_SYMBOL vmlinux 0x2ef7e477 sync_blockdev_range EXPORT_SYMBOL vmlinux 0x2efebfd2 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0c7469 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x2f0f5e6f phy_error EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f21d0ea __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x2f1ed58f dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x2f2148eb clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f330cc1 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle -EXPORT_SYMBOL vmlinux 0x2f52a26f phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x2f587ffe tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x2f39d35b task_work_add +EXPORT_SYMBOL vmlinux 0x2f55c551 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2f5bf9e5 __netif_napi_del EXPORT_SYMBOL vmlinux 0x2f6957bd zstd_end_stream -EXPORT_SYMBOL vmlinux 0x2f755654 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x2f6f14b3 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x2f6f1d3f input_flush_device EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f9aaab6 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x2fbeafc1 inet_bind -EXPORT_SYMBOL vmlinux 0x2fcee6c5 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x2fd62527 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x2fd63c9a xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x2fb51f4d arp_xmit +EXPORT_SYMBOL vmlinux 0x2fb6405f ps2_begin_command +EXPORT_SYMBOL vmlinux 0x2fd20307 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x2fd28471 param_array_ops +EXPORT_SYMBOL vmlinux 0x2fe1c8e0 copy_page_to_iter EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe6ea61 mmc_can_discard -EXPORT_SYMBOL vmlinux 0x30155ba8 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x301641a4 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x3016c9c6 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x3004b3db mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x300d2af4 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x301afa4b __napi_schedule EXPORT_SYMBOL vmlinux 0x30349436 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x3046da28 seq_read -EXPORT_SYMBOL vmlinux 0x304942a1 unlock_page -EXPORT_SYMBOL vmlinux 0x306921ce jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x303a459e tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x303a942f of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x303dba6c skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x305f6713 inet_listen +EXPORT_SYMBOL vmlinux 0x30690c9b snd_pcm_open_substream EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x308f4f64 input_register_handle +EXPORT_SYMBOL vmlinux 0x30879767 arp_tbl EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x309f1cf2 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x30a644ce inet_del_protocol EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30c2a2e5 put_fs_context -EXPORT_SYMBOL vmlinux 0x30c7b1c6 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x30b7814e __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x30c26d77 ip6_find_1stfragopt EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create -EXPORT_SYMBOL vmlinux 0x30f0c5da pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x310d424e nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x311d637d of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x311ed67a write_cache_pages -EXPORT_SYMBOL vmlinux 0x312123a5 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x30f9fb53 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x31149600 address_space_init_once +EXPORT_SYMBOL vmlinux 0x3118da49 page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312ac26d vfs_parse_fs_param_source EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info +EXPORT_SYMBOL vmlinux 0x3134cb89 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x313bed8d devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x3140ecfa rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x314143e5 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf -EXPORT_SYMBOL vmlinux 0x3152cdfb max8925_reg_write -EXPORT_SYMBOL vmlinux 0x315fdd80 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x3186fc7c mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x31a39987 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x31a3ef70 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x3158e91d tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x3160c9ab tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x3178f294 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x31948cb5 unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31ad5f9c ip_defrag -EXPORT_SYMBOL vmlinux 0x31ae828b ping_prot -EXPORT_SYMBOL vmlinux 0x31b2b64c input_get_timestamp -EXPORT_SYMBOL vmlinux 0x31b8eb08 empty_aops -EXPORT_SYMBOL vmlinux 0x31dac168 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x31e49137 kernel_connect -EXPORT_SYMBOL vmlinux 0x31f1056e jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x31fea77c blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x320fd2e3 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x321714fa skb_seq_read +EXPORT_SYMBOL vmlinux 0x31b7a750 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x31e2eed5 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x31e71df2 bio_init +EXPORT_SYMBOL vmlinux 0x32081640 touch_buffer +EXPORT_SYMBOL vmlinux 0x320c4503 readahead_expand +EXPORT_SYMBOL vmlinux 0x321082d6 ip_defrag EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset EXPORT_SYMBOL vmlinux 0x3234487e nand_ecc_cleanup_ctx EXPORT_SYMBOL vmlinux 0x32362e6a nand_ecc_finish_io_req EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages -EXPORT_SYMBOL vmlinux 0x324ba846 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x3257ba6a __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x3245696f netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x324a0417 neigh_for_each +EXPORT_SYMBOL vmlinux 0x325b1e90 skb_copy +EXPORT_SYMBOL vmlinux 0x325f0d92 set_page_dirty +EXPORT_SYMBOL vmlinux 0x32605a6f skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x327e0a7f iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x328146fa inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32871e02 inet_protos +EXPORT_SYMBOL vmlinux 0x32886ece kmem_cache_create EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy -EXPORT_SYMBOL vmlinux 0x329593cd is_nd_btt +EXPORT_SYMBOL vmlinux 0x328b7207 sk_ns_capable EXPORT_SYMBOL vmlinux 0x329c37b9 rpmh_invalidate EXPORT_SYMBOL vmlinux 0x32a19797 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x32b7e692 unlock_rename +EXPORT_SYMBOL vmlinux 0x32c028c6 fb_io_read +EXPORT_SYMBOL vmlinux 0x32cb984b snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0x32cc6367 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d43c87 udp_read_skb -EXPORT_SYMBOL vmlinux 0x32dbf5a9 tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0x32e29f43 posix_lock_file -EXPORT_SYMBOL vmlinux 0x330d9d66 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x331f1d24 generic_fadvise -EXPORT_SYMBOL vmlinux 0x333046c6 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x335e4d5f do_splice_direct -EXPORT_SYMBOL vmlinux 0x33725a63 snd_register_device +EXPORT_SYMBOL vmlinux 0x32da914d mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x32e7b549 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x32fa457d mpage_writepages +EXPORT_SYMBOL vmlinux 0x3309dd45 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x330b6873 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x33159e63 vfs_create +EXPORT_SYMBOL vmlinux 0x3330182b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x333317e1 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x333a2760 fb_blank +EXPORT_SYMBOL vmlinux 0x334aa246 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x33645a2d ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x337a8af7 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x338b8ee1 of_get_parent EXPORT_SYMBOL vmlinux 0x33991bc5 devm_free_irq -EXPORT_SYMBOL vmlinux 0x33997c95 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x339da546 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x33bb3b12 pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0x33d47ae4 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0x33c7d670 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x33cdd9ee timestamp_truncate +EXPORT_SYMBOL vmlinux 0x33d0e13a capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x340c57fd __devm_release_region +EXPORT_SYMBOL vmlinux 0x33faf8dc qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x341cd498 snd_pcm_kernel_ioctl EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x342eaceb dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x3441bc66 dentry_create -EXPORT_SYMBOL vmlinux 0x344222c9 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x3460a252 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x346d5984 simple_empty -EXPORT_SYMBOL vmlinux 0x347cc8b6 vfs_fsync +EXPORT_SYMBOL vmlinux 0x3447631d generic_fadvise +EXPORT_SYMBOL vmlinux 0x344e9bd0 inet_shutdown +EXPORT_SYMBOL vmlinux 0x346b076e file_update_time +EXPORT_SYMBOL vmlinux 0x34784e51 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349f01f7 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x34c25295 snd_ctl_add EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x34d259f1 phy_device_create -EXPORT_SYMBOL vmlinux 0x34df9192 skb_split -EXPORT_SYMBOL vmlinux 0x34f155aa current_time EXPORT_SYMBOL vmlinux 0x34f20f95 _atomic_dec_and_raw_lock EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue EXPORT_SYMBOL vmlinux 0x34f44f29 do_map_probe -EXPORT_SYMBOL vmlinux 0x34fedcec sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x350f6e19 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x350bb82a bdi_put +EXPORT_SYMBOL vmlinux 0x350fa882 vme_init_bridge EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x351a6ecb mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x351d61db snd_compr_malloc_pages -EXPORT_SYMBOL vmlinux 0x351e5165 vm_map_pages -EXPORT_SYMBOL vmlinux 0x353ca4dc folio_account_redirty +EXPORT_SYMBOL vmlinux 0x3519f3a1 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3526f55d fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x3529bcf3 scsi_dma_map EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 -EXPORT_SYMBOL vmlinux 0x3547518e i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x3546445f vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356fe37f may_umount_tree EXPORT_SYMBOL vmlinux 0x3576fe06 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x3582aa9c tso_start -EXPORT_SYMBOL vmlinux 0x359ee8d0 handshake_genl_put +EXPORT_SYMBOL vmlinux 0x359393ec console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x359cb7c2 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35abdafe sock_create -EXPORT_SYMBOL vmlinux 0x35ae0831 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x35b6f7b0 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x35b8ecf8 kobject_add -EXPORT_SYMBOL vmlinux 0x35b9ffbe phy_attach -EXPORT_SYMBOL vmlinux 0x35cc270a dquot_operations -EXPORT_SYMBOL vmlinux 0x35d11a6b sock_edemux -EXPORT_SYMBOL vmlinux 0x35d854ae devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x35baa6b4 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x35db27f9 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x35e6052f scsi_host_put EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x35eeb089 sock_set_priority +EXPORT_SYMBOL vmlinux 0x35f13818 uart_unregister_driver EXPORT_SYMBOL vmlinux 0x35feb769 serio_unregister_port EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3615f5f1 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x361cd1d5 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x361dfbb7 ptp_clock_unregister -EXPORT_SYMBOL vmlinux 0x362a7da7 security_sctp_assoc_established -EXPORT_SYMBOL vmlinux 0x36386c12 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x3641d045 sget -EXPORT_SYMBOL vmlinux 0x36581ae6 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x360d43ee locks_init_lock +EXPORT_SYMBOL vmlinux 0x360e134e jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x362cb8ef pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x364d70c6 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x364f89b0 nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36602305 nf_log_set +EXPORT_SYMBOL vmlinux 0x3660ea66 clear_page_dirty_for_io EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init -EXPORT_SYMBOL vmlinux 0x366b65c7 md_bitmap_unplug_async -EXPORT_SYMBOL vmlinux 0x3687a110 netdev_get_by_name -EXPORT_SYMBOL vmlinux 0x369d0d05 inet_protos +EXPORT_SYMBOL vmlinux 0x3677d660 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x369aec1a netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled -EXPORT_SYMBOL vmlinux 0x36d55408 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x36de18c1 snd_timer_start -EXPORT_SYMBOL vmlinux 0x36e5c045 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x36e78acf folio_migrate_flags -EXPORT_SYMBOL vmlinux 0x36f08790 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x36ede83f rfkill_alloc +EXPORT_SYMBOL vmlinux 0x36fcdd54 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x37079abc pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x370de16e inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x371b1f80 snd_ctl_notify EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x37282c86 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x3731c4ed vfs_mkobj -EXPORT_SYMBOL vmlinux 0x3731d724 kill_pgrp -EXPORT_SYMBOL vmlinux 0x37353f69 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x3742852a mdiobus_read EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3745f5ea snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x3748fde9 mmc_free_host +EXPORT_SYMBOL vmlinux 0x374a8103 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x374c8161 simple_transaction_set EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x376bd711 param_set_ullong EXPORT_SYMBOL vmlinux 0x377498e4 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x3776d934 ptp_find_pin -EXPORT_SYMBOL vmlinux 0x3778eba9 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x3789891e __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x378b20ca pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x378a96e7 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x379df6ad mmc_add_host EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c07a32 cpu_tlb -EXPORT_SYMBOL vmlinux 0x37c3a062 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x37d755b3 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x37d77e9f free_cgroup_ns EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e31253 pci_match_id -EXPORT_SYMBOL vmlinux 0x37e3a05f dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x37f38d29 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x37f3ab13 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x37edb091 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x37ee8598 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x37eea255 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x37f61c87 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x37f82172 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x3804b3f4 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x380d9abe filemap_flush +EXPORT_SYMBOL vmlinux 0x3813269f __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x3813bdbd devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3819bc88 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x38284c90 blk_put_queue -EXPORT_SYMBOL vmlinux 0x38358601 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x38398e7b devfreq_update_target +EXPORT_SYMBOL vmlinux 0x381c42cf skb_expand_head +EXPORT_SYMBOL vmlinux 0x383739bf devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x3839c118 generic_write_end EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x38439887 send_sig -EXPORT_SYMBOL vmlinux 0x384dbdd1 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x38503316 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x384cc720 may_umount EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x38564e49 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x385f29fc snd_pcm_set_ops EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup EXPORT_SYMBOL vmlinux 0x38783434 unregister_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x38805608 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x38810794 module_layout EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x389096fc sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 -EXPORT_SYMBOL vmlinux 0x38a12d70 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x38a40974 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38c1b615 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x38d0ea4c fb_validate_mode -EXPORT_SYMBOL vmlinux 0x38d684ca is_subdir -EXPORT_SYMBOL vmlinux 0x38fb51de tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x390fdc74 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x38c3011c ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x38c458f1 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x38cda7e0 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x38e21adc tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x392de939 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x393797ad of_parse_phandle_with_args_map EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393fd0a8 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x39440125 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394be3c6 zero_user_segments -EXPORT_SYMBOL vmlinux 0x396bbb4a bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x394c0f86 dqput +EXPORT_SYMBOL vmlinux 0x394ce92e tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399afa86 snd_dma_alloc_dir_pages +EXPORT_SYMBOL vmlinux 0x39ae3af7 pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c22da2 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work -EXPORT_SYMBOL vmlinux 0x39e3e8ac ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x39e76a08 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x39e9c0f3 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x3a03ef90 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x3a0e4e4f register_key_type +EXPORT_SYMBOL vmlinux 0x39caff49 set_cached_acl +EXPORT_SYMBOL vmlinux 0x39d8a3a6 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x39dab74c of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x39e6a0b3 blk_queue_segment_boundary EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a17f925 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x3a1c4971 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x3a2877e5 fddi_type_trans EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a303eac vc_cons +EXPORT_SYMBOL vmlinux 0x3a379292 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x3a39adde rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a504aa0 page_cache_next_miss EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x3a5c3d9c param_ops_bool -EXPORT_SYMBOL vmlinux 0x3a63dfc7 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x3a7348d6 dev_kfree_skb_any_reason +EXPORT_SYMBOL vmlinux 0x3a55d795 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x3a754e7e mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x3a797d1f kunmap_high EXPORT_SYMBOL vmlinux 0x3a84fed3 utf8_casefold -EXPORT_SYMBOL vmlinux 0x3a8fd013 cdrom_open -EXPORT_SYMBOL vmlinux 0x3aa13d5a dma_pool_create +EXPORT_SYMBOL vmlinux 0x3a9b44d4 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x3aa73b44 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ac57f00 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x3abbad48 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x3abe7612 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0x3ad92064 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0x3adc094a tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x3ae2ac37 locks_free_lock -EXPORT_SYMBOL vmlinux 0x3ae4dd03 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x3aed112b netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x3af10e32 file_ns_capable -EXPORT_SYMBOL vmlinux 0x3afa9801 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x3b020808 pcie_capability_clear_and_set_word_unlocked EXPORT_SYMBOL vmlinux 0x3b046142 crypto_sha3_final -EXPORT_SYMBOL vmlinux 0x3b0ca745 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0x3b0e12d1 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x3b123d6e netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x3b12c029 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x3b05169a security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x3b0e5692 rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0x3b166de4 kset_register -EXPORT_SYMBOL vmlinux 0x3b2590af register_netdev +EXPORT_SYMBOL vmlinux 0x3b17fb85 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x3b1fa6ab generic_read_dir +EXPORT_SYMBOL vmlinux 0x3b208bd4 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x3b223a64 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x3b2f22c2 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x3b34d9c6 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x3b3d469f forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x3b2cdf73 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x3b3a0dfa napi_complete_done +EXPORT_SYMBOL vmlinux 0x3b3b6357 md_bitmap_unplug_async EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user -EXPORT_SYMBOL vmlinux 0x3b4d967c xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x3b5246c9 ip_output +EXPORT_SYMBOL vmlinux 0x3b5abe58 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner -EXPORT_SYMBOL vmlinux 0x3b96fdfe pci_release_resource -EXPORT_SYMBOL vmlinux 0x3bacaeef blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x3badbcc8 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x3b8e65de pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x3ba304d6 skb_queue_head +EXPORT_SYMBOL vmlinux 0x3bbde190 pci_restore_state EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base -EXPORT_SYMBOL vmlinux 0x3bff74ad tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x3c0130a1 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x3bd89670 netpoll_print_options EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c29416c seq_printf +EXPORT_SYMBOL vmlinux 0x3c1ce10a jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x3c1feb9d sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x3c2c69cd fixed_size_llseek EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c48bf6a wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0x3c5875ac xfrm_state_insert EXPORT_SYMBOL vmlinux 0x3c5c822b serio_close +EXPORT_SYMBOL vmlinux 0x3c5dc094 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache -EXPORT_SYMBOL vmlinux 0x3c801897 snd_timer_instance_new -EXPORT_SYMBOL vmlinux 0x3c8ca03f register_netdevice +EXPORT_SYMBOL vmlinux 0x3c61cd2a blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x3c63e303 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x3c65edca inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x3c8b988f configfs_depend_item +EXPORT_SYMBOL vmlinux 0x3c8c580b tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert -EXPORT_SYMBOL vmlinux 0x3cb0eee5 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x3c93d318 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock -EXPORT_SYMBOL vmlinux 0x3cbb9d84 simple_rmdir -EXPORT_SYMBOL vmlinux 0x3cc84191 dma_fence_describe -EXPORT_SYMBOL vmlinux 0x3cd9055c dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x3cdd4645 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x3cb83e6d nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x3cc8ade9 elv_rb_del +EXPORT_SYMBOL vmlinux 0x3ccfac9e napi_enable +EXPORT_SYMBOL vmlinux 0x3cd1a8cf tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x3cd2b9cf netdev_notify_peers EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3d004d99 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x3d079c0e simple_rename +EXPORT_SYMBOL vmlinux 0x3d11fe45 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x3d239f45 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x3d25fdd4 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x3d350191 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x3d39919a simple_setattr EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array -EXPORT_SYMBOL vmlinux 0x3d4a8b9c tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x3d4c9c81 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x3d5c665e __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x3d97937c blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x3d9c15fe pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x3d9f3a67 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x3d47bf4a rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x3d5802ae snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x3d72c7cf scsi_done +EXPORT_SYMBOL vmlinux 0x3d875dad tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x3d8b37bc d_path +EXPORT_SYMBOL vmlinux 0x3d9198bd dev_set_threaded +EXPORT_SYMBOL vmlinux 0x3d9d1d12 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0x3da8894c nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x3dba4617 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x3dc4b43e write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3db6343d truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0x3dcaad8a proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3df2a341 snd_pcm_lib_free_pages -EXPORT_SYMBOL vmlinux 0x3df9f27f rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x3dce1903 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x3dd0ae54 simple_fill_super EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e233db7 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x3e23b145 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x3e3406ac backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x3e38ada5 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x3e0756c9 tty_name +EXPORT_SYMBOL vmlinux 0x3e0997a1 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x3e0eb5d3 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x3e149766 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x3e1e8980 folio_mapping +EXPORT_SYMBOL vmlinux 0x3e3123db simple_lookup EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e4be9dc file_remove_privs +EXPORT_SYMBOL vmlinux 0x3e41d5c4 make_bad_inode EXPORT_SYMBOL vmlinux 0x3e4cc1c8 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL vmlinux 0x3e517cd2 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x3e52bfc4 bmap -EXPORT_SYMBOL vmlinux 0x3e5589df sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x3e7a5230 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x3e82c66f phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes -EXPORT_SYMBOL vmlinux 0x3e8475d0 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x3e9590d1 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x3ea872cf pci_match_id +EXPORT_SYMBOL vmlinux 0x3ea8a0b6 fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ed0e245 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3edc66c8 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x3ef46ca2 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x3ef84127 pps_lookup_dev EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f196350 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x3f2f2397 scsi_execute_cmd +EXPORT_SYMBOL vmlinux 0x3f09f08c xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x3f1b6168 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x3f24766a xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x3f291e42 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x3f39f332 input_register_device EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f471c37 param_set_long EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f5a1dc9 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x3f764361 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x3f7ee699 ethtool_aggregate_mac_stats +EXPORT_SYMBOL vmlinux 0x3f4b5a6a vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x3f76fbf5 mdiobus_free +EXPORT_SYMBOL vmlinux 0x3f7b8c47 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3f84a7dc security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f9d6783 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x3fa23898 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x3fac83a8 iptun_encaps -EXPORT_SYMBOL vmlinux 0x3fb4a90f keyring_search +EXPORT_SYMBOL vmlinux 0x3f8eb791 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x3f99fa83 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x3f9b7564 try_module_get +EXPORT_SYMBOL vmlinux 0x3fb21438 mpage_readahead +EXPORT_SYMBOL vmlinux 0x3fb666b0 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x3fbea82c tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fde8081 uart_resume_port -EXPORT_SYMBOL vmlinux 0x4022ec7c fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x40282330 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x402a4955 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x402c3a7c flush_dcache_page -EXPORT_SYMBOL vmlinux 0x402ffd25 seq_open +EXPORT_SYMBOL vmlinux 0x40117832 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x4028dd66 dev_mc_del EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x403b25df __block_write_begin +EXPORT_SYMBOL vmlinux 0x404aba91 fb_pan_display +EXPORT_SYMBOL vmlinux 0x404b9c06 dst_release_immediate EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump -EXPORT_SYMBOL vmlinux 0x4066ecfa msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0x406faf09 vme_slave_request EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x4072cb87 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x407a8c97 netlink_capable +EXPORT_SYMBOL vmlinux 0x40816133 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x40856426 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x408bd002 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x408c332c netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x4092c761 fqdir_init EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40976f6b icmp_ndo_send EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc EXPORT_SYMBOL vmlinux 0x40ad35a0 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x40af0e70 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x40b4e44e seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x40ba565c fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x40beaed9 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x40c2dc0d cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d253cd sock_set_keepalive EXPORT_SYMBOL vmlinux 0x40d402ad do_wait_intr EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40dbbedf folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x40dccfec fs_param_is_u64 EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 -EXPORT_SYMBOL vmlinux 0x40ff0de9 tcp_prot -EXPORT_SYMBOL vmlinux 0x4113e646 f_setown -EXPORT_SYMBOL vmlinux 0x41161c04 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x40f61848 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41370d7b fddi_type_trans EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x414c7ec8 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x416915be xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x414b4f3d kill_fasync +EXPORT_SYMBOL vmlinux 0x414d1e93 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x4153327f inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x415e9059 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x415f4d3e _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x41641470 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x4170c256 dma_pool_create +EXPORT_SYMBOL vmlinux 0x41794cdd register_shrinker EXPORT_SYMBOL vmlinux 0x417d3d40 get_mem_type -EXPORT_SYMBOL vmlinux 0x418898dd pm8606_osc_enable EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x4195bda4 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x41ab34e4 fasync_helper -EXPORT_SYMBOL vmlinux 0x41ddccdd rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x41ee54a3 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x41f4e9f8 cdev_alloc -EXPORT_SYMBOL vmlinux 0x4203a27b udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x42043e50 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x4207d3a8 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x41d0725e sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x420bbd1d param_get_ulong +EXPORT_SYMBOL vmlinux 0x420d5d2c xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x42130a3b component_match_add_release EXPORT_SYMBOL vmlinux 0x4214823c serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x421ca5ca __f_setown EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc -EXPORT_SYMBOL vmlinux 0x422eb277 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x42253bc0 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x4226e1f6 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4230c37d pci_bus_type +EXPORT_SYMBOL vmlinux 0x423aa2ea block_write_end EXPORT_SYMBOL vmlinux 0x423d4496 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x42476fc6 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x42473210 sk_ioctl EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424b45a8 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424df585 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x4253aa7e down_write -EXPORT_SYMBOL vmlinux 0x42547ed8 snd_card_file_remove -EXPORT_SYMBOL vmlinux 0x425f3a5d pci_bus_read_config_byte EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x4288f902 mr_dump +EXPORT_SYMBOL vmlinux 0x427124f5 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x4271545b phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x4299c521 trace_event_printf +EXPORT_SYMBOL vmlinux 0x42a53112 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x42a5a635 neigh_update +EXPORT_SYMBOL vmlinux 0x42a5bfeb pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x42b2a8ab mtree_erase -EXPORT_SYMBOL vmlinux 0x42b86aad inode_dio_wait -EXPORT_SYMBOL vmlinux 0x42c9a8b9 vfs_setpos -EXPORT_SYMBOL vmlinux 0x42ce8ec9 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x42ec7a74 generic_file_open +EXPORT_SYMBOL vmlinux 0x42c7dd03 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x42cc43cb splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x430014a5 rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x432cdd5c __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x432f8417 ppp_input +EXPORT_SYMBOL vmlinux 0x43200019 qdisc_put EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x4339107d jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x4342d03e devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x43487f30 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x434e16a8 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435f0396 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x43692e29 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x436c9a12 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x43698222 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x43713d40 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x43827f4b path_get +EXPORT_SYMBOL vmlinux 0x437ba2b0 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x4385ac80 iov_iter_zero EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439618cc security_sb_remount -EXPORT_SYMBOL vmlinux 0x43a9ede2 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL vmlinux 0x43b2145a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x438a940f neigh_destroy +EXPORT_SYMBOL vmlinux 0x4397f51b rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x43a2d861 xfrm_input +EXPORT_SYMBOL vmlinux 0x43b6448c fb_class EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43e41389 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x43f27c28 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x43e3e68a xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x44006b5c __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x4403928e snd_ctl_boolean_mono_info EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4411de0d scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x44171bbf phy_device_create +EXPORT_SYMBOL vmlinux 0x442134a8 pci_select_bars EXPORT_SYMBOL vmlinux 0x44230167 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x44326b0f snd_pcm_lib_malloc_pages -EXPORT_SYMBOL vmlinux 0x44329523 blk_rq_init +EXPORT_SYMBOL vmlinux 0x4427f7b9 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x44296c8f set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x4431ba88 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x44325a5d i2c_verify_client EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x443d84ff unix_detach_fds -EXPORT_SYMBOL vmlinux 0x44421d35 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x443808dc bio_reset +EXPORT_SYMBOL vmlinux 0x443bcab0 pci_scan_single_device EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x445f3683 netpoll_setup EXPORT_SYMBOL vmlinux 0x4461eb55 gic_nonsecure_priorities EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul -EXPORT_SYMBOL vmlinux 0x44660744 mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x4485087e ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x449b3852 of_get_next_child -EXPORT_SYMBOL vmlinux 0x44a08262 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x44b6643d proc_remove -EXPORT_SYMBOL vmlinux 0x44b9d5fd blk_get_queue -EXPORT_SYMBOL vmlinux 0x44bd5ccf xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x44674aab bprm_change_interp +EXPORT_SYMBOL vmlinux 0x446abd03 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x44937371 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x44c1830b tegra_ivc_read_get_next_frame EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44cabbde xfrm_lookup +EXPORT_SYMBOL vmlinux 0x44d04017 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x44d0ed43 folio_unlock EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e535b9 __traceiter_spi_transfer_start EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44fbbe60 ptp_clock_register EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x451d3713 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x4523d80f send_sig_info EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45532417 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x4555db1c unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x456000fa nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x4562cb49 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x45638ca2 genphy_c45_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x456aa07a nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x45743feb slab_build_skb +EXPORT_SYMBOL vmlinux 0x455af4a8 pps_event +EXPORT_SYMBOL vmlinux 0x455b1744 km_query +EXPORT_SYMBOL vmlinux 0x455fc07f xfrm_state_update +EXPORT_SYMBOL vmlinux 0x4562eeee of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x456bcc79 rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x4578f94e kthread_bind -EXPORT_SYMBOL vmlinux 0x4580696c tegra_ivc_init -EXPORT_SYMBOL vmlinux 0x45aaa04d jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x458736a7 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x458b9a8e seq_path +EXPORT_SYMBOL vmlinux 0x458e85ae get_cached_acl +EXPORT_SYMBOL vmlinux 0x4597f49d vfs_fsync +EXPORT_SYMBOL vmlinux 0x45a6b672 nf_hook_slow EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low -EXPORT_SYMBOL vmlinux 0x45c76294 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x45def413 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x45f8ece4 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x45ffb79b page_pool_update_nid EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x46149485 fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x4616e1d3 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x46175632 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x4619c3de sockopt_lock_sock EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x46219320 noop_llseek -EXPORT_SYMBOL vmlinux 0x4624916b genl_unregister_family EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy -EXPORT_SYMBOL vmlinux 0x462d80c3 has_capability -EXPORT_SYMBOL vmlinux 0x463d34e4 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x46473db3 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x463d74fb of_iomap +EXPORT_SYMBOL vmlinux 0x464342e3 seq_puts +EXPORT_SYMBOL vmlinux 0x464f856a no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x4657c70c snd_ctl_find_id EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46632cc6 of_device_alloc EXPORT_SYMBOL vmlinux 0x46669d36 _raw_write_lock_nested -EXPORT_SYMBOL vmlinux 0x466bac6c mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x467d8af3 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x46844782 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x466c4c90 blkdev_put +EXPORT_SYMBOL vmlinux 0x467f947a snd_timer_open +EXPORT_SYMBOL vmlinux 0x46889986 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x4689f0f6 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a013f4 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x46bc95fe tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x46bc9ddf generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x46b52b3f mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x46b552cd inet_frags_fini EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options -EXPORT_SYMBOL vmlinux 0x46d362cc devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 -EXPORT_SYMBOL vmlinux 0x46d99973 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x46e0a2d8 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x46f8503e flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x46e8315d _dev_notice EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x470b7007 walk_stackframe EXPORT_SYMBOL vmlinux 0x470cc74e devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x47228313 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x472eed42 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x474b1635 snd_card_new +EXPORT_SYMBOL vmlinux 0x471dd221 phy_find_first +EXPORT_SYMBOL vmlinux 0x471e6fcd __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x4725d282 uart_add_one_port EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy -EXPORT_SYMBOL vmlinux 0x4768147a __nd_driver_register -EXPORT_SYMBOL vmlinux 0x4768c025 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x476bf49b netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x476fae3d __devm_release_region EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47810f9c ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x47851e58 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47bda68a snd_unregister_device -EXPORT_SYMBOL vmlinux 0x47c163c0 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x47a49422 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x47b833d6 netdev_features_change +EXPORT_SYMBOL vmlinux 0x47bd71d6 dev_add_offload EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one -EXPORT_SYMBOL vmlinux 0x47c2ca19 __inet_stream_connect EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47c69074 genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x47e5d731 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x47d090d2 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x47d16145 dev_set_mtu EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range -EXPORT_SYMBOL vmlinux 0x47ebc646 simple_setattr EXPORT_SYMBOL vmlinux 0x47f757de elf_platform -EXPORT_SYMBOL vmlinux 0x47f9b659 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x47fb4159 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x480d24dd scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x4801907a mr_table_dump +EXPORT_SYMBOL vmlinux 0x48124ea0 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x4814bbdc mii_ethtool_gset EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x4828fdb3 zero_user_segments +EXPORT_SYMBOL vmlinux 0x482a916b shmem_aops +EXPORT_SYMBOL vmlinux 0x482b5166 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x482bbb87 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x483d0a97 rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484d176e pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4850087b tty_port_open +EXPORT_SYMBOL vmlinux 0x48556ff3 freeze_super EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x4866e439 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x4869af59 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x486e0cd3 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x487f5a0a uart_suspend_port EXPORT_SYMBOL vmlinux 0x488d40e1 mtree_insert_range EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48ad48b4 cpu_user -EXPORT_SYMBOL vmlinux 0x48b933de complete_request_key +EXPORT_SYMBOL vmlinux 0x48b08a4b netif_carrier_on EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bc7bf9 __pci_register_driver EXPORT_SYMBOL vmlinux 0x48bf9cd8 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x48bfe6e0 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x48cc687d key_validate EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects -EXPORT_SYMBOL vmlinux 0x48dc55a2 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x48e20faf dcb_delrewr -EXPORT_SYMBOL vmlinux 0x48f31f68 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x48fb8c16 init_net +EXPORT_SYMBOL vmlinux 0x48d368f9 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x48d610e6 pci_dev_put +EXPORT_SYMBOL vmlinux 0x48dbcb6f rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4904c42f netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0x490f9980 posix_test_lock -EXPORT_SYMBOL vmlinux 0x491aabd1 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x49217809 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x49256082 of_cpu_device_node_get -EXPORT_SYMBOL vmlinux 0x4938d977 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x49497c63 md_write_inc -EXPORT_SYMBOL vmlinux 0x494f6e52 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x492862e4 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4942f5bc tls_server_hello_x509 +EXPORT_SYMBOL vmlinux 0x4946e13b dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x4951d5ac netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x497472a8 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x4954429c mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x4959e62d proc_remove EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x4978dd9b uart_suspend_port -EXPORT_SYMBOL vmlinux 0x4979e892 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x49860577 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x49879743 rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait EXPORT_SYMBOL vmlinux 0x49972898 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x499881e3 snd_pcm_set_sync EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49bdede5 tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0x49cd4090 iov_iter_init +EXPORT_SYMBOL vmlinux 0x499f3730 ppp_input_error +EXPORT_SYMBOL vmlinux 0x49a503c7 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x49b3715a call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x49bb164e pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x49bc92db mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x49c54772 phy_resume EXPORT_SYMBOL vmlinux 0x49d3cb78 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x49db9918 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x49e86cce genl_notify EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup -EXPORT_SYMBOL vmlinux 0x4a22ca58 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x4a085a95 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x4a0aea0a scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x4a1b19b3 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x4a27246a uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x4a2f42b7 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL vmlinux 0x4a47d942 dquot_resume -EXPORT_SYMBOL vmlinux 0x4a5f55fb framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x4a63d2b6 napi_enable -EXPORT_SYMBOL vmlinux 0x4a6c553c rtnl_create_link -EXPORT_SYMBOL vmlinux 0x4a6ee82b d_alloc_name -EXPORT_SYMBOL vmlinux 0x4a7ca06b mmc_erase -EXPORT_SYMBOL vmlinux 0x4a819313 page_readlink -EXPORT_SYMBOL vmlinux 0x4a92561b phy_init_hw +EXPORT_SYMBOL vmlinux 0x4a50fb2a blk_rq_init +EXPORT_SYMBOL vmlinux 0x4a53d4c7 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x4a63ffb3 skb_push +EXPORT_SYMBOL vmlinux 0x4a6948de key_task_permission +EXPORT_SYMBOL vmlinux 0x4a780a9e mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x4a7ba57f tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a94fafe fsync_bdev EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4abbbb80 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x4a9e804f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x4abbc8a5 bio_free_pages EXPORT_SYMBOL vmlinux 0x4abd3171 textsearch_register -EXPORT_SYMBOL vmlinux 0x4ad5ea5e mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x4abfcc6a md_integrity_register EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x4af0876b free_netdev EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4b0bd5a7 phy_print_status -EXPORT_SYMBOL vmlinux 0x4b13fb19 can_nice -EXPORT_SYMBOL vmlinux 0x4b1efab0 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x4b3ec91d md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4af9d5c6 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x4b161237 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x4b1d6351 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b499d3c sock_wmalloc -EXPORT_SYMBOL vmlinux 0x4b5faca5 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x4b668f65 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x4ba5060a set_bh_page -EXPORT_SYMBOL vmlinux 0x4bc10d86 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x4bc98a6f inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x4bcaafea pci_reenable_device -EXPORT_SYMBOL vmlinux 0x4bdc218e blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x4b4f6f26 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x4b523b58 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x4b68c364 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x4b78892d devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x4b84a7cc dget_parent +EXPORT_SYMBOL vmlinux 0x4b888f81 param_get_ushort +EXPORT_SYMBOL vmlinux 0x4ba43539 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x4ba7c568 import_single_range +EXPORT_SYMBOL vmlinux 0x4bac426c security_path_mknod +EXPORT_SYMBOL vmlinux 0x4bb14b10 free_buffer_head +EXPORT_SYMBOL vmlinux 0x4bd411c9 netdev_get_by_index EXPORT_SYMBOL vmlinux 0x4be85a03 memweight EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bf4c486 tcp_filter EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 -EXPORT_SYMBOL vmlinux 0x4c0937d4 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x4c157bcb param_set_ulong +EXPORT_SYMBOL vmlinux 0x4c18d770 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4c1d870f tcp_md5_do_add EXPORT_SYMBOL vmlinux 0x4c208ba5 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x4c212419 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x4c2a1979 ethtool_aggregate_phy_stats EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr -EXPORT_SYMBOL vmlinux 0x4c3fa8e4 scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c4f11bd __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x4c5096df __kfree_skb -EXPORT_SYMBOL vmlinux 0x4c5c0e93 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x4c5c90aa free_netdev -EXPORT_SYMBOL vmlinux 0x4c6bcda3 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x4c805578 add_to_page_cache_lru -EXPORT_SYMBOL vmlinux 0x4c835f92 registered_fb -EXPORT_SYMBOL vmlinux 0x4ca2abb8 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x4ca783fb jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x4c55b290 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x4c5db26e __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x4c711385 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x4c8b2e53 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x4c9b55dd rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset -EXPORT_SYMBOL vmlinux 0x4cf1475a generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x4cf9946f tcp_poll -EXPORT_SYMBOL vmlinux 0x4d09e34e pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x4d0aa5d9 phy_stop +EXPORT_SYMBOL vmlinux 0x4cc2c0a1 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x4cccb6b1 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x4ce494b0 pci_find_bus +EXPORT_SYMBOL vmlinux 0x4cfb935c sk_capable EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d0e17db udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x4d10c4a9 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x4d159b97 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x4d201b8c pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x4d2bb808 register_framebuffer +EXPORT_SYMBOL vmlinux 0x4d1218da page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x4d179642 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x4d2343e5 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x4d2b5d88 sock_wmalloc EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d47b748 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x4d514485 xa_store -EXPORT_SYMBOL vmlinux 0x4d57040f udp_disconnect -EXPORT_SYMBOL vmlinux 0x4d5ef685 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x4d78540b truncate_pagecache -EXPORT_SYMBOL vmlinux 0x4d7894f8 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x4d869f7a tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x4d5f7797 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x4d746df6 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x4d7d5a64 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x4d8ebb53 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4db039fa tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x4dc9b661 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x4da7914c netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x4de30723 __put_user_ns +EXPORT_SYMBOL vmlinux 0x4dd82ec2 udp_poll +EXPORT_SYMBOL vmlinux 0x4de8b9ff input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x4de986d9 nd_device_unregister EXPORT_SYMBOL vmlinux 0x4dec6038 memscan EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4df87df4 padata_free_shell -EXPORT_SYMBOL vmlinux 0x4e01f8fb bioset_init +EXPORT_SYMBOL vmlinux 0x4dff7adf request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node -EXPORT_SYMBOL vmlinux 0x4e0fbfef sock_no_bind -EXPORT_SYMBOL vmlinux 0x4e147b6d d_instantiate_new -EXPORT_SYMBOL vmlinux 0x4e282cef pci_iounmap -EXPORT_SYMBOL vmlinux 0x4e2ca192 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0x4e2df901 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x4e10b476 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x4e21db79 flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0x4e2edbbc param_ops_uint +EXPORT_SYMBOL vmlinux 0x4e31355d netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e4832a4 __neigh_create +EXPORT_SYMBOL vmlinux 0x4e4eba19 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x4e4f9b1e skb_vlan_push +EXPORT_SYMBOL vmlinux 0x4e5133b0 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x4e513791 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder -EXPORT_SYMBOL vmlinux 0x4e6c4e97 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e6fdf06 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x4e882329 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x4e72b8a7 tls_client_hello_x509 +EXPORT_SYMBOL vmlinux 0x4e771f10 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x4e7b4847 fqdir_exit +EXPORT_SYMBOL vmlinux 0x4e8950ab alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x4e952862 d_invalidate EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb10a72 mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x4ec6af80 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x4eb4ede7 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x4eb76ef4 key_invalidate EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc -EXPORT_SYMBOL vmlinux 0x4ee9dbc9 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x4eedfa57 try_module_get -EXPORT_SYMBOL vmlinux 0x4ef9400b tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x4ef98074 kfree_skb_list_reason -EXPORT_SYMBOL vmlinux 0x4f057415 dev_mc_add +EXPORT_SYMBOL vmlinux 0x4f0ae3f3 iov_iter_xarray EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f24a389 zap_page_range_single -EXPORT_SYMBOL vmlinux 0x4f4fe079 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x4f54e6a8 proto_register -EXPORT_SYMBOL vmlinux 0x4f63fd63 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x4f7699dd pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x4f24210c rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x4f26a10d __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x4f34b3bf nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x4f5be47b snd_card_file_add EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free -EXPORT_SYMBOL vmlinux 0x4f95b6af ip_getsockopt -EXPORT_SYMBOL vmlinux 0x4fc1734c unregister_filesystem -EXPORT_SYMBOL vmlinux 0x4feca0bf vme_dma_request +EXPORT_SYMBOL vmlinux 0x4f93c6a4 skb_clone +EXPORT_SYMBOL vmlinux 0x4f9eaf7e ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x4fa4688e snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x4fb76e83 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4fe557d3 of_get_next_parent EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4ffc544b simple_rename EXPORT_SYMBOL vmlinux 0x4ffe23de regset_get_alloc EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x50109530 inode_query_iversion -EXPORT_SYMBOL vmlinux 0x5016cb12 filemap_get_folios_tag +EXPORT_SYMBOL vmlinux 0x500c0084 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x501d4b8a scsi_register_interface +EXPORT_SYMBOL vmlinux 0x502571b3 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x502913dd rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x50302153 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL vmlinux 0x503d9124 pid_task -EXPORT_SYMBOL vmlinux 0x5052893d netdev_err -EXPORT_SYMBOL vmlinux 0x505b62b7 dump_emit +EXPORT_SYMBOL vmlinux 0x503fcd26 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x504fd49c nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x50548dc3 udp_pre_connect EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x50697ea7 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x506ac7e0 snd_ctl_rename_id EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50885ecd __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x50892e9d mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508f6379 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x5090d302 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x508d80e7 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509af43c snd_register_device +EXPORT_SYMBOL vmlinux 0x509b12bf dst_alloc EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b4f502 pci_release_regions EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c458b4 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x50efc06c ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x50f0aaf6 handshake_req_alloc +EXPORT_SYMBOL vmlinux 0x50e3a213 mmc_get_card EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc -EXPORT_SYMBOL vmlinux 0x5106e8f9 truncate_setsize -EXPORT_SYMBOL vmlinux 0x51078fec arp_xmit -EXPORT_SYMBOL vmlinux 0x5117e7e5 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x512a04a0 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0x512ad1aa of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x51078af0 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x510daadc scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x51172fbc scsi_add_device EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock -EXPORT_SYMBOL vmlinux 0x515c814d get_watch_queue +EXPORT_SYMBOL vmlinux 0x515b5a75 __SetPageMovable EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x517dd32f unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x5183175c fs_lookup_param +EXPORT_SYMBOL vmlinux 0x516e2380 is_subdir +EXPORT_SYMBOL vmlinux 0x51816d17 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x5183f081 tcp_read_sock EXPORT_SYMBOL vmlinux 0x51841bda of_get_ddr_timings -EXPORT_SYMBOL vmlinux 0x5191071b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x51881acc __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x51a88c8b console_stop EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user -EXPORT_SYMBOL vmlinux 0x51a92db9 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x51bdb39f mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0x51ca42a0 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x51cde100 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x51d7bf6f vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x51e3efc0 inet_put_port +EXPORT_SYMBOL vmlinux 0x51afa8ae device_get_mac_address +EXPORT_SYMBOL vmlinux 0x51c3cc7b xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x51d5ba83 update_region +EXPORT_SYMBOL vmlinux 0x51e187e4 __mdiobus_write EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid -EXPORT_SYMBOL vmlinux 0x51e8bbfe scsi_host_busy -EXPORT_SYMBOL vmlinux 0x51eadfc1 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x51eaf038 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x520efca9 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x521f4f39 snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x5221f720 param_ops_charp EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0x5233bbed snd_dma_alloc_pages_fallback -EXPORT_SYMBOL vmlinux 0x523821f6 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x523afd54 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x523daad7 omap_rtc_power_off_program -EXPORT_SYMBOL vmlinux 0x5254a33e dev_trans_start -EXPORT_SYMBOL vmlinux 0x52584210 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x52416e22 phy_device_remove +EXPORT_SYMBOL vmlinux 0x524e8bb5 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x525b0917 sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0x52643b23 inet_frags_init -EXPORT_SYMBOL vmlinux 0x5266b4ba bprm_change_interp -EXPORT_SYMBOL vmlinux 0x5268676f snd_power_wait +EXPORT_SYMBOL vmlinux 0x5266ea27 scsi_target_resume EXPORT_SYMBOL vmlinux 0x526c3a6c jiffies -EXPORT_SYMBOL vmlinux 0x5270f801 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x5284c206 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x5271b7a9 param_get_uint EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x52985d4f dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x529f8dc8 md_update_sb -EXPORT_SYMBOL vmlinux 0x52a7824d flow_rule_match_l2tpv3 -EXPORT_SYMBOL vmlinux 0x52c8d1ac jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x529c8c30 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x52a4433f sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x52b8bbf0 tty_port_close +EXPORT_SYMBOL vmlinux 0x52b97906 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x52c64415 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x52cd9e10 filemap_check_errors EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52d97667 bitmap_to_arr64 +EXPORT_SYMBOL vmlinux 0x52df57a1 pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL vmlinux 0x52e67b55 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x52efbd7a key_invalidate +EXPORT_SYMBOL vmlinux 0x52f0557f mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start -EXPORT_SYMBOL vmlinux 0x52f6a003 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x530651aa generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x53002e5a new_inode +EXPORT_SYMBOL vmlinux 0x5302f0e9 ipv4_specific EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53151ce2 __traceiter_kmem_cache_free EXPORT_SYMBOL vmlinux 0x5317deaa of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x532b139c input_flush_device +EXPORT_SYMBOL vmlinux 0x532a585e blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533ce644 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x5348a9cb ppp_unit_number EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x535bc248 i2c_add_adapter -EXPORT_SYMBOL vmlinux 0x5360356f __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x535576d2 snd_power_wait +EXPORT_SYMBOL vmlinux 0x535703be pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x53690b41 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x53825546 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x539a2105 send_sig_info -EXPORT_SYMBOL vmlinux 0x53a5d2d3 file_modified -EXPORT_SYMBOL vmlinux 0x53be83c3 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x53c18c43 mntget -EXPORT_SYMBOL vmlinux 0x53d26e24 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x53d75efe twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x53ddde42 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x537c349d param_ops_bool +EXPORT_SYMBOL vmlinux 0x538862af debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x5388edc9 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x53ac9589 current_in_userns +EXPORT_SYMBOL vmlinux 0x53cc121a amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x53d9ca04 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x53ee7b54 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings -EXPORT_SYMBOL vmlinux 0x5415de01 bdi_register -EXPORT_SYMBOL vmlinux 0x5431e0c1 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x5439fb19 sget_fc +EXPORT_SYMBOL vmlinux 0x54030275 pci_save_state +EXPORT_SYMBOL vmlinux 0x54040f3d audit_log_start +EXPORT_SYMBOL vmlinux 0x540c70f9 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x541362f9 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x5416177d register_cdrom +EXPORT_SYMBOL vmlinux 0x54222780 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x543c6f21 neigh_event_ns EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5444ac26 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x544577f5 skb_copy_header EXPORT_SYMBOL vmlinux 0x544735a5 devm_clk_put -EXPORT_SYMBOL vmlinux 0x544aedd1 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x544bc005 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x548475ee rproc_detach -EXPORT_SYMBOL vmlinux 0x549e1c1c input_release_device -EXPORT_SYMBOL vmlinux 0x54a402d6 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x545f3ac6 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x54663139 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x546d8fd4 invalidate_disk +EXPORT_SYMBOL vmlinux 0x548ad464 dump_skip_to +EXPORT_SYMBOL vmlinux 0x548af222 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x548e4942 generic_fillattr +EXPORT_SYMBOL vmlinux 0x5493f1bb generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x54a65407 mmc_alloc_host EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value -EXPORT_SYMBOL vmlinux 0x54bc0146 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x54bc3914 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x54b6ebec of_find_net_device_by_node EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54d98a0f inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x54dcdc39 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x54e69a84 xfrm_state_delete EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e7c608 omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x54f65b5a proto_register +EXPORT_SYMBOL vmlinux 0x54f6d862 phy_read_paged EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5509bc6b key_move -EXPORT_SYMBOL vmlinux 0x5514d0f5 tty_port_put EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5532ce28 __lock_buffer +EXPORT_SYMBOL vmlinux 0x551c7e0f input_unregister_handler +EXPORT_SYMBOL vmlinux 0x5542ea6e devm_request_resource +EXPORT_SYMBOL vmlinux 0x55462195 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x5547a6f7 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554d5e6a genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x5550758a register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x556dcfc9 make_bad_inode +EXPORT_SYMBOL vmlinux 0x55736bfe skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x557a4030 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x5587bc3c __mdiobus_read EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55934ba7 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x559c28ac free_buffer_head -EXPORT_SYMBOL vmlinux 0x559d7fdc rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x559e5fb5 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x55e2e35b input_allocate_device +EXPORT_SYMBOL vmlinux 0x55951661 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x559bb2b5 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x55a52f42 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x55a56bd4 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x55a665b2 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x55b89c13 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x55deb7a5 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55eb20b2 mmc_sw_reset EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x560a54c2 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x5623a86b pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x562758dd nd_btt_version -EXPORT_SYMBOL vmlinux 0x562b0a72 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x562fc832 sg_miter_next -EXPORT_SYMBOL vmlinux 0x5630ff9b finalize_exec +EXPORT_SYMBOL vmlinux 0x55ec229f dev_activate +EXPORT_SYMBOL vmlinux 0x560b70a7 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x560fcfb8 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x56109eac __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x561421ca show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x5624e330 get_inode_acl +EXPORT_SYMBOL vmlinux 0x5632e353 md_wakeup_thread EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x564aa792 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x5658745a filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x56442b8f ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x565e1472 d_genocide +EXPORT_SYMBOL vmlinux 0x5660ef73 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x56624588 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x56682b67 generic_permission +EXPORT_SYMBOL vmlinux 0x5675168d i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56922619 migrate_folio -EXPORT_SYMBOL vmlinux 0x56970156 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x56ad61f1 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x568b79f8 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x56b23eb1 key_type_keyring EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cdc041 tso_build_data -EXPORT_SYMBOL vmlinux 0x56d73214 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x56fb4008 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x57423eff vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x56db9b19 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x56e03440 input_match_device_id +EXPORT_SYMBOL vmlinux 0x56e31d8e copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x56ed9daf tty_port_hangup +EXPORT_SYMBOL vmlinux 0x570e3961 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x5710ddf5 follow_pfn +EXPORT_SYMBOL vmlinux 0x571c17df qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x57208814 km_new_mapping +EXPORT_SYMBOL vmlinux 0x572dd9b9 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x57343f05 xp_dma_unmap EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574f7642 mdiobus_scan_c22 EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x576567f8 putname +EXPORT_SYMBOL vmlinux 0x5760a176 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x5761ac59 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x57636da0 follow_up EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x576e81b6 dma_find_channel -EXPORT_SYMBOL vmlinux 0x579163db clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x57984d8b xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x579c14d5 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x57756451 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x577c50ee pagecache_get_page +EXPORT_SYMBOL vmlinux 0x577da49e ethtool_aggregate_ctrl_stats EXPORT_SYMBOL vmlinux 0x57c64edd tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x57ca275c trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x57ce3dc7 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x57c6c7c2 phy_free_interrupt EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57dba886 complete_request_key EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57e6eace path_has_submounts EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57f4c329 get_vm_area +EXPORT_SYMBOL vmlinux 0x580a2efd snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x580f79c3 flush_dcache_page EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581cde4e up -EXPORT_SYMBOL vmlinux 0x581de392 take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x582377e0 remove_arg_zero EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x5831d7bb simple_nosetlease -EXPORT_SYMBOL vmlinux 0x5832acbe rawnand_sw_hamming_cleanup -EXPORT_SYMBOL vmlinux 0x58331b1c mmc_can_erase EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5864cad2 dm_get_device -EXPORT_SYMBOL vmlinux 0x586b2b0f add_watch_to_object -EXPORT_SYMBOL vmlinux 0x58707b22 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x587729e3 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x583f6d3f kernel_listen +EXPORT_SYMBOL vmlinux 0x58408bb0 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x58448cb6 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x586fa85f __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587d3eca inet6_ioctl +EXPORT_SYMBOL vmlinux 0x587f800d ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x58a0a600 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x58aa6d1a pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x589afdb1 __destroy_inode +EXPORT_SYMBOL vmlinux 0x58a17434 blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b66d16 pci_map_rom +EXPORT_SYMBOL vmlinux 0x58b6c824 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58bc94ee param_array_ops -EXPORT_SYMBOL vmlinux 0x58bde937 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x58c16d7c dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x58cb1f7a tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x58df70be netdev_err EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e3d2ed xfrm_state_add -EXPORT_SYMBOL vmlinux 0x58ee06ce uart_get_divisor +EXPORT_SYMBOL vmlinux 0x58ea118c dcb_setrewr +EXPORT_SYMBOL vmlinux 0x58efa0a7 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x59056aed tls_server_hello_x509 +EXPORT_SYMBOL vmlinux 0x58fe12fb of_find_property +EXPORT_SYMBOL vmlinux 0x5905a859 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x590b299e mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x590fa179 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x5926d821 __nla_put_64bit EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x59427f03 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x594b4493 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x593e762c tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x59429469 snd_timer_global_free EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 -EXPORT_SYMBOL vmlinux 0x5956e5a1 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x59733a0d rawnand_sw_bch_cleanup -EXPORT_SYMBOL vmlinux 0x59750884 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x597df5c4 kernel_bind -EXPORT_SYMBOL vmlinux 0x59889210 snd_pcm_mmap_data -EXPORT_SYMBOL vmlinux 0x598b7ab5 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x595990ed genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x596076c8 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x598b3dc6 setattr_prepare +EXPORT_SYMBOL vmlinux 0x59973a27 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59bf1ffb kthread_bind EXPORT_SYMBOL vmlinux 0x59cf0b3b zstd_compress_bound -EXPORT_SYMBOL vmlinux 0x59d11801 mdio_device_register EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area -EXPORT_SYMBOL vmlinux 0x59d45641 dev_get_stats -EXPORT_SYMBOL vmlinux 0x59dae46c blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x59d8df8b genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x59da1492 mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 -EXPORT_SYMBOL vmlinux 0x59f4a906 __fs_parse -EXPORT_SYMBOL vmlinux 0x59fc222b __phy_resume +EXPORT_SYMBOL vmlinux 0x59e6d199 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x59e7f3b1 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x5a2eadbd phy_connect_direct -EXPORT_SYMBOL vmlinux 0x5a3988b9 vme_bus_type +EXPORT_SYMBOL vmlinux 0x5a20d46e block_dirty_folio +EXPORT_SYMBOL vmlinux 0x5a21bc53 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x5a322e46 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x5a497945 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x5a4b8730 pci_scan_bus EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a813dd6 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x5a825176 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x5a8b3b8d unregister_cdrom -EXPORT_SYMBOL vmlinux 0x5a8d0564 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x5a500de8 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x5a517928 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x5a6f9953 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x5a846dba blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x5a8dcc03 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x5a8e66e5 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5aa74b72 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x5aad5433 module_refcount -EXPORT_SYMBOL vmlinux 0x5ac303e5 d_delete -EXPORT_SYMBOL vmlinux 0x5ac6b5ca seq_hex_dump -EXPORT_SYMBOL vmlinux 0x5acbf02e bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x5a9a331b dev_alloc_name +EXPORT_SYMBOL vmlinux 0x5aa8dddd dquot_get_state +EXPORT_SYMBOL vmlinux 0x5ab2cd97 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x5ac41d9f __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x5ad3b2bf of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x5add4366 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x5ae0d5dd sock_create EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae2f365 mq_change_real_num_tx -EXPORT_SYMBOL vmlinux 0x5aea6228 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x5b027846 address_space_init_once +EXPORT_SYMBOL vmlinux 0x5aeeb1c7 key_put EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b05bde5 scsi_device_resume EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0x5b0eeb10 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL vmlinux 0x5b407a83 dqget +EXPORT_SYMBOL vmlinux 0x5b198b08 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x5b48f5a3 stop_tty EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup -EXPORT_SYMBOL vmlinux 0x5b6d87b5 brioctl_set -EXPORT_SYMBOL vmlinux 0x5b75524c ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x5b9cbd11 phy_device_register -EXPORT_SYMBOL vmlinux 0x5ba41565 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x5bb8fffd udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x5bbab830 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x5b609fc2 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5b9c19a9 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x5ba52c26 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x5bad67fa __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x5bb81a07 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x5bbc8188 tcp_conn_request EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x5bc38570 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x5bce3d5f tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd75d82 dquot_file_open EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval -EXPORT_SYMBOL vmlinux 0x5bdd667f dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x5be350ad rtc_add_group +EXPORT_SYMBOL vmlinux 0x5be5eb17 snd_pcm_stop EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf156a0 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x5bf2100b cqhci_resume -EXPORT_SYMBOL vmlinux 0x5bf3844f nf_getsockopt -EXPORT_SYMBOL vmlinux 0x5c0400a7 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x5c1d3bc2 sync_filesystem -EXPORT_SYMBOL vmlinux 0x5c259db2 fb_io_read +EXPORT_SYMBOL vmlinux 0x5bfc0bd7 thaw_bdev +EXPORT_SYMBOL vmlinux 0x5bfd5313 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x5c00df2e generic_setlease +EXPORT_SYMBOL vmlinux 0x5c09c33c try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5c1113db iget5_locked +EXPORT_SYMBOL vmlinux 0x5c1e2ab7 vfs_parse_fs_param EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c3fb530 register_mtd_chip_driver -EXPORT_SYMBOL vmlinux 0x5c404f05 skb_eth_push -EXPORT_SYMBOL vmlinux 0x5c6022b0 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x5c6a851e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5c40f84c of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x5c61c095 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5c68cac5 brioctl_set +EXPORT_SYMBOL vmlinux 0x5c71211a snd_ctl_register_ioctl EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c7aca1a mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 -EXPORT_SYMBOL vmlinux 0x5c807a05 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0x5c87a464 tls_client_hello_anon EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id -EXPORT_SYMBOL vmlinux 0x5ca2b7b7 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x5cb1b97a pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x5cb9ffcf snd_timer_close +EXPORT_SYMBOL vmlinux 0x5ca902e1 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x5cba9d13 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le -EXPORT_SYMBOL vmlinux 0x5cc9275a key_type_keyring +EXPORT_SYMBOL vmlinux 0x5ccac8bd udp_gro_complete +EXPORT_SYMBOL vmlinux 0x5ccd050c rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x5cdc7c25 blk_start_plug -EXPORT_SYMBOL vmlinux 0x5cdd4fe3 input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cfc06ce elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x5d1251cb pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x5d17d11f of_get_mac_address_nvmem -EXPORT_SYMBOL vmlinux 0x5d2d5809 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x5d1536c0 handshake_req_alloc +EXPORT_SYMBOL vmlinux 0x5d1abe26 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5d2793f3 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d486e11 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5763f9 tty_register_driver -EXPORT_SYMBOL vmlinux 0x5d5796ca mii_check_link -EXPORT_SYMBOL vmlinux 0x5d681237 folio_mark_accessed -EXPORT_SYMBOL vmlinux 0x5d6849e4 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x5d6e5968 dev_load -EXPORT_SYMBOL vmlinux 0x5d87d073 generic_setlease -EXPORT_SYMBOL vmlinux 0x5d881657 audit_log_start -EXPORT_SYMBOL vmlinux 0x5dbe733a readahead_expand -EXPORT_SYMBOL vmlinux 0x5dcd98df cfb_copyarea +EXPORT_SYMBOL vmlinux 0x5d5be112 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x5d7886e0 registered_fb +EXPORT_SYMBOL vmlinux 0x5d7bd60b pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x5d8bef55 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x5db8f76c twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x5dbe7287 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x5dcc50d4 tcp_sync_mss EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache -EXPORT_SYMBOL vmlinux 0x5dd337d5 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x5de026ef dup_iter -EXPORT_SYMBOL vmlinux 0x5df09114 blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0x5df74885 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x5dd6bd01 register_framebuffer +EXPORT_SYMBOL vmlinux 0x5dda61f1 page_get_link +EXPORT_SYMBOL vmlinux 0x5e0195af unregister_qdisc EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e187b42 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x5e1c2d40 napi_disable -EXPORT_SYMBOL vmlinux 0x5e212d62 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x5e2b3979 fc_mount +EXPORT_SYMBOL vmlinux 0x5e34a418 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e48cbb2 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x5e518dfc snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x5e46ee98 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x5e504e29 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x5e5162ef inet_del_offload +EXPORT_SYMBOL vmlinux 0x5e550f3d sock_init_data_uid EXPORT_SYMBOL vmlinux 0x5e5ffd4e freezer_active -EXPORT_SYMBOL vmlinux 0x5e6e5350 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x5e674d25 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x5e6a589a __skb_recv_udp EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping -EXPORT_SYMBOL vmlinux 0x5e7ca83a i2c_verify_client EXPORT_SYMBOL vmlinux 0x5e7e03a9 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL vmlinux 0x5e805545 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x5e8afe4d device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0x5e8bb84f rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x5e94fd92 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e99ca4e mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x5ea00d70 __of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x5ea20648 snd_pcm_hw_refine EXPORT_SYMBOL vmlinux 0x5eaaeea1 cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0x5eac7c8a ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x5eac9ad5 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x5ebaa63b tcp_make_synack -EXPORT_SYMBOL vmlinux 0x5ec1640f unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x5ec4a4af mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ecb4b0b fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed1f0ba generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5ed847cf jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edc2ce2 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x5edb713c fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x5efbdd62 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0x5f091e39 unregister_nls EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f199b65 module_layout -EXPORT_SYMBOL vmlinux 0x5f1eef6f skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x5f2467ec __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x5f25c699 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x5f0fa359 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f2ed387 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x5f308fdb xsk_tx_completed EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f3b9590 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x5f4f5677 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f55745f xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x5f699347 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f721861 mii_link_ok EXPORT_SYMBOL vmlinux 0x5f754e5a memset -EXPORT_SYMBOL vmlinux 0x5f8d5036 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x5fa481ed mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x5f804a9a xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x5f87f801 phy_device_register +EXPORT_SYMBOL vmlinux 0x5f9a081d netdev_emerg +EXPORT_SYMBOL vmlinux 0x5f9eeab0 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x5fa1f712 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fb6519b dcache_dir_open -EXPORT_SYMBOL vmlinux 0x5fc13597 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x5fc1fac5 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x5fd5484a __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5fb0e647 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x5fb110c3 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x5fd69a73 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x5fdd0ff0 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x5fe61144 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io -EXPORT_SYMBOL vmlinux 0x5ff2d7fa alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x5ffdb8ba d_rehash -EXPORT_SYMBOL vmlinux 0x5ffe2c80 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x5ffc0909 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x60017d1c ethtool_aggregate_mac_stats EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x6005dfef netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6010e84f phy_init_eee +EXPORT_SYMBOL vmlinux 0x6008adcb tty_unregister_device +EXPORT_SYMBOL vmlinux 0x600d28f9 snd_card_register +EXPORT_SYMBOL vmlinux 0x600e874b vm_map_ram +EXPORT_SYMBOL vmlinux 0x6014a193 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x60188700 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x601c1df0 input_close_device EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602a9ea0 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x60277b86 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x602b8d82 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x602bcd99 submit_bio_noacct EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x6030bc8e skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6036c839 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x6059be3c xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x6067f1f3 inet_ioctl -EXPORT_SYMBOL vmlinux 0x6090c8f1 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x60766b4f kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x6086fbde __alloc_skb +EXPORT_SYMBOL vmlinux 0x608eab03 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609ac345 netdev_reset_tc EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60ac9322 netlink_set_err -EXPORT_SYMBOL vmlinux 0x60ae4e6c md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x60b62a41 iov_iter_init EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 -EXPORT_SYMBOL vmlinux 0x60c63b64 pin_user_pages +EXPORT_SYMBOL vmlinux 0x60ca50f3 flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60fdad29 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x6122f37f tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x60da1c9e tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x60e10203 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x60eb623e pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x60f5faa5 simple_empty +EXPORT_SYMBOL vmlinux 0x60f681ae netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x60fff347 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x611107bd eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x61247f1c tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x613730bc from_kuid -EXPORT_SYMBOL vmlinux 0x61394afd seq_escape_mem -EXPORT_SYMBOL vmlinux 0x6142bded zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x613913a7 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x613c0ba3 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x614adb70 serio_rescan +EXPORT_SYMBOL vmlinux 0x6150fdc2 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x615204e6 register_sysctl EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x61650c81 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x6170937a netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x617749fc netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x617f6e58 set_nlink -EXPORT_SYMBOL vmlinux 0x6180a782 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x618b3d3b inc_node_state -EXPORT_SYMBOL vmlinux 0x619bdd6f dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x619be50d pci_save_state -EXPORT_SYMBOL vmlinux 0x61b3e487 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x615f78e8 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x61698963 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x617312fe f_setown +EXPORT_SYMBOL vmlinux 0x6176da42 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x619a2def phy_device_free EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61be8d18 file_path -EXPORT_SYMBOL vmlinux 0x61c23b0c d_make_root -EXPORT_SYMBOL vmlinux 0x61cba43c ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x61c8a714 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x61cc112d nand_create_bbt -EXPORT_SYMBOL vmlinux 0x61d31b00 bio_split -EXPORT_SYMBOL vmlinux 0x61dd2126 dump_skip +EXPORT_SYMBOL vmlinux 0x61e25ea9 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f0ac7f __dev_queue_xmit EXPORT_SYMBOL vmlinux 0x61fb5191 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x62095ff7 dm_io +EXPORT_SYMBOL vmlinux 0x620dac88 tegra_dfll_runtime_resume EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x62186e29 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x6218982b i2c_clients_command EXPORT_SYMBOL vmlinux 0x6218be2d mt_find EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x622ac6d8 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x623a85cb kernel_read -EXPORT_SYMBOL vmlinux 0x624179c7 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x626c21e7 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x623d915e netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x626a5258 vmalloc_to_page EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62777249 dev_uc_unsync EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x6294c94d phy_attach_direct -EXPORT_SYMBOL vmlinux 0x62a4b9a3 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x62a97c83 snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x62bb7b47 tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0x62c4ae5b __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x62f118b6 fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x62f52ea8 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x62df8407 snd_timer_continue +EXPORT_SYMBOL vmlinux 0x62eed4cf phy_config_aneg EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x6307ca62 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x62f77ab7 km_report +EXPORT_SYMBOL vmlinux 0x630822b5 skb_condense +EXPORT_SYMBOL vmlinux 0x630bc2a9 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0x6310a826 qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0x6314668b genl_register_family EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x6319d1ac __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x632c34c7 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x63372c87 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x633c1476 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x631d0ca4 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x632254f6 cdev_device_add +EXPORT_SYMBOL vmlinux 0x632897ff zpool_register_driver +EXPORT_SYMBOL vmlinux 0x6329c91f configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x632fe6a1 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x6343a695 netif_inherit_tso_max EXPORT_SYMBOL vmlinux 0x6351ac42 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0x63654e86 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x635dc3e3 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x6370d31d phy_disconnect EXPORT_SYMBOL vmlinux 0x637493f3 __wake_up -EXPORT_SYMBOL vmlinux 0x63798606 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x637ac60c nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x637fa479 md_handle_request +EXPORT_SYMBOL vmlinux 0x638ab325 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x639c04aa ip6_frag_init EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63ab4b94 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x63ac547c jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x63aec3ed fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x63b5275c snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL vmlinux 0x63b97213 finish_open -EXPORT_SYMBOL vmlinux 0x63df8b23 freeze_bdev -EXPORT_SYMBOL vmlinux 0x63e2e81d set_cached_acl -EXPORT_SYMBOL vmlinux 0x63ea3eb9 tcp_read_skb +EXPORT_SYMBOL vmlinux 0x63a9cbc1 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x63bfc408 xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x63f29eda mtree_alloc_range -EXPORT_SYMBOL vmlinux 0x63f69f0a pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x640dc514 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x63f9c2eb ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x63fea56c of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641a06c6 kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0x64351bb1 pci_clear_master -EXPORT_SYMBOL vmlinux 0x644e15ae ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x6421a1df framebuffer_release +EXPORT_SYMBOL vmlinux 0x6421efd6 rproc_free +EXPORT_SYMBOL vmlinux 0x6441025c flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x64462666 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x6475850f rproc_free -EXPORT_SYMBOL vmlinux 0x6477e4b4 block_page_mkwrite EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x647f8752 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0x648af5c4 of_get_compatible_child EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64a0721e disk_check_media_change -EXPORT_SYMBOL vmlinux 0x64a98564 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64aa5d1a bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x64b1d448 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x64b32e31 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x64b64b2b snd_card_free_when_closed EXPORT_SYMBOL vmlinux 0x64cb1b48 dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x64e73a50 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x64f88e96 pci_bus_type -EXPORT_SYMBOL vmlinux 0x64ff7355 of_phy_is_fixed_link -EXPORT_SYMBOL vmlinux 0x64ffc97f set_page_dirty -EXPORT_SYMBOL vmlinux 0x650a8f66 security_sk_clone -EXPORT_SYMBOL vmlinux 0x650b757c phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x64d6bb80 pci_get_device +EXPORT_SYMBOL vmlinux 0x64de8a88 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL vmlinux 0x6512a7be ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652d7d3a udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x65319ec7 kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x6531fb67 udp_set_csum EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6561a924 snd_card_register -EXPORT_SYMBOL vmlinux 0x6561bee9 pci_free_irq -EXPORT_SYMBOL vmlinux 0x65625dbd netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x65639d40 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x6568e409 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x655ed8f9 sock_from_file EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x65875478 write_inode_now EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658fd121 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x659a4ccb of_device_unregister EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65ac120f nf_log_unregister -EXPORT_SYMBOL vmlinux 0x65b49763 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x65ad2f1f qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x65aef855 scsi_host_get +EXPORT_SYMBOL vmlinux 0x65b3ded2 dquot_quota_on EXPORT_SYMBOL vmlinux 0x65b94c08 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x65d04be5 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x65b95dab jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x65c2dc23 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x65d12898 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end -EXPORT_SYMBOL vmlinux 0x65e06403 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x65e96dfd fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0x65f2b061 init_special_inode -EXPORT_SYMBOL vmlinux 0x65f36443 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x65f70601 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x660a990f dquot_acquire -EXPORT_SYMBOL vmlinux 0x661a90ec prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x663177d3 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x663591fd jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x6642c249 input_open_device -EXPORT_SYMBOL vmlinux 0x665a7fed dma_set_mask +EXPORT_SYMBOL vmlinux 0x65e12adc jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x65f49ea0 param_set_hexint +EXPORT_SYMBOL vmlinux 0x66183eea param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x663870d1 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x663c4d34 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x665bc606 register_md_personality EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel -EXPORT_SYMBOL vmlinux 0x665e300f elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x665fd3b5 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x66609d19 tcp_child_process EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x667327d4 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x666aae7f dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667a242e blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x667b45f8 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x6691aa4a tls_server_hello_psk -EXPORT_SYMBOL vmlinux 0x669489d9 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x66950de9 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x66954ee9 tcf_idr_search EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args +EXPORT_SYMBOL vmlinux 0x66ad8ae0 netif_receive_skb EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x66baa8b1 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x66d2582c ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x66b392a5 configfs_register_group EXPORT_SYMBOL vmlinux 0x66d2c7e4 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x66d463df vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x66dd49a4 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x66e14023 mipi_dsi_compression_mode EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit +EXPORT_SYMBOL vmlinux 0x66f2f7b4 km_policy_notify EXPORT_SYMBOL vmlinux 0x66fbd581 dma_fence_set_deadline -EXPORT_SYMBOL vmlinux 0x670fbc72 snd_timer_stop -EXPORT_SYMBOL vmlinux 0x6716c82a fget_raw -EXPORT_SYMBOL vmlinux 0x67229dc4 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x672766d1 fb_show_logo -EXPORT_SYMBOL vmlinux 0x673312b2 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x67363348 __mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x66fe4aa6 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x6720b992 nf_ct_attach EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67420106 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0x6742746e config_group_init EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x675a3001 param_ops_long +EXPORT_SYMBOL vmlinux 0x67521059 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x67551b13 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x6757bdc8 mdio_find_bus EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit -EXPORT_SYMBOL vmlinux 0x676dc263 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x6778f8da seq_bprintf +EXPORT_SYMBOL vmlinux 0x6782d004 ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x67862794 kset_unregister -EXPORT_SYMBOL vmlinux 0x6789737f mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67964acc no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x679f1b2b dm_kobject_release +EXPORT_SYMBOL vmlinux 0x6794b4dc __alloc_pages EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67bb6fcc skb_store_bits -EXPORT_SYMBOL vmlinux 0x67d7f73a invalidate_disk -EXPORT_SYMBOL vmlinux 0x67e179c5 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x67be7fb6 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x67c3c798 mdiobus_c45_read_nested +EXPORT_SYMBOL vmlinux 0x67c97281 setup_new_exec +EXPORT_SYMBOL vmlinux 0x67d367b3 scsi_device_put +EXPORT_SYMBOL vmlinux 0x67e7bff6 freeze_bdev EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x680332ea pci_assign_resource -EXPORT_SYMBOL vmlinux 0x6805bae2 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x68088060 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0x6819c88f netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x6825fa82 tcp_connect -EXPORT_SYMBOL vmlinux 0x683ba3ea vfs_llseek -EXPORT_SYMBOL vmlinux 0x685476c0 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x68680b34 d_path -EXPORT_SYMBOL vmlinux 0x686d20d6 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x67f55465 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x6801cb61 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x682362bf neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x68238579 devm_memunmap +EXPORT_SYMBOL vmlinux 0x682ab8b3 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x6837bcf6 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x68384c58 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x684c2584 may_umount_tree +EXPORT_SYMBOL vmlinux 0x68577a29 generic_update_time +EXPORT_SYMBOL vmlinux 0x6859fe47 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x6866aec5 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x6878efd1 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x6892e60f dev_deactivate -EXPORT_SYMBOL vmlinux 0x68961031 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x6884d3c9 udp_set_csum +EXPORT_SYMBOL vmlinux 0x688d9c65 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x68955461 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x68974248 backlight_device_register EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL vmlinux 0x68b0d05c unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x68d5d628 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x68bf8fa7 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x68c74689 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x68cf9d82 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x68d7edd9 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL vmlinux 0x68dcca7a pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x68f33689 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x68f58a09 of_range_to_resource EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x69006e43 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x69068084 kernel_write -EXPORT_SYMBOL vmlinux 0x690f1374 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6909e649 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x691402f4 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x691538e2 dcb_setapp EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x692cf339 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x693ec1a3 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x69477015 inc_nlink +EXPORT_SYMBOL vmlinux 0x694b47a9 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x6950f733 redraw_screen +EXPORT_SYMBOL vmlinux 0x69552f9a neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x6956a1ff xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x695bb550 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x6964ab58 vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6966dd89 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x696cddb7 ilookup5 -EXPORT_SYMBOL vmlinux 0x696f28e2 mdio_driver_register -EXPORT_SYMBOL vmlinux 0x696f4e59 vfs_get_tree EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and -EXPORT_SYMBOL vmlinux 0x69aa4901 follow_down_one -EXPORT_SYMBOL vmlinux 0x69b18bcd configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x69b1c867 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x69bc9b99 keyring_clear -EXPORT_SYMBOL vmlinux 0x69d80442 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x697c5bf6 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x697de0dc filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x69854e22 bio_add_page +EXPORT_SYMBOL vmlinux 0x69a337a9 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x69ab3d39 __of_mdiobus_register EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e28e70 snd_timer_global_register EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x69e8a1f5 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x69f2a59a seq_open +EXPORT_SYMBOL vmlinux 0x69f9e320 blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x6a02c7e1 dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a099a72 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x6a0a39b6 skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x6a2089ab inet_frag_find -EXPORT_SYMBOL vmlinux 0x6a231864 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x6a4c4eaf scsi_done_direct +EXPORT_SYMBOL vmlinux 0x6a2f821a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x6a32067c dump_align +EXPORT_SYMBOL vmlinux 0x6a36811b ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a660c06 invalidate_bdev EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a729e14 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x6a7b82e1 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x6a8429a9 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x6a79ec84 rproc_add +EXPORT_SYMBOL vmlinux 0x6a8059c2 do_clone_file_range EXPORT_SYMBOL vmlinux 0x6a8831e0 jiffies_64 -EXPORT_SYMBOL vmlinux 0x6a88ff9d mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0x6a915077 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x6a9292df dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x6ab45b21 mdiobb_read_c45 -EXPORT_SYMBOL vmlinux 0x6ac0030d mount_single -EXPORT_SYMBOL vmlinux 0x6ac02dfb genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x6ac1db8a dev_lstats_read +EXPORT_SYMBOL vmlinux 0x6aa48ac1 dquot_disable +EXPORT_SYMBOL vmlinux 0x6ab1373e configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x6acc6ce3 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x6acdf245 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x6ad69f99 __skb_ext_del EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae58e40 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x6ae3e750 block_write_full_page +EXPORT_SYMBOL vmlinux 0x6ae7aac8 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6af7b21a packing -EXPORT_SYMBOL vmlinux 0x6b036172 bio_free_pages +EXPORT_SYMBOL vmlinux 0x6af84f0c put_cmsg +EXPORT_SYMBOL vmlinux 0x6b155297 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x6b242d46 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x6b25ee44 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b49276b dmam_alloc_attrs EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x6b63535e netdev_pick_tx -EXPORT_SYMBOL vmlinux 0x6b780e0f tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x6b62d81a pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x6b74997a __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8b80b2 mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6b978cf9 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x6bb2835b register_sound_mixer EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x6bb9bdc1 find_inode_nowait EXPORT_SYMBOL vmlinux 0x6bc1769a __nla_put EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd89b8e of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x6be09cd7 drop_reasons_by_subsys -EXPORT_SYMBOL vmlinux 0x6be1688f nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x6be62f46 __bh_read -EXPORT_SYMBOL vmlinux 0x6bea022d d_genocide -EXPORT_SYMBOL vmlinux 0x6beea8d0 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x6bf54464 seq_release_private EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x6c041149 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x6c15d2df snd_jack_add_new_kctl -EXPORT_SYMBOL vmlinux 0x6c15df38 security_path_mkdir EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn -EXPORT_SYMBOL vmlinux 0x6c5852f2 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x6c2776e6 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x6c2f6bd4 cpu_tlb +EXPORT_SYMBOL vmlinux 0x6c37b534 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x6c49fb94 ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c644c9f fib_notifier_ops_unregister EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c819153 devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0x6c8547d8 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x6c86ace2 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x6c9422a8 netif_set_tso_max_segs -EXPORT_SYMBOL vmlinux 0x6c99ce26 tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x6c9a3f26 netif_tx_lock -EXPORT_SYMBOL vmlinux 0x6c9d25fd iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x6ca4e536 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x6ca61773 snd_jack_set_parent -EXPORT_SYMBOL vmlinux 0x6cb15ed0 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x6ca548e9 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cbe42aa path_is_under -EXPORT_SYMBOL vmlinux 0x6cbf518c jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x6cbfcdfa rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x6cc5ce7d tls_client_hello_x509 -EXPORT_SYMBOL vmlinux 0x6cc7be26 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x6cec5584 would_dump +EXPORT_SYMBOL vmlinux 0x6cb49cca phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6ccce51d input_grab_device +EXPORT_SYMBOL vmlinux 0x6cd5eb41 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf12f84 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x6d0fb9da dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x6cf76f35 con_is_visible +EXPORT_SYMBOL vmlinux 0x6d032423 __phy_resume +EXPORT_SYMBOL vmlinux 0x6d12458f filemap_fault EXPORT_SYMBOL vmlinux 0x6d182722 snd_device_new -EXPORT_SYMBOL vmlinux 0x6d22c172 flush_dcache_folio EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d428f32 give_up_console -EXPORT_SYMBOL vmlinux 0x6d465a89 bdi_alloc -EXPORT_SYMBOL vmlinux 0x6d6dd618 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x6d3ffbc2 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x6d409ba9 tty_write_room +EXPORT_SYMBOL vmlinux 0x6d4ce97d cdev_del +EXPORT_SYMBOL vmlinux 0x6d5008b0 i2c_get_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x6d6841ba snd_timer_start +EXPORT_SYMBOL vmlinux 0x6d74e7be mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x6d759447 __kmap_local_page_prot EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d84ac7f ptp_clock_event -EXPORT_SYMBOL vmlinux 0x6d8da8b9 nand_scan_with_ids -EXPORT_SYMBOL vmlinux 0x6d928cc2 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x6d9377dc nf_log_packet -EXPORT_SYMBOL vmlinux 0x6db5b045 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6d8dc2ac of_translate_dma_region +EXPORT_SYMBOL vmlinux 0x6daca054 security_path_mkdir EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dc470e7 fb_find_mode +EXPORT_SYMBOL vmlinux 0x6dc482a5 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x6dcdbffe nand_ecc_get_on_die_hw_engine EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd02b35 netif_device_detach -EXPORT_SYMBOL vmlinux 0x6dd190f9 mtd_concat_destroy -EXPORT_SYMBOL vmlinux 0x6dd45f15 netlink_net_capable EXPORT_SYMBOL vmlinux 0x6de724c5 elm_config -EXPORT_SYMBOL vmlinux 0x6dec1d1e mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x6de82140 pfifo_fast_ops EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df22519 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x6df41a82 bpf_link_put +EXPORT_SYMBOL vmlinux 0x6e0016d9 i2c_register_driver EXPORT_SYMBOL vmlinux 0x6e0049fc ns_capable_setid -EXPORT_SYMBOL vmlinux 0x6e0a0cb8 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x6e139940 proc_set_user -EXPORT_SYMBOL vmlinux 0x6e160180 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x6e294c42 skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0x6e31026a blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x6e4bfde1 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x6e675a62 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x6e6d726c done_path_create +EXPORT_SYMBOL vmlinux 0x6e03acc4 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x6e0d3a11 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x6e3a5e44 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x6e3ee596 register_quota_format +EXPORT_SYMBOL vmlinux 0x6e4b260b io_uring_destruct_scm +EXPORT_SYMBOL vmlinux 0x6e554074 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x6e66d528 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e74c994 sk_common_release -EXPORT_SYMBOL vmlinux 0x6e7ac0c0 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x6e7e3871 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x6e80ba49 tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0x6e8cf8aa dev_set_alias -EXPORT_SYMBOL vmlinux 0x6e949a13 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x6e9b75b0 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x6e843426 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x6e8d4ef8 set_capacity EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea8f7df mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eae28ea __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x6eb08f58 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x6eb6e73c xp_dma_map +EXPORT_SYMBOL vmlinux 0x6eb73277 sk_dst_check EXPORT_SYMBOL vmlinux 0x6ebf9bd9 kmalloc_size_roundup -EXPORT_SYMBOL vmlinux 0x6ec3a1a1 netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x6ee249c7 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x6ee20eba pci_iomap_range +EXPORT_SYMBOL vmlinux 0x6ee7eb12 sg_alloc_table_from_pages_segment EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6efe3ac3 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem -EXPORT_SYMBOL vmlinux 0x6f12768f __mdiobus_write +EXPORT_SYMBOL vmlinux 0x6f109eeb of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock EXPORT_SYMBOL vmlinux 0x6f176537 mt_find_after -EXPORT_SYMBOL vmlinux 0x6f2135aa input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x6f231bb3 of_get_nand_ecc_user_config -EXPORT_SYMBOL vmlinux 0x6f254a3f __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x6f34a5a4 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x6f3abca2 tegra_dfll_resume EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove -EXPORT_SYMBOL vmlinux 0x6f45ac0f bio_init -EXPORT_SYMBOL vmlinux 0x6f4c2c0b ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x6f530cb7 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x6f4524a3 __inet_hash +EXPORT_SYMBOL vmlinux 0x6f4f6b0c tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x6f5fcf0b dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x6f71088f xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin -EXPORT_SYMBOL vmlinux 0x6f898216 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x6f8e56ac of_get_compatible_child -EXPORT_SYMBOL vmlinux 0x6f8fd6f0 param_get_short -EXPORT_SYMBOL vmlinux 0x6f9d88b7 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6f897f1c __post_watch_notification +EXPORT_SYMBOL vmlinux 0x6f9bdb77 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x6fac7447 file_path +EXPORT_SYMBOL vmlinux 0x6fafd94b of_phy_register_fixed_link EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable -EXPORT_SYMBOL vmlinux 0x6fb702bb mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fca3f79 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog EXPORT_SYMBOL vmlinux 0x6fd487e6 __register_nls -EXPORT_SYMBOL vmlinux 0x6fdf3920 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x6fe27ed4 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x6fe33a4c ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x6ffc1948 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x6fd65e3e mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x70064742 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x7010d4d5 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x701d4b04 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x70143266 tty_hangup EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x702dcac4 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x70428087 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x704cb99f genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x704ccd80 udp_seq_next +EXPORT_SYMBOL vmlinux 0x702bb059 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x702de604 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x704299cf vfs_statfs +EXPORT_SYMBOL vmlinux 0x70576d0a phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x7069db63 tcp_ioctl EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x70705366 set_anon_super -EXPORT_SYMBOL vmlinux 0x7088ff78 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x709eb758 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x70a56b82 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x70a7900e nand_monolithic_read_page_raw EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x70b08cac locks_copy_lock -EXPORT_SYMBOL vmlinux 0x70c9bae2 input_reset_device -EXPORT_SYMBOL vmlinux 0x70db099e snd_timer_resolution -EXPORT_SYMBOL vmlinux 0x70db2c30 iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0x7104dd76 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x70bd05c1 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x70bf98ed __register_binfmt +EXPORT_SYMBOL vmlinux 0x70c4d6b8 filemap_splice_read +EXPORT_SYMBOL vmlinux 0x70dd0fa1 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x70f0d3f7 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x70f21a62 __check_sticky +EXPORT_SYMBOL vmlinux 0x70f45572 skb_unlink +EXPORT_SYMBOL vmlinux 0x710232a2 simple_getattr +EXPORT_SYMBOL vmlinux 0x710d231a pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7117fbed devfreq_update_target EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x712760ae unregister_fib_notifier EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712c7c81 devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0x7134d908 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x71360b19 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x7149d6cf __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x712e0736 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x712e2ae9 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x712ff05a tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x7133c066 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x713f9591 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x71414574 free_inode_nonrcu EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7162b272 blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71732053 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x7174cc1d pcie_print_link_status EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x71826135 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x71945803 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x719d929a vfs_statfs -EXPORT_SYMBOL vmlinux 0x71a62df1 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x718f2074 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x7190fb25 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x71989d9f xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x71a031f9 migrate_folio EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71c5e57d scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x71ae6fff tso_build_hdr EXPORT_SYMBOL vmlinux 0x71c90087 memcmp -EXPORT_SYMBOL vmlinux 0x71d581a1 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x71da6e3a of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x71eeb07c path_has_submounts -EXPORT_SYMBOL vmlinux 0x71f9d649 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x71fe06e0 ip_options_compile -EXPORT_SYMBOL vmlinux 0x71fe902d clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x71ff27f0 pci_release_regions EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7214c9f3 netif_set_tso_max_size -EXPORT_SYMBOL vmlinux 0x721feba4 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x7231c5d4 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x7233dfbc inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x7248cecb xfrm_lookup +EXPORT_SYMBOL vmlinux 0x72139598 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x721e2632 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x7228de3f pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x72338e37 nd_device_register +EXPORT_SYMBOL vmlinux 0x7241dc23 mount_subtree +EXPORT_SYMBOL vmlinux 0x72473372 netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0x724d8379 override_creds -EXPORT_SYMBOL vmlinux 0x7252dbc7 generic_fillattr -EXPORT_SYMBOL vmlinux 0x728e68e5 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x727047ad qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x7271fa6b _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x7290825c mtree_store_range -EXPORT_SYMBOL vmlinux 0x729aa2a9 n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72b0a6fc sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72c25b45 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x72d3bb51 input_copy_abs +EXPORT_SYMBOL vmlinux 0x72d90146 km_policy_expired EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f06038 of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0x72f428e2 nand_ecc_prepare_io_req -EXPORT_SYMBOL vmlinux 0x7304fb74 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x72f52805 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x72fcdbb1 mmc_put_card EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL vmlinux 0x73143815 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x730a434d jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x730eaa0f snd_pcm_new +EXPORT_SYMBOL vmlinux 0x730f9f84 crypto_sha1_update EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x7317a5d8 kernel_accept +EXPORT_SYMBOL vmlinux 0x731a48a3 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x731ea710 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x73215646 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x73401659 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x73490915 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0x7372213d nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x73797a78 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x7346c2b8 __fput_sync +EXPORT_SYMBOL vmlinux 0x7349b254 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x73635f05 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x737378dd dev_addr_add +EXPORT_SYMBOL vmlinux 0x737cf88f security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x738dd1e3 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x7385b173 keyring_search EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739ebf23 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73dde730 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x73b28f75 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x73b7d81f touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x73cf82d9 retire_super +EXPORT_SYMBOL vmlinux 0x73d0f31f pci_enable_link_state +EXPORT_SYMBOL vmlinux 0x73e14a10 gro_cells_init EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e84e61 __bh_read_batch EXPORT_SYMBOL vmlinux 0x73e99a6b config_item_get -EXPORT_SYMBOL vmlinux 0x73efb56f phy_register_fixup -EXPORT_SYMBOL vmlinux 0x740c65f8 inode_set_flags +EXPORT_SYMBOL vmlinux 0x73f75d29 genphy_read_status +EXPORT_SYMBOL vmlinux 0x740d1e31 blk_rq_map_user_io EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x74161376 page_pool_destroy -EXPORT_SYMBOL vmlinux 0x741bd3a5 d_instantiate -EXPORT_SYMBOL vmlinux 0x7423a6a2 icmp6_send EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742b78c6 security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0x742c2c95 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x742ee88d register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0x7442dff0 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL vmlinux 0x7444c7f9 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x744a433b snd_jack_add_new_kctl EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x745bd716 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0x74606c3b config_item_set_name -EXPORT_SYMBOL vmlinux 0x74710fdb __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x7477e1ce tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x7486a60b vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x7496e206 noop_qdisc -EXPORT_SYMBOL vmlinux 0x749ebec9 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x74a1586c scsi_add_device -EXPORT_SYMBOL vmlinux 0x74b2300b tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0x74b23fb2 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x74a820e6 contig_page_data +EXPORT_SYMBOL vmlinux 0x74a98926 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x74aa1194 inet6_protos EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss -EXPORT_SYMBOL vmlinux 0x74be765a vm_insert_pages EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74ccc3de sock_no_connect +EXPORT_SYMBOL vmlinux 0x74c5b14a tcp_mmap +EXPORT_SYMBOL vmlinux 0x74dac590 ip_frag_init EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74f3b8fd phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x74fb51a3 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x7503f6d3 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x74e8c54b reuseport_select_sock EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv -EXPORT_SYMBOL vmlinux 0x7507e5ef pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x7515a464 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x751adcff nd_integrity_init -EXPORT_SYMBOL vmlinux 0x751f77e8 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x751ffe4c ptp_clock_index -EXPORT_SYMBOL vmlinux 0x75333b89 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x75411fc8 follow_up -EXPORT_SYMBOL vmlinux 0x75488bb7 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x750cf9fa t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x751217e2 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x753c304b folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x753c5d39 pci_disable_device +EXPORT_SYMBOL vmlinux 0x7542f85e phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x75465a33 ethtool_aggregate_rmon_stats +EXPORT_SYMBOL vmlinux 0x7546a9a4 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x755041c7 proc_dointvec -EXPORT_SYMBOL vmlinux 0x755691d5 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x75535535 bio_init_clone EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs -EXPORT_SYMBOL vmlinux 0x756837d6 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x756b6de9 of_lpddr3_get_min_tck EXPORT_SYMBOL vmlinux 0x756bc077 __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x757573fd iunique -EXPORT_SYMBOL vmlinux 0x75a04274 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x757833cd send_sig +EXPORT_SYMBOL vmlinux 0x757dd95c ppp_input +EXPORT_SYMBOL vmlinux 0x7596b1db noop_fsync +EXPORT_SYMBOL vmlinux 0x75a330fc sock_no_connect +EXPORT_SYMBOL vmlinux 0x75a47d9b dev_mc_sync EXPORT_SYMBOL vmlinux 0x75b7d25d __serio_register_port +EXPORT_SYMBOL vmlinux 0x75bb51e0 mdio_device_create EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c2b75c pci_remove_bus +EXPORT_SYMBOL vmlinux 0x75c89b41 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x75cdf6bd key_move EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e70567 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x75ed187e of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x75e42d59 tty_vhangup +EXPORT_SYMBOL vmlinux 0x75eef356 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x75f553c4 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x75f86798 file_remove_privs +EXPORT_SYMBOL vmlinux 0x75fad96a cdev_add EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760c047b cqhci_pltfm_init -EXPORT_SYMBOL vmlinux 0x761e8a3d get_tree_bdev -EXPORT_SYMBOL vmlinux 0x76296adc register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x7633063b scsi_print_result +EXPORT_SYMBOL vmlinux 0x761133bf inet_getname EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7647d08f tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x76540bd2 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x765618e5 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x765739ee pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x7665a1ce iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x766977b0 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7680fa58 kill_litter_super +EXPORT_SYMBOL vmlinux 0x7672e058 sock_i_ino +EXPORT_SYMBOL vmlinux 0x767c7c4a dquot_alloc +EXPORT_SYMBOL vmlinux 0x76829612 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x768e6b35 vme_register_driver EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a75c3d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x76ab2e45 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x76b44a1d snd_ctl_add +EXPORT_SYMBOL vmlinux 0x76c01045 dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl -EXPORT_SYMBOL vmlinux 0x76cf6a1e pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0x76d18100 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76dd4199 poll_freewait EXPORT_SYMBOL vmlinux 0x76df2eeb _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x76e5e5b7 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x76e60178 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0x76f9cfc5 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x77066d1d submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x770c96be kern_path_create -EXPORT_SYMBOL vmlinux 0x771f38db __register_binfmt +EXPORT_SYMBOL vmlinux 0x76e2796c dquot_initialize +EXPORT_SYMBOL vmlinux 0x76e4ccad deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x771ea3da scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x77244141 tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773b4cec __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x774cf0f0 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x77509ceb nonseekable_open -EXPORT_SYMBOL vmlinux 0x775482bc phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x775ce392 page_pool_put_defragged_page -EXPORT_SYMBOL vmlinux 0x775e6bec dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0x77615c12 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x773b7d5f filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x773ea8dc snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x773fbfa6 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x775ea1b4 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x77668af5 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x776a3d4b configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 EXPORT_SYMBOL vmlinux 0x77704512 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x777da8da simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x77907322 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x7782adf5 arp_create EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77b6e013 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x779d3779 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x77a13968 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x77ab7eac ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x77af6ce0 dev_set_alias EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e5720b dev_mc_flush EXPORT_SYMBOL vmlinux 0x77e78268 cpu_rmap_update EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77ef9dda fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x77f6929d pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x77fb1901 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x7804cc7d sg_miter_start EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78156e4b dquot_disable -EXPORT_SYMBOL vmlinux 0x781fd034 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x7821a515 __block_write_full_folio -EXPORT_SYMBOL vmlinux 0x782609a2 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x784744a9 tcf_block_get -EXPORT_SYMBOL vmlinux 0x7847fbeb tcp_read_done -EXPORT_SYMBOL vmlinux 0x785cc9fd netdev_notice +EXPORT_SYMBOL vmlinux 0x780ab67c snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x780d3ae0 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x780dd4d7 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x78151f21 phy_suspend +EXPORT_SYMBOL vmlinux 0x782e1c05 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x7834b0e3 phy_start +EXPORT_SYMBOL vmlinux 0x7835b207 put_disk +EXPORT_SYMBOL vmlinux 0x783a8f6f rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x783ac96a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x784af97f nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x78510f0a xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0x7873ea00 update_devfreq EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler -EXPORT_SYMBOL vmlinux 0x788696dd __scm_destroy -EXPORT_SYMBOL vmlinux 0x78940e84 skb_trim -EXPORT_SYMBOL vmlinux 0x7897a30e nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x787f66a4 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x788bc870 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78acace5 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x78b80269 sync_blockdev EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c176bf ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x78cc1783 lookup_one +EXPORT_SYMBOL vmlinux 0x78cce6bb tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x78cdad84 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x78d4d19a pci_pme_capable +EXPORT_SYMBOL vmlinux 0x78d6a175 dev_mc_add +EXPORT_SYMBOL vmlinux 0x78ddb6f2 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x790ceec9 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x7913d944 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x78e862e2 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x78f945d2 sget_fc +EXPORT_SYMBOL vmlinux 0x78fad703 input_register_handle +EXPORT_SYMBOL vmlinux 0x7917160b folio_migrate_flags EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x7925038a __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x792e53c2 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x79375a85 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free -EXPORT_SYMBOL vmlinux 0x79869b28 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x795d77b1 dquot_destroy +EXPORT_SYMBOL vmlinux 0x795f5c8f md_register_thread +EXPORT_SYMBOL vmlinux 0x795f8bf9 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7964c44c devm_register_netdev +EXPORT_SYMBOL vmlinux 0x796e7a19 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x7973a9ed __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x7991ad79 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x79ac798d __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x79d91a0e tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x79964c67 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x799f934c vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x79a492be jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x79a4e992 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x79ad68d3 follow_down +EXPORT_SYMBOL vmlinux 0x79b89e8c snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x79c19648 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x79f7170b sk_stop_timer EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer -EXPORT_SYMBOL vmlinux 0x7a000172 udp_poll -EXPORT_SYMBOL vmlinux 0x7a0477be dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x7a14e2a6 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x79fb204f __skb_pad EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a5427b4 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x7a642858 simple_link EXPORT_SYMBOL vmlinux 0x7a64d01e of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0x7a65ce7a snd_ctl_notify_one -EXPORT_SYMBOL vmlinux 0x7a7a4f20 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x7a7143b2 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x7a794674 vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0x7a80a2f9 tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab633eb pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x7ab75ccd iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x7aba4117 register_filesystem +EXPORT_SYMBOL vmlinux 0x7ab53006 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x7ab5abe7 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad5a945 imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7aded2f7 down_write_trylock EXPORT_SYMBOL vmlinux 0x7ae16b92 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x7ae33c07 seq_lseek EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7af58095 lock_sock_nested EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b047f15 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x7b0835fd devm_clk_get -EXPORT_SYMBOL vmlinux 0x7b100d3d mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x7b152399 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x7b0b8cda handshake_req_cancel EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x7b2f3744 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x7b350d91 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x7b435749 sync_file_create -EXPORT_SYMBOL vmlinux 0x7b48f24d dget_parent +EXPORT_SYMBOL vmlinux 0x7b32b4f9 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x7b3934d8 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x7b44dada sock_no_getname +EXPORT_SYMBOL vmlinux 0x7b466a2d from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x7b5066bc xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x7b575e64 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap -EXPORT_SYMBOL vmlinux 0x7b62774e dev_uc_add -EXPORT_SYMBOL vmlinux 0x7b69929e __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x7b73a58a device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x7b7bafb5 dev_change_flags -EXPORT_SYMBOL vmlinux 0x7b7f1e69 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x7b6182f6 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x7b77f247 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x7b8bbf6a generic_parse_monolithic EXPORT_SYMBOL vmlinux 0x7b8d6b10 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x7b9151ad flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x7b9d96d9 dma_fence_signal EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7bbb0954 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x7bd39cc3 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x7bdbe5dd ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x7bfbad32 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x7c018192 release_sock +EXPORT_SYMBOL vmlinux 0x7bc65f74 dst_dev_put +EXPORT_SYMBOL vmlinux 0x7bf75cd8 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x7c08d2ed __invalidate_device +EXPORT_SYMBOL vmlinux 0x7c0fbcb7 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1c6b92 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x7c38d523 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x7c3b0951 of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x7c3b9e49 read_code -EXPORT_SYMBOL vmlinux 0x7c3e3f4e seq_path +EXPORT_SYMBOL vmlinux 0x7c174568 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x7c1cb4da genlmsg_put +EXPORT_SYMBOL vmlinux 0x7c264db3 module_refcount +EXPORT_SYMBOL vmlinux 0x7c2904a3 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x7c41b51c udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c4fc946 bio_add_folio -EXPORT_SYMBOL vmlinux 0x7c575fa4 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x7c61d6dc inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x7c66794d inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x7c6e1b46 inet_listen -EXPORT_SYMBOL vmlinux 0x7c8825e3 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x7c89c93e inet6_add_offload -EXPORT_SYMBOL vmlinux 0x7c8b01c4 vfs_mknod +EXPORT_SYMBOL vmlinux 0x7c6094d3 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x7c70cc52 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x7c74ce3c unregister_quota_format EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c909bc6 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7c9911e2 tcp_shutdown EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7c9db8ce mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x7c9f0386 sock_register -EXPORT_SYMBOL vmlinux 0x7ca29688 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x7c9ef6ef copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x7cab17b5 skb_trim +EXPORT_SYMBOL vmlinux 0x7cb3987f of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x7cb5fa7b kill_pgrp EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 -EXPORT_SYMBOL vmlinux 0x7ccdcf97 put_cmsg +EXPORT_SYMBOL vmlinux 0x7cc13cec phy_start_cable_test EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce3bf32 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf58873 uart_remove_one_port EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d17b326 __inc_zone_page_state EXPORT_SYMBOL vmlinux 0x7d1d1e45 nand_ecc_sw_hamming_calculate EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x7d267122 scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x7d2a4f6b filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x7d3e9db2 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x7d3fbfbc i2c_get_match_data +EXPORT_SYMBOL vmlinux 0x7d4a787b pskb_extract EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d699bb9 flow_rule_match_arp -EXPORT_SYMBOL vmlinux 0x7d69ff0f flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x7d6a8eec devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x7d74d768 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x7d83bedd jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x7d8daedf dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x7d9e95db tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x7d517d22 _dev_alert +EXPORT_SYMBOL vmlinux 0x7d86aca2 inode_permission +EXPORT_SYMBOL vmlinux 0x7d89f898 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x7d96b58f mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x7d9fe302 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dafbf56 sock_no_linger +EXPORT_SYMBOL vmlinux 0x7dbdbf2c dev_trans_start EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable -EXPORT_SYMBOL vmlinux 0x7de19cf9 vm_mmap -EXPORT_SYMBOL vmlinux 0x7dfa74b8 snd_card_file_add -EXPORT_SYMBOL vmlinux 0x7dfb7e3d tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x7dc67c89 crypto_sha256_update EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write -EXPORT_SYMBOL vmlinux 0x7e113cd4 locks_init_lock +EXPORT_SYMBOL vmlinux 0x7e1124d2 netdev_crit EXPORT_SYMBOL vmlinux 0x7e177627 irq_set_chip -EXPORT_SYMBOL vmlinux 0x7e23ecd8 __break_lease EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e4aedbc netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x7e334dea max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x7e3aeed5 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x7e425b5d __netif_schedule EXPORT_SYMBOL vmlinux 0x7e4c3df5 efi -EXPORT_SYMBOL vmlinux 0x7e4dc6e7 filemap_flush -EXPORT_SYMBOL vmlinux 0x7e5f0fd2 dquot_alloc -EXPORT_SYMBOL vmlinux 0x7e68e5e7 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL vmlinux 0x7e728818 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x7e7522f9 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x7e8a4b1a pskb_expand_head +EXPORT_SYMBOL vmlinux 0x7e5c34f7 nand_write_page_raw +EXPORT_SYMBOL vmlinux 0x7e762ace i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x7e8291ec tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x7e89c442 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x7e958171 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7ea2b33e phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7ea52579 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7eaaeac7 nd_btt_version +EXPORT_SYMBOL vmlinux 0x7eb33432 seq_vprintf EXPORT_SYMBOL vmlinux 0x7ec7f1a7 kthread_complete_and_exit -EXPORT_SYMBOL vmlinux 0x7ee26bed dev_close -EXPORT_SYMBOL vmlinux 0x7efe1e9b cdev_del +EXPORT_SYMBOL vmlinux 0x7ee8a3ac security_path_unlink +EXPORT_SYMBOL vmlinux 0x7eece1be input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x7eeeab6d vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x7ef04ef4 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x7ef3e347 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f049a42 xp_free -EXPORT_SYMBOL vmlinux 0x7f15b529 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x7f126bd3 nf_log_register EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f446c97 do_SAK -EXPORT_SYMBOL vmlinux 0x7f4ec4c3 nd_device_notify -EXPORT_SYMBOL vmlinux 0x7f57ef51 ethtool_notify +EXPORT_SYMBOL vmlinux 0x7f380fb7 read_cache_page EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f61ac9d __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio -EXPORT_SYMBOL vmlinux 0x7f6cb647 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL vmlinux 0x7f6f01e7 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x7f7e37bf snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x7f755e02 clear_nlink +EXPORT_SYMBOL vmlinux 0x7f76cb18 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x7f7d0479 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7f7d5e15 vfs_llseek EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f803381 fc_mount -EXPORT_SYMBOL vmlinux 0x7f8799a9 of_find_property -EXPORT_SYMBOL vmlinux 0x7f946f17 udp_ioctl -EXPORT_SYMBOL vmlinux 0x7f9e6d2e phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x7fb5b872 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7f882cbe blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7fa25443 snd_ctl_boolean_stereo_info EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size EXPORT_SYMBOL vmlinux 0x7fd3962c __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x7fd3a327 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x7fd48e86 twl6040_reg_write EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read -EXPORT_SYMBOL vmlinux 0x7fe258ed xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x7fe0a412 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe41408 open_exec -EXPORT_SYMBOL vmlinux 0x7ff6bf7f flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x7ffdddeb flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7fe84635 netif_rx +EXPORT_SYMBOL vmlinux 0x7fef6c70 sock_create_lite EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 -EXPORT_SYMBOL vmlinux 0x801b312d key_alloc -EXPORT_SYMBOL vmlinux 0x802387fe ppp_channel_index EXPORT_SYMBOL vmlinux 0x8039b3fd _totalram_pages +EXPORT_SYMBOL vmlinux 0x803a3bec release_pages EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x80447504 mount_nodev -EXPORT_SYMBOL vmlinux 0x80585552 of_iommu_get_resv_regions +EXPORT_SYMBOL vmlinux 0x804c5ede snd_pcm_hw_constraint_list EXPORT_SYMBOL vmlinux 0x8061b5c2 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x80754ab0 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x807b688a dump_skip +EXPORT_SYMBOL vmlinux 0x80806171 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x809c26d8 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x80829d88 audit_log +EXPORT_SYMBOL vmlinux 0x80990c6e fs_param_is_fd EXPORT_SYMBOL vmlinux 0x80c4c319 crc32_le EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cc4964 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x80ce9510 tcp_recv_skb EXPORT_SYMBOL vmlinux 0x80d38ff8 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80da9a1f cdev_init -EXPORT_SYMBOL vmlinux 0x80e42654 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x80d81be5 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80e69e10 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x80fbc9e6 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x810041a0 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x8104c07b tcp_shutdown +EXPORT_SYMBOL vmlinux 0x80f81d78 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x810204fc security_sb_remount EXPORT_SYMBOL vmlinux 0x8108ac7a down_read_trylock EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x812ada36 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0x812ba955 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x81375358 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x813e57c1 phy_connect -EXPORT_SYMBOL vmlinux 0x814668b1 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x814aa2bf netdev_offload_xstats_push_delta -EXPORT_SYMBOL vmlinux 0x81573f63 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x815b45d8 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x8118b785 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x812e29be mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x813c7c45 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x813e5051 d_instantiate +EXPORT_SYMBOL vmlinux 0x813f81ce snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x8154690d blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x8155e272 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal -EXPORT_SYMBOL vmlinux 0x816705ce dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x817069a1 register_shrinker +EXPORT_SYMBOL vmlinux 0x815e7de4 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x815fbbfb jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x8178b2ce init_net +EXPORT_SYMBOL vmlinux 0x817b36c0 bio_split EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8187a2d7 tty_kref_put +EXPORT_SYMBOL vmlinux 0x81882d52 netdev_printk EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81a1add2 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload -EXPORT_SYMBOL vmlinux 0x81ad0d2f submit_bh EXPORT_SYMBOL vmlinux 0x81adef99 refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81bf7c6d kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x81bebf49 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x81c5544e wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x81d298d5 ipmi_platform_add EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81ddb2e6 netdev_printk EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81eea970 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x820414a3 iov_iter_discard EXPORT_SYMBOL vmlinux 0x8217fda5 devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb -EXPORT_SYMBOL vmlinux 0x823d9383 cdrom_release -EXPORT_SYMBOL vmlinux 0x824850f0 vme_irq_request -EXPORT_SYMBOL vmlinux 0x824b3a55 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x8250586d tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x825397bc gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0x8254a765 sock_release +EXPORT_SYMBOL vmlinux 0x8246809d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x824e19d7 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x824f7ce0 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk +EXPORT_SYMBOL vmlinux 0x8264bfb9 nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x82660f75 amba_driver_register +EXPORT_SYMBOL vmlinux 0x8266adb1 ip_do_fragment EXPORT_SYMBOL vmlinux 0x827f924e vmalloc_array +EXPORT_SYMBOL vmlinux 0x82805ace d_move +EXPORT_SYMBOL vmlinux 0x82848d30 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x828ce6bb mutex_lock -EXPORT_SYMBOL vmlinux 0x828d6a55 of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x828da9f2 mtd_concat_create EXPORT_SYMBOL vmlinux 0x82925d9d __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x8299c0c9 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x82951f81 vme_register_driver +EXPORT_SYMBOL vmlinux 0x82a4fb92 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x82a54cb0 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x82caadf2 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x82cf52fe qcom_scm_pas_metadata_release -EXPORT_SYMBOL vmlinux 0x82e3e9b7 ps2_end_command +EXPORT_SYMBOL vmlinux 0x82d53c82 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x82d8fa4d inet_dgram_ops EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f0cbb6 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x82fe7322 bio_put -EXPORT_SYMBOL vmlinux 0x83005bcf locks_remove_posix EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 -EXPORT_SYMBOL vmlinux 0x832ad039 filemap_fault -EXPORT_SYMBOL vmlinux 0x8343a437 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x8348e315 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x8327d0c2 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x832a7480 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x8343495a dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8344c4c4 sock_wake_async EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x835ffe6e mapping_read_folio_gfp -EXPORT_SYMBOL vmlinux 0x837b4038 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x83592505 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x835c967e mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x838c5041 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838d671a uart_match_port -EXPORT_SYMBOL vmlinux 0x83927086 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x83acc368 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x83c43c62 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x83bd9cc8 d_splice_alias +EXPORT_SYMBOL vmlinux 0x83c2cbaf phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x83c4208f xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x83c6ada6 rawnand_sw_hamming_correct EXPORT_SYMBOL vmlinux 0x83cd0e6f atomic_io_modify -EXPORT_SYMBOL vmlinux 0x83e7538c register_sound_special -EXPORT_SYMBOL vmlinux 0x83e7f1a7 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x83f763ca mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x83ed6a1a jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x8427cee9 netif_skb_features +EXPORT_SYMBOL vmlinux 0x841680b6 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x84356be7 zstd_dstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x84402c3f key_revoke -EXPORT_SYMBOL vmlinux 0x8445a6e4 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x844b68ef mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x844e2cc3 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x843c2a0b get_watch_queue +EXPORT_SYMBOL vmlinux 0x8442c467 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x84454efc key_alloc +EXPORT_SYMBOL vmlinux 0x84482eb7 mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x8456e9a7 xa_erase -EXPORT_SYMBOL vmlinux 0x84579b12 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x846077a5 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x846deb42 napi_build_skb -EXPORT_SYMBOL vmlinux 0x847305cd truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x8476e3cf file_update_time +EXPORT_SYMBOL vmlinux 0x845a1603 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x84705bcd da903x_query_status +EXPORT_SYMBOL vmlinux 0x84760b00 netif_tx_unlock EXPORT_SYMBOL vmlinux 0x847a85a8 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x847dac5d tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x849af22b of_phy_connect +EXPORT_SYMBOL vmlinux 0x849e5df7 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84a8acc6 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x84ac7869 snd_pcm_new EXPORT_SYMBOL vmlinux 0x84b183ae strncmp -EXPORT_SYMBOL vmlinux 0x84c085db jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x84c692e5 skb_put -EXPORT_SYMBOL vmlinux 0x84d749aa handshake_req_submit -EXPORT_SYMBOL vmlinux 0x84fd3e38 ip_frag_next +EXPORT_SYMBOL vmlinux 0x84b447cc pci_reenable_device +EXPORT_SYMBOL vmlinux 0x84bc5994 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x84bc7dfd module_put +EXPORT_SYMBOL vmlinux 0x84cb827c serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x84f11d90 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x84f47ba3 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x850b8add ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x851982d3 kvmemdup -EXPORT_SYMBOL vmlinux 0x852f0a89 ip_route_me_harder -EXPORT_SYMBOL vmlinux 0x8532de67 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel -EXPORT_SYMBOL vmlinux 0x8542e241 neigh_lookup -EXPORT_SYMBOL vmlinux 0x8544617c nf_setsockopt -EXPORT_SYMBOL vmlinux 0x854b1002 sys_imageblit -EXPORT_SYMBOL vmlinux 0x8553f6fb passthru_features_check -EXPORT_SYMBOL vmlinux 0x8557320b ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x8563b3da blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x852bf019 tcp_prot +EXPORT_SYMBOL vmlinux 0x854fcdb3 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x8556af2f tcp_read_skb +EXPORT_SYMBOL vmlinux 0x8557e720 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x855bddf8 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x857e30e6 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x8567ba74 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x857b96f9 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x8582ebff cpu_all_bits -EXPORT_SYMBOL vmlinux 0x85887c6b call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x858974ba blk_sync_queue +EXPORT_SYMBOL vmlinux 0x8588f3ad __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8589f46a input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x858cd495 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x85901bf3 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85a64160 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x85b1c867 nand_ecc_is_strong_enough EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d75032 scsi_host_busy EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e86013 md_done_sync EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f0a190 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x85f3a8dc tcf_exts_init_ex -EXPORT_SYMBOL vmlinux 0x85f75a47 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x862530da __check_sticky +EXPORT_SYMBOL vmlinux 0x85f83214 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x85fc020c dump_page EXPORT_SYMBOL vmlinux 0x862bc663 memset16 EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x86381f6a blk_start_plug EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x865924a8 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x866510ed mdio_find_bus -EXPORT_SYMBOL vmlinux 0x86660feb __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x86685444 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x866d809b logfc -EXPORT_SYMBOL vmlinux 0x86764b72 sock_bind_add +EXPORT_SYMBOL vmlinux 0x86483465 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x864f05de scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8650929c scsi_print_command +EXPORT_SYMBOL vmlinux 0x8658e699 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x867e07de phy_init_hw +EXPORT_SYMBOL vmlinux 0x86806b2e gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8688f0ba phy_start_aneg EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x8694c106 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x86965dd5 netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0x869bf024 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x869d0f2c pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x86b4fea3 i2c_get_match_data -EXPORT_SYMBOL vmlinux 0x86cb955b __bio_advance +EXPORT_SYMBOL vmlinux 0x86a75f35 page_mapping +EXPORT_SYMBOL vmlinux 0x86b2834a inet_stream_connect +EXPORT_SYMBOL vmlinux 0x86ba0d1d dev_close EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d5cfe6 __skb_get_hash EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86e0bbf1 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x86e5280e gro_cells_init +EXPORT_SYMBOL vmlinux 0x86edb59f sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x86fb387b walk_stackframe EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870227f3 tcf_register_action EXPORT_SYMBOL vmlinux 0x870d5a1c __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x870e476b snd_seq_root -EXPORT_SYMBOL vmlinux 0x87116a06 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x8714fb25 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x87369848 dev_addr_add -EXPORT_SYMBOL vmlinux 0x8752134d ppp_dev_name -EXPORT_SYMBOL vmlinux 0x8761c0e4 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x876ee0ad tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x8772539b input_close_device +EXPORT_SYMBOL vmlinux 0x87218887 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x872bc5e4 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x874cf9b0 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x877684a0 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x8777beb3 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x87824960 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x8787c13a tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x87902087 __sock_i_ino -EXPORT_SYMBOL vmlinux 0x879e6a13 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x87957a74 mdiobus_c45_read EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87ad7caa __sk_dst_check +EXPORT_SYMBOL vmlinux 0x87acc745 fs_context_for_submount EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87d98268 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x87efcbaa flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x87f6430d jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x87be6a9f get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x87bf13c6 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x87defa15 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x87e2909a kernel_param_lock +EXPORT_SYMBOL vmlinux 0x87f1f3b5 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x880508fa dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x88062860 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x8806f9ea param_set_uint +EXPORT_SYMBOL vmlinux 0x881391a8 udp_read_skb +EXPORT_SYMBOL vmlinux 0x881955f9 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x8826a8c3 pci_resize_resource EXPORT_SYMBOL vmlinux 0x88347248 __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x884677cb netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x88688484 zstd_compress_cctx -EXPORT_SYMBOL vmlinux 0x886e7b1c sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0x887aa05a mpage_read_folio +EXPORT_SYMBOL vmlinux 0x887c9c0f pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x8889db36 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x889be199 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x88a16769 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x88aef8af seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x888bb8ef snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x8897b44e ppp_dev_name EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial -EXPORT_SYMBOL vmlinux 0x88b7eab8 validate_slab_cache -EXPORT_SYMBOL vmlinux 0x88bec17c __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x88d2570e blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x88b4616d vlan_for_each +EXPORT_SYMBOL vmlinux 0x88c34f3a inode_get_bytes EXPORT_SYMBOL vmlinux 0x88db665b kstrtoul_from_user EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88dc6b97 rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88fe9bee blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x89079c52 param_get_ullong -EXPORT_SYMBOL vmlinux 0x890d7abc wireless_send_event -EXPORT_SYMBOL vmlinux 0x89155167 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x88e234c6 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x88f73c7c nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x88fb75d5 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x88fcb408 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x88ffdcd8 vm_map_pages +EXPORT_SYMBOL vmlinux 0x8904e77a tcf_em_register EXPORT_SYMBOL vmlinux 0x8917f414 kunmap_local_indexed -EXPORT_SYMBOL vmlinux 0x891e9d36 simple_getattr -EXPORT_SYMBOL vmlinux 0x8950f200 read_cache_page -EXPORT_SYMBOL vmlinux 0x896e9552 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x8985dfe3 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x89c08d44 dump_page -EXPORT_SYMBOL vmlinux 0x89c84f83 netdev_info -EXPORT_SYMBOL vmlinux 0x89e2f843 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x89f79c93 dev_add_pack -EXPORT_SYMBOL vmlinux 0x89ffffeb blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x8a1308e2 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x8a26d2b7 may_umount -EXPORT_SYMBOL vmlinux 0x8a295510 ata_print_version -EXPORT_SYMBOL vmlinux 0x8a2d2118 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0x8a2ff4fe remove_proc_entry -EXPORT_SYMBOL vmlinux 0x8a37e50d neigh_destroy +EXPORT_SYMBOL vmlinux 0x891ccba8 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x8926c68c flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x8954b051 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x895ad44a genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x8969ca59 dquot_commit +EXPORT_SYMBOL vmlinux 0x89712751 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x897b5f53 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x897cbd8e csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x89b66f51 input_setup_polling +EXPORT_SYMBOL vmlinux 0x89e93bc7 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x89f030f6 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x8a13790d inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x8a2083d6 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x8a3b1285 __xa_erase -EXPORT_SYMBOL vmlinux 0x8a3eb00e inet_stream_connect EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4f33ea pci_enable_wake EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a63a47a tty_register_driver +EXPORT_SYMBOL vmlinux 0x8a69a937 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x8a6a4ac5 inet_sock_destruct EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8b178a blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x8a901402 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x8a814298 set_create_files_as +EXPORT_SYMBOL vmlinux 0x8a8afa67 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x8a8b913c xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9e6c27 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x8aa0402b _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x8aace3c0 sock_wake_async -EXPORT_SYMBOL vmlinux 0x8ab612ae page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x8ab1501f mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x8ab771c8 udp_seq_next +EXPORT_SYMBOL vmlinux 0x8abf65af jbd2_journal_stop EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac2a352 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8acec979 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x8acf5604 neigh_update -EXPORT_SYMBOL vmlinux 0x8adaf891 scsi_host_get -EXPORT_SYMBOL vmlinux 0x8ae2ba78 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x8affcbe3 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x8ac3863b skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x8acc0818 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8ad3d7f7 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x8ae3218b mmc_gpio_get_cd EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b10a919 md_write_end -EXPORT_SYMBOL vmlinux 0x8b114fae request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x8b14f278 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x8b397013 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x8b3fc243 vme_master_request -EXPORT_SYMBOL vmlinux 0x8b45eb4f max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x8b066459 dm_table_event +EXPORT_SYMBOL vmlinux 0x8b0e0559 skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x8b5927a0 down_timeout EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b65e58c ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x8b656960 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x8b69bb01 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x8b6c0f74 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x8b6f9f76 blake2s_compress -EXPORT_SYMBOL vmlinux 0x8b7c9c50 seq_read_iter EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b80a3b0 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x8b81b22e cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x8b8e1619 console_stop EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8bae5ad5 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x8bafe770 snd_ctl_rename_id -EXPORT_SYMBOL vmlinux 0x8bbd21a1 vfs_rename -EXPORT_SYMBOL vmlinux 0x8bbdf133 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x8bc1528f netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x8b9466af dput +EXPORT_SYMBOL vmlinux 0x8bc1b7d7 input_reset_device EXPORT_SYMBOL vmlinux 0x8bd6b632 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x8bd8620b fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8be4776d pci_request_regions -EXPORT_SYMBOL vmlinux 0x8bebb9c4 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x8c1a3c25 __inet_hash -EXPORT_SYMBOL vmlinux 0x8c200aeb lock_rename_child -EXPORT_SYMBOL vmlinux 0x8c2783fe mdiobus_c45_write_nested -EXPORT_SYMBOL vmlinux 0x8c42eb35 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x8c5e07c9 ps2_drain -EXPORT_SYMBOL vmlinux 0x8c5f3e40 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x8c666d4c clear_inode -EXPORT_SYMBOL vmlinux 0x8c677714 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x8c71bdca dev_addr_mod +EXPORT_SYMBOL vmlinux 0x8bf33876 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x8bf4a562 devm_iounmap +EXPORT_SYMBOL vmlinux 0x8c17b113 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x8c3682ed bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x8c4d2373 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x8c5016db cdrom_release +EXPORT_SYMBOL vmlinux 0x8c5310a8 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x8c55555c dev_load +EXPORT_SYMBOL vmlinux 0x8c5ab321 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x8c6f2802 default_llseek +EXPORT_SYMBOL vmlinux 0x8c7198d1 _dev_printk +EXPORT_SYMBOL vmlinux 0x8c772568 xsk_tx_release EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8c9134c9 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x8c9686ec rt6_lookup -EXPORT_SYMBOL vmlinux 0x8c9b6784 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x8ca78556 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x8cacd4b9 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x8cae3f93 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x8c94cb19 ilookup5_nowait EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb4efb0 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x8cc24854 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x8cbb21b9 del_gendisk +EXPORT_SYMBOL vmlinux 0x8cbef7c6 netdev_get_by_name EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8ccf8cc4 sk_wait_data +EXPORT_SYMBOL vmlinux 0x8ccad690 mntput +EXPORT_SYMBOL vmlinux 0x8cdd8052 ip6_xmit EXPORT_SYMBOL vmlinux 0x8ce13cc5 udplite_table -EXPORT_SYMBOL vmlinux 0x8ce9f447 of_iomap EXPORT_SYMBOL vmlinux 0x8d0a9a8f __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x8d17f316 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0x8d183475 tcf_register_action -EXPORT_SYMBOL vmlinux 0x8d1d41f1 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x8d1efea5 pskb_extract +EXPORT_SYMBOL vmlinux 0x8d254ccb rio_query_mport EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d348b0b tty_do_resize +EXPORT_SYMBOL vmlinux 0x8d40b23c sk_common_release EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d450026 md_reload_sb +EXPORT_SYMBOL vmlinux 0x8d4be733 napi_build_skb +EXPORT_SYMBOL vmlinux 0x8d528b0b xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5f7d16 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x8d6dca7b key_payload_reserve EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7532c1 km_state_notify -EXPORT_SYMBOL vmlinux 0x8d77d009 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0x8d85dce6 sk_net_capable -EXPORT_SYMBOL vmlinux 0x8d95c500 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x8d9859f9 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x8dd7667d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x8d866676 napi_disable +EXPORT_SYMBOL vmlinux 0x8d9df5fa md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x8dacba97 __folio_batch_release EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8deb8df8 genlmsg_put +EXPORT_SYMBOL vmlinux 0x8de17d1f __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x8de27992 __d_drop EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL vmlinux 0x8df3a97e param_set_dyndbg_classes EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8dfefc0d kvmalloc_node -EXPORT_SYMBOL vmlinux 0x8e107ef6 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x8e2465c5 kmalloc_trace -EXPORT_SYMBOL vmlinux 0x8e27653e netdev_name_in_use -EXPORT_SYMBOL vmlinux 0x8e34bd5c sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x8e424cc7 inet_getname +EXPORT_SYMBOL vmlinux 0x8e018c8c sk_free +EXPORT_SYMBOL vmlinux 0x8e15dd43 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x8e16261e dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8e479a85 snd_pcm_new_internal EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e4f9045 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x8e73efdc xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x8e79e376 simple_lookup -EXPORT_SYMBOL vmlinux 0x8e7bf06d snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x8e706a7c xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops EXPORT_SYMBOL vmlinux 0x8e876807 rps_needed -EXPORT_SYMBOL vmlinux 0x8e893525 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9e8216 block_dirty_folio -EXPORT_SYMBOL vmlinux 0x8e9fc207 param_ops_byte +EXPORT_SYMBOL vmlinux 0x8e9c07e8 sock_pfree +EXPORT_SYMBOL vmlinux 0x8ea03783 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x8eb20c02 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x8eb219fd blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ece5013 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x8ed17205 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x8ed4368a skb_recv_datagram EXPORT_SYMBOL vmlinux 0x8edbfffb hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8ee95b1c backlight_device_register -EXPORT_SYMBOL vmlinux 0x8ef50bcc blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x8ef85be8 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x8efa313c pci_remove_bus -EXPORT_SYMBOL vmlinux 0x8efb3643 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x8ef45815 tcf_block_get +EXPORT_SYMBOL vmlinux 0x8efc7204 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f0df739 seq_open_private -EXPORT_SYMBOL vmlinux 0x8f13d4d5 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x8f076c5b pipe_unlock +EXPORT_SYMBOL vmlinux 0x8f16ad57 key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x8f2c4c01 padata_free EXPORT_SYMBOL vmlinux 0x8f2e608c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x8f340300 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x8f356212 md_unregister_thread -EXPORT_SYMBOL vmlinux 0x8f44353d phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x8f449b21 tcp_child_process -EXPORT_SYMBOL vmlinux 0x8f53e55b flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x8f371157 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x8f492dd4 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x8f4aa962 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x8f5401e1 vfs_get_tree EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major -EXPORT_SYMBOL vmlinux 0x8f5e0909 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x8f619cf8 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0x8f6544f6 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x8f67eb95 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x8f7a200d sock_no_listen +EXPORT_SYMBOL vmlinux 0x8f6edc50 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x8f74be5e ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x8f81e94e input_release_device +EXPORT_SYMBOL vmlinux 0x8f887f5f set_user_nice +EXPORT_SYMBOL vmlinux 0x8f89f101 bio_chain EXPORT_SYMBOL vmlinux 0x8f8f657f bsearch EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9e2bc9 discard_new_inode -EXPORT_SYMBOL vmlinux 0x8faa4b41 mii_ethtool_gset EXPORT_SYMBOL vmlinux 0x8fab1b69 mtree_load -EXPORT_SYMBOL vmlinux 0x8fb042d1 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x8fb1ec85 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0x8fc247ed security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd947b7 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x8fdd15cd page_pool_get_stats EXPORT_SYMBOL vmlinux 0x8fe09cf5 zstd_cctx_workspace_bound EXPORT_SYMBOL vmlinux 0x8fe35457 xxh32_update -EXPORT_SYMBOL vmlinux 0x8fefbd6b scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x8fe94424 mipi_dsi_turn_on_peripheral EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ff95d59 simple_unlink -EXPORT_SYMBOL vmlinux 0x8ffc73b2 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900dc142 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x900e9373 page_pool_create -EXPORT_SYMBOL vmlinux 0x900eceb2 folio_mapping -EXPORT_SYMBOL vmlinux 0x900f7368 tcf_idr_release EXPORT_SYMBOL vmlinux 0x9011bf51 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x90127324 vga_put EXPORT_SYMBOL vmlinux 0x90186a79 zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x90286057 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x9028c0fb jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x902d5bdd tcf_generic_walker EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x9033eab4 napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x906931a1 put_watch_queue -EXPORT_SYMBOL vmlinux 0x906f9a4a kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x9076ae6d t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x90808e72 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x90947449 get_cached_acl -EXPORT_SYMBOL vmlinux 0x90964d89 component_match_add_release -EXPORT_SYMBOL vmlinux 0x90c0b05b input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x90dee1a6 get_fs_type -EXPORT_SYMBOL vmlinux 0x90efeb56 snd_timer_instance_free -EXPORT_SYMBOL vmlinux 0x911102f9 drop_super -EXPORT_SYMBOL vmlinux 0x9116343c kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x912d5345 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x91324072 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x90390c60 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x906dab0b i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x908ce64a blk_put_queue +EXPORT_SYMBOL vmlinux 0x90b8b97c sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x90cea2b0 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x90cf587c fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x90e6901a netdev_state_change +EXPORT_SYMBOL vmlinux 0x90ecdf77 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x910a4668 fb_show_logo +EXPORT_SYMBOL vmlinux 0x9114d405 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x912d14fd tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x9135dba6 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x91366028 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x91428403 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x916239a7 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x91659e7e security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x9145a9e0 iterate_fd EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue -EXPORT_SYMBOL vmlinux 0x91730f6d input_inject_event -EXPORT_SYMBOL vmlinux 0x917d05f0 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x917e1e9a bdi_alloc EXPORT_SYMBOL vmlinux 0x91872199 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0x918c7d20 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x91952a1c tcp_seq_start EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a76fdb fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove EXPORT_SYMBOL vmlinux 0x91a9c232 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x91abc163 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x91af4569 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x91ba8bb6 mmc_start_request +EXPORT_SYMBOL vmlinux 0x91beae18 skb_find_text EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91e59bc3 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x91f596f3 block_write_end +EXPORT_SYMBOL vmlinux 0x91da954e pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x91eb7be6 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x91f03ffe seq_escape_mem EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x92157cdf blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x91f8280c skb_copy_bits +EXPORT_SYMBOL vmlinux 0x920a9bab d_obtain_root +EXPORT_SYMBOL vmlinux 0x92148d7f ping_prot EXPORT_SYMBOL vmlinux 0x921b07b1 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923e3d6a __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x923c7697 get_fs_type +EXPORT_SYMBOL vmlinux 0x924050c0 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x9241cfa3 sk_error_report +EXPORT_SYMBOL vmlinux 0x925ca8a0 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x926bfafb tty_do_resize EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x928e992a mmc_remove_host +EXPORT_SYMBOL vmlinux 0x92778b6c request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x927bace8 noop_llseek +EXPORT_SYMBOL vmlinux 0x927d822b sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x9288cd34 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92a4a4cf unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x92aa5c87 input_unregister_device -EXPORT_SYMBOL vmlinux 0x92aa7949 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x92ab3062 register_netdev EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c67a23 kmem_cache_free EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event -EXPORT_SYMBOL vmlinux 0x92d153cf md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x92d27d03 dma_fence_free EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92d6a0d1 ip_fraglist_init EXPORT_SYMBOL vmlinux 0x92da5eb1 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x92dc3f16 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x92dd9115 kern_unmount +EXPORT_SYMBOL vmlinux 0x92e3d6fb netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x92e688b3 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x92e708c8 generic_file_mmap EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92eea2ad flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x92f4306e pci_set_power_state EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fb8555 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93084e6f flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x9315517b i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x93112433 snd_pcm_set_ops EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x933efc47 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x93479407 phy_get_pause -EXPORT_SYMBOL vmlinux 0x936a37c3 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x9371f64c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x93384709 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x933f42fc cdrom_check_events +EXPORT_SYMBOL vmlinux 0x9368f02a vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x936eee04 snd_pcm_hw_param_last EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x93881692 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x93a4efb8 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x937dc1b8 uart_match_port +EXPORT_SYMBOL vmlinux 0x938030a5 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x938c669d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x93914360 filp_open +EXPORT_SYMBOL vmlinux 0x93a136a2 snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0x93a437b3 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x93a4c2c4 from_kgid_munged EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b4a0c9 snd_pcm_hw_param_first -EXPORT_SYMBOL vmlinux 0x93bf9f2a eth_header_parse -EXPORT_SYMBOL vmlinux 0x93c1b79c dst_destroy -EXPORT_SYMBOL vmlinux 0x93cb17e9 iterate_fd -EXPORT_SYMBOL vmlinux 0x93d0e12c pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x93d2a994 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x93c056bb wireless_send_event +EXPORT_SYMBOL vmlinux 0x93c692e6 put_fs_context +EXPORT_SYMBOL vmlinux 0x93c738fb sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x93d2caba input_free_device EXPORT_SYMBOL vmlinux 0x93d73c18 nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL vmlinux 0x93da247f pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x93e1bd31 simple_pin_fs EXPORT_SYMBOL vmlinux 0x93fad5b1 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x93fe9133 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x9400a3d8 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x9407f193 input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0x94098ff8 snd_interval_list +EXPORT_SYMBOL vmlinux 0x940b7e28 mdio_device_free EXPORT_SYMBOL vmlinux 0x9412dbd9 of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x94132060 sk_reset_timer EXPORT_SYMBOL vmlinux 0x9430c96b posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x94363ebf fiemap_prep EXPORT_SYMBOL vmlinux 0x943dc8aa crc32_be -EXPORT_SYMBOL vmlinux 0x943ec15f pci_irq_vector +EXPORT_SYMBOL vmlinux 0x94441414 param_set_invbool +EXPORT_SYMBOL vmlinux 0x9446f55b fs_param_is_blob EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked EXPORT_SYMBOL vmlinux 0x945eb81c add_device_randomness -EXPORT_SYMBOL vmlinux 0x947dd955 proc_create -EXPORT_SYMBOL vmlinux 0x94812f17 vm_insert_page -EXPORT_SYMBOL vmlinux 0x948a4ddb mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x945ecd68 mdiobb_write_c45 +EXPORT_SYMBOL vmlinux 0x9481bce9 done_path_create EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x9497e4f7 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x94a375b1 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x94a42d0a vc_resize EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 EXPORT_SYMBOL vmlinux 0x94c4a496 nla_append -EXPORT_SYMBOL vmlinux 0x94d1ffbf set_page_writeback -EXPORT_SYMBOL vmlinux 0x94d63e2b of_node_name_eq -EXPORT_SYMBOL vmlinux 0x94e569ab md_register_thread -EXPORT_SYMBOL vmlinux 0x94f9179e skb_append +EXPORT_SYMBOL vmlinux 0x94ebe783 ip_output +EXPORT_SYMBOL vmlinux 0x94faff6a netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x94fc9b36 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x9507b6d6 netlink_unicast EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user EXPORT_SYMBOL vmlinux 0x950da88d regset_get -EXPORT_SYMBOL vmlinux 0x9521c7f0 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x9529168b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x951b0e05 processor +EXPORT_SYMBOL vmlinux 0x952e192f tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x9533304e configfs_unregister_group EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp -EXPORT_SYMBOL vmlinux 0x954301bc vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x9547e3a3 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x954bb5b8 pci_enable_device EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9557bca4 mmc_request_done -EXPORT_SYMBOL vmlinux 0x95628e24 inet_addr_type -EXPORT_SYMBOL vmlinux 0x95782650 snd_dma_alloc_dir_pages -EXPORT_SYMBOL vmlinux 0x95802bf2 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x958499d9 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x95853357 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x9590816d devm_memremap +EXPORT_SYMBOL vmlinux 0x958df68d bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x95914bc7 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x959286c6 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x95a0eb97 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x95ab6400 sock_init_data +EXPORT_SYMBOL vmlinux 0x95bc04c7 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x95c93fb2 snd_timer_pause +EXPORT_SYMBOL vmlinux 0x95cb3de8 putname +EXPORT_SYMBOL vmlinux 0x95cdf7c2 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x95cf65d7 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x95d0a92e snd_ctl_make_virtual_master -EXPORT_SYMBOL vmlinux 0x95d207ef vfs_path_parent_lookup -EXPORT_SYMBOL vmlinux 0x95d339f1 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x95da69ea devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 -EXPORT_SYMBOL vmlinux 0x9612847f d_set_fallthru +EXPORT_SYMBOL vmlinux 0x95e32a70 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x95f05f37 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x95f578aa pci_free_irq +EXPORT_SYMBOL vmlinux 0x96135468 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x9618ede0 mutex_unlock -EXPORT_SYMBOL vmlinux 0x962a2c97 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x962d361d of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x963e02f9 inode_io_list_del -EXPORT_SYMBOL vmlinux 0x9644bba5 tcf_block_put +EXPORT_SYMBOL vmlinux 0x9620386e mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x963d60f7 file_modified EXPORT_SYMBOL vmlinux 0x9645ed0b pgprot_user EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x96603250 kmalloc_large +EXPORT_SYMBOL vmlinux 0x966617bf security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x9673813d generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x9681adae generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x968366ce ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x968b5536 rawnand_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0x969e83b8 pci_dev_get -EXPORT_SYMBOL vmlinux 0x96be3ffb of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x96bf68a8 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x96c08f47 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x968a0ea4 skb_ext_add +EXPORT_SYMBOL vmlinux 0x96904d7f fs_param_is_path +EXPORT_SYMBOL vmlinux 0x9697c129 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x96afeca5 udp_disconnect EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96dbda7d simple_release_fs -EXPORT_SYMBOL vmlinux 0x96fac526 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x96da8249 __f_setown +EXPORT_SYMBOL vmlinux 0x96e308c0 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x96e5618d dquot_operations EXPORT_SYMBOL vmlinux 0x9709dbc5 current_work -EXPORT_SYMBOL vmlinux 0x970a516c mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x970f29f6 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x970ac922 file_open_root +EXPORT_SYMBOL vmlinux 0x970bc328 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x97106714 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x9711490d i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0x971a4194 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x971e3126 pci_request_selected_regions EXPORT_SYMBOL vmlinux 0x97255bdf strlen -EXPORT_SYMBOL vmlinux 0x974c271d reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x972eaf5b tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x9737ce25 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x97382973 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0x974d2ff1 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x974fdd84 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x97589fdb generic_update_time -EXPORT_SYMBOL vmlinux 0x9772e44a sock_i_uid -EXPORT_SYMBOL vmlinux 0x9778d9c3 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x97a2ce30 tty_register_device +EXPORT_SYMBOL vmlinux 0x974ec008 simple_statfs +EXPORT_SYMBOL vmlinux 0x9762e5cd vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x976cb117 mr_dump +EXPORT_SYMBOL vmlinux 0x97762f16 snd_card_new +EXPORT_SYMBOL vmlinux 0x97815185 udp_prot +EXPORT_SYMBOL vmlinux 0x97aca104 set_page_writeback EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b358c3 mr_table_dump -EXPORT_SYMBOL vmlinux 0x97b6f9af mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x97b2561d pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97d183b2 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x97d5a5f5 vm_node_stat -EXPORT_SYMBOL vmlinux 0x97ddb259 da903x_query_status -EXPORT_SYMBOL vmlinux 0x97e94c73 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x97ec4524 unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x97ee4871 buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0x97f67f4a netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x981034e4 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x981faa65 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x98297594 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x9831c725 mdiobb_write_c45 +EXPORT_SYMBOL vmlinux 0x97dc648f jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x97ec6f8c scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x97ed4640 init_task +EXPORT_SYMBOL vmlinux 0x97ed4a04 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x982cccac inet6_getname EXPORT_SYMBOL vmlinux 0x983ac031 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x984c9112 __inode_add_bytes EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x9861f46a inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x987bc8c1 generic_read_dir +EXPORT_SYMBOL vmlinux 0x985ec175 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x987bd04d sock_create_kern EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset -EXPORT_SYMBOL vmlinux 0x989fc267 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x9890bcc1 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98d73aae ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x98db9084 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x98e0463a dquot_alloc_inode EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f06ebf grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x99043249 _dev_printk +EXPORT_SYMBOL vmlinux 0x98eaf0b2 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x98f29907 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x98f2bdad xfrm_init_replay EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x991032cd __skb_ext_del -EXPORT_SYMBOL vmlinux 0x9912c298 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x9930a609 cqhci_irq +EXPORT_SYMBOL vmlinux 0x990c5ed3 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x990d062b ihold +EXPORT_SYMBOL vmlinux 0x99138168 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x9914a341 set_posix_acl EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available -EXPORT_SYMBOL vmlinux 0x99365804 configfs_unregister_group EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier EXPORT_SYMBOL vmlinux 0x993b03df percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x9950ab66 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x993d6eb9 unregister_key_type +EXPORT_SYMBOL vmlinux 0x993e18d0 blk_mq_delay_kick_requeue_list EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995c9490 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x995cc9fa memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x995419f9 file_ns_capable +EXPORT_SYMBOL vmlinux 0x9958fd0d phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x996829ea swake_up_all -EXPORT_SYMBOL vmlinux 0x997b27e1 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x997d9012 skb_queue_head -EXPORT_SYMBOL vmlinux 0x997f1896 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x999a3fab blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x999b0a4e dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x999d2772 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x9975737a ps2_command +EXPORT_SYMBOL vmlinux 0x997cd25b of_phy_find_device +EXPORT_SYMBOL vmlinux 0x997fc137 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x9995f90b dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b06be3 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x99bb701a pci_pme_capable EXPORT_SYMBOL vmlinux 0x99bb8806 memmove -EXPORT_SYMBOL vmlinux 0x99c6b90e setattr_copy EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99e6b436 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x99e93940 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x99f41ddd amba_device_register -EXPORT_SYMBOL vmlinux 0x99f53976 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x99e6dc71 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x99f73e70 would_dump EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align EXPORT_SYMBOL vmlinux 0x99fd4736 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x99fd6f3c max8998_update_reg -EXPORT_SYMBOL vmlinux 0x99fe2b4a fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x9a0dd124 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x9a044c98 inet_stream_ops EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a4b0745 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x9a2092fc phy_attached_info +EXPORT_SYMBOL vmlinux 0x9a2320f3 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x9a2d7aef blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x9a2fc923 put_watch_queue +EXPORT_SYMBOL vmlinux 0x9a328fee pci_dev_driver EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk EXPORT_SYMBOL vmlinux 0x9a59c141 clk_add_alias -EXPORT_SYMBOL vmlinux 0x9a60dbf3 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x9a6e118e tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a7af7b7 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range -EXPORT_SYMBOL vmlinux 0x9a87e2fb ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x9a9468ad xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x9a9b06d1 notify_change -EXPORT_SYMBOL vmlinux 0x9aa8d385 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x9a866526 d_delete +EXPORT_SYMBOL vmlinux 0x9a87e19f proc_mkdir +EXPORT_SYMBOL vmlinux 0x9a969ff1 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x9a9c987f device_add_disk +EXPORT_SYMBOL vmlinux 0x9aa84212 amba_request_regions EXPORT_SYMBOL vmlinux 0x9aa9cea4 trace_print_flags_seq_u64 -EXPORT_SYMBOL vmlinux 0x9aab0ade dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9abcb3e6 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x9adc620d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x9ab3bd69 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x9abf7d97 sock_register +EXPORT_SYMBOL vmlinux 0x9ac7747e ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x9ad965ed phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x9adef3bb devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9af2fea7 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x9b033a11 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x9b09793c file_open_root -EXPORT_SYMBOL vmlinux 0x9b0f6d05 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x9ae4c683 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x9b00aaaf tcp_recv_skb +EXPORT_SYMBOL vmlinux 0x9b10218b pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x9b124c76 mtree_store EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b13a628 lock_rename +EXPORT_SYMBOL vmlinux 0x9b17d75d inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x9b1b7306 xxh64 +EXPORT_SYMBOL vmlinux 0x9b24cff9 tls_server_hello_psk EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b2c42ef jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b3cabd6 xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x9b3e5aef bioset_exit EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4c959d ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x9b576677 tcp_close -EXPORT_SYMBOL vmlinux 0x9b699dae netdev_get_by_index +EXPORT_SYMBOL vmlinux 0x9b639fdb phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize -EXPORT_SYMBOL vmlinux 0x9b7506c6 release_pages -EXPORT_SYMBOL vmlinux 0x9ba601ea build_skb -EXPORT_SYMBOL vmlinux 0x9bb5c366 tegra_dfll_register -EXPORT_SYMBOL vmlinux 0x9bcc69d2 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x9b7142ae blk_get_queue +EXPORT_SYMBOL vmlinux 0x9b72ba22 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x9b74e116 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x9ba9d1d0 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x9bb98938 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x9bc4da2c mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0x9bd2cf0c rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x9be72886 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x9beaff5a vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x9bee5e21 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x9bf984dd snd_card_free -EXPORT_SYMBOL vmlinux 0x9c00c32b free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x9c1adb57 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x9c2789f1 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x9c2fef06 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x9c375bf8 fget +EXPORT_SYMBOL vmlinux 0x9bf0b26e phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x9bf49be2 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x9c05a0c3 __mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x9c0992bc blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x9c3717c9 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x9c386d05 find_vma +EXPORT_SYMBOL vmlinux 0x9c40424d get_vm_area +EXPORT_SYMBOL vmlinux 0x9c50c701 __scm_send +EXPORT_SYMBOL vmlinux 0x9c585109 blk_finish_plug EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c5a802e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x9c5b697c iov_iter_alignment EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c7485fb vif_device_init EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c90672a ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x9c987d07 dev_get_flags EXPORT_SYMBOL vmlinux 0x9c9ce113 mtree_alloc_rrange EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb661f0 mount_bdev -EXPORT_SYMBOL vmlinux 0x9cc5f4c2 current_in_userns -EXPORT_SYMBOL vmlinux 0x9cccf604 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x9cb497fb param_set_int EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9ccfbd6b blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x9cd57581 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x9cdbe0e2 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cee902e param_ops_bint -EXPORT_SYMBOL vmlinux 0x9cf6ca65 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x9ce33273 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x9d05bc99 __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x9d06ac33 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1341df tty_check_change -EXPORT_SYMBOL vmlinux 0x9d2101b5 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x9d234c75 rawnand_sw_bch_init EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2bb9a4 of_io_request_and_map EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d49d016 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x9d370195 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x9d51d5ec __netif_napi_del EXPORT_SYMBOL vmlinux 0x9d5cd559 reservation_ww_class -EXPORT_SYMBOL vmlinux 0x9d5d82e4 scsi_device_put EXPORT_SYMBOL vmlinux 0x9d669763 memcpy -EXPORT_SYMBOL vmlinux 0x9d6caff8 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x9d8bd3cb neigh_app_ns -EXPORT_SYMBOL vmlinux 0x9d909549 sock_queue_rcv_skb_reason -EXPORT_SYMBOL vmlinux 0x9d9d68dd d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x9dbfd948 netlink_ack +EXPORT_SYMBOL vmlinux 0x9d6b4613 tty_register_device +EXPORT_SYMBOL vmlinux 0x9d8feaf2 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x9d9ce3c0 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x9dac3082 seq_release +EXPORT_SYMBOL vmlinux 0x9db8579c inet_addr_type +EXPORT_SYMBOL vmlinux 0x9dba9d3f bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9dbb951b snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x9dc83df8 ata_print_version EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9de3c3ae i2c_find_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0x9de4113e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x9deed997 fsync_bdev +EXPORT_SYMBOL vmlinux 0x9df6f4d9 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits -EXPORT_SYMBOL vmlinux 0x9e0929eb blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x9dfca85d devm_ioremap EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e12bdda __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e17dbf9 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x9e1f5c68 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x9e2e240f tcp_read_sock -EXPORT_SYMBOL vmlinux 0x9e397561 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x9e3d0a4f flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x9e41a39f mapping_read_folio_gfp EXPORT_SYMBOL vmlinux 0x9e4e9296 dql_init EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e60c9f5 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x9e51756f skb_eth_push EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e69919c devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL vmlinux 0x9e7a6af4 touch_buffer -EXPORT_SYMBOL vmlinux 0x9e848c2a pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x9e72d4fe folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x9e86a08d bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x9e9a9cb4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x9e9dc80b pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission -EXPORT_SYMBOL vmlinux 0x9e9f0552 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x9e9f9829 param_get_invbool EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9eb38702 kill_anon_super -EXPORT_SYMBOL vmlinux 0x9eb81c6c filemap_map_pages +EXPORT_SYMBOL vmlinux 0x9eb3b93d scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x9eb63dbe proc_create +EXPORT_SYMBOL vmlinux 0x9ec05e82 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ef8eaa8 km_new_mapping -EXPORT_SYMBOL vmlinux 0x9f24c69c folio_add_lru +EXPORT_SYMBOL vmlinux 0x9ee9ec69 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x9f0e0f2c flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x9f2b81d1 d_lookup +EXPORT_SYMBOL vmlinux 0x9f2f5405 generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4ac8ee vfs_symlink +EXPORT_SYMBOL vmlinux 0x9f479883 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x9f490cbe pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict -EXPORT_SYMBOL vmlinux 0x9f53f955 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x9f510dee pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5c4d31 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x9f6ed573 set_binfmt +EXPORT_SYMBOL vmlinux 0x9f5ce9ad elv_rb_latter_request EXPORT_SYMBOL vmlinux 0x9f7ae060 node_states -EXPORT_SYMBOL vmlinux 0x9f7f63ce nand_write_page_raw -EXPORT_SYMBOL vmlinux 0x9f82e46d request_firmware EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9faf86ba proto_unregister +EXPORT_SYMBOL vmlinux 0x9f9925ef sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fbf67f5 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x9fd6b79c make_kprojid +EXPORT_SYMBOL vmlinux 0x9fbd2450 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x9fbf210c generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x9fc07ed7 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x9fd28d88 thaw_super EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9feb6efe skb_free_datagram +EXPORT_SYMBOL vmlinux 0x9fedbadd tcp_splice_read EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9fef8cf5 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x9ff2aa68 scsi_done -EXPORT_SYMBOL vmlinux 0x9ff69818 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa002a5cf phy_register_fixup +EXPORT_SYMBOL vmlinux 0xa012ded5 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xa013d2c3 sock_sendmsg EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa02277ea mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xa02f234f vme_master_mmap EXPORT_SYMBOL vmlinux 0xa032da5f kobject_del EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa0366646 pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa049ec4c mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0xa04a1df3 _snd_ctl_add_follower EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b1efe gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0xa05b2e9b xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r EXPORT_SYMBOL vmlinux 0xa071249b scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xa07a3aa0 get_user_pages EXPORT_SYMBOL vmlinux 0xa07ab4ac kobject_init -EXPORT_SYMBOL vmlinux 0xa07b25e9 __post_watch_notification EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa0823405 qdisc_reset EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa09480be rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xa084e731 alloc_fddidev EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end -EXPORT_SYMBOL vmlinux 0xa0adfddb xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xa0acc86f neigh_parms_alloc EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0aefe3e bit_waitqueue EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b68f0c vme_bus_num -EXPORT_SYMBOL vmlinux 0xa0bdc9a1 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0xa0c56709 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xa0c5683e snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL vmlinux 0xa0cbf166 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xa0d08546 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xa0d8eadd tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xa0d980e7 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xa0b4ba0d neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xa0bba821 mdio_driver_register +EXPORT_SYMBOL vmlinux 0xa0bdc18c dev_open +EXPORT_SYMBOL vmlinux 0xa0cc73ce kfree_skb_reason EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa1049e0c nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0xa105fd5a generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xa1050a95 kernel_write EXPORT_SYMBOL vmlinux 0xa106751a clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa11cce34 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xa11d16d5 md_integrity_register -EXPORT_SYMBOL vmlinux 0xa12535b0 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xa127fe61 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xa11116f8 sock_common_setsockopt EXPORT_SYMBOL vmlinux 0xa12826fe kobject_put -EXPORT_SYMBOL vmlinux 0xa1289ad8 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xa12c069d dst_dev_put -EXPORT_SYMBOL vmlinux 0xa13540da d_invalidate -EXPORT_SYMBOL vmlinux 0xa136e755 of_match_device +EXPORT_SYMBOL vmlinux 0xa12cd54c seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xa139fdc4 netdev_info EXPORT_SYMBOL vmlinux 0xa14e4f61 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xa1555b42 skb_condense -EXPORT_SYMBOL vmlinux 0xa15957db inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xa1545412 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa1588d31 dma_resv_fini EXPORT_SYMBOL vmlinux 0xa15d0131 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xa165cd74 pci_read_vpd_any EXPORT_SYMBOL vmlinux 0xa16b21fb wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xa16d7b5b pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xa1709839 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa17477a0 eth_gro_receive EXPORT_SYMBOL vmlinux 0xa17bd3fc add_wait_queue -EXPORT_SYMBOL vmlinux 0xa1992d1b filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xa1a0f192 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xa1af96d4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xa1bc63e2 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xa1a08e85 bdi_register EXPORT_SYMBOL vmlinux 0xa1d131ed vmemdup_user +EXPORT_SYMBOL vmlinux 0xa1d373b9 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xa1ebab14 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xa2040b35 tegra_ivc_reset EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp EXPORT_SYMBOL vmlinux 0xa209cd26 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0xa214e846 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xa218017a xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xa224c58e __invalidate_device -EXPORT_SYMBOL vmlinux 0xa22a5713 param_ops_short +EXPORT_SYMBOL vmlinux 0xa20b4df1 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xa22d92ad bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa232c006 vme_unregister_bridge EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort EXPORT_SYMBOL vmlinux 0xa24491bf ida_free -EXPORT_SYMBOL vmlinux 0xa246978a vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xa24d23a3 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa263294d __neigh_event_send +EXPORT_SYMBOL vmlinux 0xa25d6d3e misc_register EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2647474 ihold -EXPORT_SYMBOL vmlinux 0xa266adc4 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xa273942e xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xa27e5fef pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa28efa12 dma_fence_init -EXPORT_SYMBOL vmlinux 0xa2a8678c tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0xa2ad2c3b close_fd_get_file -EXPORT_SYMBOL vmlinux 0xa2bcd015 pipe_unlock +EXPORT_SYMBOL vmlinux 0xa2ba1bc9 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xa2cacc75 flow_indr_dev_register EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2efef27 clear_nlink -EXPORT_SYMBOL vmlinux 0xa2f018a9 snd_ctl_boolean_mono_info -EXPORT_SYMBOL vmlinux 0xa2f3551b tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xa3202008 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0xa32e0db1 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0xa33e43b0 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xa3439816 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xa34b9472 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xa36acfab is_free_buddy_page -EXPORT_SYMBOL vmlinux 0xa36c2059 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa2e36540 dm_get_device +EXPORT_SYMBOL vmlinux 0xa2ff064c jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa301ed8b generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xa30e4458 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa33e04bd rt_dst_clone +EXPORT_SYMBOL vmlinux 0xa33fa3ce insert_inode_locked +EXPORT_SYMBOL vmlinux 0xa349ad9b netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xa34ec1a3 pcie_capability_clear_and_set_word_locked EXPORT_SYMBOL vmlinux 0xa381944f dql_reset -EXPORT_SYMBOL vmlinux 0xa3949506 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xa398b6b8 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xa3982ea5 netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0xa3a54979 init_on_free -EXPORT_SYMBOL vmlinux 0xa3a813c2 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xa3ac2103 pci_map_rom EXPORT_SYMBOL vmlinux 0xa3ba27bf vme_free_consistent +EXPORT_SYMBOL vmlinux 0xa3bb2ac4 backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch EXPORT_SYMBOL vmlinux 0xa3c00c06 memcg_sockets_enabled_key -EXPORT_SYMBOL vmlinux 0xa3c483d1 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xa3c384c7 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xa3c4e2e3 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0xa3c7bd47 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0xa3ea0a95 bdi_put +EXPORT_SYMBOL vmlinux 0xa3c9fa27 __bread_gfp +EXPORT_SYMBOL vmlinux 0xa3ee5c71 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40090b6 mr_table_alloc -EXPORT_SYMBOL vmlinux 0xa400d8ac napi_gro_frags -EXPORT_SYMBOL vmlinux 0xa4137598 tls_handshake_cancel -EXPORT_SYMBOL vmlinux 0xa418e392 __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa433234d ilookup5_nowait EXPORT_SYMBOL vmlinux 0xa43799a8 rfs_needed -EXPORT_SYMBOL vmlinux 0xa43c9718 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key EXPORT_SYMBOL vmlinux 0xa4552208 init_on_alloc -EXPORT_SYMBOL vmlinux 0xa45972f1 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0xa45b9968 kmem_cache_create EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev -EXPORT_SYMBOL vmlinux 0xa46b17dc alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0xa4996076 dev_activate -EXPORT_SYMBOL vmlinux 0xa49be180 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xa476ead5 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xa4790e2a setattr_copy +EXPORT_SYMBOL vmlinux 0xa487beaf i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xa48dc4ba snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0xa493f63d passthru_features_check EXPORT_SYMBOL vmlinux 0xa4a607eb crypto_kdf108_setkey -EXPORT_SYMBOL vmlinux 0xa4a6d120 input_register_handler -EXPORT_SYMBOL vmlinux 0xa4ae7b20 snd_sgbuf_get_addr -EXPORT_SYMBOL vmlinux 0xa4c8c477 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xa4dc0145 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xa4b8b379 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa4c2c406 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xa4ebe382 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xa4ed1ee7 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xa4ed6190 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa4f23bb6 folio_set_bh EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa512e350 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xa513c8c2 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xa5185084 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xa51912a3 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0xa51a2967 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xa51f186b seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0xa52d6316 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xa544004a phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xa544ce50 pcie_capability_clear_and_set_word_unlocked +EXPORT_SYMBOL vmlinux 0xa5403ae8 skb_store_bits +EXPORT_SYMBOL vmlinux 0xa5415633 tso_build_data +EXPORT_SYMBOL vmlinux 0xa5490ba2 blk_integrity_compare EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color EXPORT_SYMBOL vmlinux 0xa55acf32 tegra_ahb_enable_smmu -EXPORT_SYMBOL vmlinux 0xa561b6fe scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xa562dcaf phy_connect +EXPORT_SYMBOL vmlinux 0xa5634a89 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xa565124c _dev_crit EXPORT_SYMBOL vmlinux 0xa5684076 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xa56bdc1a register_filesystem EXPORT_SYMBOL vmlinux 0xa56fde1c __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xa5738553 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xa57a0218 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xa57c1128 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xa583d4ef snd_register_oss_device -EXPORT_SYMBOL vmlinux 0xa584473b snd_sgbuf_get_chunk_size -EXPORT_SYMBOL vmlinux 0xa5a10936 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xa57fa196 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xa58abafd pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xa59152a4 eth_type_trans +EXPORT_SYMBOL vmlinux 0xa5955415 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xa5a6d630 flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0xa5a91711 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xa5d08da5 nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0xa5d3fe45 map_destroy -EXPORT_SYMBOL vmlinux 0xa5ec5829 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xa5e8fa0d skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xa5fedf6c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xa6058871 inet_frags_init +EXPORT_SYMBOL vmlinux 0xa60a1d28 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xa60af9a5 get_tree_nodev EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa635256d fifo_set_limit -EXPORT_SYMBOL vmlinux 0xa635f900 simple_fill_super -EXPORT_SYMBOL vmlinux 0xa6368b31 import_single_range +EXPORT_SYMBOL vmlinux 0xa61cf080 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xa63f5953 kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa651fb3d inode_init_once -EXPORT_SYMBOL vmlinux 0xa676f069 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xa650d8d1 phy_attach +EXPORT_SYMBOL vmlinux 0xa65fbec0 pci_find_capability +EXPORT_SYMBOL vmlinux 0xa66020ab of_get_next_child +EXPORT_SYMBOL vmlinux 0xa669541c xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid EXPORT_SYMBOL vmlinux 0xa68613dd get_jiffies_64 +EXPORT_SYMBOL vmlinux 0xa686f338 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xa68deaab mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r EXPORT_SYMBOL vmlinux 0xa69d151c _raw_write_lock -EXPORT_SYMBOL vmlinux 0xa6a3e7d3 get_task_cred +EXPORT_SYMBOL vmlinux 0xa69e22b8 dquot_drop EXPORT_SYMBOL vmlinux 0xa6a7a2ad div_s64_rem -EXPORT_SYMBOL vmlinux 0xa6ba0aa1 ethtool_aggregate_phy_stats -EXPORT_SYMBOL vmlinux 0xa6e302a9 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xa6aafded snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0xa6bcaa33 dm_io +EXPORT_SYMBOL vmlinux 0xa6c1c964 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xa6c26d87 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xa6cab4c1 of_node_name_eq +EXPORT_SYMBOL vmlinux 0xa6ce41a2 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0xa6d13bfd pcim_enable_device EXPORT_SYMBOL vmlinux 0xa6e3c970 _find_first_bit_le -EXPORT_SYMBOL vmlinux 0xa6e58a55 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0xa6e64544 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xa6f51463 fs_bio_set EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available -EXPORT_SYMBOL vmlinux 0xa70e2f70 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xa70edde3 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0xa714758e sg_copy_buffer -EXPORT_SYMBOL vmlinux 0xa72ce3cf igrab +EXPORT_SYMBOL vmlinux 0xa72b6c1f __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0xa72fa1e1 of_lpddr2_get_info EXPORT_SYMBOL vmlinux 0xa73ee62b _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xa74aeb96 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xa7447886 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xa74a1a84 to_ndd EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa75897e5 devm_ioremap -EXPORT_SYMBOL vmlinux 0xa7616b73 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xa7645488 devm_release_resource +EXPORT_SYMBOL vmlinux 0xa755a617 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xa75ec04b get_tree_keyed +EXPORT_SYMBOL vmlinux 0xa7703b3d tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa7771f06 pci_get_subsys EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa78b3720 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xa792a296 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xa796cc8b tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xa79ae562 pps_event -EXPORT_SYMBOL vmlinux 0xa7a71466 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xa79db4b3 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0xa79f5557 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xa7a71611 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xa7a7da2e netdev_offload_xstats_get EXPORT_SYMBOL vmlinux 0xa7b3181c up_read -EXPORT_SYMBOL vmlinux 0xa7c3d719 __folio_put -EXPORT_SYMBOL vmlinux 0xa7deeced md_flush_request -EXPORT_SYMBOL vmlinux 0xa7ec760b twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa7c129bb __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f08014 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xa8030bb5 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xa80acb56 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xa810de0f sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0xa815bc60 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xa81d4a53 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xa822790b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xa81114e0 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xa818f06a inet_select_addr +EXPORT_SYMBOL vmlinux 0xa82bb1b3 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xa8390b95 inode_init_owner +EXPORT_SYMBOL vmlinux 0xa83b7526 pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa84eb82b inode_init_always -EXPORT_SYMBOL vmlinux 0xa84fbf0a dcb_setrewr -EXPORT_SYMBOL vmlinux 0xa85ccd8c find_vma_intersection -EXPORT_SYMBOL vmlinux 0xa8634c2b dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0xa8773c0b vme_register_bridge -EXPORT_SYMBOL vmlinux 0xa8851ae5 param_ops_string -EXPORT_SYMBOL vmlinux 0xa88c04a0 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0xa895df7d mii_nway_restart +EXPORT_SYMBOL vmlinux 0xa84d857a pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xa850a082 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa87c3da4 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xa8862e19 neigh_lookup +EXPORT_SYMBOL vmlinux 0xa88d1fae rproc_put +EXPORT_SYMBOL vmlinux 0xa898e265 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89e1033 __sock_i_ino +EXPORT_SYMBOL vmlinux 0xa89e11a1 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xa89f1ea7 get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0xa8a08caf trace_print_array_seq EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8ac3b0f mdiobb_read_c45 +EXPORT_SYMBOL vmlinux 0xa8acde56 cqhci_resume +EXPORT_SYMBOL vmlinux 0xa8ae6bae neigh_xmit EXPORT_SYMBOL vmlinux 0xa8b2ec4c dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0xa8b4bac7 sock_wfree -EXPORT_SYMBOL vmlinux 0xa8c0ba88 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xa8c32e83 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0xa8c563a2 security_path_unlink +EXPORT_SYMBOL vmlinux 0xa8c207c3 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xa8c45777 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8d24620 zstd_init_cstream -EXPORT_SYMBOL vmlinux 0xa8e25ec9 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xa8e7a662 security_inode_copy_up EXPORT_SYMBOL vmlinux 0xa8ec7d34 crc_ccitt -EXPORT_SYMBOL vmlinux 0xa8f44a49 rproc_put +EXPORT_SYMBOL vmlinux 0xa8f36219 tty_port_close_end EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa8f7f280 idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xa906e1dd single_release -EXPORT_SYMBOL vmlinux 0xa90841c4 elv_rb_del -EXPORT_SYMBOL vmlinux 0xa90a68f4 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xa8f8e0c8 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xa9370ae0 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xa91b7cac __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xa93e854a arp_send EXPORT_SYMBOL vmlinux 0xa947b14f zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0xa95f602b tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0xa95f6a51 pci_select_bars -EXPORT_SYMBOL vmlinux 0xa96424d4 blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96a798e pps_register_source -EXPORT_SYMBOL vmlinux 0xa96f13dc scsi_scan_host -EXPORT_SYMBOL vmlinux 0xa972d9f7 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xa9732080 fb_blank +EXPORT_SYMBOL vmlinux 0xa9671104 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xa9754690 lookup_one_len EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9a90188 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xa9aa7587 from_kgid -EXPORT_SYMBOL vmlinux 0xa9b8e32e blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0xa9c967ab netlink_unicast +EXPORT_SYMBOL vmlinux 0xa978b35a xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xa990c61e __folio_alloc +EXPORT_SYMBOL vmlinux 0xa99efc30 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xa9ac9cce kill_litter_super +EXPORT_SYMBOL vmlinux 0xa9cf641f set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xa9dab0db rtc_add_group EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9fba7f0 phy_find_first -EXPORT_SYMBOL vmlinux 0xaa0265ad bpf_map_get -EXPORT_SYMBOL vmlinux 0xaa102b64 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xa9eda8de scsi_partsize +EXPORT_SYMBOL vmlinux 0xa9f27896 mount_single +EXPORT_SYMBOL vmlinux 0xaa135ff1 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xaa1403dc page_pool_unlink_napi EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa301902 tcp_read_done +EXPORT_SYMBOL vmlinux 0xaa42bd6e input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0xaa42e16a gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0xaa4720fa max8925_reg_read -EXPORT_SYMBOL vmlinux 0xaa474aa7 folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0xaa51c412 i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xaa5580ae phy_attached_info -EXPORT_SYMBOL vmlinux 0xaa5c18a5 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xaa58d052 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xaa5eeefc __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r -EXPORT_SYMBOL vmlinux 0xaa6f0497 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xaa6b946d dev_mc_del_global EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa77e1d2 pci_release_region EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaa9deaa4 genphy_update_link +EXPORT_SYMBOL vmlinux 0xaaa15ef6 eth_gro_complete EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change EXPORT_SYMBOL vmlinux 0xaaad0d21 set_groups -EXPORT_SYMBOL vmlinux 0xaab2e94f folio_unlock -EXPORT_SYMBOL vmlinux 0xaab4ca7f ipmi_platform_add -EXPORT_SYMBOL vmlinux 0xaab71314 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0xaac9c06c of_device_register -EXPORT_SYMBOL vmlinux 0xaaca5645 __kmap_to_page -EXPORT_SYMBOL vmlinux 0xaacc8040 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaac921e3 blk_mq_start_request EXPORT_SYMBOL vmlinux 0xaacc9e27 sort -EXPORT_SYMBOL vmlinux 0xaaccf3b3 bio_endio EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad14d66 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xaad44877 register_netdevice EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaae61fcb tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xaaed7f6d sb_set_blocksize EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab0c5627 inet_sendmsg EXPORT_SYMBOL vmlinux 0xab1d21ec kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0xab1de335 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xab2a7098 logfc +EXPORT_SYMBOL vmlinux 0xab2b1595 pci_find_resource EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab3a4cac skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute EXPORT_SYMBOL vmlinux 0xab3f0281 serio_interrupt +EXPORT_SYMBOL vmlinux 0xab44bd4f seq_read_iter +EXPORT_SYMBOL vmlinux 0xab5039f4 md_done_sync EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab626e65 tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab697eb4 mii_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab6f893a setattr_prepare EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7cd4e8 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xab844c01 inode_insert5 EXPORT_SYMBOL vmlinux 0xab847ac6 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0xab93b043 flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0xabba8454 phy_device_free -EXPORT_SYMBOL vmlinux 0xabdd23dc platform_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xabe81f35 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xabe9c7b1 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xab95b6e5 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xaba0ca6b _dev_warn +EXPORT_SYMBOL vmlinux 0xabaf526d put_ipc_ns +EXPORT_SYMBOL vmlinux 0xabc4d071 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xabd48edf mmc_erase +EXPORT_SYMBOL vmlinux 0xabdbc3d4 pci_clear_master +EXPORT_SYMBOL vmlinux 0xabf23b9d bio_endio EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabfc29db pci_read_config_dword -EXPORT_SYMBOL vmlinux 0xac088198 of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xac119311 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xabf784c6 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xabfb21db fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xac02f79d inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1bc1e8 call_fib_notifiers EXPORT_SYMBOL vmlinux 0xac22b219 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0xac2c233f datagram_poll EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac390263 posix_acl_chmod EXPORT_SYMBOL vmlinux 0xac3f59b7 nand_ecc_sw_bch_correct EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL vmlinux 0xac5c9c0a register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xac5446c1 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac62c3ea mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0xac671206 make_kuid -EXPORT_SYMBOL vmlinux 0xac7f4796 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0xac96cd6c write_inode_now -EXPORT_SYMBOL vmlinux 0xac98bf44 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xac704075 noop_qdisc +EXPORT_SYMBOL vmlinux 0xac827a6e shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xac8312f6 input_copy_abs +EXPORT_SYMBOL vmlinux 0xac84476b mdio_device_reset +EXPORT_SYMBOL vmlinux 0xac9f31b5 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xac9fca79 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xaca2fc8b phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb9066b simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0xacc2076b serio_reconnect +EXPORT_SYMBOL vmlinux 0xacca78d6 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacee4582 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0xacf42404 scmd_printk +EXPORT_SYMBOL vmlinux 0xace817a7 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xacf1cfb6 netlink_set_err EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacf89ae2 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad22f32a arp_create -EXPORT_SYMBOL vmlinux 0xad32395d input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xad2c11bc lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0xad39a03e cred_fscmp -EXPORT_SYMBOL vmlinux 0xad541c84 folio_end_private_2 -EXPORT_SYMBOL vmlinux 0xad661750 put_disk -EXPORT_SYMBOL vmlinux 0xad6694ad mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xad6e4b2a fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xad3c2f52 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xad4eb871 sock_rfree +EXPORT_SYMBOL vmlinux 0xad5ef356 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad791a0f __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xad731ac8 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xad78935f stream_open EXPORT_SYMBOL vmlinux 0xad7e378a nand_ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0xad8b5893 xfrm_state_delete EXPORT_SYMBOL vmlinux 0xad93edc5 __write_overflow_field -EXPORT_SYMBOL vmlinux 0xada8742b _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xad9a0095 hmm_range_fault EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb10f6b finish_swait -EXPORT_SYMBOL vmlinux 0xadb8d41e param_ops_ushort EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadcb2948 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0xadd22e70 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0xade1e4e2 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xade3d0d3 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xadf31116 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xadf68fb6 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xadd78693 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae1a13f6 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xae09d286 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xae0a432e page_readlink +EXPORT_SYMBOL vmlinux 0xae1044dc dquot_file_open +EXPORT_SYMBOL vmlinux 0xae193d01 dev_get_by_index EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae2fba65 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xae1ea2b9 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xae23fe6b __fs_parse EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae353d77 arm_copy_from_user +EXPORT_SYMBOL vmlinux 0xae374777 bioset_exit EXPORT_SYMBOL vmlinux 0xae491006 key_create -EXPORT_SYMBOL vmlinux 0xae507b2c set_create_files_as -EXPORT_SYMBOL vmlinux 0xae53af6b seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0xae577d60 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xae6304ec param_set_ulong -EXPORT_SYMBOL vmlinux 0xae785f59 dma_map_resource -EXPORT_SYMBOL vmlinux 0xae8e41f4 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xaea91260 skb_tx_error +EXPORT_SYMBOL vmlinux 0xae72b493 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xae8ca894 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xae909724 of_node_get EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaec13576 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xaecb93ed __bh_read EXPORT_SYMBOL vmlinux 0xaee4988e abort_creds -EXPORT_SYMBOL vmlinux 0xaf0f11ef amba_driver_register +EXPORT_SYMBOL vmlinux 0xaeeb8d89 phy_get_pause +EXPORT_SYMBOL vmlinux 0xaf0b8ae6 ip6_output +EXPORT_SYMBOL vmlinux 0xaf0be06c jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf41a8b0 snd_compr_malloc_pages EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality -EXPORT_SYMBOL vmlinux 0xaf66acda input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xaf54d7c7 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0xaf59cb8a fb_set_suspend +EXPORT_SYMBOL vmlinux 0xaf67b655 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xaf7c0afd release_sock EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev -EXPORT_SYMBOL vmlinux 0xaf8da8e4 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xaf93b6ff param_get_byte EXPORT_SYMBOL vmlinux 0xaf9a0a2a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xafa44deb scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit +EXPORT_SYMBOL vmlinux 0xafafaa01 sk_alloc +EXPORT_SYMBOL vmlinux 0xafb5c988 inet_accept +EXPORT_SYMBOL vmlinux 0xafb87fc9 dma_find_channel EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafca4fff xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xafd043b0 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0xafd0e56f softnet_data -EXPORT_SYMBOL vmlinux 0xafd116f6 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xafc39c5f _copy_from_iter +EXPORT_SYMBOL vmlinux 0xafd5c773 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0xafd8c75d netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xafd94520 dcb_getapp +EXPORT_SYMBOL vmlinux 0xafe30f31 backlight_force_update +EXPORT_SYMBOL vmlinux 0xafeb1b31 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0xafeba854 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xb000cbe1 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xb00b212d neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xb00f5796 copy_string_kernel EXPORT_SYMBOL vmlinux 0xb011eae1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb0152a89 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xb01ada7e tty_vhangup EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb02f7099 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xb0355e76 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0xb03eac26 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xb05563b6 lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05f5a6a mdiobb_write_c22 EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb073b84a nf_log_trace -EXPORT_SYMBOL vmlinux 0xb081e135 inode_nohighmem -EXPORT_SYMBOL vmlinux 0xb0859f20 mmc_start_request -EXPORT_SYMBOL vmlinux 0xb08ab6cb cfb_fillrect +EXPORT_SYMBOL vmlinux 0xb076a956 bio_copy_data +EXPORT_SYMBOL vmlinux 0xb0791752 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xb080eea7 from_kprojid EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation EXPORT_SYMBOL vmlinux 0xb0a3c5d2 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xb0b5a169 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xb0a824f9 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xb0b4f56e simple_open +EXPORT_SYMBOL vmlinux 0xb0c1b0ce qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xb0cc93d6 proc_douintvec -EXPORT_SYMBOL vmlinux 0xb0d45bab skb_clone -EXPORT_SYMBOL vmlinux 0xb0dac695 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xb0d910ce register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xb0dc82c4 mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb104ba7f i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xb0fe672a fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xb1027bfb eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb10c0b88 generic_delete_inode EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb1170e7b sg_miter_stop +EXPORT_SYMBOL vmlinux 0xb117c509 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb127fa05 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb15593c8 snd_pcm_hw_param_last -EXPORT_SYMBOL vmlinux 0xb1588910 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0xb17c320c __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xb193cc55 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xb1aa874b neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xb1521954 fb_io_write +EXPORT_SYMBOL vmlinux 0xb15e134a proc_set_user +EXPORT_SYMBOL vmlinux 0xb181c9a8 of_device_is_available +EXPORT_SYMBOL vmlinux 0xb1885de6 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xb18f980a d_drop +EXPORT_SYMBOL vmlinux 0xb199100a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xb1a513b7 register_qdisc EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc -EXPORT_SYMBOL vmlinux 0xb1b08065 ps2_init EXPORT_SYMBOL vmlinux 0xb1b7d715 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb1b81aea simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xb1ba3381 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1c7a53d blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0xb1dc037b ppp_input_error +EXPORT_SYMBOL vmlinux 0xb1d2a592 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1ecfd7c mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0xb1e7a4f7 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xb1ed9153 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xb1fe3462 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb20d06a2 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xb211fdf2 skb_put EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb2385b66 dev_driver_string +EXPORT_SYMBOL vmlinux 0xb232805d nonseekable_open +EXPORT_SYMBOL vmlinux 0xb2388f90 submit_bio_wait EXPORT_SYMBOL vmlinux 0xb23a519c zstd_decompress_stream -EXPORT_SYMBOL vmlinux 0xb243c6d5 genphy_loopback +EXPORT_SYMBOL vmlinux 0xb24a67c7 __scm_destroy +EXPORT_SYMBOL vmlinux 0xb24e0de2 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb257bdd0 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb25a37b4 mdiobus_c45_write EXPORT_SYMBOL vmlinux 0xb271d7c3 proc_dostring -EXPORT_SYMBOL vmlinux 0xb29852a6 d_move -EXPORT_SYMBOL vmlinux 0xb2d0f761 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0xb2763d54 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb29a3325 ilookup +EXPORT_SYMBOL vmlinux 0xb29a80fe __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb2b4f93b xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xb2bb0a1c dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xb2c38df5 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xb2cc29ed find_vma_intersection +EXPORT_SYMBOL vmlinux 0xb2cc4e06 dst_init EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2dad5ec dev_addr_mod EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL vmlinux 0xb3043777 simple_statfs +EXPORT_SYMBOL vmlinux 0xb2f5f49d tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xb2fec01e genphy_c37_read_status EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b1690 blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31b3964 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xb30c8b2b tls_handshake_cancel +EXPORT_SYMBOL vmlinux 0xb31a21c6 inet6_del_protocol EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb326c754 dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb32dbce2 phy_error -EXPORT_SYMBOL vmlinux 0xb33a172c get_inode_acl -EXPORT_SYMBOL vmlinux 0xb33dc170 twl6040_power -EXPORT_SYMBOL vmlinux 0xb3407ecd dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xb35cd466 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xb36591b9 devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0xb3667805 dqstats EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36dbad8 netdev_warn -EXPORT_SYMBOL vmlinux 0xb37945e3 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0xb38027e4 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xb383a1d3 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xb388a029 mdiobus_free -EXPORT_SYMBOL vmlinux 0xb3a91c1a fd_install -EXPORT_SYMBOL vmlinux 0xb3ba1691 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xb3cc0134 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xb38195f4 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xb39475a6 param_get_long +EXPORT_SYMBOL vmlinux 0xb399922d unregister_binfmt +EXPORT_SYMBOL vmlinux 0xb3c034c1 is_free_buddy_page EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3eaaeb7 tso_build_hdr EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop -EXPORT_SYMBOL vmlinux 0xb3f97204 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb4093c78 d_exact_alias -EXPORT_SYMBOL vmlinux 0xb42107a4 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xb401c50c xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xb4098c35 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xb4197033 ethtool_notify +EXPORT_SYMBOL vmlinux 0xb41fc242 cqhci_deactivate EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4308855 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xb43c9835 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xb43b217b ppp_channel_index +EXPORT_SYMBOL vmlinux 0xb43ee56a __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xb43fc71c ps2_end_command EXPORT_SYMBOL vmlinux 0xb4471bfe down_trylock -EXPORT_SYMBOL vmlinux 0xb44c7de3 of_get_mac_address EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem -EXPORT_SYMBOL vmlinux 0xb45bdfd5 md_check_recovery +EXPORT_SYMBOL vmlinux 0xb4589ccd mdiobb_write_c22 +EXPORT_SYMBOL vmlinux 0xb45a6da1 remove_arg_zero EXPORT_SYMBOL vmlinux 0xb468873e simple_map_init -EXPORT_SYMBOL vmlinux 0xb468fcc0 dquot_release -EXPORT_SYMBOL vmlinux 0xb479f92d secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xb46ab8cb cad_pid +EXPORT_SYMBOL vmlinux 0xb46ceb85 inet6_bind +EXPORT_SYMBOL vmlinux 0xb46e4642 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xb46eaeb4 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xb470abe7 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xb4771796 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xb47a83fe __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xb481a1c6 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0xb4825db4 of_root -EXPORT_SYMBOL vmlinux 0xb48b0a2a inode_init_owner EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb4910192 arm_dma_zone_size -EXPORT_SYMBOL vmlinux 0xb49bd387 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xb49e3d39 ilookup5 EXPORT_SYMBOL vmlinux 0xb4ae3ab1 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xb4b1e6d1 __xa_alloc -EXPORT_SYMBOL vmlinux 0xb4b4d2d5 redraw_screen -EXPORT_SYMBOL vmlinux 0xb4b99a09 dquot_scan_active -EXPORT_SYMBOL vmlinux 0xb4bb3582 dev_get_port_parent_id EXPORT_SYMBOL vmlinux 0xb4bddb04 zstd_init_dstream -EXPORT_SYMBOL vmlinux 0xb4dd59a4 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xb5159e5e block_write_begin -EXPORT_SYMBOL vmlinux 0xb519ba79 kthread_stop -EXPORT_SYMBOL vmlinux 0xb529a1d2 kmem_cache_alloc_lru -EXPORT_SYMBOL vmlinux 0xb52e8e12 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xb540f495 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xb542c142 snd_ctl_remove_id -EXPORT_SYMBOL vmlinux 0xb54ed3de snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL vmlinux 0xb55bc8f1 scsi_scan_target -EXPORT_SYMBOL vmlinux 0xb56e1b74 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xb571ff2a touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xb5720f29 __pci_register_driver -EXPORT_SYMBOL vmlinux 0xb572d997 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0xb57a866b mmc_retune_release -EXPORT_SYMBOL vmlinux 0xb5844e7b kunmap_high +EXPORT_SYMBOL vmlinux 0xb4e2aced memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xb4e51574 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xb51f0074 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb522106e kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xb56f13be __netdev_notify_peers EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat -EXPORT_SYMBOL vmlinux 0xb58bd7d2 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb594bf63 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xb5955ba6 simple_recursive_removal EXPORT_SYMBOL vmlinux 0xb5a29453 elm_decode_bch_error_page EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ac682f simple_write_begin +EXPORT_SYMBOL vmlinux 0xb5b39afa fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xb5b4d5e0 handshake_genl_put EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bc6b60 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xb5bf2b28 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xb5c2b9f5 cqhci_deactivate -EXPORT_SYMBOL vmlinux 0xb5eb6502 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xb5efa63f filemap_release_folio -EXPORT_SYMBOL vmlinux 0xb5f2a96b scsi_print_command -EXPORT_SYMBOL vmlinux 0xb5f3d188 tty_port_close -EXPORT_SYMBOL vmlinux 0xb5f57f38 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xb5bf0993 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xb5e33610 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xb5ebb891 scsi_host_alloc EXPORT_SYMBOL vmlinux 0xb5fdc18f mutex_is_locked -EXPORT_SYMBOL vmlinux 0xb6035efd mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xb60cf91d dm_table_event -EXPORT_SYMBOL vmlinux 0xb631d29d dev_get_by_index +EXPORT_SYMBOL vmlinux 0xb630c278 request_firmware_nowait EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb64923cd kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xb6511b0f page_address +EXPORT_SYMBOL vmlinux 0xb63beb9f uart_update_timeout +EXPORT_SYMBOL vmlinux 0xb63e4083 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0xb6592f07 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0xb664a4e8 kvrealloc -EXPORT_SYMBOL vmlinux 0xb668d8e4 udp_seq_start EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0xb6706447 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt -EXPORT_SYMBOL vmlinux 0xb67a80d7 fb_set_suspend EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6889e73 unlock_buffer EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b2f458 inet6_bind EXPORT_SYMBOL vmlinux 0xb6b6284e xz_dec_run -EXPORT_SYMBOL vmlinux 0xb6bf2b8a pipe_lock +EXPORT_SYMBOL vmlinux 0xb6c9b0b5 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6d2bc5b blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb6e07654 amba_device_register EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6f859f4 _raw_read_lock_bh EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb71542cb ptp_clock_unregister EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb7195f54 mmc_free_host -EXPORT_SYMBOL vmlinux 0xb71b162a fb_pan_display +EXPORT_SYMBOL vmlinux 0xb71693c6 igrab +EXPORT_SYMBOL vmlinux 0xb71ae8e7 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xb71d986d snd_pcm_hw_limit_rates -EXPORT_SYMBOL vmlinux 0xb71e9d44 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb7295cbd ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xb72a9718 snd_info_create_card_entry EXPORT_SYMBOL vmlinux 0xb7362c90 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0xb738a100 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xb74599b7 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xb74651b2 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xb74f03e5 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xb7566933 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb7614293 snd_unregister_device EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb7721e41 vmap -EXPORT_SYMBOL vmlinux 0xb78102bc devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xb786ada0 d_find_any_alias EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7a5b095 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0xb7c44e90 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xb79aaa9e skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e80801 snd_timer_open +EXPORT_SYMBOL vmlinux 0xb7ced615 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xb7d0f7dc vlan_vid_add +EXPORT_SYMBOL vmlinux 0xb7d28300 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xb7d2e639 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xb7d9becc dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xb7e09fbb of_clk_get +EXPORT_SYMBOL vmlinux 0xb7fe34ca inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xb7ff182f down_read_killable -EXPORT_SYMBOL vmlinux 0xb7ffd772 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0xb82e8d54 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xb802e943 from_kgid +EXPORT_SYMBOL vmlinux 0xb8165154 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xb8165738 of_match_node +EXPORT_SYMBOL vmlinux 0xb81733ec key_revoke +EXPORT_SYMBOL vmlinux 0xb8337213 sync_inode_metadata EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb84d3fe1 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xb84b680a dst_destroy +EXPORT_SYMBOL vmlinux 0xb85cfff3 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb87898ce page_symlink -EXPORT_SYMBOL vmlinux 0xb880aac4 dma_resv_init -EXPORT_SYMBOL vmlinux 0xb88241b4 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xb8864cb2 nand_write_oob_std EXPORT_SYMBOL vmlinux 0xb88aa347 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0xb88b7cfc sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xb8974b0e pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xb88bc7eb fb_set_cmap EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb8a60c36 pci_pme_active EXPORT_SYMBOL vmlinux 0xb8a6ffeb __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b62996 pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xb8d088b0 rawnand_sw_hamming_init -EXPORT_SYMBOL vmlinux 0xb8d44d52 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xb8d1445f __breadahead EXPORT_SYMBOL vmlinux 0xb8e39d53 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0xb8f09438 udp_seq_ops -EXPORT_SYMBOL vmlinux 0xb8f523dc xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xb90c2a81 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xb90fe783 set_anon_super EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9137b30 fiemap_prep -EXPORT_SYMBOL vmlinux 0xb91532c4 dquot_initialize -EXPORT_SYMBOL vmlinux 0xb9329ae1 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xb93a19df inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb91236e0 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb952402e __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xb944e1ba t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xb94565db __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb94fa579 md_flush_request +EXPORT_SYMBOL vmlinux 0xb95ec09d vfs_readlink EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb95fb001 generic_buffers_fsync_noflush EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL vmlinux 0xb963c3d7 __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0xb964f415 phy_drivers_register EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97112b7 inode_query_iversion EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9aaec7a fwnode_iomap +EXPORT_SYMBOL vmlinux 0xb977b2e0 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xb980d5d2 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xb98c7e24 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xb9a73228 md_update_sb +EXPORT_SYMBOL vmlinux 0xb9a88874 neigh_ifdown EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 -EXPORT_SYMBOL vmlinux 0xb9b4264c generic_buffers_fsync -EXPORT_SYMBOL vmlinux 0xb9b78c3c scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xb9b7a83d dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xb9bfe530 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xb9c54177 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xb9c7018d nf_log_register -EXPORT_SYMBOL vmlinux 0xb9c82856 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xb9ad23ae xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xb9b8441e generic_buffers_fsync +EXPORT_SYMBOL vmlinux 0xb9d1b9a8 seq_printf +EXPORT_SYMBOL vmlinux 0xb9e15995 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f0f06a do_SAK EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req -EXPORT_SYMBOL vmlinux 0xba012d77 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xba015fb7 noop_fsync -EXPORT_SYMBOL vmlinux 0xba0a9a69 pci_set_power_state -EXPORT_SYMBOL vmlinux 0xba0e4068 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xba107d84 bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0xba1b824a sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xba24ca7b mdiobus_c45_read_nested -EXPORT_SYMBOL vmlinux 0xba28e609 sk_error_report -EXPORT_SYMBOL vmlinux 0xba2baef4 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0xba3b5033 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xb9fc6ba4 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xba03a7f7 snd_jack_new +EXPORT_SYMBOL vmlinux 0xba164276 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xba28b198 vme_irq_request +EXPORT_SYMBOL vmlinux 0xba368da6 netif_napi_add_weight EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba4ac4a5 tty_lock EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq -EXPORT_SYMBOL vmlinux 0xba4f817a rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0xba53c60f nf_reinject -EXPORT_SYMBOL vmlinux 0xba663728 _dev_info +EXPORT_SYMBOL vmlinux 0xba53d014 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xba5419eb rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xba54f975 register_sound_dsp +EXPORT_SYMBOL vmlinux 0xba56e7df xfrm_register_type EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba7676c3 pci_choose_state -EXPORT_SYMBOL vmlinux 0xba927773 vme_slot_num +EXPORT_SYMBOL vmlinux 0xba7d1ff3 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xba827c0f __ps2_command +EXPORT_SYMBOL vmlinux 0xba82d564 snd_component_add +EXPORT_SYMBOL vmlinux 0xba8d3f61 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xba8ea5c4 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0xba9c4aa2 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xba9ea1d1 tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0xbaa168c9 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0xbaacffff tcf_em_register -EXPORT_SYMBOL vmlinux 0xbac4a39b flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0xbac5a883 dma_resv_fini -EXPORT_SYMBOL vmlinux 0xbaca5925 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xbad93452 xfrm_state_update -EXPORT_SYMBOL vmlinux 0xbae1711a netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0xbaf9a2d6 device_add_disk +EXPORT_SYMBOL vmlinux 0xbaa6a553 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xbaa891a7 __sock_create +EXPORT_SYMBOL vmlinux 0xbaac968b mmc_release_host +EXPORT_SYMBOL vmlinux 0xbab5b6b5 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xbab7ce26 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xbad86f04 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xbaee9718 devm_rproc_add EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb05c266 vfs_link -EXPORT_SYMBOL vmlinux 0xbb147fca gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xbb0de2ef cfb_imageblit +EXPORT_SYMBOL vmlinux 0xbb14221a mmc_set_blocklen EXPORT_SYMBOL vmlinux 0xbb14eb31 bcmp -EXPORT_SYMBOL vmlinux 0xbb198a71 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2b210c audit_log -EXPORT_SYMBOL vmlinux 0xbb2b5ade kernel_listen EXPORT_SYMBOL vmlinux 0xbb2df1ec __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xbb2e37b2 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xbb5df737 input_match_device_id -EXPORT_SYMBOL vmlinux 0xbb67c45f vme_init_bridge -EXPORT_SYMBOL vmlinux 0xbb6cf718 con_is_visible +EXPORT_SYMBOL vmlinux 0xbb45c611 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xbb4c4e2b phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 -EXPORT_SYMBOL vmlinux 0xbb80c177 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xbb8806d5 skb_dequeue +EXPORT_SYMBOL vmlinux 0xbb7572e7 con_set_default_unimap EXPORT_SYMBOL vmlinux 0xbb944b63 mtree_destroy +EXPORT_SYMBOL vmlinux 0xbba971cc prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0xbbae6ae5 path_get +EXPORT_SYMBOL vmlinux 0xbbb7dccd nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xbbbeaf32 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0xbbc28db6 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xbbc7d08d user_path_create -EXPORT_SYMBOL vmlinux 0xbbe68242 vfs_readlink -EXPORT_SYMBOL vmlinux 0xbbedb351 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xbbf594d9 param_get_bool -EXPORT_SYMBOL vmlinux 0xbc082545 kill_fasync +EXPORT_SYMBOL vmlinux 0xbbe10fbe pps_unregister_source +EXPORT_SYMBOL vmlinux 0xbbe8eab2 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xbbf686cd request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xbbfd7374 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xbc024540 inet_offloads EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 -EXPORT_SYMBOL vmlinux 0xbc1ac0c0 xattr_supports_user_prefix -EXPORT_SYMBOL vmlinux 0xbc29cee2 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0xbc3a16e2 vme_irq_free -EXPORT_SYMBOL vmlinux 0xbc40bcf0 __d_lookup_unhash_wake -EXPORT_SYMBOL vmlinux 0xbc5f9143 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xbc89c95e snd_jack_set_key -EXPORT_SYMBOL vmlinux 0xbc8ed2a4 of_phy_connect -EXPORT_SYMBOL vmlinux 0xbca1257d md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0xbca15297 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0xbca27f70 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xbca2cccc xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xbc13f683 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xbc229463 d_add_ci +EXPORT_SYMBOL vmlinux 0xbc5493dd jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xbc6a9a91 of_get_property +EXPORT_SYMBOL vmlinux 0xbc7ab402 dquot_acquire +EXPORT_SYMBOL vmlinux 0xbc81267f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xbc91bd6e sock_no_linger +EXPORT_SYMBOL vmlinux 0xbc9e74e2 blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb02d17 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xbcb4fe32 sock_sendmsg -EXPORT_SYMBOL vmlinux 0xbcb7c0b6 arp_send -EXPORT_SYMBOL vmlinux 0xbcc2f6de thaw_super -EXPORT_SYMBOL vmlinux 0xbcc91711 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xbd07cea7 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbcd13532 rawnand_sw_bch_init +EXPORT_SYMBOL vmlinux 0xbcdce375 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xbcde026f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xbcf30db7 vfs_parse_monolithic_sep +EXPORT_SYMBOL vmlinux 0xbcf422ba touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xbcf75dd6 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xbd0bffa6 vm_insert_page EXPORT_SYMBOL vmlinux 0xbd17f273 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xbd180349 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xbd183236 dev_uc_sync EXPORT_SYMBOL vmlinux 0xbd1b4950 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0xbd252d33 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xbd268368 kernel_tmpfile_open +EXPORT_SYMBOL vmlinux 0xbd29ea59 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xbd35e214 sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xbd3a17b5 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xbd498ebc rt_mutex_base_init EXPORT_SYMBOL vmlinux 0xbd5e1d9c __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xbd605d9d inode_get_bytes EXPORT_SYMBOL vmlinux 0xbd6815c7 padata_alloc +EXPORT_SYMBOL vmlinux 0xbd68d5fa devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xbd7039fd mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0xbd724b30 zstd_compress_stream -EXPORT_SYMBOL vmlinux 0xbd7423fb of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xbd73f4d6 peernet2id EXPORT_SYMBOL vmlinux 0xbd820297 rtc_lock EXPORT_SYMBOL vmlinux 0xbd8f4b89 parse_int_array_user EXPORT_SYMBOL vmlinux 0xbd939b87 ns_capable -EXPORT_SYMBOL vmlinux 0xbd9f4f0a netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xbda4d56a user_revoke -EXPORT_SYMBOL vmlinux 0xbda54348 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xbdb11be3 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0xbdb22d99 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xbde71ca9 ram_aops -EXPORT_SYMBOL vmlinux 0xbdf0964b fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xbdf919b0 iget_locked -EXPORT_SYMBOL vmlinux 0xbe041170 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xbdbec3e7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbdc020fd skb_clone_sk +EXPORT_SYMBOL vmlinux 0xbdc06483 md_write_inc +EXPORT_SYMBOL vmlinux 0xbdc3d26e vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xbdd6e2ab mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xbdebdfd1 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xbdfc1039 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xbe0e3cba tcf_queue_work EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp -EXPORT_SYMBOL vmlinux 0xbe293848 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0xbe297093 folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0xbe2ebe4e inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xbe175516 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xbe1c9777 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xbe332754 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xbe4a0c2b pci_write_vpd EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5487f1 pcie_set_mps EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe6e97c8 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xbe5ff59a snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0xbe66ef06 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xbe72130a pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xbe72755a cdev_device_del +EXPORT_SYMBOL vmlinux 0xbe787624 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0xbe7d1e0f config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xbe7e72e6 lookup_one_qstr_excl -EXPORT_SYMBOL vmlinux 0xbe824b10 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xbe89a4c8 register_quota_format -EXPORT_SYMBOL vmlinux 0xbea02322 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xbea394e6 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xbea652eb _dev_err -EXPORT_SYMBOL vmlinux 0xbead5dc6 of_node_get -EXPORT_SYMBOL vmlinux 0xbebd0928 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xbe8a49ba snd_timer_new +EXPORT_SYMBOL vmlinux 0xbea18c9a dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xbeac39d3 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xbeb14ff9 mount_nodev EXPORT_SYMBOL vmlinux 0xbec43e5f tc_skb_ext_tc -EXPORT_SYMBOL vmlinux 0xbedc5834 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xbee5a7a2 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xbecfecfa xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbed081f8 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xbedb173f dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xbeed2164 snd_jack_new -EXPORT_SYMBOL vmlinux 0xbef3f9b1 do_clone_file_range EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0xbf02a8ad _dev_notice -EXPORT_SYMBOL vmlinux 0xbf02d10a unregister_binfmt -EXPORT_SYMBOL vmlinux 0xbf1298a2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xbef804ab twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xbf01b9ac unregister_console +EXPORT_SYMBOL vmlinux 0xbf0687d5 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xbf107fd7 ip_local_deliver EXPORT_SYMBOL vmlinux 0xbf14470c __nla_reserve +EXPORT_SYMBOL vmlinux 0xbf21a545 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xbf22664d pci_release_resource +EXPORT_SYMBOL vmlinux 0xbf2822cf param_set_short +EXPORT_SYMBOL vmlinux 0xbf29f7a0 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xbf2bcbda of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xbf30b955 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xbf3e876a bio_split_to_limits EXPORT_SYMBOL vmlinux 0xbf4d4539 udp_table -EXPORT_SYMBOL vmlinux 0xbf518e6d rt_dst_alloc EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf5aa6da dev_remove_offload +EXPORT_SYMBOL vmlinux 0xbf694d62 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xbf75ea6c tegra114_clock_tune_cpu_trimmers_low -EXPORT_SYMBOL vmlinux 0xbf92a790 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xbfa20179 pm860x_set_bits EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb89ec2 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfce9438 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xbfd4256f xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xbfd07b64 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0xbfdf7bc3 mempool_create -EXPORT_SYMBOL vmlinux 0xbfe913fb genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xbfe98286 is_bad_inode -EXPORT_SYMBOL vmlinux 0xc053c15e elv_rb_add -EXPORT_SYMBOL vmlinux 0xc0560080 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xbfdf807d tcp_close +EXPORT_SYMBOL vmlinux 0xbff88422 fwnode_iomap +EXPORT_SYMBOL vmlinux 0xbffa7bfd locks_delete_block +EXPORT_SYMBOL vmlinux 0xc00b943b flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xc015a874 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xc01c40b8 skb_pull +EXPORT_SYMBOL vmlinux 0xc020ece1 add_to_pipe +EXPORT_SYMBOL vmlinux 0xc025b92f of_root +EXPORT_SYMBOL vmlinux 0xc02ed77c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xc04a3fad phy_driver_register +EXPORT_SYMBOL vmlinux 0xc052f6e3 param_ops_int +EXPORT_SYMBOL vmlinux 0xc05e3dae __free_pages EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get -EXPORT_SYMBOL vmlinux 0xc06e5976 snd_info_register +EXPORT_SYMBOL vmlinux 0xc0657249 d_alloc_anon EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked -EXPORT_SYMBOL vmlinux 0xc0780149 jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0811ab4 phy_resume -EXPORT_SYMBOL vmlinux 0xc0a72503 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xc080c82a genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xc0825050 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xc09349b0 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xc0952e68 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc0a564fa dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xc0a94fb7 get_task_cred EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc -EXPORT_SYMBOL vmlinux 0xc0ae5e1a kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xc0c188a3 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0xc0bd5831 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xc0c3dac6 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xc0c42303 vfs_get_link +EXPORT_SYMBOL vmlinux 0xc0cda9bc scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xc0da0e99 dim_on_top +EXPORT_SYMBOL vmlinux 0xc0e220d0 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xc0eed7c8 mntget EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc129e68c scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xc14020f3 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xc14cf6aa writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xc14d76bd tcp_mmap -EXPORT_SYMBOL vmlinux 0xc14d9cc2 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0xc12854b8 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xc135417b unregister_shrinker EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16f0053 pci_fixup_device -EXPORT_SYMBOL vmlinux 0xc17e9681 input_set_keycode -EXPORT_SYMBOL vmlinux 0xc18ec82a input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xc1b07c45 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xc1c961a0 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xc1d7459e param_set_ushort +EXPORT_SYMBOL vmlinux 0xc1936cb4 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xc19fe90d security_sk_clone +EXPORT_SYMBOL vmlinux 0xc1a523a4 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xc1b0ee0e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xc1be172c qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xc1bf2d29 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xc1c671bc tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xc1d0115c rproc_boot EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1e71090 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xc1fff7c4 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xc20030d1 consume_skb +EXPORT_SYMBOL vmlinux 0xc203588a rw_verify_area EXPORT_SYMBOL vmlinux 0xc2059c64 fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0xc211fd78 ip_frag_init EXPORT_SYMBOL vmlinux 0xc21fb4df gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xc221904e contig_page_data EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier +EXPORT_SYMBOL vmlinux 0xc230592e fscrypt_free_inode EXPORT_SYMBOL vmlinux 0xc230c9a8 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xc236ab5b empty_zero_page -EXPORT_SYMBOL vmlinux 0xc26a8eec reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xc25adc5d kmem_cache_shrink EXPORT_SYMBOL vmlinux 0xc26b8d14 proc_dobool -EXPORT_SYMBOL vmlinux 0xc26d2a11 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xc285584b ipmr_rule_default -EXPORT_SYMBOL vmlinux 0xc28c09ac seq_dentry -EXPORT_SYMBOL vmlinux 0xc29425a0 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0xc29be9c6 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xc28f5622 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2af7299 md_error EXPORT_SYMBOL vmlinux 0xc2b1d4e1 lockref_put_return -EXPORT_SYMBOL vmlinux 0xc2b53470 param_set_byte +EXPORT_SYMBOL vmlinux 0xc2b788b1 mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0xc2b8eda2 netstamp_needed_key -EXPORT_SYMBOL vmlinux 0xc2c8b4b9 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xc2c44692 block_truncate_page EXPORT_SYMBOL vmlinux 0xc2cae53e refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xc2cd26cb inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xc2d4e384 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xc2cf2029 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e88544 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0xc2ede9c5 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xc2f420c0 blackhole_netdev EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc309fa7f netdev_features_change -EXPORT_SYMBOL vmlinux 0xc314c722 genphy_c45_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xc30d59fc vme_master_request EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc33ff4fa generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xc344f686 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xc331203c max8998_update_reg +EXPORT_SYMBOL vmlinux 0xc34598bb ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xc358aaf8 snprintf EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc3613f29 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xc3658254 kern_path +EXPORT_SYMBOL vmlinux 0xc36f27e6 pci_enable_wake EXPORT_SYMBOL vmlinux 0xc37335b0 complete +EXPORT_SYMBOL vmlinux 0xc37f5e12 key_payload_reserve EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38424d8 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xc384b2da t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc38d7e0c __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xc3b2bd40 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xc3b465a6 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0xc392843e dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xc3944dc7 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xc39c1956 seg6_push_hmac EXPORT_SYMBOL vmlinux 0xc3c34021 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL vmlinux 0xc3cbf89a xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3dc1fc2 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0xc3e4877c tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xc3e7c187 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xc3f404d9 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0xc40b6f2e mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xc3dbcd10 seq_read +EXPORT_SYMBOL vmlinux 0xc3e26f1e nf_log_unset +EXPORT_SYMBOL vmlinux 0xc3e88915 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xc4055963 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc4159eae seq_dentry +EXPORT_SYMBOL vmlinux 0xc418efd7 register_key_type +EXPORT_SYMBOL vmlinux 0xc41dd070 param_set_ullong EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4260e44 snd_jack_report -EXPORT_SYMBOL vmlinux 0xc42b3627 dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0xc4395505 __quota_error -EXPORT_SYMBOL vmlinux 0xc43dc34a bio_kmalloc -EXPORT_SYMBOL vmlinux 0xc44a5179 pci_disable_ptm -EXPORT_SYMBOL vmlinux 0xc44c4f91 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xc42521da netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xc434d2d0 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc4430e81 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xc444e010 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc4543ec4 get_tree_nodev -EXPORT_SYMBOL vmlinux 0xc459631c phy_modify_paged -EXPORT_SYMBOL vmlinux 0xc4639147 bpf_link_put -EXPORT_SYMBOL vmlinux 0xc46420ab inode_update_time EXPORT_SYMBOL vmlinux 0xc4657dc8 mempool_init -EXPORT_SYMBOL vmlinux 0xc4681421 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xc4701e5b pneigh_enqueue EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr -EXPORT_SYMBOL vmlinux 0xc472b21a dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xc4769972 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xc476cc94 arp_tbl EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc495f8c6 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xc4adda05 tty_unthrottle EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4c48277 tcp_md5_key_copy -EXPORT_SYMBOL vmlinux 0xc4c6fe68 pci_disable_device -EXPORT_SYMBOL vmlinux 0xc4d58d68 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xc4e3952a inet_accept -EXPORT_SYMBOL vmlinux 0xc4e5486c mem_map -EXPORT_SYMBOL vmlinux 0xc4fff0ff alloc_buffer_head -EXPORT_SYMBOL vmlinux 0xc515edf2 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0xc51f9bbc unregister_console -EXPORT_SYMBOL vmlinux 0xc536fe75 generic_listxattr -EXPORT_SYMBOL vmlinux 0xc541e798 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xc55e333b phy_get_c45_ids -EXPORT_SYMBOL vmlinux 0xc56b5f33 page_get_link +EXPORT_SYMBOL vmlinux 0xc4ca9d82 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xc4f5b5e9 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xc4f78dca vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xc4feae18 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xc5099a81 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xc52767f1 param_set_bint +EXPORT_SYMBOL vmlinux 0xc5316484 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xc5535c22 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc55431af __i2c_transfer +EXPORT_SYMBOL vmlinux 0xc557cc28 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xc55a73b8 vfs_unlink EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset -EXPORT_SYMBOL vmlinux 0xc57d008a begin_new_exec -EXPORT_SYMBOL vmlinux 0xc58ede4f sock_no_getname -EXPORT_SYMBOL vmlinux 0xc5961cf5 of_get_next_parent EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL vmlinux 0xc5b8a8df folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0xc5ba7889 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xc5ac722b xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xc5b20cd7 __seq_open_private +EXPORT_SYMBOL vmlinux 0xc5b3be82 jbd2_journal_start EXPORT_SYMBOL vmlinux 0xc5baba06 vcalloc +EXPORT_SYMBOL vmlinux 0xc5ca6d8d of_mdio_find_device EXPORT_SYMBOL vmlinux 0xc5cbdc54 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xc5cc83c4 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xc5d55f64 nf_register_sockopt EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5e7d9e8 alloc_anon_inode EXPORT_SYMBOL vmlinux 0xc5ee6c48 kvfree_sensitive EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc6057302 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xc60884b7 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xc6096a33 kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61813bf __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xc61a6167 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0xc62ca6e5 io_uring_destruct_scm EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63795de md_handle_request -EXPORT_SYMBOL vmlinux 0xc63b2ec4 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0xc6471e4f udp_pre_connect -EXPORT_SYMBOL vmlinux 0xc65cdf24 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xc65db4c1 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xc658e9f9 lease_modify EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc6636f91 security_unix_may_send -EXPORT_SYMBOL vmlinux 0xc69ddd16 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0xc66750fb gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xc671786a single_open +EXPORT_SYMBOL vmlinux 0xc675c08f of_node_put +EXPORT_SYMBOL vmlinux 0xc68c5d95 finish_no_open +EXPORT_SYMBOL vmlinux 0xc68d5583 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xc69cdb5b mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6a1ec92 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xc6ae1211 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xc6a0561a of_match_device +EXPORT_SYMBOL vmlinux 0xc6a0d4cd md_bitmap_free +EXPORT_SYMBOL vmlinux 0xc6adcdfd tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0xc6b15c5b fb_find_mode +EXPORT_SYMBOL vmlinux 0xc6bd3b8e bio_add_folio +EXPORT_SYMBOL vmlinux 0xc6c494b8 dcb_getrewr_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6d0ff11 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xc6d39aa0 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xc6d413cd register_fib_notifier -EXPORT_SYMBOL vmlinux 0xc6d7aa2f mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xc6df15a1 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xc6cfa1cf input_allocate_device EXPORT_SYMBOL vmlinux 0xc6efd2a6 refcount_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc6fbe2cf mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xc70473c0 skb_append +EXPORT_SYMBOL vmlinux 0xc70c276c eth_header_parse EXPORT_SYMBOL vmlinux 0xc71a7e49 __do_once_done EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc76461f8 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xc7556acf ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xc7634761 d_tmpfile EXPORT_SYMBOL vmlinux 0xc77223f5 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xc77fb646 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xc77dcdb5 phy_drivers_unregister EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc798dbb9 scsi_register_driver EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7b7c512 fb_io_write +EXPORT_SYMBOL vmlinux 0xc7c0064d nf_reinject EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c52262 ac97_bus_type -EXPORT_SYMBOL vmlinux 0xc7e02a74 pci_request_region +EXPORT_SYMBOL vmlinux 0xc7db0d70 request_firmware +EXPORT_SYMBOL vmlinux 0xc7e86298 xp_set_rxq_info EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn -EXPORT_SYMBOL vmlinux 0xc7fd78bf udp6_csum_init -EXPORT_SYMBOL vmlinux 0xc805e4f6 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xc81481c8 submit_bio -EXPORT_SYMBOL vmlinux 0xc81ec623 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xc8260094 iterate_dir +EXPORT_SYMBOL vmlinux 0xc8017921 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xc8232c5d flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xc82469f7 input_inject_event +EXPORT_SYMBOL vmlinux 0xc82d7cb3 vme_slave_request EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc8419535 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xc842fa20 param_ops_string EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc854f2f9 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xc86ceba4 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xc872b5a4 param_set_int EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87a53c8 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xc87d36ae mmc_gpio_set_cd_irq EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc888cd0b d_find_alias EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc895373e vfs_create +EXPORT_SYMBOL vmlinux 0xc89211ab twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xc894e54e skb_ensure_writable EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8a975a2 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xc8b58a25 __memset64 -EXPORT_SYMBOL vmlinux 0xc8bd6fea snd_component_add +EXPORT_SYMBOL vmlinux 0xc8ba62e6 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xc8bf124d blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xc8bf1380 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xc8e1424b alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xc8e173ed _find_next_bit_le -EXPORT_SYMBOL vmlinux 0xc8e7fe4e dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0xc8e9e3d1 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0xc8f3eb30 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0xc901c8c7 kill_block_super +EXPORT_SYMBOL vmlinux 0xc9160772 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xc9165b57 rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc92142d7 cad_pid +EXPORT_SYMBOL vmlinux 0xc917bf72 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xc91df467 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0xc924678a __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0xc92f8a4e nd_device_register +EXPORT_SYMBOL vmlinux 0xc930a2e1 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96b1631 __ip_options_compile -EXPORT_SYMBOL vmlinux 0xc96f629c tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xc9656bbf nf_log_unregister EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc97d6e75 devm_aperture_acquire_for_platform_device EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc982384b d_find_any_alias -EXPORT_SYMBOL vmlinux 0xc9981280 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xc99c1bfe tcp_time_wait EXPORT_SYMBOL vmlinux 0xc99cbb83 gen_pool_dma_alloc_align EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9bcad33 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xc9c543f9 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xc9ce6f44 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xc9dabc40 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc9a2927d jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xc9aaa8fb netdev_change_features +EXPORT_SYMBOL vmlinux 0xc9bfaa0f touch_atime +EXPORT_SYMBOL vmlinux 0xc9d47398 devm_memremap EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init EXPORT_SYMBOL vmlinux 0xc9e9d5f9 vme_alloc_consistent EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9f17f06 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xca04a15d follow_down -EXPORT_SYMBOL vmlinux 0xca15d692 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xca06e749 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xca0ab0f8 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xca0f22a3 do_splice_direct EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit -EXPORT_SYMBOL vmlinux 0xca1cab51 block_commit_write +EXPORT_SYMBOL vmlinux 0xca205eca sk_stream_error EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca3ae34a fget_raw EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca46e22c nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xca4c5465 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xca4f381f xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0xca5a7528 down_interruptible -EXPORT_SYMBOL vmlinux 0xca643425 md_write_start -EXPORT_SYMBOL vmlinux 0xca658cea neigh_parms_release -EXPORT_SYMBOL vmlinux 0xca6629d3 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0xca70282a blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xca72ea87 of_property_read_reg EXPORT_SYMBOL vmlinux 0xca77bdbf kmalloc_large_node +EXPORT_SYMBOL vmlinux 0xca7a20df dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xca7ee9b2 fault_in_writeable EXPORT_SYMBOL vmlinux 0xca813ce6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xca8c20ed mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xcac21c0b page_mapping -EXPORT_SYMBOL vmlinux 0xcae07e41 devm_memunmap -EXPORT_SYMBOL vmlinux 0xcaf86a22 dev_kfree_skb_irq_reason -EXPORT_SYMBOL vmlinux 0xcafa25b2 pci_release_region +EXPORT_SYMBOL vmlinux 0xca9445a6 single_release +EXPORT_SYMBOL vmlinux 0xca9e3dec phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xcac79f45 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xcad3edd5 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xcad59842 iterate_supers_type EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb2bd024 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xcb168421 flow_rule_match_control EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb491efd nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0xcb4b9bbd bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xcb510bc2 complete_all +EXPORT_SYMBOL vmlinux 0xcb5eabf8 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0xcb606eb9 xa_load -EXPORT_SYMBOL vmlinux 0xcb721d41 rfkill_alloc EXPORT_SYMBOL vmlinux 0xcb77a31d zstd_is_error -EXPORT_SYMBOL vmlinux 0xcb78b4b0 deactivate_super -EXPORT_SYMBOL vmlinux 0xcb88d192 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xcb8bbc62 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0xcb8c753b mempool_exit -EXPORT_SYMBOL vmlinux 0xcb91cd08 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xcb95f899 inet_release -EXPORT_SYMBOL vmlinux 0xcbb4d5b3 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xcbb2380a netif_device_attach EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbd468a0 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xcbcbcfbc mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbe2290a iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xcbe7c49b inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xcbeb409b __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc307f0b blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xcc2ef0db iget_locked +EXPORT_SYMBOL vmlinux 0xcc30721b serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0xcc30f0f1 tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0xcc330a74 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xcc40dd03 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc47eba6 iov_iter_revert EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5ad660 of_find_compatible_node EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc64ec45 elevator_alloc -EXPORT_SYMBOL vmlinux 0xcc68ef7b snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0xcc683b98 tty_kref_put EXPORT_SYMBOL vmlinux 0xcc6a729f snd_ctl_enum_info EXPORT_SYMBOL vmlinux 0xcc6ab606 clocksource_unregister -EXPORT_SYMBOL vmlinux 0xcc74dc3b phy_driver_register -EXPORT_SYMBOL vmlinux 0xcc7a432b genl_notify -EXPORT_SYMBOL vmlinux 0xcc7f6fc8 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xcc72a6e3 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xcc816334 page_pool_release_page EXPORT_SYMBOL vmlinux 0xcc916615 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xcc932095 simple_open -EXPORT_SYMBOL vmlinux 0xcc99d5f6 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xccbab8f3 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xccc9130b unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xcccbaee6 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0xccd15742 build_skb_around -EXPORT_SYMBOL vmlinux 0xccd4120f folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xcc98b6c0 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xcc9950ee neigh_table_init +EXPORT_SYMBOL vmlinux 0xcc9ec423 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xccba45b7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xccc09a31 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xccc3526b genphy_loopback +EXPORT_SYMBOL vmlinux 0xccd1d5b5 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xccdc75bc uart_add_one_port -EXPORT_SYMBOL vmlinux 0xcce566ae jbd2_journal_start -EXPORT_SYMBOL vmlinux 0xccebd46b bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xccd4ca0a alloc_fcdev +EXPORT_SYMBOL vmlinux 0xccd8039f make_kgid EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd00abbc add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL vmlinux 0xcd09b2db pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xcd234fe6 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2e4137 tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0xcd3c9887 security_inet_conn_request EXPORT_SYMBOL vmlinux 0xcd43ad12 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0xcd5357e7 lock_rename +EXPORT_SYMBOL vmlinux 0xcd594e23 kernel_read EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr -EXPORT_SYMBOL vmlinux 0xcd712306 snd_pcm_new_internal EXPORT_SYMBOL vmlinux 0xcd751933 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xcd866ae5 d_tmpfile -EXPORT_SYMBOL vmlinux 0xcd9517a8 input_set_capability +EXPORT_SYMBOL vmlinux 0xcd7c3b5f dquot_quota_off +EXPORT_SYMBOL vmlinux 0xcd7f34db param_ops_ushort +EXPORT_SYMBOL vmlinux 0xcd967fa7 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xcdb044d9 block_write_full_page -EXPORT_SYMBOL vmlinux 0xcdbb31db __seq_open_private +EXPORT_SYMBOL vmlinux 0xcdacef4c tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xcdba4ca1 scsi_print_result +EXPORT_SYMBOL vmlinux 0xcdc0e487 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd58eef neigh_event_ns -EXPORT_SYMBOL vmlinux 0xcddecd6f phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xcdccbc1a sock_kfree_s +EXPORT_SYMBOL vmlinux 0xcdce149d input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xcdd5df57 devm_ioremap_wc EXPORT_SYMBOL vmlinux 0xcde2a8e1 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf5534b __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xce087126 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xce2238eb fb_class -EXPORT_SYMBOL vmlinux 0xce2496c9 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0xce006793 vme_dma_request +EXPORT_SYMBOL vmlinux 0xce264b00 ether_setup EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2a625b devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xce2b6bc1 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0xce2f8d40 zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xce35dbda i2c_del_adapter EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio -EXPORT_SYMBOL vmlinux 0xce3de3e3 blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0xce415754 sound_class -EXPORT_SYMBOL vmlinux 0xce497a41 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xce4b3927 xfrm_input EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e8964 input_open_device +EXPORT_SYMBOL vmlinux 0xce516021 md_check_recovery +EXPORT_SYMBOL vmlinux 0xce548b3a dcache_dir_open +EXPORT_SYMBOL vmlinux 0xce580e51 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce65a4f4 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xce6b6075 skb_pull_data +EXPORT_SYMBOL vmlinux 0xce6f254c netif_skb_features EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce87ded5 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xce8bb8a6 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0xcea36df5 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xce96600f devfreq_monitor_start EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceac0401 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0xceaeb6fa fb_get_mode -EXPORT_SYMBOL vmlinux 0xcec33c6d nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xced7e988 dev_mc_del -EXPORT_SYMBOL vmlinux 0xced7fbf6 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xceda0b3a tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xcec7294b tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xced8407f blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xcedb8b7b can_nice EXPORT_SYMBOL vmlinux 0xcedc99af mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0xcede275c memremap EXPORT_SYMBOL vmlinux 0xcee956fc neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xceebb2b1 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xceec748e inode_insert5 -EXPORT_SYMBOL vmlinux 0xcefc7b86 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xceeb6b24 netdev_notice EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xcf01f610 panic_notifier_list -EXPORT_SYMBOL vmlinux 0xcf05252c snd_ctl_find_id -EXPORT_SYMBOL vmlinux 0xcf099d48 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xcf13d6d0 dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0xcf289fa0 __mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0xcf3d3183 d_alloc -EXPORT_SYMBOL vmlinux 0xcf40e94d cfb_imageblit -EXPORT_SYMBOL vmlinux 0xcf5840c5 sock_set_mark -EXPORT_SYMBOL vmlinux 0xcf5d02fd of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xcf6b7724 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xcf6cb232 unregister_netdev -EXPORT_SYMBOL vmlinux 0xcf701e8e remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xcf057c3b __kmap_to_page +EXPORT_SYMBOL vmlinux 0xcf30b74e pci_pme_active +EXPORT_SYMBOL vmlinux 0xcf443a12 iput +EXPORT_SYMBOL vmlinux 0xcf50adfd seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xcf596e80 con_is_bound +EXPORT_SYMBOL vmlinux 0xcf775b0e imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0xcf7e1d1d hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xcf86cdac queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xcf9aace4 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xcf9af0cb fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcf9c17e9 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0xcfa69a7e atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfba9923 lookup_one_len -EXPORT_SYMBOL vmlinux 0xcfc3d8b9 tcp_peek_len -EXPORT_SYMBOL vmlinux 0xcfca813b snd_compr_free_pages -EXPORT_SYMBOL vmlinux 0xcfd70635 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xcfd933a3 get_user_pages -EXPORT_SYMBOL vmlinux 0xcfe91a15 udplite_prot -EXPORT_SYMBOL vmlinux 0xd002e209 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xcfb00b14 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xcfcda6e8 set_disk_ro +EXPORT_SYMBOL vmlinux 0xcfd10ae2 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xcfdb736e xattr_full_name +EXPORT_SYMBOL vmlinux 0xcfdc320f blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xcfeb014c __lock_sock_fast EXPORT_SYMBOL vmlinux 0xd00f9d8f __do_once_sleepable_done -EXPORT_SYMBOL vmlinux 0xd0476ada param_set_short +EXPORT_SYMBOL vmlinux 0xd01825e8 dev_kfree_skb_irq_reason EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net EXPORT_SYMBOL vmlinux 0xd04febe9 arm_elf_read_implies_exec -EXPORT_SYMBOL vmlinux 0xd0515006 skb_push -EXPORT_SYMBOL vmlinux 0xd06246de generic_write_end +EXPORT_SYMBOL vmlinux 0xd0613b8b sk_wait_data EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06ec79e flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xd06d24da read_cache_folio EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0a9db05 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0xd0b0b66d pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xd0d685f3 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xd0dd023b __fput_sync +EXPORT_SYMBOL vmlinux 0xd0781294 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd07930e1 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0xd079c26f dev_uc_add +EXPORT_SYMBOL vmlinux 0xd09641a3 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xd0a065d7 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xd0b7ead7 genl_register_family +EXPORT_SYMBOL vmlinux 0xd0cf230d sget +EXPORT_SYMBOL vmlinux 0xd0cf72fa phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0xd0e9fb09 release_firmware -EXPORT_SYMBOL vmlinux 0xd0f1264e jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xd0f1d4f2 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xd0f6e697 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xd0f7c5df dev_set_threaded -EXPORT_SYMBOL vmlinux 0xd107cb61 phy_disconnect -EXPORT_SYMBOL vmlinux 0xd1094eea param_set_bool EXPORT_SYMBOL vmlinux 0xd109778f gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0xd10f74af snd_pcm_hw_rule_add -EXPORT_SYMBOL vmlinux 0xd1182be1 security_sock_graft -EXPORT_SYMBOL vmlinux 0xd11b3d19 __bforget -EXPORT_SYMBOL vmlinux 0xd131f97f genphy_c45_eee_is_active +EXPORT_SYMBOL vmlinux 0xd10f77bc security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xd12850a5 nd_device_notify +EXPORT_SYMBOL vmlinux 0xd13572bb udp_seq_start EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd1402edf mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xd14c267f skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0xd15590ed vga_client_register -EXPORT_SYMBOL vmlinux 0xd15aa1c8 input_event -EXPORT_SYMBOL vmlinux 0xd1637538 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xd153cd62 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xd168f1b1 simple_rmdir EXPORT_SYMBOL vmlinux 0xd18f2345 nla_put -EXPORT_SYMBOL vmlinux 0xd1950208 sk_stream_error -EXPORT_SYMBOL vmlinux 0xd1abed27 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0xd1b5b5bd xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xd1b997f0 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xd193c6f6 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xd1c8a169 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1ee0ab0 phy_loopback -EXPORT_SYMBOL vmlinux 0xd1f5384c mmc_get_card -EXPORT_SYMBOL vmlinux 0xd1f72648 from_kprojid +EXPORT_SYMBOL vmlinux 0xd1dbad3b snd_info_register EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd20a5531 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xd2136bc0 phy_attached_print -EXPORT_SYMBOL vmlinux 0xd235b530 input_get_keycode -EXPORT_SYMBOL vmlinux 0xd23dab65 neigh_table_init -EXPORT_SYMBOL vmlinux 0xd23fc386 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xd2086c70 fput +EXPORT_SYMBOL vmlinux 0xd20f39c2 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xd2184c87 __brelse +EXPORT_SYMBOL vmlinux 0xd23e33e5 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked -EXPORT_SYMBOL vmlinux 0xd247070e jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0xd24e253e request_key_rcu -EXPORT_SYMBOL vmlinux 0xd2552068 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xd2493270 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xd256cc18 skb_dump EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xd25a73d0 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xd25a8e4f elv_rb_find EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd260eed8 cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0xd2709921 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xd272c2c9 dev_uc_init +EXPORT_SYMBOL vmlinux 0xd276676c i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd27aa1ce pci_get_slot EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27b7c96 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy EXPORT_SYMBOL vmlinux 0xd2802d5c pgprot_kernel -EXPORT_SYMBOL vmlinux 0xd2968472 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xd2abef1c param_set_byte EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0xd2b7cd59 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0xd2c085ca bio_init_clone EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2dd0841 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xd2e67234 km_report +EXPORT_SYMBOL vmlinux 0xd2e90988 dst_discard_out EXPORT_SYMBOL vmlinux 0xd2eb1af9 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL vmlinux 0xd2eff689 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xd3093ccd con_is_bound +EXPORT_SYMBOL vmlinux 0xd2eecf74 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd3045d33 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0xd309c94e snd_pcm_hw_rule_add EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31e6ccb filp_close EXPORT_SYMBOL vmlinux 0xd32d6c08 lockref_get -EXPORT_SYMBOL vmlinux 0xd33161ad phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xd3489376 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xd355f855 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xd32dfaf1 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xd336652b balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35c5332 netpoll_parse_options EXPORT_SYMBOL vmlinux 0xd35f75a1 match_string EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd3839f7e security_path_rename -EXPORT_SYMBOL vmlinux 0xd38adb16 dcb_setapp +EXPORT_SYMBOL vmlinux 0xd376b903 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xd3843934 unix_get_socket EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd39b88b0 blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0xd39fa6ab __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xd3aa1cfa inc_nlink -EXPORT_SYMBOL vmlinux 0xd3c980a0 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xd3dc12a8 key_put -EXPORT_SYMBOL vmlinux 0xd3e6b5e7 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xd3a26796 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd3dc4231 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xd3dee717 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xd3e1481e vme_register_bridge +EXPORT_SYMBOL vmlinux 0xd3e5df79 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xd3e8068a genphy_c45_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xd3f3a14c nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL vmlinux 0xd3fe0ed1 __bh_read_batch +EXPORT_SYMBOL vmlinux 0xd3f719de inet_add_offload +EXPORT_SYMBOL vmlinux 0xd4007e4f xfrm_init_state EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40760c4 xfrm_state_free EXPORT_SYMBOL vmlinux 0xd40a4619 of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xd421e642 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0xd4398dc3 retire_super -EXPORT_SYMBOL vmlinux 0xd44f80f2 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xd40c9737 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd426d994 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xd42aaeb8 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xd439eebf dup_iter EXPORT_SYMBOL vmlinux 0xd45ddb66 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0xd4611b7f ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xd46895ae devfreq_update_status +EXPORT_SYMBOL vmlinux 0xd45f87ba skb_eth_pop +EXPORT_SYMBOL vmlinux 0xd467c35e input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0xd46b54dd flush_delayed_work -EXPORT_SYMBOL vmlinux 0xd47efb5c nand_write_oob_std -EXPORT_SYMBOL vmlinux 0xd4808660 of_clk_get_by_name EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd48530ac __napi_schedule -EXPORT_SYMBOL vmlinux 0xd4a60d29 read_cache_folio -EXPORT_SYMBOL vmlinux 0xd4a84e04 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd49df495 mem_map +EXPORT_SYMBOL vmlinux 0xd4accd75 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c1a539 vfs_mknod +EXPORT_SYMBOL vmlinux 0xd4cfb184 vfs_fadvise EXPORT_SYMBOL vmlinux 0xd4cfead9 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0xd4d0c3e5 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xd4d391d6 scsi_block_requests -EXPORT_SYMBOL vmlinux 0xd4d3aff0 generic_write_checks EXPORT_SYMBOL vmlinux 0xd4dab474 set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0xd4e2f0e4 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xd4efc36e pldmfw_flash_image EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd50ca918 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xd4fc2eb5 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xd50c0749 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xd518e33a secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xd5195749 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xd525761d fb_firmware_edid EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd53334ba snd_ctl_find_numid -EXPORT_SYMBOL vmlinux 0xd534c5fe security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0xd5371544 rpmh_write_async -EXPORT_SYMBOL vmlinux 0xd5582d4f eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xd56f806c rtc_add_groups -EXPORT_SYMBOL vmlinux 0xd5723e49 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xd544478c param_ops_short +EXPORT_SYMBOL vmlinux 0xd558218f jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xd55a9263 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xd571926e security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd5737da7 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd57dcf69 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xd589bed3 snd_timer_stop EXPORT_SYMBOL vmlinux 0xd59ceffe __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd5b09263 dcb_getrewr_prio_pcp_mask_map EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c084b2 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xd5ce6ca9 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xd5f389bd fscrypt_decrypt_block_inplace EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd61ce75d phy_device_remove EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd634be37 udp_seq_ops EXPORT_SYMBOL vmlinux 0xd63fafc2 div64_u64_rem -EXPORT_SYMBOL vmlinux 0xd63ff1b6 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xd64479ba flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xd64b681a sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xd651471e md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0xd6582ab0 xa_extract -EXPORT_SYMBOL vmlinux 0xd6684a26 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xd66ca761 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xd67305ea blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0xd685c5e6 snd_timer_new +EXPORT_SYMBOL vmlinux 0xd65cdf99 tty_unlock +EXPORT_SYMBOL vmlinux 0xd65fe1fc dquot_transfer +EXPORT_SYMBOL vmlinux 0xd6631d63 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd663a08b vfs_link +EXPORT_SYMBOL vmlinux 0xd6841417 napi_get_frags +EXPORT_SYMBOL vmlinux 0xd68ad7f9 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd692dadd md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd6961c0a flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6aafe5f snd_soc_alloc_ac97_component EXPORT_SYMBOL vmlinux 0xd6bc04ff cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xd6c92281 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd6cd6b79 uart_register_driver +EXPORT_SYMBOL vmlinux 0xd6db1921 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xd6e09b9c dcb_getrewr_prio_pcp_mask_map EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6eadfdf i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f67f99 snd_timer_continue +EXPORT_SYMBOL vmlinux 0xd6f632a2 i2c_clients_command EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd719fca8 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xd71f3a02 pci_request_irq +EXPORT_SYMBOL vmlinux 0xd71ce937 devm_of_iomap +EXPORT_SYMBOL vmlinux 0xd7377f7f __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd7499928 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xd74c9ffb tcp_req_err -EXPORT_SYMBOL vmlinux 0xd74d950c inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xd75a28ef simple_link -EXPORT_SYMBOL vmlinux 0xd762d170 scsi_remove_device -EXPORT_SYMBOL vmlinux 0xd7646f1c devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xd743a13d xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xd74c26b1 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xd75a3ac7 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xd76645cb serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xd769c78c jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xd76aa62c flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0xd76f6099 vscnprintf -EXPORT_SYMBOL vmlinux 0xd77c2add mmc_command_done +EXPORT_SYMBOL vmlinux 0xd7878b89 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xd78f2e69 blk_mq_alloc_request EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd79a7261 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xd7bf642a genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xd7bfde12 sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7e21c8e pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd8028f84 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xd8054fdc tegra_ivc_read_get_next_frame -EXPORT_SYMBOL vmlinux 0xd8132b48 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xd7f20c4b mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xd7f2c709 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xd80a67ab inet_bind +EXPORT_SYMBOL vmlinux 0xd80acf49 xfrm_register_km EXPORT_SYMBOL vmlinux 0xd819c7f1 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0xd81a37ca rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0xd81a48da copy_splice_read -EXPORT_SYMBOL vmlinux 0xd82334cf tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xd82b47ff fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xd8210486 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xd826f8e2 netdev_update_features +EXPORT_SYMBOL vmlinux 0xd82ca64b vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xd82e2324 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0xd8410611 mempool_alloc -EXPORT_SYMBOL vmlinux 0xd84aa283 mmc_retune_pause -EXPORT_SYMBOL vmlinux 0xd862a221 i2c_find_device_by_fwnode +EXPORT_SYMBOL vmlinux 0xd8415515 pci_request_regions +EXPORT_SYMBOL vmlinux 0xd85375bb sock_kmalloc +EXPORT_SYMBOL vmlinux 0xd85a4012 cdev_set_parent EXPORT_SYMBOL vmlinux 0xd86b61c4 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0xd8754bac netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xd875584a __genradix_ptr -EXPORT_SYMBOL vmlinux 0xd87e57c9 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0xd88e87fe km_policy_notify -EXPORT_SYMBOL vmlinux 0xd899e8d9 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0xd89aceba udp_gro_complete +EXPORT_SYMBOL vmlinux 0xd878c12f blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xd88ffd14 ata_std_end_eh EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd89ee11f krait_set_l2_indirect_reg -EXPORT_SYMBOL vmlinux 0xd8a0337a gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xd8a80e4f genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format -EXPORT_SYMBOL vmlinux 0xd8b19c8a snd_pcm_lib_preallocate_pages_for_all -EXPORT_SYMBOL vmlinux 0xd8b1e1bd inode_needs_sync +EXPORT_SYMBOL vmlinux 0xd8b076dc snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0xd8b58dab sock_no_listen EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8cf229f __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xd8f1e1a0 sock_no_accept -EXPORT_SYMBOL vmlinux 0xd911e225 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0xd91c6d9c mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0xd8c0e16b tcp_check_req +EXPORT_SYMBOL vmlinux 0xd8eccb0a param_set_charp +EXPORT_SYMBOL vmlinux 0xd8ef7a42 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xd9089413 mii_check_link +EXPORT_SYMBOL vmlinux 0xd9092e6b filp_close +EXPORT_SYMBOL vmlinux 0xd91a60f9 netlink_ns_capable EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd9218327 key_validate -EXPORT_SYMBOL vmlinux 0xd930649a ip6_output -EXPORT_SYMBOL vmlinux 0xd9518fde vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xd95b7c70 nand_read_page_raw -EXPORT_SYMBOL vmlinux 0xd9796e5a __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd930b77a nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xd9443f1b mount_bdev +EXPORT_SYMBOL vmlinux 0xd94fb461 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd952e8bd vfs_symlink +EXPORT_SYMBOL vmlinux 0xd967ff76 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xd97b8cc1 bpf_map_get EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98cd7c7 register_sound_dsp +EXPORT_SYMBOL vmlinux 0xd9986a94 dm_put_device EXPORT_SYMBOL vmlinux 0xd9a88d16 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xd9ad316f param_get_ullong +EXPORT_SYMBOL vmlinux 0xd9b252bf single_open_size EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9c4c5ac netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0xd9cabebc posix_acl_update_mode EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e9229e dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd9deb5d2 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xd9ebdcd2 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL vmlinux 0xd9efa83c xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xd9f4ad6d ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0xda0255db pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0xda128af8 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xda18b19a backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xda247b89 snd_ctl_rename +EXPORT_SYMBOL vmlinux 0xd9f22e2b bioset_init +EXPORT_SYMBOL vmlinux 0xd9fc92e1 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xda048352 vm_mmap +EXPORT_SYMBOL vmlinux 0xda176240 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xda18b04c security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xda20e72e dev_get_stats +EXPORT_SYMBOL vmlinux 0xda244084 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0xda2821e3 par_io_of_config -EXPORT_SYMBOL vmlinux 0xda293c5e max8998_read_reg -EXPORT_SYMBOL vmlinux 0xda2c88c7 mdio_driver_unregister EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3d362d of_translate_address -EXPORT_SYMBOL vmlinux 0xda4ed007 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0xda6d5012 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xda4461a6 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xda446b6b register_sound_special +EXPORT_SYMBOL vmlinux 0xda45faf3 slab_build_skb +EXPORT_SYMBOL vmlinux 0xda4b6017 configfs_undepend_item EXPORT_SYMBOL vmlinux 0xda6fc0b3 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xda71ee72 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xdab6ef79 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xda79b553 ps2_interrupt +EXPORT_SYMBOL vmlinux 0xda7be278 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xda91550f mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdacba56b get_phy_device -EXPORT_SYMBOL vmlinux 0xdacf9d05 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xdad10925 phy_suspend +EXPORT_SYMBOL vmlinux 0xdacfe419 scsi_is_host_device EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw -EXPORT_SYMBOL vmlinux 0xdae1b8df jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xdae45d73 folio_wait_bit EXPORT_SYMBOL vmlinux 0xdaf65445 vsnprintf -EXPORT_SYMBOL vmlinux 0xdaf65491 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xdb166510 proc_create_single_data -EXPORT_SYMBOL vmlinux 0xdb1e1399 seq_file_path -EXPORT_SYMBOL vmlinux 0xdb1f8e91 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xdb58ba2f qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xdb5ab167 iov_iter_revert -EXPORT_SYMBOL vmlinux 0xdb5ab854 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xdb0eb741 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xdb17d949 copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0xdb377c91 sock_no_accept +EXPORT_SYMBOL vmlinux 0xdb444ff8 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xdb459152 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xdb45dd7c __ip_options_compile +EXPORT_SYMBOL vmlinux 0xdb47fd8f tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xdb4aa7b5 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xdb5e0391 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xdb62c2c9 from_kuid EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb691611 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0xdb6cc879 amba_request_regions EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7f2838 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xdb812d2a keyring_alloc EXPORT_SYMBOL vmlinux 0xdb81e2fc __wait_on_bit +EXPORT_SYMBOL vmlinux 0xdb899c1f unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xdb9091ba security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0xdb935430 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xdb9a387a folio_create_empty_buffers +EXPORT_SYMBOL vmlinux 0xdb937c00 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xdb9e1b99 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xdba1ff2d __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0xdbad3edd tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0xdbb3d94a to_ndd -EXPORT_SYMBOL vmlinux 0xdbb9a1e8 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xdbb2b601 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xdbb929d5 md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbda9fdc to_nd_btt +EXPORT_SYMBOL vmlinux 0xdbd39380 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe34d0a phy_detach -EXPORT_SYMBOL vmlinux 0xdc06f956 d_splice_alias -EXPORT_SYMBOL vmlinux 0xdc0dafeb cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xdbebc55d _dev_info +EXPORT_SYMBOL vmlinux 0xdc09b300 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xdc0bb652 unlock_rename EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete -EXPORT_SYMBOL vmlinux 0xdc0ebb97 register_sound_special_device EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1c668e dst_release +EXPORT_SYMBOL vmlinux 0xdc25552c __bio_advance EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc562e4e filp_open EXPORT_SYMBOL vmlinux 0xdc5c7961 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xdc6b2103 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xdc6e7bc2 __skb_checksum -EXPORT_SYMBOL vmlinux 0xdc7b0f68 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xdc613008 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xdc808023 tcp_recvmsg EXPORT_SYMBOL vmlinux 0xdc81901a wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xdc853b3a jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0xdc9ac937 task_work_add -EXPORT_SYMBOL vmlinux 0xdc9e00fd stream_open -EXPORT_SYMBOL vmlinux 0xdca6a2ff skb_vlan_push -EXPORT_SYMBOL vmlinux 0xdcba4d6c bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xdcc419f7 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xdccd32f6 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0xdcd7891e key_task_permission +EXPORT_SYMBOL vmlinux 0xdca6a9c3 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xdcbdd65e mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xdcd1f547 register_sound_special_device +EXPORT_SYMBOL vmlinux 0xdcd2f940 sock_bind_add EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdced93c2 inet6_offloads EXPORT_SYMBOL vmlinux 0xdcf6d045 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0xdcf893e4 eth_header -EXPORT_SYMBOL vmlinux 0xdcf8f02b lease_modify -EXPORT_SYMBOL vmlinux 0xdcf90048 tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0xdcfb1a88 inode_to_bdi +EXPORT_SYMBOL vmlinux 0xdcfb2ce6 devfreq_remove_device EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat -EXPORT_SYMBOL vmlinux 0xdd0b8850 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xdd210875 processor EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr EXPORT_SYMBOL vmlinux 0xdd297317 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2ec929 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0xdd2f60df snd_device_free -EXPORT_SYMBOL vmlinux 0xdd3c342d param_get_ushort -EXPORT_SYMBOL vmlinux 0xdd43c616 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xdd36dbc5 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0xdd5fa363 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xdd69d9ed copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0xdd5e6553 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xdd62bf0e rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xdd64245a posix_lock_file EXPORT_SYMBOL vmlinux 0xdd745464 cancel_work -EXPORT_SYMBOL vmlinux 0xdd7bfe17 fwnode_irq_get EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd81421f trace_print_symbols_seq_u64 -EXPORT_SYMBOL vmlinux 0xdd82e5d0 param_get_uint EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd875ea9 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xdd8b45b6 rtnl_notify -EXPORT_SYMBOL vmlinux 0xdd8d1b5e md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xdd998606 seq_release -EXPORT_SYMBOL vmlinux 0xddd4a2db generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xdddc91b0 km_query +EXPORT_SYMBOL vmlinux 0xdd9cb1dd get_tree_single +EXPORT_SYMBOL vmlinux 0xdda45170 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xddaaeb23 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xddcabe5a get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xddddba17 seq_write EXPORT_SYMBOL vmlinux 0xdde5bc78 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xddf6ca24 handshake_req_cancel -EXPORT_SYMBOL vmlinux 0xde285a73 misc_deregister -EXPORT_SYMBOL vmlinux 0xde2ac7a5 ethtool_aggregate_rmon_stats -EXPORT_SYMBOL vmlinux 0xde34a16d dm_table_get_size -EXPORT_SYMBOL vmlinux 0xde46d51a devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xde4ae59c sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xddf40141 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xddf6e42b page_symlink +EXPORT_SYMBOL vmlinux 0xddff5bee twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xde25f92d tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xde29998f tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xde3cf3e4 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xde3f9b71 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xde44fcdb scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xde47a27f mdiobus_scan_c22 EXPORT_SYMBOL vmlinux 0xde4bf88b __mutex_init +EXPORT_SYMBOL vmlinux 0xde5114b1 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0xde55e795 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0xde6389f9 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xde6900cd sock_bindtoindex -EXPORT_SYMBOL vmlinux 0xde6bc7a0 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0xde6bd916 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xde6de0d9 dev_add_offload -EXPORT_SYMBOL vmlinux 0xde6f8a5f blk_execute_rq EXPORT_SYMBOL vmlinux 0xde7109f3 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xde76503f fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xde7ee814 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xde968e4a dcb_getapp -EXPORT_SYMBOL vmlinux 0xded0fe4b ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xde729ddf generic_file_open +EXPORT_SYMBOL vmlinux 0xde7f0868 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0xdec7da59 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xdecc1563 folio_redirty_for_writepage EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded48bcd jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xdeeef278 pci_get_class EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdef9c01f phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xdf161a1a neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xdf058ea0 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xdf098710 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xdf09db37 rt6_lookup EXPORT_SYMBOL vmlinux 0xdf1897d2 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0xdf1daff2 genphy_update_link -EXPORT_SYMBOL vmlinux 0xdf290168 bio_alloc_clone -EXPORT_SYMBOL vmlinux 0xdf2b9aa9 tty_write_room EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf323a42 mpage_writepages -EXPORT_SYMBOL vmlinux 0xdf397802 tcp_simple_retransmit EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update -EXPORT_SYMBOL vmlinux 0xdf498820 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xdf506931 fd_install EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6e8f8e phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xdf79fbe4 sock_rfree -EXPORT_SYMBOL vmlinux 0xdf804007 dev_open -EXPORT_SYMBOL vmlinux 0xdf925708 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xdf744685 param_set_long +EXPORT_SYMBOL vmlinux 0xdf80c427 pci_set_master EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf978501 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0xdf9dfa4a fqdir_exit -EXPORT_SYMBOL vmlinux 0xdfa92bc1 vc_resize -EXPORT_SYMBOL vmlinux 0xdfbad735 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xdfcaba69 fs_param_is_string EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfe51942 rps_may_expire_flow EXPORT_SYMBOL vmlinux 0xdfed57b6 unload_nls EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xdffd64fa fb_firmware_edid -EXPORT_SYMBOL vmlinux 0xe0031c3b path_put -EXPORT_SYMBOL vmlinux 0xe0197c09 seq_release_private -EXPORT_SYMBOL vmlinux 0xe01ded05 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0xe01eb6ae scsi_host_put -EXPORT_SYMBOL vmlinux 0xe02971c0 gpiochip_irq_reqres -EXPORT_SYMBOL vmlinux 0xe02c2f7c mmc_release_host -EXPORT_SYMBOL vmlinux 0xe03345bf netif_device_attach -EXPORT_SYMBOL vmlinux 0xe038ce61 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xe0393579 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xe03b8eb7 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0xe01b3696 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xe03eebb6 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe03ff743 tty_register_ldisc EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe06e07f0 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xe06fafbc dquot_commit +EXPORT_SYMBOL vmlinux 0xe0788515 ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe0853c4a make_kgid -EXPORT_SYMBOL vmlinux 0xe0861697 key_link -EXPORT_SYMBOL vmlinux 0xe091bc71 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xe0832e4b empty_zero_page +EXPORT_SYMBOL vmlinux 0xe08a5027 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0a5bfdc flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xe09e2dc7 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0xe0a7336b filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe0ab0d42 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b76df9 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0d0705f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xe0de2657 fb_set_cmap -EXPORT_SYMBOL vmlinux 0xe0f2f906 scsi_device_get -EXPORT_SYMBOL vmlinux 0xe0f3281a __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xe0f525ae phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xe10c7857 of_get_parent -EXPORT_SYMBOL vmlinux 0xe10e2af2 sock_create_kern -EXPORT_SYMBOL vmlinux 0xe1137269 vfs_get_link +EXPORT_SYMBOL vmlinux 0xe0c993bf security_path_rename +EXPORT_SYMBOL vmlinux 0xe0d26596 key_unlink +EXPORT_SYMBOL vmlinux 0xe0e13c88 pci_iomap +EXPORT_SYMBOL vmlinux 0xe0f8b23e __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xe10c5065 posix_test_lock EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial -EXPORT_SYMBOL vmlinux 0xe114ded7 vfs_unlink -EXPORT_SYMBOL vmlinux 0xe1216be9 inet_del_offload +EXPORT_SYMBOL vmlinux 0xe11ff133 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe1258d73 netdev_change_features +EXPORT_SYMBOL vmlinux 0xe126e809 __dev_set_mtu EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors EXPORT_SYMBOL vmlinux 0xe14b4e65 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL vmlinux 0xe14e58a8 tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0xe14f01b1 discard_new_inode +EXPORT_SYMBOL vmlinux 0xe1512383 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0xe153f436 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0xe178720d tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xe17a7802 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0xe17e5453 of_device_is_available -EXPORT_SYMBOL vmlinux 0xe1823230 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0xe190779b netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xe1c28547 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xe16b9f6b md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xe1753eff sys_copyarea +EXPORT_SYMBOL vmlinux 0xe19cbe79 dev_get_flags +EXPORT_SYMBOL vmlinux 0xe1bdb5fc input_set_keycode +EXPORT_SYMBOL vmlinux 0xe1c70b4e snd_pcm_set_sync EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ecbf70 xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xe1eeed94 folio_set_bh -EXPORT_SYMBOL vmlinux 0xe1f83ff8 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xe200fbed pci_enable_link_state -EXPORT_SYMBOL vmlinux 0xe207af7b tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0xe20b151d mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xe1e758f1 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xe1fbc4e0 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xe21cea64 fault_in_readable -EXPORT_SYMBOL vmlinux 0xe2230379 cdev_set_parent EXPORT_SYMBOL vmlinux 0xe2274a1c __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe22e95a6 mmc_gpio_set_cd_irq -EXPORT_SYMBOL vmlinux 0xe2398305 dump_align -EXPORT_SYMBOL vmlinux 0xe23c146f xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0xe242a885 __netif_rx -EXPORT_SYMBOL vmlinux 0xe24a0d9c skb_checksum -EXPORT_SYMBOL vmlinux 0xe25b4687 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xe2601e9b _dev_emerg +EXPORT_SYMBOL vmlinux 0xe231392e kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xe2469015 __nlmsg_put EXPORT_SYMBOL vmlinux 0xe266f098 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe26ee7dd ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0xe284a9fd scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xe289b0b6 unlock_buffer -EXPORT_SYMBOL vmlinux 0xe292c3d6 scsi_remove_target -EXPORT_SYMBOL vmlinux 0xe2a991d1 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0xe2aba6dc update_region -EXPORT_SYMBOL vmlinux 0xe2bb8020 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xe2c4c3fd alloc_fcdev -EXPORT_SYMBOL vmlinux 0xe2d3568c tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xe27a9a81 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xe2940a53 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xe2943fb9 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xe29bd06c register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xe2a76bd2 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xe2a9b3ec flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xe2aeef54 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xe2b1fa93 set_binfmt +EXPORT_SYMBOL vmlinux 0xe2b2f8fd register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xe2b4711c snd_card_set_id +EXPORT_SYMBOL vmlinux 0xe2c2cb95 drop_nlink +EXPORT_SYMBOL vmlinux 0xe2c2f218 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xe2d040f1 xp_free EXPORT_SYMBOL vmlinux 0xe2d47398 crc_ccitt_false EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2dd1510 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe2d77706 seq_hex_dump EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2ea9848 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xe2f2e2ab unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xe2f3d99f rename_lock -EXPORT_SYMBOL vmlinux 0xe3153264 input_free_device -EXPORT_SYMBOL vmlinux 0xe3205e3c scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xe3249ef4 blk_mq_end_request EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe335a82c twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xe344e1dd aperture_remove_conflicting_pci_devices EXPORT_SYMBOL vmlinux 0xe3482046 radix_tree_iter_delete EXPORT_SYMBOL vmlinux 0xe353cf34 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xe354abe4 _dev_crit -EXPORT_SYMBOL vmlinux 0xe35c548b eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0xe35fb0b9 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xe36b8600 snd_ctl_replace -EXPORT_SYMBOL vmlinux 0xe3773691 udp_prot -EXPORT_SYMBOL vmlinux 0xe3812d99 skb_dump +EXPORT_SYMBOL vmlinux 0xe3592a80 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xe36156ba tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xe370ae79 notify_change +EXPORT_SYMBOL vmlinux 0xe375b9b7 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xe38f3911 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3a90dfa radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xe3b11a55 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xe3b1d16f of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xe3b42220 generic_perform_write -EXPORT_SYMBOL vmlinux 0xe3b6cf44 rproc_alloc -EXPORT_SYMBOL vmlinux 0xe3b7376b tty_devnum -EXPORT_SYMBOL vmlinux 0xe3c0c176 poll_freewait -EXPORT_SYMBOL vmlinux 0xe3c8ff93 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xe3d36ec3 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xe3cf030b dentry_path_raw +EXPORT_SYMBOL vmlinux 0xe3ded383 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0xe3e64614 netdev_warn EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ec5a09 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0xe3fbd30a _raw_write_trylock EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe4018583 module_put -EXPORT_SYMBOL vmlinux 0xe4047676 bdi_unregister -EXPORT_SYMBOL vmlinux 0xe4243b4f vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0xe426462c i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0xe42951b4 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0xe42e9be1 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xe4300269 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xe43a790c vlan_vid_add -EXPORT_SYMBOL vmlinux 0xe43e256e key_unlink -EXPORT_SYMBOL vmlinux 0xe45ce93f xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xe45d26ea __bread_gfp -EXPORT_SYMBOL vmlinux 0xe46fd706 pci_find_bus -EXPORT_SYMBOL vmlinux 0xe478a874 __ps2_command -EXPORT_SYMBOL vmlinux 0xe482ddf8 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0xe4a65a71 of_device_alloc -EXPORT_SYMBOL vmlinux 0xe4c6ed0a mount_subtree +EXPORT_SYMBOL vmlinux 0xe450bf64 inode_set_flags +EXPORT_SYMBOL vmlinux 0xe495fa0d generic_perform_write +EXPORT_SYMBOL vmlinux 0xe4c2c2fc nand_monolithic_read_page_raw EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid -EXPORT_SYMBOL vmlinux 0xe4c9a5c1 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0xe4e0c4f9 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xe4e9e414 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xe50b416b skb_copy_header -EXPORT_SYMBOL vmlinux 0xe50e9294 fs_param_is_path -EXPORT_SYMBOL vmlinux 0xe5107a57 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xe4ca8400 rtnl_notify +EXPORT_SYMBOL vmlinux 0xe4cac997 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xe4d6a919 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe4df6026 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xe4e96fa3 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xe4fbe44a dev_remove_offload +EXPORT_SYMBOL vmlinux 0xe5112029 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe542249f tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xe53a8796 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xe548b121 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xe563c259 bdi_unregister EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe5807e62 gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5904a13 ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe596d4c1 dquot_destroy -EXPORT_SYMBOL vmlinux 0xe5bbfa0c ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0xe5c61f1f path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xe5b394dd neigh_connected_output EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e84b13 __destroy_inode -EXPORT_SYMBOL vmlinux 0xe6115412 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xe6128066 pci_get_class -EXPORT_SYMBOL vmlinux 0xe627607d netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xe62919f2 thaw_bdev +EXPORT_SYMBOL vmlinux 0xe5c7a6b2 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xe5e49157 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe5f923b4 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xe6018405 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xe6051030 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe6081d6e kern_unmount +EXPORT_SYMBOL vmlinux 0xe6260498 netif_carrier_off EXPORT_SYMBOL vmlinux 0xe62cdb0e memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xe650fc58 kernel_tmpfile_open -EXPORT_SYMBOL vmlinux 0xe656547f blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0xe6661cca xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xe6765ec3 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xe6341bd0 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xe63bea79 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xe64d07a6 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xe66f09c9 proc_set_size +EXPORT_SYMBOL vmlinux 0xe671cde4 mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0xe6796356 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xe685c093 ethtool_aggregate_pause_stats +EXPORT_SYMBOL vmlinux 0xe68f628e drop_super EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size -EXPORT_SYMBOL vmlinux 0xe6990970 param_ops_int -EXPORT_SYMBOL vmlinux 0xe6acafb8 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0xe6b1cf27 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe699f452 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0xe6be3bdd __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xe6c3c6f6 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xe6be7085 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe6c12649 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xe6c3c6f1 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xe6cd5d7d unregister_cdrom EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d3d047 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL vmlinux 0xe6e8ea35 snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL vmlinux 0xe7008a71 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xe6e24ee9 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xe6f9d331 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0xe6fdcfca truncate_setsize EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv -EXPORT_SYMBOL vmlinux 0xe70bfbb5 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0xe713ef17 hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0xe733cc7d copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xe74a9d74 start_tty -EXPORT_SYMBOL vmlinux 0xe74bf764 __snd_pcm_lib_xfer -EXPORT_SYMBOL vmlinux 0xe753d251 netdev_state_change -EXPORT_SYMBOL vmlinux 0xe7644072 phy_read_paged +EXPORT_SYMBOL vmlinux 0xe716e418 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0xe71b2804 vga_client_register +EXPORT_SYMBOL vmlinux 0xe71d4d1c tcp_connect +EXPORT_SYMBOL vmlinux 0xe7325d20 ip_options_compile +EXPORT_SYMBOL vmlinux 0xe734ba67 fb_set_var +EXPORT_SYMBOL vmlinux 0xe735f0c5 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe7443c08 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xe74aaf45 key_link +EXPORT_SYMBOL vmlinux 0xe76cd75a pci_dev_get +EXPORT_SYMBOL vmlinux 0xe76f42f9 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xe7708765 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xe78ceee5 revert_creds -EXPORT_SYMBOL vmlinux 0xe78e8f78 of_match_node -EXPORT_SYMBOL vmlinux 0xe796960c cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xe78ed519 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xe78f509e kmap_high +EXPORT_SYMBOL vmlinux 0xe7a28908 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xe7b7ed32 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0xe7bfcb06 param_ops_byte +EXPORT_SYMBOL vmlinux 0xe7c230b3 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7d640e6 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0xe7d82ab0 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xe7dc0986 sk_stop_timer EXPORT_SYMBOL vmlinux 0xe7e4d52a _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0xe7e8e507 dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0xe7f04a7c misc_register -EXPORT_SYMBOL vmlinux 0xe7fd8c26 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0xe7fe60d4 ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xe801ae14 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0xe7f0f653 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xe80cc3b6 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe81f4170 bio_integrity_add_page EXPORT_SYMBOL vmlinux 0xe82054af dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0xe8277fd5 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xe82cb327 has_capability_noaudit -EXPORT_SYMBOL vmlinux 0xe830e670 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xe834ccbb file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xe85860a5 snd_timer_pause -EXPORT_SYMBOL vmlinux 0xe8606d25 skb_splice_from_iter -EXPORT_SYMBOL vmlinux 0xe8824f80 amba_release_regions +EXPORT_SYMBOL vmlinux 0xe832e574 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xe836756b xp_alloc +EXPORT_SYMBOL vmlinux 0xe84979ca mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xe869109a filemap_get_folios +EXPORT_SYMBOL vmlinux 0xe87562a4 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xe8804f54 current_time +EXPORT_SYMBOL vmlinux 0xe887be7c dev_uc_del +EXPORT_SYMBOL vmlinux 0xe88d1edc dev_mc_init EXPORT_SYMBOL vmlinux 0xe8a4900a nla_reserve EXPORT_SYMBOL vmlinux 0xe8b9a3d4 mx51_revision EXPORT_SYMBOL vmlinux 0xe8c6db6a of_get_min_tck EXPORT_SYMBOL vmlinux 0xe8cd0a2c crc32_le_shift -EXPORT_SYMBOL vmlinux 0xe8ce20de jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xe8cfac70 scm_fp_dup EXPORT_SYMBOL vmlinux 0xe8cfce09 tegra114_clock_deassert_dfll_dvco_reset EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8d29977 proc_mkdir -EXPORT_SYMBOL vmlinux 0xe8f1736e inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xe8eeb65e eth_header EXPORT_SYMBOL vmlinux 0xe8f42d8c irq_stat -EXPORT_SYMBOL vmlinux 0xe8fd4a69 of_find_all_nodes -EXPORT_SYMBOL vmlinux 0xe9017b5a sock_pfree -EXPORT_SYMBOL vmlinux 0xe90578dd blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xe90e8f34 register_cdrom +EXPORT_SYMBOL vmlinux 0xe8ff295c generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe903fc45 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xe907b2ac of_device_is_compatible EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe915ba5c dev_mc_init +EXPORT_SYMBOL vmlinux 0xe92ac02a pcim_iomap EXPORT_SYMBOL vmlinux 0xe9325f03 downgrade_write +EXPORT_SYMBOL vmlinux 0xe938879b skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9585eda task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xe9628ce8 sort_r -EXPORT_SYMBOL vmlinux 0xe969a519 init_pseudo -EXPORT_SYMBOL vmlinux 0xe9766509 mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0xe97bb2de netdev_crit -EXPORT_SYMBOL vmlinux 0xe981313e sg_miter_start +EXPORT_SYMBOL vmlinux 0xe96ccd44 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xe98e0438 elevator_alloc +EXPORT_SYMBOL vmlinux 0xe9901c8d tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xe994d825 nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0xe99b7111 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0xe99bafd9 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0xe9a37e2a tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xe9abd228 of_phy_find_device -EXPORT_SYMBOL vmlinux 0xe9b0a272 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xe9b4a099 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xe9b52019 inet_select_addr EXPORT_SYMBOL vmlinux 0xe9cbf734 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe9cc57c6 tty_lock +EXPORT_SYMBOL vmlinux 0xe9d0bebf phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xe9d33848 of_graph_is_present +EXPORT_SYMBOL vmlinux 0xe9d990e4 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xe9e557db generic_file_llseek EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9eaff84 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xe9f6eeb3 pci_scan_bridge EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9ff4685 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xea24e347 inet6_release +EXPORT_SYMBOL vmlinux 0xea2e4659 pci_disable_msi EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea5500a9 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xea566290 __folio_alloc -EXPORT_SYMBOL vmlinux 0xea57be60 filemap_get_folios -EXPORT_SYMBOL vmlinux 0xea6c7704 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xea47b075 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xea4bca51 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xea54d06a skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xea564b42 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xea59c924 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xea669949 elv_rb_add +EXPORT_SYMBOL vmlinux 0xea66d48b bio_add_pc_page EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea78dfb3 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xea76e511 vfs_iter_write EXPORT_SYMBOL vmlinux 0xea7987f1 key_update EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options -EXPORT_SYMBOL vmlinux 0xea80f878 phy_aneg_done -EXPORT_SYMBOL vmlinux 0xea88bb63 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0xea9ced9a dqput +EXPORT_SYMBOL vmlinux 0xea84ec6d of_translate_address +EXPORT_SYMBOL vmlinux 0xea8edf2b netdev_alert +EXPORT_SYMBOL vmlinux 0xeaa0ff6e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xeaa3aae6 d_alloc_name +EXPORT_SYMBOL vmlinux 0xeaa96537 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xeab3a1fd cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xeab6fd0d t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0xeab99233 pci_dev_put -EXPORT_SYMBOL vmlinux 0xeac86519 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xead82413 d_set_d_op -EXPORT_SYMBOL vmlinux 0xeada13e7 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xeae0f6df snd_pcm_open_substream -EXPORT_SYMBOL vmlinux 0xeae1ac18 snd_info_create_card_entry -EXPORT_SYMBOL vmlinux 0xeae797fb __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xeac36f48 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xeacd7c8b netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xead5650b sk_mc_loop +EXPORT_SYMBOL vmlinux 0xeaefd558 lock_rename_child +EXPORT_SYMBOL vmlinux 0xeaf12b83 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xeaf46059 pci_bus_add_devices EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl -EXPORT_SYMBOL vmlinux 0xeb158724 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xeb085578 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xeb0bafb0 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xeb0c6c21 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xeb0f2b37 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xeb137fef dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xeb25fff7 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xeb322e06 of_phy_get_and_connect EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3c3e72 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xeb47e05b noop_dirty_folio -EXPORT_SYMBOL vmlinux 0xeb519d3e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xeb459545 kern_path_create +EXPORT_SYMBOL vmlinux 0xeb4c4f3b dma_free_attrs +EXPORT_SYMBOL vmlinux 0xeb524bb3 skb_tx_error EXPORT_SYMBOL vmlinux 0xeb53178a crc8 EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb59182d mdiobb_read_c22 +EXPORT_SYMBOL vmlinux 0xeb5e23fc __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xeb6ef970 __ClearPageMovable EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr -EXPORT_SYMBOL vmlinux 0xeb853031 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xeb869aac __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xeb90788b md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xeb961515 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xeb981728 __folio_lock +EXPORT_SYMBOL vmlinux 0xeb8805f3 input_set_capability EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebaea1a1 mmc_put_card -EXPORT_SYMBOL vmlinux 0xebb893f1 pcie_capability_clear_and_set_word_locked -EXPORT_SYMBOL vmlinux 0xebd32a66 inet_offloads -EXPORT_SYMBOL vmlinux 0xebe056dc tty_port_close_start -EXPORT_SYMBOL vmlinux 0xebe13391 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xebabf618 build_skb_around +EXPORT_SYMBOL vmlinux 0xebb3cadd pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xebb7fedf mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xebe516df clk_get EXPORT_SYMBOL vmlinux 0xebe632db zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xebe88c80 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xebf7711e in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high -EXPORT_SYMBOL vmlinux 0xec0d0539 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0xec1f46da flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xebffaee7 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0xec2ef142 rawnand_sw_hamming_init EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xec37a2e8 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xec43dce9 of_iommu_get_resv_regions +EXPORT_SYMBOL vmlinux 0xec4842bc skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec69d4b3 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xec6caaee fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xec6ebea3 input_unregister_device +EXPORT_SYMBOL vmlinux 0xec8219dc phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xec9be103 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xeca63e6b i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecaae5d0 vme_dma_list_add -EXPORT_SYMBOL vmlinux 0xecd7d3d1 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xecaa5365 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xecc9c9a0 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xecdaf987 folio_wait_bit +EXPORT_SYMBOL vmlinux 0xece056c6 snd_jack_report +EXPORT_SYMBOL vmlinux 0xece1d2b8 finish_swait EXPORT_SYMBOL vmlinux 0xece784c2 rb_first EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl -EXPORT_SYMBOL vmlinux 0xed1049ac mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xed12ebab devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0xed339023 __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xed542038 sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0xed15ec08 phy_write_paged +EXPORT_SYMBOL vmlinux 0xed2400c1 cpu_user +EXPORT_SYMBOL vmlinux 0xed2530ad unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xed45b255 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xed5e1724 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed81e413 cqhci_init -EXPORT_SYMBOL vmlinux 0xed8875f0 block_truncate_page -EXPORT_SYMBOL vmlinux 0xed972aab of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xed7457ca snd_dma_buffer_mmap +EXPORT_SYMBOL vmlinux 0xed78b41f eth_header_cache +EXPORT_SYMBOL vmlinux 0xed86b2d3 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0xed8a261b rproc_del +EXPORT_SYMBOL vmlinux 0xed98d38f vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xeda621bc dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xeda6b291 of_phy_deregister_fixed_link EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbc711c jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xedbfe80b pmem_should_map_pages EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedd08c04 free_task -EXPORT_SYMBOL vmlinux 0xedd0bbf8 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xedfde216 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xee023167 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xee0cd162 skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0xee12c754 sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0xee1d0dec dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xee285575 sock_release +EXPORT_SYMBOL vmlinux 0xee29fb38 __quota_error EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee33f1f9 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xee356cd8 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL vmlinux 0xee3c0682 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xee3fcb26 skb_kill_datagram EXPORT_SYMBOL vmlinux 0xee43fd9b ___ratelimit -EXPORT_SYMBOL vmlinux 0xee48d047 __filemap_get_folio -EXPORT_SYMBOL vmlinux 0xee4dcba6 sys_copyarea EXPORT_SYMBOL vmlinux 0xee4eb1c3 dma_fence_array_next -EXPORT_SYMBOL vmlinux 0xee5501ab phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0xee56ff1f fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee61a4fb request_key_tag +EXPORT_SYMBOL vmlinux 0xee6ada87 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xee7dac87 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xee8095f8 mii_nway_restart +EXPORT_SYMBOL vmlinux 0xee8552ac gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder EXPORT_SYMBOL vmlinux 0xee922b77 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0xee965974 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xeea833bf serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xee93bb0b mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0xeea36178 iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeec07bdf wireless_spy_update -EXPORT_SYMBOL vmlinux 0xeed42150 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xeed6961d __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xeede395f snd_pcm_lib_ioctl -EXPORT_SYMBOL vmlinux 0xeee05ea5 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xeecd6893 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xeecf356a reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeeed3f8d update_devfreq -EXPORT_SYMBOL vmlinux 0xeef0cc2b md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xeeeb42b0 dma_unmap_resource EXPORT_SYMBOL vmlinux 0xeef1b19b clk_bulk_get -EXPORT_SYMBOL vmlinux 0xeefa76e7 snd_sgbuf_get_page -EXPORT_SYMBOL vmlinux 0xef01247a unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xef19df84 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xef1daf07 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0xef201945 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xef27b465 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0xef47e423 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xef08bdc6 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xef175d16 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0xef3779a3 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xef4ac8a1 read_code EXPORT_SYMBOL vmlinux 0xef4cad92 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0xef5726c8 of_clk_get -EXPORT_SYMBOL vmlinux 0xef5c122e end_page_writeback -EXPORT_SYMBOL vmlinux 0xef61dfe2 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xef6dceae jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xef72d96b nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xef56a415 km_state_expired +EXPORT_SYMBOL vmlinux 0xef5fab81 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xef6b2b96 pci_irq_vector EXPORT_SYMBOL vmlinux 0xef7c0cd6 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xef7da277 inode_permission +EXPORT_SYMBOL vmlinux 0xef850b24 snd_seq_root EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xefa1d91e drop_nlink -EXPORT_SYMBOL vmlinux 0xefc2932e rproc_report_crash -EXPORT_SYMBOL vmlinux 0xefcadcc4 netif_napi_add_weight -EXPORT_SYMBOL vmlinux 0xefe641b3 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xefad2387 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xefb2e627 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xefb75811 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xefd1fad3 dma_map_resource +EXPORT_SYMBOL vmlinux 0xefd6fd48 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xefdb3172 rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0xefe49a10 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xefff6ed8 param_get_int +EXPORT_SYMBOL vmlinux 0xeff030d9 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00568d7 inet_shutdown +EXPORT_SYMBOL vmlinux 0xf003df20 __break_lease EXPORT_SYMBOL vmlinux 0xf01528a4 dim_turn -EXPORT_SYMBOL vmlinux 0xf01e7d7c __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xf0229430 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xf015d998 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xf0223fcd __icmp_send +EXPORT_SYMBOL vmlinux 0xf028249e param_get_bool EXPORT_SYMBOL vmlinux 0xf02a6977 queue_rcu_work -EXPORT_SYMBOL vmlinux 0xf0570d76 sock_i_ino -EXPORT_SYMBOL vmlinux 0xf06cc126 nf_hook_slow EXPORT_SYMBOL vmlinux 0xf06cee2c radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xf07fedec ptp_find_pin +EXPORT_SYMBOL vmlinux 0xf084a770 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xf0898a5e dquot_release +EXPORT_SYMBOL vmlinux 0xf08c5ebf sock_efree EXPORT_SYMBOL vmlinux 0xf08ecd6e posix_acl_valid -EXPORT_SYMBOL vmlinux 0xf08ed410 inet_sendmsg -EXPORT_SYMBOL vmlinux 0xf095dabf qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf09b06fd seq_lseek EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page EXPORT_SYMBOL vmlinux 0xf0a343ed release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf0c9a8f6 __breadahead -EXPORT_SYMBOL vmlinux 0xf0e70291 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xf0a35dd9 kernel_connect +EXPORT_SYMBOL vmlinux 0xf0d3ad4f mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xf0e02c93 inet_ioctl EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb EXPORT_SYMBOL vmlinux 0xf0ef52e8 down -EXPORT_SYMBOL vmlinux 0xf0f6e848 mdio_device_create EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xf0fe0776 devm_iounmap EXPORT_SYMBOL vmlinux 0xf0ff7ddb proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0xf102732a crc16 -EXPORT_SYMBOL vmlinux 0xf10638f8 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xf10641b8 secpath_set -EXPORT_SYMBOL vmlinux 0xf11239e6 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xf107ec8b __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0xf1134389 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xf11d03c8 has_capability_noaudit EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf11edcac locks_delete_block -EXPORT_SYMBOL vmlinux 0xf1324297 mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0xf133d90c proc_create_data +EXPORT_SYMBOL vmlinux 0xf12180ff blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xf12dc552 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0xf13f5918 serio_bus -EXPORT_SYMBOL vmlinux 0xf13fa860 iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xf15377be cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xf156c19d d_add -EXPORT_SYMBOL vmlinux 0xf161c99f jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xf1458bf5 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xf153df58 block_commit_write +EXPORT_SYMBOL vmlinux 0xf15681c5 dm_table_get_md EXPORT_SYMBOL vmlinux 0xf162fa95 of_get_cpu_node -EXPORT_SYMBOL vmlinux 0xf191b427 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xf1896e1e I_BDEV +EXPORT_SYMBOL vmlinux 0xf18f7b0a input_event EXPORT_SYMBOL vmlinux 0xf194c20c gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19d68e0 vme_lm_request +EXPORT_SYMBOL vmlinux 0xf1a488a5 __dquot_transfer EXPORT_SYMBOL vmlinux 0xf1ad9c4b tegra_ivc_align -EXPORT_SYMBOL vmlinux 0xf1baf346 phy_advertise_supported EXPORT_SYMBOL vmlinux 0xf1c0cc54 dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0xf1c91c14 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xf1daa8e5 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xf1d41d9e open_exec EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e4b976 ip_setsockopt EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1ea6f1c __bswapsi2 -EXPORT_SYMBOL vmlinux 0xf1ec8217 kill_pid EXPORT_SYMBOL vmlinux 0xf1ef9aa7 memcg_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0xf1f8f4dc dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xf1fdff5f __napi_alloc_skb EXPORT_SYMBOL vmlinux 0xf217d499 zstd_init_cctx -EXPORT_SYMBOL vmlinux 0xf2189b59 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0xf21adf31 __scm_send -EXPORT_SYMBOL vmlinux 0xf222f0eb generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xf21d47f5 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xf21f9498 mtd_concat_create EXPORT_SYMBOL vmlinux 0xf236c75e swake_up_one +EXPORT_SYMBOL vmlinux 0xf236e7ef dquot_quota_sync EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2627ebd finish_no_open EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf27125fb bio_chain -EXPORT_SYMBOL vmlinux 0xf2782c04 inet6_protos EXPORT_SYMBOL vmlinux 0xf2827a01 load_nls_default EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2a115fe tcf_classify +EXPORT_SYMBOL vmlinux 0xf293b4af icmp6_send EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback EXPORT_SYMBOL vmlinux 0xf2ad80d9 snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL vmlinux 0xf2b40a4b ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xf2b9dadc xfrm_dev_policy_flush -EXPORT_SYMBOL vmlinux 0xf2bd08a6 unregister_key_type EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2e039e5 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xf2e2f3c7 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xf2d1e088 phy_print_status +EXPORT_SYMBOL vmlinux 0xf2e046d2 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2ee717a kernel_recvmsg EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3094104 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xf3209e72 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xf328cf70 skb_expand_head -EXPORT_SYMBOL vmlinux 0xf32af22a unregister_shrinker +EXPORT_SYMBOL vmlinux 0xf2fed13c __folio_lock +EXPORT_SYMBOL vmlinux 0xf308c5a2 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xf30a4e67 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xf31a1195 seq_putc +EXPORT_SYMBOL vmlinux 0xf329338f sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xf32bd83b ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xf32f4ddc __folio_put +EXPORT_SYMBOL vmlinux 0xf33d4161 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34833bf sync_file_create EXPORT_SYMBOL vmlinux 0xf348ff41 bpf_stats_enabled_key EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf3628863 tcp_mtup_init EXPORT_SYMBOL vmlinux 0xf362dc7f arm_clear_user -EXPORT_SYMBOL vmlinux 0xf36ed397 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xf36cf119 devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf378b822 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xf38071ef scsi_target_resume -EXPORT_SYMBOL vmlinux 0xf386ef83 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xf38cd258 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xf37842a8 nand_read_page_raw +EXPORT_SYMBOL vmlinux 0xf37f790c skb_dequeue +EXPORT_SYMBOL vmlinux 0xf381f53d xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused EXPORT_SYMBOL vmlinux 0xf3a11c35 xa_find_after -EXPORT_SYMBOL vmlinux 0xf3abe408 xp_alloc -EXPORT_SYMBOL vmlinux 0xf3c58201 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xf3c6db8a kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xf3a2b549 snd_timer_close +EXPORT_SYMBOL vmlinux 0xf3a3c307 dquot_resume +EXPORT_SYMBOL vmlinux 0xf3a8c136 tso_start +EXPORT_SYMBOL vmlinux 0xf3b1b83c tcf_block_put EXPORT_SYMBOL vmlinux 0xf3d0b495 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0xf3d484ed snd_pcm_kernel_ioctl EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e12955 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xf3e1be7b free_mdio_bitbang EXPORT_SYMBOL vmlinux 0xf3eb1323 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0xf3f81d68 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xf3f1ac49 iov_iter_bvec EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init -EXPORT_SYMBOL vmlinux 0xf4040bec netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xf409462f max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xf4441feb tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xf416dab0 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xf441513e vme_irq_generate EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid -EXPORT_SYMBOL vmlinux 0xf4675078 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xf4749bae kernel_getpeername EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf494cd63 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0xf49da2f5 skb_ext_add +EXPORT_SYMBOL vmlinux 0xf4764476 param_set_uint +EXPORT_SYMBOL vmlinux 0xf47ae249 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0xf4a04498 nmi_panic -EXPORT_SYMBOL vmlinux 0xf4a841a3 param_set_invbool -EXPORT_SYMBOL vmlinux 0xf4b4b359 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xf4b77ec9 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xf4b49586 make_kuid +EXPORT_SYMBOL vmlinux 0xf4bbb0d0 __block_write_begin +EXPORT_SYMBOL vmlinux 0xf4cb429e pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xf4d716b9 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4ec801c phy_read_mmd +EXPORT_SYMBOL vmlinux 0xf4e0e41f sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xf4ebe5df filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xf4ec6f3a dma_fence_describe EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f6abf0 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xf4fb5f6e blk_integrity_register -EXPORT_SYMBOL vmlinux 0xf500163b __d_drop -EXPORT_SYMBOL vmlinux 0xf50bd330 folio_clear_dirty_for_io -EXPORT_SYMBOL vmlinux 0xf5200948 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xf524d3ca blkdev_put -EXPORT_SYMBOL vmlinux 0xf525bd7a rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xf4ffcc4a get_phy_device +EXPORT_SYMBOL vmlinux 0xf52bd59d mmc_sw_reset EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5551e29 mntput -EXPORT_SYMBOL vmlinux 0xf557781b dquot_get_state EXPORT_SYMBOL vmlinux 0xf55c8b6d __read_overflow2_field EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp -EXPORT_SYMBOL vmlinux 0xf5704b78 thread_group_exited -EXPORT_SYMBOL vmlinux 0xf598cc9c nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0xf59ab736 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xf571fc7d input_set_abs_params +EXPORT_SYMBOL vmlinux 0xf585b7f6 phy_detach +EXPORT_SYMBOL vmlinux 0xf585c220 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xf58832db reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xf5a0190b param_get_hexint +EXPORT_SYMBOL vmlinux 0xf5b540cc gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0xf5b666ef __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xf5cbfa9e rproc_shutdown +EXPORT_SYMBOL vmlinux 0xf5ccb720 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf5ce992f param_ops_bint +EXPORT_SYMBOL vmlinux 0xf5d81d71 register_fib_notifier EXPORT_SYMBOL vmlinux 0xf5db30ae gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f780a8 km_policy_expired -EXPORT_SYMBOL vmlinux 0xf612db7b iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xf5f2417c __devm_request_region +EXPORT_SYMBOL vmlinux 0xf602e0c2 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xf61e0b74 zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf622aa68 phy_get_eee_err EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf638203b skb_queue_tail -EXPORT_SYMBOL vmlinux 0xf638b28e blk_rq_map_user_io -EXPORT_SYMBOL vmlinux 0xf63f9d30 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xf640b1cc input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xf6411584 unpin_user_page EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64b3fce _copy_to_iter EXPORT_SYMBOL vmlinux 0xf64bf255 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf64d3da7 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0xf652d359 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf656a4ce tty_check_change +EXPORT_SYMBOL vmlinux 0xf65dd4ea inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66bdfd3 eth_type_trans -EXPORT_SYMBOL vmlinux 0xf67939c8 sock_efree -EXPORT_SYMBOL vmlinux 0xf679a9d6 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf67fdd7d seq_open_private EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6ca7b6c pci_get_slot -EXPORT_SYMBOL vmlinux 0xf6e07ac9 seq_puts +EXPORT_SYMBOL vmlinux 0xf68db7d0 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xf6a48761 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xf6bb4dc3 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xf6c10365 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xf6df44ee netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xf6e23655 pm860x_page_reg_write EXPORT_SYMBOL vmlinux 0xf6e4df71 on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f2e2c4 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf704a35d give_up_console EXPORT_SYMBOL vmlinux 0xf705fa49 gen_pool_free_owner EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb -EXPORT_SYMBOL vmlinux 0xf71976a7 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xf729c8d5 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xf71c65de mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xf71ff60f max8925_reg_read +EXPORT_SYMBOL vmlinux 0xf73695ab genphy_read_abilities EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf74ced3e __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xf74d8247 close_fd_get_file EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf76de91c nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xf76df760 twl6040_power +EXPORT_SYMBOL vmlinux 0xf779e6f9 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xf77ad550 of_find_node_by_phandle EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod -EXPORT_SYMBOL vmlinux 0xf7819101 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xf794d76f console_start EXPORT_SYMBOL vmlinux 0xf795c177 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0xf7a412b6 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0xf7bc7132 fs_bio_set -EXPORT_SYMBOL vmlinux 0xf7de8d29 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xf7e1cb90 ipv4_specific +EXPORT_SYMBOL vmlinux 0xf7a49c43 udp_ioctl +EXPORT_SYMBOL vmlinux 0xf7a8ffdb blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xf7bcac5d folio_end_writeback +EXPORT_SYMBOL vmlinux 0xf7cbd4c1 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xf7dabfd5 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xf7ebde4e backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xf7f2b24b gro_cells_receive +EXPORT_SYMBOL vmlinux 0xf8034e79 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xf808ac63 fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0xf80b5796 shmem_aops EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8129c90 sock_edemux +EXPORT_SYMBOL vmlinux 0xf81a71a5 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xf82a6c23 config_group_find_item EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev EXPORT_SYMBOL vmlinux 0xf838fd97 dim_park_on_top -EXPORT_SYMBOL vmlinux 0xf84aeb66 seq_write -EXPORT_SYMBOL vmlinux 0xf860a2a6 of_n_size_cells -EXPORT_SYMBOL vmlinux 0xf8648789 snd_dma_free_pages -EXPORT_SYMBOL vmlinux 0xf868f90a scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xf86d4308 __alloc_pages +EXPORT_SYMBOL vmlinux 0xf839bb51 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xf84293fc devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf844988a d_find_alias +EXPORT_SYMBOL vmlinux 0xf847036f cqhci_init +EXPORT_SYMBOL vmlinux 0xf858dfea unix_attach_fds +EXPORT_SYMBOL vmlinux 0xf85b6380 param_get_charp EXPORT_SYMBOL vmlinux 0xf86f27cd idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table -EXPORT_SYMBOL vmlinux 0xf88d5ac4 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xf8b8a07a __folio_batch_release -EXPORT_SYMBOL vmlinux 0xf8bb9b3d pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0xf8bbea23 mtree_insert -EXPORT_SYMBOL vmlinux 0xf8bd3e3c pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0xf8d1f51c fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0xf8da2363 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xf8c61e33 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xf8c908f7 __put_user_ns +EXPORT_SYMBOL vmlinux 0xf8e74d54 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xf8e78194 input_get_keycode EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8f96653 vfs_create_mount EXPORT_SYMBOL vmlinux 0xf8fb71ef tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xf902869c sync_blockdev -EXPORT_SYMBOL vmlinux 0xf922db0f km_state_expired -EXPORT_SYMBOL vmlinux 0xf93337f4 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf9121119 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xf9281439 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xf928bfbf simple_recursive_removal EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc -EXPORT_SYMBOL vmlinux 0xf93ebec4 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9416076 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xf963ebb6 touch_atime +EXPORT_SYMBOL vmlinux 0xf9508b60 tcp_filter +EXPORT_SYMBOL vmlinux 0xf9526cc3 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xf968cbc9 pcim_iomap_table EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9749507 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xf9848f3b crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xf9989c40 register_md_personality EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9ab1d9e mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xf9b6d93e console_start +EXPORT_SYMBOL vmlinux 0xf9c12191 security_unix_may_send EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9e2be6a netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xf9e60925 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0xf9ecf151 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xf9ec3eba rproc_of_parse_firmware EXPORT_SYMBOL vmlinux 0xf9f0c951 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0xfa07b47a snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0xf9f2fa97 scsi_remove_target EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa27a78b tcp_seq_start -EXPORT_SYMBOL vmlinux 0xfa30d6b8 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xfa3f4891 dm_put_device -EXPORT_SYMBOL vmlinux 0xfa44e3a1 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xfa0c32c7 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xfa11ac60 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xfa17d83b vme_irq_free +EXPORT_SYMBOL vmlinux 0xfa208b20 inode_update_time +EXPORT_SYMBOL vmlinux 0xfa257932 dev_kfree_skb_any_reason +EXPORT_SYMBOL vmlinux 0xfa3d06c7 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xfa3dbb2a flow_rule_match_ip EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa65eff2 phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0xfa6b00f6 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xfa705a3f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfa5d6fcf tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0xfa72be38 xa_get_order -EXPORT_SYMBOL vmlinux 0xfa730374 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xfa77bc33 __skb_pad EXPORT_SYMBOL vmlinux 0xfa7a0886 config_item_put -EXPORT_SYMBOL vmlinux 0xfaa5e6b4 simple_get_link -EXPORT_SYMBOL vmlinux 0xfaa708c3 dev_addr_del -EXPORT_SYMBOL vmlinux 0xfab0ead3 dev_uc_del -EXPORT_SYMBOL vmlinux 0xfab62cd9 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xfac09633 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xfa847370 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xfa8e5cc3 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xfa8f2311 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xfa981d28 inode_io_list_del EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfac9d8a9 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xfad2a695 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0xfadce3ee skb_queue_purge -EXPORT_SYMBOL vmlinux 0xfae0f17c amba_device_unregister -EXPORT_SYMBOL vmlinux 0xfaee622b pps_lookup_dev -EXPORT_SYMBOL vmlinux 0xfaf57b9f tty_unlock -EXPORT_SYMBOL vmlinux 0xfaf7aa76 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xfb12ae7d sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xfacf63d0 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xfaf3ca85 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xfafd22dc pci_enable_device EXPORT_SYMBOL vmlinux 0xfb1d7438 down_read -EXPORT_SYMBOL vmlinux 0xfb290f86 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xfb2a6b50 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0xfb30fefe jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0xfb319713 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xfb2856cf sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xfb2e931e dev_deactivate EXPORT_SYMBOL vmlinux 0xfb336634 mempool_destroy EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb421b38 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xfb424bd0 nand_ecc_register_on_host_hw_engine -EXPORT_SYMBOL vmlinux 0xfb5a03e8 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xfb69e747 fs_param_is_fd EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb7bdd72 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xfb7b31af vfs_setpos EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 -EXPORT_SYMBOL vmlinux 0xfb91ac9a timestamp_truncate -EXPORT_SYMBOL vmlinux 0xfb9cdeb3 sg_miter_skip -EXPORT_SYMBOL vmlinux 0xfb9d1cc3 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xfb916801 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xfb9331dd dma_set_mask +EXPORT_SYMBOL vmlinux 0xfb9e2c7f lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbac90ae blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbc420e7 iov_iter_get_pages_alloc2 EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout EXPORT_SYMBOL vmlinux 0xfbdb353d trace_seq_acquire +EXPORT_SYMBOL vmlinux 0xfbdb491b make_kprojid +EXPORT_SYMBOL vmlinux 0xfbdfb6ce mmc_unregister_driver EXPORT_SYMBOL vmlinux 0xfbdfd3f1 ioremap_wc -EXPORT_SYMBOL vmlinux 0xfbe7a731 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0xfbea611e _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xfbf75da7 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xfc155177 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xfc16bec2 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xfc1bb904 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xfbf3ec12 filemap_get_folios_tag +EXPORT_SYMBOL vmlinux 0xfc033fff bio_uninit +EXPORT_SYMBOL vmlinux 0xfc0a4eb9 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xfc30a184 rawnand_sw_bch_cleanup EXPORT_SYMBOL vmlinux 0xfc31eec2 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3c54fd __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xfc3d86c2 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xfc3f3589 strscpy_pad EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc42db2c kill_block_super -EXPORT_SYMBOL vmlinux 0xfc48d17c get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xfc457d0a scsi_rescan_device EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc88a31e mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0xfc8c3427 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xfc94a8b6 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xfc6e16ff tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xfc7fa444 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xfc9c6857 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xfc9d61b7 snd_pcm_hw_constraint_msbits EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfca03273 d_drop -EXPORT_SYMBOL vmlinux 0xfcc23238 rio_query_mport EXPORT_SYMBOL vmlinux 0xfcc55f73 cpumask_any_and_distribute EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfccf02cd edac_mc_find EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd185f6 single_open -EXPORT_SYMBOL vmlinux 0xfcd328c0 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0xfcd7e6a4 dquot_transfer -EXPORT_SYMBOL vmlinux 0xfcda9456 seq_putc +EXPORT_SYMBOL vmlinux 0xfce60a4f lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0xfce71013 udp6_seq_ops EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfedbd6 tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0xfd0e13b3 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0xfd1aeda7 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xfd26f92a skb_unlink -EXPORT_SYMBOL vmlinux 0xfd30a36a inetdev_by_index -EXPORT_SYMBOL vmlinux 0xfd3516fe __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0xfd3d3e23 seq_vprintf -EXPORT_SYMBOL vmlinux 0xfd400ca0 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xfd435e54 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0xfd456c37 of_get_next_available_child -EXPORT_SYMBOL vmlinux 0xfd711229 tty_port_hangup -EXPORT_SYMBOL vmlinux 0xfd78f500 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xfd861294 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xfd8a41a1 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xfd0ccc78 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xfd203a19 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xfd3da0a0 i2c_find_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0xfd4905f8 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xfd5ec45d vme_bus_type +EXPORT_SYMBOL vmlinux 0xfd650539 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xfd65566b end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xfd71ad8d iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xfd7695e2 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq -EXPORT_SYMBOL vmlinux 0xfd91879c vc_cons +EXPORT_SYMBOL vmlinux 0xfd8effae vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xfd93411c tcf_classify +EXPORT_SYMBOL vmlinux 0xfda2c44b mdiobus_read +EXPORT_SYMBOL vmlinux 0xfda834aa vma_set_file +EXPORT_SYMBOL vmlinux 0xfdad1e71 netlink_ack EXPORT_SYMBOL vmlinux 0xfdad2367 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0xfdb17b11 d_instantiate_new EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdcc9d54 snd_ctl_notify -EXPORT_SYMBOL vmlinux 0xfde8a5cb phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xfdd89c39 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xfde2d1fc wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xfde86764 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0xfdf7b621 vmap EXPORT_SYMBOL vmlinux 0xfdff8813 ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xfe003e40 __phy_write_mmd EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0573da pci_read_vpd +EXPORT_SYMBOL vmlinux 0xfe05563a scm_detach_fds +EXPORT_SYMBOL vmlinux 0xfe0a2835 dm_register_target EXPORT_SYMBOL vmlinux 0xfe171764 ioremap_page -EXPORT_SYMBOL vmlinux 0xfe179c6a pci_restore_state -EXPORT_SYMBOL vmlinux 0xfe2999a1 __register_chrdev +EXPORT_SYMBOL vmlinux 0xfe313dea mod_zone_page_state EXPORT_SYMBOL vmlinux 0xfe41829c xa_store_range EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe49d627 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xfe4b79d8 cdrom_open +EXPORT_SYMBOL vmlinux 0xfe5c7f0f tcf_action_exec EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe757c08 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xfe80bcfc param_get_invbool -EXPORT_SYMBOL vmlinux 0xfe9266c1 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xfea2787d proc_set_size -EXPORT_SYMBOL vmlinux 0xfea3f24d security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0xfeac844f stop_tty -EXPORT_SYMBOL vmlinux 0xfed2b576 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xfe7f8072 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xfe8b69ab submit_bio +EXPORT_SYMBOL vmlinux 0xfe8b7dba netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xfe8f1493 follow_down_one +EXPORT_SYMBOL vmlinux 0xfec449bf ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xfecbe4f8 sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeddd288 mark_info_dirty -EXPORT_SYMBOL vmlinux 0xfee57fb5 pcim_iomap +EXPORT_SYMBOL vmlinux 0xfee1d56e pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xfee24ec1 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xfee92873 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xfeed4e4b dm_unregister_target EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xfefd49a3 aperture_remove_conflicting_pci_devices -EXPORT_SYMBOL vmlinux 0xff09f892 nand_monolithic_write_page_raw -EXPORT_SYMBOL vmlinux 0xff0de8d8 netdev_alert -EXPORT_SYMBOL vmlinux 0xff14e439 inet_sk_get_local_port_range +EXPORT_SYMBOL vmlinux 0xff063c59 phy_loopback +EXPORT_SYMBOL vmlinux 0xff0c46f9 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0xff0f57aa pin_user_pages +EXPORT_SYMBOL vmlinux 0xff18e8e8 pci_set_mwi EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff244f65 vlan_for_each +EXPORT_SYMBOL vmlinux 0xff1eb6ba locks_remove_posix +EXPORT_SYMBOL vmlinux 0xff277a44 poll_initwait EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff3cdd69 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xff434ccd tcp_md5_hash_skb_data EXPORT_SYMBOL vmlinux 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL vmlinux 0xff4cee59 vma_set_file -EXPORT_SYMBOL vmlinux 0xff5eda04 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xff4527ff folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0xff57533a inet6_add_protocol 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 0xff7dd17b vfs_create_mount +EXPORT_SYMBOL vmlinux 0xff6ebf1a dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xff79595a dmam_pool_create +EXPORT_SYMBOL vmlinux 0xff8640b9 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xff8c2e5a radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xff9658b9 skb_pull_data EXPORT_SYMBOL vmlinux 0xff996450 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0xffabd61d pci_msi_vec_count EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit -EXPORT_SYMBOL vmlinux 0xffbb1398 mmc_add_host -EXPORT_SYMBOL vmlinux 0xffc0c9d1 dquot_quota_off -EXPORT_SYMBOL vmlinux 0xffc154cd devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0xffc8e133 uart_register_driver +EXPORT_SYMBOL vmlinux 0xffc45551 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffd14c39 snd_timer_global_free -EXPORT_SYMBOL vmlinux 0xffde6132 tty_hangup -EXPORT_SYMBOL vmlinux 0xffe910e5 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xffd6f61e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xffd72bf1 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xffdad97d scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xffe1a88c vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x18a61db3 sha1_finup_arm EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x696e9ddd sha1_update_arm -EXPORT_SYMBOL_GPL crypto/af_alg 0x04510af2 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x00c7be22 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x255c2101 af_alg_free_resources EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x2ccaeadd af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x33c7f6f3 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x39896bf7 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x3aec22c1 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0x5996ae3a af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xafd191f4 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x7451b691 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7c36bd86 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x82f882ff af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x844bb810 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x95ff2487 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xa7460f71 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xac787079 af_alg_register_type EXPORT_SYMBOL_GPL crypto/af_alg 0xb984d37c af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xc06c1895 af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xca4a2d76 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xd112d406 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xd1c60585 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xe38b151d af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xef1c5cd7 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xf632b1ed af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xba3e42c8 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc6edcdd6 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xe6c513f8 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xec8e89cf af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xed9880c1 af_alg_wait_for_data EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0x7a4d1d45 aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x09ea764c async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x22985c2a async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xaadffd18 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x32166903 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xa3c85788 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3d8b14f3 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5a8f2f64 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc65acf00 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcf18fd69 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3d73043e async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x50ca0e2c async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x77a97df4 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xfc56df23 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x6bd5bbd1 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x797b1cd8 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xfd119dc3 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x658f3511 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x71b71e02 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1932c39d async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x643265a5 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x913ec434 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb4762a3d async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x486e14f5 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4e53962c async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x79085fff async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd1b872bc async_xor_val_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xb2f5333d blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x16767ccb blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe561025a cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt @@ -11889,34 +11890,34 @@ EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x05dd2094 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x215eb648 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x3246ce92 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x4636b83b cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x6773a3ee cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x67c297af cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x6890cb0c cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9f94b49e cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xd000bdbe cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xd8163b97 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xef6faf5a cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xf20278fa cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xfe9dbeee cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0277bd8e crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x05509a2f crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x121bae42 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x259a0482 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x38d0f045 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4ffbb9d3 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x52370674 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x78c05ee9 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7a336312 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbeb19935 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcf685a7a crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd44e11d3 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf0572cbb crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf826de07 crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfe07ac9c crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x04437e9c cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x09e168a9 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x4a404415 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6a065fa5 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6a869dff cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6b143cad cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x6f443c16 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x9d13b968 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xab68b5e3 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd7651545 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf9d772e1 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xfb657567 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xfe527951 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0e44e182 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1c23b2da crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x288ef1ac crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5eb50432 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6cea839d crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x727f42e0 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7a34faf7 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x89db6170 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8e48f646 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa528b3ec crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc773c01c crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe03253c6 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf334098d crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf5932b13 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xff807143 crypto_transfer_akcipher_request_to_engine EXPORT_SYMBOL_GPL crypto/crypto_simd 0x16db8e2e simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create @@ -11936,7 +11937,7 @@ EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm2_generic 0x867df5ab sm2_compute_z_digest +EXPORT_SYMBOL_GPL crypto/sm2_generic 0xb0824780 sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash @@ -11944,43 +11945,43 @@ EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block EXPORT_SYMBOL_GPL crypto/twofish_common 0xb20b1b56 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x01cc50e6 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x02311ec8 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x07b08433 spk_synth_is_alive_restart EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0ec29562 spk_ttyio_ops EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x299b9c6c spk_ttyio_release EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e7e21d7 speakup_event EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5eb0e2c7 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x625a5d6c spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6ab0a5f0 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x72379139 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x469b60b8 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5c568424 synth_add EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8181ceec speakup_info EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x89951832 spk_synth_get_index EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8ec1505a spk_do_catch_up EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x94d43c04 synth_remove -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9f7e6f83 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa7561396 spk_ttyio_release EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb57e64e0 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadf8f64 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xad5e9cb6 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaec80d51 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb17953fd spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb6a8f255 spk_synth_flush EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc15b1994 spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc19b83fe synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc1e339d2 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbce4495a synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbe7c0df6 spk_var_store EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc58f6e50 spk_get_var_header +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xccc09755 spk_ttyio_ops EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf8bcf7dd spk_synth_flush -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x3b38d818 pata_parport_unregister_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0xb03c390d pata_parport_register_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xcbd75aeb __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x8eb7e086 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf02d51d1 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x24d146d6 pata_parport_unregister_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x8a72ea69 pata_parport_register_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa4a01f8b __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x578a600b sis_info133_for_sata EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc @@ -12010,147 +12011,147 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x5e4a24f8 linedisp_register EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xa354c1b9 linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x360e2c82 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x445a34a6 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x58c0bd2c regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xdb1facf8 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x017dea1e __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x4a080c86 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x05104f62 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xd2e21329 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xe978dfa6 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xfef61306 __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x7f8c7949 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xc821f77f __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x341329bd __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xd0a140fe __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x20ccdd80 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x69b00aa4 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xe0649665 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xf5df5504 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x3931dee0 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xb4faedcb __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x0ca42d66 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xa4eb168b __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x77fb6f23 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xd43c84a7 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x723ab62f __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x8400772d __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x0e24d458 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xece528cf __devm_regmap_init_spi_avmm EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4e7fdad2 __regmap_init_spmi_base EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8829ffa4 __devm_regmap_init_spmi_ext EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x97da1864 __devm_regmap_init_spmi_base EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xfbb1954d __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x18f3c23e __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xd8a0c32a __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x008cc8e6 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06f286c3 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c17d400 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c605ebe bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1608d542 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x190b9865 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1dc2a0bd bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c44086a bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34a97817 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3781a3de bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x40c69ed2 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4d999c0b __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x579d1e38 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x621760b9 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d3b37fc bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9d270427 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb20a6b92 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb31045df bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcbe2f214 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcfe46272 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd166a0a7 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe6194021 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf9f4225d bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfbf771dc bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2836554f btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3f10f1a1 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6c03afb6 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x73f2ab2a btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x787fe4cf btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb0bc46e3 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcd6e81ec btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf7094559 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0d6e4363 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x16add69d btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x230d02aa btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x29475e56 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x441808a4 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ec6967d btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x616b582c btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x65060a2c btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6a0e8ee5 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6f033deb btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x83bf35d1 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x977a9a95 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9ad3f486 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa9edbcc1 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc4e99219 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd1812073 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd188d96f btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1e36eef6 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a0f8b05 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2f02b040 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59e7221b btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6e27e9eb btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74f8a4ae btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7a20013e btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7ce32ed4 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb77681d4 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xca3be2d6 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcdfdb628 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x56fa805c btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x6c608f32 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x70045663 btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x91723f2d qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x957d7ac5 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xeeb26268 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf62f6fc3 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfb2aba5c qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0cfec38d btrtl_initialize +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xade3fb54 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xbb117ec7 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x037e320a bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a2b2e5a bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x198d3d50 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b964f2e bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1df55ac0 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f60ad4a bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29159d43 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x322b6cff bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36163bdb bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a4ca161 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x46fe4c16 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4a15a546 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4f6cea32 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63ccb2f0 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x855deabb bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91606531 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x92d97bb3 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad6e0e0b bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb2f6b2be bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb403ceb3 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xccf1a46d bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc063485 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeb3ec090 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xed0c5259 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x77a93fc1 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x90e03bf2 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9307aacb btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x935829c9 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa19c31ba btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdb04fcdd btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf4d5b522 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xff225993 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2ef770c4 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x32819068 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3dd8be0e btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4286fd11 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x44714fa8 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x70ccf81f btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x730e930f btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76aa6a2b btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x76b033dc btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8dc60f6d btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x93222c19 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xab30d461 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xabb08f33 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb1ef7737 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe67d4dc0 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6ab631b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf0e23fdc btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x09e8fddb btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3d417c08 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3db7e339 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7859f1fe btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x87ec6b06 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa188bf98 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc62f45b0 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc6d2545f btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe20ab867 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe990e307 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf7bd2c99 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x84d4cada btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xa2ec92f9 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xb35dc748 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5e1ceaa0 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7ebae415 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc92d0eca qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd2cc89da qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe436b2ea qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0b419257 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x632ff6bd btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6b9192d9 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x87a76679 btrtl_get_uart_settings EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb78219d8 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc79b4865 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc881e689 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc9888d9c btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd50a7f63 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0760969b hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x15108879 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x868ff45b h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa00ec63c hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x25185df6 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x28034487 mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3c16bb17 mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x43ebf873 mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x499e33c7 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x586df2ea mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x803e70e5 __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xa99a5d14 mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05c2cbf7 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x147b7f81 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x15ddb629 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x17575012 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x20e0829b mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d827b44 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d91304d mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3368f0fc mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x360b9420 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x51a1bc8f mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x52c543a3 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5fd8eb22 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7284d692 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7636e14c __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8021eaf3 mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8268a7cb mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x851ffda1 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8d3f8bff mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8dd1564b mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x96551bd2 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x997e16e1 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa26c5b57 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb43e2e7c mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb6a82b3e mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc8707608 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcb371113 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcc835369 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe20b23d1 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf75ab58b mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfac2090a mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1cff0fd6 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x21aff33b moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xacdb4c72 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd5d92aa1 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xdd7817ae btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf3dc2565 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2dbc5850 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x301c2ae3 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x5a4c47cf hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x63f6f7c4 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0a152b9a mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0c6bf709 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6f17192b mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x85edafc7 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8890bdc7 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8dcbfb61 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8ed56f27 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xbb0d327d mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x026b1068 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0b8cee07 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0bf3d2c4 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x17ef2139 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x235186e6 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x27e41008 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2cbe5f08 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x31397b94 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3c0c6578 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4390a6f7 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5677fff6 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5afdb2f6 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b8fef35 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x60a60bda mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x61808ebf mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x672af169 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x69cbe5fa mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x817708b6 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa4a5bcf9 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa6db714d mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xad9e0393 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc003ce3d mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc9c73607 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd373e0df mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdc0bfbe1 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdf5af75d mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe977eda0 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xee42f7ec mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xef45c758 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xffe65f98 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x32378ac1 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xb044ca38 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xe08e3f2e moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xfdd7b238 __moxtet_register_driver EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e7eb9a clk_alpha_pll_stromer_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x040b256b clk_fabia_pll_configure @@ -12168,7 +12169,6 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x22dc5dd7 clk_lucid_evo_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2be7081a gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x35261f7e clk_alpha_pll_regs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x35964fa4 qcom_cc_register_board_clk @@ -12199,6 +12199,7 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e14e326 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x82afa55e clk_regmap_phy_mux_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x85831405 clk_alpha_pll_configure @@ -12239,88 +12240,106 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfafc1469 clk_branch2_aon_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfbd6578d clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0bd784c5 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x095e0a44 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0a2b1efc comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0becee71 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c8ed41d comedi_load_firmware EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0d91cab8 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x133593ae comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x14edd8ca comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x15d1df0d comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x17ee3299 comedi_buf_read_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21bdecb4 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21e7a7ed comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25b82ed9 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e846657 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2486fb64 comedi_readback_insn_read EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x415df925 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x37f77a4c comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d0f3f4d comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d2dbb9e comedi_bytes_per_scan EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x49b963df comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4d76a254 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x476e1c9b comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4786bc8d comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4be08ea3 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4efc15ed comedi_check_chanlist EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x55e7761a comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56c91942 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b4e29c0 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x660759e2 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x68c06b6c comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7891047f comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x567b8a98 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5d43443f comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x679e6279 comedi_is_subdevice_running EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x91ec61a2 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x96b3a784 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b2af166 __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9fb100bf comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaa77fa2e comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaab929e8 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaeccf06c comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb0b02bd7 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb5851400 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x85568626 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x93ab0e29 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x940403a9 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e466be4 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa5115ef0 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xabbd991e comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xae8f46a3 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb45d5c09 comedi_buf_write_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9502275 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbab74082 comedi_alloc_spriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbbef7a0d comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbc9965ef comedi_buf_read_n_available EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc062f8d2 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd18e42c6 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd43a53ab comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd44eff6c comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd5441021 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd7665ab4 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd9b418ca comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd9b10b6f comedi_buf_read_samples EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdc07de97 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdced9478 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe7123171 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf2745a28 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf4b719cd comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x068b5c6b comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x36eb4415 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3cbc5834 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x45144e23 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa13ec5c5 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa1d196ac comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb0cd0224 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd3c104ee comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x03e5dfdb comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x48df58f8 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8b2d3a78 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa202a026 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc91a8998 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xde2da174 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe743c7ed comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe88b0d91 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf4855505 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfc2d0cde comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x089e2abf comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x12586440 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3fd7fd42 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4563918b comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x53447f6a comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xad78f845 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb91953be comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe6da61a1 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x065d6ce9 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x229d1311 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x39ec4f4d comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5371c0df comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8564426f comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xac7b3f9b comedi_usb_driver_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x7a5d0fb4 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xbde777cc amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x11c23aeb subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x18a14f91 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x4a9c1d9b subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x08a60ffb mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2edafbdd mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x31c2ea29 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3e9e17a7 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x403ff1e5 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x590038a6 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x68484ca6 mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x92021648 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x939ae328 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9c633059 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9cca5855 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa05b2fa3 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbe2f9b27 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcc45d327 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe2d1cee1 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe49cbaa2 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xdaf6a235 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x85aa2dbe amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x9579a806 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xfa19ad2d amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x05c1d39a comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0785b6f7 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0af53c1b comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2fb044c8 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3dac8261 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4fd81399 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x553266c4 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7dd3c581 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa0fdd790 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb1464ff6 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xccca7dc1 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd3b4bb16 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf0b439a8 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1901ea7b subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x1c9a9ec9 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa0ad637c subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x5853a77d das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x047798c9 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x09bdba07 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x20464871 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5c95630d mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x600ea3a2 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x75a025bb mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7e5c0273 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x82b8fe86 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x93348323 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa6d7d49c mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa94f34ff mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc1850ff0 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc2d89e99 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe0c72b80 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf94ad646 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xff581a39 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x9e6bc937 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xaf92606d labpc_common_detach EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12331,161 +12350,161 @@ EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0ba5540a ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0d14d1f2 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x19b6c24b ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1cde45d9 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x391224fb ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4ec6613a ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x62003dd9 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6609c480 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6bdef54f ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x72dcdd53 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x746c63f8 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x88fd426b ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9b0d9604 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbf4d051d ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc9288aae ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf33ef79b ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x385b8c62 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x948bdc56 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb74b5c86 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc5a77eb4 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc663ef6d ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xcaae39b4 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1506c6af comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x88ad11f1 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8f29b155 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa02f6872 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe3f84c47 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe62550da comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xecaddc96 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x00bd2dee adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x07874e78 adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0e49dcb9 adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x199f403d adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1bc4f7a2 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1f703a6f adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x238850a7 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x24a4e03b adf_dbgfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x291e21b1 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2bcb4313 adf_dev_get +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2f2960b4 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x35814f95 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3829dc3e ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5b13cc8d ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x78854d8a ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x87aa1c6f ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x88562d9b ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8ca38c0b ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9a8c9b13 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xaaedf0f6 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xab4ec745 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbc3fac6a ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcb5c4a10 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcedab722 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf986e821 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xff45381b ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1634be91 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x348e4527 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7edd092e ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x82dcef25 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x98cc400d ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xde580910 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x46d80271 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x53da201d comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6c42c193 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x84cf5d05 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd2a31a41 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe281dda3 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfe090a80 comedi_open +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x00c65a09 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x02ba103f adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x05e8e81e adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x079363db adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x19fa0027 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1a220f74 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1ad200e4 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1b5e123f adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x21102af2 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x22e45249 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x23cf7aee adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2b7110aa adf_reset_flr EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2d2bc6a9 adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2d2cdd64 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x30182938 adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x319d8875 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x31ae2a43 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x348273eb adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x361d1f1b adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x38857556 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3a18f022 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x359649a0 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3a1288f3 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3b4217fa adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3cac0353 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3d95eea2 adf_dev_started EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3eaebd09 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x42f0e85c adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x44801186 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4f5975b3 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4fe16b85 adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x55976f2f adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5f96f41b adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x64188acd adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6641aca3 adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7586921b adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x83043699 adf_dev_restart -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x847a8abd adf_dev_down -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x87735221 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9e6fe356 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa050181b adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa18cec99 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa6a47c2a adf_dbgfs_exit -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaf35db8c adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb746b48f adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb9876108 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbc891419 adf_dev_up -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbdc90aaf adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc14edb26 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc400abf8 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x427b56d0 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4cbb604a adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4f73f8b7 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5425632f adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5835d637 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x58aa8659 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5940332d adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5a039976 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x657d6b23 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x66074a01 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x68fc4e62 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6904ad90 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x71caa8c3 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x79ca4e06 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7b7ad73c adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8780e318 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x97505c5e adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x99d1cc5b adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9a7b082d adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9bcb62f8 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9c710303 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaba43b5b adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaf1e64fa adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbcf5040a adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbe7bfa94 adf_dbgfs_exit EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc6b5bc73 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc76cef5f adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc799077d adf_cfg_dev_remove EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd636a345 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xce70d6b7 adf_dev_restart +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd14eb576 adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd2db8bc7 adf_reset_sbr EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd92d78ce adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xda99be96 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdae5a75a adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdf2eb68c adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe0cef63b adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe13dac53 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe0eac295 adf_enable_pf2vf_comms EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe932e843 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe9b642ff adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xea13b7a2 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeb5bc2e6 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xef2b5e64 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf29d4bea adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf8d6a1eb adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf9811a4b adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe5db3835 adf_dbgfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeb1516c3 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xef898fb9 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf80b22ce adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfa73a290 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfac64140 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfb4c57a7 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfb8122c6 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfde44bcc adf_gen4_ring_pair_reset EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x5c2673e4 omap_crypto_cleanup EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0xd9009a51 omap_crypto_align_sg -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x3d827de0 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xfa0824a7 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x04e48f0c do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x084b679a idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x10c3833d dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x15b35cc5 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1a8b5f5c do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x376d5657 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x44ad0772 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x05f3a750 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0c4b1470 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0cd724e0 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1081c989 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x21c6fcd7 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x21eee2f7 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4f636371 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6573c7b8 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x71515e86 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8776dab4 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9319ca1c fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9b63b2f9 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xacbc1878 fsl_edma_prep_memcpy -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc10b890d fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcf5a8225 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe7327c5b fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf18bb520 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x52bd5e62 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x1d77c0c7 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x95a40d0e dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x431160b1 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x450f34a6 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5da4b98f do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x786dd443 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xabeb789f do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xacd672b3 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd1c68f93 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x175179ea fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3c34818f fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x53d5f9cc fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x61670c1b fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6a137b10 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x71d0c77d fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7e91638a fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9fd640f8 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa11e4143 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc6bafc74 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd95992f5 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xde77a995 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdedf5eee fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe4c3fb60 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe4fedd73 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf8c3b227 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfe648d2f fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xe604bc4d hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xec74b5ab hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x40773353 __fw_send_request -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xa018d2dd fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x14ede486 fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xbe2574cc __fw_send_request EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x7d82b7db get_scpi_ops EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x5b0c4b0e mtk_adsp_ipc_send EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x5a8170ea alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0353772b dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x07a8d259 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x089336f6 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a60c18e dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2df8f246 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x348e82c9 dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3550ec86 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4b7d5abd dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4cbb82ea dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4d84f103 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x52770dee dfh_find_param -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8915e605 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8a49b3d7 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8f78195d dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8fea2119 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x903f606b dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa7f7d025 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb9a032d4 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbfdea267 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc020acae dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc1be4964 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcc0d90b8 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xccab1beb dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfecb1da0 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x118590d4 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1ef5b59e dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x20dbcb6b dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x24db3315 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x35e52f3d dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ebfaf08 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x700d4a39 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7324227d dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x749a43e5 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7937d27d dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x798ee320 dfh_find_param +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x83448965 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x84042dc9 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x88e6ca81 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x916a1997 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa33163a9 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa498cd17 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa8df9e2d dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb68c9382 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd481c641 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd9c673e9 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe99c9050 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xea341315 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xef87d5ff dfl_fpga_dev_ops_unregister EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x238602bc of_fpga_bridge_get_to_list @@ -12498,54 +12517,54 @@ EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc9526e21 fpga_bridge_put EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdda9506f fpga_bridge_disable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe892c4fe fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x092d4f8a fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1dad14ad of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x34d95323 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x534b4b3a devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7014a81a devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x70190c12 fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8cfd03d4 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9671419c fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcad5dcb3 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcda3f43b fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdce6c893 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf3e3f5d9 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf6f320a0 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7ffbae95 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8546e076 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x88391aaa fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8c1e730d fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x99c9dd3c fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9d236131 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9e7458f5 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa05d2ad9 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa4af2c64 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb7cdabdc devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe1adb807 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf7a30308 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfd5200cf fpga_image_info_alloc EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1eb1e5f9 fpga_region_program_fpga EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2e62d08c fpga_region_register_full EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6f7034ce fpga_region_class_find EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x99312d9f fpga_region_unregister EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe9df8ca1 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x29746401 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0a7ec4d5 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x39e900e4 fsi_driver_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x52a2b8a7 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x57514b2b fsi_device_write EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5ea1a349 fsi_device_read EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x60a97912 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x61c1f60c fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x685dcd72 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6866b63f fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8eb6041e fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xaa6e85cd fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc627ddb2 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcd5ac42b fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x725c570b fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8374ebb1 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9603ce6c fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb2a4892d fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbb1f99f4 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbe8d920a fsi_driver_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4ac7aa2 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x66c3b401 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x291bb07b sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xbdf62e1a sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1d1dce28 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3ea144ec gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4dbda244 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa229dd86 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xeec31aed gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0e59540b gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1aeed02e gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4d090510 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5f10a39e gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc2876f39 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x33b395e7 aspeed_gpio_copro_grab_gpio -EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x3faff7d8 aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xee6b112f fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x1ab68d17 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xc47fbb7f sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xe7fe0556 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x30addcac gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x93e14f8b gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xbd9cf400 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf5025b4d gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf55484be gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5637ab04 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9b3fecb2 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xb6447c75 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe285dcd1 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xe3ccbc59 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x0c2bc3bc aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x54a7a7ff aspeed_gpio_copro_grab_gpio EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x19564f02 idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x40780f24 idio_16_state_init @@ -12558,29 +12577,29 @@ EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x5d7947eb gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x16bc0b00 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x285847cb analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3d1faa9c analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4bec00b4 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x78ed97ed analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x89d4a2c4 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb9cbaf89 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2c9e424e analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3c23e73a analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x555f48f3 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6cf5e963 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9c5dce42 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa48651ad analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb20cf3da analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb478b989 analogix_dp_stop_crc EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe4978c9d anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfd4ff5d9 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x3d515f04 ldb_find_next_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x7474b1eb ldb_bridge_disable_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x75aa0d92 ldb_channel_is_split_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x783da467 ldb_remove_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x7928f8e3 ldb_init_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x7b7e0d59 ldb_channel_is_single_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x893777b1 ldb_bridge_mode_set_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x8989b8ee ldb_bridge_enable_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x9d415307 ldb_bridge_attach_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x9e7d3354 ldb_add_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xf2b2ddd6 ldb_bridge_atomic_check_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x5cc9f0fd samsung_dsim_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xaaa19611 samsung_dsim_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xab3416ad samsung_dsim_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x2941f8bd ldb_channel_is_split_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x30711ca5 ldb_remove_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x3fd5958c ldb_channel_is_single_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x470f8997 ldb_bridge_mode_set_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x5d3217c9 ldb_bridge_atomic_check_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x60f3bab0 ldb_find_next_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x798b6a01 ldb_bridge_attach_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xa7f9be85 ldb_init_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xbeea22b7 ldb_bridge_disable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xf84a665e ldb_bridge_enable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xfeef50bd ldb_add_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x0aaef8a2 samsung_dsim_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x5bb306c0 samsung_dsim_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xbe8f88ae samsung_dsim_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status @@ -12590,412 +12609,412 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x5275184b dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x79bf2a1a dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8fa34eea dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xbb630a76 dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xbb924986 dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd2ddc552 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd32faf88 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x212285aa dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x25a8af09 dw_mipi_dsi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xed85d555 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x3ae3039c drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x263474be of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x29f74a52 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x6319a8c2 of_dp_aux_depopulate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x66e21ba7 devm_of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xae8bd9a0 __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x23b75af8 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2c57ec9e accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3d4d2fa9 drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4a5723d9 drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x51a31d02 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5fe77331 drm_of_lvds_get_data_mapping -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6285183d drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66a194e8 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x4cecc41e dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xcc57e5d1 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x35bb9bac of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x4172af52 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x67235a0a of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xc1e30e96 devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xcf27bcf8 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0909548a drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x208c6761 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2ae56945 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b1904d2 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36bc7e41 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ded9bda drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4e982d3b drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x58dc334d drm_of_component_match_add EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x67a64b38 drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8f6e1f21 drm_of_get_data_lanes_count_ep -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8fe5ea2b drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9987b4c5 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7ff4a6f1 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x820e99e9 drm_of_get_dsi_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96cc1736 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaaf1edac drm_of_get_data_lanes_count_ep EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb1446666 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb24882c1 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb2cddf3b drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbd6473b2 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xca4ed505 drm_of_get_dsi_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcae00998 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee8fd940 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf003646e drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf06429c2 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf343208f drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf914ef12 drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb4ab535a of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba691f6b drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc01d455b drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc6b21151 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd022c074 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd0be7f5a drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd14ac383 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd82e9964 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe63a88c4 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe6f4d4bb drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfc719e6e drm_bridge_detect EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0a84ef6d drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3e58f24c drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3f156f20 drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x488f927f drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4bfbccfe drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5c6f0957 drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x90b53580 drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb8a5d898 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc87d6096 drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc9912b6c drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xd0ec8d64 drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf750e7a5 drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x244768b4 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x290f2bb3 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2a884152 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xad73def1 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc8b6ec5e drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd3ffcb5f drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe6b1d717 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf155d969 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x06642579 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x1c6d0864 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x33d535ac drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5252ec62 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x9aebc495 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe3ba2856 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe7f537fc drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf07d6772 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/ipuv3/imxdrm 0x3af628da imx_drm_connector_destroy -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/ipuv3/imxdrm 0xd766e7ef imx_drm_encoder_parse_of -EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0xc43f0a9d mcde_display_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x0216e51e meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x02181166 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x1ea3f1a2 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x26a68cd8 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x2fb08185 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x541bb546 drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5ac40c20 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x732782ae drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x809eb49f drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x918d2056 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x93b2fad5 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x966f54de drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xcb2a993f drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x23e9a360 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x438ec9b6 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6354dd3d drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x870bedfb drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa4024624 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbcf416e8 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbdc9d51a drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc9fadea2 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x14519b7d drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6486e32d drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x67152279 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb341483c drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb56a82be drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbe53c272 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbfcac03e drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xffc45158 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/ipuv3/imxdrm 0x17cee289 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/ipuv3/imxdrm 0x1b255bb3 imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x7e87007b mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x0a285d03 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x0ba5239a meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x21cdb226 meson_venc_mipi_dsi_mode_set EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7ffb97ba meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x65c9cbd4 meson_vclk_setup EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xa70a8ed0 meson_venc_mipi_dsi_mode_set EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xbdc6b795 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xf0aed008 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x476a0807 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x72c97946 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0x3e5c8a99 panfrost_pm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x22d9922e pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xfa38ede7 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x20fce3fb s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x84e34218 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0x5d3200f2 panfrost_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x314ca3e1 pl111_versatile_init EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x3f6614e1 rcar_cmm_disable EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x9094bb07 rcar_cmm_init EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x97c87244 rcar_cmm_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xe5fec17d rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x39469e73 rcar_lvds_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x447d281b rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x69f222d0 rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x98628cc9 rcar_lvds_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x12b71e0e rcar_mipi_dsi_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x6266c45c rcar_mipi_dsi_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x8fc8022c rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb7c84583 vop2_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xe27272a5 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x061ac1d8 rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x5f7052d0 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x7a2f19e1 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x8a5ebb22 rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x3922b1b8 rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x62552359 rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x4e4e598c vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xd7330c7a rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xf5d6e1c4 vop2_component_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x055ed19a ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x76560b72 ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xccfbb1a6 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x1107e0eb host1x_memory_context_get -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x1b006033 host1x_memory_context_alloc -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xb101e246 host1x_memory_context_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x01f0f1e1 ipu_idmac_enable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x04ba49f8 ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x50fe231e ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x55e22b9d ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x5773a847 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x4ba66b86 host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x6f6139c1 host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x71b91faf host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x011bd30a ipu_ic_task_idma_init EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x050f0d7b ipu_di_adjust_videomode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x06b5f368 ipu_idmac_clear_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0728116a ipu_csi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0c53ca02 ipu_module_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0cb40c93 ipu_prg_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0751b572 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x08507d60 ipu_cpmem_set_resolution 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 0x0ff61586 ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0fbb37d9 ipu_prg_channel_configure +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x114209ee ipu_dp_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x12eae2b4 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x12e33b5b ipu_cpmem_set_format_passthrough 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 0x144c1959 __ipu_ic_calc_csc -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x15ca60da ipu_image_convert +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x14d69537 ipu_idmac_disable_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 0x18730251 ipu_rot_mode_to_degrees EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x18aa0dcd ipu_image_convert_abort -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x193ea620 ipu_dc_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1de121bb ipu_idmac_enable_watermark -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e4e4357 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ab2665d ipu_prg_disable 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 0x1ef1f811 ipu_csi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1fb476f2 ipu_idmac_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x212fa7a4 ipu_prg_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x213ea159 ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x21619a54 ipu_prg_present 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 0x2bc0895f ipu_get_num EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cf7ed72 ipu_dc_init_sync EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2e825a67 ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f01eb85 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2f4aef4f ipu_cpmem_set_yuv_planar_full 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 0x3020d65c ipu_prg_max_active_channels -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x306f493f ipu_idmac_put 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 0x331fa620 ipu_idmac_enable_watermark EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x35d27d82 ipu_ic_task_graphics_init -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3b4130ab ipu_dp_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3bb0111b ipu_vdi_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3c0ae2e4 ipu_cpmem_set_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3dd0954c ipu_smfc_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3e86ea72 ipu_di_get_num EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x418a282f ipu_drm_fourcc_to_colorspace EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x42d3d500 ipu_image_convert_unprepare -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x445e42a9 ipu_cpmem_set_yuv_interleaved -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x480d2870 ipu_idmac_channel_irq -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x482dc9fd ipu_srm_dp_update -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x48f4a067 ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x440c27f2 ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x48f7e0ae ipu_cpmem_set_fmt EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x492a422d ipu_csi_set_mipi_datatype -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x49605230 ipu_image_convert_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x493c7c44 ipu_cpmem_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x498b4c7b ipu_image_convert_enum_format +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4a3ce81a ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4b2dce52 ipu_cpmem_set_high_priority EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4cb417d5 ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x511b93ed ipu_module_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51f62a8a ipu_prg_channel_configure 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 0x55767280 ipu_vdi_set_motion +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5638e5cc ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x570d6536 ipu_cpmem_set_rotation EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5a362ed9 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5a6db14c ipu_idmac_enable_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5b15aea8 ipu_dp_disable_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5d0a6c43 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x609eefb2 ipu_set_csi_src_mux EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60cc7d1a ipu_smfc_get 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 0x6fd29e02 ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x64f41b37 ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6b2513f4 ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6c07d189 ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6f9e9f97 ipu_cpmem_set_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x710cec21 ipu_fsu_link -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x72bcf3ba ipu_module_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7354b221 ipu_idmac_channel_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x764c792a ipu_cpmem_dump -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x77bb3d95 ipu_ic_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x791b82e3 ipu_fsu_unlink -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7dd355a6 ipu_set_ic_src_mux -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7f510cb1 ipu_dc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x82b142cd ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x726006c4 ipu_image_convert +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x76a1b325 ipu_vdi_get EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8497c7d4 ipu_degrees_to_rot_mode -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x872a6799 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x85a75464 ipu_dc_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x886c35aa ipu_smfc_map_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8884ee50 ipu_prg_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a040271 ipu_idmac_set_double_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8a9458d2 ipu_image_convert_verify -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8ca82e44 ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8c95a81c ipu_cpmem_set_yuv_interleaved EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8eb22643 ipu_dp_set_global_alpha EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x91ce1a04 ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x93f2449f ipu_cpmem_interlaced_scan EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x951a09d5 ipu_csi_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x960afd48 ipu_cpmem_set_axi_id -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x961684d0 ipu_idmac_wait_busy -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9881697f ipu_idmac_disable_channel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9db19484 ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9babfdb4 ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9bb907ee ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9bfaaf29 ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9d8a9205 ipu_image_convert_prepare EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9dbd5905 ipu_ic_calc_csc 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 0x9fefdc4e ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa29fefa2 ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa37c88bc ipu_di_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 0xa560c24f ipu_idmac_channel_irq 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 0xa6daa1cb ipu_image_convert_queue -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa887ae88 ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa7ef3bd0 ipu_set_ic_src_mux EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa8adc101 ipu_pixelformat_to_colorspace EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xab8133dd ipu_cpmem_get_burstsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xac58e4bd ipu_get_num -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xac66d0dd ipu_cpmem_set_yuv_planar_full -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xadf30b90 ipu_cpmem_set_uv_offset -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb87fea54 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xac21e1df ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xace08855 ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb5049040 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb649c281 ipu_idmac_clear_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb9ea6823 ipu_dp_setup_channel EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xba458b8f ipu_csi_set_test_generator -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbe147a46 ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbc018116 ipu_idmac_set_double_buffer EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf983ba6 ipu_vdi_set_field_order -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbff6607a ipu_idmac_select_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc1d46537 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xbf9ba97d ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc0731cd9 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc10c5375 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc2370f1f ipu_prg_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc3c2cdb0 ipu_smfc_disable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4af2e81 ipu_dmfc_config_wait4eot EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc4b15642 ipu_csi_set_skip_smfc EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc603fac7 ipu_image_convert_adjust 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 0xc96361a8 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc95f59f1 ipu_cpmem_get_burstsize EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc97e7a0f ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xca17cd2e ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcad209dd ipu_srm_dp_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbd7ff59 ipu_cpmem_set_image EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xcbea3eec ipu_di_init_sync_panel -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd62ea795 ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xccc59f77 ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xce95adee ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd1126e0a ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd2d823db ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8e5d190 ipu_dump EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd8f285f0 ipu_vdi_setup -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdcba9fb7 ipu_dmfc_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdd531744 ipu_idmac_get -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdd743f7f ipu_idmac_get_current_buffer -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe14f0d51 ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd9044f73 ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd9f17693 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdba679dd ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xdd8aca5a ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe064348c ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe37e45b0 ipu_image_convert_sync 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 0xe6a5ffb0 ipu_cpmem_set_image -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe96a7f34 ipu_dc_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xe9be5884 ipu_idmac_buffer_is_ready -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xea46902d ipu_cpmem_zero -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeb2d071a ipu_cpmem_set_resolution -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xec30eaaf ipu_cpmem_skip_odd_chroma_rows EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeea12b31 ipu_vdi_enable EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xef964eb7 ipu_csi_init_interface -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf07d9ad6 ipu_map_irq EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1abac7e ipu_csi_set_downsize -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf372d5dc ipu_prg_format_supported EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf541df2d ipu_vdi_disable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xfdb082f6 ipu_dp_enable -EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xff40fa33 ipu_set_csi_src_mux -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00c271af gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf6135a47 ipu_cpmem_set_block_mode EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0c859461 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10687e5c gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10f5c169 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0f2bd929 gb_connection_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x16341653 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1a301d7c gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1aa66261 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1e001a25 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2bdf0ec2 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2efd17e1 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3119d23d gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x374a56ad __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x43dda7f1 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x461fea28 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4f9cd66b gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x54ffae67 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ab1b83c __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6721b273 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a4d21ca gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b0dbb1d gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1acc32de __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1cf80e35 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x20381d16 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x21de0331 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2adb64b5 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f9eb3e7 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3544e9cd gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x39f25c93 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x40fca43a gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4833f6ea greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4c6dec9a gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5847df7f gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62630c71 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x63bcff63 gb_operation_result EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6efcc511 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x70bafc14 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b401392 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7be81cb8 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71498e04 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x775890a1 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7819e530 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78afe78b gb_hd_cport_reserve EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84ef2268 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8235b8d0 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x868eb662 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x88c458ce gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x891b0c2e gb_operation_request_send_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90a2e310 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c6d2102 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d575450 gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa847e4ab gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8c262711 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ee33553 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94b54014 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94c09d9b gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b55cc74 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa0c4b39b gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa30e8a06 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa748debd gb_connection_latency_tag_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa8a36eee __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa913fd2e __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa938154a greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabd3c5ac gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaea76f15 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb228356f gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb2bddc01 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb2afc601 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb59a2c4b gb_operation_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbb7b6e9a __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe64c3b4 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc30a1241 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf11fe6b gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf1a7b37 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc05cbc75 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc66d2833 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc79cd1fc gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc9ae96ce gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb8869a3 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xccbce4a0 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xccf7ea88 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4852335 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdd2133e5 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd2c23c11 gb_hd_output EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdd75f27c __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde30bd8d gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf207953 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe2eec9a0 __traceiter_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeafccb3e gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeb9354b9 gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf240846c __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/hid/hid 0x02219e34 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09ff9afd hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c2e36d6 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x16c79586 hid_add_device +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf5beb5f0 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05f0a1f9 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e95ec07 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1595217d hid_dump_device EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f327b6f hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x238f76e8 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fa6b645 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x34644d6f __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3bdb5159 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4065f90f hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b1b0d88 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f92042a hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x52bf7b6d hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x73b90ece hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7bdeaeea hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7e4d96e3 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ebeb6ff hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8266604b hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x83111d4d hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x844709e8 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8577c069 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fced9dc hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2620c94f hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27a060f6 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c410ed8 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x333816e8 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x357d8682 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a08170b hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c0786ce hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4daed48a hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x52b5503f hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x587a6968 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a40b90e hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5af9a245 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6061c449 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63acea13 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x65239e79 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x732d923a hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x788dc46f hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cbb842c hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x888e1abc hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88f7bfeb hid_hw_open EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bc54802 hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8dab33cb hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9526d7eb hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa18d2b1a hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa45f2020 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7ad40d0 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xac974e5d hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf530368 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xafc54b87 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5679c0c hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb6a74ccf hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbff9e976 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc158c544 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2fdd6b5 hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc46af996 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc496dfc2 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc576737e __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdc4e356 hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd26e7915 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd752f55b hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd83d3fe4 hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0xde25a364 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe15c9a71 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe456e1b7 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe72d7efc hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe77c937a hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8067ac9 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x901f2a4e hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9110ebee hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4bc9bf4 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xabeff70e hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xace45dc6 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3c59cfe hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb8507beb hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9a45a20 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbad299a2 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0a7c323 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1b15b2a hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc358c005 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4b6cb3e hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc57ee29a __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd04e78d4 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2e9dbef hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd50aa5b4 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd9f5cc9 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5c12c88 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea88e9df hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf661646b hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf70fc746 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf79519cf hid_hw_output_report EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd61ee8f hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfeb1d8b3 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa8c912f hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdd73079 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff6d2ce3 hid_dump_field EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x7f39a140 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1c366e5d roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x380b69a9 roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x41ec78ae roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa7d42913 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb710a4b0 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd08764a6 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x06243ead sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x065c1db6 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2918526e sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x314db1fa hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x68773aa1 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa955f2e7 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb2a5ed99 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcfdf2647 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdeeda77d sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xdd4c09ed vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xe4d47922 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x331e38d8 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x56e2636e i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7bb96cdb i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf251908a i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x737e202b hid_is_usb -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7f0ce36b hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x078f6557 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0bbd6948 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0f88f9d1 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2fcad729 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x39cc05f3 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xcc222d52 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0787d62f roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x216ae706 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x665de239 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x843b93cc roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbb82739b roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc8f02b1d roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x07c4d7d0 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x35de2f39 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7f8c0a33 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9be2294f sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc25e6c18 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdf561b84 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe0d15a22 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe87552a3 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf82bda0b sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xb94f7a01 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xd551f6d9 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x005314dd i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0fa300d3 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa41777f9 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xef2ff211 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x97920138 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xdb30de86 hid_is_usb +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x32197b97 hsi_new_client EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61880cac hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x620031da hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x63553a15 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7e6184c6 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8dee54eb hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9178f7c5 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9d33f9ee hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa5eb854b hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbd2c9f36 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6af9dfd hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd82bf45a hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdffacdf6 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfe47f57b hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5de9a4de hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6bf805bc hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x756ebda5 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7c87eaff hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86c109b6 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x929e1b34 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94b5e286 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94c84c97 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9eb6132f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa0e9e32 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb52bf374 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbade7424 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc3753114 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc4583b54 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6f98bae hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe2d41e38 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6e044d9 hsi_async EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb6e3448d adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match @@ -13005,64 +13024,64 @@ EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x8a455357 nct6775_update_device EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xabee78c0 nct6775_reg_is_word_sized EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xce334324 nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0946c7f0 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x16b1d006 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2e64ab72 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x31883c9e intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x74946e86 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x930858bf intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc8f344c2 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xce87eda8 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe2170f0b intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x19e78b61 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x53a76c79 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x97a56522 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x002ee5c9 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0956715a intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x174b3c0c intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4353ac7d intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5f1459c5 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x62ddce37 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8c0d5448 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc81655a0 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe56aa83a intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x03ce1b56 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x59246fd9 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xe5990b0a intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0cdd7001 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1038d595 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x20e9ab38 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x29ccd5d1 stm_data_write EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3331a1ce to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4610af01 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x515acbed stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x611f1321 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x811c54f2 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8831e22e stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9933df9c stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa269a877 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xafe3a6a8 stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x1767f1e9 i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6e10f51d i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbac6e727 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbe5e997e i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf4aaeabe i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4b4f468e i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9b2d995d i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd87b6763 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf61b2995 i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x047c3ef6 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x10629711 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2259e227 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x22a9c4ea i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2cf2ee2f i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x34b896eb i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x367d8a86 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3fa48d50 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5958a969 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6328147e i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a8af2df i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x764a64fb i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x86870e14 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb483af0c stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb5b0a1a9 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc7dd14a5 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xc42ee9c6 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x40b78be7 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb2dc050a i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xced48d2d i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcff57b29 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2418b73f i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3a657b61 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x99570736 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa673b8d2 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x03dc0d5a i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x07619c1f i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1130678e i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x29c21b34 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x33dd2de2 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3abcbf24 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x416bdc6a i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x45756e96 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4a44f07e i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6159c438 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x629b3cb6 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x739dedb4 i3c_generic_ibi_recycle_slot EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8a319d14 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa67ade39 i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3b32b30 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc0daad6f i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc36ed5d9 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc5bbfdbb i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca8c1ae3 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcb55c982 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd99d8a1b i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe9ed24a0 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xee887d25 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf1a580b3 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf230eccf i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x2349480f dw_i3c_common_probe -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x28cc9f0d dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x821f839a i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8357dc69 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8da56ed0 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x91fd3035 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae5760df i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb8294f76 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbc4132eb i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xce17692a i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcfa91642 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd4fb3341 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdbb40d66 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeeb7a68c i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfa0957be i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x1f028230 dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x9cfad866 dw_i3c_common_probe EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x168da872 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 @@ -13070,26 +13089,26 @@ EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc890cffc iio_channel_get_all_cb EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xd832bc80 iio_channel_cb_get_iio_dev EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xfff2647d iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0c54b926 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3127212c iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x50165858 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5a28d6e5 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6489f162 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x66badb35 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x866d0cf5 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc086e4c2 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe10d7453 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe212e97f iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe9e05030 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf9291589 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xc28517f8 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0be0b87f iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0c423ce5 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x36bfe481 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4787a4be iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x585a3993 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6b713f61 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x878d11d9 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8a1ea433 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa95965e7 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb75bff07 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcde6c24c iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd2b73510 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xf207983f devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x704270b4 devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xe1ae8a66 iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x741d6feb devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xa2b2c578 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x1b031bbe devm_iio_kfifo_buffer_setup_ext EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1bc7c8e4 cros_ec_sensors_core_init EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x27b45f6f cros_ec_sensors_read_cmd EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2a12c899 cros_ec_sensors_core_read @@ -13102,121 +13121,121 @@ EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9be74030 cros_ec_sensors_read_lpc EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa1b2bd39 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x4b7b3ab8 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x900ad108 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb67dd09d bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x08a49f7c bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x85e73756 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xc462d6f6 bmg160_pm_ops EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x191c1d70 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x003bb2aa iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x030579b4 iio_map_array_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09067d34 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x122c7616 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c84b231 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x125545b6 iio_enum_write EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18cb1540 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a160d26 iio_enum_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e1450c7 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32e26b9b iio_device_release_direct_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x400f54d8 iio_write_channel_ext_info EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x454847a1 iio_map_array_unregister EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x462a875c iio_alloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47cdfcf1 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x488d00b2 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ddb9039 iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4fd889d3 iio_get_channel_type EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57e2b337 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a5b4360 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d8312e6 __devm_iio_device_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ddeb74c devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61f3bbd7 iio_pop_from_buffer EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67740cdf devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f0563d4 iio_device_claim_direct_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x709b8545 iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73b23ec0 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75500983 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74a58820 iio_buffer_put EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x764fd83d devm_iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x76a7a128 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a389dd1 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a54d983 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79c21627 iio_buffer_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a5fb96d iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x825dbae0 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x86fb23cd iio_push_to_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87dd48b2 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c5bcd6a iio_push_to_buffers_with_ts_unaligned EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8dda1721 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92922a74 iio_device_id EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94b104b3 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9587c889 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95d11530 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x993a4337 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b58a9ee iio_device_attach_buffer EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8945f4c iio_read_avail_channel_attribute EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa8f07af iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad48de7b iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8fe46c9 iio_enum_available_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba1f21be iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbe4b0da iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc75e5c0 iio_dealloc_pollfunc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbce80b07 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc1339b50 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc329e45d devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf550b1d iio_validate_scan_mask_onehot EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3e44d56 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc43c67a1 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6162fdb iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb02dd60 iio_buffer_enabled EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb28003d iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfa38796 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd749779e iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcdeb6ad9 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd76a476c iio_device_get_current_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda4b79bb iio_validate_own_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdb51cccf iio_enum_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd39bc34 fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdff0e2f7 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe95b6425 iio_enum_write EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xedd8d525 iio_write_channel_attribute EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf03ff05f iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0fb9b33 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf598716c iio_update_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8c6f419 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfadaf35b iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb8411ed iio_read_channel_average_raw EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3ad09242 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3c5cd1da rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x48bd95a4 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4cf1e613 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5a088a65 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5e1a6318 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5ee4a3c8 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8867d08c rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaf85c6ff rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb3d85c4f rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc2e8d194 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdadf6aab rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xdd74f50d input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xad499f06 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x8b2553be adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1e72b4f6 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x29b518a6 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x338e1bd8 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x36a17942 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3928fbee rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x82174b51 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x870f85fa rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x932ff64e rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc0767bca rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc6f8bd10 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xca0cd58c rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe117f3de rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xdb6d67f5 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x9a54be2f matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x14f8948b adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xecdeaf9c adxl34x_pm -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0754ae07 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0882d7b2 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2dbaf903 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x566505db rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c35ceb0 rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x63ec7932 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6bbfa0cc rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x98828a12 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x996bbe93 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa74b7e7b rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb866e779 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbf68696f rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf884c2f2 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5164be00 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xecd733b0 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xffdcb6a3 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8249cbeb cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9286c71c cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x29944fa0 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x88a230fa cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x04eedbb0 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x1dcbdc4f tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x29784eb6 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xee4a5f5d tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x138932d9 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3e69ce92 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f97f5de wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5149e95e wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5229e884 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x833df540 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8c83c9a0 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc7b4212c wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcae7e39d wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd1899812 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf99e34be wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfe871d0d wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xfd44d5f3 adxl34x_pm +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f5f9a6f rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x10cda8a1 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4653ce91 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x470dd252 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6d04179d rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x834bcaaa rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9125305f rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9f2298a5 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6a7d4e5 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbfad6c99 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd47aa3fe rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe4b3a7b7 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe80ca537 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x541fa790 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8a59f6b1 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfc6a88eb cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x452f5319 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc4ef1be5 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8162f187 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8dedb893 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x047156f6 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0edfe78d tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x888660d2 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xddbf4a78 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0033d798 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x24c321f4 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x26df0e8d wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x40c30133 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x44e544de wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9596d946 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x975bfb69 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdc871b06 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe869216a wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe8c2265d wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf5d73c30 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfcda7748 wm97xx_read_aux_adc EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x5d565b96 imx_icc_register EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xae801478 imx_icc_unregister EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit @@ -13264,24 +13283,24 @@ EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x77a53ff5 led_classdev_multicolor_register_ext EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x795647d6 led_mc_calc_color_components EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf999dbe0 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2cdaad94 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2e6403af lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3c4feee7 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x55deee2b lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5fb68ad1 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x77873152 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb97e199a lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc65c6567 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xef9fea8c lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf2e38cd3 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x20638455 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x410b253f lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5ecccfcf lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x75668202 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x849cabb5 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x860199a4 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8ac64090 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbde10956 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcb26263a lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xed551e20 lp55xx_write EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get 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/md/bcache/bcache 0x0167734d __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x039d6f81 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04405ce8 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0634e43b __tracepoint_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0806774f __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x090897a1 __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x11c949ae __tracepoint_bcache_alloc_fail @@ -13289,34 +13308,31 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x180cee58 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18dd8791 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1fbaa9c4 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21bf9c95 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26c4165c __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a362af4 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x360e96a8 __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x38a2546d __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b1d1e91 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x39350287 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ccf70bc __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4280ee83 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x447eec16 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x452a056d __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b50f916 __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d7eb0d4 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x509a23cd __tracepoint_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5396cb95 __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x564bdfb4 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5818161c __traceiter_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a1cab44 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ec1751a __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x639ea1f8 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6542e636 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x654e8b42 __tracepoint_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6da62af9 __tracepoint_bcache_btree_node_free @@ -13326,22 +13342,18 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x765ace80 __tracepoint_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b269a64 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c8336f5 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f1c61eb __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x800bf4be __tracepoint_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x829f254e __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x870f22e4 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x92dd945a __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6a89e7 __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d24d04e __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e759612 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa16f383b __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa2bf35b9 __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa464022a __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa48df968 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5bd9599 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5edfdb7 __tracepoint_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full @@ -13352,54 +13364,62 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb671e2fe __tracepoint_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba3d6825 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba6e9027 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc21c66cc __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0d4fa53 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc20c5226 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcdd32d84 __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd90cc1a2 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce921281 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd52cf9ae __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc4c27c8 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc752ee7 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xddc12758 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3185e9d __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe5addf8a __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7190869 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe95db051 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xecca54c8 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xecf64c73 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1bdf9cc __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf331610a __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf5284f78 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6882307 __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8443005 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf89867e2 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x25c7435d dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2bcc6175 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2dc9427c dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1d8a9dca dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2889a555 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x51f2f571 dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5dd55aa3 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x398b137e dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x40f636e6 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x53c8adc0 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x637dc74c dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x72f17f9d dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x727042e9 dm_cell_error EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x82f23ddf dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8363df3a dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c5a928c dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8d783394 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8f25372a dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa7030386 dm_cell_lock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 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 0xb8bafd05 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbd11fcdd dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbed25d6c dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc7db90b9 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 0xd1856291 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd1a01c4c dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd71ed91e dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcbdd0a60 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xce3a40a8 dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdc081368 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf0a5f6d2 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf560f820 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf8e1989b dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xda5e4da0 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe681746f dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x5347426f dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x656100cc dm_bufio_client_reset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard @@ -13414,7 +13434,6 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd1e3a4b4 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release @@ -13425,38 +13444,38 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1c852cab btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2632ab11 dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2d1bee32 dm_cache_policy_register -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x408095ee dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4627c218 dm_cache_policy_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x481a0b15 btracker_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65eea825 btracker_nr_writebacks_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7d1a32a3 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8ec1d0a7 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb6515661 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb816e47e dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xde33f911 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x21d1e413 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x551078b7 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x24156f64 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfcb378b0 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 0x0bad723f dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 0x43ecfb8e dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4f831b7b dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5013950f dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3b955e17 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x644f2876 dm_rh_dirty_log -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x64a41265 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6512e334 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x676456ab 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 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x87125f86 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9549c216 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 0xbe38a431 dm_rh_recovery_prepare -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcaf054cd 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 0xf92b8a3d dm_rh_get_region_size EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight @@ -13482,7 +13501,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ad0f55b dm_bm_flush EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3ae50a4a dm_tm_inc_range EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40720a25 dm_bitset_set_bit -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40e755d6 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x418204e4 dm_array_set_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46af8087 dm_bm_read_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46c56110 dm_bitset_empty @@ -13515,6 +13533,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x91baa32f dm_btree_find_highest_key EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x94daa188 dm_bitset_cursor_next 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 0x99338730 dm_block_manager_create 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 0xa0bc1801 dm_btree_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa433adbc dm_bm_write_lock @@ -13535,73 +13554,73 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf3e25192 dm_bm_checksum EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x22a43891 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x24b6098f cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2a507540 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x449bb894 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x44edc9ff cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x482af731 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b06051d cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6817e135 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x76a2f5db cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x894f0cbe cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x92b6a1a8 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x007b7623 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0e52e661 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x146abb99 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1488664a cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x48378462 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5806d723 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6693b7bc cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x68cf3aee cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x857b5879 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8c2a85c8 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8ce634ce cec_fill_conn_info_from_drm EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa10098a4 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa720ca75 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xad03097f cec_s_log_addrs EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb44d7ce2 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaf6f2574 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb05816c3 cec_transmit_msg EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc0420dfc cec_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe404530c cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe76a31e5 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xeb2b9727 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xed580379 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf0967651 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfa807760 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc3a7045a cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xce71f22f cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe7c3c00e cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf00a1fc5 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfc7a4236 cec_s_phys_addr_from_edid EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0d5577d0 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x18a0c4db saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x49934e58 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x566fdeb9 saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x760b0772 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7648efdb saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd1f90b83 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x02a55614 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x245a49cb saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6965beec saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x85cb58cb saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8808676d saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x92de20df saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa1758e77 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbdcd4841 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcc3eb931 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd012ac08 saa7146_setgpio EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe59c3826 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe9663415 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfbe11523 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2fcd173a saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa7e8f261 saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcdf719a9 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe69760bd saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xefb92dba saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x063853b1 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e50e74b sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1688cc8c smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2026fd31 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x106db3d6 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x487bde65 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x510bdf19 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6a2c10eb saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x79b8c492 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0fcc2b73 sms_board_led_feedback EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2439439d smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2c92f46a smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x30c18dd3 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x26bd0384 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2e03b806 smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x40ca1fdf smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x410ee165 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x43410513 smscore_unregister_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d2705b1 sms_board_event EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6ef5df36 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6ee23464 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x70986730 sms_board_setup 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 0x966633a4 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb6099a51 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb7ed5ba8 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90a20900 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb1a32ef3 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbb64fddc smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbd2ea1f5 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc7091362 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe5cfcf44 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf43e67bb smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc8023913 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcdd3558e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1567d46 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd947628f smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfb5ec8b9 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfe47952f sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff9a086b smscore_get_board_id EXPORT_SYMBOL_GPL drivers/media/common/uvc 0x08c5db3e uvc_format_by_guid EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text @@ -13620,455 +13639,455 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x00d66fa5 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0579c68d vb2_core_streamoff EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0bed52bb vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x11445f4d vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1715856e __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x17f7c3fe vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1db38a0f vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2a883493 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2d24e462 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2d7f4fcf vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1ea06696 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2435852f __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x30a22656 vb2_core_poll EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3dfd5755 __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x516155db vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5433b4f2 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x548c9ac3 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5e80e7c1 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x43a39d2a __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x495fe708 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x507430b3 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x529ce8b3 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a8a652e vb2_thread_stop EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f90d542 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61f976b6 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x62601df8 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x635d7ab3 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x800be6c5 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x81554275 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8dba71b1 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8fa3ec9f vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9324fc6f vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x613645c0 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x801df3f2 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c50c36e vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d40dfb5 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8e15f760 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9527f1a9 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96bb17d1 vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x97a2ca7e __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa1d68476 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa0cb6c23 vb2_plane_vaddr EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc16b3e5d __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc255e7b3 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc50295a2 vb2_core_querybuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcdf832fe vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd42f59d5 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe688fdc6 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec6da4a6 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf14cd93f vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc922a710 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc996dfa7 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca6c43e4 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xce167072 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xceda4824 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd1619b4c vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd44776ed vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdb55970f vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdcef5d43 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf6e0cf2 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6a1478b __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfd2d15c5 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0f0fe811 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc6766314 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x2ad5079a vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x13933eb8 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x03919acd vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0bc40694 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0fa9291e vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x12ec55b7 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x143d84c9 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x19dbf9c7 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1dc23335 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28606858 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2cbb00c6 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3df04af0 vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4124ac02 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x41b24f28 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4d170a9f vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x517151a7 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6594f6c0 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x707360e2 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x792476a9 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7a4babda vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x92c8bd1e vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x945376f3 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97c885aa vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x996bb3e9 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d617ce7 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9e3aed70 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa33d0aee vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaa9a8acb _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb6aa580a vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc585886a vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xccd31564 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd31a8e73 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd8e75181 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe13ed50e vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe28c7d04 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf4cff149 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x692dd560 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x255cc093 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x8a7ad0c4 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd880e1c8 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xef00d26c as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x2cdbff0e ascot2e_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x1eb63b9d atbm8830_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x94a667ab au8522_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x21b2c0fe bcm3510_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0xf578eade cx22700_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0xa5fde7b0 cx22702_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xee68a0b1 cx24110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x30259504 cx24113_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x585f99fb cx24116_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x204ac0e8 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0xc8a268e5 cx24120_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x433a93c6 cx24123_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xd06dde55 cxd2820r_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x2d304a53 cxd2841er_attach_t_c -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xe398ab9f cxd2841er_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0xff632874 cxd2880_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0xb3d25565 dib0070_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x4dde6ad6 dib0090_fw_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xf46210ab dib0090_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x6672850f dib3000mb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x85dfa065 dib3000mc_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x5ee0255b dib7000m_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x19c575bb dib7000p_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x07094bb3 dib8000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x438540a3 dib9000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x92646275 drx39xxj_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xdafd20b0 drxd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xcb9027a9 drxk_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x732e7cc6 ds3000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xa7b8a1e5 dvb_pll_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xda13bcb8 ec100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xbf1a95c0 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x40a77f2a helene_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x64459678 helene_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x93499505 horus3a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0xc0c55cd2 isl6405_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0xfb426ac5 isl6421_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x6a2baa00 isl6423_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0xbee24dc6 itd1000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x4fef2d9a ix2505v_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x291a6fa1 l64781_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x5dd1add8 lg2160_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x0557c256 lgdt3305_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xf164ee05 lgdt3306a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x4ff1254a lgdt330x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x1597ad8e lgs8gxx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x406b9510 lnbh25_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x9a03e614 lnbp21_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xa1086ac0 lnbh24_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x32a5dd30 lnbp22_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x5b63a1e2 m88ds3103_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x8a64f365 m88rs2000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x92a6a3a1 mb86a16_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x2412d929 mb86a20s_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0xf4ce7edc mt312_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x4187dc06 mt352_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xc090df4d mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x892ccc31 nxt200x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x5fbbe7fb nxt6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x6b9fbced or51132_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x89ee7a3f or51211_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x4c2e718e s5h1409_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x1a5a5c6a s5h1411_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xf988eefd s5h1420_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x14eb71b6 s5h1432_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x828d41df s921_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0xab162b3a si21xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x45e69807 sp887x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x2f8a85b3 stb0899_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x2376019c stb6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x6c3f4e68 stb6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xe7bbb28d stv0288_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x34d2d49c stv0297_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x2afc33a4 stv0299_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x070a6f8a stv0367ddb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x37fa71b0 stv0367ter_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xb6c88bdd stv0367cab_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x03a5c208 stv0900_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xc216296c stv090x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x28c81044 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x41ec466c stv6110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x386cbc5f stv6110x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x1b7aac5a stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x70f96f88 tda10021_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x1aa8470f tda10023_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xc98c3f01 tda10048_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x50b7410b tda10045_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x6b3a5e7f tda10046_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xb2b61bab tda10086_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x82ed7363 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x21b8364c tda665x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x9a791e98 tda8083_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x30f9b6ff tda8261_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x0cfb072e tda826x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x490ba63b ts2020_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xb1ba3178 tua6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0xdf72dd02 ves1820_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x31ade26e ves1x93_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x3dfb8a73 zl10036_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xddb307ec zl10039_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x3570242e zl10353_attach +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x712eebad vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xdbe6ae8f vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x90334194 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x4ba3858a vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x001ab472 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1148b44d vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d23f6cb vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x227edaee vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x270f3a62 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ba5d67a vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43ade1ff _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c46c7fa vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4cc52288 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4fc36bf2 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4fd426a5 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5043d1c7 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x599b5104 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a607469 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x68730544 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x692a6e4c vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x71d68568 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7d9b3a8e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x823e43a0 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x83432446 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8befd112 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9dd7c022 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f2da770 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa5372abc vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa54f7fa2 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab7fdfc4 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb122309d vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb33bcc1b vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4458813 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc12759ac vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeac3a653 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec8d739c vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfc19fcc0 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfd952a1f vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x8e2f1e21 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x325c9803 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x961496b0 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xde94614d dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x282681f5 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x8e387b0a ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x991ef8e1 atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x265b010a au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x51476b15 bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0xb388c5f5 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x56a14b47 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xa8988f9a cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xfc7e9d3f cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xb5c28719 cx24116_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x66baefc3 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0xaf4fe89e cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x1a6433c1 cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xda486b80 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x4db5593c cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xfba99864 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x0684a837 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x1596b2e4 dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x3a68f017 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x9bd4550a dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xf216502f dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xa80cebdf dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x132d3d93 dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x6f4577c5 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x34bcfc74 dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x871b2ee8 dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xe0a738a9 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x3220f9c6 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xf0cca374 drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x9c4b6ecd ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x03c46afd dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x54cb0f1c ec100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xb2d618ce gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x7e9f43d1 helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xbc62ecb1 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x31aa1101 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0xf8a64d3a isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0xe88a8e58 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x4c050f27 isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x5b3ff2d4 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0xb31ea78f ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xb1197aa2 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x553628bf lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x3a46b4a6 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xf878566c lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x7b4fa828 lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0xb4d21b7f lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x57700464 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x1adb4662 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x8c896a85 lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x78fa1d58 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x27aae49c m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x320fcfb8 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xc3cf07f7 mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xb7dc0702 mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0xe3d5efa8 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x41280c24 mt352_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x4177fd15 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x90e0a49f nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x5ec6a1b3 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x7253d443 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xb2df7633 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x7ee726be s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xc06310c3 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xd54a8909 s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xced23d1f s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0xd8eb1605 s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x584a87cd si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xa5663841 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xdf674613 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0xc42dfde9 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x78dcb603 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x312260ba stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x948c0b0a stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xa421e1cb stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x5663cbdc stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x6693d5e6 stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xe7a12f8b stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x5f6e013e stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x470b3da4 stv090x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x707ffcc5 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x15d1a88c stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x9be0cbe7 stv6110x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xf8abde54 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0xf464046d tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xa2c37bd2 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x17cff836 tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x928caae8 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xa901b59c tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x4e4791be tda10086_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x05f35a3d tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xa3ef54d2 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0xdc8931b3 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0xaec47dfc tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x6a716886 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x725722e6 ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x56e1cd0d tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x00d24d3f ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0xa2633c45 ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xf8698b0c zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x3e6275e2 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x955e1310 zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xb83f2b31 aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x63164fe5 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0dcf0f84 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x16941027 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1a363cbe max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2bd4ebe9 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4013b872 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x42e6be3b max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4c3d0192 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5136c456 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x53d2eed0 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7950491d max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd2ac74af max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd3cc49b5 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf3881b54 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x04b1b47d media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x05f4e50e media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0faf1c87 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x11152464 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x11af0344 media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13f17c9b media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x14bb9887 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16d17454 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1bf00c9e __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23c6cfef media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24889825 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2773b0fe __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x279e91aa media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2a890f3e __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d451460 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38d24cac __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b691ecd media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3bbd57d8 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3e271780 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41db0c69 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45e3f859 __media_pipeline_entity_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x50379059 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5f51d7fd media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x03f5b331 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x114f263c max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x519c5066 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x66741dc6 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6e614a8c max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6f2a6a44 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9452b700 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa48ccc8d max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa7fe27c2 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc060d579 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcef6cb17 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd3197499 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfa44db48 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x00142de4 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x073b24e0 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b634c33 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0dab34aa media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0f18e1c6 __media_pipeline_entity_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x152959e9 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18fec448 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c6e7eb9 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21916b6f media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x242721f5 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2a017b62 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2e3e222c media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38978641 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3d1737f7 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56c2e0ad media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56eecd7c media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x59a64b81 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60cad534 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65034f92 media_device_unregister_entity_notify EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65dd67e0 media_pipeline_entity_iter_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x690be3e6 __media_pipeline_pad_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c8863de media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x784c3b2d media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x78af77e3 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d630eea media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x800246c2 media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84ad301a media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x896e3dbe media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9187895e media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94a4a48e __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95b6fefb media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c769c0f media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa3e20958 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa5df900d media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6de8785 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa7003ab8 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabd6cb3d media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb246b4eb __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb4dce5a media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbbf3d931 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbce914fd media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe3e681e media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf35c315 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0103f5d media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd5d61dc2 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdabdc176 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb6f8125 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe38195f5 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x71a5cd50 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x72e7c2bf media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x75951256 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7e8281fd media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82a7b581 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84690f28 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9aa3400b __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9adcbac9 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d81825f __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa2b3592d media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa5f0ccc6 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xab2029f1 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac571c45 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xacbce6a7 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae37d052 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4e0b016 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbacf8a92 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc338e6b6 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc510eb9a __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc7f9b8ee __media_pipeline_pad_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcce13bf7 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd04fd73 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd1c83bac media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd2599d7a media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd3371694 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd468c21e media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd49caae2 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd725d2d0 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd81f6c62 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda85c569 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe14cdc75 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe48fd149 media_request_object_complete EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe758433d media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7dccb1e media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe8bbb72f media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4cfe31b media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf58c3a67 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd934569 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x68702b60 dst_attach -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0xc483a388 dst_ca_attach -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa94d9519 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xae91de2c ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1ce76558 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x232faa63 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x63bf2969 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x648d57ce mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a3d77cd mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9ce11603 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa15145a8 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3440dbf mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xac483400 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xadf42dbc mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcd053043 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda525867 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb2e3f29 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdbf447d2 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xea58ca22 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xedc13e21 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee38e631 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfa03767d mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfbef9958 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1a9a3621 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2251e14c saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31ecff09 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39de9abd saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x65dafc0c saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6edd2ff6 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7642e741 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77458835 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x93d5e2fc saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e145b11 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7feab9f saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4e947d8 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb773be08 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf86a353 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc34b0da7 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9a4ebb4 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe6433b8c saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbcf3ff4 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfbdf7e9b saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1323b8cc ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x17caf72e ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x44a961be ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf2632507 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4101730 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd2e5f97 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff09075a media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff1a8426 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfffa0a11 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xe35aa208 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0xb557fba6 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xdeb4bfc3 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xe632fb2a ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d87a9a9 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x249558bb mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x28ebc1d1 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3553e5a3 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x68269a77 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x713b07b0 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x751e5ed4 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8169be32 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x88681cff mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x911a869e mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9847447e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9d4a8908 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa23fd255 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb24ceaf9 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc5e460c7 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf452ca0 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe923e33e mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf9ff1d2d mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfc60786b mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x00d9cf35 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04723f2a saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0bbd0dc6 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0c0dbe28 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1d026981 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x38f566e5 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x473c8c9b saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x63fed32b saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6fc19723 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x96895a31 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x977c523f saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c21f875 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9e449215 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xac975e03 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb46d3e29 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc6a07f4 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcfcb9b5d saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe0a20d3f saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe524e4eb saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x35184831 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x384ab084 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x56d09b1e ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6810b24f ttpci_budget_deinit EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7fe65120 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8434a723 ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xaae8cd54 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd7751aff ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x4d9aacb2 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7e707b6b mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xab061f9c mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xc8e1245b mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xea3b8c82 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0632088e vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0d02fb7e vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x77792cec vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8f6c041c vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x913a57b9 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa935f08d vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xe0b379ec vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xfa4ff669 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9fd5b026 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd1a01d84 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf560de72 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x205af8c1 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x5a36f6b8 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x698ca7fa mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x883402d1 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9391f53d mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x19d6fd4c vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x3abea722 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x3ee75e21 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x49d03f17 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x6479b6e0 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7a17f17f vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xd839906a vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xe2b193eb vpu_mapping_dm_addr EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x68d9cf89 rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x1c50b692 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x4916bde8 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x4df92978 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7f04c489 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x82dc2f81 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xa6bb29e3 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xbdfc6229 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0xaa25550f rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x2fcc58ac vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x4d22f425 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x5bdf7f29 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7f1c092d vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x936dae5b vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9b594b1d vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc6d64555 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1ab877e0 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2852a951 xvip_clr_or_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32a020d5 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x57b59e91 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x58b3bb5f xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x64c7f15c xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x77015ee3 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xab4efb52 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6b5ef495 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa5660af9 xvip_clr_and_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd277c5ab xvip_cleanup_resources EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf044f67c xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe20c6139 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf19714f4 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf217eced 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 0x55b5724b xvtc_of_get EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4113520f radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa966704c radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1ee0fba1 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x21728be0 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3f636d55 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x85ccbed7 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdf896ab4 si470x_start -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00e50490 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x06a90d74 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d69e4bb ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0fbebe3f ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x19341c22 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1bd9ecc3 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xe62555b9 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x78b0bb09 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd08cb685 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1d8a27db si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6de4e16d si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa195c9f1 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb47a6e75 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xeb13c0b4 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a80a531 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x180a440f devm_rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x367d8a1c rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3fdc7f7a ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x57b0990d rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6b717cca rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x82bdea62 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90e71887 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xab4bda5b rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcc82adc6 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd744cd67 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdefdc367 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42769db1 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x46609179 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x46b04806 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x58c53b37 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5f43ce48 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65e749a0 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6aed7828 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7209e7ce ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86ff4623 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x87e07210 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9ebee7c1 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb85215dc rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc95f457f ir_raw_event_store_with_filter EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1bc9681 rc_map_get EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7648541 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf033d475 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfb0d8841 rc_register_device -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x7926cdb5 fc0011_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x8c124647 fc0012_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xf6816df4 fc0013_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0xe2573af7 max2165_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xb906d390 mc44s803_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x54ba9129 mt2060_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xe7c805a1 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x9933ffec microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x49260321 mt2131_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x46ba4f44 mt2266_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xf5a7dee8 mxl5005s_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0d0ebbca mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0xebac1c40 qt1010_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x429c9d90 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x04c7891e tda18218_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x19a8be7a tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7c01aecc tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x05dc9e7e tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7a3d4abf tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xc9e832bd tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x60b52220 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xefc2d00a tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xc4eb4b21 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd92e198a tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xc91fe969 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0x888df240 xc2028_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x907ce581 xc4000_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xacd6cb3a xc5000_attach +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xee44b854 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf115f3b5 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfce8a7a2 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0xa9c24629 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x77610835 fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x856c0c35 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x25768c7a max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x1529e40e mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0xe57d2305 mt2060_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x4be7323f mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb9bb21a3 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xf8e1b10d mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x2a98af09 mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xcefb5a35 mxl5005s_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xc4ac14f1 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x878efc0d qt1010_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xcf122101 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x50fa67fe tda18218_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd1021523 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x630a1f1d tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x219ab830 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x971ddc06 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x2a3940b3 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x39e2e769 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8364502e tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3aff6b84 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd4552c20 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9379beb3 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0xc79349af xc2028_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x4a45a928 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x8014acce xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x13fc78f1 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x29fd1e9c cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2f16d9ec cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b470fc4 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c5c4164 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c5d8e6d cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59cbfbf2 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x703a0b2d cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x70864f2e cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7365a6d7 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7ab2c2c6 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x84ac5da5 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8831a237 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8a2a3ffc cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9daf4011 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb0d93e4e cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb16c7d45 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbcb9dcd5 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd30f3784 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd57681ab cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xd4f899bb mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x515ba323 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26903ac9 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x28b2a115 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x29712d71 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3bdbd26e em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4287ed18 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x449ed738 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a2954e9 em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4b36e61b em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5dc2173c em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x07e838b4 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x243f5881 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2d02f066 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3173a6f3 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3aaf4db5 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c6a71bc cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x40c9ddbb cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x417aa664 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x50a200b0 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x52035da9 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x54819fb6 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c51f85c cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7b51237d cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x87f51e63 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa2ec7036 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa2ffa3d2 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb8f595e9 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd00127eb cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef218a18 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf7e3ff40 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xdd054b25 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x929ed96b mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x059b7278 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0be05630 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2482e604 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x28c009af em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3684b2ef em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4b8e96b5 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4ce75ab5 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x57e71d58 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x58651e7c em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x633c80f4 em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x78bd38be em28xx_init_usb_xfer EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x82f502e1 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x890f88e9 em28xx_alloc_urbs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9d45c825 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb76400cc em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9d4b529 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc7380dd2 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcb5bacbb em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd309d75d em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd32ce533 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf76792fc em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x063cdc17 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3ee9de75 __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4016becc __v4l2_async_nf_add_i2c -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa4b2b2fe v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xbed106dd __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb3b7ab2d em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc56417e0 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd547dc9e em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd9ac8a96 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdce91f47 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe64d0941 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x653eb3d7 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8ec9a1d1 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa8b4d7b7 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xbb1b64ef __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc97fd2ea __v4l2_async_nf_add_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -14086,20 +14105,20 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x346e5f6a v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7292b0bc v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xcab05347 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0e41110c v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x263a5e5d v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x594e23ab v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x31f3d9b2 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbd13f611 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc244ed49 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0fcfab56 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x418d209c v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5c7d445f v4l2_fwnode_put_link EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x76d01acd v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb411a8e1 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc86f1866 v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdbd5a4b3 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe2e13977 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf2674651 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf9539bb5 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6782fef7 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fe8af12 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9b37e15b v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb4ce9714 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc227f151 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf5deb291 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfcea9297 v4l2_async_register_subdev_sensor EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists @@ -14108,53 +14127,53 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xa24bdf6d v4l2_jpeg_parse_header EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xd8c706cb v4l2_jpeg_parse_frame_header EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xdc58b7d5 v4l2_jpeg_parse_quantization_tables -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0a09fe82 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0a35db3d v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0dcfdcf8 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11b5aa3f v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11f46c98 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x122ba7fa v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17dbd477 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1984413d v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1abdb734 v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e617ee2 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1efc4949 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f3f89ad v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2454ab28 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3026e8c2 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x432b7f68 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48180282 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4acb7a79 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5076c65a v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5bd6fa59 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d9ed242 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e28a472 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e930dc6 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6344f6ef v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c3b2928 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x70470987 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05075c1a v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x06b15045 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x084d91bc v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0a5b0bfd v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e75b312 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x121a5cae v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x129c075e v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x136e98c1 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x196c2e38 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e095941 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e70fff1 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23d33146 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3015b9ef v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x320d5758 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3648b35e v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44e60707 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4bcc6df7 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50c65c49 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65622b2f v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6819e651 v4l2_m2m_ioctl_stateless_decoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7aeb7b94 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87b01ee1 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90f01907 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x953df5ae v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98f7e951 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9dce16f0 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9fbfa007 v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaaeda795 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb09fa12e v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc1c33d8 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc279c5c4 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79eaa789 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fbdd09d v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80586ad5 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80b18faa v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88d14327 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8d1a255a v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e9918e3 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa20cf9b5 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa81adf36 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac82fc31 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb681c534 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb6fddb4a v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbddf7be2 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbf59d182 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbfe016da v4l2_m2m_ioctl_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd67eaf43 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4ce244d v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebd60bae v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc86638fd v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd357d9ab v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4f29809 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6018711 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe77292c2 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xecebbf00 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee80f25b v4l2_m2m_ctx_release EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1a99b01 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6add593 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf785b3bc v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8323e74 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf95044bc v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfae14cb8 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe671372 v4l2_m2m_ioctl_querybuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled @@ -14164,171 +14183,171 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01ba7c0a videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18b9c835 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2099e8da videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3442868a videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3694a8f8 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3cd61c7c videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3f46d96f videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64b8bda1 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6597cad0 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x754364b5 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82166f7a videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8d60d544 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9131a889 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x92314bf8 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9cf53e31 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xac6a4049 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xafb24ccc videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0b19a94 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd14645ad videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd425ed22 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd478e41a videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdff271f0 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfe4d33ed videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff07d7f0 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x04b145db videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x145af645 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7fc20924 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x02cc1a62 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0c0a0ad8 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10b6289e __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ab0027f videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x25b549b9 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x324c3c64 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3585e6c3 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4619af24 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x552b5cb7 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x635d1dd0 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79c3887b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8642018d videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x898c48eb videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8dcc3944 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x904b1038 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e7afd59 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa7f2efdc videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xace40244 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba2c5cf1 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcc9a77c1 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcfa8686c videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd7d48b2f videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xde376a36 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf404998 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x370e35f5 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x38a85d8a videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6681d358 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 0xabea7ed4 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00205b4f __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00d0c15b v4l2_subdev_s_stream_helper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06093d42 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a5a7a6b __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0bcc097d v4l2_subdev_has_pad_interdep -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f4d16fb v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11c8f48e v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe6fa879c videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0105a1bb __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0146d194 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x033a9921 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07dd1cc6 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x086beeec v4l2_device_disconnect EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1267c4f6 __v4l2_subdev_state_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12d33eb6 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x142fff9a v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17aae81d v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1876f6b5 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x190bcf15 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1cf6ecf2 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20e6890a v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1300bcf6 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bf0fc75 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f39f83e v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2298a043 v4l2_subdev_state_get_stream_crop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2750c552 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x294d43ab v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x22a852e6 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ee9373 v4l2_event_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d275ff7 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30365827 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31bb00fe video_device_pipeline_stop EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32ba07fb v4l2_subdev_state_get_stream_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33804db1 v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34e7a133 v4l2_subdev_state_get_stream_compose -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b04bf44 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3bc92b7d v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3cb87add v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ce58b03 v4l2_subdev_routing_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ce8bcfb __video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d33e92b video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f050515 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x405b3be3 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x419d33cd v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41fd46f5 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44796c2d v4l2_subdev_set_routing -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44b3966e video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x351d97ba v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35b0faab v4l2_s_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44e55c23 v4l2_subdev_state_xlate_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5021f6d0 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x490ed98b v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b643df1 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4dc625d7 v4l2_subdev_routing_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e52f0a5 v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5328fdba v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55722d59 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56a9d5d0 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58402cd2 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ba48f96 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6266673b v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c832306 v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x514a44f6 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55b040b5 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x563ba93a v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5abc3c8d v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x665bdad6 v4l2_src_change_event_subdev_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f20b866 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x733b6ea9 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77ae7dd2 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7cfaa99d video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e9eedc0 v4l2_subdev_enable_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ecc5179 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80dc1e62 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82672c45 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x84cda380 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a7afab2 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7364c44a v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73dfad66 v4l2_subdev_s_stream_helper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x756900c8 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ee93fee v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x809301fa v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80984712 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81b78701 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82c1f99a v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x842da88c __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x864b437b __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89630c9e v4l2_subdev_set_routing_with_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c7a4827 v4l2_event_unsubscribe_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90dfaba8 v4l2_subdev_state_get_opposite_stream_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93849d4e v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96fbada5 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x914324e4 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x918247ff v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93e872ec v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9565bf24 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99e591ea v4l_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9aaecceb __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ea5403a v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1349443 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2bce6ea v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa31754f6 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3a4e8c0 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa693a4f9 __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6d43eaa v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa21a323a v4l2_subdev_get_privacy_led EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3dd8d6 __v4l2_subdev_next_active_route -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb24ef628 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc7888f3 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbcebd5ea v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd567df6 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbda26f95 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5fab343 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0d4126f v4l2_subdev_disable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb13908b8 v4l2_subdev_set_routing +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb189b77d v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb63fd955 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7b51285 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbdb5e55b v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc20e1903 v4l2_subdev_has_pad_interdep +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2fea6b7 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc4a922df v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc789399d v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf62e98b v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce595cf4 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xceadf8dd __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754c8f v4l2_subdev_routing_find_opposite_end -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3444f94 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd431588d __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7ebfd09 v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9ee2a2c v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde00c7f3 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd19dcea4 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd395592d video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5b01e16 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd72b2e6a v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7bcdde4 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd88d0317 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8bd5f1e v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdc98cffe v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd808e31 video_device_pipeline_start EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf2cf992 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf975159 __v4l2_subdev_state_alloc EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe14cd943 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1c0510d v4l2_subdev_get_privacy_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe41409aa v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe51b981e v4l2_subdev_disable_streams EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed7a0151 __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0054a45 v4l2_subdev_set_routing_with_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1f62774 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8058a02 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe83ba60f v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8515619 video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9910394 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea915170 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb6cb425 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec6e5eab v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef3c4f58 v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef861884 v4l2_device_unregister EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf664f522 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfee935e4 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6ae8513 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7fc105e __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff76573f __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x13c427ac pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5e16f197 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb965b37c pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3e008281 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa4bb35a1 pm80x_regmap_config EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe929acac pm80x_init EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02b2fecf cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0d63b576 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x14e54080 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x15ab2661 wm5110_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1949d8fa wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1f0ae858 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1f2553a9 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e1de5ed wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2c5a2f52 arizona_request_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3501187e wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x384e3153 cs47l24_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39419a43 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3c591bb2 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3de61fae arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4e5b743a wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5fa9a2ce wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x78d977fb wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7c73f818 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7dd0ea59 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x91cd59c8 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9dc2fdcd arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa8a570d4 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaeccd719 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb3082007 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5693e72d wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x64b67103 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x779d46d1 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x77ec2866 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9632634e arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x98350dea arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9d42b0d1 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xabc0b310 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb62589b8 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xba3265e4 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc04bbbe0 cs47l24_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3fee6a6 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xde916ddc wm8997_patch EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdfbe649b wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf030e14b wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe70749a3 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe8f8725c wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xea149c90 arizona_free_irq EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x051b0db1 atc260x_match_device EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x09930a7c atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2f6525ff da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x50385adb da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x57cdcf3c da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x65bb4ea3 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7636abe5 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8e0e04af da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xec60176f da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x23de70c2 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x423efbd1 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5853622f da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6cf45659 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbbd18ad1 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbe384f51 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xef722737 da9150_read_qif EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events @@ -14340,9 +14359,9 @@ EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdd800138 kempld_release_mutex EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf6b48950 kempld_read8 EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfda659dc kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5d63976e lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x72721f02 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf0a7d785 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x558a8fd4 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8c3450f8 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd6a34e4f lm3533_update EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4ad4cb44 lm3533_ctrlbank_set_max_current EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x63f379c4 lm3533_ctrlbank_set_brightness EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x75808ef6 lm3533_ctrlbank_get_brightness @@ -14350,39 +14369,39 @@ EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7c0afe92 lm3533_ctrlbank_disable EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xec3952a1 lm3533_ctrlbank_enable EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfc34f9e1 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x661b578e lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7c89a5b6 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdbe9433c lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x121cda4b lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb1baff9b lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc76ad57b lp3943_update_bits EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x153da2ad cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x29ed1e0b madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x31d44f07 cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x31d99347 cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3509c6e1 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4703fde7 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6ca23145 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x72e1520b cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x72ec8e4b cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8a5063bf cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8a5dbfff cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9285140f cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9288c84f cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa5040ff2 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa509d3b2 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb822f8c7 cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb82f2487 cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbf174291 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc9657eb3 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc968a2f3 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd1b00903 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd1bdd543 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe63112fe cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe63ccebe cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9aa3e22 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1183a0d2 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x118e7c92 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x12248ce3 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c447a1a madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3665dd5e cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x52b6bdde cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x52bb619e cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7e52496a cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7f0325a0 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8553e027 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x855e3c67 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x98751712 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9878cb52 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa1e6d5e1 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa078c6a cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaa0a502a cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb2d2fbda cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb2df279a cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc666fd2b cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc66b216b cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdb400a1e cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdb4dd65e cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9329166 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe93f4d26 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb6925ac madera_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfb17e5cb cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfb1a398b cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfd94a92b cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf1e7e6d6 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf1ea3a96 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfaa15a07 cs47l90_patch EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x06e30ed1 mc13xxx_variant_mc34708 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x14ecfbb9 mc13xxx_variant_mc13783 EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2aa614cf mc13xxx_adc_do_conversion @@ -14390,128 +14409,128 @@ EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8aadb74e mc13xxx_common_exit EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x950fc878 mc13xxx_common_init EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0da2e264 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x15bb0603 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x169b9d80 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x336b8509 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5bdb8eb9 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7d23f823 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x889360d5 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8c84c569 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb1121595 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb80bdc18 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbf6529c0 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe509517a pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x5cc14445 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x77313d97 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x13203221 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x49b3393a pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6e6aef5f pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc397611d pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdb7b5752 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0454d58d pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x120b2199 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x16ad2446 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1e11c5e5 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2e6ea34a pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a15939e pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x74d1c0da pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x805cc8af pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9186f1a7 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x994813f0 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdce4b8f4 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf56fbb04 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x11b5ab54 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x92586e0a pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x33b3d6ec pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x65ccf6ac pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x75f2ea10 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa6a41db8 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe18e7d21 pcf50633_gpio_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x0e5eb0a0 devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xeecaf484 rave_sp_exec EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x48618444 rk8xx_probe -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x9cde0f63 rk8xx_shutdown -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xb51d77f1 rk8xx_resume -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xbd61321f rk8xx_suspend -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00749754 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x06ac8541 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d09b003 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0e0d14fa si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18906b11 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d978b34 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30f4b723 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34e51dd5 si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c8a3e2f si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e394f94 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x549680db si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64481766 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69b56139 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6fe0debe si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x729d5179 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x77145951 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ae8fdbf si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8ce68fd7 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8fc59d55 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa43c5026 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb448c7bf si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb921a36c si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd6db259 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc242eb0f si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2555543 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc5fad72d si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcdf62ceb si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xda7d2f54 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc0ffb1e si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde63673f si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe192b6af si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec5e8d4d si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xecdaa101 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xedfeb189 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x113612de rk8xx_suspend +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x83ba768b rk8xx_probe +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xa200ee9a rk8xx_shutdown +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xdcff38f9 rk8xx_resume +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00f28949 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0fbea7fe si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x176ba746 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1af8c5c5 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23f51b01 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24b3fb06 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3216ad18 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38583dcf si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b3b1d78 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b380854 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50a6e488 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x51393757 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x560f6f93 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58b29ac4 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x597b334d si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a18a2bb si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6723d940 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70a6e700 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x728be29a si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x78549f8b si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c904a33 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f7d9196 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80262780 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x82db61da si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x933ff2d1 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9464e18c si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a4efe1c si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cf1a162 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa414055e si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaabb8dca devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3072e47 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc74544c4 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd81f64c8 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4061b89 si476x_core_stop EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x962ba25e ssbi_write EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x96431ab8 ssbi_read -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x32ca1d63 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x8d440ae7 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x6a23eeb8 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xb9031dab stmfx_function_enable EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0dd79556 am335x_tsc_se_clr EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x77446004 am335x_tsc_se_set_once EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x91142790 am335x_tsc_se_adc_done EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdb510f8c am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x27098459 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x60785895 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6b8c9170 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x33382947 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x599c4317 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd8446c30 tps65218_set_bits EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x6e5c4639 tps6594_is_volatile_reg EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xd3823b72 tps6594_device_init -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x22a81eed alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x37d701c3 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x40633ca1 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x62533109 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x98ffc069 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa387dbd4 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa6d20140 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0b33a950 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2ec0ec4c rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x37e67670 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x38547d72 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x453acdc0 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4dddb87b rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x65b860e0 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6d899899 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x77683b40 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8d43f878 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x93f9b1ab rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x97e5e7b9 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa3ce3a0c rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb3a7fc30 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb96574b0 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc18689e4 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc37916bc rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xca36723b rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd3461079 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd69afbaf rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd9156332 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe98d72ae rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf1237c4e rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf30c9610 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0e0c3e50 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x22a33aa4 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x238799e1 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x28a80a88 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4210174f rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4518034c rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x66d8f5b0 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x82e6f6ab rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa649d7a4 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa760ca38 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb15f015a rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdaf5498d rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xef867123 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4bf558d1 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6747aacf cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x83a97d07 cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x942ae0f3 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0f6c7c93 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6cff2f89 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x70e93a58 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x94fe4219 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x99449b6f alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9bafaeae alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdb9e6f60 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x05ab4bfe rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0be43244 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1f41852d rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1fbc5938 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d418d28 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x42dc13fc rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x61e2b6ab rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x666dbff9 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7414e1df rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x824ee05f rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x832bfe2c rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90726782 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x99b844f1 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b4963dd rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d60f934 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa8b9628d rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9124c39 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaddcfb3a rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb72b404b rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbaabec2c rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd25d77e3 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xda6d7753 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe0b6c794 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf8ead2db rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x062300f5 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1fb55122 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x647f9356 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x72c0430e rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9f3a2566 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb2ac1f35 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbdf35a67 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc0dbd9c9 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcbba8536 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xdb10fbde rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe0bdf7c5 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf404e29e rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf9122ad9 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0e4f7fd4 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa5c864df cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb206617d cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xdf1dda51 cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14533,49 +14552,49 @@ EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb76e5368 enclosure_component_alloc EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdce084bb enclosure_for_each_device EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfe0f3972 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x16c8d540 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x297ace96 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3c43a5a7 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4b9c9bbd lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa24a7242 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc428803f lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xce85fe65 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe32d3f1c lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xd82c051f devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3700e155 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7d6c7d80 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa5123a4d lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xac759d6e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbd52e135 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc1ff461d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdbc274da lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xffa7b84d lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x82e47e4b devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x885f81e1 st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xbad5b405 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x12b0877c uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xbb3c6ff7 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc5dee0c1 uacce_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x3483e2c1 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xbcabb800 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xcfe72e4b dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xdc1332f6 renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xf3de56c6 renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x038de2cd tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x31db96d4 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0697b08b uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1106b69e uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x59c7a7d4 uacce_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x1b11395c dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xc82e7f9d dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xe1dc4ec0 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x65b66e62 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xc8dd4447 renesas_sdhi_remove EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4ca74745 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x69efaeeb tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8324a051 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x937605ae tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9c59c59b tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9f0c07fc tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa996e94e tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/most/most_core 0x194629d7 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1b6b51f7 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3a033ed2 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4161c096 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4e3e0a5b most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x5e4f2d0b most_deregister_component +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4ccb0d06 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6c00c45e tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x90bf96f7 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc0e89369 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc6b3818b tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcbd91298 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xee955ac2 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xef635564 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfb3f9b6c tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/most/most_core 0x46573b86 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4c5a30c7 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x58d04d98 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5be5344c most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5ef7e86e channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x65b08237 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x67e0eceb most_stop_channel EXPORT_SYMBOL_GPL drivers/most/most_core 0x69ebb357 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7959a321 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x897042a8 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa612a830 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbd54af02 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xcf331112 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7c0d6aff most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9cf333d2 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa9dafa56 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb9d54e7f most_register_interface EXPORT_SYMBOL_GPL drivers/most/most_core 0xe8070e4b most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf7e4327f most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf708ffdc most_submit_mbo EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x085b6ff9 cfi_cmdset_0001 EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x37724a11 cfi_cmdset_0003 EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xca6c6f87 cfi_cmdset_0200 @@ -14590,31 +14609,31 @@ EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xeefe2012 hyperbus_unregister_device EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1c4355bb onenand_release EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x62f3eea5 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x580e35a4 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x9e527f6b brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xacb03525 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xe14481f1 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x29c1b0f7 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x40599b3b brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xc139f86d brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x6187b452 denali_chip_init EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x59a526c5 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x0917ad63 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9bb10a39 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x01717f44 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x148b8ffa ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x209b00cd ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2a8e674f ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2ccc9ebe ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x382f5618 ubi_leb_write EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3e482d2c ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3f87b7e7 ubi_leb_erase EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x53bbfc94 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5d838140 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x64e39123 ubi_leb_write EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6b578ce0 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x77090279 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7bb6f212 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8415a9f2 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6eefccef ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x71e3d2b1 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x80ff06d6 ubi_leb_read_sg EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8d67f6f2 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9ad0659e ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc64ccbde ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xebbbeb14 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xec8c75e7 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa93852c1 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb3da9610 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xec34f66a ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb19dda9 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe2d6ca9 ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x019f941a mux_control_deselect EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1621b6e7 mux_control_try_select_delay @@ -14632,1496 +14651,1496 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xac79d918 mux_control_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe9678be4 mux_control_states EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x326b365c devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9b97e19d arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0db855e6 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x62a15136 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x88b9dee3 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x9db0d9ca free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa4d516fb c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd092222d unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x021104bc register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1ecd8393 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x29f05e7d unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x97c40f86 alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x044045b1 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06040195 alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x06314d4c can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x0659fb34 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x17627daa arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x15b585b3 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3d6ca042 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6fb59ed0 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x866d1299 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8ec6049e register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc3047798 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xab8d0d24 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc2d9957e register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xceedb45b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xedd8582c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03d1279e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x073544cd of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10a97670 can_dropped_invalid_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x118d2f6d can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x11ec2e84 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1492627d of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19a8acf1 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2130e1a8 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x247dcc05 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x26d2e78a can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2afe9d13 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2cf3563f can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2f19d1db can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x356a3dc8 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4f4ea561 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x58c20ac2 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5fec1be0 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x121cc63b safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19272017 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d6699e5 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x274a4e08 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x288c39dc alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2ae38361 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2e096f31 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36814330 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x447472a5 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4d8f1a19 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x58b16c87 alloc_canxl_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8cdf4208 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x987f247b alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x99649610 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9db8a2e9 alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaa66216b alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd963743 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc459343b open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc69740d7 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc6dfca16 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcf986c8d can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xddfeef02 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe1d377c9 can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe59f5128 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xef2ff04a free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x675ad8f7 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a199129 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x765eda6c register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8061b58f can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x92d99ada can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa415ebed open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6b2f272 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae1f2c65 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaefe83f5 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb5ea4726 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc59191f9 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd3641f3f can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd6d93239 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdd6db4c2 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec71b620 can_rx_offload_del EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf244e0b5 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1a1d083e m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1c05034c m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3649cbc4 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x617742c0 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x81dc3b55 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8e0cb3b9 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe22fec4a m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xecdfd31a m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0bb857b5 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf2fa3b05 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7f493b8 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfa263af5 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x02ea3c7e m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x03ad1bb2 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2490ead1 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x463cdf6e m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x524788b3 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5e75c1fb m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xaf5b399b m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfcc3569d m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x32ebe09b register_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x52e722b1 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6a786587 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcc684552 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x21e6d9a3 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xe5ecc69c ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xb03a8ce9 mt7530_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xcc7eed61 mt7530_probe_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xdef620e3 mt753x_table -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xe63c7328 mt7530_remove_common -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x27eb16a4 felix_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x3faa85dd felix_netdev_to_port -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x760bb247 felix_port_to_netdev -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x4d1f4640 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x03f75858 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x078fa4bd rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2e7436ce rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x549ca6f5 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8358854b rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x88cb0e04 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9474774a rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc7814682 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd1d26809 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdde3aa21 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf2a422b3 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf4503f2b rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0xe08ac58d ax_NS8390_reinit -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x6dce17ce arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xee5d6e1c arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x007b6f99 enetc_configure_si -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x083cdea7 enetc_get_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0d3e89a2 enetc_teardown_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0d4c8271 enetc_init_si_rings_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1641d3cf enetc_port_mac_rd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x257cd958 enetc_get_stats +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6d8faf7a alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8c6b2767 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x96712c16 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x5aa5defc lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xa2e2153c ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x35abe508 mt7530_remove_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x597d14b7 mt7530_probe_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x94c348df mt753x_table +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xdb3f5aaf mt7530_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x16a7c58f felix_port_to_netdev +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x192dc8df felix_netdev_to_port +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x27d8bd81 felix_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x27b22406 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4135c5aa rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x47009e81 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x67ae8d59 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6d22c6fb rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6f9c5752 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x75e41744 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7f947c77 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbc2af27b rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc0469de7 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc16c8cd8 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdc960d4b rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf9462a60 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x19dea80f ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x455acda3 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x4c079179 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0bdf9ee6 enetc_ioctl +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x11fbc1bc enetc_set_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x15c28788 enetc_pci_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1654b9fe enetc_configure_si +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1f506551 enetc_xmit EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x290512bd enetc_set_rss_key -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3695c952 enetc_close -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x38932f9c enetc_alloc_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3b5d8c43 enetc_clear_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x42a57c57 enetc_xdp_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4724fe24 enetc_get_si_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4a40f340 enetc_set_features -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x55ee72cd enetc_set_fs_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x59508af6 enetc_setup_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x5adc16ad enetc_reset_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x62b1c74c enetc_set_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x719a7529 enetc_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x77bd1bc2 enetc_ioctl -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x79986c3b enetc_set_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8a22f6db enetc_send_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x943ddfbc enetc_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x97875b62 enetc_alloc_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x986127c5 enetc_mm_link_state_update -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9fdead28 enetc_pci_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa1fad680 enetc_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xae18e294 enetc_port_mac_wr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb6c1a2cb enetc_setup_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xbd154d37 enetc_open -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcb26915a enetc_pci_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd223bcf8 enetc_setup_bpf -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe275325c enetc_free_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe8707e3c enetc_free_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe8bddb48 enetc_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x6b2bf596 enetc_mdio_write_c22 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x8416a370 enetc_mdio_read_c22 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xaa0f13f8 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xeaa53d71 enetc_mdio_write_c45 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xefb62958 enetc_mdio_read_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2e820b16 enetc_send_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2ee01625 enetc_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3226f063 enetc_pci_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x353e377f enetc_get_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3ce3c287 enetc_close +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4b35e92a enetc_teardown_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4f775904 enetc_setup_bpf +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x51dc245c enetc_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x5285c80a enetc_clear_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x5c2b66b7 enetc_setup_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x75a0628d enetc_alloc_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x995aae3d enetc_open +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa1f48586 enetc_set_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc019856d enetc_xdp_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc1b53ddf enetc_get_si_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc4353a59 enetc_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc4ffd650 enetc_alloc_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc64d9e35 enetc_mm_link_state_update +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xca249308 enetc_get_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcd1286a9 enetc_reset_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcd7545d4 enetc_free_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcecad0c3 enetc_free_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd47bc11b enetc_set_features +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe616c5c1 enetc_init_si_rings_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf1dc17f9 enetc_set_fs_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf7096910 enetc_setup_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfb6dfa13 enetc_port_mac_rd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xff5529ac enetc_port_mac_wr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x15b67fd8 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x22250a24 enetc_mdio_write_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x3a9c85b3 enetc_mdio_read_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xa8e73f5e enetc_mdio_write_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc1ee2f04 enetc_mdio_read_c22 EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xf68ac32d enetc_mdio_lock EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0083b116 fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x09ef3d79 fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5396ee4a fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x56d9b6da fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7aa5b625 fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x88450e01 fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb5fdd21b fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd8e729ac fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xebecd8bc fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xed544fd7 fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xf8fa31a4 fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa0ca0051 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xf486d86d i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x18d24e94 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4aed015e ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x588ba86f ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8838b1ef ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xbd0f53f1 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x005086df mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00de5140 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02a5c74f mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04bf9ffb mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x054a8624 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ada9500 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12feb02c mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x138f2e34 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14b5ee32 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e703f8 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x156a1f99 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16e6bf05 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18b7dae1 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9840fa mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26f6b088 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x279c0c84 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2883b6dc mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28dd9620 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x293899e0 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e1a8cc5 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f5bb0d1 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31e77956 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x377533c6 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37978aef mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a5924b4 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eab7c67 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43247b42 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43b527cd mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43d4f25f mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44a8d220 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45c58405 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bb64e72 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d95c28e mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50949af6 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50b93ffb mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57ebbf7c mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58029d46 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dcd2f66 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640bfec6 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x655d3e44 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x677a5927 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ba704a5 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ec918ff mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f376ac0 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7203632f mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x753998b5 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75986bd5 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75d4ea0b mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7627ef46 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76d9ce4a mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7792d0ab mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782d8524 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7877f575 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78bbf071 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79144d4f mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x793b8750 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7da81498 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7de976ef mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e67e65e mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83040a19 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x831cc1c9 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84c9ba2f mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x878f81d4 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x884fcfa2 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac665c5 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b3ab3fc mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92f0e130 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94d64352 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x359b84f2 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3fce12c1 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6112c23b fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7052dbac fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x80336740 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x9366532b fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x98db1494 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa1bde747 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb885ebb2 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xbd8b177e fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc3de1e7d fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xb145b670 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xb76cda3c i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2b82d254 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6ceb89f5 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe4764127 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xea0bd3f7 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xfc2afb82 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02b61cc5 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x050c2d59 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05eac505 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x089b3375 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x098ffe8d mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d6ff763 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d727b11 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12348a86 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1681882e mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x178dcb23 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17fe7de7 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18b19bb2 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1926adc8 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x197cecc3 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23e40a67 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26da79e8 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ded3379 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30414714 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32cc451d mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35326e97 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36520d97 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x366a6539 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a534183 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b5c82f4 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b7dc8d3 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c4cc164 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3de86f2b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f7706f6 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ff8e9d1 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40304aee mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42193334 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4255d5f7 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43872fbe mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46253caa mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47a1843e mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48a7ca96 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x499c8468 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cf3da82 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dcf5e0c mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ee5c19d mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50475bc0 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52c7a16f mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x541d72c7 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55eba98f mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cd5f053 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6402526b mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x659e77c6 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65d1945c mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b485f2a mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b627c7d mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77bcae93 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c057858 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cfbf7e5 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7eb7deb3 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fcaa49c mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80709f4e mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8343b056 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85401cd0 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x869317c9 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8799b4dc mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f80ca85 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fa64b75 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x910140b3 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9360812a mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93b12511 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93fb3b16 __mlx4_cmd EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x979920d6 mlx4_put_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97b2ef13 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x980a4b8e mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98760cfd mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a897983 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c1f396b mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ddbf01e mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dfd1032 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f45dbef mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1787e6a mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3b3e524 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4c71728 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa68f5862 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa83eb5f1 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaac851ec mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1db015c mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3f2a61b mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcfc23d1 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc06a8b4f mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc14600d6 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc153925b __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc71499d0 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7b6fc25 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9974e2d mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc9a27a9 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce5cc55d mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfdf75ed mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd01c04b5 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd190b9ea mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd28122b7 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd28c9336 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3253a78 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5b69066 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda19b5a4 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd886812 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe27cea06 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3c7ac70 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe402d0af mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe592c47d mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6826e55 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6b1b7d0 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe78c0513 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe88ca14a mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed7bd4d8 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee252cbe mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf31ff394 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf60155f1 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf69e60dc mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf910eae5 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9846106 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9c2acfb mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb495b0 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd4fcebd mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff31a48a mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a70755 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0367e39e mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98dfff9e mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a865fb3 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bde8803 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e4848a3 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f22e715 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0ef8720 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1c56181 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6885807 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa786d620 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa93a508c mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa96427f8 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3829a1 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf29306e mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1148a61 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb268e63d mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5b22479 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6e5d176 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb776771d mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb892d9a5 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc266c28d mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc938e5fd mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc98f97ef mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca759b4e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca8b783b mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd837b82 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcecd8a31 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd296f483 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2e435ec mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3232e5f mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd354d622 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd603c78b mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6f7f042 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7319acf mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd96a04e6 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdecd6a36 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf7559a3 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5935d31 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb481c1a mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedc65b92 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0f0f041 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2c950e3 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2e5dc97 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3715325 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf42ccb2c mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf456d3ea mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6ffeea5 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7f68214 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8559cf7 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8bf5510 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc3d251 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc8338e mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc7af2c6 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd4c8db4 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfde0519d mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe77879b mlx4_cq_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08e0c20a mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b1f001d mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c283de0 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e2586f2 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10fcfa60 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x163baf08 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x179e68ab mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19ff50dd mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c9e7254 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21df1578 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2394d402 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x285e812f mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x297f2f2e mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31b437ec mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35be2cd7 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38cb65f5 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a9499a3 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b719bf6 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fdb3eed mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42e24a8f mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4709acbe mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x470c2cdd mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c0a71e mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dc41b55 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x501617f6 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5446151d mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x563be1b1 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ca7105d mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6006a67c mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62f66f93 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65cd2209 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6645fb48 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa9571f mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c6594d3 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x710b33ed mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78d04c72 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x798c1b96 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x818ebcf4 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09e64260 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b5473f8 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f94b771 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16117c0c mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x172c4327 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1851a829 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1be0215b mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21d69915 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26dab9af mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36832a44 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x399d388b mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b53f663 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d986296 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41d8cdbb mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4689d1d1 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46b88ff8 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47759049 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x479927e1 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x488ac365 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c987b70 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4efeb089 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506a5e3f mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50de9819 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x512077e3 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x514f5c5a mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57db082c mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cea2026 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d4be461 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61ad25d0 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6306cc18 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6453ab0f mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e6d89f mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bfadcf6 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70e987fc mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78508f27 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d1c4b80 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f88f6f1 mlx5_query_port_ptys EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83711c12 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x873a6587 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x882666be mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d02eb44 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e10bd24 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e4d8451 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f6f549c mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98a39d0a mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c87e8c2 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9de80ad3 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa539b626 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa832a44e mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabacb6d4 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb97d34da mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbccf091b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd863135 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf005716 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6d06f1e mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca9a1b62 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc901de1 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6a1c783 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9a80bd1 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb1df950 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2e17b48 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe46042ce mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf2821a mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5ef2722 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x062efbc4 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb669f653 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd2541475 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd9f7310a ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82bb07c6 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841fb2aa mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87ab513a mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x884abd25 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93c00b37 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9746ff01 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fb42057 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4ab4770 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab360637 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad5bc925 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad848789 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadae3fbb mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae93b5a5 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb50082fa mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd416a47 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc02785e4 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc15f7982 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1cca2ac mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc398f67e mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5930cd7 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9e804c6 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd01fd8bb mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0301cca mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd34d920b mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc11ef41 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfe5970f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe67af3c0 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed1107b1 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8c67022 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfda8e521 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0b04aa26 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb1f78679 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xce492266 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe7485b71 ks8851_remove_common EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x37e25ec7 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4be2f862 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x85da897b devm_regmap_init_encx24j600 -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14f75eb6 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1794b76e __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x182fa5f0 ocelot_port_configure_serdes -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1864343f ocelot_port_set_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bd782cb __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a89dcc4 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f812ee2 ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34882202 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3837c02b ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40f43e10 ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x489e2306 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x491e8324 ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5453cb55 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x609d4021 ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65eca399 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66020a58 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d470591 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78a86b82 ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f65b698 ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8314f3da ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87039926 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x877c4a99 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88d5c027 ocelot_phylink_mac_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x893fa5c0 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cd942f8 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9215c688 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94628e3a ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x965aa173 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9aeb9d5b ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d2f6542 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2255094 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa84fc7aa ocelot_port_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad36f06b ocelot_mm_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad8b938f ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf65d8c4 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1042cae ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7da5d39 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2ecffd3 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc34d6aac ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb54b29a ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc98a0c5 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd39aeadd ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd547e7cd ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9c8d162 ocelot_port_get_mm_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf0491444 ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x030a8dfa ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08c04de1 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b5eb23d ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1da354a7 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27888cce ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b9b596c ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fc42d72 ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36e521a6 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37e82bdf ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x384d48b6 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x389df8f8 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a1aa3c2 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c6ec97b __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5236c244 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x535ffef3 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d50dfa2 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6028ee91 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d92d7be ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71f67b8c ocelot_port_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7931705b ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x834af06e ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x874800cf ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cd34799 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e9e73b5 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f870019 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91196271 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98ca8cc7 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c87b2ef ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e42b720 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f050beb ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3f183a8 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa81f8c45 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab663873 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad69271b ocelot_port_configure_serdes +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5216eda ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb959b182 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3a9e653 ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3e0fbf7 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5c766dd __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb0cebf6 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe10c5fe0 ocelot_mm_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec74c310 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec988f96 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed9eae57 ocelot_port_get_mm_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeed02608 ocelot_port_readl EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1b69d384 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x00cdb678 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1c31e736 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2e605024 stmmac_dvr_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5c7eaf3e stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x64d94b66 stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa29c5c27 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb9086f53 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc387fecd stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1393680b stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1c6d5ad0 stmmac_pltfr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x209e8745 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2e0c8e76 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6cc64711 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9b4d4153 devm_stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa82a8e5d stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xaa5a23a1 devm_stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xad62c1e5 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xed49bbcd stmmac_pltfr_remove_no_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xed8c57e3 stmmac_pltfr_exit -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0d2f2ca7 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8a1e577b w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x8a7fe3b8 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf50a0ad6 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x80f31e05 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2c6970db ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x42fa1a8e ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6c0adbb9 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xa13ee0cf ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdb62a8cf ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0xb5700e2b macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x07d57a60 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7a2ac16b macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9e32cc54 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xeaeb4c8f macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xa007b9fb mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x4c6771c6 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf08b89e4 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf29cd3b4 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfd7c236f stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x08967ec9 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2dc5681d stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x45e684e9 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x59b72788 stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa3884711 stmmac_pltfr_exit +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb8d78200 devm_stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xba98204f devm_stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc93a9c03 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xccac789d stmmac_pltfr_remove_no_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdac269af stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf2a47123 stmmac_pltfr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1330cbe6 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x6860c232 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x925ddfb3 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd4768c22 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0xfcf73192 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x21ca0ef6 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8e845f80 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb0629864 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf1c288c5 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf2533ea9 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0x96d50a9b macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6bebfa49 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x71de3172 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb769e485 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xeed615cf macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x7ef71922 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x36f711e1 mdio_mux_init EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0x68c478de devm_mdio_regmap_register -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-lynx 0xebecd607 lynx_pcs_create_fwnode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x17b18cec xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5514966d xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x573f0ab8 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6dc48c5e xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x70d517c4 xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0x3a68870b devm_mdio_regmap_register +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-lynx 0xbd09ae77 lynx_pcs_create_fwnode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x13dc53a4 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x2f20e42e xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x39d2b97a xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8937caa2 xpcs_get_an_mode EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b430bc5 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xddcf4c25 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0000b738 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x05606370 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1b0ac6f5 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24b3760d bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28810617 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x330f2897 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4199d7c6 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4719da78 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51a23c78 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x56a2fdf5 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58da4f36 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x661456dd bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6d5ceca5 bcm_phy_led_brightness_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ebdefd6 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x742df932 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x795a5522 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7db30f5e bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83211322 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f136338 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8f9878cf bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x911d31a3 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x92169936 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93c75bca __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9a585c3f bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b6053b6 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb1f3ab0f xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xfbfcb31b xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x01f71549 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d83656e bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e95a68d bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18507549 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1bdfac9c bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x22055508 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2567e944 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x26ff81aa bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29fae510 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2acdd4ab bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x367df32b __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44ad925c bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5343b15a __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x546c7ca9 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5714cae0 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b2a8467 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x663702ee bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b9b470b __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x711a48cb bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x785ce717 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x81308ebc bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x84c3f811 bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8d492ec5 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x90744997 bcm_phy_read_exp EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9e0acf2 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbe6377af bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc22af151 bcm_phy_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcae5b949 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccbb249b bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd0ca4385 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd67ba083 bcm_phy_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd86d4bf9 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd50f1fb bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe102a4a5 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6120f4d bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff30da12 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x785cd695 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2338d1c bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8acbfc6 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7b54be2 bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8c94eb8 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcaf06f82 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd38063a4 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd5fcc4f4 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdad274af bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0ae73ba bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe43d66de bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb3b0ef9 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xee3d057a bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfafe4b63 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x18e378b4 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x885f0c57 bcm_ptp_probe EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xf4ddc0ee bcm_ptp_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0456b4f2 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1463763a phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1bdc0f0b phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x362e4885 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3abe6fe5 phylink_validate_mask_caps EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4278d56a phylink_expects_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x60fe6113 phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6ee0516a phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x94299178 phylink_decode_usxgmii_word -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x945558c1 phylink_fwnode_phy_connect -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9467dbc3 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95171c96 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9616a255 phylink_ethtool_ksettings_get EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9b652b6e phylink_resolve_c73 EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa16449b4 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa3fd703e phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaeab23a5 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb1b3f6ed phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb993eb88 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb552114b phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb8e562c5 phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc2ee989c phylink_create -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd04d4106 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2ef6a40 phylink_mii_ioctl EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe6b3f7b3 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x3f72b3f9 lan87xx_read_status -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x407da7f7 smsc_phy_get_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x5fad396a smsc_phy_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x651d0ceb smsc_phy_probe -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x73f79f15 smsc_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x917ce814 smsc_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xd9235e9f smsc_phy_set_tunable -EXPORT_SYMBOL_GPL drivers/net/tap 0x1cabb642 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x21a8c37b tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x226e0d21 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x2acecef1 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x309bc18c tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x4dec2f57 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x4ff4a375 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xd6901ec5 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xfc854dba tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x309264b8 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x69818772 usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x969f28db usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb9c8e059 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbc5586a3 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd4324f29 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe487db8d usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x191a4910 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1d042f28 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x28051f8c cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6bfa6829 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6c8629e1 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fa4edf9 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8c0ed310 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcf996eae cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdde9df44 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe42253d2 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf636fb97 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x67382d6f rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0abf5949 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x820285ef rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x96c2400b rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb50dd51c rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc8b87cb2 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf758ade0 rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x13d23382 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24c8e527 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x256f700c usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x270d8ecf usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x34d4cb5a usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38d85906 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x426cd53e usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4470676e usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c39c700 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d2f9d5f usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d54b7e6 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6197bc33 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x649368a4 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b6ae0e1 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x75b54efc usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x795bb3c9 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8899afdb usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93df6075 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94b5b1c7 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x990dba5e usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9fa89816 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa1f47e94 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7345741 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa95c8f9e usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb210351e usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbbc7170 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc05d2e11 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3a82369 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5be2a8d usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe5b161f1 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec3509f2 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf2b77861 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5339d54 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfc77ae7c usbnet_open -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x0183bfed vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x82fc584f vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb2a01ecf vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd863246f vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x86b5b957 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d9705ec il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31d1721b _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x390fe6cf il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58797f07 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9db509d4 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xfee9bff6 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x03d90bae smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x158cf6f0 lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x1b4bd5e4 smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x308fd714 smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x467f2beb smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x8cfbd9ff smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xa40d12d8 smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/tap 0x055a6d06 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x2746e346 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x2b0126ed tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x3a893284 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x3bd4ced4 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x4adce368 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x7a070c3a tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xaeb41db4 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xd715a54c tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2ef19b33 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x534f315b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x77c118a8 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7808c814 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xafe3e331 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd2e6f78a usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd7f79139 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x212ca655 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3833fd74 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3841cefc cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3b5bdefa cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3fecb621 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x452f0e3d cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x583f77af cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x69e8a390 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x74fef60c cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7c2ae4eb cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x96d9b03e cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x7770d72c rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x39911e4f rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x51452679 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x855b7536 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb78e112c generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdc81ae4c rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeeb31662 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01a4dc1e usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09c582c2 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e00f4f0 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x208ed5fd usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x230a67c9 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x26b7d6a0 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x26d207b0 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x29eb4727 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2cff3443 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30bde22c usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x35c799f7 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4092b3c5 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4dc789cc usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x513de8b3 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59861d4d usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b81d43f usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f0f19d7 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5fdf3b3d usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a85526f usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6dbbbd29 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b70e2a6 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8baadc91 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96f7a5f8 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2587aab usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbf3646c6 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5932a7a usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6708fce usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9f68661 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdeb136d1 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdecc170f usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe17339e8 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeb76c119 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf8a4f3f0 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfcb32b7c usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x43de65a1 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x79698178 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xbf628069 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xff7ff063 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x537cabd4 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dc7c84c _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a3eff65 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd274031 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde6a0ae2 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe11bf15 il_mac_tx_last_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3140d84d iwl_fw_lookup_cmd_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xccfc78e8 iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1445cc36 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3dcfdea7 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5f24fdc9 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7a0fff5d p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7c8c8cb1 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc31ed7ff p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdd680c3a p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xde27fccc p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe00fba16 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x07e0ad4b lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x08676078 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x13f750e3 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1ee8fe45 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2a5da9e6 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6e4a76a8 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x804d0222 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x95c12c49 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9e3e1410 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbfa47bdb lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc71d1129 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xda968612 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdd23ba77 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe2ad5c8c lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3eb3142e p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x607c55e8 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x653a4653 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7ab12a6d p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x8815dc69 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xae3020ec p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xaf41b00b p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe0eee39d p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe7bbab16 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2cac200f lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4a274fce lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4f44a716 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fafe565 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6438976c lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x70c0df6a lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7980d14b lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fe86c8a lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x893a0536 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x905bf68f lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9553d33d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa3a1467a lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaf197f7b __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xafc9394a lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbaf78361 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcbdf8485 lbs_start_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf9ea06dc lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfdbcfae1 lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0fda1482 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1964d94f lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3f808cd6 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x887d11e5 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8ad72c01 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xabc69afe lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xafcb65a3 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc43a47b9 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x01e72daa lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0b2a1af7 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3616b2a9 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x44d3f499 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x8eacc439 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa8a16557 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb86fbb1b lbtf_rx EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0b323e28 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x128f0464 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2b534ac6 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2e35f527 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x378f2827 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3b2ed44c mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x432bc612 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4af7f4c5 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56e17d4d mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5cec6be3 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6b4a5361 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x73e20a77 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x76ddcff3 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ea993ff mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9af6ec85 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa54a6717 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa8ab3e06 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc22e6ecc mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc606d6df mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe5a32844 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0469a98a _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x06909bf0 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3235c906 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x32a4e82e mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x394dc172 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3b7b3b25 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3e20b465 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x402f846a mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x409009ce mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x41e59588 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43865ba3 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x52fe1534 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x57180788 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6820d7dc mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7637bfc6 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8be64c73 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x951d9a36 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc242c95a mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc4fcd5a1 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xccf8d204 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcfe22a0b mwifiex_del_virtual_intf EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdb2782cb mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe14bf92e mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xee0d10f9 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfac2cda4 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfb207b51 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x000cb012 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xebedfae1 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xee29a90d mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeec932a5 mwifiex_multi_chan_resync EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0100b730 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x049ae2af mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08dad0c6 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c9f208c mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0fa82ab1 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10354dde __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1079b023 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x11bd4ae8 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x127d3114 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15c595f8 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1732a7b1 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x173c08a1 mt76_get_min_avg_rssi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bfe2299 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19d9f96d mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d1bdd1d mt76_tx_status_lock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dafdd38 mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2e2ff000 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3489edf8 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34cab1ce __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35e78ffc mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x394b67ad mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x398dc625 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x399845ca mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45642159 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b2df8f6 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d03fba1 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ec2053d mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f552290 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4fd45a90 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5340bc8e mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x593053a1 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c5c3d68 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fe4804c mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x214dacd2 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x258ce16c mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29211eea mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ba10295 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2beaca96 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c255e91 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d3210fe mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3377be6a mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35382908 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35b69245 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a504e27 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d4f4646 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d5f4de7 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3da8cf37 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e03e255 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4208727a mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x421a6efb mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x428a769a mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47c1e71f mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47c765ae __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48c2202b mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4af730db mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51f67b68 mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x527f093c mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61791adb mt76_get_rate_power_limits EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62d13b0e __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65d2a857 mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x679a0747 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67d52713 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e3dc129 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6fe9cbd5 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x723dd7ea __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77f34c95 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e644bbd mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64300a7b mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x678b9bfe mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69f80da5 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6add4586 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ca9951f mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d7ec9a7 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74a22595 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7baa1876 mt76_get_rxwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84943463 mt76_free_pending_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bd51208 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8df5ead0 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f166eb2 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f276ce5 mt76_create_page_pool -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f66bee0 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97615f25 mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98e8b7be mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x999fc032 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d3f2a5d mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e8acd84 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f403037 mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa02772df __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa231d23a mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4da711a mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6b0b632 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa2131fb mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa84fc31 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8232dfb6 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x862c32a3 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89d956ad __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f5ed91d mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9339933f mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94944d70 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa253ee3e mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6e1e268 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7310deb mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa7b23daf mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab567ff6 mt76_update_survey EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0d0a17f mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3b0f7d7 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb98f6648 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9da5174 mt76_dma_wed_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe38c598 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc282a05b mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3fa80a1 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac132d29 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xafa3fd03 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0b3305d mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5e53e6a mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb97e563c __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9e16a4f mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xba4c891e mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbaa48a97 mt76_create_page_pool +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbbd92817 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc2ed76a mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc9dcba9 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf02a86b mt76_tx_status_unlock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6659b81 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc866c2d3 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbb6a3df mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc295801 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd004f95e mt76_ethtool_page_pool_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd069ce4f mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd2b1c600 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd32233ee mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd41ddf62 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd60b6148 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb320921 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc12631f mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde98a576 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdec4a4c8 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0179cb2 __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1341238 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe32b8248 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb6be633 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbdd81af mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xccff26db __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5032991 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd543730e __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd73bd886 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb4b91cb mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdce20e9b mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcfc268d mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdcff76e4 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdde14dcf mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3622bcc mt76_dma_wed_setup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe48eb402 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7565066 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7731de9 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe77a754c mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8357caa mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeac1b9e0 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec6fa1ef mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xecb58b96 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeeb03412 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf057596d mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3f952e4 mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfd95e515 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfeefa385 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x06f3325b mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x07ccbd49 mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x09821e8c mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe60a6c08 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe61f9c27 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7d1eab6 mt76_ethtool_page_pool_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec1a1a22 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeceb49ea mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee31e8d7 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf022e234 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf46fc32b mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5080b16 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf728cad8 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x006dda9f mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x051daa41 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0781f7df mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0796e9ef mt76_connac_tx_complete_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a25337f mt76_connac_gen_ppe_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f7a6b78 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11f62f7d mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17acb16a mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18b7a944 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b4bef5f mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b828edc mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1e9654d3 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2026dc33 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2166263a mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x21a032d6 mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3158f07b mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x328b64e4 mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x32b35541 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34b0d166 mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3584bb10 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x377be377 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x403a2fcc mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46ec8a2b mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x486d0159 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4da4f193 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x558a8a45 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58e0abed mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5937f729 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5ac3e947 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5ccc7dcd mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d57f5f3 mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d992598 mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x68b36151 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x710c1eaa mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72be99a4 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e9fe647 mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x80701ac6 mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81b4fedf mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82732429 mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82cf347f mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x83177b32 mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x852a16a5 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8687467c mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87cb80ba mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x890cef97 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8aaace9d mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8aeb0f55 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d9bfc6d mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e343375 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f2d790e mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x116c0698 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1bece3d7 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1fb2baa6 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x20491e24 mt76_connac_get_phy_mode_ext +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x22476209 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29a3d28b mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2afd31f9 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2db8c77a mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f3791de mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b344981 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x41da8dff mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43f73d5a mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4810ecb2 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58c271c4 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5f31509e mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5fb7354b mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63208f98 mt76_connac_get_eht_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x66549338 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69e3ecfb mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ee286f3 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7050c8b9 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x734c8a86 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73d51cf3 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x763d1844 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7661e713 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7d113e33 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7d3c848e mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e4ed2a8 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e7853db mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ece8797 mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81e65229 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82668081 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87fbc549 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b7b1a85 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x901c21ca mt76_connac_txp_skb_unmap EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x940169fe mt76_connac_get_eht_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa154c4d7 mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa254d5f9 mt76_connac_get_phy_mode_ext -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa72ec646 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa9c8d35 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0d31099 __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb15b807f mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbdd5eb7a mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4778762 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc61d9362 mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc88ecc03 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb5e2c3b mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xce070d73 mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcee926bc mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcf4829ce mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcf6a7e77 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcf9839ea mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd3705f2e mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd987fd94 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdb48d1c2 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf785e11 mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe211c1f2 mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3f16d50 mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4da64e4 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8d851b1 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed50c2f4 mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf8bb1d50 mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa6ebeeb mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbeffa90 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc630968 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x078d421b mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x26f606eb mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3897fb0a mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4a171bec mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4e5263c1 mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x733b6838 mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x78f138ee mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x83c82fd1 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x855ef2fe mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa45e9ad3 mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa487bc2d mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xab358179 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbd33d320 mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd85fb018 mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdedaa853 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdf350f8b mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x00fe52f3 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x06da60d8 ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1025c525 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1244bc31 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1f154aaf mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3b6f7981 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3dfbd662 ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x45199864 __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4a9b7523 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5406519a __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6daeb907 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x79cff125 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x88b0c691 mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa8057ecf mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x04fc722d mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x20b7ed55 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x27825618 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2ed77889 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3bdf8202 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ecff942 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5295ce7d mt7615_led_set_brightness -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x656578e4 mt7615_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7250f137 mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7374beec mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x75a489d5 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x77538f96 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7d023b8a mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x99516ec6 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d47ceb2 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d706ee7 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2d05f3f mt7615_led_set_blink -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb39dfba3 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb76296da mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb91c4115 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbc59d65a mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbfda1c4b mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc1388861 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc3c847d2 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc4300c09 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd5b47f97 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd6f23ce4 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe1ad1da7 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf1de1a09 mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfa453184 mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x11f637cc mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0a7177e2 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x939d47c1 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9903694e mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9b126f48 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c084868 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9dba3fae mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa1627850 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa206a93b mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa47bab0d mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa605d3eb mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xad8d5f28 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0874b08 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb90a946b mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc2032a0a mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca863afc mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xccf2e4e3 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcf967d28 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd24c3bfe mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4740b80 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd807799f mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc45a4a8 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe05d5890 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0b65d50 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe11bebf6 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2a51da9 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe42d2ff9 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea9a2f88 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xebf97aa4 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf05bfe07 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf0a258ac mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf54064e9 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7eca133 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfaa12fb7 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb0271ea mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfe56965b mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfed94e44 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x249c72b0 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2b8e16fe mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x32851db9 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3955422e mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4f1aa151 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x77edaae7 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7f8c5d92 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8a97c243 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x904b6535 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb1a4e8c2 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc2d48e31 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe094f4ae mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xed32a6be mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xef8099d1 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf2f28aca mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf97032cc mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x06cd1e3f __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3631c83f __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x68d77776 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x68d943a2 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6a1e260c mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7c10c6f6 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x97e33171 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xabac2e52 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbc177fae ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc389af9a mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc619bef9 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc6fa077c mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd48ad004 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfc2f33ae ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0019fbd0 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x107a7132 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x338287ff mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x34ffa450 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x41747886 mt7615_led_set_blink +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46b6dfdc mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4c8e35ce mt7615_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x59638580 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6bb3749d mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x71e568d6 mt7615_led_set_brightness +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x737fd124 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x99709123 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d25711e mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa22818d5 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa507686d mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa778132e mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xab8a7e98 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xae12c129 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba4c9ef0 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbcac4e4d mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbf4e93a0 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc61edc2a mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd092a4f1 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd605160 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe5c4b1ea mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xebb4a1b3 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xed279ec5 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfa462308 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb90f2cb mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xff98b413 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x0eee1842 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x106524ab mt7663_usb_sdio_tx_status_data EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x553a29bb mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb1c7787b mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe404962c mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x30e48654 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x504e4504 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7fdecf82 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x84607e49 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe35579cc mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe5c24e2e mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xfe7c1a70 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x011c5b75 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02feaed5 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06af4706 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0ac1f9f2 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d7333e4 mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x173745a8 mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1743c7e0 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x185be4b7 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d87d1a0 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2368bca7 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26212e66 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b30d854 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3dd81724 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43deb24f mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x450db0f0 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4529b803 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cdbb344 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x50c7e1d9 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54359a2a mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x567e8b32 mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a3b15a1 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b21cc11 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3247445a mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x945d8f8d mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc6aa22c2 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x16ab9c54 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1acbb5b6 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2fd93b11 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x362cfe99 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x365cd815 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd690d4c8 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xdd081b67 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b4cd628 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d8db95c mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10a9c172 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13029cae mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13616e7f mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19d08bdb mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b62f18d mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f4334c3 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23dc1fce mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23df760c mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26294cee mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a48686b mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2cae8a9d mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x32cc221c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3655c85d mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x38f7a82a mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x424abc43 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45a309b2 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4711b6eb mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a70cab1 mt76x02_eeprom_parse_hw_cap EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d763530 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e4d15a4 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x612a5125 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61abc7fc mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62cda74c mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63394afd mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c4d5723 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67e7c3df mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x697cc365 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c349ad5 mt76x02_mcu_set_radio_state EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c0440d5 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f07fe88 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x801db743 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80615ada mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8157a025 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8202db01 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82d25565 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9107a95a mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78f11bfb mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7d71a1a4 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8332ddca mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89011de8 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x891622c0 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89b18e07 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d10bba4 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f5477f7 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x904a7844 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91bddfec mt76x02_queue_rx_skb EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91dedd81 mt76x02_phy_set_bw EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x940ed1d2 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99c09b32 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2d3f0ea mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3745d66 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa56b2718 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6fea097 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7ffb375 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x968de6c3 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97b960b8 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ca8baaf mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9db54aa7 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2f093f9 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4216bd9 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa174af6 mt76x02_mac_write_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaedf2e01 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb12addfa mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4400c24 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd586eca mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb4b48eb mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcbab8ef5 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce5e3ae6 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf5fb554 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd117e8e7 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd179507d mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd2a7babd mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc2470db mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdce9a04f mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe11d68f4 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe74de80e mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7cd3f80 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xecf0937b mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeed62763 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf103edde mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2d3d99e mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf43d1953 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbf7a037 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff1ac8e1 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x323eb6e7 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3c2d1c07 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x41344198 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x95babe64 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9e268260 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbc9ad95d mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbda7f01c mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd5efe96f mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0bc61915 mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x260567a6 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2a5c4bd6 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x33b0674a mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x43f8f809 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x50ff1a71 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x600a3ec3 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6021e438 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x74806198 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x846c4c6b mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8dee113c mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x92f28d79 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x95800b30 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x95b8de77 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9fd9f6e9 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc7a577bb mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc8a831b2 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcfd64803 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf50bac16 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xff8ff436 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0ae498ef mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0ee30985 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1b761a25 mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x369548ae mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3890e3f2 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x448462e1 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x54b27489 mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5c7b722d mt7921_get_mac80211_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5e551d61 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x66d33756 mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x71423075 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7dec13f3 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xaaffa335 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb0a44550 mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb565f595 mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb7234a67 mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb8fcaa50 mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb92c3dc1 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbe5f8075 mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcb2ede62 __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd042f688 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf322a74e mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfb8867a5 mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4adc3391 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x59bf7685 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x90779387 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xcc3ac37b chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd1f6eceb chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xd3bf71ef wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xecc8eb6b host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2cec2c14 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae006824 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae40d3f2 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4fd69e4 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5a58458 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb60dfd71 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb10ebe9 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf863939 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4418608 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc983fa3 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0d6b425 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd11c4fbf mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd14e8c71 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd37f0776 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd563cd64 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5651305 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd59f25d2 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe062e264 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2c88296 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf09db293 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf531798f mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf8356f9a mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf987b84a mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa23fce4 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb1c8de5 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x17900c38 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x3a8d3049 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6c876fd5 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6fe5fd83 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9d36501e mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc85ce211 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe4241b87 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfa73cb37 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x007e3c10 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x246adc0b mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x25a1c51c mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3d7b1707 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4c392af0 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x80a66374 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x82b5f00b mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x854a31ac mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa7c53df7 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb4308294 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbce599ee mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc3f569e0 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xca5f0532 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd2a5355b mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd4858c95 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe8568200 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf176be8c mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf31622d0 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf433b633 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfe934162 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x08b3a103 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0b253769 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x125c8ae2 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x30f8679e mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x322e6797 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3faf63a0 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4cabfbf2 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6555bf3e mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6c67ec51 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x75ca2564 mt7921_get_mac80211_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x81f88f5c mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x894c9051 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x98a99125 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb357fb33 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbb466502 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc0b6b8c9 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd81ed2ab mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xda380c16 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe37dfecf mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf2839b13 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf2c7f9d1 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf59b0341 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfbf09e5b mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7439675a chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x89fb634b host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb56fae31 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb69efd88 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc20551a9 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc5105346 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf7f130fe wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x29f3d3d8 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2d8e9965 qtnf_get_debugfs_dir EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x38b2c239 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7be7e2f8 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa52db7c6 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd5df8cd9 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe517df06 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0684d719 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x076ae3bd rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08d6caa8 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0af6d52b rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1182541d rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14679ca1 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x219bbd20 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2983c0aa rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ecb4b8d rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33b0c602 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x361bd533 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x379f0358 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3caee4ca rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e682977 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x52f7d433 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c4aa9dc rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x635d1b35 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73cd7453 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e1f4889 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89dec9b0 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b213250 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9d1945f9 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa296cd04 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xab686f9b rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaca13f40 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad0e063a rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xae6833f9 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb6f11096 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf67106f rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca9f0b3c rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0efe4e7 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd427703b rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5c2ecce rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd5e36b9f rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd708013d rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8521e36 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd12a1ca rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5d7b73e rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf73d383a rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf80fb34a rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf879eefb rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfad8ef27 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfaffab0f rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfd8e44a6 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x073a5bff rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x15c68030 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2116e0ec rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa14bc788 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xab5e7001 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbcad2ee2 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf39ae5bd qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x01cbeb38 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07a30fd9 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x083faf68 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x13635d4e rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x183738b8 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x220cd49f rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x26917d7d rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x28b52557 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36541679 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x488cb84a rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a509672 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67bdbb4d rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b2662ca rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b55e4d5 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bc87de8 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6efd7402 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7a44df16 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d9b2af3 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e6252aa rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x85cccbfd rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e7c5631 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95ec562b rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9747a2c3 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa4fae167 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa7f62e4e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa2c9f6c rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaafe1909 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf8179ad rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xafb46fc5 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0a5bb55 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbd48d071 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbea9fbbf rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf7e9607 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd9470c8b rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf5a88a5 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf6eda5b rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe163ac1b rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe5a32a22 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe68c131c rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8819b7b rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9248910 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeca42d4c rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4528165 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf90b5655 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e13631c rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0fc74b24 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2c2f83db rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3b0e720b rt2800mmio_start_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4cdb6f56 rt2800mmio_clear_entry EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x59a38059 rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x74e5f819 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7c951929 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8f3a0229 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x936e3dba rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x617147a9 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x650183ba rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x68f00b7c rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x870920da rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8f37886e rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x99624874 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9ba322b1 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9e8df156 rt2800mmio_get_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa1566a0a rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb8ec486 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xccdb6acd rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe4f97389 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfd0fda68 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e5361da rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10128a8d rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x117e14db rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14e35f46 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x15e310c2 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a90de9a rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x309ab843 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x36e8552c rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e95c716 rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41cc63a9 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ad65dfd rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ccc317a rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50226623 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50672e78 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54bb8f11 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a26fc5b rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a2e5610 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68f06513 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6da23ac1 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x703e8f88 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7217f400 rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x74fba7fe rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x81839a06 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x87acd15d rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b8d2433 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e410f71 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ec28eae rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92bc21b8 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x96d48b30 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b1084ab rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b50a556 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f3e0022 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0343f92 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa55cae91 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb1e43984 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb626b018 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb6aa7a0e rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb7573252 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb83eec1e rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc0adf8d rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd08e458 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce70b0de rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2920687 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd7b0711c rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb22ddbf rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe96455bd rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf24fd1d3 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x18d560b4 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2615fced rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x324b4608 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x38dea65d rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5ba5e523 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x6f5e4631 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xadabc8e6 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf1042070 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x128e9537 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x22227492 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2a87a0f0 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3f88d77a rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4b28ea55 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x523e3f3e rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5bc2c23c rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8bf7fd57 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaf9e66b8 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc3af63ee rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd72d184e rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd7edd6f8 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdc5ebac7 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf4e6ec05 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf8215963 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfc76ac1c rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x192bab40 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9309b407 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc26e9dfe dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfab693e9 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0198100b rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0413d364 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d1dad83 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x27565d16 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x35bd23db rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x368d37bf rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a5de0c0 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xad49c294 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb75c9e62 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd6cfb35c rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xda468272 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd39b9d3 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe396d83d rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02586c99 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0581dd62 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x065f704d rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06f868a0 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x110569ff rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18dfa579 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x192815b0 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b17e8e2 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2075a8ab rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x28de3741 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f174c30 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30307d27 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x353340bd rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x377dce7d rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b988951 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3bfffa8f rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x42638135 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ade426d rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54a6f3c5 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54d35f29 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68a71523 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a502311 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a7ee077 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8b5f1b61 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e1e67ae rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x952b92e6 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9fddd551 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3a6b3cc rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb575274c rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb79fa67a rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb874b916 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2d81420 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb196ee8 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb41a420 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd771771 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcef209e6 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd9dd15e8 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda3aac60 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda7c9698 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe028c9f7 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe3d0fb6f rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xeb56c071 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0bfee0a rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa04e535 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa759617 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfc093bc0 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfe4652df rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x189357bb rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5c74bb71 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7e9dfa3a rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc1ac0564 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd0c9fd38 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb8a7774f rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbed0477f rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc4334fd6 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03682c9e rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2a764445 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x37acfbb9 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3b585019 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3d8ed8b4 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x482da4e8 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x64c3980b rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x68096655 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6c4dee44 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x92e2aebe rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9cb39a8e rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa56da881 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbdc4f254 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe097b81 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcb7e2248 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xed0df6dd rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21ce639e rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f54300f dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9b29406 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd929acc0 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09d63200 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fc5ea2e rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x12e39ad5 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1be89cfb rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x366ba571 rtl8723_phy_save_mac_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x416fb407 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8336656e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5d624709 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62c36c0f rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6c21e3c4 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb2f182 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a656f86 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ff29602 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8120f011 rtl8723be_firmware_selfreset EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9bd18f2c rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa255f1e rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb689e3cc rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb71e3d38 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb984bb6d rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf27bc9f rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcde0d144 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcf58f135 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd2520576 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd2ebea79 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5431d63 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd870e80c rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc502757 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4547a1a rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xea15688e rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf086b961 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0423ba37 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f5ca8dc rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1611ecbb rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x168d6090 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a87de19 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91a36c15 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9209a70d rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a7d949a rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d4e1c48 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbbdccb42 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfa11a00 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd1d15ea8 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe3f34ab4 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xef12e616 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1d7b1d1 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf948ad7d rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc74d230 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfde326af rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0102fd63 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21eaf785 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2286aa18 rtl_init_core EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29b96918 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29e151d6 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a6c494b rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ad37fcb rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d9895fc rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2dc63e4c rtl_tx_report_handler EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35b8ea00 rtl_recognize_peer EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39316604 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c052175 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3eb83ddf rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40fd3ee7 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4122c28c rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e9e324d rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92c94a5a rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3871f4c8 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56dc6871 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6cd40bc4 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e7e9934 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7176696b rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71907163 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79ce6fca rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82ef30a9 rtl_deinit_deferred_work EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e40dd2a rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa986600 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadff75c9 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb43c8db6 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb63a1922 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7f17e6f rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc5cf9af4 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc611aa71 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc957d592 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8f57e72 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed148ed7 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf0d25d53 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ac3e3e4 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa88a2f2a rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa976a0c5 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9dc6943 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd479b53e rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7992c32 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe333dde6 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb845079 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed8c9ecd rtl_fw_page_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x569a6281 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5a79546b rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x787b53ea rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3cf0c1a6 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6ce2f81c rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x99ff8276 rsi_mac80211_detach EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcf80a22f rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xfdf14a27 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x3d055fde cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7af8a083 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x844fb8f4 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xbb6caca5 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x52c963b0 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x587e02c2 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7d105df6 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02e11c91 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x032df7d5 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04034121 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf5821d4f rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf79c65c2 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x15fc869b cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9b8e24ed cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe160bc5e cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe5f2d095 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x77c858e6 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xbc84d21d wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd725b04c wl1251_init_ieee80211 EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1191b842 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15055e62 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16da4073 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x197117c4 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ad0e025 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fde1415 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x072cdfe8 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x078e1103 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e0f0a64 wlcore_cmd_generic_cfg EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22de247e wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23c98210 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26484c54 wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34a69941 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36142c43 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3645d680 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a20254e wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ef2e80b wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f2a3fe0 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b3b8387 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x522d35f9 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56ccbfa2 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b74361c wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x72451ddb wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x744db2d0 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81d209f6 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84abe36c wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x878557a9 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89932914 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a1e160b wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f3375b6 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ef5386b wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2bd100e wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7e31cb6 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbabb60aa wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x234b1cfc wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x295d2878 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c2a580a wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c5b7b9a wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d5a420a wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x377bcc7c wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x39cf9c81 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e1bce6a wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x418db50a wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x425afd2c wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4287bc18 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4384979f wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x541e325f wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x556116cc wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c53cf5c wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f050319 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6381e041 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67fc8f21 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x686d41a1 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68fc6730 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ee86874 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x700083f7 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x72fa1a07 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78835395 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79aab4c1 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c29cb6a wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e5a0bdc wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9512e5aa wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9521c9cf wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ef5a7ec wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa31e76db wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6c33bb5 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad3c61db wlcore_event_rssi_trigger EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1db71fa wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcecda97a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd160634d wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3717b68 wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5a9a151 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda6b47ae wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdb97ba03 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9c0ca9b wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfcaff353 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xffc4109d wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x251cb48f nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xae790958 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd0e52d76 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf71d0128 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0c7e278d pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0eb82fb3 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x21235d77 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb283a0bf pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbbc6ea29 pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc6f46033 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc2bfa624 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc344d561 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6318736 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd3f67c9 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd25b119a wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1777de4 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd841feb wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3f2bdff0 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa5a82003 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe64c668d nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe792f605 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0eeb38ba pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1fd68c09 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5768d79f pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7552a244 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xca9b6655 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdb9f9c3e pn532_i2c_nfc_alloc EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe5e0308c pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x250a5bb3 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2c6e3cf4 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x304b9b24 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3d0f34af st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4ec457e2 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x879da1ba st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb5cd34f5 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdc55a17c st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x1ae5e276 st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9007be10 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xe13169b6 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe2ea14f1 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x188bc10a st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x37c776dd st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5094a4e7 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x54266e1f st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6cf37f42 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa3ecd233 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbaf4397d st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcdba51ff st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7419c129 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xaa0ce752 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xfab186ef st95hf_spi_recv_response EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0b44aa91 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2bd03b4a 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 0x573ce55b ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4647cc5c 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 0xe79a3578 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf85e3511 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xdfcf5a29 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe0074a5d async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x1561d065 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd7241f59 virtio_pmem_host_ack EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1f0da484 nvme_auth_augmented_challenge EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x37a166fe nvme_auth_extract_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x561aff40 nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x578dd031 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xa43a2d05 nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xb4e95750 nvme_auth_free_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xb9cf4c3a nvme_auth_hmac_hash_len EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc31b3ca0 nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcfb7a272 nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xd8aa50b6 nvme_auth_generate_key -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xe2028d70 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xfb47c916 nvme_auth_gen_shared_secret -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02630701 nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x050aaeee nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c479769 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d8015cf nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06cd0f0c nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x077d33e5 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b0c018d nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e14d399 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1138337b nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1148e6dc nvme_start_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x137c9d63 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d58cc96 nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24ed5108 nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x289bb859 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2976ed9a nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2affb716 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x326aa152 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c3b201f nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d660c68 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4016016e nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4254eceb nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45168dd2 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46e3f8af nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46efd3a5 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x470c3997 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x12248661 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x18081839 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fbcde51 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2427f451 nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2500aff6 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b64cbe6 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d611e76 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x32da930d nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3359c1a8 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39869eda nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b364d1e nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b9db620 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46599f08 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48851399 nvme_cancel_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5289ec36 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54d7c3fc nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6142d308 nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x62a284a6 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x635ab120 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x642508a1 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53d7067e nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e7cfeee nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5eba629c nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64a584f8 nvme_auth_stop EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6504bea3 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c195486 nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7161ed28 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d7ad75d nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64eeed8b nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6fa19450 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x704f6f3a nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75b5bd1f nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f40f9f2 nvme_set_queue_count EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x899734fc nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e9b847e nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94958968 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c8537ac nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ddcd28c nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0a47dd6 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa2a8f5ac nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5ebc0a8 nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc2fc94d nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc44002c4 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5519bba __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcdbda4ea nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1d48e06 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x893d267a nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fffee08 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x972ddd32 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a24dc29 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a28a280 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa2fa4573 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb7dbcdfb nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb87d801f nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb3f9a4c __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc785b2cb nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xce303750 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2d02fe7 nvme_stop_keep_alive EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd54cb9b9 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4eb29d9 nvme_reset_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd61f168c nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9ed9a37 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdbb2462a nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe35230e1 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe57188f2 nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeeff2536 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf13e8c2b nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd5964e83 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd7926056 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdb77dd98 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdbacf17f nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xddcf30f4 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1002bc8 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe243014f nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3730866 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe4bfac75 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea7c41db nvme_remove_namespaces EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3253ea0 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf53238a4 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf7757fdd nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfce7a6ef nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfff5343b nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x042f948f nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3be0627 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdf154ee nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0b48d1db nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x10912921 nvmf_reg_write32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4b080585 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x55585700 nvmf_map_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6272deac nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6bb8bb87 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x70cf13b8 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x909d7cba nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xad0c4b6e nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x63dfcdaf nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6cbfa2f6 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x71e8c670 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbf55122d nvmf_connect_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbf6f9c36 nvmf_set_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdc42472a nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe5cd36b1 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe8023e00 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfa7628db nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcf239c6f nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd9332942 nvmf_map_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeb758d22 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf485a10a nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfe8b7761 nvmf_reg_read64 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x11de6b63 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xa3511295 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xb58f3678 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1a5e4c6e nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0caa1995 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2b3f2bef nvmet_req_complete EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4083a499 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x51d7fc82 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x61b7def0 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x83a97276 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8f5a8f78 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9a1050fc nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9becb96e nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xccf5395d nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd8b3cc9f nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xde014cdc nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x808916f1 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x95ed642b nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x97d7c6d2 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9db9a4a9 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9f1e5c1d nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa0529c3c nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa677a624 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbc0e2cbb nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd0d20c27 nvmet_req_uninit EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x21754cd1 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x71f76562 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xe71760be switchtec_class -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x00919d4c tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x46754452 tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x47bf2406 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5130b509 tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5966416b tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5bc20d73 tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x62c24c1f tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x64632ccf tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6f81792e tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7924e6e1 tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x86ce206b tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x91ded315 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xab596561 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbf7f6f7d tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xda8e92cc tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe696928b tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x834bc39a switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3fa43be0 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5aeb7bfe tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7aa627a0 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7cf27102 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x80720a75 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x849d7f4b tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x87bd26b7 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x93d29cf1 tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9b7b8832 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa14d4d03 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa341f176 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc16a5390 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc32b8901 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe070c03e tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf2c507f5 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf6102aa8 tegra_xusb_padctl_hsic_set_idle EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x581484bf omap_control_phy_power EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x6ad5721c omap_control_pcie_pcs EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0xc15c30c3 omap_control_usb_set_mode EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7e7ac7e2 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xdb7471ef mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xeb0fd500 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x5036a8fd lpi_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xda0ef14c lpi_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xbee61c15 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xbf12e04b cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x0516e4f4 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x356d401b mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4e75e2e8 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xa0d99d4f lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xa24042b3 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x6d2c8978 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x7bb09084 cros_ec_sensorhub_register_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x03c519a5 devm_reboot_mode_register @@ -16131,144 +16150,144 @@ EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x33fab6c9 bq27xxx_battery_teardown EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa688d4e1 bq27xxx_battery_update EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xd3574595 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xa3637bab pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc1699d66 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xff1447e4 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x1be3c695 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2f0c66a2 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x795703fa pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xe8d85ea0 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0c4c7b86 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x11b05272 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x1abd50a8 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x24fe411f ptp_qoriq_free EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x47c81e28 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8d8938de extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x99df9457 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb5de2a03 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xba7ef98b ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf2e048e4 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfffbe75d ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x01c0f839 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2948d380 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3871e10a mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x659a5da5 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf0fd93e8 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xb824fd02 rohm_regulator_set_voltage_sel_restricted -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x172bc3b8 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x254eb77c wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4c01a1fd wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9e84925e wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfb1c1f25 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfbad9339 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x1c6a0598 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x68ebd5ac scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x85ecbb80 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xbac1f0de scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xbcb7d932 scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xc7cebe0f scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe5484a02 scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf1734419 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9f2094f8 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb4c97533 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb672daf1 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf3d3c774 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x04bdf5ec mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2ba20dfa mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3a8b0494 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3c77cbf4 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x45577cae mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x902b27da rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0ee65772 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3c661871 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8ef41458 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbfb64ddf wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcea25a57 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd3815a20 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x2acf2c71 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x276b62ba scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6a24754d scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6d00b00c scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7c60ea0d scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xcdd1d238 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe7fe6e15 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xf80f55d6 scp_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x93aee2a6 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xc13bc3e1 scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xc551f77e scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe7af24fb scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xfaabca43 scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x06ea22fc pru_rproc_set_ctable -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x9af3ef83 pru_rproc_get -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0xe71540d6 pru_rproc_put -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x011ef69c qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x060b5032 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x1f2e9187 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x56d52b2e scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6fe80975 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x81810d93 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x8275ee56 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x0b37f144 pru_rproc_put +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x3130262f pru_rproc_set_ctable +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x6cc88e41 pru_rproc_get EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1029ff19 qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3fae9508 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4df5238c qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6f5e7a18 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9d80f2f8 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xbb2d6df2 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x25f5fe6c qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x278ecba0 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3def5e24 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x49d74b74 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8697e31c qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb1644e5e qcom_minidump EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe24264fc qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xfed50de3 qcom_register_dump_segments EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x950d8f20 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x07097e18 qcom_q6v5_deinit -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x10487273 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x1bd5fba3 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2bdfe4eb qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x87e91afe qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x8dea2b65 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa66a1eb3 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x13c460bc qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x76270288 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x8f76ef86 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa58ba0f8 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc039f697 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc2a05b8b qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe712d3a3 qcom_q6v5_unprepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x2ae91056 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa90522ca qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x31769384 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x8a42a6e3 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x8a969899 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x6b66959c qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x4b4a8a2a qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x4fe311b0 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x8b461f9c ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03795678 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04aef2bd cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a7008d3 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a225e29 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e64d8ea cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21bd5f80 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2526c367 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26104c67 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x330375f3 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x336278eb cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d4a8fbd cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3fc2dc30 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47316a85 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5137adad cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57d5aa1d cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60465d6d cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63aac2e2 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65b800a1 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6757b3a6 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x700b0dcd cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78a905da cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ac55197 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xfffd8fc4 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x22018558 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0166d990 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05738fb4 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x127b72f7 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12f6bc39 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d4b21bd cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f548c57 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2647ad11 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27dc2d59 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x338d6c55 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f6a445e cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f6fb39e cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x496d99a0 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5275d250 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53b446c3 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54b10816 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5960acb9 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f242af9 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x628be8d0 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68a67c50 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ebc58b7 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c6c98aa cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e56d3c1 cxgbi_device_find_by_netdev_rcu EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81f73101 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8507375d cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b827717 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8f2975cf cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9290953a cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x959a9d74 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2ed4332 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5e3f9fb cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab2709cf cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb479bf89 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb72e0c4a cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe42924a cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x89511e53 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x939cfc0a cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9729474b cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99168c9a cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa35c18be cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa35ea05c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6e1b69c cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb81aa139 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xba6fc5b1 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbac0e66e cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbbe352f4 cxgbi_sock_rcv_peer_close EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc69a9057 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xccb60ac8 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd55d51dc cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6bba90f cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd977acf9 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe54ebed4 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe945066d cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8b12828 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb9fa95d cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd048a14 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcdfc910d cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xceb3a25f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd479a895 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe34588eb cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe45016e3 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea901f87 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeab7dead 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 0xf83b03dd cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8d4c532 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd5c7a5d cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0730aefc fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0d0c4d1f fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0f136359 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1005f087 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x10d4f2d4 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1f0e8cf0 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22275c71 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3290320b fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x334e2850 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x437b04f7 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4847aa09 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e70c0a7 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x688b4b30 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xafb30442 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf475d5b4 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e8d9600 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20b989b4 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x287ab590 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3e9fb278 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x46494e8b fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c447027 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x67d73e3f fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b922ed7 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x770b1279 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a33e9fe fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x801e7166 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x947c4725 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad879b40 fcoe_fcf_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbe28b945 fcoe_fc_crc EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc41a0587 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd873bc81 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe80f70be fcoe_libfc_config EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf88ee5e1 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x6d8a62f8 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe557dcae fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x26911e1c fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xae3c0eb8 fdomain_destroy EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x497e7bca iscsi_boot_create_acpitbl EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4b590b31 iscsi_boot_create_initiator EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x76f44f98 iscsi_boot_create_ethernet @@ -16277,194 +16296,194 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc9dee203 iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xffaec248 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0xba51c2ac fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x049da9cf iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f97dc6b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01958b92 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10b9b002 iscsi_get_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1700c6e3 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21513105 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ac6a6e8 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bb88f9a iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31c47a5b iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33635522 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1761299c iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20b398f3 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28afea86 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b81cdcd iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b83a1c5 iscsi_suspend_tx EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b996cfb iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x529eba17 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54b3b5f5 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56640583 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a58fb3e iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60439204 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x714952d2 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c4b97f2 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e2315d6 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80953566 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80dfe025 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x882fd49d iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8954e4fb iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8acae6fc iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cf40d14 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d70ff50 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f2b1da4 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bfe52b3 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4d164799 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x550114d2 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58ef322f iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d5637cd iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x630da725 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b115c63 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c3f39d0 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e0513b1 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70454851 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x717e83f5 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e5d99a1 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f3ac3a9 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85b8cdcc iscsi_host_get_max_scsi_cmds EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e1e8424 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91372094 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x998fe0e4 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9db9a9b iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3fc614e iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4e89588 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb52a47f7 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd0cc6c6 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbfc01f47 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3f62d1d iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc45b1458 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4cfda52 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6284c18 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd423b56 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd331ea10 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4c5a4a0 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf1ed377 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe54f6773 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe98cfeaa iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x901af9f1 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9027dcde iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92963d81 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96323a2c iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c68df97 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fa06fd4 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa36efa63 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5ebd5b6 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab90f352 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac04a480 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb36acd7a iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb563717a iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9be10ae iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbaf7b672 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc8437c0 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe39912f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc15c6a9c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca5f1fd5 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc2ac204 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0f3cc7b iscsi_suspend_rx EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1c2fdaf iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5e9c003 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6f0f8c2 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa901c8b iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcc99de5 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfed56637 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x158b77a0 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ded698e iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29ce758a iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3324d2c8 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3590f0a4 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4b9393a9 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f5c5e98 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x592c828a iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6ce49473 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fbe96d9 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x87685e65 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x99eed858 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa0c91b74 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb085e861 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd247ff04 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe27b7f55 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0c463e4 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x027ed66b sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0697fbe1 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f621797 smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x213b9f30 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a279968 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b0856aa sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e46d24a sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2f202f30 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x40b3b8c6 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c750c3d sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ec2de6a sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e4da2da sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x69dc5ff4 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6abf3a0d sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6bcdcbad sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b276054 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c408453 sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9097e83a sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x945062b7 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ee51d6c sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa61cf731 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae4398ae sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaee59c3b sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb488dff2 sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4bf1979 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9198e13 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9289281 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6b21d9b sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd85c5cff sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde6b822e sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdee3efe1 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2f6a2a1 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeabdf59f sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb09e2b9 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4048b81 sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf53ffc54 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x5e189c02 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09a734f7 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x139dcb08 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1da045e6 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2335a3fb iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d285952 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb302760 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef34dd65 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf37dca63 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfce3d92e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfec0b3c2 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c23adbb iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2abea6c8 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f8f8676 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x33bfc6e8 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c3e17ab iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x47ecb497 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52a5dc74 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x660e744d iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6e8b5fff iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa8fe96c6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb5faef29 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xba15fe53 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe9524a6 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc7113cb6 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd68cc21e iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb7c660a iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf9132e66 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b9f4dd4 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0bc8eaa5 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d083911 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14335776 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15bf43e9 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e2a6d2b sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x217c6437 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x312f07fb sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x319b6a13 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x347470d0 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x365f09d3 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a2f60da sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f255094 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x508d2b94 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6228a91c sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e6a98b7 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76d46e9e sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e8d1129 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x875b5bd9 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8bd3f6c3 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92c98016 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9803501d sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x985811ff sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9cf404ac sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae1567d1 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb57f0173 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbff715b1 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc483611b sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc48981c2 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcabfbf14 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb0c1d67 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc50eba2 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4d9b943 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe5b64bdc sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe652fd54 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xebc5dbad sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x75fa85bb fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b188c8a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b4ffbaa iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1483ee49 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e040f97 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2461a833 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24e85fe9 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c03a460 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e5e788a iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x309de55c iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x327640b3 iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3595c6b2 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a67c372 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d05b3d0 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f232b6a iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41d70936 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43dbad4e iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47911634 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c9ebfde iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d08df59 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4db2b33f iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b55b43d iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45c005c6 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45de5d5f iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ec25101 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x513dbfb9 iscsi_is_session_online EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ff1d8c6 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x689edeb0 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5898059a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x652f7234 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x659d91dd iscsi_destroy_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69e27d5e iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b8f21db iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6cc81135 iscsi_force_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74d1692f __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79d694be iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ed12405 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80f2a620 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x811fd09c iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x737de9e0 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x763f6986 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7890e144 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82319378 iscsi_create_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8aba9180 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e11bfcc iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9135a575 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a37a642 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c74d8fe iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d1b0fa4 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e8b86f5 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f89e5ab iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa096b5c9 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3100bb9 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6848589 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b759c05 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93ac454d iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94d27c36 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9dfe6550 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ec2a924 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa323e881 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4bd87e8 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa76103a8 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa953718f __traceiter_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad30a81c iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0679f87 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb12eb45b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac0ad3cc iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb07d4d3c iscsi_conn_error_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2f944c9 __tracepoint_iscsi_dbg_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc421109 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd3b2b297 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5a8a5c7 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdad28b50 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbfaa317 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb0e3142 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce93d286 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd09ec21 iscsi_add_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde5ed0c7 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe24c0c6d __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3cf105f iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdec0fe78 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf4edb9d iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfd5efa6 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe288a74b iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2c451af iscsi_host_for_each_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6b46fc4 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6479490 iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8047a3b __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8ceb5c1 iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb3254ce __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb621e21 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef165737 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3613006 iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc95c56b iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x120b42fc sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x458264c3 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6007c218 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x830c559c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf36518ae iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4c706ab iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8deeb83 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1a9476f0 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc1ed2cec sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdb59c649 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xeeef51ee sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7a6749b3 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x3952e989 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 0x12a4119f srp_attach_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1ed4c953 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3cb18a40 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x543f5bfe srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa2febd2f srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf6fde734 srp_release_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x03cbfd60 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x58c53c6d siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6700c1dd siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xae1c55a1 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe973a6fa __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xeb9bdf5b siox_master_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x38c44fed srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x40b61397 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x765d6c94 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa0de63bf srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xeadd14c3 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xec3164ca srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2407fd1d siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x339aea8a siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb11d91c4 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc0156dcd __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd2aae813 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd305dfa2 siox_device_synced EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x07f23a0c slim_free_txn_tid EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x146aa4f7 slim_read EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1541077e slim_stream_disable @@ -16517,14 +16536,14 @@ EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xbbb4ab02 mtk_mutex_put EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xfa95f801 mtk_mutex_write_mod -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x18f171d5 __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x61b1a621 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7147f48f apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7582f005 aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9d5f10a3 gpr_free_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xbcb772d6 gpr_alloc_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xcfc51e01 gpr_send_port_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe9fe7921 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x09f0e995 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x15b96224 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x1a1d2684 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x68edc668 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x722b1bf6 gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8f021a8c gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x94cbdf32 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xbf513db6 gpr_free_port EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x06285798 llcc_slice_deactivate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x09afc16e llcc_slice_activate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x14f99b76 llcc_get_slice_id @@ -16536,7 +16555,7 @@ EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x6e29aed3 qcom_mdt_pas_init EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xefcac118 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0x2d084253 devm_pmic_glink_register_client +EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0x621f8f38 devm_pmic_glink_register_client EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0x9bafd667 pmic_glink_send EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x50d28b20 qcom_ice_evict_key EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x821440f7 of_qcom_ice_get @@ -16549,93 +16568,93 @@ EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0x932eb0e3 qcom_smem_get EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xe583bba3 qcom_smem_get_soc_id -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x037161f8 pruss_cfg_xfr_enable -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x0f2b478d pruss_release_mem_region -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x3cabfec9 pruss_put -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x425a441f pruss_cfg_set_gpmux -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x66ce2508 pruss_get -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x75da4bc3 pruss_request_mem_region -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x8b5a92c6 pruss_cfg_miirt_enable -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xa7af23e8 pruss_cfg_get_gpmux -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xf22cfd21 pruss_cfg_gpimode +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x0d2cc6a9 pruss_cfg_miirt_enable +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x0db01a39 pruss_get +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x439eacf9 pruss_cfg_xfr_enable +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x50f10deb pruss_cfg_set_gpmux +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x71325583 pruss_put +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xb3b0a0f3 pruss_cfg_gpimode +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xd229866e pruss_release_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xd4765d54 pruss_request_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xd7b4f865 pruss_cfg_get_gpmux EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x850ae3be __sdw_register_driver EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xa343742f sdw_unregister_driver EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xdfa52ecc sdw_bus_type -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xa2d7ae83 altera_spi_init_host +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x61a3ba53 altera_spi_init_host EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x25b78794 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3c62038b spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5082deb7 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8594578b spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xae99c611 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf9cafac9 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x265cd0e2 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x9555fb70 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc538e32e spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x06676fb4 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x07ba5167 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c6a39cd spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b028e11 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2ba58622 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3857910e spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x46d8f30c spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x481ee84f spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4a0813c0 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55c7eb3e spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5ee1e324 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x736e7b16 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7e3c1368 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x907d30db __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x942d9b3c spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9608c501 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x98108829 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f2b0f41 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xce0394c0 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xa6f893ad ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x067cf62b anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x165e3a3f anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1acdaee4 devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3b7a016e anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x433a019a anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5e0f774d anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa87370b3 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xabc14a09 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbe2c4dc6 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd9770f87 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe2751be6 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xebb67909 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xeff73789 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x07338323 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x355d1e4a spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x387fac33 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x527c62c1 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6521dfa8 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xaa8da7d7 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x1475d302 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2e153544 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x78b30cf3 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0f732b67 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2ec8363e spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x30885c81 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x358be52b spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x36160d60 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3d5949ac spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3df5ed1c spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x49d14628 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x51664f1b spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6a7520f3 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x87bb4427 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x97acdbe2 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa97eaa9f spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba6ae6af spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3f486f2 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcfa02ce0 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd1eeb60c spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xed719816 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf117051a spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x318a6dea ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x240da5fb anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2de8eb53 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2ec25ffa anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6ddabf84 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x83e58be1 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8a976915 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8c73f2a0 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x97c27f67 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb1bd8563 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb2c2ee1e anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xda1107c6 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe88a84ff anybuss_client_driver_register EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7575798d fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7c258671 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa05cf9d1 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe732cf8c fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x195c75ba gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x236aa8fe gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2a14ff87 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x37f6ff4d gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3d7e03fd gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x42bf9c8d gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x514abf78 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x70a67ee2 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x99c3bbce gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbde1cd89 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd41bc6d1 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xed3330e4 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeec478fa gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x04a6ae40 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0731f02f gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x09cdf0b1 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0b9f2aa3 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0faba9de gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x14fd6254 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x388b9333 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7dfa7b7b gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x85a6a57d gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x972db52a gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa4f5390f gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb9c978c9 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xde3eb25b gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfd65a600 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x35996855 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x94bdde16 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xc04b21a2 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xcd9d4071 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3380301a gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x490efcf9 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4ac5fc5d gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x65fff742 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7f8981e2 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x876d0411 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x97f14f9a gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa8570f0e gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb2db2d21 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb501ed32 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd2c15883 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xecbff09b gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfe28c856 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1f4e6aa4 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x20e3b604 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3829b820 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3d4cc0cd gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x545d87cb gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x686e700b gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x866ac15d gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9841930c gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x99f5f748 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa6e3b8fb gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xacfbf66c gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd76d7b36 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xfcbc3e47 gb_audio_gb_activate_tx EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x1fa35cf3 gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove @@ -16643,388 +16662,389 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x89f731f5 gb_audio_manager_get_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x59973d3a gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xf43d4366 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x486ec4f6 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x8b50a9de gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x755eefff adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x9ddd93c4 sp8870_attach -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0368791c imx_media_capture_device_next_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x15bce91b imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1d4fd4a4 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x0784cc85 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x70ae8298 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x27c46286 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x9ea6e738 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x20942f52 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x7d5d3382 sp8870_attach +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0dd8b97d imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x17118b52 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x26a19c44 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x29a9c801 imx_media_add_of_subdevs EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4d675de1 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x483f4f53 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4d7ba53c imx_media_pipeline_subdev EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x635e01c3 imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x722b3f96 imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x891be78a imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8f0a4c56 imx_media_capture_device_remove -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x91d79ea4 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9cb315ce imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5716b801 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5f916b6a imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x63c869aa imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x696fa7db imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6c2a8e69 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x78726157 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7f4140f9 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa3e20cad imx_media_capture_device_unregister EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb42a0261 imx_media_capture_device_error EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbde20e67 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc02b8590 imx_media_pipeline_pad EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc6dfdc56 imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd02c95ae imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xca6cdaf6 imx_media_init_cfg EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xea4622c9 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xeab14cf8 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xede2f02f imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf7ad1e59 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x005c1376 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x00dcdea0 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x032446ba amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x03f1358b amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x05ba114f codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0752e1a0 codec_hevc_free_fbc_buffers EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1b8387cf codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x16bd87c5 amvdec_read_parser EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x47dc5276 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4b89caad amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x508e7e4f codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x22700eca amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2e0eef26 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x48bd2cdb amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4c903ae2 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5786e544 codec_hevc_free_mmu_headers EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x63b430a7 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8e1a885b codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8f945efb amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x90d9d233 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x972a9d9b amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbf4d09cc amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc08de6a2 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd530fdf0 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd9a9b1c1 amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe6cf1a70 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xed8fa338 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x88648e39 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x95f965be amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa6a1187d amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbb635963 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbbb931b2 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc2b2e242 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc848a4e4 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcbcac566 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xce844b20 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd967abb0 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdac5a738 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xde3fea36 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdfc71d53 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe837ec9c codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xea48b76a amvdec_write_dos_bits EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x51b54f92 nvec_unregister_notifier EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x55f421aa nvec_register_notifier EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xbe2e79b6 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2f06523d target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x041b36e5 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2963f80d target_submit EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x648da418 target_free_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6d55fad3 target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8b7517a4 target_stop_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa3e030f5 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x917a2924 target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc03dcf6e target_alloc_cmd_counter EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc30fd7f7 target_wait_for_cmds -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xf66c2624 target_submit_prep -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0b5a82a3 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x255b80ff tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3d85f63c tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x481a46ce tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x486a23b2 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x48dd1614 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5b240410 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x640c366f tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x6da9d291 tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x71cd5d26 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x830766da tee_client_close_context +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xece94e6f target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x071f94b2 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x13e67f67 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5ae0eeb2 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5b96a5e8 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5f3f870c tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6ffeaea6 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x716f059e tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8290a85b tee_shm_get_pa EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9bddbc3c teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9c18ab33 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa2013c07 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0xaca1b5e9 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb0579ce7 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb1d9d684 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb4d911f1 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xc2279301 tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd499842b tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xda695f31 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xeda500ad teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8a6fd12f tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8c3ef40d tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x90efba7a tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x96aa70c2 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa3ad1660 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa4d2059d teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb24308a9 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb351b084 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbba99ee5 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbcb2fbde tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc08451f7 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xeb1a5e90 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf2b4b9f4 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf7a7980a tee_shm_put EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1a38e6f5 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x07f0c7e0 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x083cff01 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x12baf60c tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1db051dd tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1ea66995 tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c953e26 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2cc90d97 tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3664b570 tb_ring_free EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x555f9008 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d7c4514 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4036e3ae tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4310f5c0 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x54aa0fcd tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x640b2fd3 tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x691b1887 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6baac81f tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x66629b96 tb_service_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ceee74b tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7d2644f2 tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x85f5222a tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7c559f30 tb_ring_alloc_tx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86166e8c tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x896307a9 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x883d71a3 tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x908bb6fc tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3962c52 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9a8bd3e0 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9f4cc7aa tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa88d1b95 tb_xdomain_release_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb8188cc8 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb8ea9e8b __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbab26564 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc5f82814 tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc64da6ae tb_property_find -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd1329e50 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd3be5be6 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd8f67a6d tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xddddee0e tb_xdomain_find_by_route EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe2697cd4 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe5ae1eea tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe67e629f tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe953f635 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xed4d6495 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xed6b14f9 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xed011d28 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf0176003 tb_xdomain_lane_bonding_disable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfa2ba8a6 tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xff0bacdc tb_ring_start -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x05ad9095 ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x16794f6e ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1e4eb1fd ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x23cfd025 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2d8a6dca ufshcd_system_freeze -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2dffc3fd ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3b950c1e ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3dab9556 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3f456f24 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x458b77fb ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x478c1a64 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x48a4fcb3 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5285a136 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6c3d1200 ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf46a1082 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf7618d08 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf94bdace __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0e05fe61 ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1dd5663a ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x218cf679 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x21c361a6 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x22b68a82 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3bb9cdc2 ufshcd_mcq_enable_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x401d4683 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x417923f2 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x44ebb574 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x45acb522 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4d8db368 ufshcd_mcq_config_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4de2f5f7 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x541ed3af ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5ab015a8 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5f222676 ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6dde4d72 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7080dc08 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7166e69b ufshcd_config_pwr_mode EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x74e35de8 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7b76b497 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8206b67f ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x824e9afd ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8c18a8a8 ufshcd_mcq_poll_cqe_lock -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8d603ab2 ufshcd_system_thaw -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92197381 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x98e02ff7 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x99038190 ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9bcf24ef ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa004a466 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb2fe3125 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb362aaf2 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xca6ab0ab ufshcd_mcq_config_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd25b525c ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe5a03ce0 ufshcd_mcq_enable_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xeeac4bf5 ufshcd_system_restore -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf77d8369 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x412079ec ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7e98d0c4 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x93c402b6 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9595374c ufshcd_mcq_poll_cqe_lock +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9eed5f36 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa5226b6c ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbd4ae5a7 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc263fbac ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdbeecde5 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdc8f838d ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe3eba89b ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe4a7ca08 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xeb7f4452 ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf20d4088 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfbcf75c6 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x155ef917 ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x8a6787be ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/uio/uio 0x10c6496c uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x26d7dccb __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x6af2fa41 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xd9bbf445 uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x43e3dc8a usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x59fe02b2 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x02c48d91 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x08cefa43 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3141b603 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x70a5ce5d cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8c8a38f5 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8f8d0166 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9c511422 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb3559912 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb876157d cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x059da0d5 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x456d8d70 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb9b13961 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb9c371c1 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2b675617 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x37b2ce30 imx_usbmisc_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x765cb37d imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7bee325a imx_usbmisc_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb65c107b imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd0e42d70 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0c6dded3 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x292f0ccf ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6c8d1739 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc52fe121 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe3f8c6b4 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xefa168b0 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x169628ec u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x218a0602 u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x271d8fb7 u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3208c44c u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x36491fc5 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4b54bb36 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5244d47b u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5bff9649 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x706ce15a u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7cc89b98 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x85a3e940 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8c3ff02b u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbfc55ad6 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdb45d570 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf589714d u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x03e6fe13 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0fa625e8 gether_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x10fe07f4 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x13186a92 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x272092ec gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e624930 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x40ae902f gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x45f0b5e5 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8177c5ce gether_disconnect +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xf75a8985 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/uio/uio 0x89f8fbeb uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9899954c uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf4822a36 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf683549a __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x50f4fd41 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9662fd27 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1510d97c cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5329f723 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x53d3f37a cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x79f59340 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7e14bc75 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xaaaddcfb cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb6f8de21 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb7203222 cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe4337e45 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfc8689b0 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x45edf069 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5b4d40e3 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x75c625e5 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xad2fc94e ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x020bca0d imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2eebd200 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8049f861 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8421382f imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb3dd3954 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf625d38e imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x00c3850a __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x502e99d3 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5db84585 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x732f6033 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8ee6e8d4 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcd1bf4a9 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1b46e72a g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x26b1d617 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2ace1fdf u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3db3a1cf u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x40f5a726 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x613381f4 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7cb4b0e6 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9db2c9fc u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa3621ea0 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xace41a5d u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb313bf39 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcae8426e u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd198d6a8 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe13bef71 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe553a3b7 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x005dabd0 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01ebeb76 gether_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x032f8373 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x21926036 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4224d31f gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x46742bb5 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4831c510 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4d8c9680 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x610a6db2 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x688292fc gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6f74534e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7316412f gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x83492ba0 gether_set_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9457628b gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x96db1980 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8361026 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb4606dd9 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc023af9c gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc4d8a0fd gether_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc562cb4b gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcda58ee7 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcf4b915f gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x282010b1 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9a3ec350 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa17f0a14 gether_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8adba95 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xafa09a1a gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbbebd218 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1bba9e26 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3e62febf gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x45a7ddb2 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x54657b49 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77dbf841 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x924cdf1c gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa18ee0bd gserial_set_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc5a348ea gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xeb17b00e gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x453ff0f7 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd52294d4 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ed48398 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x253a0ef8 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9634c03c ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x004b6f57 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x105cfea4 fsg_show_inquiry_string 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 0x1a222742 fsg_store_forced_eject 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 0x27a4ce16 fsg_show_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x422886f4 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 0x490c22d0 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4ac78ad0 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4bfe5e98 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4b60a1ad fsg_store_file 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 0x5dc3c311 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x62fc96c8 fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x63089ab6 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5b8deea7 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 0x6d12f21a fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7444fd1c fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6c7253b0 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6eb35bce fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x722e8300 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 0x7fccd784 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fd7a21d fsg_show_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8db52f69 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 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0ab970 fsg_store_inquiry_string 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 0xab6c68ac fsg_config_from_params EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3de1137 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 0xc62eb4bb fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbc6311bd fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbdc83f2e fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcb12afd7 fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd4ca56e5 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xda184501 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe64e5f32 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf31749e0 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4af0de6 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc944c92 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf223e5ed 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 0xfe148ea5 fsg_store_forced_eject -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x13bde2a6 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1d69a921 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2dc93f8d rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x30cc4038 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5631c54d rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85010e16 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x85aa0aac rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x87018d4d rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x99ce66e0 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb7e6306a rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb8cc489e rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc3bb5070 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc70a969 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe13e4ed6 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf42abd9d rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x055ce28a usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09970d08 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x10fad80c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x197ffc4b rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2aae9634 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3602d59a rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3ac5a56b rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x42529c38 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c4d00f9 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x93d33b6c rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa6b4186c rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb0aecde7 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbeed8d93 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcf803cc9 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xddcbd0aa rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe9f38e80 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xede7a2d9 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0a51ecce usb_string_ids_n EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0cb7e477 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x12510db8 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19a6a056 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16ed3566 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1707fdf6 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1e642133 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25561b38 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28112639 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28d1423a usb_composite_unregister EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x347e854f usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3886ead1 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40d7e51a usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a398d49 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3598c40d usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3cfc96cd usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4402489b usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x451ae20d usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4927a7fc config_ep_by_speed_and_alt EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61a6e79f usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x65b2eddd usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x671a3cae usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f24c336 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x75eb0e41 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b626b64 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d8b9ced usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90329fdc usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9404f1fc usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x958e7be0 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d8c876e usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52d911ef usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6481c4b5 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x665fbf3e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ac3c673 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8709138e usb_string_ids_tab EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x982cb36d alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a504b27 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa23153a6 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa426ff64 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa43531df usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa5171dca usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb61477f9 usb_func_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb7f00ea7 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa86cd31 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xafc25985 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2d7b1ed usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd4c26bd usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbde59bff usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf2a4057 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc4e2fb44 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd225cf09 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2d9b59c usb_put_function_instance EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2f3b39d usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4a4d709 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd646a60a usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdeb28f9e usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe1f6ff59 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec9afb48 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeea065b0 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf3445700 usb_function_activate EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf483f6ad usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5747ba6 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8beff6e usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x068930ae empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x40676a4e init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfdbbf387 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x03ef7ebe udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x147dc15d udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2eb562fd empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x413379ce udc_basic_init EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x635bef65 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6868b47c udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x99ea79a7 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbbec9235 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc3677748 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xea56c5a7 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf0ebea3d udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x931e20ca renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x60981a63 xhci_plat_pm_ops -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x8522c2d4 xhci_plat_remove -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xe6846464 xhci_plat_probe -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x0241e434 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xe84e0062 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x53c47bf0 am335x_get_phy_control -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x3dcf2687 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x72a138a9 tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xbf832828 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xc2f9cf8b tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xc31b57f7 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x012ad46e usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c019eda usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x23608340 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x381f9371 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x40c58468 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x43f34216 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x45ea3fc5 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x461f5595 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5049aa34 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51267e95 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f8afd94 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6fec0336 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x952677f0 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9fb47905 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa5af7a87 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaeb2bab0 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5389ddd usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd61217cb usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe388c97a usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe74a03c4 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfaf50077 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x4678fb94 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x64fa950b dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7a9f1a91 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x83d4a9ba free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa48184b3 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb0f26274 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf98ab8bd init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x7ac48c55 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x17d776e8 xhci_plat_remove +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x588dc7bb xhci_plat_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xe4b33da6 xhci_plat_pm_ops +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x631809dc ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xd2dc9fb4 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0xe0f57492 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xd89d9b49 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x8b5cb49f tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9f719b42 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xcd2fb67e tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xd8b8d178 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xd781c27d usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x154491ea usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16b69d88 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4fcf95cc usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x536dd5b3 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5e1d3070 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6333195f usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64494b88 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6bc49986 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x76395b52 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x791ccec8 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x79d69c24 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b054720 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90f5dca9 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x92bc7046 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x92ce1b65 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb1395a53 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb1fd6ac6 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe3845152 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe898dacb usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd5c338a usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x5ec3cb7a dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xde2b1336 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x2a43062b tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x9f83e900 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs @@ -17033,10 +17053,10 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xccae5632 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xd680581d tcpm_port_clean EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xda86a83d tcpm_port_is_toggling +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xe01bb5e0 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x00f11f7f typec_unregister_cable @@ -17127,133 +17147,133 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xab9d6643 ucsi_unregister EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xad8eed90 ucsi_connector_change EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc93a71c6 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x22346465 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x392299b2 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3ef54541 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x668a277b usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x76c9e9db usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x05aab517 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0c41170c usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23941c7a usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x269d0787 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3a1cedf6 usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9f036df6 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa29c5246 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc0751c0d usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc44eb94c usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d53a59e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x943ec265 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9d687bba usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9fb20a9f usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbb3dcfb9 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbf3f882b usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc2e00005 usbip_in_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd54b5328 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe5198bb7 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf3c73056 usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfd2bc203 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x47812baf __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x52e58427 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6970d57d __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x78dce821 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7b3daa17 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa6d21c42 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb365d31d vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbf7b8791 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc07438d2 vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcfac8e28 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd3630f02 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xbc080808 vdpasim_schedule_work -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xfbbc5364 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x023eb918 vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x243840cf vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2a35114e vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2d5d9461 vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2e8c82b1 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x37643fb5 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x404ab3e7 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4c191d5e vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfd3bacd2 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x173fe77a __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x27fb2110 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x57ac14ad vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5af1ae38 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x671d0a91 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x69daae83 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x85e7a651 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa0e151be vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc10006ab _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe87996f2 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfafa276b vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xd1c16786 vdpasim_schedule_work +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xf34a077d vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0335f141 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x08664fb4 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1423e81a vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2a73c2c7 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x348c630c vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3e9d343a vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x412cf9e0 vfio_pci_core_finish_enable EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x794e6233 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9163c2eb vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcf4b3233 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd431c801 vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdd816d58 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe390d324 vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xebf48d42 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xef19a92e vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb6ac414 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfd1666d9 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfd8c475a vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x02c93ae1 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x03834885 vfio_platform_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x25f1f4d6 vfio_platform_read -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3c331b53 vfio_platform_init_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x65c987f0 vfio_platform_release_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7f523cf3 vfio_platform_open_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9131f290 vfio_platform_close_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x93eb5046 vfio_platform_write -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xb6d630a9 vfio_platform_mmap -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd282ddc1 __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x10269728 vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x18ae99c2 vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x20f788e2 vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3832dab6 _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x395454b6 vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x42020aa1 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x551e2347 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x58d36b54 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6fa527dc vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7f87d74c vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x81f61d2a vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa82805b1 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc3c5b8c6 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc48bc450 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc79ff6bf vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd94aafe7 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf25810da vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfd6c0dbd vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x36fad861 vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3a252bcd vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x5d9b0837 vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6d2b25f6 vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6f2fa4f9 vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x98e17957 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa2f37aad vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xaddf7703 vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfa5a3e73 vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xfb6e1dae __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x01a9b514 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x08f8f476 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0f77ca06 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0f78da04 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1bb92f95 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x293a6a7e vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x322792fd vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3dc20a7f vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3f0daab6 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x40d211eb vfio_iommufd_physical_bind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44b83e00 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5c4a47dc vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6641cd5f vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x677f529b vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6d481dc0 vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7751713b vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8cdec4c5 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x50573f05 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6bee665d vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88124c75 vfio_iommufd_emulated_attach_ioas EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9bc14c6c vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa910b074 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbd0d57b2 vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc61ba5cb vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd0177bc9 vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd6fa1445 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd71f4e9a vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf425cc75 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf5b9c6ae vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf87aec63 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9c818dcb vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9f7f179c vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa51436dc vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb22a803e vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe1d309d0 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf523dee3 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf5d5a4e3 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfcbcb7a1 vfio_iommufd_emulated_unbind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfe2eae00 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04282af1 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05be3470 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x091fbe92 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bc407d2 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11e6041a vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16843f9e vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e9029b2 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f935170 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31007ab4 vhost_vq_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37d39b81 vhost_vq_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4bdddbe1 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4dafaf45 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b5d4a20 vhost_vq_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x623c98f1 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7022b231 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75eb0671 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x787944fb vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7bfbb123 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x813ccfb3 vhost_worker_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x830d4ef2 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89c1de12 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8cbaf5fa vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x907d5906 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93c0c98f vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9515c303 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96dda290 vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98603cd3 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d288ac9 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e2d9ebc vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa66c4475 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x006c5c8c vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x050f8b76 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06e9edd8 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x108adcab vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10e47764 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e03b361 vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x29878a0e vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c502920 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2eb282cd vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fab8961 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40c213d5 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4d6dcbc1 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5601bfaa vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57e46967 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e392cb5 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x66aff8ed vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6cf7a825 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8132c0d7 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8174f27b vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8708d8b6 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9091b010 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d88dd84 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa630605b vhost_add_used_n EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca562767 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcdce9675 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd204e380 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3ec8e5e vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe3325892 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe49434d3 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5162f34 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xebc718a1 vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed6b870f vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf08afab0 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0c874da vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6ffbacb vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaabeae91 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xadb99be8 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1159ef8 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb275a3aa vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb707bb49 vhost_worker_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8ddea7c vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbaaf94c9 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc165f997 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3a268c8 vhost_vq_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbd0c8fd vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd47f5aba vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb026135 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc8c9e59 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xddedbd35 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe181f828 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedd9d204 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2085b09 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfbf89b67 vhost_dev_set_owner EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfeadad28 vhost_add_used_and_signal_n EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first @@ -17264,20 +17284,20 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x231044df ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4a13d16d ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x665f2019 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7ed01c8c ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xba294d29 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc22ee244 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xeea93873 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa7fc3f8f fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x613ba5f6 omapdss_of_get_next_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xa2e7b2ed omapdss_of_get_next_port -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xd8fcf492 omapdss_of_find_source_for_first_ep -EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xe25994c0 omapdss_of_get_first_endpoint -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x67df03f7 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe7d9316b sis_free_new +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x04a98278 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1a644b54 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x340f5a90 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x47faefaa ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x506681b1 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x552cf67c ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe2364fb5 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x43eb3a55 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x5225375f omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x75cfbd5c omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xb5bec659 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0xbb6072e8 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x2b92fb63 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x9cbe6f1d sis_malloc_new EXPORT_SYMBOL_GPL drivers/w1/wire 0x04dbcb06 w1_touch_bit EXPORT_SYMBOL_GPL drivers/w1/wire 0x279b029e w1_reset_select_slave EXPORT_SYMBOL_GPL drivers/w1/wire 0x3496f589 w1_touch_block @@ -17290,368 +17310,368 @@ EXPORT_SYMBOL_GPL drivers/w1/wire 0xd99c68bd w1_write_block EXPORT_SYMBOL_GPL drivers/w1/wire 0xe366f7f2 w1_read_block EXPORT_SYMBOL_GPL drivers/w1/wire 0xf54f0dfd w1_write_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x02f12d70 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x11627045 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x62be339c dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7c19f3ce dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb2cf9275 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xeb5f851a dlm_posix_lock -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x06cfdd6f nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0b216fc0 nlmclnt_rpc_clnt -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3193b86c lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3b567c12 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x880a4158 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9aca38bc nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3b41835b nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x627efd20 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x804f889c nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8198b091 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96fd3f64 lockd_up EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa24c5a42 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb3f17d7f nlmclnt_done -EXPORT_SYMBOL_GPL fs/netfs/netfs 0x6b36a7e0 netfs_extract_user_iter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00340a75 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01118bae nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01690cd7 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x018be7c0 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01aca384 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01ed7f17 nfs_sysfs_link_rpc_client +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdcbd2af2 nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe76ff801 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf06a882b nlmclnt_init +EXPORT_SYMBOL_GPL fs/netfs/netfs 0x67aa3f2f netfs_extract_user_iter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07399f35 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0957f6b2 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ebeb4ab nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eea2eed nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05d86aac nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0877b4e0 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x094b6dbd nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ad99fe8 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0afdaacc nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b9c4e35 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c55248a nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d585d0d nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dbe410f nfs_read_alloc_scratch EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13dd2a35 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b75e2ea nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dcebd7f nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f7e9822 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20c795a3 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20eccde5 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10d71cd4 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1161367e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1308d5b3 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x166e8784 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16e0a55c nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18b1ea7e nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b3decae nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bbd8f8b nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c2181a5 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cefff41 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21210809 nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2377660e __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x232628f7 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24c59aa4 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25aef9ea nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x267a7f11 nfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26bde28e nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2774295c nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x279716c7 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28fac909 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2939f6f0 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a58ff16 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2db88803 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x310e943c nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e5b9d7 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35cb0f05 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x376a9fea nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39b43299 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26ad1f3a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26e33590 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2706a8c5 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28bfb964 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2966d202 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29f68efa nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a373ee1 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2af1031e nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c96a5a4 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ce41c29 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d236aaf nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d3120da nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e5ef8e8 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb4c95d nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x305d8234 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32f1c735 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33887db6 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34cd1ce1 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3660e8d3 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37a3805f nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3addcf7b nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39f7a49c nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cb0516a nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e6305c1 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3efa14e0 nfs_mknod EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4016b70c nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x407130bf nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f722fcf nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4165dc39 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41c7e889 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42b0e000 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42583fdf nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x465238ad nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48802d9d nfs_sysfs_add_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48a5d7d4 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b6a9f80 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4433f1f5 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44aa0c5e nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x455d6318 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c3f1982 nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ce7b7a0 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d809f2c nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e3d2dc7 nfs_file_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e48ddc3 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50758493 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5161f475 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e60bd86 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fa671bb nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a4c56b nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5256877d nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54ddd36b nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57c236cc nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5222386e nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52c1ab58 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x548cb9c6 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x569e968f nfs_mkdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59ba03ff nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a1ba1dd nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5db3d8d0 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5eac7034 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6567b058 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x666d8b4e nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x686a5c68 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x694bc916 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d11084f nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6db546d1 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dc2d5b6 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dddf2ef nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e08c196 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x585c538e nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x586c5854 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a447772 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a631a12 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b3f90bc nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68df7208 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ab0e43b nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b1f3272 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d6d2f75 nfs_path EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ef8584e nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fc83254 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7072685f nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a46eb1 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72654c09 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fce101d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a9d3d9 nfs_write_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76a185fd nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77cab258 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e1f4b04 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f119294 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8174de53 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8312f2fb nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8326bf3a nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a976417 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d2d43b7 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85cc6024 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88a0f407 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8985a951 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89cce1d8 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a516f05 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c253e2d __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e141b7f nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8539e8e2 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8768b26f nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87b029cc nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89c140ca nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b8e9a2b nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8da44939 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8deea805 nfs_sysfs_link_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9175337f nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92fcafd0 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x947cbc62 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91dbcb89 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x924ad3cc __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94146be1 nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95c5fae8 nfs_inode_attach_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96d28920 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9753e3e3 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97163052 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9785d878 nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0e4ad5 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ebc7059 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f9a93db nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0375ff9 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0b2e1cf nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa20d2a8d nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9953fa4b nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5999be nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d40d89a nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa22dec7a nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa488c973 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9fc7fa9 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8f17c64 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab22617 nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabc36f2e nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeac90c6 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1201655 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb54e7401 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb68ff7f3 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb74d498a nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7cbb0ee nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb813addb nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba6f5084 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb1475a3 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbce394b1 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcfa9aad nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf741a86 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc09cfe3f unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc21f15a0 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc331c234 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac28aaca nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad997209 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0eeeef2 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb24a55bd nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb35a8776 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb36b0490 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3a65483 nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb40420c5 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4d36167 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7edbe8e nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8438a06 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9c6056a nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdeeafc7 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf7c4d02 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc176e79a nfs_initiate_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4b6bcdd nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5104249 nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc56c42f4 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6189c8c nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5547398 nfs_sb_active EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7dcb024 nfs_read_alloc_scratch -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8ba6e37 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc96b6b3e nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca442348 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca9a4d38 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc5d175d nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc0b9c1 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd614cb3 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf4f6c06 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd258b10f nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2908611 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd810ad4e nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9ce9d4a nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc800b111 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc84f4f3e nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb3b28fa nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd09f1637 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd28c045f nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd29d0ed3 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd32d778f register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3680d85 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd41f0ff3 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd734f322 nfs_invalidate_atime EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc0219c6 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc652969 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd359eab nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0644938 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe108a1b6 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2f767d8 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe369516d nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe82bbf61 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9500861 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb21411c nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc6a7a62 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd06f6b7 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf7a10c6 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0a1defe nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe421c819 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8160d9c nfs_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe95ac8be __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed63910f nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9710280 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe974d37e alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9fe7102 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeadc8e78 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee411d45 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef05b64d nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3db6c5a __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf404cc4c __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf40acdec nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf664ce90 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf67b8578 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf68978c1 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4805619 nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa580160 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa78d054 nfs_mknod EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcdd700e nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfde58560 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xdfce6171 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02b30112 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03b9b4e1 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc7cd062 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd220e6d nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff9f61d2 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffc58ba3 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x2d9c01f0 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02cb6350 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x064992d3 __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07a644b2 __tracepoint_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08be8173 nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b603239 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e11a510 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ebb836a __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f05a446 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f5cace9 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fe785c3 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cac3059 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cfd0fbb pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0edf98a4 pnfs_report_layoutstat EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11dc9b90 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11f324dc pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15594678 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ef7ba26 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fc920d5 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x228d742f pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2322c4ae pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15ac7127 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1a7eeb89 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ac0bcc9 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b78e7a7 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d4d9cd7 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f0387ad __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2158faa0 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x218ae01a nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x258a709b pnfs_ld_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2da822c2 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x305b6b8f pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29dbb7b4 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e0f21ee pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fd3e3ff __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30c68d23 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32292203 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33df61ff nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31d4d9cb pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31f982a1 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3399c371 nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36ae6e18 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39049ecc nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3939079f __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ef76083 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fba3d92 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x423de825 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38a9a5e4 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b63ac80 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4077017d pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c50e61 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4604eef1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4789233e pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48b06478 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4af67a3e pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ccc6daa pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f94ece2 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53204874 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53ac8f2a nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54b01841 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5778a0d9 pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x584644db __tracepoint_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b9a9aea nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d2ce52a __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fb16636 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fc5d43e pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x675b9462 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d42c725 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6260f71f __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62ec0e18 nfs4_schedule_lease_moved_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bf9f24d nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c5f0e4c __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a2a96d7 pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ecdc153 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x711e1e99 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x727f37bb pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74f1ffa0 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x758fa020 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f256078 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73b8b6af pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x770b9de9 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7800e59f nfs4_find_get_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x794f337d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a211917 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x824b508e nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85cf712f nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86d6e781 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8eea6f85 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94670988 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94703ec3 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94a4fced pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c8cb455 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c97e409 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d481fec __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80ee195b __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82cc66c5 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83062886 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x838a6d09 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a4fda47 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a69b4a3 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e6ee53d pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9037190a pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x916dbd54 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x919ed6c8 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92e62ba3 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96883ca2 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a0aa79a nfs4_proc_getdeviceinfo EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa144c240 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3b3b683 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5c86ca2 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8c1d904 pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8f68b39 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa91443de __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaff4beb0 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb10bb60b pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6e36b09 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa38f3ba3 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa7fcca60 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa91b0d7d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9abd22f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab711311 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb682d46b pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8e8fb86 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbaf49400 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb8d29f8 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe6cb7cc nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0db1140 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc345a145 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc54041aa pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbe06017 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd1f2118 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc08f63d2 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc326c324 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5d9bf35 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc661bd37 __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca0cb6a5 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb38ef5d pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf2978b2 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfe26f22 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda1e0001 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcad92882 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3b293c7 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd51c7325 pnfs_alloc_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe206bd2c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2eb7157 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0aa2c7c pnfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe41bc088 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe44b1d7d pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe507880c __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe52f9969 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7406b2a __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5495f64 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe888f6b3 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8c298e0 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8cd8eab nfs4_schedule_session_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xedde5636 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef86fa26 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf20f80d3 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2229b8b pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee61c15f pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf187f9be __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7677e61 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf91b1694 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9c574fc nfs4_test_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb40f502 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfccfd01b __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfcf37760 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfebcb9ae nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffc558c8 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd9d34bc pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x136cb585 locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x74cdce37 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xfacbbb0f opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5df09c63 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb38d3e61 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xceadce02 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf37b5a49 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x7d8528f7 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x04d7739b o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x71904b48 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9678ae37 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa30c56ac nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd1426ac8 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xc30e5c51 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x04f14d54 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0c5464f1 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1fd4c60e o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x364f639b o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3e7f6915 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4624c63b o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4af1e55c o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9c0858fd o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6c1a148c o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x828cdf7b o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x84bd2e73 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbeea604b o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback 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 0xf982e6db o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfdb0aca0 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfaa7d308 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x320f38fe dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4bb37ccf dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x606931ae dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x60f36953 dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9c47e948 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa091005d dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbc555b88 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaa468020 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc6bd1901 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcacf642f 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 0xe7bf8d2d dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfd887bc7 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0c4b3219 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2880fff4 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x37febd3e ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d4ced08 ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9053bc98 ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbe595a47 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf056f017 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfc71a591 ocfs2_kset EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x6d9bd2fc unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x8c8c9d72 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x24b18b5d unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x46522877 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x4ac8683c unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x4e33cba2 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x95872430 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xd26a19ee register_pstore_zone EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xabd9af6d cifs_arc4_crypt EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xc4c73891 cifs_arc4_setkey EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0x798f3830 cifs_md4_init @@ -17669,1077 +17689,1077 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x154fd927 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x57cbe95c notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x90d82331 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xa5c2ba1f notifier_err_inject_dir EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc 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 0x39a7ce3a raid6_call -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x372269ba lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xac670b3b lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x1263f612 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x44a58158 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x780d60e6 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x9899da97 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x9c8db53e garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xacfa428f garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x045845fd mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x2b4388f4 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x2ef3c2e3 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x2faf4eeb mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xc0d1c509 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xde740ce7 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x03dfed45 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xd03c8e3d stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x14837de7 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xa35540c7 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xc2bbd3f5 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xdb7eb3bc lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x21f1df83 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x754faef5 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xab2cc69f garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xba1cc14f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xbb8dc5f9 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xe53f353b garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x0ef19eb3 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x4a90fd33 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5b027010 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x60b493fb mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x7cf2fc84 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xefb1bbf7 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xe73d590f stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xeb998e85 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x71c6213a p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb9632ae4 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 0x6817ee6f 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/ax25/ax25 0xaf8a0eef ax25_register_pid -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x33193aa6 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4345c364 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x44bc1d8a l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x58349bc8 l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x625a40ff l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x760d2bdb l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x847e7d5c bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd7da9d37 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeea5d3d6 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bridge/bridge 0x00e8a33e br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x015f88c5 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x13cc904f br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c83a752 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x314b3566 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3e02fd33 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x480141f2 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x50d678c8 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x55556e22 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6213f6ce br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x65de1eb0 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x67e08d0b br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6f77d779 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x78be6131 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b2439cd br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb248a1e6 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb7b46a67 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb9a6bc93 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbd5eb9c7 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcaac4034 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd4ffbcd1 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe6e93f0b br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe8b79cca br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf18aad2e br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfaff9d84 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/dccp/dccp 0x03bcc7e0 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c5439ae dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1078efd0 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17c4d157 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17d31d03 dccp_destruct_common +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1702fb76 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x29c1772c l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4eea6abf l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7541b119 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7961179e l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb3f89328 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd6b4af79 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeecf5b35 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfbc264fa l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bridge/bridge 0x12d24849 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x28615a0f br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2a2e4c27 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e3dc957 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fb81efb br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x51fc1d7a br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d76aa9d br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x691cd7ae br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x71e7ce8a br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x76b24e45 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x82590a02 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x834ac510 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8488947b br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb61dfd6a br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb6f071c0 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd153a4b1 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2c8d033 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd4d3ac42 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd5b49f0d br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd98f4566 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdfa12b52 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe05ad5cc br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe500b730 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xea4de35f br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8af83c0 br_mst_get_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0055ac1e dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x012d6b7b dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x04acbda1 dccp_feat_nn_get EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x25d647c6 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2768890f dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x29b68269 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c7106a1 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x419dca5a dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x42c6cc3d dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c205713 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e14d8ce dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28eaa2c1 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b3e7777 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30a90b8c dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3684271d dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4790e7dd dccp_setsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x522fe4c1 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x57299979 dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x59d7fd61 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x603b3744 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x69be503d dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x72a52bdc dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5add4a85 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d95a8d4 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5fe22523 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6670c013 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66a11afb dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x689270bd inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69e0dd5e dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name EXPORT_SYMBOL_GPL net/dccp/dccp 0x87b1a7e0 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x89492bca dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ce5e389 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa01cb6c6 dccp_rcv_established EXPORT_SYMBOL_GPL net/dccp/dccp 0xa03a4174 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3761a58 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb53eec5c dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6393c0e dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb84fa92e dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc3ea1bc dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc005b923 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0e15512 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc57d75d2 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xce21fc71 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd0f73373 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2bb2ba4 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3492084 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xabab7102 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae36fb90 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5fe7625 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3076454 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4499863 dccp_ioctl EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0d54239 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc4d993c inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x31cd6c23 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xac2b92d1 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd8c8e0ad dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xde04834e dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe549a629 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf8a47217 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp 0xded7c559 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5d8a702 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe79be4b5 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7eb88a4 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee3ce52b dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee627c5e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf819113a dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc61a883 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1d33f3c7 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2b792bec dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9156463a dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9dcd8351 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa2453813 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xacbe39de dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x06c04e98 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0869a6b3 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0af11f8b dsa_devlink_params_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fb597b5 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x115b8058 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x13a05428 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2475050f dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2e7c6784 dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x31d1c1af dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3f2eb82f dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12ddb077 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x147bbb70 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x20c782ed dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x29216141 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c2252a2 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3d5cda70 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3f3ed732 dsa_devlink_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e570dc4 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x60571aa5 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62e090a6 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x661f30cc dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66e7def5 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6dbc0e28 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x753f7dae dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7c43f35b dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7dd1b6ff dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x827f6990 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86ff1521 dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9910b5d1 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5980f590 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61308057 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ca346ef dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d5686ba dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7e9c5db1 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x80c92616 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x968798c1 dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9f6bb00b dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa368a8e6 dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xab4d44ff dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb87d05bd dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbf4647dc dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa3c8b7c6 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa94f3fa9 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc18f069e dsa_switch_resume EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcef8e6ec dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce18e88c dsa_devlink_resource_occ_get_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe4c1444b dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8e6741d dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdcc1c615 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe4ed8646 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeb1fb109 dsa_tag_8021q_bridge_leave EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf1fb9740 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf22756c8 dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf606bbcd dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfcb7ed87 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2aacd1b dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf59d6357 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfc7977af dsa_devlink_resources_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x089c2365 nl802154_scan_done -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x132282de nl802154_beaconing_done -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1e2ada2d ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x56056ff7 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7a0bdd6c ieee802154_mac_cmd_push +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfdfeffea dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfe8983c5 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x02435562 nl802154_scan_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x357dc46b nl802154_scan_started +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5a58857b nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6089be5b ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x64a70457 ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x73b293cd ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x803a7ed2 ieee802154_mac_cmd_pl_pull EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x99f6e0f5 ieee802154_mac_cmd_pl_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa908fe2d ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcdfa4f8f nl802154_scan_started -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xda394929 nl802154_scan_event -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdda2826f ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xef8f4561 ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb40a0955 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd52db4bd nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf8b2cc27 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfa81eecd ieee802154_mac_cmd_push EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x7bae1952 ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xb14da171 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xb8fac49a ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe164f6a3 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x51c74a17 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8369c732 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8c0ba9c3 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x94ee09d6 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xc0ffdfc8 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x22b9d4ae inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3718fe05 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x452e301f inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5736c167 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7a6aa389 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd4f7aa49 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe37460bd inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe6002070 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xff9915c9 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xbe801cb4 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x03e1fa5f ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e1fde21 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x433c02d1 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x53a5456a ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5823515a ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f1bb7cf __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x668f7538 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b86b03a ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7002d68f ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x73e620e2 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x939fc155 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4e93f82 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa65bcdff ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf69167d ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb31d4b95 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xca49bd77 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe411919d ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf577cced arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xec7ccc51 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x058770a4 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x075324b6 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x18f540b5 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0aade4cd nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2eafba11 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x79bf3698 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7d523f8a nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbd5714c2 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xef1c5c18 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf4af42b6 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x1047e71b nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2f132b3c nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7700fd10 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x78a84a51 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa348aa6e nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xc0852a3a nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0396af1b tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x48a7c08f tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4a903020 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa6cfb233 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf7caa740 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0b4fc4d4 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4613054f setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x70b9ed84 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xba34b2fc udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc0f7ccff udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdd87ef5c udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xeeb47818 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfda0f027 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x2ff04abe esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc5c5b91d esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xde014647 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x64ddf292 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6cc03c88 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa7814a54 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x14221cbd udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xbf78b12f udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xe12bb329 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x122dbcde nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3877e66b nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf12e70aa nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xff2f7eb1 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6f340106 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8371db49 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9ab4b4a0 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc0e760c2 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcce35954 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdf9c28c1 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xed6e786e nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x97204672 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6c3886c2 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xacb98bbe nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xee9a0558 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4296b50e nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf7e6e682 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0da7fc3f l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x275a9a0f l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3cb4051d l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d2c9b12 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59559948 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x61c45bad l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ecf07b2 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x75a8d03e l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x762e0eff l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa4f40d9b l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb05b96d8 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb21dd684 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb7ef0503 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb892be32 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd150cc4 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf1cf601 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe03aa424 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe96c1b77 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xecdbd807 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1f469e3 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff8c0049 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x62a83243 l2tp_ioctl -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2f0d36c3 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0158ddf6 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xbddc80c6 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xea15cb0b esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x62e373db gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xb7d66fed gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0c4282ba inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1e3f843c inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x65cfd91e inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x78a2c374 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7b395e12 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb6b7835d inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc6445024 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdcc948ad inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf4183e4e inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa5e6a267 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x09100e5b ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18bfacf7 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c29fd09 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e15b694 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x288d49a2 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3eee4c5f __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5399347c ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x78066a40 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x78ded316 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa7c10765 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xab92a06b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1354502 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xddf1faa8 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe02aee2d ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed6e4730 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf713ede5 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xff1bcedb ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x23068870 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xca6b7e67 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xa5da0a73 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xaca389fb nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x6bec5ca3 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x013d55a6 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3240fea3 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3e1631c6 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x66ce72eb nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdcfb1af6 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf58b5e4b nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf94c5dd4 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x6e64c0e7 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9b080136 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xbbc40809 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xff47ef7a nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x019b0bce nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x84151f21 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6cbe7f08 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6fc7ef3d tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc257d1d0 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcfc62ce9 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd61fd777 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x17aadfba udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1a9762fc udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x429595ba udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x82f29fac udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa07a7712 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa6de21d9 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb34a534a setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc87232f8 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x19867a1f esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x625df528 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa392cc90 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbdbaf5d0 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe9fd989b ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xff6c3cef ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2a50e341 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc9136938 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x1b5ff5ce ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x103169af nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1583a9c9 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3fe9c6db nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7ab31de8 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x46752891 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x54e84148 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x89ad0be5 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8f74f4fa nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9facc5ab nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc5a06abb nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdd1f1a32 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xe903618e nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2cd1b683 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6a737bde nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xbb5e36a7 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7fedcbba nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x98385aab nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0da8ba35 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e03dabd l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x125fed59 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x266d24b3 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x29027077 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2ad210ad l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b239e40 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e2c582c l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3499971e l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7534a594 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80863c87 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x851fd5fe l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91856d3f l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa1348f92 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb2310c35 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb6a7a499 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd1baade l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcdae126d l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec08daf4 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf377feb1 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfde015de l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x174a9df5 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x053879c7 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12c136fa ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb368e584 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x191f8f5e ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x19c0ee86 ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2136b249 ieee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x25466d74 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x261e86e9 ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3839de9c ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x50da41c3 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f624d58 ieee80211_set_active_links -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x81640fd6 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9583be9f ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27b39a2d wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28078379 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x290cc1aa ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x323c87b8 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3437b196 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e25b525 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5522db2c ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56bd483d ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5fc663c2 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x770d5c09 ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x77fd1af6 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a20c94d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84068d76 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89897f92 ieee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9c76b868 ieee80211_find_sta_by_ifaddr EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f48e8fc ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f799c5f ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad07595c ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb057dc34 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb571b779 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb693b748 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbc44e4bd ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb66b283 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaa707df7 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb7d5780 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc783ae02 ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd93dd685 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdeabd21b ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe540fafc ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe112bb60 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe1412aab ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe713d337 ieee80211_request_smps EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf64afba9 ieee80211_set_active_links_async -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3ac4b73b nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8d8da320 mpls_output_possible +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeec606ec ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6083154 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8df3437 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x45112983 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x79acd67a nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x809d800f mpls_stats_inc_outucastpkts EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa39fdd8c mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb2f07666 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xda347392 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x127b5820 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x195c51c3 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f49d32b ip_set_get_extensions +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc33ef45c mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd78acfac mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1073331d ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x316a75a0 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2eb0738f ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44674d7d ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x51fad086 ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52cca366 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x53817d23 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ceeea8d ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x44718b94 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x53ed1578 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5fadc3d5 ip_set_put_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x683bcc29 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76cab96c ip_set_nfnl_put EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e61203f ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9432b99b ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8212028c ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x866c312f ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f81b8d3 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9fe922bd ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xadfb16b8 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaecd963f ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb694b5ae ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc34ccf47 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc66bfb44 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd0b85f3 ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd69a3148 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x14d6ef41 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x80f9ada2 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcb5ba035 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf34f5770 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0c1f45cd nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb77b0ce8 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd60c47d ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc0f4222e ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe6ee9f41 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf203edaf ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6855033 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf8e4eb02 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb8c0740 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfcb7f0a6 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x31b5ac74 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x50cdc0e0 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf4f799c1 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf5e7cd5f ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0a16e342 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x38f095be nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5aba9fda nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9b296888 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9d70f80f nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8a047994 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8ab2f60b nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb2d711d4 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd23d39a3 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xec68ad54 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0099ff82 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x036df205 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb2f8869c nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04dc5aa4 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05a7405a nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x067c1f81 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b9d422c nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x068e1661 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x071d35cd nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c689216 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fc0fc59 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1145b22e nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1203c789 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13af0a41 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1521ed4b nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16b8f4e3 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x171bee98 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17a757b6 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cebc688 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fea75be nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26cc5c5b nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x277af850 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x280ab0d2 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0be3ceef nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10294a75 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18339149 nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ce7c5c6 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x238a0993 nf_conntrack_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x298d74b2 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cbccfd7 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fa5e95a __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33b23944 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3549be2b nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35df5dca nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fdaa7b4 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40f7f444 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x419bfeb5 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44e3e85f nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d0536ef nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x366af861 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bcdfd90 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44b5fdb7 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45306acf nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x455d8458 nf_conn_pernet_ecache EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4985ca35 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ae63113 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b48fa29 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b6f015a __nf_ct_change_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x510f9328 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51b7dc4c nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5382a77c nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57278fa6 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59f6a12f nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5be262a0 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c410a59 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cb9aa4f nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f4b3d6c __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f9cca5e nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fd57c71 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50803d32 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5373247b nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x538e734d nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x545db4bf nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x561e01f3 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c65c656 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c67b960 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ce8d9c8 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x622da1ac nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66588411 nf_conntrack_helper_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f0d22f3 nf_ct_handle_fragments -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71a854e7 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73b3d6c3 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c4a071a nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x702e8839 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70509fbd nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x705387e9 nf_ct_deliver_cached_events EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cd8d7f6 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ffa07eb nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80770066 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x825f645c nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82ae9d48 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82cee7fc nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83e00d3e nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84b3feb0 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85f8f1d1 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86639d38 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8768ba98 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76cdfa56 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78a252aa nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b638dfd nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81a7a7a9 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8242d313 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83e62296 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89244188 nf_ct_acct_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c6e11f4 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f728055 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8fd51397 nf_ct_unexpect_related EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x904f06b0 nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9859ee9f nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98d35481 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a59dd02 nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b8ccaeb nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa868bca6 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91230394 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94b8cb76 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98bca675 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b7d9c80 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bbcd7e3 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e9a03a5 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1e2e564 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa502cd78 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa63c9536 nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6d6a1d7 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7e31b2b nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9bd59a4 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf48fd9f __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafe7e47f nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0513444 __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0be5827 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1d7f03d nf_ct_destroy_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4dc1928 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6c17c81 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9cd25a8 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb842f2f nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe9bc091 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb41870f5 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5cbdf6d nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb17eb55 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf382b88 nf_conntrack_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1cdd383 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc21b6992 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc19eda37 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3ce0bdf nf_ct_remove_expectations EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca43d16a __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcab8a4b0 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd37d822 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf8a2e67 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd20637cd nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4406410 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5d150dc nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8cd2814 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2f64e1f nf_conntrack_tuple_taken EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd764a86f nf_ct_skb_network_trim -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda91570e nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdea38528 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdebb27e3 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5fe0923 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6833618 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea8ca333 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5849316 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd67d4966 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd88dda8b nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaf64f15 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb74fda5 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdec0339d __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdeedec85 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe13bd6ce nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3702307 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe43cec9f nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4f44a35 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8a3879f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea02afc4 nf_ct_delete EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed89abfd nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedcf8344 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf043801e nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf07c752e __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf10ee7ce nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf252fc1e nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2a84e93 nf_ct_expect_iterate_net EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6a0376b nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xd95f74c4 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8527ab50 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xacafeea2 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x18aee4fc nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7c06795c get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xae8b490d nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x996c0bd1 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1f3ce466 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x45991c9f ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5b6c503e ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5cc54fa0 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5efe4b31 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xec2961ad nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xedb591e3 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xa518d37f nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0f751a8e nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x105dcdc5 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x405a7af1 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xea148a9f nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0ecd975a flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31368d99 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3195db87 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x38a2b63d nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x407a12b0 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x44696cd1 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x52da877b nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5d4aeec8 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6864a49b flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x69c325ac flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x76d26583 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8ba0d3d2 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x941ea795 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x99c6ee78 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb70bfe78 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe40457ec nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfa9e083f flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x105af6ff nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x16960979 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x330bcf0b nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3a099d63 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7d659ba nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8a40598 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xd2785c58 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x339a095a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x2d96a822 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1f093766 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fe43580 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xedaebca7 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0fa52a82 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0d028c4d ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2b9b331f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2f9b74a3 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x66120325 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9542a193 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc2b87aa0 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcf553507 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x73c42251 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xd2109237 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2bd68a42 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x3b5295f2 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xb14719fd nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0390bfda flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0b7588b8 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0c0c512c flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2f31b9e8 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x33242f06 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3ab393f7 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3d4d4be1 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x50d5d6b4 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5961ade2 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6d25ca3c flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9fa331f5 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc02a8e54 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc6c23586 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc75c9222 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xef711c98 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf4dbd4fc nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfa5bb2e2 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00208994 nf_nat_icmp_reply_translation EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3e5b1361 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4852feb8 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5e2aa1b1 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6272aaa9 nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7742cf16 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x79cea8dc nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7aa9c891 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9659e9a0 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96d5900b nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7e6af19 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcd554214 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3e6c39c6 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3f572946 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4e708e8b nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4f76803e nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a793043 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71583e34 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x73b1f4f4 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7ba6445d nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7c186d5e nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7ea40967 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x848e16cf nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa4c6e9bf nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd81bc2bb nf_nat_masquerade_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xda78e78f nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd953c48 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf308e1a7 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0f87b591 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x133f5434 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x13572f08 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe8683289 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xecc4be23 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf1b56711 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfdca95d6 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0697ff12 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0957c0e0 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1010647b nf_synproxy_ipv4_fini EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2a23b865 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4bf011dc nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4f6fc555 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x66e2bd5f ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb8cbf206 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbcddcce8 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc7dc96c2 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6981c15e synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x97ba6cb6 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa70e546a synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbe752d00 ipv6_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe06cccd2 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00c9e4fb nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06ed4219 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ec4e46f nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29a4b89e nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ead56be nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2efb6871 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f789284 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30d4d560 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xce509910 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd8d70279 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe1625f7c synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe58d0d3f synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x003ae3c8 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x019a2a7a nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0605cf48 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ddb5472 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x107b6cf9 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x116be058 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11be1f9c nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x175ee811 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x24003c33 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2af695d3 __nft_reg_track_cancel EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b1273f nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42429cad nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x425cabfa nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4376649d nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45a1f069 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c534a9f nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e7ce7a3 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3fae38b1 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44542b60 nft_meta_set_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4faab797 nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b30211c nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69b299c2 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ede9648 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x728e0b96 nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78f5f3d0 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a627e04 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8023df45 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88911eed nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a515f11 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b921b40 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63ee029c nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6addf2c0 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ec4d01d nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6fc25eb0 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77ef49f4 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78dcb8af nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7bbc0ce7 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x847cab3b nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8537dadf nft_meta_get_init EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8bdd1568 nft_chain_validate_dependency EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d3180a5 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92db1cef __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98e6abe2 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9971a42c nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b807fd8 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c32d298 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c6c842b nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9dc777c4 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d79112c nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8fc00fd9 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x95cbf3c5 nft_meta_set_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9ffc821 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaabac0fb nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb436b155 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5a54f8f nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7c54b09 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc95d2284 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc26883c nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa0fdeac nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaac28f6e nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb185ef01 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9feb4e1 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc31ec230 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce9fb8b2 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd3abd3cd nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd5d9d3d1 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda77867c nft_register_obj EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf14b42b nft_set_elem_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe36d8e26 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe37ebd28 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeaf9da82 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xef4bd8ca nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6e43aca nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1598d822 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5b2a0fa1 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ccec3f7 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7d29c28 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe88bcb01 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf23c31e1 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf761f47e nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9d98707 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x16f58304 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x44d1b786 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5aaf4e2e nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6bda3b98 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9e796ee9 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9f64a0b1 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa1ed2b87 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fe41737 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9dd39df3 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcf1ce083 nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6e4bb696 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x86bdb316 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdcc9e2dd nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5a3f7d84 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc7090dff nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xecf8e329 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfe4c8c79 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc04a8d32 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xdc8f05da nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0397bd60 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x140df1d7 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x41bbac38 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x591dc368 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfc0f1a09 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x6e3a2a7a nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf5c3b4c7 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0756d9eb nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x91184b4d nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xc5f538c2 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd4ee8863 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfb88796f nft_fib_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x435ef360 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6502bbab nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbaaa24d7 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbe6136ec nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xca4769eb nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe5b8d1e4 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x03096f9f xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2505e9ac xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ba66caa xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24602c9c xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31d4d65f xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x329f656c xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x34f477d0 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x35ad0718 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x42315c95 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x447135e3 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46bfdfc3 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57201dc7 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a6631d9 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c0ce2a2 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x670917e4 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6fa2cd3b xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ed9d1bf xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9bd4ca3b xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x925fdad9 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b547f07 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa1f1741f xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaf165334 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb9d9eb6d xt_request_find_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7ffbdb8 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd722d18 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd22a6f96 xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd415931c xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9ad7866 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd4eb7714 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd945d8d5 xt_hook_ops_alloc EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xefe8027c xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf46295e3 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xefb641b1 xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xff26b874 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x2bbccf31 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xdcb2133a xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x38230f28 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x99443e93 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb3fdbac4 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1389c0ca nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x315d7abf nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3c23141b nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x73aa8a8d nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xa5558bb1 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x53f313eb ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5b9c7153 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6ca91232 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x778cd42c ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7ae557d6 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x83d7d97f ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x21b67305 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0x5a8ecbeb psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0x615ffcd2 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xfe85365e psample_group_put -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x2fc45ab4 qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x3d9ed32c qrtr_endpoint_register -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x73536546 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x18cd806b xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x330e154e xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x29c6efbe nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x4586bbd3 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x49d945ba nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7d84f11f nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xbf9931db nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe88eeeb8 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x111ae516 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x1516ed3c nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa1e00e10 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb2bac0d1 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb3568ddb ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc2d53a39 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd7c11d81 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xfb622813 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x66fc1505 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x73699a32 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x773b903e psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xff046199 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x0fb0be56 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x12db8cde qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7ab79065 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x146b11c6 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x1548fc88 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x1699d685 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x25e7d3da rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x2aee8deb rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x0e2b105b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x0e9a572c rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x129b72b1 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x23254c89 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x2a59211c rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2ce78609 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2f80f97a rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2eae86b1 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x303e48de rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x452b55c1 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x3d98c0b8 rds_info_deregister_func EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x460680fb rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x4dadff7f rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x5067bdff rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x526a4992 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x539e56d1 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x57968a3c rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header EXPORT_SYMBOL_GPL net/rds/rds 0x5e2628b9 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x70f3d58a rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x763d08be rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6bc646c1 rds_inc_path_init EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x84a70150 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x8ca0a8e3 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x94b80f8c rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x997d908e rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x9f060ab2 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xb0973e34 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xba6a4cae rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x7ef68fcf rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x818d2bf5 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x8e4ed15b rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x965a017f rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x9ea9d3f7 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xa6950b6f rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xacbb004a rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xc0bcef12 rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc452d774 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xc76d4ea4 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xc8d0a238 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xca42719c rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xcefcd244 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0xcf8083bd rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xd182f6a7 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xead8ef6c rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xf2a38253 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xf3402ebc rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xdb06f108 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xdb0c6359 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xdd3c994c rds_send_ping EXPORT_SYMBOL_GPL net/rds/rds 0xf4c257e8 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf8901ed3 rds_connect_complete -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x2e244609 mqprio_qopt_reconstruct -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x69591cc7 mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/rds/rds 0xfe5f12fc rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xff09c674 rds_send_path_reset +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x6df5053c mqprio_validate_qopt EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3f318d66 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xd8f1862c mqprio_qopt_reconstruct EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xfc1e0cbd pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x75794db6 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x90c2c441 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xd844d7c1 taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xe84c0d41 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x587a54cc sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc0fa76d0 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc86ee3c2 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe693256e sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/smc/smc 0x662a8f40 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x736ed437 smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x834e118d smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xa33eeb70 smc_hash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2b1ebbde svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa17b95e4 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xaf0ad269 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xaf14ca40 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd6010cd4 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0e81925a smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x488fc1d7 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x82441acd smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xa1a4ad5f smc_proto EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4149c86b gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5ac4548d gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x810478d8 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa01d7458 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe6ad67c3 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01732907 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0198d598 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029bb183 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02c056ce svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02cfbd73 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x036ed413 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0515d661 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05594388 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe33c0743 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfcba7c9a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000ef57d svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00c7663a rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00ca8d11 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01d5e4de xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02353dc7 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x039a9f80 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04252696 rpc_release_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06bb0940 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06bfe328 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075c37a8 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x095a1217 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a85c6f2 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b36ff61 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b763a4b xdr_buf_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b84fea0 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c08140a svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c28008b rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e63712a svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e7cdbb9 svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x115e42de rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11c9781e xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x120c72fc svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x142f2c2f svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14ab1d68 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1601c940 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x162c6651 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1644a823 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0de089e8 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0df026e5 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11a14e62 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1398d088 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x143527f1 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e61903 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x150c2605 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x155ede4b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x156a01ec svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x156e43b4 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x170dddb0 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x172a33ee xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cc1b6b rpc_ntop EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x185afeea rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19987bca rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b3d8b12 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b4cfcd5 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd5ce93 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x189d471e write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18e328f5 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d7d9d4f xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1df4ab49 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e103a60 xprt_lookup_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e88b991 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ee900d7 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x211278f0 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21805713 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22816157 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23edd2a8 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2435f9b5 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24394671 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x253ba1f2 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x269ce782 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272c7d32 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x285e1f4c xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e304757 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e75998b xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ec46d71 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21b50b30 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228e1524 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b63e2d rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23182251 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2324504d xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25312fac svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261a59fb rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2758d910 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27eb17b3 svc_reserve EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x292c97e3 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cac0607 xdr_truncate_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d06ce55 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e36615c write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ec3c776 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f366e05 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f37dfb1 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f9a5101 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff25e7a svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a5b0d9f svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b38d9f7 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc30abf xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc9448f cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cef40b1 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d4b54b8 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3028b671 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a6bf71 xdr_stream_decode_opaque_dup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x328d5706 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c740ca rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x348b2ed1 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x353cb69b __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36443cb3 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32e2daff sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x330d51d9 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3371fd4a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33b86089 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33d49a1d rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x343ad6f3 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x344cc988 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35324cd3 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35399e99 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36b46c86 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36b8ae9b sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x379527fc rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37dfbc88 rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2318e5 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0abd10 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b54fa6e rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4cfda4 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cfb1a08 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dca7fd0 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8e3f84 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ef9f76f xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3920f6f8 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x397dd13e rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b75158 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39de215f rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a127b27 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ac42624 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b6ca1f4 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b9214bd xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dfd16ae svc_auth_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44a40e41 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45008ae8 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x452f268b svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4536cfa8 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4709aaa8 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47d00ed1 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a266e8 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49e15b70 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a5f19c6 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40344418 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x403b5d84 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ce30ca rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4114abcd rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4133421a svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429035b9 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43193ab9 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44aa515b svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44bbc4a3 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ce789d xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4586a37b cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4597ffde rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45df0ce5 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ef6b92 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48228e1e rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4868232c rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a133504 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a78b1e7 xdr_reserve_space_vec EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b44e99a xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c247712 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cd2f4d8 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d4dd32e rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b96bfc5 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc07df9 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c3ff373 rpc_remove_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e741d01 svc_authenticate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5047dc60 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5093e837 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51d049c5 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f51219 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52adf8e6 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52f06b25 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5320c5b1 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f5f1237 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e55030 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x512ae086 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51378eaa svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55373768 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58dfe57d svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58facc19 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53de4f8e xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f6701f svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55db93f1 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x563c2970 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59548f7d xdr_stream_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5af48101 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b4af8a3 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c23e619 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5caafda4 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dc5179f xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e545542 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6080ff50 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e5e2053 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e703883 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f5eb299 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fdfcfb4 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x606dc2eb rpc_count_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6132b18b cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b2dca4 rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61ee5ab1 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63b00cc3 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65437aed xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66e24d11 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bb99095 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fab0135 svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x716619ec svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609d988d svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60cf1287 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x628479c3 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64928ec9 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64bafcda rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x697f10ce xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a6a8317 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a71f649 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b1a8090 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bc37840 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d14c9a2 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d36a66e rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d95de70 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ea472b6 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ec40308 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6efaa4ac xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6efc0e86 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f795215 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fc1ebf3 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x701a9008 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7070c5ff rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x722920ca sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72353263 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x723d0d32 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7256d252 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7324cb6e sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x753fddfd xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x758b060d xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d57343 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f7fcb5 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77180911 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d2d8b2 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a10558e svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a243bd8 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a8e20bf xdr_stream_decode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aaf6a99 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b45a49a rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b9fdea5 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bb78b62 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bda097b rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc55ad3 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7204200a xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7243f791 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ac9016 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7408528b rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75e72499 xdr_encode_word EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e44aef4 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f6c4c97 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8164f532 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x816a699a xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822664f9 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82fddc66 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8441781d rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x863c99a7 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x871482d2 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87641e1b rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8769af93 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88153872 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88b88361 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8908259d svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b1fa500 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bea898c rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c504489 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f35f4ea xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f4efdc4 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9cae2a xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff4f313 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x916cedff xdr_stream_encode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91c814c0 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f43c54f svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80eed5a5 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8120fe14 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81c22e5e xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81f0423e xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82460193 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x834e049c svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83ca8e51 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x865a83ca xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8739daa0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88284c1e xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8873ebef svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89028973 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89df5129 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b0abcaf xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b658c2e xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c709870 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbfd4af svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d19f3eb rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d37f9e9 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d4f94f7 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db6725c rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e562a8c xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ee10771 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9141d508 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x914c1d96 svc_fill_write_vector EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9224516d rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92af614b rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94394234 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97d09cae cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9265e58a svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92dcb68c _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93007ed0 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ef700b xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96daf61c xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98980eea svc_xprt_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b30c26 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99520579 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a7632ee svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aca2ae4 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b66fa97 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e9f98b1 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee91e96 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f42a42f xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f7c0a17 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa15b5f81 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3ea3ef2 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa69f5d8b xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7906157 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa79a398c svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa898353c unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9038470 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa940fa12 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa972696e svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabfa50ce rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xade19fc4 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeff13d8 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x995802df cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99e15a4d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99f3fad1 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2fd604 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e6019bb rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e8e6b2c rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e8f73a8 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1daecf5 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2de8538 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa367fda3 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b7ea44 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa81926cc xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa95cfce3 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9818ec6 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9c80aa6 xdr_stream_decode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa866a70 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa981c6b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaacf4694 rpc_killall_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1f93237 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb20828c1 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb23f218a svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3ab92c0 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafe8bc26 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb06ae959 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb18614a2 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb37728b3 xprt_reconnect_backoff EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6aad8f2 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb79fc26f rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb939e5e7 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba1c30aa cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba42b0d3 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaf6d2d7 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb5e2250 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb6cc2bf svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7b8a5f1 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80a86d3 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb82ac4a3 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb871aebb svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbd20246 rpc_proc_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc118a03b xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc169d947 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b0ed8a xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2e4c901 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ea786f xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc40916f5 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4d24615 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5bba1ac svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc20078ac rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc733572a bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7e205d1 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc828ac82 xprt_register_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca0139eb rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb3530a8 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb465752 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc8f36ce rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcda7b517 svc_seq_show EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0aa9a38 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0b1f727 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15a9921 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1f312bf rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd207a817 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd20fe98e xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33c0995 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd470747e sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6bbe07b xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92aa8f7 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a623a8 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b47383 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9da7669 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9f0b529 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda00817f rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfb14839 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0bbe88a rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ff897c svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd37f3c13 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47df4f6 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4f597af rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd76ca265 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd78b8c19 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7b42df8 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9197c85 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda487043 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb823a14 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbb14b21 svc_xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddfb1e17 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde1c02b7 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf549e29 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf5fa773 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe267a07b xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe48c0b47 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4e98bea rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeaddcd6 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdefa3b54 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa5cb93 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0775273 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe247a07d sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25b828e rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f61259 sunrpc_cache_register_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5df57d6 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b9f970 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe78efb42 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe84d59a3 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8513015 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e51fc6 auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe95c348f rpc_free_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec022d4e rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec02a6a6 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec5dcc4e rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed5259b7 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9cc35d2 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb762041 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed11e16b rpc_prepare_reply_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee507ff1 __xdr_commit_encode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1c5dc99 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf28de892 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2913092 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2b0531e rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf35fd4e1 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf63d113a rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6e3595a xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c6c6d1 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d0f152 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f075ee rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f42c8d svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb28a4aa rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdfbb731 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe813d1a cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfec1c82a rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff2a1c1c xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/tls/tls 0x539e5c78 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xb2c2e4ba tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xbbc9658c tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xdccd72be tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef106e30 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef14f78b svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefac78b2 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf27c7760 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf28824de svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4342330 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4522076 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf474b6dd xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5b8a877 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5d9b1a1 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf96eeaca svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde42fc5 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff336198 auth_domain_lookup +EXPORT_SYMBOL_GPL net/tls/tls 0x727593b0 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xa0f05925 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xc7b7e523 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xd04084c4 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x00ca3bb4 virtio_transport_notify_send_pre_block EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x124886d8 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ef5a202 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2fbf4b0f virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32de1a3e virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e1e5767 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x40377162 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41e692e2 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47342bc0 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a00d280 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5118bb7b virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x542800d1 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5629cae1 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6665f12e virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7252466b virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74ee2c2f virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7aa1fee0 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b6e0856 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x90d3f403 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1b60c27 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaee02850 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb5c0e14c virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb707a4ee virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba4cd45d virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1365e2bb virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14c98637 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18ae74b7 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x26d5fbb2 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2a3f0623 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2db5c683 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x36017b46 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cf4587c virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x492a8396 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4a741a50 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50d4afc8 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5361c417 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7bed7161 virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87627eda virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95ca4bf1 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x97d8f5de virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa22b8d18 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab2ddd73 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac088619 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb06c1886 virtio_transport_dgram_enqueue EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe0a061f virtio_transport_purge_skbs -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2f15981 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc58f1490 virtio_transport_read_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc809a839 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc95e4254 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcd4f40df virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7231677 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe912c179 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe91aae46 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9faa6c3 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf881c2f0 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfbb34b6e virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01e0b75b vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbc230878 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbcc42c02 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd950483 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcc95f4c8 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4374903 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4e53132 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5d591e3 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdf0727c5 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8fddfe8 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea74b0a5 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed0ac326 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee5b838d virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf93e56ff virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff914abf virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02b4a037 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x07cb1fd1 vsock_remove_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10ee8efa vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10d52e9f vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x14aeba32 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e1903ac vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2905bdd7 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c7961f7 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3634647e vsock_dgram_recvmsg -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x37721320 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2ca3efbf vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40ef6984 vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44420515 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x484f2ca6 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49103e17 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4627d3d4 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x58e46b33 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x607286ac vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x622308a5 vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x674ca74a vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x700ef872 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x854dfebf vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8b96bf14 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d864c0b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x61758719 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x669241da vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x66fa7b8c vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x75047e68 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7b3dfcbc vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fb185e2 vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa724c247 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa27970ba vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa3a8e25d vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad766b54 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb31b4ac1 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc481066d vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc701e72a vsock_connectible_recvmsg -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcc3e7a97 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd70a0266 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe83fe97b vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe8410707 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xba7b1472 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbb62e813 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc0cd157 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1c05382 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xca65d023 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd443daee vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd49d69df vsock_dgram_recvmsg EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x14b47b6d cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3a4c85c6 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4e19e2d3 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6141c8a1 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x619d506d cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6306e711 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6eee641e cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x71214e3e cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7da87364 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x83b8eff3 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86a4cdfb cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8974935b cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9dfa986c cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa700cef4 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaf6ebf28 wiphy_delayed_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xba6f1aab wiphy_delayed_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc92e4b36 wiphy_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd91c3fa0 wiphy_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf893b9f7 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc0d8393 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf3b8103b vsock_create_connected +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x050b75c9 wiphy_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2335ceea wiphy_delayed_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3b6fe70c cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f5d0621 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x41cd8493 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x472ae1a9 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4d0a4f85 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x541a871e cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x54d5d0ea cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7d5b66f8 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x817376b1 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8c725f42 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x92dfee3d cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e9aad6e cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa07f3869 wiphy_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xad331df1 wiphy_delayed_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbb51582f cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbe3a273c cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde930a1e cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf0ea7218 cfg80211_wext_giwretry EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -18752,686 +18772,686 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x60786555 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x786fed39 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdb479ffa ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf68501ce ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x09fa2964 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x793ba771 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb06ad533 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbd371230 ipcomp_output EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x3595c2a9 snd_seq_kernel_client_get +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x5ce047ce snd_seq_kernel_client_put EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xc3537752 snd_seq_kernel_client_put EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xcbf9166f snd_seq_system_broadcast EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf0c8f9fa snd_seq_expand_var_event_at -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x780ffec4 snd_rawmidi_free -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xee26590c snd_rawmidi_init -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xb8aa061d snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xc63f8283 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x43bc0c16 snd_ump_attach_legacy_rawmidi -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x593ba4fb snd_ump_endpoint_new +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf3275491 snd_seq_kernel_client_get +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xca5107ce snd_rawmidi_free +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xd75c3fae snd_rawmidi_init +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x17785536 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xf85f8b43 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x504212d7 snd_ump_endpoint_new EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5b39d06f snd_ump_convert_from_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x8762efd7 snd_ump_transmit -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xb55a6c3f snd_ump_switch_protocol -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xb80a84d4 snd_ump_receive -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xc25976da snd_ump_receive_ump_val -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xc715cf5f snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x60d039a5 snd_ump_receive +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x62a13823 snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd66d29ee snd_ump_block_new EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xf8ada73a snd_ump_parse_endpoint -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1336d975 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x228f81a7 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x25f7c0b6 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x25fa2cf7 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2d3a4fe7 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x36dcb33e amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3cca0f0d amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x47bda9fd amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x73880619 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x78982c60 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7cd0fd84 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xae881486 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc81ce97a amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1761ac68 snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x178d3689 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1a7a1ff2 snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x22a59afd snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2ebcac1e snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x35dc47be snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x37b5a055 snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3929723b snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3cc6da59 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x44da640e snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x468e83e5 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4cdb3411 snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4faa98b8 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x509fb5d6 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x61c3cda4 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x660a0348 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x82e14f12 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x86dad731 snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x89bdd531 snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa20f333c snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaacfc7b6 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc0be1af4 snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc4cf3e00 snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc7c2e2bb snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd972a67b snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe3bf2fc7 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe740c06b snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xec06ee78 snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf06dc49e snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf8f8f161 snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf93c30a9 snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x039e0d19 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03b85f90 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe613d502 snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe8de7d6b snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xeb3cf421 snd_ump_receive_ump_val +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xf64bd5c2 snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x03fc167f amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1331c224 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x50af9a80 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x57ec9a95 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6876d63b amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6b4208de amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6e56179b amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a8ad9d1 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa626c8f1 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaf5ae6a5 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xbe02a89a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdaaa76ad amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe45ae59a amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x08d301bd snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0e59bdf9 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2dd1d327 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x31281b89 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x370fd8e5 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43f0354a snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49dffabf snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5665178f snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5bba9c61 snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6bf20081 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x705089f4 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x72c9a381 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7fde74a3 snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a8cecc3 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8fdbd7e6 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x95e53fbd snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9f35f269 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa1eb7a1b snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa21fc60c snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa7bc50b7 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb00b78a6 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb15f8f7d snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6129953 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbb00c5b9 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcb94b552 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2f8e3d6 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd36e3f9f snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6512278 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe68f10e1 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xec135344 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf2b932e1 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x024fe5fd snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03ace3d6 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04567346 hdac_get_device_id EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x095ee9d1 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b6a86e5 snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0efcd284 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f8f153a snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x102fbaf2 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13fbe5e0 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0698f248 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a904844 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bfde4f6 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0de45213 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f37a38c snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10dcfc24 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12c8a671 snd_hdac_dsp_prepare EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a35dbb5 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d2b3c53 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1db0bdb4 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ff96c0b snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20c8945e snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2285ff31 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2792a57c snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27f3c2f2 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28e3b14c snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2918f4f0 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2930cd16 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c14907b snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d47e84b snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14963337 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16b4cfd1 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a34a7fe snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b068407 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d26aea7 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ff0b2d4 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20f5ab1c snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2602a671 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29f2c811 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2af57532 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f2fa530 snd_hdac_bus_exit EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e70776c snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3eb1ad48 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x428ab222 snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44f0656a snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45917468 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x465f5a43 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4675c985 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47e620c9 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48dca893 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e3bf568 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f16e0cb snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42950a7e snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x475c43ba snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x479a2f48 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49957fe9 snd_hdac_override_parm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53ceeb22 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55d489e7 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5668f718 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57a78eb6 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ad67eb2 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x537153b9 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x557ab68d snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58192743 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x59284b17 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a906ed4 snd_hdac_bus_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f78e735 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x647b83b1 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cb28572 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x641f24c3 snd_hdac_stream_release EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68db3a9a _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a87729b snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b2d95c9 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e6a539a snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74b541b5 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a314ede snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ff7d383 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71d804ba snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7225b349 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7574f905 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75bbcdf8 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76354e1a snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x770ee9af _snd_hdac_read_parm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a823480 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7aea127c snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f27ffd6 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81403169 snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81ef2f3c snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x830933de snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84675e01 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84cf1f3a snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85dd89af snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88f0ca38 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d4e4e7b snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f9cb387 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90524d1c snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x955cfa28 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96f4dc8c snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98936f1b snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99022187 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99b78d5f snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a2e1bbe snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x789a96ec snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bf85b2a snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x836dbbc2 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x838c3df2 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x868a7b7c snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8768c6d5 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cbd7c3b snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cf24f90 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f30400f snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90411b75 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93097306 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x938f05d6 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93fee56e snd_hdac_codec_link_down EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bf368d9 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa86ad1c9 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa474b91 snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab484e40 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf07de39 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1022893 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2a034d0 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5df0e76 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb875a319 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d9d8c35 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa01fbd88 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2d2b3dc snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4f1e6f2 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac59777b snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac7e4cf4 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae7aed08 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf77d155 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb794ee79 snd_hdac_get_stream EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbea27a13 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfd2107b snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc40a867c snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6424884 snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7a5b47b snd_hdac_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcae2e658 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd00fc1a5 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1141032 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2e75531 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbe0b80c snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe16aedeb snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe16d6702 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2e79e51 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3564bf7 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbffecbe2 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc680aba6 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc845a2e4 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc60bbd2 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd1d9046 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd014635a snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5dd65f9 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdca2bdfd snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcd3bb64 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe10d83db snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3514a66 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe49fc1fb snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4d9f47c snd_hdac_power_up_pm EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5249ddd snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf34ada7e snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3645ade snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf798e4d1 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbf07976 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc8235eb snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd2d1acd snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffee80ba snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x15aac4cb snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x2c7fa271 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0b620dd5 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0b7ae815 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0f304057 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x480c5697 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7d7dc537 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x95a11741 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x010a1ce3 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x020d7131 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02da72ba snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x047e620f azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0518ed79 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0596cc02 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7ac5e68 snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9e8cad9 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebe7a572 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xecf38be7 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee0ce6ef snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee3ae9bf snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee471157 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf11a4dcc snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf20302ca snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2cd6344 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf84f57cc snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8541027 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfba7ae85 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc0676a4 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc738c75 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x3c563780 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x55330bfb snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7274adea snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x850c04b3 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x91b2fca7 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9de50167 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa34ded3d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdd7e3b91 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x014fb77b snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04e0db7f snd_hda_codec_amp_stereo EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x071f90da snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x077888cf snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07cdbbe3 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a92defd hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fe06206 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1596f8f5 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18d9ea8f snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b7517db snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21dd825e snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22d6ca3c snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23bb33c1 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x256a2bb6 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x271a5fd5 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x273771e6 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29f1dc93 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bf256b9 snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d8038c4 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e2dae4b snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ec31ab5 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33e4b1b6 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b173de9 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bb5bbad snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13da9a04 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1554ea1f snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b49fca7 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fefad92 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x208e12c7 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2100c21f snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x210b07aa snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21bde9db snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23ed4183 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2571697a snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x292ceb4d snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29b60a8b __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a51ab24 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ab9bc83 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b6c188c snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e4bb499 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3018e42a __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x310ee764 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32084500 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x368705aa snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x379a2e5d snd_hda_codec_build_controls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39d8c5f8 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39f04afb snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c44e121 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f6780f9 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41bce1ad snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x437baae2 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43bc7d47 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44ba8748 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4536b0cf snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aced3fe snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d3228cf snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e7e4cbc azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4efe3db2 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f51d4a9 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52419c81 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x548d2ed3 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5515ad17 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55b43f03 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x582e24a9 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x599e0b60 snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cabb17e snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60d07bb8 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64e2e922 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x689a1e0e snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69d30616 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b27affe snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b87750e snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ca06f70 snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d860710 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fed14ce hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x769949e5 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x783e7b0b snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78cc6160 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79642b03 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80b04507 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84516a22 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84e883b1 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88ade0ee snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x899e15e3 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89b4cbf2 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a744a11 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8aebdad1 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c0b47d0 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c1383d4 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e57ff65 azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x913cfb12 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9294d73a azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93022e05 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94b87ef6 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95018d23 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99b8ccf4 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bd01fe0 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ee6175b __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fcbf710 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa13145e1 azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7dd72eb snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad88ac6c snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad8f904d snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadd8e3f3 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xade6fb2b snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae752b1d snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafd69726 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0cca03c query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4212fe4 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb49334dc snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb656c7b0 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8dfe08a snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcad6c1b snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbec409e7 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0b0095f __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3dfe1ac snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5ff14a0 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc605b55c snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e008ed snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8c44821 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca22cd98 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc5fe028 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccd72ca1 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfc48f8e snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2be6d5a azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd38833b3 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd421294c snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd610e752 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7b0bc15 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8a431c6 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8ec9359 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda3b5011 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc36de68 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc4ed9ec snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd77baad snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39a651c3 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ca9a390 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3caa3224 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e9de015 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fa6027b azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x402b58a8 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4517d753 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4574435b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45d9ca3f snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46c01dc9 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46e321dc snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4714bdc4 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47bd9346 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b1a3ded snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c962b93 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51a81ef2 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5297231e snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54b7b4cd snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x553ca856 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6133d0f9 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61cbb02c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64d51eae snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65d58b1c snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6655fb33 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x666ad1ba snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d27546d hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e2bf273 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fad69ad azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x704934a3 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7100d58d snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7248edf5 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x738f0d25 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7430c2e6 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76602ff2 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7741d6df snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x778a2b34 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x784f3059 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78ce309a is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7af21a05 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c13be5c snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f0e75b5 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84c976aa snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8740bbdd snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bb4bdc9 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cdf2f70 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x921c5e11 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9361d6fb snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9435f515 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x957d58cc snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x964842ba snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97f62cbe snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98ac5f78 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9947695f snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e06d700 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fb9e8ab azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0d49e64 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa13c5ea1 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa350b4b7 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa432f5d0 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa56dab82 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7fc5009 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa1c32fc snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac8cc240 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacf140d7 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaef96481 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf868d4d snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaff10d9c snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb10a3dc3 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb39a48ec snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb614333d snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb831cad2 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb98ee8e7 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba101b2e snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf2a9f00 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1c0fe2a snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2699ab2 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc26ef25a snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3214150 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5f37b7f snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8429cc9 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9b3bc14 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcad4d313 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc788056 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd183fe5 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd50cf1de snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8a0c411 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeb1f184 snd_hda_codec_set_pin_target EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1830dc6 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1877fbf snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe314eae7 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe69e6540 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe70befa5 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec3b1c1a snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe242e2a6 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe422ebda snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe430d854 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe453996a snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6dd0900 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe893b11a _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe89694e0 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeab9b59a snd_hda_jack_add_kctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee5cc8d5 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf13dfbe7 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf166d10e snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef29a0f6 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2900e52 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4dcf147 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf70df2ca azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8629fd8 snd_hda_mixer_amp_volume_info EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9ee25af snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb5e2c9f snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbb826e7 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd892fee snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x020fb955 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x16aec80b snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18165c5d snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23497001 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2ee7726b snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x509d3fc5 snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5196b45d snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6771cf51 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x70fc45a2 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfba1706f snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc1a402a snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd78487a snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff5e5095 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0090468d snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x040d5bad snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0b6d4dac snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e9be2ef snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0fffcac9 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x17f7d0c8 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x183635fc snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x206ff5ac snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3bdc9063 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41191254 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5564ee37 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f368fb1 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66237343 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6e74c23f 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 0x7854f83d snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x79e14a5e snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c3981d6 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f261bea snd_hda_get_path_from_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 0xbeaf8690 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc31f2b08 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd28a51f7 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd2f27e1d snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0afdd2d snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe1aee7b3 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe94d744f snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed92880f snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xefae3c39 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xc4a2f853 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xad1e3d79 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc16858cf snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd169e7b3 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd5600821 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdeee32af snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe18cdfd9 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x4599af75 mt6359_accdet_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x1d4a8627 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xd9cc580c adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf3032b01 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x398bb2e5 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3e781715 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4e84effc adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x68e8bb58 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa8626492 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb315accd adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb5ae3aa2 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe42ef398 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xebaa7844 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf5f4c775 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x60ab8ea0 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1a1d154a aw88395_dev_set_volume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1b9ab012 aw88395_dev_mute -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x2016d868 aw88395_dev_get_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x2051bc69 aw88395_dev_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x3c0fd3fe aw88395_dev_set_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x4851a253 aw88395_dev_get_profile_count -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x5eb5d344 aw88395_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x65450aff aw88395_dev_stop -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xcddfa3ea aw88395_dev_get_prof_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xdfaf126f aw88395_dev_start -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xe7060450 aw88395_dev_fw_update -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xfeb556ed aw88395_dev_get_prof_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x7e8a6408 aw88395_dev_load_acf_check -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xd808457c aw88395_dev_cfg_load -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x1cf4f188 cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x829d1ee6 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xaf7a578a cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x03b6d9ca cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x27464433 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x255cee03 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xdb8ba0ac adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xfa816ea8 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0e346eaf adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3e491752 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x52155f58 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x57364708 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6dcecc29 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x84035fa2 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaaecd5af adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc65b6930 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd52c5c60 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf0d3c966 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xd02fd538 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x14076871 aw88395_dev_start +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1c7bf7d7 aw88395_dev_get_prof_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x23ac6205 aw88395_dev_fw_update +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x2b61b830 aw88395_dev_stop +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x527a6a0d aw88395_dev_set_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x694626ec aw88395_dev_set_volume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x6d74f70e aw88395_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x81371266 aw88395_dev_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x813a23a8 aw88395_dev_get_prof_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd7c7fdfc aw88395_dev_get_profile_count +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf2681b9d aw88395_dev_mute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xfc583256 aw88395_dev_get_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x2d239867 aw88395_dev_load_acf_check +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x7f3087ab aw88395_dev_cfg_load +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3ae7e4c9 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x838d8f13 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xe73fc470 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0082b253 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1200c07e cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1d17791b cs35l41_exit_hibernate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x389e86c7 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x41d40eca cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6df024a9 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x92cdc0b2 cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9835baea cs35l41_configure_cs_dsp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb7b15bf5 cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc642fd49 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd3cfa1f6 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd3e8069e cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdba52276 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe21b2a7a cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe7c0e49b cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6940bf8a cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7c1fd7e8 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7d21aae5 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9fa15c65 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xab498ae1 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb5f95600 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb856dc20 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc585d27b cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdf15b955 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe10702eb cs35l41_enter_hibernate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe92ff6ad cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf3592471 cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x2d657074 cs35l56_system_resume_early -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x43b4c2ab cs35l56_system_suspend_late -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x65514cd6 cs35l56_system_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x907a6db8 cs35l56_system_suspend_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x9c962592 cs35l56_system_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xaf9e0fa6 cs35l56_system_resume_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x5fb1574a cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xed213900 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x0e2bafc6 cs35l56_system_resume_early +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x168ab1a7 cs35l56_system_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x5567899d cs35l56_system_resume_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x8c33b6df cs35l56_system_suspend_late +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe1e3cbb3 cs35l56_system_suspend_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe70efcc8 cs35l56_system_resume EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xdb80975a cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1bd016a0 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4d045fb3 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7a1b09b2 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa166e556 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd2476c61 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1d306df1 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8819629c cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x8d7a4341 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0ab228a0 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4ea5d4a1 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbb49f8bb cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd1e4f8b4 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdfdad625 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1cb4f743 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x259d8f7e cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x79095aec 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 0xf1a4514d cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfc914059 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xbf49c2e7 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf5828dbe es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x3e6ef0db hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x739e0bcc snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf5a2541f soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x176cec67 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x61478825 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x7c637a43 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x870be777 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x950fc2f3 soc_hda_ext_bus_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x62a192ef lpass_macro_pds_exit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x8bf360b1 lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x931867b1 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5576049e soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x57992052 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7ef319c4 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xec02d9bc max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x251e2903 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7f361269 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8527bf3f mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xce27f5f0 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x4427ac42 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa3215f74 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xbe360114 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xe052f862 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xd4e26d2e nau8821_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x8bbf2b66 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xb15db391 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xad18d96e max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xdc19346a soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xdcee07cb soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xfef688d2 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2e4f5cfe mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3e8c2373 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5db2704e mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9c44a28a mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x01146530 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x69f73972 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa801ebb6 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xfce23874 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xd9343484 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xb7975c01 nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x2e7c68b1 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x09ec4909 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xccfd81b0 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd6cb36eb pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xcf06855b pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd17b9ac3 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x2f583a76 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xe1568f78 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9e93086c pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xbbb73493 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc5894b83 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xcea50ca4 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4ca22bdf pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x90f62af8 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa3bef029 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xed80e5ca pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xc6ad4095 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1861d649 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd4fbae85 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xe1d7aa9d pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1fd17a61 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xe61c0b02 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3cb6fabe pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x4aa97e7e pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2525e15d pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2a31e48c pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8019ff09 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd0eef6ea pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3b09dbfe pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8f4928b0 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xbb5063bc pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe21463d1 pcm512x_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info 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-rt5514-spi 0x554467a3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xbb4583f6 rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2bd6d8d0 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x3886076f rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x41125bda rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8cd9fc60 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc81628f2 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xec3690d3 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x1660c62e rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xfe2b20bf rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x3996a01e rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xbc90e359 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x7df23da1 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x010605c8 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x15b0658b rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2e191d36 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x349a22e2 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4ee0f02b rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7cb84cd3 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x4728e2a0 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9d7a62d2 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xdec85b7b rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x03e54a66 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x505daf73 rt5677_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x425a794d rt5677_spi_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xa8c77592 rt5677_spi_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xf17750f8 rt5677_spi_write_firmware -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x03269f22 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0bd6d7d5 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x01056b8d rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x083c4f7c rt5682_apply_patch_list EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x14291dc4 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1e3b8ee5 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2eb26829 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7797223a rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8af48857 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2c38ef13 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x34cc7137 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5644cbb3 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x75a4bcec rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x86220c01 rt5682_register_dai_clks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x91079df2 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9ca09939 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x92605c94 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9dd6c899 rt5682_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xce7ff949 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd7451eef rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xda1b35a8 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x518cdff9 rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x16309822 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2967c5b6 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2df6ae10 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x53f25e9c sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x556a3f25 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xd8b2ce72 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xce734a79 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x857f03e2 src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x8d5d1a93 src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x059c1db7 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5498dd2c ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x04a0c47b tasdevice_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x1b344d87 tasdevice_amp_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x4690be01 tasdevice_dev_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x571579f9 tasdevice_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x6af90d85 tascodec_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x7947352a tasdevice_kzalloc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x7b0e9795 tasdevice_digital_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x87f19ce1 tasdevice_amp_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x921ade4a tasdevice_dev_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x93a51936 tasdevice_dev_bulk_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x9afc6bbd tas2781_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc70f5410 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfcdff92a rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xb4d38e8f rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8693c283 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa50c7ed1 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcae23cdf sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd442530f sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdf756864 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x3224603d devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xee84cde7 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x43f7fa31 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x689a49ba src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9a323d8e ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf12f2c79 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x11823173 tasdevice_dev_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x1e138202 tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x24af2bed tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x262c9bd1 tasdevice_amp_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x4f6fbb0e tasdevice_dev_update_bits +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x50755356 tasdevice_dev_bulk_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x865b9a83 tascodec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8d2d1bcd tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x9bb9d922 tasdevice_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x9e4e8dbc tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xae258332 tasdevice_dev_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xcd63c609 tasdevice_digital_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xceda69fc tas2781_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xcfe07635 tasdevice_amp_putvol EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd60d28da tasdevice_dsp_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xde6bdf1a tasdevice_dev_bulk_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xe4a26cb6 tasdevice_dev_update_bits -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xe7cb46f3 tasdevice_digital_putvol EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3ad5b997 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x11102e7e aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xe0a044d3 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xe39394e2 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xabef4048 ts3a227e_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8ae4fc0a wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x96a17e7b wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc3b2dd05 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd3381cdd wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xeebb8c6c wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x03b6473c wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0b0da867 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0c35f769 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0c63d817 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x16b20491 wm_adsp_power_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x195d7826 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e164545 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x1632daa7 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x233fe82b wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8d1f7595 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8f88878d wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x916f0846 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x090b4890 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0e16f6f6 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x101c2237 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x23d2b542 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2900cde7 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x32ad4166 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x37ac6379 wm_adsp_power_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x43ad7ee1 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x489ba7c2 wm_adsp2_preloader_put EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x56037517 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5fb227d4 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x62469904 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6b13e738 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x94a532ae wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x98789aae wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa48d107d wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaaf0d48f wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb6ebe689 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc241fafa wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb782f18 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcbf3b88e wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcc8d5d70 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd06248d6 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd3fa1d2c wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c6a4c1 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5df02bfa wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5ffc29f2 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x66bcf8cb wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x690aa01b wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6ed9be60 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x705f4954 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x70e8275c wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x71874812 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x786aa5ff wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xab860c7e wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbf4082ae wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc1675dfa wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc2e726f8 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc6a50fbe wm_adsp_compr_pointer EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe01e4105 wm_adsp1_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf14ccc31 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf5776774 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf70175b0 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf8d56b6e wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x13256267 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x24f89c82 wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x27a27c73 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2af9018c wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf2530182 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0cb57275 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x559d2ed0 wm_hubs_hpl_mux 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 0x695881fc wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6c414d3b wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6e5c4aca wm_hubs_handle_analogue_pdata EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9f281ec9 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa3c804c6 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc99ef232 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x7f65fee8 wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xce95f32e wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2d66b579 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x679e0155 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc450a19f wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xea6efba1 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x04b19869 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xc81d95e3 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x346fbd75 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x7b3f5895 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc407d106 fsl_asrc_component -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xba67cb1b audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x580a3aac audio_graph2_link_dpcm -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x74b314b8 audio_graph2_link_c2c -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7b706fa8 audio_graph2_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xeae0437a audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7a273d70 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xad7342c6 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbd5eb2fb wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xff6db604 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x22208e55 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x51a9a1c7 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1cbd1e11 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5846fedb wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7b11da99 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcfbb2fd5 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4299c746 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x629ae5b8 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x0a49dd3e wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xaac3f314 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0461b823 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xeea136b4 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x24bbb583 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x876d6344 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xd2d8db7a audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xfc6fe197 audio_graph2_link_normal EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x03e55728 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1e2c749d asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x39d44ae8 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3cd99fd6 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x440a5415 asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x45d606a4 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x49cc5631 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4a8684a4 asoc_graph_parse_dai -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x501cb6d7 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x52dc8954 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x53843bc0 asoc_simple_init_aux_jacks -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x696f598d asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6ad203a1 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8cbe3c4f asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa4a26ca5 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xab8be8e1 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaef6c1db asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb8d1e23e asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc77f3b87 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xce3161da asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd4d5b4a2 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe3cf31ef asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe930ded4 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xebfb973f asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x04df31c9 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x09ee1d8b mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0c071a43 mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x11c49b0f mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x18fa93c3 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1abbf986 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x28af13a3 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2acf8cd7 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x30b5c1e0 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4678bd43 clean_card_reference -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4fb98ec3 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x511a3b5a mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x51a474de mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5302f383 mtk_sof_dailink_parse_of -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5ee07d4c mtk_sof_card_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x80ef60b8 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x81f92430 mtk_sof_dai_link_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8452c1af mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8a6a574c mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x90b6e706 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa81514dc parse_dai_link_info -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaacfa891 mtk_sof_card_late_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb5cff73f mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd8de6d30 mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdce5e33a mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdd91240f mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe22dd33e mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe3b61647 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xee53eadf mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8270ec2 mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xbbed9cf8 mt8183_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x0fe28a9b mt8186_afe_gpio_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x41f54977 mt8186_mt6366_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x8c921558 mt8186_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xda75e0a4 mt8186_mt6366_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x2aa5334b mt8188_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x7de55cc7 mt8188_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x8ec1276d mt8192_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x6419095a mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xbac6dfdd mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x565a244d axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x706731ab axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7bba8af2 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8d9e5a5e axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8fb60731 axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x906e6a91 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9f029c54 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa3b3c648 axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa3e02a31 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0411f300 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x08285989 asoc_simple_init_aux_jacks +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0a73a5f9 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0a7aaab6 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f2d9a5a asoc_graph_parse_dai +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2212d0bf asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2c686c09 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x333fa42e asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3534d1aa asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5a8cbff7 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x65962c43 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x821be6df asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x883040de asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8cf5f96a asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9c0ff115 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9de460d0 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb5bb74cd asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb9c53649 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc007cb55 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc4dbda4d asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc6912994 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcab06a21 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xda607f21 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf79c3896 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0587eeb7 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x11c4783e mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x14e20194 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x17f10951 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x271b6b74 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2b7fa53b clean_card_reference +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x32d1bf45 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3648518d parse_dai_link_info +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x380eda50 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4ab9ddc7 mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x54d2e626 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x60c135e1 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x636e7963 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6452781e mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6631e0bc mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6de770d2 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x71829c1a mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x806abc2b mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x88116621 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8f97d8c9 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaa53fe1e mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb6b6662c mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbfd06975 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xca4f6194 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd3f5a5b6 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd45d27fc mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe00a8f4b mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf0663e70 mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf2e719c9 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf9194432 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xbacbaa5e mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3058bf48 mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x8363824e mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x9682b7fe mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xda425c86 mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x63fc2446 mt8188_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0xdac63c08 mt8188_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x88ee314f mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x48adf645 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x6b0372a1 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x122a103f axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x16dcd36c axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x30a12242 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3e5aac8c g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x66c82215 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x771bb298 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7cddb083 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd1e603e7 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe7fff3cc axg_fifo_pcm_close EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x14468237 axg_tdm_formatter_set_channel_masks -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2159b391 axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x314f9f02 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x41ab7cb0 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x443d22ba axg_tdm_stream_free EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x506c837c axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x9099d139 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x970060bd axg_tdm_stream_start -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x734deba8 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x21b2174c meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x27cf4b80 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x46fe2b61 meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4a1d3931 meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x87119e87 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x92bdea51 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xc02c0dc1 meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xedb87ecd meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x126c66f3 meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x317ef35e meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xcc4d4129 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xd0128319 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xfc9b5f18 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xfe5f90af meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xa4a7ac58 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x3c9ac8be axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x832606e7 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x9a737993 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x9ea6a925 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb890cd82 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xbc0f3ef9 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd7035ccc meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd7ee0fae meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xffebe900 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3acbb220 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3df238a9 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x55deaf37 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x814147e8 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa13fd4c7 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xf1470e97 meson_codec_glue_output_startup EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x3248cfa4 q6adm_matrix_map EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x388cf0cb q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xfd95acff q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x025d3119 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x66c027b9 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x94a1a740 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xdba23fa9 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x13b7efd9 q6asm_cmd @@ -19440,9 +19460,9 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x53097a62 q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7195844e q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm @@ -19458,74 +19478,74 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x0bc05640 q6prm_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x78b99147 q6prm_unvote_lpass_core_hw -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xd3b98f08 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x533ffa7a q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x8633d508 q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xf4132e47 q6prm_vote_lpass_core_hw EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x016b0293 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0f75ddbe audioreach_compr_set_param EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x15459d32 q6apm_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x16541f05 q6apm_set_real_module_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x26047ac7 audioreach_alloc_graph_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2c616d2d audioreach_send_u32_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x14fda6ef audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x19f10341 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2c0c4385 q6apm_enable_compress_module EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2fe33fd3 q6apm_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3595c039 q6apm_graph_media_format_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3bdec407 audioreach_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x48845b23 q6apm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x49d6bf39 audioreach_tplg_init -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x49ec5325 audioreach_compr_set_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x33944681 q6apm_set_real_module_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4065dc11 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4e1107a1 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x51103439 audioreach_shared_memory_send_eos EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5672f034 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5e584f89 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x618cff40 q6apm_read EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x681c392a audioreach_graph_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x71126955 q6apm_graph_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7146b6ae q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6b64a0c9 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6bcc28ea q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x74efaaa2 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7ba28258 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7c5c7a00 q6apm_graph_get_rx_shmem_module_iid EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa5fa2c93 q6apm_graph_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xae13595e audioreach_shared_memory_send_eos -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb2138315 audioreach_gain_set_vol_ctrl -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb6c476e1 q6apm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc057db5a q6apm_remove_initial_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc2e44b21 q6apm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc941e446 q6apm_graph_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcd959f33 audioreach_set_media_format -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd02cba5a q6apm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdf625758 q6apm_graph_flush -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe6f65bd0 q6apm_graph_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xea6d944f audioreach_graph_free_buf -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf0462791 q6apm_enable_compress_module -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfc3b3342 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8b24e63b q6apm_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9801fd94 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9b6b3af9 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa3e5a0ac q6apm_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa63f1a6f q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa69c5d66 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc231e085 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc6689396 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd53c468c q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd8f7968a q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdc68cb24 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xed794959 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf629469e audioreach_send_u32_param EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x740b45fd q6dsp_audio_ports_of_xlate_dai_name EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x9501f8e4 q6dsp_get_channel_allocation EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xae6dced8 q6dsp_clock_dev_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xb282bd58 q6dsp_audio_ports_set_config -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x651b1e6f asoc_qcom_lpass_cdc_dma_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x03bf47b0 lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x06f59209 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0b56382d asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4470bae0 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa432e701 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc260e5da asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xefee566b asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xfecd616d asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x41a52eef qcom_snd_parse_of -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xa3b28dc0 qcom_snd_wcd_jack_setup -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x0cd6eb3f qcom_snd_sdw_hw_free -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x8de532d0 qcom_snd_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xea133b85 qcom_snd_sdw_prepare -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x326dea5b tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xecdf8446 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2312d9b2 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x26dce047 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x30ad79df devm_tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x604485af tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8e9061f4 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa1e2580d tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa212740d tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa7af2777 tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd54fab80 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xb08cb985 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xf322a66d q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x311ff85a asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x456ba2f9 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x5253799d asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x5385d2ba lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x61644ec1 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xdf697033 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xea5fc399 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xf0afcccf asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x16c20c5f asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x6eedeb82 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xd64d06b2 qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x46aadb23 qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x9bc5f81d qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xf352a86b qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x1cab5aa5 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x4e1f274c tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0a1f9c26 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x40a7a628 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x54446dfd tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5728e510 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x894c7f48 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x98c8ed03 devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb81e57d0 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc7bc323a tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf45fe37b tegra_pcm_platform_register_with_chan_names EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da 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 @@ -19538,1127 +19558,1085 @@ 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 0xd01de23b tegra30_ahub_allocate_rx_fifo EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x146a0dd7 omap_mcbsp_st_add_controls -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x2ddac1f8 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x4dacc7f4 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x6bd90966 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x02ccb341 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x196c0d30 line6_suspend +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x71c50326 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x7a95587a edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xadca5c0a sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x5d58ade7 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1f5e22e3 line6_disconnect EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x380c60a8 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3ffb121e line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x80d62cf8 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8d6afd3b line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9f70a8b2 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb21ff3ee line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xca504225 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcad19d0f line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe08510c9 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe374d57c line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe3b81f1c line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf855708b line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa1f00ab line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc24bb36 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x23f0f276 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2bd788e6 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x393f4fe6 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3a24fbcc line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3dee6e78 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x481858fb line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x505b0db2 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5361f1f0 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5c4584f8 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6809ecbf line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8524a42b line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa6362dcc line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa7ccd7e1 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdf26f7f3 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xecd3605e line6_read_data 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 0x00023b35 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x000522d6 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x0015c22c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0003983a devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x000447e8 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00063967 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x000a6f7b regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x000cd830 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x001aced2 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00208c29 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x002d361e devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0036328f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00317e6a simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x00388d30 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x00480786 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x0049f99e pci_intx EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0060740f sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x007b6e17 disk_alloc_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x009d4553 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL vmlinux 0x00ac2b99 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x00b4388f virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x00bfac24 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x00d10177 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x0066b9dc ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x006a740d devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0074be05 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x0085144d bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x0088497a ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x00a50b80 musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x00d469cf dev_pm_genpd_set_next_wakeup EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00e563d9 nand_reset -EXPORT_SYMBOL_GPL vmlinux 0x010691ab snd_soc_resume -EXPORT_SYMBOL_GPL vmlinux 0x011795fa snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL vmlinux 0x01208ac8 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x014d8578 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x00e48d37 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x00e86f78 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x00ee1bb2 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x00f160f6 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x00f54620 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x012ace93 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x013324f8 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x013e3341 fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x014ecd97 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0153c028 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x01681386 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x01688be7 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x016a82f4 iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0x01827f8a usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0167b173 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x016e367b phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x016fc879 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x017afc13 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x017f00b0 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x01858c49 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018ab635 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x01911cbc tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x01948eb3 rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0x0197364c ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x019d9005 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x019f24fd crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x01a1b3e1 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0x018821ac tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x01b12a5e class_create EXPORT_SYMBOL_GPL vmlinux 0x01b12bfb usb_ep_free_request EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01ce82e4 imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0x01cf3d74 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x01d69f4d tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x01dc0eb1 __fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x01e1a066 dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02025c26 io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x020cd1d6 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x022be7ac synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x02096628 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x0210692e generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x02265502 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023b27e5 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x0245f80c __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x02396177 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x023c8050 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x0246a57e pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x024e27bb snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL vmlinux 0x024fe693 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x025511a8 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x02671759 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x029155eb tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x029671d6 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x0277849f clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x029679c9 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x029778e8 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x029df1e6 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x02a339b0 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x02a59901 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x02a75b9e dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x02a8b5b8 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x02b270e1 msi_lock_descs -EXPORT_SYMBOL_GPL vmlinux 0x02b6faf5 vfs_splice_read -EXPORT_SYMBOL_GPL vmlinux 0x02c59cba phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x02ade03f device_rename +EXPORT_SYMBOL_GPL vmlinux 0x02c1e6eb of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x02c56acd usb_deregister EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02ca2ace usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x02cec6b1 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x02e0593b tcp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x02cc2c3d tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x02d79df5 devl_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x02ec74bb crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x02ee475f device_register +EXPORT_SYMBOL_GPL vmlinux 0x02ee6e4b extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0x02eef7bb snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x02faed15 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x03000f05 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x03015f6e regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x031c0592 clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x032920e5 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x032f272a apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x032946b4 snd_soc_dai_action EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0337a6b2 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0343f3d3 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0344dea0 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x0345d3cd bio_trim EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features EXPORT_SYMBOL_GPL vmlinux 0x034e3d81 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x035bdab5 bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0x036555a7 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x035a3dd9 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x0361eb92 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03696cf1 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x036ae958 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x036e58c3 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL vmlinux 0x037c28cd of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x038618a9 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x038f0c7e devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x03921cf6 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0x03926922 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x036dd1f3 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x0380aa84 edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03958559 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x03a8caa6 ahci_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x03bd7131 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x03bfdd1f ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x03c57cdd blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x03c70bf1 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x03d16aef dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x03e4bfa6 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x03e91bf0 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x040d530c usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x039d5862 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x03c61376 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x03dc8b19 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x03dc8d75 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x03f56c1b pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x0403242b snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x0407033d of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x0410ae1f devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr -EXPORT_SYMBOL_GPL vmlinux 0x0417aa99 devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0x04207763 sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x0422a652 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x042d0034 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x0431c204 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x043c5e3a tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x04453dbc of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x0449c064 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x0453f297 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x045bf026 __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x04460085 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x045920fc devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04781230 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x04852fc5 scmi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048d1590 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x04a46031 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x04966a70 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x04a729d6 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x04a75cc3 usb_gadget_udc_reset EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x04b94325 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x04bf38ac tegra_bpmp_transfer_atomic -EXPORT_SYMBOL_GPL vmlinux 0x04c2a585 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x04b16bad crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x04bad92b snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0x04be4b44 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x04c1fc19 usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c7c91d vcap_tc_flower_handler_tcp_usage EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x04e2e398 __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x04f0f77b component_release_of -EXPORT_SYMBOL_GPL vmlinux 0x04fdb649 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x0503a0b6 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x05043c66 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x04ed24f4 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x04ee03b6 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x04ee40f8 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x04ff2209 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x050a765a usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x050d2fb5 tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x05131419 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x05144712 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x0514e0cc usb_gadget_deactivate EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch -EXPORT_SYMBOL_GPL vmlinux 0x051a4ce7 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x052aa55b of_remove_property EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x05332a27 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x052cf0b2 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x052df73d task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x05339320 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x053b35c4 dev_pm_opp_remove_all_dynamic EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x054bc06c tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x05417fe4 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x0547b7e2 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x055a47e6 ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x056ce33d __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x05829c49 blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0x0587f5e2 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0566ff96 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x056f8816 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x05883a64 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058b3bed pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x059136df of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0x05b713a8 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x05ca7a78 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x05cb42e0 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x0597f7d6 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL vmlinux 0x05b428c2 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x05cce2e8 yield_to EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0x05d6ce83 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x05dd52ce snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL vmlinux 0x05eac66a regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x05d6ee26 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x05da4db0 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x05e22c9f sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05ecf121 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x05f34fc5 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0601036f crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x06055f7f usb_deregister_device_driver EXPORT_SYMBOL_GPL vmlinux 0x0608f1e3 imx_clk_fracn_gppll_integer +EXPORT_SYMBOL_GPL vmlinux 0x060e15ea device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0610a408 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06126376 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0x061c7386 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x062201f2 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x0623606c netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x06408f9c class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x064d0e1f sdhci_resume_host EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x0675386c genphy_c45_read_eee_abilities -EXPORT_SYMBOL_GPL vmlinux 0x0681f753 fsverity_verify_blocks -EXPORT_SYMBOL_GPL vmlinux 0x0686da61 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x0654d39b snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x0679ac5d posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x068efb82 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x06974c6c blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x06ba4d9a set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x06bc1199 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x06bdcf08 driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x06c4a387 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x06ca0925 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x06ca2d2f edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init -EXPORT_SYMBOL_GPL vmlinux 0x06d47054 blk_mq_quiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x06daa796 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x06d8b289 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x06e90155 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x06ee7004 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x06fddb03 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x070c5f2c __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x07120c28 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x06f520bc crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x0713645c hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x071765dd edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x07187f7e pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x0723e271 meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0726156d tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x072b2550 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0x07323c69 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x07363f8f dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074a869b scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x07514f15 fsverity_get_digest EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x07676fe5 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x076d76c7 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x07745451 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x0791d51b put_device -EXPORT_SYMBOL_GPL vmlinux 0x07964f3c tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x078b1af2 ahci_stop_engine EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b697b5 sm501_unit_power -EXPORT_SYMBOL_GPL vmlinux 0x07b94be7 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c48d01 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x07cd68f1 led_blink_set_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x07e1a061 __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x07f87db0 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x08058f7e devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x07cfa41f skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x07dcff2c genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x08016eed dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0806fee3 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x0810c975 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081b3438 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x081c4b0c wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x08349780 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0814a2ad get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x083e22b6 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x0847d36c tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x084bb859 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0851b219 folio_alloc_buffers EXPORT_SYMBOL_GPL vmlinux 0x08548dbd wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x086bd3a6 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x086e3fdc platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x087b1d8b sync_blockdev_nowait EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0889ea56 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x089c3b9a of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x08a51a65 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x08a5da91 sdhci_reset_tuning EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x08a89177 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x08afa9b3 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x08be4e7e bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x08cc938a crypto_akcipher_sync_prep -EXPORT_SYMBOL_GPL vmlinux 0x08def853 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x08e40067 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x08f35a7d nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x08f37393 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x08f49cf9 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x090b978d bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x08baf0c1 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x08be220f serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x08e2b8d5 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x08f79c72 backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0x090b783e netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x090dbb3c gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x0918745d mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092447f6 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x09248cd1 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x092fece3 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x09306fe8 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0x0932c2f2 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0943af29 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x094c7c20 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x09511e3a umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x0954dab3 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0969d80a inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x096be6ef devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x096f0f9a ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x09717731 pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x098cd9b9 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x09924ae4 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x0999a4e9 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x09a67efd mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bea169 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x09c43ee2 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x09c53320 regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x09d3748d devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x09dd93e2 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x09d94983 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x09e2709f blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x09e544f5 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x09e58041 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL vmlinux 0x09f733ce sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x0a16bd0e pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x09e95b44 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x09eff1c7 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x09f1d450 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x0a029123 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x0a1671ba devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0x0a19fabc transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x0a1eeb63 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL vmlinux 0x0a30ee53 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x0a1f6be4 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x0a314afa tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device -EXPORT_SYMBOL_GPL vmlinux 0x0a47d5ec serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x0a470e4b cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x0a48dbf0 snd_dmaengine_pcm_request_channel EXPORT_SYMBOL_GPL vmlinux 0x0a4d5b99 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x0a5739cc perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x0a5f4e65 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x0a506935 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0a56beb7 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x0a63bba3 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0a657701 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x0a7430a1 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x0a77f2b4 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x0a7e4050 vfs_splice_read +EXPORT_SYMBOL_GPL vmlinux 0x0a89664d disk_uevent EXPORT_SYMBOL_GPL vmlinux 0x0a8a303b sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0x0a8d3bbd meson_a1_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x0a8fcf1d sm501_modify_reg -EXPORT_SYMBOL_GPL vmlinux 0x0a97b7b8 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL vmlinux 0x0a9aed8a ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0x0a9c54b6 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x0aa23021 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x0ab81933 __fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x0ac117b0 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x0acb0a98 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x0ab3871f ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x0ac834b3 virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge -EXPORT_SYMBOL_GPL vmlinux 0x0ae090b8 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x0ae80f73 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x0afb58dd ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x0aff8234 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ae3bc01 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0b019d22 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b0b6a56 mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0x0b0ebef3 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x0b15b4e7 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0x0b194f93 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x0b1478dc devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0b232fe9 usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x0b2a893c pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x0b2b3d46 usb_gen_phy_init EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3e6b1d tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x0b3f2810 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x0b428df1 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0b2fece0 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x0b47524b bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL vmlinux 0x0b660745 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x0b4f7a20 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0b56c1a8 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x0b60e739 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b6d9430 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x0b905b71 mtd_pairing_groups -EXPORT_SYMBOL_GPL vmlinux 0x0b93d784 register_mtd_user -EXPORT_SYMBOL_GPL vmlinux 0x0bacf497 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x0b6d4cc0 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x0b6e3936 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x0b87ac6b dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x0b9b5f9f register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb5d490 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x0bb63727 dsa_stubs -EXPORT_SYMBOL_GPL vmlinux 0x0bc24e4f __traceiter_br_mdb_full -EXPORT_SYMBOL_GPL vmlinux 0x0bc6225c gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x0bd7ef3f ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x0be2103e skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x0beb0d72 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x0bbc85b9 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x0bc8620d __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x0bcfabd9 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x0bd372c4 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x0beb37a1 fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf7b814 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x0bf8fb8e security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0bf7c807 pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x0bfa6bda deregister_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0x0c002a5d crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x0c17d30e snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0x0bfd4c79 pci_epc_bme_notify EXPORT_SYMBOL_GPL vmlinux 0x0c1fa343 make_vfsgid -EXPORT_SYMBOL_GPL vmlinux 0x0c2a2620 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x0c212eff blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x0c2714d0 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0c2f6f2e da9052_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode -EXPORT_SYMBOL_GPL vmlinux 0x0c30714b usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x0c322670 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x0c308b65 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x0c31d7cd dma_get_required_mask EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c343428 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x0c46f82f led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x0c47ae76 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0x0c51d82a snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL vmlinux 0x0c520e11 pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x0c5f9293 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x0c70bef4 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0x0c81a29e snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL vmlinux 0x0c87d46b mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x0c470b6d ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c560534 usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c9628ab crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x0c96d58f __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0c998628 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x0c9bec87 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x0c9d1768 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x0ca914bd pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x0cad4775 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x0ca00eb5 shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0ca61ba3 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x0ca63529 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x0cae7f08 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0cbb2c38 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x0cc4829f skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0cd17c0d tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x0cf391ab phy_put -EXPORT_SYMBOL_GPL vmlinux 0x0cfe8c78 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x0ccfc566 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x0cd6e53f __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x0ce4a26e fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x0cedd657 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0cfde19f devm_regulator_get_enable EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d0abf78 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x0d0b0a3a ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x0d37707d usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x0d0aeb4f snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x0d0de619 xhci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports -EXPORT_SYMBOL_GPL vmlinux 0x0d40152d snd_soc_new_compress EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4958e6 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d51361a tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x0d53588a __traceiter_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x0d546878 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x0d4e02d1 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x0d5a7ecf nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0d5f9322 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x0d692e5d da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0d6982f3 request_firmware_direct EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d6be1fa switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x0d706831 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d73a1c6 input_class -EXPORT_SYMBOL_GPL vmlinux 0x0d77e5d0 ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x0d7b9b3f device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x0d7c17c0 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0d7d6b7f edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x0d8b8a3e crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x0d8c5852 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x0d90d784 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d9d032c __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x0d9d5cba regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x0db5ed06 fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0x0db74e94 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x0dbaeec6 io_uring_cmd_done -EXPORT_SYMBOL_GPL vmlinux 0x0dbfe464 dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0x0dc257b2 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0d922875 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0da036aa dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x0da44bbb inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0da60cf2 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x0dc85137 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x0dd82a2a mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x0dd3bae4 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dde005b irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x0de4caf8 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x0df02c20 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x0dfaeaf6 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x0e088fae __put_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0x0e10b052 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x0e13eeea clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x0e10033f gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x0e127a2b blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x0e278081 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x0e29f9a7 topology_update_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0x0e442141 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x0e464a43 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x0e3201db scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x0e32ec5f dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x0e3352c8 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x0e40e04c devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0e42b682 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x0e42fc5e fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x0e4d3c23 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0e4d6ffa crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x0e506ce6 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0e56bf0a dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x0e5cadb9 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e796a8d iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x0e5d0c09 folio_mkclean EXPORT_SYMBOL_GPL vmlinux 0x0e7a8a7b devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x0e840eae of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0e891da0 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0e9c7a61 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x0eb55549 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x0eb9f5e7 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0e980a26 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e9a4757 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x0eb07ddd pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x0ec12dab mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x0eca821f sdhci_free_host EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id EXPORT_SYMBOL_GPL vmlinux 0x0eda495b meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ee05b0c nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x0ef6b4e4 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x0ef6bb9b fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x0f05d217 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x0f0e7651 crypto_sig_set_privkey -EXPORT_SYMBOL_GPL vmlinux 0x0f16fd7d __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x0ef114f5 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x0f073867 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0f0ce9db validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page EXPORT_SYMBOL_GPL vmlinux 0x0f1ad036 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x0f2d7b57 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x0f27f69c iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x0f3438dc lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x0f32df1e xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x0f334e24 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x0f346758 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x0f4e2b24 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x0f5f7d4e snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0x0f430f2c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x0f43c739 virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x0f630af9 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x0f6ecc9f fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x0f7bd8f7 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x0f6a281e xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0f74186d nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f84a98e tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x0f84ae1a nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x0f934752 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x0fb852c8 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x0fbd9c40 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x0f7da702 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x0f8304c6 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x0f842a23 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0fa70feb usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0fa918d1 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x0fa9ff4e rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0fade0ba vcap_tc_flower_handler_ip_usage +EXPORT_SYMBOL_GPL vmlinux 0x0fb2ded1 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x0fc24df5 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x0fc56c3e nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x0fcc7ab9 of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fe3ad49 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0ff00496 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x0ff2743c mtd_write -EXPORT_SYMBOL_GPL vmlinux 0x0ffb7215 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0ffc9a5c usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x0fe4e808 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x0fef2a60 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x0ff2e41d gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x0ff51762 cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x10038720 snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL vmlinux 0x10130d5a fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10169499 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x10175545 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x101e5b87 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x102313d8 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x1025e88a __fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x102f4337 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x10355890 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x10421a12 serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0x10472db8 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x104898d8 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x104a8517 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x10568334 onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x104e3ef1 nand_soft_waitrdy EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x107ae3a7 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x106b5da3 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x106f7e06 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x107fb518 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x1083f2b9 mtk_clk_unregister_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0x109bacd3 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x108ce88b xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0x10a2c37d nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL vmlinux 0x10a51000 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL vmlinux 0x10a6da68 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x10aba41f i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x10ae5e76 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0x10b0e42e attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x10b3a0f5 snd_soc_dapm_free EXPORT_SYMBOL_GPL vmlinux 0x10b4426b of_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10bfb7e1 sdhci_request -EXPORT_SYMBOL_GPL vmlinux 0x10c34670 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x10ca5053 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x10c6012b regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x10cb5445 mbox_request_channel_byname EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10defa67 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x10e6e465 virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10f0001c ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x10fec58f phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x11003f5b sdhci_dumpregs EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL vmlinux 0x1109f1bd arm_iommu_release_mapping EXPORT_SYMBOL_GPL vmlinux 0x110f2db6 power_supply_battery_info_properties_size -EXPORT_SYMBOL_GPL vmlinux 0x11201ef9 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x1138a616 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0x113f470d tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x11405831 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x11135a4f __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x11450f9d usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x114577af virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x1152eece cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x116a4515 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x116ba4a4 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x116f648e pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x116ff851 crypto_sig_set_privkey +EXPORT_SYMBOL_GPL vmlinux 0x117036fb gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x1171c909 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0x11796f88 musb_queue_resume_work -EXPORT_SYMBOL_GPL vmlinux 0x117ef7ef __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x1184c5d6 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x1199179f gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x11b297be amba_device_add -EXPORT_SYMBOL_GPL vmlinux 0x11b7cfc0 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x11bfec62 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x11c48fcc usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x11d915f9 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x1183a430 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x118e39bb usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1194755b usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1194e096 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x11b61949 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x11c6f05d snd_soc_get_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x11dc494a meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11ebc955 bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0x11fc19ae devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x121305bf snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x12022658 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x120e4fa3 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12227c52 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1225dbe5 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x12328c16 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x1233686d fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x123358cc cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x123666d7 blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x12389f77 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x123d5bbc nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x1240047c i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x124afd05 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x125db0a2 bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x125edd6c ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x12619bda trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0x126c8661 __thermal_zone_get_trip -EXPORT_SYMBOL_GPL vmlinux 0x12717fe8 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x127ae8e7 unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x1280e104 clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x128135d7 xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0x1283f771 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1285a0ae pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x12876378 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x12821f6e bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x12822cd4 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x12896782 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x12962d71 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x12b240d1 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x12b6da5d dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x12f088eb tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x12f2b0eb crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x1300f219 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x13022771 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x1316bbb1 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x12bbd127 snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x12c22356 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x12df2321 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x12eab84e genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x12f54951 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x13148305 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq EXPORT_SYMBOL_GPL vmlinux 0x131e9f43 irq_domain_remove_sim EXPORT_SYMBOL_GPL vmlinux 0x132858cf HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x1331d589 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x132d1c46 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134930c2 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x134b3046 rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x13611ee0 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x134d1a7b fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x13589f8b compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x13619717 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x1365f448 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x1366d44c amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x136e5a11 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x13799566 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x1365f011 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x137ecb27 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x1380ffa4 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x138479df xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1386575f mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x1389661f perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x138ce5a6 __mtd_next_device EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x138e5ff0 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x13a1a44d rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x13bfe731 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x13c33a11 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x13d50f05 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x139c1f7c unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x13a8d005 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x13b7de58 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x13bbbe33 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x13c4faf7 sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x13d748b4 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x13d77b91 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x13e6fc3f clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13d8399e inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x13e8aac8 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x13ed2931 dapm_mark_endpoints_dirty EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f0bf6e snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL vmlinux 0x13f1d639 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x13f60ec8 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x13fbee22 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x13fc5bbf __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x140b776c genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x141527f7 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x1412262b device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x141b2874 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x142962c3 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x14349633 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x143a924f dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x1440a418 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL vmlinux 0x1450a141 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x14551e90 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x142d0da2 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1443bbc4 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x1447d17a fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x144aa99c cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x144acf74 sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x144c4be9 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x14507bd4 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x145d6843 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x145f395a scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x146b74f9 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x146f8f87 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x14786b6d rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x147e9b8e inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x148ae1e8 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x148c8998 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x148e0f65 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x1495ba4d ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x149cd91b snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x146a3359 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x146ab9c7 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x1475b92b snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x147b4faa usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x147c10f6 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x147f2ef4 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14b4d03f da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x14b6acc0 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x14bc7c31 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x14c72413 sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL vmlinux 0x14cef1db fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14c006c9 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x14d525f8 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x14d90225 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0x14dcc818 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x14eeb968 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14fd479e vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x150a4edd nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x151e4fa5 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x15210fa9 blkg_conf_exit -EXPORT_SYMBOL_GPL vmlinux 0x152e7071 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x14f61db0 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x150eb0f5 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x15176b87 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x1520c5d2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x152d6303 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x153aa98d device_reprobe EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154105eb blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x15535980 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x155a8b63 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0x1562f0dc usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x15664fc0 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0x1566eef2 vcap_tc_flower_handler_cvlan_usage EXPORT_SYMBOL_GPL vmlinux 0x15776d18 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x1581bf46 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x15936cd7 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x15a6f101 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x158fd807 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x15a06db9 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15b1732a policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x15b4ccdd ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave -EXPORT_SYMBOL_GPL vmlinux 0x15be7a3c pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x15bf40f2 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x15d10155 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x15d4fc1e sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x15d58803 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x15dab25a icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0x15e57c07 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL vmlinux 0x15e957a7 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x15c41e8e extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x15d190b3 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x15eab644 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x15eb7eb3 fhctl_parse_dt EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x15f8abe3 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x15facdfa regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x1617e8c0 check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x161f04c1 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x1639dd2f bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0x15f2aa47 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x16046306 vcap_tc_flower_handler_arp_usage +EXPORT_SYMBOL_GPL vmlinux 0x160791cc usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x1609ac36 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x1615209e input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x163b3ad1 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164f19f3 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x16541c10 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x1658af50 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x166fda09 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x1673c4c7 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x167c1024 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x167fa008 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x1681641e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x164cb8c6 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x165e7672 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x166608dc blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x1669e634 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x166ccf79 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x167bc20d blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168a1af3 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16911423 del_mtd_blktrans_dev EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x16be2dc2 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x16b78862 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x16c7c48e dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x16c91e9a inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x16cbaab2 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x16d2ed1b dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x16d784db devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x16d7c5cf da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x16d9f9ff pci_remap_cfgspace EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness EXPORT_SYMBOL_GPL vmlinux 0x16eeb256 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x1702adea sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x170b2302 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17348b09 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x173fe218 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x170ceaa9 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x1713a85d devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x175098d7 pci_get_dsn EXPORT_SYMBOL_GPL vmlinux 0x175de67f sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1774a214 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x1767a6d9 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x17743faf phy_exit EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x1783bf40 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0x1784ff15 usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x178cbbec dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x178f7cee fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x17a7f4f1 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x17b66c27 dapm_regulator_event -EXPORT_SYMBOL_GPL vmlinux 0x17d9e483 devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x17878fd6 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x17a6310b trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x17a86345 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x17b98f4c devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17c4ae24 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x17d0e911 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x1802f66d __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x1817ecde unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x182365cd iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x180271d7 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x1813d10e fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1818cd6d blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x1823d53f ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x18263710 sdhci_reset_tuning EXPORT_SYMBOL_GPL vmlinux 0x18266ca5 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x182878e7 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1828bdd2 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x182ddf28 ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x182e45e8 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x1830e2d1 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x1837607b alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x1846954b acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x1859cc12 usb_gadget_check_config -EXPORT_SYMBOL_GPL vmlinux 0x18819b3f da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x1884f397 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x18454e72 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x1867c959 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x18777619 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x188fbe89 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x18967569 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x18999d0a tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x189c14e4 snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0x18a3ae78 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x18b1f31d ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x18b7692d devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0x18b91e23 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x18c52daa nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x18cd8374 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x18bbe511 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x18c9945d fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18f610ac md_stop EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x19004cda bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x1923de5e switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x192fbfb7 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x193b6579 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x190947b2 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1913d7c3 crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0x191fb4ec nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x19242b85 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x192ba7a3 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x19339523 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x193a8fd1 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x193af355 null_dailink_component EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x194c4e37 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x1941be18 ext_pi_type1_crc64 EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x195d3c43 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1961379f lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x19713865 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x197fb4d8 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x195d8a87 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x19777bf0 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x197e71b3 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x19815b18 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1982ec5f regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x198a10d7 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x198f94ff __virtqueue_unbreak EXPORT_SYMBOL_GPL vmlinux 0x199c36e3 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19b4f209 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x19ba60bb tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19c4e787 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x19d2fc13 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x19d533d6 snd_soc_dapm_force_bias_level EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19eb0313 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19ec21f9 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x19edaa95 component_del EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x1a007312 sdhci_pltfm_register EXPORT_SYMBOL_GPL vmlinux 0x1a05c249 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x1a0cb4db misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x1a0fefb2 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a248b17 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init -EXPORT_SYMBOL_GPL vmlinux 0x1a309b35 asoc_dummy_dlc -EXPORT_SYMBOL_GPL vmlinux 0x1a365923 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x1a2912c1 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x1a3ba1ff lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x1a41c434 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x1a4325d9 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x1a57356f extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x1a57affd sm501_modify_reg EXPORT_SYMBOL_GPL vmlinux 0x1a5e5d07 mas_next_range +EXPORT_SYMBOL_GPL vmlinux 0x1a5ff843 mptcp_token_get_sock EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a723d76 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0x1a7d4256 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1a702199 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a71be60 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x1a85dc11 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x1a8721c3 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x1a8b28fe tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x1aa0ce2b dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x1aa51500 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x1aab19dd vcap_keyfield_name -EXPORT_SYMBOL_GPL vmlinux 0x1aaf5112 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1ab703b6 genphy_c45_fast_retrain -EXPORT_SYMBOL_GPL vmlinux 0x1aba599f skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x1ac14f0c ata_eh_read_sense_success_ncq_log -EXPORT_SYMBOL_GPL vmlinux 0x1ac1816c devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x1ac3fc39 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x1ae57f55 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1acef13b dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x1ad8a97d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1aed270c mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x1aef1782 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af828c8 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x1af87680 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x1afa487a securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1b008302 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x1b040c0c phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b13c6e8 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x1b197587 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x1b26cf7e __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x1b2a1a37 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x1b0e053a sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x1b15b56e __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x1b1669fe pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x1b1dd428 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x1b1ef2bf debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x1b1fa46b dm_noflush_suspending EXPORT_SYMBOL_GPL vmlinux 0x1b2bab5f cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x1b2bbc40 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x1b3a460a crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x1b423a2f pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x1b34f34e regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1b3838e4 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x1b47fe0e of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x1b4c07dd nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x1b6e8794 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x1b77b079 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x1b7eb6c9 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x1b7f30d7 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x1b5d147c sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1b5f3a54 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x1b60f235 ata_scsi_slave_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b775be6 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b86999e blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8ac786 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1bb70bc0 do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x1bbc004e tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x1b97b891 devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ba4bac2 regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bcb8c62 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1bc77099 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x1bdf726b component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x1c05770a sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x1c2da30c dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x1c333de5 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x1c19ff5f fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x1c1b8dee spi_transfer_cs_change_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x1c344d76 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x1c3dc257 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c4163c0 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x1c45ac9b thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x1c538579 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5a40d3 sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c648583 pci_epc_bme_notify -EXPORT_SYMBOL_GPL vmlinux 0x1c717bc8 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c7c98c4 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x1c6f963c __virtio_unbreak_device EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c87a999 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x1c90e0c0 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x1c916ad6 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x1c970d4f device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0x1c9dc98c devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x1caf3541 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1cb9e6e5 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x1cbcf781 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cbda3c4 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x1cc64884 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x1ccd058d snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x1cd1bff9 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x1cd31a1e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1ccd8553 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cdcada2 snd_soc_get_dai_id EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault EXPORT_SYMBOL_GPL vmlinux 0x1cea3104 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x1cf2f3c6 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x1cf638fe devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x1cff7b54 clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x1d019799 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x1cf687d1 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x1cfd0539 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x1d09a4fa tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0x1d0e334f dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x1d0ee9dc __devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x1d18de44 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1d186d2c crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x1d207baa debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1d210408 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2577cb tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x1d28b959 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 EXPORT_SYMBOL_GPL vmlinux 0x1d38e860 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x1d4629c0 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x1d4855dd ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1d4d43e8 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x1d4a8492 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x1d563e4d kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0x1d5edb1a bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x1d6cac13 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x1d7fb34d ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0x1d933631 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x1d5a774d __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x1d62cbb6 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x1d64df88 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x1d6b25a5 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x1d6bba2e get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x1d8d492d lochnagar_update_config EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9d7a60 mtd_panic_write -EXPORT_SYMBOL_GPL vmlinux 0x1da5ab7e fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x1db09157 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x1dd5a22c pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x1de484a3 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x1df9b40f vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1d9695b4 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x1daedb0b da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1db154fc led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x1dcc0aaa debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x1dcef1cf device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x1df0a0ec skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x1df7efe5 switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfb69f4 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e0ca490 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x1e0c4b40 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0x1e0d1d4c mtk_clk_unregister_plls -EXPORT_SYMBOL_GPL vmlinux 0x1e2395ed pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x1e23d9bd sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x1e3e4b41 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x1e52ad8f snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0x1e183797 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x1e2d2b9e __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x1e4d53be switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e645fe5 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x1e6658b1 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e6b13cb device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x1e5b7a31 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x1e5e0b84 crypto_spawn_tfm2 EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1e8756ac blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1e7d663e ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x1e81076a open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x1e89d938 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1e8a7ffe virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e960703 pci_hp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1eb20441 pinctrl_generic_get_group_name EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ed88242 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x1ee0826a dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x1ec456f5 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x1eca3ece pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x1ecd523f bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x1ed7988e nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x1ee4754e ahci_host_activate EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr -EXPORT_SYMBOL_GPL vmlinux 0x1eea7fe3 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x1f1070d8 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1eee68aa fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x1ef34ddc pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x1efc9431 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x1f127796 dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x1f248c23 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x1f1d68c6 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1f2d6eed snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0x1f326745 fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3abf7c register_mtd_blktrans EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4c5dd4 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1f470cbe snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x1f4e8bfb devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f597df1 ahci_do_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x1f5e9af0 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x1f665b92 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x1f7148e4 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x1f73fe11 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f7caba9 fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x1f7d69c4 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x1f810725 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f975e72 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x1f8ef923 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x1f95afd2 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x1f9dfc0b cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fa48995 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1fa565fb dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0x1fa6ddec rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x1fadadb2 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x1fae75bb of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0x1fba62be usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1fc83a12 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x1fb068fd sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x1fb0b4f0 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1fc32e31 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x1fcb548a sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL vmlinux 0x1fccdf5a rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x1fd29036 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x1fcfbd5e serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x1fd35e07 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x1fd6c840 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x1fd80cd7 dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x1fe303a4 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1fe3f369 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fed8d4b fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x1ff04cf5 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x1fed34e8 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x1ff2725e pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ffce6df rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x200efddf mt_prev -EXPORT_SYMBOL_GPL vmlinux 0x202971cc handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x202a684b crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x202bbb9a msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x201f98df snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0x20281845 mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x202dee50 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x20349fd3 nand_read_page_hwecc_oob_first EXPORT_SYMBOL_GPL vmlinux 0x2039b023 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x203c18fa dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x203f7d5b kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x204446cb devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x204bdb11 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x2052fa65 sdhci_dumpregs -EXPORT_SYMBOL_GPL vmlinux 0x2053aed2 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x20497ee2 snd_soc_daifmt_parse_format EXPORT_SYMBOL_GPL vmlinux 0x2055b07c of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2056f6e9 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x205aa196 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x2072d443 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x2080fb8c crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x20630ae7 of_alias_from_compatible +EXPORT_SYMBOL_GPL vmlinux 0x207d47f1 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x208220fc sdhci_set_power EXPORT_SYMBOL_GPL vmlinux 0x208ae278 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x20a461a2 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x209214db of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x20b5fffc devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x20c1ded6 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x20c26493 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x20dc19fb ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x20e0f04b i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x20efb222 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x210b87c9 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x2123d065 __fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x21291ae0 fsverity_get_digest -EXPORT_SYMBOL_GPL vmlinux 0x21303f6a dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x212e413b cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x213d3747 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0x21494650 mvebu_mbus_get_dram_win_info -EXPORT_SYMBOL_GPL vmlinux 0x215195e9 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x2151ae81 device_unregister EXPORT_SYMBOL_GPL vmlinux 0x21563e68 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0x21635448 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2163bf24 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x2166e3d7 snd_compress_new EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2174af44 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x217940a9 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x217e906d icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2173fa65 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x21838c29 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x218ba687 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x219de825 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x218841a1 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x21887134 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x2194129a genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a65a6e snd_power_ref_and_wait EXPORT_SYMBOL_GPL vmlinux 0x21a9138a rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x21b69e41 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x21b6486d fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x21bd1d2e __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x21c22e2c bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x21c8b3be badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ce5e5b ahci_platform_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x21de791c __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x21ec69d4 xdp_features_clear_redirect_target EXPORT_SYMBOL_GPL vmlinux 0x21f0c881 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2203535e vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x220582a0 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x22109b2b ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x222bd695 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x22490c7c vcap_select_min_rule_keyset +EXPORT_SYMBOL_GPL vmlinux 0x22183e32 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0x221e286c sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x22302da7 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x225e0652 __sdhci_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x2268a447 cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2275db5c blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x227f2692 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x228af5a2 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x22a50726 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x22ab36e1 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x2270843f xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x227cd5ed ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x227f4a56 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x228b90b5 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x229bc596 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x229e4a49 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x22a2f9fb relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x22a574b3 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x22a83a25 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x22abf8ed mtk_clk_unregister_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x22b860f2 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x22bf00e0 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x22c65c56 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x22c9e5c6 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x22d0ade8 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x22d4eb99 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x22d79eb5 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x22d29fad tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22d6268e devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e4aa12 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x22eb5815 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x22f4f813 nanddev_bbt_init -EXPORT_SYMBOL_GPL vmlinux 0x22f78f74 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x231adba3 mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0x232d3253 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x2323fc1b vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x23287f68 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x233f6fb1 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x234102e9 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x2344ef4b adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2347a743 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x234c7b37 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x234cb245 usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23549bac edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2368f9e1 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x237e85f9 pm_clk_add -EXPORT_SYMBOL_GPL vmlinux 0x238608ad tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2393e395 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x2393ed19 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23af0e8a crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x23b3eabf devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x239acd82 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x239b41b2 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x23a26443 pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0x23b7ef84 xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x23b963ad sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x23cd2ffc snd_soc_limit_volume -EXPORT_SYMBOL_GPL vmlinux 0x23cdfa5d dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x23ce4c58 dw8250_do_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x23cfd9bd spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x23dd6c77 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x23e04260 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x23f51fff crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x23cd3335 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x23cde157 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x23cf3a71 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x23d54fc4 devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x23d64ae3 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x23d7b55d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x23f2d24e device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x23f6a82f attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x23f7c2d2 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x23fa4b9a generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x24004129 scmi_driver_register EXPORT_SYMBOL_GPL vmlinux 0x240104cb devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x2402f5a5 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x241314a2 ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x241efb85 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x2401a7d0 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x241bda3d gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24215359 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x2426dd7f dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x24273ff5 imx_clk_hw_pllv4 -EXPORT_SYMBOL_GPL vmlinux 0x242b2ee3 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x242f5aa0 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x243354d8 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x2434631f crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x243e39cc pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x2441c516 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x24478d94 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x2447a2e9 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x244a0f84 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x245a5516 iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0x2466d8b8 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x243b21d8 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x24566e77 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x245aaaf4 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x246b84a4 r9a06g032_sysctrl_set_dmamux -EXPORT_SYMBOL_GPL vmlinux 0x247a0e40 ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0x24828ddd platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x246e11fb sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x24852826 __SCK__tp_func_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x248832ec fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x24885f03 led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248ce4e9 stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x249e44dc clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x249fe873 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x24aab572 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x24ab0e5e pci_iov_get_pf_drvdata EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b130b3 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0x24b625fe __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x24c1a385 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x24c43276 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x24c5b730 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x24c6b043 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x24c027c6 genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0x24c82133 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x24d29366 snd_soc_jack_free_gpios EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e36299 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x24e58c8a debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x24e63a39 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x24e83a2b ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x24dd0596 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ec03c8 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24f4d97a dma_fence_unwrap_next -EXPORT_SYMBOL_GPL vmlinux 0x24f74972 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x250344ee phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x250b6825 iommu_present EXPORT_SYMBOL_GPL vmlinux 0x2516b727 mtd_add_partition -EXPORT_SYMBOL_GPL vmlinux 0x25313023 tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 -EXPORT_SYMBOL_GPL vmlinux 0x2536b8cb wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate EXPORT_SYMBOL_GPL vmlinux 0x253babab cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x25559e35 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x255c1017 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x25747de7 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0x257a4b5e xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0x258057e3 device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x258356ba rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x258f5b92 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x256383b6 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x2565e879 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x256a77b2 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x25752f03 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x258ac0d5 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x2598f2d1 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x259d9234 xhci_stop -EXPORT_SYMBOL_GPL vmlinux 0x25a4add1 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x25b86b4d spi_split_transfers_maxwords -EXPORT_SYMBOL_GPL vmlinux 0x25ba3196 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x25a9e22f ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x25af2ce4 __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25be7ced gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x25c0b8ee snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x25bda028 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x25c31985 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x25c3a0c0 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x25c6f3e4 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x25daf73e snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL vmlinux 0x25db7420 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x25e67bc1 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL vmlinux 0x25e823cc of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x2603e700 usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x2623d712 gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x26243e4e tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x262e1b65 devl_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x262e661d rtc_update_irq -EXPORT_SYMBOL_GPL vmlinux 0x2637cb6c led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x263a610b gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x264040ba virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x264b8fb3 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x264dd830 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x260f5bfc usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x2624e225 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2633e500 nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x2637d21d wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x26487101 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x264e8a78 of_msi_get_domain EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2658364a crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded -EXPORT_SYMBOL_GPL vmlinux 0x2660098a shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x267632cc gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x267c9bef __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268fb2af vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x2697f896 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26bb3993 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x26b3ff22 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d62447 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x26dc8607 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x26e35b8f ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f6733f pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x27011639 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x27063560 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x2718c0e6 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x271bf070 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL vmlinux 0x272953cd crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x26fe8152 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x2704bc02 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2728cb34 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x27314acf extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x2733eb37 iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb -EXPORT_SYMBOL_GPL vmlinux 0x2738257d blk_mq_unquiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained EXPORT_SYMBOL_GPL vmlinux 0x2757de78 __tracepoint_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x27697d21 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x277cc964 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL vmlinux 0x27844855 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x276c70a7 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x27755d03 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x277e8d35 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x2792bdcf __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x2795bf5e rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x2795fc9d vcap_set_rule_set_actionset EXPORT_SYMBOL_GPL vmlinux 0x279630e4 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x279b155e event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x27a7e141 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x27ac4553 __sdhci_add_host -EXPORT_SYMBOL_GPL vmlinux 0x27aebc0c sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x27aee644 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x27be475f usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0x27cb9733 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x2796a7e2 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x27a95c15 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x27b4a8f3 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x27cf5f8a dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x27d17c38 of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x27eac572 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x27ec842a wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x27da013e sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x27ea9a05 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x27f00754 class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0x27f2943f of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27fb517c sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x2801d3e3 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0x282a9742 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x282b6318 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x27fdaba5 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x280b0b74 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x280b841e debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x280de39f xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x2815bb45 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x28172c3c regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x281992bf dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x2820e51c synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x2827c931 usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x28473fda sdhci_set_power_noreg -EXPORT_SYMBOL_GPL vmlinux 0x2849b651 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2833f2b3 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x28457b28 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x2849f44c gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x285432d8 reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read -EXPORT_SYMBOL_GPL vmlinux 0x285f075b synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x2864ff6b snd_card_free_on_error -EXPORT_SYMBOL_GPL vmlinux 0x286b8d56 of_nvmem_layout_get_container +EXPORT_SYMBOL_GPL vmlinux 0x286b3df1 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x286f4123 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2874aa3c dm_audit_log_bio EXPORT_SYMBOL_GPL vmlinux 0x287e512d devm_of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister EXPORT_SYMBOL_GPL vmlinux 0x2890e4d4 driver_for_each_device @@ -20667,6004 +20645,6050 @@ EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afe5d6 mtk_pinconf_adv_pull_set EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b60fbe kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x28b62d1e uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x28b76920 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x28b855cc spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x28d2474f crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x28d9f3b3 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x28d7fd90 pci_epc_linkdown EXPORT_SYMBOL_GPL vmlinux 0x28e105c9 proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x28e46794 usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x28e5c822 mas_store EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x2900aef0 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x2903ceda usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x2904b138 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0x29146c32 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x290dc52f sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x29113b3c fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x2912d84b create_signature +EXPORT_SYMBOL_GPL vmlinux 0x2917b4b1 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291ba137 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x29265ccf usb_del_gadget EXPORT_SYMBOL_GPL vmlinux 0x293ac660 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x293d8a3b crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x296c32df serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x296132c3 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x29647e17 md_run EXPORT_SYMBOL_GPL vmlinux 0x296e49e2 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x296e9219 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x29843b50 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x29809d0c sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x2980e49c dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0x2984eb90 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x29857657 rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0x2986c9b6 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x298f04ea pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x2998a6e7 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x29be631d snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0x29981ab1 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x2998e2bf dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x29a43c45 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x29aa4f51 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x29bbb9b9 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x29eb89f9 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x29d75de7 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x29e34769 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x29e47d89 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x29ea73a9 devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ed19a3 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x29ed8e88 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x29f32b50 ata_dev_next -EXPORT_SYMBOL_GPL vmlinux 0x2a20c29e fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x2a274843 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x29f2002b pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x2a0649e7 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2a1ad380 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x2a2961c7 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a3a3ddd mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL vmlinux 0x2a3d7ee8 nand_read_data_op -EXPORT_SYMBOL_GPL vmlinux 0x2a46752b fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0x2a4fc4c3 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x2a330b74 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x2a34a913 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x2a3f5361 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x2a55f557 tps65217_set_bits EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a645dc9 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2a64e378 snd_soc_get_volsw EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x2a7bdece dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x2a89b6d0 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL vmlinux 0x2a8a4d79 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9a4ef1 cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2aa14833 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2a9dbd96 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x2aa815a0 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x2aa9808a __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab42ea3 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x2abb8649 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x2ab56167 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x2ab59fc1 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x2ac1bf81 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x2ac6d620 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2ac34025 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x2acf52cf __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x2ad58596 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x2ae60a60 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x2af679ce pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x2b017f12 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x2af6c311 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x2afca3d2 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x2b0c9177 led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x2b0ddd55 hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2b10abc3 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x2b211b73 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x2b38fd38 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x2b392802 spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0x2b3bcb0d rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x2b3f0fc4 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x2b0e4838 invalidate_inode_pages2 EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b581533 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b93de22 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x2b9f97d9 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2baa6b4a skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x2bd74252 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x2b65bab9 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x2b719dc3 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x2b71b7dc of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2b98513f ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x2ba37f5d unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x2ba9d684 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x2bc2212f bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x2bc7611c debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2bcd11b7 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2bd733cd virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x2bdda410 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x2bdc44dc mpc8xxx_spi_tx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be47b84 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x2be5db58 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x2bf0d414 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2bfaf907 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x2bfdaec8 snd_soc_put_volsw EXPORT_SYMBOL_GPL vmlinux 0x2c000275 mtk_clk_gate_ops_no_setclr -EXPORT_SYMBOL_GPL vmlinux 0x2c04237b css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x2c02d0f5 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x2c06e39c ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2c09534f regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x2c09a856 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x2c0bc907 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x2c102e43 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x2c1be4e4 crypto_alloc_sig EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2473c3 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x2c29da2f usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4ae5fa __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x2c5f8d50 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c41af7d pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x2c5522b4 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2c6272f4 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2c664ec6 snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c69311e irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x2c796b58 spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7de84c sdhci_set_ios EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c83b4a9 for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2c8e257b pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x2c934902 fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2ca2a13c cci_ace_get_port -EXPORT_SYMBOL_GPL vmlinux 0x2ca6f516 tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x2cb30199 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x2cb784b2 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x2cb83e4a pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x2ccc924f debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x2ccc2b0a rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0x2cd7a731 sm501_find_clock -EXPORT_SYMBOL_GPL vmlinux 0x2ce2b231 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x2cd39420 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2cdcadc9 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d0b557a blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x2d1386ee of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x2cf669e0 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x2cf7f60b usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x2d0624e7 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x2d06dfe2 usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait EXPORT_SYMBOL_GPL vmlinux 0x2d1cd2e3 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL vmlinux 0x2d3937be crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0x2d3e05f9 __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4ade40 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x2d46cb98 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x2d4f9a3d mtd_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d614f28 nvmem_layout_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2d66f7bc nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x2d7d2d90 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x2da1dcb8 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2d713a52 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x2d7bffd5 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x2d86076e register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x2d90e4db ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x2d9b03fa ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x2d9c5097 __irq_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x2dbe472b pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x2dc4518d pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0x2dc7c0d3 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2dd45ba0 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x2dc04eeb dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x2dd07dc1 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x2dd43626 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x2dde1e86 spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x2df45974 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x2dfc6597 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x2e01429e spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x2dffded5 ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e0bfd2f __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x2e1188ca ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2e1b86ca dev_pm_genpd_synced_poweroff EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2768bf ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x2e2652d0 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e288445 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x2e31b800 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x2e38683a stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2e3d5e32 disk_set_zoned EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 -EXPORT_SYMBOL_GPL vmlinux 0x2e4878bb __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x2e4e7361 qcom_smem_state_register EXPORT_SYMBOL_GPL vmlinux 0x2e63dd19 mtk_clk_gate_ops_setclr_inv EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x2e721935 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x2e7280a7 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x2e748829 crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing -EXPORT_SYMBOL_GPL vmlinux 0x2e891286 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x2e8d011d pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x2e8f09d9 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x2e913a2b nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x2e9c6586 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x2e9eda4d debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x2eb19fce ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x2e9983df fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2ea15030 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x2eaa3b84 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x2eaeaea2 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0x2eb4a9c4 mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x2eb4c253 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x2eb4e23a vcap_tc_flower_handler_ipv4_usage -EXPORT_SYMBOL_GPL vmlinux 0x2eb9aa5e devm_of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec151b4 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array +EXPORT_SYMBOL_GPL vmlinux 0x2ecb4b90 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x2ed249ae uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x2ee5b403 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x2eea8fc0 of_detach_node EXPORT_SYMBOL_GPL vmlinux 0x2ef2e216 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2ef767d4 da903x_reads EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1040aa snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f235be6 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x2f2bdd6b ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0x2f3959e8 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x2f3f3a68 __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x2f50ec7e __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x2f538324 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x2f53a330 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x2f352c58 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x2f374bcf __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2f393979 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2f49b64a __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2f56a70f platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0x2f5cd3dd mvebu_mbus_add_window_by_id EXPORT_SYMBOL_GPL vmlinux 0x2f5ecbfa nand_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x2f7071ef usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x2f7a5704 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0x2f7ed312 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x2f888102 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x2f656efb snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x2f7a93b2 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x2f9124c3 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2f967b24 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0x2facbe53 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x2fb26495 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x2fb84446 nand_read_page_op -EXPORT_SYMBOL_GPL vmlinux 0x2fb9b94d crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0x2faed3a1 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x2fbdd22d nand_ecc_cleanup_req_tweaking EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc81824 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x2fd4cd0a thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2feec658 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x2ff9b770 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x2fc7a974 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fe45d2d tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x2fea165c bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x2ffc62ab devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x300b7e1c pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x2fff71e1 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x2fffa96e nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0x30011335 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x300701ea pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features -EXPORT_SYMBOL_GPL vmlinux 0x30205884 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x3023cc88 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x30309695 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x3033b573 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x303b4410 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x303dcb22 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x3029cd3d snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x302dfb5f snd_soc_dapm_new_dai_widgets EXPORT_SYMBOL_GPL vmlinux 0x303f0785 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x3041a754 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x304a3624 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x3048f829 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0x30494b98 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x304d9fc8 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x30513a25 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x305787a3 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x305b0f22 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x306f34b8 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x30797b62 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x306a11c3 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x3071c3ea virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x3079e6e9 mvebu_mbus_add_window_remap_by_id -EXPORT_SYMBOL_GPL vmlinux 0x30850fb1 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x3087821e crypto_clone_cipher -EXPORT_SYMBOL_GPL vmlinux 0x30909117 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x309ae7a9 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x307eea79 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x30837832 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x3083b1af spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x3093cf98 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x309a7a96 uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x30a29cff sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x30be4642 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x30c6e126 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x30d3a663 backing_file_real_path -EXPORT_SYMBOL_GPL vmlinux 0x31009aa5 ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x310149ef relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x30b25e42 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x30b5f8d2 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x30dac285 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x30e7e774 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x30f488b9 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x30fd569b balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31074576 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x310b14a5 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x31154af3 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x311a4ceb vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3128539d devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x31294ee3 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x3133e5f0 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x313add35 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x312755ca snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x313cab91 genphy_c45_plca_get_cfg EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x314ca003 snd_soc_lookup_component -EXPORT_SYMBOL_GPL vmlinux 0x3159bd49 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x31474cb9 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x314ebff5 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3167a126 dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x316c958c pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x31793272 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x3185e1c6 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x31886f23 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x31853f4c gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x31871a4d wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319c5ee5 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu EXPORT_SYMBOL_GPL vmlinux 0x31a96b36 __tracepoint_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x31aba116 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x31c596e0 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x31acf887 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31cd02b8 mas_walk -EXPORT_SYMBOL_GPL vmlinux 0x31d4d8d2 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x31dbc07e devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0x31fa10e4 __traceiter_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x321adc39 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x31d0493d hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x31d9effc irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x31dddd83 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x320c7056 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32286997 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config EXPORT_SYMBOL_GPL vmlinux 0x322a63d6 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3230a7be pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x32362cc9 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x32382c70 thermal_zone_device +EXPORT_SYMBOL_GPL vmlinux 0x323f677d snd_soc_component_update_bits EXPORT_SYMBOL_GPL vmlinux 0x324a0368 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x32578a6c watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x32689b6d failover_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3272cf07 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x329b9a99 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x32aa1dbd devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x326ec345 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x327b5def pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x328db9bb skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x32960c01 device_del +EXPORT_SYMBOL_GPL vmlinux 0x329d2125 iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32ac2c8d regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x32b37429 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x32c24398 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32d4365c vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x32dd179d usb_add_gadget -EXPORT_SYMBOL_GPL vmlinux 0x32f2abb0 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x32f4c538 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x32ffeb69 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x33097d72 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x330be80c pci_find_dvsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x330de921 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x32d3d204 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x32d6fad9 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x32d92146 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x32dea645 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x33049c42 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x33266f1b mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x3316a5b2 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3323a2cf debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x332d0f39 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x33324101 vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x333fcfb7 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x33407046 dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x33413fcb bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3342bb5a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x33441591 kiocb_modified EXPORT_SYMBOL_GPL vmlinux 0x33472bd5 qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL vmlinux 0x334cfd2d usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x33540b99 get_mtd_device EXPORT_SYMBOL_GPL vmlinux 0x3355e07a subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x3356b247 vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335ea850 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x33827934 ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0x338a6eea sdhci_cqe_enable -EXPORT_SYMBOL_GPL vmlinux 0x338db153 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x337ca530 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x3389bc12 user_read +EXPORT_SYMBOL_GPL vmlinux 0x338ecfec devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x3393fa69 mtd_read_user_prot_reg EXPORT_SYMBOL_GPL vmlinux 0x33b9d560 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x33bc9cd3 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x33c32151 __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x33d8b162 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x33cfd01d snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x33dde904 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x33dde944 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x33dea59f __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x33ee291e of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x33ef05e4 phy_pm_runtime_get_sync EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local EXPORT_SYMBOL_GPL vmlinux 0x33f1dbf3 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x34049f2c iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x3404bb8a devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x340797d5 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x3413c635 sdhci_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x34152e3d sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x3422d9fa bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x33fecd66 md_start +EXPORT_SYMBOL_GPL vmlinux 0x3401e816 devl_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x3405967e platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x340601a3 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x341b2693 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x342708e8 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x343e4bac blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x342d337b snd_soc_component_compr_get_metadata EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3441ff62 net_failover_destroy EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x34452157 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x344d9975 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x345bd619 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x345d6119 amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x34620f2d spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x3466829b iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3480448c rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x348556ec crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x3493aefd max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34abaf6c fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x34b420f9 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x34b6b78d md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x34c6dd27 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x34ac8cf2 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x34b668ed ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x34b68e49 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x34bb59fe irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x34bcd253 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x34be7e94 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x34c684e2 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x34cd81fa of_nvmem_layout_get_container EXPORT_SYMBOL_GPL vmlinux 0x34d7a4fe firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0x34d805cd device_destroy EXPORT_SYMBOL_GPL vmlinux 0x34dbc133 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34e37a08 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x34fbd54c ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x3504b994 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x3507f567 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x34ee9530 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x34f2124a __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x3503dd61 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x3510489c wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0x351d50da icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x352262db __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x3528f0c5 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x351ba552 snd_soc_component_compr_free EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35369ff8 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x35329416 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x353f03ec snd_pcm_lib_default_mmap EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x354d53d0 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x3551aab4 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x355277f8 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x355af7f7 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x356598d4 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table -EXPORT_SYMBOL_GPL vmlinux 0x3566bbb3 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x356ecab2 gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x3579972a otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x35818eb8 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x3577a43b rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x357c9be4 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x358f5824 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3599bdea fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x359bfd78 clk_hw_forward_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x35a04c2a fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x35a1d6a4 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0x35cb5029 regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x35e1c29a __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x35e1dcb2 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x35ef75f1 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x359e86e8 sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x35b1d0f1 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x35b6ed40 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x35bc34bc iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x35ddcec9 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x35e2217f snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x35f1bae9 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x35f26049 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x35fd6714 scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0x3608e786 __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x361a8bca security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x361f6544 rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362c09f9 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x362c1c16 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x363b2812 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x36360db7 vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0x363e228d devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x3641c37e crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3640d868 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x364c40c3 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x3657205c extcon_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x367abf02 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x367dbba7 crypto_akcipher_sync_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3659cef5 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x367c42e4 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36d2a5de vcap_chain_offset -EXPORT_SYMBOL_GPL vmlinux 0x36db257f edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x36df386a ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x36a3420f usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x36d23b18 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x36e5a6f5 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0x36ede96a msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x36f1e569 mas_pause +EXPORT_SYMBOL_GPL vmlinux 0x36f750ad gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x36f98bee dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x3700c3f1 fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0x37117191 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x37207ab4 split_page -EXPORT_SYMBOL_GPL vmlinux 0x37209846 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x37269572 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x372a0538 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x372f592b regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3708c642 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x3726d5b5 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x372e5057 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x37396a5e __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x373a385d snd_soc_component_compr_free -EXPORT_SYMBOL_GPL vmlinux 0x373b724d vring_notification_data EXPORT_SYMBOL_GPL vmlinux 0x3742e305 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x374a5a60 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL vmlinux 0x3750f1e1 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x37500031 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x3754a093 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x375a947e devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x375bceb3 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x375c68c9 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x3761827b pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x3760a394 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x3775c195 bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0x377970f7 md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37859fe0 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x378c20b1 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x378de7d0 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0x379211a1 vfs_get_acl -EXPORT_SYMBOL_GPL vmlinux 0x37a81bad devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x37b4db0e regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37bb6083 __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x37c3f14c snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x378c4454 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x379e8f48 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x37a040a5 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x37a709fa tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x37c1e9a1 fat_attach EXPORT_SYMBOL_GPL vmlinux 0x37caa5df devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x37cb1eed clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x37d27a7d __nvmem_layout_register +EXPORT_SYMBOL_GPL vmlinux 0x37d1c11a da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x37d3c3ee devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37d4195f screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x37e2740f mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x37d56947 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x37e87865 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37eec728 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x37ef97f8 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x37f10e5e vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x37efb5ee blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x37f45d77 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x37f68a25 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x3802f73a class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x380afe4e blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x3809fae3 genphy_c45_pma_baset1_read_master_slave EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38173810 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x381811e9 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382909f4 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x382b45e7 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x382f0bec fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x38354b40 dev_pm_opp_of_register_em EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x385c1fe7 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x385e0f44 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x386c787c regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x386ca48e nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x383dc53f __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3846ca86 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x384d9762 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x38534cdc max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x3868c23f xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x38711070 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x388242e4 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x3885150a ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x38855513 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x38879ecc gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x388de77a blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x38a15706 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x38a3db54 pinmux_generic_get_function EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b39757 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x38b80b3a balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x38bc484f vp_legacy_set_queue_address EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38dfe70e dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f47c8e of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x38edcb2c anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x39090f1d trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x390b6ad5 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x3915ea4b clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x392bccd0 sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x392dce42 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x392f633f ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x39189aea devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x39297559 nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x393deb46 tcp_plb_check_rehash -EXPORT_SYMBOL_GPL vmlinux 0x394c0527 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x394ce7f5 ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x3956d075 user_update -EXPORT_SYMBOL_GPL vmlinux 0x39597ee1 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x395ff2dc xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x39689fe2 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x393c669a devl_register +EXPORT_SYMBOL_GPL vmlinux 0x394a251e acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x394d063e snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x394ee48f phy_select_page EXPORT_SYMBOL_GPL vmlinux 0x396c07bf devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x396f8582 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0x397b9264 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x397bbc70 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x397c7ab3 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x39828128 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x399e7122 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x39a94b9d regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39abec4e rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x39aed6f3 devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x39b24a64 imx_fracn_gppll_integer -EXPORT_SYMBOL_GPL vmlinux 0x39b6e6d4 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x39bd25b5 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x39c2f378 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x39bae0af fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x39bf2c57 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x39c04882 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39c6447b sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x39c6711d ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x39cbac7b stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x39e334d3 devlink_free EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x39eac9bb rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x39ef9f88 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x39f04ad8 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x39f365ab rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x39f403a1 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x39fc3efc devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x39fd8fcc devm_otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x3a1105d3 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x39e5d5c0 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x39e73888 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x39ed6e5a sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3a06bddf led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x3a14f027 sbitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask EXPORT_SYMBOL_GPL vmlinux 0x3a171150 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x3a283092 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x3a3c6ea3 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3a2d2208 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x3a339b66 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x3a3df04c mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a43cf17 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a4fb4f0 snd_soc_card_jack_new_pins EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a6bc4d6 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0x3a7f6fa6 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL vmlinux 0x3a91343a ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x3a91cb5a br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x3a9aa60f usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x3a5805cb rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x3a59fc7a serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x3a63db2a dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3a71a5c5 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x3a7735a8 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa0e10c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x3aa50622 cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3aa95b8a snd_soc_of_get_dlc +EXPORT_SYMBOL_GPL vmlinux 0x3aacc0a2 pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x3aad2959 __tracepoint_console EXPORT_SYMBOL_GPL vmlinux 0x3ab70944 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x3abc3f71 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3ac18d1c blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x3aca0439 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x3acc4e7c crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x3ac0229c nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x3accb2ab crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource EXPORT_SYMBOL_GPL vmlinux 0x3ace40d9 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x3ad351a9 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x3addd0f5 nand_get_large_page_hamming_ooblayout EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x3af6baab __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x3af9224b usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3b0023d1 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x3ae6ff60 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x3b083805 snd_dmaengine_pcm_get_chan EXPORT_SYMBOL_GPL vmlinux 0x3b08a01d rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x3b09a79a __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x3b0ea0c9 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x3b155e75 meson8_aobus_parse_dt_extra EXPORT_SYMBOL_GPL vmlinux 0x3b165040 mas_find_range_rev -EXPORT_SYMBOL_GPL vmlinux 0x3b23ea4d amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x3b2935d6 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3b2879dd sdhci_cleanup_host EXPORT_SYMBOL_GPL vmlinux 0x3b2fe974 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b39a99b usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x3b3b0974 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x3b3bf488 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x3b458193 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x3b4aca10 fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b6a3a2c rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x3b74a799 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x3b8899b5 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x3b8abab7 mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b952740 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x3b516c63 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x3b683884 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b80e486 bdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x3b97cbef xas_find -EXPORT_SYMBOL_GPL vmlinux 0x3b989e8f rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x3ba18794 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x3ba51047 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x3bb36157 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3ba573ab tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3bbd7a86 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x3bbda790 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x3bd97d3e regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x3be8c27d usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bfce728 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x3c050e86 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3bf76961 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3bf8ea61 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x3bfb646f mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x3bfdfad4 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x3c034666 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x3c07cb71 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x3c0ee75a __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c169b90 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3c1820f9 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x3c19069a gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x3c1bd234 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c1f00cc pinconf_generic_dt_subnode_to_map EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x3c276318 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0x3c2a224b __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c2e7d12 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x3c38ab05 snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x3c3b1149 snd_soc_component_init_regmap EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c66d4cb ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x3c44aed5 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x3c52bf3b __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x3c59db18 clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi -EXPORT_SYMBOL_GPL vmlinux 0x3c67c6c2 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6e5bb1 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x3c724542 snd_soc_of_put_dai_link_codecs EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x3c7441cc __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3c7eeaac perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x3c83bc8c __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x3c903a07 devm_snd_soc_register_dai EXPORT_SYMBOL_GPL vmlinux 0x3c914c31 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x3c99ed16 led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x3c9e8b2b ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3ca6a0f0 vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x3cb41fff ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x3cbccd17 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x3cc7ce82 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x3c93095e snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x3ca909dc crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3caa8332 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3ce75b73 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x3cf46fc4 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x3cf4ef38 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x3cd50603 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x3ce04f76 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x3d03d964 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x3d04aa89 pkcs7_supply_detached_data -EXPORT_SYMBOL_GPL vmlinux 0x3d1508c9 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x3d17a03a mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3d056c6c pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3d1b3813 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x3d285349 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL vmlinux 0x3d2b2846 devm_regulator_bulk_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3d2dfa87 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x3d31caae i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x3d297f98 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x3d29f8fe do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x3d300eb0 vp_modern_generation EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d3bf134 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0x3d3faf57 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x3d3b04a3 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5dc306 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x3d625e7b nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3d663771 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x3d78c481 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x3d81f2a5 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x3d859143 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x3d5cadb0 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x3d61e29d fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x3d6a316f tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x3d6dd467 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d87445b blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x3d94530f synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x3d93a648 rio_bus_type EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9caeba __io_uring_cmd_do_in_task -EXPORT_SYMBOL_GPL vmlinux 0x3da47ef6 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x3dabd56c l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x3d9e95a5 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x3da43a82 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x3da62d22 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x3da63d14 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x3dbb4674 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x3dc1fba0 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x3dc4939f regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3dcc5aa8 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x3dcf54ab sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x3dd91bd1 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x3de600e6 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3dc8097e sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x3dd56577 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x3ddee58f _snd_pcm_stream_lock_irqsave_nested EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df5ebbe switchdev_handle_fdb_event_to_device -EXPORT_SYMBOL_GPL vmlinux 0x3dfcc5e8 mtd_point -EXPORT_SYMBOL_GPL vmlinux 0x3dfd4d98 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x3dfbddf9 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x3dfdd59a snd_soc_dai_compr_set_params EXPORT_SYMBOL_GPL vmlinux 0x3e124093 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3e1f54ce snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL vmlinux 0x3e2b2bca regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x3e22774f uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x3e31f3dc cg_regs_dummy EXPORT_SYMBOL_GPL vmlinux 0x3e34e96d mtk_clk_unregister_cpumuxes EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e47fe1f gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x3e52bc71 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3e4725db pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x3e48aba3 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x3e52265a snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x3e6d35b2 __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e834a1a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x3e773d22 rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3e94fe73 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x3e9b8ac8 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x3eb72064 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x3ebb7294 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x3ec0c3ef nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3e947424 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x3eab595d devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3eb07e87 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3ecb6e48 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x3ed8f76a ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x3ed4f4d1 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x3ed5972e usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put -EXPORT_SYMBOL_GPL vmlinux 0x3eed928c dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x3ee41cbe ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x3eea869c led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x3eecd377 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef9aacf sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x3efa96cf uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x3ef1a862 mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x3ef22016 fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3f16cb0b genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x3f1d1ee6 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0x3f355003 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x3f0ba102 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x3f0c7378 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x3f290dc7 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3f2a83c8 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3f34c145 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4aaa83 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0x3f5d1de6 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x3f73fa43 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x3f74d1d0 __sk_flush_backlog -EXPORT_SYMBOL_GPL vmlinux 0x3f760b7b bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x3f7cc334 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3f4c3b14 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x3f65fc06 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x3f76b57a __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x3f77a1fb snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x3f7ffcd1 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x3f83b72e trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f891136 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0x3f8f3c57 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x3f951b25 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3f9de711 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x3f88a1df relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f8db92c sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x3f9f34f0 handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0x3fa3036c msi_device_has_isolated_msi -EXPORT_SYMBOL_GPL vmlinux 0x3fa73d54 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x3fa7da3d ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x3fb2bb0b __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x3fb5dd46 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x3fbe5827 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x3fbf1a11 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x3fcb1d6e net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x3fd65ea5 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x3fdd92ea iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x3fca9019 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x3fd70bf3 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe4b970 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3fee16fa sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3fedb36b debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x3ff7a9a6 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x3ff2ebe9 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x3ff49cd0 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x3ffc292e rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x3fffdbda dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0x401f53e1 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x40368f7e of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x40051c5d snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x401ea797 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x4020bf18 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x4022dcbf gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x40336d2a dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x403b8aa4 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x403e6d83 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4052e822 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL vmlinux 0x4053694a dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x404ea8eb platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x4058e7cc thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x4059839a blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x405b1666 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x4065c4a0 sm501_find_clock EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x40958e55 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x4087d4cf component_add EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40b61f88 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL vmlinux 0x40be6ccc nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x40da3fdc usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x40dfdff5 pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x40ed24ba edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x40ed690f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x40b9b1e3 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40bdb2e6 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x40c6b26d bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x40de4779 of_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f17bb5 mxic_ecc_put_pipelined_engine EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40fb008b devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4104a252 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x4108552a sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x411a1c56 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x411e14e2 snd_soc_info_volsw -EXPORT_SYMBOL_GPL vmlinux 0x41271ae8 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x410f01fa folio_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412ffce2 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL vmlinux 0x4131c24e inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x41367822 thermal_cooling_device_update -EXPORT_SYMBOL_GPL vmlinux 0x4139cf78 __fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x413e1176 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x41310604 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x414a3f6f __trace_trigger_soft_disabled -EXPORT_SYMBOL_GPL vmlinux 0x414ca742 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x414c5c9a snd_soc_component_compr_set_metadata EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x415319c8 __kmap_local_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x41567da2 balloon_mops EXPORT_SYMBOL_GPL vmlinux 0x41580488 mtk_clk_unregister_gates -EXPORT_SYMBOL_GPL vmlinux 0x4167db1f ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x416da80b shmem_read_folio_gfp -EXPORT_SYMBOL_GPL vmlinux 0x416eb7e1 extract_iter_to_sg -EXPORT_SYMBOL_GPL vmlinux 0x417de50d tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x415ad8ca ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x415f28a3 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x4165b9c8 tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4188c86a msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0x418b69ec ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x419703c6 da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a72573 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x41b4f9aa snd_soc_dapm_init EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41bb4e96 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x41c6a458 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x41c9b4b6 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x41c6abe2 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x41d348f9 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x41e11ea0 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x41e5f883 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41eec3d8 sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0x41f0d088 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x41f537a3 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x41f5a2a3 rockchip_register_softrst_lut EXPORT_SYMBOL_GPL vmlinux 0x41f91ea0 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x42005e32 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x42087317 snd_soc_tplg_component_load EXPORT_SYMBOL_GPL vmlinux 0x4208e40c sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x420bf996 mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL vmlinux 0x420cae23 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4214bad9 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x4215c43f __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x42239f9b pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x42340d5c regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x42351d16 devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4238b8de dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4218531d key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x423a54e5 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x423d298f scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x42474fb1 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x424c4389 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x425c0511 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x425f125f regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x4263ccaf usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x426e995e dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x4274cfe9 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x4263f595 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x42676a39 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x42775909 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x42786530 vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0x427a285d __pm_runtime_use_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active EXPORT_SYMBOL_GPL vmlinux 0x42837827 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x42973ad2 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x428e72db dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x429639b8 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x429b48b7 __fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x429c558e regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x42a7ab0b sdhci_calc_clk -EXPORT_SYMBOL_GPL vmlinux 0x42b014bb dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x42b0ef14 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x42b98f38 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x42be133c vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x42c5682d inet_bhash2_update_saddr -EXPORT_SYMBOL_GPL vmlinux 0x42d21c9d tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x42a54d7f blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x42af332d get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x42b176d4 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x42b576f1 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x42be009c rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x42cf2fc5 devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x42e732cb vcap_rule_add_key_u128 EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fea5ea anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x43035e39 mtd_unpoint EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x431e755b fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x430eba10 tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x433088d0 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x433a0242 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x433ae68c alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x433ccb54 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x43408f21 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x43424a90 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x43449dd8 make_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x434a6d75 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x435d580a mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x4372e601 dpcm_end_walk_at_be EXPORT_SYMBOL_GPL vmlinux 0x4372f3c2 sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x4375fb6b pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ae4eca fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0x43b2daec clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x43c160c7 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43c405fe icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0x43c4c7f2 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x43b8786b pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x43c36b75 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x43c76ea6 mtk_pinconf_bias_disable_get -EXPORT_SYMBOL_GPL vmlinux 0x43c8276d pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x43c91368 irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x43ca3c85 snd_ctl_sync_vmaster EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43cc49e7 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0x43d007da regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x43d51169 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x43db946b devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x43e10458 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x43e3bdd7 vcap_tc_flower_handler_portnum_usage -EXPORT_SYMBOL_GPL vmlinux 0x43f612af snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x43ced274 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x43d14d75 user_update +EXPORT_SYMBOL_GPL vmlinux 0x43e59881 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43ee3cc4 imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x43f0e9e4 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x44041d72 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x44204340 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x44239884 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x442cfaf5 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x4402d07d usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4409a063 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x441a1f25 devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4432b819 devl_params_register -EXPORT_SYMBOL_GPL vmlinux 0x44393f27 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x443477ea device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x44398199 mvebu_mbus_del_window EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x443beac6 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x4447d8d1 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x444c56d6 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x4448df4b ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4458673a fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x445bdc04 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4454ea6f snd_soc_get_volsw_range EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop -EXPORT_SYMBOL_GPL vmlinux 0x44773b96 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4476b113 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x447aa222 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x447f809c imx_clk_hw_pllv3 EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks EXPORT_SYMBOL_GPL vmlinux 0x448479af __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44879728 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x4491b4ed snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL vmlinux 0x44947d07 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x44a2e2e6 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x44a6fc3f snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x4486d604 vcap_tc_flower_handler_portnum_usage +EXPORT_SYMBOL_GPL vmlinux 0x449396fd query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x4499ef2a phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x449d518e dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x44a00acb pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x44a03ccf crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x44bac5c4 vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44c557e5 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x44c68f2f usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44e2aba7 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x44ea5ad1 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x44eb7c13 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x44f3b117 ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x44f9e455 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x44d0be10 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x44df923a pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x44f26f94 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x452208ad devm_mipi_dsi_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x452e57db blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x453068e0 devl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x453d275f __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x45453085 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x45459650 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x4514e385 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x45150618 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x4544151b omap_iommu_save_ctx EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x45563f9f meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x45582de9 xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4566e106 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x457123fe pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45788fe9 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x45827fb3 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x4582e0ac component_compare_dev -EXPORT_SYMBOL_GPL vmlinux 0x45851756 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x458a8113 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x459730db snd_soc_jack_get_type EXPORT_SYMBOL_GPL vmlinux 0x4599effb __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x459b0312 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0x459f6cf0 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x45a3aed8 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x45b50cb7 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x45a79def ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x45af976d to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x45bf3f64 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x45d033c5 snd_soc_add_pcm_runtimes EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0x45e0fe7e ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get EXPORT_SYMBOL_GPL vmlinux 0x45e96051 clk_regmap_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x45f53014 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x45fb2ab2 devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x4609a302 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x464414f3 ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x4662c907 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0x466436de dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x466b8c51 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4613b16c zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x4616eb7a ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4636e218 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x463ad36e ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x46479fb2 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x4649f848 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x46687350 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x466a1765 edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x466ed7d0 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x46701b0e regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x46711c5b driver_find -EXPORT_SYMBOL_GPL vmlinux 0x4673a6ca clk_hw_determine_rate_no_reparent -EXPORT_SYMBOL_GPL vmlinux 0x467a1e6e mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x46804894 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x46860189 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46b532aa tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x46b5862d regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x46bbc213 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x46a1f79c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46aaaa59 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0x46b04053 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x46b30af9 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x46d04731 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x46d4c382 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x46d70f6d __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x46da3eed vp_legacy_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x46e9f896 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x46f64ee6 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x46f88e4c trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x46cf1963 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x46d6e594 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x46f9e36a snd_soc_dapm_disable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0x46fdb750 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x4712c881 failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0x470933d1 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4714b973 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x471b853a dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x471d8159 relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4729d32f ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x472e9904 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x4730e7eb devl_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x47329f7c __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x4737220b nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0x473b5f86 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x473d6a51 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4741b42f pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x475bca5c rio_mport_initialize EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4769246c devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x4771c88d max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x4785756c pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x4786caf5 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x47899a6a devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x478ec7ac device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode -EXPORT_SYMBOL_GPL vmlinux 0x479ae884 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x479e7cd5 put_pid EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a3e9b7 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x47a4b3c9 debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c90440 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x47cfa789 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x47d8e4c2 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x47b0e8b0 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x47b897e9 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x47bf79e7 vcap_tc_flower_handler_ipv4_usage +EXPORT_SYMBOL_GPL vmlinux 0x47c19a7e to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x47d56083 usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0x47d7ce10 usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47e52d09 snd_soc_bytes_info -EXPORT_SYMBOL_GPL vmlinux 0x47e98a4e wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x47f38f40 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x47e7212f soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x47f4381e spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x47fb3293 ata_sff_softreset EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x48139bce snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL vmlinux 0x481f9840 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x480933b7 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x480e336c skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4816d38a snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0x481c2c9c devl_traps_register EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x483350a2 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x483fdd8f iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4842e9bd vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0x485333e3 devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0x4856cb2e iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0x4859d8fe scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x484f6125 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x48559324 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x486ba5c2 crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0x4870b173 snd_soc_bytes_put -EXPORT_SYMBOL_GPL vmlinux 0x487244e2 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x48867519 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x487e0011 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x488165e5 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x4885b7f6 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4886d4eb vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0x48902305 meson_pmx_get_func_name EXPORT_SYMBOL_GPL vmlinux 0x489a214b __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a5ac3b dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x48b65869 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x48c2c566 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x48b206d8 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48b979ef phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48c27576 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48c3eca5 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x48c89489 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x48c806e5 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x48d3df5c pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x48e1262c __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x48f3a260 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x48d843ee snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x48e00479 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x48e8fb60 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x48ed79df scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x48f15219 usb_gadget_unmap_request_by_dev EXPORT_SYMBOL_GPL vmlinux 0x48f410d0 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x48f93f80 of_clk_get_parent_count EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x4904cde5 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0x490f21bd __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x492d4315 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x49304bdd fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x494021d3 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x4946afcc bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x4949df81 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x49549eb1 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49710b2a extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x49761522 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49953c18 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x4999cdf0 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x49a85d57 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x49b11fb7 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x49b67ef4 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x49b93e02 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x49bf4a95 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x49bbc808 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0x49bc866f iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x49c43be1 devm_hte_register_chip EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d1973d nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x49d9f030 usb_ep_fifo_status EXPORT_SYMBOL_GPL vmlinux 0x49ddf303 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x49e1280c ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x49de68ed debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x4a14dca2 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x4a155ef5 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x49ef0738 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x49fcaab2 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x49fd7274 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x49fef123 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a20089f cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4a22e3d2 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x4a23c532 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x4a1a70dd snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x4a1ad89d devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4a22aa07 regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x4a2c9ad8 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0x4a2d2aac md_run -EXPORT_SYMBOL_GPL vmlinux 0x4a32f757 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x4a3461f3 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0x4a37dc33 snd_soc_cnew -EXPORT_SYMBOL_GPL vmlinux 0x4a4f88b1 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4a59b7c8 tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0x4a64a551 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x4a30e8c6 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a3364c0 crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4a3ff4d2 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4a4da01e __nvmem_layout_register +EXPORT_SYMBOL_GPL vmlinux 0x4a6bec1c securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x4a727b0e __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x4a83c4fd rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x4a8f70bb crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x4a9babfe tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x4ab77d97 __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0x4ac47e5c __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x4a83b5e5 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4a99ed30 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x4a9d53f5 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4aa1d3c3 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x4abe0654 snd_soc_remove_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0x4acabac5 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x4adf5c21 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL vmlinux 0x4afc90fd fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x4b086aab ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4b0f01d6 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x4b1d32db of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x4b24203c vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0x4b2a13d1 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x4b2e9997 switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0x4b3db174 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x4b5b7684 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x4b738311 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x4b87e782 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4b8ae72b crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4ad9c1ab mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4aef6426 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4af026e0 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x4b009664 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4b0b6498 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4b19cb22 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x4b205c09 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4b24550f devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x4b25fc58 priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x4b2c93b5 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b3acff9 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x4b48b57c fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x4b54a998 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x4b57442f phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x4b5e60eb fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x4b68c12a usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4b69a4ad inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x4b7a98b7 of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x4b97bef3 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x4b9a0e3e blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x4b9b6144 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x4ba245b6 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bc96be8 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4bcbf7e7 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x4bd91b66 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4bf191a8 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x4c036652 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x4c04dcce wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x4c0885b4 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x4c169316 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x4bde2d6b pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x4be21690 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x4be5b9ea xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x4bf6c0ed component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x4bfe5067 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x4c0c9448 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x4c0f3cf4 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x4c2400f9 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4c27660e devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c2b25ce nand_gpio_waitrdy EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x4c2d1692 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c2d664d dev_pm_opp_config_clks_simple EXPORT_SYMBOL_GPL vmlinux 0x4c373065 devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4c4b997e xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x4c4fed39 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c4e3652 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c650528 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x4c61c584 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x4c66de19 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x4c6fef28 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x4c7c8f3c irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x4c98391d blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x4c9dd6a2 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x4c6f0b13 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x4c89777d gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x4ca5ea7f blk_crypto_has_capabilities EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbdb00d edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x4ce75f6f dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x4ced4361 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4cbd0379 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4cbd813b usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0x4cbe7079 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x4cc1a424 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x4cdf022b phy_get EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x4cf4ad6c mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL vmlinux 0x4cf6b4bf disk_set_zoned EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4cfabe6e iommu_fwspec_free EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d0224fe handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0x4d0a111e dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4d21f2dc devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x4d2fcbf1 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x4d12ec36 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x4d1d2e44 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x4d25d3e2 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x4d29f83e shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4d2b6166 of_css +EXPORT_SYMBOL_GPL vmlinux 0x4d32b812 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d411fab regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x4d4e93c1 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x4d66b5ae devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d74d134 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4d772a40 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x4d8cf460 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x4d9b29b5 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x4da73380 sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4d784ec3 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d7fbbed mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4d83c63c _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x4d8526eb free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4d9c65c9 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x4da5f145 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4daead69 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL vmlinux 0x4db25cc3 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x4db8c077 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x4dc41663 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x4dbf4260 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x4dc05de2 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x4dc56b88 ZSTD_customMalloc -EXPORT_SYMBOL_GPL vmlinux 0x4dc6fa21 blk_crypto_intersect_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x4dc75cd4 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x4dd3e5d2 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4dc860f6 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x4dd7bf98 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x4ddc24e1 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x4de12bd4 elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x4de24ef8 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4deb1e5e trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x4df299f1 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x4df40a97 bpf_offload_dev_match EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e136f46 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4e04eb70 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x4e1541c1 ZSTD_customFree -EXPORT_SYMBOL_GPL vmlinux 0x4e15e1be devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x4e16642f __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x4e1b02b0 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x4e2bc1f8 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL vmlinux 0x4e2d14fc aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4e41c042 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x4e4cec62 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x4e5207d1 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x4e66ef9f snd_card_disconnect_sync EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop -EXPORT_SYMBOL_GPL vmlinux 0x4e82191f blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x4e95a38d devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x4e76b04a devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x4e802306 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x4e98ef83 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb262de rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x4eba762d snd_soc_component_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x4ec1e24b blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x4ec44aa5 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x4ec5b412 relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x4ecf022b linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x4eb00389 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x4ebe39dd vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x4ebe3f8e spi_sync EXPORT_SYMBOL_GPL vmlinux 0x4ed2167d kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x4ede1ed5 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x4ee09993 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0x4eea67fe page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4eefd6c3 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x4eed3ae2 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efa9c17 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f193235 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x4f221415 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4f2bad9e mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4f2dfc8a sdhci_request_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4f2e62d7 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4f358adb relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x4f373864 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init EXPORT_SYMBOL_GPL vmlinux 0x4f3ecae1 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4f4c4d9c thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4f4f018b of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x4f65cf52 unregister_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x4f679f7b fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x4f57483c ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x4f6315fc iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x4f6786a5 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6ac2e4 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x4f6e03c0 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x4f724d55 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f779bb2 device_set_node EXPORT_SYMBOL_GPL vmlinux 0x4f7f96b9 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x4f806334 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f86448c pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x4f8c3310 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x4f9045e4 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4fa1782d snd_soc_tdm_params_to_bclk EXPORT_SYMBOL_GPL vmlinux 0x4fae9772 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x4faf4683 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x4faf8422 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4fb61309 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x4fb72c9e ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x4fc4c752 blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x4fcd46f4 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x4fd790c8 failover_register +EXPORT_SYMBOL_GPL vmlinux 0x4fd4b1cf regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fde8d74 unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe233d8 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4fe9ef7b regmap_read EXPORT_SYMBOL_GPL vmlinux 0x4ff4345b __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x4ffaa4bf ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x5001d186 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x500c2cdd snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL vmlinux 0x50163f89 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x502307e5 snd_device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x5028b518 sdhci_pltfm_init -EXPORT_SYMBOL_GPL vmlinux 0x50294b90 vcap_is_last_chain -EXPORT_SYMBOL_GPL vmlinux 0x502b6878 ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x50363379 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x503734d2 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x50380384 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x4ff9333b ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x4ff9be00 musb_set_peripheral +EXPORT_SYMBOL_GPL vmlinux 0x5036b88f xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x503d4769 xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x5048ee47 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x506a0c38 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5053cd5b ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x50543bf9 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x506a48d1 snd_soc_bytes_put EXPORT_SYMBOL_GPL vmlinux 0x506ab3a9 usb_ep_queue -EXPORT_SYMBOL_GPL vmlinux 0x506cda8a spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x50882d7d snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x506e778c da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x507f8af2 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x50837b7b kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5096eb7c snd_soc_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x50a70d58 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL vmlinux 0x50ae7468 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x50affb7a tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL vmlinux 0x50c631b9 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x50c7384e ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x50cd27eb sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x50cb18e5 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x50cfee04 ftrace_set_filter_ip EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num EXPORT_SYMBOL_GPL vmlinux 0x50e9c18c power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x50f7487a mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0x50f7c7e0 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x50f96242 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x50f116c1 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510887aa dma_resv_set_deadline +EXPORT_SYMBOL_GPL vmlinux 0x51022faf usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x51044c2a nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0x510ffe6b fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x511d1279 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0x511fb9b1 mtk_clk_unregister_pllfhs -EXPORT_SYMBOL_GPL vmlinux 0x51247f01 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x5132a82e snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x5138af82 otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513d75db splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x51400178 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x51612c99 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x51632cad sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x5166b34c gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x517cff9c xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x51867db4 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x518792db sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x518cc592 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x515da1ce to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x51747a16 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x51767777 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x51801221 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x51812151 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x518468a3 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x518748fb class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x518b828c blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x518e55e3 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x5190c77f iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x51922ceb usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x51910be8 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x519b5cd1 phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51cbd5b9 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x51e4e3bf snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL vmlinux 0x51edbc9c raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x51ee9aa8 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x51fa6724 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x51a51892 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x51ee8ffb usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x51fea973 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x52060f3e user_read EXPORT_SYMBOL_GPL vmlinux 0x5209011e irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x520abe3a cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0x520ed189 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0x520f4819 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x52109623 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x5211461c pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x5213a279 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x521177e8 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x5214554b snd_soc_of_parse_audio_simple_widgets EXPORT_SYMBOL_GPL vmlinux 0x521471e9 wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0x521b36a8 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x52247a6c rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x52155a73 omap_iommu_restore_ctx EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5226dfe2 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x522c1cfa __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock EXPORT_SYMBOL_GPL vmlinux 0x523a025f pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x52497c07 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x524bbc3c mtd_device_parse_register -EXPORT_SYMBOL_GPL vmlinux 0x524f9fc5 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x52527992 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x525356b4 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x5254b181 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x5254ba3c spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x5260dbc2 mtd_ooblayout_count_eccbytes EXPORT_SYMBOL_GPL vmlinux 0x5261322c rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x5265a079 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x5266e8d8 of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5277eb64 pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0x527a8467 nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5282b851 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x5294edc5 __traceiter_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x52ac0d21 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x52ad90ca tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x5281867e strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x5292d800 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x52990394 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x52a55486 arm_iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52beebfa spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x52b5f72d debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x52bc879d rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x52c7b94d proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x52d3e874 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x52d2b248 vc_scrolldelta_helper EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52fa4558 regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5301316c nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x53067f06 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x52d57bb4 devl_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x52fc2c9c ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x530f5672 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x53112d85 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x5318ffc2 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x5321a3f0 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x5323dc5d devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x531e40f7 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x5321d15a mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x5325118a sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x5325c0ab pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5328d8a8 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x532bee1b pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x5334aa67 vcap_admin_rule_count -EXPORT_SYMBOL_GPL vmlinux 0x5337ec3c dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x5344e5dc bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x534768f5 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x534ed7a5 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x533fa29c trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x53426f40 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x534f7d1f pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x535169a5 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5354663a kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x535689d5 imx_pcm_dma_init EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535cff21 crypto_akcipher_sync_encrypt EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x5393ec01 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x53a0f0ed snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x53a83b8a led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x53a92c1c fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53e1f02d phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x53eeff32 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x53fe9244 regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x540277a5 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x5405791d devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x540c2374 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x53df30be ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x53e052aa of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x53fed84f lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x540a2988 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x5412958a mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541fd1d0 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL vmlinux 0x54226071 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x542522b8 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x5420aca9 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x5426ed0a iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x54293195 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x542b9da6 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x542c98ad fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x54348438 snd_soc_jack_report -EXPORT_SYMBOL_GPL vmlinux 0x543492de filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x545d35f7 ata_ncq_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x54606fe3 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x546410f0 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x546fcc96 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x54950fa6 scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0x542f998d kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x542faaeb __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x54317f5b devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x54365efd rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x544ee8b2 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x5461c4b0 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x546bb654 scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0x546f044d edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x547d6b7d vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x54808461 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5486d9c5 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x54883661 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549e6d57 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x549f49f8 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x5498f4b7 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x549b2aa4 thermal_zone_device_priv +EXPORT_SYMBOL_GPL vmlinux 0x549e41cf debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x54a0ceb7 rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54bbeda2 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x54bf42e8 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x54c8bc9d nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL vmlinux 0x54eebeec dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL vmlinux 0x54f468c5 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x5502e537 __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x550791aa rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x54b1479f snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x54b8aa70 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x54e8eb68 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x54f6ef33 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x54f71224 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x54f73593 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x55027b6a tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x5502fffd nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x550491d2 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x5504aaa9 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x550d7a12 dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0x550e4258 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5510b1c7 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x551640f8 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x551a2dcb xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x551e5220 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x552d0a12 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x5518c408 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x552af228 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x552fa6cb pwm_get EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553c5443 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x553d66ef ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5541d3c6 snd_ctl_activate_id -EXPORT_SYMBOL_GPL vmlinux 0x555f6f34 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x556592f0 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5546b6ad usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5563fb4e ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x556af501 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x556bbbf2 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x556c2ae2 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x556c601c balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5575f8e8 ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5582b3ab firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x558890d6 mtk_clk_register_composites -EXPORT_SYMBOL_GPL vmlinux 0x558eae0f of_regulator_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x55b4f863 __dev_fwnode_const -EXPORT_SYMBOL_GPL vmlinux 0x55c0e93f regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x5595c676 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x55a0e214 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x55ae1b37 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x55ae6e4c sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x55b9bde8 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x55c3b6eb ping_err EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55cf67a5 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x55cf966c genphy_c45_read_eee_abilities EXPORT_SYMBOL_GPL vmlinux 0x55cfbb0d group_cpus_evenly EXPORT_SYMBOL_GPL vmlinux 0x55d0fbe2 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x55d518c1 usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0x55d8ee09 mtk_eint_do_init -EXPORT_SYMBOL_GPL vmlinux 0x55e2175f net_failover_destroy +EXPORT_SYMBOL_GPL vmlinux 0x55de9f71 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x55e5ebaf regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f2ab25 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x55f7e645 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x56028145 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x5604c884 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560d4016 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x560e6131 snd_soc_dapm_ignore_suspend EXPORT_SYMBOL_GPL vmlinux 0x561285e9 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x561540ae devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x5616041c devl_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical EXPORT_SYMBOL_GPL vmlinux 0x561aa8f4 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x561ac628 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x561c041a devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0x561c78e8 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x56214285 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56261d9c usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x562c7bf2 devm_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x562f4953 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x563589b0 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x563769e8 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x56392607 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x5640a81d srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56507f1f devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5661d398 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x56622fe1 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x566e74e6 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x56708100 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x5671d265 hte_push_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x567aadd8 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x567b3bc9 snd_soc_get_stream_cpu -EXPORT_SYMBOL_GPL vmlinux 0x5691df77 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x5642a527 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0x564995ec lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x5671dfab mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5676c9ed usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x567d6f2b of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x568bb0a6 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x569c7551 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x56a5c58b fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x56a86367 devl_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x56aa4cce virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x56af72d1 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x56affd81 __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x56bee4bc md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x56c38456 of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0x56c78204 __cci_control_port_by_device -EXPORT_SYMBOL_GPL vmlinux 0x56e2b28d usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x56c02f6a tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x56c4af6d extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x56d678b0 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56eb5d93 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x56f6d3d8 snd_card_rw_proc_new EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x570785d9 sdhci_get_property -EXPORT_SYMBOL_GPL vmlinux 0x5710f3d7 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x5713518d key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x5713b35d of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0x5724be15 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x56fd5692 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57204c24 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x57224492 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x5728b551 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x573d2cdf thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x57571d48 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x5762c944 snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0x57682d92 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5776a32a nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x57296c80 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x57653610 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x57884d5a securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579341c7 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0x57973616 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x57977117 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x5798793e snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x579dc0f5 __folio_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x57a2deb7 bsg_remove_queue EXPORT_SYMBOL_GPL vmlinux 0x57a2e44a __tracepoint_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x57b50fee xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x57b75510 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x57a81b6d sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x57afd7cf usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x57aff318 meson_pmx_get_funcs_count EXPORT_SYMBOL_GPL vmlinux 0x57c0bb39 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x57c4840c fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x57c76f2b platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x57c99210 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x57cf70d8 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x57d1c040 dm_disk EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57e73883 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x57df7b1c crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x57e11469 thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0x57e24786 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x57eda402 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x57ef3185 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f62655 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x57f7bbda tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x58054e3d regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x580f2277 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x57fa6c6f misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x57fd4bba msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x57fecd98 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x5800b4bb regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x58019a62 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x580a7be6 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x581085e8 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x58123e71 power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x5814e830 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x58186a22 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x581fefcb devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x582f49f1 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x5824fb03 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0x58286551 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x582cdff4 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x585f17b8 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL vmlinux 0x58490123 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port -EXPORT_SYMBOL_GPL vmlinux 0x586f725e platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x5867609e xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5885201b __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x58936e1e disk_set_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0x58ae0adb devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x58b709d9 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x58b6840d sdhci_start_tuning EXPORT_SYMBOL_GPL vmlinux 0x58b9e3ac led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x58c370db ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x58cd2af3 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x58cf70b2 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x58d14442 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x58d228bc ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x58dad94e usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e8e9dc snd_soc_register_dai -EXPORT_SYMBOL_GPL vmlinux 0x58ebe4c3 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x59025cdb rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x5902f52b dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x5932733d fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x59007d3f phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x590d91e0 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x5929e340 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x592f2909 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x593399d3 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x593fd58d usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0x5947ca28 sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x5952ebf8 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x59498838 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x59551cc1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x59578388 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x595881ab nl_table -EXPORT_SYMBOL_GPL vmlinux 0x5973de06 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x5961f782 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x597528a2 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5977ed68 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x597d6b30 driver_set_override EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x599a4b19 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x599bbbd2 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x598896f7 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x59919955 sdhci_calc_clk EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x59a2ff9e __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x59a7457f lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x59afb2a7 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x59a64630 pinctrl_select_default_state EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x59baece6 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x59b895e3 user_destroy EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c66657 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x59cb3b11 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x59c98f5a fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x59cf9aaa __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x59d2d223 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x59dd3fbd ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x59dace5d mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x59de32ff iomap_invalidate_folio EXPORT_SYMBOL_GPL vmlinux 0x59e1cd40 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x59e6b76b sdio_readw -EXPORT_SYMBOL_GPL vmlinux 0x59e98170 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x59e989e5 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x59eced74 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x59e8f230 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x59e998b8 snd_soc_of_get_dai_name EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59f20998 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x5a09ec38 __sdhci_read_caps EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a18f7c9 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a1ea351 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a22aac2 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x5a1f7b36 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x5a2d61db irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x5a345176 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x5a448581 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x5a36ab93 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5a3ff196 nvdimm_has_cache EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a5492a5 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0x5a5cc78b devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x5a5cad1f inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x5a603247 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x5a69aae9 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a7b890b class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5a6fa5aa snd_soc_get_pcm_runtime EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a87555c debugfs_create_str -EXPORT_SYMBOL_GPL vmlinux 0x5a883ef3 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x5a926ea5 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x5a95da3f blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0x5aa2889f dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL vmlinux 0x5aa796ba __put_net -EXPORT_SYMBOL_GPL vmlinux 0x5aa91ceb clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x5a7d8d68 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x5a8e42c9 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x5a8fd3f3 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab6d3db devm_snd_soc_register_card -EXPORT_SYMBOL_GPL vmlinux 0x5aba4353 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x5ac4ac71 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x5ad5da2e fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x5ae612d6 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x5aec5359 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x5aefae33 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x5abf34ab dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5ae03bd7 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5ae16704 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL vmlinux 0x5b022116 skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x5b069346 pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0x5b0b1280 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x5af7d9a4 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x5afc722e __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x5b06ca98 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x5b0f68b9 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x5b1c8d37 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x5b2137ca get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b22c2a2 devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x5b283590 get_device +EXPORT_SYMBOL_GPL vmlinux 0x5b28519d ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x5b2ad2ec extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x5b2c2c51 mtd_del_partition EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x5b3b9861 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5b449455 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x5b5fb033 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x5b60f2bd rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x5b6a2650 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x5b7ebf4c i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x5b7f9106 genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0x5b8aa1de snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL vmlinux 0x5b9272ec devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b4a1ff8 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5b4eddad sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x5b64b965 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x5b79741f screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x5b827562 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x5b8a9f5f mtd_get_fact_prot_info EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x5b9abed1 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x5b9c6265 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x5b9fc0ac net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x5ba463b6 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5ba45adf snd_soc_lookup_component EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index EXPORT_SYMBOL_GPL vmlinux 0x5bacdadb pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x5bb5b77f netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5bb9524d crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x5bb8ea76 pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0x5bbd0d15 rt_mutex_trylock EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bbfb6bd n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x5bc19d05 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x5bc89ec6 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5bcc7f25 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5bd008cb crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd6dbd3 dw8250_do_set_termios EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be6fc23 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x5bf37141 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0x5bf4a0a5 nand_decode_ext_id -EXPORT_SYMBOL_GPL vmlinux 0x5bfc5500 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x5be2a620 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x5be34ab0 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x5bec83e3 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5bfcbc52 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x5bfea7bc vfs_remove_acl EXPORT_SYMBOL_GPL vmlinux 0x5c0098c8 dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x5c0f2fdc ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x5c2100fa cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x5c120256 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x5c2c3373 pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c39da1b blk_rq_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c39f59f debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c59513f snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x5c47ee3c tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x5c4fc0a9 of_regulator_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c67fd98 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x5c720650 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x5c5c28d4 xhci_stop EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x5c7a906b dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x5c84d1f6 mvebu_mbus_get_io_win_info -EXPORT_SYMBOL_GPL vmlinux 0x5ca74ebe dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x5cac1513 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL vmlinux 0x5c867903 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x5c9348e4 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x5ca7b369 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5cab86f7 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cbb52c8 dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x5cc2862a bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x5cc29b51 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x5cc30196 clk_hw_init_rate_request EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5cd8986d crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x5cd98f62 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x5cdefacb sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x5cc9e306 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x5cd2a2ab devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x5cda69bd sdio_memcpy_toio EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d0cc4b9 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x5d0dfd01 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x5d11aa0d sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x5d2158d3 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x5d2436ae dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5cfd0a01 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x5d074737 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x5d14cd0d usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x5d219ad6 snd_soc_dapm_del_routes EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d304977 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x5d326366 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5d34311c sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x5d357e48 irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0x5d52c440 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x5d61376e register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x5d67deee noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x5d3ea9ab blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x5d6720b4 alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x5d6a73c0 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x5d744293 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x5d72f644 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x5d7475d8 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x5d79aad2 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5d9b17e4 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x5da6440d pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da7b756 ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x5db1aada iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x5db51f7a tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x5db96fca devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x5dc00a9a rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5dabf59e usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5dcb2eb5 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x5dce8b29 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x5dd77848 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x5de4575c regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x5df95145 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5de73dfd ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5dee0f44 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x5e04c738 vp_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x5e0b7de6 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x5e0bd1c3 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5e242b63 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x5e45a6ac ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x5e4ed906 spi_transfer_cs_change_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x5e1207d5 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x5e191e3f is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5e2f3d29 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x5e48dfe2 metadata_dst_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e545cf4 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x5e547c53 devl_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x5e58691b irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x5e61cc79 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL vmlinux 0x5e624949 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x5e65d648 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e663c42 snd_ctl_register_layer EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7b404f usb_autopm_put_interface EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5ea0e5d8 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x5eac0b9e sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x5e898fe0 genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0x5e994d62 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x5e9efc87 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5eaef504 __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5ecee649 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5f0bd4ea gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x5ec0b4e4 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x5ec771a7 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5edc7af1 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x5edfe6d6 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x5f042ea7 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x5f04ed1c snd_dmaengine_pcm_open EXPORT_SYMBOL_GPL vmlinux 0x5f0dff3d serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x5f0edab5 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5f155171 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5f14e40f of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5f1b26fd usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x5f1c4201 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f24176b dev_pm_opp_config_clks_simple -EXPORT_SYMBOL_GPL vmlinux 0x5f27cb68 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x5f35c71d __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x5f3e1a97 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5f481ddb __mtd_next_device -EXPORT_SYMBOL_GPL vmlinux 0x5f54349e devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5f4b33c0 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x5f60ccf4 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x5f6cb410 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f74a74d mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x5f75fed5 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x5f7600bf snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL vmlinux 0x5f9e7338 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x5f720cb6 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x5f7b3018 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5f822102 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x5f83710c fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x5f8c1d56 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x5f8cd4ff amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5f96bf3a kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x5f9beba1 vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fa680bd debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x5fa7d5a8 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0x5fb16041 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x5fb79aed ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x5fbdf913 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x5fbc5cfa i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt EXPORT_SYMBOL_GPL vmlinux 0x5fd11c7b cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x5fd2004f bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x5fd8499b serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x5fd22525 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5fd6b785 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x5fde0c8f pinmux_generic_get_function_count EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0x5fe1a55e __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x5fe3cc81 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x5ffe9fd2 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5fed0fe4 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x60009237 from_vfsgid +EXPORT_SYMBOL_GPL vmlinux 0x6004498e spi_mem_supports_op EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x600c422f sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x6010c4b4 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x600ae082 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x6011eb03 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x601b1723 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x6045d6f7 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x6046c375 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x6047e880 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6013ba80 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x601882f7 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x601b4fac __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x603b1e5f vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x604d179f snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x60552fb7 fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0x6060ee96 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x60619be0 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x60661812 dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init -EXPORT_SYMBOL_GPL vmlinux 0x6076bd93 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x607b19fe sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x60807d6c devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x608b270d fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x609b1707 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6092161c spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x609389a3 stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a3a05c uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x60a5dbc2 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60b8bc36 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x60ccef39 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x60e73bf0 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x60cd1138 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x60e8941e device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f600f9 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x60f3cc90 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x60f86577 devm_snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL vmlinux 0x60fb1424 __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x60fc2a8b power_supply_charge_behaviour_show -EXPORT_SYMBOL_GPL vmlinux 0x61034a1e fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x6107bbfb phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0x611882ba fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x6105d28c wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x611cb0a2 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x6123b99b addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612ef7ea pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x613c8f32 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x613e0a6e rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all EXPORT_SYMBOL_GPL vmlinux 0x614f48c9 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x615c03f9 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x61506d8e rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0x615da564 mtk_clk_register_pllfhs -EXPORT_SYMBOL_GPL vmlinux 0x616eee80 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x616d9545 __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x61774cd4 mtk_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x6178003a balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x617c7956 usb_anchor_urb EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x618206d0 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x6196779f ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x618bc84c phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc -EXPORT_SYMBOL_GPL vmlinux 0x619965e8 pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619dd31b bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x61a565d9 device_move +EXPORT_SYMBOL_GPL vmlinux 0x61a60a50 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x61acc1ec sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x61b1ca40 governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c3d819 of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0x61d123c3 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x61da382f usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x61ca68a6 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x61cb394c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x61d1195a scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x61d18127 snd_soc_jack_free_gpios EXPORT_SYMBOL_GPL vmlinux 0x61e2b3cc firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x61e7870f crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x61eaa0fa __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x61edccd5 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x61eea8b2 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x61f05c0f iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x61f0c356 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x620d4c42 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x621ccec2 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x621d1677 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x620bcd62 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x620d761f rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x621e6a6c x509_load_certificate_list EXPORT_SYMBOL_GPL vmlinux 0x621eb946 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x6227fab1 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x62219149 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x62273499 sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x622bf39e clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622f3a88 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x623765b4 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x623311a4 snd_soc_info_xr_sx EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule EXPORT_SYMBOL_GPL vmlinux 0x623c3b54 tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x624b103e dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x624e8587 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x62540d3f component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x62486c8c dsa_stubs EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x62595c35 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x6266df40 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x6266fd44 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x626ce317 of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0x626f2070 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x627aef59 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x6288e600 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x628e8e0a iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x62896dd7 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x628fac91 ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0x629a2b38 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x629a8528 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x62a2f04a bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x62b456b4 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x62a87547 sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c11ed7 ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x62ce9b31 musb_root_disconnect EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x62d938fb fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x62f931a5 ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x63038850 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x62e9ffeb crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x62eb48ea fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x630abc9b vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631a5fbc blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x632eda7d con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x63353b79 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6327e187 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x634108ed __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x6358889d snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL vmlinux 0x6375eedc sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x637bff78 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x6353b8ca devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x636da949 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x63714509 serial8250_request_dma EXPORT_SYMBOL_GPL vmlinux 0x63808708 xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0x638119bb of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x63920ac6 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x6392bc6f debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x63ac4572 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x6389cea5 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x638ab360 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x639463b5 nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x63963ceb crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 -EXPORT_SYMBOL_GPL vmlinux 0x63b7044c usb_phy_generic_unregister -EXPORT_SYMBOL_GPL vmlinux 0x63b7e69a usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x63ae1070 class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare EXPORT_SYMBOL_GPL vmlinux 0x63c9d672 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x63d2178c irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x63df4475 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x63e1672a gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x63e1ed0f dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x63cb24dc __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x63e32894 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x63f6bd8f pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x63fe4b28 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x640620ff edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x641b449e devm_clk_hw_register_fixed_factor_index EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 EXPORT_SYMBOL_GPL vmlinux 0x642e33ff thermal_zone_get_trip -EXPORT_SYMBOL_GPL vmlinux 0x6439cf42 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x643df045 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x6448fe7d fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x6449d0b9 virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x64523578 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x6457af2d cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x646372e0 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x64639a02 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x646b5a93 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x646b2b5a pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0x646eca33 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x6470e1b7 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x647261fd ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6478d946 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x647a25fd sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x647fa484 device_register EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x64972c35 of_alias_from_compatible EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x649daf0d sdhci_set_clock EXPORT_SYMBOL_GPL vmlinux 0x649e8520 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x64a5d26e pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x64a67ddb dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x64a77439 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x64aa8b06 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x64b70c78 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x64c1d759 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x64c123b0 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x64cd63e6 irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x64d472be register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x64da2ed5 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x64e2703b pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x64d5a3bc iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x64d5c81a usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e4910c rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x64f6bda3 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x64f75c25 ftrace_set_filter_ips -EXPORT_SYMBOL_GPL vmlinux 0x6514b623 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x650cc348 snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x651dfd45 tps65217_reg_read EXPORT_SYMBOL_GPL vmlinux 0x651f3b88 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x6524488a ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x65298771 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x652dfd4c platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653e1b48 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x65449018 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x6547cfbb gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x65506d3f dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x655931c5 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65629958 xdp_features_set_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0x6566c0fa snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6585f1fa snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL vmlinux 0x65905ff6 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x65906a51 of_device_compatible_match -EXPORT_SYMBOL_GPL vmlinux 0x65b57203 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x65b95c46 usb_gadget_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x65bbf98a __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x655794a7 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x6560090e crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0x6563f899 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x6568fe86 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x658bd907 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x658f04f1 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x65b1ebd2 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x65b610fd vcap_select_min_rule_keyset +EXPORT_SYMBOL_GPL vmlinux 0x65bb1bd6 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x65bfa64a sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x65c24768 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x65c5bd25 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x65c9ee62 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d79134 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x65fc743a pse_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66038dc0 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x65cdb93a edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x65dbbe92 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x65ffad6a __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x66034d10 nop_posix_acl_access +EXPORT_SYMBOL_GPL vmlinux 0x6604b064 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x6614a2e9 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6618eb88 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x66268a67 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x66285e35 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x66286528 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x662bf94a fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x66398a24 devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66553122 bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666768f6 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x6666113f regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x666ae0a0 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x6674ef35 genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6687ffc4 devm_hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw -EXPORT_SYMBOL_GPL vmlinux 0x66a5d7a2 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x66a3a788 crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0x66abe057 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x66acc84a regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x66b4077d nanddev_mtd_max_bad_blocks EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c150ba pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x66d35cde wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x66d36b33 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x66d816a2 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr EXPORT_SYMBOL_GPL vmlinux 0x66dcedbd __tracepoint_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x66df26a5 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x66eeda3e ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x6707e39a bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x6711757b crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0x671b182b of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x671be537 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x671c490b ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x6724cb5a kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x672ee6ea dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0x672f2661 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x67337ab9 dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x6733fa5f crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x673836ee devres_find -EXPORT_SYMBOL_GPL vmlinux 0x6739f506 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x67429805 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x6740c56b crypto_sig_sign EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x674bc3c3 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x67650198 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x676a755f meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x674a6f4f usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL vmlinux 0x674ea187 netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x677315ce icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x67786640 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x677a8995 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x67878eb7 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67956da0 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x679a646b of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0x67a166ec __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67a1cff1 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x67a65b0c led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x67a6ab86 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x67afbadc sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x67b8a771 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67d4ac53 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x67d6a8eb key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x67d83717 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x67c5dfd5 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67c5f485 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x67cbebd3 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x67d52e04 usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0x67da1efd of_genpd_remove_last EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e56622 vcap_del_rule -EXPORT_SYMBOL_GPL vmlinux 0x6802815b ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x68032139 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x68096a72 shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x6814d9d4 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x681b5c46 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x67f74a2c blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x67f99beb of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x680bbe0d vcap_find_admin EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6827189f sdhci_reset -EXPORT_SYMBOL_GPL vmlinux 0x68281692 ata_bmdma_error_handler EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x684a9f30 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x68538dd1 devl_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x685418a8 icc_put -EXPORT_SYMBOL_GPL vmlinux 0x686c58c2 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x6833de4f thermal_zone_device_id +EXPORT_SYMBOL_GPL vmlinux 0x68358092 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL vmlinux 0x6847a76e devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x6867e7c9 debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used +EXPORT_SYMBOL_GPL vmlinux 0x688aec79 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x688c9071 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x688d04b2 io_uring_cmd_do_in_task_lazy EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68a1bcaf tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68a3af3c pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x68981389 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x689d70c5 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x689f0d8a sk_detach_filter EXPORT_SYMBOL_GPL vmlinux 0x68acbbc5 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x68b6d8e2 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x68b1a326 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x68b4decc snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x68c2a6b5 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x68c971a3 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x68d67549 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x68d6e89e crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x68d9eb76 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x68e5ac1c tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x68f8acb7 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x6908989e xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x690a6a01 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x69181930 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x6925964e devl_unregister EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0x692739f0 of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6931f401 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0x693b2416 pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x693cb561 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x693f2fdb of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x69341897 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x694c631e uart_insert_char EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x6972438a cpts_unregister EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697fc9a3 usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x698d6cd2 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x69916668 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x69a7ffc4 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x69850d16 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x698aed8b rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x698af802 device_create +EXPORT_SYMBOL_GPL vmlinux 0x699355cf ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x69a5c5e7 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x69b1352b ahci_platform_assert_rsts EXPORT_SYMBOL_GPL vmlinux 0x69b1745e FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0x69c6ad15 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x69b7e0b0 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x69b87ab1 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x69c7b17c clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69d42dfb adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x69dcbdc5 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x69e1abdb switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69e79e51 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x69edda63 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69f76d3d gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a1e2936 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x6a2478a0 __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6a2d9b32 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x6a3b9b0b thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x6a431c57 rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0x6a441fe4 devm_reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a584b17 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x6a71d318 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6a7ce604 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x6a838fd6 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6a894976 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x6a7217cc regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x6a8003e2 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x6a8030c5 fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6a83965f devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x6a8a98a8 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6a932f62 snd_soc_debugfs_root EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6aa85506 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6abdcde2 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x6ac23cb7 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x6aa7f82e split_page EXPORT_SYMBOL_GPL vmlinux 0x6ada2e9e srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x6ae8d2db wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x6aeac6ae ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x6aeee938 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x6af37637 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x6af4784d thermal_zone_device_priv -EXPORT_SYMBOL_GPL vmlinux 0x6af8c33d snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x6af1517c d_same_name EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel -EXPORT_SYMBOL_GPL vmlinux 0x6b0f4a4b snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x6aff86ee usb_udc_vbus_handler EXPORT_SYMBOL_GPL vmlinux 0x6b1d97d2 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x6b31065b thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x6b258b12 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x6b2c2c99 tegra_bpmp_free_mrq EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x6b346481 snd_soc_of_parse_audio_simple_widgets EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b453f78 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x6b47dfee security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b4ff66a vchan_tx_submit -EXPORT_SYMBOL_GPL vmlinux 0x6b5c11f2 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x6b644dba blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x6b54c09c ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x6b54d4c4 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6b699139 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6b7f1abe virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8d28d7 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x6b912310 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x6b9781db fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x6b84b64d elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b8fe63e bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ba1da00 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x6bb04338 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x6bb9c6ef ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x6bbba7e2 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x6bbb35e4 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd4ba62 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6bd1f234 pm_relax EXPORT_SYMBOL_GPL vmlinux 0x6bd86f13 devres_get EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params -EXPORT_SYMBOL_GPL vmlinux 0x6be1d50a snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL vmlinux 0x6be673c1 spi_async -EXPORT_SYMBOL_GPL vmlinux 0x6be83236 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0x6beec7ed __crypto_alloc_tfmgfp -EXPORT_SYMBOL_GPL vmlinux 0x6bf322a4 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x6bfece58 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x6c02911e ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x6c2c3320 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x6c3e0dce snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL vmlinux 0x6bebe2bf pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6bff9c07 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x6c0079d7 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6c075722 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x6c1ab18e mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6c227f2b __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6c28091a crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x6c2d7e15 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c339310 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x6c3dd5ad snd_soc_dapm_get_pin_switch EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4053c3 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x6c479f1f sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x6c486735 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x6c4700a9 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6c4a3331 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c5229cc nand_reset_op -EXPORT_SYMBOL_GPL vmlinux 0x6c556a09 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x6c556272 pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5bc838 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x6c605352 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x6c607f3f pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x6c641988 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x6c67f04e dax_inode EXPORT_SYMBOL_GPL vmlinux 0x6c6c7cd9 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x6c70a9d1 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x6c713d57 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x6c78d9b2 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x6c75de9a dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work -EXPORT_SYMBOL_GPL vmlinux 0x6c922b10 devlink_port_register_with_ops -EXPORT_SYMBOL_GPL vmlinux 0x6c92c042 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x6c9498b3 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x6c9509c3 class_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6c95bc66 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6c9cf8a5 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x6c9d4cd3 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca79a24 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6cad22bb sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x6cc1401e netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x6cc2ee97 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0x6cc7c8de __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x6cb419a4 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x6cbcb229 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x6ccd3537 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x6cd37f11 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x6cdf63fb perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x6ce1f463 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x6cf1d880 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6cfb3c4d sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6cdf68a0 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x6cefca24 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x6cfccd4d clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d165306 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x6d1c03a0 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x6d0e97e7 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x6d1ccf94 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x6d201d4c component_master_add_with_match EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time -EXPORT_SYMBOL_GPL vmlinux 0x6d222b97 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d461dd5 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x6d325a11 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6d41df91 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi -EXPORT_SYMBOL_GPL vmlinux 0x6d53ca29 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x6d567936 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x6d686139 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x6d4d7b4d irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d66c5f2 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6d6880c9 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x6d793693 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x6d7c3eb4 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d802ad5 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x6d80cb8a perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x6d8b4492 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x6d934020 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x6d9871b9 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x6d9c78b1 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x6d8b765d bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x6d96bc62 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x6d999eb6 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x6da3c493 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x6da3cb4e cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x6dab86cc devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6db06d76 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x6db7846b wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6da88c1e shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x6da97f97 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x6dacaff9 ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc28714 kick_process EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused -EXPORT_SYMBOL_GPL vmlinux 0x6dcaee3a snd_soc_dai_link_set_capabilities EXPORT_SYMBOL_GPL vmlinux 0x6dceb6f2 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x6dd24dbe ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6de5afce __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x6dfa842f pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x6dfaf14c regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x6dfb224a __virtqueue_unbreak -EXPORT_SYMBOL_GPL vmlinux 0x6dff4f4a ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x6dffccbf snd_dma_buffer_sync +EXPORT_SYMBOL_GPL vmlinux 0x6dd8febc alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x6de9ac5a mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x6e082447 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0x6e08a913 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e1413f0 nand_gpio_waitrdy -EXPORT_SYMBOL_GPL vmlinux 0x6e203523 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x6e26bec4 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x6e28018f perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6e2a4338 regulator_irq_map_event_simple -EXPORT_SYMBOL_GPL vmlinux 0x6e347218 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6e0ee5af iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift -EXPORT_SYMBOL_GPL vmlinux 0x6e39254c anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x6e3d1143 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x6e3fb5c9 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x6e3b5544 ohci_resume EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e5d1967 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6e40460b sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL vmlinux 0x6e5b61c4 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e5d7e44 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x6e5ebf65 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit EXPORT_SYMBOL_GPL vmlinux 0x6e679321 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x6e6a5bcc debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x6e6b1601 genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e95f04a dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x6e9ac473 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x6e8c5582 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x6e9f1cd5 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x6eab5894 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x6eb6bd5a rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0x6eb97f58 badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ee864c7 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6ebed14b of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x6ee990d1 lpddr2_jedec_manufacturer EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6efd4305 dma_resv_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x6f083c94 radix_tree_preloads +EXPORT_SYMBOL_GPL vmlinux 0x6f098f3a mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f188c23 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x6f1cd77f mtd_get_user_prot_info EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f2d664b tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6f32ed53 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x6f32fa80 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x6f3b303c phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x6f488e0e virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x6f5d7b4f phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x6f2db6f7 sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f2e3e13 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x6f3e4976 snd_soc_dapm_weak_routes EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f767ef0 cpts_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x6f7ca348 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x6f71626e dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f7ecf68 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6f7fa735 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x6f9ac199 mtk_clk_register_muxes EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6f9eba59 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x6fa4ccb6 blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0x6fa86c26 regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x6fa95233 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x6fb00394 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x6fc46c8e nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fc82f7d blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fe0b858 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x6fee9c82 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0x6feefc3d pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x6ff07144 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x6fd52ffb debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x6fdf0f3d snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6fff4124 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x70027e18 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x6ffee36d pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700be92a nand_prog_page_end_op -EXPORT_SYMBOL_GPL vmlinux 0x70126f5c vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x701ecd73 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x70549046 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x70562b52 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x706ded86 sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x701cdd90 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x701cf44f uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x701ff207 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7025a155 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x703a0e7d sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x705912f7 devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array EXPORT_SYMBOL_GPL vmlinux 0x7073cccd cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x70760905 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x7087f77d devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x708c9d56 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x7097ee7e spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x70aebcb9 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x70b8197e snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0x70be1798 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x70c05c3e nf_ip6_check_hbh_len -EXPORT_SYMBOL_GPL vmlinux 0x70c1e0dc get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x70b22c13 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x70bf2dd5 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x70bf5b93 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70c73107 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d9012f fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x70d9e9ee devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x70ecae6f __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x70f039e4 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x70fceb74 dev_pm_genpd_synced_poweroff EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710d004b dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x71105655 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x71128542 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x7117e03a mtk_clk_gate_ops_no_setclr_inv EXPORT_SYMBOL_GPL vmlinux 0x711f5d46 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x712dc4da cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x713498ce snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL vmlinux 0x713efac8 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x7145fc25 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x7153bec6 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7154c8f7 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x712de97f sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x715430f4 ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x716216eb pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x715d1614 pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71690ee2 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x716e6aae snd_soc_runtime_action EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x718794ed vcap_get_rule -EXPORT_SYMBOL_GPL vmlinux 0x71945f96 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x717bd699 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x7188a59b skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x7189d11f gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x718d198e serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x718de0ff trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a1728a od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71ab0251 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x71a98aa1 snd_soc_get_stream_cpu EXPORT_SYMBOL_GPL vmlinux 0x71ab98d1 __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x71adbec6 of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0x71b15830 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x71b4d07b scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71bc4ff9 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x71c0a548 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71d33410 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x71d4e58a snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL vmlinux 0x71dee190 nand_write_data_op -EXPORT_SYMBOL_GPL vmlinux 0x71e47ab6 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x7209a879 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x721eea67 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x722ed3d7 vcap_enable_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72389994 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x723b1f11 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL vmlinux 0x72487b48 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x724a3b67 crypto_sig_set_pubkey -EXPORT_SYMBOL_GPL vmlinux 0x725ce9a1 of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x725db93e snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x71c04231 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x71d80825 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x71e1b450 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x71e57bc9 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x71ed20af ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x71f283db sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x71f61720 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x72045d2b tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x720dd0c2 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x72571ae4 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x72621c0b thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726860bb mtd_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x7268b43a tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x726f7fb5 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x7270dc13 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7271df1a perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x727798f2 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x727814c3 of_clk_parent_fill EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x72792768 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x727cb5cb crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x727c3c6b lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry -EXPORT_SYMBOL_GPL vmlinux 0x728b01e5 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x728c7df2 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x72968cee md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x72855464 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x728af5f3 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x728b1f1d devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x72a19155 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x72a653db pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0x72bb8d9d skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x72b422f9 mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0x72c3b6d9 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x72ca08c3 tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x72decd4c nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x72e8d2c0 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x72f76403 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x72ff01aa usb_gadget_map_request -EXPORT_SYMBOL_GPL vmlinux 0x7311006b ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7313f2f9 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x72c7bbfe gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x72e6200d usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x72f5d318 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x73045f77 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x7313592e regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x731b0f9f serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x733af2ca devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x7346dddc mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x734d7574 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7358413d crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x73603abc fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x736a33c9 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x7377ead0 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0x7382f7db strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x73965bfc snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x7374bcb1 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x73788a6f bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x737c1e3d sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x73868220 dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73abfa37 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x73a53a25 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x73a86773 ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0x73ad8e09 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x73ae7a57 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x73b3d633 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73b9a361 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x73c0cd67 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73cd85fe crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x73d34c3d ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x73d42860 snd_fasync_helper -EXPORT_SYMBOL_GPL vmlinux 0x73dd55c8 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x73e27d2e devl_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x73ec905c transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x73f03178 bio_blkcg_css -EXPORT_SYMBOL_GPL vmlinux 0x73f71c9a blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x74108b2b spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7412e028 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x7419c0bd init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0x742082d8 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x7422c5a8 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x7428a085 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x74420cef dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7443c662 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0x744ff1c6 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x7473b4c1 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x7475880a fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x74803be4 netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x748892b8 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x748ddbf1 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x74a26c74 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x74a36297 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x745145e0 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x745af525 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x746687c2 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x7484083f __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x7489b9a8 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x7492d9a8 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bf059d raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block -EXPORT_SYMBOL_GPL vmlinux 0x74da9ec7 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x74faa96f kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x74bfda5b snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x74d1374f perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x74d2f929 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x74d81c12 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x74fad5d2 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x74feb0af vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0x75034d68 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7504a301 devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x75064e6a power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7506eff1 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x750abe1f da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x751b6b17 __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log -EXPORT_SYMBOL_GPL vmlinux 0x751d587f genphy_c45_plca_get_status EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753510e5 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0x7550763a ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x75509aa4 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x7555e5f7 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x752be1fa trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x753f94f8 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x7540aea0 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x755a1cc7 power_supply_get_property_from_supplier EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x755ca460 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x75705812 dma_fence_unwrap_first EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7597633c pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x75a67ae4 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key EXPORT_SYMBOL_GPL vmlinux 0x75a94d16 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x75bec73b blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75b68ab7 devm_regulator_bulk_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x75c91796 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x75cbd366 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x75cf3ad1 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x75d1e440 drop_reasons_register_subsys -EXPORT_SYMBOL_GPL vmlinux 0x75d68987 sdhci_alloc_host -EXPORT_SYMBOL_GPL vmlinux 0x75d9c16e sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75db385d vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x75d3b7d5 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x75d564cf i2c_match_id EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75f520c2 sdhci_set_power EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x76195b1e dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0x76237ee5 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x760ece5e elv_register +EXPORT_SYMBOL_GPL vmlinux 0x76170ce3 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x7624bc54 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7631f52e msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0x7637d75b __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x764009a2 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance EXPORT_SYMBOL_GPL vmlinux 0x76560928 clk_regmap_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x76684ae4 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x766948bf ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x767ee816 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x765ad27e blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76856d98 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x768d90c0 hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x768ec8ae devm_of_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x76966ae4 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x76a4a76f ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0x76bb2d0f vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x76bdffab ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x76c3c533 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76c8ec9d tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x76a326f1 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x76ab4b66 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x76ac1322 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x76c29570 devm_pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 -EXPORT_SYMBOL_GPL vmlinux 0x76d6b052 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x76d73503 of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x76d96d2c edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dd75a1 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x76df1c17 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x76e0f60a __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x76ed8a36 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x76e81d18 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f17926 pci_iov_vf_id -EXPORT_SYMBOL_GPL vmlinux 0x76f53e9b vcap_tc_flower_handler_ipv6_usage -EXPORT_SYMBOL_GPL vmlinux 0x76f6bb46 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x76fd2a4f dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x7722abdb regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x77508408 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x77518698 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x76ef3604 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x77046b2b perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x77126b1c efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x771a3bab debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x771ad802 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x77240ecc of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x772683dd __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x77307284 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x773c1beb usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x774cafae bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x774e0ff5 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x7751cd91 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x7752526d snd_card_ref EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77640a2c register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x775ea075 sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x77641ae2 devm_thermal_of_zone_unregister EXPORT_SYMBOL_GPL vmlinux 0x77663e45 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x7771386f kiocb_modified -EXPORT_SYMBOL_GPL vmlinux 0x77737aad devm_regulator_bulk_get_const -EXPORT_SYMBOL_GPL vmlinux 0x7789104f tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x776747b5 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7770b530 nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0x777301b8 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x77a93abc tegra_bpmp_mrq_return EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b62ec7 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x77c107e1 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x77cf925d sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL vmlinux 0x77dcf2bb regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x77b7767c tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x77d5624d pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x77e0cd93 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x77e295e8 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x77e45c50 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77e87ae2 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x77eb61de do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x77f19f5e badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x77f20af1 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x77f67a57 irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0x77f71f22 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x77f811d3 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x78090e2d deregister_mtd_blktrans -EXPORT_SYMBOL_GPL vmlinux 0x781545f0 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x781c0be5 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x783c2396 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x78164d20 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x7820e205 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x782c3f87 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x78394f79 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x784dc0ee virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x784f7d3c msi_lock_descs EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78619e8f devl_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x7872ad98 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7889869e l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x785bcc92 omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x785d7b9b da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x786ad60a mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x787e184f devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x788b5ea4 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x7891c2c8 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x78915bfa gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a0abbd synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x78a1b0d5 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x78bd485c vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x78a71b3d ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x78bbe518 fsnotify_find_mark EXPORT_SYMBOL_GPL vmlinux 0x78c499da meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x78c85b26 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x78d47f5e of_pse_control_get -EXPORT_SYMBOL_GPL vmlinux 0x78dda542 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x78d45b8f blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x78dd4a14 usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match EXPORT_SYMBOL_GPL vmlinux 0x78ee8b6f rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x790fa5a5 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x7910dd05 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x7918ef4b xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x792784d5 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x79370353 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x793e5709 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x78f7c7b2 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x792258d6 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x79385720 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x79404c36 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x7943831d l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x79471f18 snd_compr_stop_error EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b0ca3 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot EXPORT_SYMBOL_GPL vmlinux 0x794f49ac mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x7952d93b pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x79577ceb nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x7962d18b ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x7966feb3 nanddev_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x79694e54 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0x796e3580 nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x79824d20 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7985e806 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0x798fcfef bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x79bc11b1 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x79c39f83 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x79c62337 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL vmlinux 0x79d615c5 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x7979e006 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x79808a56 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7981dea9 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x798bb38f gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7990519e inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x799ad51f crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x799fe71d find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x79a24f9c bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x79aa1ce3 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x79d086c7 device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x79d7d9b5 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x79dc54a1 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e30d24 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x79e533e1 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x79ea3df6 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x79eed6e9 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79ef4479 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x7a08924e of_css EXPORT_SYMBOL_GPL vmlinux 0x7a0990c1 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x7a105716 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x7a19e425 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x7a1fb75c vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x7a160c13 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7a18952c dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x7a1af734 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x7a240439 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x7a2f252d devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x7a37f0ef pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x7a30f427 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7a3c8cf1 devl_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy EXPORT_SYMBOL_GPL vmlinux 0x7a41b9f2 usb_ep_set_maxpacket_limit EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x7a548eb8 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x7a5f6b36 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x7a602f15 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x7a649934 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x7a66cfa8 get_tree_mtd -EXPORT_SYMBOL_GPL vmlinux 0x7a6c884d cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a7b8678 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x7a7e7d6e gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7a77e5e5 __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a8056a7 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a89f177 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x7a8a5959 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x7a951f4d ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x7a9f2826 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL vmlinux 0x7aa889ba platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x7abb792e cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x7aa35158 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x7aaaa571 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x7ab22887 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x7ab3a4a2 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x7abaa2b1 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac67fd6 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7aca6cf6 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ade8525 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x7ae30c8c irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x7ae66ccd bus_register -EXPORT_SYMBOL_GPL vmlinux 0x7aeb464d snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x7af56bc1 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x7b008a70 arm_iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x7b07bec8 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x7b16f56c ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x7b1efedb i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x7b3aae32 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x7b4a3870 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x7b552357 udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x7ae77194 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7ae79041 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x7ae8b9e1 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b005890 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7b243e87 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x7b3a2e77 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7b3b17ae clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x7b3d2751 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7b406d8b spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x7b45cef2 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x7b56a308 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6263fc ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x7b658b8c dma_pci_p2pdma_supported EXPORT_SYMBOL_GPL vmlinux 0x7b750da8 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x7b75af0c __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x7b7e5597 rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval -EXPORT_SYMBOL_GPL vmlinux 0x7b8e5153 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9dac1c fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7ba6dc78 cpts_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit -EXPORT_SYMBOL_GPL vmlinux 0x7bbbcfaf crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x7bbf0047 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7bb5602b blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x7bb5f32c of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7bb9c8cc of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x7bbfa472 led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x7be72aab vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7bc15fa6 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x7be4a37d regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL vmlinux 0x7bead6ab usb_cache_string -EXPORT_SYMBOL_GPL vmlinux 0x7c0bc2fd virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x7c12e476 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x7c170f5f mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x7bf4eda4 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x7bf6291a __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7c0119d0 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x7c0131ac crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7c07a923 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7c12339b icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x7c1835af clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x7c1a217c input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c22f851 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x7c25245f device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x7c252ebd of_get_mtd_device_by_node EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2f1e43 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7c33e0de debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c4354b5 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x7c44f05d __srcu_read_lock_nmisafe +EXPORT_SYMBOL_GPL vmlinux 0x7c4e8221 usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x7c66c03c regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x7c7164f8 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x7c735f49 omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x7c66dfaa snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x7c7cbc1e tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x7c891e58 nanddev_markbad EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca0f5b7 snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7cb05808 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7ca9258d of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7ca97254 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cc3e50e vchan_init -EXPORT_SYMBOL_GPL vmlinux 0x7cd0bfad regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x7cd607d0 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7cc1f959 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7cd08185 dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver -EXPORT_SYMBOL_GPL vmlinux 0x7cea28d4 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7cd74bdd regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7cdbceab devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cee06bc dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7cefaf64 vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0x7cf940ba sdhci_end_tuning EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d1437df skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x7d2828c6 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x7d2a8a22 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x7d3e2cff pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x7d4a9ddb bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x7d093def sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x7d399440 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d41f408 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7d54d167 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d616293 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d6b7bf3 dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x7d6dc749 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x7d71f939 fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x7d7d4ad9 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x7d81e9a1 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x7d8ccb27 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d8f3314 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x7d8fea50 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x7d968b30 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x7da27a7b blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0x7dbe8a23 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x7d6ff210 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x7d7b24a2 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7d833020 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x7da02d10 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x7da10e41 i2c_slave_event EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0x7dddda81 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x7de25aa8 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7de0eea6 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7de9fcea sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7dea043e regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x7df20815 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x7df247a6 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x7e0705df rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x7e0baeea devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x7e0d3045 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7e094d7e i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x7e11b817 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7e195156 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x7e1c6d5d icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x7e2a531c fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x7e19fd23 direct_write_fallback +EXPORT_SYMBOL_GPL vmlinux 0x7e1cd99f dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x7e31d50e gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e3c7c52 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x7e4f6fbe dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7e4784ab __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7e53c471 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL vmlinux 0x7e60689c sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x7e61ea69 vcap_chain_offset EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e705286 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7e6bb721 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x7e6ce0b2 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x7e6ec99c __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7e732d5f led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e7f36cb fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x7e850494 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7ea8f3e9 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x7ea8efcc devm_of_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec9a360 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x7ecaad37 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x7ed85356 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x7ec43aa8 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ed26254 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x7edd2b44 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7ee9e3b5 tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7f0b0664 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x7f22114f devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7f0fd6f1 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x7f2e4757 usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0x7f3b48d5 io_uring_cmd_do_in_task_lazy -EXPORT_SYMBOL_GPL vmlinux 0x7f4f3fe2 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x7f591fe1 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0x7f5a7d82 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x7f6c57f9 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x7f784747 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7f63b0a9 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7f651925 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x7f69f93f snd_soc_dpcm_can_be_prepared EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8c4b32 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x7f92ce6b ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x7f9d0bec debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x7fa0cc1a gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x7fae97af xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x7fb2b0e9 component_del -EXPORT_SYMBOL_GPL vmlinux 0x7fce4eba device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x7fd3a374 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0x7fd4f145 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x7fdccaa3 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x7f94e270 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x7f96aa29 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fa24e98 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7fafcb0c __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fbeadda sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fd30324 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x7fd56d5a of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x7fded079 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x7fdf1c11 mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0x7fe03c93 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x7fe145fb tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x7fe43c8d ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x7fecf50c __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x7ff4c005 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x80087d80 __virtio_unbreak_device -EXPORT_SYMBOL_GPL vmlinux 0x80126ce3 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7fe2dec7 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fec44f2 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80139b17 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x801eb65d dev_pm_opp_of_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x8024b2e7 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x80282147 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x802b6d81 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8027b905 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x8031ab9d of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x803acdaf free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x803af75a __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x803c0878 vcap_get_rule_count_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x803dbf00 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x803e1b03 iov_iter_extract_pages -EXPORT_SYMBOL_GPL vmlinux 0x80463b4d kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0x8042f19d failover_unregister EXPORT_SYMBOL_GPL vmlinux 0x8046712e divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x804e38bb regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x804edf7c of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x8048601c pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x8051477c snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x805500ab ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x80577248 meson_clk_pll_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x80584211 misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x80678a92 ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x806c933c dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x8071d6b4 dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x805979a4 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x8061fff2 snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x80639475 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x80746ec6 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x8076e3e3 i2c_slave_register EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x808c99c7 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x808d9c35 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809de729 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x80abf064 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80b4f4dd rt288x_setup EXPORT_SYMBOL_GPL vmlinux 0x80b63c4a tegra20_clk_prepare_emc_mc_same_freq -EXPORT_SYMBOL_GPL vmlinux 0x80c04a34 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x80bcaaaa __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80c8f8eb inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x80ca4443 of_dma_router_register EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80db2d27 usb_check_bulk_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x80efad29 cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x80ee30d7 usb_gadget_frame_number EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx EXPORT_SYMBOL_GPL vmlinux 0x80f2ae50 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x80f40853 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x8104562b sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x8105edb5 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x81078154 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8109ef6e scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x810f382f blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x80f5fcb2 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x810e7e09 usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x8112f732 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x81186fd8 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x811dd245 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x8120c202 dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0x8128ea99 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x8134bf4a relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x811dd71e cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x811fffbd access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x812a2a17 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x8139deb5 put_device EXPORT_SYMBOL_GPL vmlinux 0x813ab323 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x814b917c tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x81554917 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl EXPORT_SYMBOL_GPL vmlinux 0x816151a0 devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x817105d3 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x81741f9e vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x8179481c crypto_clone_tfm EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81823451 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x81889481 cpts_release +EXPORT_SYMBOL_GPL vmlinux 0x8199c908 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x81aa602a perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x81af55aa devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x81b09fdb blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x81b7d384 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x81afc667 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x81b9a1f9 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x81bf7594 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x81c39a07 tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x81d96f10 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x81e11cde rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e5af80 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x81e8dfce get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x81ee81f0 percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x81f5ab65 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x81fd16db snd_ac97_reset EXPORT_SYMBOL_GPL vmlinux 0x8202b650 irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x82077f40 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x82091652 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x82091258 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x82279911 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x822a3f24 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x822a918d serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x823e6b1e dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0x8246cf86 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x824ecac8 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x826db271 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x826eddfb d_same_name -EXPORT_SYMBOL_GPL vmlinux 0x8275980f sdhci_execute_tuning -EXPORT_SYMBOL_GPL vmlinux 0x828bd870 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x8298eb05 devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x824ee190 __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x82542b76 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x8263f861 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8273f87c l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x82748865 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x82757116 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x82876b0b sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x8288b562 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x8288c738 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8292e0df fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x8292e858 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x829887b2 nvmem_cell_read_u16 EXPORT_SYMBOL_GPL vmlinux 0x829ebec2 init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x82a2709f powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82ad72b9 crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0x82b662b0 snd_soc_component_update_bits EXPORT_SYMBOL_GPL vmlinux 0x82bd055b mas_prev_range -EXPORT_SYMBOL_GPL vmlinux 0x82c86873 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x82c562d1 crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82e7a341 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x82e0f9e6 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x82fad882 dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0x82fddd61 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x83146b9c rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x831c7722 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x830184a2 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x83040364 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8319a2ae debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x831f13df devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0x8320cda9 scmi_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8330227f __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x832d631c device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x832e02d8 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8341cb95 spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834c2781 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x8364e83a fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x83544515 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x8363276c ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x8378db5e gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0x838271d1 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x83838773 mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x838d7121 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x83907a51 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x83938d9f sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x83955133 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x83971642 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x83a1816b device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x839c33a3 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x83a00bdb debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0x83a03db6 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x83a888e0 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x83af2f5b rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0x83c8b524 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x83db186b ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x83af5b22 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x83b50053 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x83b51760 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x83c082ca snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x83c56495 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x83d2c7d2 __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x83d60f3f vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x83dbd262 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x83e6f842 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x83eaa7e2 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x83f5ce83 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x83f8827e crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x8404319d sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x840d346a devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84151c96 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x841cc1c0 devlink_to_dev -EXPORT_SYMBOL_GPL vmlinux 0x841fdfcc crypto_clone_tfm EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x8429f73e pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x843d93c9 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x844f552b transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8459df96 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x845aa3dc lpddr2_jedec_timings EXPORT_SYMBOL_GPL vmlinux 0x845b2069 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0x845bf7df tegra_xusb_padctl_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x846210c7 snd_soc_set_ac97_ops_of_reset EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x847a4c6b dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x847d2e6f fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x846747cc perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x847c21bb crypto_clone_shash EXPORT_SYMBOL_GPL vmlinux 0x847fd9b3 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x848798d7 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x848a020e device_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x848eabf9 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x848ef866 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x8493d039 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x8497a533 component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0x849b8bcc __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x84a07a69 sdhci_runtime_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x84a3ad69 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x84a86915 cpts_register EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert EXPORT_SYMBOL_GPL vmlinux 0x84ac42dc blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x84ac6cbf xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x84c65eed crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x84c8ff98 snd_soc_unregister_dai EXPORT_SYMBOL_GPL vmlinux 0x84ca1cf9 clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x84d35c9c sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x84dbe9ed devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x84f7d8f1 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x84d175e8 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x84daa6f9 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x84f99fdc serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x84fc10bb snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x84fce5f7 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x84fe53b4 vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x84ff0b3c generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x85062087 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8508b812 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x8507dbc6 sdhci_pltfm_clk_get_max_clock EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850d3523 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x850f454d pci_disable_pasid EXPORT_SYMBOL_GPL vmlinux 0x85135ff1 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x85175f44 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x851d306e sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x85466068 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x8552dd10 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8526dd1e icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x852d2046 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x853c9659 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x853eb0a4 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x854025d0 tps65217_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x85558fa0 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x8557e647 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8559d42e pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x855b5c9c tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x85647219 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x85718d7c snd_soc_of_parse_pin_switches EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x8587d740 snd_dmaengine_pcm_trigger EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder -EXPORT_SYMBOL_GPL vmlinux 0x85910bc3 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x85964e11 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x859aa68a dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0x85a0128c of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x85a7d05b cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x85aa4c7f class_register EXPORT_SYMBOL_GPL vmlinux 0x85ac18e2 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x85bb462f sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x85c55559 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x85e7d87d nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x85eefd86 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x85f06030 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x860496b7 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x85ae1c77 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x85b7bbdd regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x85c0f037 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x85c43619 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x85c4ab77 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x85d49b6d pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x85e183a8 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x85f27832 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x85f6dec3 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x8606e95f tegra_bpmp_get EXPORT_SYMBOL_GPL vmlinux 0x860a2eab bch_decode -EXPORT_SYMBOL_GPL vmlinux 0x860dba48 usb_gen_phy_shutdown EXPORT_SYMBOL_GPL vmlinux 0x860f6fff mvebu_mbus_get_pcie_mem_aperture EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x862cfaf7 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x864abf4f tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x86571e98 fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x8633baf8 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x86345e99 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x8643c1bc sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x865210ca folio_test_hugetlb EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x8662ea15 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8664f0c3 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x86704321 mvebu_mbus_get_pcie_io_aperture +EXPORT_SYMBOL_GPL vmlinux 0x8671cec0 dapm_clock_event EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8682501e icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x8682354a rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext -EXPORT_SYMBOL_GPL vmlinux 0x86875cda md_do_sync EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x8690f820 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x8688f29f gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x8698471a pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0x86aa4001 thermal_zone_device_id -EXPORT_SYMBOL_GPL vmlinux 0x86aca86b sdhci_cqe_disable -EXPORT_SYMBOL_GPL vmlinux 0x86b1ed1f snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL vmlinux 0x86d7c9a3 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x86977ba5 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x86b519f3 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x86bfc1a1 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x86c87b19 usb_submit_urb EXPORT_SYMBOL_GPL vmlinux 0x86da0bee serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x86e0cf37 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x86e7a634 alarm_start_relative EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x8700d578 device_iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x8703f425 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x871c884c fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x871e0dfd kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x86fab027 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x86fd0d18 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x871c395b snd_dmaengine_pcm_get_chan EXPORT_SYMBOL_GPL vmlinux 0x87245ec4 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x87251e6b platform_device_register EXPORT_SYMBOL_GPL vmlinux 0x8726e493 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x872c1c65 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x872f9814 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x873a8f71 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL vmlinux 0x874f21c3 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x876232f7 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x876446da ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x87678908 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x874712d2 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x87548ab0 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x87716190 nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0x8774fa67 of_request_module -EXPORT_SYMBOL_GPL vmlinux 0x877f18da snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL vmlinux 0x877febbd vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x877d4a49 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x8780d09e fb_sys_read EXPORT_SYMBOL_GPL vmlinux 0x878260bd wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x878fc7ee regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x87a1f6df pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x87cfe48f spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x87d21ff4 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x87d438da usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x87ddf5b9 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x87f6452d genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x87dea089 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x87f1e575 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x87f38644 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x87fe971d gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x8805a073 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x8805c84f ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x880ef295 property_entries_dup EXPORT_SYMBOL_GPL vmlinux 0x8812465d of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x881730e8 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x881a66d7 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x882077d5 usb_ep_dequeue EXPORT_SYMBOL_GPL vmlinux 0x882b05cf mbox_bind_client +EXPORT_SYMBOL_GPL vmlinux 0x8839d0fd edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x883b7ae3 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL vmlinux 0x8847deb3 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x88523274 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8869df21 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x886c7bc1 device_create -EXPORT_SYMBOL_GPL vmlinux 0x8888529b irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x88a31cbc usb_gadget_register_driver_owner -EXPORT_SYMBOL_GPL vmlinux 0x88a79699 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x88558b9a pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x885a915e scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x885d0f46 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x887f59f6 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x88885447 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x8893d51e devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x889d20e2 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x88a1db02 of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b52e52 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x88b59c66 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x88d28f2a fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x88e416ec irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x88ec2232 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x88bd257b snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x88d376ec ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x88f12451 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x88f84af7 icc_provider_deregister -EXPORT_SYMBOL_GPL vmlinux 0x88f9ff48 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x88f31a64 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x88f506de nand_reset EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x88fbab54 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x8915ccc4 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x89079914 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x891ca56a sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state EXPORT_SYMBOL_GPL vmlinux 0x892719cc devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x89359905 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x893882f3 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x892e6ebb nvmem_layout_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x892ee0b4 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x893a3963 uart_console_write EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8944a282 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x895b27cc devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x896afe49 __traceiter_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x8972f1e6 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x8954ed53 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x896de032 ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0x89755eea mtk_clk_dummy_ops -EXPORT_SYMBOL_GPL vmlinux 0x8980a5eb mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL vmlinux 0x899155c9 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x89966364 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x89a870f0 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x89b7676f inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x897780f4 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x897f1d73 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x89838db4 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x89a28f4b dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x89a854c7 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x89b9ef57 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bea59f skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x89bfe270 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x89c142ae iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x89d2f5d4 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x89d64f1e __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x89ed7053 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x8a0143ec clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x8a176652 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x8a235a00 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x89cd33f7 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x89cfef89 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x89d00454 tps65217_reg_write EXPORT_SYMBOL_GPL vmlinux 0x8a2efae0 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8a3129f7 sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0x8a34694b tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8a37d51f rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a43a879 pm_genpd_opp_to_performance_state EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP -EXPORT_SYMBOL_GPL vmlinux 0x8a48d378 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a59c6eb snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL vmlinux 0x8a5e55fa devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6433be gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8a6b2623 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x8a7ece38 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a856dd5 nf_queue EXPORT_SYMBOL_GPL vmlinux 0x8a8763fd platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x8a97c62d extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x8aa1b702 __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x8aab413a __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x8aab84a0 irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x8aad89f7 exynos_get_pmu_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8ab524ed input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8ab96165 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abf4976 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8ac0629b device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8acd4428 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8ad76b2c scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8ad96aab tegra_bpmp_put EXPORT_SYMBOL_GPL vmlinux 0x8ad9e1e9 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x8adfce74 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x8ae9fbf6 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x8afa89e7 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x8b003ba2 stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x8b0c7168 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x8af85b6f pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x8b0378e7 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0x8b13d337 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1cce03 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x8b1d9c75 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x8b1e1c4e pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8b2a30a3 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x8b3ca765 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x8b2ff4ee mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x8b38cfbf ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8b39df46 snd_soc_dai_is_dummy EXPORT_SYMBOL_GPL vmlinux 0x8b3f6e4a pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8b41b28f gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x8b426c6f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x8b44219e spi_async EXPORT_SYMBOL_GPL vmlinux 0x8b4a2aaf nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL vmlinux 0x8b4cf8af rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x8b529ce4 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x8b574b35 mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8b639a9f genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x8b5c4f41 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x8b67d63c usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8b72c98f device_attach +EXPORT_SYMBOL_GPL vmlinux 0x8b7f74e3 msi_domain_get_virq EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8ba1dd9e ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x8bbe1b6c vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x8bffade7 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8ba90b9c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8be5b01d sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8beaf315 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8bfd7370 trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x8c019352 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x8c01c40a regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c039043 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8c0d4c3a __rio_local_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c2b4556 dm_post_suspending EXPORT_SYMBOL_GPL vmlinux 0x8c2d4119 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x8c4ecaec __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x8c5e2f4a mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0x8c64d1be pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x8c6f1279 thermal_zone_get_crit_temp -EXPORT_SYMBOL_GPL vmlinux 0x8c732ec6 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x8c3218c9 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x8c668a9a snd_soc_card_get_kcontrol EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c79d408 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x8c7c61d3 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x8c80d5b4 snd_card_free_on_error EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c951cf0 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x8c98d1c6 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8c8a4bc5 nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext -EXPORT_SYMBOL_GPL vmlinux 0x8cad1aa4 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x8cad3a1e fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x8cc4155f pci_sriov_set_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x8cc441f8 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x8cc5e8a0 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL vmlinux 0x8cd33ecf ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x8cac0a17 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x8cb7a903 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x8cc6dabe class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x8cc9b9c9 vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0x8cdce50c nanddev_mtd_erase -EXPORT_SYMBOL_GPL vmlinux 0x8ce7c2a5 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x8cf58fd0 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x8cf83a31 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x8d0cc20d netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x8d1c1e60 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x8d1a83a5 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2f0d12 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x8d4044fb devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x8d467e73 sdhci_end_tuning -EXPORT_SYMBOL_GPL vmlinux 0x8d852f1a dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x8d28293f __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x8d43746f of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x8d59336c dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x8d650873 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x8d864069 snd_pcm_rate_range_to_bits EXPORT_SYMBOL_GPL vmlinux 0x8d8c299d dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8d9af743 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x8d9ce549 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x8da3b7ba virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x8dbb059f __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8db4a6a5 snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x8db7a2f5 devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x8dbf50b9 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x8dc0228b tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x8dc11669 lpddr2_jedec_addressing_table -EXPORT_SYMBOL_GPL vmlinux 0x8dc32f15 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ddaec15 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x8dde390a mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x8de92c9c register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x8dec06f1 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x8deabe03 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x8e0a7cf7 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x8e0d5bb0 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x8e0dd2d0 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8e0fed09 genphy_c45_fast_retrain EXPORT_SYMBOL_GPL vmlinux 0x8e13f154 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x8e198a5c snd_device_get_state -EXPORT_SYMBOL_GPL vmlinux 0x8e1e695a rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x8e200295 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x8e286e68 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x8e40b23e ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x8e1ab36a xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x8e1f940e pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free EXPORT_SYMBOL_GPL vmlinux 0x8e51a3c7 dev_pm_opp_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6b7f82 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x8e70296c tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x8e771ff8 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8e859e23 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x8e81c98b crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x8e8c7c57 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0x8e96b225 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x8e9a9d5a pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x8eb53523 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x8ebe83ad mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x8ec0266f devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x8ea53b7a ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8ea850a1 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x8eb3f9ba of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x8ec664de fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x8ec9d769 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x8ed065a3 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x8ed49354 dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x8ee64608 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8ecce3af gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x8edc6959 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x8ee20d80 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8efbd9bc devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start +EXPORT_SYMBOL_GPL vmlinux 0x8f041e23 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f0b6c79 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x8f132870 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x8f18783a get_device EXPORT_SYMBOL_GPL vmlinux 0x8f1a8cf9 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x8f35c0b3 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x8f1be0bb usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x8f1f4ab7 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x8f21755e irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f240cf2 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x8f2b0475 __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x8f3dbfbd cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x8f44fca7 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8f4bd094 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x8f45f667 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x8f47389e skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x8f55642f rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x8f591f7a pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x8f5a2165 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f5de9af nand_decode_ext_id EXPORT_SYMBOL_GPL vmlinux 0x8f5fea9f __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7116e0 xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x8f725e67 probes_decode_arm_table -EXPORT_SYMBOL_GPL vmlinux 0x8f7291b6 of_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f9764a3 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x8f78902d fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8f952e21 vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0x8f9890da smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8f9ca2d7 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x8f9f2b5a cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x8f9f81ee scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x8fa7dc08 phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8fbd4263 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x8fca6c3b ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x8fbad1f4 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8fd83694 pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0x8fda3377 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x8fe22bfc sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x8fe4b160 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8fe6fa41 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL vmlinux 0x8fe798f9 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x8fde0f88 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x8fe93b3d __tracepoint_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0x8fea36f6 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x8feeee05 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a57c unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff99cb5 vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0x8ffe6631 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x900c83a6 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x90118b72 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x90000651 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x9007bf9d ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x900f4038 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x902c7df3 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move EXPORT_SYMBOL_GPL vmlinux 0x904ca30a devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x904fa5cc clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0x90673d74 pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x906dd327 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9082c9a1 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x908321c1 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL vmlinux 0x9086686c device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x90872147 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x908f1375 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x90a11ce8 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x90a7d214 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0x90b64f30 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x90e1950d fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x90fe8a54 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x911056f8 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x9089ad1d mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x90915f97 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x90b28583 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x90b72aab set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x90ba7d92 snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0x90c5448c device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x90cc94b3 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x90e1004a snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x90fea9c5 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x910b08e8 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x9110dc97 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x9131e4eb netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x9137d15a kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save EXPORT_SYMBOL_GPL vmlinux 0x91409b92 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x91519a16 dev_pm_opp_of_cpumask_add_table -EXPORT_SYMBOL_GPL vmlinux 0x9151a36d ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x9161398b devm_blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x917aacc4 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0x917f4c9d ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x9157253a regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x91587a41 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x915b3244 iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0x915b4d42 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x915d8667 snd_soc_component_test_bits EXPORT_SYMBOL_GPL vmlinux 0x9184a032 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x918a37dc tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x918e87fc devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x91949f6b find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91984838 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x919883dc xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x919d81aa inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x919fb7e2 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0x91a118dd irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x91a8cac0 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x91a8e1e7 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x91ac9a77 device_find_child EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91b8ae0c devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x91c3f515 component_add -EXPORT_SYMBOL_GPL vmlinux 0x91c49140 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91cf13a2 xdp_set_features_flag -EXPORT_SYMBOL_GPL vmlinux 0x91d01374 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x91e76571 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x91c7c547 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x91e0e966 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x91e6fa44 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91eab914 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x91eac764 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x91f948a6 vcap_set_tc_exterr -EXPORT_SYMBOL_GPL vmlinux 0x920000a4 snd_soc_component_initialize -EXPORT_SYMBOL_GPL vmlinux 0x9201c059 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x92038f07 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x91f5cd2d usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9224014d scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0x9227807f mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x922cb261 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x922f670d mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x923a9d36 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable -EXPORT_SYMBOL_GPL vmlinux 0x9243a493 usb_gadget_vbus_disconnect EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925ac2b1 usb_deregister -EXPORT_SYMBOL_GPL vmlinux 0x925e4e9b vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x92654cae tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x92769031 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x927ee83a mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x9250b83a kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9250ba43 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x925c0065 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x926a0176 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9279c8aa tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x927c7ad7 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x927f2130 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x92829f8a regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x92890001 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x928f5e2f bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0x9297d9ec mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92a57642 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x92c2eb60 dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x92ce481f virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x92d2b779 mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x92bd968c bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x92c63ea0 mxic_ecc_get_pipelined_engine EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d95a03 class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92e0b4aa meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x92e5075b sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x92df460e __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x92e27760 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x92e57e14 ahci_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x92e70c68 __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0x92e7ca9f devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x92f3bf9f fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x93010ef0 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x92ed23b8 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x92f1a5fa ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x930b806c __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9313aa56 pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0x931446f1 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x93149d0a dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x9315b8e4 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x93184627 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x931da438 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x931e3a26 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x931e8713 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x9322b62d udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x933060f7 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x93394026 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x93418afa devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0x9342e724 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x93454adb __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x935b28e6 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL vmlinux 0x935c936a dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9348ec98 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x934e0839 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9352c360 ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p -EXPORT_SYMBOL_GPL vmlinux 0x936be112 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL vmlinux 0x93720e94 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x936f988e dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0x93805369 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x93931ad9 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x9389a886 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x938efca5 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x9396c787 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x93ae7806 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x93b2a90e ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x939fee6f extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x93ade3cf get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x93af9993 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93cb5265 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x93cc4fe9 pl08x_filter_id -EXPORT_SYMBOL_GPL vmlinux 0x93d49756 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x93d88d15 dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x93ddfd84 clk_hw_init_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x93ed7db4 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x93e44c2b perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x93e71266 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x941b2d1b mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x941c435b nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0x93f72508 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x93f96856 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x93fad087 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x9403b163 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x940b2941 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x94296742 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x942c331f inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x94491a99 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x944d5459 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x94528241 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x946846cd wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94368f1d fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x943aab92 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x945cb56c usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x945fcccf iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x94673767 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946a7e6e icc_node_del EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x946e5f34 vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0x9476337b spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x9484e41b pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x94877f7a usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x9476a1cb inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x947ce0b9 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x948e40be tegra_bpmp_transfer EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949d31a1 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x94a74bee fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0x94a7f310 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x94aadf4c snd_soc_dai_compr_ack EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0x94ac832d hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x94b6b8dc of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0x94cfa69f nand_ecc_tweak_req -EXPORT_SYMBOL_GPL vmlinux 0x94d7a7be vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x94d82d1b strp_init -EXPORT_SYMBOL_GPL vmlinux 0x94d94c44 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x94e24f66 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x94e73abc rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x94edf06f cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0x94ee2332 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x94e15cc4 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x95048d2f security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950d51d3 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x9515a994 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x95229d9b snd_dmaengine_pcm_refine_runtime_hwparams EXPORT_SYMBOL_GPL vmlinux 0x952377a6 clk_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x9528637a clk_register EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x95458250 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x955ac876 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x954c7d4f of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x9550255a pci_enable_sriov EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn EXPORT_SYMBOL_GPL vmlinux 0x955ee96c crc64_be EXPORT_SYMBOL_GPL vmlinux 0x95649040 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x95649813 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x95677410 edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x956ce108 crypto_sig_verify +EXPORT_SYMBOL_GPL vmlinux 0x956d7356 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0x95747987 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958a4ada snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free EXPORT_SYMBOL_GPL vmlinux 0x95900595 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0x95920f5c ZSTD_customCalloc EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x95a7ff5a spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x95b8e113 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x95a1fed5 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x95b06b7d nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95c5c424 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x95d6f8d3 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x95d74dd0 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x95ea9120 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x95ee694b icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x95eef097 class_register EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f3d560 pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x95f5fbce skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x960127d5 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x960e530b snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x9606f380 nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0x96093324 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x960fc23b debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x96208ce8 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x962fab12 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x9631d2d3 folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x963f4745 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0x964b7df4 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x9614d866 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x961ad381 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x961c5298 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x962bc9ff sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x9631de99 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9634fa17 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x96356748 xdp_set_features_flag +EXPORT_SYMBOL_GPL vmlinux 0x9642282f ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x964cb09a device_move +EXPORT_SYMBOL_GPL vmlinux 0x965147f7 pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965a1727 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x967fa2d2 crypto_clone_shash -EXPORT_SYMBOL_GPL vmlinux 0x968b2e1c strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x96a5ed2f of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0x96b0866c rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x96b76b28 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL vmlinux 0x96beaa2c usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x96e84fa7 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x96e98f3a kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x96efa135 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x96f4d96b evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x965788a3 icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0x965da5f6 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x965e0fb0 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x9660b5c8 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x966126b0 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9695332c of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x96969f84 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x96a621e7 devl_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96b2a255 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x96b4aa50 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x96bb52a5 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x96cb5752 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x96e573fc spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96fcdf75 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x970751eb to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x970afa25 mas_empty_area_rev EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x9715340b fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x971b346e unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x9735c7cc devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x97380a07 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x9738b556 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x972523de metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x97385eee fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x973ab8d4 devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x973d09aa hvc_poll EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x97444e92 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL vmlinux 0x974b9a15 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97585e6f sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x975b9013 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x976131a2 usb_del_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0x976736a1 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x976f1c95 pci_host_common_remove -EXPORT_SYMBOL_GPL vmlinux 0x97779588 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x9777cc4c usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x97a1b8a7 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x97b3cf2f mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x97c2cf84 perf_report_aux_output_id +EXPORT_SYMBOL_GPL vmlinux 0x97c99501 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0x97db9099 __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e09047 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x97e1fb7d of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x97e7b5e9 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x97e001af iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x980a5df3 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x980e185e crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x980ab6de unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x9815dabe dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0x9815df8a wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x98172e46 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x9819d5ca eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x9822efd3 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x98203392 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x98235976 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x9823e51c platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x983114e5 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x9831ca76 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x982ca9d8 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x982dda8a buffer_migrate_folio_norefs EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x983f1492 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9836a234 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x9841e248 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x9846914e regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x98519697 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x98529b8c phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985a9ff8 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0x985cb80d __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x985de43a __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x985ffb5f clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x98726cd3 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x9874f5d4 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x98797dbb buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x9876a591 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9880f2dc gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x988e4086 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x9879e5c3 vring_create_virtqueue_dma +EXPORT_SYMBOL_GPL vmlinux 0x98829171 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x988c503a snd_dmaengine_pcm_pointer_no_residue EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x9892c96d __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x9897729d tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x989c2ead usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x98a3295d __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x98b2ff24 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x98c3785a folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x98d3c48f devm_regulator_get_enable_optional -EXPORT_SYMBOL_GPL vmlinux 0x98e1be5b of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x98e6026e usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL vmlinux 0x98e737cf soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x98a0ed3f usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x98a21f65 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x98ab37c7 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x98b4159d skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x98bcc30a rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x98c40ae4 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x98d3475c pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x98dc2d6f scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x98e4f84c dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98e71cc4 thermal_zone_device_register_with_trips EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu EXPORT_SYMBOL_GPL vmlinux 0x98f7768d ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x98fad6c5 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x98fe6251 __traceiter_unmap EXPORT_SYMBOL_GPL vmlinux 0x9912fdfe __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x99213b3d regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x99177870 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x9920f3c8 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x99252f36 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0x99263b7d thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x992b9a57 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x993f369c gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x9942fd85 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0x99504f3e raw_v6_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x995e5298 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x9966c693 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x9968c2c3 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9972f82a lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0x997e13c4 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x998917fa device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x996a225b mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x99725beb init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x99733fad spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x998e2ce6 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x9992f0f1 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x999f9378 inet6_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99b5cf60 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x99a6cd16 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x99b20fe9 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x99b54d00 snd_pcm_fill_iec958_consumer EXPORT_SYMBOL_GPL vmlinux 0x99b7191f dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0x99c1d953 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x99d9686b fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x99ed0b1a uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x99ed62f9 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x99c30f55 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x99d0443a modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x99e115ee msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x9a02b71d mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0x9a062e1a mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL vmlinux 0x9a0e2f16 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x9a03c101 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9a05495a pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x9a0fdccd spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a16c750 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x9a182a26 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x9a32aa86 msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x9a361cdc regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x9a39c47d key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x9a40b3bc fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x9a4da9ce au_platform_setup -EXPORT_SYMBOL_GPL vmlinux 0x9a5cb11b devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x9a6196b1 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x9a61d60b dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x9a6ab758 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x9a6bb918 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x9a6be52e fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x9a72a01c rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x9a73c3d2 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x9a21633c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x9a2b0748 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x9a302cd0 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x9a42ee0e pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9a5a53d0 ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9a7cec0b hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x9a96c63e blkcg_punt_bio_submit -EXPORT_SYMBOL_GPL vmlinux 0x9aa481e9 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x9aa7057c devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x9aa7cb80 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x9a8efdc2 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x9aa4ad37 snd_soc_component_disable_pin EXPORT_SYMBOL_GPL vmlinux 0x9aae1cb5 mtk_clk_pdev_probe -EXPORT_SYMBOL_GPL vmlinux 0x9ab0ddbb pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9ab287f7 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x9ab574f8 mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac59da9 ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x9acac243 folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x9ad391ed __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9ace5160 ahci_platform_find_clk EXPORT_SYMBOL_GPL vmlinux 0x9ad4e02a devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9ad89e4f find_ge_pid EXPORT_SYMBOL_GPL vmlinux 0x9ada9495 sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x9ae5a683 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x9ae63a94 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9ae71859 devl_lock EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aeed551 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9af0c58b usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b021131 vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0x9b119cbe crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9b1956f1 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x9b1aa97a __tracepoint_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0x9b1afe65 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9b415e72 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x9b42bb28 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x9b4db7cb mtd_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9b546b16 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x9b1cca6b crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9b3684ec arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x9b38b6d9 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x9b4468a6 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b615d5f gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b6f66f1 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0x9b746c56 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL vmlinux 0x9b7523c6 musb_set_host -EXPORT_SYMBOL_GPL vmlinux 0x9b752d30 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x9b82673c crypto_akcipher_sync_post -EXPORT_SYMBOL_GPL vmlinux 0x9b8d2d86 vcap_tc_flower_handler_ethaddr_usage +EXPORT_SYMBOL_GPL vmlinux 0x9b7fcdfd sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x9b809e9d snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x9b880d82 fbcon_modechange_possible EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9c8003 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9ba725a1 mtd_lock -EXPORT_SYMBOL_GPL vmlinux 0x9ba8ff26 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x9baf6348 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x9bb0bea7 of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x9bb48219 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL vmlinux 0x9bc52edc nand_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x9bca2005 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x9bda3abf snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x9bb71443 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x9bbad5b9 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x9bd7ccce fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x9be4a9ba ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf63349 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x9bee4f74 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9bfcea64 snd_soc_dai_compr_startup EXPORT_SYMBOL_GPL vmlinux 0x9bffce69 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x9c0c6d74 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x9c128bee ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x9c1a8764 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x9c1f7438 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x9c29346f mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0x9c30acf1 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x9c4eb103 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x9c013eaa spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x9c0c3d39 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9c0d9941 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x9c156911 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x9c1bb22b icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9c25d19a dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x9c31059c __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x9c38868c snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x9c38c7a6 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x9c3a5804 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x9c3b8ed9 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x9c40b38e dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x9c449f21 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x9c4a283b tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0x9c570df5 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x9c57a334 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x9c601bb9 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x9c60a4c2 gpiod_disable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x9c63ccc1 msi_unlock_descs -EXPORT_SYMBOL_GPL vmlinux 0x9c641a12 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9c6dc7bd raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9c6e7645 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x9c671aee blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c77e7e1 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c81c5dc dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x9c856872 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9c8f3377 is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x9c8f43c5 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0x9c93de38 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL vmlinux 0x9c96c2ed imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x9c96f88b lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x9c9a8af2 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x9ca0d259 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x9cb8cbcc dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x9c93ef3c adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9c9dcd18 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x9caeb44a netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc678a0 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x9ccf9233 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0x9cd09b8c snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x9cc6754a bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x9ccf7801 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x9cd3dae3 rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals -EXPORT_SYMBOL_GPL vmlinux 0x9ce2d3cd usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x9cf0257a __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x9cf935aa fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x9d064902 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x9cefda37 fscrypt_prepare_lookup_partial EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d25c806 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x9d14197b serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x9d1d1aff regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9d1ee24c blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x9d1ef8eb usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9d2e2194 ip_route_output_flow EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d463aff alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x9d5a8178 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x9d65f973 nand_read_oob_op -EXPORT_SYMBOL_GPL vmlinux 0x9d85f380 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x9d62963c wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x9d6960f5 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x9d6fadf6 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x9d759c49 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d8eb735 devl_rate_node_create -EXPORT_SYMBOL_GPL vmlinux 0x9d8ec702 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x9d98d5dd percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x9d9e01ad dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x9db9e083 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x9dbe8316 mtd_block_markbad -EXPORT_SYMBOL_GPL vmlinux 0x9dcd8681 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x9da3ae48 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL vmlinux 0x9da6cf28 vcap_tc_flower_handler_ethaddr_usage +EXPORT_SYMBOL_GPL vmlinux 0x9dc15d38 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x9dc29eac usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9dc39a2a pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x9dcb22f5 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x9dd988b5 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x9df3e46b cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x9df9a020 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9de90d41 cpts_release EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0x9dff2353 devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9dfe94d9 crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x9e016686 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x9e0312fb vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x9e05dae4 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x9e1558dc devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x9e242171 tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e4b19bd pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e4e058a of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x9e52b67d rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x9e52f37e vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9e5d36bc nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x9e65ed2b __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x9e6d2059 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x9e70231f usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x9e66ef27 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x9e73c2a6 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x9e7404e8 devm_devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x9e795e70 devm_thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0x9e8a6aff snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL vmlinux 0x9e8bf0be kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x9e8d5eba power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x9e8e7d7b snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL vmlinux 0x9e8f3b35 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x9e9819ee __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e98060d pinctrl_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9ea21abe firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x9ea745ed wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x9ea9537f usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0x9eb840a0 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x9ebc5105 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x9ec57143 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9ecbe807 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x9ed23786 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9ec6e860 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x9ecf5fd3 thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9ed70412 badblocks_store EXPORT_SYMBOL_GPL vmlinux 0x9ee5e40a __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9eeb485c pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x9eeb72d8 xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eecc7e7 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x9ef271df snd_soc_dapm_sync EXPORT_SYMBOL_GPL vmlinux 0x9efa5f66 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0x9efb9c75 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x9f02afe1 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x9f121229 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0x9f140889 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x9f3b2c9a __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x9f1c494c sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9f1d1e23 io_uring_cmd_sock +EXPORT_SYMBOL_GPL vmlinux 0x9f2ed1fc pci_find_doe_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x9f404a35 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x9f466c37 __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f5791cb nand_soft_waitrdy EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f633154 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x9f6423a7 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x9f901e4d addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x9f964647 tegra20_clk_set_emc_round_callback EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa88cf1 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x9faed2a2 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x9fb6f150 dma_opt_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x9fc268a1 swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0x9fc2b08c tcp_plb_update_state_upon_rto -EXPORT_SYMBOL_GPL vmlinux 0x9fcc593f sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x9fbe65d6 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x9fc4d549 blk_crypto_register EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fd612f9 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x9fe5d75f devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x9fe248b6 __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe8dae1 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff0c78a xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xa013bb37 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x9feda827 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x9ff9415b udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xa0085891 mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01efda5 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xa0225f84 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xa01e33c9 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xa038f306 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xa0392be5 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0xa04ab422 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa03e6ea5 snd_pcm_stream_lock_irq EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05e0194 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xa065cb64 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xa0673a61 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa08ba05e snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL vmlinux 0xa09567c1 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xa09c06f4 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0xa09cf11c register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0xa0bf7c7e ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0xa0cc7116 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0xa0634ae2 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xa0703026 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xa0968f52 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xa0bb8f14 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xa0cd541a devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa0cf400c stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0xa0d16573 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa0e5310b __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa0e5bad7 of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0xa0e9bf25 irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0xa0ed1fdf of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0xa0f372a6 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL vmlinux 0xa106c316 of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xa10c958c shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0xa10e9e12 of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0xa10ebde6 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa11b53a6 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xa123d426 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0xa12efa20 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xa1320dc7 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xa13852d8 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xa13d8e17 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xa1430099 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xa14750fc pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xa14aaca5 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xa0fefa92 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xa10bb266 tegra_mc_probe_device EXPORT_SYMBOL_GPL vmlinux 0xa14c792f __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0xa16b2ca7 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xa16b5608 __traceiter_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xa16df893 device_add -EXPORT_SYMBOL_GPL vmlinux 0xa186d0e3 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa15ee08d blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xa162803b devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa16a9d41 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0xa19561fb __SCK__tp_func_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa19a03dc pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0xa19d5442 mtk_clk_simple_probe -EXPORT_SYMBOL_GPL vmlinux 0xa1a3b15a usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xa1c11df2 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xa1a55f55 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xa1aa438d snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xa1cd5ad9 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xa1d6d2ac blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1d8a799 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xa1edf014 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa1ec1694 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9f8d phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xa1f1bd3a arm_check_condition -EXPORT_SYMBOL_GPL vmlinux 0xa1f7efca snd_soc_component_compr_open -EXPORT_SYMBOL_GPL vmlinux 0xa2033420 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0xa2071e89 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xa207840a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xa2036ffc devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0xa204e3b5 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa2194bc7 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa228515e sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa2303107 imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0xa2354d5b of_map_id EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0xa243a51d blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa253347f snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL vmlinux 0xa25674b8 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xa2570995 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xa25be82f virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xa257d606 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xa25cb6bf usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa2643a32 devm_device_add_groups EXPORT_SYMBOL_GPL vmlinux 0xa26c6497 xas_load +EXPORT_SYMBOL_GPL vmlinux 0xa26d1631 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa278e544 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL vmlinux 0xa28f28a1 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xa2952d5a tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xa28dc9b9 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0xa2915cb2 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xa29fc4e6 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2a27364 dst_blackhole_mtu EXPORT_SYMBOL_GPL vmlinux 0xa2ad4cf4 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2bdfc60 kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0xa2c92371 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xa2d28117 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL vmlinux 0xa2c69df0 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xa2ccd9bb devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xa2d14d99 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa2d28d04 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xa2d29aa5 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xa2dd4ad8 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xa2deb776 pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa306f15c dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xa319c683 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xa31de25e fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0xa31e2029 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xa31f55f8 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa324410f snd_ctl_register_layer -EXPORT_SYMBOL_GPL vmlinux 0xa32b81be set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa2ecaeb3 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xa2efbdd6 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xa2f63a3b dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xa3016d37 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xa308ddbf mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0xa31d6acc wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa323f0cb trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL vmlinux 0xa33744aa edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xa33e00a3 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xa3406955 hte_ts_get -EXPORT_SYMBOL_GPL vmlinux 0xa345c163 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xa3397229 mxic_ecc_get_pipelined_ops EXPORT_SYMBOL_GPL vmlinux 0xa346975c idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xa360258c usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xa362bf8f hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa36a824c strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xa36c36f2 mtk_clk_register_gates -EXPORT_SYMBOL_GPL vmlinux 0xa36d9b2f snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL vmlinux 0xa3732cf7 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xa378c9f4 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xa37b9b99 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0xa37e5cc6 devm_regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa3882160 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38f1c7c snd_soc_get_dai_name -EXPORT_SYMBOL_GPL vmlinux 0xa391c60b serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xa39a127b sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a64448 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xa3ac0975 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xa3b8b6c5 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xa3b01fb0 fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector EXPORT_SYMBOL_GPL vmlinux 0xa3c1db37 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa3c5ed97 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0xa3c3ab56 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xa3d2d912 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0xa3dabfaf __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa3e13a92 icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0xa3ef701e crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa4008ee9 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0xa4013039 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xa3f28142 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xa40086fd snd_soc_component_set_jack EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa4045e56 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa406db7d fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa417212c devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xa4197e01 sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0xa41c34a7 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa41fbe9a mtd_ooblayout_find_eccregion EXPORT_SYMBOL_GPL vmlinux 0xa4222b39 nanddev_init -EXPORT_SYMBOL_GPL vmlinux 0xa44464e0 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa435c8bd edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa43f1d14 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xa444c3ca topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xa446ed47 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xa44947a9 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa44f4a4a sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xa453534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xa4599e59 spi_split_transfers_maxwords EXPORT_SYMBOL_GPL vmlinux 0xa45b81e8 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xa45c55eb regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45c9e14 devlink_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0xa45dc275 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0xa4623b16 tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0xa465a117 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa474b6a0 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0xa476f15c bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa47817ca snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xa47fe6a3 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0xa462226c snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xa46ac0bf sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48a5c94 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xa4951090 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL vmlinux 0xa4a54cca edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xa49fcd86 nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns -EXPORT_SYMBOL_GPL vmlinux 0xa4adf183 mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c84ece mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xa4cae570 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xa4cd16b6 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0xa4dc79c3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xa4e03a86 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xa4e61d02 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0xa5073fb6 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xa51d3208 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xa51fb5ce ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xa52a01b6 musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xa50a615b __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0xa5218ab7 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xa527bcb7 devm_of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context EXPORT_SYMBOL_GPL vmlinux 0xa532bf8f HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xa5341da7 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa53f0dd7 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0xa546ad39 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xa540231e of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear EXPORT_SYMBOL_GPL vmlinux 0xa54d0909 nanddev_isbad -EXPORT_SYMBOL_GPL vmlinux 0xa558b003 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xa56341fb snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL vmlinux 0xa56afa60 dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0xa572c2b3 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xa57d16fe ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xa58e5bb5 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xa59582dd blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa55cac3a snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0xa56a2eb6 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xa5799514 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xa57ca948 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xa5935cec clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa5947374 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0xa5983ef4 gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL vmlinux 0xa59cde7c ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0xa5ad14d0 __irq_apply_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa5ae3d30 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xa5bd82dc ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa5c69382 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL vmlinux 0xa5c7abfa nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xa5d3ed5c ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa5d4db63 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa5bd4a6d posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xa5c0567f ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xa5c4bf84 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xa5d34f72 ata_eh_read_sense_success_ncq_log EXPORT_SYMBOL_GPL vmlinux 0xa5d72a8f cpuidle_enable_device EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name EXPORT_SYMBOL_GPL vmlinux 0xa5d90c38 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa5e9ae71 tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0xa5eb8739 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f67d3f nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xa60128de devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa60aa57a balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0xa60f2120 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xa613088e proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0xa613949b platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0xa61b8d2f sdhci_remove_host EXPORT_SYMBOL_GPL vmlinux 0xa61c1a4a mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0xa61d8e37 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa6224af7 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xa625a15a devm_led_get -EXPORT_SYMBOL_GPL vmlinux 0xa62cd3aa __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0xa630a881 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xa634ddbe __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa636a942 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL vmlinux 0xa63c5674 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xa63259e0 __io_uring_cmd_do_in_task +EXPORT_SYMBOL_GPL vmlinux 0xa6447d5e snd_soc_dai_active EXPORT_SYMBOL_GPL vmlinux 0xa65d4e5a of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xa669ddfa relay_open +EXPORT_SYMBOL_GPL vmlinux 0xa66c4741 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xa66d3a4a regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa670bc09 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xa6815cc6 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xa68744b2 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa68b9dc7 vp_legacy_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a40d3a sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xa6a50fd7 i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0xa6a8b49b nanddev_bbt_update -EXPORT_SYMBOL_GPL vmlinux 0xa6aa4965 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xa6ab0fcf devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xa6b10d57 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6c2af6f regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa6cef3e1 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xa6c9b58e espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6deea95 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xa6defea4 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ea4834 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa6f802b5 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0xa6f94eba attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xa700eb02 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xa70553e3 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa705607a devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa710d3f6 snd_soc_info_volsw EXPORT_SYMBOL_GPL vmlinux 0xa7119f65 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xa715a9ba simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0xa71e810d usb_gadget_set_remote_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa722d0f1 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write -EXPORT_SYMBOL_GPL vmlinux 0xa7356059 replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0xa74d81ff xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa731b411 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xa738c768 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xa73aaba8 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xa742b52a pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xa74c12f2 is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0xa74f6761 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xa7539a8f fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xa7553281 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0xa756f259 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xa759785f pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0xa762ec8b rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xa7729316 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xa7802e2e btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa7862b07 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa788126d blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xa78addf2 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xa78c4fca bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7916c4e ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xa7a6f7b3 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xa7aaafde klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xa7b6e057 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xa7be0c54 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0xa7d02efb inet_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xa7e35b01 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xa7ed4956 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xa7f78328 mdiobus_c45_modify -EXPORT_SYMBOL_GPL vmlinux 0xa7f7f578 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa7d3cf18 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xa7e2753c hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xa80ef19d nand_ecc_restore_req -EXPORT_SYMBOL_GPL vmlinux 0xa8110350 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa81ce82c genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0xa823c50c trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0xa82732b1 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa8410a2a trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xa8418393 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa849ce75 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa8547006 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0xa85d5066 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xa85eb0c1 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa868c582 devlink_port_linecard_set -EXPORT_SYMBOL_GPL vmlinux 0xa8739391 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa87fb2be icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xa89353b2 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xa85b53f5 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0xa8782330 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xa87d9e29 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xa88980c4 tty_port_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0xa8a9cadd class_is_registered -EXPORT_SYMBOL_GPL vmlinux 0xa8bfbc81 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xa8c66eba sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xa8dde40c fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8993d65 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0xa8c983b3 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xa8d4094c xdp_features_set_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0xa8d77c9a pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa8dbea3b snd_soc_component_get_jack_type EXPORT_SYMBOL_GPL vmlinux 0xa8e2a91a devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xa8e938ef pci_create_root_bus EXPORT_SYMBOL_GPL vmlinux 0xa8eb8233 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xa8f5853f usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xa8fbb08f icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xa8fca52c __traceiter_console EXPORT_SYMBOL_GPL vmlinux 0xa9017069 clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0xa909811a badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0xa90e176a cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0xa9300a02 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xa930463c follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xa91c45a6 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xa91e7b13 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa938c973 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xa9554912 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xa934c00b devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa9463e14 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa9933aad da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa9832a57 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa98d731f crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa98e7c9e of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa991478c skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a2877f __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xa9af63b7 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xa9bd2c80 ata_common_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0xa9d5e78d vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xa9a0f83a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xa9abf6e1 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xa9b41e9d platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xa9d0f118 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xa9e74462 usb_ep_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0xa9f9311f iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xa9fc1bfe usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0xaa02b068 mtk_clk_unregister_factors -EXPORT_SYMBOL_GPL vmlinux 0xaa096b7a ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xaa094091 fat_scan EXPORT_SYMBOL_GPL vmlinux 0xaa152108 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xaa159238 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xaa184b71 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xaa188b7e ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0xaa1a4911 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xaa2634a3 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0xaa356537 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xaa3e0987 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0xaa3fc774 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xaa437b90 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xaa437e21 tc3589x_reg_read EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable -EXPORT_SYMBOL_GPL vmlinux 0xaa471830 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xaa4f93ac pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xaa6047a5 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xaa649ff9 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0xaa76dbef eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0xaa854dda put_pid +EXPORT_SYMBOL_GPL vmlinux 0xaa4cb2d5 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xaa54d825 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xaa69a316 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xaa79d7be __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0xaa88ba94 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xaa8ae731 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xaa8fea07 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xaa92422a fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xaa9c1084 dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0xaaa5980a user_preparse EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaaabcd6b pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0xaaae6b78 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaaae7ec0 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0xaababce6 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaabae471 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xaabb31cc fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xaada0922 blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0xaaebb641 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xaaecf75d perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaaed056f wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0xaaef6641 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xaaf168bd snd_soc_card_jack_new EXPORT_SYMBOL_GPL vmlinux 0xaaf77931 sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xaaf841d9 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0xaafad77a balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xaaf7d2f0 snd_soc_free_ac97_component EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock -EXPORT_SYMBOL_GPL vmlinux 0xab0ffe73 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xab137ce9 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xab238184 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xab08d86e device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xab0ceae5 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xab20e8e5 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xab28c9c3 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xab29a652 devl_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0xab33dda7 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xab39aea0 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xab471515 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xab3a251b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xab3fde97 sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0xab4668ce led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0xab4f4b32 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xab533bc5 usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xab698f56 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xab8aabb0 vcap_get_rule_count_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0xab8b2323 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xab5646c0 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xab75ba41 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xab812deb dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL vmlinux 0xab8bfce3 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xab98d583 folio_alloc_buffers -EXPORT_SYMBOL_GPL vmlinux 0xab9cbe01 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xabaa6cc6 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0xabb32d8e regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xabbb457d scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab9b17ce ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xaba47074 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xabbac04b nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xabbbe972 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep EXPORT_SYMBOL_GPL vmlinux 0xabcda29e leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xabd21c8e snd_soc_get_dlc -EXPORT_SYMBOL_GPL vmlinux 0xabd86cb4 direct_write_fallback -EXPORT_SYMBOL_GPL vmlinux 0xabe4b505 imx_pcm_dma_init -EXPORT_SYMBOL_GPL vmlinux 0xac04bc33 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL vmlinux 0xac09e4da xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xac1216c9 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0xac193612 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xac1ee4ed regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xac235449 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xac264143 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xabdf986c usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xabe0d2ea sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xabe544cd nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xabe70113 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xabf6a9eb of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xac02ab27 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xac0bda6d tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xac103ed7 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0xac10ce29 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xac16394d amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0xac182afc scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xac25e190 kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0xac2fb069 vcap_chain_id_to_lookup -EXPORT_SYMBOL_GPL vmlinux 0xac38f7c8 snd_soc_register_component -EXPORT_SYMBOL_GPL vmlinux 0xac41f661 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xac4268a5 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0xac4a1881 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xac4b949a vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0xac4d4fdd ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xac5c5427 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xac3521c7 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xac54c849 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0xac62049e rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0xac6e70e1 add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xac810442 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0xaca5380d blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xac827a39 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xac9768e8 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put EXPORT_SYMBOL_GPL vmlinux 0xacb7c844 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0xacc207ae rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xacc1849e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xacc840b6 snd_soc_dapm_enable_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xacd6e52f pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0xace36369 of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xaceac007 priv_to_devlink -EXPORT_SYMBOL_GPL vmlinux 0xad0093b7 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xad0b1198 blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0xad104627 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xad194bf9 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xad2c18af vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0xad31f001 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xacf6c220 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xacf81bc7 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xad1c483f sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xad2df58a bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0xad324368 devm_power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad56a2a3 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xad5c7085 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xad6233dd ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xad5f44c3 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xad64d9b2 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xad6ca18a gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0xad6f3f19 fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xad72a6fb blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xad65c423 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xad6ea812 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xad700e0b ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad7ba823 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xad889c85 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0xad966615 mtk_pinconf_drive_get EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xada01d0a vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadaa7e5a dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xadab07ab nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0xadaf5313 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0xadb129d6 hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xadc36aa8 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xadb73152 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xadbd2bdb dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0xadbe2752 devlink_priv EXPORT_SYMBOL_GPL vmlinux 0xadc844ed xas_create_range EXPORT_SYMBOL_GPL vmlinux 0xadca6a87 of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xade0b56a sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xadcdabbb i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xadd70565 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xaddb817e xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xade3e56c musb_writew EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xade72b4b elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xadead86a to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0xadfede5a __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xae02cbdb usb_add_gadget_udc -EXPORT_SYMBOL_GPL vmlinux 0xae0853ca udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xae08ffe2 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xae0e1e31 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xae048011 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xae19d39e exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xae1e7ad9 clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0xae1feb86 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xae227ddb nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xae231e09 i2c_client_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xae25d7df stmpe_dev_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xae2b91a9 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xae2f4a0b pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xae238b6a nand_prog_page_begin_op EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3f8c0a of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0xae46d934 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0xae4ef2d8 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xae599fb1 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL vmlinux 0xae40d757 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xae44d2a7 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xae44df07 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xae5dbdd2 snd_soc_put_xr_sx EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae6c01ef user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0xae745929 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xae7495b1 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xae7b0930 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae8207ad dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xae84e3b1 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xae84f413 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xaec7546e dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaebc1ca0 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xaec4f46c device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xaece74a8 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xaecfdb94 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xaee06c3d snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL vmlinux 0xaee4dc4d devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xaee54ecd sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xaeeca274 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xaef3b245 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xaef4353b __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0xaef4e3ed serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xaf0eb350 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xaef5142c omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xaefb5923 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xaf04877a tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0xaf151524 mtk_clk_register_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0xaf1f4956 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xaf18a5c1 crypto_akcipher_sync_decrypt EXPORT_SYMBOL_GPL vmlinux 0xaf201fa6 usb_ep_enable EXPORT_SYMBOL_GPL vmlinux 0xaf212646 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xaf2de264 tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xaf30814d rockchip_pcie_init_port EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3bcc5d driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xaf3cd565 uart_try_toggle_sysrq EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf41255a tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xaf4418d9 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xaf52e368 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0xaf66e4ea nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0xaf687f6a blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xaf4222ee __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xaf47a37b iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xaf4c8fcd find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule -EXPORT_SYMBOL_GPL vmlinux 0xaf75a531 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xaf79f14d vcap_del_rule EXPORT_SYMBOL_GPL vmlinux 0xaf7ad94c __SCK__tp_func_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xaf8788b0 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xaf89db48 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xafa96230 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xaf83ddc8 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xaf865ffc ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xaf9bcb87 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xafa65522 blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0xafb2a495 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xafb71285 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xafc4f062 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xafcab5d8 snd_fasync_helper EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafde00fd fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xafded55e unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xafe506b5 irq_of_parse_and_map EXPORT_SYMBOL_GPL vmlinux 0xafe5434d mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xafe6f31f clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xafef260a usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xaff0d841 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xafff080f scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xb002328e sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xaff44de4 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaff82031 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xb0025583 pci_doe -EXPORT_SYMBOL_GPL vmlinux 0xb0052dea free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xb01cd82f mmput +EXPORT_SYMBOL_GPL vmlinux 0xb01e2658 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xb0232477 klist_prev EXPORT_SYMBOL_GPL vmlinux 0xb02a8e64 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0xb031f92d devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0xb034e18e samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xb03587bb led_trigger_register_simple EXPORT_SYMBOL_GPL vmlinux 0xb03bf684 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb045fb02 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0xb0435d2a filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xb044c737 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xb049659b mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04ac904 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xb04d1f7b perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xb057cc69 mtk_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xb066cc20 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xb0746645 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb06fa3d9 dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb0752421 class_find_device EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb080eb12 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xb09c605a of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xb0a0ec98 spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb0b7eef3 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xb08bbfc5 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb093639c ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb0a567d1 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0b1cda2 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c168cd snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb0cabea3 usb_initialize_gadget -EXPORT_SYMBOL_GPL vmlinux 0xb0cad093 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0xb0d6706a inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xb0da78a5 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0xb0e78c72 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb0be0bfa usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xb0d1e582 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xb0d8840c regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xb0eb8b1d __traceiter_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xb0edbee0 blk_rq_poll +EXPORT_SYMBOL_GPL vmlinux 0xb0f34f8e rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xb105114e extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb10911b1 iommu_get_domain_for_dev_pasid EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb11c83e1 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number EXPORT_SYMBOL_GPL vmlinux 0xb11dfa0e serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0xb1236e4b mtk_clk_unregister_composites -EXPORT_SYMBOL_GPL vmlinux 0xb127330f inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb1283414 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb1356ad3 devm_snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0xb13837ce vcap_rule_add_key_u48 -EXPORT_SYMBOL_GPL vmlinux 0xb14c9e5f vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL vmlinux 0xb14f2210 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xb13d017e crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0xb154481f devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb1619648 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xb163aa9e crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb154da1d gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xb1582067 msi_domain_first_desc EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb170a351 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0xb1794f0d tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0xb1a152fe mmput_async -EXPORT_SYMBOL_GPL vmlinux 0xb1a42578 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xb1a9f724 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xb1b6ee61 devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1b78eb9 regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xb1b900e8 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xb185a226 snd_soc_get_dlc +EXPORT_SYMBOL_GPL vmlinux 0xb185c9ab gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xb189c583 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb1a2fdf0 tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail -EXPORT_SYMBOL_GPL vmlinux 0xb1bb4280 __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c13630 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb1c13dab udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb1c13dc6 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb1c35eb7 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xb1c82b0a mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0xb1ca4765 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0xb1db9a16 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xb1da5785 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xb1da5869 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e47962 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1f1e091 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb214c46a max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xb2197878 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xb21c672f devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2328b56 nand_status_op EXPORT_SYMBOL_GPL vmlinux 0xb2347bf1 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb23a0bd9 dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb247653d usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xb2507103 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb2435d7d iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0xb256be16 efivar_is_available -EXPORT_SYMBOL_GPL vmlinux 0xb2639678 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xb25f4d17 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xb261a482 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xb2645002 vcap_tc_flower_handler_ipv6_usage EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb27370bc devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb273b900 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0xb2818491 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xb297d0eb snd_soc_get_dai_id -EXPORT_SYMBOL_GPL vmlinux 0xb2a6d957 devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xb2967264 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb297d131 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xb29c7152 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb29fd943 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xb2a98f22 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0xb2b0c74b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0xb2b520c2 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb2b775ea usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c73c39 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb2c40bb9 nand_deselect_target EXPORT_SYMBOL_GPL vmlinux 0xb2ccc9e1 soc_device_match EXPORT_SYMBOL_GPL vmlinux 0xb2d94d60 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xb2e64a4e usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e84860 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0xb2ef37d9 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0xb2f0a567 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xb2f24cf4 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb2eb5033 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2ed4212 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xb2f4b11d tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2f564fb nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb2fca729 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb2fd5ae0 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xb303f2db platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xb3063d6f regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb324f586 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xb3316de4 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xb33db876 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xb3086232 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xb30f5ff7 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xb333e68f fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xb33d7daa pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0xb3487312 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb34d5c3a platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb353fa47 usb_phy_gen_create_phy EXPORT_SYMBOL_GPL vmlinux 0xb360ff4e driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb364defc unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xb36e351c crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xb37734eb mtk_clk_register_dividers EXPORT_SYMBOL_GPL vmlinux 0xb378559e freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb379ee5b regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xb39c7cf9 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xb3b1eb64 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xb3bd93f2 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0xb3bf1326 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xb3e81c1b skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb3eb3908 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xb3ef8c6e spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xb3da4ab8 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb3ec2f72 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xb3f538cb page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0xb3ff79de crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0xb40291ad irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xb40a923f hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb40b6a69 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xb42f1da9 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xb43c170f ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb43da7c0 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44dc5c1 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb46be451 fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0xb46d9e61 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xb4742d19 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0xb477b2de edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xb47dcddd wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0xb481ff0a phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xb456d5d4 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb45b47f0 register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xb465286a pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xb469cf14 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xb47423b6 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xb4759aaa wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xb48fa340 snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0xb495a9ee pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xb49686da fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xb4a9b112 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xb4afa0cb ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb4b2a193 __pci_epf_register_driver EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb4bf69bf __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xb4d4c498 mtd_erase EXPORT_SYMBOL_GPL vmlinux 0xb4d57537 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xb4e31a7a usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xb4dc4d99 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f946f1 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb502397d find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb50783e6 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb5097342 vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0xb509b731 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb50d42a9 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0xb5122661 wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xb5133f73 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0xb5168ffc bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb52c9aee __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xb5517dd3 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL vmlinux 0xb55a3393 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xb5377fe9 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xb551a658 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb554fc5d gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xb55875bf filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0xb55970f6 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb561b864 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb5662de7 dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xb57010c3 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0xb562882e failover_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0xb570745c __SCK__tp_func_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0xb5770e43 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xb581c7b7 thermal_zone_device -EXPORT_SYMBOL_GPL vmlinux 0xb5965602 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb59667cd snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL vmlinux 0xb59c9ea7 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0xb5a06cbe evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xb5ac5509 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xb5ae2914 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb57c476d sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0xb58d9bd7 cpts_register +EXPORT_SYMBOL_GPL vmlinux 0xb5b03b87 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xb5b4c2e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xb5b7b6b5 mmput EXPORT_SYMBOL_GPL vmlinux 0xb5ba0eb0 mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xb5c1bfcd snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL vmlinux 0xb5cd151b snd_soc_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb5ce3303 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb5cd5d6f devl_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xb5cf4304 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0xb5dcd8a0 klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb5e5faf1 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb5e4090b regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xb5e69a3d mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xb5f70ed5 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb60776de snd_soc_add_component -EXPORT_SYMBOL_GPL vmlinux 0xb614bded regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xb5e8098c device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb5fca02e tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xb602648c fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xb6188cb5 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xb61db827 platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6262e44 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xb62dcf1f usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb639c373 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64e2b37 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb64e91e9 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb648e409 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xb65d38a3 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xb668bfe4 blk_mq_freeze_queue_wait EXPORT_SYMBOL_GPL vmlinux 0xb66c2f95 is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xb66e882d crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb66f0e32 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb67192cb aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb676e1e1 sm501_set_clock EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb681def3 __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0xb682eff7 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xb689bfa3 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xb6932fa6 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xb696a5fe dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb69bf954 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0xb69c46c4 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xb6a1a14b pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xb6b01483 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb6b6a51f spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb6bbe9fc pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xb6ae9acf devl_trylock EXPORT_SYMBOL_GPL vmlinux 0xb6bce718 free_uid -EXPORT_SYMBOL_GPL vmlinux 0xb6c07b33 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0xb6ca5f96 host1x_context_device_bus_type EXPORT_SYMBOL_GPL vmlinux 0xb6da4141 imx_check_clk_hws -EXPORT_SYMBOL_GPL vmlinux 0xb6db6ef3 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL vmlinux 0xb6e0e5b4 mtd_read_oob -EXPORT_SYMBOL_GPL vmlinux 0xb6e3bdeb usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xb6df4218 snd_soc_dapm_kcontrol_dapm EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6ee0f45 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb6f3c979 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xb6fcb7db class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb6ebe121 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb6ec0cbb pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb6fd8c91 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL vmlinux 0xb70f753a sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xb71699e7 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb708eaee dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb709f3c0 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xb70a39ce onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0xb70fdd7a skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xb7179feb pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xb717f070 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xb71a3ebb dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xb72bd210 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73969db shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb73f0c1b snd_soc_info_volsw_sx EXPORT_SYMBOL_GPL vmlinux 0xb74538d2 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0xb7491c17 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb753a0ee mmc_prepare_busy_cmd -EXPORT_SYMBOL_GPL vmlinux 0xb75efdca ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xb7590942 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xb759c741 ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb -EXPORT_SYMBOL_GPL vmlinux 0xb77d5e73 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0xb7770a40 nand_cleanup EXPORT_SYMBOL_GPL vmlinux 0xb77db4cd software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb7909508 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xb790c173 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xb791e13f iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xb797365a device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xb79de3e7 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb79ea352 scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xb79f5bf5 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xb79f88fb fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0xb7a23927 irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b31f30 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xb7c32cc3 iomap_get_folio -EXPORT_SYMBOL_GPL vmlinux 0xb7c45694 __bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0xb7c53381 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xb7a7f836 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0xb7b000a7 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb7ba241e au_platform_setup +EXPORT_SYMBOL_GPL vmlinux 0xb7baeae2 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7cfeb16 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xb7d32a8c vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xb7dbdd9a usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xb7e94b78 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xb7d718da __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb7f3aa29 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xb80b1d7a xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xb80b33db regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb7f1e3b3 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xb7f47a33 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xb817d5f4 devl_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb82130df ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xb822129e iov_iter_extract_pages EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable -EXPORT_SYMBOL_GPL vmlinux 0xb836af91 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL vmlinux 0xb856b2e8 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xb8571792 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xb862000c nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0xb829bb67 aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xb86758bf unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xb868fb6c clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xb86cba8a exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xb86e88c1 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0xb86f9a69 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xb87770da pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0xb87d9fda tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xb88bdf6f regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb878a2e4 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xb87a49cd fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xb87e76f9 encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89951f5 dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xb89a498c led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0xb8aac511 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xb8bea50b register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb8929de7 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xb89d0552 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb89e5c2a pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb8a510e1 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xb8ad2e7f rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xb8c1f773 sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8d3bcff xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0xb8db336d serdev_device_break_ctl EXPORT_SYMBOL_GPL vmlinux 0xb8df84df gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0xb8e72a3c __device_reset -EXPORT_SYMBOL_GPL vmlinux 0xb8f6f99d xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0xb8fdf806 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL vmlinux 0xb906552c cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb8f9191b kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0xb90a1fcd rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xb90c2fb6 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xb90cb81c regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb923da6e phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0xb9251e4e bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xb91b86c0 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xb92bc4b0 hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0xb939ce51 __register_mtd_parser -EXPORT_SYMBOL_GPL vmlinux 0xb93c7141 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0xb93dc021 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb93c8e85 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xb93fcfe1 snd_soc_set_runtime_hwparams EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb9437962 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xb959c1cc snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb9475e3b wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xb953f826 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xb95ad0bb usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb97b0453 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xb9802aa1 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb9840629 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb985724c pci_epc_linkdown -EXPORT_SYMBOL_GPL vmlinux 0xb987ab3d bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0xb9968947 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xb98b24be blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xb98ba107 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xb990d1fc __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb992dec4 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0xb99a93f5 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb99ac8bf i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xb99d3629 synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xb9a0a4f1 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0xb9a89a7d rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xb9a16a2f metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb9a2e111 iomap_file_buffered_write_punch_delalloc EXPORT_SYMBOL_GPL vmlinux 0xb9b51e9d alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb9b8c5ae rio_attach_device EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bb05cd blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xb9bfdbe2 blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c6bb0f ehci_adjust_port_wakeup_flags EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d09418 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xb9d1fa44 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xb9d79c26 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb9e13bf0 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb9dbe370 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0xb9e338a8 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0xb9e3cfa7 __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9f4144b phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0xba032f94 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0xba05f509 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xba051a68 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xba17056c of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xba18d67a rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xba19287e dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xba1f0d65 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xba2544fd pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xba2ad83a phy_set_media EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba30143e sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0xba35869c locks_owner_has_blockers EXPORT_SYMBOL_GPL vmlinux 0xba362cdb devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xba3a8667 of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0xba3ba2f3 mtd_table_mutex EXPORT_SYMBOL_GPL vmlinux 0xba3c41a8 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0xba477e1d snd_soc_dai_action -EXPORT_SYMBOL_GPL vmlinux 0xba4936d7 ahci_platform_find_clk -EXPORT_SYMBOL_GPL vmlinux 0xba6a6a6a gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0xba7a383b dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0xba7c1308 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xba4757bf regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xba53efbb devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xba58e5dc snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0xba63f91f ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0xba8b171d sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0xba972479 skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xba9b7f8e sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xbaa6f1b3 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL vmlinux 0xbab39758 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xba9d60e6 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xbab8e3cb rt288x_setup +EXPORT_SYMBOL_GPL vmlinux 0xbab98122 nand_read_page_op EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabb5f87 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0xbac00b15 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xbac67bc3 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xbac6a1cc __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xbaca388d crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xbace2e56 virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xbad00ac6 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xbaf2cfeb bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xbac37927 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xbace170a vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbad274af wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xbadfb476 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf7c3cb snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbafc8f53 nvmem_layout_unregister EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb042654 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb102ade mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0xbb150b15 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xbb189a68 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xbb179e43 pinmux_generic_get_function_groups EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb27abf2 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xbb282978 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb4d70e8 crypto_akcipher_sync_prep +EXPORT_SYMBOL_GPL vmlinux 0xbb504e54 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb567e73 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xbb5ce133 platform_get_resource_byname EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb684e53 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xbb6da149 snd_soc_put_strobe -EXPORT_SYMBOL_GPL vmlinux 0xbb6e3359 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0xbb6cf9f9 invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb7f8624 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xbbb7d3ae phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xbbe5bd86 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xbb95805f strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xbba42ed5 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xbbb160a2 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0xbbbe763f thermal_cooling_device_update +EXPORT_SYMBOL_GPL vmlinux 0xbbd56062 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbbd9f311 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xbbe729a9 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xbbe7df16 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0xbbee4e35 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xbbf01fe6 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0xbbf6e941 devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbbf982ae regmap_get_val_bytes -EXPORT_SYMBOL_GPL vmlinux 0xbbfc67c2 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL vmlinux 0xbbfc82c3 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xbc05fd32 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xbc09f4ec dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xbc1c3a2b devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xbbf2edf7 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xbbf834ee dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xbbff0b15 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xbc0bb622 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbc124601 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc3e888b devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbc39c6b3 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbc3a7b62 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc48461e pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0xbc4d11a4 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xbc49172b clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc4a6f9e sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xbc4d5149 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbc50ffe9 xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0xbc569bd5 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xbc5bd2c1 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xbc6a2634 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc700973 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xbc96108b __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xbca29037 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xbcb4878e sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc6e85b1 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc7d7b83 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xbc861dad iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xbca56bc8 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xbcb0d2a6 dapm_kcontrol_get_value EXPORT_SYMBOL_GPL vmlinux 0xbcb60fbf cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xbcbdd950 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xbcc1419c tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcc61b0f dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xbcd0a126 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xbcd98cf3 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xbcc43c45 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xbccc8b27 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xbcdc28bb pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name EXPORT_SYMBOL_GPL vmlinux 0xbce12556 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbce370bf tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xbcea462c snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xbce35a6b usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0xbce5bda1 sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbd021eb8 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xbcfddc82 devm_regulator_get_enable_optional EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd2e9dea pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0xbd3d818e ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xbd0a89a1 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xbd0cc771 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xbd0cf997 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xbd2c9177 cci_ace_get_port EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4462bc usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xbd446e62 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbd455684 fsverity_verify_blocks EXPORT_SYMBOL_GPL vmlinux 0xbd4ce870 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xbd6d87f1 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xbd7a799a sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xbd856aed cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xbd5d3ef8 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbd7f605c cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xbd956139 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xbd9b8044 trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0xbd9df850 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xbda00063 usb_gadget_unmap_request EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbdbb5e91 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xbdc4400f snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0xbda768f4 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xbdb72fdd cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0xbdcd6e5e imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0xbdce59b0 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0xbdcd8814 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xbdd13e1e skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xbdd6e522 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xbdd73ec7 mtd_is_locked EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbde56a34 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xbde81bdc rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0xbdf340ec mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xbde64be7 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xbde966dc clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xbdee4074 __get_mtd_device EXPORT_SYMBOL_GPL vmlinux 0xbdf4b96f percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0xbdf58127 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xbe01091a tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0xbe046f13 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0xbe0676c1 switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0xbe10c2c7 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll EXPORT_SYMBOL_GPL vmlinux 0xbe1c3eeb devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xbe2ab664 imx_pcm_fiq_exit -EXPORT_SYMBOL_GPL vmlinux 0xbe55d4a7 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xbe674a8f bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xbe2daeae wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbe31cc00 usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe7dc8e3 omap_iommu_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xbe812e6d ethtool_dev_mm_supported -EXPORT_SYMBOL_GPL vmlinux 0xbe8c3124 crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xbe8d2039 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xbe7466d1 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xbe861d48 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xbe8fb3ec asoc_dummy_dlc EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9fd787 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xbea3efbf spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb1974a of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xbea70666 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xbeaaadbb usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xbeafe789 pci_create_ims_domain EXPORT_SYMBOL_GPL vmlinux 0xbeb28eab bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xbeb59c2f wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0xbebc6fde driver_register -EXPORT_SYMBOL_GPL vmlinux 0xbed0f2dd da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbee64a6e spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xbee7cb5e xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0xbec90d03 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xbec9b25d nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0xbecb15a6 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf150ebe gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xbf1b4647 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xbf1ecc9c hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xbf12c81e key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xbf16c505 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xbf21f2a7 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xbf29fc8c crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf322369 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbf37fe9b rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xbf4227a5 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xbf32b8d8 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xbf3be23f tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xbf3ed96c devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf4a7648 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xbf6e0bd1 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xbf6ec6cf devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xbf9420ec iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf950dd6 sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0xbf9e38d7 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbf4784af relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xbf63b827 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xbf728975 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xbf778abf ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xbf8fcdbd fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xbf903986 virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfe2f864 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbfc5683d iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xbfc96a10 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xbfcb5a43 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xbfcc95b7 mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfe83bb4 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xbfeb40d2 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0xbff1155e netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 -EXPORT_SYMBOL_GPL vmlinux 0xc014dca6 tpm_chip_bootstrap -EXPORT_SYMBOL_GPL vmlinux 0xc02a53b6 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0xc03a017f strp_done +EXPORT_SYMBOL_GPL vmlinux 0xc002d169 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xc037830b pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xc04166c7 tty_port_link_device EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate EXPORT_SYMBOL_GPL vmlinux 0xc04e20c3 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xc050f336 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xc053d241 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xc055c09f usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0xc0583e20 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc0585ea2 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc05bd8eb snd_soc_dapm_sync_unlocked EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc06504e9 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xc0618863 device_initialize EXPORT_SYMBOL_GPL vmlinux 0xc06b77b3 __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc06f2830 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL vmlinux 0xc07f9e3a ata_link_online EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc082a62f genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xc08326b7 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0xc087d75f extcon_register_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc091ba73 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc0967f58 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xc09e916d dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xc0a41182 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0ac546b devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0be8cc4 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xc0d6e404 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xc0d7b63f perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xc0bc0440 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xc0cb6f47 wwan_register_ops EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0deddc1 dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xc0e75cec visitor128 -EXPORT_SYMBOL_GPL vmlinux 0xc0edbab0 genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f14b23 snd_soc_dai_set_sysclk EXPORT_SYMBOL_GPL vmlinux 0xc0fe2c9e kobject_rename EXPORT_SYMBOL_GPL vmlinux 0xc105ba23 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xc107c721 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10d71d6 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL vmlinux 0xc13c1db2 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xc112830d component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xc12457f3 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc12fc892 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0xc13cf6ff raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0xc14ecb55 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc15a1e8d crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xc1638095 of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc16390ec unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xc14350a6 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xc148e2a7 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xc14d1352 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xc167f2fd bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xc1717843 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc174ffe7 phy_calibrate EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc1865644 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL vmlinux 0xc1a8e874 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xc1abfb50 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xc1b67e4e device_link_add -EXPORT_SYMBOL_GPL vmlinux 0xc1d031f9 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0xc1d2f400 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xc1de354a cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc18086d1 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc1a23cc3 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc1a63432 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xc1bad725 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xc1bb9827 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xc1bf74a2 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1c28c2a pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1c2f3c9 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xc1e67fa6 devm_mipi_dsi_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1fea00b __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xc1f755ee snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0xc2014ebc dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xc20d5952 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xc218e5f3 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0xc21b3cca devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc21dcc18 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xc21d7561 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0xc2265869 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xc2277580 of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22fea45 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xc235701f dev_pm_opp_get_supplies EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc2434a46 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0xc246192b iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xc25aae64 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL vmlinux 0xc25dee54 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xc23a2f31 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xc241267c dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xc24c32e5 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xc24c867b mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc2590e83 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc25f1cea genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2697830 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xc282f8fd crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xc286291a security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc2917895 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xc2928d2c dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xc29d2ec0 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2c4fe87 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xc2b1443c ahci_shost_groups EXPORT_SYMBOL_GPL vmlinux 0xc2c89852 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xc2dfec6b fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc2e1ce48 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xc2e6b4b8 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xc2ea8dcd gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc2d60fff nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xc2d8ee2b perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0xc2f2db44 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0xc2fc0d11 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xc2fe1685 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xc3008f0e pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xc301b833 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0xc3025407 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0xc303f630 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc308149e led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xc30b04c7 fscrypt_prepare_lookup_partial -EXPORT_SYMBOL_GPL vmlinux 0xc30b7f19 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xc30b84d5 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xc31294e7 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc31019e3 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc3179d4d ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL vmlinux 0xc335aacc lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0xc33b17a0 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xc324081c snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0xc33ee02e debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object EXPORT_SYMBOL_GPL vmlinux 0xc34e4c7b kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xc35ab103 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xc36d0c92 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xc36f6b3e balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0xc361fd92 devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3836345 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0xc3884e17 irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc393fe8b wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xc3a804f6 nand_select_target -EXPORT_SYMBOL_GPL vmlinux 0xc3ac0725 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xc3a599de dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0xc3acb2a6 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xc3af0079 class_create +EXPORT_SYMBOL_GPL vmlinux 0xc3acd7df edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax -EXPORT_SYMBOL_GPL vmlinux 0xc3ba88c0 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xc3bb2ded usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0xc3bf3c64 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xc3c2d084 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3b64452 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xc3bf5002 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3db1c1f tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xc3cc1795 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xc3dd2117 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3e2ac0c mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc3e31951 usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc3e6e916 vchan_init EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f36c59 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0xc3f47a99 kill_mtd_super -EXPORT_SYMBOL_GPL vmlinux 0xc40ccfac perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xc412178f phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc41263e0 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xc4247600 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long EXPORT_SYMBOL_GPL vmlinux 0xc4296a0b mtk_eint_find_irq EXPORT_SYMBOL_GPL vmlinux 0xc42e14b9 sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xc431e844 vcap_del_rules EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc44c4636 sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type -EXPORT_SYMBOL_GPL vmlinux 0xc4575b07 fscrypt_dio_supported -EXPORT_SYMBOL_GPL vmlinux 0xc460ee25 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0xc46562e6 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xc4594a51 iommu_map EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource EXPORT_SYMBOL_GPL vmlinux 0xc473f58c mtk_clk_unregister_dividers -EXPORT_SYMBOL_GPL vmlinux 0xc4837181 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0xc48fce37 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc47f88f4 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xc4815270 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc490805d synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xc4915115 sm501_unit_power EXPORT_SYMBOL_GPL vmlinux 0xc4937fde ti_clk_is_in_standby +EXPORT_SYMBOL_GPL vmlinux 0xc49c8475 iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0xc4b459df snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL vmlinux 0xc4ba6779 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xc4ba67fc umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xc4bd6a73 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xc4ce0186 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0xc4cf2420 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0xc4d1d9fe get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xc4d4c8fa inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc4d8ac61 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0xc4ea0a30 pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc5027e53 devm_snd_soc_register_component EXPORT_SYMBOL_GPL vmlinux 0xc5053a51 x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xc509a896 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc50f0cb0 devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xc5113046 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xc5149bb2 regmap_might_sleep -EXPORT_SYMBOL_GPL vmlinux 0xc5375402 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc51525bc led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xc51bf857 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc5330697 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc533d2f6 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xc5351624 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xc5384fb0 musb_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc53aa4ae led_init_default_state_get -EXPORT_SYMBOL_GPL vmlinux 0xc53ac036 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc53b74d3 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0xc540a4e5 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc54cfc1c gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc54d2af4 __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5637cc9 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xc5649450 devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56a2b5b ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57c1d2b snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0xc57a540b crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xc57e2afd failover_register +EXPORT_SYMBOL_GPL vmlinux 0xc57ead96 ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc5a3063b virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xc59a5354 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xc5a45ff1 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc5a50802 blk_crypto_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a8b57a iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xc5a8e909 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL vmlinux 0xc5b9b649 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xc5c6da67 snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL vmlinux 0xc5d0680a regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xc5e17393 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0xc5e48cc9 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc5ee7ac5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc5f904e7 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0xc601a53e crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc624d3ef tps65217_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xc628eb48 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xc649a56a udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xc628dac6 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0xc63ddbfc mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xc6425be1 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0xc64a903e fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xc64b8e59 lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xc6608a24 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0xc6657243 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc65bab16 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xc668df31 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66c66f0 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xc66f2d0d __traceiter_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xc672756e ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc677d086 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xc67e2532 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xc67e47ad dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc68e9fa5 pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xc693534f driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc695645c musb_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc6adc8ba __xas_next EXPORT_SYMBOL_GPL vmlinux 0xc6b32405 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc6b6190d __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc6b76d82 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xc6df47f3 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xc6be45c4 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc6d2cb8f gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xc6e12e3a fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6e667f1 thread_notify_head EXPORT_SYMBOL_GPL vmlinux 0xc6e91dbf __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0xc6e9de67 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xc6fc51f0 dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0xc71065e9 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0xc715dbbc __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xc7167d37 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xc71c86d5 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0xc71ead47 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc7311343 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0xc73d5e06 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xc742db12 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0xc753375c nand_prog_page_op -EXPORT_SYMBOL_GPL vmlinux 0xc75a3df8 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xc77042aa iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xc772adb3 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc6ea1257 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc6f32ed4 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc705e4df perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xc71236db ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xc720ba8c crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc72dbeb2 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xc76a0e23 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xc77367b3 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xc7785320 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL vmlinux 0xc780fc71 pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0xc782e17f synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc784e95e crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xc78cc994 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0xc79144f5 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xc79aeb23 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a588aa of_irq_parse_and_map_pci EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7a8bdfd folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xc7ab20d6 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xc7b22646 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0xc7b3aa91 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0xc7b62598 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xc7c61aa4 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0xc7d2d787 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xc7be7348 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xc7c658f6 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xc7c8a608 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xc7cfe0bc sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0xc7d3ab52 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc7d75a79 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc7e5f246 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7e78b2e vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xc7ef5288 regmap_might_sleep EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc81a759a sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xc80e9dad tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xc8160b9d ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc81df19e kthread_func EXPORT_SYMBOL_GPL vmlinux 0xc8231890 mtk_pinconf_bias_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc82826f9 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc8282ebc crypto_sig_verify EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82db0ed register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0xc836fa82 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xc8409722 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xc847ad72 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc851c2fa xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xc853678a devm_tegra_memory_controller_get EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc861d2e1 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xc86a9da2 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0xc878664d usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xc88cc276 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc870778c fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc8721bc8 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xc878fbd5 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc87c483d ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xc881bbfa ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xc8831d47 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0xc8b08a3b devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc8b69edc serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0xc8bc90bf pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0xc8d485e4 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0xc8db705c tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0xc8c604b8 mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0xc8d964d1 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xc8dac105 trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8de90e8 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xc8e44f6e snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc8fd05a2 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xc8e18f08 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xc8e24165 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xc9036e85 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xc9172aff pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xc92122ef get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0xc926ae1b start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc926c6e5 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xc93639cf pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xc92d2e2d add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xc938c2e9 device_create_file EXPORT_SYMBOL_GPL vmlinux 0xc93a3655 mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xc93b6c93 simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init EXPORT_SYMBOL_GPL vmlinux 0xc94ac469 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xc9515c36 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xc94ba54d sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc95a3b3a of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xc96c903a nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0xc96d76a1 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc96eb1c4 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc963855a mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xc969fcba decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xc96fb674 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc981de1a snd_soc_dai_set_pll EXPORT_SYMBOL_GPL vmlinux 0xc9825415 percpu_ref_is_zero EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98ac751 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xc998f330 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xc984b6f4 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xc989e11b ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xc98d919b cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0xc99d68fe gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xc9a228ce property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0xc9b23841 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xc9b68710 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0xc9a50f84 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xc9c2f468 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xc9c6af94 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xc9c7cf1f devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xc9ca2dd6 dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9d130c1 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc9cf4618 sdhci_set_bus_width EXPORT_SYMBOL_GPL vmlinux 0xc9db0991 ZSTD_isError -EXPORT_SYMBOL_GPL vmlinux 0xc9e87bcd crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xc9e97e55 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc9e9ab54 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xc9e184f4 usb_control_msg_recv EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu EXPORT_SYMBOL_GPL vmlinux 0xc9f76eb1 __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca0a7a5b rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xca192f16 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xc9ff48a3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xc9ffd688 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xca0a11f6 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xca0f1a99 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xca1b6caf pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xca1fa08f call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xca28d61e rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xca29efe7 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xca3d3cc5 xas_split EXPORT_SYMBOL_GPL vmlinux 0xca40ebc3 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca47a033 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xca4dcdfc regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0xca545922 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xca54852e pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xca5947fa fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xca69496a devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xca74ff13 regmap_exit EXPORT_SYMBOL_GPL vmlinux 0xca76b23a __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca900e14 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xca90bfa8 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xca967ed4 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9d6424 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xcaa3373f __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac24218 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xcad0ea00 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xcad2b76c imx_clk_hw_pfd -EXPORT_SYMBOL_GPL vmlinux 0xcad51d62 yield_to -EXPORT_SYMBOL_GPL vmlinux 0xcadd3162 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xcaddd0ff kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xcae5e27e mt_next EXPORT_SYMBOL_GPL vmlinux 0xcaecc540 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0xcb0bd843 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xcb0c6dfa ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xcaef9919 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xcb000308 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xcb0aca32 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb2aebd6 extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb2e166b __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xcb435196 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xcb3f9cc5 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xcb443e70 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xcb4d5d89 backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0xcb55fa16 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb6177f8 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xcb5a9ae4 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xcb628197 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0xcb64abd0 mtk_register_reset_controller_with_dev -EXPORT_SYMBOL_GPL vmlinux 0xcb6a4634 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xcb805ddf net_selftest +EXPORT_SYMBOL_GPL vmlinux 0xcb65d948 musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xcb707f13 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xcb70abc9 nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0xcb70cf05 input_class +EXPORT_SYMBOL_GPL vmlinux 0xcb75d13c icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xcb87dda1 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0xcb87e247 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0xcb973053 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xcb931d12 vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0xcb9f0201 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xcbacb45d device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xcba8bb95 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xcbaedfa5 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xcbb53592 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xcbb6ce90 vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0xcbb6d9fb rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0xcbbb0356 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0xcbbf63ea _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0xcbd18c4f devm_power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbf778de crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0xcbfa2afc nand_prog_page_op EXPORT_SYMBOL_GPL vmlinux 0xcbfe0680 from_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0xcc19559c dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0xcc376e9a gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcc0fe4f2 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xcc12e645 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xcc254f71 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xcc269bbf rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc426d65 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xcc4691f9 fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0xcc56519e blkcg_set_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0xcc6b2a29 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xcc723179 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xcc7359c2 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xcc74e3de snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL vmlinux 0xcc876142 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xcc87ff27 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0xcc908e6e phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xcc5e0ca3 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xcc615674 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xcc66ebf4 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xcc823c62 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xcc829a84 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc92e189 rockchip_pcie_init_port EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcc95ef9c misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xcc9e024a ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xccba7c8c wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0xccc2cec6 __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccd9fad4 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0xccda7fea __devm_clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xcce450f6 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xccf0712a snd_soc_dapm_dai_free_widgets EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccf5aa5f fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0xcd07f84d sdhci_switch_external_dma -EXPORT_SYMBOL_GPL vmlinux 0xcd083960 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL vmlinux 0xcd12cb5d rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xcd1e17f1 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xcd233f80 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xcd017042 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xcd0545dd pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xcd0b0fec __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xcd0f5141 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd20d230 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd365511 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xcd3e426b pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xcd467029 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xcd4a43f0 sm501_set_clock -EXPORT_SYMBOL_GPL vmlinux 0xcd4c0635 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xcd4cfd9c pci_find_doe_mailbox -EXPORT_SYMBOL_GPL vmlinux 0xcd4f9582 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xcd652787 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xcd4c7c8d snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL vmlinux 0xcd58e739 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcd633eb2 devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0xcd652efd pm_generic_thaw_noirq EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd6f3f0e usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0xcd79a383 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xcd883456 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xcd6f6229 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xcd7091af snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0xcd7dba53 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xcd856d0b hte_push_ts_ns EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd95c215 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9afead snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL vmlinux 0xcd98f922 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xcd993734 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu EXPORT_SYMBOL_GPL vmlinux 0xcd9efac1 wm831x_auxadc_read_uv EXPORT_SYMBOL_GPL vmlinux 0xcda170d9 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xcda1ddb0 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xcdb46879 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc26880 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xcdc9f99e blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd76713 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xcddd4880 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xcdec7d50 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xcdf8227b mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xcdfaf70a nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0xcddf7b1f md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xcdef309e dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xcdf39483 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xce034318 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xce09e8f6 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xce0d9d47 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xce156232 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xce159b2f mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0xce1ed548 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xce24fa30 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0xce28bacc inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xce2bf282 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0xce2cf9fb __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xce305b9c crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xce31c786 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0xce38bfdb usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xce44bf22 snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0xce4bc337 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xce50ffad snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0xce54d144 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0xce5bbb35 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xce5c1135 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0xce5fd05d snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xce63f977 musb_queue_resume_work EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce733849 devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0xce737959 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0xce8ea715 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xce95f5e3 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xce961df2 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xce78ac1d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xce854988 snd_soc_new_compress EXPORT_SYMBOL_GPL vmlinux 0xcea29652 __srcu_read_unlock_nmisafe +EXPORT_SYMBOL_GPL vmlinux 0xcea47352 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xcea71101 mtk_clk_register_factors EXPORT_SYMBOL_GPL vmlinux 0xcebb6436 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xcebb8d43 snd_soc_component_nc_pin_unlocked EXPORT_SYMBOL_GPL vmlinux 0xcec6a9bb cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xced7da44 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xcedf281d pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console EXPORT_SYMBOL_GPL vmlinux 0xcee825b3 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply -EXPORT_SYMBOL_GPL vmlinux 0xcef1a0d7 devlink_priv EXPORT_SYMBOL_GPL vmlinux 0xcef4d5b4 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xcefbb5ac __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xcefe9abe ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0xcf03afe2 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL vmlinux 0xcf0af557 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0xcf1719c0 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xcf193e78 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xcf02cb0f snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0xcf0dc957 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xcf271322 kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf2f3c3c regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xcf34a284 omap_iommu_save_ctx -EXPORT_SYMBOL_GPL vmlinux 0xcf6e45bb sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xcf7ba552 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xcf91b7b7 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xcf99304d msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xcf9db176 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf362cb9 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xcf427ba1 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xcf6fbeff spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf6fc762 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xcf798ba5 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcf843a9c fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xcf87a0d2 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcf9c5f09 vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0xcfa15312 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xcfa6b616 of_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0xcfa70ee0 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0xcfa7cec3 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xcfb6a11b mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xcfb8a451 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xcfbddb8b iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfd28727 vcap_tc_flower_handler_arp_usage +EXPORT_SYMBOL_GPL vmlinux 0xcfce1bd4 vp_legacy_set_status EXPORT_SYMBOL_GPL vmlinux 0xcfd55798 mtk_devm_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0xcfe6c67c devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xd014db85 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xd0158cf6 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xd03207c0 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0xd0350050 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcfd6bc38 devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xd0036520 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xd0108270 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd013bd05 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd01684f7 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0xd01e7fe8 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0xd03683d5 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xd038b9c8 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd03a9872 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd045c9d5 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd04b7270 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xd059c28b fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xd05c2bce mas_empty_area EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd0654596 __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd06a6d12 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd06e8477 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0xd09a2f23 get_mtd_device -EXPORT_SYMBOL_GPL vmlinux 0xd09e4e43 snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL vmlinux 0xd0b047b0 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd0bd2e7f thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0d7ebff snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0xd0c3addf pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xd0db0837 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0e4f0e4 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0xd0e7ee58 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd0dbdb1a xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd0eb22c2 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd0f045cb ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0xd0f218b7 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0xd0f74322 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xd0fb9c41 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xd102db3e filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0xd11b6436 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xd1207701 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0xd0fe4630 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xd107732b devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd10f1692 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd11208e5 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xd11acd5c crypto_alloc_sig EXPORT_SYMBOL_GPL vmlinux 0xd12097e4 mbox_client_txdone EXPORT_SYMBOL_GPL vmlinux 0xd12159a7 stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0xd1323592 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd1351fd0 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0xd13de565 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xd13ef964 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xd13628d3 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd13d01ec pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xd13e7714 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0xd142c501 mas_prev EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14ac484 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0xd14b56aa mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xd1635acd filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0xd16b0b85 devm_register_power_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xd1718be5 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xd14c8bec ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xd14ef877 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xd14f1741 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd15ee076 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xd1636732 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd16d63ec nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0xd1733238 sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0xd177b864 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xd178b071 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xd178e4c3 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xd174a3f3 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xd17c088c of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0xd1840977 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xd189c643 of_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0xd18f2863 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xd1963207 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xd19b00c3 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd1a952a4 hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1ac57a4 pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xd1b19e29 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0xd1b4fd15 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xd1b65ebb nand_erase_op -EXPORT_SYMBOL_GPL vmlinux 0xd1b9d10d crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0xd1c09f32 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xd1aad0f9 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xd1b20c1c finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e328cd virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0xd1eb0ab9 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xd1f05d5e pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd1d65299 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xd1ea1a87 ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f64465 of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0xd20de0fb dbs_update -EXPORT_SYMBOL_GPL vmlinux 0xd211e0cb generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xd216e56a kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd2292092 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd22fd2a3 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xd2461901 tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block -EXPORT_SYMBOL_GPL vmlinux 0xd24ad931 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0xd25d30c1 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd2495446 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xd24bad3f tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd25841b4 regulator_map_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26e20c8 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xd2615ec4 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xd269f3ac mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0xd27adfa5 mas_find_range +EXPORT_SYMBOL_GPL vmlinux 0xd2972998 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xd2993b78 shmem_read_folio_gfp EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2a6ce73 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xd2b09f79 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xd2a0af2c vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xd2a19c1f pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xd2a63a23 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2bce13f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xd2c5ddc0 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xd2cb58e9 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xd2b30a01 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd2b438b7 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xd2bdb9d7 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd2d7cac8 snd_soc_component_compr_ack EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0xd2e455d0 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xd2fc5121 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xd2ff6c61 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xd2e7868c debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0xd302621b divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xd31640e4 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd305d338 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd3199e0a regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd31f06f9 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd329bf2b lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xd32dc8ff spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed -EXPORT_SYMBOL_GPL vmlinux 0xd33c4c93 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xd3440452 mtd_is_locked -EXPORT_SYMBOL_GPL vmlinux 0xd3728e25 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xd33c7200 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xd351e49e mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xd35a7b02 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xd36143c5 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0xd3664127 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xd36945be __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xd3705592 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 -EXPORT_SYMBOL_GPL vmlinux 0xd38329d0 snd_soc_component_write -EXPORT_SYMBOL_GPL vmlinux 0xd397b3eb usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0xd398b348 perf_report_aux_output_id -EXPORT_SYMBOL_GPL vmlinux 0xd39af744 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xd38b928c pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b03bcd gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0xd3b63142 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd3c4cceb snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0xd3b5bd7a tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd3b78f1a tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xd3be9d88 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0xd3c672b8 nand_subop_get_data_len -EXPORT_SYMBOL_GPL vmlinux 0xd3d8eb1b rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xd3d3695c mtd_ooblayout_set_databytes EXPORT_SYMBOL_GPL vmlinux 0xd3e1afa3 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xd3e55911 static_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xd3e8c738 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f0fa9d gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xd3f1ca45 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xd3f5a57a edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd3f628e4 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xd3fd0089 snd_device_initialize EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd40a1d1b ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xd4163e99 fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xd41ddfff is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xd4057361 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xd410b264 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xd4147c2c ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0xd41ff2ac nand_subop_get_data_start_off EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd42f34bc iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xd43438f7 blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0xd43a69af xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xd440ef8c kick_process EXPORT_SYMBOL_GPL vmlinux 0xd44823ed of_prop_next_u32 EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd4651357 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd4735582 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xd48a78db rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xd459169a input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xd4680988 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xd46faf0c pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4938a26 pinctrl_lookup_state EXPORT_SYMBOL_GPL vmlinux 0xd499c42e percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0xd4b0fdd1 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xd49b7e60 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xd4a0d903 usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xd4a36215 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xd4a44e13 debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b8854d fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c19d4c ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4e6a1ba xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4ede112 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xd50c3618 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xd51772af iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xd5203750 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xd525233c snd_compress_new -EXPORT_SYMBOL_GPL vmlinux 0xd52adeb8 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd5009551 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd50774e4 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0xd51290ed sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xd51ce8a4 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xd51f4d4b pci_host_common_remove EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd5316d75 null_dailink_component -EXPORT_SYMBOL_GPL vmlinux 0xd535797f net_failover_create -EXPORT_SYMBOL_GPL vmlinux 0xd53b1edc devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xd54034f7 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0xd543bc3f gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd530aaa0 ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55bef26 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0xd55d2453 devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0xd576bbc5 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xd580945c irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0xd5885877 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd55e2106 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xd5627950 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xd564603b rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xd57f14ef gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xd589a548 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xd58f8cb7 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59b53a7 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xd5a9f59a da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0xd5ac24e5 blocking_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xd5ada7f6 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0xd5d76e27 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xd5d89440 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xd5b92e42 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0xd5dd942d rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xd5e37cbb ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd5f77549 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL vmlinux 0xd5f881b9 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd60d6c4f omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd5f9cb05 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd5fe06e3 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0xd6164816 blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0xd61a9ac4 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0xd624b468 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xd6344d1a perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xd6362016 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0xd63cce91 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xd61c81ee __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xd6256706 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xd62fcaa6 regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xd6345b6c usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd63c613b ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xd64a3de0 snd_soc_jack_report EXPORT_SYMBOL_GPL vmlinux 0xd64b1fe3 ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd663f3ad switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd64fd0e9 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd65d575e mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xd65e7d48 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd65fd8db pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd66135dc relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xd6626eed devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xd66d1072 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget EXPORT_SYMBOL_GPL vmlinux 0xd6749358 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xd67fa178 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xd6861ffb __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xd6833989 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xd686d5e9 mtk_clk_unregister_muxes -EXPORT_SYMBOL_GPL vmlinux 0xd69ba995 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xd6a3bb8b snd_soc_runtime_action -EXPORT_SYMBOL_GPL vmlinux 0xd6a84247 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xd68efc91 inet_splice_eof EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry -EXPORT_SYMBOL_GPL vmlinux 0xd6b6632c mtd_writev -EXPORT_SYMBOL_GPL vmlinux 0xd6bace5c snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xd6b1cbcc bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xd6ba4da8 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xd6ba7f6b virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xd6c2c864 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xd6c55c8f dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0xd6d47998 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xd6ee1b7b dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xd6cc1ed5 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xd6e1fb9a usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xd6e534c3 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xd6ff5c0b device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd70b0263 usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0xd70db8cc mtk_clk_register_cpumuxes -EXPORT_SYMBOL_GPL vmlinux 0xd71445e7 rio_request_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xd719d24b debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xd730dd1d regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0xd7416e91 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xd7438da6 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL vmlinux 0xd744916d sdhci_free_host -EXPORT_SYMBOL_GPL vmlinux 0xd758c51f devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd758f1c5 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xd75ef5b9 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd70e8b9e blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xd7223898 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xd729f1d7 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xd73eaf89 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xd74790a1 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xd7487dd1 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd74a5e33 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd7584bde kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0xd766e8f2 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd76887df ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76ffbf2 rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl EXPORT_SYMBOL_GPL vmlinux 0xd7754064 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xd7a350f1 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd77b41e5 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xd78aaea2 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd7961b36 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xd7966018 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xd79bfe73 phy_configure EXPORT_SYMBOL_GPL vmlinux 0xd7a36e25 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0xd7a77318 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd7a77bfe __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd7ab8c92 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xd7ad54ea ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd7c1b92f fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xd7c6da79 tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0xd7c732f3 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xd7aabbcd __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd7b600ce dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0xd7c66ec4 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0xd7c9e57a __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xd7d88a68 musb_set_host EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7dd036e sdhci_set_power_and_bus_voltage EXPORT_SYMBOL_GPL vmlinux 0xd7e6729f devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xd7f40415 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xd7fa35d6 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0xd809cf54 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xd81970a5 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd81db3ca folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xd808a2af tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd8163039 thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xd823d36d __SCK__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xd8254636 fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0xd82b24a6 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd82bb27b fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0xd82d200f mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0xd83504d3 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xd82ee65b nf_route EXPORT_SYMBOL_GPL vmlinux 0xd8493c26 mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd851183c pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xd868c388 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd86ec1e1 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd86269be nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xd86738d1 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xd86ec1b2 rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88ca406 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xd8906f07 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0xd8936c79 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xd897c20b phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xd899013d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xd8a3b2a7 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8a81e4e of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0xd8a8ce34 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0xd8c8a3e0 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xd8c108eb crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd8cb3d6e virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8dd0004 tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd8e56e4f pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xd8e9745a tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xd904ef14 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xd90e6682 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xd91bcbbb irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd8d8d761 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd8e45900 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xd9103069 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd91a5638 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xd91d035f usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92abd78 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd9433aa0 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xd9458e41 usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0xd9519ea4 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xd9529867 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xd966ca5f nvmem_layout_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xd94c12f3 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xd95510bf fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xd957e3e6 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xd968560a inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd969c013 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96e2fc3 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xd973109f tcf_frag_xmit_count -EXPORT_SYMBOL_GPL vmlinux 0xd97ee5c3 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xd9a4764a snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL vmlinux 0xd9ac4f7f devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xd9bae6d9 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xd974573d md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xd977f11d iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xd983679a skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xd99d65b2 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xd99f106f page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xd9ad7619 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd9af8239 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd9b9b782 pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e5cc1d vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xd9ed1670 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd9f9148a dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0371c3 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xda0695a0 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xda07f1e3 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xda088f94 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xda08bef8 iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0ca491 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xda0db39d ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xda1cb446 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xda148e2a __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xda223703 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xda258a90 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xda25bd67 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xda2a6b9c bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xda2fcfb1 cpts_create EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3fafe6 meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0xda42f8d1 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xda4cf216 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL vmlinux 0xda5b0f35 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xda5ce04e securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xda3ddd8d tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xda584477 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xda679acd __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0xda743bd9 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xda788be9 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0xda7e8fa3 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xda81d85c virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xda923625 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0xda98b796 devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0xdaa04156 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xdab04af7 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xdaa3398d irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xdaaadcae pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xdab2cc6f snd_soc_component_compr_pointer EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac33d0a irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xdabecbe2 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xdac0bb32 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0xdac559f0 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0xdad26f48 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xdb060edc device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xdb076462 mmc_regulator_disable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xdacd3f02 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xdaf4f0c0 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0xdafec43c vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xdb057040 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xdb0ac7e7 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdb13abc2 vmf_insert_pfn_pmd EXPORT_SYMBOL_GPL vmlinux 0xdb1e7a2c cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xdb20b882 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xdb2526b0 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0xdb256785 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xdb29af40 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdb36bb79 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xdb461ada mmc_regulator_enable_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xdb4b618d adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xdb4d8ea5 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xdb374b44 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xdb5f5b99 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xdb6772b4 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0xdb74e151 snd_soc_bytes_info EXPORT_SYMBOL_GPL vmlinux 0xdb7daefd clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xdb830335 debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb8cb729 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb8d3062 raw_abort EXPORT_SYMBOL_GPL vmlinux 0xdb90604b rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xdb91a71b mmc_send_abort_tuning EXPORT_SYMBOL_GPL vmlinux 0xdba22696 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xdba574e1 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdbbe5213 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0xdbc838cb devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbd04913 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdbd2f2b0 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbdca75d rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0xdbe0f21d fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xdbe221ad sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create -EXPORT_SYMBOL_GPL vmlinux 0xdbe59952 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xdbe69ef6 snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbe8f611 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xdbea9fb3 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xdbed17ec virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xdbeeb26e seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc0f86da ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xdc0e5968 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xdc1671e9 device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xdc16bedb mtk_clk_pdev_remove -EXPORT_SYMBOL_GPL vmlinux 0xdc1797b9 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdc1f8c04 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xdc2cdde0 of_genpd_remove_last -EXPORT_SYMBOL_GPL vmlinux 0xdc2e6a65 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xdc384529 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xdc1c47a3 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xdc2d5547 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xdc3caafa fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc4f1c68 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xdc56d857 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xdc5cf76a sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xdc5e1c8f snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL vmlinux 0xdc5fff17 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xdc60cbc3 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xdc495480 usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0xdc4cbd69 tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xdc63f528 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xdc6524d3 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6e5446 pci_platform_power_transition EXPORT_SYMBOL_GPL vmlinux 0xdc7ce353 mv_mbus_dram_info_nooverlap -EXPORT_SYMBOL_GPL vmlinux 0xdc80bed2 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable -EXPORT_SYMBOL_GPL vmlinux 0xdc8a9372 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0xdc8ea137 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xdc905ef9 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xdc93394e tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xdc95f86a devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9f6bca __SCK__tp_func_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0xdc9f9927 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xdcad1dfd driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xdcb97bd8 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xdcbc2af6 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xdcda5636 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xdcdec9af nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xdcad8652 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xdccadd1a stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xdcd0f3ea tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdce429ab scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xdce5d647 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdcedcf19 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdceb68c4 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xdcf0ae62 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcf7f5b9 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xdd01c2e7 blkg_conf_exit EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd10a481 ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd14f182 vcap_tc_flower_handler_ip_usage -EXPORT_SYMBOL_GPL vmlinux 0xdd1e4f12 vcap_find_keystream_keysets -EXPORT_SYMBOL_GPL vmlinux 0xdd22838c mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xdd2f7ff2 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0xdd315ab0 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xdd07cbcb devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xdd0f3df4 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xdd19a51b br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xdd1b6296 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xdd214b34 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xdd28b811 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xdd32a448 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xdd45654c swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0xdd48efb6 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0xdd607e56 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL vmlinux 0xdd598a19 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xdd60b07c usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd63981a ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0xdd641b0b imx_get_clk_hw_by_name -EXPORT_SYMBOL_GPL vmlinux 0xdd67c64a __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xdd6e2aaa folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xdd6f0b0f nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xdd8078d9 sdhci_enable_sdio_irq EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xdd85063c lpddr2_jedec_min_tck -EXPORT_SYMBOL_GPL vmlinux 0xdd8d9071 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xdd9167d6 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xdd936d60 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0xdda116d9 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xdda3d1d6 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xdda50594 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0xddade827 mtk_mux_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0xddbd8d12 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0xddbdca95 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xddae139e mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0xddb7c075 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xddb9690f sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xddbcab5f of_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0xddc2fd28 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xddc930c5 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xddcf6ccb pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xddcff38f snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0xddd00e26 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0xddd0a3b5 irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield -EXPORT_SYMBOL_GPL vmlinux 0xddd4e318 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xddd55ccb genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xddd5a818 pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdddb9d57 percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0xdddc4c8f fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0xdde27943 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xdde953cd ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xdde2aa48 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xddebb0d5 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xddef82bb debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xddfe1ad7 __SCK__tp_func_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xde004ebd spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xde09eb85 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde128a25 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0xde14c9ff srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xde276afc uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xde1cbe3d register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xde221fd9 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xde2b61bb devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde33ab35 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0xde39c6b8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0xde616812 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0xde6367c0 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xde39c73a register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xde51df79 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xde5b5f00 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xde5ca2fa hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde668b20 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xde69c22d serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0xde6b4251 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0xde6b81f9 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xde6c961a perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7b8e92 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xde7c29b2 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xde7c92cb backing_file_real_path +EXPORT_SYMBOL_GPL vmlinux 0xde7f0d89 of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0xde86b5e2 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xde91e46d ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xdea6e070 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0xdeb6c519 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xdeb6fa12 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL vmlinux 0xdeb9697d bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xdec4c8a8 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xded46837 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xdee2304b skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xde8ddac1 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xde9098db gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xde9153da usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xdea63b8e pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xdeb55a70 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xdebfafea irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdece47ac dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xded7cb3d max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xdee419c5 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xdefc210b adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xdefeb75c cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xdef1641a sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis -EXPORT_SYMBOL_GPL vmlinux 0xdf0ca90c edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1593ea snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0xdf1e3544 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2a61b8 io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0xdf2d3bf0 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xdf2f56ab wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0xdf3a159c nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xdf4741b1 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xdf2fe0e7 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xdf31709b __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xdf3359ad udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xdf3d2ae8 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xdf48a0de ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties -EXPORT_SYMBOL_GPL vmlinux 0xdf610c74 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdf58d221 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xdf62a4c2 rio_alloc_net EXPORT_SYMBOL_GPL vmlinux 0xdf665749 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0xdf7864cc unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xdf7b9b0a usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0xdf76f439 phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0xdf809f39 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdf8e4fab snd_soc_put_enum_double -EXPORT_SYMBOL_GPL vmlinux 0xdf95067d pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0xdf81a9b2 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xdf81b194 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xdf877233 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xdf9e362e seq_buf_do_printk -EXPORT_SYMBOL_GPL vmlinux 0xdfa2204b sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xdfaaddb3 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xdfa15384 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xdfac41f2 tcp_splice_eof EXPORT_SYMBOL_GPL vmlinux 0xdfacf5ed devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0xdfad41ca debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xdfb21b33 rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xdfc03cd7 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xdfc32e1c i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0xdfc0d5c8 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd90b00 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0xdfcc9774 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdfdb1ab8 deregister_mtd_blktrans EXPORT_SYMBOL_GPL vmlinux 0xdfe10ad2 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xdfea30c1 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xdfeb2e46 kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xdfeec6a7 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdff15435 bio_poll -EXPORT_SYMBOL_GPL vmlinux 0xe004e705 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xe0100bb9 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xdfe9a9d0 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xdfeabe31 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xdff04cd9 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xdff92d89 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xdffba847 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe0059d6d devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0xe020b08e mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0xe028891d devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xe031cee7 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0xe034276f regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xe037de3f ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xe02b5710 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0xe03b88ec crc64_rocksoft_update -EXPORT_SYMBOL_GPL vmlinux 0xe0405029 vring_create_virtqueue_dma -EXPORT_SYMBOL_GPL vmlinux 0xe04200f0 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0xe0486eae device_del +EXPORT_SYMBOL_GPL vmlinux 0xe03c1758 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xe041ace3 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xe047e529 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0xe049a2e7 mas_preallocate +EXPORT_SYMBOL_GPL vmlinux 0xe04cdb6b dummy_con EXPORT_SYMBOL_GPL vmlinux 0xe04e99d7 btree_merge EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe06457a2 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xe06a26fb i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0xe0789f79 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xe07937e0 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe09038a2 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xe0b061eb seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xe06411bf dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xe07ae65a pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe08d38d9 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xe08f362c ahci_fill_cmd_slot EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b20ff7 ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0xe0b9b3a8 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xe0c1848d device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xe0cda31d md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xe0df8d97 usb_bulk_msg -EXPORT_SYMBOL_GPL vmlinux 0xe0e2a89a snd_soc_component_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xe0e697c7 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL vmlinux 0xe0ec0256 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xe10e714a dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xe0bd3cac cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xe0c0a59a snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xe0eac8a4 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xe0eed65a desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xe0f0e43c genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0xe0fdf3dc regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xe11ad7f7 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0xe129743e __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0xe12a339f dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0xe133937e sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xe139de79 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xe14c3580 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xe14df123 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe157eea8 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0xe1612f1a device_release_driver EXPORT_SYMBOL_GPL vmlinux 0xe1653a54 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe16640c5 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0xe1671021 __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xe1696e01 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0xe1796033 phy_create -EXPORT_SYMBOL_GPL vmlinux 0xe1822aba usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe16d7c34 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe17287aa devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe17298c3 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xe1825f5a devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe18681cd pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0xe18960ba nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0xe18e0840 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xe193cad5 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0xe1aad202 virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1b92fb5 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xe19fd256 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xe1b1cf5b spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c7533c sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1d44db6 iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0xe1de8db8 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xe1fc73be __sdhci_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe21059c2 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL vmlinux 0xe21238fa iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xe22ca303 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1d273ee regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe1e80857 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xe1f3c8c0 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xe1f73f2c kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xe1f984a0 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe2066256 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe20e8320 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xe216c2cb bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe217b1ce pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xe2197366 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0xe221d612 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe233d9ca extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0xe23cd479 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0xe23f3455 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xe240812b md_start -EXPORT_SYMBOL_GPL vmlinux 0xe24518da snd_soc_add_card_controls -EXPORT_SYMBOL_GPL vmlinux 0xe2458804 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0xe25b1f46 __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xe25c49f2 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0xe264338e gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xe2458329 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe24ae56e blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xe2643152 snd_soc_link_compr_shutdown EXPORT_SYMBOL_GPL vmlinux 0xe2717792 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe2744e48 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe278f695 devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0xe27e93a1 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe28a12a3 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xe28aa665 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xe27a9bcd kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe27b417b snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0xe287fae4 tcp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xe2932d36 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xe296f82d skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xe298825e do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xe299feb9 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xe2a12626 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c08efe blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xe2cbb9e6 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xe2cbb224 ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule EXPORT_SYMBOL_GPL vmlinux 0xe2d52f30 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe2e58c84 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xe3055dd6 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xe30c26f2 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0xe313830f alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2fa11a5 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe2fa6aed crypto_sig_set_pubkey +EXPORT_SYMBOL_GPL vmlinux 0xe2ff2450 perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0xe320a99a cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xe3270627 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0xe32bd8f4 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0xe3338716 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xe336394a mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xe3370577 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xe35aaa40 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xe3600523 snd_soc_component_read -EXPORT_SYMBOL_GPL vmlinux 0xe368955c sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0xe341d794 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe34b9a99 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xe358634e l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe35ea8f2 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xe35f4f81 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0xe36fbd51 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xe374e98a spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xe37e133d nf_ip6_check_hbh_len EXPORT_SYMBOL_GPL vmlinux 0xe38344b9 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe3923283 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe38b0c51 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xe39cbe47 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe39d4415 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0xe39db888 irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0xe3a51c0c fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xe3ad980b devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe3a7ef26 inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3ba3940 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xe3c678d7 vp_legacy_get_status -EXPORT_SYMBOL_GPL vmlinux 0xe3cad6cf devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0xe3cd4fa1 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0xe3d5366e sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xe3dcf3d6 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xe3e37deb nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xe3cd1f43 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe3d29074 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xe3e21a4e iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3e9af08 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xe4033bcd ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0xe403860d mtd_ooblayout_free -EXPORT_SYMBOL_GPL vmlinux 0xe4045295 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xe3f21241 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe3f2f8fd __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe4086868 phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe40c65c4 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xe41a1d36 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xe42336de snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL vmlinux 0xe4296a60 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xe429f156 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xe42a2ba1 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xe42bba92 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xe4119a26 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xe41c9d94 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xe4208c01 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe42dccaa vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4428d32 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xe446c662 usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4765119 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xe479290e skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xe470b8f5 devm_snd_soc_register_card EXPORT_SYMBOL_GPL vmlinux 0xe47999a4 kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0xe47a80d5 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0xe48740cf virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a7d60e dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xe4aa1116 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4b9fa3d driver_attach EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c43f07 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xe4c52d57 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xe4c85ba0 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xe4c9f178 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xe4d6bde1 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xe4cd4cbd synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xe4d1bba8 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xe4dc484d skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xe4e0b291 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xe4e11d21 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xe4e1f695 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4faa5c7 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xe50656c5 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xe4f0f7a7 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe4f40f72 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xe50428bf serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xe5044e90 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xe50c9d75 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xe50e23d2 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xe5120757 sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe51d7968 pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0xe51d83c5 nanddev_bbt_cleanup EXPORT_SYMBOL_GPL vmlinux 0xe52173f2 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xe5319c3d ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0xe53e52e0 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xe5488976 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xe5533f79 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0xe563fbb3 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xe566db49 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xe56b61db gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0xe57b3d23 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0xe580ff42 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe5367683 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe542d902 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5446417 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe555f3e6 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xe578b9cb device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0xe57ed5e8 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xe584e6df thermal_zone_device_type +EXPORT_SYMBOL_GPL vmlinux 0xe58586d3 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xe585c315 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58b126a rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe58a1d95 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xe58d416e akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe5962202 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0xe59efb0e musb_clearb -EXPORT_SYMBOL_GPL vmlinux 0xe5ab4e5e mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL vmlinux 0xe5a39ac1 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0xe5bd2906 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xe5c288ca dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5cef7b0 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xe5d62da5 device_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xe5d7565c init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xe5f0145a usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xe5f1b51a ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xe5ff835b tps65217_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xe5ffc197 virtio_require_restricted_mem_acc -EXPORT_SYMBOL_GPL vmlinux 0xe604b0a5 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xe60bb969 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xe5edf025 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xe6117a00 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xe613b27c em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xe614b499 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xe61a842f clk_hw_determine_rate_no_reparent +EXPORT_SYMBOL_GPL vmlinux 0xe623ebd7 dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe636c228 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xe654809e perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xe6568b9f snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0xe63c4c42 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xe6402d1c iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0xe6587b4c irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xe6594925 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xe663f027 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xe666505e snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0xe65bfe57 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6680d60 usb_gadget_set_selfpowered EXPORT_SYMBOL_GPL vmlinux 0xe66a3793 reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xe693cbe8 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0xe694067e bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0xe69fcb9d gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe67e5427 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xe690eb09 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6b6b0b3 uart_set_options EXPORT_SYMBOL_GPL vmlinux 0xe6ba1397 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0xe6c9df53 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0xe6d3edc8 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xe6da3bc4 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xe6defbd1 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe6d881f9 dma_resv_set_deadline EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6e75bc1 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xe6ea492e snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0xe6e6cd42 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0xe6f8455f snd_soc_runtime_set_dai_fmt EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe71c287d spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xe7269002 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xe718031c usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0xe727aa9e page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xe72e1182 snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL vmlinux 0xe72eeb19 mas_store_prealloc -EXPORT_SYMBOL_GPL vmlinux 0xe73b80fc crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0xe7434985 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xe74fdb28 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0xe73f3aad usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe7463f31 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xe7480b46 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe75625fb cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe75f8793 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe762a742 tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76ecd32 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0xe771d256 __tracepoint_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xe77a85f7 vcap_tc_flower_handler_tcp_usage EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0xe781fdd9 of_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe78faf45 register_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0xe799b632 ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xe79acb2d devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0xe79f1a27 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xe7afc890 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xe79de836 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7a71db4 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe7b5500c crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xe7b7be2b kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0xe7c11851 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0xe7cb21e3 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xe7d2ce06 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xe7c65c19 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xe7c75018 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e228b7 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xe7d8c61e nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0xe7eeb387 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xe80667a1 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xe7f44aa7 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xe8128764 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xe816c133 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe819e28b nop_posix_acl_access -EXPORT_SYMBOL_GPL vmlinux 0xe8256f87 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0xe829d31f irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xe82bf9c3 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe835de5f snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0xe83c1e90 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xe84557bc snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xe84afb76 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe84f6a8a nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe84f8d15 gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85da2dc rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xe85e1811 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe85dd810 bio_split_rw EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe88fb18c stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xe8915487 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0xe8974461 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0xe89d430e uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xe87c9146 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xe89d96d5 crypto_sig_maxsize EXPORT_SYMBOL_GPL vmlinux 0xe8a42136 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xe8a45e03 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xe8c298da musb_set_peripheral -EXPORT_SYMBOL_GPL vmlinux 0xe8c41bd7 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xe8cf7d4f regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe8d736ff xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xe8e45533 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xe901a069 clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe9043298 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xe8ca02f8 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xe8d71b5b regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe8dbb666 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xe8e6e3f3 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xe8fdb0a3 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe900f5b5 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xe90a01e5 __cci_control_port_by_device EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9237854 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe92dbdea rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xe93b71bd of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xe9275bd3 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe93f3d0f pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe957f28a __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xe973575f regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe975e93e tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xe9804c33 snd_soc_card_add_dai_link EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe9a1b282 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite EXPORT_SYMBOL_GPL vmlinux 0xe9a7fe16 nvmem_cell_read -EXPORT_SYMBOL_GPL vmlinux 0xe9aa4f98 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xe9aa000f blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xe9ba7f53 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xe9c616de cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe9cea663 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe9cee3e9 usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9ed8ee8 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xe9f4985d clk_hw_forward_rate_request EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea07e6be __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xea08c7d2 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xea09706d clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xea0c4c29 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xea103397 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea17a8db md_allow_write EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled EXPORT_SYMBOL_GPL vmlinux 0xea1f6e0e hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xea2214f2 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xea24bb59 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea27c40f of_add_property EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea388f10 snd_soc_component_notify_control -EXPORT_SYMBOL_GPL vmlinux 0xea460bbf scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xea3fcb90 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xea4a09cb mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xea4fd893 lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea52182f devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xea61d026 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xea688866 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0xea75c132 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xea7ccd0a usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xea521f49 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xea594ccf netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea716eba phy_destroy EXPORT_SYMBOL_GPL vmlinux 0xea87d539 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xea89838b of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xea8e67d8 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xea9a6d68 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xeaa10687 of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xeaa8cda1 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xeac26493 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL vmlinux 0xeac4662c mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeadb6003 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xeada03b9 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xeadb83e7 genphy_c45_baset1_read_status EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae4eacb perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0xeafe7db0 wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0xeb0653be dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xeae8e836 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xeaeb5c80 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xeb00ae1b virtqueue_get_avail_addr EXPORT_SYMBOL_GPL vmlinux 0xeb08e33b ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0xeb0b3057 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xeb0bed02 devl_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xeb188d5d mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb1bff45 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xeb1c45d6 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0xeb1c59b7 bus_get_dev_root +EXPORT_SYMBOL_GPL vmlinux 0xeb282b5b snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0xeb299ed9 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL vmlinux 0xeb308574 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xeb36ab3f __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xeb589530 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xeb5cd4ea usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xeb5907a0 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0xeb5deec8 pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL vmlinux 0xeb7a2e13 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xeb73f4c3 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0xeb8d8c39 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xeb9bcb5d handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xebabe6be bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0xebad5228 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb9e8486 nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebc6cebf skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0xebca005b cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xebca6710 fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms EXPORT_SYMBOL_GPL vmlinux 0xebd7f58d __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xebdb9499 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xebe04eee ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xebe48ed4 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xebe73e64 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0xebeb24a2 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xebed39b2 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xebed8234 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xebf30201 devm_mtk_clk_mux_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xebf73784 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0xebfb3cf2 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL vmlinux 0xec0cfcf8 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xebfcf01f mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0xec0315b4 nand_read_data_op +EXPORT_SYMBOL_GPL vmlinux 0xec076db1 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xec0aff02 phy_validate EXPORT_SYMBOL_GPL vmlinux 0xec0f8740 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xec1243b1 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xec212354 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xec23ed5e i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xec1e75fc phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0xec2a3a7a devm_led_classdev_unregister EXPORT_SYMBOL_GPL vmlinux 0xec2f15de mtk_clk_simple_remove -EXPORT_SYMBOL_GPL vmlinux 0xec31a19c fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xec449440 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xec3299eb sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xec3c6310 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0xec493008 devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xec523f88 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xec565831 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xec56e2e0 iomap_release_folio EXPORT_SYMBOL_GPL vmlinux 0xec590c0c srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0xec5e8fa6 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xec616745 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xec74368e fat_getattr EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec7e56ca pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xec7fc555 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0xec830d89 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0xec8f5120 xhci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xecab8031 mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xecaf7fd1 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xecbbcb05 of_hte_req_count -EXPORT_SYMBOL_GPL vmlinux 0xecc23018 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xeccb81b9 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xecd1875e inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xed044b39 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xed116c6a devl_region_create -EXPORT_SYMBOL_GPL vmlinux 0xed27c084 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xec7f5c04 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xec855be3 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xec8c2c09 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xeca85f7d i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xeca97f59 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xecae98a6 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xecea22f6 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xececba7f snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0xed09ebbb irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xed271095 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed30a5cc of_genpd_del_provider EXPORT_SYMBOL_GPL vmlinux 0xed344146 mcpm_is_available -EXPORT_SYMBOL_GPL vmlinux 0xed3804a4 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xed38f62b param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xed5017c5 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xed45260a xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0xed4d123d sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0xed5fe298 inet_pernet_hashinfo_alloc EXPORT_SYMBOL_GPL vmlinux 0xed62d25e pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xed6bc336 sdhci_start_tuning -EXPORT_SYMBOL_GPL vmlinux 0xed6ef8de vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xed805ece gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xed62d31a pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xed7065fb devm_regulator_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xed8444b1 mtk_clk_register_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0xed89afba sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xed891281 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed997b6b fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xeda44ed6 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xedac8c1b __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xedadcfaa ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0xedc7f49f devl_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xedcac7ca class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xedd258f6 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed9bf5b4 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0xeda44e64 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xeda53336 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xedb2b556 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xedb9e9d8 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xedbb37db max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xedc3e2b3 widget_in_list EXPORT_SYMBOL_GPL vmlinux 0xedd2e335 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0xedd6ee4b to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xeddcf26d ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xede1c36f ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xedeebfd1 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xedf625c7 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xee37b66d dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3f67f6 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xee508f19 fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0xee549df0 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xee5b0f97 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xee6741d9 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xee580f37 of_pci_get_slot_power_limit EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible -EXPORT_SYMBOL_GPL vmlinux 0xee76e2bf __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xee85dfec edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0xee9a54ed tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0xee9b1042 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xee798f01 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xee948089 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xee957b62 blkg_conf_init EXPORT_SYMBOL_GPL vmlinux 0xee9b876a devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xeea15275 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xeea52e21 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xeea76283 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xeeae68b8 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xeeb364c8 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xeed4a1b5 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xeeaa8f96 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xeeb4f5e0 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xeec380de icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xeec3beb4 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xeecba84a usb_set_wireless_status +EXPORT_SYMBOL_GPL vmlinux 0xeed5fb39 dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put EXPORT_SYMBOL_GPL vmlinux 0xeee5fe32 bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xeef8dc37 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xeeec2bd6 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xeef871e5 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xef02f78d mtd_ooblayout_free EXPORT_SYMBOL_GPL vmlinux 0xef0577a4 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0xef18371d sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xef2982b9 mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xef1ed7bc fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xef25cff2 dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef30bc21 arm_iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xef35a346 rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef47f626 ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0xef480d0d serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xef48e6fd devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0xef4c592a fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xef58e3ce device_add +EXPORT_SYMBOL_GPL vmlinux 0xef592053 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef641182 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xef67bc9d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef69b290 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef72c431 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xef7ba8fa mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xef7dc2e4 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xef7fd709 usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0xef7ea7ac device_set_node EXPORT_SYMBOL_GPL vmlinux 0xef83eed1 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xef93abff netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa7ee6a ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xefaa4343 rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0xefaace6e mv_mbus_dram_info -EXPORT_SYMBOL_GPL vmlinux 0xefadf9d8 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0xefaeeed3 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xefb0464c raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xefb59bb0 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefb681f0 ata_sff_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xefc3b1dd devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xefc801cf cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xefd4ef83 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xefc5cea9 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xefc74e75 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xefcd00d9 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xefdc81b0 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0xefdd5eca __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xefe480c8 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xefe30fef scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xefe992e0 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefeb64fd bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xefee10d8 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xeff2afbb rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xeffa0121 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xf01037a1 snd_soc_get_strobe -EXPORT_SYMBOL_GPL vmlinux 0xf01cc6ad snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xf02785bf snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xf02c344b sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xf0359581 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xf03a6945 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0xf049919e usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xeff64d9a to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xf00b0597 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xf0107621 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf026009c nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xf02e0e6f device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf04d63e8 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0xf054df82 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xf0503919 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf05af2ad cpts_misc_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xf05ea064 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf06ab114 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0xf07221bd snd_soc_component_get_jack_type -EXPORT_SYMBOL_GPL vmlinux 0xf074fc48 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xf07a9717 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xf080bea3 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xf0707c1c usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0xf081c4ab __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xf087cf26 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xf088a4a9 i2c_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0954e87 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0xf0a3d527 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xf0b23082 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xf0b30b0a mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0xf0b85533 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf0bd8628 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xf0ba3d29 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xf0c16df9 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xf0d2008a register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xf0d43187 ti_cm_get_macid EXPORT_SYMBOL_GPL vmlinux 0xf0f297c3 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xf0f37f26 xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xf0f85f75 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xf0f95e51 musb_readl EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted -EXPORT_SYMBOL_GPL vmlinux 0xf0fd0b2a netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0fe2b24 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xf0ffda12 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xf100010a debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xf1076161 crypto_sig_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xf1061177 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xf10a1e90 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate -EXPORT_SYMBOL_GPL vmlinux 0xf11e2c3e snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf11f3e40 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf134968f dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xf13a2400 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xf150d2c2 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xf151ad37 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0xf155a3e3 nop_posix_acl_default -EXPORT_SYMBOL_GPL vmlinux 0xf1592152 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xf1757ffa device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xf17af16c inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf17c1707 scsi_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0xf181335a rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xf12870da device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xf13d4191 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf14ec812 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xf15480fb adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf155585a __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf1563552 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf157ff68 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xf164bd1b device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xf1683e8b bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xf1840b0a sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18d585c thermal_zone_device_type EXPORT_SYMBOL_GPL vmlinux 0xf18e6865 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xf1b574d1 nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0xf1941454 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xf1b15806 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xf1b1976e __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf1c63b82 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0xf1df666c led_get +EXPORT_SYMBOL_GPL vmlinux 0xf1e5b8a4 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xf1f9f6f0 vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0xf1faa13d vcap_find_actionfield EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0xf20fd10d inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xf212169f crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf2056e3f usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xf21005e9 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xf215162a snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0xf2156a9d devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xf219b526 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22116c2 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xf22615da scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0xf23317a7 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xf23ce376 nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0xf244cc86 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0xf246c91f inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xf24744b0 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xf27cad57 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xf283e5e7 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xf261fc91 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0xf26849ff iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xf26e3661 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf2762320 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf27a7433 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0xf27ed266 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 EXPORT_SYMBOL_GPL vmlinux 0xf2884035 rockchip_register_restart_notifier EXPORT_SYMBOL_GPL vmlinux 0xf2884b7e mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0xf2895636 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xf2923f29 usb_add_gadget_udc EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2b6ef5e regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xf2ce0ea4 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xf29989fa tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf2bccedc nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0xf2d02b90 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xf2d94af8 iommu_device_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xf2e2fe0e mas_find EXPORT_SYMBOL_GPL vmlinux 0xf2eef6fe power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xf2f60b58 snd_soc_daifmt_parse_clock_provider_raw EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported -EXPORT_SYMBOL_GPL vmlinux 0xf307874e __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xf302576d crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xf30281a0 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xf30a4ae5 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0xf31264bc platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf31b0ebb fat_detach EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf322bc3e component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xf31c317d fat_detach EXPORT_SYMBOL_GPL vmlinux 0xf3256284 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xf32a9b6a __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xf32dcc6b usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33b3f32 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0xf3372a61 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xf342fd5d freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf3430114 md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0xf3481856 rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0xf34dff8f reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0xf350bb8d mas_erase -EXPORT_SYMBOL_GPL vmlinux 0xf351846b crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xf35d48bc ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf385656a vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0xf39430b1 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xf39ba477 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xf38c805d __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf3937782 noop_backing_dev_info EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3aef170 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xf3af3f70 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3abbe68 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3cd2bae pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0xf3d9ca81 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0xf3d9fdb5 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xf3dc7045 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xf3c0475a clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xf3cbd181 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0xf3dbc0b6 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0xf3e0dbbe devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xf3f21dae usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0xf40c4db9 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4108b45 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xf41a9fb0 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xf41fa90f ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xf4254cb9 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf434fe12 ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0xf439cf92 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf43f9a65 genphy_c45_pma_baset1_read_master_slave -EXPORT_SYMBOL_GPL vmlinux 0xf443b054 dw_pcie_ep_reset_bar -EXPORT_SYMBOL_GPL vmlinux 0xf451fe2e finish_rcuwait -EXPORT_SYMBOL_GPL vmlinux 0xf45b0022 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf4376101 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xf43fb467 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf4483b08 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xf467d152 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf4709f49 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL vmlinux 0xf475c585 rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47d62aa serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xf47d3e3c of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0xf47de486 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xf486af81 pci_msix_can_alloc_dyn EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf4937872 rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xf495d80f dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xf4966a87 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0xf49c680a fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0xf4a73d33 ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xf4ae61f0 widget_in_list EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4c5f713 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xf4bca4db pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d16a3a mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xf4d19a63 __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xf4dbc7bb devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xf4eaf5b4 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf4f0ec05 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0xf4f544aa dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf50b78d9 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xf5162671 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf51cd0d0 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xf5245de6 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xf50ec768 of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0xf5277127 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0xf52b4398 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0xf52e14e9 snmp_fold_field64 EXPORT_SYMBOL_GPL vmlinux 0xf52ec840 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0xf53a277a __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xf543753d tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xf54a4f68 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54f5949 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf55c7e7c raw_v6_match -EXPORT_SYMBOL_GPL vmlinux 0xf55fde03 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0xf5654869 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xf56cd5f1 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xf57964cb regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xf558fe1f evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xf55cdf19 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xf5651880 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xf57b6db5 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xf5834bb0 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf59b608b virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a3de4c md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a8d55c skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xf5afb2bd dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5a79e7a pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0xf5b07e0a __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xf5b262ca paste_selection EXPORT_SYMBOL_GPL vmlinux 0xf5b7e6e7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xf5b84a07 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xf5c66f97 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xf5d1fdef debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xf5b84c20 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xf5b96435 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0xf5c81d78 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xf5d10c99 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xf5d45f07 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf5da5095 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf6078026 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xf60a4e8f folio_test_hugetlb -EXPORT_SYMBOL_GPL vmlinux 0xf61af4a7 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf5fc550c platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xf5ff9c4f devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xf603a28a vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xf610e5c6 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf62df41d clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xf6323088 pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xf6384722 blk_crypto_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0xf63fb1f3 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf6249be4 tc3589x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xf6406e4e __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xf641c5f8 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xf65795f1 snd_soc_of_get_dlc -EXPORT_SYMBOL_GPL vmlinux 0xf65a2e36 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xf64e3860 __usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0xf65ac93c tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0xf65b243f device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf68d1b3f posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xf696b1c0 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf66986d2 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf66e246d snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0xf67cdfbe fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xf68ffcd7 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xf69761e8 dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xf6a6fb76 hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0xf6b070f9 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xf6b2cf6e of_pci_parse_bus_range EXPORT_SYMBOL_GPL vmlinux 0xf6b4c8a6 mtd_get_device_size EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6c8468a crypto_akcipher_sync_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf6c196c7 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable EXPORT_SYMBOL_GPL vmlinux 0xf6dade9f thermal_zone_get_num_trips -EXPORT_SYMBOL_GPL vmlinux 0xf6dc4148 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xf6dcb6a5 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0xf6df72ff ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xf6e499ad ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6fb772d ahci_save_initial_config -EXPORT_SYMBOL_GPL vmlinux 0xf6fec3e4 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xf7031c71 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0xf6f8f22e serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xf7007754 mmc_regulator_enable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xf7059261 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf70bb651 pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf716d3d8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf724b6c4 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72bb5f9 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xf72c01de ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7384d6f rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf73d5d7f nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0xf73daea5 led_put +EXPORT_SYMBOL_GPL vmlinux 0xf73ea44c regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf73ebaf9 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xf742ae6c of_clk_get_parent_name EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0xf75610d7 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xf763b8bc tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xf768ee9b gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0xf76adb38 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0xf74d0fce of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer -EXPORT_SYMBOL_GPL vmlinux 0xf775d9ca mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf7843b45 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0xf7a2bc3b debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf785de3e phy_put EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c6bed6 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xf7d2bef1 msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0xf7ed259d tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0xf7ef056e crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xf7fbc1d6 devl_linecard_create -EXPORT_SYMBOL_GPL vmlinux 0xf80c220a input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xf7bdb686 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xf7bfbd2c tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xf7cc82ff irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf7e2cfdd tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xf7f3d9d7 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf7fa117d genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xf8077225 sdhci_send_tuning EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf8120d13 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xf8197962 inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf821c754 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL vmlinux 0xf822aebb ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xf82c0c7e devres_open_group EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf8425963 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xf831ae41 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xf838c760 mmc_prepare_busy_cmd EXPORT_SYMBOL_GPL vmlinux 0xf846fa46 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xf862e3a7 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xf86d2b03 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xf8777c2c sdhci_request_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf84965f7 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xf85459f2 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf85872b6 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0xf867ca08 devm_regulator_get EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf89142eb da903x_write EXPORT_SYMBOL_GPL vmlinux 0xf898325c scmi_device_create EXPORT_SYMBOL_GPL vmlinux 0xf8a36a52 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xf8b241e4 ping_close EXPORT_SYMBOL_GPL vmlinux 0xf8b25bc2 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xf8c0dd3b vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf8bc3d8c fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0xf8ce085f pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xf8d18821 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0xf8d3fb2a __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xf8e35422 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xf8e91ea4 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xf8e44bf1 vcap_is_last_chain +EXPORT_SYMBOL_GPL vmlinux 0xf8f2339f wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xf8f2a4eb snd_kill_fasync -EXPORT_SYMBOL_GPL vmlinux 0xf8f2b70a da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xf8f35b85 mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f7bdc0 pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0xf8f876c4 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0xf9142235 nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0xf8fa6d40 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xf90c1af1 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0xf90d65ba sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0xf91d3ee3 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0xf91fabc5 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xf923c8c7 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xf9289616 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0xf93258a3 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xf947d9fa debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0xf948ef7e vcap_tc_flower_handler_cvlan_usage -EXPORT_SYMBOL_GPL vmlinux 0xf94af5fa ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xf950c3c6 snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0xf935f983 mdiobus_c45_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap EXPORT_SYMBOL_GPL vmlinux 0xf96da44f xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0xf9707529 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xf98a3a52 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xf977928a sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xf97b463f kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xf98907e2 scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0xf98e7bc3 percpu_is_read_locked -EXPORT_SYMBOL_GPL vmlinux 0xf9926a71 tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xf995112d led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xf99d0b3c snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0xf9965adb phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xf99e4ea8 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf99efbaf unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a09d77 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xf9b41bd5 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf9b28e30 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf9c85627 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xf9d129df klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xf9d3794c set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0xf9dc602d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xf9e03808 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9de5fa3 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0xf9e306bd mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xf9e6aa47 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL vmlinux 0xf9ef319f debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xf9f43344 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xf9fa8ae6 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xfa03858a sram_exec_copy -EXPORT_SYMBOL_GPL vmlinux 0xfa0459e5 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xfa06cce5 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0xfa11dc67 snd_soc_dapm_put_pin_switch EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option EXPORT_SYMBOL_GPL vmlinux 0xfa287deb pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0xfa2b6214 devl_trylock -EXPORT_SYMBOL_GPL vmlinux 0xfa3563c7 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xfa43709e snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL vmlinux 0xfa4e5359 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xfa4cd7fe inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xfa4f1f17 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0xfa53ab30 led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0xfa55728f input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfa60cdb5 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xfa55d8b8 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0xfa61d16f pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfa6c0507 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0xfa6c4b56 scmi_requested_devices_nh +EXPORT_SYMBOL_GPL vmlinux 0xfa710664 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0xfa74f2fe inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xfa765eb0 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xfa765266 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xfa79ea9c crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xfa79f81a mtk_pinconf_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0xfa7c2e49 mas_next EXPORT_SYMBOL_GPL vmlinux 0xfa82f473 klist_next EXPORT_SYMBOL_GPL vmlinux 0xfa831a61 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0xfa8441ce icc_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xfa97a85e device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xfaa9b30d inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfa9095b9 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab46d1c ata_ehi_clear_desc EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line EXPORT_SYMBOL_GPL vmlinux 0xfab91922 sbitmap_weight EXPORT_SYMBOL_GPL vmlinux 0xfaba248a usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xfacd715c blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfac925d4 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xfad57a69 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xfad7bc54 mtd_device_parse_register EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae56a7a exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0xfaf326a4 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xfaf3c1bb sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL vmlinux 0xfafacb49 of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xfb1c4a48 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xfb2234a7 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xfafb1de4 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfb024d37 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xfb094635 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL vmlinux 0xfb0e5255 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xfb19b3f1 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfb2154fc vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xfb216ed4 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0xfb24d4ab blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xfb2ad31d list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xfb2d3531 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xfb2e271d ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb42fe39 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xfb333d2b nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xfb38f1a8 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xfb3f2625 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0xfb48c768 extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0xfb51f520 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xfb52aed7 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xfb56bd64 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xfb5d6dfb pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xfb577710 dm_put EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone EXPORT_SYMBOL_GPL vmlinux 0xfb611a59 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xfb6a97da bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xfb6bb131 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb73451f alarm_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0xfb7a4a7f btree_last -EXPORT_SYMBOL_GPL vmlinux 0xfb829329 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb82614c iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0xfb82c16e mtk_mux_gate_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0xfb96f72b topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xfb9b896d fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xfb9f7119 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xfba6a098 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xfbac6cfd dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0xfbb29432 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL vmlinux 0xfbb5d58d __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xfb9d493d __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xfba08f9d fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0xfbb826f0 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbd8887 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xfbbe7543 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xfbd25094 register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0xfbe35d73 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xfbd6b726 snd_soc_put_enum_double EXPORT_SYMBOL_GPL vmlinux 0xfbe7e6ec power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0xfbee05ef bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0xfbf3c8a3 folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0xfbf6d6f0 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0xfc014cb6 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0a91fb vcap_lookup_rule_by_cookie EXPORT_SYMBOL_GPL vmlinux 0xfc0b405c syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0xfc13c295 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xfc14ddbf dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0xfc16d5c3 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xfc1b5e93 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xfc235817 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xfc37fc26 usb_set_wireless_status -EXPORT_SYMBOL_GPL vmlinux 0xfc54feb0 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xfc635920 fscrypt_limit_io_blocks -EXPORT_SYMBOL_GPL vmlinux 0xfc68df34 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xfc14249a phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xfc145586 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xfc1e9c41 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xfc24dd0c cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xfc3560b7 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xfc652458 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xfc73d3f6 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xfc76fb25 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xfc77f51a nl_table EXPORT_SYMBOL_GPL vmlinux 0xfc7e51ea snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL vmlinux 0xfc8841de of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xfc91e48a usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL vmlinux 0xfc921fab fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xfc92c0e0 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0xfc962496 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xfca32085 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfc82d182 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xfc9c6d2a tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc9d8477 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xfca8dd4c disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xfcac3c99 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xfcac5e6a xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xfcb26cc2 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xfcbe2ba2 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xfcc05515 of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xfcf372af i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xfcc7be6e pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xfcf49911 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xfcf4d300 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xfcf54d1d add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcfc5b65 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0xfcfc6d5e clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xfd0057ee relay_close EXPORT_SYMBOL_GPL vmlinux 0xfd02af03 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd1c7c9a ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xfd34a12e powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0xfd36b173 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xfd3965ba dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xfd3afdba regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfd3dc3e1 regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0xfd40ad83 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0xfd46d971 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0xfd4dba7d freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xfd544b19 badrange_init -EXPORT_SYMBOL_GPL vmlinux 0xfd560cd1 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xfd55e4d8 virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL vmlinux 0xfd58308a ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0xfd5c5715 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfd5d06d1 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0xfd5dec45 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xfd5e564e bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xfd64c408 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0xfd6f9a46 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0xfd5e43e1 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xfd620d6f dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd9465be nand_change_read_column_op -EXPORT_SYMBOL_GPL vmlinux 0xfd977efb snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL vmlinux 0xfda0c045 snd_soc_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xfda2b963 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xfd7898d7 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xfd807273 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfd80dfb4 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xfd9259eb wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xfda25a82 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0xfdac9a7a snd_soc_component_notify_control EXPORT_SYMBOL_GPL vmlinux 0xfdb03d00 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xfdb64373 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xfdb46f63 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xfdb80c02 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc8941d virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xfdd666d0 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xfdc318f3 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xfdc7994f usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xfdc885f2 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xfddfd3da mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0xfdf3978d skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xfdea6386 cpts_misc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xfdf13f7a skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xfdf354ac net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0xfdf5f692 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xfdfb473e __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0xfe0bbbd2 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xfe150989 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xfe146b78 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xfe1de2f9 mtd_block_markbad EXPORT_SYMBOL_GPL vmlinux 0xfe29d810 trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xfe3ec1fe dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xfe4008be pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0xfe466fdd dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xfe39cb01 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xfe40804c file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xfe42fdb6 nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0xfe43a384 uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4e9f2b bdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xfe71c7c2 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xfe755b5d pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xfe7fc8ab irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0xfe8aa26a devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5fcaf5 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xfe63687d _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xfe644e6b sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xfe64f5ab ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0xfe682387 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xfe6a7742 usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfe9ff8c6 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xfe99f740 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xfea1b3f1 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xfeb5805a virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xfebaee1d skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0xfebfe8d2 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xfea8c9d0 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0xfeaabf88 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xfeb695c0 devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec793ef phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xfed033e7 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed3d1d8 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfefb059a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xfed51bf0 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfeead640 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xfef4be71 snd_soc_dai_set_bclk_ratio EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff15f853 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff2c41aa snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xff39fdf4 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff5381de arm_iommu_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0xff65b003 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xff6926f1 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xff495e29 mtd_read +EXPORT_SYMBOL_GPL vmlinux 0xff732ee2 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff995d0e regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0xffa84a15 regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xff87a324 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xff8b5bc2 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xff979016 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xff99f237 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xffa3c56e phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xffa6e37b watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xffade2cf devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffaf8905 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xffd143aa mtd_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xffdbb195 ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xffe51b72 devl_register -EXPORT_SYMBOL_GPL vmlinux 0xfff2dc36 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xfffc8259 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xffb3333e watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xffc84041 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xffd0f959 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xffe6ff79 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xffe98c36 simple_rename_exchange FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0d4db824 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0dd7d23a cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x045f5819 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x10031c38 cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1059fa1f cs_dsp_stop drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x21d57adf cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x2985a871 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4711e8d2 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4a5c70c8 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4af4245c cs_dsp_power_down drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x55b8ed7c cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x57964a4f cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5be08180 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x65ef6a6a cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x66dbfc8a cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6b68ff7e cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x729e5732 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x75184218 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x85e75945 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x86939109 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x90b62448 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x9aba19a7 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7595a6a7 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x763d2a08 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x78e09522 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9535c760 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x970ecfb1 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x98da71f5 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9d2ed077 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9ddeb348 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xa254f283 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xa90e83e3 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb948efc2 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xc8e97fe5 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xdf6646c5 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xe47eb844 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xedd94104 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xee4b2d2a cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf2f35f1b cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf6c00f57 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfb2a05ed cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfc971bdc cs_dsp_run drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0x6b8c5952 hwmon_device_register_for_thermal vmlinux +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb73a90ff cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xbdde25c2 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xddc37892 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xe5200c48 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xfbed9072 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xfef7e00c cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x1d194814 hwmon_device_register_for_thermal vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x0fc850a1 idle_inject_register vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x85c2b7eb idle_inject_stop vmlinux @@ -26673,27 +26697,27 @@ IDLE_INJECT EXPORT_SYMBOL_GPL 0xc18575af idle_inject_set_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux -IIO_AD5592R EXPORT_SYMBOL_GPL 0x010c067b ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0x7b4b3d0f ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x2fecc883 ad5686_remove drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0x85655987 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x3d37dbc5 ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0x6e7169ee ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x4b975d1b ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0x9e8eb3bc ad7606_probe drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x121a36e1 __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0x6f0cbcbb adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x05452411 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0698c131 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x241a270a devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x508a63b6 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6297c9c0 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6bfc8506 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xcfbc699e __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe1dc7fac __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe292148c devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xef1ac4f6 adis_init drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xf0a8fc2f __adis_reset drivers/iio/imu/adis_lib +IIO_AD5592R EXPORT_SYMBOL_GPL 0xd275d759 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xe18e9ef5 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x33081569 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x7e54984f ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0xbb933deb ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xcfb21b02 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x153e4e07 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xdc2b4fff ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x267f4ab3 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xc2e20625 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1e5e8425 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x50e83fb6 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x50f85f60 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x63e3dd90 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x68dfd36e adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9ae85f46 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xabbaab00 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xef23a1ab __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf5236f0c adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfe3e75ee __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x5734c383 __adis_reset drivers/iio/imu/adis_lib IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x6b0508dd devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xef659882 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc IIO_ADXL313 EXPORT_SYMBOL_GPL 0x81402d16 adxl31x_chip_info drivers/iio/accel/adxl313_core @@ -26708,57 +26732,57 @@ IIO_ADXL355 EXPORT_SYMBOL_GPL 0x597104a8 adxl355_core_probe drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL367 EXPORT_SYMBOL_GPL 0xc1e11976 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x0af7b173 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x51b912d0 adxl372_probe drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x164cc2c4 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x167efc3e ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2b9767f0 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x46d7a4f8 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4f8042d0 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5a14c182 ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x82741f1d ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa51c8475 ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb901a9ee ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc4fbae8b ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0xb1b04743 bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0xfdcbe8bd bma400_probe drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x9906636c bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xae54ce1d bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xb615d65b bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xc6f432a4 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x495904f2 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x4cdf68c2 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xb29f2152 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xc48c9524 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xe41d34fe adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x064cea8b adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x66a764d1 adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x36fcc682 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5622dfec ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x69d04667 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x878573b0 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8d97109f ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9ccbb79b ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xcfdf4f50 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xdca20c22 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe6417070 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xf50805f4 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0xc684bd93 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xfefa11a0 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x21bc6bbf bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x4db4454d bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x934f718f bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x97017475 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x621fefc3 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xc5458c53 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xe5f3b5e1 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xf497e414 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn IIO_BME680 EXPORT_SYMBOL 0x7d6ce390 bme680_regmap_config drivers/iio/chemical/bme680_core IIO_BME680 EXPORT_SYMBOL_GPL 0x27ef1866 bme680_core_probe drivers/iio/chemical/bme680_core IIO_BMI088 EXPORT_SYMBOL_GPL 0x36c1a7c4 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core IIO_BMI088 EXPORT_SYMBOL_GPL 0x6a6c1a42 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core IIO_BMI088 EXPORT_SYMBOL_GPL 0x6ff89eee bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core IIO_BMI088 EXPORT_SYMBOL_GPL 0x99152603 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x539742c8 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL_GPL 0x7d08301d bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x0456ef2c bmp380_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x56baf9c4 bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x722eb9eb bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x77fad268 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x7c52056e bmp580_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x99590e5a bmp280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x9d7c0f0a bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xe5382b81 bmp180_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xeebc2f9e bme280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xfc94a49a bmp580_chip_info drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0xa6389cfc bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0xaaa9cf0a bno055_probe drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x3d3e4220 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x4337ad8a fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xc3f2a7f3 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x5fdec549 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x68657e1e fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc9ee4311 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xfd00518c fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_BMI160 EXPORT_SYMBOL 0xf2bd16c7 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x93ad8849 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x00ce28b8 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x051a433b bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x0b66ffbe bmp580_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x355358e2 bmp380_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x66286f89 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xa85cb994 bmp280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xcd911354 bmp580_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xd43d9c4f bmp180_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xdfb99850 bme280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xea48f5da bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x2c3387f0 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xd3f77970 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x2393eba8 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x43745786 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x70176f4b fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x62f9bdec fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x9ad4dda4 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xbc94bd45 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc0272929 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x094bee02 iio_gts_avail_scales_for_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x296bb0cd iio_gts_all_avail_scales drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x4ed89402 iio_gts_find_sel_by_gain drivers/iio/industrialio-gts-helper @@ -26772,357 +26796,357 @@ IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc25ccf30 iio_gts_find_new_gain_by_old_gain_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd7e29768 iio_gts_find_gain_sel_for_scale_using_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf42af90f iio_gts_total_gain_to_scale drivers/iio/industrialio-gts-helper -IIO_HID EXPORT_SYMBOL 0x0a7d0d82 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x0b4f9679 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x2ff47173 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x6303b4ed hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x63307b59 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x0584bea0 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x1bc1b751 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2718b9f8 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3d97f06b hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x4a898efc hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5068903d hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x70b3a4ef hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9328830b hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xc49d58b6 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd3b41ff9 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xe3ecf30b hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xe66f7fb8 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xf1ccfa08 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xfd33671a hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7bfec76a hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x98fd4f79 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xc1cb3dd2 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdfa3a809 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x8e04501c hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbd620464 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe0f2a7cb hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xe82d352c hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xf0c8e8f3 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x57cf6c21 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x8ad04e9d hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x9ca96c1a hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x9f6aea7d hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HMC5843 EXPORT_SYMBOL 0x4c103e7c hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core IIO_HMC5843 EXPORT_SYMBOL 0x4ee706cb hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core IIO_HMC5843 EXPORT_SYMBOL 0xff9815d4 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x54e6215c hts221_probe drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0xe289e25e hts221_pm_ops drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x04ec30c4 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x4ea24e87 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x9c5f03c6 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x607b1b40 kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0xcf5d186a kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x0ad8378b kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x822ae235 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x8674710a kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x8af5e9c3 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0xec9f57ff st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_HTS221 EXPORT_SYMBOL 0x4438e338 hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0x9efcc3cf hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x3ce1f2e5 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x4efe6cae inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xb7afa015 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x8c4164ca kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0xcab78cf6 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x5af97560 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xa46df913 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xdf255932 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x5ae8d168 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xb7c1d8a0 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x287ac77b ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x33b934e5 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8ca88853 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x91ae6b1c ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbfae4e9f ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd42be408 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe1d45139 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe4f98676 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xf6ae6ab0 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfb1758b6 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4537ec7d ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x6ad08332 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x740f5c89 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x79a1ff9d ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x873b1740 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd797ad63 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xde27db1c ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xf6c7cfb8 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MMA7455 EXPORT_SYMBOL_GPL 0x7b602311 mma7455_core_remove drivers/iio/accel/mma7455_core IIO_MMA7455 EXPORT_SYMBOL_GPL 0xd478de59 mma7455_core_regmap drivers/iio/accel/mma7455_core IIO_MMA7455 EXPORT_SYMBOL_GPL 0xdad41451 mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x0d90c055 mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x1744fd50 mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x1eae4e01 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x23432101 mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x2556f0de mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x3942974a mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x020efb98 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0470fddb mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1e6ca134 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x260e4c2e mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x27820ebe mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x355f8e31 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x401db8ef mma9551_read_config_words drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x518c3ee3 mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x58ac51d7 mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x6a16724c mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x6dce6d28 mma9551_read_status_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x91031079 mma9551_update_config_bits drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x9ef882ae mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x43495ddd mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x50bbcc22 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x671e32f8 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x89ea69c3 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x93b77533 mma9551_read_status_byte drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xd469da0d mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xe7d2aaa1 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xe98cda73 mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xf7fd2fc7 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbd6952a3 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd6bd1894 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xfa76e973 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xfce9624c mma9551_read_status_words drivers/iio/accel/mma9551_core IIO_MPL115 EXPORT_SYMBOL 0xa167b898 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 IIO_MPL115 EXPORT_SYMBOL_GPL 0x064dd951 mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x7d123a41 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0xaef16970 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x66d5a679 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x152a5961 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x705a6a52 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0xdb82639a ms5611_probe drivers/iio/pressure/ms5611_core IIO_RESCALE EXPORT_SYMBOL_GPL 0x375a393e rescale_process_offset drivers/iio/afe/iio-rescale IIO_RESCALE EXPORT_SYMBOL_GPL 0xb40943cd rescale_process_scale drivers/iio/afe/iio-rescale IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0x50257b71 rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x5777fe0f scd30_probe drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0xf566fb0b scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0x210fadd0 sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x2d7f430e ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x3bf55699 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x52845957 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SCD30 EXPORT_SYMBOL 0x5ca8ddc5 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xd4997de6 scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xc686b16c sps30_probe drivers/iio/chemical/sps30 IIO_SSP_SENSORS EXPORT_SYMBOL 0x5eccf17e ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x78ef6908 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub IIO_SSP_SENSORS EXPORT_SYMBOL 0x839f9c4a ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x8af58e74 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x843a0cc8 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x97b1c47f ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xb038825a ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xbe7f394c ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xbf683666 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub IIO_SSP_SENSORS EXPORT_SYMBOL 0xfe2a0629 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x078d90d7 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x1bb74a87 st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x26a91ef1 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x274ab963 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x2920b5bb st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x321ab76f st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x3692ce8f st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x479074c9 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x5578a243 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x5b2a7807 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x72cb2996 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x784a6c04 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x7ff74a46 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x94724820 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x98fd8f75 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x9e1bccf1 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x9fcb152a st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0xa1a8a145 st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xb75dd550 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xc340a4a8 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xccbd5b4b st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0xcdec1770 st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xe03d42f2 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xfb3730f9 st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xfc1343dc st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xfd531ab7 st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x87798d50 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_ST_SENSORS EXPORT_SYMBOL 0x12692298 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x140d08d6 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x1b1e4af7 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x247a14b7 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x27ed5680 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2dde75be st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x463d9720 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4f39b4f3 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x50232526 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x558a9312 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x602cafcb st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6b675218 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x6bc484f9 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x8aea8156 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x9293db71 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9385ff70 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9578c943 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9ffc70eb st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa2c54960 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xbf18205a st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xd3ade87e st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd6762c4e st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xde41ea62 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xe3766a0e st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfb4b7a94 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfd634d0b st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x8e9a8dcf st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 IIO_UVIS25 EXPORT_SYMBOL 0x1ebbec68 st_uvis25_probe drivers/iio/light/st_uvis25_core IIO_UVIS25 EXPORT_SYMBOL 0xeb786b14 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x811069d0 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8b9f9521 zpa2326_remove drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8fafe67a zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xcb51bfef zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xcc8540cf zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xfea5b674 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x4c25691c zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6b4daec8 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x754fc1da zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x797f07e0 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xeda79635 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf442d1bc zpa2326_remove drivers/iio/pressure/zpa2326 INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x91da9d2d m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x9335430f m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xa690634f m10bmc_sys_read drivers/mfd/intel-m10-bmc-core INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xae3a6328 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xd49e08fe m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core -IOMMUFD EXPORT_SYMBOL_GPL 0x04c75734 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x0e3285c9 iommufd_device_unbind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x19fb024d iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x1ce0b0bb iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x39313a02 iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x407978b8 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x4d816cfd iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x7145dac8 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x7500ebeb iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x822a15bc iommufd_access_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x9013c4a2 iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xc4b382af iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xd160d7b5 iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x01720f0f iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x2b8a5f46 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x35b1378e iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x01e18553 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0458c35e iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x06229b54 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0ab94c59 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0f64d0d2 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x11c2da49 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x13a8e52d iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x16a91854 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IOMMUFD EXPORT_SYMBOL_GPL 0x2979ce72 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x29c8f0d3 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x58a4ac7b iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x5dc5f2ee iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6243d88c iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7a2ee0cb iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7c556b4f iommufd_access_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7f72c7c0 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x9f087d7d iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xb9436316 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xea6a51e4 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xeba9450a iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfec8ad90 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x4d47465d iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xa6954c57 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xc846fe05 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x0393b23e iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x04e54144 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0bd02ff7 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ac00222 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1c48129a iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2469a633 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x25c80981 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2ab674ff iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1e2f7e64 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x267c3610 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x282f634e iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x2c0f571f iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2c2ca070 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x32192410 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x31397034 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3163587d iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x32621f66 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x417bea57 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x47a05b31 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x48eede84 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x48f811ff __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3c6421c3 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f05af75 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x436ff9e0 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4ff691fa iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5266e1e1 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x55d79076 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x55f609e0 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4d4b3e36 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5c56a90f iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5da511bb iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5ef4a44d iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x62674b1c iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6b8380bc iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6c78a98c iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7209ab3e __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6364e740 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x66bd2641 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6b2cccdd iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6bf7fc0a __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7270aeb9 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x767aa4b7 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7697ed3c iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x77b05e48 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x80b8eb70 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x81320103 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7f16ed63 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x861c147a iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874469d6 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x88a373db iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8b9016d3 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8d42645b iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8e649209 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8799182c iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x87e021c6 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x899b3b5a iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8a892476 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x93160e9e iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9595e0b7 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x98b26225 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa045c75a iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa1d659c1 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa2cb3471 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa3c00993 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa4cd9a2a iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xab7d7917 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xac976f10 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xade937bf iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaeece17f iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9b7644df iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa0698630 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa28d081c iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaad7b199 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xabe141c8 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xacbc16b7 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xacec6341 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xae7af749 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb0345e7a iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb15634cc iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb1685787 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb1e39cb3 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb704e37b iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb5eadcb1 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb71f0eb7 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc442d04c iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc7e794b4 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcaab0176 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcd944153 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb826988b iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc141c5d5 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc56db7f4 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc679777b iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcc41d64c iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xd2de3cc1 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd9633bf5 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd7d5fa92 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xde54b679 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xdec9e66d iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe6132c17 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe86d0e54 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe87ac048 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe1695c2e iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf5e1d532 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf62a82c1 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf81e71da iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf84fb314 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf8b630be iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfa6131d2 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x2bc5f9ac ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xafd8b70a ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x00ce4857 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x1e0320e2 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4d9b2122 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x525b94ac mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x56fd09fc mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x68cd0aa2 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x846eeaff mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x87ae6709 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9868713f mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xac34a0e2 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb6e4d453 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc373ee4d __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xcb465db0 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdc6c27da mcb_alloc_dev drivers/mcb/mcb +IWLWIFI EXPORT_SYMBOL_GPL 0xec02e2c7 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xefa6b0e9 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf19007d4 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf5151ff9 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf758233a iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf903dd48 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfb401703 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x1c7a9245 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xade252c8 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x030df051 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1d571c45 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x21072748 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x215dc3ea mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x225b5955 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x22f7af3b mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x40376768 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x47402b56 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x576b7fc5 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7bbb55b6 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7efbb6fd mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8efb6cc9 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xad8f1bb6 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe30ba98d __mcb_register_driver drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x468ab873 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0xfaaec518 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0x85051a33 ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x24297c4b nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x31687252 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x49f7fa71 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x648d5bbf nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa24a4809 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa83b3f69 nvme_passthru_start drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe5cc1ff0 nvme_execute_rq drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x08d1144a peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x0d11f2b0 peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x10c16637 peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x1271bfdb peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x136cfc4a peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x1d149b08 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2041f410 peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x35558822 peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x359b6e37 peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x3ec04583 peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4ceb0884 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x528e1721 peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5d4ab647 peci_xfer_pkg_cfg_readw drivers/peci/peci +MFD_OCELOT EXPORT_SYMBOL 0x28039afa ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xbc426bc6 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x48b598e1 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x02d24dc2 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x166aae29 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x26b3aff2 nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2dbe2ab1 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x58d85a4c nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x973dadb9 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xdab504e1 nvme_execute_rq drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x09b24adc peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0c328cd6 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0f1c5c53 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x13fb8dc1 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x16775e29 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1ce2b7db peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2503b084 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2e70b4f4 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x329789b8 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x481b7bf9 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x55761d74 peci_xfer_ep_pci_cfg_readw drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0x68d4996d devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x75b56a11 peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8b401134 peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x926f6294 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9ee3ca2f peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa31da812 peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa768be63 peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb64bf8d9 peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xbb559cb1 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xbdc4dd5d peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6a38b918 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6d71f7a9 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6e2102ec peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x73f1966b peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x84012ac9 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8bf27764 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8e84f3a3 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x93aefeed peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x93b15a35 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x97593ffe peci_request_data_readb drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0xc086b0e2 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc1d96ef0 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc69ab689 peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd16e21c9 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd57b0885 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe92aa6c6 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf0f4dee4 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf1e8b9d6 peci_xfer_pkg_cfg_readq drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0xf3d5a6b2 peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xfec59e00 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf5b1d152 peci_request_data_readq drivers/peci/peci PECI_CPU EXPORT_SYMBOL_GPL 0x3084c5a5 peci_ep_pci_local_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0x4624d8f3 peci_mmio_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0x851e2f03 peci_pcs_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0x9490ff8a peci_temp_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0xadac5d3b peci_pci_local_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x042312f9 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1306e12c pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2acb1319 pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3b435cfe pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x454c011e pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4eb94755 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5ea11e91 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x74a27ee3 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7c858a4a pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x818468bc pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8bcd85ae pmbus_unlock drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x902f7f2d pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xac219718 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xad9e70e3 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc2799a41 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd2456b97 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe1c78f95 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe21596c7 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf08db440 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf64366e5 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfd2d0318 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x4aae5db0 sx_common_write_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x8348ebfe sx_common_read_proximity drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x91813a3d sx_common_probe drivers/iio/proximity/sx_common +PMBUS EXPORT_SYMBOL_GPL 0x030fa846 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x16b201dd pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x282fe459 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x29e6003b pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x434f5ff6 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x44531aa7 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x44a9162d pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x651c3e86 pmbus_unlock drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x80ed3097 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb664d35d pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc97279e0 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xca46b3a9 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xccc7c382 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd0cef849 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd2111bc7 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd95018fe pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xda7deb64 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdca3ffaa pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe2723528 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe8be46d7 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xeba8445a pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x2eeb2b18 sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x561794fb sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x6266fb61 sx_common_get_raw_register_config drivers/iio/proximity/sx_common SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xc5c9b7fe sx_common_read_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xc6d37b30 sx_common_get_raw_register_config drivers/iio/proximity/sx_common -SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0xe2a021db serial8250_pci_setup_port vmlinux -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x32ba1aad cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa224cf1a sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xe4b573ec sx_common_probe drivers/iio/proximity/sx_common +SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x0bfe7f8a serial8250_pci_setup_port vmlinux SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3738a383 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x672b9ed1 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x740062cf cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xd8fd78e7 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xf2960686 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x374da3e6 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x66e839f5 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x747562aa cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xda703896 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xde61de1f cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xf01bf027 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x05482545 cs35l56_irq sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x09a21e5c cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x26d2ab5d cs35l56_init sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x32d21c37 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x45d5ea39 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x62563866 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x9feecc0d cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xf565c074 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x0cf856a3 cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x3babc551 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x3beb9beb cs35l56_init sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x6747eb63 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xaf32f978 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xb00e3b68 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xb77b9e29 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x01ada49e cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x05c2529e cs35l56_tx_input_values sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x312c0e0f cs35l56_dsp1_regions sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x33717141 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x64e759e4 cs35l56_tx_input_texts sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x6a6abb6f cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x8524779e cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x650f6b3b cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x88762c92 cs35l56_get_bclk_freq_id sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xb7f8a241 cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcd5438ad cs35l56_fill_supply_names sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xfc1f4532 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x01a231fb cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x17faed75 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3c1d44f3 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4cd1acce cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4ce33145 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6f66833e cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7e15a1f1 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xaa2b3d1d cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xac545e49 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcec390ed cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x038dbece cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x07abaf4f cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x263c7dec cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x41683f7b cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x46c02ffb cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4cc75dc5 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x516e6f44 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x689004bb cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6b016841 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x6e23b778 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae4be5c4 cs42l42_irq_thread sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb642c708 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xafef3df3 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb0508770 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc5d771b8 cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe5df917b cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xee1560b7 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf05d01df cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd056eeb7 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xdb62c977 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x09351149 tasdevice_prmg_calibdata_load sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1a949c7c tasdevice_select_cfg_blk sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1ab9b7d9 tasdevice_select_tuningprm_cfg sound/soc/codecs/snd-soc-tas2781-fmwlib @@ -27136,35 +27160,35 @@ -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x177c0d23 dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1c92e15d dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1f2a1c11 dw_spi_dma_setup_generic drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x28b1cb76 dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x576d6ad0 dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6ca36dd3 dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x866ff813 dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xaa57dcad dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc1d02dab dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0c53ecec dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4f7a9133 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7f27bbc6 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa49bb56d dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xbadbec4a dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc4269fbc dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xcb15b38d dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd314ff61 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf2c19d13 dw_spi_check_status drivers/spi/spi-dw TEST_FIRMWARE EXPORT_SYMBOL_GPL 0xf02aeff0 firmware_request_builtin vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x0382d615 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x04ddf861 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x169067f5 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x07696b0c usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0c6e45d4 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0e603c8d usb_stor_disconnect drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x223cedc3 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2609fe69 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x60c12f25 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x635195fc usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6ee8e929 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7fe9c62e fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8590959c usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x864189dd usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x880356b9 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x94285eca usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xaa3ceb67 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc5eb38ca usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcb15c340 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcb99a139 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcc6c6183 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd0d53439 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd73c86eb usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb5e32f9 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xea02293a usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xead7bdbe usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfcaeb66d usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2fce0178 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x46ed8ba8 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4ac9a3cd usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x590f3676 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5e75a67f usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6d1e74cc usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6de78ab3 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6ea1bb68 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7081cd33 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7714a569 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x80660fdf usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x868ec7ee usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8b208d82 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9cd9d054 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa6cc07eb usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xabde213f usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc3270a92 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xddfc0444 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeff7772c usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf9f65169 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfab4faf7 usb_stor_Bulk_transport drivers/usb/storage/usb-storage diff -u linux-oracle-6.5-6.5.0/debian.master/abi/armhf/generic.modules linux-oracle-6.5-6.5.0/debian.master/abi/armhf/generic.modules --- linux-oracle-6.5-6.5.0/debian.master/abi/armhf/generic.modules +++ linux-oracle-6.5-6.5.0/debian.master/abi/armhf/generic.modules @@ -200,6 +200,8 @@ adl_pci6208 adl_pci7x3x adl_pci8164 +adl_pci9111 +adl_pci9118 adm1025 adm1026 adm1029 @@ -219,6 +221,7 @@ adp5589-keys adp8860_bl adp8870_bl +adq12b adrf6780 ads7828 ads7846 @@ -246,10 +249,12 @@ adv7511 adv7604 adv7842 +adv_pci1710 adv_pci1720 adv_pci1723 adv_pci1724 adv_pci1760 +adv_pci_dio advansys adxl313_core adxl313_i2c @@ -295,6 +300,8 @@ aic79xx aic7xxx aic94xx +aio_aio12_8 +aio_iiro_16 aiptek aircable airo @@ -341,7 +348,14 @@ amlogic-gxl-crypto amlogic_thermal amphion-vpu +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 amplc_pci236 amplc_pci263 ams-iaq-core @@ -709,6 +723,7 @@ budget-core budget-patch c67x00 +c6xdigio c_can c_can_pci c_can_platform @@ -748,8 +763,10 @@ catc cb710 cb710-mmc +cb_pcidas cb_pcidas64 cb_pcidda +cb_pcimdas cb_pcimdda cc10001_adc cc2520 @@ -903,6 +920,7 @@ com90io com90xx comedi +comedi_8254 comedi_8255 comedi_bond comedi_example_test @@ -1080,7 +1098,16 @@ da9150-gpadc da9210-regulator da9211-regulator +dac02 daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 davicom dax_cxl db9 @@ -1173,6 +1200,7 @@ dme1737 dmfe dmi-sysfs +dmm32at dmx3191d dnet dove_thermal @@ -1222,6 +1250,12 @@ dst dst_ca dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x dt3000 dt3155 dt9812 @@ -1526,6 +1560,7 @@ firewire-sbp2 fit2 fit3 +fl512 flexcan fm10k fm801-gp @@ -2244,6 +2279,7 @@ igc igorplugusb iguanair +ii_pci20kc iio-mux iio-rescale iio-trig-hrtimer @@ -3165,6 +3201,7 @@ mdio-mvusb mdio-regmap mdt_loader +me4000 me_daq mediatek mediatek-cpufreq @@ -3297,6 +3334,7 @@ mp5416 mp8859 mp886x +mpc624 mpi3mr mpl115 mpl115_i2c @@ -3455,6 +3493,7 @@ mtouch mtu3 multipath +multiq3 musb_dsps mux-adg792a mux-adgs1408 @@ -3652,6 +3691,13 @@ 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_routes_test @@ -3766,7 +3812,6 @@ nvmet-fc nvmet-rdma nvmet-tcp -nvsw-sn2201 nwl-dsi nxp-bbnsm-pwrkey nxp-c45-tja11xx @@ -4059,8 +4104,20 @@ pcie-qcom-ep pcie-rockchip-host pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad pcmcia_core pcmcia_rsrc +pcmda12 +pcmmio +pcmuio pcnet32 pcrypt pcs-lynx @@ -4977,6 +5034,9 @@ rtc-wm8350 rtc-x1205 rtc-zynqmp +rtd520 +rti800 +rti802 rtl2830 rtl2832 rtl2832_sdr @@ -5069,6 +5129,7 @@ s3fwrn5 s3fwrn5_i2c s3fwrn82_uart +s526 s5c73m3 s5h1409 s5h1411 diff -u linux-oracle-6.5-6.5.0/debian.master/abi/fwinfo linux-oracle-6.5-6.5.0/debian.master/abi/fwinfo --- linux-oracle-6.5-6.5.0/debian.master/abi/fwinfo +++ linux-oracle-6.5-6.5.0/debian.master/abi/fwinfo @@ -1161,6 +1161,7 @@ firmware: liquidio/lio_23xx_nic.bin firmware: liquidio/lio_410nv_nic.bin firmware: me2600_firmware.bin +firmware: me4000_firmware.bin firmware: mediatek/BT_RAM_CODE_MT7961_1_2_hdr.bin firmware: mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin firmware: mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin diff -u linux-oracle-6.5-6.5.0/debian.master/abi/ppc64el/generic linux-oracle-6.5-6.5.0/debian.master/abi/ppc64el/generic --- linux-oracle-6.5-6.5.0/debian.master/abi/ppc64el/generic +++ linux-oracle-6.5-6.5.0/debian.master/abi/ppc64el/generic @@ -1,129 +1,129 @@ -BRCMFMAC EXPORT_SYMBOL_GPL 0x28c9774d brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0xee61a572 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x1c6bcda5 counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x2081a4d0 counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x3b7db722 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x637bf3e2 counter_put drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xbaa25e47 counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xbc4850b5 counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xc557f14b devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xc988fb36 counter_add drivers/counter/counter -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1470815c crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x8ca93ce5 crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xc91443c1 crypto_cipher_decrypt_one vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x89012cd9 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xe33287e7 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x3088983e counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x47c19764 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x6286a3eb devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x77f69466 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x8874457c counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xbf43b138 counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf5a3733d devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xfbd90153 counter_alloc drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x0711e829 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x0a28bff9 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9c79f02b crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x01d5d6d2 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x033f1d01 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0530802a cxl_dev_state_identify drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x0747b6b5 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0d1811f7 cxl_setup_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x102c4c46 to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1038aef5 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x108ca726 cxl_mem_get_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1a15e84f to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1ab7c2c0 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1be2b368 cxl_find_regblock_instance drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1fad31d1 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2065f31d to_cxl_dax_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x20a35ccc clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x25773e64 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x26e2a1d0 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2748967c devm_cxl_pmu_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x27553050 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x318aa3a2 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x334dc4d7 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x33aba7e1 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x079a1540 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0ac4cf2e cxl_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x13d2acd0 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x18338f9b devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x190873d8 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x19665a34 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1b380a45 cxl_mem_get_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1c8d4ebb devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1ca3301d cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1d59ae40 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2660cce7 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x27cb7afe is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2bd50a9f clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33673218 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x341c0019 cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x41e67b86 read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x44fb0966 to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4506218b cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4549532e cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x45fb2e4b cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x47de0642 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4d632f43 cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x501e6ca3 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x502c00d0 cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x51b9f623 cxl_set_timestamp drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5389fe6c devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5b31456c is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5bca9d34 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5eafe9c9 is_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x60712055 cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x60bdeb7c devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6110fa5b is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x655bb496 cxl_cor_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6a201be0 cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6d6cbce7 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x357046fc to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3877f86c cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3957c54a devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x39d59298 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3a6de2da to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3c88d6a2 cxl_memdev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4120ba57 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47d2d9d9 devm_cxl_pmu_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x49a75d42 to_cxl_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4a1d6c14 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4b30bfa6 to_cxl_dax_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x535cdfe6 cxl_add_to_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5c09e8a2 cxl_map_pmu_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5d1eab03 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x62124c74 cxl_setup_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6217d82c devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6600bca4 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x672d4391 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6aa531a0 cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6d2f3d14 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ecda89a cxl_mem_get_event_records drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6f8269de cxl_find_regblock_instance drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x702dcbd2 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x731acbfe cxl_memdev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7335c0ce cxl_dvsec_rr_decode drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x76922c5c cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x77b62261 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x77c36bf2 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7f08cc4e cxl_port_to_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7f7fbb9e cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x724d4fe7 to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7302582a schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7e26df15 cxl_poison_state_init drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux +CXL EXPORT_SYMBOL_GPL 0x80887594 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x811e87bb cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x82bf3089 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x83065cb4 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x8639bb86 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x89f4bc5b to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8b6c4f64 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x95dabdcc cxl_mem_sanitize drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x982a2c31 cxl_inject_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x875e09e2 cxl_inject_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x91120a22 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x93031d35 cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x991c8a8b cxl_mem_get_event_records drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9c208120 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9fc30ae5 cxl_count_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa2e3b507 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa3fd661a is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa7e33226 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa7e9963d devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xaa1b7869 is_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb132d724 cxl_add_to_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb267c6a3 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb31c1f57 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb346c4aa to_cxl_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb56ca470 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc0b0e545 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc24d2d78 cxl_poison_state_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc6581099 cxl_trigger_poison_list drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc774e66e cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc8a8f5f8 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcb46cf24 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd37122d6 cxl_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd896d64b is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe27713b3 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe5386cde devm_cxl_dpa_reserve drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xece18a08 cxl_pci_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xed64aba9 find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf4998688 is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf5c2a1c1 is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfb1e7bcd cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfbeecd64 cxl_clear_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfdd90c98 cxl_map_pmu_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfe54ba75 set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfe58a3c1 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -DMA_BUF EXPORT_SYMBOL_GPL 0x0d3a3afc dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0f1d9b35 dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x384f943b dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x38b33a11 dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x40ada0ad dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x4cf13f59 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x5e33da1a dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x5f7cc6f8 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xa98614a1 dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xb2926faa dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xb3792c04 dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xb85bb675 dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbc7048ae dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbdf868b2 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbfe5890b dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xcc7c4dd2 dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xcff4766f dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xddb86c37 dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xe3cedf17 dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf7a1a2a1 dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xfd579887 dma_buf_map_attachment vmlinux +CXL EXPORT_SYMBOL_GPL 0x9a6faf44 cxl_pci_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b9fe8e9 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9da52c69 is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9e145cf9 cxl_count_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa062083c cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa46eb7fe cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa5472f36 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa613132d is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa75de243 is_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa94d7295 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xad0b654e cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb13e7a3d read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb316d956 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb941b0f8 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbf4c1ea1 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc06241f4 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc8edd828 cxl_clear_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbe1b4a0 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcd94ec98 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd0970ec6 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1583a78 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1a7d2ea devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1d984bf devm_cxl_dpa_reserve drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd94c5b32 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdb5307d0 cxl_mem_sanitize drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdd3cb915 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xddbb329a cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe1000101 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe1e9b595 cxl_set_timestamp drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe8f18bbb cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xed923ca3 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf19e8be5 cxl_trigger_poison_list drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf54b0bf8 cxl_cor_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf74a71c1 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf7c07235 find_cxl_root drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x037b0ec2 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0596c6ea dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0b46925e dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x15bf3e55 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1777e7a7 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1ffa7d44 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x31bf23fb dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x37b7b396 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3b3bd1bb dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x43887847 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4671b924 dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x55150930 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x709c194c dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x880b1f38 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb62f42d7 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbb6c8b8b dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc46fc8ec dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xcac4f96f dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdb722d78 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe5678686 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf0a4890c dma_buf_unmap_attachment_unlocked vmlinux DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x -EXPORT_SYMBOL arch/powerpc/kvm/kvm 0xc5053a9e kvmppc_core_queue_syscall +EXPORT_SYMBOL arch/powerpc/kvm/kvm 0xc515b998 kvmppc_core_queue_syscall EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0x913f1e6d hvcs_get_partner_info EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xa73464c7 hvcs_register_connection EXPORT_SYMBOL arch/powerpc/platforms/pseries/hvcserver 0xbdf97f58 hvcs_free_connection @@ -159,33 +159,35 @@ EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks -EXPORT_SYMBOL drivers/atm/suni 0x1ce90e3f suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x64cb28f2 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x7ed3bd69 bcma_core_dma_translation +EXPORT_SYMBOL drivers/atm/suni 0xc8b01ed2 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x14457289 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x4f5e342d bcma_core_irq EXPORT_SYMBOL drivers/block/drbd/drbd 0x127a5901 drbd_set_st_err_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x077a4e1c btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x6cb99d0e rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x9fbadc5f mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xe2f405f7 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x1cda6b4b rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x5aaf729c mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x43a343cc ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5207aa35 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa3fd86ae ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa414b6d8 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbdfd63d4 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc3762777 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr @@ -194,708 +196,706 @@ EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfafcf0c7 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe9c8175 ipmi_get_smi_info -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2b07340a st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xda4f3411 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdf200227 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe9718b54 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x4f84e457 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x5a09e536 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x71be3cbd xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xacefb97f st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc3c1f67a st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd7fd7e74 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd9007de6 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x2f56cdd9 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa6f22956 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xf008addd xillybus_cleanup_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6a69855a xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe8952180 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xfad20da9 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x1389c660 atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x2ac28687 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3be28f17 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x651c7d06 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa6355a09 xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x05af9b8b atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5427bcf6 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80e747c3 atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf1ee0548 atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x2b89cb64 xdma_get_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x5d07fc73 xdma_enable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xa6003efc xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x1fcc2a40 xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x63c08d08 xdma_get_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xbc8b93d2 xdma_enable_user_irq +EXPORT_SYMBOL drivers/firewire/firewire-core 0x043aa9d2 fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1721301b fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0x188f6ca0 fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2fcbb34f fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x354a7e0b fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x28c56261 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3406a80f fw_card_add EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a8d6219 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b3c070f fw_core_remove_card EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c024f5b fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0x533ea2aa fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x567c973e fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x417cfc71 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d33397c fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x59edaa92 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5dff2113 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x635dbffb fw_iso_context_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x75c21aaf fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x782d9d04 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7bdb75d2 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7be7a847 fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0x83d8924f fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e886c48 fw_iso_context_start EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8abf73b5 fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e049690 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9fa4294c fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xac139197 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xaccb2238 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8f2b6e20 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x937fcc18 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x95c63c5e fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x99c220df fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ea6b780 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa74d58bf fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa7a5dde fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xab9df097 fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0e9e8b9 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9fa91db fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe0ab8398 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf3c4a5f fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1443c6d fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1921236 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xda114fa5 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe1d45343 fw_iso_buffer_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe59f0897 fw_core_handle_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe883a8b1 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf0910269 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3b2a165 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4eaab55 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/fpga/dfl 0x49e4ba24 dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/dfl 0xedf96add __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x77be8b66 sysconfig_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf47fd6de fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/fpga/dfl 0xe4e28656 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xf4d8e861 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x980e0f18 sysconfig_probe EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0ea5d74b amdgpu_xcp_drv_release EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x648ea64b amdgpu_xcp_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0009ba7b drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x007f44e9 drm_atomic_get_old_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02760aba drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02895ef2 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05a64c3b drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06f63b92 drm_dp_add_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f7b57c0 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12a9661b drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x149a13a0 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05a8a00e drm_dp_mst_edid_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c60d25 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x084e1e18 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08aa9eb4 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08c87921 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0a68a5d5 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0beb30a2 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0c1fdd27 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x102a2c95 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1078b5c7 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x128333b7 drm_hdmi_infoframe_set_hdr_metadata EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x16a87fbc drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x166724a4 drm_dp_mst_root_conn_atomic_check EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x17a67897 drm_dp_aux_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19290d4a drm_dp_get_phy_test_pattern EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b06f59b drm_dp_dual_mode_detect EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f298c02 drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1fcf3d44 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x214e8b94 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2364f9b2 drm_hdmi_avi_infoframe_colorimetry EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24754c5b drm_dp_get_phy_test_pattern EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24ada755 drm_dsc_set_rc_buf_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x260d0ef5 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x262cb295 drm_dp_cec_unregister_connector EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28d992fa drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2dd0fb99 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f2c0b39 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26a0b406 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x285d9106 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2dd5c548 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e3a38ed drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e8f850d drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f3e2e4b drm_edp_backlight_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fd3906a drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32752aa7 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x349dbbef drm_dp_read_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3541c150 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36540df1 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36873769 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fb53e76 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x30a2c937 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3393175d drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x37e5a5ba drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x38e249e6 drm_dp_mst_topology_mgr_resume EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x399fb414 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3c4e7b2e drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e776550 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x402af905 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40b4a4ee drm_dp_lttpr_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44645125 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3bd2895a drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3cff4f92 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d32b07d drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4174c37c drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x419eb066 drm_dp_dpcd_read_phy_link_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x47b8af40 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49f03c57 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4bc9a15c drm_dp_atomic_release_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x520199f0 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x531d4b4a drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53f65bc8 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4830bf6b drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x48adb8bd drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4a0ad156 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4a13228e drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b519731 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4cd2de26 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d87398b drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ef65065 drm_dp_mst_topology_mgr_suspend EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x54aaf4c9 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5587dfdc drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x564dccb1 drm_dp_mst_atomic_wait_for_dependencies EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x587fced1 drm_dp_cec_set_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59668d7d drm_dp_remove_payload EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e4e8bf8 drm_dp_mst_connector_late_register -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61ba34cd drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5aefc411 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c501faf drm_scdc_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627ba04b drm_dsc_set_const_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627d3a71 drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63991bb4 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6305da7d drm_atomic_get_mst_payload_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64a1f922 drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x66781fce drm_dp_mst_atomic_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68156136 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648ff7fe drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6945c9cc drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4349c8 drm_hdmi_avi_infoframe_bars EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6dc07b95 drm_dp_mst_hpd_irq_handle_event EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71a97517 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70bcef09 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7270ef28 drm_dp_mst_atomic_check EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x741055f1 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74379069 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74b8e876 drm_dp_mst_get_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x773bbbe2 drm_hdmi_avi_infoframe_colorimetry -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x774e2817 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x788e1dd0 drm_scdc_get_scrambling_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79008c7e drm_dsc_setup_rc_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7b9c8ee6 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7c41f1b3 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8014fd66 drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81299345 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81417f31 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7af6773d drm_dp_mst_hpd_irq_send_new_request +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e047bc3 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f50d4ec drm_dp_read_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x83b6dbbf drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x83ff9c15 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x84ff3f1f drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a27b254 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82b40613 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8468f3ad drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x879392d7 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b313651 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8c7dab27 drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8cd9f65f drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d0ba7e8 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d62a43c drm_scdc_set_high_tmds_clock_ratio EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f38dbc3 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9285c985 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x929e4949 drm_dp_add_payload_part2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x94989546 drm_scdc_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95883bb4 drm_dsc_initial_scale_value -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9c27b105 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f86f8fb drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1603780 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9c02d852 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d82b14d drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d83d58d drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d962e4e drm_dp_lttpr_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa287d244 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3731d2f drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa77c66cd drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2f77932 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3a737c1 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3e6af3a drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa824bbad drm_dp_mst_put_port_malloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa8d753f2 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa988402f drm_dp_read_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xada47d89 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xacb9c5b3 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaee9905c drm_dp_mst_update_slots EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xafb6a5a8 drm_dp_atomic_find_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb06f7754 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3abf81c drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbe3aaa4a drm_atomic_get_mst_payload_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf2d8812 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf371fcb drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb242f0c4 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4eca3c8 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4f58fc9 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5571e18 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5d9dded drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb68c3358 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb959873d drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc022b11 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbed5fb0c drm_hdcp_update_content_protection EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc19d4e5c drm_dp_mst_edid_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc31569fa drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4a9dc8c drm_dp_mst_hpd_irq_send_new_request +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc0506e8c drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc0914888 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc3450481 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc39e7502 drm_hdmi_avi_infoframe_content_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7f65003 drm_atomic_get_old_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca974f51 drm_dp_pcon_convert_rgb_to_ycbcr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc57883b drm_atomic_get_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xceaa7cb0 drm_atomic_get_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0e95456 drm_dsc_get_bpp_int -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd1c00f1c drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd36240c1 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd21061fb drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd26490e5 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd2c41de8 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd561d37b drm_dp_read_clock_recovery_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd62f5c9d drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc7ed6e4 drm_dp_mst_update_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf280e7d drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf6ab818 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdfb113fd drm_dp_add_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe0b6704e drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2431f4f drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd6ccebed drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd7388c4c drm_dp_mst_hpd_irq_handle_event +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd85027f8 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd8c5e99a drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda4458cc drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb8c64ac drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdbebcbc6 drm_dp_128b132b_read_aux_rd_interval EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2468a48 drm_dsc_flatness_det_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2dc96d7 drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe32a19e0 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4c6eda9 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe51da574 drm_dp_pcon_pps_default EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe6b7b720 drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe9b22442 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec5d98ed drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec79165e drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe63e9b28 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe643fb04 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xea0a060d drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeafcf617 drm_dp_read_downstream_info EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xee4c5e84 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeff5290d drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf04503de drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf07e9e64 drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf2202e37 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf54f595e drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeed2e5af drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0b642ed drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf2271c9a drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf52c6a7a drm_scdc_get_scrambling_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf6f41bf5 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8fbc965 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf7dd69bd drm_dp_read_sink_count_cap EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc5b9db0 drm_atomic_get_new_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd178709 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfdb40144 drm_edp_backlight_enable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff63fc12 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x002632d3 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x007d642b of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x008aed4a drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0108add3 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x017f85ae drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0194a83f drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03205b13 drm_gem_lru_move_tail_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03705a8f drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xffc4cb26 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0013b196 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x026ab412 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02d45ea6 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x032fbc36 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x036e7ba7 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03773cb7 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a6b750 drm_object_attach_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x050112fc drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05ea1395 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08300da0 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b19d67 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09178e18 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b33b3f drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09c10890 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a086426 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04dfed59 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04e84c82 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0544044e drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e75295 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07001cee drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x072a5b4b drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f1454d drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f30432 drm_panel_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b015f31 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b2b4ac5 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c1fae86 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d3e0676 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba02f2a drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c04d2c5 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c392d6c drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cfbfd5b drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d139c48 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4899f7 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d93c9ca drm_writeback_connector_init_with_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e66a5be drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e8a4b7f drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e011a76 drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd610ac drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x101f1310 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10168666 drm_atomic_get_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ba27bf drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c5d964 drm_crtc_next_vblank_start -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d198d2 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x116b1a46 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12631083 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x12bca8ea drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16726d61 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11814e67 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1184cad1 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11a4a203 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12cf7bae drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e44b9e drm_gem_lru_move_tail_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ff3c03 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13882e4a drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x139cdf00 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a0dfc8 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x145e1f56 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b1abaf drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1541ab95 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x157b23ce drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e62ede drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c2bbb4 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18ea6245 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18fe0b3d drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f9f1b1 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x172e5d19 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a82333 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x189aa184 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x192a46d6 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x196f5461 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a2a3e75 drm_gem_evict EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b0ccb1e drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c0b8732 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c3c9937 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cc6b4f4 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d4240d7 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a5297d1 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1acca25e drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6951d8 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5d5714 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8a402f drmm_crtc_init_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef11014 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f46d16e drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fff332b drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2028f0ff drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d263b7 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f26dfe7 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fc43778 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fcab0d0 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21359ab0 drm_gem_unmap_dma_buf EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x221fe408 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x225dca8b drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x239d1ec3 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23b21ee0 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x228cef30 drm_connector_attach_scaling_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24bc1698 drm_crtc_accurate_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d9899f drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25433b0d drm_plane_enable_fb_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27161c05 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ec4945 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25f4e5b9 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26cead8e drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27079bca drm_edid_connector_add_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2955fbca drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c4b52a drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28d400bb drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29196b57 drm_client_framebuffer_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f819fc drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a1d972c drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a39c8f5 drm_add_edid_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b184989 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b620a99 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be02482 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be14cc7 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cc15c17 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d2d95ef drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ba05ef7 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2baab256 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c7d0272 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9fb563 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cebf389 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e783651 drmm_mode_config_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f1c9897 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2085e6 drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6ac7ab drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x301080da drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3013d40b drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30628d0c drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0x312931db drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa48a18 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fbcb5e6 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30db8405 drm_edid_read_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3134a34c drm_edid_override_connector_update EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e9d852 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f90e43 drm_syncobj_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3512d7c2 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35fd07cc __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x368eaedf drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36eaf069 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36ecd068 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37f0bc1b drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x336b2061 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x349763eb drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d7971b drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x364ba122 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e385c6 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3731f78f drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3823ded8 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x382c6d0a drm_mode_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f8c50b drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38afe582 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39070873 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39230447 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3974e95e drm_plane_enable_fb_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0cea65 drm_master_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bf2af47 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c095e00 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc124cc drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d86cbec drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7d2535 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e82ea6d drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eac564e drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dcf2ed9 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e423240 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ef69e4c drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f13cc48 drm_plane_create_color_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f211584 drm_vma_offset_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c17150 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x410020a1 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4167510d drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x418e6a8a drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ae5e0d drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x437f91ec drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x438475f4 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f5db771 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb45595 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4137f1bb drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4265ef5e drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x429c4b87 drm_atomic_normalize_zpos EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4418609a drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4445d50f drm_connector_attach_dp_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw EXPORT_SYMBOL drivers/gpu/drm/drm 0x453ed322 drm_vma_offset_manager_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x461e7cb9 __drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46dad230 drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47077251 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4717e204 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d511a9 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4922e374 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4967a4d4 drm_gem_vmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4992b946 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4588fcb4 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x475ca61e drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49036133 drm_gem_create_mmap_offset_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b399af2 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b72e50c drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab7b2f3 drm_analog_tv_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b94f172 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c1bb1c2 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c2cb430 drm_bridge_chain_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c6c6748 drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da0210a drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ddfcb86 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cccbe80 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d13aa22 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d378687 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df31890 drm_panel_prepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e7614b2 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fb35feb drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4917aa drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4a3715 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e9f91d8 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f02ee78 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fcc088a drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50505fac drm_connector_update_privacy_screen EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c70dc5 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x51dc3fca drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51be0331 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5208a196 drm_gtf_mode_complex EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ae7dff drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x536d0160 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53996ae1 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x547a3ed6 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54d048ae drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55801b35 drm_edid_connector_add_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527b6419 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x529427af drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52a3fa9d drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b174ce drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55af321d drm_atomic_state_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5603756d drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5643a2c2 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c4619f drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57358563 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5750b441 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56580621 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c81bb8 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x572036cf drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5746f680 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5751ab01 drm_gem_private_object_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57736ee3 drm_modeset_acquire_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d6ee80 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x589fbba1 __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58cb5e4d drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58edc8dc drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58493300 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a114f1 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58b94e66 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58c247de drm_gem_prime_import_dev EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5961b115 drm_mode_set_config_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0x596ccb5f drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a037066 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a04e3de drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b1504c8 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bdfcc35 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dbd76c8 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e6657c6 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e8bfba9 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef50ed5 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f209724 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59e3dcdc drm_atomic_get_new_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a74cd28 __drmm_mutex_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bcc7683 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2e29f2 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c546a82 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c8ab0fc drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ccfde0a drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d27e4eb drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df80e3e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e621306 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ed4073a drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f092904 drm_gem_unlock_reservations EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc2e6d2 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fdd826d drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6041449b drm_mode_set_config_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0x604692c4 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f84f61 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x618e97ce drm_atomic_get_new_crtc_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629d8c3a drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a11882 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62ee9ee0 drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63983953 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x646a31e8 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x650bbacf drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x655abdef drm_gem_private_object_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6561424f drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d1fbfa drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x620a366e drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62845853 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62fc80d2 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6312fca4 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x639d0eb0 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63fe8193 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ad25b3 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64d6793b drm_gem_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65935b92 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66d3ac55 __drmm_mutex_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x679c3aad drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686dc62f drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68968b6d drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f8d0bb drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67525786 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67742422 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a67b8c __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67b1ba17 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680154b0 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x681e352f drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68a66ee7 drm_gem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69563cb1 drm_debugfs_add_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x696da131 drm_edid_read_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x698ce34a drm_crtc_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a87c589 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a804c0c drm_atomic_private_obj_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bdc3fdc drm_atomic_get_old_crtc_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d48238a drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ae60bd6 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b203dc2 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b75955b drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba72b74 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c136c31 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2e5828 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb93628 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d598d54 drm_any_plane_has_format EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d95cd2e drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e43d1f8 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ecd33b2 drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fb57bd6 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72557d7f drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7261745c drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e82e1f drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9bddda drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e331282 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e5ea5d9 drm_show_fdinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ee79f8e drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f117702 drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f1792c3 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f317f28 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8b5af2 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fade1a5 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7055c75b drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709b3f88 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x717e4346 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72315fa3 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7303c8e8 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733e1ee0 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73ccd361 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e56389 drm_poll EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ef3aa5 drm_gem_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0x77b4737c drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d30fdc drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7925ab11 drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79898876 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x757694a0 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77224ea9 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77325473 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x773d62c9 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b48ab0 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79267264 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x793a0432 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a409277 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b08f632 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b3738ee drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a169f8c drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a703bd3 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ab7e6ff drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b0cc0c6 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b184faa __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4fa88a drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b735967 drm_mode_object_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0e32c1 drm_client_modeset_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7dd31c drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d16dba7 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc90cf8 drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa3e859 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fe4d13e drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8022ac75 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x811397cb drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x819f717a drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8399731d drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84f184a5 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x869dc984 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b4ae00 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86dbe0a3 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87163a7e drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x871cac12 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x879eae87 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f34158 drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x888cde84 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x806ea01c drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d5d0ed drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81eee5b3 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a731fa drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8300667a __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x831248e8 drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84916d49 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8560b1b8 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86c83b00 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86d26bd6 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87333284 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x875a5e27 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8836574f drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ba7950 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89333803 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x893fa83a __drmm_add_action EXPORT_SYMBOL drivers/gpu/drm/drm 0x8953ee89 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a7d6785 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad373fa drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1f91f6 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2f5a59 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a24c948 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a60a1b3 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab2d5bd drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b06a6a9 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b2c5f68 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b659447 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cafd66e drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd8b80b drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ce11a4e drm_print_regset32 EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8db45aed drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e080ca9 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x903682cf drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x904cfbd0 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90616486 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91a830e8 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91df3b41 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e65646 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92327d9d drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93e17e9e drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9554ea36 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96bcd3d9 drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e522ce drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ebad873 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8edb1ee7 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f2b58da drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8b47ba drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9808fa drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92383987 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9262678a drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ba8339 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93bebeb1 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b0d135 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x952f5d41 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9694c725 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x969e1bc0 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a14ed3 drm_mode_validate_driver EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98420bbc drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x989cc537 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9942818b drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99461a90 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99478c6b drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e21d5f drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ebd447 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a3dc8b3 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x983ff0aa drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f86f1b drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b2250f5 drm_gem_get_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b42252b drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfa3560 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c2f6d27 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cb40d05 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cb6726e drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cc0113c drm_mode_object_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eddce17 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffac975 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d67370 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d961049 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbcfb74 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0553b60 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1f04dda drm_gem_lru_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3149f1e drm_state_dump EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa419e8b4 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa559f336 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa721bae2 drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa72439be drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa77eb500 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa78e1db5 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa813e1c7 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9526f28 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa975791f drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9eb63e5 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd388cf __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac1a6367 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad08e0d5 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad1bcfef of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3ea9018 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4a69965 drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa552912f drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa590d183 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5bc775d drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa65516ce drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a16495 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa88da3bd drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8d9ff88 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9af7aea of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa60b35f drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa88008d drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad0896f3 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad10c800 drm_get_edid EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb857b4 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad91e6f7 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd50e1b drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae0671ff drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedb49d7 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafeb657d drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaebdc60d drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa6bc78 drm_crtc_send_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11b4e41 drm_connector_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32c6c3d drm_plane_force_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb402a398 drm_client_modeset_check EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb40f9a31 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4f4036d drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4fbeed8 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb509961e drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ae52fe drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58d5336 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5edd99d drm_master_internal_acquire EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6ac122f drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6b0cd18 drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb850bc42 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87a5b07 drm_mode_create_tv_properties_legacy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87aed0b drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8d700b2 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb643c69e drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb97a011a drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a817a2 drm_gem_object_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1e84a6 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9520a9 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbadcde0e drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb05119e drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfcf7bf drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1143cd drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1e6293 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2386ba drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba719f12 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae20029 drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbd246bc drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc864abb drm_get_edid_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce7b167 drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd0b28f5 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd270fd3 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd8d5efe drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe22704f drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe906e1a drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfa2be4c drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe1783a drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff3f920 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e05abd drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1d40b87 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc216b49f drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f54811 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc409da9b drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a3b55c drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f3cead devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5d44e8a drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6c4a38b drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc710ec62 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7493fe3 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9c6589b drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9f5ad7d drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca0480f0 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca72eea1 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaeae3cf drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb1e871f drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc5838be drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc66486b drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccd97ba1 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccf484d1 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd1ef45b drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5e667e drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6a9603 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd7ccc43 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe1c2c2e drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf26aa06 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf9b65c6 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfd47c9b drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc00d41f6 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04973d6 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19e6dad drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc22ba563 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3b031a9 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6fffab5 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b219ee drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcab433a6 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcab54f61 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb1fbfb1 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2c6a7f drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb437d4b drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc647d8 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd78c85 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbdee8b3 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc02a28f drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc9f86d0 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccaa0c80 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd474b71 __drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce153f70 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf1f5c8c drm_show_fdinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf46eb40 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfaa90d6 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0013d00 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01da993 drm_analog_tv_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd02a976f drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0324f66 drm_gem_lru_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b527f4 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0d0f1ac drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd11fcb83 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcebd395d drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf702aca drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff242bb drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd11201e8 __drmm_crtc_alloc_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1563abd drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd261e69e drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2782b4a drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2ccb3c0 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd315df61 drm_edid_read_custom -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd39f4603 drm_show_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3df3fe8 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd455a18e drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd463c83b drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd63b6af5 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6496046 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd232fd17 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd343ed92 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd35c398d drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ea6574 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd62b018a drm_crtc_vblank_put EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ab1e03 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd78e46ca drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7807b63 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd794b52c drm_writeback_queue_job EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7b6c911 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c91532 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8a004c2 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e79398 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd91f0c7c drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd95fa5c5 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7be7973 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c3d134 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8204bc1 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd85c7b01 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c80c71 drm_atomic_get_new_connector_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae3ae31 drm_event_cancel_free EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb837f8 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbff16ee drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc13fca7 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0c4244 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcc7ed39 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd03b588 drm_gem_objects_lookup EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddaaec6f drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xddfa6893 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde784ac3 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde87184e drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeca882a drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9a0e79 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde276874 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde4cf990 drm_gem_prime_import EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf5a8733 drm_gem_vm_close EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfa3a38a drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0132006 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe037acba drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f13405 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1073404 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1ce0fcb drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1dcdd55 drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe23ad4d6 of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe284d7b4 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe288a5f8 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf6913b1 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0137b67 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0b403bc drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe15de936 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe287451b drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c4dc08 drm_atomic_state_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe337930c drm_debugfs_add_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3617f28 drm_gtf_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe43758d1 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4418a2b drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe47af8d8 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4815f52 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b61602 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4680c55 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe49aef70 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4b82980 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe50098ae drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5dbd82a drm_mode_create_aspect_ratio_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6384e10 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6fd43d2 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8064f3b __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe868a86e drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe686fd58 drm_crtc_next_vblank_start EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8bde955 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8e6c200 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe984f6b6 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9ada452 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8ddd173 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d0f603 drm_mode_create_hdmi_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea7353be drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xebcf4c1f drm_edid_override_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec100b74 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec75d38c drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec837cea drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedaae50f drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xedd1d0bc drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee2d7b9a drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee759d5c drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeb73907 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed1bd2f drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed25b39 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9a1fbf drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea455ddb drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba1bb29 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed1e236c drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1873eb drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1eb6e6 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef52ce6a drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01bb736 drm_av_sync_delay EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xf095dc96 drm_get_tv_mode_from_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0bd0b33 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0be8537 drm_connector_attach_privacy_screen_provider EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1794ae3 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf17bc213 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1998df2 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1a5a6e1 drm_crtc_vblank_restore EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1be6851 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d619bf drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d89d4f drm_crtc_vblank_helper_get_vblank_timestamp_internal EXPORT_SYMBOL drivers/gpu/drm/drm 0xf21bd8ab drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25a13b3 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2af87d4 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf321af48 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32ca096 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf336b9e9 drm_encoder_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf430f9fc drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf436c402 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44e3ecd devm_aperture_acquire_from_firmware EXPORT_SYMBOL drivers/gpu/drm/drm 0xf485986d drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf51c6932 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf56f4512 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf592fbc0 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5d587bc drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7eadc32 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5379ff2 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5550754 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d6e1ff drm_sysfs_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a08767 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b3675c drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf920eddf drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9775fa1 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc7d606 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb77be2 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8b40368 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9c11d23 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4ea66b drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbdaf6d9 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc297887 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd014158 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdb91208 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde0016f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdeb468f drm_gem_dmabuf_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec7ef02 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff4bded2 drm_framebuffer_unregister_private EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy @@ -905,387 +905,387 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x0123075c drm_fbdev_dma_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xa5c4c20e drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xcf3a89c7 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x008e58c9 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0097f247 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01156e10 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0295ad4c drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05fc4c2c drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x066f6ac8 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c358a0 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0758a0e0 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x078e7432 drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a1c29a6 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bb22c35 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e41f04d drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f0385c6 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10d68d64 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10ed4433 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13f59070 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14176d0f drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14a36c64 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14abe10d __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x154bb5d4 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1862593f drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x199a09d2 drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a93614f drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d608f1d __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ffd15de drm_atomic_helper_connector_tv_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20eb1019 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22513c6f drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22b4b028 drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28927f4a drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x289fbc84 drm_fb_xrgb8888_to_argb8888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28b9bc05 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x72dafbed drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xa98ffc0d drm_fbdev_dma_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xcd5c0bf4 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01aa9e87 drm_connector_helper_tv_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x027d8975 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0375105e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04685457 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04a59f27 drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x060859c6 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x088c7fec drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0920bce3 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b79cf2f drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bcbbb61 drm_fb_helper_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c009320 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c6b6eff drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c834d49 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9a459c drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e427b8f drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eee484d drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10c5d201 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13869025 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14651536 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x158b0bb5 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b89cb1 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16df4aae drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x172c5e7b drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18caff23 drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18ecb341 drm_fb_xrgb8888_to_xrgb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19121a8d drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1944bf78 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1949916e drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x197d8e88 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19a717f8 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0c0ddb drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b92a8de drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1caab011 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cea2616 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f34d494 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fae1f38 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x205796f9 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24f4872c drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x283ef0f8 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29831c7e drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a8313f3 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b7453c2 drm_kms_helper_poll_disable EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ea6538d drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30581302 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30cc895c drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30f834df drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c4139a drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33d75a6a drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34883858 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34bc8975 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fcb4209 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30afc7f3 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30b5007e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31d498f8 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x323ba6a8 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x323d9970 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33783750 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c19742 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33ca096f drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x357a25b6 drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36eea39a __drm_atomic_helper_crtc_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379250e7 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38b16d19 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3942c91b drmm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a62e436 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a7d5bf8 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3aecac4d drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b70f081 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d27d326 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x413fb852 drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41833b4b devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x418c4a02 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x393ce075 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b17fc63 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cad4a11 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cf13d32 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3db872fc drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3df0fa8a __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4026cecd drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41cb2838 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4211b6b8 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42491a15 drm_connector_helper_get_modes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4370d5f2 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43a05139 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f791d4 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44786e16 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44e445ab drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46c1ef09 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bcfa9ec drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c38d4da drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d01b71d drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fa89e5b __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x506ec1d1 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50d5f15f __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51500411 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5348e443 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53cbd4bc drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x544f226b drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x560bf51b drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58f5c11b drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4764f94c drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47d6dadb drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49ea62ec drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4af10f09 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4af8de21 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b994bec drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cb49c1a __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e93b0a3 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f1e316d drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f7ef67c __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x501c7ee5 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x507ba01d drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x535050cb drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5664848a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56f82675 drm_atomic_helper_setup_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c4abd3f drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61340530 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64f491ef drm_fb_helper_damage_range -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x656802a5 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x662f3134 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6654a726 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6792f88d drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67a5c0a9 drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x696a0dad drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a9dd2d5 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6afbc4b1 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aef8bb7 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c393136 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f9aa3e0 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x612e5506 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x619fb27b drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65b8fb7b drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6854479a drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68bf6cb4 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a4838d0 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a6b0152 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ac8ed14 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b039cb8 drm_fb_helper_damage_area EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0b10d3 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d20063c drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d3342bf drm_fb_xrgb8888_to_rgba5551 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ea22352 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ed11ef3 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70553396 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71071b5b drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7236649b drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7348f76a drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74f80b8d __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7727f5c6 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x773f3c0b drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7759a490 drm_connector_helper_tv_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x776c8f2a drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78041d1a drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x785c1860 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79e66d17 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b82c42f drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cdae704 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f0d4adf drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ff6bbe6 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84c0c853 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70021801 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70b1e84f drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72b5b445 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72c32542 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7367c9c9 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ddfb79 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74e756fe drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7570f3fa drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77bf49c3 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77db0196 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x791b0f82 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d17d4b6 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e9a3690 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ecf465f drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fd17c17 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80bb8c3f drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x811d0baa drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86f12444 drm_panel_bridge_add_typed EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x882e2355 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88631bd9 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8886efbc drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x895e1d8b drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e20790a drm_fb_helper_damage_area +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88c79db5 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89f748e5 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e19934a drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e573932 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9067e4ec drm_gem_reset_shadow_plane EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92057df1 drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x929d075e drm_fb_helper_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x937787c1 drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99f3b5e4 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x969871e4 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99009f91 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x991abf17 drm_atomic_helper_plane_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9abd905d drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aeda93f drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b36a4e5 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bf0d211 drm_fb_helper_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ccb9097 drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ff25164 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2307d97 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2a41100 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2ec8f0f drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa68f561c drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa752921f drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7a9fb81 drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa455fa0 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac86535c drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad7be9a1 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae07cf7b drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb04e305f drm_fb_xrgb8888_to_xrgb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b22fc0c drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b3cdc88 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bf0ce16 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ce4eca1 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9da1aa33 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f4ad64b drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0ec9b88 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa11dd707 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa15f0579 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa281270d drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3c16aa2 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa403a8dd drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4a0a421 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5744148 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5f1cdd7 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7ad7c05 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7f6f31a __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa0b5083 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac0becfb drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac281d70 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacf746f3 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafc78b00 drm_connector_helper_get_modes_from_ddc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0c7da32 drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb139f9c4 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1b09a5b drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1efda02 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18d11dc drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb24ffc1e devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb338fb84 drm_fb_xrgb8888_to_argb1555 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb387c752 drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb38d7e3b drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4115fb3 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb43b6cea drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb52ed9b1 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb56aea2f drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a6123e drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb409ecad drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb436479c drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4a49587 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4dd1f2f __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb62e50cd drm_atomic_helper_swap_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaa6be64 drm_fb_xrgb8888_to_rgba5551 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbba7abe0 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc0a36b2 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbceb20eb drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcee50ba drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdb8b98c drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbef751f3 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf42966f drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf7df4fd drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc03c466b drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c29ab3 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc19a9b03 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2e80e2a drm_kms_helper_poll_reschedule -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc391bfe4 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3f35d8e drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc503f70c drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc516c4bc drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5f330ea drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc68a3d01 drm_fb_helper_release_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c0d429 drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc785c521 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9f7f5c6 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca93c70d drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb741ac3e drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8106e15 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9bc3abe drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba949fea drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcae49b6 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdb84568 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdf0fb74 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe65315 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc55dc607 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5f6bb36 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6daea72 drm_fb_helper_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb8ae9c5 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc093905 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc353966 drm_fb_xrgb8888_to_argb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcda24f6a drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdfb3c51 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcedb3508 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf0387cb drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccc81efd devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd79a5ff drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce6b0956 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcec68f33 drm_fb_helper_deferred_io EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd15ee58e drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd24b11a7 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd29ebe21 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7a8aa2f drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd80a7f23 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8457cae drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfa6a8ff drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd14684d2 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd356e6c6 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd56e37dc drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd946dcc4 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda868ce3 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda935cf6 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbd9213b drm_atomic_helper_commit_tail EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd0a2c9c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd238897 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd37bc03 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde8c54ac drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf1125be drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfe74d07 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe02deaad drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0ed584d drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0ee8c81 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1acda8f drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1b1463e drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe21140e1 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2d3241b drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe33c8f15 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe52c74d9 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe84ae743 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea2aa819 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaa66091 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb52d659 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec285846 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecc3eb14 drm_fb_xrgb8888_to_argb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0ec5861 drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2f3bcf1 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf38ef7f3 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3d576bc drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf788ddbb drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7936719 drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a231ec drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc3d464e drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdbeaaf6 drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe21b133 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff4ea498 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x040af586 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x042eb831 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x047d86f7 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1354438c mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x341c0005 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3559550e mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3b67508c mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e0a2f26 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4f465fdb mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x53affa99 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x65383eab mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7861da23 mipi_dbi_pipe_reset_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7c964bcb mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7f458d75 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9b351606 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa323d1ab mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa6e672c0 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xad48da16 mipi_dbi_pipe_begin_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb22222a1 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb2b101ad mipi_dbi_pipe_end_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc6cf86f8 mipi_dbi_pipe_duplicate_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xff14933b mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xffa1e52c mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde2de235 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf18c8ed __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfde43d8 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe09c4da9 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0fa7ee6 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe258eaf6 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe49524e5 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4d14fb2 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a3efad drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6c78afa drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6ddb9eb drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe778059d drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea464bed drm_atomic_helper_connector_tv_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea4df512 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeacc1f0a drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef81f69c drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3c90d23 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6834298 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf73418f2 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf78b976c drm_kms_helper_poll_reschedule +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf83a80b9 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d7c20d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb058203 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb9b601d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc6eeb0d drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe80185a __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe8d0372 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeaacce3 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0af0c0df mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x17fb8e97 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2a9b28cc mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x31e68f0c mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3fa70073 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x41f2077f mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4fee8b94 mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x50ae7563 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a0e1cfb mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x72214ba6 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x722c65df mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8dc141cf mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8f54762f mipi_dbi_pipe_duplicate_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9589436b mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xae712b47 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xaf198827 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb6778479 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xba0de6b2 mipi_dbi_pipe_reset_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xba7aab84 mipi_dbi_pipe_begin_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbc087994 mipi_dbi_pipe_end_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd31acbdf mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdb7f34e0 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfc39f309 mipi_dbi_debugfs_init EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x259af840 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x36c68179 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x63104e4a drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7a35d6c8 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7f918358 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa32c6a0c drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa7cceffa drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc2b1bc3a drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe659c205 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf38f6bc8 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0b37a9fd drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x28ad5988 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2d181480 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3cf93fed drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x65bf2647 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x788b8a64 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x8654124c drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x897a1eb4 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa8ee4232 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xfb6960bd drm_gem_shmem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x46c366a6 drm_suballoc_new EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x4deccd24 drm_suballoc_dump_debug_info EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x64de42c3 drm_suballoc_free EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xd5778c0f drm_suballoc_manager_fini EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xe47dd04d drm_suballoc_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7eebd7c7 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x808e4b85 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd4a239fa drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe5dabd7a drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf978284c drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0d947c28 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1cb1e2f3 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2c275018 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2d7a18e1 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x394481c4 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x40265585 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x493bfb8a drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5448ec2b drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x66a2d3d5 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6dc5fa8b drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x75d4e354 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x93cbcf7b drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x966b6c6d drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa6bb12b3 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaeac9f46 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd0513ab5 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x141e680e drm_sched_entity_error -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x175f28b1 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2bdbef26 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x33da135d drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x38dd7805 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x010052fe drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x24e2525d drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x368e442b drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4210fb9c drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4b772f6a drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x07587679 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x280e7d08 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x290de31b drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3d17b3de drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5610c61f drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5c12c911 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6744ba5a drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x839d06a4 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8bde22da drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x99ba4670 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb5b86660 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xba159ae0 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc1973e78 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc5c322ec drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xee27a0e6 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfd9a162e drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1563a224 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x18e1fc94 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b855930 drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2311d843 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x24f004fc drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x29d9a29a drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2cd5b942 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2ee24f80 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3352af1f drm_sched_entity_fini EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a6bf1ab to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x404b14d4 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x431cc832 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x443961ad drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x55f032f3 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x587c390c drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5b6d45df drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6e91d3ec drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7cdd1434 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x823eccd5 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9d9d180e drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xadce5fdc drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb715e335 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbd109bf8 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc9f7e8f1 drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcd63959c drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd1e09610 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd8a93ba3 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xde9c6123 drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xedfab1b3 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf1e42818 drm_sched_job_add_syncobj_dependency -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08673925 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x099cde4d ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09cc05bf ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0df89425 ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e3d5701 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1224bd1c ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18a25712 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x428bb130 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4aad96c0 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5566c41b drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5b5595f4 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x984fd6db drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9c3f34d0 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9f68600f drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa2ef0541 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa9b75f64 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbefcb139 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc50a82a4 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe1e443b6 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe1ee8cb2 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeef4f78a drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf1d126cb drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf97992c0 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0486bdbb ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04ecf529 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0676f4c8 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0677a933 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0dc769fd ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f351e2b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x124c8541 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15cf1754 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16facb86 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1919af45 ttm_bo_move_memcpy EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d2ee5da ttm_bo_wait_ctx -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d7cc0b7 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21d7ecec ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ad5e624 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cea7c40 ttm_pool_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30327c94 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x317e7684 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3446561b ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37b0ef66 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3830fc01 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3df6d8b5 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41297e60 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fde1132 ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53e0a408 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b76e4e3 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62149b6c ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c305150 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1dfd20eb ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22c2ef38 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x251b128f ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x261eeda9 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26f3a966 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a73b329 ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a897952 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38721c0f ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e242d7e ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x477e00d8 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d16e552 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e585a50 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56061247 ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59e745c5 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a2dd1d3 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5bc4966b ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c5ccec7 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f5ef637 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x666de99d ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x685509db ttm_bo_vm_access EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71693860 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75797d93 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x760369d5 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a1f99bb ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b9927a2 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ed4efe9 ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a31b2e8 ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a880307 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bba29b5 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8edc797a ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92c3a663 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a3659b3 ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9da65057 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e279d9d ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f2b0f6d ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa081598b ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3c1fabb ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa99830f3 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafebe807 ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb245e957 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3f3c8e4 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7342afb ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8e9d39d ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb247fbf ttm_pool_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc108b7ce ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc49bff67 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7505fa8 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda4dfa59 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc2da698 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe074d5af ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6cb11284 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d11dcae ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73ab236a ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e9ef5ea ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84bf0eec ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d283670 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dc069e7 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8fdcb5f8 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x926a6f4d ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x949f952b ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99733b17 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa107d6f0 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6a905a6 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8d8e50f ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb330f993 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2816143 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4009c28 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc64c422e ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca56f73f ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca60a527 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd24d6cdb ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddd7c84a ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde2ad454 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde9556b6 ttm_bo_wait_ctx EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0930001 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe09e9078 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7599809 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb22a776 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf38918bd ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf571a18d ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf84420c7 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf849a640 ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf86d3fa7 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb4fe40d ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe76f901 ttm_resource_manager_init -EXPORT_SYMBOL drivers/hid/hid 0x52160657 hid_bus_type -EXPORT_SYMBOL drivers/hwmon/adt7x10 0x96b7956c adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6d84841 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8582980 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8b8cdbc ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea51f131 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeda0f0a5 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0bf4fcd ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf19dc1d5 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5cc3e7d ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/hid/hid 0xa69973c1 hid_bus_type +EXPORT_SYMBOL drivers/hwmon/adt7x10 0xd488d1e1 adt7x10_dev_pm_ops EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x2962fbc8 ltc2947_pm_ops -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1fb7efd5 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc0354a33 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd82e8353 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x345b2019 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb5cbc486 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x0b12aea8 amd756_smbus +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x24395190 ltc2947_pm_ops +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6a1a4eba i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x92ff5ec3 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd3730a83 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3f6dbcfc i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfb1bb18d i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x381dfbde amd756_smbus EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1295,35 +1295,35 @@ EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x726ba258 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x909018d6 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8627e34e iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xac330d4f iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x0013dc36 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x0c9d566f iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x13ad0747 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x13c9ad57 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x17407756 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x17c0c665 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x19c826f2 iio_push_event +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7614f697 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x88c9648e iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x0279a27d iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc9813972 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xf730f04f fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x00338526 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x02c3a89f iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x217c1ee9 iio_trigger_using_own EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x38096200 iio_trigger_poll_nested -EXPORT_SYMBOL drivers/iio/industrialio 0x742dcf04 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x7de7a0a1 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x85921e48 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0x89a16e50 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x933bbb02 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xa654ab55 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0xac61d052 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0xba2a42c5 __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xc4566b68 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xd6b87e52 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xd91964fa iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd9d35493 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x3bb2967e iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x436d2335 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x4551470a iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x47a34e24 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x5c1a6d1d iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x606f46c0 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x6b2e1911 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x746b4e18 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x7be3f69a iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x81df2310 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x942a64e6 iio_trigger_poll_nested +EXPORT_SYMBOL drivers/iio/industrialio 0x9c563038 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x9d9939e4 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xb231abed iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xb85da93c iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xc5608c1b __iio_trigger_alloc EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe14b0562 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0xe310d3b3 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0xeba2ba27 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xf0ddcb11 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xf12941a2 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xfdf21f7d iio_read_const_attr EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x81693fb2 iio_configfs_subsys EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x074e1f3a iio_unregister_sw_device_type EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb5a9680e iio_register_sw_device_type @@ -1333,969 +1333,969 @@ EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x429c8692 iio_register_sw_trigger_type EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb5cc32c6 iio_sw_trigger_destroy EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb8d9bc3a iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x06ed5e5f iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9fa80115 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5d166b8c bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0e65ae01 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x30f2c726 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x384f87c6 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x48525ca6 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60c4cfd8 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x62295e9a ib_destroy_cm_id +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x377fd8ee iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5f400cab iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xfdd1ecc7 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1f5b1b79 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c053740 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b06f798 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4cbd216b ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x58bf8514 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a586bb1 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6103ea9d ib_send_cm_dreq EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f81e875 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9485f003 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x99ac3786 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9f5c1299 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaad918a2 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd63f5be6 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe02dcdc1 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xea2fcc7a ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8dd3d77 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7823ecd8 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x93daec2b ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x94c2c9c7 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa664523a ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbca77bfd ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc25d1f7f ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe80a8c56 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf1f4cbba ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00b800c5 __ib_alloc_cq_any EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00d3a975 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0154b2be ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0445c479 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04ca8611 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05b6cca1 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06ce4f90 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06d97f91 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0169dc89 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03fab16e ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0461512c ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x085a5a99 rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a28bdef rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cccb1be ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0da13168 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0df0c801 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e684e20 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0eced1b4 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x105544dd __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1099cab2 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10ae3e57 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1231baf6 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1243f564 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x124a5256 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13ed041b rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x158eeadc ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16799c0a ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16def56e rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x187207b6 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a2be4d3 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a36c45f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c528c7a ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c57a79e ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dfdc8b4 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f4a2040 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10a4f06d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x137148ea ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1378bb13 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17625d1e ib_mr_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b520068 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dc16130 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x202c3f72 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20c95581 ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2255818d ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2d91e8 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22cc28e2 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f06ad2 ib_find_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2462b917 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24be1983 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26710c4e rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2736996c __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x276e961d ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279d853d ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2801795d rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29080e63 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a88ca45 rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c116ac3 ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f2e975a ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x292d1923 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b5bb591 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bc0d2b2 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e5aca85 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0aa1ba ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f6cdbcb ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc41b60 ib_modify_qp_with_udata EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30c21bb2 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33c02d9a ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x349105e3 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34faca13 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35d33f01 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36251dbd ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x369535c7 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b310a86 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b84c6c3 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3badb9f3 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c15f062 ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c7accf0 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f1f9c48 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34af5841 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x354265b1 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35b3d468 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37759fc8 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x379d5672 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3932f188 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x394b3b89 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a870e69 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bb755dd rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bf958f5 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d4ee807 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f6192fd ib_get_cached_subnet_prefix EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x408e1d77 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41b3c06b rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41beede7 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42e083be rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42f7e4d9 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4345f641 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40bad82a rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41868150 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x427a3ba3 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x427bf118 ib_attach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44280a15 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45e11362 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44fc4398 rdma_set_cq_moderation EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48b043ed ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48ff7808 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49432a5e ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x498ea22b rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a1dd648 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a91dc4b rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b85362d rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d661f1f rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x486bb565 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48b5eda6 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4990635c ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a060e09 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b7bf60a _ib_alloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e8e5683 ib_get_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f119c8d ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x523be244 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53b46cce ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x544fba47 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x504a9800 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x538b2928 rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55f8f66a ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571c62a0 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5792e91a ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57a0746f ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5883d455 ib_qp_usecnt_inc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a0b615f ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb8609e ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58f17e25 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59cb3b63 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b615371 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e0458d2 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f1f6a8d ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x604c79bb rdma_put_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x678c053c rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6852aedb rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a58b6aa rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a6a9fc1 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b05e004 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x631b0cfe rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x634b3675 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63bcc804 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63d1685e ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x647dc0f1 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66dc0b78 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x680ff018 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x693b8707 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a1cbfb3 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a24f4ea ib_sa_join_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ce7d822 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dabd87d rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c673918 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cd56261 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ec93554 ib_device_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fb756c8 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6faba446 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fbb278d rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7005931f ib_init_ah_attr_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7309ee0c ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x718b101d rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73888c8c ibdev_printk EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74f8f2b4 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7583445a ib_set_vf_link_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76852eba ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76b3134c ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77ef5fc7 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78072e1d ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7801f97b ib_unregister_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79fa9e3e ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b395a34 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fe6c0a2 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83e62702 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8458e1a4 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x866b0f41 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86b00c36 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8733d035 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x874ae2e3 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87971c30 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d024e3 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89f7bd14 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b955102 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e37b4c6 ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x903d93dc ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78b775ad ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78f81ebd ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x792a7c57 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x797168ca ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79892eff rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7af4db50 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ba50b71 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bef63ef rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cf64ad8 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f6f2f1a ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81c4736b rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x820a4317 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8480ce41 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x870ed9b5 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a98f01 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87c26ad9 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8888b4e4 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88a991bb rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8921ab35 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89b79a7a rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa3eee0 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8adfc6f3 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b039b49 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b234187 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c37045d rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f645d16 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f80477f rdma_copy_src_l2_addr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x933a0ef5 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9421857e rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95e825f9 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96c96448 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x970af586 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x919db998 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94378f4f ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94a343d1 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b44464 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9677691f ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975ff2b9 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97d24c24 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x981757a4 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9aec08e6 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c36695d rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cc9111c rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d0ee660 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9deb82d7 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e20076a ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99692ce8 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b325fa0 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b45e2ed ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bc2f8a9 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9daaf152 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e788ac8 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f0ba7de ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa019bfbe ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0943b8f ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa198b68e ib_dispatch_event EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4cdb3b4 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa530d23b rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5bea924 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6589fb2 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7318fae rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7e21155 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabccccc6 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadae55ef __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3d71c5 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae75dd08 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6e332f4 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8b36468 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa91c61ea ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa93c47b3 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaaec99d6 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab658e29 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabc2a607 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac2dd972 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadedf226 rdma_create_user_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaedf5fe8 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb00f4399 ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0a1af15 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1f380b2 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1fa688f rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2bf41cb rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb11d430f rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3c10d19 ib_dealloc_pd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb520bcb9 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5652cb5 ib_find_exact_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7b01f24 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7b6f1a5 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba04d0fd ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaf3c996 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbb94696 ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc399dbf ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe859562 rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3785a42 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4d2c33a ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6a48aa4 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6dbc2ef rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc73979ba rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8158dc5 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcab65195 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcba04e59 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbdd4dbd ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc277aa1 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf541376 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf965a24 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8bfbd8c ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8d559b7 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb913f606 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb98e2671 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc2fdfd5 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd1bc2db rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbff57e30 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc150ca04 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc38ccb10 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3a8064d ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3ea2684 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc90cc895 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc974ac4d ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9824e45 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca3b5cd9 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc62428b ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccde2a9a ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf3e162e ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf903987 rdma_user_mmap_entry_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1834e79 rdma_nl_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2f751f9 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3657d47 rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd38c099e rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4a866a7 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd56d85cb ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5b2cd17 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd28cc685 rdma_user_mmap_io EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7b94497 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7ce2fe4 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9b71874 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd80dd566 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd86cc1bb ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8bee332 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd93ef7c3 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd944a47c ib_destroy_wq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbfa15d3 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc0b2a86 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd19014b ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf17c642 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf307ebb rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1230ca4 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe223141d ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe254d29c ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2f9579e ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe46d00f1 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdba88f76 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbc36da9 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddafb337 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdedac144 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdedc8254 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1075af2 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe30cbf6d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe57e0c0e rdma_destroy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7ad06b0 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe75d0e25 ib_register_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7bbcaf8 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe826c718 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8a9e42d rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8cb5c89 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9408dc4 rdma_nl_stat_hwcounter_entry EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeaf79b61 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed453c9c rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed9e8c9d ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb9ee88 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1deae98 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf35e6988 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf43fbd15 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeadeb89a ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeba54e96 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf19154e9 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2c8b9d6 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3deaa77 ib_get_cached_port_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf65f72cb ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5f8ed20 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a6aad1 ibdev_emerg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf70f02e6 ib_sa_guid_info_rec_query EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74ccb9a rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8aea4f6 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfffa4570 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0d2b97a6 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f60cba6 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ffb3e28 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x13238a5d _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ad4c512 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1d5eeefa uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e14611c ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e265755 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ec5229c flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29184e9d ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x35c357c0 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7ded231 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf85c8927 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9272cd5 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf95d198a ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf999d2a4 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc061112 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc2d18c6 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc3e876d ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0438ceb4 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x195feb3c ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1d814832 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1eb72c16 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1f41ee3d uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2449e384 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a0a6794 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x31649f81 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x35230f78 uverbs_destroy_def_handler EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48d6aedb ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c1f189f flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5590ede1 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5858efb3 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c1f4f6a ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ce20543 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x716af6ba ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x71db81b5 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x746bb655 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x458bd946 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x484b8779 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5b90fea0 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x729118e9 ib_umem_find_best_pgsz EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x791df37d ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f7b0215 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7facacaf ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa648222 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3347514 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc61b4008 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb30a864 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd9cf3041 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xded9e94b ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe9349d72 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf26d8415 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb293222 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfb7a18fc _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x15999e4b iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4416787a iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x660f7d06 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6ae8281f iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6e212ba7 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa8a7a7fb iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xacd280fd iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754e002a ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7c86336e _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8487d7b5 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8af577c7 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x90df774f uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9231dc10 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x92b4b7e3 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96ce61dc ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa2068f77 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa74baa25 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xade012fc ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb6c1cd36 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbeab9c07 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc99f1ef6 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc1f23eb uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe128aa24 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeb4d5510 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xecaa4d17 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf091c60e uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2a2dfaf ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x145ae5dc iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x23e78701 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x73c8357b iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7cb32184 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa572ded0 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb583b0bf iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xde57736e iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3b9fb82 iw_cm_reject EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3f69a6b iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b15d35d rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x102f10c8 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2fcbd923 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32df5d9e rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x401ff037 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41fb333e rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x480ef4bd rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49aa7618 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4aaa88a5 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52803ed0 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54f88656 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59989dec rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68aecf10 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73f7f35d rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x793c1785 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85436bb0 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x118e38b3 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1229d8d3 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1bc61ff2 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x215d5799 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x216e4d97 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2218f99a rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23bc6da2 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x251cfc32 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x279f89cc rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38a41cbe rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e50053c rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4cc49962 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6b58bdc6 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f9ea607 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x73c7feda rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74122059 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x756f2707 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f7e2ecb __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83ff1a74 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x862450ae rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ccae90e rdma_unlock_handler EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9359d4cd rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x970df92b rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99679e0a rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2f7d12b rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad5309a8 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xafba8b11 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc53e263b rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8095958 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb7dccf0 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdc049612 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe0a1620a rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1e7aa68 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2435f09 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3dbd433 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8e9db2d rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed246bec rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeea1b2b9 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf93f93fc rdma_listen -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x021105c7 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3a3160a3 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x43180199 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x729bff01 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8d0b1e4a rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9421efab rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd57d591e rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x19fd1fb0 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94660a4a rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa553ba25 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa583695f rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa7dae8b2 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaaf0d41e rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xab947323 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3880ccf rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb8c626f3 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf15a7d7 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb368ef7 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd047df1 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe75293e7 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe7d8f18b rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x05a68625 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x471abb37 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x68b43263 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x92a09f77 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xaad69c7c rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf4105c8d rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xff3159c3 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x03e0c28f rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x04f2b2ca rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x3946a0c3 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2bf38ba7 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x77e9cb72 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xb5b3af44 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbbf0b05f rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4f725d63 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa4c30e62 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa8dbbd05 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb8acd61a rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xbb7d8ed6 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf156b0dd rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/input/gameport/gameport 0x330f4ec7 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x42223c55 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x5e1072d8 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x73c8cb59 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x91e8bf72 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xac778a9f gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0xcefe1dcd gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xef07f774 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xfd55e628 gameport_stop_polling -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x0d61b39d iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x54e6a995 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9745ca39 iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x7ad4db42 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x7d69e483 ad714x_pm -EXPORT_SYMBOL drivers/input/misc/ad714x 0x9b466356 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x41a42ef0 cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x03edac40 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0abdd757 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6df957f2 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb86a2007 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcad0f0da rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe756f92a rtrs_srv_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0021c2b8 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x15eb04a0 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1728ed8d gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1eb8ef11 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x232fdd33 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5b200c45 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6cb45c70 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xacdbdfd6 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe4282a51 gameport_close +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2202d1ca iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x86568307 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xd5c136f6 iforce_send_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x6b10838f matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x315aa045 ad714x_pm +EXPORT_SYMBOL drivers/input/misc/ad714x 0x443953d5 ad714x_probe EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xc77ae760 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x21047965 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2f518172 sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x75dc65c2 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9290412d sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xff8115c2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4aefd3b8 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x51565735 ad7879_probe -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x55ccf55f detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6e13baf8 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8538be7d attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xce800506 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfbf93cd7 capi_ctr_ready +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf10961db cma3000_init +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x308a62f8 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x14912708 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8cd95c47 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc6b7ecd7 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd8998703 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfb378f45 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb49afea5 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xdf5ab579 ad7879_pm_ops +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x567435c0 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7037532c detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9e095467 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd64137d3 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf6d1a637 capi_ctr_down EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x18f0badd mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x57f4d577 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x76fc0b36 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xead95266 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x37a8b58f mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc8cda5a6 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x100a4121 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3b1b890f mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x46469951 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x64fb08e2 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x54f9c72a mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xb797b63f mISDNisar_irq EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0820301a mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x04b5aabe recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x19044e39 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a348241 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1bc34c5d mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f90f8d7 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2015b5cf bchannel_get_rxbuf EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x25e51d2e recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26dc4772 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x27d9ef5a recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ef50ce7 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x418ae072 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x42a55aa6 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f29fd4e mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f33783b mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f5e6452 dchannel_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 0x5d858cb7 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5c6d1e32 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dd8a6f5 mISDN_clear_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9aee2d1c mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e16a42c mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c3be14b mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9fee064e mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa5f8f8d7 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa90576af get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaaa22eed dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf1e1768 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb80a6a7 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbbbb32f1 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9cd6e98c bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6e1b34f mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa769e4eb recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad6874bc recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0d0743f mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb40206d3 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbac4d6c0 mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3b69d49 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8e9cb6e mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce1141dc mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8a1c9b1 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8a9be8b mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8807082 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeebd467c create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xecbe821c create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9dddcf8 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfe5c00a8 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x3491fab1 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x96f29304 ti_lmu_common_get_brt_res -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x9ce79ae2 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x70e34cd5 ti_lmu_common_get_ramp_params EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range -EXPORT_SYMBOL drivers/md/dm-log 0x247f50b5 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x6d63f510 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x7ea532e9 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x84417075 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0b029756 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x11bf76f0 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x42def72d dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6b864280 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x6daa890a dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe9efebd6 dm_exception_store_create -EXPORT_SYMBOL drivers/md/raid456 0x12174cb2 raid5_set_cache_size -EXPORT_SYMBOL drivers/md/raid456 0x885aea89 r5c_journal_mode_set -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x38ac2a2e flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x49d3c0f9 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x83c32baf flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa7d4a85f flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaf2755e5 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc4ed9fff flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xca357385 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcc8b245e flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd7422c93 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdacdf510 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdbffdf88 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xddb2aa04 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf1511d24 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/md/dm-log 0x2d00781a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x3654caca dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x4dedf476 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xeeb95119 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2a1def93 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x44668081 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5238d08b dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6e4255e9 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7b1bf80e dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8e1f6e2f dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x973bade7 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0xec1fa306 r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x12d48fb4 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1665df94 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x330eed99 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x34cf896f flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x358691ed flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7e61de97 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa1afa521 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xac61956c flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb53935e6 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc151b5f flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbd6f4a8f flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc99a453d flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe27d4018 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0b43d1f9 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5aa6c863 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x59e28a6e cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b5cc43e cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x66ad1a45 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xa32fa9e7 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xca314d7a cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7cccc71f cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x81f1331f cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x009d407f ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/cx2341x 0xffdc7003 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xe76862a8 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xd5ce426a ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x0f3fb24e tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xb70747f9 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b3f806c vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x9613bc5c vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xbd9aa5de vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xff727bb6 vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4c49f709 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x543ec8ab vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6958c284 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6ecf91b6 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x86eb54f0 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa18bb452 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x253ea395 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3f85b114 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x57e3c344 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x72de50af vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb27a4321 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc750a6f3 vb2_dvb_find_frontend EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xce59374b vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0333d38d dvb_net_init +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xb90942e1 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x003b8f66 dvb_frontend_reinitialise EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x064fd246 dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d203832 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c6aafd dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d712da2 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11643b57 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15052806 dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1ed55c73 dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x248279a5 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1623a318 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1803904b dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29d58443 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3a56374b dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4502c3be dvb_ringbuffer_flush -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4eef9629 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x516e5ac1 dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5830a49a dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c89423 dvb_net_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65ce00dd dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66a68864 dvb_ringbuffer_avail EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66bd7694 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x67c94386 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ab6aac6 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b220fb2 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d291dc3 dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ef5628b dvb_ringbuffer_read -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x73389132 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6f47429f dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80b4e30a dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82878c35 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86385e10 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b2cd806 dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fd6e094 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x93e6fc48 dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9dffb35d dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3ec7c22 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xacec4122 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae052323 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa090ac00 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaaa3d2a4 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5a3524f dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5de0a49 dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb9549afd dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb9b1045c dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc05d026 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbd10bb1e dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbd99e892 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc424d88 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce748c8d dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd05b4803 dvb_net_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd1ce2e16 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdea689c6 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1f3abf4 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe20d7169 dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4ea2bdb dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4b7b10f dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdd1cad9c dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe64720ef dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeb77b397 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed056cde dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xefa42505 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf4d2be54 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf70f1d77 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1dba6d7a au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x382752e5 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x41f8ae2f au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x58117436 au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x95beaa8a au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9a20787c au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb51b32e8 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd55d24ac au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe909c0c7 au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x260831a5 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xcee9fdfb cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x52e6addf dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5e521d69 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x79719f7b dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x82b296cd dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x098daf47 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1466381a dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x168411e6 dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x521f8cee dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x620662c5 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6228ff6b dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8a90677a dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x972f4dcd dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb8c443b7 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe1f50600 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xefd75097 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf64af475 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf66c5d0d dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x38416c5b dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5572fb03 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7097b337 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbca95997 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfc5a0720 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0592f565 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x46c8d5d4 dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x645e4ba5 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x16f53262 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x186ef0b7 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6322ef3f dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8626c5be dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x863ef418 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8bb790bf dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x90ec3af2 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa8b09d97 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa90a71b8 dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb1318de9 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcb764682 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec580c47 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2405228f dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcbc3065f dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd233a026 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe1bfbd25 dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe1e6b258 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x148a8ad8 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xbf44aeb0 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc1174b8b dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x80b1665b lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xe90c5e2d lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa5ec43c4 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd9061060 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x9fb695fd zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xb0d4a37a zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x668a8048 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x68b46786 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x75918af4 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcbcbdf0c flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf1843058 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf437375b flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf7a06ee1 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7b437e47 bt878_device_control -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x90617041 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc4de384c bt878_start +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x27d0f9eb au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3c1a0a82 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3e76e992 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5027ab40 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x69e8a13e au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7c5ebbab au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9aa9c40e au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc6740336 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc6b0b7c7 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb02a832f cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x08bf8f5c cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x240bbf83 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2f4e84ee dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x51731742 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7f2b2116 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x108c14d6 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1cf48968 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x303b741d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3e357e09 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4337dee3 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x48e40317 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x529d627a dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6842dc55 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6deb8c8f dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71edd901 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7860578c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb352af0d dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb9aa3350 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3dbaf85f dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5f498d84 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x75e13198 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa1453725 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe1e78936 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6aca215c dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa50e8adc dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xec5b11c3 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x42922db9 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x429f6b15 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x54ffb5e2 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5b63f352 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x610a9760 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x66c8febc dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6e225c0a dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8333c2b5 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x958af485 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xae0eb751 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd8bc5083 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe50655d2 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x26f6ed75 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2ff76c0b dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7b72112b dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb1c0843b dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb6340f79 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4546429e dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xd3df37ba dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xee8866f6 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x6b834b75 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xb3cad9a6 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5f0cad76 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x1f5062c7 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xbdd7e62c zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xcfc13778 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x11d9ead2 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2cae5485 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x689c0b0b flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x93a8d8fe flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9bb5b6bf flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbaf8e349 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe2be0386 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x511b60af bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x530d0848 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5524822f bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6dd81531 bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe7d7eb5f bt878_stop EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x64fd33a5 bttv_get_pcidev -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8beb87c2 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3497379c bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3cd5b75a 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 0xee730aab bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x279f6317 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x32fce4f0 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xce876307 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3e4ca6d7 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3ee9b6ad dst_error_bailout EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x86a3fff7 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x95a8c7ca dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb4229b58 dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xce4d20aa dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd065f01c write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf2dd6956 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6bacf672 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6cb42c54 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x89b21c64 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc0705c9a dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcdb474bd rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfcb1d032 write_dst +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x17e4448a cx18_release_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4f0acb12 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x70574ff6 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7bced9fc cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaec04a2f cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf3bd440d cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb0dc9dc3 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xca2f8b6b cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xeb490f31 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf550f881 cx18_ext_init EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xbd2ab821 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 0x13cb992a cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x237b58bb cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x23cf860a cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x25c99e6f cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x301a0d83 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3d81c7b2 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x411a6039 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0fd3e165 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2d7e4af7 cx25821_dev_get EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x66b7f520 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6da83942 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa9ce502a cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb2e15eb3 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdb7dbc9c cx25821_sram_channel_setup_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x58b5fb54 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb5778760 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3d7f46d6 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8e92f31d cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9df59fca cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfbd33b70 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0ae14aa1 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1fd5403e cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x56de0b6d cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5734c26d cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8dcb4c0d cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc818ad17 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xedc1c245 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1458e7ca cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x20c5aa17 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ddb7978 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x39f39377 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x45a3671e cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4bb44bbe cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5ad2d5c9 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5bc2d13a cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x96a44edc vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc0bd33fa vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x006dc68f cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x97f5ddf9 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xadfd4842 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc69951cd cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0e43b426 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x23fb89a6 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x38f09f1a cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4555c1a8 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9df558b6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb7b40c9a cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdb2d49d1 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x003d825c cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x02202391 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x09e32abf cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x104d0497 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x13a70e10 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25f4e26e cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3a62ff42 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4cf74dfe cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5720ec90 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x59a65f84 cx88_get_stereo EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x683a3bc8 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x82d17d26 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x720c2227 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7ca897dc cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8868c8b5 cx88_core_irq EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x98e882ba cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa3d2c562 cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa42fdfe9 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xab6a3fc8 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc45e2dd cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc77799e8 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc78ae031 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe5a59001 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe9dcd6cb cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xec4b1a7f cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x004121b0 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x970cf2f4 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb343ea90 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb7f6e91a cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xba998d51 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc841dd69 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xede19381 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf673bb6c cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d38e3ac ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x13c96ac5 ivtv_init_on_first_open EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x31f579b0 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3d384a62 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5993a59b ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6aaefa72 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6bb3f68c ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x770050c8 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x79ab458c ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8a030f20 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8c79e854 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9dbf7fb7 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1a71cbe ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaa4c3b05 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xab78a5a9 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbce1d5bf ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdffc2f7a ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfb2884d2 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x25cae36a ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x32573252 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f805b07 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58254084 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6a35fd56 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x724559be ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8ebb99ad ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x915cff29 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9b64d375 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa61daa2d ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb1f09629 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc239bc51 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd367c4d4 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe8f2e312 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8bbbaf7 ivtv_udma_setup EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0a946c92 saa7134_pgtable_build EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1a8bbe79 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x20bd33d9 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3e793191 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x17c67a1e saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3402c2c3 saa7134_pgtable_alloc EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e418c3a saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x63906602 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6874a8d7 saa7134_dmasound_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x947f078c saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9c7d9cb9 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa7fa6ad4 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcb3af4c2 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd6c50006 saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf006fd9c saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfeda6ee9 saa_dsp_writel -EXPORT_SYMBOL drivers/media/radio/tea575x 0x04dd2f1e snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x06f13760 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x0ca4eb5a snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x3d07d848 snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x6a9e28db snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0x82ffcc0a snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xab9b53bf snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaad88438 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb58db45f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbfbc9538 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe4e0ef18 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf00cf6c1 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf5d36fb3 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf9580699 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/radio/tea575x 0x529ab8a1 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5f1f3574 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8bc695a3 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xaeadbfcc snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbd0c6eb7 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbe9b7261 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe72b603f snd_tea575x_hw_init EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x0edadeae ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x7e0a5416 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xaa07f8fb ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3f241053 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xef11721d fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe2131554 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x03dd5e7d fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf9a721ad fc0013_rc_cal_add EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x685408e8 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xd5994455 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x07d22488 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2ed3f15d dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x31f13b3c dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x34173cd4 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6fa7a297 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x916f8121 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbcdc369c dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc14e2cd5 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdbb7d6f4 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3cc16f2d dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x509b3a16 dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x51140b62 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5176f85e dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x552a5522 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x8bdfbef2 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbd3c17c6 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x003f0f22 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x06434598 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x08cbe66c dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1d4621b9 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x38fc6e74 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x68a79fdf dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x91fb916c dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb9056c09 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfa1551a9 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1ac8a991 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2b495393 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x354e7d37 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x409f2fac usb_cypress_load_firmware EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbae21b67 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x29346d4e af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdb104a75 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe53c617e dvb_usb_generic_rw EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x35f45b77 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 0x133a84a4 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a7bded3 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4e18b27c dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x604ed12a dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x73032692 dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x881665bc dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x11a4b5cc dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2b7df997 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4371d2f0 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6862e710 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7d7a270c dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x88b39780 dibusb_power_ctrl EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd9e46fcc dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf000ab5c dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf145d9a2 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x2049a147 dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x9cbcfba9 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xb9893e3f em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdb486c12 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0b7c3f00 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1c67df02 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x25eae686 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2dbee4c7 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3a2fddac go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3de5ea57 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x526af451 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd42fe44e go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff4bb11f go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x36d27562 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4fb1ad92 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x754ed05f gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x778e4d1e gspca_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcd09a919 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xce3c6f7e dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd94b14b3 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x61ceb41d dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xad8bb957 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfda6e9d2 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xff448edd em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0a8a4307 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x24262c97 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3705e28d go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x74afe8db go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7d5339c9 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa2d395bf go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb8b3024d go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbbd28adf go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc3b52535 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1640cc1b gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x507fac82 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5706b678 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x70bb7ddc gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8762d05d gspca_resume EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaed131cb gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc17787ef gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc3871eeb gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xeb9f6123 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x5d471c70 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x76801dba ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x033fce48 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1c99369c v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x384b20d8 v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe49a1bb9 v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xeda6ebc2 v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xff6ba651 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9ccccdfd gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc95eca08 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf28d7c6 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0c315f30 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x27f65efa ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3170d37f v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x602877ff v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6832a56c v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xce2f69db v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe34e954d v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe7b0276c v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0d2d99b2 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 0x504d6a1b v4l2_m2m_get_vq EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5c7169dc v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x99158a48 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc7625b6d v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xcd66911a v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x6eb47173 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf06530af v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01085f97 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x015902c2 v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x052dddd0 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x010f6b0b __v4l2_ctrl_s_ctrl_int64 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0783cddd v4l2_ctrl_add_handler EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b82a2bf v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c4f051a v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c80e52e v4l2_ctrl_handler_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x138a1b7b video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13e1c625 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x126104f9 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x161f3d5a video_unregister_device EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1851bff6 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18f165f8 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ae7ad26 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d383cce __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x232b7f85 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1dd3e6e9 v4l2_ctrl_new_std_menu_items EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x25ff7f2b v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2374db65 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x237f2d07 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23e8c53c v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d8c0cde v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2da8f100 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2db75517 v4l2_ctrl_request_complete EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34a83700 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34dc3b36 video_device_release EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ff98bf v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x388da3cc __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x395a6947 v4l2_ctrl_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b86cd9a v4l2_ctrl_fill EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4331fec0 v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4500e597 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a9bcd01 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e9cf111 v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53b85b0f v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54c4f6fb v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x551d943d video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x583ac4df v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x612d19e6 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6845b2b2 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x695ff70c __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c720797 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74b531fe video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a998237 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x410e0880 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x486f218f v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x510ceb0e v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56e2dad6 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x592aa100 v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a2db01c v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6855b289 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cf6a590 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x712186a7 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78d432b4 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f22e008 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80ee78f6 v4l2_subdev_call_wrappers EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8945b318 v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81f56797 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89c44769 video_ioctl2 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b9d5c3b v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c758be1 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f1a0319 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92f2a915 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93cca393 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa4f0635 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb299a8ec v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c5f61f1 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e4ae495 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ec790d2 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97135928 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9996e787 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b8b64f6 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa05bfcba v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa570e5b3 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaaa0a9dd v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaabd7738 v4l2_ctrl_type_op_validate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbba2538a v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb2ac70a v4l2_ctrl_handler_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcbe9711 v4l2_ctrl_type_op_log -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe3de61e v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc00ef97d v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2570ad0 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd9383ca v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe22d77a v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc61e98dc v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca1ce100 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xccd644c4 v4l2_ctrl_subscribe_event EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd35b6efb __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0e3360b __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6a06aca v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddb3cf97 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2202cf1 __v4l2_ctrl_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe46365eb v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe643653c v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7bb64b0 v4l2_ctrl_type_op_validate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed64ec02 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0d8a83c v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1a4e77e v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf27cadfb v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5621137 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec190cd3 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed258c76 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed64475b v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf058c53d v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1385cbc __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf27fd003 v4l2_ctrl_sub_ev_ops EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf45840a3 video_devdata EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9df7356 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfade0d56 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb77cd6d v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe273c6f v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0a9c4367 memstick_unregister_driver +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc99c4d7 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd947256 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/memstick/core/memstick 0x01a8149f memstick_register_driver EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1b4f2909 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x22de86b1 memstick_next_req EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x30f3b87f memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5dd20469 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x69f59273 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bece7ec memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d84e340 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9f90fd8d memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xa427c6c3 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc84d7ee5 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe8308a12 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xedf4a8a1 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xf7efaeda memstick_add_host -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0247f07c mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x096d9433 mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d1d62d4 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13562219 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15c7eecc mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2bd8a2e7 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d998daf mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3861c4ba mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e0584da mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4998a0d0 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49a4e3c7 mpt_reset_register +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4670b775 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x50b471eb memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6870660c memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x71733d67 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7839a03c memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x86bd3e78 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9fdaa9c1 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc7464213 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd24d5d4b memstick_free_host +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x07845cdb mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x099c3e96 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17067ee1 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x189b91a3 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1daeb77b mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20466efe mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2208a5d3 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2997cdfa mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ed2981b mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x42c6dab8 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x44d9a953 mpt_reset_register EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5179446c mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5cbc2a9f mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5fa3dabf mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55c1849f mpt_HardResetHandler EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63a58cda mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x64816862 mpt_detach EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87178235 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d673b54 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c2ae730 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e842512 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80443d9c mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86140514 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9621b3ba mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x973ba7ff mpt_findImVolumes EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5e96a33 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc22d2f5a mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcd752973 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6448fcb mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd669dcf8 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6d43479 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5405e71 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa84922a3 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb79baf22 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc09971a mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc33271e4 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd300b9f2 mpt_raid_phys_disk_pg0 EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe0bcb446 mpt_put_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe8fabbe8 mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf07d488a mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5b142b7 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf8d782ab mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfefc0a6e mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0953493f mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x09632fb7 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11e8467a mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x12e23e38 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1db3fd62 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25e40c06 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2bcd06ef mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2c2ec151 mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36282850 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x38c78e13 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x396f5b19 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7bd86249 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c734ff6 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d72931e mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x98efbd54 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ae3999a mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9b475d5d mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0feffb0 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6b0d6f2 mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7f55f39 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab215e52 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xad2f4d68 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc832a046 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc9f2cddc mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xebeeb413 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec688759 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeedde5e8 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/mfd/axp20x 0x147ee0ad axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0x1f993550 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xeaaff367 axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x16a2f937 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x6cbb115e dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xd513408a dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5d315bec mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6af80a49 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8bd4ab4b mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9e2551b6 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa2ed7e71 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb4b48b74 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdf2ffd3a mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe7ba9d8c mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfaef1363 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfb185618 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xffc6c8bb mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea5e2744 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef3a9a12 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3efe161 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf8be80da mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03e1e288 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0facbccd mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d6323d5 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x27d81669 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b24ea2f mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x339b2a0d mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4889c7d5 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x52a5e09f mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x673a22b6 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x89eae2f5 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a762dc1 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ee3d297 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x934237b6 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c75c81e mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaf74843d mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3b606a5 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0306c8e mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5e14d58 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcc289fa9 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2c9ae51 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd95d42da mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdfec0675 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe75e5947 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xecc70f99 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7c6cf84 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf986bbfc mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfdeacff0 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/mfd/axp20x 0x33e8ac5b axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x4615b501 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xb777f401 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x367cecb1 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x5e82a988 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x6460ba61 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x04da69fb mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x233cc200 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x34e025ec mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5311e7d1 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6506873a mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x651edc2c mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaac18c9d mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb1b9c0e6 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbe55d449 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc17df328 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf0968946 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 @@ -2304,54 +2304,54 @@ 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 0x21fb04f4 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x44fa1871 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x62e3680e wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x8ca3bd40 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x9d3e5ef0 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xbe9906d9 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x12da43d0 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x20e0f849 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x20fd9b92 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x4c8a54f2 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x8db841fd wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x8f48bfe1 wm8994_irq_init EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x109d224b ad_dpot_probe EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb0cbda99 ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init EXPORT_SYMBOL drivers/misc/c2port/core 0xeae67352 c2port_device_register EXPORT_SYMBOL drivers/misc/c2port/core 0xf5c0d877 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0897efa3 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x09afd4d0 tifm_free_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x11c43d2b tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x3204e285 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x3a4d522f tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x7abee70d tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x7dc5da49 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x83999a59 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xb409a3fd tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xbf4754cf tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xcc917647 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xe127f197 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xe6bec819 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xfb27621a tifm_alloc_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x127d3cf1 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1934f97b cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe7a0b5f8 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf535887f cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfc25be9d cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf22164ab mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf26b66d7 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x23e0f462 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x34db1f32 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x505deab9 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5964a8f7 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x61732bfd cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbc813674 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbdbb8193 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/misc/tifm_core 0x2059e1f4 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x32ba5fa3 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x34c9349b tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x427c9f35 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4547ae5d tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x562a0484 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x97619ea1 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xaff38341 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe2740fe1 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xfc986749 tifm_register_driver +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1520fad9 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa0d7b66b cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xbf7386be cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xef2b5ac5 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfe1ebc7d cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x923d1fe4 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xfa5a9a33 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0962496f cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x11f0f7de cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x62ef328e cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6712a764 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6faf8312 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf2220752 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf29a0b25 cfi_build_cmd EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x79f43739 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa68ea3b5 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe9ebc40e unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf99cbdc1 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x7b1c3088 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x496c95ec lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6848acb8 simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x86f43289 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xfc2350a5 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4182bbaf register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5cd66b56 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x62e1d68e unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa105fb53 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa526d514 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x19f2675a lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x670a743e simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xe0e03713 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xe551bdd8 mtd_concat_destroy EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0e5d733d nand_ecc_init_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0ec9e917 nand_ecc_sw_bch_get_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x195ebf46 nand_ecc_get_sw_engine @@ -2376,131 +2376,131 @@ EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe8835cd8 nand_ecc_get_on_die_hw_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf6b3308b nand_ecc_sw_bch_init_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xafe96c81 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb83e59a3 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xaa44e9a6 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xe6d4ec92 flexonenand_region EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x9785415c denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xf8926672 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0259828c rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0988124b rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0b588179 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x194ef1cb rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3cb3b740 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3f630e6b rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4474affa nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x532f27f4 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7f071a00 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7fada907 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x80daaec8 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x86f42277 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8b3b31be nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xb6bac49e denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xdf64d09c denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0a5ef7a6 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x31d45800 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x65d3f7fe rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x81e204f7 rawnand_sw_hamming_cleanup EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb38375bc rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbc2f17dd rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd22302e9 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8f289010 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa482adb4 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa7e2fd02 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb3822cc7 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb797d4d0 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbba656ea nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd42c05dd rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd48eec0f nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd7fbd11a rawnand_dt_parse_gpio_cs EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe2c0001d nand_create_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x02888fdc arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2b16a76b arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x358b3640 arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3e25ffd1 alloc_arcdev +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe80f93f8 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfbaa0ff7 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfcbe7c57 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x015aa516 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1f5e8eaf arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x22e63577 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2489b9e8 arcnet_send_packet EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8b48620f arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8797b32 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc35c34d8 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc7ae939c free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc96c4039 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcc722180 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd1b81c0e arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8bc0a7c6 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9aca21ad arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbc635779 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd75a00f9 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe9464c6e arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeb0a62f6 free_arcdev EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x928aa73e com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa73a0b88 com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf4977008 com20020_found -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x04e383b0 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x0ccc6af2 ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x30883b4a ctucan_suspend -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x70bb6393 can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xb1f02cfa can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x007c6997 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x074f4120 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2193c138 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2afb3609 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2cd017e4 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x398a0394 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a41372b b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5497cbe0 b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x595b2a22 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x673797f2 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x675e8ff3 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6a668abd b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x703daa11 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x755de19d b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x773772da b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x779335dd b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8497b623 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8907671e b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c1f6fb2 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8dcf55bf b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9fc91e82 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa042fa8a b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa08755e2 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa553c31a b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa93afbac b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbe7b51f7 b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbeaa3d8a b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc37a1800 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc7d60d29 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd28787ab b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdd8ef614 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe139c653 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe6ac276d b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe887df74 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9b32772 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xede7c6cd b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf6e16b31 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf81a041d b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x12e04a18 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x18b87452 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xba097542 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xff3f5ae2 b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0e1e3c79 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3013be2c lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4f1e9180 lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf487e645 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbb3dce03 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd7b76f04 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf019baf9 com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x40e32345 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xbd086a69 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xd40c9b48 ctucan_resume +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x9578303f can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xc378f5b7 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x016be6f0 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x098d7c21 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b036bc1 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0cbf00d2 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x159a51cf b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1603b199 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1a5beba1 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2fe931a5 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37f8edec b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3812d147 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4df14103 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f136a20 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5d8a25d9 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f2a42c1 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f5b26ca b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7019c3c3 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x741576d3 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x79d3343a b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7a5cb4f4 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e15e5e7 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x843b097e b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8490387e b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e4ab0c3 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90201abb b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x908c3f17 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b78efa1 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9fe69bc3 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8af0dac b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb16ded07 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xba2c6db7 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc70c728 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcac578bd b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcd6b8032 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd3b81a25 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd66ef72d b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe0b50943 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3f360c8 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc8fc22f b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x045885f0 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x1364727b b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcf6425d1 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf4b8e8e8 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x39318296 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x3fc7e300 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x964ecede lan9303_remove EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x28c0a2b4 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x2e71a60b ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x9fb86df0 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x579aad03 vsc73xx_probe -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x79711213 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99722ff0 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x183f5e5b ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x986fd6b6 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xd903ba44 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x31ce9f3c vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x560dbdb3 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x04307f44 xrs700x_switch_remove -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5d710cdb xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7e57a69a xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf0f76688 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x06b8fdb0 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x34931388 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x735366e1 xrs700x_switch_register EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x9df8a9f4 xrs700x_switch_register EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0682bbe0 NS8390_init +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xed93b810 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x041abfb5 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0860086a NS8390_init EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1ad51723 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x21d300f4 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2b275ccb ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x87aaf26b ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x977998b9 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa5452a49 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xceb2ed6c ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xda5aff75 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeb923711 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x299bc57e ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3040581c ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4053c7cf ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x48cd0850 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4ab03bee ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc2e0efa7 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc8f66af5 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe6754f1e ei_get_stats EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x117836c5 bnxt_register_async_events -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x535907e6 bnxt_register_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x95ab6bea bnxt_send_msg -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xf2cc537a bnxt_unregister_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x6080a2db bnxt_register_async_events +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x755e9370 bnxt_register_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xc6b621b7 bnxt_unregister_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xc7964494 bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x4d93d97d cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xaf424deb cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x10efda59 cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x274b28d0 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x603d6c41 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x92c57018 cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count @@ -2518,314 +2518,314 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x00f2af1b t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x626899a0 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x64cf1508 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65c7c2ef cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x759cbe2b t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7d1589da t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa18c95b8 cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xad063d62 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb6cb202e cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbbc598b5 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd646db0 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc419249 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcd4d71cd cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf724c00 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe199d46e cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf56c8431 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0106fff2 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d2f16c4 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d6a06f9 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0efe19ab cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x08204c14 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x302ebe13 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3213f947 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44ba7041 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x594ba60a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5acf02c7 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x673bdab6 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x82f0f250 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x888e7f93 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9680b9cc cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb99f8745 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb7032b9 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbee77fcd t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1f28123 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcb0b2113 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcf38c6ea cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0bee5463 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d0d23fb cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0dce1b2f cxgb4_select_ntuple EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1091de78 cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x141df459 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x156e0380 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x179e1dc6 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x246a47fe cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x256ebef6 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2651f5cd cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27e55afe cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32d8575c t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c373726 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e121b14 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b686009 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f5781c1 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x143d97bc cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x178c9c2a cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c3444fd cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34883bd2 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3ac6f661 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42b5ff21 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ae1081e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c694959 cxgb4_alloc_stid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5407fefb cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6546919e cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6afb6d98 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d98f0b1 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c13672f cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c66dbff cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x995e4c0a cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ef6ce5c cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa545316 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa7b3f5e cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab890290 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7636c8f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbeb5f107 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2320d4b cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4bcc18b cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5096bcd cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcccb5328 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd1c31ce cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x574b0fa9 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a2714fa cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d09f88f cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5e7b1f7f cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5fab08f9 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6063f62c cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x642764ad cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64469e93 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6778bf41 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a3daf21 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6cfc20f5 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d90df0d cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x709cc33c cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cffc493 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ff834f4 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c4692cb cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x966f75da cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9817deb3 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a34d88c cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9a456a59 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa09309b8 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa30b4d90 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4414cf4 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa660248a cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafd90445 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5163749 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb80df4c7 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb89db88b cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc217a91f cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4f69f12 cxgb4_reclaim_completed_tx EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd930ace2 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb0784ef cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb483b5c cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb5c2a65 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdca099f5 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0f5fe14 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1d91320 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5cc5773 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9caac7f cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda1c6f68 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1664775 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4f43a7b cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0410ac9 cxgb4_iscsi_init EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf31a23d1 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf37d61e9 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x0231fd95 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2ffc655 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x185ecb08 cxgbi_ppm_ppods_reserve EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x243202cc cxgb_find_route EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x895a0855 cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8fc99b91 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xac1e1ccc cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc98e59e5 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd49928c6 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf99ba1a9 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0c9d8a3a vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6a023c8a vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x70c5989e vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x781e05c3 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7ba5a264 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x939d5e39 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x543dcb24 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x80357256 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa6623243 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcabeb5ca cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd85e4060 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4e38c535 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x64cf7611 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa53394b0 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb7d6e768 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbc2734fe enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfb46986d vnic_dev_get_res EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd92865ab be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xfe58feef be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xe841e89c enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb2cb0588 fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xec638702 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xecc04751 fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xfb2723b8 fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7ebed624 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xfbb32a89 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x755aadbc be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xe76748e0 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xa34f05c0 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x3c08aa05 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x998e0b83 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xbc5d53b6 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xf31e5880 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x19f00a6b iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xdf1c1d6c iavf_unregister_client EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xf69f21b1 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xf6eea9e7 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cf73acc mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f7a675 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20a7ab54 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2afaa770 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e87d22f mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3818a1a5 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x459f8ede mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48bfd5de mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49eb9e1f mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a64024b mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4423b1 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x625c5004 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c090ff mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x675826f9 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cbd6bb2 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7356e46c mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75aee49a mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7be16c62 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xdc86d3d3 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xf6d8f61a prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02b23992 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x040d81f8 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04afabad mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x063c4726 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e59db8c mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1018353a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ad8cf5 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a8e1907 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29042091 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2de57473 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3762763b mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x391bbf24 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43264249 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d0cd831 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5203daa2 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eacc544 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69320ee8 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c06f01c mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x713592e2 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x770b464d mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7920eaa8 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a82b84b mlx4_SET_PORT_fcs_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81a59d0d mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8674fcca mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87c6c005 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x889ce161 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96bbfb79 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x970c6ab9 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a4799a2 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c9260d6 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28509dc mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf2fc8f2 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1cb3def mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9839b4f mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb853197 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd3c1b53 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd412ad72 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd90a60ef mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde7bd316 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3493aa6 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe39f49c7 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe40acfcf get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe540b29f mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9c234bf mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd546cc mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedcf54e1 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6962f99 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf866ea42 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8263d2e2 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87c42452 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a7e31aa mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d91f3e mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x988f1d51 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa02bef7b mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a18ba5 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb078edbb mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb73266f7 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0ab3b38 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc661e12c set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9e14a3d mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb4f6879 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc060dca mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe04ccdbf set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3230456 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe68f5f5a mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb65979e mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed37ecef mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf367b130 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4e0b3b4 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8a98d98 mlx4_put_slave_node_guid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0005d56f mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01e697e2 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0544b1b6 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x080fcb4a mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aab6724 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c07cabf mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d59e092 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e246e45 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4ca7b8 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02150703 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x035fc731 mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x068df974 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09b73c3b mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a05e64a mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a3e5a8d mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e8dfef0 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e8e05f0 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1179e90c mlx5_lag_get_roce_netdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12135c1c __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13445f7f mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x141b179f mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1487bee5 mlx5_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x148eab41 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x154e58c3 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16990247 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16a350be mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e1726d mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17ef79ba mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a2e64ff mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bf7c1a2 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bfa7832 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d659509 mlx5_cmd_cleanup_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ec5bbc7 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f7eba2f mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2331ba7c mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24be813b mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2712722c mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2839c02c mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2871af00 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28df034e mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2906ae9b __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b7bc799 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cb0aaa6 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e3c67a8 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e504019 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30955ee4 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x318a5df4 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31a54d4a mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32f4d914 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fef08e5 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x245fcfe3 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24758f69 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x254be123 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25a84fef mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26bd9882 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x289b098c mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29b31922 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a9ccbed mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b76ec9e mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d3e11d8 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d98a3a0 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f1794b5 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f72b131 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f9f5657 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x305aa593 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30658053 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31da5062 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x346a6137 mlx5_lag_mode_is_hash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3558b231 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36e4521e mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38f09fc5 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c1314a6 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cc196de mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d258adb mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d8bd323 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dc785e6 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fd668c4 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x364b9ddd mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x374e159a mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3762ef77 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38769cda mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ac6dc8b mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b510fd9 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cca0166 mlx5_vf_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b52e00 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x463a230a mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4899fb5f mlx5_rl_add_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d62e046 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4eaa7e92 mlx5_cmd_init_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ed3f5c0 mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x502dbedf mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51270f17 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54a0788f mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f8db98d mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50c44d09 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51a1dcb7 mlx5_msix_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x596e7c84 mlx5_lag_is_mpesw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c1a4cf3 mlx5_msix_free -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5da326cf mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e47db50 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57e876d7 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bdfd406 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bfbbe33 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d5e8780 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e01ff7c mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e370d46 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ffb14a9 mlx5_core_query_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64969dbc mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x684c9cde mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6874ed5a mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62226e5d mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x639f1a9d mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e337f1 mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68cb5a64 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69230233 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bc5685b mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bec1eb6 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bf45dd0 __traceiter_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd5a182 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ce5ce33 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6da3e01a mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e35c89f mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eb507d4 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d009af1 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6febe253 mlx5_cmd_exec_polling EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a68940 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x728a0edb mlx5_eswitch_add_send_to_vport_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73fc1d8e __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7445a1a7 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x752a67de mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77879489 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78dcc8a4 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x791dfdea mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x799b9246 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a1273d0 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a16cf26 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74d4aa16 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77b8c590 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7851768f mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78d5b160 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a5c2ae2 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ac022d2 mlx5_core_dealloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dce032d mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e39bfab mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b6717ee mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7beff2fc mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d2eb1ef mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ea960b3 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eec26bb mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f0b748a mlx5_debugfs_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8059ba1c __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82e073ee mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83a36d48 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x847b4aee mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85512093 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8805880c mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c35df4c mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841419f5 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x849f32c2 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87229dce mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88ca7cb3 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b71d19e mlx5_packet_reformat_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c6e61ad mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d65959a mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90264804 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x914aefc1 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91b6e7af mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f8d160b mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ff90399 mlx5_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9300254e __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9499b10d mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9539d090 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9590fda7 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97072ad5 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b364cc7 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d391f5b mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x999d4da8 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b0a990e mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c24d666 mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d56e25a mlx5_eswitch_vport_rep EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d769a52 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e9175dd __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa003bebe mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2142728 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3d5aa03 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5af2581 mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac205dab mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad2f3dc1 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad33fc1f mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f8df6bc mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa358ea17 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5921378 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa74d64f5 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7af1d91 mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa2683d9 mlx5_fpga_sbu_conn_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaec4ac20 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaef1dccd mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf12d58e mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad76ec73 mlx5_qp_debugfs_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafb0170d __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafc3d8a0 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafe6b393 mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4f60443 mlx5_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb87aa588 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba074bf3 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb17a3ebd mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1aba9c6 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb268a07c mlx5_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6b597ac mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb762354d mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8356f2c mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb92bc2c3 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaa5306c __traceiter_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb07ebdf __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb2015db mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbfa6ebd mlx5_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe1f04b8 mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe2f22db mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc090f506 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc766db4b mlx5_free_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca6e02a7 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb259250 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdaf7a06 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdd2309f mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce6302a4 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xced9b4a6 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcef78580 mlx5_msix_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf1c6a29 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1ff6f3f mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3ea291e mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc60e31f4 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8e75e86 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc91cb851 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd157c65f mlx5_rl_is_in_range EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1978c87 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1acb903 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21884bb mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd28ee732 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd424ea3a mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd585b63b mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd80da617 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2790a23 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd47ce146 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4928a47 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd501a77c mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5670b20 mlx5_cmd_create_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd81236c7 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd99dc8cd mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9acb692 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdae8aa4d __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb91d0cc mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd402181 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdeecd296 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe09c5342 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1465b74 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1aa6d11 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9a8a0e mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1a45dff mlx5_core_create_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe36360c5 __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe38a70fa mlx5_core_uplink_netdev_event_replay -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe396fb57 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a1711f mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4c69de5 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5063158 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe77489de mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe90de9f9 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe94f12a4 mlx5_fc_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9d14144 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea24d916 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9ff8e68 mlx5_lag_is_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec0a7488 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef39c0c6 mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef735db8 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef6aa530 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf06725b6 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0ce6270 mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1eb03c3 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf34c235b mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37653f6 mlx5_eq_enable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52e1946 __tracepoint_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9889c5c mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8c22775 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb0763a8 mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffb08851 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffd8a6aa mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe30a7fe mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffaf8086 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffcba999 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffdec846 mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get @@ -2834,7 +2834,7 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ffe1b21 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x13883bd1 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put @@ -2842,19 +2842,21 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1e4ead7a mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1e7ec674 mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x22d4f36b mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2215a4f7 mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x299e2562 mlxsw_afk_values_add_buf -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2a0158cb mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c6b85ac mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f8e0d0d mlxsw_env_get_module_eeprom -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x325c5084 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30975ef1 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30ee2e66 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3cfc423c mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x463335b6 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec @@ -2864,40 +2866,42 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a4e41d0 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ce84a39 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6201e1a6 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x756daa5a mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ad2edac mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f6f6534 mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x870f82ef mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87c35f10 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8f5ffe37 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x893335d1 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x939b8288 mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x94d9710d mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x983222d0 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9bd6e099 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa3f5df53 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaed0277b mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xadc3bc2e mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5ac8b1e mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear @@ -2905,14 +2909,13 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc7b391f0 mlxsw_core_trap_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc969bcfa mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xce406565 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd199e0da mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1bab622 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4e149d4 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip @@ -2923,166 +2926,163 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe2c9c5af mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xef52e17c mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf6db8816 mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x1593599a mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x22fdfa64 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x7d1db22f mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8c2de383 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00920c7b ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04cd55fa ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05f6a6cf ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2ed32cb2 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xac3a1b81 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x14ab62a7 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xd6d2d2c7 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00414821 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08236427 ocelot_port_set_maxlen EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08791cd6 ocelot_wm_enc -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e7ada70 ocelot_pll5_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10699508 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11178c1d ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15089497 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a763ed3 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1aa59b2c ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b6d1385 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d58a35c ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1dc037f0 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bf114b0 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0952f09b ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0de37bc2 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11b4bbcf ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1528d462 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18000f7f ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25026330 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2566ab8b ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28446827 ocelot_vcap_filter_replace EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f972c2b ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x380be268 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e7def1f ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42c6dce7 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x476fa468 ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47a768f4 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47ca5e06 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cf3588c ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d79e439 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4daf315f ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5302cb44 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54d06ebf ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x59eeddb4 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bd3703e ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5dc9634d ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61821313 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61fbd0ea ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x679c91c6 ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6cb834a0 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3171c79c ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3318e0f3 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34ca2d1d ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36a17977 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37560cbc ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3928f735 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a4b735c ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3bc4448d ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41023950 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x471d68b0 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4860570b ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4bdb82b9 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ca884d1 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cfb90ca ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d46322f ocelot_reset +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fceacdf ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52b5fb3a ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a83477e ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5e56d840 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x613b1083 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x634d8739 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64b5105e ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66b368f8 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x699e01af ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6acd29c0 ocelot_xtr_poll_frame EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce19e2a vsc7514_vcap_props -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6dc099d0 ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72255205 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6df158a6 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6febfedc ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7497ba26 ocelot_sb_occ_tc_port_bind_get EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5aec55 vsc7514_regfields -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f5b397c ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x804b55f4 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82820270 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8421c554 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86a43a33 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88282528 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x88d4df55 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d8f3c4e ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9112f942 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9268f638 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92bd6024 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93cc8fd9 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9437d298 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bb46b57 ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c9343a9 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa148a394 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1a001ce ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa26040e6 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa389457c ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7c17012 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa82edbae ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xafc9eae7 ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0a911d7 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8026ffc9 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81b2da6d ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8780df6f ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8919ff5e ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d7fb194 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ecd26a9 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f2855a5 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9867010c ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x992fac1a ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b9c0f29 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e63f0b6 ocelot_pll5_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4c7ff45 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa74d390b ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaafc6398 ocelot_vlan_add EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0fdd7fd ocelot_wm_dec -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb71d40ee ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb8b95413 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9f6e816 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1748e29 ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5b24daa ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc740d021 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca50a4d5 ocelot_reset -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca606167 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6635275 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba79d8d ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc6875b8 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe3496dd ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4a02db6 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4a97d50 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4db2abb ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7b07953 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcb9d0ac3 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd1c80ad ocelot_get_strings EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd15fbf6f ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2f7bd60 ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd6041f8 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde8aad45 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7b92717 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7bad2b8 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8e48671 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb742df6 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfaa842b ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfb4939a ocelot_get_ts_info EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe30fc619 ocelot_wm_stat -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe58862e2 ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8d64997 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe97bff88 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea66f382 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed367e5c ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee0b951a ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3d083a3 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3d6fd1c ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5afdfd4 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe73cacf9 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9cbc0e8 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4b441e0 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf700fb92 ocelot_ptp_settime64 EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80fc88d vsc7514_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbffdff5 ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0080e951 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfde407ab ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1f9d2be2 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2695fc7f qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2c27e5bc qed_get_iscsi_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x550445f2 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x82f5eb9e qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x90075aed qed_get_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa6d73571 qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x631a2523 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x805fde4f qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0aa3b4e4 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0f4a1672 wx_reset_interrupt_capability -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x104bdf2c wx_get_drvinfo -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x13e65ea1 wx_start_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2561ca52 wx_clean_all_rx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x378a9308 wx_change_mtu -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3b159415 wx_clean_all_tx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3b48ab26 wx_disable_rx_queue -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4440a0c5 wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4794c81a wx_free_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4acbd3d1 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x4ffd4540 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x62cffca5 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x000cb703 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0141697e wx_clean_all_rx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0200f899 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x04ea14ac wx_clean_all_tx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0c49acc1 wx_vlan_rx_kill_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x13400f91 wx_set_mac +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1861561a wx_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x218e4550 wx_change_mtu +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x22121378 wx_xmit_frame +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x23586c5b wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2622020a wx_get_drvinfo +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x262d08e3 wx_set_features +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x26b10562 wx_vlan_rx_add_vid EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3398bd wx_msix_clean_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4f47b2ed wx_clear_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x55b5f351 wx_vlan_rx_kill_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5ac7226d wx_set_mac -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5aeebc14 wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5eae924a wx_free_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6a9196a0 wx_init_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6da74532 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x735d4dfe wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x75856282 wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7ca910f7 wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7f0f24d9 wx_configure -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7f2759b5 wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8a8afe17 wx_napi_enable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8cc114c9 wx_set_rx_mode -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8cdf2a39 wx_configure_vectors -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x947dd61b wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa164f890 wx_setup_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa1a20826 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa2605395 wx_set_features -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa3143f27 wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa5f48775 wx_setup_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa66f4413 wx_irq_disable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa7d9f104 wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa89ac586 wx_xmit_frame -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb7843ff1 wx_napi_disable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbf0cf01c wx_vlan_rx_add_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc6a443c5 wx_free_irq -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xddcef4c8 wx_mac_set_default_filter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe0492677 wx_intr_enable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe6ff30f5 wx_misc_isb -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xec4c5b41 wx_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf1f48eb5 wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf5d2f52e wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf80cc343 wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfa182fc2 wx_flush_sw_mac_table -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1f8fadde hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x80926cfe hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xcef1df2d hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe9b9fcfe hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xef7ec55b hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4e42867c wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x585d1d67 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x69a4233a wx_init_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x739df00f wx_set_rx_mode +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7719b8e7 wx_intr_enable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7bcf8beb wx_flush_sw_mac_table +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7c59bc20 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x80f862bf wx_disable_rx_queue +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8435666a wx_configure +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x84a047d9 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x88e26482 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x897c2654 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8c45800b wx_free_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x92aae963 wx_reset_interrupt_capability +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x941d2905 wx_free_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x983eb594 wx_clear_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9cefe608 wx_misc_isb +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9f60f37e wx_irq_disable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa28cbb9a wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xab489ef4 wx_setup_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xab63eda0 wx_free_irq +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xafcfcc5d wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb824f6ba wx_napi_disable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb9247f29 wx_configure_vectors +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xba40f15f wx_start_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc42af463 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc8f3a287 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd050d9d6 wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd9abe748 wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdbc5dd99 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe5f243e9 wx_setup_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe7397791 wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfa025ff7 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x183ee4a4 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4efbed69 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x946700f6 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xaa7bd5ec hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb9fa39b5 hdlcdrv_transmitter EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x62eb612a mdio45_ethtool_ksettings_get_npage @@ -3090,1105 +3090,1107 @@ EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x15632f76 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x4742e1a5 mdiobb_read_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x86c55b34 mdiobb_write_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xae008562 mdiobb_read_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xbb6da5f8 alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xc405821b mdiobb_write_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x055dbe9d cavium_mdiobus_read_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x6267aa3b cavium_mdiobus_write_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x6f995a42 cavium_mdiobus_read_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xab6ce982 cavium_mdiobus_write_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x72b27443 mscc_miim_setup -EXPORT_SYMBOL drivers/net/mii 0x0d19a5c5 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/mii 0x1c601e08 mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x2751b650 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0x2a69826d mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x2c746380 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x5f447033 generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x7c264fd4 mii_check_media -EXPORT_SYMBOL drivers/net/mii 0xb7a6c55b mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0xe8171697 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xf073ddfd mii_ethtool_sset -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x4912ef35 lynx_pcs_create_mdiodev +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x3c051f3f mdiobb_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x460c377e mdiobb_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x581a8a3a mdiobb_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x812d218c alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x9643d8e0 mdiobb_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xe60d71a4 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x0cce4790 cavium_mdiobus_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x884f362f cavium_mdiobus_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xa7d61e61 cavium_mdiobus_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xefd964fa cavium_mdiobus_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x1858d9a9 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x00cfd1a2 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x247dc4f2 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x45aab699 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x56853421 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xb97edf05 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xceebaa67 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xd0eb6dfb mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xd85482b5 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xdb91c091 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xec756c0b mii_check_media +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x25444de9 lynx_pcs_create_mdiodev EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x6d933508 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xc857ae8a mtk_pcs_lynxi_create EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe9221a05 mtk_pcs_lynxi_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xf7db6b9e mtk_pcs_lynxi_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xbe98478e bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0413dc42 pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0f0d8840 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3fc3b443 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x8168a4a1 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x6ce7bf63 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x2ba9b124 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4b77dc3e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x93535b4d pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc4a0b7ab pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x6de38a16 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x2bf938d5 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x32ea7378 team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x35726168 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x38a552e2 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x84a06d80 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xae7bad75 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0xbb5fee96 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xf148699c team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x0b9d3004 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0xe87957e2 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0xf9f89fee usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x0d70f085 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2b0bf2c6 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x33cb0225 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4a77e0f9 hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x96f79ca0 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x97f106e5 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb1a3743d hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdbe2ebf1 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0xdeae4348 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf1de73e2 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/sungem_phy 0x6bbe2076 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0f26ae4a team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x1dbf5c72 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x74f2effe team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xa78b5eb0 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb8d2281b team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xe3849bc6 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xf1f80088 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xf6246e53 team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2999d6aa usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6f551255 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc1b4d4e7 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1e895f16 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x38bcf094 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x414ebabd hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x576e4a77 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5dfe3488 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7062e93f attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa769482a detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xde1ab2a6 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xea6d18ee alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa363671 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x07aa79f5 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x39cc2579 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x15f8d601 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1b15dadf dfs_pattern_detector_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x46defb79 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5789acba ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x609d9f43 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6f081e17 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8be2f476 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5998cdc9 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5a862d4b ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x63289ace ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6c3ae6e7 ath_reg_notifier_apply EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb064c364 ath_rxbuf_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc9c63d68 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xce464152 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd4459ad4 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdac56525 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe00f8824 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf005baa7 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc63ac86a ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc13fe0d ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0707c30 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd6d2e58f ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe4905b73 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf745a783 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00ad99ad ath10k_htt_rx_pktlog_completion_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02b236e8 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x03bdf4ba __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x061dff42 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0925fb9e ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16f5eb55 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d111c0c ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f4065da ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25aa93be ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2aad6ad3 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f7a612e ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32a9c79a __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36dfbe79 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x489fa386 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48ce3c5f ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5066c28d ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x508ce2fb ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50d9a5c2 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51ecb118 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5341921c ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x548531a3 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a4f3306 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6dc94644 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7066f8c8 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70e3587b ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7357c239 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f3a6ffb ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x813e45e9 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x83e2e086 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ac4bb96 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9dc2c5d3 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa279fd3b ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae847614 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb02bb318 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb0fc62d9 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb336fd3b ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb44e7b6e ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb538ead8 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba1c490e ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba2f809e ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd89164b ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8d3a269 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc9037713 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbed9081 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x043d786d ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0a3d997c ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0a9ea983 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x19330477 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1986fa08 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x245b6abb ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x277ae3da ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29c72a4e ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30ce7658 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34f6da37 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3772a9e2 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c66cf2b ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4288b44b ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51382aa2 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c0cc829 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6312e2c1 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x635ba083 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63f60fa9 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6b752287 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7773109c ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ad91d61 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7eb7e284 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8057f727 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84d06343 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8aa6c45a ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95f95de0 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98872765 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99f4a057 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ac3d9ea ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ad94da4 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b1b5d6f ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ee35c3d ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa34f28c5 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa591313b ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa64b8b01 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaff2a3e7 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb967c506 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc27dde30 ath10k_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc20d178 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcffb1fc0 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd351b67c ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6f8bc40 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda2213ff ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde534744 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde866745 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6baa85a ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8342ff2 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec399849 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf4e2f78a ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf731ebea ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8ef31f8 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9df719b ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x00cc404d ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x03459b3b ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x036f5f4e ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd3c3220 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd9baf67 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce600040 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd20780a8 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd49578c6 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd55d6326 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9825329 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda210c2d ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdae71b20 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb2e69b1 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecb64b3f ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0d0bd64 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf32515d5 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7251e7a __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe15e0e6 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe70b778 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe880310 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x00e6d081 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0483666a ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x054576ad ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x05d623b6 ath11k_pcic_free_irq EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0dae0eb8 __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x10f55019 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1a94e66a ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1cfdaf59 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1d806c01 ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2fb207ce ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3028c7d5 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3b528d11 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3eb61cb1 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3f1b078f ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42768cf3 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42a43789 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x430565c7 ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4b0a53d2 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f5df84a ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x556e5db8 ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5bf39501 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x687ea9f5 ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b0dd2dd ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x712d8b0f ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x72953ba9 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7ec9288d ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x89f80c59 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x213a85f6 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2284fbbb ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2882b713 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ccca0b6 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x30c9bdf2 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x31d5af9e ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x395a6986 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3a593f78 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ae4822f ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x419389ed ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x43214ad6 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x47395de3 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x477f2d5d ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4940e814 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f845c04 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x533fd431 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5392ffae ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b232bf6 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6c21af3d ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x89180685 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8ee31d6b ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x91515020 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9571e997 ath11k_pcic_write32 EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9fc9cc44 ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa1365be6 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaeabadab ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb32c82bb ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb5be2feb ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbe860c31 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc4e7ee17 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc54bce67 ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc6b3a060 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd6294d2f ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdf7e4129 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdfaa5144 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe27181a7 ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe60c4875 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa3bafa3c ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa875b14e ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xacd2eb45 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd0796d5 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbf02534e ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc61c73d3 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc6fd02fb ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc9446b38 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcf90e594 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0cc3ce8 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe1d718f6 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe92b1b03 ath11k_pci_disable_ce_irqs_except_wake_irq EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf50fc20c ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfd4a7a4f ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfc202f5c ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xff4df70e ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0d6552aa ath6kl_core_rx_complete EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x17e86f52 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x232e64fe ath6kl_cfg80211_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x47b7544b ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4d0fa2d3 ath6kl_cfg80211_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5d09ebb9 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5ef32d59 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6598872d ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7558b6b9 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b3f0306 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8820bbaa ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5520c289 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7c33e625 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f81c1c1 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x838f576d ath6kl_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x92fa87bd ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x95c9b58a ath6kl_cfg80211_suspend EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xedb0c05f ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf86e9d80 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c7ee0bc ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13fa23b6 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1773e67d ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xce1bafa3 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf3b94a6b ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf9e49d2e ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d5f6ff6 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x149248f7 ath9k_cmn_update_txpow EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a0aa030 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1ea9b834 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44d79481 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49992104 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59fa16eb ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c56cf8d ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x64c84468 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x65b01462 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7b78df1f ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7c132688 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9994d4a2 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9b244b8c ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac1b0775 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaebba548 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbdfd272b ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc6ce6af2 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcc56233f ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcf2868a7 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1baf0422 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c1b489d ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1d6354fe ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2cf8b539 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34c67120 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x422fe916 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43443b8e ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4c111712 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53f0a759 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x556311ad ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x68207420 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a33173b ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7eb1cb58 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a4b4cdb ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ed876be ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9f89d10b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa2712f8c 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 0xde6304f2 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5c908e2 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf80f1b0b ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00924afe ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x011757bd ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02fdda66 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0679aea5 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0766ca09 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b8298b0 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f100edd ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdbee5aed ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf020de10 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf2e54ca4 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfe906772 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0298e20d ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04ee1651 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06ef49d0 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x089af532 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b9af651 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bb390f7 ath_gen_timer_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12413100 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19b18b7c ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21f29aac ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x232406d7 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24931fc7 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25da6a9b ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27fb7bd3 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c061c1b ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dd91c0f ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e0417ff ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x331df700 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x332e3e7a ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34178463 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36c59de1 ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36fce795 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37e59afb ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b3f0071 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ba1911c ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45020545 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47b8f7d4 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4846e123 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4851fa3b ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b28bacc ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b6232b8 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b91c093 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d38f5c8 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e611e35 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4efa00bc ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x518d9505 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54bdedb3 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x588caebe ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b9d673f ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bba9a47 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f5b3be0 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x606b793c ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64fce734 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6585ef12 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x658ce9d5 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65d1b72f ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6652ede5 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66c98b6f ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eb2a755 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ed65562 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f84c412 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71d48531 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x771c600a ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77269b30 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d465dc4 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ebfb564 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x808df51f ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84845193 ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85f84f4c ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8640f518 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x866cad8a ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x866f014a ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89b20e9a ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b395782 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c2be9b7 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c3f8b27 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e2ec4fa ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ebe8879 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f8c7789 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9353c954 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x941ca557 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9584d2ce ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99d522b4 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b0d322c ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f622635 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5d50715 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6c2aac7 ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7d2d48c ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabb31a36 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaece90f1 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaffa9fad ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2f13daf ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb70b8a43 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd83cd65 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf9b0a70 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3777be8 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5f10fdc ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf6483c9 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd53552d0 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6d0cc9f ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7094827 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7dc44c1 ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd92a464c ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb78ab60 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb79cbd9 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcd1ca0e ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddea254b ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe07a1010 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea582fc9 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedfe2776 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef2bbbb4 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2ffb0b1 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3c7a98d ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8f0e59f ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe5efb49 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe9dd16a ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff05d848 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x0c26e6c4 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa48903c8 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xae1199e8 atmel_open +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10fd9ebe ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11153e78 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x168f4877 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1883c3ad ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19a2652b ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19a28bf9 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1aba7367 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cfe09a0 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21e444ae ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22dcdc54 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x234fd170 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28afa922 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ad8a3fa ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b127543 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f639947 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f66d9ca ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fddad53 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2feb1958 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31c5b6cf ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x355532bd ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44c6ecca ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44d19ab3 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46c70497 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4712176d ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e19a674 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fe3567c ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50111bb4 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x512fbe8a ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x544f55d2 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54c2ea70 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54f39d61 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x578de063 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cf39ca8 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6036b1da ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6083429a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61d1130d ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62e80877 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64ac80ae ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68b28fae ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x691f2e73 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f9c56ac ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x714d5cce ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x720cd5d3 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72818d6f ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x741d5028 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78074699 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x792e10f3 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b867df3 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c083252 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f5bb3ad ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86f58186 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87064f44 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87209541 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8abc9222 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c7d2b4f ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c8aacc7 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d64f910 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92082f6d ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x932d9abb ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9495c856 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95606d7f ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9568a10e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95998951 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96161e55 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x984814b2 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a02c90c ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ec48adb ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f7ce8c8 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa11f931a ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3cebafd ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6d19556 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadb89601 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf76f797 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafdf81fb ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0f9d7d6 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8ba076f ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba20b908 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb93408f ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdadfaa0 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc00d79cb ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc47b5758 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc555d16f ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc71ec435 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf00ca35 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcff1dfd1 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe17016d0 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3dc7aa2 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe65186cf ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe710b417 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7ebc619 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec66f7d4 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecb1b7ef ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed7b9b71 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf29a0968 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4c625ea ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf54edef1 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9e1a843 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc38def4 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd621094 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff2f8afa ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffc48f68 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x8d1acd30 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc9b059ea init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xe797a542 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x114902e0 brcmu_pkt_buf_free_skb EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2a88acd1 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x54b6f342 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5f756eae brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x66279742 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x89e10aa5 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8c9b6a94 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x20c941e0 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2f60b529 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2fd60d38 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4940ba7b brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x58ca7289 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5e1c1f4e brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7d560498 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9ebd60d4 brcmu_pktq_penq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa281dcbf brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa8c6ffd3 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa8e17fc5 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb434a2e5 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa4bb2ae2 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb837b4b8 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc55feffb brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc9089a66 brcmu_pktq_pdeq_match EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd8378644 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeebd8180 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfe209db4 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2d5e8c78 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2f049a61 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x91e6237f stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1122854f libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x18619422 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1b93c5dd libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2547c2a4 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x392388c9 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4b54c421 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x566084e4 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x722ad79a libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x79cbaf32 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a26bc26 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8f7da6ab libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9adb2273 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9b691d2b libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9e71b10f libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa22c35c0 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xad7dcedc libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcc826d27 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdb6a987a libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe337d53a libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe9115a9e libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x033bd247 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06291742 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0709730d il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e06d735 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10a2fa23 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13e96302 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14afe8ad il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16208bed il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a6967a4 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ccca2ec il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x267b712f il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x282fa719 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2895aa86 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b18650c il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x53525948 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xa2ebc606 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xfbfc40f8 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2798ee76 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x286b1f45 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x36291992 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x36d38c3e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x39b79dc9 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4b6461de libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5b0533ee libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5dc61127 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x753ef194 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a241143 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8b9fe2ec libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x92a08500 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa86fff05 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb78de204 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcbee7ffc libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcf9a4da4 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xed979d66 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5a09d29 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfceffdf2 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfeb0ab14 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0123fa67 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0281b3c2 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04e97af6 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0537b1b9 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c29f891 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13acb42a il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x13edc658 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1c368aac il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1cce38ef il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1e7e9e9b il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f3660fa il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x200a03d8 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20477635 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20bde468 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28ff77be il_hdl_pm_sleep EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x304f07fd il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35436345 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38fc6ab2 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d34ae57 il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e321211 il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4021edad il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3458864c il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x347b6aa2 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x350b9d0a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36a63083 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c9e1756 il_tx_queue_init EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43a24311 il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x445136b8 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44a19c92 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46ebfc51 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4849bf68 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4efa9191 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51e2ba5f il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53f7bac1 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5511810d il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5582727d il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55ce5886 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5650a7a2 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57244007 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5910e72d il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f17012b il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68c0f6b6 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x690b2356 il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b56889d il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b946941 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6eade716 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7248316c _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72733539 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74bf6eae il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78dfe668 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x799e9cdd il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7afd06fb il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d488707 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x868fb860 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8cd7ab5d il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9022a67c il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90584e6a il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x918027cc il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91c5b3a8 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x981986e3 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98354a04 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c46239f il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4384261d il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45e37088 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x475e2cb2 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a1af763 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f13602a il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x516b817d il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a549191 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a7e71cd il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c983154 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5f468551 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6155feaf il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bf70a17 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c8f92da il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cceb361 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d8484e9 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e67e76d il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fc4e65d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x713fc6ca il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75710017 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77546872 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a773b7f il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c99c473 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e290c1a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e467d4c il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f868da9 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fcb9743 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x814dc4c6 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88392a01 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88a21153 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88aa2619 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d7d52f0 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8dc5ae61 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f573449 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96de7f87 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x992d961b il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99a4b587 il_set_rxon_ht EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d15ddae il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d3ff113 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9dbbd151 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ed3e0c1 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9fd434cd il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1b4f9b7 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5b5dc48 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7a36c09 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa80a4fb4 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadabee06 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae22d829 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae94f8e4 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb070ab7d il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb19fcee3 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3cc8463 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9eb2d740 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5604ea7 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa56c1db5 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa89f5691 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8b50a19 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa7eac3e il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab726df0 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafa7acc8 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb08c6f79 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb10d2c7c il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb56c13ee il_set_bit EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65ac5d5 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7082c46 il_hdl_pm_debug_stats EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbcbe42ea il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe3d0fbc il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0202e0d il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0fb155d il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3643200 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc450b63c il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc49179c7 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc74eee94 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc78963dc il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc980411f il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb040589 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb774c35 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcea10295 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd98c8fae il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde84ae48 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe0d29a99 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4777f16 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebcf5224 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeda55901 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee787a38 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4a7c50e il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xba50ba5a il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc1304f2 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbcbd572f il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdbfc302 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc01077cc il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0a99119 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc14e9c56 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7ee1d92 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcfee76e0 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1e7c9d3 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6b4bd9d il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7f22c23 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb1b6429 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdca555e6 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf64a55c il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6207269 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe85fdb35 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8bbd884 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec9c6cba il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee0ee869 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeece5428 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1aa88d0 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2c69a68 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf56cb244 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf58e17e7 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6bbfc10 il_scan_cancel_timeout EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf924ee0b il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9cdd656 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9fd868b il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfaafa97f il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfcf4f1cf il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xffba47d5 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7a5bf99 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd743e2d il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe91728e il_force_reset EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0fa4d950 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2609a189 __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x4ff29504 iwl_trans_pcie_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x532fa652 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x86ff7247 __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9828a56a __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x99636d27 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9c33885e __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb396913a __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc31d28c2 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1568a9c4 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2899ef28 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2fc327a6 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x477486c7 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x509a573e hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ba094f8 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xdabfc894 iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0aea8da0 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0cafffc7 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x171a5fc9 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x18071d17 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2894413e hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2a468292 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x394f68a7 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b63f03a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3c7836c6 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5547f530 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x65a14446 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6a424664 hostap_free_data EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7c345ec4 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7e962fa1 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x76ff4d1b hostap_set_encryption EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x82316cfc hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x848bafe2 hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x899bcaa2 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8a78b41b hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8b09204c hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa4154084 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa86fbf2b hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb1ca88e4 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2b5faeb hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9a324cba hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa4ead142 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xadb4b9de hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2834726 hostap_set_hostapd_sta EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc12369a7 hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc1397bce hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc169aee3 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc50ef61b hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc91d7972 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xca917e16 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd997f7c2 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe3defa3c hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbb34e89b hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc4943e3d hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd5ff7610 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdef0fe93 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe7c0b4f3 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeab29a2d hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf1e4ced3 hostap_remove_interface EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2cf97771 orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x455eea6c orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6703413b orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8817d08e orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8878096d __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x93b6626e orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x98e01790 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa8a70fbd orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa9c70970 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xab95d295 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xba3f3b2b orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc150df1a orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfd715ccf hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x229a6a3e orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2f5dd8f7 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3e541a4f __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3eeb5317 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x499f0d03 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5fa48e62 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6592a3be orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x895d2f67 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xab9e0035 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc02d87d6 orinoco_change_mtu EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc29737d4 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd65d30a5 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf0c9bcdb __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf8d7e39c orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcb99cdcd alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd56ecdff free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdc0178ae orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe0b6f949 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe2b90001 orinoco_up EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x167239ee mt76_wcid_key_setup EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xa787f9ec mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x3ce5658b rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0152247a rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x028d58b3 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x035a8d78 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a7b0412 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f522836 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa8dcaea8 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x084c8b49 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0be0111e _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c6be146 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d06b1b3 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ebc50db rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f0b2d79 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fcde7ba rtl92c_dm_rf_saving EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x235d4e85 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x301b716a _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3479a9c5 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39662343 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39a2e301 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f908556 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x447edefe _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55949cc6 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x572ed32e rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5af8362b rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ba0f468 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72893dde _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76c3768f rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x822bbe89 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x838b9105 rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8620e552 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86d49bd0 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x920256e9 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b44fd9d rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f882e49 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa80969d9 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9991293 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9d950ef rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xac4c1a01 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb37b4a86 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb52510c6 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb865dde0 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe013e2e rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbf9bb748 _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7aab7db rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1c86986 rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd253034d _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd787487a rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf0ed389 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9539b1e rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffa01215 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x09fdbbda rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2253ed46 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7cce6be8 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd8be3cb0 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x10db5dbc rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2b3114b6 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3164171a rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3e310fba rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0401bc41 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x250b910a rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x28dd8b9d rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29067c2b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29098c98 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ff9a0d0 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x351066d3 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3915e47c _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3add3aa1 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ebe1c00 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4bf60e99 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5774a73c rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57e87da9 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x57fd10ef rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ec53ef6 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x657a95be rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68a6f5e1 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a3bba39 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e1821e7 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ed939af rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81803912 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86d99dda _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88aff654 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89990d76 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f48e1c8 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6e39120 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7d1c64c rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa3018f4 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xabb6a2a6 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae6163c4 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbad228bd _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbfed15dc rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc031f4ab rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8de0041 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb6454d3 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4be06257 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe1bfca17 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf15d2e4a rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xfd80db87 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4b881a29 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4b8e7e22 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9adfcfad rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbc7036e3 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x027ea4b2 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0409f436 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x045dd115 rtl_c2hcmd_enqueue EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10600a52 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e12012f efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x133626ff rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x186f2e2a rtl_rfreg_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c3fbb68 rtl_init_sw_leds -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x285daf43 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x200f9a18 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28518405 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e34694c rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x362aa4ec rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x364508d5 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36f1c812 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a32ce5e rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e39d5b9 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33c51493 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x422f7716 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b50a3ce rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54325e66 rtl_ps_enable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58b41b3a rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5be8844a efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f1f4eb8 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e09eba3 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7042071c rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7626e8ff rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7bf5761d rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x850e471a rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x873c41f4 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a197010 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8d696664 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54c68e0f rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x592ca051 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ca7376a rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x720fb0cb rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73420f15 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x772ed35b rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81bd92de rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fefbf62 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9186ca23 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9df99101 rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb029fd77 efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb53bc9b4 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc96f000 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf9796a3 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd033bed9 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe37eacd3 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e2aa46 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d8b78b5 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0521a90 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa208713f efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad603cf5 rtl_init_sw_leds +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8968cd7 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca2b0a00 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd90eaa8b rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb3a5543 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf2ce58d rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfd3174d efuse_read_1byte EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf467eca5 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7ce3ca8 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x9b8276e3 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x0642016e rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x70620c51 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x9fa0676f rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01fc379b rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03bf3748 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a4e18dc rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1cda8f69 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xf94f5c00 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x648f2b8d rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x12af26b2 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xfd6d4d8c rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03f7731a rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a2bcda3 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x15bb07ca rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x161d0d5e rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d62b488 rtw_phy_pwrtrack_avg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc2d072 rtw_tx_ac_to_hwq -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x245ef294 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24ab6876 rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b0a8351 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b667d81 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2cfb3955 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30492ffa rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f450d5e rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22e86aab rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2334d728 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x293da6b5 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2cccc592 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x30bf6c34 rtw_fw_inform_rfk_status EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x364876cc rtw_phy_pwrtrack_get_delta EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36e8282e rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x375e73cf rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38708ba1 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42e1c240 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a45fff8 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b931c53 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ce9d083 rtw_coex_read_indirect_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4605274f rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x443e6e0f rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x448ed66e rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x46d26291 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x472f907b rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4dfd70f9 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f8e4d47 rtw_phy_config_swing_table EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x54ecb88e rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x574339ed rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57f836e9 rtw_coex_write_scbd EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60dc656f rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6123e52f rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x612a3a6c rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6241eda0 rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x63600eed rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x68f65c7e rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7832e090 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7dbddfe1 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7eb5e921 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x842f1826 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86d4c55b rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8bc97e5d rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x91fb4520 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92311345 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97e0691a rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9a5dd775 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6306c30 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0873b15 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3b53dac rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4ca46af rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb56b5f90 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc70eab8 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc1458299 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc6e65ba9 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd2f81e2f rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd545ef7c rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd593f4b8 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5c4459c rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9ed4e3e rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdaf9cb24 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdb72c6d9 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd071571 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd634421 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde472084 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3ee0946 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe684a6ed check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6de58ff rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe85b5625 rtw_tx_queue_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xebc74b31 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec0a63bb rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed47dfdf rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xedf87bb6 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf06970f7 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf76bda40 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1d249d08 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x28a6fa0e rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x34ed974b rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3d3decd1 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x33149387 rtw_sdio_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x53b8e18a rtw_sdio_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x546380d2 rtw_sdio_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x8c73e45c rtw_sdio_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x6ddc2e75 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xf584f077 rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0x3b38e52a rtw8851b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xf16c5b14 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x86f289e4 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x1d57c58b rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x015cfb58 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0599da09 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x07728d2e rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a4bcedf rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b9ef815 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10b29db7 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1106899b rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14ab8b16 rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1524d8d3 rtw89_encode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x175f59a8 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1912062f rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x19ca6595 rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1c08fadc rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x232a3681 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23a9968a rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28e2ed33 rtw89_decode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2a82b773 rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2d93de60 rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2dab74a5 rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44d0ff2b rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x48ed43f2 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a2c6eb7 rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4e9f597e rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4ff0983f rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x51f61c3d rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x580698ca rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x675f4bc0 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6de64136 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x74cbe8a3 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x79fe1a93 rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82e17935 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x89bb7b33 rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8c04601d rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8cde3468 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8e305e17 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x92a702d8 rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x987b4c2f rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5c765cf3 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5db17925 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e17fea2 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67548e9b rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ae1d7ac rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b8f67e2 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fa40e3e rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x739f9fba rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75a1dfd3 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x776600f9 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7833742a rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8addb4bf rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8d494df4 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8e002207 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99ab6aa9 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b45ae43 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2b3b5f5 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7890538 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9775631 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac90298e rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae86e430 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaee381cb rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xafb4ad73 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb157610a rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7a23b76 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb07b863 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc023a39 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd4a34b56 rtw_tx_queue_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd62f4a58 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdacc5da1 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdcd2548d rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xea86a0de rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb5af250 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf0dac3d8 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2add3f7 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf3ea81e7 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf70fd14f rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf9dd481b rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa8c6dc2 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0841e859 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x14b57f2b rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x582608ef rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x60b4170a rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x0e7e380d rtw_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x0f07c120 rtw_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x8ff7a273 rtw_sdio_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xa06c65a0 rtw_sdio_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xddae0b50 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xf52acfce rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0x4ce91bc7 rtw8851b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x86bda5f9 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xf1237709 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x6a863b66 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02a75c54 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x035a5a5a rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0431a1bb rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x117f08ef rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e3df62c rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x20ac34ad rtw89_decode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x259fcd52 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x292db069 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e221eb7 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2fd4139d rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34d756c2 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36d07771 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x37cf741d rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a5b52f4 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3f3dedf8 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44a83cb6 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4723f871 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x47a98649 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4ab61a82 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d14622b rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x52096ce0 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x594893b4 rtw89_encode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61a2ed76 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x622a0bba rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x657bc8f9 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x671feee8 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x739914fb rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x76dbbd5f rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7740b2e0 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c2916b1 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7d4785ec rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x87e7e4d5 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x895e793b rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x89fe2714 rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a05ce00 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8ce85f47 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x925a5bf7 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x92dd5c85 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x935ade28 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x965aa4f9 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac5385c rtw89_core_fill_txdesc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac85705 rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c3c9c97 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9f7df8a3 rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa22bbe24 rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa43ca697 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa5917787 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa5e3296a rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa7c1e639 rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaddfa7e9 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb253468d rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4b2e463 rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb66d24fb rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba666b6a rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbc790331 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd555f06f rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd631976e rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd99441c0 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xddc49d76 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdeeb74f4 rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa36bb41f rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3914b14 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa86c9b70 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb4f0654d rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb582cce1 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb677b69c rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb6afbb56 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb9461202 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd6bce28 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc4089c82 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc4ad2ef2 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd5bcc430 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xda671330 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe14a7e0e rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe196eee1 rtw89_phy_get_txsc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xea7d36e9 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeedd65e9 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0efc31e rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf123392e rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf814ca0e rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa307816 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa77f9da rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0a334a3e rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3547f02a rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x38cbe1a5 rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3f156043 rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3f5fd0e5 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe5c3560d rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe71f11c8 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe9231b3e rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf203c8a4 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfbe41387 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfee0ceb6 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x041cb39f rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0575d42a rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1e88d824 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2aab7732 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x301aea1e rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x355f8711 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3cfdf56e rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x637dee9f rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6ea54f5c rtw89_pm_ops EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x799f2d9e rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8807175b rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x72fcd135 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7c3f7785 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x89736218 rtw89_pci_probe EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbc35b63a rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc08589f4 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xce5081e7 rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd1e03b82 rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd2684074 rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd360f950 rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd7a450b9 rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe74ddc37 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa2de8bd0 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xab94b761 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb0076330 rtw89_pci_fill_txaddr_info_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x8a14e114 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x48959658 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4d2bac7a wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x78206041 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa841130a wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x53d3b25b fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xeaee7619 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xb0da6776 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0xc7250fea microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x365041bd nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8f8af8ac nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf8e7f1e2 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xe40850e7 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x34b61515 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd47b29dc pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x69d72180 s3fwrn5_remove +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x8df04b20 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x58951bf0 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6ada032e wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6bbccb81 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x73b27599 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x411aa5d7 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xad64cefe fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x435ce1d9 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x6c02e5fe microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0dcc5262 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xab7b6138 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc9f7ec04 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x85452936 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x12788d93 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4a6fee78 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x02a95c83 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x0aa63c28 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2cc57551 s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x79848faf s3fwrn5_recv_frame -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7c74f3a3 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8a74b060 s3fwrn5_remove EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf445ffb9 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x02e3ba1d st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x172d5442 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1788a5d4 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2159294c st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x52d6f50c ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x57d4e201 st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x59977eec ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xda0dadb2 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xeb749bb1 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfffd46c6 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0d82d688 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x12f432f7 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x173d3b9d st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x19b19284 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2bb95278 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x419493c3 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x52b8df87 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x746a3f75 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8907e459 st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x92fff546 st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x96c54d18 st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a083a04 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc0a6b435 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc937db2c st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd243718f st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe64168e1 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe856e314 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe896c7f6 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/ntb/ntb 0x039f7f53 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x04927b35 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x15c0c57c ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x1a04cce5 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x1b31f66c ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x3c1fedf1 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x3eed8d47 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x40f49bb9 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x46ff5d44 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x65a5ee39 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x6e69ac1f ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x7558343f ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x9a5bfefb ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xa0dbb40b ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xa120b024 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xc0ac7656 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xc4b05928 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xdf9413bb ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xecbbbe1e ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf790460e ntbm_msi_free_irq -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x36bb31e5 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd0b8f8de nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x02d45011 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x0e3c7db6 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x0f8d0dfc parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x1eceb013 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x2252efba parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x24d0f054 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x2d1251f3 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x2d2fdd7f parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x30c07e80 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x401c35fa parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x4109d745 parport_remove_port +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0204d96a ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0fe6fb40 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1cb88882 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87ccdbd6 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a5cdb38 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9a069a02 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9f518ced st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc1ad54eb st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc3563e34 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcace8416 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x08b731ca st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2e58b474 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36d003de st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x416a5627 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x427b98b2 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x42c28d7f st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e6010aa st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e56d815 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8788c96f st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d9026d5 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e8a8c20 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x99c7dc5b st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9b9ffc13 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9adab44 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc57c84ab st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xce4397ef st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xde72bcd3 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf5d38d0a st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/ntb/ntb 0x03b04ee9 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x0a33765a ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x1b79f563 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x21aab1fd ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x23fafaa8 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x2c19131e ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x30f6fbff ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3e855f6e ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4ca011b6 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x631e5743 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x702c68ce ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x7f3b5783 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x85baa730 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xa4e290a5 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xaecbea73 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xb0a9a2a2 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb5570c00 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc107cfbf ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xf3c253e7 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xfc6cc869 ntb_unregister_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0657b942 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xb3728125 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x08755c22 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x0c532e2e parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x0de68589 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x22d1afbe parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x2346dcef parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x2891735d parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x29c1476c parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x2f0030b7 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x37fc5e24 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x3d237730 parport_wait_peripheral EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x56951082 parport_unregister_device EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x66cf873b parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x728bc94c parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x759fb719 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x7adf0950 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x7b87d444 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x8522d597 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x878fdadd parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x8fa9587a parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x94545b69 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x953b4690 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x9620fb80 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xa137dc91 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xa4b56069 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xa9c39362 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xb152c45a parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xb2fb2015 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xb878bc81 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xd20133fa parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xee09f4f0 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport_pc 0x2e7fc17b parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0x9b10b70d parport_pc_unregister_port -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xea5b5632 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/parport/parport 0x772722d7 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x84fb9904 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x87ddcefa parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x89f0fb10 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x89f6d1cd parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x8d23c333 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x91ae34fd parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x96b8b490 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x9bf526ab parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xa65af57d parport_write +EXPORT_SYMBOL drivers/parport/parport 0xb4e7d5de parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb55ad624 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xb79c9d94 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xbed3992a parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xc59249aa parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xc7730191 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc96cd839 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xdb3408dd parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xe88fb4b9 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xeb518454 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xfa800825 parport_release +EXPORT_SYMBOL drivers/parport/parport_pc 0x1267a8f8 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x9e11a9fd parport_pc_unregister_port +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x283ea0d4 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_glink 0xd7119b40 qcom_glink_native_rx -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x1539b3b4 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xd9fcb355 rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x043153d4 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x04af42fe rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0a37c9f7 rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x34279fe6 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42b07bb9 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x56e2a663 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x62d2d5b5 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6386f218 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x66917195 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x74c05e1b rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x75266a81 rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa21c96f9 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb6140d6d __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbcd89eed rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xca462300 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd93f9f8c rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf45047c0 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf8ac9ecf rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfe838078 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x07017091 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x06d00872 scsi_esp_template -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x11be1210 scsi_esp_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x55105ce3 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xb1e4ea27 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1061e22c rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19ee72db rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1c59eed0 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x308cd8af rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x350379c7 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3bfa507f rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x470212fe rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4ca82bb0 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x56a67ef9 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x63d6777e __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x75cedc6e rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbafb2cbf rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbb4553eb rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbee843be rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd452ba91 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd54c51aa rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe068a2a9 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe3a85f71 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xef8f8af5 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x10f21da4 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3676ceff scsi_esp_register EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x54e52414 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x58a56bb5 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x054b4813 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x12e2df01 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x24449097 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2cd09831 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x76dd6445 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x968a582e fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdfd7f213 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe9c0164a fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xec1dbd99 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf254d10b fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf58b26d7 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c14756a fc_eh_abort +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4f212a6f scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6d1a304e scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9514a0d9 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1e484ac5 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1ef23e5d fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d1fc2df fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x46825f1c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x635505d1 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x91a79204 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbbbd58e4 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbfcb5ce3 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf1e68600 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf637667a fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf7ecdc62 fcoe_ctlr_link_down EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c588c9b fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c87a8fd fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f9e7021 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12925c5d fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16c28fde fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18677650 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ca13e6a fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d30caed fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x209f579b fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x226bdc63 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11e50bdc fc_lport_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x247d20d4 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24ea596d fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x279d7b0f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27ea18e0 fc_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a876eb1 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ae206a8 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d607070 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30f33e5c fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36a34fee fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30a2fad1 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x335dcf87 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3713ccc7 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37f31d80 fc_exch_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b4e1949 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3dff731c fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40e89f67 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4df5fde0 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f1d45d8 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50cab14d fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x543fac73 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5482028e fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55942d1f fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a497388 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x666f1a02 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c065f64 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cb6e634 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4561cb2d fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c5267d8 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x555f9a49 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c58d03e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f5921f3 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5fe853c2 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63d61f8e fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65227d67 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65c05ed4 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69a9c1e9 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69e91333 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d48a21a fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e901c9c fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f2b0b66 fc_lport_set_local_id EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79fb9b65 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a1f8d25 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ba96d29 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cdbfed1 fc_rport_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cf1bf5a fc_frame_crc_check EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8063427c fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80b311f8 fc_fcp_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81358f86 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x894e8f05 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c1d1941 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x945ad280 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95585012 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8398ffd9 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x885c6d11 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e57e355 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a38ca3a libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a76e0f9 fc_exch_mgr_list_clone EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ee80c17 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa01cb792 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ebc6178 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa008b9fb fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0d8dc21 fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa52e2cb6 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa88ac357 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab73f474 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4544d45 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4dccf58 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa68ca582 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf47760c fc_exch_mgr_add EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9806d7f libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb544b659 fc_exch_update_stats EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c352d9 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc18bdede fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbacf722c fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0e00362 fc_lport_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1e80ad9 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc51a240f fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf67c9c9 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3311b3b fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1257bac fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4a30383 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8d41961 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9273bbb fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec4477fb fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7f787fb fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcec89883 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd7641dbe fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd866a934 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6a2834a fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe94b0826 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeefb1f50 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeff3f913 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0fd96f1 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4ecdcd1 fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd5ee344 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd88ad87 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffbcf5c7 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x13be2265 sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2ad868b5 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3ede1929 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x40740627 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3d178d10 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x6b26fc8e mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4ef02cd0 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd5a703e4 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xf148bd8f sas_resume_ha EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x009dbcf8 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0d716a5d qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3d36870d qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x443b827d qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x52308592 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73414247 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x95cded86 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaa717c8d qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbe79af02 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd07c82a1 qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe94ae2e5 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xff724848 qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/raid_class 0x38d2068e raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xc0aeda54 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x032ac93e fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x08d237ed fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x19348bda fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1fbc2559 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xd75c5b2f mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1c0c77eb qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x348de276 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3e017985 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x47eeabc5 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5a441d7e qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x684e0660 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6cc4f730 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9b8fe8dd qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa20469a7 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa5c74761 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb6198e2e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd70c303c qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x8c3bae49 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xa0a8df1d raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x011cdd24 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x036ebdb7 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0b6d50ac fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x33b3c71b fc_block_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3c234018 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x49c9499a scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x512927e9 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b60c193 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x640fccb5 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x694b839c fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x828ed952 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9103c900 fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa9202a57 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb45e16bb fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb9e978ef fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbb62c5a3 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca0bed0d fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01fd563c sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x068bff58 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07cc6621 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ebb1493 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f751df1 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x224f588b sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24c0528c sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b1c7eba sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f55b122 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32075560 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x35938b36 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45fc7f51 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54a15206 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x65384408 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69e78780 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b6f66c9 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6fafa136 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8970fc1b sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cb0366f sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x933c9cc8 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93e684c4 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa0e7a021 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2dd294e sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb43f5750 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe17fcc8 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc4992855 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce48937e sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe710e408 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef5b03bf sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3af35155 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d126d49 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x44c97a46 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x55260598 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x723b97c2 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7b4b9ef9 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x84adb487 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8f6cdceb fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9445de20 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9f48e095 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc234ee54 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc299a7c9 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc9e25d6 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x011d3072 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0eb316ba sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38693851 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38e53ee6 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x42b7af87 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4a48685e sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c2166e7 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68bcfd20 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c8a2d45 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7187bebe sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82ccc4e0 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86e05de1 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9835ef37 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7d30b29 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa85d106f scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0109aa2 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7c246b4 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbff1521c sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc94e0621 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb83c756 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3838923 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6311d92 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd85884d0 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1a77104 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe29d2530 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea28adcd sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8a69dea sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfbdfe3f1 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xffbdd671 sas_phy_free EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x66d8d43e spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6e4758f3 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x73930f9c spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf1b0e9d1 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf6532326 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4fd8b6b3 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8ac13eb2 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa3c94bb7 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa94fd943 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc49465e8 spi_dv_device EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0570ac8a qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x190c6fde qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1ca8b3e3 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x04c8f903 qmi_handle_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2e24eead qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3af8ac84 qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5d5f0022 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5dfead6a qmi_add_server EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7cbe32fc qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8f5ec42e qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x9b42060b qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc8fe216c qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfa4e2c38 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6464de94 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc9ce2e50 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd49366de qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xda0a4dce qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xef70a752 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf80aa9b5 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfbb3c7ba qmi_handle_release EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0c535721 sdw_nwrite EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0e4f2835 sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1b65ae1d sdw_stream_remove_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x20fb53b2 sdw_nwrite_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x395e9acc sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6010e62e sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6807788e sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x714560ef sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x73372f90 sdw_read_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7b00d641 sdw_read @@ -4196,11 +4198,9 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85f05b91 sdw_bus_exit_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x879fb274 sdw_show_ping_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8abff0bb sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8e37135a sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x930ce19e sdw_nread EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x953c37f6 sdw_extract_slave_id EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa9435c92 sdw_stream_remove_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xafdebc3e sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream @@ -4213,329 +4213,329 @@ EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd764de69 sdw_slave_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe0386fb2 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe3aefa1a sdw_stream_add_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe51a3538 sdw_nread_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xed67dab3 sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeddf0994 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf44428f1 sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfd09dcac sdw_bus_clk_stop -EXPORT_SYMBOL drivers/ssb/ssb 0x01aa7afe ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x1f0d4c53 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x2215d815 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x2665fc27 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x28b77364 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x3322711a ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x53b28b64 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x5dc256c4 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5f88d652 ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x6019c4da ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x61d5fdb6 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x7d7f72ad ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x9450e15f ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x945d65a7 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xa8c6275b ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xb29e9a84 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xc7235eb1 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x040d18cb ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x0ac051e7 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x135802a7 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x1dc795cd ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1fbee746 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x20d3d394 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x219b3fa0 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x383ff4f6 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x54bb9537 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5dc32046 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x72304071 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7dfa79c2 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x8530542e ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8825e58c ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x9c94aa4d ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xa1659196 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xb727c6f5 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xc2c70fab ssb_driver_unregister EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xcff9e7ab ssb_bus_may_powerdown EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf0d6ee2f ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xf44959c7 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x04ae7a16 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1239d347 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25cb3d30 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47f54cad fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54df2bcf fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b62e699 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65fb66aa fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x72b25bba fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x73fcefc2 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74d1c6a2 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x780eb43e fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7bac69ab fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8cc2b5e4 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90a9fcdf fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa8035fbd fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xacfbbea7 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad220778 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xadfe8d30 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb1cfa68d fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5a6343a fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6fcf0db fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb972eab0 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd2c8a98a fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe6dab13e fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfdd361b5 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6b1e5f10 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xa7a0ebbc gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb3be697c gbaudio_register_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc4cf0312 adt7316_probe -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00e6ee80 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x025c5329 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x087120f6 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14ca498d rtllib_start_send_beacons +EXPORT_SYMBOL drivers/ssb/ssb 0xe1ec9465 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xeeec2a8e ssb_dma_translation +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x039162b9 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ab6e6d5 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c56ff1c fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x275cb9df fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f6f7005 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x375ee06b fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3ef4f18b fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x405c94ad fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67b0a5ee fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67f9765e fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6ffbce36 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x728d19cc fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x86b5ec07 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f52baae fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x96cc1a0a fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb84530cc fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc5362464 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc61cb245 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcc94c51e fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd54336a9 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd965742e fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd9c11c91 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd67cbfe fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xea1c7252 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeaf5d5df fbtft_write_spi +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x8ffcdf2b gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xc78de947 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf2c32c3e gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x9c3c4832 adt7316_probe +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1262ccb3 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12ca07ca rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x153f617c rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x198dc7d6 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1dc3ccaa rtllib_sta_ps_send_null_frame EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x279dbc4d rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ebac361 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fc30504 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39ea31e6 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39f0572f rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d5121f0 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4790c61c rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4be46e62 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x530ecf30 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e9f28bf RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x65cb8b6d rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67ec4c44 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74ac179c rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76368cb5 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d8e2d5b rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ef7e241 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80e77bed rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82afb5c8 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84a51b67 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x852c6faa rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8779afeb rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x929445d6 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6c986e8 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7eb6b66 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa9e117a2 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab309eed rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab5baa0b rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3e10a1a notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5f46d98 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb9cc62e rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbdcbe034 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7494cc2 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcacca93e dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb9590a6 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd02fdb34 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0f1effa rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd719208e rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc4a8182 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe21ddc4a rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe267a16f rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe542d1e7 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe8dcc948 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe955bd85 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedd38782 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xffa0b9b9 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x026bf2f1 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07fcca06 ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x083f0836 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f37e26b notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x120ebdb5 ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13021ed5 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14d75c08 ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15e98b22 ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x18dccbbd ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x231cb2cb ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23e9768b rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2555b361 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25d26f55 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a605c52 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e2af6d8 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ece5819 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3af934ee rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b647b45 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ed64dc3 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f6dbfcb rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x439e64ec rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cff1601 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54c43965 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f9b5324 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x661bf62e rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68f1cc69 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c54406a rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c58ed5b free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71234de4 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75d91256 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7929aea1 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d4ebfbb rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x832f2180 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x896097c4 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b5ec681 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90edc5f8 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9631fccd rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98400d6c rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c271c76 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa743b29f rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7ba46f5 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8ab44da notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaeb1d602 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0e50826 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1f0eecb rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb492cfb8 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5638e02 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc80d61a5 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce96f641 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6aadefe HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdbf9a592 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeeac0dc0 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa71eb93 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe1f7d0b dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0035458c ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041c5f55 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c9447ad ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cb86cea ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fa69cf5 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x112f8d6d dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13955329 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14bf9211 ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16bed899 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2168eda4 ieee80211_wx_set_freq EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x237482ce ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2502dab9 ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x271e5168 ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b03379a ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31a77b4b ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3694efa9 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x431f0706 ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49077d5b ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x541bba7a ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5733351f ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57f1c28d ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5cf12601 ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x645bb58c ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2353d765 ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23ff33db ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27784cf1 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x298c478e ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32c6e98d rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x343ec6f0 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42115277 ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x425e60fc ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x433bcf84 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45915830 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x493f9b06 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ad67804 ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b6a7f12 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f976f95 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x511b528d ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53b5c4d0 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54505f3f ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x551d3043 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58768a1e ieee80211_stop_send_beacons EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6833a89d ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x694126ba ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74cb499d dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7b45c266 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86f27f56 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x89b78fef ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8dc8a61a ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fe16952 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x907c1aee ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x930185a0 ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95d3f108 ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96c2fe9e ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9dbf2878 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9edd7bcf ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f35047f ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa37a38ab is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb03cf83e ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb215a592 ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8237d6f ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xced638fd ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd13fe9ac ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2b2461a ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8ad662b ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9206cfd ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdfc3e6b6 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe2c466a3 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x688f37d8 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x697e5ef8 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6fa2caf5 ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77e69d44 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x830ef071 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86dcd463 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x978ab696 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9af45add ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bd984f2 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e672d46 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ffb4190 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8cec775 ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb97a91d1 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1029917 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc91af6f4 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf666d4e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd94091c7 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe03ae521 is_legal_channel EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe41aee0e to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xece4e936 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf52eb469 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd1deac3 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x027d7c9b iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x086762a4 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09872084 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09b53931 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x155c0403 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19f5979d iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e51e4a6 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f5db76f iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x20037599 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x210ae112 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2a71563a iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d55d319 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2e92467d iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3514bfc2 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b8efa96 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6847457a iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x718b2fdb iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74745c22 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7574fd28 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b7a8918 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ee97b9c iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83dbae86 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ff04bba iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ff64209 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90d41fda iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x931f9903 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x941eb56c __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x94d5ecfd iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ad3d064 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9bc5999b iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa43b53e6 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5910743 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa8bae262 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf2c5a77 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3311e64 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc5c04a5 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xccf9d4bb iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd15102e9 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda9fe747 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd1d8caf iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe471f02e iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed56d19c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe49a97fe to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4a7b8b3 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe566a688 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf28a0005 ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf412aea8 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd99e7ee ieee80211_get_beacon +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0250812a iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x065b760f iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f975f69 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1798bac6 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18a574b5 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x199e5e2f iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e79d9cd iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x201e2065 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x233ce926 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24380226 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c72cfea iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f1b5ff4 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43f831ab iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x448ef2a7 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5836160c iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x584bf7e9 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e4e7939 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66add0aa iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x684e01f6 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c109ecc iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cf20b9d iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x718c8cc5 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7beab5d1 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83d5b46d iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x87282b34 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x874bde9d __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8ef28f36 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93011dd5 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99062604 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d1d7797 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5d9d06d iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa74343c0 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0e9788e iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc6068a6e iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcfd4956b iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd618240d iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8e35349 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd93a7f01 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd45a02c iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd9620e9 iscsit_build_reject EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf40c0892 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8e97e9c iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa39cee4 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x000bfa2f target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x06221d86 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5649c89 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7345468 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfbdecb0d iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc184a72 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfcf0f81c iscsit_handle_snack +EXPORT_SYMBOL drivers/target/target_core_mod 0x003048aa passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x00a83ba1 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x075ab2cb transport_alloc_session_tags EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x090a1563 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ac4aa40 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0ba7c2db target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x0dadbebb target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0e3eac96 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0f537fe1 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x0fe2317c target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1168e04e spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x123be024 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ab38077 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e4b30ec sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x0eb2e3c4 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ed465a1 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ff28f9c spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x13f5bcc1 sbc_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d3fbcff sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x27ccb977 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x2cc55f00 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x34d4706a sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x37a9de4c transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3842b4a5 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x19f0bc4d target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x26560e5b __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bf8cc87 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f94ce9a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x301c6c3a __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x33a21533 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x391bd9c5 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x395cd6a4 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x39d2036a target_put_nacl EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3cf1bca5 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x3df21398 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x3f31e625 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x446e1457 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d5a964a sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5298db90 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b476e5d core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x46fc3b86 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x47c99983 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4de9aaaa target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e139a94 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x51b8a106 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x57558ed6 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ba42e38 transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d5ad0dc spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x5e000c11 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x5e7d6c65 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x632f9ea5 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6398d77b target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6584eeb2 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x6869927c transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x6b703851 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c113c81 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c6ec710 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x749b1e4e target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x792295b7 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x79bcf7b7 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x7cd61612 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x81d9c76b transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x8efae224 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x918c33c2 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x951f34ea target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x96080230 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x960a191a target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x9897ac32 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e261ed4 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x9f3ebb9a transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xa26ee01d target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa43fd95f target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xae868e07 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c13776c target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x5dca822a transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e811673 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ec146ec transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x66d7f5f2 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x69281059 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x69468429 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x737b8807 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x75401fcd transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x7610adcb target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x76e468e5 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x77b3600a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c4c829d target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f109269 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f9e2382 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x80efa775 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x81b69969 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x828cf8c3 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8502e98e sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ba5f17d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x94b726cb target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9855818c spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a06712c target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9da4a276 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0aef8a4 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xa555aa2b transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa311790 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xac076c72 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xad9306e0 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xadab8969 target_cmd_init_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb3706a73 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xb428d88e transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xb586d4e3 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xb760cc5d transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xb77f173c transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1275984 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb954e29c passthrough_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0xbd27a574 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xbef86785 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xc246b6c3 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd35d568a target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xd6d66626 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xd73d3fca transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc9bbc75 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xe0966b60 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe48eefa2 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5377e00 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xe73aa1d2 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe856c292 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xed14e611 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xef556d56 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe298e26 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe3bc6dd target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe83b0e7 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1798810 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2091d55 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xc380fc3a transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc945a250 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc1b7995 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcecc78d7 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd746e86 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2cf2523 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe60ade47 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe85b500f target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9477b29 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xee8f4eac target_configure_unmap_from_queue EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf49c0fa3 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xf70d16d2 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xfadfc93e passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xfdee9eb2 transport_init_session -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x06994b10 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x131864ee ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2014e056 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3f3f301f ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x443fed61 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x53bd93f7 ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x5df5474c tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x75c0fde4 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x1f1ca0bd ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xc3324ed3 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xfb097fd4 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x349040e6 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xe4493ed1 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x25411392 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4496deba usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6e1e9184 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7823e21d usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8af86bdc usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb6a9b029 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd7dc1e42 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdf0a6c1a usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe7eb8062 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf18e1178 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf89589c5 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa16eddce usb_serial_resume -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc99cad3a usb_serial_suspend -EXPORT_SYMBOL drivers/vdpa/vdpa 0x1315a8f3 vdpa_set_status +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1094f144 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2c2d3932 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6394f88a ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x85620b38 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x8bd091d6 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe351e19b ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x01810646 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x0d202f8d tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xb6bda409 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xb88b3c8d ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x03fe2749 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xdff98318 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xbc004566 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x20df3a5e usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3a1690e8 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4e2249c9 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5a7b6ca2 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x70502256 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x970d3de5 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9d21d2c8 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca26ef72 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xef19e3d8 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf0871930 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfde6705c usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x13aca327 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x4cb163be usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0xa80d0cd0 vdpa_set_status EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x2b718bc0 vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0xa8a00579 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xca4fb199 vfio_pin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x4a8e0703 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xd0970b22 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vfio/vfio 0xb0b7ff99 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xd8bdc1b6 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xfc118032 vfio_dma_rw +EXPORT_SYMBOL drivers/vhost/vhost 0x6a22abaa vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x7d7bf857 vhost_chr_write_iter EXPORT_SYMBOL drivers/vhost/vringh 0x02bc4d97 vringh_notify_disable_kern EXPORT_SYMBOL drivers/vhost/vringh 0x0cb6a9ec vringh_complete_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x14cc0ebd vringh_notify_disable_user @@ -4567,131 +4567,131 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xec8d1196 vringh_notify_disable_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0xfb0ddc22 vringh_init_kern EXPORT_SYMBOL drivers/vhost/vringh 0xfbd17af8 vringh_set_iotlb -EXPORT_SYMBOL drivers/video/backlight/lcd 0x0012d55a lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x6fee015e devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x7835ccec lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xbaaa411e devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x086e20ee lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2813e0cc devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5e2165bb lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5f66f999 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x10fee0e5 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x127b5113 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 0x321b2cd8 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x42a98b8d svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x45360374 svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x57932160 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5476a713 svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb08869ae svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9973a4a6 svga_tilecopy EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb3d40241 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb91559e1 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc4cf55a8 svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd3de1ca5 svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe17f24eb svga_settile EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs 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 0x77f93698 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x6ecc0dcb 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 0x7822c41a mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5a524eaa matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x66c3a87c matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf5b215a8 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x29c6f6f6 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x973f0958 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xac92615f DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xedaaf1ae matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xa9e29006 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x3d7dcc8c matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x070304a0 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x515e2526 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb2ac6dae matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xdc71c378 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x945f226c matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xdb2d9da5 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xf8355dd2 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x813eb281 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa29ade07 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa4f249ff matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x64bc33a6 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8610cf26 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8bc4d46c matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa262c147 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x1b2a97e3 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xe45aad98 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x291732d2 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x66edf04f matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xba59c27f matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xccc5d761 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb0bcbeeb matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc0598961 matroxfb_g450_shutdown EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2ca2f44e matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x683c2efa matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6ab7c10f matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x75ee6cea matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x944182ee matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x329c9ac8 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3d5ecef3 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5eb52d9d matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa5d40fc9 matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe5396179 matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x974ef3ba is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa46a9b61 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xbe8306fd virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xde5f9209 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2d0ecb46 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x58bede1e virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x8944dbca is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x8d4e2166 virtio_dma_buf_attach EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x53c00da9 w1_ds2780_io EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x5fa83fd2 w1_ds2780_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x3596a8b6 w1_ds2781_eeprom_cmd EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9ab9d4b0 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x118649bc w1_remove_master_device EXPORT_SYMBOL drivers/w1/wire 0x6bebfb3f w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x6ee6d0a0 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9637d7a7 w1_add_master_device EXPORT_SYMBOL drivers/w1/wire 0xe92fc1bd w1_register_family -EXPORT_SYMBOL fs/fscache/fscache 0x0003507c fscache_withdraw_volume -EXPORT_SYMBOL fs/fscache/fscache 0x0f44c9c2 fscache_dirty_folio -EXPORT_SYMBOL fs/fscache/fscache 0x0fbc4be9 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x10facfa2 fscache_end_cookie_access +EXPORT_SYMBOL drivers/w1/wire 0xfc0515f8 w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x00e2b379 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x0d872135 fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0x160a324b fscache_addremove_sem EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1e5e50db __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1eee7a23 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x204accba fscache_add_cache EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x29bfbca3 fscache_wait_for_operation EXPORT_SYMBOL fs/fscache/fscache 0x2b389369 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2d409279 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2fedaa52 fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x3787621d __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3be85234 fscache_put_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x43958c83 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x32377c3c fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x34179680 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3fe42867 fscache_end_cookie_access EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space -EXPORT_SYMBOL fs/fscache/fscache 0x442abc12 __fscache_clear_page_bits -EXPORT_SYMBOL fs/fscache/fscache 0x489dc16c fscache_withdraw_cookie EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates -EXPORT_SYMBOL fs/fscache/fscache 0x4af0dff5 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x49ef0782 fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4ec26cff fscache_end_volume_access -EXPORT_SYMBOL fs/fscache/fscache 0x4ff3ebdc __fscache_write_to_cache -EXPORT_SYMBOL fs/fscache/fscache 0x5fbc5b1a __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0x688b1a84 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4c9f2312 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4ce67a7c fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x5103424b __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x62722eea fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x68e334fb __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x71fb0e58 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x76e8462f fscache_relinquish_cache EXPORT_SYMBOL fs/fscache/fscache 0x77e19a42 __tracepoint_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x7cef0059 __fscache_begin_write_operation -EXPORT_SYMBOL fs/fscache/fscache 0x822f30be fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x7c6c4a5f fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x898d0c30 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x8c792c2b fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x8d0ad93e __fscache_clear_page_bits EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x9d7f93f0 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x982ae969 fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xaa8b01a6 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa4199120 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa683c64c __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa8813673 fscache_put_cookie EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb17cbaa7 __fscache_acquire_volume -EXPORT_SYMBOL fs/fscache/fscache 0xb42ebc0f __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb8a3cc04 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xbab5a20e fscache_add_cache EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xca9ce1ae fscache_acquire_cache EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xd3cf992c fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xd8e7c01a __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcd7bd402 fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xe3dd7de1 fscache_withdraw_cache EXPORT_SYMBOL fs/fscache/fscache 0xe9355746 fscache_clearance_waiters -EXPORT_SYMBOL fs/fscache/fscache 0xfdea0f0f __fscache_relinquish_volume -EXPORT_SYMBOL fs/netfs/netfs 0x07dac62a netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x5b806bec netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0xa4a603ca netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xf0fa3dd4 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0xfffa538f netfs_subreq_terminated +EXPORT_SYMBOL fs/fscache/fscache 0xf1afd76c __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf4e1ac05 __fscache_acquire_cookie +EXPORT_SYMBOL fs/netfs/netfs 0x28b26b5c netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x40bad82d netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x8f06b6a3 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xdd361ea3 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xf3b8636b netfs_subreq_terminated EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x15f83db5 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x44618472 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x6c8bbb25 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb0098800 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xbc632f6c qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xe4cf1b36 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x241741c2 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7402c8f0 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa2f46d5a qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xcdb5aee6 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdf5acfd6 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xec2cdbf6 qtree_get_next_id EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -4716,18 +4716,18 @@ EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put -EXPORT_SYMBOL lib/lru_cache 0x0cef9cf7 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del -EXPORT_SYMBOL lib/lru_cache 0x554d28e0 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x8cbe3c45 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xeacf51dd lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default @@ -4766,873 +4766,873 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul EXPORT_SYMBOL lib/raid6/raid6_pq 0xefc78e77 raid6_empty_zero_page -EXPORT_SYMBOL net/6lowpan/6lowpan 0x00571584 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x1af2d874 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x4f48facb lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x64b50474 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7c83ae3c lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb778e02f lowpan_register_netdev -EXPORT_SYMBOL net/802/p8022 0x6ad83b54 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0x7c9d8237 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x6e853e30 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xcf25f405 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x018edc65 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x01a8e5a7 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x0e0b783b p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x17060ffb p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x18eefe73 do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0x19351ea9 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x1a1fc9b7 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x20c3d664 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x22f9db6d p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x2482ac68 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x3052fb0f p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x30bb87fb p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x32d22bb1 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x35ce8ffd p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3a8c9fbc p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3bc48b86 p9_client_rename +EXPORT_SYMBOL net/6lowpan/6lowpan 0x355a537e lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x369426c8 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x62ca8506 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xabaed47b lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdde51d84 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe7375398 lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x8bfcfcf3 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x9417903a register_8022_client +EXPORT_SYMBOL net/802/psnap 0x03eed793 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xaea1f7e2 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x1a3d7c21 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x1d44cbd8 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x2265efef p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x25ae1168 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x27e2702e p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x2bbf00e1 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x2c7356d2 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x2d73984a p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x300e05d6 __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x3291e3e9 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x3b60cce2 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3c83fdb2 v9fs_unregister_trans EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x42c3ef38 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x454fbf08 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x40ab92ad v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x475ea2a7 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x4989874d p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x4ab884ad p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x55b08c76 v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x598b2e1b p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x59db3133 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x63a2e758 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x69fc4352 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x6aef80db p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x4e352dd7 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x5825e125 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x60b95f16 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6b16f9ec p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x6c6a5c3a p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0x6f8d746b p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x730a2764 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x74282d25 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x744cddb1 p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x7cf29ce6 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7d6289f4 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x81b6b5d0 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x859eed99 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x922f2ef0 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9630162b __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x9f0dd3e7 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa9844ca2 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x77b9897a p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x78688898 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7bb1837f p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8045afb6 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x837bc2da p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x89ae792e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x92d3de4f p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xa7c35274 p9_client_write EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xc2bcb924 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xcb93764e p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xb97f1940 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb9b6280f p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xbb13a65a p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc7236681 p9_release_pages EXPORT_SYMBOL net/9p/9pnet 0xce00d612 p9stat_read EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd4885201 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xdf642b4f do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xd9c6a4f1 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xda4fcf83 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xdb59c520 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xdba2e11e p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xde90a411 p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe60cf232 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xe7ef8548 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe9f99bce p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xeab7e5d2 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xed2c2bec p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xee32647c do_trace_9p_fid_put EXPORT_SYMBOL net/9p/9pnet 0xee437897 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xee51b0f3 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xefaed6f7 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xf047ce7f p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xf22442a0 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0xfd3bf36a p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0xffc26214 p9_req_put -EXPORT_SYMBOL net/appletalk/appletalk 0x12f07cba alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x61f8f382 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xaf8c6893 aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0xbe82889f atalk_find_dev_addr -EXPORT_SYMBOL net/atm/atm 0x0c3d2662 atm_charge -EXPORT_SYMBOL net/atm/atm 0x1599f6f5 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x1d60a804 atm_dev_deregister +EXPORT_SYMBOL net/9p/9pnet 0xfb09a37c p9_client_readdir +EXPORT_SYMBOL net/appletalk/appletalk 0x32e4b367 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x8822c22a alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xee18f09c aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xfd9df660 atalk_find_dev_addr EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x2e6e1cfd vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x3ffb3e28 atm_charge EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root -EXPORT_SYMBOL net/atm/atm 0x4a7b04a4 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x51da028d atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x5396fb7a atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x5847b6ab atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x7c2076e7 vcc_process_recv_queue EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa5d30281 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xa26aa819 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xa33e04ca vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xa9d30ec2 atm_dev_register EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xabe11839 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xad31a3a5 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xbebe095d vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xc5f2dd30 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xba804c49 atm_dev_release_vccs EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xe1ea1ec1 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xe452c6a1 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xeb8153de atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/ax25/ax25 0x004b7048 ax25_listen_register +EXPORT_SYMBOL net/atm/atm 0xf8a07f21 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xfa61c152 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xfa7a834d atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xfcace50a vcc_insert_socket +EXPORT_SYMBOL net/ax25/ax25 0x0bbc7483 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x1504a692 ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4b5c8c8c ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x507a9472 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x6e7cc192 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xa652b046 ax25_find_cb -EXPORT_SYMBOL net/ax25/ax25 0xbd4552fa ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xb37c7aa9 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xb50f2212 ax25_linkfail_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xe29834e6 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xe8f8748a ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xdc7a4ae6 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xf1e8f233 ax25_ip_xmit -EXPORT_SYMBOL net/bluetooth/bluetooth 0x018f3ce1 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x03b31187 hci_reset_dev +EXPORT_SYMBOL net/ax25/ax25 0xf2d6aad7 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xf8077b9a ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01fb3b24 hci_get_route EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x09431593 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0x09e806fb hci_devcd_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1093c474 hci_devcd_append_pattern -EXPORT_SYMBOL net/bluetooth/bluetooth 0x11311767 hci_devcd_append -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13772be2 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13de846e hci_cmd_sync_submit -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1645b831 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07688cf2 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09c692ef hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a4b2637 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e41db3d bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e76061f hci_devcd_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ef79071 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12f8c2ab hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1353935f hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x139a0fcc hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1557faa5 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x19d868cc hci_cmd_sync_queue EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x24dfc93b hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27934aad bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c21fcf9 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x3754e614 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x40badfab hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4197f58c hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0x48171eda hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x485ff3c1 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x487a2d0e l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b1953f9 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c365c97 __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bb540b5 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c8d656a bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5eb6fe8c l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f896be7 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x62d9a18d __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x640e6005 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x712b76dc bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x716092b1 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x71de25ca hci_devcd_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x776e0d00 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7820e502 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x23e65630 hci_devcd_complete +EXPORT_SYMBOL net/bluetooth/bluetooth 0x266c18ad hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x284c6990 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ca26ed7 hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a8ce72f hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ace1fd3 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d91e83e bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42ffdc43 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49a59147 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f13f3ef bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59a68eea hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cbd6a1d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x651fd554 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x671163e9 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68671867 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6fa9f6c8 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70a58630 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73947a25 bt_sock_wait_ready EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d855d20 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8318ccef hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f456f6f hci_devcd_abort +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ece4488 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x83afb41b bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8949d31a hci_devcd_abort +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a02d2b1 hci_recv_frame EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x96725c59 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9dbcef1a bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa03958d6 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9552ba0f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x974f08a7 hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x996ed2c3 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9cb95b23 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fe86bd7 bt_sock_poll EXPORT_SYMBOL net/bluetooth/bluetooth 0xa36d67be hci_devcd_rx +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3bc25ef hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa5e357a5 hci_alloc_dev_priv EXPORT_SYMBOL net/bluetooth/bluetooth 0xa60137a1 hci_devcd_timeout -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa93160bd __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xad30bbcf hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0xadc93d3d bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb304949c hci_devcd_complete -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb873aec3 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc642534b __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcabba8ea l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaef896fe bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf4c0586 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0aca1fb bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbabe337b hci_devcd_append +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbc0fba9 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc15c2a7e hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc35031d5 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc400f979 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc49bd1bd hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfd74168 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4a8619c l2cap_conn_put EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8b9f211 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd813c61 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8f4c2fd __hci_cmd_sync_status EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe225a364 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4456a66 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe66239df __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xebbf228f l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf620b0b4 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6f2dffd bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf71a4a8e hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf81265e2 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa5c5116 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfcf42540 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe42392b bt_sock_wait_state -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1d7bedde ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6f5d69f5 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8fb66cba ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa93ce1d5 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb35a1cd3 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xefc091b2 ebt_unregister_template +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2a60623 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb8f3ed2 hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf006d63d hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf30499ad l2cap_register_user +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x21c54e7c ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3dbab54a ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6407bc78 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6cabd7f9 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd5be056a ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xec58d79b ebt_unregister_template +EXPORT_SYMBOL net/caif/caif 0x0af01939 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x25ad9b34 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x35c25d84 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x361bb5b9 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x48d46ee9 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x56fb168f caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x55f66ea3 caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x8faa53bb caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x9476e7a0 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xf4d797d6 caif_enroll_dev -EXPORT_SYMBOL net/can/can 0x38c2cba4 can_send -EXPORT_SYMBOL net/can/can 0x796a52ea can_proto_unregister -EXPORT_SYMBOL net/can/can 0x855ea91f can_rx_unregister -EXPORT_SYMBOL net/can/can 0xaf094d7c can_sock_destruct -EXPORT_SYMBOL net/can/can 0xe2f8b2d0 can_rx_register -EXPORT_SYMBOL net/can/can 0xedbb2fd5 can_proto_register -EXPORT_SYMBOL net/ceph/libceph 0x1085ff41 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x13f16747 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x146740d0 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/can/can 0x0defdea4 can_proto_register +EXPORT_SYMBOL net/can/can 0x6941d02f can_proto_unregister +EXPORT_SYMBOL net/can/can 0x9fb8febb can_rx_unregister +EXPORT_SYMBOL net/can/can 0xa30efe6e can_send +EXPORT_SYMBOL net/can/can 0xf2bca479 can_rx_register +EXPORT_SYMBOL net/can/can 0xf89c9e92 can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x0261c072 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x0429442a ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x0689a655 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x076d791a ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x0e3d6dae ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x0e4de999 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x1143424e ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x142fd1d6 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x155b4320 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x1650140a ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x1f41b57c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1662c9a3 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x16c682cb ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x172df113 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x17c674da osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x242260fd ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x26e1ed14 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x2934a92a osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x299025b7 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2aa49f5f ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x2e1eb48a ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0x3459e49d ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x3788b2bc ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x388f2b1a ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x2b4394f3 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2bc264f8 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2cbe4b99 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x2f12cd82 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2f1c0efe osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x2f407b34 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x30943824 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x3122e243 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x34005fa3 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x343a5d77 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x36832588 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x370cc8f7 ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a584fdd ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x3a6924da ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x395ee540 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x397e6f93 ceph_monc_want_map EXPORT_SYMBOL net/ceph/libceph 0x3bb3da25 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x3c606f11 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x3c6c766e ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3eb2a6dc ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x400c1517 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x410b162f ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x41748cd4 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x3ee08c92 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x3fde15af ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x406e2cd8 ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x43642781 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x43e4eb10 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x42144a3a ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x465b8b1a ceph_copy_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x478375d1 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x48afd281 ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4b6efa68 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0x4cf4b0aa ceph_pg_poolid_by_name EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x52ecd7a6 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x5356c61f ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x53bde46a ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x5663ce67 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x570912de ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x575c4f0b osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x55783384 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x574fe42e ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x57fd6482 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x58e27627 ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x5ae799f1 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b7f14b7 ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x60321f37 ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x60a4aebd ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0x613f2700 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x6150df1d ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x615f8f25 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x5dffda99 osd_req_op_extent_osd_iter +EXPORT_SYMBOL net/ceph/libceph 0x6160a737 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x61e22c8c ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6566f2bb ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x6734ba96 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x67ed0d07 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x655b50f5 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x660cb681 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x66146cb8 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x679cf42f ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x68f1d2b0 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x69340d36 __ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6a909972 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x6d393ec2 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x6e15a9ac ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x6f381323 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x6e101bc3 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0x6f730838 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x70c5496e ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x747b936a ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x74950003 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x7968d9fa __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x7bdcbefd ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x7c7f3cb3 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x80e165f0 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x82c639ee ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0x84d4c3b3 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x74565d98 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x767cbdfd ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7c1bfbd8 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7c243f37 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x8410000e ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x8669c412 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x8690feab ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8a70a90c ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x8b5b6dd3 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x8deb35d5 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8ebb76dd ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x8ecb6d5e osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x8f8398bd __ceph_alloc_sparse_ext_map -EXPORT_SYMBOL net/ceph/libceph 0x8fd02459 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x9332bf51 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x87382648 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x89642fdd ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x899c67c3 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x8aff8a07 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x8db2e101 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x92a192e9 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x931e9fdc osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x965a1731 ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9a56559f osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9db21f90 ceph_osdc_watch EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa3373643 osd_req_op_extent_osd_iter -EXPORT_SYMBOL net/ceph/libceph 0xa609ba3f osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0xa62c1857 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xa1c8061f ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa7d9e595 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0xa9c8f885 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa7a07588 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xaaa8c790 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xad3f14a7 ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xadf88997 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xae9862f8 ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb00059ec osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xb20d2169 ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xb2a3077a ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb532f037 osd_req_op_xattr_init EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0xb592e668 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xb675c729 ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb804f846 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xb8ea7bb6 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xba93ee8a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb91cfc8f ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbe783e07 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xc10e326a osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xc039fcf3 ceph_alloc_page_vector EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc90a7066 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xc93e9e0f ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc408816e ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xc53706f8 ceph_create_client EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcfbd82e9 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xd3430e55 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xcd423e84 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xcf3752c1 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd35ce9b1 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xd4019bba ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xd4b732ef ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd6377a1d ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xd6974d23 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xd83a2095 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0xdb0bb300 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0xdd399528 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xdda4a7ae ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xddcd8b1c ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0xddd84f0a ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xde7dd529 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd8477d94 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xd92163a1 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xd9354ba0 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xd983c748 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xdd741052 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xdd93a077 ceph_msg_data_add_pages EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xdfcab54e ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0xe022108c ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xe148c8e3 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xe387d18f osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe44e05f7 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xe5578781 osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xecd41e20 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe86294f8 __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0xe8a813d9 ceph_monc_get_version EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef83880d ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xef980b3a ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xf00312fa ceph_client_gid EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf1ac8cb1 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf05d43b6 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xf0fbbb46 ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf3afd4be ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf4d77859 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xf6ce57ae ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0xf6ed834e ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xf72c58e7 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xf817c291 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xf91f50fe ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xfbd238c1 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0xfe879659 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2594a4db dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5d754d90 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x2ae645ec hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xa0d4d10f is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x3c9d85e6 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x480076cc wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x7ee32d0a wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x95975c54 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa60ce723 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xfab92802 wpan_phy_register +EXPORT_SYMBOL net/ceph/libceph 0xf79a8000 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xfb718cda ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xfbd2d018 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xfefe7347 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xffba72af ceph_monc_stop +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8cd52920 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb8045013 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x4512b296 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x8fab4f86 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2601bea6 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x64b11087 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7d5482cd wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb4e4d68e wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc01bee72 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfe708824 wpan_phy_free EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x2cfc4114 __gue_build_header -EXPORT_SYMBOL net/ipv4/fou 0xda37df68 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x25f0c43c __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x34ac45bf __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x295b6924 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0063f328 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x361983d3 ip_tunnel_md_udp_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3cec3fc0 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9b47bb74 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc9faf5ab ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1fa36142 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2295aafa arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4b2e1c14 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6e53a30b arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1c6d06ef ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x51e0fe98 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf4c1149c ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfb700e2d ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x4545ef85 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0x54583efc xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x749bd93b udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3f62a480 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4023aca7 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6dedbd37 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x783958bb ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7c91be26 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x860143e2 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c9ff863 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc7414703 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe110d77f ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7d6a7a04 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7e9a861e ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x87071dba ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe20f5d2d ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x3d69416b xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x3dda0fdd xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x74fc217b xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x85ba02be xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x25dd37cd lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x58037506 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x6a4ea5db lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x7316f451 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x872754bb lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0xb02589c4 lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xc8046751 lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xd62b0bea lapb_connect_request -EXPORT_SYMBOL net/llc/llc 0x10dfa5a9 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x1e14689a llc_sap_find +EXPORT_SYMBOL net/ipv4/gre 0x68a0b85e gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x29e90114 ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4e9707bb ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x67a05b28 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb6e90dc7 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfc382e79 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4e3eaf2c arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5c870591 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x92406bd1 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe261a910 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7e72f9c3 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9ba13406 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb1f58ad5 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe4c75acd ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x15c5b0e8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xa96f5bde xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc87992c2 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1ee067ad ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2c26006b ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7bf298b3 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x84b43328 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa277d1a0 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb7be65c3 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc6630fd5 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe4e35572 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe4f821df ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x066e123a ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x324ba230 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3d40c457 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x552e9906 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x52da6eed xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xff1a20a6 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x63c03d4b xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7712d948 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x056e122c lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x6877ebc7 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x6ff9ff58 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x89708939 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x914fe85a lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xe93c9918 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xee534df0 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xf4cec98e lapb_register EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x45181de0 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x47e5a737 llc_add_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x54410613 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xaa18800a llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xabd1a337 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0xb884762a llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xd180f4fd llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x00edb819 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x021850bb ieee80211_refresh_tx_agg_session_timer -EXPORT_SYMBOL net/mac80211/mac80211 0x06aa8a47 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x07e2ff40 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x0a127dd9 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x0b427bc1 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x0d1750d9 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x0fdc9983 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x158c81fe ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x165b0160 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x179f32f1 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x18b47317 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/llc/llc 0x65020d80 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x7ee03aca llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xa743eaec llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xcc87bd99 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xf3870a77 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x01b16e61 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x02bf6e7b ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0764a57f ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x0817c294 ieee80211_beacon_get_template_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x08adf553 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0c188b57 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x101d1fa8 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x11e9fa11 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x1339f8a4 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x139b1bc3 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x139d666f ieee80211_get_buffered_bc EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1a0c0a40 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x1a33e173 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x1bfe7e03 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x1aa6ce74 ieee80211_nullfunc_get EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x245e3d68 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x24794d5e rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x29ac8036 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x2a382b7c ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x2c4e41e7 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x2e9dfbad ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x32088fcb ieee80211_beacon_free_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0x35cc5544 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x1dbd23a7 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x1ffee850 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x246ed202 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x29a0ec29 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2b581aec ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2cecb58a ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x32cdf26a ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x3760ee01 ieee80211_get_tkip_p2k EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3ec97aa1 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3fc33a33 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x40790b40 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x41481366 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x41ecb1ea ieee80211_beacon_get_template_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0x44747836 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x465619b3 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x4cd6941c ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x4cdd69f8 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x52fe727c ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x53360abe ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x565682ca ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x59b1bbc6 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x5cafbbd0 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x5fb3010a ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x633af28a ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x6431e8fd ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x66268f20 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x6ab29674 ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x6bf89ec5 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x6d78872a ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x737a158a ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x74663d41 ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x74b4faf0 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x7e185f7c ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x7ee02035 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x7f34340f ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x8083f2c2 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x811d886d __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x84451383 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x866913d0 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x8b8a6aa9 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x8d1914f7 ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x8f278bf5 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x90d24d44 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x9191dc42 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x94e87e25 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3a322b97 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x3bf875a8 ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0x3cb841d7 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x3d15b1f6 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3d47be85 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x3d99d966 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3ef32359 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x43dc8f60 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x46e94714 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x470484b7 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x47c525b3 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x4e071572 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4ede73f0 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x51624a7f ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x5744a24c wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x58033c1b ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x582527dd ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5ac2d2aa ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x5e75e6dc ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5ec68117 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x5fc41619 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x5fcca6c2 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x6535391d ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x6c5c92f4 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x6f186be5 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x6ff9a4e4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7a7f32d3 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x7c92b4ea ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x81b69937 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x82ae3729 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x83d760bb ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x88bf381a ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x88c67f20 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x8a9bdb06 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x8ad83a6d ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x8c3c03b0 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x8d91e01f ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x929e2c90 ieee80211_sta_set_buffered EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x96fa7548 ieee80211_beacon_cntdwn_is_complete EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x9ba338ad ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x9cb8c885 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x9d703d64 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xa035cb11 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xa0f91a8d ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xa397554d ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xa4536845 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xa8780e7d ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xa9c24e2b ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xae1ff650 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x99e7c389 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x9af131c1 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x9b00bd83 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9b089e96 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9cba4a57 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa282374c ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xa52a0988 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xa8c5fc5d ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xab53c0b6 ieee80211_tx_rate_update EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xaf0027b5 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xb118a65a ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xb2b2ecab ieee80211_beacon_get_template_ema_index -EXPORT_SYMBOL net/mac80211/mac80211 0xb477a3ec ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xb4fd08f4 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xb7ab6e29 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb7d556f9 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xb891cba1 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xba2e9788 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbf9b8c4d ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xbfd2887b ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xc2ac33a8 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xc3b01566 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xc4604fb8 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc5b811b4 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc63226c1 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xc782b27d ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xc8180506 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0xcb0e7392 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xd001921f ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd4761c2a ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xd8b7f471 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xd942c2a1 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xd96c1410 ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xe035a15b ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xe2bf9975 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xe323d46e ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xe67a894d ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xe68841c9 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xe8e2fc39 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xedbc0032 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xef664b15 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf22569cd ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac802154/mac802154 0x34b09f49 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x3fae4d3a ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x663b7d92 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x873dae29 ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0x958812dc ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xc74efb90 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0xe98206ba ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf4f9c9c2 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xf801a4c0 ieee802154_xmit_hw_error -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0eff6611 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x263e962b ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49bcc2b6 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x590f7891 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b736d61 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b3498c5 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x84bd8d62 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x878f2153 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8c3c0b1c ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9cd8eaea ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb8086bc7 ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba29657e ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc4e21156 unregister_ip_vs_app +EXPORT_SYMBOL net/mac80211/mac80211 0xaf3f8c71 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xb42dc4cf __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xb5e32f99 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb6c3aa61 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xb6cfe0bc ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xb84648a2 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xbdd4be26 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbeb4c473 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc3955db3 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xcfc1d7a0 ieee80211_refresh_tx_agg_session_timer +EXPORT_SYMBOL net/mac80211/mac80211 0xd0d2a860 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd1539b73 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd1c8c378 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd20bcb20 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xd304a2b4 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xd485b0c0 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd6fae2a9 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd797580d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xd88d00b4 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xdb82633f ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xdf441853 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xdf69f9cb __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xe13ca5ad ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0xe1ee202e ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xe3b3415d ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xe606706f ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe61564d7 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xe77c9aa4 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xe812a713 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xe8e9eb27 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf24b161d ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf407c7b5 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xf4552e60 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xf538eca1 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf91e356e ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xf928e3b3 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xf9336cdc ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac802154/mac802154 0x12395263 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x2da6cb0a ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x57732f1c ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x63787972 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x6ab21a34 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x856bd554 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0xa41dded1 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xaf9c65a9 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xca70bd48 ieee802154_configure_durations +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0e7a3b2f ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10799bfe ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b8c10c3 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x51211858 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x656b14ac unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x814c8123 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8e344c0a ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9fb7ad23 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa06eec5f ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8e54f6f ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1d1caf9 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb9f324ec unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc0fd1198 ip_vs_conn_out_get EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe977c82b register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfeb37305 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd84ba605 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe26d6891 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x312e97a8 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd01ce4fb nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x094ce207 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x42481962 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x6f88fdca nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xf6f9dfb3 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x0302023a nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x0583585a nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x8d701816 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xf744679c nf_nat_mangle_udp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x1c9dda50 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x23b20bab xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x3a7bde15 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1ed0e28c xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x2dfd631e xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x433a3709 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x5ba2d79c xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x5d84e496 xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x684326ae xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x529e683f xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x64c289b6 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6933d064 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x77bb4250 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa5befb0e xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0xb2a29224 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0xc0fbb092 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb1cd8989 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd727b6f4 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xfad69738 xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x1fe9c2b5 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x245d8e35 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x3b7b3d54 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x3bcd3117 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4995684e nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0x4ccccb04 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x68363df3 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x69c4f183 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x7257078c nfc_hci_reset_pipes +EXPORT_SYMBOL net/netfilter/x_tables 0xff0b5ed4 xt_find_match +EXPORT_SYMBOL net/nfc/hci/hci 0x0b1ecfc5 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x2005efdd nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x30c5f76b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x322e5239 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x4035fbfa nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x661aeae2 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6adddee3 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x6e740361 nfc_hci_allocate_device EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x896842eb nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x93c64e1b nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x9df6b960 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xa24955d3 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xb28e35a9 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0xb8a7094e nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xc7118a71 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xcee4de7f nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x783e75c3 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x80de4822 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x9d507ec8 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xa07b30fe nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xa50cb96f nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xac4bcd39 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xac89f09d nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbb1ea990 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd6219893 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xd76acbd3 nfc_hci_reset_pipes_per_host EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xeec222e7 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xefeb97cb nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0xfbc64a42 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xfcee6ed8 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/nci/nci 0x03260a73 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x06c92a4c nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x158d8dd0 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x30df3dd2 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x322ed39e nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x36c1446a nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x421d5632 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x4d3f4a1c nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x4dd743da nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x507c2081 nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x526a6a59 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x53a7f0d5 nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x57d67eab nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x59eea5cf nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x6196d10f nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x634a6d09 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x65766787 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x6efba722 nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0x70ecdd86 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0xa5b54a12 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0xaf37d5a6 nci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xeaa01fa9 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xfccf0111 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xfffeee5a nfc_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x009ff1ac nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x109ede7e nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x1a18f693 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x29e48c61 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x3bbfd5be nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x62be1c75 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x6329c976 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x63a98ce5 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x6afabba0 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x6bee4870 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x70039ec8 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x7ba95ae1 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7cfa8a5c nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x862d516b nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x895742e5 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x95b90885 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x9705e17a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x99f0e0b3 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x9cf8404b nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xab5de036 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb9c32899 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba3ccd26 nci_req_complete EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xca81a37d nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xd75cb15a nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xda9d5186 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xdb09e177 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xe26331b5 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xeda1756a nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfbfdbe6c nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xfe03d499 nci_set_config -EXPORT_SYMBOL net/nfc/nfc 0x2939da42 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x29c76041 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x3c0e2bf6 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0x40daf6c1 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x53d40ce8 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0x5b32b5db nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x5f5e6020 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x6d454f2b nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x7d762d16 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x86059c90 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x873cec40 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0x8cb60cea nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x96be20bd nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x994e3852 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0xa2ade78a nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0xa497d01f nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xa586e380 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xc01f3b6f nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xc0acf129 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xc8b544e0 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xd0bdc60f nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xde72c321 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0xec0d4d5f nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xee8df40d nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xfda071cc nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc_digital 0x2bcc16e8 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x498b8237 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x6b1ec115 nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x9ad7f536 nfc_digital_allocate_device -EXPORT_SYMBOL net/phonet/phonet 0x093033eb phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x0cd17cea phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x10721b3f phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x2b820800 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x3e0dab23 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x663163a1 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x8c4ec6e8 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0xd1a88a44 pn_skb_send -EXPORT_SYMBOL net/rxrpc/rxrpc 0x03a99edd key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0x149d2f40 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2f198715 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/nfc/nci/nci 0xc3447a32 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xc9567b4a nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xcc923a4b nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xd5db528f nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xdb3b77a1 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xf0046e51 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf3be8518 nci_set_config +EXPORT_SYMBOL net/nfc/nfc 0x19acfede nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x1f9c1bb5 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x38e15480 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x3a98dfda nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x6175c5a0 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x687f02ab __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x73696483 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x75a2a9a0 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x765e48bf nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7dca64ea nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x88e17bf2 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x8b7f4e08 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x90b0a19d nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x98a96500 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x9a0819ef nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x9e0402dc nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xa75be676 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xc2ca558a nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xd239b0ec nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xd711d384 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xeb7c9f04 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xf26d49af nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf75ee924 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xf955f7b3 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xfc5ef690 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x3030fbe7 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x372f1d11 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x754de123 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x93bd6760 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x4d9dc664 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x70c9a469 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x92b46cb4 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x98808af4 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xad28462e phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xc53aeb37 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xebff7810 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xf813ae03 pn_skb_send +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0226da12 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x10ebedf4 rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x11f2e910 rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x13cd7891 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1c400c23 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2ebb3b48 rxrpc_get_null_key EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3e187388 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x40abfbf6 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x473499ba rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4987ba8c rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5b1f6895 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6867e371 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7b45c648 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x91597701 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b91dee2 rxrpc_kernel_put_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9ca6062d rxrpc_kernel_shutdown_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9d3238b7 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa1315d84 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbf2262e0 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe52f165c rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfbe6c94d rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfcd6b372 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/sctp/sctp 0x9b21e309 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x17a69aae __traceiter_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x20c90d9e __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3c6675e9 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4d9f3a43 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6becf3f4 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6f2ef7a1 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x72962ae5 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x73e7bd7c rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b562206 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b6fe61a rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa48daed7 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc50cd681 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc7690146 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf070bddd rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf647cdcc rxrpc_kernel_get_peer +EXPORT_SYMBOL net/sctp/sctp 0xb21e7eb4 sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3a3c4a10 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x6719a314 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x76da5303 __tracepoint_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xa053541c __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xae09eb06 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xc9b93e87 __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xd24addfc __tracepoint_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xea681ee0 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xf419d2ef __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xf47b4ee2 __tracepoint_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x304f9319 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3c20aa09 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x659008df gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1bf80ea3 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x5fd0c071 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbd3ec0b5 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x3159fea1 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x4ab02dc1 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0x597fa54b tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xe2e4962c tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0x8100d621 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x023e3112 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x0421016e cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x88a710d0 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa8c45797 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf9f8bc89 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3351838e svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3c5c1a58 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x45d981d0 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x23667d51 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x2730f66f tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x4249084d tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x457d0692 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0xcb21f113 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x02961426 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x039785ca cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x042fe42d __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x05567fbb ieee80211_data_to_8023_exthdr EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0afb025c cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x07b5b4c4 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x0c6334ae cfg80211_sched_scan_results EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x0fdd6d48 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x10412490 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x0ebd039c cfg80211_rx_assoc_resp EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x13927753 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x11b5a898 cfg80211_roamed EXPORT_SYMBOL net/wireless/cfg80211 0x13c58e52 ieee80211_get_8023_tunnel_proto -EXPORT_SYMBOL net/wireless/cfg80211 0x1785fde5 cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1a046714 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1ace4dba cfg80211_port_authorized EXPORT_SYMBOL net/wireless/cfg80211 0x1b82a85a cfg80211_valid_disable_subchannel_bitmap +EXPORT_SYMBOL net/wireless/cfg80211 0x1cbc445b cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1ee6fa4b __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x1ff73382 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x217685d2 ieee80211_is_valid_amsdu -EXPORT_SYMBOL net/wireless/cfg80211 0x23786190 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x274d3037 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1eb1c8f5 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x21edd2c1 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x235f7ede cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x23db3858 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x24eb9b5e cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x25e776ab cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x2b0aeaf5 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x2dee0bf5 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x298a673f wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x2fa2f101 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x33d85306 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x341e6232 cfg80211_chandef_dfs_required EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x391653fc wiphy_rfkill_start_polling EXPORT_SYMBOL net/wireless/cfg80211 0x3aca71a1 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x3c692a0f cfg80211_classify8021d EXPORT_SYMBOL net/wireless/cfg80211 0x3c744e95 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x3c86019a cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x3d103fb3 cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x3ef1ee2d cfg80211_sta_opmode_change_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x42503b6a cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x427b2200 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3f02c09b cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x3fc15afe cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x3fe52350 __cfg80211_alloc_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4642c8e8 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4649de2f freq_reg_info EXPORT_SYMBOL net/wireless/cfg80211 0x4abed7d4 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x5279d389 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x534506af cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x54dc1e41 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x4cf7ed95 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x4cf8f4f7 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x4d62410a nl80211_send_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x5088ad49 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5106f100 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x530b3864 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x5374eb85 cfg80211_get_drvinfo EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x55d14e42 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x573ed2ce cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x5a9ccfac wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x5b7b2c01 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x5db9ff4b ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x6001b3bd regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x615c2e36 __cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x61bacd5c cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x62c9d2a2 wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0x634c1f06 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x64cbdc04 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x67821edd regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0x689248ad cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x55bdfead cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x57499ba4 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5a07b9bc wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x5c4644f0 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x5c60c759 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6086cf4f cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x64d9ee6c regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x65ed66bc regulatory_pre_cac_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b4343b0 cfg80211_remain_on_channel_expired EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6ea62a32 wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x799ec1e3 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x6c4c5fa7 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x6d8fbc1a regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x6dce3f10 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x6f84daae cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x715f62fc ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x71b1b855 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x74049ade cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x792f1f23 cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7afee765 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7b76d80b cfg80211_pmksa_candidate_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7fb67e6c cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x8033e66f cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x84910a6a cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x8092bfe9 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x81cc66f7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8319fbe1 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x84af7ba8 cfg80211_cqm_beacon_loss_notify EXPORT_SYMBOL net/wireless/cfg80211 0x85de3f6f wiphy_delayed_work_timer -EXPORT_SYMBOL net/wireless/cfg80211 0x88c9c812 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x892fc608 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x89918d68 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x8dbdc10a cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x8e106092 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x8f4f25a2 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x88714bb7 ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0x8b800bf6 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x8c1c738a cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x8e64770e cfg80211_links_removed EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x941dd640 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x97e29d20 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x982e1aad cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x994d4917 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x9a57f1a4 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x9acb1957 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa7e7fb cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x90962120 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x95553e63 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x95fc9e29 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x9894bbfd cfg80211_ready_on_channel EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9deb9bb9 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x9df02f11 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x9e4d9d97 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xa0bd1b80 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xa1290d17 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0xabafbe74 cfg80211_links_removed -EXPORT_SYMBOL net/wireless/cfg80211 0xad2c99b9 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xaed3bc7d cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0xb1f34a60 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xb365cb31 cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0xb3f48e42 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xb50dc3cf cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb6e62be9 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0xb8ac27ff cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xbacc8def cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xbb11e1dc cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xbd792504 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xbf057dc0 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xc07136d3 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xc1b5c533 cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0xc2d9da8f cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x9f798053 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xa00dc03f cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa01ca265 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xa071d8bd cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xa1126cbd cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xa1bb3eaa cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa20f6231 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xa24a7a08 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xa459763b get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xa6e2c474 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xa7f4bbbf cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa86b1ff0 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xaeaf0ad9 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xafca1462 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb3cdcda7 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xb4854f64 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb5e2e078 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xb5fd4743 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xbaa22275 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xbac6e76c cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xbcea95af cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xbf6e931e cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xc151bcff cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xc34eb67d regulatory_hint EXPORT_SYMBOL net/wireless/cfg80211 0xc3fb97ca ieee80211_get_response_rate EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc54c4c4e cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc79c77f3 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc57c2f7c cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xc791c442 cfg80211_bss_flush EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd32d2c6 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0xce8966d2 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0xcf05c328 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0xcfa87cd1 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xd0a3c98d get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xd3e67b78 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xd47a3bdc cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xd47d1b22 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xd49972dc wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xd3701b64 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xd4745dce ieee80211_is_valid_amsdu EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd5d4b4ef nl80211_send_chandef EXPORT_SYMBOL net/wireless/cfg80211 0xd6c87a05 cfg80211_defragment_element -EXPORT_SYMBOL net/wireless/cfg80211 0xd7adbffa cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0xd86c10ad cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xd92d02ae cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xd95e04af cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xd6ec68af cfg80211_background_cac_abort EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdea5ea11 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0xe09b2da6 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xe26b9448 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe284051b cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xe44feb49 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xe4ff1fc9 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xe524853f ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xe6d7ac10 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0xe736dfbd cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xe952a1e1 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0xe9caabb1 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0xed1fa8a7 cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0xf0144771 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xf14e29fb ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0xdbffa6a2 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xdf8fa83b cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xe03c5243 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xe347af50 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xe369da38 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf06b39c1 cfg80211_unlink_bss EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xfa54c5b3 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xfd04e236 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xfe050e9d cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/lib80211 0x1320e551 lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x4d3f1be8 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0x6616a27f lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x78b44362 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xc195cf5b lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xdbb28869 lib80211_crypt_delayed_deinit -EXPORT_SYMBOL sound/ac97_bus 0x457e40a9 ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xb05c5bb5 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf5ae978a cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xf6fae282 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfa37c75d cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/lib80211 0x10bdf21b lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x1915969b lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x26cd3a0f lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x3bf97c15 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa040fbc5 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xc93dc335 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xe48c60c6 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x433ccc36 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 0x23738926 snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0x2947ccaf 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 0x5d117b27 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 0x7b8699eb snd_seq_event_port_detach EXPORT_SYMBOL sound/core/seq/snd-seq 0x85cd59a8 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0xa47b9186 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x9abd5c0f snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xa6e19f8e snd_seq_expand_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xb0819de1 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 0xcd25827a snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc583e6d2 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe5aaf668 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x74769de9 snd_midi_process_event EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -5644,251 +5644,251 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x6eb7a979 snd_midi_event_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xbf083a58 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x01e7720d snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x0abd3a0d snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x0ceccec6 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x0ecfb178 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xae2e840d snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0571302d snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x09c6677e snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x11a96de7 snd_card_free_when_closed 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 0x1e8e7b8c snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x224e4031 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x22d40f99 snd_jack_set_key EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x26dac18b snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x318b5c3d snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x26cd4616 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x2dea8e14 snd_info_create_module_entry EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x346f90ef snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x396482e7 snd_ctl_notify_one EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3b69570b snd_card_free -EXPORT_SYMBOL sound/core/snd 0x3f118ee8 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x3af13a86 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x432afaad snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x460b1936 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x49599211 snd_ctl_remove EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4c04555f snd_ctl_register_ioctl EXPORT_SYMBOL sound/core/snd 0x4c6761fc snd_device_register -EXPORT_SYMBOL sound/core/snd 0x582b1a5a snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x5a6000b0 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x641dda2f snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x52ddb5c1 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x540ad814 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x5d6e1e3c snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x6b44fd3a snd_ctl_add EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x7718bd89 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x812c3907 snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0x81d2c03c snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x8310b05f snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x86462808 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x8999bbdf snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x73e249a0 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x784d60d1 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x799a16dd snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0x8a9f8290 snd_jack_add_new_kctl EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8e89ba82 snd_seq_root EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x8f9b8c28 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x90afb084 snd_ctl_boolean_mono_info EXPORT_SYMBOL sound/core/snd 0x90de7836 snd_device_free -EXPORT_SYMBOL sound/core/snd 0x937923cf snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x95712bb9 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x9749971f snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x99898ac9 snd_ctl_remove_id EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa24c57a4 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xa9bd4152 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0xaf084d31 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xb17a0617 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x9f9ad69d snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xa0032823 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xa2b0912b snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xa63cc43a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xab7772fc snd_register_device +EXPORT_SYMBOL sound/core/snd 0xab850570 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xae6ba061 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xb18c6d89 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xb2610710 snd_card_file_add EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb37b5d94 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xb48730d7 snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0xb4eebdd3 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xbfce4afe snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xc29700e4 snd_ctl_boolean_stereo_info EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc848e386 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xcb9a0574 snd_seq_root EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcfa5fb10 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xd0688d51 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xd3be5dbe snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xd4e0dc16 snd_ctl_rename -EXPORT_SYMBOL sound/core/snd 0xd7f64709 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xcd96bdd2 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xd0859339 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xd200b112 snd_jack_new EXPORT_SYMBOL sound/core/snd 0xd81e93dc snd_device_new EXPORT_SYMBOL sound/core/snd 0xd88cfaa3 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xdb415ac3 snd_card_new -EXPORT_SYMBOL sound/core/snd 0xde52a696 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xe87b3e63 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xeace46f8 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xd98a6e2f snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xd9912733 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xdd041168 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xe53f7d36 snd_ctl_register_ioctl EXPORT_SYMBOL sound/core/snd 0xf0d633f2 _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0xf1c62cbf snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xf25333f1 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0xf4760673 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xf4d39517 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xfa4270e6 snd_ctl_new1 EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x6b033417 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-compress 0xd80822ab snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x0f8c2a1a snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0x044922a3 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xde30cefa snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x4ea8cea3 snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x049ee7f5 snd_pcm_lib_malloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x056b3bdd snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x08d791b2 snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x0aade5e4 snd_pcm_hw_constraint_ratnums EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x12adef6a snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x18b7bcb1 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x1946dce2 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x19577cdb snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x1863aabf snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x19e78a18 snd_dma_alloc_dir_pages EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x2005e598 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x24741d79 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x28e8b59c snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x2d705a57 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x311e60f9 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x3165619b snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x335f97cb snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x34957e15 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3729ab7d snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x1fbcb18e snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x20f74c06 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x2f3b1c50 snd_pcm_hw_param_first EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian -EXPORT_SYMBOL sound/core/snd-pcm 0x380b80aa snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x39ad9fda snd_pcm_new_stream EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x4035275b snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x43d7fed8 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x4cf6f0fc snd_dma_alloc_dir_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x4ef2573b snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x3a12f601 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x3af2aaa9 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x4794650d snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x48373b18 snd_pcm_lib_get_vmalloc_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 0x514a1122 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x521d61bd snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x533aab89 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x57bd6aee snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x5a3301e9 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x5c809cac snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x53a385b4 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x55aa9252 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x5b483596 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x5d1282f2 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x5e14fec1 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x5e337e84 snd_pcm_open_substream EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5ee2ae34 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x63a906b2 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x63f1c790 __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x657028b2 snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x737c362b snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0x75172c21 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x7df94cd4 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x7ede958e snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x6f043ed2 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x73ae9a07 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x7bddd75b snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x7e774205 snd_pcm_lib_mmap_iomem EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x861ea95c snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x849d93d8 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x8beffe1d snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x8d3b7438 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x91d98303 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x9307600a snd_pcm_lib_preallocate_free_for_all EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x945bd734 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xa166ab46 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0xa39bbd89 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x9b99769e snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xa1cb1534 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xa228759a snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xa54adea4 snd_pcm_lib_preallocate_pages_for_all EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9844eee snd_pcm_lib_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb4e04ebf snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xb6e7b3be snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xac6ab062 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xae1d0d65 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xb327ac58 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xb617b15e snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb7e534ed snd_pcm_new_stream EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xcf01b964 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xd3a85c08 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0xda99a5b5 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xdf77f099 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0xdfb5f018 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0xe1734f19 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb9d48edd snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xbeba3061 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc9c2faeb snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xcb7c9766 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xcb844886 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xcb85a515 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xd0fd0a6e snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd57882c0 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xdfc5d574 snd_pcm_hw_constraint_list EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xeaa4f8b5 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xecda857d snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0xf71cd4dd snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xef895665 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xf1636748 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xf7a3b404 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x14036744 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x153b61ea snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5c27fb97 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6b92ae73 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d09fb15 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7c054d6e snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x865b7084 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x94477817 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x99d15c40 snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x9cce4525 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc015727c snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc31fd80e snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc4356297 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xcdf44ec6 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe12e51f6 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe67ddf6e snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xef1e298b snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf24e069b snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c37536d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e79f19d snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2a20404e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x43e6d0a7 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6decd447 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x711613bd snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x721d599b snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7aab7b02 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fc56e17 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x911a71ad snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x947c213d snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcbed16f4 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd7342d86 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xddaae729 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xde796f49 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe23aa632 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf39de78d snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfdde7229 snd_rawmidi_receive EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xffac8313 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x2626f94f snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x2a453661 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x311f2451 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x3bbc3260 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x6a6d0a21 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x77c3ef78 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x7afc7a59 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x8172d351 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x8935350a snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0x9b27806b snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xa248c6fc snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xc99489fa snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xe0250efa snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0xf295da52 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0xf87f3b79 snd_timer_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x25a77631 snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x8754633d snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x0711a644 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x1ff09dc0 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x6d8a9956 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x81f9eb59 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x8e10488f snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x994da6ba snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xa6b9e061 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xc0b6e44b snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xc0c00dbc snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xc16b8958 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xc496b728 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xd2022097 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xd24202bc snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xe65ffa24 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xf0ed3cb6 snd_timer_continue EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6e22b676 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 0x0d5099ea snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x27916094 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4bef21e9 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x50261ecc snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6889d3d1 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7f952c2d snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x94310009 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb879e258 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8e3bd30 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x135ea5de snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4c9fd892 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4dc0963b snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9dcf376a snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaec23c09 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbcfb49cd snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc4583b5d snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd69a1344 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdc59455e 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 0x2d779683 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3084e02e snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x635b2e3d snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x833b0bde snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8a47d16f snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa548931c snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb08e69eb snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb4257f89 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4febdb2f snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5378bf3d snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6bcf0d14 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x78120ffa snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xad83dae3 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb91c199a snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcb9bf193 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeab4e584 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xead75884 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 0xff9649d1 snd_vx_create -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x058ea204 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x070e0e54 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x139ba174 cmp_connection_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2616689e snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x26d2a899 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b0e6e37 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x301b366b amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3196f420 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3f29be52 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40a78a82 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x44d83721 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29a87d7b amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x342dd3ad cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x351c0e96 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3cc9b977 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42aefd99 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4dd43a61 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5679b450 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a0a851a fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61792c46 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x67a64411 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x68dfa387 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x747a98e9 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x794f7fcd fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d2b0832 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x814e3f48 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81c1e05a cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87352f91 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x943a8059 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99c675cc fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9fde27e7 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa40f51e8 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8b81957 cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3792754 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe3007794 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9047cde cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed66b79d amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3100d85d snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc767328f snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2cc5bff7 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x522a35a4 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x95d689bd snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb31cc141 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc9a235cd snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe4ce7595 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe951e795 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf0488a27 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0065a50a snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x492c0384 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x621987ff snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe5e06aa8 snd_akm4xxx_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x632c5b8e amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6877e367 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x776ddabc fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x77ed22d2 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7cd29974 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87dd061c amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x87f72672 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94773494 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94f15672 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97d95ae9 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98432c73 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa9cd3871 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xadccde7b fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5f17d25 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbdcb1151 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca8a3992 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf459630 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4f23aab cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe81a337a fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb64db86 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf771e867 fw_iso_resources_free +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x0124dcfa snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9af4fb5c snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2e436cb5 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4a94e190 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x692618a5 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7af3c89c snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x83cda229 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8bf1257d snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8f92992d snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xccdbbc38 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x04505dc0 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x78e1f1eb snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7b18ff99 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9a160453 snd_akm4xxx_write EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x363d50f2 snd_pt2258_build_controls EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8070e757 snd_pt2258_reset EXPORT_SYMBOL sound/i2c/snd-i2c 0x01982f58 snd_i2c_bus_create @@ -5897,5785 +5897,5786 @@ EXPORT_SYMBOL sound/i2c/snd-i2c 0x717d428d snd_i2c_device_free EXPORT_SYMBOL sound/i2c/snd-i2c 0xae934dd1 snd_i2c_readbytes EXPORT_SYMBOL sound/i2c/snd-i2c 0xfa464c6f snd_i2c_device_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x376dab21 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6134a5e7 snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x74aa354d snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7b044c65 snd_sbdsp_get_byte -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x97511a86 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9b466e09 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9c67b01a snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbf5828d7 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf081d206 snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfdbb830d snd_sbdsp_create -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x008ce4d0 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3363d276 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4184e6b3 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x46447421 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x46a51db6 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x57902561 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x594993ef snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x64d3221f snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x881aa228 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x88f531f7 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x949c9276 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9631cf90 snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb317cc95 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb728d152 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb83b1fa3 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe8e7d7f3 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfa64cb88 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3abe30ba snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8b6528eb snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc84b7a36 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x013928f9 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0a196bde oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0f5bd3b5 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1a160645 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4c8f8a6f oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5369d088 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x62201c09 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6cf9ef37 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x702d72f7 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77cd5a99 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x80fc9ccd oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x883f8218 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x89c726d6 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9eb72cb8 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb409b0a9 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb615f69e oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb6cce9f3 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc3524231 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd423546b oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf2648ff2 oxygen_write_uart +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0a2465fc snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0efc5d30 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x21122360 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x33af986e snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x440e6ce9 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x530320cc snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x704365c2 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7332f8b2 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcf75bf9a snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfcf4cb8e snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x02f110a9 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1508fc37 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x26e0bf12 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x35461800 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x48c55d80 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x53137915 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x596b7861 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x629ee80a snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7993c0b5 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x80cb5671 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9ba4d22d snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9f133bd9 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xae101634 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb89f5999 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc518acd9 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdbd97365 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe1d0b60d snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x183fa7ca snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd4b06ade snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xfcd5463f snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x03c1388a oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x04199bf0 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x19f44802 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3b570156 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x440a0569 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x504ee095 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x55f14cd6 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x630d70c4 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64475edd oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x68ee52d9 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6f1bbf1a oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x956c0b8d oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9884bedb oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc213e520 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc66e742b oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6b56d62 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd3717193 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xefd8de2a oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf5e48500 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfab839da oxygen_write8 EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x33103aed snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x717fbc15 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x8f640f85 snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x84bc297a adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xca8ac20d wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x76962549 pcm3060_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8ec075dd pcm3060_regmap +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x42331a25 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x600fb84f snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xfd09eede snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x6ead68b8 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x5d0d0861 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x5c12ce89 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x709da00b pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x032a4ac5 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x10c10ebf tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x665252b1 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd3507b89 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xebcdfda5 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x3264970b aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x742f75c3 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x18892952 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x559dd7a4 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x2c215c9d aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x33178b10 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7575e804 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x0251031a aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x72580ea4 aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x5bbbb251 wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x61e54096 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x60811d76 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x92fbf739 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa6317d4e wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xdc31ba24 wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x581d5d6d fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x6efd4c6f fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x772d60c3 fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/snd-soc-core 0x460e7d60 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soundcore 0x01aeb840 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0x70b8b916 register_sound_special +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x238fdfd8 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x2c635f0e fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x4de02029 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/snd-soc-core 0x115cf963 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soundcore 0x082aa73a register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x261bd124 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x6484a049 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x841c898e register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xa055c00a register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xb2825102 register_sound_dsp EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp EXPORT_SYMBOL sound/soundcore 0xd4a24289 sound_class 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 0x85bc5f7f __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 sound/usb/snd-usbmidi-lib 0xf70508a2 __snd_usbmidi_create -EXPORT_SYMBOL vmlinux 0x00077ce0 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x000acfc7 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x000d6f74 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x0005d4cc send_sig_info +EXPORT_SYMBOL vmlinux 0x0005f91d pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect -EXPORT_SYMBOL vmlinux 0x003c0869 dma_resv_init +EXPORT_SYMBOL vmlinux 0x0045de2f kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x004c988a dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x00551f0f padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x005acbb4 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0x007d3405 netif_skb_features -EXPORT_SYMBOL vmlinux 0x0083f65b kernel_write +EXPORT_SYMBOL vmlinux 0x005b447a thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x0092fa46 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x00b03fc5 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x009ab768 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x00a65262 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x00b470f1 find_vma_intersection EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00cf73d7 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x00cb7f82 pci_clear_mwi EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00d953a9 dump_emit -EXPORT_SYMBOL vmlinux 0x00dd4469 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x00f1242c __register_chrdev -EXPORT_SYMBOL vmlinux 0x00f563cb simple_nosetlease -EXPORT_SYMBOL vmlinux 0x00fddde0 md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010704a2 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x010b7e89 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x010e234b put_ipc_ns -EXPORT_SYMBOL vmlinux 0x011131f4 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x0112cb84 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x0107fc6c blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x010e5a96 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x01113b35 get_task_cred +EXPORT_SYMBOL vmlinux 0x01148c37 filemap_map_pages EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x0115cf93 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x011a295c keyring_alloc +EXPORT_SYMBOL vmlinux 0x01211f1d __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x012878ab pcix_set_mmrbc EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set -EXPORT_SYMBOL vmlinux 0x013e9b30 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x01354187 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x013e57bd dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x0140c525 gen_pool_create -EXPORT_SYMBOL vmlinux 0x01434d2e d_path EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01557687 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x01631efd lookup_one +EXPORT_SYMBOL vmlinux 0x0167f746 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x016daab8 blk_start_plug EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017e14c2 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x0197e3a1 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x018a32e9 is_bad_inode EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark -EXPORT_SYMBOL vmlinux 0x01983ccc scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x0199b133 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x01b133c2 new_inode +EXPORT_SYMBOL vmlinux 0x019c5e69 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x01a99a60 bio_reset EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01de3ece page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x01e1f1b1 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x01e1fd0a try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x01e80408 timer_interrupt -EXPORT_SYMBOL vmlinux 0x01fa8dbb blk_finish_plug -EXPORT_SYMBOL vmlinux 0x0202bacb mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x0207f051 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x021289b1 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x021f3600 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x02239080 devfreq_add_device EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x02310457 skb_pull_data +EXPORT_SYMBOL vmlinux 0x0244055a tcf_em_register EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x0258b8c7 set_bh_page +EXPORT_SYMBOL vmlinux 0x0253dea7 ether_setup EXPORT_SYMBOL vmlinux 0x025c1602 __debugger_sstep +EXPORT_SYMBOL vmlinux 0x025da059 key_revoke +EXPORT_SYMBOL vmlinux 0x026dc54d stop_tty EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0275dea8 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x028407af dcache_dir_open -EXPORT_SYMBOL vmlinux 0x028f6d5a fasync_helper +EXPORT_SYMBOL vmlinux 0x0277d10d devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x027c1a22 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x028a0298 dquot_transfer +EXPORT_SYMBOL vmlinux 0x028f3664 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x0291db60 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x0299e437 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x02a10c08 agp_bridge -EXPORT_SYMBOL vmlinux 0x02a98d0f pci_iounmap +EXPORT_SYMBOL vmlinux 0x029e694a skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x02b3a92d try_wait_for_completion EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02c3a991 free_buffer_head EXPORT_SYMBOL vmlinux 0x02c3c40e __debugger_break_match +EXPORT_SYMBOL vmlinux 0x02dab0cb phy_stop +EXPORT_SYMBOL vmlinux 0x02de660c mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies -EXPORT_SYMBOL vmlinux 0x02fc6da5 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x02fdc283 __icmp_send -EXPORT_SYMBOL vmlinux 0x0313e274 phy_find_first -EXPORT_SYMBOL vmlinux 0x032317c8 is_nd_btt -EXPORT_SYMBOL vmlinux 0x032f0e3e forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x03320ff6 neigh_update +EXPORT_SYMBOL vmlinux 0x02f171b6 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x02f32801 nd_device_notify +EXPORT_SYMBOL vmlinux 0x03316cb3 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x033dee3b netdev_crit -EXPORT_SYMBOL vmlinux 0x034ecc4c pci_pme_capable +EXPORT_SYMBOL vmlinux 0x033e8a4f file_update_time +EXPORT_SYMBOL vmlinux 0x033f22eb giveup_fpu +EXPORT_SYMBOL vmlinux 0x034fe0dc tcp_prot +EXPORT_SYMBOL vmlinux 0x03592944 backlight_force_update EXPORT_SYMBOL vmlinux 0x035d25ab memcg_kmem_online_key EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x036232fe agp_copy_info EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x03742a37 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x0368b2fd fscrypt_ioctl_get_policy EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0383d780 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x03832187 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x03899dda skb_kill_datagram EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03980481 d_instantiate -EXPORT_SYMBOL vmlinux 0x0399a5c0 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x03b03edb of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x03b082fa rtc_add_groups EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03d7664e __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x03dce100 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x03e5c0d1 pci_choose_state -EXPORT_SYMBOL vmlinux 0x03f2f1f1 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x03faccf2 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram EXPORT_SYMBOL vmlinux 0x04017e78 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x040815bc xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x040a4385 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x0422fa6f mdio_device_register -EXPORT_SYMBOL vmlinux 0x042389a5 setattr_prepare +EXPORT_SYMBOL vmlinux 0x04275618 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04445f4f cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x045ef76e xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x046eac91 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x0473c063 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x04560002 __skb_get_hash EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x04789d34 __nla_put_64bit EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047cf814 security_sock_graft EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x0488ec1b i2c_get_adapter EXPORT_SYMBOL vmlinux 0x0489ab0c _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x04bdc6be prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x04c6b4ed elevator_alloc -EXPORT_SYMBOL vmlinux 0x04cee4cd vme_irq_request +EXPORT_SYMBOL vmlinux 0x048f094c flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x04bdca7d flow_block_cb_incref EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x04e87a6e __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map EXPORT_SYMBOL vmlinux 0x04f3f9bf devm_clk_put -EXPORT_SYMBOL vmlinux 0x04f79c00 tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0x050b0278 dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051f1e2d dump_skip +EXPORT_SYMBOL vmlinux 0x0521a5b8 flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x05370c48 console_force_preferred_locked EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05464d8a tty_port_hangup -EXPORT_SYMBOL vmlinux 0x0546a4c0 pci_iomap_range EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x0567ceb2 sock_edemux EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x056d7e20 filemap_fault -EXPORT_SYMBOL vmlinux 0x0575248c tty_write_room -EXPORT_SYMBOL vmlinux 0x05804402 udp_seq_next -EXPORT_SYMBOL vmlinux 0x05869286 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x0588b6ec dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x0590424f fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x05ad0070 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x05bfb6e6 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x05c27d91 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x05c689fb bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x05c82d7a pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x05ce212c xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x05d9a6b0 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x05fa5d96 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x057b2c96 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x0595c4d3 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x0599b1b3 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x05b6114e do_SAK +EXPORT_SYMBOL vmlinux 0x05bc18d6 pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x05c087ac skb_store_bits +EXPORT_SYMBOL vmlinux 0x05d010ec eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x05eaa458 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x05f3a1d8 tcp_read_sock EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x061d251e vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x0621b289 tcp_mmap -EXPORT_SYMBOL vmlinux 0x06321b68 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x06170e65 xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063683e3 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x065739ef mount_subtree -EXPORT_SYMBOL vmlinux 0x066543e5 mmc_command_done +EXPORT_SYMBOL vmlinux 0x063cc236 phy_error +EXPORT_SYMBOL vmlinux 0x064ae91d tcp_parse_options +EXPORT_SYMBOL vmlinux 0x0651d127 vme_register_driver +EXPORT_SYMBOL vmlinux 0x065547b6 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x068331d3 radix__flush_tlb_page -EXPORT_SYMBOL vmlinux 0x068b6561 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x068c7fbd scm_fp_dup -EXPORT_SYMBOL vmlinux 0x068d8125 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x068d8664 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0x06914a77 of_match_node -EXPORT_SYMBOL vmlinux 0x0692c442 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x0696ee63 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x06a265d8 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x066b3acb netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x068018b3 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x0686cca4 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x0686e592 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x06938fa7 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x0699d5b5 dquot_resume EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06b65252 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x06c4a075 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d327e8 of_device_register -EXPORT_SYMBOL vmlinux 0x06e861c0 input_reset_device +EXPORT_SYMBOL vmlinux 0x06e9ebea km_new_mapping +EXPORT_SYMBOL vmlinux 0x06f083ef module_refcount +EXPORT_SYMBOL vmlinux 0x06f24ba5 handshake_req_cancel +EXPORT_SYMBOL vmlinux 0x06f35e99 phy_support_sym_pause EXPORT_SYMBOL vmlinux 0x06f677c3 _raw_spin_unlock_bh EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x070c61e9 i2c_transfer -EXPORT_SYMBOL vmlinux 0x070c9fa5 vga_client_register +EXPORT_SYMBOL vmlinux 0x071265ba skb_clone_sk +EXPORT_SYMBOL vmlinux 0x07143ac9 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073c8dbc tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x0748c51c stop_tty -EXPORT_SYMBOL vmlinux 0x0749c9fc srp_timed_out -EXPORT_SYMBOL vmlinux 0x0754d758 tls_client_hello_anon -EXPORT_SYMBOL vmlinux 0x07592fc8 release_pages +EXPORT_SYMBOL vmlinux 0x0737e18c folio_mapping +EXPORT_SYMBOL vmlinux 0x07495681 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x075f15e6 dquot_drop EXPORT_SYMBOL vmlinux 0x077343c1 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x07895692 locks_free_lock -EXPORT_SYMBOL vmlinux 0x07975e0d dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x079a8441 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x079fb7a7 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x077bd9f1 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x078d0ac5 vif_device_init EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b356ac vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x07b6c198 sg_miter_next EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07d233d1 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x07dbc179 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x07d5c2bc inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x07d9c788 filemap_splice_read +EXPORT_SYMBOL vmlinux 0x07da7309 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x07f2e09e setattr_prepare EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0804f4a3 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x08086616 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x08166e09 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x081fa7f4 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x080b89e6 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x0813a7e2 unregister_console +EXPORT_SYMBOL vmlinux 0x081ec580 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x081f8b7d hmm_range_fault EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x083b6f9b scsi_eh_prep_cmnd EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x08465fe1 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x08566bac ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x08445377 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0x0844eabc free_task +EXPORT_SYMBOL vmlinux 0x08589db2 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x0859c63a devfreq_update_target +EXPORT_SYMBOL vmlinux 0x086b4c87 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit -EXPORT_SYMBOL vmlinux 0x087bdacb flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x087cc9f2 cdev_alloc -EXPORT_SYMBOL vmlinux 0x0884a9fe follow_pfn -EXPORT_SYMBOL vmlinux 0x088d40b3 rio_query_mport -EXPORT_SYMBOL vmlinux 0x089b5584 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x08d3f06d nf_log_set -EXPORT_SYMBOL vmlinux 0x08e88566 invalidate_disk -EXPORT_SYMBOL vmlinux 0x08f7d322 __netif_rx -EXPORT_SYMBOL vmlinux 0x090d4860 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x09296667 xattr_full_name +EXPORT_SYMBOL vmlinux 0x0887d767 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x088d031d netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x088ea2d4 eth_type_trans +EXPORT_SYMBOL vmlinux 0x089eaff9 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x08bb25e9 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x08c86556 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x08dbb5ab cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x08eb6417 sock_edemux +EXPORT_SYMBOL vmlinux 0x0901af2c flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x0903ef8c rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x091c681a kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x0928b0e4 serio_bus +EXPORT_SYMBOL vmlinux 0x092d0893 d_find_alias +EXPORT_SYMBOL vmlinux 0x092d237a jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x0938e1ea scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x093bfca9 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x093f7318 mmc_add_host +EXPORT_SYMBOL vmlinux 0x0942fc52 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x09616283 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x0968cb2b devm_free_irq EXPORT_SYMBOL vmlinux 0x096a7e99 mutex_lock +EXPORT_SYMBOL vmlinux 0x0974afc5 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x097c7b0a bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x097d9067 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x0985d955 dev_uc_del +EXPORT_SYMBOL vmlinux 0x0985ecb1 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x0988f18b vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a3266c ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x09abb9e2 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x098d8efc inet_add_offload +EXPORT_SYMBOL vmlinux 0x09a1e0dd bdi_put +EXPORT_SYMBOL vmlinux 0x09b28475 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x09c4f7ef _dev_notice EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09e6e55f clear_nlink -EXPORT_SYMBOL vmlinux 0x09ea7b10 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x09eb744f dev_addr_mod -EXPORT_SYMBOL vmlinux 0x09fd0b6b mr_table_dump +EXPORT_SYMBOL vmlinux 0x09e73425 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x09eb888d vme_irq_request EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a041487 vga_get -EXPORT_SYMBOL vmlinux 0x0a0613f2 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x0a153537 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x0a15e6dd dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x0a1b705b fget EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a2abcdc tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x0a35e04b dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x0a47eb13 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x0a492951 qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0x0a4b2480 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x0a4b6f08 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x0a535c1d vfs_statfs -EXPORT_SYMBOL vmlinux 0x0a5457ba __scm_send +EXPORT_SYMBOL vmlinux 0x0a2876d1 dquot_alloc +EXPORT_SYMBOL vmlinux 0x0a4d5079 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x0a51888b agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x0a588d4f filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x0a67db4b bmap +EXPORT_SYMBOL vmlinux 0x0a6fb670 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x0a6fde66 __breadahead EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7e51d8 max8998_write_reg EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0x0a896997 secpath_set -EXPORT_SYMBOL vmlinux 0x0a90900d scm_detach_fds +EXPORT_SYMBOL vmlinux 0x0a8c371a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0a90eac8 skb_flow_dissect_hash EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aad01d2 scsi_remove_device EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ad61e03 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x0ada2ccf generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x0ae0de52 set_blocksize +EXPORT_SYMBOL vmlinux 0x0ae13a27 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x0ae2ef5c __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x0ae406f4 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x0aedd920 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x0b0755fc blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1f3dd5 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x0b298e3e dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp -EXPORT_SYMBOL vmlinux 0x0b3319e9 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x0b57a759 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x0b2fcd59 tcf_block_put +EXPORT_SYMBOL vmlinux 0x0b5e53c6 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7a8aa9 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x0b7accdb fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x0b7e54e3 phy_request_interrupt EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba15d84 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x0bafd0db inet_bind +EXPORT_SYMBOL vmlinux 0x0bb1730e ip_defrag +EXPORT_SYMBOL vmlinux 0x0bba189f iptun_encaps EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bd75f53 dev_set_alias -EXPORT_SYMBOL vmlinux 0x0be59dfa nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x0bf04f49 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x0bc65d12 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x0bcc7d74 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x0be8e40c vm_insert_page +EXPORT_SYMBOL vmlinux 0x0beb6cd4 nf_log_register +EXPORT_SYMBOL vmlinux 0x0bed3a90 ip_check_defrag EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr -EXPORT_SYMBOL vmlinux 0x0bf590d5 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x0bfb6368 has_capability EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c1e48d3 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x0c2486c7 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x0c018372 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x0c0bf9c4 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c2f8443 of_get_ibm_chip_id -EXPORT_SYMBOL vmlinux 0x0c3bf65f xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x0c44c83e ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x0c3e9d72 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x0c4a2765 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0x0c51bf2f sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x0c5b513c dev_uc_del +EXPORT_SYMBOL vmlinux 0x0c586b8b skb_pull +EXPORT_SYMBOL vmlinux 0x0c5cc941 __seq_open_private EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c6ccda5 sock_queue_rcv_skb_reason -EXPORT_SYMBOL vmlinux 0x0c929648 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x0ca2081b netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x0c6fb78e scsi_device_get +EXPORT_SYMBOL vmlinux 0x0c822f0b get_tree_keyed +EXPORT_SYMBOL vmlinux 0x0c98e372 qdisc_watchdog_init EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy +EXPORT_SYMBOL vmlinux 0x0cc47c8e netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0ccb7a7a shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x0cd11c04 devm_memremap EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0ce3cdae pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0x0ce980c2 rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x0cf8a735 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x0ce71e50 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x0ce899a9 __bforget EXPORT_SYMBOL vmlinux 0x0cf98ca0 __xa_alloc +EXPORT_SYMBOL vmlinux 0x0cffaf11 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x0d001db9 padata_free -EXPORT_SYMBOL vmlinux 0x0d043408 iov_iter_kvec EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d0a5789 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x0d12b97e inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x0d1b8894 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x0d1e5f4b fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x0d24f923 devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0x0d2d5f7c md_bitmap_unplug_async EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d352721 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x0d463c3c ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d5868d6 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x0d717b0c bdi_unregister -EXPORT_SYMBOL vmlinux 0x0d750225 iptun_encaps -EXPORT_SYMBOL vmlinux 0x0d7c12ed current_time -EXPORT_SYMBOL vmlinux 0x0d8476b5 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x0d8afeb3 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x0d8b5493 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x0d95c776 param_set_ushort -EXPORT_SYMBOL vmlinux 0x0d9dda5e __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x0da54c63 block_commit_write -EXPORT_SYMBOL vmlinux 0x0da93701 nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x0dac5b32 fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x0dbe46ac vmemmap -EXPORT_SYMBOL vmlinux 0x0dd8a16a inet6_ioctl -EXPORT_SYMBOL vmlinux 0x0dd981cc ppp_input_error -EXPORT_SYMBOL vmlinux 0x0df2cb68 proc_create -EXPORT_SYMBOL vmlinux 0x0df4421e kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x0dfbfe82 netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0x0e07170a __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x0d5d57ea node_data +EXPORT_SYMBOL vmlinux 0x0d848aff __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x0d86104e __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x0d86597c kmem_cache_free +EXPORT_SYMBOL vmlinux 0x0dabd500 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x0dc68d60 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x0dcc56b9 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x0dd7e399 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x0e07f096 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x0e097537 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x0e0a0162 generic_file_mmap EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e20eaef flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x0e232f1b phy_device_free +EXPORT_SYMBOL vmlinux 0x0e1e7d65 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x0e2008ac pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x0e20a449 pci_find_capability +EXPORT_SYMBOL vmlinux 0x0e34c757 mmc_put_card EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned EXPORT_SYMBOL vmlinux 0x0e4b13fa gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x0e7974db put_fs_context +EXPORT_SYMBOL vmlinux 0x0e5581e4 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x0e5942c9 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0x0e7707f3 get_user_pages EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ee2decc nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x0eefafa6 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x0ec8a916 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x0ed7e278 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0ee00df2 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x0ee11624 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x0ee16a6c inet_add_protocol +EXPORT_SYMBOL vmlinux 0x0eec1975 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x0eecb76a sock_no_getname +EXPORT_SYMBOL vmlinux 0x0eed39c8 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x0f027ac1 netpoll_parse_options EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0ef96c filemap_get_folios -EXPORT_SYMBOL vmlinux 0x0f121fe4 ethtool_aggregate_ctrl_stats EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f21f935 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x0f270829 filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0x0f358438 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x0f4beabf freeze_bdev -EXPORT_SYMBOL vmlinux 0x0f6b97c6 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x0f76d033 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x0f3f3174 make_kuid +EXPORT_SYMBOL vmlinux 0x0f48191a mntget +EXPORT_SYMBOL vmlinux 0x0f4fbf37 __serio_register_port +EXPORT_SYMBOL vmlinux 0x0f62ab70 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x0f66c772 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x0f67b3ad genphy_resume +EXPORT_SYMBOL vmlinux 0x0f7450a0 keyring_alloc EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f904d2a devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x0fa17c59 bioset_exit -EXPORT_SYMBOL vmlinux 0x0fa24ce1 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x0f95af32 default_qdisc_ops EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fb0ec1d phy_start_aneg -EXPORT_SYMBOL vmlinux 0x0fb20c8f scsi_device_lookup EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbdc151 dev_get_stats +EXPORT_SYMBOL vmlinux 0x0fc75a35 sg_miter_stop EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff19e94 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x0fdae699 bio_add_folio +EXPORT_SYMBOL vmlinux 0x0fe1e4bf pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x0ffed345 request_key_rcu EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10010375 register_key_type EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x100381d9 max8998_write_reg -EXPORT_SYMBOL vmlinux 0x1003f763 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x1017cb64 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x10191541 alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source -EXPORT_SYMBOL vmlinux 0x102c34f5 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1034eade tcp_add_backlog EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x104802a3 param_set_short +EXPORT_SYMBOL vmlinux 0x103e4890 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x10433b20 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x10441d10 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x106352da phy_get_pause +EXPORT_SYMBOL vmlinux 0x1066874e neigh_carrier_down EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x107a633c __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x107c0b07 kobject_get EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10807def genphy_c45_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x108128fb napi_consume_skb -EXPORT_SYMBOL vmlinux 0x1086d669 sock_set_priority -EXPORT_SYMBOL vmlinux 0x10b8a6e4 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x10d8fa91 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x1081a5f8 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x108a8c36 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x10969e43 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x10af9e8d flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x10c658ee __nd_driver_register +EXPORT_SYMBOL vmlinux 0x10d26ee1 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x10d7310b of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e0f124 __pud_index_size EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x11030899 proto_register -EXPORT_SYMBOL vmlinux 0x11032df9 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x10f0f57a kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x10f703ab jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x10fdbc5d inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x10fe9859 skb_try_coalesce EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110c817f page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated -EXPORT_SYMBOL vmlinux 0x113ae298 mmc_is_req_done -EXPORT_SYMBOL vmlinux 0x113ea9c7 param_set_ulong -EXPORT_SYMBOL vmlinux 0x114819c4 param_get_bool -EXPORT_SYMBOL vmlinux 0x11543156 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x112061c3 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x11511e38 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x11581e54 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot +EXPORT_SYMBOL vmlinux 0x1169fe2b ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x116f3095 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11738a4b neigh_seq_stop EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable -EXPORT_SYMBOL vmlinux 0x119294f9 path_has_submounts -EXPORT_SYMBOL vmlinux 0x11c1aae3 rproc_put -EXPORT_SYMBOL vmlinux 0x11d5b806 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x118de869 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x11985bf2 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x11998f79 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x11a540f7 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x11a7b5f1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x11b1921b eth_get_headlen EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11e76b4a phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x11f3d11b ps2_init +EXPORT_SYMBOL vmlinux 0x11f8004b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x11fcfff7 xfrm_register_km EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x12027905 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x1202e7ae of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x122b0ddb of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x1235d544 posix_test_lock -EXPORT_SYMBOL vmlinux 0x1236b4ec pci_pme_active +EXPORT_SYMBOL vmlinux 0x1224edbf page_pool_create +EXPORT_SYMBOL vmlinux 0x122b5dfc f_setown +EXPORT_SYMBOL vmlinux 0x122b9b5a register_shrinker +EXPORT_SYMBOL vmlinux 0x12363f0f genl_register_family EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x126500d3 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x1276783d netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x12905ccd qdisc_offload_query_caps -EXPORT_SYMBOL vmlinux 0x12a7f84c d_move -EXPORT_SYMBOL vmlinux 0x12c71fac pcie_set_mps +EXPORT_SYMBOL vmlinux 0x128856ec configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x12bc6bdd sock_wmalloc +EXPORT_SYMBOL vmlinux 0x12c09748 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x12c0f4f8 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x12c4f33e blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e7466e srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x12cf019a genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x12deb8ba netlink_set_err +EXPORT_SYMBOL vmlinux 0x12e01dfb sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x12e06f31 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x12e63e51 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x12ebaa2c genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x12fb41cc page_pool_put_defragged_page -EXPORT_SYMBOL vmlinux 0x130d2a06 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x13109ce1 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x130737b8 decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x130a1312 vio_get_attribute EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13183b2a arp_send -EXPORT_SYMBOL vmlinux 0x131b4da5 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x132917eb netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0x13523da8 md_check_recovery -EXPORT_SYMBOL vmlinux 0x136736b5 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x1373ffe4 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x13746cc5 dump_skip_to -EXPORT_SYMBOL vmlinux 0x13864492 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x139c5b39 vio_get_attribute +EXPORT_SYMBOL vmlinux 0x134f9d93 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x1355e5c6 ip_output +EXPORT_SYMBOL vmlinux 0x135f99d7 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x137f6fd0 param_get_bool +EXPORT_SYMBOL vmlinux 0x13858680 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x138afd78 sock_no_listen EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a6fb63 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x13bcd391 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d4e4a4 input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13e1b2d5 current_stack_frame +EXPORT_SYMBOL vmlinux 0x13e35ada blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x13ed500c ip_sock_set_tos EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize -EXPORT_SYMBOL vmlinux 0x140dd517 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x142ba5b6 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x1435de82 vme_lm_request -EXPORT_SYMBOL vmlinux 0x144271e2 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x14515aea netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x145327bd bdi_put +EXPORT_SYMBOL vmlinux 0x13fea9e6 tcf_exts_init_ex +EXPORT_SYMBOL vmlinux 0x1402e437 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x1403511f netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x143b97dc ata_print_version +EXPORT_SYMBOL vmlinux 0x144dfc14 ethtool_aggregate_mac_stats +EXPORT_SYMBOL vmlinux 0x145ae157 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x145e0ec7 register_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1477309b kernel_getpeername +EXPORT_SYMBOL vmlinux 0x1464eba0 lease_modify EXPORT_SYMBOL vmlinux 0x147e0857 gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x148ac2b3 serio_interrupt -EXPORT_SYMBOL vmlinux 0x148cf98a __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x149afe13 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x147f4b9f param_ops_ulong +EXPORT_SYMBOL vmlinux 0x14840ca2 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x148bffad i2c_verify_client EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x14aed7a7 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x14b06b18 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x14a5e802 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x14b30908 sys_fillrect +EXPORT_SYMBOL vmlinux 0x14b67b38 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x14b6c8d2 vme_dma_list_add EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cde0be touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x14d11286 put_cmsg EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14fba93e register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x14fbbba5 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x14ffa128 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x14fbd21d skb_dump +EXPORT_SYMBOL vmlinux 0x14ff66c5 zero_fill_bio EXPORT_SYMBOL vmlinux 0x150bd0c1 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x150d1d25 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x150cbe1f mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x1515fe43 tcp_close +EXPORT_SYMBOL vmlinux 0x1518c673 dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x15239e1e ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x152551f5 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x1523972a __f_setown EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x15295386 nd_device_register +EXPORT_SYMBOL vmlinux 0x153d7137 mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x154a8283 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x156662e1 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x156fa310 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x157c1839 param_get_short -EXPORT_SYMBOL vmlinux 0x15b3bd5c __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x155907a0 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x1571e499 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x158ffc72 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x15ab0c54 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x15ae0643 vfs_link EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15be29dc jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x15bc6d47 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x15bdeb8f tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15ce9b05 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0x15d178de page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x15dd73af pci_get_class -EXPORT_SYMBOL vmlinux 0x15e6ff3b vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x15ed8be7 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x15f093f1 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x16314157 pci_find_bus EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x163be461 skb_seq_read -EXPORT_SYMBOL vmlinux 0x163f0ff4 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x1649230b nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x165d9619 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x1664b40d put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x1677bb62 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x164383ec touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x164e5382 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x1652a80d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1654bcd2 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x165d8dc4 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x16630ffa of_clk_get EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167ff38c dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x1686e0c9 send_sig_info -EXPORT_SYMBOL vmlinux 0x1691ca5f pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x168990c6 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x16a2145a vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x16a5248b splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16b2fe5f sock_create_kern -EXPORT_SYMBOL vmlinux 0x16c171f6 blk_integrity_register -EXPORT_SYMBOL vmlinux 0x16d768d8 folio_end_writeback -EXPORT_SYMBOL vmlinux 0x16db5c21 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x16c1f97e tty_port_hangup +EXPORT_SYMBOL vmlinux 0x16dc22e5 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7fbdc tty_vhangup -EXPORT_SYMBOL vmlinux 0x16fa17b9 end_page_writeback -EXPORT_SYMBOL vmlinux 0x17146cf4 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x1717b898 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x1728cb2e dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x172e09e9 brioctl_set -EXPORT_SYMBOL vmlinux 0x1739d7cd mmc_start_request -EXPORT_SYMBOL vmlinux 0x1760970c dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x16ffdd71 dump_align +EXPORT_SYMBOL vmlinux 0x170a9b34 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x170b65ef dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x17389a48 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x173f5692 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x1752d482 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock -EXPORT_SYMBOL vmlinux 0x17850168 vfs_get_link -EXPORT_SYMBOL vmlinux 0x178a49d7 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x177fc8fb netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x17843969 rproc_detach +EXPORT_SYMBOL vmlinux 0x17879e55 vfs_rmdir EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x179a829e inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x17afae0f mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x17b6ddce setup_new_exec -EXPORT_SYMBOL vmlinux 0x17d44e92 kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x17d7ccab pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x17e4d2e3 fb_pan_display +EXPORT_SYMBOL vmlinux 0x178dec35 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x178f72f9 mmc_get_card +EXPORT_SYMBOL vmlinux 0x179159cf tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x17926120 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x17c9be50 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x17d27026 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x17e6c955 elv_rb_add EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x1804e922 mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x18107f0d phy_read_paged -EXPORT_SYMBOL vmlinux 0x1812efdd ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x180320a7 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x1817f3b2 __scm_send +EXPORT_SYMBOL vmlinux 0x18212bca dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x184c4c9d sock_release -EXPORT_SYMBOL vmlinux 0x18523e58 ip_output -EXPORT_SYMBOL vmlinux 0x1853a516 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0x18644d32 __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0x18646058 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x18661dfe folio_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x18665bf8 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0x186c25e1 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x186f39b0 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x183ea120 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x184f7930 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x1851f447 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x185f675e __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1860df18 netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free EXPORT_SYMBOL vmlinux 0x187dcc6b posix_acl_valid -EXPORT_SYMBOL vmlinux 0x1883be54 vio_disable_interrupts EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18a22f87 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x18bb0677 param_ops_long -EXPORT_SYMBOL vmlinux 0x18c7de00 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x18cf6da4 devm_rproc_add -EXPORT_SYMBOL vmlinux 0x18e07e0d napi_build_skb +EXPORT_SYMBOL vmlinux 0x18937713 dcb_getrewr +EXPORT_SYMBOL vmlinux 0x189444a1 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x189df23b mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x18dbdded phy_validate_pause +EXPORT_SYMBOL vmlinux 0x18df107f serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18ebe9c4 sg_miter_start -EXPORT_SYMBOL vmlinux 0x190068bf kernel_tmpfile_open -EXPORT_SYMBOL vmlinux 0x190ec67c unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x192699b5 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0x1946000e end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x194e9320 sock_register -EXPORT_SYMBOL vmlinux 0x1958f284 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x19657b4e pci_disable_msix +EXPORT_SYMBOL vmlinux 0x19011f21 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x190dfd3f shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x1934c539 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x193c18cd __skb_pad +EXPORT_SYMBOL vmlinux 0x194fced2 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x195deec6 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x19672e82 sock_init_data_uid EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x196a5c08 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x19767d94 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x1978035d dquot_commit_info -EXPORT_SYMBOL vmlinux 0x197bbccc i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x197fb70b pci_scan_bridge EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x19862564 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x198cf9eb ilookup5 -EXPORT_SYMBOL vmlinux 0x1993119f __brelse -EXPORT_SYMBOL vmlinux 0x199b136d pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a6e868 dev_get_by_name EXPORT_SYMBOL vmlinux 0x19b16b34 up_read EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cbb4a8 dma_resv_init EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark -EXPORT_SYMBOL vmlinux 0x19ea6711 dqget -EXPORT_SYMBOL vmlinux 0x1a21e7b4 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x1a319fb5 srp_start_tl_fail_timers -EXPORT_SYMBOL vmlinux 0x1a37137d folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0x1a3e4b56 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x1a47ed76 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0x1a4a3bdd ppp_register_compressor -EXPORT_SYMBOL vmlinux 0x1a4e31d6 lookup_one_qstr_excl -EXPORT_SYMBOL vmlinux 0x1a5d1157 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x1a69b1f1 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x1a97f65c ihold +EXPORT_SYMBOL vmlinux 0x19e90528 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x1a05258e skb_copy +EXPORT_SYMBOL vmlinux 0x1a1b7baf tty_vhangup +EXPORT_SYMBOL vmlinux 0x1a1bec62 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x1a227b2f mmc_can_discard +EXPORT_SYMBOL vmlinux 0x1a2cca7e input_set_capability +EXPORT_SYMBOL vmlinux 0x1a30a1b4 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x1a35fe6d proto_unregister +EXPORT_SYMBOL vmlinux 0x1a38cf5b ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x1a3ef583 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x1a4a4726 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x1a4ebc0b blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x1a6dad9f jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x1a6fc668 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x1a87fe8d km_query EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable -EXPORT_SYMBOL vmlinux 0x1aae2073 release_sock -EXPORT_SYMBOL vmlinux 0x1ab5ee0f devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x1ab719ec sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x1ac15b42 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x1ac2d6ca mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac69176 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x1adda159 folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0x1adf8bc4 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0x1ae97f04 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x1aef1728 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x1ac65f25 page_get_link +EXPORT_SYMBOL vmlinux 0x1adbf0ab msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x1ae02f5e locks_init_lock +EXPORT_SYMBOL vmlinux 0x1ae6e01c jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x1afacc62 handshake_req_private EXPORT_SYMBOL vmlinux 0x1afdc244 mutex_trylock EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1807cb skb_eth_push +EXPORT_SYMBOL vmlinux 0x1b190c6e qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x1b1e6d32 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x1b2b3be6 md_bitmap_startwrite EXPORT_SYMBOL vmlinux 0x1b335af2 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x1b33622c param_ops_short -EXPORT_SYMBOL vmlinux 0x1b406459 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x1b57c2bc iget_failed +EXPORT_SYMBOL vmlinux 0x1b40090b __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x1b4acbee twl6040_power +EXPORT_SYMBOL vmlinux 0x1b57abac skb_dequeue +EXPORT_SYMBOL vmlinux 0x1b591559 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x1b5e3ea9 machine_id EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b67e016 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x1b709b91 rproc_boot EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b79d8ab sys_copyarea -EXPORT_SYMBOL vmlinux 0x1b7f23b0 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x1b846982 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b901f4c free_netdev +EXPORT_SYMBOL vmlinux 0x1ba30fd8 skb_put EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1ba731a3 max8998_update_reg -EXPORT_SYMBOL vmlinux 0x1ba96564 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x1ba9c13c pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bc2e79a phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x1bc08efd of_device_alloc +EXPORT_SYMBOL vmlinux 0x1bc1a5a1 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x1bc91716 mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bdb064c rproc_boot -EXPORT_SYMBOL vmlinux 0x1be89383 unpin_user_pages -EXPORT_SYMBOL vmlinux 0x1beb177b kthread_bind -EXPORT_SYMBOL vmlinux 0x1bfe2c38 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x1c0c1b9d pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x1c2a1759 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x1c2cac54 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x1c2e3425 filemap_flush -EXPORT_SYMBOL vmlinux 0x1c31b79e pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x1be90cd7 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x1becce39 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x1c030b6e netif_tx_lock +EXPORT_SYMBOL vmlinux 0x1c09d9b4 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x1c181e35 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x1c2a01ea pcie_set_mps +EXPORT_SYMBOL vmlinux 0x1c3285dd tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp -EXPORT_SYMBOL vmlinux 0x1c46c539 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x1c4928b9 nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x1c7ca8c3 mdiobus_write +EXPORT_SYMBOL vmlinux 0x1c3ec262 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x1c5a12d9 sget_fc +EXPORT_SYMBOL vmlinux 0x1c6fcd5c uart_update_timeout +EXPORT_SYMBOL vmlinux 0x1c702dd6 input_release_device EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x1c8ff782 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x1c83743a md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x1c8a2567 clear_nlink +EXPORT_SYMBOL vmlinux 0x1ca19fb0 dcb_getrewr_prio_pcp_mask_map EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo -EXPORT_SYMBOL vmlinux 0x1cbb7853 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x1cc0152d __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x1ca6b718 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x1cab00c4 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x1cb27472 tty_driver_kref_put EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cdac9bd devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0x1cdc84ab qdisc_hash_add EXPORT_SYMBOL vmlinux 0x1cde0a51 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x1ce15d0a __irq_regs -EXPORT_SYMBOL vmlinux 0x1cec33c4 pci_find_bus -EXPORT_SYMBOL vmlinux 0x1cfa34e8 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x1d096727 i2c_find_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0x1d1ba844 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x1d39f1b9 simple_lookup -EXPORT_SYMBOL vmlinux 0x1d4cf7e3 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x1d16f9b7 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x1d18dba4 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x1d29af7e unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x1d2ea330 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x1d492ab1 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x1d4e6219 __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x1d58b909 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum EXPORT_SYMBOL vmlinux 0x1d794855 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x1d7f8ad1 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x1d803760 __folio_lock -EXPORT_SYMBOL vmlinux 0x1d8aa773 napi_enable +EXPORT_SYMBOL vmlinux 0x1d8a06a2 i8042_remove_filter EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1d9ee53d bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x1db3437e neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x1d9a3a26 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x1d9c9b8b request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x1da6e0b7 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x1da991a6 submit_bio EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc879f4 tty_lock +EXPORT_SYMBOL vmlinux 0x1dca776d phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1de2f9ae scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x1dd6744a forget_all_cached_acls EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1df1e25b pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x1df92e94 genphy_c45_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x1dfbb17b tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x1de8e8c2 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1df6ce1f inode_needs_sync EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e16df2f tcp_v4_connect EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 -EXPORT_SYMBOL vmlinux 0x1e1e24b9 tty_port_init -EXPORT_SYMBOL vmlinux 0x1e335495 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x1e554dec xfrm_dev_policy_flush -EXPORT_SYMBOL vmlinux 0x1e5a2eed param_ops_string -EXPORT_SYMBOL vmlinux 0x1e6141a8 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x1e25b0ce devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1e34c370 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x1e4246f2 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x1e47075f fb_show_logo +EXPORT_SYMBOL vmlinux 0x1e51b089 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6af801 of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e72e72c fb_set_suspend -EXPORT_SYMBOL vmlinux 0x1e79d701 mq_change_real_num_tx -EXPORT_SYMBOL vmlinux 0x1e7d982a skb_dequeue -EXPORT_SYMBOL vmlinux 0x1e83b06e phy_loopback +EXPORT_SYMBOL vmlinux 0x1e6fe995 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x1e7fba11 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x1e7fde7f phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue -EXPORT_SYMBOL vmlinux 0x1e9905f7 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x1e8a5bc0 update_devfreq +EXPORT_SYMBOL vmlinux 0x1e98a663 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eaf8abc of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0x1eb8cce0 drop_nlink -EXPORT_SYMBOL vmlinux 0x1ec7dbb4 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x1ed85493 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x1ed8f4d1 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x1eac57e4 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x1ecf9cb3 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x1ed4a756 from_kprojid EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1eee8ea5 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x1ef3ada1 handshake_req_alloc EXPORT_SYMBOL vmlinux 0x1ef9addf dns_query -EXPORT_SYMBOL vmlinux 0x1efb6c8c sk_net_capable -EXPORT_SYMBOL vmlinux 0x1f3ea01e param_ops_invbool -EXPORT_SYMBOL vmlinux 0x1f46402e scsi_execute_cmd -EXPORT_SYMBOL vmlinux 0x1f4eb6df register_fib_notifier -EXPORT_SYMBOL vmlinux 0x1f6866f7 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x1f0b98fb pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x1f0db500 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x1f10f382 param_set_uint +EXPORT_SYMBOL vmlinux 0x1f16291f param_get_invbool +EXPORT_SYMBOL vmlinux 0x1f254ca4 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x1f3c57fa fs_lookup_param +EXPORT_SYMBOL vmlinux 0x1f548866 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x1f5e8ea4 __devm_of_mdiobus_register EXPORT_SYMBOL vmlinux 0x1f73ff96 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x1f8847a7 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x1fa09eef fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x1fa9b34e rproc_free +EXPORT_SYMBOL vmlinux 0x1f7b7871 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x1f7dd3d2 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x1f9a041c tty_port_close_start EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fceeefd inet6_register_protosw EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fde0d49 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x1fd26dee csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x1fd42af1 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x1fda1244 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x1fecc82a devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x1ff414f7 param_ops_uint EXPORT_SYMBOL vmlinux 0x1ff6760b __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x1ffd5996 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x1ff8d7d7 to_nd_btt EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200893f3 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x20010d4b key_type_keyring +EXPORT_SYMBOL vmlinux 0x20080f37 nf_setsockopt EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x2010011c netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x20233864 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x203431e6 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x20377dae user_revoke +EXPORT_SYMBOL vmlinux 0x200c7503 ps2_interrupt +EXPORT_SYMBOL vmlinux 0x2033386d neigh_parms_release EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x2056d5dc put_watch_queue -EXPORT_SYMBOL vmlinux 0x2060ec72 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x206850ce iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x207d9858 dev_mc_init -EXPORT_SYMBOL vmlinux 0x208fda97 __invalidate_device -EXPORT_SYMBOL vmlinux 0x20a551d4 __folio_batch_release +EXPORT_SYMBOL vmlinux 0x20594ae8 clear_user_page +EXPORT_SYMBOL vmlinux 0x20623cb9 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x209cc342 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x20a6420f vio_register_device_node EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20a92021 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x20ba0850 filp_close -EXPORT_SYMBOL vmlinux 0x20cbb54d fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x20cbb67c of_match_device -EXPORT_SYMBOL vmlinux 0x20d44187 twl6040_power +EXPORT_SYMBOL vmlinux 0x20a99fca mod_node_page_state +EXPORT_SYMBOL vmlinux 0x20cb92d4 dm_table_get_mode EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20d7cb97 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x20d9865a add_to_pipe -EXPORT_SYMBOL vmlinux 0x20efade2 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x20f2c437 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x20f4ac52 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x210270ff file_remove_privs +EXPORT_SYMBOL vmlinux 0x20d90ba3 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x20e84e75 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x2107bade kernel_tmpfile_open EXPORT_SYMBOL vmlinux 0x210862e5 mtree_insert +EXPORT_SYMBOL vmlinux 0x210e9ffe ps2_end_command +EXPORT_SYMBOL vmlinux 0x212eec4f rdmacg_try_charge EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213b19e9 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x213dcacc consume_skb EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x214e5c33 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x215eab25 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x2172f2cd skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x21434ea5 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x216c371e dev_uc_add +EXPORT_SYMBOL vmlinux 0x217b345e unregister_netdev +EXPORT_SYMBOL vmlinux 0x21830852 mark_page_accessed EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x219c1f71 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x219fafb2 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x21aa1c2a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x218fc6e8 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x219991d4 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x21b33085 inode_init_owner EXPORT_SYMBOL vmlinux 0x21b60242 bit_waitqueue EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21c18daf napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x21c9a196 simple_fill_super -EXPORT_SYMBOL vmlinux 0x21d55b62 finish_swait +EXPORT_SYMBOL vmlinux 0x21be56dd __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x21d19a59 get_agp_version EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight -EXPORT_SYMBOL vmlinux 0x220ad075 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x221116d3 dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0x22272b5b _dev_info +EXPORT_SYMBOL vmlinux 0x2223d632 ps2_sliced_command EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x2250eeeb seq_lseek -EXPORT_SYMBOL vmlinux 0x229629fc netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0x229cfe70 __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x22a03d09 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x2257da9f mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x22603877 vme_slot_num +EXPORT_SYMBOL vmlinux 0x2267ba04 zap_page_range_single +EXPORT_SYMBOL vmlinux 0x22694647 getname_kernel +EXPORT_SYMBOL vmlinux 0x2279d363 cdrom_open +EXPORT_SYMBOL vmlinux 0x227a929d tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x228597f3 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x228a6519 tcf_classify EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22c5ee65 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0x22ce0314 unix_get_socket -EXPORT_SYMBOL vmlinux 0x22fe0d1c ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x2315ec77 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0x2316a652 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x2355e50e serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x22bedbd9 mntput +EXPORT_SYMBOL vmlinux 0x22cff059 of_range_to_resource +EXPORT_SYMBOL vmlinux 0x22ecb85d input_get_keycode +EXPORT_SYMBOL vmlinux 0x22f056f1 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x22fe2c4f tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x2301bb9b phy_drivers_register +EXPORT_SYMBOL vmlinux 0x23187079 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x23346249 of_chosen +EXPORT_SYMBOL vmlinux 0x233fc70c phy_driver_register EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x2371da27 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x236965f7 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x236f559d km_policy_expired +EXPORT_SYMBOL vmlinux 0x237ceaed keyring_search EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x238b2368 dma_fence_array_first -EXPORT_SYMBOL vmlinux 0x239456f3 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x239f1e67 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x23a75bfb done_path_create EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create +EXPORT_SYMBOL vmlinux 0x23b7a844 key_task_permission EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cad9a4 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x23d1f10b genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet EXPORT_SYMBOL vmlinux 0x23dc7f6c hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x23e209fa page_pool_unlink_napi -EXPORT_SYMBOL vmlinux 0x23f14812 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x23dd6e29 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x23e31b18 generic_shutdown_super EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count -EXPORT_SYMBOL vmlinux 0x23f92aeb kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x23fb3975 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x240dafba mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x243dee31 skb_dump -EXPORT_SYMBOL vmlinux 0x2440d5ac tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x24023917 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x240a4395 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x240b0e36 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x242e3f24 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x2436c580 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x243d0e9a seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244c882a qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x247fdf31 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x24745d13 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x247df72b input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x248a0452 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x249a2af3 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x24c6a8c3 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24da455a ip6_fraglist_init EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24e84ce3 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x24f7029f blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x250788f0 rename_lock -EXPORT_SYMBOL vmlinux 0x2516516d rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x251e3d59 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x25120dba rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x251a5285 udp_poll EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x25350b1e ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x253d899e neigh_destroy -EXPORT_SYMBOL vmlinux 0x253fdbfa sk_ioctl -EXPORT_SYMBOL vmlinux 0x254ae2be cdev_device_add +EXPORT_SYMBOL vmlinux 0x252fae22 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x253a0926 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x2548cda3 of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x254c9287 ioremap -EXPORT_SYMBOL vmlinux 0x254c9d1b skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x25615afe dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x2560c6c9 simple_fill_super +EXPORT_SYMBOL vmlinux 0x2580b9c2 empty_aops EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258bff04 pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x258ce552 vlan_filter_push_vids EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x25964d2d pci_save_state EXPORT_SYMBOL vmlinux 0x2598c6c0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x25c7163d pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x25c7a50e mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x25d8bb40 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x25da714b dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x25dbb110 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x25dbe643 tty_unlock +EXPORT_SYMBOL vmlinux 0x25b21478 simple_get_link +EXPORT_SYMBOL vmlinux 0x25be326f freezing_slow_path +EXPORT_SYMBOL vmlinux 0x25caeb70 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x25d3d265 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x25e3b45f close_fd_get_file +EXPORT_SYMBOL vmlinux 0x25e3ce5b scsi_host_busy EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f02b29 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x260e3c5f phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x26194e92 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x25fc0fc4 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x261d1771 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x26207dae sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x263c1223 genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x2646443c generic_read_dir -EXPORT_SYMBOL vmlinux 0x264a7479 touch_atime -EXPORT_SYMBOL vmlinux 0x26523278 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x264b6752 __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0x2654fedf dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x265a9be7 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x2656d73c sk_ioctl +EXPORT_SYMBOL vmlinux 0x2660f7bf sock_create_kern +EXPORT_SYMBOL vmlinux 0x2676303b blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x267b5dbe fifo_set_limit EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26aba56a linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x26976304 input_register_handle +EXPORT_SYMBOL vmlinux 0x26a8a692 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x26abaf92 pci_enable_wake EXPORT_SYMBOL vmlinux 0x26b1e9e6 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x26b2b6c4 sk_free -EXPORT_SYMBOL vmlinux 0x26b83b1d inode_update_time -EXPORT_SYMBOL vmlinux 0x26cfceff tty_register_device -EXPORT_SYMBOL vmlinux 0x26d25a1c register_console -EXPORT_SYMBOL vmlinux 0x26d3f67e file_open_root -EXPORT_SYMBOL vmlinux 0x26d5e0b4 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x26b61deb migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x26b92d4f fsync_bdev +EXPORT_SYMBOL vmlinux 0x26c7e6f5 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x26cea93b set_bh_page +EXPORT_SYMBOL vmlinux 0x26d41ceb pci_add_new_bus EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f0a225 __neigh_event_send EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x270b4f77 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x26feee68 filemap_get_folios_tag EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270ff513 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272ccb9f sock_release EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273962e5 pci_release_regions +EXPORT_SYMBOL vmlinux 0x27392fae super_setup_bdi EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274ef40e tcp_ioctl +EXPORT_SYMBOL vmlinux 0x2755103d sock_create +EXPORT_SYMBOL vmlinux 0x27597bcb dm_io +EXPORT_SYMBOL vmlinux 0x275b129b add_watch_to_object EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277970f8 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x277ecee1 down_write EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x27839216 vfs_mknod EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27896414 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x27907a47 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0x27a3c0ed i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x27b0b0f5 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x27b2e23f blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c08fae tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x27bcd12f set_cached_acl EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d366b1 _dev_err -EXPORT_SYMBOL vmlinux 0x27e2f8e0 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x27ed9a16 xfrm_input_unregister_afinfo EXPORT_SYMBOL vmlinux 0x27f01f60 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x27f836e9 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x280065ac blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x2801d670 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x2803c43c agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x28055b23 scsi_host_alloc EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281bb9b3 phy_attached_info -EXPORT_SYMBOL vmlinux 0x281e69b3 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x2823b531 bpf_link_put EXPORT_SYMBOL vmlinux 0x282c7e12 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x282d0ddd sock_alloc -EXPORT_SYMBOL vmlinux 0x283e0219 rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x28508450 genphy_loopback -EXPORT_SYMBOL vmlinux 0x2852cf14 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0x285665cc mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x285df08a __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x286ac263 tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x287d6c03 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x28842a85 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x287fda04 pci_scan_bridge EXPORT_SYMBOL vmlinux 0x28864fef __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x288b4193 free_task -EXPORT_SYMBOL vmlinux 0x2894933a kill_pgrp -EXPORT_SYMBOL vmlinux 0x28aa27da blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x28a39a35 security_sk_clone EXPORT_SYMBOL vmlinux 0x28b2ed61 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x28b94e8d scmd_printk -EXPORT_SYMBOL vmlinux 0x28e046c1 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x28c48d5c seq_release EXPORT_SYMBOL vmlinux 0x28f264d7 __tracepoint_dma_fence_signaled EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x28fe69aa icmp6_send -EXPORT_SYMBOL vmlinux 0x290ddc0a fget_raw -EXPORT_SYMBOL vmlinux 0x29212b78 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x29096ce1 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x290a5b8c hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x29139d96 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x292c9756 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x2958ff76 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x2959f3c0 find_inode_rcu EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296b2c79 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x296348c7 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x297374f1 fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x298946c8 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x29987fa0 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x299a3aa8 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x29bc1b4f mntget -EXPORT_SYMBOL vmlinux 0x29bd3b32 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x29751a0c security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x2976799c rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x2988d6b1 get_inode_acl +EXPORT_SYMBOL vmlinux 0x299f55de phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x29a09c10 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x29c0307d agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x29c8788e rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x29cd3bb8 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x29d7b4bc t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29ea5776 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x2a04340b phy_suspend -EXPORT_SYMBOL vmlinux 0x2a0ea085 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x2a1c9ac6 netdev_info -EXPORT_SYMBOL vmlinux 0x2a2702b8 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x29ebc223 inet_listen +EXPORT_SYMBOL vmlinux 0x2a22d264 mr_fill_mroute EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a54d390 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x2a556263 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x2a68131b vme_slot_num +EXPORT_SYMBOL vmlinux 0x2a4b4de2 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x2a4cdba5 md_write_end +EXPORT_SYMBOL vmlinux 0x2a566ae5 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x2a5af1f8 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x2a61004a rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a7ef7bd vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x2a7fe23e md_reload_sb +EXPORT_SYMBOL vmlinux 0x2a756065 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x2a85c9b3 ip6_frag_next EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align EXPORT_SYMBOL vmlinux 0x2a8e32b1 _raw_spin_unlock_irqrestore EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free -EXPORT_SYMBOL vmlinux 0x2a993713 single_open_size EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0e2d6 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2ab11378 phy_init_hw -EXPORT_SYMBOL vmlinux 0x2ab7ac17 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x2abf3d9e submit_bio_wait -EXPORT_SYMBOL vmlinux 0x2adf249e rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x2ae0566d folio_account_redirty +EXPORT_SYMBOL vmlinux 0x2adb3914 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x2ae50f55 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x2b174fde devm_clk_get +EXPORT_SYMBOL vmlinux 0x2b198cf3 sock_set_mark EXPORT_SYMBOL vmlinux 0x2b291ea3 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x2b39cd89 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x2b2cbdd3 scsi_host_get +EXPORT_SYMBOL vmlinux 0x2b3bf796 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x2b4560c2 cfb_copyarea EXPORT_SYMBOL vmlinux 0x2b51339c textsearch_destroy -EXPORT_SYMBOL vmlinux 0x2b64697c netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2b69f488 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x2b7e002c pci_get_slot EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb25967 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x2bc5c29f xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x2be8ad7a get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x2bf29a65 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x2bbc98bf user_path_at_empty +EXPORT_SYMBOL vmlinux 0x2bef3e26 device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x2bf39846 proc_doulongvec_minmax EXPORT_SYMBOL vmlinux 0x2c03dd6d __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x2c0bfcd1 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x2c0cf940 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x2c236c58 pci_domain_nr EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c3d18c9 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x2c3ed9f2 clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x2c421991 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x2c5267ea sk_stream_error -EXPORT_SYMBOL vmlinux 0x2c53bbb2 qe_pin_request -EXPORT_SYMBOL vmlinux 0x2c5eb168 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x2c744e1c simple_rename +EXPORT_SYMBOL vmlinux 0x2c29a056 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x2c35f412 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x2c38bade security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x2c44bbcb of_n_size_cells +EXPORT_SYMBOL vmlinux 0x2c51ac0c genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x2c5ba6d2 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x2c65baa7 __fput_sync +EXPORT_SYMBOL vmlinux 0x2c762def touch_atime EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8f4826 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x2c92e40d xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x2c8d8a1f fget_raw EXPORT_SYMBOL vmlinux 0x2ca59913 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x2cbdef6f tty_unregister_device EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd701e9 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x2ce2cf7b wake_up_process EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table +EXPORT_SYMBOL vmlinux 0x2cf40448 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2cf939e3 fqdir_init +EXPORT_SYMBOL vmlinux 0x2cf8f493 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1675bb netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2d170010 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x2d17133b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x2d24779c jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq -EXPORT_SYMBOL vmlinux 0x2d38dd74 napi_get_frags EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3b35eb pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d552cf7 sock_create_lite -EXPORT_SYMBOL vmlinux 0x2d5bc3f0 ethtool_aggregate_phy_stats -EXPORT_SYMBOL vmlinux 0x2d746164 filemap_get_folios_tag -EXPORT_SYMBOL vmlinux 0x2d7ff018 _dev_emerg -EXPORT_SYMBOL vmlinux 0x2d82b7f5 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x2d87dc47 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x2d528576 pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x2d73032d pci_fixup_cardbus EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da8f4b1 flow_rule_match_enc_control -EXPORT_SYMBOL vmlinux 0x2dabd9aa __register_binfmt -EXPORT_SYMBOL vmlinux 0x2db30a06 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x2dc031c8 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2d9a0a29 dm_kcopyd_zero EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x2dc9dadb i2c_add_adapter EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x2dd620df sock_no_accept -EXPORT_SYMBOL vmlinux 0x2de5d6c0 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x2de7453a mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x2dea3f9b elv_rb_add +EXPORT_SYMBOL vmlinux 0x2df7635c give_up_console EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e1fab2f _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x2e203905 tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e309ca2 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x2e45fd4a rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x2e48ff6a end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x2e4cd4f7 qdisc_put -EXPORT_SYMBOL vmlinux 0x2e5f2587 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x2e2d6c5c vfs_parse_monolithic_sep +EXPORT_SYMBOL vmlinux 0x2e336723 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x2e415625 folio_alloc +EXPORT_SYMBOL vmlinux 0x2e49ce7c elv_rb_del EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e6d697d unregister_key_type -EXPORT_SYMBOL vmlinux 0x2e6e5283 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x2e7d62f4 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x2e8738ba handshake_req_submit -EXPORT_SYMBOL vmlinux 0x2e9bf149 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x2e9d9211 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x2eaab50e inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x2eab17aa ptp_clock_event -EXPORT_SYMBOL vmlinux 0x2eb51c9f pcibus_to_node -EXPORT_SYMBOL vmlinux 0x2ebaa4b5 phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x2ec4888b pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x2e62742e ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x2e64ef56 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x2e6a4f1d clocksource_unregister +EXPORT_SYMBOL vmlinux 0x2e8d745d mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x2e911794 posix_lock_file EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2edf9581 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x2ee6ec9b from_kgid_munged -EXPORT_SYMBOL vmlinux 0x2eee9ce8 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x2ec78440 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x2ed1acbb phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x2efd549c folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0x2f000c44 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x2f02689d mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2f023763 __blk_mq_end_request EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0a2167 fqdir_exit -EXPORT_SYMBOL vmlinux 0x2f0bfebd pci_bus_type -EXPORT_SYMBOL vmlinux 0x2f0d69c9 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x2f07c8c0 tcf_qevent_init EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f147232 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x2f15691d scsi_print_result +EXPORT_SYMBOL vmlinux 0x2f16af82 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x2f202f9c mmc_retune_release EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f3700aa pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x2f40583c netdev_crit +EXPORT_SYMBOL vmlinux 0x2f57f21e dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x2f588066 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x2f6e0c8c of_mdio_find_device EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f7864b2 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x2f7ae238 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x2f7cdff5 sock_bind_add +EXPORT_SYMBOL vmlinux 0x2f7b66e2 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0x2f8264bd gtm_get_timer16 -EXPORT_SYMBOL vmlinux 0x2f93219f dev_kfree_skb_any_reason -EXPORT_SYMBOL vmlinux 0x2fa1d6d6 of_phy_connect -EXPORT_SYMBOL vmlinux 0x2fb41b90 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x2fba361b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x2f83353d tty_port_put +EXPORT_SYMBOL vmlinux 0x2fb1e0fc ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x2fb462d9 xfrm4_rcv EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase +EXPORT_SYMBOL vmlinux 0x2fcb66c1 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x2fd8d12f agp_enable EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x30020369 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x3048896d jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x3055db81 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x30615d0e __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x306c3982 dump_align -EXPORT_SYMBOL vmlinux 0x306cad3e security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x2fe97a5d param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x2ffacad0 sk_common_release +EXPORT_SYMBOL vmlinux 0x3001da73 dev_activate +EXPORT_SYMBOL vmlinux 0x3001f8d6 tls_handshake_cancel +EXPORT_SYMBOL vmlinux 0x30204c84 get_tree_single +EXPORT_SYMBOL vmlinux 0x303f4227 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x303fed23 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x304eb902 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x305a9368 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x305ed3fe pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x30617cb3 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x3080df7c kthread_bind EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a14a60 pci_clear_master +EXPORT_SYMBOL vmlinux 0x30a73c07 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30ab07f5 iget5_locked EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30b70e22 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x30b40abd dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id -EXPORT_SYMBOL vmlinux 0x30be05ab d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x30cd6604 import_iovec +EXPORT_SYMBOL vmlinux 0x30bf1e55 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x30d11465 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x30d4c429 remove_proc_subtree EXPORT_SYMBOL vmlinux 0x30e11ab3 __register_nls EXPORT_SYMBOL vmlinux 0x30e568e7 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x3113ea0b mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x311d9e57 filemap_release_folio -EXPORT_SYMBOL vmlinux 0x3122c808 phy_disconnect -EXPORT_SYMBOL vmlinux 0x312302cf blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x3102e9c4 pci_disable_msi EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x3130719d ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0x3136ccc8 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x31381652 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x3146a3f4 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x3154f2f0 get_phy_device -EXPORT_SYMBOL vmlinux 0x31656a63 skb_tx_error -EXPORT_SYMBOL vmlinux 0x319036f3 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x31a8ac0c device_add_disk -EXPORT_SYMBOL vmlinux 0x31aee03b sockfd_lookup +EXPORT_SYMBOL vmlinux 0x314939b2 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x3153450c pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x315f867a key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x31840075 __sock_i_ino +EXPORT_SYMBOL vmlinux 0x319f1ded xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x31a24a6b flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x31b1a41c __debugger_fault_handler -EXPORT_SYMBOL vmlinux 0x31bac176 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x31c62430 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x31cfedca param_ops_uint -EXPORT_SYMBOL vmlinux 0x31dae715 phy_attach_direct -EXPORT_SYMBOL vmlinux 0x31e7199b fb_find_mode -EXPORT_SYMBOL vmlinux 0x31f383df pipe_lock -EXPORT_SYMBOL vmlinux 0x31fa9904 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x3208c428 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x320f1df2 inet_frags_init +EXPORT_SYMBOL vmlinux 0x31c2efbb misc_deregister +EXPORT_SYMBOL vmlinux 0x31c410cf dev_remove_pack +EXPORT_SYMBOL vmlinux 0x31dba9c5 scsi_host_put +EXPORT_SYMBOL vmlinux 0x31f3ca71 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x31fcf9bf devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x3212a4b4 configfs_depend_item EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 -EXPORT_SYMBOL vmlinux 0x3218a67b pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x321ba59c mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x324b8b7c generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x324ec6f7 simple_write_begin -EXPORT_SYMBOL vmlinux 0x325a65fe dcb_setapp -EXPORT_SYMBOL vmlinux 0x325e12ba param_set_ullong +EXPORT_SYMBOL vmlinux 0x32581e18 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x3259a3a9 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x325e46fa udp6_seq_ops EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop -EXPORT_SYMBOL vmlinux 0x3265c61c dev_uc_init -EXPORT_SYMBOL vmlinux 0x3266a488 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x3272e144 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x3268bace of_translate_dma_region +EXPORT_SYMBOL vmlinux 0x3277548b __sk_mem_schedule EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3285e6ac flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x32863268 serio_open EXPORT_SYMBOL vmlinux 0x328918bc of_read_drc_info_cell -EXPORT_SYMBOL vmlinux 0x328ec59a generic_listxattr -EXPORT_SYMBOL vmlinux 0x3299a548 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x32a04ffd fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x32b6f7e3 sg_miter_skip EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x32bd1e96 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x32c48f82 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x32baa7f4 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d581f3 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x32d95543 vga_put -EXPORT_SYMBOL vmlinux 0x33020b0f pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x3304ae3f d_add +EXPORT_SYMBOL vmlinux 0x3312141b devm_memunmap +EXPORT_SYMBOL vmlinux 0x33121479 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x3313e537 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x33297631 param_get_uint +EXPORT_SYMBOL vmlinux 0x333342f0 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x333bfca1 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x333eb7c7 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x334125cf cad_pid -EXPORT_SYMBOL vmlinux 0x3347277a mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0x3349fe28 vio_unregister_driver -EXPORT_SYMBOL vmlinux 0x3351f7d2 vfs_symlink +EXPORT_SYMBOL vmlinux 0x334d05a1 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x33577532 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33984ece qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x33ade001 ppp_input +EXPORT_SYMBOL vmlinux 0x338942ab rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x339b6869 pcie_set_readrq EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page -EXPORT_SYMBOL vmlinux 0x33b869f2 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x33bf3859 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x33d64706 param_ops_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x33db3734 of_property_read_reg -EXPORT_SYMBOL vmlinux 0x33e8e907 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x33ba5292 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x33c18f7b backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x33ecf14b security_path_mknod EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f3d55d cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x33f82174 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x34017890 flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x3409b532 path_put -EXPORT_SYMBOL vmlinux 0x34205dbd filemap_get_folios_contig -EXPORT_SYMBOL vmlinux 0x34217067 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x344d4809 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x3403c3af begin_new_exec +EXPORT_SYMBOL vmlinux 0x340e1ef9 pci_dev_put +EXPORT_SYMBOL vmlinux 0x3412d079 sys_imageblit +EXPORT_SYMBOL vmlinux 0x3417ae4e cdev_set_parent +EXPORT_SYMBOL vmlinux 0x341f7882 sget +EXPORT_SYMBOL vmlinux 0x34272041 ping_prot +EXPORT_SYMBOL vmlinux 0x3445c5d9 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x345893bc param_get_short EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control -EXPORT_SYMBOL vmlinux 0x34628e3c security_path_mkdir -EXPORT_SYMBOL vmlinux 0x346640b0 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x346ae3e6 mod_node_page_state EXPORT_SYMBOL vmlinux 0x346afdd6 proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x346fcdd1 tcp_hashinfo EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34b3b64f skb_copy_bits -EXPORT_SYMBOL vmlinux 0x34ba7aae md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x34aa93b3 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x34b14193 task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34cff7a4 skb_store_bits -EXPORT_SYMBOL vmlinux 0x34d7f488 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x34d62219 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x34dfb5e9 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x34f16e56 blk_put_queue EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x350b4265 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x3515370b __bio_advance +EXPORT_SYMBOL vmlinux 0x3510087a xp_alloc_batch EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351791fe request_firmware_nowait EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0x3527064b sock_no_bind EXPORT_SYMBOL vmlinux 0x352bb201 xa_store -EXPORT_SYMBOL vmlinux 0x3532e95a skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3551c027 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x35570051 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x355cdf0f take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x3579f42d dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x3592e31d nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x359a1cbb __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x35830e6f agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x3586ea8e dma_async_device_register EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b5d764 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0x35bc01ce of_graph_get_next_endpoint EXPORT_SYMBOL vmlinux 0x35c79799 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x35c88867 netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x35c96ae7 __bh_read -EXPORT_SYMBOL vmlinux 0x35d5ad67 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x35e31d6f of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x360486c1 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x3607e808 nf_reinject -EXPORT_SYMBOL vmlinux 0x36297b38 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x35d2f7ef fput +EXPORT_SYMBOL vmlinux 0x35d541bb __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x35e6b602 genphy_update_link +EXPORT_SYMBOL vmlinux 0x35fce9ce kill_pid +EXPORT_SYMBOL vmlinux 0x35fe27b5 arp_send +EXPORT_SYMBOL vmlinux 0x363cef6b mark_info_dirty EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init -EXPORT_SYMBOL vmlinux 0x3669a348 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x366cdd22 dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x36988e91 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x36c5e8d9 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x36d2f859 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0x36df5eac d_find_alias +EXPORT_SYMBOL vmlinux 0x36675e7d netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x3680ff4a param_ops_long +EXPORT_SYMBOL vmlinux 0x36a80bae tcp_req_err +EXPORT_SYMBOL vmlinux 0x36ab18d3 discard_new_inode +EXPORT_SYMBOL vmlinux 0x36aca230 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x36b002f1 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x36c4f805 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x36df42e9 param_ops_hexint EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0x36f875fd __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x36f16a6d icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x3704e371 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x37258b5a phy_attach -EXPORT_SYMBOL vmlinux 0x3731d717 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x374fb1ac pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x374730c6 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x3747c5a0 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x37487726 ndisc_send_skb EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x376bd4f8 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x37818fb4 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x37925cf0 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x37968673 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x37af9338 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x37b13459 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x37612cf6 dst_release +EXPORT_SYMBOL vmlinux 0x37624cd1 skb_ext_add +EXPORT_SYMBOL vmlinux 0x3763ef80 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x379677ab km_state_notify +EXPORT_SYMBOL vmlinux 0x37a84628 netdev_class_create_file_ns EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info -EXPORT_SYMBOL vmlinux 0x37bd2ca0 ipv6_select_ident EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c8c6c3 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x37e57b08 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x37f40aa5 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x37f90e65 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x3801d10d sock_efree EXPORT_SYMBOL vmlinux 0x38026cb6 complete -EXPORT_SYMBOL vmlinux 0x38032c51 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x381992ab skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0x38079a54 dev_set_promiscuity EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x381ee5df jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x382c0431 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x383054e0 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x38415cd1 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x381ad0b6 path_is_under EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll EXPORT_SYMBOL vmlinux 0x385c7481 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x386f4fc3 blk_put_queue -EXPORT_SYMBOL vmlinux 0x3870f798 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x387988f2 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x387d469a input_set_keycode EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891c3de vme_bus_num EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x38a486aa of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38c2783c dev_driver_string -EXPORT_SYMBOL vmlinux 0x38d7750f tty_kref_put -EXPORT_SYMBOL vmlinux 0x38d97eb2 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x38d06f3c phy_advertise_supported EXPORT_SYMBOL vmlinux 0x38dded41 dma_fence_init -EXPORT_SYMBOL vmlinux 0x38efd92f mfd_remove_devices_late EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios -EXPORT_SYMBOL vmlinux 0x3905d327 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x3907e160 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x3916bcea devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x391ac6fe input_register_device +EXPORT_SYMBOL vmlinux 0x39173f40 mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x391cebef mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x39309f6f page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x392bafdb may_setattr EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x39436ccc register_qdisc EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394b63e9 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x394cc659 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39800d83 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x39864c6b security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x398ff152 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x39915a9d ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x396996fc flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x396e4877 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x3970eaea mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x3974e056 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x397911c5 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x398cfb97 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x39b5e783 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x39be8c17 unregister_netdev +EXPORT_SYMBOL vmlinux 0x39adaa10 dcb_setrewr EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0x39c903ae sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x39d4f80c folio_unlock EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39da3a9a udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x39fa6e9a vme_master_request -EXPORT_SYMBOL vmlinux 0x3a0ca152 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x3a24483d ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x3a41909c crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x3a4b4b01 softnet_data +EXPORT_SYMBOL vmlinux 0x39ef5d79 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x39f001de mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x3a0a2c49 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x3a15694d genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x3a3b88a5 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x3a5ac884 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x3a7f6cc5 freeze_super -EXPORT_SYMBOL vmlinux 0x3a847ce0 complete_request_key +EXPORT_SYMBOL vmlinux 0x3a5c13ba skb_eth_push EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store -EXPORT_SYMBOL vmlinux 0x3a90dd96 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x3a9529b0 migrate_folio -EXPORT_SYMBOL vmlinux 0x3a99642c key_payload_reserve -EXPORT_SYMBOL vmlinux 0x3aa4cd1c xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x3aa697f2 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x3a98e7c2 tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ab82137 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x3ac432bc inet_frags_fini -EXPORT_SYMBOL vmlinux 0x3ac943fe inet_csk_accept -EXPORT_SYMBOL vmlinux 0x3ad5c9a6 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x3ac5569d jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x3ae0bd9e scsi_device_set_state EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx EXPORT_SYMBOL vmlinux 0x3ae46bfe clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x3ae70ba5 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x3b0495f1 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x3b08acee input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x3b116ce2 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x3b20cfcc __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3b0e2c11 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3b23ad3a filemap_fault +EXPORT_SYMBOL vmlinux 0x3b2e994c blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b3a500b jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x3b40716f hmm_range_fault -EXPORT_SYMBOL vmlinux 0x3b455442 notify_change +EXPORT_SYMBOL vmlinux 0x3b61f033 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b67b3bb xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3bc848bc __devm_release_region -EXPORT_SYMBOL vmlinux 0x3bcb8c0f dst_dev_put -EXPORT_SYMBOL vmlinux 0x3bd11975 gro_cells_receive -EXPORT_SYMBOL vmlinux 0x3bfa3c4b dquot_file_open +EXPORT_SYMBOL vmlinux 0x3b6f48db iget_failed +EXPORT_SYMBOL vmlinux 0x3b80a643 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x3b8b81e6 mr_dump +EXPORT_SYMBOL vmlinux 0x3baf8f09 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x3bb56a07 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x3bcefa30 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x3bdaafab pci_disable_link_state EXPORT_SYMBOL vmlinux 0x3bfb09fa gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x3bff612d __skb_ext_del -EXPORT_SYMBOL vmlinux 0x3c03df00 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x3c015b95 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c244b90 dm_io +EXPORT_SYMBOL vmlinux 0x3c27346a block_write_full_page EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3ba626 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c4fd9d5 bioset_init -EXPORT_SYMBOL vmlinux 0x3c5ff98c lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x3c690bb2 vlan_for_each -EXPORT_SYMBOL vmlinux 0x3c76d519 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x3c80ac82 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x3c8c7d97 param_get_uint +EXPORT_SYMBOL vmlinux 0x3c62938b xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x3c65daaa sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x3c77dd02 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x3c7c9d3c skb_expand_head +EXPORT_SYMBOL vmlinux 0x3c85f773 devm_iounmap +EXPORT_SYMBOL vmlinux 0x3c8b1941 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3cae9d51 bio_chain +EXPORT_SYMBOL vmlinux 0x3cb1de8a rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cd24bcd scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x3cdf2e65 vmemmap EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ceddf22 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x3d07d3d9 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0x3d095fd8 xsk_tx_release -EXPORT_SYMBOL vmlinux 0x3d0accf9 genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x3d368a91 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x3d44ffd8 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x3d4b3da8 input_allocate_device -EXPORT_SYMBOL vmlinux 0x3d5483ab pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x3d607b20 page_mapping -EXPORT_SYMBOL vmlinux 0x3d7219bd bio_free_pages -EXPORT_SYMBOL vmlinux 0x3d8ba172 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x3d8f2636 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x3d982023 put_cmsg -EXPORT_SYMBOL vmlinux 0x3da33c9a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x3d081bfd simple_open +EXPORT_SYMBOL vmlinux 0x3d118350 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x3d179edb blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x3d19088e dev_add_offload +EXPORT_SYMBOL vmlinux 0x3d5351c8 fqdir_exit +EXPORT_SYMBOL vmlinux 0x3d6c3e5b neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x3d6d9739 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x3d6f9eb6 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x3d732940 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x3d7c3872 inet_getname +EXPORT_SYMBOL vmlinux 0x3d8e309f get_cached_acl +EXPORT_SYMBOL vmlinux 0x3da45d83 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x3da8296b inet_dgram_connect EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3dbcefbe vm_map_pages +EXPORT_SYMBOL vmlinux 0x3dc38334 pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcf4b4d qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x3dea7220 giveup_altivec +EXPORT_SYMBOL vmlinux 0x3df53be1 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e1358ce start_tty -EXPORT_SYMBOL vmlinux 0x3e148dcd cfb_fillrect -EXPORT_SYMBOL vmlinux 0x3e18aaaa __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x3e18c0fb ps2_command -EXPORT_SYMBOL vmlinux 0x3e250367 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x3e2d6719 stream_open +EXPORT_SYMBOL vmlinux 0x3e0dfc4f arp_create +EXPORT_SYMBOL vmlinux 0x3e1a5105 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e436e45 sync_file_create -EXPORT_SYMBOL vmlinux 0x3e533470 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x3e5be0b8 dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0x3e69e9da vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x3e9bb9e7 ps2_init -EXPORT_SYMBOL vmlinux 0x3ea44f03 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x3eb0de97 sync_filesystem +EXPORT_SYMBOL vmlinux 0x3e438dce sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x3e50f4ef dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3e68a16d sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x3e8e5608 cdev_del +EXPORT_SYMBOL vmlinux 0x3e976835 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x3e99052d d_alloc_name +EXPORT_SYMBOL vmlinux 0x3e9a8863 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x3ead7c9c xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x3eb3cee4 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x3eb77576 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x3eb817d1 put_watch_queue EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ed43fae vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x3ee97d03 tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0x3ef4bc6f jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x3ed1b289 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x3ed57636 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x3efa5422 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x3efe13de netdev_warn EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f0a5f3f xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x3f3ac2c8 qdisc_reset EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f460a1e input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x3f50f3ca __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x3f5a0b47 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x3f5d1744 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x3f6baab1 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x3f4909c9 fb_set_var +EXPORT_SYMBOL vmlinux 0x3f604c54 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x3f726e46 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x3f759b4b proto_register +EXPORT_SYMBOL vmlinux 0x3f7adc06 bio_uninit +EXPORT_SYMBOL vmlinux 0x3f8389c9 param_get_ulong EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f90d49a fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x3fac5692 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x3fb643c7 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x3f93fc6a add_to_pipe +EXPORT_SYMBOL vmlinux 0x3f9e32e0 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x3f9ea937 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x3fb15120 param_get_byte EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc71dc0 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x3fca3d54 handshake_genl_put EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fee37d8 mdiobus_read -EXPORT_SYMBOL vmlinux 0x40016d3c gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x4019bfd1 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0x4031602c blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0x40320ecd dquot_disable -EXPORT_SYMBOL vmlinux 0x403b018d from_kgid -EXPORT_SYMBOL vmlinux 0x403dbec4 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x4047c6e1 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x3fe975b9 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x3ffc4e62 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x40234ff1 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x40462a0e of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x40493227 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x4053b14b devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x405b04ec rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL vmlinux 0x40651469 giveup_fpu -EXPORT_SYMBOL vmlinux 0x4076a99b rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x4076fa28 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x4082cfcc truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x4077c495 __mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x407c1901 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x4082060f netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x4092ec26 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x4096ce5e __dquot_free_space EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40996882 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x40a4916f dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate -EXPORT_SYMBOL vmlinux 0x40a80c72 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x40a83fd0 rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40acde3a tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x40b5cd7a seq_read EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c98590 d_obtain_root +EXPORT_SYMBOL vmlinux 0x40cfd6c0 unregister_md_personality EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d075e4 padata_alloc +EXPORT_SYMBOL vmlinux 0x40d337e8 kern_unmount EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40d5fd01 i2c_find_device_by_fwnode -EXPORT_SYMBOL vmlinux 0x40edaab9 noop_qdisc -EXPORT_SYMBOL vmlinux 0x40f319c3 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x40e5ca41 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x40f48958 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x40f5ae3e tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x4107b79c xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0x41205a0c bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0x412540fd ip_frag_init -EXPORT_SYMBOL vmlinux 0x4129eb92 mmc_free_host +EXPORT_SYMBOL vmlinux 0x40fb79fc unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x40fe11e3 __skb_ext_del EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41378790 find_inode_rcu -EXPORT_SYMBOL vmlinux 0x414094b4 eeh_dev_release -EXPORT_SYMBOL vmlinux 0x4145c952 netdev_change_features -EXPORT_SYMBOL vmlinux 0x4146fe50 udp_disconnect EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x4149fb86 inet_select_addr -EXPORT_SYMBOL vmlinux 0x414e77f7 pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x4151760c radix__local_flush_tlb_page -EXPORT_SYMBOL vmlinux 0x41532fe3 clear_inode -EXPORT_SYMBOL vmlinux 0x4154f6e3 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x4159980a _copy_from_iter -EXPORT_SYMBOL vmlinux 0x415a2bcc shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x415c7819 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x416a0dea make_kgid -EXPORT_SYMBOL vmlinux 0x41735c72 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x41840b47 netdev_notice -EXPORT_SYMBOL vmlinux 0x41864971 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x414d3824 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x417eb3bf sync_file_create +EXPORT_SYMBOL vmlinux 0x417ed09d lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x4186cc81 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x41978fd2 dm_table_event +EXPORT_SYMBOL vmlinux 0x418b8b94 md_error +EXPORT_SYMBOL vmlinux 0x418de33b __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x418ef7b9 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x41914fc4 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x419833ba dump_emit +EXPORT_SYMBOL vmlinux 0x41ab8f4e pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0x41abd4db _raw_write_trylock EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x41b743e6 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x41bd3fe5 to_nd_dax -EXPORT_SYMBOL vmlinux 0x41be8048 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x41cf9ba6 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x41ba0672 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x41c25c8d security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x41c9e983 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x41db5071 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x41dd6b07 d_delete EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes -EXPORT_SYMBOL vmlinux 0x4203b136 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x42044ec4 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x421eafe9 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x42369091 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x41fcd9b3 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x420e53b6 set_disk_ro +EXPORT_SYMBOL vmlinux 0x42342dd7 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x423b39af tso_build_data EXPORT_SYMBOL vmlinux 0x423f7340 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running -EXPORT_SYMBOL vmlinux 0x424aa817 netif_device_attach EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x425bb02c pci_domain_nr -EXPORT_SYMBOL vmlinux 0x425e5dd5 key_invalidate -EXPORT_SYMBOL vmlinux 0x427254c8 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x42707790 scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x42736793 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x428f282f pci_fixup_device -EXPORT_SYMBOL vmlinux 0x42b4a004 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x4293272a filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x42bd1b96 load_nls -EXPORT_SYMBOL vmlinux 0x42d6f6e0 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x42e02049 flush_dcache_folio -EXPORT_SYMBOL vmlinux 0x42e75341 __of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0x42eaa40e seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x42ef7a17 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x42f01faf pci_read_vpd +EXPORT_SYMBOL vmlinux 0x42c1f947 scsi_done +EXPORT_SYMBOL vmlinux 0x42d57472 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x42dddf23 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fcd0c4 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x4304001e tcp_time_wait -EXPORT_SYMBOL vmlinux 0x43156e40 iunique -EXPORT_SYMBOL vmlinux 0x432951c6 pps_event +EXPORT_SYMBOL vmlinux 0x432c2ada fqdir_init +EXPORT_SYMBOL vmlinux 0x433b4ae0 udp_ioctl EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x435488f1 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x4358e608 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x435e386a inet_recvmsg +EXPORT_SYMBOL vmlinux 0x435e7cfa security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x4363edbb path_get +EXPORT_SYMBOL vmlinux 0x437515c4 param_ops_short EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437c23bd inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x4382ff50 ptp_clock_register EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x438c8b46 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x438cbc22 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x43a0a581 generic_fillattr EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43af9b3c inet_stream_ops +EXPORT_SYMBOL vmlinux 0x43b39ca0 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one -EXPORT_SYMBOL vmlinux 0x43c1c25d nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0x43c82edf wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x43ce1108 tty_port_close_end EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43da0ca3 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x43d60748 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x43dad036 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x44339dfc vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x443d87af tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x443d8b88 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x4408af60 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x442c4916 d_add_ci +EXPORT_SYMBOL vmlinux 0x442f37b1 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x4438b77e device_add_disk +EXPORT_SYMBOL vmlinux 0x443ef735 set_capacity EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4455c3bc rproc_free EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq EXPORT_SYMBOL vmlinux 0x446dec79 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x44798c81 srp_rport_put -EXPORT_SYMBOL vmlinux 0x4482ba75 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x446ffb8b rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x448b2d76 param_set_invbool EXPORT_SYMBOL vmlinux 0x44b5c41b proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x44c732c0 mmc_gpio_set_cd_irq -EXPORT_SYMBOL vmlinux 0x44d417f1 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x44d2f1ea of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x44d3d471 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x44dcd373 xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x44e495d7 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x44e801a0 fs_bio_set EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ed204d devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x44ed377e dmam_pool_create -EXPORT_SYMBOL vmlinux 0x44f6f385 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x44fcfe09 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x44ebcb89 register_qdisc +EXPORT_SYMBOL vmlinux 0x44f075ed dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4502db8d pci_request_irq +EXPORT_SYMBOL vmlinux 0x450401c5 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x450639ab sg_last EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size -EXPORT_SYMBOL vmlinux 0x450c2663 pipe_unlock -EXPORT_SYMBOL vmlinux 0x450e0ccc rproc_shutdown EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x4523ee7d security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x4524708b unregister_filesystem EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453a5a6c dev_mc_sync +EXPORT_SYMBOL vmlinux 0x452fdd40 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x4534b509 dst_discard_out +EXPORT_SYMBOL vmlinux 0x4535b11f remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x45383754 md_handle_request EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x453caf05 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x454456ec ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x454fc1b6 del_gendisk EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x4556024a scsi_device_resume EXPORT_SYMBOL vmlinux 0x455c2733 textsearch_register -EXPORT_SYMBOL vmlinux 0x455f7271 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x45629267 blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x4565163c mtree_insert_range -EXPORT_SYMBOL vmlinux 0x45702168 devm_devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x4573b724 d_alloc_name +EXPORT_SYMBOL vmlinux 0x45723619 udp6_csum_init EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45799f02 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x458e7c1b device_get_mac_address -EXPORT_SYMBOL vmlinux 0x45bb92c3 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x45bd0bea param_ops_bool -EXPORT_SYMBOL vmlinux 0x45d151c2 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x45dad6e4 dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0x45ea63d8 misc_deregister -EXPORT_SYMBOL vmlinux 0x45f01a77 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x45f1dd1d skb_copy_expand +EXPORT_SYMBOL vmlinux 0x45884a9f of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x4593d504 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x45a3774c pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x45aac1fe generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x45d4a59a alloc_fddidev +EXPORT_SYMBOL vmlinux 0x45ebbb6e __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x45ed3121 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x45edc864 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x45f14c72 d_alloc_parallel EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x4602bb30 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x46124e43 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user -EXPORT_SYMBOL vmlinux 0x46238758 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x462b0241 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0x462bc18a netdev_warn EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x464b5d64 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x46557a2a ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467030ee follow_up EXPORT_SYMBOL vmlinux 0x4674ec42 __pgd_val_bits +EXPORT_SYMBOL vmlinux 0x467a401d mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x469558a8 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x469734ba __ip_select_ident +EXPORT_SYMBOL vmlinux 0x469241c0 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x469c141a qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x469c295a jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x46ac9d0e netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x46ab63c7 register_quota_format +EXPORT_SYMBOL vmlinux 0x46aff360 inode_permission +EXPORT_SYMBOL vmlinux 0x46bacf0d mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options +EXPORT_SYMBOL vmlinux 0x46bf4c0b blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c5d9bf fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x46c671e2 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x46c9d6ed remove_arg_zero EXPORT_SYMBOL vmlinux 0x46c9ffea crypto_kdf108_setkey -EXPORT_SYMBOL vmlinux 0x46d9c45b ip6_xmit -EXPORT_SYMBOL vmlinux 0x46dd5929 flush_dcache_icache_page -EXPORT_SYMBOL vmlinux 0x46e81169 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x46df2061 dev_kfree_skb_any_reason +EXPORT_SYMBOL vmlinux 0x46f0186c to_nd_pfn +EXPORT_SYMBOL vmlinux 0x46f57e0e redraw_screen EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after -EXPORT_SYMBOL vmlinux 0x47012fc7 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x46ff16fa security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x4702c32f phy_drivers_unregister EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x470c8fca fput -EXPORT_SYMBOL vmlinux 0x471145bb security_path_unlink -EXPORT_SYMBOL vmlinux 0x4737a14f pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0x475457d5 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x475887e3 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x4735c0e4 generic_file_open +EXPORT_SYMBOL vmlinux 0x47446884 seq_open_private +EXPORT_SYMBOL vmlinux 0x47673005 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x477164f9 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x47748a4f scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x478c4e51 tcp_md5_key_copy -EXPORT_SYMBOL vmlinux 0x479d9cf5 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x47a7731d cdev_init -EXPORT_SYMBOL vmlinux 0x47b78640 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x47c128f2 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x4774a105 sock_pfree +EXPORT_SYMBOL vmlinux 0x4784d9b3 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x478b5a05 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x478f32f6 register_fib_notifier EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c48af3 store_fp_state EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c8802f submit_bio_wait +EXPORT_SYMBOL vmlinux 0x47ceb9dd scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x47cf8a68 key_invalidate EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47f153d3 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x47d12032 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x47dc7c37 d_alloc +EXPORT_SYMBOL vmlinux 0x47e03bc9 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x47e7c223 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x47eced40 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x47f5f9fb crypto_sha3_init -EXPORT_SYMBOL vmlinux 0x47fb7ccb inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x480c2f92 folio_alloc -EXPORT_SYMBOL vmlinux 0x480e9025 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x48148cdf seq_printf +EXPORT_SYMBOL vmlinux 0x47f69b72 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x47f7eb5b __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x47f86523 param_ops_invbool EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x481bda3d filp_close +EXPORT_SYMBOL vmlinux 0x481f60e8 eeh_dev_release EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x4833ad6b udp_seq_next +EXPORT_SYMBOL vmlinux 0x4834d609 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x48355cb4 qe_pin_request EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x48466461 scsi_device_put EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484d023f twl6040_clear_bits EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x484fdbaa skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x4859a684 vio_h_cop_sync EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485c4f41 sockfd_lookup EXPORT_SYMBOL vmlinux 0x486c17db __xa_erase +EXPORT_SYMBOL vmlinux 0x48799e99 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x48822f1e vme_slave_request +EXPORT_SYMBOL vmlinux 0x4892bc4c srp_rport_get +EXPORT_SYMBOL vmlinux 0x489f0fe1 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a2808d of_parse_phandle_with_args_map EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48aa5b89 input_setup_polling +EXPORT_SYMBOL vmlinux 0x48b70844 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x48b7cf3f tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48c1e2bf generic_file_fsync -EXPORT_SYMBOL vmlinux 0x48c8c0ea serio_reconnect EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node -EXPORT_SYMBOL vmlinux 0x48d5124b pci_request_irq -EXPORT_SYMBOL vmlinux 0x48dab0b9 mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0x48e8a2a2 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x48ecadb1 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x490262f3 mdiobus_c45_read_nested EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x4929aad9 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x4936f731 pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x4906fd73 fd_install +EXPORT_SYMBOL vmlinux 0x4916fb1e __register_chrdev +EXPORT_SYMBOL vmlinux 0x492b5475 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x4933b013 d_invalidate EXPORT_SYMBOL vmlinux 0x4949664b trace_seq_acquire EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x4954b54a posix_lock_file -EXPORT_SYMBOL vmlinux 0x49599f31 dquot_drop +EXPORT_SYMBOL vmlinux 0x49528a6a tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x495d8087 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x496a8e01 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x496ff706 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x4977f359 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x4983a693 dump_page -EXPORT_SYMBOL vmlinux 0x498c0dd9 netdev_emerg -EXPORT_SYMBOL vmlinux 0x499336fc reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x49940bd6 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x4983f15b of_scan_pci_bridge EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum -EXPORT_SYMBOL vmlinux 0x49a68787 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x49ad1035 locks_init_lock -EXPORT_SYMBOL vmlinux 0x49b34e20 init_pseudo -EXPORT_SYMBOL vmlinux 0x49c6bb41 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x49c78a14 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x49e700f6 __bforget +EXPORT_SYMBOL vmlinux 0x49a15a6e cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x49a4711e pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x49c5978f phy_disconnect EXPORT_SYMBOL vmlinux 0x49f1616e cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0x49f9eccb tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x4a0312d4 kobject_add -EXPORT_SYMBOL vmlinux 0x4a1b7a0c __neigh_event_send -EXPORT_SYMBOL vmlinux 0x4a210fe3 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x4a286dd4 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x4a0a2b0d __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x4a0c711e pci_release_region +EXPORT_SYMBOL vmlinux 0x4a2934d4 fiemap_prep +EXPORT_SYMBOL vmlinux 0x4a37a55d inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x4a3a7d41 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x4a4259f1 user_path_create EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a4e4b08 __dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x4a5410ef mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x4a4ca4e9 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x4a53c9a8 netif_inherit_tso_max EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc -EXPORT_SYMBOL vmlinux 0x4a6a2f56 __free_pages -EXPORT_SYMBOL vmlinux 0x4a782b80 blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x4a8897ac redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4a5bf794 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x4a76d8eb param_get_hexint +EXPORT_SYMBOL vmlinux 0x4a77b607 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x4a8e00b1 ps2_drain +EXPORT_SYMBOL vmlinux 0x4a9331bc tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9a0907 scsi_host_busy -EXPORT_SYMBOL vmlinux 0x4aa1df41 fiemap_prep -EXPORT_SYMBOL vmlinux 0x4ab1fc3a input_release_device -EXPORT_SYMBOL vmlinux 0x4ab4555e devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x4aa2d000 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x4ab03843 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x4ab0b3e1 irq_domain_set_info EXPORT_SYMBOL vmlinux 0x4ac1217d kset_unregister -EXPORT_SYMBOL vmlinux 0x4ac7a97c security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x4ac893fb genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af20457 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x4af4a0f9 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x4af5025f mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0x4af5a852 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x4af5cc6f scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4b018257 finish_no_open +EXPORT_SYMBOL vmlinux 0x4af797b2 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0e0fdc __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x4b1a8855 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x4b23f1d3 mapping_read_folio_gfp -EXPORT_SYMBOL vmlinux 0x4b2e2d2a pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x4b0b6406 eth_header_parse +EXPORT_SYMBOL vmlinux 0x4b1074a2 setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x4b2b5bf4 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x4b3e7af1 sock_common_recvmsg EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b4cbbee udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x4b4d917b dentry_path_raw +EXPORT_SYMBOL vmlinux 0x4b435023 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x4b443154 mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0x4b469cab of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x4b5a8aff xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x4b5b9bbc clk_get -EXPORT_SYMBOL vmlinux 0x4b704d9b dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x4b7b613c xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x4b7d653e handshake_req_cancel -EXPORT_SYMBOL vmlinux 0x4b808027 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x4b868caf xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x4b8ea6a1 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x4b8fc17f kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x4b9a7da6 ps2_end_command -EXPORT_SYMBOL vmlinux 0x4baace7d __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x4bcfed5d __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x4bd94ce7 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x4bda311a update_devfreq +EXPORT_SYMBOL vmlinux 0x4b779470 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x4b7c57dd phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x4b9a82cd ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x4bdc849f rtc_add_group +EXPORT_SYMBOL vmlinux 0x4bdff2a7 bioset_exit EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bff1add udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x4c1690ff follow_down_one -EXPORT_SYMBOL vmlinux 0x4c1b5448 dm_register_target -EXPORT_SYMBOL vmlinux 0x4c2b0482 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x4c2bb013 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x4c393c77 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x4c3b1833 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x4c1a92d8 scsi_device_put +EXPORT_SYMBOL vmlinux 0x4c3a660e devm_rproc_alloc EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c642be4 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x4c71942c xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x4c829e10 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x4c8350ee netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x4c8fe71d vfs_link -EXPORT_SYMBOL vmlinux 0x4ca8714f d_add +EXPORT_SYMBOL vmlinux 0x4c44af8e rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x4c568562 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4c5b986c secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x4ca1527f input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0x4cae4074 proc_dobool -EXPORT_SYMBOL vmlinux 0x4cafb7b4 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x4cbcb9cb mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map -EXPORT_SYMBOL vmlinux 0x4ccbb4e2 elv_rb_del -EXPORT_SYMBOL vmlinux 0x4ccbc3c9 agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x4cdf940c scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x4ce25762 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x4ce65105 dquot_alloc -EXPORT_SYMBOL vmlinux 0x4cf970d5 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x4cfd2591 __alloc_pages -EXPORT_SYMBOL vmlinux 0x4d066277 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0x4d123755 tls_server_hello_x509 -EXPORT_SYMBOL vmlinux 0x4d2d9f4e mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x4d4a3977 dm_put_device -EXPORT_SYMBOL vmlinux 0x4d4f313a of_find_property +EXPORT_SYMBOL vmlinux 0x4cded7a0 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x4cf4dc9b inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x4cf59730 d_move +EXPORT_SYMBOL vmlinux 0x4d2fb47b __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x4d413a76 vfs_fsync +EXPORT_SYMBOL vmlinux 0x4d5396b4 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x4d5d682e tcp_conn_request +EXPORT_SYMBOL vmlinux 0x4d5da902 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x4d65a5a6 vfs_iter_read EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d65f30e phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x4d722d88 radix__flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x4d79aca6 folio_mapping EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d952e2d sock_recvmsg EXPORT_SYMBOL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL vmlinux 0x4d992da3 tty_do_resize +EXPORT_SYMBOL vmlinux 0x4d96eabf inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9fe53b agp_bridge +EXPORT_SYMBOL vmlinux 0x4da00e17 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x4da1c1e2 ethtool_aggregate_pause_stats EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4db50b67 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x4dcd1304 put_disk +EXPORT_SYMBOL vmlinux 0x4da44e63 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x4db29560 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4dcbf33e inet_stream_connect EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df8f2e4 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x4dfe12f1 par_io_of_config -EXPORT_SYMBOL vmlinux 0x4e106d18 nd_device_register -EXPORT_SYMBOL vmlinux 0x4e1ce01a tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x4df88403 phy_attached_print EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e3a5c18 io_uring_destruct_scm -EXPORT_SYMBOL vmlinux 0x4e450470 d_invalidate -EXPORT_SYMBOL vmlinux 0x4e4ca3f4 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x4e3bf5bd max8925_reg_read +EXPORT_SYMBOL vmlinux 0x4e42a711 trace_event_printf +EXPORT_SYMBOL vmlinux 0x4e43fe25 _dev_err +EXPORT_SYMBOL vmlinux 0x4e465eb6 genphy_c45_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x4e533909 serial8250_do_pm EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e5f26d4 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x4e65b4b8 misc_register +EXPORT_SYMBOL vmlinux 0x4e6224e6 netdev_update_features +EXPORT_SYMBOL vmlinux 0x4e65a434 phy_device_create EXPORT_SYMBOL vmlinux 0x4e65ff73 dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7a434d inc_node_state -EXPORT_SYMBOL vmlinux 0x4e8df383 tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x4e99f8ae phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x4e79b54d jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x4e7b8947 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x4e836fad netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x4e94ac67 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x4e98510a __scsi_add_device EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x4eb7ae3d hvc_get_chars +EXPORT_SYMBOL vmlinux 0x4ec0e353 unpin_user_page +EXPORT_SYMBOL vmlinux 0x4ec27b4b sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ed10385 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0x4ed9fd64 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x4ee66bbe d_set_d_op -EXPORT_SYMBOL vmlinux 0x4f0ca02c ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0x4f1991de jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x4f19e17f key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x4eca09b8 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4eecf1f8 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x4f01b275 dqput EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2be93b inet6_add_offload -EXPORT_SYMBOL vmlinux 0x4f2d5be4 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4f335993 bio_endio -EXPORT_SYMBOL vmlinux 0x4f43c51e bio_chain -EXPORT_SYMBOL vmlinux 0x4f529608 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x4f6e74b1 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x4f9f55a1 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x4f3e6ff4 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x4f482eb8 of_node_put +EXPORT_SYMBOL vmlinux 0x4f4b61d0 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4f57c1d4 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x4fbbaba4 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x4fca6781 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x4fd5c95d udp_gro_complete EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fea1d00 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0x4ff030fb xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x4fee7d5a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x4ff89a42 neigh_seq_start EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4fffa893 bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x50490b6a xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x5017fd7f jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x501dc743 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x50231446 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x505346da proc_create_mount_point EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506c4a52 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x506da9ed fsync_bdev EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x506e055f md_register_thread -EXPORT_SYMBOL vmlinux 0x5071cad3 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x506f9312 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x50719c2f ip_setsockopt EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size +EXPORT_SYMBOL vmlinux 0x50874b67 component_match_add_release EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x508b1561 twl6040_get_sysclk EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b108f3 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x50aa19da kernel_read +EXPORT_SYMBOL vmlinux 0x50b326f1 mdio_bus_type EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c75802 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x50bfb9d3 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x50c084de jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x50c1a50d i2c_transfer EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d52028 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x50eb0bb9 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0x50f78580 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x50f8e915 uart_add_one_port EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x5102f8fa param_get_int -EXPORT_SYMBOL vmlinux 0x512c2173 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x513a5fb3 blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0x514e3655 agp_create_memory -EXPORT_SYMBOL vmlinux 0x515ec591 sync_blockdev +EXPORT_SYMBOL vmlinux 0x50fa57c4 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x51086157 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x5116664c to_nd_dax +EXPORT_SYMBOL vmlinux 0x51261c54 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x5126c75c skb_queue_purge +EXPORT_SYMBOL vmlinux 0x513630d2 of_root +EXPORT_SYMBOL vmlinux 0x514080ff __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x515fc55e dst_release_immediate EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x5187a222 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x5181a74e input_allocate_device +EXPORT_SYMBOL vmlinux 0x51825554 eth_header_cache +EXPORT_SYMBOL vmlinux 0x51855b09 __wait_on_buffer EXPORT_SYMBOL vmlinux 0x519bb3e7 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x519d7835 __skb_pad -EXPORT_SYMBOL vmlinux 0x51a9d62f pci_find_capability -EXPORT_SYMBOL vmlinux 0x51b9c2ca genl_register_family -EXPORT_SYMBOL vmlinux 0x51c31752 genphy_suspend -EXPORT_SYMBOL vmlinux 0x51c3400a input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x51d3a722 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x51dc8183 write_cache_pages -EXPORT_SYMBOL vmlinux 0x51e36334 user_path_create -EXPORT_SYMBOL vmlinux 0x51f70ee3 super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x520b65c8 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x521555bc udp_pre_connect +EXPORT_SYMBOL vmlinux 0x519fac75 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x51b69aa1 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x51b8fa3f da903x_query_status +EXPORT_SYMBOL vmlinux 0x51c2b1bd eth_mac_addr +EXPORT_SYMBOL vmlinux 0x51e90f33 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x52180e98 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x5244f918 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x524a9d55 key_alloc EXPORT_SYMBOL vmlinux 0x525db41a csum_partial_copy_generic -EXPORT_SYMBOL vmlinux 0x52619d2c mark_info_dirty +EXPORT_SYMBOL vmlinux 0x526ce593 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5294f51b d_add_ci +EXPORT_SYMBOL vmlinux 0x5271c34a input_register_handler +EXPORT_SYMBOL vmlinux 0x5275e0d2 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x528477fa blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x52859fc1 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x528c64da blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x52975448 mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529ec43f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x52a6de90 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x52a7cab7 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x52b3dc19 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x52c5161f flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52d87ca6 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x52db92e0 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x52e48659 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x52e896fd mmu_feature_keys EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52f0ecaf prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x52f1adf1 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x52f318e5 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start -EXPORT_SYMBOL vmlinux 0x530a10d9 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x530a113a sock_kmalloc EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5317e7dc t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x5327125b __phy_read_mmd EXPORT_SYMBOL vmlinux 0x532fcbe4 __nla_put_nohdr EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533e8718 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x53487b27 dquot_initialize +EXPORT_SYMBOL vmlinux 0x5338ca8d vlan_vid_del EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x535c9e01 dquot_get_state -EXPORT_SYMBOL vmlinux 0x5383895a md_unregister_thread -EXPORT_SYMBOL vmlinux 0x538e0d3e tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x53917c5d security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x53920c2e xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x53684d41 d_lookup +EXPORT_SYMBOL vmlinux 0x536a3289 init_pseudo +EXPORT_SYMBOL vmlinux 0x536f2f26 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x537be1df dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x53934ade pci_bus_type +EXPORT_SYMBOL vmlinux 0x539e3e59 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x539fc389 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x53a19f74 input_open_device EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit +EXPORT_SYMBOL vmlinux 0x53aafc9f xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x53abc327 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x53b4a5eb nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x53c0c05b register_md_personality -EXPORT_SYMBOL vmlinux 0x53d06db4 netdev_get_by_name -EXPORT_SYMBOL vmlinux 0x53d087a5 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x53d09111 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x53d8c4b2 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0x53e975b6 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x53ee91f3 init_special_inode +EXPORT_SYMBOL vmlinux 0x53b0c355 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x53c1fdfe xp_dma_map +EXPORT_SYMBOL vmlinux 0x53d4943d md_register_thread +EXPORT_SYMBOL vmlinux 0x53d93852 ilookup5 EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x540ecfa3 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x5410d266 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x5412c7c7 up EXPORT_SYMBOL vmlinux 0x541e7733 xor_altivec_4 EXPORT_SYMBOL vmlinux 0x5425f60c config_item_put -EXPORT_SYMBOL vmlinux 0x5428b0f0 radix__flush_pmd_tlb_range -EXPORT_SYMBOL vmlinux 0x5435c19c param_set_hexint EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x544089c5 devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x5455c6c4 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x54423940 serio_reconnect +EXPORT_SYMBOL vmlinux 0x544cd82a agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x54579648 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0x547b2196 dma_fence_set_deadline -EXPORT_SYMBOL vmlinux 0x547c3f51 mpage_writepages +EXPORT_SYMBOL vmlinux 0x547cfb03 udp_prot +EXPORT_SYMBOL vmlinux 0x5481522a __bread_gfp EXPORT_SYMBOL vmlinux 0x548bf60a proc_douintvec -EXPORT_SYMBOL vmlinux 0x548f84b3 jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x54906db3 textsearch_unregister EXPORT_SYMBOL vmlinux 0x5490c34e call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x54ae9019 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x54b1766b fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x54952a20 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x5495cb40 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x54a79a10 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54b6bbd9 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0x54b70120 pskb_extract EXPORT_SYMBOL vmlinux 0x54ba4891 crypto_sha3_final -EXPORT_SYMBOL vmlinux 0x54c4fdc7 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0x54c581c9 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x54cbe07b write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x54bc7f34 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x54c22726 d_splice_alias +EXPORT_SYMBOL vmlinux 0x54c3dad3 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x54c5e870 mmc_gpio_set_cd_irq EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54dd21ba tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x54e33648 devm_free_irq EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr -EXPORT_SYMBOL vmlinux 0x54e5e17e tso_build_data EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54f7c421 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x54fd1547 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x54fd8384 vm_insert_page EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5508deae tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x550f75e6 mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x551b43de page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x5522b916 seq_read -EXPORT_SYMBOL vmlinux 0x554633bd uart_resume_port +EXPORT_SYMBOL vmlinux 0x552022ce dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x55482401 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5551e4f2 __sk_receive_skb EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x55620f1f seq_dentry EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user -EXPORT_SYMBOL vmlinux 0x557620d8 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x557eac4f dma_free_attrs +EXPORT_SYMBOL vmlinux 0x556c6a33 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x556de831 iunique +EXPORT_SYMBOL vmlinux 0x556e2dfe jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x55716083 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x5571f3fa i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x557605dc mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x55872dce mod_zone_page_state EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x55b3a9bb skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x55bcff61 tcp_connect -EXPORT_SYMBOL vmlinux 0x55c78a1b clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x55cdf993 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x55d8fbd3 pnv_cxl_alloc_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x55dac367 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x55a6eeff kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x56198508 jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5640e05f input_register_handler +EXPORT_SYMBOL vmlinux 0x5639169e mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x5639c293 jbd2_journal_start EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x565c269e file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x5663cc26 truncate_setsize +EXPORT_SYMBOL vmlinux 0x56477aa1 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x565e10c9 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x56640b61 edac_mc_find EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x5685a720 __d_drop +EXPORT_SYMBOL vmlinux 0x568033bf flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0x568f6ea9 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x56929ee9 skb_checksum +EXPORT_SYMBOL vmlinux 0x56a61d8c netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x56af5414 fs_context_for_submount EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56c97e2f I_BDEV -EXPORT_SYMBOL vmlinux 0x56eed927 machine_id +EXPORT_SYMBOL vmlinux 0x56d30c2e scsi_block_requests +EXPORT_SYMBOL vmlinux 0x56dd9892 file_fdatawait_range EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x56fb6b5b paca_ptrs -EXPORT_SYMBOL vmlinux 0x5703e17c md_finish_reshape -EXPORT_SYMBOL vmlinux 0x570530cf put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0x5707d001 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x57222f31 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x5742ce90 d_rehash +EXPORT_SYMBOL vmlinux 0x5717bbe5 blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x576542a4 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x576567f8 putname +EXPORT_SYMBOL vmlinux 0x575b7064 pcie_capability_clear_and_set_word_locked EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x577bab9a flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x578bf6a8 dev_close +EXPORT_SYMBOL vmlinux 0x5768c352 filp_open +EXPORT_SYMBOL vmlinux 0x576910c2 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x576cb60b __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x57786127 __mmc_claim_host EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57aac62a d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x57b20ba6 generic_fadvise -EXPORT_SYMBOL vmlinux 0x57b26af6 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x57bf61db remove_arg_zero -EXPORT_SYMBOL vmlinux 0x57bfe0eb kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x57c6ed3f kern_path +EXPORT_SYMBOL vmlinux 0x57a73bf5 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x57a7d8a7 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x57b20d93 md_bitmap_unplug_async +EXPORT_SYMBOL vmlinux 0x57c1bf7c __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x57cdf74a blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize -EXPORT_SYMBOL vmlinux 0x57e6d9ba __d_lookup_unhash_wake -EXPORT_SYMBOL vmlinux 0x57e81c59 vga_con +EXPORT_SYMBOL vmlinux 0x57e26ef5 tty_port_tty_set EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x580884cb flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x5818bf7f skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x58126313 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x58312733 inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x5841ad1f __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5845889e simple_rename EXPORT_SYMBOL vmlinux 0x5848b0fc mtree_store -EXPORT_SYMBOL vmlinux 0x5848f145 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x58584c62 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x5860e9a2 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x58617eac km_new_mapping +EXPORT_SYMBOL vmlinux 0x585c196d vme_irq_free +EXPORT_SYMBOL vmlinux 0x5868195f i2c_get_adapter_by_fwnode EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587d59e8 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x587db06f iterate_supers_type EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588df655 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x5891cd73 __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x58a805a1 dquot_resume +EXPORT_SYMBOL vmlinux 0x58a3e1f5 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58b04957 ilookup EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58cc45a5 device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x58d39c8c send_sig -EXPORT_SYMBOL vmlinux 0x58dae47d fb_show_logo +EXPORT_SYMBOL vmlinux 0x58be4976 dm_put_device +EXPORT_SYMBOL vmlinux 0x58d11913 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e920cc mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x58f667a7 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x58fd17f2 param_get_ushort -EXPORT_SYMBOL vmlinux 0x590975a6 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x591318c5 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x591cb4e4 __ps2_command +EXPORT_SYMBOL vmlinux 0x59211831 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x5933eb28 alloc_pages EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x594d368e cdrom_ioctl EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page -EXPORT_SYMBOL vmlinux 0x596439a9 bdi_register +EXPORT_SYMBOL vmlinux 0x5962ee2d netpoll_cleanup EXPORT_SYMBOL vmlinux 0x59757699 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x597e2296 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x597f256e skb_queue_head -EXPORT_SYMBOL vmlinux 0x59859821 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x597b9476 generic_buffers_fsync +EXPORT_SYMBOL vmlinux 0x5981d0f6 kernel_bind EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x598a90e9 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b494af dqget EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59bd3262 page_symlink -EXPORT_SYMBOL vmlinux 0x59ed3c66 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x59f1daf9 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x59f9d449 vme_dma_request -EXPORT_SYMBOL vmlinux 0x59fc0c79 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x59bf6d25 of_property_read_reg +EXPORT_SYMBOL vmlinux 0x59c342f8 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x59c49b7d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x59c785b2 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x59cf775a scsi_remove_host +EXPORT_SYMBOL vmlinux 0x59cff12f sk_wait_data +EXPORT_SYMBOL vmlinux 0x59df9cd2 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x59f478bd set_user_nice +EXPORT_SYMBOL vmlinux 0x59f6a44a radix__flush_tlb_page +EXPORT_SYMBOL vmlinux 0x59fd7398 unix_detach_fds EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore EXPORT_SYMBOL vmlinux 0x5a032030 gtm_put_timer16 -EXPORT_SYMBOL vmlinux 0x5a07b83b dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x5a04d8c5 cfb_imageblit EXPORT_SYMBOL vmlinux 0x5a088923 up_write EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1d12b7 can_nice +EXPORT_SYMBOL vmlinux 0x5a1fd8fe neigh_event_ns +EXPORT_SYMBOL vmlinux 0x5a2189bd rtnl_create_link +EXPORT_SYMBOL vmlinux 0x5a251766 dput EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4b161f pneigh_enqueue EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a54eca2 __inet_hash -EXPORT_SYMBOL vmlinux 0x5a63a77f netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x5a6541d2 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x5a6a1967 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x5a7d31c0 of_device_unregister +EXPORT_SYMBOL vmlinux 0x5a7a624d agp_find_bridge EXPORT_SYMBOL vmlinux 0x5a921311 strncmp EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5ab2b106 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x5ad47295 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x5adc1e4c logfc EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5afcfc03 seq_pad -EXPORT_SYMBOL vmlinux 0x5b3d02f6 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x5b4028eb key_put -EXPORT_SYMBOL vmlinux 0x5b4ccbe9 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x5ae1a138 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x5b2b31ff blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x5b420de4 mdio_device_register +EXPORT_SYMBOL vmlinux 0x5b4dd9e3 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b6dafb5 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x5b6f1390 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x5b7cf7f3 genlmsg_put -EXPORT_SYMBOL vmlinux 0x5b7f21a5 of_translate_address -EXPORT_SYMBOL vmlinux 0x5b936122 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x5b6def72 dev_load EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock -EXPORT_SYMBOL vmlinux 0x5bbef15c jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x5b99af1f tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x5b9d0f4b simple_empty +EXPORT_SYMBOL vmlinux 0x5ba9a15f thread_group_exited +EXPORT_SYMBOL vmlinux 0x5bb51137 skb_tx_error +EXPORT_SYMBOL vmlinux 0x5bb70111 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x5bbad3dd kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x5bc9be35 free_buffer_head EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x5bd10e60 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x5bd036c2 kern_unmount_array EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bf4041a from_kuid -EXPORT_SYMBOL vmlinux 0x5bf7b237 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x5c032f58 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x5c070649 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x5bf3ad61 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x5bf56028 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x5bfc3b2a skb_unlink +EXPORT_SYMBOL vmlinux 0x5c14b362 napi_enable +EXPORT_SYMBOL vmlinux 0x5c152125 param_set_ulong +EXPORT_SYMBOL vmlinux 0x5c1b732c tcp_peek_len +EXPORT_SYMBOL vmlinux 0x5c23ce33 dev_kfree_skb_irq_reason EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c447649 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x5c464b17 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x5c4c33e6 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x5c4f32fb mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x5c5bacbb key_reject_and_link -EXPORT_SYMBOL vmlinux 0x5c745109 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x5c502f01 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x5c544027 phy_device_free +EXPORT_SYMBOL vmlinux 0x5c6be0d3 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x5c79e60b mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x5c805bf8 of_node_name_prefix EXPORT_SYMBOL vmlinux 0x5c905b8a xmon -EXPORT_SYMBOL vmlinux 0x5cc6145b skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x5c956883 done_path_create +EXPORT_SYMBOL vmlinux 0x5c9c4ae3 follow_down +EXPORT_SYMBOL vmlinux 0x5ca0c26f inode_set_bytes +EXPORT_SYMBOL vmlinux 0x5cacc060 tty_name +EXPORT_SYMBOL vmlinux 0x5cd05942 generic_permission EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x5cf188e7 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x5ce999e8 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x5cee3236 __folio_alloc EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5d15afe9 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x5d19f73a jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x5d3fac56 xp_free +EXPORT_SYMBOL vmlinux 0x5d062ed7 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x5d0a2333 copy_splice_read +EXPORT_SYMBOL vmlinux 0x5d0bd3e1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x5d2481dd pcim_iounmap +EXPORT_SYMBOL vmlinux 0x5d3088c2 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5c44ea ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x5dc80215 sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x5ddcf528 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x5de9ce7e __skb_get_hash -EXPORT_SYMBOL vmlinux 0x5df3e336 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x5d5d2292 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x5d668470 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x5d71ea44 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x5d73bc08 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x5d82dac3 setattr_copy +EXPORT_SYMBOL vmlinux 0x5d9a9222 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x5da7a17d uart_register_driver +EXPORT_SYMBOL vmlinux 0x5dad14c7 mpage_writepages +EXPORT_SYMBOL vmlinux 0x5db3f8ec tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x5dbfa96e __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5dea6287 agp_unbind_memory EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x5e0691b1 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x5dfad3ac module_layout +EXPORT_SYMBOL vmlinux 0x5dff402c vma_set_file EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e2d8b1c genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x5e2fc3fc pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x5e30deea skb_orphan_partial EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e66aec2 datagram_poll -EXPORT_SYMBOL vmlinux 0x5e7bb85c __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x5e9058ad in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x5e379b9e arp_tbl +EXPORT_SYMBOL vmlinux 0x5e3a6fbf pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x5e690ce0 blk_rq_init +EXPORT_SYMBOL vmlinux 0x5e7925f8 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5e7c1f83 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5e873dec tcp_seq_start +EXPORT_SYMBOL vmlinux 0x5e8843e7 mdiobus_free +EXPORT_SYMBOL vmlinux 0x5e8c2e64 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x5e8d8875 pci_request_regions EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e99dfca uaccess_flush_key -EXPORT_SYMBOL vmlinux 0x5ec0d24e twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x5ec2beb8 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5ebfcf67 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecdff79 scsi_remove_target EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed3ae54 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x5ed7df1f of_find_property EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eda0a55 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return -EXPORT_SYMBOL vmlinux 0x5ede527a vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x5efaf637 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x5efb145b always_delete_dentry -EXPORT_SYMBOL vmlinux 0x5f015d1b get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x5f01ca96 set_posix_acl +EXPORT_SYMBOL vmlinux 0x5f001c22 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x5f0847e5 tcp_gro_complete EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f147c43 devm_release_resource EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x5f31adfa sock_i_ino -EXPORT_SYMBOL vmlinux 0x5f320bbb tcp_shutdown -EXPORT_SYMBOL vmlinux 0x5f368ca0 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x5f3be0cf of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x5f3a3d20 noop_fsync EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f5d3f5c neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x5f65f80b ata_print_version EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f844aed security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x5f725dad vm_insert_pages +EXPORT_SYMBOL vmlinux 0x5f7cffbe dquot_quota_sync EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base EXPORT_SYMBOL vmlinux 0x5f8a9274 revert_creds EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5f9ce330 __lock_buffer -EXPORT_SYMBOL vmlinux 0x5f9e868e cdrom_open -EXPORT_SYMBOL vmlinux 0x5fa35bd1 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x5fa9ce1b dev_mc_add -EXPORT_SYMBOL vmlinux 0x5fad2fa6 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5f9fd7eb xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find -EXPORT_SYMBOL vmlinux 0x5fb98a71 msi_bitmap_free_hwirqs EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc6dfd9 bio_endio EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact EXPORT_SYMBOL vmlinux 0x5fca16ef security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x5fceda9e phy_get_pause -EXPORT_SYMBOL vmlinux 0x5fd996a1 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x5fde89c0 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x5ff09b49 dev_get_flags -EXPORT_SYMBOL vmlinux 0x60044e45 km_query +EXPORT_SYMBOL vmlinux 0x5fd4014f dquot_scan_active +EXPORT_SYMBOL vmlinux 0x5fe6aa74 of_match_node +EXPORT_SYMBOL vmlinux 0x5ff3d238 blkdev_put EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x6013fe41 page_pool_create +EXPORT_SYMBOL vmlinux 0x600710ff super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x6016531a gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x601a4ebc kill_anon_super +EXPORT_SYMBOL vmlinux 0x6016e082 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x6027bc5e __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x60281163 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60554368 pskb_expand_head EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x606a2dac __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x606ab179 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x6078f7d4 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x605bace0 mount_subtree +EXPORT_SYMBOL vmlinux 0x606a9333 cdev_add +EXPORT_SYMBOL vmlinux 0x607a5c05 kill_fasync +EXPORT_SYMBOL vmlinux 0x607cc102 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x607f9484 blk_get_queue EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609cbdd2 __of_parse_phandle_with_args EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60c0bb67 phy_detach -EXPORT_SYMBOL vmlinux 0x60c6d53a phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x60b4c23d inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x60b7362e vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0x60bad95e bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x60cd1773 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e87ede node_data -EXPORT_SYMBOL vmlinux 0x61058791 finalize_exec -EXPORT_SYMBOL vmlinux 0x610e45d4 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x610058fb scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x610cb762 i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x6118dc26 start_thread -EXPORT_SYMBOL vmlinux 0x611c8dda genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x61201418 rproc_del EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init -EXPORT_SYMBOL vmlinux 0x612859b2 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x614b2e34 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x614fc4d5 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x614cc034 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x615896e2 sk_reset_timer EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x6162f460 to_ndd +EXPORT_SYMBOL vmlinux 0x61882734 security_inet_conn_established EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619b5b67 dev_get_flags EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61b0d82b phy_aneg_done -EXPORT_SYMBOL vmlinux 0x61b1cbaf blkdev_put -EXPORT_SYMBOL vmlinux 0x61b37f5e mdio_device_remove +EXPORT_SYMBOL vmlinux 0x61a22b2b netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x61a34648 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x61b345db blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x61b45cda dev_set_alias EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61bc0e15 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x61bfe7c7 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x61c50d1d dev_set_threaded +EXPORT_SYMBOL vmlinux 0x61c7a083 crypto_sha512_update EXPORT_SYMBOL vmlinux 0x61cb246f _raw_write_lock -EXPORT_SYMBOL vmlinux 0x61d9388c memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x61daa07b set_create_files_as EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x62139e71 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x61ece2e0 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x61f61c99 set_nlink +EXPORT_SYMBOL vmlinux 0x62148a48 of_node_to_nid EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x62163c5e dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x6217a1ac task_work_add +EXPORT_SYMBOL vmlinux 0x621a1ec2 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x62267eb1 __free_pages EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6237a77a submit_bio +EXPORT_SYMBOL vmlinux 0x62309f92 __alloc_pages EXPORT_SYMBOL vmlinux 0x623c511c call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x62422461 dst_discard_out -EXPORT_SYMBOL vmlinux 0x624e957e key_revoke -EXPORT_SYMBOL vmlinux 0x62587c2e inet6_release -EXPORT_SYMBOL vmlinux 0x626442d8 dcb_getapp +EXPORT_SYMBOL vmlinux 0x624a8a75 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x62590ac0 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x626675e5 platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6275e67d __netif_rx +EXPORT_SYMBOL vmlinux 0x62766d24 km_state_expired EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range -EXPORT_SYMBOL vmlinux 0x627dd2c6 blk_rq_init +EXPORT_SYMBOL vmlinux 0x62789bba generic_fadvise EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62a6dd54 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x62a80108 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x62a9d908 phy_driver_register -EXPORT_SYMBOL vmlinux 0x62b5f5d8 console_start -EXPORT_SYMBOL vmlinux 0x62b96273 dst_init -EXPORT_SYMBOL vmlinux 0x62ca509b devm_nvmem_cell_put -EXPORT_SYMBOL vmlinux 0x62d1e166 mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x62dabc80 filemap_check_errors -EXPORT_SYMBOL vmlinux 0x6313da9d scsi_print_command +EXPORT_SYMBOL vmlinux 0x628dfb17 from_kgid +EXPORT_SYMBOL vmlinux 0x62a7c3c3 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x62d58d21 vfs_setpos +EXPORT_SYMBOL vmlinux 0x62e62c60 read_cache_page +EXPORT_SYMBOL vmlinux 0x62e914e3 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x62f20dbd pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x62fa3c32 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x6309908b ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x631bb6fa page_pool_destroy -EXPORT_SYMBOL vmlinux 0x63341a25 input_grab_device -EXPORT_SYMBOL vmlinux 0x634f19a9 iov_iter_get_pages_alloc2 -EXPORT_SYMBOL vmlinux 0x6375df65 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x6377277f rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x639237b6 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x639dbda2 vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0x63190e48 inet_shutdown +EXPORT_SYMBOL vmlinux 0x635769e4 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x638fb194 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7421d ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63bbb030 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x63cd1992 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x63cd805e __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x63d9d3df of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x63e2e4f4 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x63ad492e dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x63ae8663 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x63b353e6 blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ec7277 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x63ff951d blk_queue_logical_block_size EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x642271b4 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x644484f9 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x6414df59 pci_select_bars +EXPORT_SYMBOL vmlinux 0x643564b6 neigh_app_ns EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x6456deee proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x6456b149 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x646486b5 pcim_iomap +EXPORT_SYMBOL vmlinux 0x647fa527 nf_log_unregister EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract +EXPORT_SYMBOL vmlinux 0x648816bc __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x649dca5d ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x649fed07 netif_carrier_off EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64aa92bf refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64bd03d7 find_vma_intersection -EXPORT_SYMBOL vmlinux 0x64c05312 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x64c4653c pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x64ce251c pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x64d22642 pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x64d4baf4 inet_sk_get_local_port_range -EXPORT_SYMBOL vmlinux 0x64e75240 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x64ee5f59 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x64f5b7ae netif_rx EXPORT_SYMBOL vmlinux 0x64fdb0a6 mtree_erase -EXPORT_SYMBOL vmlinux 0x650725e0 unregister_console -EXPORT_SYMBOL vmlinux 0x650aac8e dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x65123706 dquot_transfer +EXPORT_SYMBOL vmlinux 0x65094d3b passthru_features_check EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x6519b081 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651f4588 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x6522a329 ps2_begin_command EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652de31c no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x653441f3 netlink_ack +EXPORT_SYMBOL vmlinux 0x653af589 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6545707d skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x65513c4c __mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0x656a4325 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x65519d64 inet_bind EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x6585c1a1 cad_pid EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658e68e5 vme_register_bridge EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a8e6a4 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x65beb860 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x65c1da5b md_handle_request +EXPORT_SYMBOL vmlinux 0x65a554d7 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x65ad3c25 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x65c6d74c blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65dda3a0 phy_start EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65ec0d55 udp_poll -EXPORT_SYMBOL vmlinux 0x66077d64 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x66143f12 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x66153bc4 super_setup_bdi -EXPORT_SYMBOL vmlinux 0x6615c14c get_agp_version -EXPORT_SYMBOL vmlinux 0x66165401 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x661cc966 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x66295ceb skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0x6629b4f8 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x663c0440 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x65e350fe tty_register_driver +EXPORT_SYMBOL vmlinux 0x65fd40dc vfs_ioctl +EXPORT_SYMBOL vmlinux 0x6611068a radix__local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x66229eb2 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x663f649c inet_ioctl EXPORT_SYMBOL vmlinux 0x66453ad9 nla_reserve EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x668786b1 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x66750a1b get_unmapped_area +EXPORT_SYMBOL vmlinux 0x66828b0e inet_frags_init +EXPORT_SYMBOL vmlinux 0x66893a77 sock_bindtoindex EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x66a2efeb mmc_remove_host -EXPORT_SYMBOL vmlinux 0x66a62805 xfrm_init_state EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66b9c258 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x66d73257 get_vm_area -EXPORT_SYMBOL vmlinux 0x66e5176e register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x66b8a278 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x66eb8e6f twl6040_reg_write EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit -EXPORT_SYMBOL vmlinux 0x66fe4052 __breadahead -EXPORT_SYMBOL vmlinux 0x671841b5 agp_generic_free_by_type -EXPORT_SYMBOL vmlinux 0x672a2b11 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x672b91f2 tls_client_hello_x509 -EXPORT_SYMBOL vmlinux 0x6736f6f0 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x673a63b5 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x66f3d2aa serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x670116c6 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x671397b1 of_device_unregister +EXPORT_SYMBOL vmlinux 0x6714e56e rproc_put +EXPORT_SYMBOL vmlinux 0x6731d346 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6741f460 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x6748077c lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x67484c2e dma_resv_iter_first_unlocked EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x6764a1d4 eth_header EXPORT_SYMBOL vmlinux 0x676eef99 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x677787a7 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x6788d585 register_filesystem EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x679d4fa8 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x6795980d netpoll_print_options EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67ca07a1 configfs_register_group -EXPORT_SYMBOL vmlinux 0x67cdf2cc kthread_stop -EXPORT_SYMBOL vmlinux 0x67d5707b setattr_copy -EXPORT_SYMBOL vmlinux 0x67dc899c vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x67e40c1d input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x67edbd22 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x67f349e5 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x67f3cd5f flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x67bede4c vmap +EXPORT_SYMBOL vmlinux 0x67c6e4c4 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x67dcba03 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x67dea674 genphy_read_status +EXPORT_SYMBOL vmlinux 0x67e1e1d0 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x67e79d7f pci_save_state +EXPORT_SYMBOL vmlinux 0x67f54e48 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x67fbf690 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0x68023e8f jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x68228e0c of_get_next_available_child -EXPORT_SYMBOL vmlinux 0x68311ca6 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x684018aa truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x68419dc4 inode_set_flags +EXPORT_SYMBOL vmlinux 0x67ffeb53 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x6833c2ad eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x6848a988 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x68524a6b tcf_exts_dump EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace -EXPORT_SYMBOL vmlinux 0x68568c6e audit_log_start -EXPORT_SYMBOL vmlinux 0x6866bbe6 kernel_getsockname EXPORT_SYMBOL vmlinux 0x686818bb down_read +EXPORT_SYMBOL vmlinux 0x686da32b d_set_d_op +EXPORT_SYMBOL vmlinux 0x6874704c sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x6879fe21 scsi_done_direct EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687fe233 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x68929740 inode_insert5 +EXPORT_SYMBOL vmlinux 0x689a9aa8 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x68a30ffe shared_processor -EXPORT_SYMBOL vmlinux 0x68accb9a inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x68b3bdbb __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x68b4ed1e param_ops_ullong -EXPORT_SYMBOL vmlinux 0x68b7e6fb get_unmapped_area -EXPORT_SYMBOL vmlinux 0x68cd76eb dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x68e192f5 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x68f4a987 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x68a91072 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x68e90509 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x68ee3d5c tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size +EXPORT_SYMBOL vmlinux 0x691f7eba netpoll_send_udp EXPORT_SYMBOL vmlinux 0x69233487 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x692840a4 cdev_set_parent -EXPORT_SYMBOL vmlinux 0x692a915f tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x692494ad from_kgid_munged +EXPORT_SYMBOL vmlinux 0x692a281c jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x693435bf dentry_create +EXPORT_SYMBOL vmlinux 0x6939e240 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x69456b75 param_set_long EXPORT_SYMBOL vmlinux 0x694b61ec wait_for_completion_state -EXPORT_SYMBOL vmlinux 0x694fcbb3 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x695bdb05 srp_reconnect_rport EXPORT_SYMBOL vmlinux 0x696071b3 mtree_load -EXPORT_SYMBOL vmlinux 0x696441dc qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x69616068 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x697c9cfb udplite_prot EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69845d85 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x6986a603 folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x698aa670 folio_migrate_flags -EXPORT_SYMBOL vmlinux 0x69919da4 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x69a71182 inet_listen -EXPORT_SYMBOL vmlinux 0x69aa1a49 __devm_request_region -EXPORT_SYMBOL vmlinux 0x69b6fd7f xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x69c258e5 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x69c91e9b xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x69ccbc88 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x698177c9 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x69873224 retire_super +EXPORT_SYMBOL vmlinux 0x699df861 tty_hangup +EXPORT_SYMBOL vmlinux 0x69a19640 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x69b47b26 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x69c8b3a2 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x69ceb258 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x69d88aa7 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e6da70 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0x69fccf13 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x69fe7b90 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x69f1b677 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x69f52598 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x69fa584e get_tree_single_reconf EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a1111b2 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x6a15bbc6 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x6a21eb96 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x6a3104e8 serio_open -EXPORT_SYMBOL vmlinux 0x6a45f82a of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x6a549b26 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask EXPORT_SYMBOL vmlinux 0x6a67b8ea unregister_nls EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a7becd8 rproc_set_firmware EXPORT_SYMBOL vmlinux 0x6a82d8f8 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x6aa224ce iov_iter_discard -EXPORT_SYMBOL vmlinux 0x6aad4600 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x6ab4df2a netlink_set_err -EXPORT_SYMBOL vmlinux 0x6ab53e68 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x6abec463 iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x6ac19cdf skb_find_text -EXPORT_SYMBOL vmlinux 0x6acc2de3 tcf_register_action -EXPORT_SYMBOL vmlinux 0x6acf3aa3 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x6ad9f727 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x6a8f0d2d genphy_loopback +EXPORT_SYMBOL vmlinux 0x6aa80264 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x6abdae82 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x6ac43092 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x6ac4d33e __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x6ad32d30 register_cdrom +EXPORT_SYMBOL vmlinux 0x6ad74d65 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6adf3a6c serio_interrupt EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6aef7a57 sock_rfree -EXPORT_SYMBOL vmlinux 0x6b01576a inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x6af128d4 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x6af54ba7 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x6aff7d57 rproc_del EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b26a5fe jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3ba97a of_device_is_available -EXPORT_SYMBOL vmlinux 0x6b3cb8f7 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x6b4159ef ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b572aa9 iterate_dir EXPORT_SYMBOL vmlinux 0x6b5b706f security_cred_getsecid -EXPORT_SYMBOL vmlinux 0x6b5ebfa6 __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x6b6c9f37 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x6b6f3c04 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x6b7d8f70 of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x6b8414e0 netpoll_setup +EXPORT_SYMBOL vmlinux 0x6b694536 inet6_protos +EXPORT_SYMBOL vmlinux 0x6b6e525f xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x6b8196b5 mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b86f2d7 param_ops_bool EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6ba0303c to_nd_btt -EXPORT_SYMBOL vmlinux 0x6ba3cd89 netdev_features_change +EXPORT_SYMBOL vmlinux 0x6b8bfb99 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x6b920f57 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x6b9c2082 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x6baa739c kill_litter_super +EXPORT_SYMBOL vmlinux 0x6bba4742 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6bc2cc34 mmc_alloc_host EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bd292d3 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x6bc6f2a6 dma_unmap_resource EXPORT_SYMBOL vmlinux 0x6bdeab7f down_read_interruptible -EXPORT_SYMBOL vmlinux 0x6be961f1 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x6bdec524 block_write_end +EXPORT_SYMBOL vmlinux 0x6becadc1 follow_down_one +EXPORT_SYMBOL vmlinux 0x6bf40b26 napi_gro_receive EXPORT_SYMBOL vmlinux 0x6bf49262 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x6c018758 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x6c07e135 dma_fence_free -EXPORT_SYMBOL vmlinux 0x6c080a1c devm_mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x6c0c3a6e register_quota_format -EXPORT_SYMBOL vmlinux 0x6c148ac3 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x6c450fd0 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x6c4d3adc __mdiobus_c45_write -EXPORT_SYMBOL vmlinux 0x6c56b6f2 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x6c613f4e vfs_create_mount +EXPORT_SYMBOL vmlinux 0x6c09a611 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x6c2f87db uart_match_port +EXPORT_SYMBOL vmlinux 0x6c396584 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x6c3ef942 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x6c599dd4 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x6c5b2fd9 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x6c60f9d4 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c62eddf iov_iter_npages -EXPORT_SYMBOL vmlinux 0x6c680174 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x6c82790f blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x6c88fc77 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x6c6cdea2 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x6c7b4918 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x6c882a1b tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x6c95b69f input_free_device +EXPORT_SYMBOL vmlinux 0x6c9bcc7d xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x6ca8c676 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cb50e09 input_open_device -EXPORT_SYMBOL vmlinux 0x6cb76b20 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x6cbc62c9 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x6cb4abd2 register_md_cluster_operations EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cc92ee1 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x6ce5deff eth_header_parse -EXPORT_SYMBOL vmlinux 0x6ce8539d __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x6cc75cdf flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf44a61 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x6d0371a8 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x6d0f9a6e sock_wfree -EXPORT_SYMBOL vmlinux 0x6d18e75b phy_device_remove -EXPORT_SYMBOL vmlinux 0x6d1eb245 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x6cf5a452 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x6d082b58 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x6d0934a7 mmc_command_done EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d509fff unlock_new_inode EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes -EXPORT_SYMBOL vmlinux 0x6d688376 skb_put +EXPORT_SYMBOL vmlinux 0x6d5a5338 tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0x6d5d21f1 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x6d687f25 tls_server_hello_x509 EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d802f27 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x6d8166b8 mdio_find_bus -EXPORT_SYMBOL vmlinux 0x6d851819 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x6d8fd479 dev_add_offload -EXPORT_SYMBOL vmlinux 0x6da2c43c param_ops_int -EXPORT_SYMBOL vmlinux 0x6da66bd4 phy_connect -EXPORT_SYMBOL vmlinux 0x6db290c8 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x6db4b595 block_truncate_page +EXPORT_SYMBOL vmlinux 0x6d7c898d pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x6d856926 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x6d88ba09 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x6da374e2 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x6dab9dbd nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x6dafd26b noop_qdisc EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dc50263 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x6dc5c661 eth_header_cache +EXPORT_SYMBOL vmlinux 0x6dca88b8 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6dd18a03 i2c_del_driver -EXPORT_SYMBOL vmlinux 0x6ddd3d7e key_alloc -EXPORT_SYMBOL vmlinux 0x6de0638e generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x6de3a379 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x6deace37 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x6dd888dd vio_unregister_device +EXPORT_SYMBOL vmlinux 0x6de52784 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x6dee3b71 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x6dee6752 sys_copyarea EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df40c26 pnv_cxl_release_hwirqs -EXPORT_SYMBOL vmlinux 0x6dfe5f3b skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x6e155250 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x6e1563d5 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x6e2a32cb ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x6e2c95c6 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x6e34b1b4 i2c_verify_client -EXPORT_SYMBOL vmlinux 0x6e4c6fc2 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x6df1ac69 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x6df4b8f1 thaw_super +EXPORT_SYMBOL vmlinux 0x6df5edd0 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x6e09f4ac tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x6e1f622e ___pskb_trim +EXPORT_SYMBOL vmlinux 0x6e347733 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x6e3fff6b napi_disable +EXPORT_SYMBOL vmlinux 0x6e414789 dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e5ccdb9 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x6e716ebe filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x6e6b5a6f dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e8036c0 netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0x6e865a97 xp_can_alloc -EXPORT_SYMBOL vmlinux 0x6e8b5292 flow_rule_match_l2tpv3 -EXPORT_SYMBOL vmlinux 0x6e8e3f24 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x6e8e6d55 file_modified +EXPORT_SYMBOL vmlinux 0x6e9a36f3 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr -EXPORT_SYMBOL vmlinux 0x6e9c0384 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x6e9c2fbb vfs_statfs EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea8544e of_find_node_opts_by_path EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ed64ceb adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x6ee4d980 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x6eae25cb d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x6ed8067f dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6f08761c sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x6ef78ca0 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit -EXPORT_SYMBOL vmlinux 0x6f0c19db gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each +EXPORT_SYMBOL vmlinux 0x6f129371 input_register_device EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f22d27e skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x6f295ee2 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x6f18214d __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x6f1ced5e mmc_release_host +EXPORT_SYMBOL vmlinux 0x6f2f721f tcp_filter EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r -EXPORT_SYMBOL vmlinux 0x6f4afbe9 inet_ioctl -EXPORT_SYMBOL vmlinux 0x6f5385d8 arch_free_page -EXPORT_SYMBOL vmlinux 0x6f5b2692 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x6f652358 sock_set_priority EXPORT_SYMBOL vmlinux 0x6f6bd3f2 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x6f77324a decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x6f700028 phy_loopback +EXPORT_SYMBOL vmlinux 0x6f70cb91 max8925_bulk_read EXPORT_SYMBOL vmlinux 0x6f7793a5 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x6f788665 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x6f7f99d0 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x6f85e2c3 ethtool_aggregate_rmon_stats +EXPORT_SYMBOL vmlinux 0x6f9b39e4 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x6f9f8472 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x6fa161d4 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x6fa65d28 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fe3667e security_d_instantiate +EXPORT_SYMBOL vmlinux 0x6fd0d028 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x6fd99bbe __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x6ff38806 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x6ff552e9 vme_master_request EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 EXPORT_SYMBOL vmlinux 0x700c6c17 key_create -EXPORT_SYMBOL vmlinux 0x700ea8b1 scsi_host_get -EXPORT_SYMBOL vmlinux 0x70136f08 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x7019deaf blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x701b43c0 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x702d0b5f ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x702dbe5c _dev_printk -EXPORT_SYMBOL vmlinux 0x703d3607 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x702e1e8e xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x704115b3 qe_usb_clock_set EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x70579f9e sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x705cf3d9 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x705ef9eb skb_trim EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x706a72dc unregister_filesystem -EXPORT_SYMBOL vmlinux 0x706baf03 inet6_getname -EXPORT_SYMBOL vmlinux 0x7074ef0f mpage_read_folio -EXPORT_SYMBOL vmlinux 0x707570b2 handshake_req_alloc -EXPORT_SYMBOL vmlinux 0x70876c69 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x7095ad2e copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x70a08ee9 param_set_byte -EXPORT_SYMBOL vmlinux 0x70a200e0 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0x70a6a651 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x70735c15 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x708553ba tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x7092d08f is_subdir +EXPORT_SYMBOL vmlinux 0x70a225a4 debugfs_create_automount EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x70ad27c8 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x70b86992 thaw_super -EXPORT_SYMBOL vmlinux 0x70df7f2a tcp_prot -EXPORT_SYMBOL vmlinux 0x70f15c58 pid_task +EXPORT_SYMBOL vmlinux 0x70ae84ee sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x70b2c5a4 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x70da66ee ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x70e1828b folio_wait_bit +EXPORT_SYMBOL vmlinux 0x70e7e8d2 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x70f21110 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x7108e886 key_move EXPORT_SYMBOL vmlinux 0x710929e9 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x710b0dd4 simple_setattr -EXPORT_SYMBOL vmlinux 0x71146537 phy_read_mmd -EXPORT_SYMBOL vmlinux 0x711cc598 zero_fill_bio EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x714c556e tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x7133e3c6 giveup_all +EXPORT_SYMBOL vmlinux 0x713f2669 ppp_dev_name EXPORT_SYMBOL vmlinux 0x714e4835 set_security_override -EXPORT_SYMBOL vmlinux 0x71559d1b agp_generic_mask_memory -EXPORT_SYMBOL vmlinux 0x7156e252 ip_route_me_harder EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715ecd0e ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717a0fb8 pci_match_id EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x71971050 skb_condense +EXPORT_SYMBOL vmlinux 0x71930011 finish_swait +EXPORT_SYMBOL vmlinux 0x71994fb4 sk_stream_error +EXPORT_SYMBOL vmlinux 0x719d115e pipe_unlock EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71a89e29 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x71b013ef seq_release_private EXPORT_SYMBOL vmlinux 0x71ba56a5 textsearch_prepare EXPORT_SYMBOL vmlinux 0x71bcd5e0 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x71d9d73a set_anon_super -EXPORT_SYMBOL vmlinux 0x71e2ffe5 lookup_one -EXPORT_SYMBOL vmlinux 0x71e5cca5 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x71c480c7 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x71c7c9d5 vfs_rename +EXPORT_SYMBOL vmlinux 0x71cec0ef tty_do_resize +EXPORT_SYMBOL vmlinux 0x71d274ab _dev_printk EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev EXPORT_SYMBOL vmlinux 0x72159768 mtree_alloc_rrange -EXPORT_SYMBOL vmlinux 0x72165be1 blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0x7253c1e0 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x7259e615 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x725a8cb1 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x725cc843 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x72604f9a dcb_setapp EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush -EXPORT_SYMBOL vmlinux 0x727fe652 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x72904b9c napi_complete_done -EXPORT_SYMBOL vmlinux 0x7290c800 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x72744b1d agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x7285946e console_start EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72a6f3a9 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x72ad8b71 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72be6d94 crypto_sha512_finup EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 -EXPORT_SYMBOL vmlinux 0x72d5eb62 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x72da6d9e vfs_iter_write +EXPORT_SYMBOL vmlinux 0x72e4ee15 device_get_ethdev_address EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f64f2e discard_new_inode -EXPORT_SYMBOL vmlinux 0x73004da6 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x72fd9f05 ip6_xmit +EXPORT_SYMBOL vmlinux 0x730a9f04 make_bad_inode +EXPORT_SYMBOL vmlinux 0x730def1e pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x730e6d10 dquot_commit +EXPORT_SYMBOL vmlinux 0x730fbe19 proc_create_seq_private EXPORT_SYMBOL vmlinux 0x73109446 down_interruptible EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x73173fdf inet_add_protocol -EXPORT_SYMBOL vmlinux 0x731a5713 bio_init +EXPORT_SYMBOL vmlinux 0x73186409 devfreq_get_freq_range EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base -EXPORT_SYMBOL vmlinux 0x731cc57e jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x732752a5 scsi_done +EXPORT_SYMBOL vmlinux 0x731ccae7 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x7327be65 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7335806c __serio_register_port -EXPORT_SYMBOL vmlinux 0x7343fab0 kill_pid -EXPORT_SYMBOL vmlinux 0x7344a359 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x734690aa xfrm_input -EXPORT_SYMBOL vmlinux 0x737e96fb proto_unregister +EXPORT_SYMBOL vmlinux 0x73585a08 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x735ca499 get_fs_type +EXPORT_SYMBOL vmlinux 0x7364e81b _dev_emerg +EXPORT_SYMBOL vmlinux 0x736590c4 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x73682990 agp_create_memory +EXPORT_SYMBOL vmlinux 0x737627b3 inet6_getname EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x7396e774 mmc_retune_pause EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73c28c2b inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x73c33682 agp_bind_memory -EXPORT_SYMBOL vmlinux 0x73c5f288 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x73b00099 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0x73bb04d2 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x73c7f404 security_binder_transfer_binder -EXPORT_SYMBOL vmlinux 0x7401fba0 udp_read_skb EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace -EXPORT_SYMBOL vmlinux 0x7411550f passthru_features_check EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413a7bf scsi_target_resume +EXPORT_SYMBOL vmlinux 0x741b0770 rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x741c0a84 mtree_destroy +EXPORT_SYMBOL vmlinux 0x741db5ef create_empty_buffers EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x7433f106 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x74349690 dqput +EXPORT_SYMBOL vmlinux 0x742cf905 tty_port_open EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x743f6e54 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x744d6585 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x744e8040 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7472d5fd bio_alloc_clone -EXPORT_SYMBOL vmlinux 0x7475e7dd of_node_put -EXPORT_SYMBOL vmlinux 0x7481eb3c uart_register_driver +EXPORT_SYMBOL vmlinux 0x74791d07 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x747a1327 tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x7485621a dquot_load_quota_sb -EXPORT_SYMBOL vmlinux 0x7486c4b2 dev_mc_unsync EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x74884a88 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x748c4c41 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x74b1dfc3 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c594dc dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x74d1f82d blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x74c3b603 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x74d46beb netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x74e3aca7 dquot_get_state EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74ebfb89 sock_no_connect +EXPORT_SYMBOL vmlinux 0x74eceaae cdrom_ioctl EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x750b6462 sock_no_linger -EXPORT_SYMBOL vmlinux 0x751c7294 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x75229bd6 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x75362fa7 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x75380caa __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x750b91a1 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x75207686 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x752f8a0e __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x752fe442 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x7538b132 agp_off -EXPORT_SYMBOL vmlinux 0x754bae7a tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x754d3e97 mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x75555ae2 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x755aac4b dev_get_stats +EXPORT_SYMBOL vmlinux 0x7548f87a __check_sticky EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x75684a10 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x7568bb3d tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x7584b2c4 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0x75998ef5 inet_add_offload -EXPORT_SYMBOL vmlinux 0x75a25ca9 seq_bprintf +EXPORT_SYMBOL vmlinux 0x756f5ac9 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x75862d14 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7599140c single_open +EXPORT_SYMBOL vmlinux 0x75a0f9f3 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c00a2e dev_activate -EXPORT_SYMBOL vmlinux 0x75c263cb blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x75c096dd nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x75c66720 touch_buffer EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d118bd scsi_device_resume +EXPORT_SYMBOL vmlinux 0x75d26eb6 param_get_long EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75f79a1e security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x75fe40b0 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x75dbb974 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x75eb8bd5 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x75f6247c configfs_register_group +EXPORT_SYMBOL vmlinux 0x75fbcc44 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x760501d5 dentry_open EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76102fd4 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x761566b3 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x761e00db __netif_schedule +EXPORT_SYMBOL vmlinux 0x761b2d09 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x761d997a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x762267f7 pci_scan_bus EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763a81ea module_put +EXPORT_SYMBOL vmlinux 0x76385005 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x76399b10 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x764196e8 xfrm_state_free EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x764db133 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x765118a4 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x76591445 handshake_req_submit +EXPORT_SYMBOL vmlinux 0x765de39a icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x76615448 dst_release -EXPORT_SYMBOL vmlinux 0x7661d048 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0x7665abdf __fs_parse EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76702146 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x767e128d netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7672cadf setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x76886d12 input_inject_event -EXPORT_SYMBOL vmlinux 0x7693955b create_empty_buffers +EXPORT_SYMBOL vmlinux 0x768af2f8 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x76958633 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ae4ecb __find_get_block -EXPORT_SYMBOL vmlinux 0x76c8afc1 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x76d00b85 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x76b93112 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x76bebcbf blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76dd0810 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0x76de8300 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x76e5ecc6 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x76f3fde0 vm_map_pages -EXPORT_SYMBOL vmlinux 0x76f5cb9a blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x771ea1f6 import_iovec EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write -EXPORT_SYMBOL vmlinux 0x772a4e30 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x77334830 set_user_nice -EXPORT_SYMBOL vmlinux 0x7733a828 path_get +EXPORT_SYMBOL vmlinux 0x7728c7bb inet6_bind +EXPORT_SYMBOL vmlinux 0x772fe57f __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x773240ea md_integrity_register EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773d6299 tcp_connect +EXPORT_SYMBOL vmlinux 0x773e3043 proc_symlink EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x774a5daa __skb_checksum +EXPORT_SYMBOL vmlinux 0x776a4156 mach_pseries EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 EXPORT_SYMBOL vmlinux 0x77710809 regset_get -EXPORT_SYMBOL vmlinux 0x777ebc01 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x77b9b536 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x7779b565 block_truncate_page +EXPORT_SYMBOL vmlinux 0x77934543 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x77965ebc pci_map_rom EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77e1a6da tcp_seq_start +EXPORT_SYMBOL vmlinux 0x77c1ebf3 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x77c267a9 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x77e75ab9 __phy_resume EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77eb8ec3 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x77f5df44 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x77fe74cc try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x77f4d0d3 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780c7d1e netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x78152b26 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x7815eba1 vc_resize -EXPORT_SYMBOL vmlinux 0x7821c783 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x78280b7c netif_napi_add_weight -EXPORT_SYMBOL vmlinux 0x7832fbc9 netif_rx +EXPORT_SYMBOL vmlinux 0x780c0fe9 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x7828e873 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x782d868a generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x7837d42f mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x785a25c3 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x786406c0 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x786c4112 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x786cf247 find_vma -EXPORT_SYMBOL vmlinux 0x787329c1 mmc_get_card +EXPORT_SYMBOL vmlinux 0x7854196b udp_seq_start +EXPORT_SYMBOL vmlinux 0x78619a60 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x7881e6e5 bio_integrity_prep EXPORT_SYMBOL vmlinux 0x78851d2f _outsb -EXPORT_SYMBOL vmlinux 0x788c455f serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x788daaa0 d_exact_alias +EXPORT_SYMBOL vmlinux 0x78993b9d mdio_device_create +EXPORT_SYMBOL vmlinux 0x78997c59 vfs_create_mount EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a76506 inet_del_protocol EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78c2b307 pci_iomap -EXPORT_SYMBOL vmlinux 0x78d4be63 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x78d61927 would_dump -EXPORT_SYMBOL vmlinux 0x78de8fc8 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x78ba1dfd devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x78db0837 of_get_ibm_chip_id EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x79035b01 key_validate +EXPORT_SYMBOL vmlinux 0x78f10b5f fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x78f14b9a neigh_direct_output +EXPORT_SYMBOL vmlinux 0x790b1151 path_has_submounts EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x791f7af1 blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x793e0403 mdiobus_c45_write_nested -EXPORT_SYMBOL vmlinux 0x795046bf simple_link -EXPORT_SYMBOL vmlinux 0x795e9371 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x79833e3c __seq_open_private +EXPORT_SYMBOL vmlinux 0x79265f02 dquot_destroy +EXPORT_SYMBOL vmlinux 0x79269068 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x7948104a qdisc_reset +EXPORT_SYMBOL vmlinux 0x796c7123 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x79735e93 bdi_register +EXPORT_SYMBOL vmlinux 0x79741397 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x79792f72 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79912f1c tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x79920146 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x7997dfa8 simple_getattr -EXPORT_SYMBOL vmlinux 0x799a4402 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x79a17797 may_umount +EXPORT_SYMBOL vmlinux 0x79989d1a file_path EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a9192e pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x79a93489 dev_open -EXPORT_SYMBOL vmlinux 0x79b0e1bd qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x79a47258 audit_log +EXPORT_SYMBOL vmlinux 0x79d3d8c8 param_set_bool EXPORT_SYMBOL vmlinux 0x79d6e540 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x79f04c13 vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x79fca3f5 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x7a09fb9f netlink_net_capable -EXPORT_SYMBOL vmlinux 0x7a155fc0 cont_write_begin +EXPORT_SYMBOL vmlinux 0x79db5dc4 phy_attach +EXPORT_SYMBOL vmlinux 0x79e6ff33 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x7a021572 flush_signals +EXPORT_SYMBOL vmlinux 0x7a061809 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x7a07bcc4 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2cdd88 _dev_warn +EXPORT_SYMBOL vmlinux 0x7a1df401 of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0x7a2d6c97 __debugger_ipi -EXPORT_SYMBOL vmlinux 0x7a2edac1 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a3f2618 set_disk_ro -EXPORT_SYMBOL vmlinux 0x7a451cf3 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x7a3eb89b ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x7a44e38d kernel_write EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a57d2a9 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x7a6a829e dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x7a674ba3 make_kprojid +EXPORT_SYMBOL vmlinux 0x7a67c0e4 lock_sock_nested EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg EXPORT_SYMBOL vmlinux 0x7a73160d neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x7a7560b1 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x7a76a11a arp_xmit +EXPORT_SYMBOL vmlinux 0x7a782115 blk_rq_map_user_io EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node -EXPORT_SYMBOL vmlinux 0x7a813f53 touch_buffer -EXPORT_SYMBOL vmlinux 0x7a873aea uart_add_one_port +EXPORT_SYMBOL vmlinux 0x7a91ff6c rfkill_alloc EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7a9a20a0 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x7aa106fa dev_addr_mod EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa57af4 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x7ab200ed rproc_report_crash EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns -EXPORT_SYMBOL vmlinux 0x7aba1c67 iterate_dir EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7ac1f65a devfreq_add_device EXPORT_SYMBOL vmlinux 0x7aca8b9f klp_sched_try_switch_key EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7adb49bd skb_unlink +EXPORT_SYMBOL vmlinux 0x7ad6273d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x7adaf6c2 ppp_channel_index EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae482f5 phy_start_cable_test EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7b01387c component_match_add_release -EXPORT_SYMBOL vmlinux 0x7b273a17 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x7b185d04 inet_frag_kill EXPORT_SYMBOL vmlinux 0x7b2f0703 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b3a9f03 inode_init_once -EXPORT_SYMBOL vmlinux 0x7b481bce __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x7b46dab3 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x7b4be62b stream_open EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update EXPORT_SYMBOL vmlinux 0x7b5f7185 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x7b65fb29 param_set_hexint +EXPORT_SYMBOL vmlinux 0x7b7e27d9 devm_request_resource +EXPORT_SYMBOL vmlinux 0x7b7ea76d pci_assign_resource EXPORT_SYMBOL vmlinux 0x7b8d4c3c abort_creds -EXPORT_SYMBOL vmlinux 0x7ba462ed netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x7b941b40 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0x7ba813c5 __wake_up -EXPORT_SYMBOL vmlinux 0x7baee3fe flush_all_to_thread +EXPORT_SYMBOL vmlinux 0x7bbba0d5 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbef37b kill_litter_super -EXPORT_SYMBOL vmlinux 0x7bc60a60 dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x7bcab204 iget_locked EXPORT_SYMBOL vmlinux 0x7bcde7bb cur_cpu_spec -EXPORT_SYMBOL vmlinux 0x7bd3cf40 __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x7be75ae7 console_stop -EXPORT_SYMBOL vmlinux 0x7beb18d7 param_set_long -EXPORT_SYMBOL vmlinux 0x7bf09507 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x7bfcdde1 __folio_put -EXPORT_SYMBOL vmlinux 0x7c0675ac security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x7c09d49b udp_gro_receive EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c243091 tso_start -EXPORT_SYMBOL vmlinux 0x7c3354d1 folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0x7c33e2a6 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x7c1f4920 vme_bus_type +EXPORT_SYMBOL vmlinux 0x7c3c8614 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7c405ceb key_payload_reserve +EXPORT_SYMBOL vmlinux 0x7c42be09 phy_write_mmd EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5f1d7f tcp_check_req +EXPORT_SYMBOL vmlinux 0x7c495dca kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x7c4c45b5 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x7c632a44 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x7c69064d blk_get_queue -EXPORT_SYMBOL vmlinux 0x7c782b39 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x7c7a876b blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x7c7eff9d udp_seq_start -EXPORT_SYMBOL vmlinux 0x7c83acf6 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x7ca54a31 mount_single +EXPORT_SYMBOL vmlinux 0x7c673d41 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x7c9026c5 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x7c929033 bio_copy_data +EXPORT_SYMBOL vmlinux 0x7c98d3c3 single_open_size +EXPORT_SYMBOL vmlinux 0x7ca19a3d pm860x_bulk_write EXPORT_SYMBOL vmlinux 0x7cbe0cd2 drop_reasons_by_subsys +EXPORT_SYMBOL vmlinux 0x7cc116a1 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x7cd2c797 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x7cd9e16f tls_client_hello_x509 EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cfc3c66 bio_split EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d059f51 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x7d06d389 sock_i_uid EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d14698a memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x7d1a9c95 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x7d20f020 fb_class +EXPORT_SYMBOL vmlinux 0x7d251808 sock_wake_async EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x7d2b8117 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d4cff0c __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x7d4e3d60 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x7d598851 dquot_release EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d600685 twl6040_get_pll EXPORT_SYMBOL vmlinux 0x7d65d049 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x7d6ac8fb blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x7d6e53cc gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x7d6e39fb register_md_personality EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user EXPORT_SYMBOL vmlinux 0x7d845f0e _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x7d85ae01 devm_release_resource -EXPORT_SYMBOL vmlinux 0x7d9618d2 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x7d984e19 mmc_add_host +EXPORT_SYMBOL vmlinux 0x7d9c0e04 starget_for_each_device EXPORT_SYMBOL vmlinux 0x7da8f93b xor_altivec_2 EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7db15d1f gro_cells_init +EXPORT_SYMBOL vmlinux 0x7db313da tcf_register_action EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable -EXPORT_SYMBOL vmlinux 0x7dd18795 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x7ddb7603 task_lookup_next_fd_rcu -EXPORT_SYMBOL vmlinux 0x7ddc2c5a make_bad_inode -EXPORT_SYMBOL vmlinux 0x7ddd8056 mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x7de9553f netif_tx_lock -EXPORT_SYMBOL vmlinux 0x7deff463 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x7df955d4 simple_open EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base -EXPORT_SYMBOL vmlinux 0x7e054e34 fs_param_is_enum EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0x7e1361d1 dev_deactivate -EXPORT_SYMBOL vmlinux 0x7e151a7b backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x7e1ab843 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x7e25edfd generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7e1a0d3a readahead_expand +EXPORT_SYMBOL vmlinux 0x7e1be4da to_ndd +EXPORT_SYMBOL vmlinux 0x7e2273be dev_addr_add EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free -EXPORT_SYMBOL vmlinux 0x7e2f2752 skb_expand_head EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e4cb2e0 of_range_to_resource +EXPORT_SYMBOL vmlinux 0x7e39b23c ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x7e4cdc54 __cond_resched_rwlock_write EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e5fbda3 vif_device_init -EXPORT_SYMBOL vmlinux 0x7e71257d mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x7e7c7fba fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x7e7e7eb9 shmem_aops -EXPORT_SYMBOL vmlinux 0x7e88e26d noop_llseek -EXPORT_SYMBOL vmlinux 0x7e8b1d6a fwnode_iomap -EXPORT_SYMBOL vmlinux 0x7e8b5149 generic_write_end -EXPORT_SYMBOL vmlinux 0x7ead674c ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x7eb63000 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0x7ed74779 genphy_c45_eee_is_active -EXPORT_SYMBOL vmlinux 0x7ee1c838 tty_port_open -EXPORT_SYMBOL vmlinux 0x7ee2526b inode_set_bytes -EXPORT_SYMBOL vmlinux 0x7ee8790b mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x7ee9d15a vfs_unlink +EXPORT_SYMBOL vmlinux 0x7e60e913 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x7e9ae0f5 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x7ea47ef1 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7eb6c9dc has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x7ee21aa9 mdio_device_free +EXPORT_SYMBOL vmlinux 0x7ef279df vfs_symlink EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7efb067e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x7efa4b64 xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0x7efba106 xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f4976a8 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x7f52071a net_dim -EXPORT_SYMBOL vmlinux 0x7f567734 phy_validate_pause -EXPORT_SYMBOL vmlinux 0x7f61c21d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x7f572b44 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x7f5e5437 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f66cfb6 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x7f689ed9 skb_queue_tail EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load +EXPORT_SYMBOL vmlinux 0x7f774bda __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x7f7a23ba block_read_full_folio EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7fa92fa1 add_to_page_cache_lru -EXPORT_SYMBOL vmlinux 0x7fb95665 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7f94c964 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x7f96d66c get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x7fa777f3 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7fa816bb scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x7fb1f097 kernel_accept +EXPORT_SYMBOL vmlinux 0x7fb5145c __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x7fc2e649 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7fc71781 disk_stack_limits EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x800327e8 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x80068b72 vm_mmap -EXPORT_SYMBOL vmlinux 0x800a39af __bread_gfp -EXPORT_SYMBOL vmlinux 0x80127f42 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x801d6ed1 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x7fe8399f of_platform_device_create +EXPORT_SYMBOL vmlinux 0x800975cd of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x800f2a0c bio_put +EXPORT_SYMBOL vmlinux 0x8027c4ea sock_set_keepalive EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x8048fa7e pci_get_slot -EXPORT_SYMBOL vmlinux 0x8055ed17 fb_io_write -EXPORT_SYMBOL vmlinux 0x8070e9db component_match_add_typed -EXPORT_SYMBOL vmlinux 0x80721bb8 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0x807a89d1 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x8077d521 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x80840994 block_read_full_folio -EXPORT_SYMBOL vmlinux 0x808723e9 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x808dfdee phy_connect_direct -EXPORT_SYMBOL vmlinux 0x809568ef scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x809715f8 __f_setown -EXPORT_SYMBOL vmlinux 0x809ca029 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x80c114ba xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x80c58963 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x809808a5 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x80a70b85 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x80ac25a4 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x80b174c8 mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0x80bc12c3 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x80c181fd tty_unregister_device +EXPORT_SYMBOL vmlinux 0x80ca2e61 udp_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80dd1738 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x80deaedc tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x80da3b38 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ef01c2 netdev_notice EXPORT_SYMBOL vmlinux 0x80efea50 proc_dostring -EXPORT_SYMBOL vmlinux 0x80f5298e tcp_close -EXPORT_SYMBOL vmlinux 0x810bdb89 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x80f1aacd qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x811812fc blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x81147582 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x8116a6e4 dquot_set_dqinfo EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8125c612 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x814256fb security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x81464e93 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x81199ef5 km_policy_notify +EXPORT_SYMBOL vmlinux 0x811c780f sk_free +EXPORT_SYMBOL vmlinux 0x8122fde7 init_special_inode +EXPORT_SYMBOL vmlinux 0x81448812 vme_unregister_bridge EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c27da dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x815f066e kill_block_super +EXPORT_SYMBOL vmlinux 0x816009a7 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x81602587 inet_frag_find +EXPORT_SYMBOL vmlinux 0x816152cf blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command -EXPORT_SYMBOL vmlinux 0x817e490c md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x816cd753 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x816e2d87 n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818e9275 __phy_write_mmd EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x8195960c folio_migrate_flags EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a44d0f vfs_getattr EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b8379a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x81b91d03 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x81bc543a flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x81c74509 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x81ccf817 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x81d31b8b pci_request_region +EXPORT_SYMBOL vmlinux 0x81d2f008 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81e0dd22 __dynamic_netdev_dbg -EXPORT_SYMBOL vmlinux 0x81f1fc84 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x81f84545 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x81f75bae pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x8209bb50 dev_lstats_read EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end -EXPORT_SYMBOL vmlinux 0x822e5a9d netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x823c0915 zap_page_range_single -EXPORT_SYMBOL vmlinux 0x823ee528 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x8222ccf0 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x8239eece scsi_ioctl +EXPORT_SYMBOL vmlinux 0x824cdf42 uart_unregister_driver EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk -EXPORT_SYMBOL vmlinux 0x826c83dc __block_write_full_folio -EXPORT_SYMBOL vmlinux 0x8278dc59 tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0x8284634f iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x826c4f3d tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x8277acbb reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x8286e504 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x82a00876 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x82b3c82c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x82c3d7e7 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82d67ffa fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x82e86c71 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x82ea51d6 radix__flush_pmd_tlb_range EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f1d807 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x8318d7ed __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x8300ef16 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x83117d69 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x831e53d0 inode_dio_wait EXPORT_SYMBOL vmlinux 0x83200c4c dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x833a470f posix_test_lock +EXPORT_SYMBOL vmlinux 0x833af369 pci_write_config_word EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x8349df11 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x836de4ff skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x83785b1a udp_seq_ops +EXPORT_SYMBOL vmlinux 0x836f736f inode_nohighmem EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83a05cf2 __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x83aba8ec __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x83ae9bdb iget_locked +EXPORT_SYMBOL vmlinux 0x83afb84d of_get_next_child EXPORT_SYMBOL vmlinux 0x83b2094d __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x83c62868 block_write_end -EXPORT_SYMBOL vmlinux 0x83d42aa9 inet6_protos -EXPORT_SYMBOL vmlinux 0x83e23b24 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x83f24a5c pci_scan_bus -EXPORT_SYMBOL vmlinux 0x83f5908e dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x840385d9 get_fs_type +EXPORT_SYMBOL vmlinux 0x83e942e1 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x83fcf1e3 neigh_lookup +EXPORT_SYMBOL vmlinux 0x84088e9d pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x841dbd6c xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x8422aca6 dma_fence_match_context EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x842fb382 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x8437e8aa ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x843c5f01 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x84648482 cdev_del -EXPORT_SYMBOL vmlinux 0x8469e92c disk_check_media_change -EXPORT_SYMBOL vmlinux 0x846b4bb1 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x847b36dc netif_carrier_on -EXPORT_SYMBOL vmlinux 0x847d5fc8 pskb_extract +EXPORT_SYMBOL vmlinux 0x8434e841 tcp_check_req +EXPORT_SYMBOL vmlinux 0x84416f36 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x8455f7af pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8456ad7b __dev_remove_pack EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x8482f02e inode_permission -EXPORT_SYMBOL vmlinux 0x848a157b io_uring_get_socket EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x84936693 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x8498f072 blackhole_netdev EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84b92e90 mdio_device_free -EXPORT_SYMBOL vmlinux 0x84bba6de tcp_poll EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock -EXPORT_SYMBOL vmlinux 0x84c762fe filemap_alloc_folio -EXPORT_SYMBOL vmlinux 0x84cdb07b rw_verify_area -EXPORT_SYMBOL vmlinux 0x84d9acd1 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x850ebe31 nonseekable_open -EXPORT_SYMBOL vmlinux 0x8519020a rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x851f61ea dget_parent +EXPORT_SYMBOL vmlinux 0x84d1d5d9 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x84d8ad5e scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x84e8badf vm_map_ram +EXPORT_SYMBOL vmlinux 0x84eebaa3 current_time +EXPORT_SYMBOL vmlinux 0x84faf77f xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x84fdad00 pm8606_osc_enable EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range -EXPORT_SYMBOL vmlinux 0x852f36b2 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel +EXPORT_SYMBOL vmlinux 0x8535853c tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x8539c182 con_is_bound EXPORT_SYMBOL vmlinux 0x8545b013 kobject_put -EXPORT_SYMBOL vmlinux 0x855a7259 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x85646506 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x85466086 blk_rq_map_user_iov EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8567746e dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x8572de47 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x8574fbb3 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x85765b4b unlock_rename +EXPORT_SYMBOL vmlinux 0x856bd6bf nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x85748cac md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x857fe579 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x858e5874 dev_get_iflink EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall -EXPORT_SYMBOL vmlinux 0x85981178 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x85abbcde fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x85993bae locks_remove_posix +EXPORT_SYMBOL vmlinux 0x85a1dfd0 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x85ad81e3 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x85aebdc8 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states -EXPORT_SYMBOL vmlinux 0x85b99c3d tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x85bc570e security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x85b62598 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c25282 param_get_long -EXPORT_SYMBOL vmlinux 0x85d27c63 flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85ec3c87 netlink_kernel_release EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f1ba96 sk_error_report -EXPORT_SYMBOL vmlinux 0x86001fd3 __kfree_skb -EXPORT_SYMBOL vmlinux 0x862026a3 bio_add_page +EXPORT_SYMBOL vmlinux 0x85f5908d pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x8605f4e2 __ps2_command +EXPORT_SYMBOL vmlinux 0x861e4379 lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x863ae2c9 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x86419050 mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x865471e8 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x866d3c7d skb_vlan_push -EXPORT_SYMBOL vmlinux 0x86863362 platform_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x868a1316 clear_user_page +EXPORT_SYMBOL vmlinux 0x86891fc2 kern_path_create EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869f9a32 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x869e9320 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x86a958b3 proc_create_data EXPORT_SYMBOL vmlinux 0x86b45a9b mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x86b554f6 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x86d300f9 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x86b735b8 bio_split +EXPORT_SYMBOL vmlinux 0x86c3a090 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x86c825a6 tcf_generic_walker EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86df6f6e rproc_add_subdev EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fd5034 wireless_send_event -EXPORT_SYMBOL vmlinux 0x8703acf8 submit_bh -EXPORT_SYMBOL vmlinux 0x87264780 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x870290b3 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x87029a18 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x8707f337 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x871f5c0d dev_mc_add EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x87386e09 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x87389e23 dma_resv_fini EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 -EXPORT_SYMBOL vmlinux 0x873d5081 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x87534a95 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x875efdb2 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x875b2e82 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x87616f5c fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x876b7d87 fb_blank -EXPORT_SYMBOL vmlinux 0x877b33a4 of_create_pci_dev EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x878793f1 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x878bcb05 iget5_locked +EXPORT_SYMBOL vmlinux 0x87824981 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x87840c45 qdisc_put +EXPORT_SYMBOL vmlinux 0x878cb5b0 fb_io_read +EXPORT_SYMBOL vmlinux 0x87921691 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x8792998f write_inode_now +EXPORT_SYMBOL vmlinux 0x879e0fe9 iov_iter_revert EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87b3f31a simple_pin_fs -EXPORT_SYMBOL vmlinux 0x87c09a5c of_phy_find_device +EXPORT_SYMBOL vmlinux 0x87b2a629 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x87c3f898 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x87c95dff __nla_put -EXPORT_SYMBOL vmlinux 0x87e0a923 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x87e887c5 netdev_reset_tc -EXPORT_SYMBOL vmlinux 0x880b6d72 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x87de3ec1 xp_free +EXPORT_SYMBOL vmlinux 0x87fa3370 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x87fe9f1f generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x8817b0ee thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate -EXPORT_SYMBOL vmlinux 0x881cc23f dma_find_channel -EXPORT_SYMBOL vmlinux 0x8822d826 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x88254498 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x88263261 close_fd_get_file -EXPORT_SYMBOL vmlinux 0x882f48b7 pci_enable_wake -EXPORT_SYMBOL vmlinux 0x8830b72b generic_buffers_fsync -EXPORT_SYMBOL vmlinux 0x8857f97a ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x8824569a folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x882c7877 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x88416550 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x88634676 sock_init_data +EXPORT_SYMBOL vmlinux 0x8867adc4 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x88681179 mmc_run_bkops EXPORT_SYMBOL vmlinux 0x887ba18c kobject_del -EXPORT_SYMBOL vmlinux 0x887e9b28 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x887d2fea fb_get_mode EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8883a54b nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88a427ab sockopt_release_sock -EXPORT_SYMBOL vmlinux 0x88b78f05 radix__local_flush_tlb_mm -EXPORT_SYMBOL vmlinux 0x88b8e658 netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x88bc59ab key_unlink -EXPORT_SYMBOL vmlinux 0x88d0f513 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x88d8d8f3 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x88d8edc3 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x88d98f0c netdev_alert -EXPORT_SYMBOL vmlinux 0x88da2ce7 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x8895b414 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x88b7e0f7 from_kuid +EXPORT_SYMBOL vmlinux 0x88cbdc23 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x88d8c959 uart_write_wakeup EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88dd4a95 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x88e1c3bc agp_unbind_memory EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e49167 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x88eac303 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x88f6cdac devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x88fd848e of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x89137df9 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0x891697ac mmc_release_host +EXPORT_SYMBOL vmlinux 0x88fff363 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x89032ece scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x890952f8 unlock_rename +EXPORT_SYMBOL vmlinux 0x891018bd __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x89176916 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x891927e3 ip6_frag_init EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order -EXPORT_SYMBOL vmlinux 0x89203ba0 flush_signals -EXPORT_SYMBOL vmlinux 0x8945f0d9 skb_push -EXPORT_SYMBOL vmlinux 0x894dc132 proc_create_data +EXPORT_SYMBOL vmlinux 0x8930f9ea netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x8946dde5 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table -EXPORT_SYMBOL vmlinux 0x89567666 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x896c9f6e ppp_register_channel -EXPORT_SYMBOL vmlinux 0x89734404 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x897468e6 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x89617f51 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x896f4971 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x8976a67f netdev_emerg EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass -EXPORT_SYMBOL vmlinux 0x898d044b posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x89c20cdb mount_nodev -EXPORT_SYMBOL vmlinux 0x89dbd481 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x89e7b77d n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x89fa46e8 vme_bus_num -EXPORT_SYMBOL vmlinux 0x89fbbd96 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x8a002230 nvdimm_namespace_capacity -EXPORT_SYMBOL vmlinux 0x8a174038 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x8a246497 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x899150de xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x8996d642 new_inode +EXPORT_SYMBOL vmlinux 0x8998a914 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x89add396 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x89b7069d flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x89d383b9 vme_lm_request +EXPORT_SYMBOL vmlinux 0x89f4edda d_prune_aliases +EXPORT_SYMBOL vmlinux 0x89ff76c8 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x8a270270 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x8a2796cf blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x8a2b20a9 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x8a2d01e3 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x8a375ab4 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state EXPORT_SYMBOL vmlinux 0x8a54050b __pud_cache_index -EXPORT_SYMBOL vmlinux 0x8a6e6d84 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x8a5bc2d6 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac365c4 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x8aca3c4b backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x8ad716cb unregister_md_personality -EXPORT_SYMBOL vmlinux 0x8ad8ba44 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x8adc0bbd nd_device_unregister -EXPORT_SYMBOL vmlinux 0x8add9f2e inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x8af5f549 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x8af623a4 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x8af89616 pci_release_regions EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b15962b inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x8b16f6df rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x8b20d0bd fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0x8b24ab62 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x8b44aff9 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x8b453620 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x8b475622 inet_frag_find -EXPORT_SYMBOL vmlinux 0x8b5316e5 pnv_cxl_release_hwirq_ranges -EXPORT_SYMBOL vmlinux 0x8b577cec tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x8b5884aa dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x8b013f44 may_umount_tree +EXPORT_SYMBOL vmlinux 0x8b0cd5a5 devm_ioremap +EXPORT_SYMBOL vmlinux 0x8b531888 netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b65e000 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x8b6a17b8 dev_add_pack +EXPORT_SYMBOL vmlinux 0x8b6a8cb9 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x8b6a9642 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x8b7a9e18 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x8b7d94b3 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8e4e3d seq_pad EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8ba4849c xfrm_state_free -EXPORT_SYMBOL vmlinux 0x8bb2d269 alloc_pages -EXPORT_SYMBOL vmlinux 0x8bba0703 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x8b9e26cf unlock_buffer +EXPORT_SYMBOL vmlinux 0x8ba25f0a netlink_net_capable +EXPORT_SYMBOL vmlinux 0x8ba4bfa8 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x8ba61e5b gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x8bc4d0ac blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x8bc57eba devm_ioremap_wc EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8be4de68 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x8bf0863b dquot_commit -EXPORT_SYMBOL vmlinux 0x8c0c92ea ether_setup -EXPORT_SYMBOL vmlinux 0x8c26b920 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x8bea1af5 is_nd_btt +EXPORT_SYMBOL vmlinux 0x8beae788 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x8bebbea2 sk_alloc +EXPORT_SYMBOL vmlinux 0x8bedcd88 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x8c065250 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x8c13b15d pin_user_pages EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c39df53 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x8c44a2ce mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x8c5439f5 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x8c553a5e netdev_state_change -EXPORT_SYMBOL vmlinux 0x8c56f100 d_splice_alias -EXPORT_SYMBOL vmlinux 0x8c6236a8 noop_fsync -EXPORT_SYMBOL vmlinux 0x8c691e36 param_get_ullong -EXPORT_SYMBOL vmlinux 0x8c7e91ba i2c_get_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x8c3ea0a1 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x8c641985 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x8c656f4d simple_transaction_read +EXPORT_SYMBOL vmlinux 0x8c7a74c6 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x8c7b9c5b __nlmsg_put EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c9eaafd jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x8ca161a5 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x8ca41344 km_policy_expired +EXPORT_SYMBOL vmlinux 0x8c8ab2a6 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x8cae4221 vfs_fileattr_get EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cc1f2f8 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x8cc4325f tcf_classify +EXPORT_SYMBOL vmlinux 0x8cb2688c migrate_folio +EXPORT_SYMBOL vmlinux 0x8cbdda81 input_unregister_handler EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8d0cdf4f input_get_timestamp -EXPORT_SYMBOL vmlinux 0x8d187b22 of_get_next_child +EXPORT_SYMBOL vmlinux 0x8cd6cafd flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x8ce2e5a1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x8cebf196 phy_connect +EXPORT_SYMBOL vmlinux 0x8d02809f scsi_print_command EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d44836f blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x8d391c9c flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x8d46ccc6 mdio_device_remove EXPORT_SYMBOL vmlinux 0x8d4c5e23 override_creds -EXPORT_SYMBOL vmlinux 0x8d4f29a9 __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x8d517c6d nlmsg_notify +EXPORT_SYMBOL vmlinux 0x8d4d631e pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d704b97 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x8d5e1b2a inet_register_protosw +EXPORT_SYMBOL vmlinux 0x8d6ac007 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x8d70d928 scsi_dma_map EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d795d33 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x8d90601a tcp_peek_len EXPORT_SYMBOL vmlinux 0x8d9ce724 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x8da715e2 clk_add_alias EXPORT_SYMBOL vmlinux 0x8dafaf22 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x8dcc4da6 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x8dc7504b pcim_iomap_table EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8dde679c pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x8dee7121 con_is_visible +EXPORT_SYMBOL vmlinux 0x8df06f42 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e14ebf4 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x8dff898a pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x8e07b6cd tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x8e2ab310 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x8e3435d4 seq_file_path +EXPORT_SYMBOL vmlinux 0x8e3a989b __folio_lock +EXPORT_SYMBOL vmlinux 0x8e3afb72 pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e4012b0 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x8e424483 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x8e474b3d __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x8e45843a unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e4ea7c0 i2c_get_match_data -EXPORT_SYMBOL vmlinux 0x8e669a7d of_device_alloc -EXPORT_SYMBOL vmlinux 0x8e894d35 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x8e6370ab mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x8e763800 fasync_helper +EXPORT_SYMBOL vmlinux 0x8e8238e3 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x8e847e5e genl_notify EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9f05c8 inet_offloads -EXPORT_SYMBOL vmlinux 0x8eafb1c8 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x8eb13257 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x8e9f34d6 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x8eb48e31 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x8eb74b1d devm_backlight_device_register EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8eccd55d devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x8ed19328 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x8ee09d9d register_netdevice -EXPORT_SYMBOL vmlinux 0x8ee0ab3c md_update_sb +EXPORT_SYMBOL vmlinux 0x8edbaf73 eth_validate_addr EXPORT_SYMBOL vmlinux 0x8eec42b2 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x8ef07d41 brioctl_set +EXPORT_SYMBOL vmlinux 0x8ef3955a mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f0386fe sock_set_mark -EXPORT_SYMBOL vmlinux 0x8f06b6bb blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x8f178121 generic_file_open -EXPORT_SYMBOL vmlinux 0x8f185f28 rfkill_alloc -EXPORT_SYMBOL vmlinux 0x8f1c831e blk_queue_max_write_zeroes_sectors -EXPORT_SYMBOL vmlinux 0x8f2b2397 pin_user_pages +EXPORT_SYMBOL vmlinux 0x8f0dfd65 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x8f221489 bio_free_pages +EXPORT_SYMBOL vmlinux 0x8f2f41ca neigh_connected_output +EXPORT_SYMBOL vmlinux 0x8f37f670 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x8f43e9b9 netdev_state_change EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x8f6da0b5 genphy_read_lpa -EXPORT_SYMBOL vmlinux 0x8f792500 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x8f68e8c5 sg_miter_start +EXPORT_SYMBOL vmlinux 0x8f859de7 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x8f979b99 file_open_root +EXPORT_SYMBOL vmlinux 0x8f992291 kmem_cache_create EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8fceb6ff ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x8fd998a1 tcp_read_skb -EXPORT_SYMBOL vmlinux 0x8fe1c858 con_is_bound +EXPORT_SYMBOL vmlinux 0x8fb6a9b8 scmd_printk +EXPORT_SYMBOL vmlinux 0x8fc65df7 kernel_connect +EXPORT_SYMBOL vmlinux 0x8fd0b2c1 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x8fd43be7 drop_super +EXPORT_SYMBOL vmlinux 0x8fd7e329 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x8ff3a60a devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x8ff56c02 pci_scan_root_bus EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900d76aa tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x900f1e6d sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x9019b673 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x9013758d pci_get_class +EXPORT_SYMBOL vmlinux 0x9015b893 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x9019bf1f refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x901c71a8 of_cpu_device_node_get -EXPORT_SYMBOL vmlinux 0x902a402b dev_add_pack -EXPORT_SYMBOL vmlinux 0x902a8d3d bmap +EXPORT_SYMBOL vmlinux 0x901c87cc reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x901e7b69 release_pages EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get -EXPORT_SYMBOL vmlinux 0x904d0d3e unix_detach_fds +EXPORT_SYMBOL vmlinux 0x904d721e phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x90629656 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x90904967 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x909d0526 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x90d9422a jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x90fd4ef8 __quota_error -EXPORT_SYMBOL vmlinux 0x91012111 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x9104f5a7 radix__flush_tlb_range -EXPORT_SYMBOL vmlinux 0x9107d68b phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x910e1bec unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x914099b8 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x9157baa4 aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0x9060c863 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x9076e71e dst_alloc +EXPORT_SYMBOL vmlinux 0x90d53e9f inet6_offloads +EXPORT_SYMBOL vmlinux 0x90fa9976 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x90fbb6bd mdiobus_read +EXPORT_SYMBOL vmlinux 0x911167e1 put_fs_context +EXPORT_SYMBOL vmlinux 0x9115e7ad netlink_ack +EXPORT_SYMBOL vmlinux 0x911df721 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x91369884 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x913b0b34 vfs_unlink +EXPORT_SYMBOL vmlinux 0x914ce9fa mmc_request_done EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue EXPORT_SYMBOL vmlinux 0x916758a3 node_states -EXPORT_SYMBOL vmlinux 0x916ed533 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x91748072 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x9188cef0 seq_path -EXPORT_SYMBOL vmlinux 0x918a54ec vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x9183b862 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x9191b3f9 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x91929276 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x91966d82 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x919819db jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a4f39d blk_mq_rq_cpu EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91ed51e2 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x91f3ecf4 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x91ad1472 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x91aeedc1 md_write_inc +EXPORT_SYMBOL vmlinux 0x91e1dd89 seq_open +EXPORT_SYMBOL vmlinux 0x91eb0f79 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x92003c6b tls_server_hello_psk -EXPORT_SYMBOL vmlinux 0x9209fb68 seq_file_path +EXPORT_SYMBOL vmlinux 0x92053604 drop_nlink EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get EXPORT_SYMBOL vmlinux 0x92423a47 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x92468215 pci_disable_device +EXPORT_SYMBOL vmlinux 0x924fe978 seq_read_iter +EXPORT_SYMBOL vmlinux 0x92519b94 proc_create EXPORT_SYMBOL vmlinux 0x9251f0d2 wait_for_completion -EXPORT_SYMBOL vmlinux 0x9252fce0 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x9256de17 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x9264d06a inet_stream_ops +EXPORT_SYMBOL vmlinux 0x926024a2 __put_user_ns +EXPORT_SYMBOL vmlinux 0x92751c83 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x9276bfa4 copy_page_to_iter EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x928b3899 blk_start_plug +EXPORT_SYMBOL vmlinux 0x927d63ad xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x9282884c __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x9283023e sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x928961d2 input_event +EXPORT_SYMBOL vmlinux 0x928d49e5 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92954c49 fb_set_cmap EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92b564af __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x92a3da38 netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92bbd666 import_single_range +EXPORT_SYMBOL vmlinux 0x92bb1dce ip_getsockopt +EXPORT_SYMBOL vmlinux 0x92bd2fe4 simple_transaction_release EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e723a8 phy_find_first EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f988ff input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9301f1a7 mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x930e8864 seq_open -EXPORT_SYMBOL vmlinux 0x931bfedd xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x93440802 pcibios_fixup_bus -EXPORT_SYMBOL vmlinux 0x934cb559 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x93560b82 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x936ac47f eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x93125563 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x932c7688 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x933708a7 seq_lseek +EXPORT_SYMBOL vmlinux 0x9342e01d qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x934e3f17 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x934ecbb1 mount_nodev +EXPORT_SYMBOL vmlinux 0x93662fbe fb_blank +EXPORT_SYMBOL vmlinux 0x93677eb1 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x93712c1b tcf_exts_validate EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9380406d dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0x938b1d1d d_genocide -EXPORT_SYMBOL vmlinux 0x938faa84 phy_write_mmd EXPORT_SYMBOL vmlinux 0x939abcf5 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a80219 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x93a922a5 pci_write_vpd EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b9252e mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x93c0e504 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x93fc465f get_user_pages -EXPORT_SYMBOL vmlinux 0x940aa44f cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x94215639 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x94240cdc devm_memremap +EXPORT_SYMBOL vmlinux 0x93d696f1 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x93e54d06 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x93fe136c phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x94045e80 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x942041a3 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x9442438d pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x9432c7ff of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x9434d1ae of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x9438428c blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x9458060c fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x94613c1c inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x945021ec inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x945372f6 igrab +EXPORT_SYMBOL vmlinux 0x946223fa eth_gro_complete EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x9466f4ac ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x9468bf95 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x946a23b5 default_amr -EXPORT_SYMBOL vmlinux 0x947b06ab pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x94700eeb bdi_unregister +EXPORT_SYMBOL vmlinux 0x9474cd87 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x9476984d unlock_page +EXPORT_SYMBOL vmlinux 0x947da247 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x94933b16 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x949e5e96 register_framebuffer +EXPORT_SYMBOL vmlinux 0x94a55eac blk_queue_io_min EXPORT_SYMBOL vmlinux 0x94a9a4aa _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x94b70b96 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x94b7d8e5 skb_find_text +EXPORT_SYMBOL vmlinux 0x94baab6c seq_hex_dump EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94cf5ccc devfreq_update_target -EXPORT_SYMBOL vmlinux 0x94d465a5 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x94e55368 phy_write_paged +EXPORT_SYMBOL vmlinux 0x94ea0d11 vga_con EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x9511fe3d pci_enable_atomic_ops_to_root EXPORT_SYMBOL vmlinux 0x9514151a _mcount -EXPORT_SYMBOL vmlinux 0x952985df param_set_charp +EXPORT_SYMBOL vmlinux 0x9514a719 filemap_flush +EXPORT_SYMBOL vmlinux 0x9517a51e rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x951c1892 end_page_writeback +EXPORT_SYMBOL vmlinux 0x951e73a6 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954936aa i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x954bbc30 pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload EXPORT_SYMBOL vmlinux 0x955e8368 xor_altivec_5 -EXPORT_SYMBOL vmlinux 0x9571f339 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x95793994 folio_wait_bit -EXPORT_SYMBOL vmlinux 0x957a6170 default_llseek -EXPORT_SYMBOL vmlinux 0x95920317 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x9560e686 of_node_get +EXPORT_SYMBOL vmlinux 0x95724986 _dev_crit EXPORT_SYMBOL vmlinux 0x959c9b73 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x95a4714f i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x95a472bb tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0x95bb82ec devm_memunmap +EXPORT_SYMBOL vmlinux 0x95b5c223 inet_put_port +EXPORT_SYMBOL vmlinux 0x95beabd5 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x95bf5fa4 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x95c4099c pci_find_next_bus EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio -EXPORT_SYMBOL vmlinux 0x95cbbd81 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x95eee98b __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x95f11215 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x95f50cfa __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x95f53262 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x95fb137a sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x96017009 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0x9612bb56 bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0x961d8a5d get_tree_bdev -EXPORT_SYMBOL vmlinux 0x961fed19 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x96351f30 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x9647d947 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x9657d52a has_capability_noaudit -EXPORT_SYMBOL vmlinux 0x965b7dbc mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x967a0232 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x95cb3de8 putname +EXPORT_SYMBOL vmlinux 0x95d6500e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x95e7550e scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x95fb3c2c noop_llseek +EXPORT_SYMBOL vmlinux 0x9603694a dev_close +EXPORT_SYMBOL vmlinux 0x960e8de7 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x962be356 param_set_charp +EXPORT_SYMBOL vmlinux 0x96685cfb writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x9671af42 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x9674a441 inet_accept +EXPORT_SYMBOL vmlinux 0x9682acf5 agp_free_memory EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x968b8b6a agp_put_bridge +EXPORT_SYMBOL vmlinux 0x96860568 iov_iter_bvec EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead EXPORT_SYMBOL vmlinux 0x969f154d trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0x96a4f675 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x96aced05 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x96a1fd2d blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96bac7c9 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x96b6058b agp_put_bridge EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c335a5 of_iomap +EXPORT_SYMBOL vmlinux 0x96c59852 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96e8a47b handshake_genl_put EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9714245f uart_get_divisor -EXPORT_SYMBOL vmlinux 0x97148ae0 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x970d475b kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x97104807 of_match_device EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars -EXPORT_SYMBOL vmlinux 0x9731e145 xp_alloc -EXPORT_SYMBOL vmlinux 0x97370389 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x97223252 dev_alloc_name EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size -EXPORT_SYMBOL vmlinux 0x974d9e5d sock_wake_async +EXPORT_SYMBOL vmlinux 0x97412be4 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x97656731 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x97771412 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat -EXPORT_SYMBOL vmlinux 0x97853701 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x9792af1b dump_skip_to +EXPORT_SYMBOL vmlinux 0x9798c135 I_BDEV EXPORT_SYMBOL vmlinux 0x97a1e796 padata_do_serial EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bbaad8 skb_eth_pop EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97ddb5b7 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x97e32da9 fb_class +EXPORT_SYMBOL vmlinux 0x97bf38bb security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x97c64ba9 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x97cfe9bf tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x97e7975f mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update -EXPORT_SYMBOL vmlinux 0x9800130d phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x9801ba2b max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x98055a9f path_is_under +EXPORT_SYMBOL vmlinux 0x980af367 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x98177a6e neigh_destroy +EXPORT_SYMBOL vmlinux 0x98210ec5 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x9826ba2e blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x9827a72f phy_read_paged EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x9831d967 from_kprojid -EXPORT_SYMBOL vmlinux 0x9851d2bb pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x98566ed4 param_ops_hexint EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set -EXPORT_SYMBOL vmlinux 0x985be5d6 ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x985d1596 i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x985f2506 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x98706edc request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x9887caa7 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x988f419f skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x989925ea of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0x989e44e4 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x98bfa96c vio_unregister_device +EXPORT_SYMBOL vmlinux 0x9866e4a9 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x987a8a8b jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x98810305 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x988c18b3 simple_link +EXPORT_SYMBOL vmlinux 0x9893ca44 tcp_child_process +EXPORT_SYMBOL vmlinux 0x98a4f0a8 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x98b5d79d tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x98c1058e vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x98c675a8 scsi_execute_cmd EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d11647 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x98e00b20 complete_request_key EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f88df8 devm_request_resource -EXPORT_SYMBOL vmlinux 0x990b9ad6 ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x990f78f5 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x991f1cad nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x992a62a4 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x993473bf locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x98ef9994 cdrom_release +EXPORT_SYMBOL vmlinux 0x990e4b1e inc_nlink +EXPORT_SYMBOL vmlinux 0x99196e08 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x99297083 of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x9940fa12 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x994f7633 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995968b9 of_clk_get -EXPORT_SYMBOL vmlinux 0x99663d4d remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x997f197b poll_freewait -EXPORT_SYMBOL vmlinux 0x99893c40 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x99716677 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x99809a0a netdev_info +EXPORT_SYMBOL vmlinux 0x9984171b tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x999ae69c forget_cached_acl EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99bf82b0 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x99cb5acf __napi_schedule -EXPORT_SYMBOL vmlinux 0x99d3ffa9 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x99ad4d9e skb_clone +EXPORT_SYMBOL vmlinux 0x99d14c58 mipi_dsi_shutdown_peripheral EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99da8253 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e49f01 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x99f7dafb pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x99e9186f skb_vlan_push +EXPORT_SYMBOL vmlinux 0x99f95257 page_symlink EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99ff80d6 f_setown -EXPORT_SYMBOL vmlinux 0x9a124543 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x99fb4fb8 dquot_initialize +EXPORT_SYMBOL vmlinux 0x99fc262f mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x9a01fb86 page_pool_release_page EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1f1cb5 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x9a23d3a5 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x9a281075 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x9a4f485b register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x9a2b8485 find_vma +EXPORT_SYMBOL vmlinux 0x9a3869f0 sock_wfree +EXPORT_SYMBOL vmlinux 0x9a3db6fb netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5f7e8b kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x9a91c31d folio_set_bh -EXPORT_SYMBOL vmlinux 0x9a94c3e0 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x9a5ff05a nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x9a768c98 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x9a795c88 skb_append +EXPORT_SYMBOL vmlinux 0x9a859c4a blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x9a8f27d9 phy_device_remove +EXPORT_SYMBOL vmlinux 0x9aa0dd43 generic_ro_fops EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ab15877 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x9ac414b7 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x9abc8ac9 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x9acde112 gtm_ack_timer16 -EXPORT_SYMBOL vmlinux 0x9acff1ec __sock_i_ino +EXPORT_SYMBOL vmlinux 0x9ad1dbb3 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x9ad67d67 dcache_dir_open EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9aeddca5 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x9b0c2c0a md_done_sync -EXPORT_SYMBOL vmlinux 0x9b199ed0 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x9aeecb13 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x9af18c4d fb_pan_display +EXPORT_SYMBOL vmlinux 0x9afe7b50 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x9b0db9c8 locks_delete_block EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b3aee3c dquot_quota_on -EXPORT_SYMBOL vmlinux 0x9b404db6 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x9b378206 param_set_invbool +EXPORT_SYMBOL vmlinux 0x9b40e99a xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b62db94 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x9b68534f scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x9b6bcf0c simple_get_link -EXPORT_SYMBOL vmlinux 0x9b8e65fb nd_dax_probe -EXPORT_SYMBOL vmlinux 0x9bb365e3 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x9b4ea382 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x9b57d076 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x9b5d789a blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x9b6828a3 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x9b7a557f module_put +EXPORT_SYMBOL vmlinux 0x9b7de908 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x9baf0a40 nonseekable_open EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9be6d36c __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x9bea7eb4 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x9c077361 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x9c2f1227 neigh_for_each -EXPORT_SYMBOL vmlinux 0x9c2f78fe mdiobus_free -EXPORT_SYMBOL vmlinux 0x9c45895e phy_config_aneg -EXPORT_SYMBOL vmlinux 0x9c54aa48 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0x9c56d280 param_ops_charp +EXPORT_SYMBOL vmlinux 0x9bf0bd49 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x9c09ef57 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x9c0c7182 iov_iter_init +EXPORT_SYMBOL vmlinux 0x9c407ea5 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x9c57fcdb flush_all_to_thread EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs -EXPORT_SYMBOL vmlinux 0x9c6a20e1 skb_checksum -EXPORT_SYMBOL vmlinux 0x9c6b19b2 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x9c6e4353 tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x9c79f098 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x9c61ab3c of_translate_address EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c9556b9 agp_enable -EXPORT_SYMBOL vmlinux 0x9c9a5936 prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9c9b2edd mach_powernv EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb9b3d8 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x9cad965c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x9cae8eb2 tty_port_init +EXPORT_SYMBOL vmlinux 0x9cb35779 xfrm_input +EXPORT_SYMBOL vmlinux 0x9cc1bfef ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd74dc6 locks_free_lock EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce80bff pps_register_source -EXPORT_SYMBOL vmlinux 0x9cedb69d kernel_bind +EXPORT_SYMBOL vmlinux 0x9cee6ba7 register_netdev +EXPORT_SYMBOL vmlinux 0x9cfb5c3d tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x9cfb7f8f jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x9cfd23d5 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x9cffcf9a t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d1516cd scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0x9d2031a4 kthread_complete_and_exit -EXPORT_SYMBOL vmlinux 0x9d254d07 dec_node_page_state EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x9d282507 kern_path_create +EXPORT_SYMBOL vmlinux 0x9d2677eb __generic_file_fsync EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d3d40fb sg_miter_skip -EXPORT_SYMBOL vmlinux 0x9d6c16ec phy_set_max_speed -EXPORT_SYMBOL vmlinux 0x9d6f7244 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x9d7341b8 skb_clone -EXPORT_SYMBOL vmlinux 0x9d7415ec block_dirty_folio -EXPORT_SYMBOL vmlinux 0x9d846d50 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x9d8f2acd seq_vprintf +EXPORT_SYMBOL vmlinux 0x9d3b5335 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x9d3d74d4 ip_frag_next +EXPORT_SYMBOL vmlinux 0x9d55f990 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x9d5e48c6 set_anon_super +EXPORT_SYMBOL vmlinux 0x9d79e85f make_kgid +EXPORT_SYMBOL vmlinux 0x9d83db32 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x9d876fab no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops -EXPORT_SYMBOL vmlinux 0x9da92d7a udp_gro_complete -EXPORT_SYMBOL vmlinux 0x9daa7f94 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x9dd49d21 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x9db1c2c2 import_single_range +EXPORT_SYMBOL vmlinux 0x9dbc44c6 inet6_release +EXPORT_SYMBOL vmlinux 0x9dc447ce inode_set_flags +EXPORT_SYMBOL vmlinux 0x9dd6d849 input_grab_device EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9ddca41a flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0f7a7d netdev_pick_tx EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1c94e8 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x9e3e22f5 sock_no_getname -EXPORT_SYMBOL vmlinux 0x9e48dd2f tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x9e216096 tty_kref_put EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5821c3 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x9e5f63f0 security_inode_copy_up EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e7534c0 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x9e78e253 truncate_setsize +EXPORT_SYMBOL vmlinux 0x9e80d96b blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x9e95b4f6 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x9e963342 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x9e9a14e2 dev_uc_init +EXPORT_SYMBOL vmlinux 0x9e9aa5a8 dev_trans_start EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eaee915 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec440a8 of_node_get EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ecb790c inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ef29efd netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x9f1d6d93 of_get_property -EXPORT_SYMBOL vmlinux 0x9f25a8cf phy_advertise_supported -EXPORT_SYMBOL vmlinux 0x9f29dc93 tcf_em_register -EXPORT_SYMBOL vmlinux 0x9f2f1eb5 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x9f2fd8d7 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x9f313ff8 fddi_type_trans -EXPORT_SYMBOL vmlinux 0x9f3be8dc jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x9f3f1fb7 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x9edc3171 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x9edd3fbd dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x9edff47e pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x9eff0c0d tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x9f067815 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x9f100415 pid_task +EXPORT_SYMBOL vmlinux 0x9f339269 key_put +EXPORT_SYMBOL vmlinux 0x9f366f86 __brelse +EXPORT_SYMBOL vmlinux 0x9f432fa6 tcp_v4_connect EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4c54fc __inet6_lookup_established EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f517c82 fib_default_rule_add EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f63b693 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0x9f7d96fb rt_dst_clone -EXPORT_SYMBOL vmlinux 0x9f89c170 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x9f8b0012 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x9f9080ed ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x9f5f7384 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x9f64aa7a pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x9f65e551 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x9f66f999 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x9f7e5ee3 mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9fa2ba1d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9fa34625 dcb_ieee_setapp EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync EXPORT_SYMBOL vmlinux 0x9fad518e irq_stat -EXPORT_SYMBOL vmlinux 0x9fb19ec5 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fb83e01 netdev_err EXPORT_SYMBOL vmlinux 0x9fbb5869 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x9fd44630 pci_enable_device +EXPORT_SYMBOL vmlinux 0x9fd3ed0b blkdev_issue_flush EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fdf2968 mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x9fe33f61 bio_add_folio -EXPORT_SYMBOL vmlinux 0x9fe5d3f9 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x9fee4477 lease_modify EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa0098eee register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xa01b85a2 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xa00249b8 of_get_property +EXPORT_SYMBOL vmlinux 0xa00a3d8f __netif_schedule +EXPORT_SYMBOL vmlinux 0xa01b7540 send_sig EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa0205725 pnv_cxl_get_irq_count EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xa02f0ef4 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0xa030dac9 pci_map_rom +EXPORT_SYMBOL vmlinux 0xa026325f pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xa033459a device_get_mac_address +EXPORT_SYMBOL vmlinux 0xa0336ae3 pci_restore_state EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03bef87 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0xa0406765 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04497e7 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0xa05732c7 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0xa056d6f5 fscrypt_free_inode EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa0588692 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa0776767 ppp_register_net_channel EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup -EXPORT_SYMBOL vmlinux 0xa07fff72 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xa07d7968 srp_rport_put EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa08a0d83 folio_migrate_copy -EXPORT_SYMBOL vmlinux 0xa08edcd7 ps2_drain EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa09d8601 block_invalidate_folio -EXPORT_SYMBOL vmlinux 0xa0a2435e udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xa0ace83a vme_bus_type -EXPORT_SYMBOL vmlinux 0xa0adc269 framebuffer_release +EXPORT_SYMBOL vmlinux 0xa0aa782e mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xa0ab5cb8 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0d16e5d md_reap_sync_thread EXPORT_SYMBOL vmlinux 0xa0d1f675 __put_cred EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e0fa35 dma_map_resource -EXPORT_SYMBOL vmlinux 0xa0e18c7a pci_get_subsys -EXPORT_SYMBOL vmlinux 0xa0e9a391 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xa0e9363a mipi_dsi_dcs_nop EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0xa0ec4704 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table +EXPORT_SYMBOL vmlinux 0xa0f31f8c wireless_send_event +EXPORT_SYMBOL vmlinux 0xa0fb1ef4 md_reload_sb EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1086857 pci_enable_device EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa115da49 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xa1242186 rtnl_notify +EXPORT_SYMBOL vmlinux 0xa1186cd2 neigh_table_init EXPORT_SYMBOL vmlinux 0xa12b6fb1 load_nls_default -EXPORT_SYMBOL vmlinux 0xa16857e7 dcb_getrewr +EXPORT_SYMBOL vmlinux 0xa135d01e __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xa13fed7e inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xa14489da tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0xa1483d19 md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0xa174766d register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xa1977a30 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0xa1a9a75a pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xa1c55be2 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0xa1d716bc skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xa1dfc1d9 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0xa1ea7205 neigh_table_init +EXPORT_SYMBOL vmlinux 0xa19d00ca pci_read_config_word +EXPORT_SYMBOL vmlinux 0xa1b25942 secpath_set +EXPORT_SYMBOL vmlinux 0xa1bbe7d6 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xa1bd3a39 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xa1c6a933 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xa1cd4ddf agp_collect_device_status EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init +EXPORT_SYMBOL vmlinux 0xa1f637bc pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xa1f86e20 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xa1ff8be2 tty_devnum EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20e1f07 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xa206a992 tcp_poll +EXPORT_SYMBOL vmlinux 0xa20ea791 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xa2204dc7 vfs_get_link EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2442449 fb_set_var -EXPORT_SYMBOL vmlinux 0xa24ef734 fs_bio_set EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa24fa031 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xa25c11de dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xa250e5cd __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xa250f9b8 get_watch_queue +EXPORT_SYMBOL vmlinux 0xa2555a30 bio_init +EXPORT_SYMBOL vmlinux 0xa26156b3 of_phy_connect EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26590d4 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xa265a7fd skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xa26f1cf3 sock_i_uid -EXPORT_SYMBOL vmlinux 0xa2741e0a igrab -EXPORT_SYMBOL vmlinux 0xa28481e7 pci_enable_link_state -EXPORT_SYMBOL vmlinux 0xa28879c2 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29b3a7c da903x_query_status -EXPORT_SYMBOL vmlinux 0xa29b66d5 __phy_resume -EXPORT_SYMBOL vmlinux 0xa29dd570 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xa2ac55e8 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xa2afc5d2 pci_dev_put -EXPORT_SYMBOL vmlinux 0xa2b0b9ea devfreq_resume_device EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register -EXPORT_SYMBOL vmlinux 0xa2c5f1a8 proc_remove -EXPORT_SYMBOL vmlinux 0xa2cec149 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xa2ce3fa9 iw_handler_set_thrspy EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2d86f20 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xa3033b30 giveup_altivec -EXPORT_SYMBOL vmlinux 0xa304f93b rproc_report_crash -EXPORT_SYMBOL vmlinux 0xa31428a8 cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0xa3350071 vfs_rename -EXPORT_SYMBOL vmlinux 0xa336cc49 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xa33c075b of_get_mac_address -EXPORT_SYMBOL vmlinux 0xa34a6f55 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xa2f4d38b blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0xa303008d __alloc_skb +EXPORT_SYMBOL vmlinux 0xa30586a9 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xa31d54c8 would_dump +EXPORT_SYMBOL vmlinux 0xa31dd7bf __devm_release_region EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa36616c7 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xa353f455 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xa354add4 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xa35cbde5 input_reset_device EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order -EXPORT_SYMBOL vmlinux 0xa373b539 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xa36a83b8 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xa36fec2f update_region EXPORT_SYMBOL vmlinux 0xa376a236 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa3874414 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xa37bc049 ram_aops +EXPORT_SYMBOL vmlinux 0xa38415ec seq_puts +EXPORT_SYMBOL vmlinux 0xa38c58b2 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot -EXPORT_SYMBOL vmlinux 0xa393a74f sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay -EXPORT_SYMBOL vmlinux 0xa3bd6203 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xa3aa550e of_iommu_get_resv_regions EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c748ea flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xa3cbc6e1 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa3c804c7 dev_addr_del EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d4676d __lock_sock_fast EXPORT_SYMBOL vmlinux 0xa3d5ac3b devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xa3db3a20 dma_set_mask -EXPORT_SYMBOL vmlinux 0xa3dd2f29 bdi_alloc -EXPORT_SYMBOL vmlinux 0xa3e1c8ff mach_pseries EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa404bab5 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xa412f2ae kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xa428aa4f ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xa4079c46 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xa41b10cc netif_skb_features +EXPORT_SYMBOL vmlinux 0xa4254e45 __folio_put +EXPORT_SYMBOL vmlinux 0xa42d08e4 scsi_print_result EXPORT_SYMBOL vmlinux 0xa4383a3c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xa4394956 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa489a589 input_match_device_id +EXPORT_SYMBOL vmlinux 0xa44d0028 param_get_ullong +EXPORT_SYMBOL vmlinux 0xa4507ae3 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xa466b7f6 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa488759f neigh_update EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc -EXPORT_SYMBOL vmlinux 0xa4af763a remove_proc_entry EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4c5ec23 dev_set_mtu -EXPORT_SYMBOL vmlinux 0xa4d0060c pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0xa4d0feb7 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xa4bc19a8 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0xa4d2eef8 neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4e3843f get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xa50455bf tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xa530730d sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xa4dd728f phy_register_fixup +EXPORT_SYMBOL vmlinux 0xa4f7c457 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xa5019cfc ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xa5129d2c pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xa519fcad pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xa51a0832 d_make_root +EXPORT_SYMBOL vmlinux 0xa52f1be3 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xa5355ed4 block_commit_write +EXPORT_SYMBOL vmlinux 0xa53decb6 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xa546ad9b tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa553be11 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xa5571533 slab_build_skb EXPORT_SYMBOL vmlinux 0xa55a43fb nla_put -EXPORT_SYMBOL vmlinux 0xa55f847a phy_start -EXPORT_SYMBOL vmlinux 0xa56756f4 tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0xa5959d89 seq_puts -EXPORT_SYMBOL vmlinux 0xa5967c69 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xa5c125e2 _dev_notice -EXPORT_SYMBOL vmlinux 0xa5d63ddd pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xa5ea679d mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0xa5f4f96a dev_uc_sync -EXPORT_SYMBOL vmlinux 0xa60415e8 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xa605b71c skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xa610b00f fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xa56aa760 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xa57360b6 skb_split +EXPORT_SYMBOL vmlinux 0xa57e3cbf iterate_fd +EXPORT_SYMBOL vmlinux 0xa58e3af3 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xa5902544 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xa5b966b8 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xa5d4e80b devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xa5e0abe4 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xa5e29409 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xa60ec401 phy_print_status EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa61f78c1 xfrm_state_add -EXPORT_SYMBOL vmlinux 0xa6251c01 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xa6343472 bio_copy_data +EXPORT_SYMBOL vmlinux 0xa6203557 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xa62d5d2a ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0xa635d2a6 profile_pc -EXPORT_SYMBOL vmlinux 0xa63e2a34 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xa644ec74 input_set_timestamp EXPORT_SYMBOL vmlinux 0xa6457c89 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64bfaab dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa652476c __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xa6538e65 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio -EXPORT_SYMBOL vmlinux 0xa6709b59 security_path_mknod +EXPORT_SYMBOL vmlinux 0xa6607646 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6972847 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xa6990beb phy_request_interrupt -EXPORT_SYMBOL vmlinux 0xa6a6db05 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xa6aa91d6 kmalloc_caches -EXPORT_SYMBOL vmlinux 0xa6ade400 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xa6fa8502 tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0xa6fe839a drop_super_exclusive -EXPORT_SYMBOL vmlinux 0xa70fe960 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xa691dda5 vm_mmap +EXPORT_SYMBOL vmlinux 0xa69c0dad pci_pme_active +EXPORT_SYMBOL vmlinux 0xa6a84cb6 __of_get_address +EXPORT_SYMBOL vmlinux 0xa6b21942 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xa6e71d8e init_task +EXPORT_SYMBOL vmlinux 0xa6f338e4 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0xa704d84a kernel_listen +EXPORT_SYMBOL vmlinux 0xa711543c input_match_device_id +EXPORT_SYMBOL vmlinux 0xa71b25ff unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be -EXPORT_SYMBOL vmlinux 0xa720bc9d pci_clear_master -EXPORT_SYMBOL vmlinux 0xa741b776 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xa72a8fa4 datagram_poll +EXPORT_SYMBOL vmlinux 0xa734d951 __devm_request_region +EXPORT_SYMBOL vmlinux 0xa73dc4a1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xa7406177 scsi_scan_target EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa75cd1f4 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xa74dab69 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xa7543a60 nf_reinject +EXPORT_SYMBOL vmlinux 0xa755b237 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xa7674e57 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xa769556c mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0xa7695b64 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xa76d0557 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xa77422c8 devm_ioport_map EXPORT_SYMBOL vmlinux 0xa77812a2 config_item_init_type_name -EXPORT_SYMBOL vmlinux 0xa7781950 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa787e449 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xa77df957 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xa78214f5 dev_vprintk_emit EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 -EXPORT_SYMBOL vmlinux 0xa78c7390 mount_bdev -EXPORT_SYMBOL vmlinux 0xa791beda param_get_hexint +EXPORT_SYMBOL vmlinux 0xa7933f31 vfs_llseek +EXPORT_SYMBOL vmlinux 0xa799f421 inode_update_time EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift -EXPORT_SYMBOL vmlinux 0xa7d71541 pcim_iomap +EXPORT_SYMBOL vmlinux 0xa7ae6db4 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa7b89455 __bh_read +EXPORT_SYMBOL vmlinux 0xa7bcb536 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xa7c99352 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f43882 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0xa8048988 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0xa8429721 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xa7efd8cd pci_request_region +EXPORT_SYMBOL vmlinux 0xa80f9bbe mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xa816028d md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xa830f788 mmc_can_erase EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84474aa _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa8580334 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0xa8676398 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa86de6f4 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xa882dace folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xa883f86f __inode_add_bytes EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xa88b7553 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xa89f6e3b ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xa8ac378a jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0xa8bc9a8a serio_bus -EXPORT_SYMBOL vmlinux 0xa8c2fb34 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xa8c3d9f9 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xa8a90ceb phy_init_eee +EXPORT_SYMBOL vmlinux 0xa8ab9283 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xa8b99f31 udp_read_skb EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8ccf934 init_net -EXPORT_SYMBOL vmlinux 0xa8e8daee serio_unregister_driver EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f97a75 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xa8fe908f eth_type_trans -EXPORT_SYMBOL vmlinux 0xa90b6aa3 param_set_copystring EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa910bb06 ipmi_platform_add EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xa93215cf seq_putc -EXPORT_SYMBOL vmlinux 0xa933b9b4 rproc_add -EXPORT_SYMBOL vmlinux 0xa9396b47 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xa91e2330 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa91ee770 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xa9358783 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0xa94049c6 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0xa942e6a8 of_node_to_nid -EXPORT_SYMBOL vmlinux 0xa947f1f1 logfc EXPORT_SYMBOL vmlinux 0xa948b85a of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0xa94c21bd sk_dst_check -EXPORT_SYMBOL vmlinux 0xa952b11b pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xa95f3c34 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa965e0e6 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0xa975c2d9 inet_shutdown +EXPORT_SYMBOL vmlinux 0xa9763a5f mipi_dsi_host_unregister EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97ae10c cont_write_begin EXPORT_SYMBOL vmlinux 0xa97e2fe5 _atomic_dec_and_raw_lock -EXPORT_SYMBOL vmlinux 0xa991eae9 configfs_depend_item -EXPORT_SYMBOL vmlinux 0xa99c4c8d end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xa9a1bb74 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xa9bdfc5d scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xa9dbf406 skb_vlan_untag EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free +EXPORT_SYMBOL vmlinux 0xa9e8da6b folio_unlock +EXPORT_SYMBOL vmlinux 0xa9f27629 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xaa08078d __sk_dst_check EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa387660 generic_write_checks_count -EXPORT_SYMBOL vmlinux 0xaa3ddfe0 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xaa28a0a2 __invalidate_device EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range -EXPORT_SYMBOL vmlinux 0xaa41afe6 skb_ext_add -EXPORT_SYMBOL vmlinux 0xaa5d4e38 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0xaa5dfc29 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xaa5040f1 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xaa5c8a90 bd_abort_claiming EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa8d2014 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xaa767d2d of_iomap +EXPORT_SYMBOL vmlinux 0xaa7eac50 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0xaa8ee8a5 vc_resize EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xaaa25d53 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xaaa286eb mmc_erase EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaaa36d1 vio_cmo_set_dev_desired EXPORT_SYMBOL vmlinux 0xaab2ee91 complete_all -EXPORT_SYMBOL vmlinux 0xaacb6f4f ___pskb_trim -EXPORT_SYMBOL vmlinux 0xaacba5ea sock_no_bind +EXPORT_SYMBOL vmlinux 0xaabf6699 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0xaac99f14 ihold EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad82fbe cdev_device_del EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaaee9d4d neigh_ifdown -EXPORT_SYMBOL vmlinux 0xaaf91fad security_sb_remount EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab10b74d of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0xab12f940 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xab14fa48 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xab1c6f4f ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xab1828ee dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xab2bbba5 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xab2d79bf rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xab334ae8 pneigh_lookup EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab3e4d57 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xab4a91dc inc_nlink -EXPORT_SYMBOL vmlinux 0xab4c1fd3 mdio_device_create +EXPORT_SYMBOL vmlinux 0xab5370ae rtnl_notify +EXPORT_SYMBOL vmlinux 0xab5d6e4e vmf_insert_pfn EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab649a1b netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xab64c388 input_set_timestamp +EXPORT_SYMBOL vmlinux 0xab699c65 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7bed0e __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xabb7c216 folio_create_empty_buffers -EXPORT_SYMBOL vmlinux 0xabbc59c1 devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0xabc67a56 update_region -EXPORT_SYMBOL vmlinux 0xabd29eb6 register_netdev -EXPORT_SYMBOL vmlinux 0xabd88c41 tcp_parse_options -EXPORT_SYMBOL vmlinux 0xabeedddd inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xab7d2dd6 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xaba3fd32 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xaba89665 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xabc2e2a8 misc_register +EXPORT_SYMBOL vmlinux 0xabd9c9a9 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xabe60d6b max8925_set_bits EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf9494e __insert_inode_hash -EXPORT_SYMBOL vmlinux 0xac02a9ea __sock_create -EXPORT_SYMBOL vmlinux 0xac0a7d2c tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0xac140a3a pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0xac17e8ed backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac24ed92 key_type_keyring -EXPORT_SYMBOL vmlinux 0xac252c3c _dev_alert -EXPORT_SYMBOL vmlinux 0xac26a385 sync_blockdev_range -EXPORT_SYMBOL vmlinux 0xac2a56c8 input_flush_device +EXPORT_SYMBOL vmlinux 0xac1c556b netif_device_attach +EXPORT_SYMBOL vmlinux 0xac1d9eb6 mnt_set_expiry EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits -EXPORT_SYMBOL vmlinux 0xac4f4deb irq_set_chip -EXPORT_SYMBOL vmlinux 0xac51759c vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xac47b9b5 __starget_for_each_device EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6348ae filemap_splice_read -EXPORT_SYMBOL vmlinux 0xac6f3908 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xac7fad61 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xac9312c3 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xaca1faac proc_set_user +EXPORT_SYMBOL vmlinux 0xac726b92 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xac94e7c6 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacbfbeac dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xacd30d91 tty_register_device EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0xacd83638 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xacdd3636 proc_symlink EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacfa18a2 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0xad011cfd km_state_notify +EXPORT_SYMBOL vmlinux 0xad00dcd5 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad055778 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xad0711f9 scsi_add_device -EXPORT_SYMBOL vmlinux 0xad0c4b6d phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0xad1831a6 phy_register_fixup -EXPORT_SYMBOL vmlinux 0xad1882d3 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xad1f9760 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xad2d2e9b d_lookup -EXPORT_SYMBOL vmlinux 0xad2f4012 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xad391454 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0xad4ae519 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xad0837cc iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xad11f77d capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xad16c354 __register_binfmt +EXPORT_SYMBOL vmlinux 0xad292f8f folio_end_writeback +EXPORT_SYMBOL vmlinux 0xad297c85 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xad34639d key_reject_and_link EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock -EXPORT_SYMBOL vmlinux 0xad5fb688 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xad516076 kill_pgrp +EXPORT_SYMBOL vmlinux 0xad6dd75f ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad731f0b jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xad7e485c give_up_console -EXPORT_SYMBOL vmlinux 0xadadb8da pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xad7ae3e4 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadbcdbeb insert_inode_locked EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long -EXPORT_SYMBOL vmlinux 0xadcbff90 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0xadcf9212 mach_powernv EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed EXPORT_SYMBOL vmlinux 0xadd91282 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0xadea0e94 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0xadec2055 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xadf9b8ba send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xade0c7f5 pps_register_source +EXPORT_SYMBOL vmlinux 0xadf02c98 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xadf796cf vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xadfa4211 inode_io_list_del EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae0f9b6b ipmi_platform_add -EXPORT_SYMBOL vmlinux 0xae197587 dma_pool_create +EXPORT_SYMBOL vmlinux 0xae051627 nf_log_packet +EXPORT_SYMBOL vmlinux 0xae0a35c1 dm_register_target +EXPORT_SYMBOL vmlinux 0xae1bbbb6 scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae1fe1a5 dev_alloc_name EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3acdf5 sk_common_release -EXPORT_SYMBOL vmlinux 0xae48954b giveup_all +EXPORT_SYMBOL vmlinux 0xae360a3a filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xae3cb0b8 devfreq_add_governor EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size -EXPORT_SYMBOL vmlinux 0xae4ca559 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xae4df18a seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xae5bdf5a kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xae5f5598 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae8bb271 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xae9a611f backlight_device_register +EXPORT_SYMBOL vmlinux 0xae869f9d jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xaea229bb page_pool_destroy +EXPORT_SYMBOL vmlinux 0xaea7429a configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xaea85844 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaec28ae6 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0xaed0b052 set_cached_acl -EXPORT_SYMBOL vmlinux 0xaee04ed5 fget -EXPORT_SYMBOL vmlinux 0xaefb835c ppc_md -EXPORT_SYMBOL vmlinux 0xaefc79df ps2_sendbyte -EXPORT_SYMBOL vmlinux 0xaf0831b9 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xaf2712db xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0xaf292c7f gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0xaf2ed650 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xaf33e2d8 udplite_prot +EXPORT_SYMBOL vmlinux 0xaec63dcc ethtool_notify +EXPORT_SYMBOL vmlinux 0xaee1e4f6 dev_driver_string +EXPORT_SYMBOL vmlinux 0xaeed751a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xaef6f4a3 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xaefac245 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xaefc7380 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xaf1c96b5 tcp_read_done EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf52e56e tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xaf65a7b8 phy_error -EXPORT_SYMBOL vmlinux 0xaf763435 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0xaf7b0ff6 ethtool_notify -EXPORT_SYMBOL vmlinux 0xaf7e964e inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xaf7f102d posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xaf8b8103 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xaf9ad959 netdev_get_by_name EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit -EXPORT_SYMBOL vmlinux 0xafb317b5 get_inode_acl +EXPORT_SYMBOL vmlinux 0xafb090a1 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xafb15f45 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xafb7ba3b config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xafbf200f sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0xafbb288d gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0xafc06bcd wait_for_completion_io EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name -EXPORT_SYMBOL vmlinux 0xafc1e120 mroute6_is_socket EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafdc3a16 elv_rb_find +EXPORT_SYMBOL vmlinux 0xafe3b0eb kfree_skb_reason EXPORT_SYMBOL vmlinux 0xafe6c899 mt_find -EXPORT_SYMBOL vmlinux 0xaff1dc40 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xaff6b246 dev_mc_del +EXPORT_SYMBOL vmlinux 0xaffa24cc jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xb008cac8 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xb00b1415 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01da64e agp_copy_info EXPORT_SYMBOL vmlinux 0xb0234c5f mt_find_after +EXPORT_SYMBOL vmlinux 0xb0276cce pps_event +EXPORT_SYMBOL vmlinux 0xb02f96c7 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xb036b325 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xb055fbc9 posix_acl_chmod EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats -EXPORT_SYMBOL vmlinux 0xb05e7da4 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xb05922e6 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0xb0676fee lock_rename_child -EXPORT_SYMBOL vmlinux 0xb06aedc1 lock_rename -EXPORT_SYMBOL vmlinux 0xb08b4d12 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xb0616bde vlan_for_each +EXPORT_SYMBOL vmlinux 0xb0662ae8 mount_bdev +EXPORT_SYMBOL vmlinux 0xb06c6cde submit_bh +EXPORT_SYMBOL vmlinux 0xb07470b6 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xb07c8b9e udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xb09b6591 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xb09ecd85 inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b1314c genphy_update_link -EXPORT_SYMBOL vmlinux 0xb0d28c88 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb0ab13ad blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xb0b4a496 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xb0bc9419 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xb0caf446 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb0cd4ddc iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xb0d302d0 param_ops_string EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e7b432 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xb0f28f21 devm_iounmap -EXPORT_SYMBOL vmlinux 0xb10084b1 vme_register_bridge -EXPORT_SYMBOL vmlinux 0xb1022bbe md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0xb11c25e4 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xb123cada blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xb12c33d0 follow_up +EXPORT_SYMBOL vmlinux 0xb0f3ad3d napi_complete_done +EXPORT_SYMBOL vmlinux 0xb0fc7729 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xb11066ee phy_write_paged +EXPORT_SYMBOL vmlinux 0xb11649fd simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb119bc11 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xb12124d5 param_set_bint EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb13cd826 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xb13d6955 dm_table_event +EXPORT_SYMBOL vmlinux 0xb144ecf9 sk_send_sigurg EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset -EXPORT_SYMBOL vmlinux 0xb1494c9d __block_write_begin EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 -EXPORT_SYMBOL vmlinux 0xb150d15e bio_uninit EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb1539601 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xb155d5a6 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec -EXPORT_SYMBOL vmlinux 0xb16010be bio_init_clone -EXPORT_SYMBOL vmlinux 0xb161388a tty_devnum -EXPORT_SYMBOL vmlinux 0xb1662550 redraw_screen -EXPORT_SYMBOL vmlinux 0xb186a011 netdev_name_in_use -EXPORT_SYMBOL vmlinux 0xb18c3582 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xb15f93f9 simple_setattr +EXPORT_SYMBOL vmlinux 0xb15f9fdb sock_no_connect +EXPORT_SYMBOL vmlinux 0xb160bf46 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xb165ec11 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xb1773832 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xb178bd9a jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xb18edd33 phy_init_hw EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern -EXPORT_SYMBOL vmlinux 0xb1a02d71 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xb1acb153 __quota_error EXPORT_SYMBOL vmlinux 0xb1b89179 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xb1b925c9 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xb1bb328b folio_mark_accessed -EXPORT_SYMBOL vmlinux 0xb1be41b5 set_create_files_as +EXPORT_SYMBOL vmlinux 0xb1be6259 pci_unregister_driver EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1c5c64e gtm_set_exact_timer16 -EXPORT_SYMBOL vmlinux 0xb1c5ff1a phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0xb1cab4a0 generic_fillattr -EXPORT_SYMBOL vmlinux 0xb1cc2396 read_cache_page -EXPORT_SYMBOL vmlinux 0xb1d72a0b srp_rport_get +EXPORT_SYMBOL vmlinux 0xb1d08f11 d_instantiate_new EXPORT_SYMBOL vmlinux 0xb1d7502c kobject_init +EXPORT_SYMBOL vmlinux 0xb1d7efb1 clear_inode EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e0de67 skb_queue_tail -EXPORT_SYMBOL vmlinux 0xb1edf175 max8925_set_bits -EXPORT_SYMBOL vmlinux 0xb1f2dd48 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xb1f8f485 inet_put_port +EXPORT_SYMBOL vmlinux 0xb205c03f dmam_pool_create +EXPORT_SYMBOL vmlinux 0xb21b0fae zpool_register_driver EXPORT_SYMBOL vmlinux 0xb2266f37 config_group_init +EXPORT_SYMBOL vmlinux 0xb227e231 dcache_readdir EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb22f4e6a fb_firmware_edid EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb2374d4f kmem_cache_size -EXPORT_SYMBOL vmlinux 0xb23f75d0 devm_of_iomap -EXPORT_SYMBOL vmlinux 0xb257d226 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xb28b2a0a vma_set_file -EXPORT_SYMBOL vmlinux 0xb28baae4 __folio_alloc -EXPORT_SYMBOL vmlinux 0xb28e9f98 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xb2a0a00d register_cdrom -EXPORT_SYMBOL vmlinux 0xb2a5941c dev_change_flags +EXPORT_SYMBOL vmlinux 0xb237e28a register_framebuffer +EXPORT_SYMBOL vmlinux 0xb24091e1 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xb2412e13 dquot_file_open +EXPORT_SYMBOL vmlinux 0xb24c4cbf tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xb253462b vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xb26e6e1c dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xb2950df2 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xb29890a1 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xb2a3fbf0 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xb2b04667 sock_pfree -EXPORT_SYMBOL vmlinux 0xb2c72ed3 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xb2e039dd rproc_detach +EXPORT_SYMBOL vmlinux 0xb2c81666 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xb2d096d7 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xb2d23045 key_link +EXPORT_SYMBOL vmlinux 0xb2db9f6d input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xb2dcb649 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xb2e3d729 kobject_set_name EXPORT_SYMBOL vmlinux 0xb2e3f1a9 gnet_stats_add_basic -EXPORT_SYMBOL vmlinux 0xb2ebfed8 serio_rescan +EXPORT_SYMBOL vmlinux 0xb2e61b9c ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xb2f268bc sdev_prefix_printk EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f7a771 __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb30d18cc napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb322eb4b netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 -EXPORT_SYMBOL vmlinux 0xb32bca13 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xb33a3fde sync_filesystem +EXPORT_SYMBOL vmlinux 0xb33ff318 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xb341638e skb_trim EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats EXPORT_SYMBOL vmlinux 0xb3545fd0 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xb35724ed tty_unthrottle -EXPORT_SYMBOL vmlinux 0xb35bed64 md_write_inc -EXPORT_SYMBOL vmlinux 0xb360a5ae retire_super +EXPORT_SYMBOL vmlinux 0xb362e586 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb364f885 file_remove_privs EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb3716e34 d_alloc -EXPORT_SYMBOL vmlinux 0xb3810c89 set_page_dirty -EXPORT_SYMBOL vmlinux 0xb38522e1 flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0xb38da0da locks_delete_block -EXPORT_SYMBOL vmlinux 0xb395a153 copy_page_to_iter_nofault -EXPORT_SYMBOL vmlinux 0xb39a95bc configfs_unregister_group -EXPORT_SYMBOL vmlinux 0xb39fc01f timestamp_truncate -EXPORT_SYMBOL vmlinux 0xb3b0ac2c md_flush_request -EXPORT_SYMBOL vmlinux 0xb3b458a3 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xb3c29d5b vme_register_driver -EXPORT_SYMBOL vmlinux 0xb3caa69a jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0xb3d1944e serio_unregister_port +EXPORT_SYMBOL vmlinux 0xb38fac4c phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xb3904096 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xb3b2eecc security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xb3bf069b file_ns_capable EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3df8a72 nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0xb3e3ac95 _raw_read_lock -EXPORT_SYMBOL vmlinux 0xb3e42247 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xb3ec4a45 vc_cons EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f39efa scsicam_bios_param EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul -EXPORT_SYMBOL vmlinux 0xb3f75de7 bio_kmalloc EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table +EXPORT_SYMBOL vmlinux 0xb40b8e5e fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xb421cd3a blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42ec81b scm_fp_dup EXPORT_SYMBOL vmlinux 0xb44478a6 qe_pin_free +EXPORT_SYMBOL vmlinux 0xb4648f3d generic_write_end EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xb482940d scsi_host_alloc -EXPORT_SYMBOL vmlinux 0xb482b586 gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xb49e5da2 scsi_partsize -EXPORT_SYMBOL vmlinux 0xb4ac5286 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0xb4afa7d5 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0xb4b4de69 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0xb4d871d5 vio_enable_interrupts -EXPORT_SYMBOL vmlinux 0xb4daf5c6 nf_log_register -EXPORT_SYMBOL vmlinux 0xb4e7c7b2 vme_init_bridge -EXPORT_SYMBOL vmlinux 0xb4ed5dce tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xb4f2d766 finish_open -EXPORT_SYMBOL vmlinux 0xb5084df5 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0xb50f0c2e sget_fc -EXPORT_SYMBOL vmlinux 0xb513be56 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xb537ee1c neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xb4cf14fc udp_disconnect +EXPORT_SYMBOL vmlinux 0xb4e605c8 build_skb +EXPORT_SYMBOL vmlinux 0xb4e97066 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xb4ef7762 start_tty +EXPORT_SYMBOL vmlinux 0xb4fada3a vga_client_register +EXPORT_SYMBOL vmlinux 0xb502457e notify_change +EXPORT_SYMBOL vmlinux 0xb52994cd __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0xb555f9f3 gtm_get_specific_timer16 -EXPORT_SYMBOL vmlinux 0xb5638e93 register_key_type -EXPORT_SYMBOL vmlinux 0xb571fe7f sock_no_listen -EXPORT_SYMBOL vmlinux 0xb5804718 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xb5830414 scsi_device_get +EXPORT_SYMBOL vmlinux 0xb57d094e cdev_alloc +EXPORT_SYMBOL vmlinux 0xb5871810 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xb58ff59c msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xb5a3d73c mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b5f173 fb_validate_mode EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5d1c8ca tcf_action_exec -EXPORT_SYMBOL vmlinux 0xb5e32a0c pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xb5e4ba3e invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5f9b437 jbd2_journal_invalidate_folio -EXPORT_SYMBOL vmlinux 0xb612d3c3 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0xb615a53c md_error +EXPORT_SYMBOL vmlinux 0xb5eecc2b param_ops_ushort +EXPORT_SYMBOL vmlinux 0xb5fc6e0f __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xb5fe904d d_path +EXPORT_SYMBOL vmlinux 0xb6001164 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xb602fc45 unpin_user_pages EXPORT_SYMBOL vmlinux 0xb6192383 prepare_creds -EXPORT_SYMBOL vmlinux 0xb625f830 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0xb62636f9 napi_disable -EXPORT_SYMBOL vmlinux 0xb62aa58d dev_uc_add +EXPORT_SYMBOL vmlinux 0xb62f27e9 pci_free_irq +EXPORT_SYMBOL vmlinux 0xb630286b genphy_read_master_slave EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable EXPORT_SYMBOL vmlinux 0xb6361231 mutex_is_locked +EXPORT_SYMBOL vmlinux 0xb641914a __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xb64a0dc5 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xb64fbd0d dup_iter EXPORT_SYMBOL vmlinux 0xb653a29c commit_creds +EXPORT_SYMBOL vmlinux 0xb65f8c9b dev_graft_qdisc EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb677941a dquot_set_dqblk EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67d3dfd scsi_add_device EXPORT_SYMBOL vmlinux 0xb67f317e of_get_cpu_node EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb690e05e sget EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6aca816 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xb69eb282 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xb69fe3a3 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6acc1e2 param_get_ulong +EXPORT_SYMBOL vmlinux 0xb6b0bbdb dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xb6c64a20 folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xb6ca2b67 twl6040_set_pll EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6d41a44 tls_handshake_cancel -EXPORT_SYMBOL vmlinux 0xb6e1325f kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e74823 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xb6fcdd1e mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0xb6f9a3c8 i2c_find_device_by_fwnode EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb703d3a5 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb70ca0ba vme_dma_list_free EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb71b12d3 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xb71b0719 rt6_lookup EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section -EXPORT_SYMBOL vmlinux 0xb72dbdc4 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xb734e34f nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xb73803af iterate_fd -EXPORT_SYMBOL vmlinux 0xb75064c5 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xb75186c6 of_node_name_eq EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb774646e tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xb77d18e5 vfs_copy_file_range EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7906b69 __check_sticky -EXPORT_SYMBOL vmlinux 0xb7ac317b neigh_seq_next +EXPORT_SYMBOL vmlinux 0xb78e3a1d iput +EXPORT_SYMBOL vmlinux 0xb78f4572 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xb790b46a simple_lookup +EXPORT_SYMBOL vmlinux 0xb7967d06 __module_get EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7d1869c t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb7cac8fc blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xb7cf4a3a pci_iomap_range EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0xb7d7b713 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xb7d95076 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0xb7e1602e tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xb8040ef6 simple_empty +EXPORT_SYMBOL vmlinux 0xb7db907c devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xb7dcdd57 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xb7f6eeab generic_perform_write +EXPORT_SYMBOL vmlinux 0xb80afb09 __vio_register_driver EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb8352895 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0xb857188c security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xb85c169c consume_skb -EXPORT_SYMBOL vmlinux 0xb85fbf2a neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xb861a7a8 phy_resume +EXPORT_SYMBOL vmlinux 0xb812e037 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xb81cfa8b devm_register_netdev +EXPORT_SYMBOL vmlinux 0xb824b842 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xb844aa81 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xb845fdc5 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xb84e6c18 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xb8537484 pci_find_resource +EXPORT_SYMBOL vmlinux 0xb8578c46 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xb859ab54 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xb85ecc9c do_splice_direct EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb8705bee seq_write -EXPORT_SYMBOL vmlinux 0xb8918a6d csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xb893a4d8 is_nd_dax +EXPORT_SYMBOL vmlinux 0xb88aa4a4 softnet_data +EXPORT_SYMBOL vmlinux 0xb88b88c9 netdev_alert EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89ce045 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xb89fe35d netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xb8a48663 generic_write_checks +EXPORT_SYMBOL vmlinux 0xb8a9d834 of_device_is_available EXPORT_SYMBOL vmlinux 0xb8ab2c05 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xb8ab48e6 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b0ce22 kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0xb8b6195e neigh_changeaddr -EXPORT_SYMBOL vmlinux 0xb8dfa314 key_link +EXPORT_SYMBOL vmlinux 0xb8ce4fa2 io_uring_destruct_scm +EXPORT_SYMBOL vmlinux 0xb8e34c42 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xb8f597b4 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xb8fc6e0a kfree_skb_partial EXPORT_SYMBOL vmlinux 0xb8fe4183 mtree_store_range -EXPORT_SYMBOL vmlinux 0xb9056c29 _copy_to_iter EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9139473 of_platform_device_create -EXPORT_SYMBOL vmlinux 0xb935879f __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0xb9364817 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xb92e2fdf ip_options_compile +EXPORT_SYMBOL vmlinux 0xb934656a console_stop EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb951cb4d unregister_quota_format +EXPORT_SYMBOL vmlinux 0xb951ecff radix__flush_all_mm +EXPORT_SYMBOL vmlinux 0xb95d1c95 page_mapping EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb981a961 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xb97742a2 xfrm_state_add EXPORT_SYMBOL vmlinux 0xb9825984 __klp_sched_try_switch -EXPORT_SYMBOL vmlinux 0xb9859d94 single_release -EXPORT_SYMBOL vmlinux 0xb99ac5f7 register_shrinker -EXPORT_SYMBOL vmlinux 0xb9d8d372 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xb98665df __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb9974f44 pcie_capability_clear_and_set_word_unlocked +EXPORT_SYMBOL vmlinux 0xb99bff8e bpf_map_get +EXPORT_SYMBOL vmlinux 0xb9e3d639 param_array_ops EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9e953df tcf_idr_create +EXPORT_SYMBOL vmlinux 0xb9f3b158 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xb9f42abb simple_transaction_set +EXPORT_SYMBOL vmlinux 0xb9f68937 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba06b7c3 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xba08e446 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xba0751ba dm_get_device EXPORT_SYMBOL vmlinux 0xba093b30 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xba0b90cd peernet2id EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba13d177 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xba25fd9f vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xba3e0491 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xba3ee9ea sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xba11f850 handshake_req_private +EXPORT_SYMBOL vmlinux 0xba446e11 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0xba48c65a dev_mc_unsync EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba5f5a31 cdrom_release -EXPORT_SYMBOL vmlinux 0xba615df2 set_capacity -EXPORT_SYMBOL vmlinux 0xba6177f5 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xba59ad2b cdrom_get_last_written EXPORT_SYMBOL vmlinux 0xba67a355 nmi_panic EXPORT_SYMBOL vmlinux 0xba691c85 _insb +EXPORT_SYMBOL vmlinux 0xba6e2947 inet_offloads +EXPORT_SYMBOL vmlinux 0xba6ec4c4 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba893080 key_task_permission -EXPORT_SYMBOL vmlinux 0xba922214 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xba9f3b8a sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xbaa56e55 vme_slave_request -EXPORT_SYMBOL vmlinux 0xbac69cbe ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xba7fc824 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xba83f3ef folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xba88da9a icmp6_send +EXPORT_SYMBOL vmlinux 0xba8f5ed0 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xbaa8eef9 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xbac1376f fc_mount +EXPORT_SYMBOL vmlinux 0xbac2788b zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbacdc10b ipv4_specific -EXPORT_SYMBOL vmlinux 0xbadc748f d_set_fallthru -EXPORT_SYMBOL vmlinux 0xbaf0f961 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xbae16111 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xbae830a7 lookup_one_len +EXPORT_SYMBOL vmlinux 0xbae87d09 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xbaed37d5 dget_parent +EXPORT_SYMBOL vmlinux 0xbaf5d417 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb19bc1c framebuffer_release +EXPORT_SYMBOL vmlinux 0xbb1cbf7d kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2daa1d ping_prot -EXPORT_SYMBOL vmlinux 0xbb35b354 input_register_handle +EXPORT_SYMBOL vmlinux 0xbb2e115b fs_param_is_fd EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb5a7173 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xbb6851f6 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xbb76b9fc kill_block_super +EXPORT_SYMBOL vmlinux 0xbb5e8c2d d_drop EXPORT_SYMBOL vmlinux 0xbb7b414e gtm_stop_timer16 -EXPORT_SYMBOL vmlinux 0xbb8612e5 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xbb8dc6c7 pci_dev_get -EXPORT_SYMBOL vmlinux 0xbb994bdb input_set_keycode -EXPORT_SYMBOL vmlinux 0xbba28d37 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0xbba50986 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xbb94f66e genphy_c45_eee_is_active EXPORT_SYMBOL vmlinux 0xbba75607 down_killable -EXPORT_SYMBOL vmlinux 0xbbba5589 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xbbbc9729 pcie_capability_clear_and_set_word_locked -EXPORT_SYMBOL vmlinux 0xbbd113f1 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xbbfb507f pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xbc18bfda inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0xbc190659 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xbc1aa56d mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xbc2040e6 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0xbc41c347 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xbba9d4f5 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xbbbdebcc xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xbbce44c7 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xbbd38234 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xbbe21b70 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xbbef737a generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xbbf4e2b3 param_set_ushort +EXPORT_SYMBOL vmlinux 0xbbfd7e65 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xbc00f0ac __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xbc01a76d __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbc1ef033 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xbc37e50b vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0xbc42c17f mutex_unlock -EXPORT_SYMBOL vmlinux 0xbc652169 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xbc507e42 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xbc830077 security_path_rename EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags EXPORT_SYMBOL vmlinux 0xbc9b0e18 config_item_get EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb36140 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xbcb97e7c nd_pfn_validate -EXPORT_SYMBOL vmlinux 0xbcbe451e tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0xbcbe4a52 dma_fence_describe -EXPORT_SYMBOL vmlinux 0xbce806cd dev_get_iflink -EXPORT_SYMBOL vmlinux 0xbcef9cfd mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xbcbc85eb neigh_for_each EXPORT_SYMBOL vmlinux 0xbcf54e7f _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0xbd08c12f open_exec -EXPORT_SYMBOL vmlinux 0xbd1dcc46 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xbd2b94b8 input_unregister_device +EXPORT_SYMBOL vmlinux 0xbcfad813 nd_dax_probe +EXPORT_SYMBOL vmlinux 0xbcfee89d unix_get_socket +EXPORT_SYMBOL vmlinux 0xbd0a89c8 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xbd2b4ff9 may_umount +EXPORT_SYMBOL vmlinux 0xbd2d515b locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xbd30244a folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xbd3260d7 __scsi_print_sense EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xbd413715 tcp_read_done EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd578689 neigh_lookup +EXPORT_SYMBOL vmlinux 0xbd476e18 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xbd565f0f tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xbd5b49aa input_close_device EXPORT_SYMBOL vmlinux 0xbd5e69b0 devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xbd6154e3 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6923c1 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xbd77c974 pcim_iounmap -EXPORT_SYMBOL vmlinux 0xbd7ffbf2 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xbd86d470 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xbd89a72b jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xbd903e20 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xbdb66bfa iov_iter_zero -EXPORT_SYMBOL vmlinux 0xbdc40d89 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0xbdc6ba62 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xbdd33c3e fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0xbdeea12a bio_put -EXPORT_SYMBOL vmlinux 0xbdf94bd7 param_get_string +EXPORT_SYMBOL vmlinux 0xbd6b4855 param_get_int +EXPORT_SYMBOL vmlinux 0xbd727fe4 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xbd7a971e tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xbd995827 inet_addr_type +EXPORT_SYMBOL vmlinux 0xbda189e4 seq_dentry +EXPORT_SYMBOL vmlinux 0xbdaf6ed9 simple_getattr +EXPORT_SYMBOL vmlinux 0xbdc632a7 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xbde10bbe input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xbde1f087 dst_destroy +EXPORT_SYMBOL vmlinux 0xbde91cc1 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xbe13d117 __lock_buffer EXPORT_SYMBOL vmlinux 0xbe144437 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xbe2279ea xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xbe33575d nf_log_packet -EXPORT_SYMBOL vmlinux 0xbe38dd38 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xbe45ba43 dump_skip +EXPORT_SYMBOL vmlinux 0xbe1b42e8 sk_error_report +EXPORT_SYMBOL vmlinux 0xbe1f41c4 input_copy_abs +EXPORT_SYMBOL vmlinux 0xbe376f16 d_tmpfile EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe588872 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe607a04 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xbe5d443b md_flush_request +EXPORT_SYMBOL vmlinux 0xbe5ead9b tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xbe689014 dump_page +EXPORT_SYMBOL vmlinux 0xbe69fd8e d_instantiate EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe7f3214 scsi_dma_map -EXPORT_SYMBOL vmlinux 0xbe9f175a udp_prot -EXPORT_SYMBOL vmlinux 0xbea76407 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xbe76c47a tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xbe999921 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xbeaba441 task_work_add EXPORT_SYMBOL vmlinux 0xbead7fdc __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xbeafbb14 file_path -EXPORT_SYMBOL vmlinux 0xbeb9bde3 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xbec40545 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xbeafa7d0 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xbeb5595a pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0xbec1a944 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xbedde78e pci_iounmap +EXPORT_SYMBOL vmlinux 0xbeee946b napi_gro_flush +EXPORT_SYMBOL vmlinux 0xbeef0537 napi_get_frags EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef78eb6 security_path_unlink EXPORT_SYMBOL vmlinux 0xbefa76db ns_capable_setid -EXPORT_SYMBOL vmlinux 0xbeffb1d2 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xbf0e8d64 finish_no_open +EXPORT_SYMBOL vmlinux 0xbf141c49 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xbf16de45 lock_rename +EXPORT_SYMBOL vmlinux 0xbf19b922 dev_open EXPORT_SYMBOL vmlinux 0xbf1cd29f regset_get_alloc -EXPORT_SYMBOL vmlinux 0xbf3b736f neigh_xmit -EXPORT_SYMBOL vmlinux 0xbf585633 build_skb +EXPORT_SYMBOL vmlinux 0xbf23c80b i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xbf306ab4 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xbf31ec0f seq_putc EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init EXPORT_SYMBOL vmlinux 0xbf6908b2 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbf6ade30 of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0xbf7c8b56 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0xbfa21753 tcp_seq_next -EXPORT_SYMBOL vmlinux 0xbfa5d535 seq_release +EXPORT_SYMBOL vmlinux 0xbf6f58d5 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xbf809ed2 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xbf84992d read_cache_folio +EXPORT_SYMBOL vmlinux 0xbfa2bc7d flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate -EXPORT_SYMBOL vmlinux 0xbfb43baa param_set_int -EXPORT_SYMBOL vmlinux 0xbfbe56ce try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xbfaf035c xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xbfb424c1 tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfd3d809 wake_up_process -EXPORT_SYMBOL vmlinux 0xbfdaceaa copy_splice_read -EXPORT_SYMBOL vmlinux 0xbfe1f13d genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xbff34f31 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xbfc3de8b fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xbfc4d8b6 ppc_md +EXPORT_SYMBOL vmlinux 0xbfcc4646 bioset_init +EXPORT_SYMBOL vmlinux 0xbfda3961 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xbfe5cee0 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xbfe69684 devfreq_update_status EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets -EXPORT_SYMBOL vmlinux 0xc00fb5c6 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xc033b573 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xc0021b07 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xc003461b devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xc00c746a ppp_input_error +EXPORT_SYMBOL vmlinux 0xc0181e30 rw_verify_area EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc0432055 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xc04ee18f pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xc056f7f4 skb_condense EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get -EXPORT_SYMBOL vmlinux 0xc0686f3b rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xc06a5511 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xc074b3b4 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0841511 ip_frag_next +EXPORT_SYMBOL vmlinux 0xc07bfb27 deactivate_super EXPORT_SYMBOL vmlinux 0xc0889e5f __do_once_sleepable_done -EXPORT_SYMBOL vmlinux 0xc09693b0 proc_mkdir +EXPORT_SYMBOL vmlinux 0xc0915d2a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xc0a99147 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init -EXPORT_SYMBOL vmlinux 0xc0bfec7b iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xc0cb725d genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xc0d1875a ethtool_aggregate_mac_stats +EXPORT_SYMBOL vmlinux 0xc0ce837b netlink_kernel_release EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue -EXPORT_SYMBOL vmlinux 0xc0ddc9a1 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xc0e046e9 pci_release_resource -EXPORT_SYMBOL vmlinux 0xc0eded51 nd_btt_version -EXPORT_SYMBOL vmlinux 0xc0f12303 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xc0d8303e ppp_unit_number EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc101b4a1 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xc10804fc dentry_create -EXPORT_SYMBOL vmlinux 0xc1108e96 security_path_rename +EXPORT_SYMBOL vmlinux 0xc11324f2 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xc11625b2 of_find_node_with_property EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc11c589b sock_efree -EXPORT_SYMBOL vmlinux 0xc125c6be dup_iter -EXPORT_SYMBOL vmlinux 0xc1333047 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xc14b6e83 of_get_mac_address_nvmem -EXPORT_SYMBOL vmlinux 0xc1509983 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xc1237d65 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xc1469a3e invalidate_bdev EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc15636a5 agp_collect_device_status -EXPORT_SYMBOL vmlinux 0xc1579ff3 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xc1548379 simple_write_begin +EXPORT_SYMBOL vmlinux 0xc15801b5 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0xc15cea07 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc163f59f dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xc166cf1d kmem_cache_destroy EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1706ba5 tty_check_change -EXPORT_SYMBOL vmlinux 0xc178c72a unlock_buffer -EXPORT_SYMBOL vmlinux 0xc17b48ce ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xc182ffbf del_gendisk -EXPORT_SYMBOL vmlinux 0xc1986f62 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xc19a2bce page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0xc19d2b0c pps_unregister_source -EXPORT_SYMBOL vmlinux 0xc1c25539 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xc1c93dc0 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc17af3d4 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xc17d2f04 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xc1928a05 blk_finish_plug EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc1cff917 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xc1d121a2 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc20932c1 mmc_erase -EXPORT_SYMBOL vmlinux 0xc20df71c sk_alloc -EXPORT_SYMBOL vmlinux 0xc20ee1f3 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xc223be41 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xc224f68b of_find_device_by_node -EXPORT_SYMBOL vmlinux 0xc2260253 skb_copy_header -EXPORT_SYMBOL vmlinux 0xc2273076 set_binfmt -EXPORT_SYMBOL vmlinux 0xc22ea65b tcp_child_process +EXPORT_SYMBOL vmlinux 0xc1e50a3e rtnl_unicast +EXPORT_SYMBOL vmlinux 0xc202af82 elevator_alloc +EXPORT_SYMBOL vmlinux 0xc2071654 tso_start +EXPORT_SYMBOL vmlinux 0xc20dcbf0 devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xc2156a60 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xc2173382 request_key_tag +EXPORT_SYMBOL vmlinux 0xc22406a6 sk_capable +EXPORT_SYMBOL vmlinux 0xc22c7bad sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup -EXPORT_SYMBOL vmlinux 0xc244308c slab_build_skb EXPORT_SYMBOL vmlinux 0xc2490212 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0xc2495204 file_modified -EXPORT_SYMBOL vmlinux 0xc24b0486 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xc25d9aef get_tree_nodev -EXPORT_SYMBOL vmlinux 0xc264e523 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xc2872f79 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xc25383fc seq_write +EXPORT_SYMBOL vmlinux 0xc25b555a setup_arg_pages +EXPORT_SYMBOL vmlinux 0xc25de342 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xc265a655 sock_i_ino +EXPORT_SYMBOL vmlinux 0xc267f3de fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xc28064bc mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xc290aea7 keyring_clear EXPORT_SYMBOL vmlinux 0xc29bf967 strspn EXPORT_SYMBOL vmlinux 0xc2addae6 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0xc2c0099a d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xc2af8a5f sock_gettstamp +EXPORT_SYMBOL vmlinux 0xc2c1080a folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xc2c3e4db backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2e003f9 md_check_recovery EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2eac216 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xc2eb01c4 blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc30ec06f thaw_bdev EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31885a4 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xc31c0fe5 pci_choose_state EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc3292bf7 of_find_node_by_type EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc346c19c make_kuid -EXPORT_SYMBOL vmlinux 0xc3591a4b of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xc331b43c input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xc33dd2d5 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xc3511068 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc35b82dc module_layout -EXPORT_SYMBOL vmlinux 0xc37b4087 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xc36fc0c8 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc3705965 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3a34ac5 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xc3c2c681 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xc3c58675 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xc3cdceb7 dst_alloc -EXPORT_SYMBOL vmlinux 0xc3ee3e31 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0xc3fdd47a scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0xc4017589 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xc39a2c84 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xc3a6b34c unregister_key_type +EXPORT_SYMBOL vmlinux 0xc3aa8aa9 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xc3b35488 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xc3b58735 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xc3b9e5d3 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc3cd539b security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xc3d425eb ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xc3e54951 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xc3eb7f1d mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xc3fd559e generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xc406378b inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xc410a568 param_ops_charp +EXPORT_SYMBOL vmlinux 0xc411d97d i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc415e401 __getblk_gfp EXPORT_SYMBOL vmlinux 0xc4180188 mtree_alloc_range -EXPORT_SYMBOL vmlinux 0xc419f4c1 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0xc41eb805 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4344043 inet6_del_offload -EXPORT_SYMBOL vmlinux 0xc4378197 devm_register_netdev -EXPORT_SYMBOL vmlinux 0xc4390b1c __neigh_create +EXPORT_SYMBOL vmlinux 0xc433155e ip_frag_init EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc460b531 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0xc46b5031 do_SAK +EXPORT_SYMBOL vmlinux 0xc45961e7 folio_add_lru +EXPORT_SYMBOL vmlinux 0xc4632be5 ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc47427c3 vme_master_mmap EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47ed59d blk_sync_queue -EXPORT_SYMBOL vmlinux 0xc48d0f90 tls_client_hello_psk -EXPORT_SYMBOL vmlinux 0xc48eb24f pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xc4a2275a mmc_of_parse +EXPORT_SYMBOL vmlinux 0xc48d07a0 vm_iomap_memory EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4c38326 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xc4b2943e __post_watch_notification +EXPORT_SYMBOL vmlinux 0xc4c75a46 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xc4c8b1d2 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xc4cdf48f _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0xc4e01f92 show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xc4e0b7e8 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xc4e49c69 dquot_destroy -EXPORT_SYMBOL vmlinux 0xc4e6a3b3 agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0xc4e6da77 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xc4f9b6c8 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xc4d1f4d7 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xc507f36d xattr_full_name EXPORT_SYMBOL vmlinux 0xc51a3640 down_write_killable -EXPORT_SYMBOL vmlinux 0xc52549a2 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0xc53dcf84 dev_get_by_index -EXPORT_SYMBOL vmlinux 0xc547c9c1 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xc55f21c2 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xc51f846b pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xc53e5c66 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc55087b0 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xc56b1d23 block_dirty_folio EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc571a435 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xc57d2daa dcb_delrewr +EXPORT_SYMBOL vmlinux 0xc57e8244 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc595af5a block_write_full_page +EXPORT_SYMBOL vmlinux 0xc58fa2df skb_queue_head EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table -EXPORT_SYMBOL vmlinux 0xc5b69e5a xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc5a636bf tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c01a63 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xc5c3eb20 sock_kfree_s EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5e7a4fd nf_log_unregister -EXPORT_SYMBOL vmlinux 0xc5e95958 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xc600e43b tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0xc602ebca ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xc6026adb blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc6118730 flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc62687d5 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xc62cbe2a tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc6395d60 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xc63ef6f7 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xc63dc123 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xc646e38b nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xc64a3153 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xc65c1099 simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc66146d4 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xc65e8628 xp_can_alloc EXPORT_SYMBOL vmlinux 0xc664b528 mempool_create_node EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc69efa31 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0xc6a08ac6 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xc6692523 kthread_stop +EXPORT_SYMBOL vmlinux 0xc67ee740 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xc6845aa7 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xc687a2a7 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xc6ab984c register_console +EXPORT_SYMBOL vmlinux 0xc6aba4b0 inode_init_always +EXPORT_SYMBOL vmlinux 0xc6b2f4dc request_firmware +EXPORT_SYMBOL vmlinux 0xc6b3031a skb_copy_header +EXPORT_SYMBOL vmlinux 0xc6b55cb0 try_module_get EXPORT_SYMBOL vmlinux 0xc6b61a82 sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0xc6bdd154 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xc6c1bd72 inet_accept -EXPORT_SYMBOL vmlinux 0xc6c40cb0 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io -EXPORT_SYMBOL vmlinux 0xc6dadbf3 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0xc6e9e2ae rtnl_unicast EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc70aa0fc peernet2id -EXPORT_SYMBOL vmlinux 0xc71d53a4 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xc7117e40 simple_rmdir +EXPORT_SYMBOL vmlinux 0xc7153f90 gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc725b920 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xc72c6821 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xc734bb08 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0xc7616eb9 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0xc771987f __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xc77acb90 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xc78145e4 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc72f59e7 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xc7559127 block_write_begin +EXPORT_SYMBOL vmlinux 0xc760d614 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xc7717ae7 vga_get EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc788edc0 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xc78f78e2 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xc78d1484 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xc792a764 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xc79993ce pmem_should_map_pages EXPORT_SYMBOL vmlinux 0xc79ccfdf dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xc7a44f19 dma_find_channel EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7b7b6bc bio_init_clone +EXPORT_SYMBOL vmlinux 0xc7bdbc58 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c25afd netlink_unicast -EXPORT_SYMBOL vmlinux 0xc7d4468a skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xc7ca19eb xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xc7df48eb ip_generic_getfrag EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy -EXPORT_SYMBOL vmlinux 0xc82d8826 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xc801abea security_unix_may_send +EXPORT_SYMBOL vmlinux 0xc80402f5 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0xc8052786 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xc81a8ee7 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xc81b7b4b seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc83dba88 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xc8446a38 sync_blockdev EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc86d6179 vfs_llseek EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8764b12 netpoll_print_options EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88b24d0 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xc88ff1ee eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc89baf7b km_state_expired -EXPORT_SYMBOL vmlinux 0xc8a526ae jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xc8a7cac3 ndisc_ns_create EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ae04fa get_vm_area EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table -EXPORT_SYMBOL vmlinux 0xc8c883e6 pcie_get_readrq EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e129cb inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0xc8f5a95a wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xc8f7523b xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0xc90f9b20 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xc8fe3a99 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc9186837 of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0xc91fefd1 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0xc944a2db devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xc9450496 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xc946d062 do_splice_direct -EXPORT_SYMBOL vmlinux 0xc95170b5 simple_unlink +EXPORT_SYMBOL vmlinux 0xc953e6c9 __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0xc955cb2c down_trylock -EXPORT_SYMBOL vmlinux 0xc9608bfe __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xc9566927 configfs_register_default_group EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc970c024 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc97d7443 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0xc97da92b of_chosen -EXPORT_SYMBOL vmlinux 0xc97df0f5 twl6040_set_bits EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc9949a14 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc990d5d1 kill_anon_super EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9a3ab77 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0xc9ae3194 tty_port_put -EXPORT_SYMBOL vmlinux 0xc9b63270 file_ns_capable -EXPORT_SYMBOL vmlinux 0xc9c5e18c seq_read_iter -EXPORT_SYMBOL vmlinux 0xc9c5f0a9 iput -EXPORT_SYMBOL vmlinux 0xc9d97de9 dev_kfree_skb_irq_reason +EXPORT_SYMBOL vmlinux 0xc9ac852b dm_table_get_md +EXPORT_SYMBOL vmlinux 0xc9d28153 set_posix_acl +EXPORT_SYMBOL vmlinux 0xc9d7cabe dev_set_allmulti EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9f08e58 netif_device_detach -EXPORT_SYMBOL vmlinux 0xca13976e device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xc9e120a8 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xc9e17d59 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xc9eed4c4 simple_release_fs +EXPORT_SYMBOL vmlinux 0xc9fe0c42 ilookup EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx -EXPORT_SYMBOL vmlinux 0xca16be04 phy_device_register EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit -EXPORT_SYMBOL vmlinux 0xca17c312 phy_init_eee EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca36763a tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xca28de29 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xca31d4f4 phy_resume EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca49c6ec devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xca576e84 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xca545396 set_page_writeback EXPORT_SYMBOL vmlinux 0xca5f3154 radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0xca76de0b tcf_block_get -EXPORT_SYMBOL vmlinux 0xca77f153 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xca7dfd55 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xca6ca3c8 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xca7b15af dma_set_mask +EXPORT_SYMBOL vmlinux 0xca870038 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xca882598 backlight_device_register +EXPORT_SYMBOL vmlinux 0xca9297a9 srp_timed_out EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca941a36 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xcaa56dec mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xcab40cad security_socket_socketpair -EXPORT_SYMBOL vmlinux 0xcabc6619 param_get_invbool -EXPORT_SYMBOL vmlinux 0xcac2cd08 poll_initwait -EXPORT_SYMBOL vmlinux 0xcad006e7 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xcadc2676 request_key_rcu +EXPORT_SYMBOL vmlinux 0xcad34b1b twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xcaf066e6 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0459ba fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xcb0b60fc md_write_start EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait +EXPORT_SYMBOL vmlinux 0xcb39fed2 iov_iter_zero EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit -EXPORT_SYMBOL vmlinux 0xcb554544 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xcb68ec24 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xcb8e72f0 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xcbb37301 pci_read_config_word -EXPORT_SYMBOL vmlinux 0xcbb8d75c mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xcb475835 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xcb4d99e6 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xcb614d8e find_inode_nowait +EXPORT_SYMBOL vmlinux 0xcb701b2e serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xcb72393b mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xcb7ac8eb phy_start_aneg +EXPORT_SYMBOL vmlinux 0xcb9d1e26 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xcbabf1b6 dst_init EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc1953d dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure -EXPORT_SYMBOL vmlinux 0xcbd263cd blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic EXPORT_SYMBOL vmlinux 0xcbdbde47 __debugger_iabr_match -EXPORT_SYMBOL vmlinux 0xcbed6850 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xcbfadcb5 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0xcbdc2711 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xcbe2e841 of_device_register +EXPORT_SYMBOL vmlinux 0xcbe43c31 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xcbeb4a3e vme_dma_request EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcbfd3cc9 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0xcc0b8144 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xcc1ae2ed rproc_add EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc25e1e6 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xcc254b15 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xcc2f9ac3 netdev_err EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc38fbcf input_inject_event EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup -EXPORT_SYMBOL vmlinux 0xcc3acf61 bio_split_to_limits EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc619263 vfs_fsync +EXPORT_SYMBOL vmlinux 0xcc5df486 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0xcc626c2c completion_done -EXPORT_SYMBOL vmlinux 0xcc63de69 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xcc8df2f3 pci_find_hose_for_OF_device -EXPORT_SYMBOL vmlinux 0xcc9bfe3d __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xcc9d87e0 dm_table_get_md -EXPORT_SYMBOL vmlinux 0xccb1acc7 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xccb40534 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xccbe5918 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0xccc036e5 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xccee6c63 unpin_user_page +EXPORT_SYMBOL vmlinux 0xcc789cf1 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xcc7b31dc gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xccad98bf aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xccbe1c57 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xccbf94ff jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xcccb630d gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xccd2be97 mmc_free_host +EXPORT_SYMBOL vmlinux 0xccdaddb8 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xccedf476 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd11d5fc t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0xcd1b25b4 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xcd02d0d8 rproc_alloc +EXPORT_SYMBOL vmlinux 0xcd0d15f4 __ClearPageMovable EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd2abd47 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xcd2c5738 inode_nohighmem -EXPORT_SYMBOL vmlinux 0xcd2f6c3b pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xcd36145e elv_rb_find +EXPORT_SYMBOL vmlinux 0xcd2aeed4 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xcd345f65 param_ops_bint +EXPORT_SYMBOL vmlinux 0xcd40bc91 pneigh_enqueue EXPORT_SYMBOL vmlinux 0xcd46528d dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xcd588918 kernel_accept -EXPORT_SYMBOL vmlinux 0xcd589997 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xcd7e6300 phy_modify_paged -EXPORT_SYMBOL vmlinux 0xcd83a076 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xcd53bbf1 arp_xmit +EXPORT_SYMBOL vmlinux 0xcd7851dc tcp_read_skb +EXPORT_SYMBOL vmlinux 0xcd7b22bb phy_suspend +EXPORT_SYMBOL vmlinux 0xcd83f622 msi_bitmap_alloc_hwirqs EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd8a945c tty_port_close +EXPORT_SYMBOL vmlinux 0xcd8d3fe0 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xcd9e4913 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xcdb11c81 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xcdbd6758 i2c_find_adapter_by_fwnode EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xcdc20dc1 mmc_hw_reset EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdcf4862 of_iommu_get_resv_regions -EXPORT_SYMBOL vmlinux 0xcdd68650 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xcde5a00c phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xcdce309d nd_btt_version +EXPORT_SYMBOL vmlinux 0xcdd3fa3f simple_dir_operations +EXPORT_SYMBOL vmlinux 0xcdd71a3c pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xcdd73e94 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev EXPORT_SYMBOL vmlinux 0xcdee038f _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0xce12e9ee tty_name +EXPORT_SYMBOL vmlinux 0xcdf2f865 has_capability EXPORT_SYMBOL vmlinux 0xce18bbe1 fsl_lbc_addr -EXPORT_SYMBOL vmlinux 0xce27c40e input_setup_polling EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3b4f67 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xce42e7bd xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0xce2c6ca9 generic_listxattr +EXPORT_SYMBOL vmlinux 0xce476486 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xce4c274b vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce588e97 page_get_link EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce695062 genphy_resume -EXPORT_SYMBOL vmlinux 0xce69638e of_find_node_by_name EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock -EXPORT_SYMBOL vmlinux 0xce7c0c2e generic_delete_inode EXPORT_SYMBOL vmlinux 0xce807151 idr_get_next -EXPORT_SYMBOL vmlinux 0xce927c28 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xcea3039f forget_cached_acl -EXPORT_SYMBOL vmlinux 0xcea59641 flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xce98b80a security_sb_remount +EXPORT_SYMBOL vmlinux 0xce99b71a blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb6a0a1 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xcec20e52 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xceba1bc7 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xcec0d919 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xcec1fdeb nlmsg_notify EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 -EXPORT_SYMBOL vmlinux 0xced801ee pneigh_lookup -EXPORT_SYMBOL vmlinux 0xcedebe56 mmc_gpio_get_cd -EXPORT_SYMBOL vmlinux 0xcee24183 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xcefc99b0 may_setattr +EXPORT_SYMBOL vmlinux 0xcee54bdf serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xcee95e57 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xcef49a87 kmem_cache_alloc_bulk EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcefdb008 generic_write_checks -EXPORT_SYMBOL vmlinux 0xcf0a6757 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xcf1338a6 input_free_device -EXPORT_SYMBOL vmlinux 0xcf134a15 skb_pull_data -EXPORT_SYMBOL vmlinux 0xcf276c5b rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0xcf296ab0 mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0xceff1dd1 generic_update_time +EXPORT_SYMBOL vmlinux 0xcf23a697 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xcf2b5487 xp_alloc EXPORT_SYMBOL vmlinux 0xcf2ea86b __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xcf3799b0 devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf4e5a77 buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0xcf512081 set_page_writeback -EXPORT_SYMBOL vmlinux 0xcf58571f scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xcf5a2f07 sock_from_file -EXPORT_SYMBOL vmlinux 0xcf82a5eb netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0xcf932a35 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xcf3cb5b8 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xcf626097 generic_read_dir +EXPORT_SYMBOL vmlinux 0xcf8c16a6 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xcf8ddffa skb_free_datagram EXPORT_SYMBOL vmlinux 0xcf9a189a down_timeout EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcf9eb487 d_delete -EXPORT_SYMBOL vmlinux 0xcfa82367 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xcfb63dee max8998_read_reg -EXPORT_SYMBOL vmlinux 0xcfb84d76 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xcfd660d6 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0xcfdbf1d5 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xd01e1b64 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xd02c101f __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xd0489986 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0xd049bb09 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xcfe5fad2 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xcff9f164 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xd0037eeb in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xd00a5850 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xd00b63e0 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xd013458d submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xd02129c8 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xd021d079 set_page_dirty +EXPORT_SYMBOL vmlinux 0xd0358fc5 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0xd03d79e6 __neigh_create EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd0613009 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xd0522535 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd05b3ab3 proc_mkdir EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06e9a3b seq_open_private EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07e6a45 vfs_getattr +EXPORT_SYMBOL vmlinux 0xd0850ae6 __bh_read_batch EXPORT_SYMBOL vmlinux 0xd088d63b tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xd08a6cbc kernel_connect -EXPORT_SYMBOL vmlinux 0xd0994a0a unregister_cdrom -EXPORT_SYMBOL vmlinux 0xd0c66750 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xd0dd14fa sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xd0edcb2a write_inode_now -EXPORT_SYMBOL vmlinux 0xd0f15ec3 pci_release_region +EXPORT_SYMBOL vmlinux 0xd09444d0 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xd09a78d1 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xd0a59c9b d_genocide +EXPORT_SYMBOL vmlinux 0xd0aa0eaa configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xd0aae30d param_set_short +EXPORT_SYMBOL vmlinux 0xd0e9eed2 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd0ecb5ef finalize_exec +EXPORT_SYMBOL vmlinux 0xd0f30643 tcf_action_exec EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd12bf8f4 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0xd13fb28e fsl_lbc_ctrl_dev -EXPORT_SYMBOL vmlinux 0xd1411c6b dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xd14c8fe4 phy_print_status -EXPORT_SYMBOL vmlinux 0xd1505336 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xd1561db8 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0xd1633465 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xd1655ee2 registered_fb -EXPORT_SYMBOL vmlinux 0xd16ce80a dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xd192ef6e devfreq_remove_governor -EXPORT_SYMBOL vmlinux 0xd19d575a keyring_search -EXPORT_SYMBOL vmlinux 0xd1a444b4 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xd1b86ac6 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xd1c3c002 __break_lease +EXPORT_SYMBOL vmlinux 0xd11f763d pci_get_device +EXPORT_SYMBOL vmlinux 0xd124f3b2 radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0xd128a7e3 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xd130d473 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xd13453da jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xd1376e91 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xd13b015d pci_fixup_device +EXPORT_SYMBOL vmlinux 0xd1500044 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xd170649e lease_get_mtime +EXPORT_SYMBOL vmlinux 0xd17887f4 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xd19d2a17 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xd1ca21a1 param_set_ullong +EXPORT_SYMBOL vmlinux 0xd1d84eb0 mount_single EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1d8f972 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xd1f9c048 agp_find_bridge -EXPORT_SYMBOL vmlinux 0xd20000a2 dcb_getrewr_prio_pcp_mask_map -EXPORT_SYMBOL vmlinux 0xd20e87e5 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xd1dc7827 cdev_device_add +EXPORT_SYMBOL vmlinux 0xd201f8fc iov_iter_discard +EXPORT_SYMBOL vmlinux 0xd20ab861 agp_backend_release EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi -EXPORT_SYMBOL vmlinux 0xd22a6aca pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd22d4ff6 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xd23c4c5c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xd23cf5a1 read_cache_folio +EXPORT_SYMBOL vmlinux 0xd2231ed6 path_is_mountpoint EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd257447b page_pool_unlink_napi EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xd25ad6d8 security_unix_may_send EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd264b89c get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0xd269acf8 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0xd26b04fb mr_dump EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd28060a3 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xd289fd16 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xd2b3d1cc dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd2871ba7 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xd288b5dc napi_build_skb +EXPORT_SYMBOL vmlinux 0xd289c6bd i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xd2ae16a4 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xd2b1c17c __block_write_begin EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0xd2ca714a jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd2c5e263 pci_iomap +EXPORT_SYMBOL vmlinux 0xd2d3f69b simple_statfs EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2df2d61 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0xd2e0a60f folio_wait_private_2 EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2f35fe6 input_event -EXPORT_SYMBOL vmlinux 0xd2f3aa42 con_is_visible -EXPORT_SYMBOL vmlinux 0xd2f543e2 devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xd31cc787 param_get_charp +EXPORT_SYMBOL vmlinux 0xd2e47a55 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xd30e91f9 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xd313bf5e i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd33d3911 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0xd3537ad7 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xd3263bb5 simple_unlink +EXPORT_SYMBOL vmlinux 0xd334c331 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xd34cf157 poll_freewait EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35ae6f1 sock_no_accept +EXPORT_SYMBOL vmlinux 0xd36ccb6b srp_start_tl_fail_timers EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd36e06ae reuseport_add_sock EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd377cce4 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xd37f7eb1 ip6_output -EXPORT_SYMBOL vmlinux 0xd3869075 sock_init_data +EXPORT_SYMBOL vmlinux 0xd3707ea5 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xd38665c4 thaw_bdev EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd38ff0df dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0xd3937f4b vc_cons -EXPORT_SYMBOL vmlinux 0xd396bae8 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xd3a00716 bpf_link_put +EXPORT_SYMBOL vmlinux 0xd3a0211d seq_release_private +EXPORT_SYMBOL vmlinux 0xd3bfc797 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd3c2c7cd md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xd3ca8642 skb_flow_dissect_meta EXPORT_SYMBOL vmlinux 0xd3dd71e4 register_sysctl -EXPORT_SYMBOL vmlinux 0xd3f85000 dcb_delrewr -EXPORT_SYMBOL vmlinux 0xd3fa817c flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xd3e1820b mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xd3e93ce6 xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0xd3ec200e tty_check_change EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd4303375 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0xd449c1e0 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xd40c9807 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xd425ad98 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xd42b2621 sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0xd43aa5ab tcp_mmap +EXPORT_SYMBOL vmlinux 0xd44afeae ip_local_deliver +EXPORT_SYMBOL vmlinux 0xd44e24da devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xd455d56f dm_table_get_size EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex EXPORT_SYMBOL vmlinux 0xd469bccc __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd46b1d16 of_root -EXPORT_SYMBOL vmlinux 0xd46c91e4 md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0xd478f48e skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xd487a758 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xd48120a2 disk_check_media_change EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4a225ee seq_bprintf EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find -EXPORT_SYMBOL vmlinux 0xd4de35ac sys_fillrect -EXPORT_SYMBOL vmlinux 0xd4eaf488 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0xd4dd3ba9 sk_mc_loop EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0xd5075bdc skb_split -EXPORT_SYMBOL vmlinux 0xd50a43a4 kmalloc_trace -EXPORT_SYMBOL vmlinux 0xd50ee5d7 get_tree_single -EXPORT_SYMBOL vmlinux 0xd51d2ec6 pci_select_bars -EXPORT_SYMBOL vmlinux 0xd5226708 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xd5178b8c tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xd5187139 cdev_init +EXPORT_SYMBOL vmlinux 0xd51d5d06 genphy_aneg_done EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd55740db unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xd56b2445 inode_query_iversion -EXPORT_SYMBOL vmlinux 0xd578a718 dst_destroy -EXPORT_SYMBOL vmlinux 0xd5790a78 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0xd59975e6 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xd52b67ae nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xd5323f42 key_unlink +EXPORT_SYMBOL vmlinux 0xd5530201 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xd55c5950 inet_release +EXPORT_SYMBOL vmlinux 0xd595e187 param_set_byte +EXPORT_SYMBOL vmlinux 0xd5aa7f12 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xd5ad38d4 inet_del_offload EXPORT_SYMBOL vmlinux 0xd5b12f7d radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0xd5b12f83 devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state EXPORT_SYMBOL vmlinux 0xd5be130e cpu_core_map -EXPORT_SYMBOL vmlinux 0xd5c3ec0f address_space_init_once -EXPORT_SYMBOL vmlinux 0xd5d0e947 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xd5dca904 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xd5ec0af8 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0xd5f459c2 md_write_end +EXPORT_SYMBOL vmlinux 0xd5c5d9f1 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xd5e0aacc rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xd5fb01cf vio_enable_interrupts EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd626cfc4 pci_disable_device -EXPORT_SYMBOL vmlinux 0xd6359b18 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xd60b1182 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xd614b990 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xd616883f skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xd61e2a83 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xd6330d06 generic_setlease EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only -EXPORT_SYMBOL vmlinux 0xd64430a6 pci_scan_slot -EXPORT_SYMBOL vmlinux 0xd64a9c89 get_watch_queue -EXPORT_SYMBOL vmlinux 0xd65510a2 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd64694e9 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xd65706c3 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states -EXPORT_SYMBOL vmlinux 0xd676a028 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xd6792055 module_refcount -EXPORT_SYMBOL vmlinux 0xd67acab1 tcf_exts_init_ex EXPORT_SYMBOL vmlinux 0xd6806ab8 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xd687c828 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd69ecb0d xp_dma_map EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6cab7ed netlink_capable -EXPORT_SYMBOL vmlinux 0xd6d97f2d dquot_acquire +EXPORT_SYMBOL vmlinux 0xd6b8197f lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xd6e63210 dquot_acquire EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f094ad genphy_c45_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xd6f209a8 seq_vprintf EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd6fec035 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xd708bb41 dev_set_mac_address EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd7260daa simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xd726715e mdiobus_c45_read_nested +EXPORT_SYMBOL vmlinux 0xd72c5655 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xd735b0fa mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd7432a28 inet_addr_type EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7620458 flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0xd7681239 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xd76e2746 pci_get_device -EXPORT_SYMBOL vmlinux 0xd7750fd6 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0xd775b2ea __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xd786003f flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xd74fd8b5 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd75cce09 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xd76e1329 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xd770ac2d i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xd7736e18 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xd77e9c62 netif_device_detach EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 -EXPORT_SYMBOL vmlinux 0xd78c16a0 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xd78b48b8 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7ceaf4f csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xd7cd47f2 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dcd538 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xd7e487fb scsi_target_resume EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7efc926 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xd806efe4 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xd80f456f inet_sendmsg -EXPORT_SYMBOL vmlinux 0xd80ffe05 dev_addr_del -EXPORT_SYMBOL vmlinux 0xd82c2f7f devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd7ea9bd9 param_get_string +EXPORT_SYMBOL vmlinux 0xd7fa7735 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xd7fbac1d truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xd80564e5 set_binfmt +EXPORT_SYMBOL vmlinux 0xd8101371 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xd830c97b kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xd831e691 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xd8355304 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd842221a flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xd856ddbb mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xd8570c07 vfs_get_tree -EXPORT_SYMBOL vmlinux 0xd85d0c04 dcb_getrewr_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xd87ceb4d ps2_interrupt +EXPORT_SYMBOL vmlinux 0xd86889e6 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xd87d6e9b of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xd886d524 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xd88b5fb9 vfs_create EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd8a2dcd0 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ae3d3e pci_write_config_byte EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd9031921 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xd8cd673e skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0xd8e80232 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xd8f9cd90 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xd908f7b3 md_unregister_thread EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd93314ca can_nice +EXPORT_SYMBOL vmlinux 0xd931e07d inode_init_once +EXPORT_SYMBOL vmlinux 0xd932cdca freeze_bdev EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xd9400217 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0xd943097a dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0xd94433c9 dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0xd9466791 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0xd9540d66 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xd9817689 dcb_setrewr -EXPORT_SYMBOL vmlinux 0xd985cdbd __module_get +EXPORT_SYMBOL vmlinux 0xd947e2e3 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xd9503a52 bio_copy_data_iter EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98ccc9e try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xd9962a7f pci_match_id -EXPORT_SYMBOL vmlinux 0xd9a4ae23 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xd9a6a474 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xd9aa7330 thread_group_exited +EXPORT_SYMBOL vmlinux 0xd9a39abb address_space_init_once +EXPORT_SYMBOL vmlinux 0xd9a5efa5 dev_printk_emit EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9b8f821 xfrm_lookup -EXPORT_SYMBOL vmlinux 0xd9d5027f kernel_read +EXPORT_SYMBOL vmlinux 0xd9ba028c nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xd9d09e58 kernel_getsockname EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e4e57d udp_gro_receive -EXPORT_SYMBOL vmlinux 0xda0732d9 unlock_page -EXPORT_SYMBOL vmlinux 0xda188dce vio_cmo_set_dev_desired -EXPORT_SYMBOL vmlinux 0xda25d9bb param_set_uint -EXPORT_SYMBOL vmlinux 0xda363ef4 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xd9e7728a agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xd9e81153 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xda278fa3 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xda2dc29a flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xda3656d3 radix__local_flush_tlb_page EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda40d1ad of_get_parent -EXPORT_SYMBOL vmlinux 0xda469129 wrap_directory_iterator -EXPORT_SYMBOL vmlinux 0xda67011b i8042_install_filter -EXPORT_SYMBOL vmlinux 0xda70674a __module_put_and_kthread_exit -EXPORT_SYMBOL vmlinux 0xdaa53920 mntput +EXPORT_SYMBOL vmlinux 0xda86b48b sock_no_linger +EXPORT_SYMBOL vmlinux 0xdab6c171 __inc_zone_page_state EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac8bb97 param_set_bint +EXPORT_SYMBOL vmlinux 0xdac7457b configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xdacd1b33 alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0xdacdba06 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0xdad1031e dm_kobject_release +EXPORT_SYMBOL vmlinux 0xdad0f07b inet6_ioctl EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream EXPORT_SYMBOL vmlinux 0xdad6f658 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0xdaeb0fc6 vfs_readlink -EXPORT_SYMBOL vmlinux 0xdb07048c inode_insert5 +EXPORT_SYMBOL vmlinux 0xdade2598 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xdae2c3e0 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xdb11dd79 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xdb12d184 __icmp_send +EXPORT_SYMBOL vmlinux 0xdb1c8f16 default_llseek EXPORT_SYMBOL vmlinux 0xdb1edee6 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xdb26f922 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0xdb35b1c9 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0xdb47f89b empty_aops -EXPORT_SYMBOL vmlinux 0xdb547aeb pci_dev_driver +EXPORT_SYMBOL vmlinux 0xdb3217a4 netdev_features_change +EXPORT_SYMBOL vmlinux 0xdb3d17d0 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xdb521b68 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xdb52cc3f __scm_destroy EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb70b731 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xdb714e71 fs_param_is_enum EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb795a22 skb_append -EXPORT_SYMBOL vmlinux 0xdb8d6c2a is_subdir -EXPORT_SYMBOL vmlinux 0xdb91dc3d ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0xdb942d75 d_drop +EXPORT_SYMBOL vmlinux 0xdb77fd67 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xdb7e64ba nf_log_trace +EXPORT_SYMBOL vmlinux 0xdb91942f _copy_from_iter +EXPORT_SYMBOL vmlinux 0xdb96446f tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0xdba56341 inode_to_bdi -EXPORT_SYMBOL vmlinux 0xdbc27d44 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xdba614ad __kfree_skb +EXPORT_SYMBOL vmlinux 0xdbbb7a6b __napi_schedule +EXPORT_SYMBOL vmlinux 0xdbc1ff66 sock_rfree EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbdba1de simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xdbceb116 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe83979 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xdbed0b17 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0xdbf8b156 zpool_register_driver EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1f50c6 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xdc2d41ae tty_hangup -EXPORT_SYMBOL vmlinux 0xdc3b35a0 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xdc16a7e4 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xdc3ccc31 ipv6_dev_get_saddr EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 EXPORT_SYMBOL vmlinux 0xdc3fcbcb __mutex_init +EXPORT_SYMBOL vmlinux 0xdc42286a dcb_getapp EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4da178 posix_acl_chmod EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc636be1 __mdiobus_write -EXPORT_SYMBOL vmlinux 0xdc671f55 netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0xdc873f5c dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xdc8ef86c drop_super +EXPORT_SYMBOL vmlinux 0xdc5e9194 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xdc658bcd input_unregister_device +EXPORT_SYMBOL vmlinux 0xdc71fefd sk_ns_capable +EXPORT_SYMBOL vmlinux 0xdc79dabe migrate_vma_pages EXPORT_SYMBOL vmlinux 0xdc9498dd down -EXPORT_SYMBOL vmlinux 0xdc96a202 inet_release -EXPORT_SYMBOL vmlinux 0xdc9d434b dentry_open -EXPORT_SYMBOL vmlinux 0xdcaaeaf1 devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0xdcb3e5f1 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0xdcb448dc seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0xdcb6b5d7 config_group_find_item EXPORT_SYMBOL vmlinux 0xdcb764ad memset EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcd0fc89 cdev_device_del +EXPORT_SYMBOL vmlinux 0xdcc4a312 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xdcd1861c put_disk +EXPORT_SYMBOL vmlinux 0xdcd75f34 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcdd384b scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xdce50518 deactivate_super -EXPORT_SYMBOL vmlinux 0xdce91ba7 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0xdcf5d5ad generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0xdcfa2b50 dev_remove_offload -EXPORT_SYMBOL vmlinux 0xdcfe63ee eth_header -EXPORT_SYMBOL vmlinux 0xdd009c29 cfb_imageblit -EXPORT_SYMBOL vmlinux 0xdd017d45 sk_ns_capable -EXPORT_SYMBOL vmlinux 0xdd13a9cf bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xdd22f87e pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0xdd2764bd sk_mc_loop +EXPORT_SYMBOL vmlinux 0xdcff7362 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd364f7f bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xdd39d304 __destroy_inode +EXPORT_SYMBOL vmlinux 0xdd4def49 register_netdevice +EXPORT_SYMBOL vmlinux 0xdd4ed497 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xdd5c2219 ip6_output EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0xdd5ec7e1 filemap_get_folios EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd65b3e2 filp_open -EXPORT_SYMBOL vmlinux 0xdd68bc14 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0xdd804649 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xdd80ce97 mmc_is_req_done EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd90c699 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xdda72c60 genl_notify -EXPORT_SYMBOL vmlinux 0xddb04d75 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xdd88aad9 _dev_warn +EXPORT_SYMBOL vmlinux 0xdda32a87 sock_register EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead -EXPORT_SYMBOL vmlinux 0xddb74131 inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0xdde10fce bio_reset -EXPORT_SYMBOL vmlinux 0xdde276a7 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xddc0316a rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xddcc6dbe dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xddcdcd36 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xddcf45e3 tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0xddd25b1d jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xddd699f7 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0xdde70f07 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xddea9be4 vfs_setpos -EXPORT_SYMBOL vmlinux 0xddf5314d msi_bitmap_alloc_hwirqs EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde010e60 vfs_create -EXPORT_SYMBOL vmlinux 0xde150818 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0xde406382 blackhole_netdev -EXPORT_SYMBOL vmlinux 0xde5ccaeb tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0xde66e8e9 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xde674498 kmem_cache_free -EXPORT_SYMBOL vmlinux 0xde76ae09 __SetPageMovable -EXPORT_SYMBOL vmlinux 0xde797ea2 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xde8f94a7 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xde146260 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xde56b4bd tcp_disconnect +EXPORT_SYMBOL vmlinux 0xde71e0b0 genlmsg_put +EXPORT_SYMBOL vmlinux 0xde7c3a2b get_phy_device +EXPORT_SYMBOL vmlinux 0xde87b431 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state -EXPORT_SYMBOL vmlinux 0xde95ec86 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xde9642a5 bdi_alloc EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size -EXPORT_SYMBOL vmlinux 0xde9b92c0 ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xde9c730f __nla_reserve -EXPORT_SYMBOL vmlinux 0xdeab4b98 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xdea018e4 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xdea54f8c uart_resume_port +EXPORT_SYMBOL vmlinux 0xdea9046b mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xdead8a2e sock_bind_add +EXPORT_SYMBOL vmlinux 0xdebdab0d pci_irq_vector +EXPORT_SYMBOL vmlinux 0xdec1fa58 netdev_offload_xstats_get EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xded56a4e tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xdede217b rt6_lookup -EXPORT_SYMBOL vmlinux 0xdee4af69 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xdedb94bd alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xdedef1db in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xdee3056d cdrom_mode_select EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xdf099d8c genphy_suspend +EXPORT_SYMBOL vmlinux 0xdf0b47a3 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xdf23ef5b nf_register_queue_handler EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xdf263119 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf282029 nf_log_set EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf3d3938 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xdf42b78a kern_path +EXPORT_SYMBOL vmlinux 0xdf450d4c param_ops_byte +EXPORT_SYMBOL vmlinux 0xdf47c0ad sync_mapping_buffers EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf700cfa insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xdf7457c4 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xdf5cd8f8 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xdf73b1f4 dma_map_resource +EXPORT_SYMBOL vmlinux 0xdf8586c7 reuseport_alloc +EXPORT_SYMBOL vmlinux 0xdf8bacc7 seq_path EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdfaeb0c6 udp_ioctl -EXPORT_SYMBOL vmlinux 0xdfbfe758 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xdfa2ccd2 __hw_addr_sync_dev EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream -EXPORT_SYMBOL vmlinux 0xdfc22bcb pci_find_resource -EXPORT_SYMBOL vmlinux 0xdfc9bb62 make_kprojid +EXPORT_SYMBOL vmlinux 0xdfc312dd get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xdfcc992c current_work EXPORT_SYMBOL vmlinux 0xdfd07594 ns_capable +EXPORT_SYMBOL vmlinux 0xdfd56239 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdfdc6dd2 agp_backend_acquire EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe000b4da netif_set_tso_max_size -EXPORT_SYMBOL vmlinux 0xe004acdc key_move -EXPORT_SYMBOL vmlinux 0xe0136a19 unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xe01bfb7a register_filesystem +EXPORT_SYMBOL vmlinux 0xe00013d6 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xe014ae4d sock_alloc +EXPORT_SYMBOL vmlinux 0xe02095c2 mmc_unregister_driver EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0xe026e3b6 __d_drop EXPORT_SYMBOL vmlinux 0xe0272409 set_groups -EXPORT_SYMBOL vmlinux 0xe0325ea7 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0xe0342b98 get_task_cred -EXPORT_SYMBOL vmlinux 0xe03d865d tcp_release_cb +EXPORT_SYMBOL vmlinux 0xe029f70e setup_new_exec +EXPORT_SYMBOL vmlinux 0xe03e06fe pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe051b53c file_fdatawait_range -EXPORT_SYMBOL vmlinux 0xe053f05a phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xe05ab2bc __of_get_address +EXPORT_SYMBOL vmlinux 0xe0458dc9 __find_get_block +EXPORT_SYMBOL vmlinux 0xe053be6c dev_change_flags +EXPORT_SYMBOL vmlinux 0xe055e1a8 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xe063f958 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe0905a41 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0932070 radix__flush_all_mm -EXPORT_SYMBOL vmlinux 0xe09a5a47 pci_resize_resource -EXPORT_SYMBOL vmlinux 0xe0acc033 __alloc_skb +EXPORT_SYMBOL vmlinux 0xe0960db2 mmc_detect_change EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b74044 md_integrity_register +EXPORT_SYMBOL vmlinux 0xe0b2a048 __inet_hash EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xe0c2cb8a dst_release_immediate -EXPORT_SYMBOL vmlinux 0xe0da2a04 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xe0c1d4ed shmem_aops +EXPORT_SYMBOL vmlinux 0xe0f1f3b3 nf_register_net_hook EXPORT_SYMBOL vmlinux 0xe0fc2825 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0xe109dc8d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe10544d0 inet_select_addr +EXPORT_SYMBOL vmlinux 0xe121f7e5 mmc_gpiod_request_cd EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe124b910 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xe127256b sock_no_shutdown EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe130a9c5 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xe12eff77 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0xe1479c40 napi_gro_flush -EXPORT_SYMBOL vmlinux 0xe14e0571 block_write_begin -EXPORT_SYMBOL vmlinux 0xe1692147 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xe1705608 d_exact_alias -EXPORT_SYMBOL vmlinux 0xe173ce44 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0xe1762319 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xe1a5a1d1 param_array_ops -EXPORT_SYMBOL vmlinux 0xe1a8f7cb fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe13926a9 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xe15de525 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xe169670b rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xe17d7ab2 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xe180efd8 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xe1921dcf netlink_capable +EXPORT_SYMBOL vmlinux 0xe194057c of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe1b717a9 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xe1bc4679 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xe1ca12d0 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0xe1d43b84 _raw_write_lock_nested EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e0f608 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xe1fbb724 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xe2122bfa input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xe219ca93 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe24aea94 d_make_root -EXPORT_SYMBOL vmlinux 0xe254ca27 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xe239865c genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xe24611fc security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xe2567841 param_ops_int +EXPORT_SYMBOL vmlinux 0xe25adb69 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xe25d20d3 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xe2632cf7 free_netdev -EXPORT_SYMBOL vmlinux 0xe274345c vfs_mkobj -EXPORT_SYMBOL vmlinux 0xe2a0493a jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0xe2a2729f audit_log -EXPORT_SYMBOL vmlinux 0xe2c77da6 generic_update_time +EXPORT_SYMBOL vmlinux 0xe2607b6d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xe2898de6 of_get_parent +EXPORT_SYMBOL vmlinux 0xe2a2e837 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xe2c91102 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xe2d26bf9 ppp_output_wakeup EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e1e832 inet_getname -EXPORT_SYMBOL vmlinux 0xe2ea1374 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xe30fa658 param_ops_bint -EXPORT_SYMBOL vmlinux 0xe3102fad ethtool_aggregate_rmon_stats -EXPORT_SYMBOL vmlinux 0xe315e23f fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xe2e5543d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xe300e2e0 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xe30e2af5 __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xe31a6fe0 mmc_remove_host EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe339e761 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xe34524fe tty_lock -EXPORT_SYMBOL vmlinux 0xe351325e fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0xe374ffdd xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xe37cc472 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0xe38526de d_instantiate_new -EXPORT_SYMBOL vmlinux 0xe386df0f netdev_update_features +EXPORT_SYMBOL vmlinux 0xe336404e jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xe33e91bd pcibus_to_node +EXPORT_SYMBOL vmlinux 0xe3463d0d of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xe35fbdb8 pci_set_master +EXPORT_SYMBOL vmlinux 0xe365a7e9 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39c3e00 dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0xe3abf298 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xe39c9863 vga_put +EXPORT_SYMBOL vmlinux 0xe3a28ef2 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3be23cc generic_perform_write -EXPORT_SYMBOL vmlinux 0xe3da7247 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0xe3de6fa6 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xe3b494c4 mmc_start_request +EXPORT_SYMBOL vmlinux 0xe3c78043 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xe3d0dbf1 phy_detach EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region EXPORT_SYMBOL vmlinux 0xe3f29f70 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xe3f5df10 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe40a0ce3 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xe412b43f mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xe4163aee wrap_directory_iterator EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe42a0d76 tty_register_driver -EXPORT_SYMBOL vmlinux 0xe469863c netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xe425983e phy_attached_info +EXPORT_SYMBOL vmlinux 0xe42d9e23 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe4582e7d scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xe461965c blk_rq_map_user EXPORT_SYMBOL vmlinux 0xe47ecc37 config_item_set_name -EXPORT_SYMBOL vmlinux 0xe4bb2e0c netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xe4bb30c1 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xe481d2f6 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xe4a33af1 single_release +EXPORT_SYMBOL vmlinux 0xe4ab4b7a fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xe4ae7f38 param_get_charp +EXPORT_SYMBOL vmlinux 0xe4b54d28 _dev_alert +EXPORT_SYMBOL vmlinux 0xe4b92ab8 freeze_super EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4d5e5c8 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xe4e4d7a8 init_task +EXPORT_SYMBOL vmlinux 0xe4d60e75 vio_find_node +EXPORT_SYMBOL vmlinux 0xe4e6c3bc vfs_readlink EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xe4f14d46 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xe5052c35 gtm_set_timer16 -EXPORT_SYMBOL vmlinux 0xe515e6ef tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xe50d9509 pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe54914fd nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xe550aecd pci_request_regions -EXPORT_SYMBOL vmlinux 0xe55da85b flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xe56309c9 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xe52519a0 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xe52e5cc3 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xe53255da __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xe5347320 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xe541a378 fb_find_mode +EXPORT_SYMBOL vmlinux 0xe54cbfc7 fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5893fd0 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xe5905b02 xfrm_state_update EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5932577 build_skb_around -EXPORT_SYMBOL vmlinux 0xe5acadd6 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xe5a0abee ppp_input +EXPORT_SYMBOL vmlinux 0xe5ba4869 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe5c1734f sk_net_capable +EXPORT_SYMBOL vmlinux 0xe5c32b8c tty_unlock +EXPORT_SYMBOL vmlinux 0xe5c3a27e eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c92ed1 i2c_get_match_data +EXPORT_SYMBOL vmlinux 0xe5cfe83b agp_generic_alloc_by_type EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xe5d83aaa dev_mc_del +EXPORT_SYMBOL vmlinux 0xe5e27963 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xe5e46dbe pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xe5e94ce7 always_delete_dentry EXPORT_SYMBOL vmlinux 0xe5f2ede0 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0xe5f47914 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xe5ffbf3f validate_slab_cache -EXPORT_SYMBOL vmlinux 0xe62484ab cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xe64b349d xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe60108a9 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xe609209b generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xe609cebb set_blocksize +EXPORT_SYMBOL vmlinux 0xe63482fd inode_query_iversion +EXPORT_SYMBOL vmlinux 0xe6414bf2 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xe64b32f7 dma_pool_create EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe66adfba pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0xe65e91ab release_sock +EXPORT_SYMBOL vmlinux 0xe6727804 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xe678c2dd pipe_lock +EXPORT_SYMBOL vmlinux 0xe68c2151 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xe690be56 tcp_recv_skb EXPORT_SYMBOL vmlinux 0xe694077f gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0xe6a063cd of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xe6a22369 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xe6a46d64 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xe6aeda60 dcache_readdir -EXPORT_SYMBOL vmlinux 0xe6b5ca9d unregister_quota_format -EXPORT_SYMBOL vmlinux 0xe6bfbe9c vio_register_device_node -EXPORT_SYMBOL vmlinux 0xe6d180de rtc_add_group +EXPORT_SYMBOL vmlinux 0xe6965749 param_set_copystring +EXPORT_SYMBOL vmlinux 0xe6add69d netlink_broadcast +EXPORT_SYMBOL vmlinux 0xe6b43b98 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xe6b81566 netlink_unicast +EXPORT_SYMBOL vmlinux 0xe6b9ff4f fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xe6d14321 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6d34260 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0xe6e5c45c pci_irq_vector -EXPORT_SYMBOL vmlinux 0xe6f6a0e7 pnv_cxl_ioda_msi_setup -EXPORT_SYMBOL vmlinux 0xe7031951 set_nlink -EXPORT_SYMBOL vmlinux 0xe70d13a5 vlan_vid_add -EXPORT_SYMBOL vmlinux 0xe7132476 keyring_clear -EXPORT_SYMBOL vmlinux 0xe71a8bd2 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xe71f2ed5 of_get_next_parent -EXPORT_SYMBOL vmlinux 0xe72f02b4 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xe731a362 single_open -EXPORT_SYMBOL vmlinux 0xe7342467 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xe737d1be mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xe74310dd sg_miter_stop -EXPORT_SYMBOL vmlinux 0xe743a2bc backlight_force_update -EXPORT_SYMBOL vmlinux 0xe74bbdd5 fc_mount -EXPORT_SYMBOL vmlinux 0xe75cb890 netdev_get_by_index -EXPORT_SYMBOL vmlinux 0xe760504a __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0xe761fd19 phy_device_create +EXPORT_SYMBOL vmlinux 0xe6ed6cb6 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xe6f27bb4 dquot_operations +EXPORT_SYMBOL vmlinux 0xe7004a90 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xe75391b8 backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0xe76335c5 __debugger -EXPORT_SYMBOL vmlinux 0xe77a56d9 __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xe77ac6a2 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xe78237d5 tty_port_close -EXPORT_SYMBOL vmlinux 0xe78260fe agp_generic_free_gatt_table -EXPORT_SYMBOL vmlinux 0xe78aee53 rproc_alloc -EXPORT_SYMBOL vmlinux 0xe78b47dc netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xe7aeb4b5 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0xe7b56e08 input_copy_abs -EXPORT_SYMBOL vmlinux 0xe7c2c770 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xe7679ba0 ps2_command +EXPORT_SYMBOL vmlinux 0xe776cdff fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xe78cd747 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe795f7a5 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xe79b1a93 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xe7a3d6a7 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xe7c91367 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio -EXPORT_SYMBOL vmlinux 0xe7cfe63a locks_copy_conflock -EXPORT_SYMBOL vmlinux 0xe7d28912 input_enable_softrepeat EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7ea59aa tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xe7f0a6fe pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0xe8052977 follow_down -EXPORT_SYMBOL vmlinux 0xe80aefb2 inode_init_owner -EXPORT_SYMBOL vmlinux 0xe844405e fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xe7e1d360 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xe7f6698f init_net +EXPORT_SYMBOL vmlinux 0xe7fc3a56 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xe80e3b4f netdev_printk +EXPORT_SYMBOL vmlinux 0xe814a5f4 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xe83598cb jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xe83c2c82 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xe8493660 nla_append +EXPORT_SYMBOL vmlinux 0xe84e69b0 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xe858a881 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xe87eb7cc ethtool_aggregate_pause_stats -EXPORT_SYMBOL vmlinux 0xe88bb070 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0xe8a3016a vm_insert_pages -EXPORT_SYMBOL vmlinux 0xe8acb613 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xe8977a0e __bio_advance EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xe8d9e8ab pci_read_vpd_any -EXPORT_SYMBOL vmlinux 0xe8eba214 generic_setlease -EXPORT_SYMBOL vmlinux 0xe8ecf8b1 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0xe8f65399 inet6_bind EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe918a5a3 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xe92e0f72 nd_device_notify +EXPORT_SYMBOL vmlinux 0xe915540c nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xe9355aa3 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xe9505c6c nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9579b5e request_key_tag -EXPORT_SYMBOL vmlinux 0xe970a53f vme_irq_free -EXPORT_SYMBOL vmlinux 0xe9987a37 nf_log_unset -EXPORT_SYMBOL vmlinux 0xe9a5a0c6 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0xe9acf0d8 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xe9bc931a qdisc_hash_del -EXPORT_SYMBOL vmlinux 0xe9c74062 vm_map_ram -EXPORT_SYMBOL vmlinux 0xe9d89ad2 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xe95c168d __block_write_full_folio +EXPORT_SYMBOL vmlinux 0xe960c47f vfs_mknod +EXPORT_SYMBOL vmlinux 0xe968180c proc_remove +EXPORT_SYMBOL vmlinux 0xe982cbb1 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xe98fb3ae alloc_fcdev +EXPORT_SYMBOL vmlinux 0xe99397f1 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xe9be1459 __dec_node_page_state EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xe9ddf3f0 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xe9e5d4e2 km_policy_notify +EXPORT_SYMBOL vmlinux 0xe9defc55 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xe9e20fe8 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xe9e3b3c9 of_graph_is_present EXPORT_SYMBOL vmlinux 0xe9f695bd arch_get_random_seed_longs EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xea21dc5e security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xea22ed22 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0xea2c8d3f __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xea2e091a generic_file_llseek EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize -EXPORT_SYMBOL vmlinux 0xea5c2268 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0xea631c3b fb_get_mode +EXPORT_SYMBOL vmlinux 0xea596a0a uart_suspend_port +EXPORT_SYMBOL vmlinux 0xea677b78 registered_fb +EXPORT_SYMBOL vmlinux 0xea6816cd is_nd_dax +EXPORT_SYMBOL vmlinux 0xea6d6e64 __folio_batch_release EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea76dc5e genphy_read_status -EXPORT_SYMBOL vmlinux 0xea79fe72 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xea7596d9 __fs_parse +EXPORT_SYMBOL vmlinux 0xea7b4e89 serio_close EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options EXPORT_SYMBOL vmlinux 0xea80392f on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xeac7486b t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xeaee7c93 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xeaf27bb6 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xea82c1fc inc_node_state +EXPORT_SYMBOL vmlinux 0xea931520 fb_io_write +EXPORT_SYMBOL vmlinux 0xeaa58b66 dcb_getrewr_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xeadb88b1 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xeaeacf29 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xeaeecaa0 xfrm_init_state EXPORT_SYMBOL vmlinux 0xeaf74ebf __do_once_done EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeafcc7a3 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xeaff28c0 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xeb000253 dev_load -EXPORT_SYMBOL vmlinux 0xeb0a475f rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xeb17e215 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xeb0ac77c netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xeb0d9f94 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb235d02 get_cached_acl -EXPORT_SYMBOL vmlinux 0xeb2d54e5 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0xeb320f61 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xeb23dc3f nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb481630 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xeb48da5c of_n_size_cells -EXPORT_SYMBOL vmlinux 0xeb6183b8 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xeb5d4c78 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xeb5e2e44 ethtool_aggregate_phy_stats EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift -EXPORT_SYMBOL vmlinux 0xeb99555b pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xeb9b8fce __vio_register_driver EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba4f234 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0xeba602fa skb_free_datagram -EXPORT_SYMBOL vmlinux 0xebb203b1 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xebb215a2 __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0xebcbff46 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xebd1bee5 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xebd211e4 inode_init_always -EXPORT_SYMBOL vmlinux 0xebf9312d serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xec0e6401 netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0xec239048 sock_create -EXPORT_SYMBOL vmlinux 0xec24d350 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xeba2885d bio_add_page +EXPORT_SYMBOL vmlinux 0xebab2d90 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xebb52a1b mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xebb65417 sk_dst_check +EXPORT_SYMBOL vmlinux 0xebbda0ed netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xebc4ab10 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xebc59ca3 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xebd5c389 lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0xebd65a90 finish_open +EXPORT_SYMBOL vmlinux 0xebe6303a security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xebf7e135 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xec10f1ee sock_from_file EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec33e413 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec40c0da of_graph_get_remote_port_parent EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xec5ed302 is_free_buddy_page -EXPORT_SYMBOL vmlinux 0xec6751b3 fd_install -EXPORT_SYMBOL vmlinux 0xec6e3c44 d_tmpfile +EXPORT_SYMBOL vmlinux 0xec692969 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xec6b5968 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xec77ce71 dma_free_attrs EXPORT_SYMBOL vmlinux 0xec7e95d6 unload_nls -EXPORT_SYMBOL vmlinux 0xec96054d km_report +EXPORT_SYMBOL vmlinux 0xec875be0 input_flush_device +EXPORT_SYMBOL vmlinux 0xec8cb1be gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start -EXPORT_SYMBOL vmlinux 0xec980751 sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0xec9dbbd0 dquot_operations EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecbee5cc input_get_keycode -EXPORT_SYMBOL vmlinux 0xecc60723 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xecaac784 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xecb4bfa4 mr_table_dump +EXPORT_SYMBOL vmlinux 0xecb96181 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xecdc29b5 dev_mc_init EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecfb53e6 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xed0e2e18 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xed2231fd tcp_filter -EXPORT_SYMBOL vmlinux 0xed2e7f77 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xed475de5 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xed47cba7 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xece7f5b7 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xecef1b6a audit_log_start +EXPORT_SYMBOL vmlinux 0xecef6015 invalidate_disk +EXPORT_SYMBOL vmlinux 0xed108d8f sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xed26ca56 radix__flush_tlb_mm EXPORT_SYMBOL vmlinux 0xed4eba57 crypto_kdf108_ctr_generate -EXPORT_SYMBOL vmlinux 0xed52f743 file_update_time -EXPORT_SYMBOL vmlinux 0xed5f83a5 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed79660e input_set_capability -EXPORT_SYMBOL vmlinux 0xed79d991 __scm_destroy -EXPORT_SYMBOL vmlinux 0xed9fa765 md_write_start +EXPORT_SYMBOL vmlinux 0xed660148 skb_push +EXPORT_SYMBOL vmlinux 0xed6c6253 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xed762520 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xed89b606 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xed9e0789 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xeda8fc84 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xedaab9bf rio_query_mport +EXPORT_SYMBOL vmlinux 0xedab0930 devm_rproc_add EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock +EXPORT_SYMBOL vmlinux 0xedb7be9c of_device_is_big_endian EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbe2a71 dquot_release EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc71ece generic_permission -EXPORT_SYMBOL vmlinux 0xedcb992c netdev_printk +EXPORT_SYMBOL vmlinux 0xedca8933 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xede077b4 qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xede65102 inet6_offloads +EXPORT_SYMBOL vmlinux 0xede17a82 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xedf07c4b bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xedfb99ac dev_deactivate EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xee1ff9f3 pnv_cxl_alloc_hwirqs -EXPORT_SYMBOL vmlinux 0xee290aa4 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xee1337a2 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee310306 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xee3d2d11 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xee40d517 vmap -EXPORT_SYMBOL vmlinux 0xee47e7a4 __destroy_inode -EXPORT_SYMBOL vmlinux 0xee4f7aa8 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xee371827 _dev_info EXPORT_SYMBOL vmlinux 0xee58a9de proc_dointvec_jiffies EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee6e9f02 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xee7aefc5 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee8ef74e down_read_killable -EXPORT_SYMBOL vmlinux 0xee8f8e73 vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeabec75 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xeec410d8 udp_set_csum -EXPORT_SYMBOL vmlinux 0xeecf6281 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0xeed28fb5 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size -EXPORT_SYMBOL vmlinux 0xeed86934 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeef03d4e __put_user_ns -EXPORT_SYMBOL vmlinux 0xeef4d148 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xeef6a1b7 dma_async_device_register -EXPORT_SYMBOL vmlinux 0xeef7ba53 __mmc_claim_host EXPORT_SYMBOL vmlinux 0xeeff2850 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xef010ece tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xef013fdc kmem_cache_create -EXPORT_SYMBOL vmlinux 0xef3118be ip_getsockopt -EXPORT_SYMBOL vmlinux 0xef49b36d ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xef4b71f1 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xef4be00d uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xef575eb0 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0xef63745e i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xef6549fa pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xef07cef4 key_validate +EXPORT_SYMBOL vmlinux 0xef0d481b phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xef15924d seq_printf +EXPORT_SYMBOL vmlinux 0xef15add2 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xef1976f0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xef6457a1 pin_user_pages_unlocked EXPORT_SYMBOL vmlinux 0xef71a22c wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0xef911fe5 tcp_req_err -EXPORT_SYMBOL vmlinux 0xefa34bcc ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xef8ed436 poll_initwait +EXPORT_SYMBOL vmlinux 0xef955118 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefd1ec90 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xefd50a46 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xefdf871c netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0xefe7212d input_close_device +EXPORT_SYMBOL vmlinux 0xefb22dc6 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0xefc99ebc sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xefd3793d nd_device_unregister +EXPORT_SYMBOL vmlinux 0xefee0fc8 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xefee7041 nf_log_unset EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xefefcc14 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0xeff67417 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00560c6 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0xf0272651 _dev_crit +EXPORT_SYMBOL vmlinux 0xf0062692 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xf0246e6d blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xf02acb0a skb_recv_datagram EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock -EXPORT_SYMBOL vmlinux 0xf03b68dd tcp_read_sock -EXPORT_SYMBOL vmlinux 0xf04b50c4 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xf05125db mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xf0551384 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xf05bb61f __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xf0777a31 nf_log_trace +EXPORT_SYMBOL vmlinux 0xf036f6a1 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xf052d649 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xf05e1c8d ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xf06d0587 tcp_setsockopt EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0xf07b6031 page_readlink +EXPORT_SYMBOL vmlinux 0xf07b78ba bio_add_pc_page EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0xf086156b xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xf08d8c98 kthread_create_on_node EXPORT_SYMBOL vmlinux 0xf0910ebc nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a14c82 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xf0a7ce7a agp_generic_alloc_pages -EXPORT_SYMBOL vmlinux 0xf0c691dc ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xf0ce129b xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0xf0d91b43 simple_statfs -EXPORT_SYMBOL vmlinux 0xf0de6b81 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xf0a7ca78 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xf0b0583a dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xf0c13e2f d_rehash +EXPORT_SYMBOL vmlinux 0xf0df135d netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xf0e2cd5f sock_no_sendmsg EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xf0fe86b4 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0xf11007d0 scsi_scan_host -EXPORT_SYMBOL vmlinux 0xf110ab12 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xf10031e3 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xf1004215 devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0xf110d1cb pseries_enable_reloc_on_exc -EXPORT_SYMBOL vmlinux 0xf11c9fa6 scsi_done_direct +EXPORT_SYMBOL vmlinux 0xf116a914 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xf11a0284 unregister_shrinker EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1204309 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xf12a705c generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xf12e6b06 alloc_anon_inode EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked -EXPORT_SYMBOL vmlinux 0xf14a1667 pci_free_irq -EXPORT_SYMBOL vmlinux 0xf1535ca9 devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0xf169aa32 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xf17ef471 param_ops_byte -EXPORT_SYMBOL vmlinux 0xf184b064 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xf135097f pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0xf153190b twl6040_set_bits EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf198ec6e mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xf19905eb phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream -EXPORT_SYMBOL vmlinux 0xf1ac35c2 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xf1b360ca cfb_copyarea +EXPORT_SYMBOL vmlinux 0xf1a795b4 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xf1ad6ada xfrm6_input_addr EXPORT_SYMBOL vmlinux 0xf1be5b63 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xf1c01d28 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xf1c7cb24 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xf1d18e90 _outsw_ns EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e5efa3 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eee75b phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xf1f69855 dst_dev_put EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf1fb26c7 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0xf201c0f0 pci_restore_state -EXPORT_SYMBOL vmlinux 0xf202c16c readahead_expand -EXPORT_SYMBOL vmlinux 0xf22a0ab2 inet_register_protosw -EXPORT_SYMBOL vmlinux 0xf23221b4 devm_ioremap -EXPORT_SYMBOL vmlinux 0xf23f262a ip_options_compile +EXPORT_SYMBOL vmlinux 0xf1fdf9ae pci_release_resource +EXPORT_SYMBOL vmlinux 0xf200cbb8 __sock_create +EXPORT_SYMBOL vmlinux 0xf21e0696 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xf22c62ac tcp_init_sock +EXPORT_SYMBOL vmlinux 0xf22cc21f fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xf2334ea5 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xf2378c7e paca_ptrs EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in EXPORT_SYMBOL vmlinux 0xf241461f __xa_insert -EXPORT_SYMBOL vmlinux 0xf247c076 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0xf2494d42 kernel_listen -EXPORT_SYMBOL vmlinux 0xf252442b genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xf254c9a3 dev_lstats_read -EXPORT_SYMBOL vmlinux 0xf25f761f pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xf25a4694 dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx -EXPORT_SYMBOL vmlinux 0xf287100f inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xf27ec27f ptp_clock_event +EXPORT_SYMBOL vmlinux 0xf282e54d phy_device_register EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2a00965 dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0xf2a1e3cd mmc_register_driver +EXPORT_SYMBOL vmlinux 0xf2922f16 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xf2982926 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xf29b28a5 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0xf2b03bf6 __fput_sync -EXPORT_SYMBOL vmlinux 0xf2b65318 of_scan_pci_bridge -EXPORT_SYMBOL vmlinux 0xf2bcbb6f pcim_pin_device +EXPORT_SYMBOL vmlinux 0xf2ab1567 security_inode_copy_up EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d3d8e2 fs_param_is_path EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf2f60169 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xf3056676 mpage_readahead -EXPORT_SYMBOL vmlinux 0xf30974da dev_addr_add -EXPORT_SYMBOL vmlinux 0xf316a60d of_translate_dma_region -EXPORT_SYMBOL vmlinux 0xf31a823b xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xf32020aa xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xf2fd5eba tty_write_room +EXPORT_SYMBOL vmlinux 0xf320fb01 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xf321d12d pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3530795 folio_set_bh EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35e7f4b netif_carrier_off -EXPORT_SYMBOL vmlinux 0xf367b269 ptp_clock_index -EXPORT_SYMBOL vmlinux 0xf36dd7fe devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf383b392 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xf3755517 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf38608a8 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39f51eb bpf_map_get +EXPORT_SYMBOL vmlinux 0xf39e42dc vga_remove_vgacon EXPORT_SYMBOL vmlinux 0xf3a43a62 padata_free_shell EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3c942de flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xf3bc38ed iov_iter_npages +EXPORT_SYMBOL vmlinux 0xf3d2ed81 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xf3e069e0 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e77980 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xf3e85b96 current_in_userns -EXPORT_SYMBOL vmlinux 0xf3fdfc26 lookup_one_len -EXPORT_SYMBOL vmlinux 0xf4012dd3 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xf4025130 mmc_put_card +EXPORT_SYMBOL vmlinux 0xf3edf208 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xf3f159a9 proc_set_size EXPORT_SYMBOL vmlinux 0xf40a6119 kset_register -EXPORT_SYMBOL vmlinux 0xf410581a jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0xf41d0cbe dm_get_device -EXPORT_SYMBOL vmlinux 0xf43a001c i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xf446f7b8 kill_fasync -EXPORT_SYMBOL vmlinux 0xf44a204d edac_mc_find +EXPORT_SYMBOL vmlinux 0xf410831d mdiobus_write +EXPORT_SYMBOL vmlinux 0xf41273c6 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xf43ef798 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xf44588b0 of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44d9e80 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid -EXPORT_SYMBOL vmlinux 0xf4571803 phy_stop -EXPORT_SYMBOL vmlinux 0xf4663176 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xf45d2f90 sock_create_lite +EXPORT_SYMBOL vmlinux 0xf4705de1 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf49897ec migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xf48efec3 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xf493bf6d ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xf49cb219 netpoll_setup +EXPORT_SYMBOL vmlinux 0xf4a24053 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xf4a8aef6 param_get_ushort +EXPORT_SYMBOL vmlinux 0xf4bef46e udp_set_csum +EXPORT_SYMBOL vmlinux 0xf4d36a4c simple_pin_fs EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e63c70 sk_wait_data +EXPORT_SYMBOL vmlinux 0xf4e57be0 napi_schedule_prep EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f20193 pcie_capability_clear_and_set_word_unlocked -EXPORT_SYMBOL vmlinux 0xf4fbb110 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0xf502a861 ip_do_fragment EXPORT_SYMBOL vmlinux 0xf502c117 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xf50bba91 to_nd_pfn -EXPORT_SYMBOL vmlinux 0xf5122420 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0xf537de8d param_set_bool +EXPORT_SYMBOL vmlinux 0xf51f1e2a skb_copy_bits +EXPORT_SYMBOL vmlinux 0xf52163b9 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy EXPORT_SYMBOL vmlinux 0xf53f722e trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xf541ff22 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0xf5420994 phy_drivers_register EXPORT_SYMBOL vmlinux 0xf5488fd9 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0xf54a40db proc_dointvec -EXPORT_SYMBOL vmlinux 0xf54e5f6b alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf558ae81 par_io_of_config +EXPORT_SYMBOL vmlinux 0xf55b383d pnv_phb_to_cxl_mode EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 -EXPORT_SYMBOL vmlinux 0xf596b950 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xf55b4f36 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xf56a4053 pnv_pci_get_phb_node EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a52bbb tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io -EXPORT_SYMBOL vmlinux 0xf5be740d of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xf5d24668 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xf5d3588e devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xf5df7458 skb_pull +EXPORT_SYMBOL vmlinux 0xf5ae1a14 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf5b68f25 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xf5c4bc4a vfs_get_tree +EXPORT_SYMBOL vmlinux 0xf5c9b564 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf5da62af phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister EXPORT_SYMBOL vmlinux 0xf5e27f3c dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0xf5e3575e netdev_pick_tx EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5ee6401 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xf6016837 open_exec EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xf617186b sg_miter_next +EXPORT_SYMBOL vmlinux 0xf61de55b netdev_get_by_index +EXPORT_SYMBOL vmlinux 0xf62418d5 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xf625f3b1 netdev_change_features +EXPORT_SYMBOL vmlinux 0xf626dc93 max8925_bulk_write EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf6307e14 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xf630fac1 simple_release_fs -EXPORT_SYMBOL vmlinux 0xf63cff17 try_module_get +EXPORT_SYMBOL vmlinux 0xf63a122f mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6556154 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xf64dfc62 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xf6514486 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xf662fbf2 netdev_name_in_use EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66db6dc unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0xf6707250 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0xf6781593 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xf66dcfe4 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xf679b4fc sk_stop_timer +EXPORT_SYMBOL vmlinux 0xf681a177 of_get_next_parent EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6a16545 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xf6b3c514 agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0xf6b4fb4f __skb_checksum -EXPORT_SYMBOL vmlinux 0xf6b947c3 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xf6c8b673 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xf6dd4da5 vio_find_node -EXPORT_SYMBOL vmlinux 0xf6e134a2 proc_set_size +EXPORT_SYMBOL vmlinux 0xf68a2f8b tcp_splice_read +EXPORT_SYMBOL vmlinux 0xf68ee3d1 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf6905afb d_obtain_root +EXPORT_SYMBOL vmlinux 0xf6a8cf70 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xf6ac807e dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf6eb2a81 neigh_xmit EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf705fbd4 folio_add_lru -EXPORT_SYMBOL vmlinux 0xf725f14e sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xf726ed30 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0xf72e120d mmc_request_done -EXPORT_SYMBOL vmlinux 0xf7347bdc phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xf7100cc9 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xf715cb12 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf718f5eb blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xf72f5832 pci_dev_get EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf742e8c8 generic_ro_fops -EXPORT_SYMBOL vmlinux 0xf7574ebe uart_match_port -EXPORT_SYMBOL vmlinux 0xf76173a2 request_firmware -EXPORT_SYMBOL vmlinux 0xf7817be7 unregister_shrinker -EXPORT_SYMBOL vmlinux 0xf795efec blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xf7c25f0c scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xf769140c inet_protos +EXPORT_SYMBOL vmlinux 0xf7732f17 page_readlink +EXPORT_SYMBOL vmlinux 0xf78d0d37 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xf79889f5 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xf79f762e user_revoke EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit -EXPORT_SYMBOL vmlinux 0xf7c59e52 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xf7c839e9 arp_tbl EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7efcc72 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xf7fcdaec udp_seq_stop -EXPORT_SYMBOL vmlinux 0xf80b0f91 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xf7fdc9e9 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan EXPORT_SYMBOL vmlinux 0xf812e574 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf81906d3 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xf8233e7f neigh_seq_next EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8390d96 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xf83dcc34 tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0xf83df451 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xf8417617 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf86f7c64 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xf87a92b9 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0xf88457bc scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xf8579a20 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xf87ce61c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf8858962 tcf_block_get EXPORT_SYMBOL vmlinux 0xf88ecec4 kvmemdup -EXPORT_SYMBOL vmlinux 0xf89b7e16 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xf8aefa52 serio_close -EXPORT_SYMBOL vmlinux 0xf8b0d007 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0xf8c63b25 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xf89350c0 md_done_sync +EXPORT_SYMBOL vmlinux 0xf8ca8b71 tcf_em_tree_destroy EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8db76fa sys_imageblit EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns -EXPORT_SYMBOL vmlinux 0xf8f4e8e4 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xf8e73782 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf9075034 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xf91509f1 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf921b919 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xf9367d7a devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0xf908d2b9 md_update_sb +EXPORT_SYMBOL vmlinux 0xf92027c8 dmam_free_coherent EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94efa8a __pci_register_driver -EXPORT_SYMBOL vmlinux 0xf9551216 kern_unmount -EXPORT_SYMBOL vmlinux 0xf958c37d tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0xf9605752 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xf9673497 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0xf96c017a fb_io_read +EXPORT_SYMBOL vmlinux 0xf94929fd genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xf95883b2 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xf96b7a35 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf983dd61 tcf_block_put +EXPORT_SYMBOL vmlinux 0xf972a36f lock_rename_child +EXPORT_SYMBOL vmlinux 0xf9768d5d of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a67c43 dquot_disable +EXPORT_SYMBOL vmlinux 0xf9ae2121 proc_set_user +EXPORT_SYMBOL vmlinux 0xf9b1061f dquot_quota_off EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many -EXPORT_SYMBOL vmlinux 0xf9bddaaa mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0xf9bfac6e trace_event_printf EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c2f570 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xf9c62230 netif_set_tso_max_segs -EXPORT_SYMBOL vmlinux 0xf9c84b14 pci_set_master EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9cdd3ce mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9f864e6 udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0xf9fb8112 may_umount_tree +EXPORT_SYMBOL vmlinux 0xf9cedab5 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xf9e2e7a6 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xf9e601a5 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xfa001c97 sock_common_getsockopt EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa2021fd vfs_fadvise +EXPORT_SYMBOL vmlinux 0xfa14e602 __break_lease +EXPORT_SYMBOL vmlinux 0xfa19ade3 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa2ec68a simple_rmdir -EXPORT_SYMBOL vmlinux 0xfa45c231 ram_aops EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse +EXPORT_SYMBOL vmlinux 0xfa54d2c1 write_cache_pages EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa8b95aa of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xfa63a112 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xfa751dfa vme_init_bridge +EXPORT_SYMBOL vmlinux 0xfa75de04 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xfa75e2d6 rproc_add_subdev EXPORT_SYMBOL vmlinux 0xfa9c2ece _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xfa9d39f6 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xfaa9a0ac path_put EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaaf64c5 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0xfab05c4e iov_iter_init +EXPORT_SYMBOL vmlinux 0xfaaf70d3 mpage_readahead +EXPORT_SYMBOL vmlinux 0xfab4e5e4 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xfac7226d agp_generic_alloc_page EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfacde28b fifo_set_limit +EXPORT_SYMBOL vmlinux 0xfac9c0c1 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xfacebabb follow_pfn EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xfb0f59c2 eth_gro_receive -EXPORT_SYMBOL vmlinux 0xfb1c482e pps_lookup_dev +EXPORT_SYMBOL vmlinux 0xfaf259aa param_set_int EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb44e508 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xfb456f9e cred_fscmp -EXPORT_SYMBOL vmlinux 0xfb53807c sk_capable +EXPORT_SYMBOL vmlinux 0xfb4ae86e netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6d3174 is_bad_inode -EXPORT_SYMBOL vmlinux 0xfb73f1a9 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0xfb81c7ab dev_disable_lro -EXPORT_SYMBOL vmlinux 0xfb9087c2 security_sk_clone -EXPORT_SYMBOL vmlinux 0xfba192ce ip_defrag -EXPORT_SYMBOL vmlinux 0xfba609e4 __mdiobus_read +EXPORT_SYMBOL vmlinux 0xfb82c6f6 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xfb8617c5 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0xfb93e38f agp_alloc_bridge EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb0cd67 dput -EXPORT_SYMBOL vmlinux 0xfbb61f6a __netif_napi_del -EXPORT_SYMBOL vmlinux 0xfbb7ba84 mnt_set_expiry EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbbb8faf fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xfbb9089c pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbcd7763 __folio_start_writeback -EXPORT_SYMBOL vmlinux 0xfbdf7a36 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xfbd4b99d xfrm_find_acq EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next -EXPORT_SYMBOL vmlinux 0xfbee165c mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0xfbf5f6d1 inet_protos +EXPORT_SYMBOL vmlinux 0xfbf18b6a blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xfbfb135c folio_create_empty_buffers +EXPORT_SYMBOL vmlinux 0xfc1f2d14 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xfc27b9d3 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xfc3324a5 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc7b1610 fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0xfc86c48c scsi_host_put -EXPORT_SYMBOL vmlinux 0xfc8e71ce simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xfc8e97d7 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xfca8e71b bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0xfcafc099 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xfc47004c generic_block_bmap +EXPORT_SYMBOL vmlinux 0xfc47e666 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xfc5d2d04 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xfc6def18 gro_cells_init +EXPORT_SYMBOL vmlinux 0xfc71b245 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0xfc98d0b1 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xfcb27ff0 percpu_counter_sync -EXPORT_SYMBOL vmlinux 0xfcbff6f8 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xfcc79678 is_nd_pfn EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce27a8c sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0xfce79836 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xfce79e07 pci_enable_link_state EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcec89a5 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xfd299dac skb_copy +EXPORT_SYMBOL vmlinux 0xfd2935d3 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xfd2e1cca vfs_fadvise EXPORT_SYMBOL vmlinux 0xfd30af89 crypto_sha3_update -EXPORT_SYMBOL vmlinux 0xfd50205d devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xfd8f7d17 kthread_create_worker -EXPORT_SYMBOL vmlinux 0xfda16795 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xfd479192 serio_rescan +EXPORT_SYMBOL vmlinux 0xfd589826 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xfd5d589c arch_free_page +EXPORT_SYMBOL vmlinux 0xfd60f2e6 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xfd61ea5a dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xfd6bea86 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xfd760b8c dev_mc_flush +EXPORT_SYMBOL vmlinux 0xfd76e078 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xfda53fbd scsi_partsize EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource -EXPORT_SYMBOL vmlinux 0xfdde31b7 agp_free_memory -EXPORT_SYMBOL vmlinux 0xfdde5ede cdev_add -EXPORT_SYMBOL vmlinux 0xfde59c14 __filemap_get_folio -EXPORT_SYMBOL vmlinux 0xfde75723 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xfdd568da skb_seq_read EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp -EXPORT_SYMBOL vmlinux 0xfdf08caf phy_attached_print -EXPORT_SYMBOL vmlinux 0xfdf8882b configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xfdf530d2 agp_generic_insert_memory EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe2858de begin_new_exec -EXPORT_SYMBOL vmlinux 0xfe3377dc arp_create -EXPORT_SYMBOL vmlinux 0xfe365fa6 blk_execute_rq -EXPORT_SYMBOL vmlinux 0xfe3e9c12 agp_backend_release +EXPORT_SYMBOL vmlinux 0xfe34a8f2 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xfe468b32 qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe560ab3 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xfe58fe02 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe86278d inet_del_offload +EXPORT_SYMBOL vmlinux 0xfe7cbf2e sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xfe8ff47f current_in_userns EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfeaff199 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xfece4639 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xfed52834 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xfeb6f01a mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee0c3f0 skb_copy_expand EXPORT_SYMBOL vmlinux 0xfee8de6a _raw_spin_lock_bh EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef7c41a phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xfef9c9b9 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xfefa7e60 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff04a39e mmc_can_discard -EXPORT_SYMBOL vmlinux 0xff18a576 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xff1e8fec vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xfefe3f54 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xff0e2dd3 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xff1a0cda get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xff1b286e ptp_clock_unregister EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff20a0e7 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff28bd06 security_sock_graft +EXPORT_SYMBOL vmlinux 0xff2d01b9 generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0xff41a709 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xff470cfe blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xff5ad429 iov_iter_advance -EXPORT_SYMBOL vmlinux 0xff614cb4 param_get_byte +EXPORT_SYMBOL vmlinux 0xff44f4a4 ipv4_specific +EXPORT_SYMBOL vmlinux 0xff489e75 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xff5582a4 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xff606687 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0xff66e0fe tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xff68758f blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff722a11 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xff71fca2 copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0xff77b861 irq_set_chip EXPORT_SYMBOL vmlinux 0xff87a58b dma_fence_array_next -EXPORT_SYMBOL vmlinux 0xff9d6db2 dev_trans_start +EXPORT_SYMBOL vmlinux 0xffb91072 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcacbc2 build_skb_around EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcfd557 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xffdb916e csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xffe1978e km_report EXPORT_SYMBOL vmlinux 0xffe690fd udp_table -EXPORT_SYMBOL vmlinux 0xffea5523 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xffee973d filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff74aa2 mdiobus_alloc_size -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x032ee159 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0531fd14 kvmppc_core_queue_machine_check +EXPORT_SYMBOL vmlinux 0xfffe2211 devm_devfreq_unregister_notifier EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07602246 gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07886cd9 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x08fb427f kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0c595f6d file_is_kvm -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0d30009c kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x11ce7627 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1704682f kvm_release_page_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x24984762 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0bb1a1a2 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0bc7a31f kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0e3c57e7 kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0f1f730d kvmppc_h_stuff_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1144f99e kvmppc_xive_rearm_escalation +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x11bc0aad gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x11dc559b gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x12e934ca gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x15c3a09c kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1986dcc6 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1a2801c2 kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d188810 kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1dbc765e kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2299ffb9 mark_page_dirty_in_slot EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2933da00 kvmppc_xive_clr_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x298be15e kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2d2cfd85 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3020acbf kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x28f38233 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x293a1d9b kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2aa6b692 kvmppc_xics_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2b80746c kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2c5342c9 kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x317608ab kvm_vcpu_halt EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x33457ad8 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x35c4344c kvmppc_xics_rm_complete -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x366763cc kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x383941d1 kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x33af8df2 kvmppc_core_queue_data_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x37aa6499 kvmppc_h_logical_ci_load EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3af25ad4 kvmppc_core_queue_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3b170292 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3cfd95fa kvmppc_xics_set_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3efaaf68 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3fed8982 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3a2edeff kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3ee81da3 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3ffb1b79 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x439adbd3 kvm_vcpu_map EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x44c100ab __SCK__tp_func_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x475501ef kvmppc_handle_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4d3a107e kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x46d76f40 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4f88263f kvm_clear_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x58ae516c kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4eb51f61 kvmppc_xive_pull_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5007b599 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5755521d kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x57b1109c kvmppc_xive_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x595546c8 kvmppc_rtas_hcall EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5e88d54a kvmppc_rtas_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5f97fdd8 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5ca6a492 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5dfb2735 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5e2a0b1b mark_page_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x60d910fe kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x62619480 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x64fbedc8 kvm_make_all_cpus_request EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x69b86e22 kvmppc_handle_load -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6d449bc6 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6dd71b4d gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6f313c13 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6f589a02 kvmppc_core_queue_data_storage -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6f651b53 kvmppc_h_logical_ci_store -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6fe00139 kvm_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6ff3f2c6 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x70d4bed4 kvmppc_prepare_to_enter -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x73109337 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x74743875 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x75cb94b3 kvmppc_gpa_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x76247730 kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x76446458 __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x79b9cff0 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x68b876c5 kvmppc_h_get_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6b80e9ab gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6c0d8021 kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6d0490f7 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x73503eb6 kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x747c38b8 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x75f1f7cd kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x798598c9 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7990229f kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7a90c04d kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7b3dbe5d kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c566300 kvm_release_page_clean EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d3b3e08 __traceiter_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d3eeb09 kvmppc_set_msr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d51f007 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7f754900 kvm_vcpu_write_guest EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7f91ee45 __tracepoint_kvm_ppc_instr -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x829a80c1 kvmppc_pr_ops -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x865259ed kvmppc_xive_push_vcpu -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x89a8d995 kvmppc_kvm_pv -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8fe743a2 kvmppc_core_queue_inst_storage -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9390dde1 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x961e8bb6 kvmppc_core_pending_dec -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x97c7df49 kvmppc_ld -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x996a5aba kvmppc_sanity_check -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa02f8255 kvmppc_load_last_inst -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa093663b kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa162c61f kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x803ed117 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x817e80fc kvmppc_xive_push_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x81877e61 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x82c74691 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x84c0c47c kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x865a22b7 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x887b14ad kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8ba8a376 kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8bf6ff68 kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8d604ae8 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x91275f2b kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x929cf981 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x93b8d0e3 kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9c9ffbb0 kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9e69eaf2 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa2514943 vcpu_put -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa70bc632 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa79ce878 kvmppc_xive_pull_vcpu -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaa25409b kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaab0f141 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa3f32da2 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa53de605 kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa9f45e33 kvmppc_core_queue_dec EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xae960395 kvm_get_kvm EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb0458a70 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb06c01b0 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb229864e kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb3920a88 kvmppc_xive_rearm_escalation -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb498921d gfn_to_page -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb58af7dd kvmppc_xive_set_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb7120416 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb982a7f7 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbdfeb58a kvmppc_core_queue_program -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc08eb26f mark_page_dirty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc114c043 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc317576f kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc7c95be9 kvmppc_xics_clr_mapped -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc7e159df kvmppc_st -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcb59dca5 kvmppc_h_get_tce -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcb66f1fb kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb1d0ca29 kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb2db03c2 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xba0c252f kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbc263d34 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc1148390 kvmppc_core_queue_machine_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc19cc758 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc39933a5 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc51c22bb kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc52aacc3 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc7e39b30 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcb3ebf0c gfn_to_pfn_prot EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcf7729b5 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd29c4abd kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd89637f5 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd95f54a2 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdbeef2c0 kvmppc_h_stuff_tce -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdc05840c kvmppc_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdf334660 kvmppc_xive_xics_hcall -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe2959f37 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe3a10080 kvmppc_h_put_tce -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe5df0280 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeabc6a01 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc545a3c kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd06af60c vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd24e902c kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd505bc86 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd73cce3b kvmppc_core_queue_inst_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdb0450a6 file_is_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe3a1bf74 kvmppc_xive_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe62a123a kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe7d85826 kvmppc_h_put_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe8707e7d kvm_vcpu_kick EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xec0dce1e gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xed294992 kvmppc_emulate_mmio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeda930bd vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xee91d29a kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef13ae46 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef13b28b kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf06de534 kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf3f78b45 kvmppc_xics_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf429260a kvm_vcpu_wake_up EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf55e7edd kvm_get_dirty_log -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf65bec47 kvmppc_book3s_queue_irqprio -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf88b3ff6 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf949a295 kvm_are_all_memslots_empty -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfe2abafa kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0xc6847785 kvmppc_emulate_instruction -EXPORT_SYMBOL_GPL crypto/af_alg 0x02f095b2 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x04127cea af_alg_alloc_areq +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7a3fa26 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf870c29b kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf88c6c63 kvmppc_xive_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfffba5f7 kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x0b2a93b7 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x06993ef2 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x0b887c6f af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x146eddae af_alg_wmem_wakeup EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x3e82d5bf af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x43627804 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x606ab83c af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x31023f66 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e42ae56 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x46223733 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x4a4411b6 af_alg_alloc_areq EXPORT_SYMBOL_GPL crypto/af_alg 0x634264a9 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x72b63773 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x72d6a166 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x7aafeeae af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x8321e65f af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x9ed7f27e af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xb08c4069 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xbc4588f1 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xc0608599 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xc423ab99 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x7722522c af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x811aeaaf af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xaeb3781a af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xb0107d5b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xd15ee849 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xdb051259 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xeda88cd6 af_alg_register_type EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0x6e9f6c58 aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x06cd804f async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x27f31a49 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x55481268 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x633da2d8 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9e5bce0c async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x845d074b async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc01481be async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd4b08346 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf5128948 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1a386f42 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x293554e2 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x59a3ac99 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd72663d4 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x717f21f9 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb86a00d2 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd01bc596 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x25c054c1 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7ded07aa async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x130b16ca async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x43229c9d __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xaf3bcada async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xca874abc async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x4191a28b async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe0ba0b63 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xec42c00d async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xef61acc0 async_xor_val_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x316734c7 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xfd60fe04 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x02c78a9d cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt @@ -11687,34 +11688,34 @@ EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x0fc3cff0 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x1212c07a cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x38c12e72 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x3e3df065 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x47f7c201 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x51540d5f cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x5b6b940c cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x948c9f24 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xc3ec5dbd cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xd1c1c31d cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xdda0340c cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xe28a20b4 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xf07734a7 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0516edf2 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x186c2d60 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x233ee19e crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x40f1c520 crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x473b02ab crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x72c42dfe crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8a4c0b39 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9078f9c0 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa0e63b27 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb5de9d93 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc849f722 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc98e4911 crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd3ab0c03 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe473c0e3 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeed9333b crypto_engine_start +EXPORT_SYMBOL_GPL crypto/cryptd 0x01fece7d cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x04d60276 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x23350309 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x3f0a4adb cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x4641cbb5 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x5450b1f3 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x55a8b1f7 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x5c21f373 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7e896c7e cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8f316e95 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xdc06080b cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd773150 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xfa500998 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x00fdbc37 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1f033eb5 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x395d4d9a crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3cc87bdc crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3ddc3409 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4f3e3d8c crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x619aaf20 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7b21d8dd crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7f25984f crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x968e0ed2 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9921bbf3 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9de08492 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xac51248e crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb251f891 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbcd96c21 crypto_finalize_skcipher_request EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key @@ -11724,7 +11725,7 @@ EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xeebbd054 serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm2_generic 0x51e4c501 sm2_compute_z_digest +EXPORT_SYMBOL_GPL crypto/sm2_generic 0x64e4a0cd sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash @@ -11733,84 +11734,84 @@ EXPORT_SYMBOL_GPL crypto/twofish_common 0x8e2b68c6 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x08f0212d spk_set_num_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0c80690f spk_ttyio_release EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1cbbc39c synth_add EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3c8f6316 spk_synth_flush EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x45eda959 spk_get_var EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4a96450f synth_current -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x535a3d9d spk_synth_get_index -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x65b2bdd3 spk_var_store -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6b52ffdd spk_do_catch_up -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6f7892a2 spk_synth_is_alive_restart -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7627da66 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x594ef1b4 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6ef6c590 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7551f4b0 spk_ttyio_synth_probe EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x89de3615 spk_synth_is_alive_nop -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8a6cfc30 spk_ttyio_synth_immediate EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8d7fb709 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8ee7a8a9 spk_synth_get_index EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9f7f2768 spk_synth_flush -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa10d4834 spk_ttyio_synth_probe -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa1abac39 synth_add -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa457ca09 spk_var_show -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa6a51134 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa6dbb270 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa7ede9e2 spk_do_catch_up_unicode EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb899b924 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb988ea78 spk_do_catch_up EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xba0088e0 speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xba346119 spk_synth_is_alive_restart EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbd4ec814 spk_var_store EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc58f6e50 spk_get_var_header +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd10c157a spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd167e8ff spk_var_show EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf -EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe404d493 spk_ttyio_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x03100a2a ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x10ed2721 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x12adf516 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x202dfd32 ahci_reset_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x38753b98 ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3cc17f52 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4704572f ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b8ae819 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5fdea50c ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6e2c7e78 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7f5e8cbf ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x807325fc ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x893c9cbd ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x90a93136 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9bc7fd6a ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa1335bad ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa62e327e ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb1f778f6 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc08d49bf ahci_shost_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc37bf7d7 ahci_sdev_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc607c509 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdaa630ab ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe32562d3 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x037e3789 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x07b8c4ac ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2b2d67e8 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d781191 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3ec0af76 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x45b96c98 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b8d8aa5 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x54fd4d4d ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x56e6e149 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x586380d2 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5a86484f ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6981b74b ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6b89857c ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6fa4e8e6 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9812273b ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x99505b30 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9e6132a6 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa141ea64 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb355d755 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe30b98ab ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe46f2c8c ahci_print_info EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2bea0d7 ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x05e0686f ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x148bdd54 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x23ceb22c ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2e5e4c57 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2f50b31a ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x79fa0733 ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9021fdd9 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa3aa74a5 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb31be9c9 ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbbe293ee ahci_platform_enable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc46a1bdc ahci_platform_find_clk -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd4d16e67 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdc7e58b1 ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe2e5edcf ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe576162e ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xee8206f2 ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xef0a0029 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf875cce4 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xffc8c1b9 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x6c3d3b96 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xe95b270b sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeecab9f1 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf0956e84 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf29bef0b ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0cd2a0e3 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1ba7293e ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x24a748ba ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3f996bae ahci_platform_find_clk +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x65644b6a ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x694156b7 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6c18857d ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x723b8a01 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7833b6ef ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7ef9c23b ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9a213722 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9ef085c9 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa7b470f1 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa9f139df ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbce33508 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xca68441f ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd97712a5 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe27c3d06 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf2995f76 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x01df63ce __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x3ac6902c sis_info133_for_sata EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc @@ -11840,226 +11841,256 @@ EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x2c1e47b8 linedisp_register EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x35e690f9 linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xa9cbf198 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x05d915b5 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xcb22f1ba __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x9493bf38 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xac3dbd09 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x3c3f49b9 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x6faa2bea __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x56a7661c __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xc84c2ee6 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x30c6622e __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xb22ce0c9 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7d1709a3 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xb20cb28f __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd0df851 __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe10f3b4e __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x3523faca __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x4e1829d2 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05fad19f __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x14d8ac61 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34731255 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34bf2a02 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3645a574 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x44937892 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4997f3c9 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52be3b74 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55888ef5 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x583d2734 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d880c25 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6fab5856 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7cee2311 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x86c80b2a bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8907131e bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ebd79d8 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f463aba bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa2387b48 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa781eaa4 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb238a429 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb83b75b0 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc77f39cc bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe171d829 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe64b26ed bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0861be85 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1db611c1 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9d0c407e btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa8f4bcf1 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbf0fc7aa btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd2e831e2 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd3c9f46f btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe9e63d6a btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x032c84fb btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0bff0a2e btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c35e1fa btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5837c1e0 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f0e9625 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x60092c7d btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x792c3852 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7be5f9de btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9b28348f btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb319e364 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc4b68a69 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdb236d9e btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdef59785 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdf62f736 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe93b7569 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf1fe29e5 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf8e87759 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x12f33d00 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1d4b4d5b btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a2fe92c btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x364701d2 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ea7483d btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5d6163ca btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x782d5cc0 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8d58b161 btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb3e099c1 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc37353fe btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xccd10026 btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x92850ec9 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xa885e3ab btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xcc1a8b3e btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7427630f qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbaa0fc8d qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd7097be3 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe45448c9 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xebea4b71 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x24fc48c0 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x55aa733c btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9ddd1ee2 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x3a04460a __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x8df49bf9 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x9868420a __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x16fbf48e __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x30deffd0 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x85ee5b2e __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x98979944 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x1b2dc4bc __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x81a6ef30 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x65a6add5 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x8afff25c __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7a344924 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x91c465ce __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9ba3393a __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xdb97c270 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x619f546a __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe4e6511f __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0de28d22 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12ca631c bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x174ef680 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19826777 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x21c4fba8 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x321623c9 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x502bda33 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5907d2e0 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6cbc68eb bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x76621cc1 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a8797aa bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7f0d0fcd bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x81c8dd51 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85f8ced1 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8d5f65ac bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x957e183e bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9b755fbd bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9babb15b bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9bbcab4a bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa61976ea bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa7c9f71d bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc2ed8c03 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9183669 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1a3fa54 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x008211fe btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x26126b15 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x977fb611 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa45d7319 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xadba7d5f btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb45fcb53 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbbaa7121 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc87d439f btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0fc1432a btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x201344aa btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2cfc5a2f btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3639fd96 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x42c1cedf btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x52a616ae btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x55b9fa15 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x756cd5e1 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x88755846 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x88b92ad4 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x94b39fbd btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e118270 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa6489afa btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc242e529 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe20897e1 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xed925abd btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf2f78bd7 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1e295b9d btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x29f3f36e btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x309a1730 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x489923c8 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x621af560 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6229b6e3 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6b4f962e btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b2881e9 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9dd06947 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb3c6c673 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xde95637f btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x823bc515 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xb2ec2666 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xb40ff5bb btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x60354ebf qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x63cafa4c qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x67469af5 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6c03deb0 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xeab22f67 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x33a834a3 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6c3fb1ae btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x937bdd9c btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9707ea7c btrtl_get_uart_settings EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbf621842 btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xefe0ebbc btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf9bb5d17 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0e55a709 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4c862bad h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x612a0c49 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbc6df531 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x26a23102 mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x28d52ea8 mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4fdc2f89 mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x66c54117 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x93faed80 mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb278e55b mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xbcd10a19 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xf4ecd4ff __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x043c4c3a mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2b4c73c7 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x302ab8c4 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x424cdf1a mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x59562a16 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5d50045b mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6ab5e13e mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x73b8c112 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7671a38a mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7d730a50 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9795e495 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9a4aff5e mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9c6d1075 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa27ab028 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa3e44608 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa4bfb47c mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa6c8b701 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xabdba58c mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb48f7b8b mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbbb3f81d __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbc1816c6 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc1a1ec61 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc518c71f mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd9f201b2 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe4541fb3 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe827816a mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xee66141d mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xef995334 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf3b2c5d1 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf7ff9a18 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x39328da7 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7904054f moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xe4ceed54 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xfb817475 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x06d0ce6a comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0b763c4b comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc57fa77b btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xff99ed03 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x29dc0907 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x76bb692a h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xa362eaae hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xd8bef799 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x09298ae4 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2b252a97 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5e4fbaeb mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5fe39817 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x75a15468 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x809a3109 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc985fd4b mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xce71d8dc mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x06adbb29 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x16dd6336 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2b47d56a mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3ea8a4d0 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x430e5d6a mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4ce20d72 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5a28627c mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x61224bcd mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x651f7d9d mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x65274f57 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76191150 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7c24d3ea mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7ca104e5 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7d3e42b4 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x80147a3c mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x863c7a4c mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8812ae64 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9647fd95 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9823e853 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa5f919c6 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa8f76215 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xacda3792 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb6c7cfff mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xba1de7be mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbccc21f6 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcd3d7224 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdf84fba8 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe9d2ff2a mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf7b54ba8 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xff020386 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x45a7db31 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xac6a247f __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xae62d95c moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xdae708a7 moxtet_device_written EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x116d3263 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1b1a9b5c comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1bcbc3c6 comedi_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1da85c4f comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e51dddc comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x169f2956 comedi_dio_insn_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x23fd44af comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2be25046 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e4117e4 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x289b026e comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2d5cc571 comedi_buf_write_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x33f5a3db comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x39a821c0 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x41ef5c79 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x310fcbc3 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x34bafc07 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3b11b1f8 comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x428adb6d comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4490815b __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b293fa9 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4e9753c9 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f6ce585 comedi_dio_update_state EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54b7c128 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x55d5eac0 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x603063da comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x605fcc59 comedi_buf_read_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6a346c24 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x73225b1c comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x52d6173d comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5379ae6a comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x564eb396 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x57d23d6a comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5851a853 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x65579ee7 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x678e94b1 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x69c0fabf comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x69db887e comedi_nscans_left EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x81edc80d comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x894b433e comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x92933c71 comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9a083930 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xae111e82 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x82a44396 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x90f7e425 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9117c7af comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x919f0977 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9301543e comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x97eb1ffe comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9da084c4 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa8bf24c5 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xac8a6e3f comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xae1f74c2 comedi_dev_get_from_minor EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb7885d51 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb85eed07 comedi_auto_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbc272628 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb997cfc comedi_set_hw_dev EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd09e6743 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd24990f3 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd8ec4541 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd9df696c comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbedfc235 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3f5b113 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd7104d3c comedi_alloc_subdevices EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcb6730f comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe6c4c6c3 comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeba3c742 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfb833ccf comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfde9b310 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x33ca61cb comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x459c93ea comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x56bce3fa comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6ebee843 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7a6b2f74 comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x95917a3e comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xaed0c2a1 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf402b14a comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x03f6c462 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x093c8bda comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1ec082ce comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x97a8da37 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa18487f5 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xbc0cff7b comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x72232521 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdfe61b11 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xff64ad90 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1acc715e comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x420be58f comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x57a0d24b comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9bab5041 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc0c76df2 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc7047b29 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xca0d7435 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf6d30f17 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1d7cf36c comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x790d9591 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x79beae56 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x879d6f20 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xae248cf3 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf718574a comedi_to_usb_interface EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x24418e51 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x9da6b09a subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xc67b5ea3 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xfccb4fe7 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x021f684a mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x05d9e276 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0bdc13c3 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x396d2bed mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3ae72bee mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x41505ceb mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x41d576a0 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x54822625 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x644ee97b mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8064d7ba mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9ca41491 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb7d27a19 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb843915d mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc0553318 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc7a37711 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfee0d19f mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xc416b55b addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x81ae5a90 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xa66b18ea amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x5d7081db amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x12c272eb comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1b5fa9aa comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x23dfee59 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x27f975a4 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2fbfc76c comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5f469ef7 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7b1c2712 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8d88fcb8 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9091bd85 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x95a8d162 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc0126b7e comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcd43facf comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfb9852e0 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x33392386 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xbf79933f subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xf69fb489 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x2bfb93b5 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x5b566655 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xd19df7d9 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xc37b4328 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x08a9000f mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x17cd8bfa mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1e3750cf mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x20f51b7f mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2e82084b mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x333f02e1 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x46d2373e mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5d5b44d6 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6061ec65 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x73cd30fb mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x782f6bab mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa5d9a076 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb0b63a9e mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb40e0714 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcf1ed130 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf877fb60 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x48187abf labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xae782cb5 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x64b0631a labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xa79162a9 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xb582738b labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xd7d1bc01 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xd99c1214 labpc_handle_dma_status EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12070,166 +12101,166 @@ EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0b48850f ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0d90a337 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1887cb04 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1ed8a187 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x20641d0c ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x465b2a75 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x482b8b0f ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x52a1127c ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x59eb98b3 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6031a21f ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6b8dba9c ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8a9ba568 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8ee26dc4 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb40aa9f8 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb7461d22 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xee891b2d ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x306dae51 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3360ad8a ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4a1e797e ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x68d2ec81 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9bcc2a43 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xec5b708f ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1fffd621 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x71a4ff91 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x748a6b68 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x75a5c3e5 comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbb24a231 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd833c03a comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xef35796a comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0cf620f3 adf_dbgfs_exit -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x11800a3e adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1416411e adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1db742e1 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1f5b0972 adf_dbgfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2867453a adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x07144187 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x23fe2aca ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x29f039ee ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x452c1844 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x58271a84 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5dc81dd8 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x64d0bcb4 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6dde8b1b ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7251d4e2 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8d86fd4f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9eb9845a ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa4e8982b ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb9a235e2 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc07fe748 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xef1a964a ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf738d2a1 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x03eb6a3c ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x088e936e ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0f406295 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x1f65cd2b ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2235bc6d ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3ae3db73 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x245d1b93 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x70d2beaa comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x85899fa4 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x86f5ccc6 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa4be3502 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc7e8ea9e comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf51cdfa4 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x006b4fb7 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x06ab90a5 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0782a0b8 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0b5184bb adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x15d736ec adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x28b83c4f adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2addd661 adf_enable_pf2vf_comms EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3140ab7a adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3870d71b adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2d314541 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x30d48c20 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x34e556d2 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x350ccb8c adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x352f1a6d adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3719f0e9 adf_sriov_configure EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3eb0d600 adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4042b43a adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x411b8fdf adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x457230e1 adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x48561fcb adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4daaeebc adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x509217d1 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x50ef97a3 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x56d5a862 adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5f838e19 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x65a147b3 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6b55f5b0 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6bccae5e adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6c83f4cd adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6d70738f adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6d8eab61 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x79901b49 adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x79fe07d9 adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7a75d810 adf_dev_restart -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7c47925b adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x82a189a4 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x86cb6d03 adf_dev_up -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x904bc790 adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x90948eb9 adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x95e18484 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa65c691f adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa74674d3 adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa8deed57 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xac62c916 adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xad625e7d adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xae299107 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb1aba639 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb83f8db8 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb91bf7bc adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbec64c21 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc073ac5a adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc1b890b8 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc47d5974 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e9dc7c1 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x44cddcbd adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4624f764 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4668fc24 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x49f5febd adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4a2196e3 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4e08c2b2 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5a13d05c adf_dev_restart +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5ed7e4dc adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6085c82f adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6154a964 adf_dbgfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x65c8c9ec adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x65da1d62 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6fa59d53 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x729232b6 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x72ff487f adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x77ad27f7 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7c0e57fe adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x803c6fd7 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x893a84a2 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x90fb3842 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9a82fe1a adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa0f28f45 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa10829da adf_dbgfs_exit +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa2365009 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa3271b5f adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa38bb816 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa5f9f5ad adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa92870b7 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaa8624d5 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb0cab723 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb331eec8 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb442a97c adf_dev_down EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc5842a17 adf_isr_resource_free EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd525ee66 adf_send_admin_init EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe09c7540 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd7613ce0 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdb5c49fd adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdec2f80b adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdf594ad5 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe1413137 adf_cleanup_etr_data EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe4795c0b adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe5d6d72c adf_dev_down -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe7eac033 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe909526e adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeb1eda76 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf3439a26 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf56acef3 adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf6f4dd4e adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf93328a2 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfaa07940 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x18b42ed6 nx842_crypto_decompress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x4a1070f5 nx842_crypto_compress -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x5014a470 nx842_crypto_init -EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xd9fb0627 nx842_crypto_exit -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x27acfeaf dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x388bf916 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x050ba287 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x30d41db7 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x768b7aaa do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x827ff151 idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x93ccbe9a dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9e7556b8 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa26684f0 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x002e5712 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1b6b966a fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2b3cd052 fsl_edma_prep_memcpy -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3309b421 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4bbd1021 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x728222f6 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x81415bc2 fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x82a51f2f fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8972f844 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8f41060c fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x91deca2b fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x926f3393 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbbb6e0dc fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd8d5da51 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe54fc2f8 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe731ef6a fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xec22be51 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x027f66b6 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe639aef1 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xea9eef09 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeacd8a79 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xee0942d8 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf81b8b52 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfd87c8c5 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x072ba977 nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x89cf420e nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x9d163311 nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xca143d69 nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xcf84da00 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xe6d0d5fc dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x17e98468 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x42fd27aa idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbc48046a dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc0359203 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd2ddb66e do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xde01e338 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xef18a4b3 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0285a62d fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x10acdb58 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1302f637 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x20e6a5b1 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x31d6891f fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6372cc10 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x63e41301 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6b077308 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x71d04e74 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7cb0d68d fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x98c94cf8 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9b18c833 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xccb803b2 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcf62f34c fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf668d30f fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfb94d9be fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xff7804ae fsl_edma_prep_dma_cyclic EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x8c6dd785 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x222b5f92 vchan_tx_submit -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5b2af8d5 vchan_dma_desc_free_list -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x7cd38241 vchan_tx_desc_free -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xceafc75d vchan_init -EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xcfa9b2cb vchan_find_desc -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x35cf1661 fw_card_read_cycle_time -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x48ffa993 __fw_send_request +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xcb8e3c96 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x3405efc1 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x4e1c0826 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x59d800d3 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe2fc7e39 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xe6ce19e8 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x62c6b4f7 fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xbdc3a940 __fw_send_request EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x2d664cde alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x03d72dc4 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x17893dbb dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1a64bb4e dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2054e3f7 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2da69425 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3d846bef dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3dcf1811 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x461edc35 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x517b4821 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5b0b0c93 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x60b012a9 dfh_find_param -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6b6bc4a2 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x85d1dc34 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8cd090eb dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x913f2e84 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa540a636 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa76eb1e8 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xad9bf336 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb8ea1be3 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbcc27456 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb60c44b dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd5da1d60 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe2c73d9b dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe8a3af87 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xa2ef9c30 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x07277ece dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0917f123 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1099a51d dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x171a040b dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x203b3924 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x24db1ad6 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4e42d6fd dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7a3f3c10 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7e29028e __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7efdad18 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x829089a5 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8b7b21f3 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8ea57008 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8f3cd603 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9c86ae97 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa81d5a1f dfh_find_param +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb2e5f814 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb6fe5c72 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbe2b186b dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd9d923b9 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdf1de934 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe400a8ca dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf5fd9c0a dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf69a2477 dfl_fpga_port_ops_put EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x02a892a0 fpga_bridge_disable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put @@ -12242,360 +12273,360 @@ EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x93c95dc0 fpga_bridge_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x97988bde fpga_bridge_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf523d903 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0014ab78 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0fe7ba29 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x119ed05b fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x11feb5d1 fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2addcfa0 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3501ab05 fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3d602a4c fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7e326e6f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7f1c0c4d devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7f86cb9e fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x819537cc fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xed538bbc devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf54c2123 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1348cb40 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2b2b1b11 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x50784be9 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x546942eb fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5533d90c of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5d4f3046 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5f0ffbab fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7633bd05 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x84da088d devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9bad08fc fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9eee1b3c fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa05c1749 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc062371b fpga_image_info_free EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x77bd47f9 fpga_region_program_fpga EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb73fe825 fpga_region_register_full EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc3ec7eb9 fpga_region_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe41f2405 fpga_region_class_find EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf3ed7f47 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1c483888 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x203418e9 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x27868727 fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2b31a884 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0238b6a2 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x20dc36e2 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x23cd0952 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x240e8465 fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x47ef57f5 fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6244b22a fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6f60ca1d fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x758d556f fsi_master_rescan EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7c7f3018 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa379b8dd fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7b0362a6 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x981bd234 fsi_bus_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd6ad4a5f fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce978418 fsi_driver_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe5ba71ff fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xba948884 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7857f30b sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x92c25d14 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x09e65264 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x103d69f5 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7a1b6093 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa5f3ffb5 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe2dc81a7 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x372826be gnss_serial_pm_ops -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4b6f7cb0 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8aa4d7d1 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd58f081d gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf71052f1 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xefa009f2 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x35196f35 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x02bfed98 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x94b01218 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x08874273 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3c69c729 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3fa3c3ee gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x775570b2 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb8fc8f8a gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0c1aa2fe gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2518a433 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x92174a4c gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9bc209d9 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfbfa170f gnss_serial_deregister EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x074a8e0d idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x2fea5ebb idio_16_set_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xa376d180 idio_16_state_init EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xc0c67d80 idio_16_get_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xec4ea66a idio_16_get -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x69cc078f __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa27aecd2 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x2e5d277d gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x23d463db __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xddc354b7 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x3f0fb170 gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x9d6cb2fc devm_gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xd5cab4a4 devm_gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x23946b77 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2a560099 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x00fcbdf8 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x10829c78 analogix_dp_stop_crc EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x53dccef3 analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x61fb325e analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xaa29dc8a analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd2fac851 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xdbe84be4 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf928f2de analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x453bc007 samsung_dsim_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x4be944bd samsung_dsim_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xe5046fc9 samsung_dsim_pm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x217b308d drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x20f889e2 of_dp_aux_depopulate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x2bd74a82 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x3e864e32 devm_of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x4fd449ac __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x6b7deed3 of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x26bd621c drm_of_get_data_lanes_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3af38d76 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4543be70 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53353b49 drm_of_get_data_lanes_count_ep -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53a583e6 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x55db9177 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x56de75c3 drm_of_lvds_get_data_mapping -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x605a49c1 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4027394a analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5b6c022e analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x88c9647c analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x88fd8584 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb2212fe8 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc4b82ead analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x11419254 samsung_dsim_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x8768cd82 samsung_dsim_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xb0a9d7e7 samsung_dsim_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x7b54b295 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x070baa8f dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x0de2293d __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xa0613156 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xc302ad3c devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xde182538 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x027d88f4 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x28e6ed98 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3816f22e drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3b97e087 drmm_kstrdup EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74e60012 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7592cf05 of_get_drm_panel_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7da2c1ae drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8f3574b3 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x96c2344c accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9a79bbfc drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaaac7305 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x68a651ad accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e848725 drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x724032de drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c7f9c4a of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fd28d14 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x83dd7a52 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x84764bb1 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8df2459d drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x99a19737 drm_of_get_dsi_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9ec78842 drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa9a074c8 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad8735ea drm_of_lvds_get_data_mapping EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb54dfe5d drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb596ac8c drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbedc40b9 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc97aa253 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xccfc2526 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdcc5d995 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd671a06 drm_of_get_dsi_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe8da6b7b drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb1e95b79 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc2f98d5 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc78e45fe drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcbe84b51 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe06407ef drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe391a71f of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe6bbdb7f drm_bridge_get_edid EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x05bea24f drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0bd1b1c2 drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0ff95da3 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x1f270117 drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x282693d7 drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3aaf2742 drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x46ead5c9 drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5f560a9e drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x94624a30 drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa2f41060 drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf0307de4 drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfa38ccf8 drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1c949a5f drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1fbcf687 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3ae02c57 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3c6a854c drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7667fa3f drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa96eedbd drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xabf89bb6 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xae3398b2 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x015b06a2 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2e762c08 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7bd6c28b drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x95629b84 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x98907f4c drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xaa4b2514 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf1e7b391 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xfde90225 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xd11c80d5 s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xe3d0c200 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x1775f709 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x74bdaa3a ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x8639d5a6 ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00d909f7 gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b246d91 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x074801c3 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x10f00a59 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x23b484c2 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x281633ad drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x283b33b8 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x62a49280 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8c72b77e drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x90f4fe3b drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb48c664b drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xc9854c85 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfb298221 drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xfbebc6da drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x09ab552c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2f262af5 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x850df42c drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9f65fdb7 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa06ad3ce drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb4d69639 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc79ec234 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xea30a056 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x32dc87fe drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x415972b9 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5492d55a drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x68ab7088 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa3c7e7fd drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb39289b2 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc171a5e4 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf648efa8 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x79d2ad44 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xcb79c190 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x0e2b50ed ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x5779f885 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xcc13775e ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0314c0e7 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0461f64f gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x099401f8 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0ce2d37e gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13d8b61d greybus_data_rcvd EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b19d1fc gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x210b1ac4 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x24ca5882 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1a83b4d2 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ddd630b gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b81afcc gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2db08d95 gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2df663a5 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x315b316d __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x324c61ce gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ebb728f gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x401bc394 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x42ec2a0d gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4812a7c0 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ea01a18 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6007eb66 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6531a2b5 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ed5dbf5 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2fbebb4c gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3cb2375e gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3e1bfbfc gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x44144e7d greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x469b4eb0 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49c407ff gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52f5e557 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x531894b5 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x578c6ed9 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6369d053 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b5b9562 __traceiter_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d5b4e5a gb_hd_put EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6fa01fda __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71d6fa62 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x721ae633 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72e2962a greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7914faaa gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7d69e44d gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81d73990 gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8276ad82 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8670b425 gb_operation_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ac9453f gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8fa107d2 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x97298d47 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2eddf8d gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3040a44 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa390f3d8 gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3b7e938 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa62d18dd __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbaacd8f0 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x922c93e2 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x99649477 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2ed7d04 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4debc92 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa7512b52 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabaf0d07 gb_operation_request_send EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf2c07db __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbffcc4a9 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc2ba2b28 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc4ccdd62 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc4fc82f4 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca101886 greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca574fcc __tracepoint_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd33373a8 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd346c4d8 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd64d5e10 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd97e6e29 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb24457a __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdfa7c380 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe0e3f9a3 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe54079fd gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4f455af __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5b5381c gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda2cc0ca gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1e82530 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6e44d31 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8194aae gb_connection_disable_rx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeca2f25c gb_connection_create_offloaded EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf2072e7c gb_connection_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf357c63d __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfad4ca50 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb119b8c gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/hid/hid 0x01893b05 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x053bb242 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x09ea38a2 hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c59fc18 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x11da3752 hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1914af78 hidinput_connect +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf741f944 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf9ee76cf gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb27d36a gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd51b8d8 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfe9da8c3 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/hid/hid 0x00cd6b2a hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b5bdfa5 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c34c45a hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f33c165 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x15bea0d9 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x16ec591f __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x178b0e4d hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x181c5cb8 hidinput_connect EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ded287a hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x26bba3a4 hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30f4ef5d __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b7a858e hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c490b67 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3fb400fa hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4478f048 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x46dc24aa hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x471e55c0 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4deef60c hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x50526b3d hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5879e391 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x680396e9 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x68b1f8b5 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a616f9f hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cebe1d5 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7eef1cee hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x822e2443 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c37f5e3 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x20563af9 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23f3927a hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24100812 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3358469f hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3564b701 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a9a9b1e hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3aeb3062 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44dff16b hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4589b51b hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x525320f8 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x643c33ac hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67508922 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x724b9d93 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x737375e3 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x74b9f6ab hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x763408ad hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76e74e07 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x80d0f4ae hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x819e1529 hid_resolv_usage EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9528fcc3 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x98b04faa hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e23c61a hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9fd26a21 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa57717f9 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xada26773 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xafcbf235 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb131537b hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2c14af0 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4fdc593 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7e2b806 hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb11c2f5 hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd9626d9 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc6d27db hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2d07016 hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8ba9872 hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xda3c0338 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb62fc4a hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc8f615c hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe12f1eed hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf48ca313 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7367758 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8eb84fa5 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x90336c32 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x91289e39 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96646f04 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b835c29 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9bb8eccb hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cb85ba1 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ecacf30 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa38495cd hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7b5d7ee hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb656a1b3 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb76d6698 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4fb3ff0 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd40a0d39 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd58cb609 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7954cb6 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8878950 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xddf7c218 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0a6c990 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7125dd4 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec46fae3 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xecf07116 hidinput_count_leds EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb9a217f hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb9c440a hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdcb31ec hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe0a8796 hid_dump_report EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xa358e802 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x186ae845 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x34b0ebcb roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x52d0ec4a roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5f15f6a2 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa4dae19a roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xecca2976 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x181b9a29 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x24bba2e1 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3149a1dd sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5e8cb218 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x95051d6f hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9770ce79 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xacfccea7 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc0bb4dda sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd4b66250 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x3821cf6d vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x49fffd72 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1f346f07 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4a606baa i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7020bda2 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf7edf472 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xed6913aa hid_is_usb -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xef3bedca hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x15e5471b hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x18f05e47 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4cebd2b7 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4e806808 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x829d158f roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x19628224 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5aa4e616 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8d415d0d roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa9fddeb6 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xaea00588 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd0856594 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x032e0110 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4e6e9dc1 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x502bf152 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5b48d3c0 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62a1caac sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6edceb7c sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x71088edb sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4ddc465 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf689c8cb sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x6840409d vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xf9f68e1f vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x19ad6855 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc46481e1 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd0b3f031 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd235092b i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7fa4859c hid_is_usb +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xad8f674e hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1a7c99cb hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1d0e2402 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x20ec8183 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x51f08b43 hsi_async EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c6f2f7b hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9e8dedf5 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9fb3e75d hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac2d2395 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb9a4eaa2 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbeab6c79 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcbe85a0c hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xce36cd17 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdda4fa22 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe025ff2a hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe0aebee8 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe89a4285 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeaf33d44 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf86422a6 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x7aa5e383 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x576e37e3 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5d0269c7 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x611359ca hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6483fbc0 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa18e9501 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaa8755e0 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbfd0a059 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc0c30de8 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd843e5f8 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe65d8f32 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xea5d3e53 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xebf6783c hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xec52ddc2 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xecca8500 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x0d2012b4 adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x2d2d3beb nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x2edefc96 nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xa9c45878 nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc49c80fd nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xd9e34017 nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xffcceadc nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3342ef74 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7ef8bd10 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x86557bab nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xbf210aa3 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc2dc1076 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xf302827a nct6775_store_beep EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x32c9a15b occ_setup EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x639bac23 occ_shutdown -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x063a6ed5 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x299f937a intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2cecccf0 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x663e3f21 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcc774d70 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd014e070 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd899dccc intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdc9fa4db intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe3560fef intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x4913f7a3 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa784091f intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xcaa77ad5 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x26015a01 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x003d07be intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5097f558 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x56be4481 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x73c4e12a intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x84c699b7 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb119acac intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcad73b35 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xce33f6ab intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf979744d intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x1cff1a31 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x36e5c0ab intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xafc42dcb intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x06632663 stm_unregister_protocol EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3c5f3298 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x89fafef5 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x961f41e6 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa04f5e6c stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd707e920 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdef2d886 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf0535ca2 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf70e196d stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x0c98623e i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2e05163c i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x98f1f926 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9f205e1d i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xac69abe6 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb3301df9 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2089d2d8 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x23e13e29 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x25db08e9 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3f80917a i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4640aca5 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4b58cd61 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x58aa3aa4 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59f1585d i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5af7f3ff i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5f4ee50b i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6b32684b i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fc66ee i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x841eac14 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x84735437 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8ba703ac stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa57a7b65 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb60dbe49 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc1e330e2 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf80cb752 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x1ac8c62f i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x79dd2f0c i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa284d545 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc880eb92 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd0fa6743 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1fa66151 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x01302434 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x041e6061 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x055115d3 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x267ad476 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2879ed03 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x366d0d8e i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x36d026a9 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x36ec6ad7 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4d2add25 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4df09ffa i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53bcf19a i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5c6a6383 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64405ff7 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7689c13c i3c_device_get_info EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9137e84c i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x96fb2782 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x99383696 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f9aa272 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa0f6dc6c i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa2ccd921 i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae65b713 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb4221eb6 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeda884a4 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xedc435e4 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf18a9a3f i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf710a082 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf9ef7583 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x506afb75 dw_i3c_common_remove -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x94a1b06d dw_i3c_common_probe +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7be7f821 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x81926bff i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc2d5b735 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcc63e5cb i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd146385c i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd7763cc3 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdd9bd166 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdee0f16d i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xec3a0cd6 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf75e85c0 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfca6cbc8 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x869b59d1 dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x969dbc38 dw_i3c_common_probe 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 0x7340de10 iio_channel_cb_get_channels @@ -12603,141 +12634,141 @@ EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc4c9ba1c iio_channel_cb_get_iio_dev EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf2361d5a iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x46c97317 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4d44005b iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x64ad1293 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x82efce1d iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x929df36a iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x959c072a iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc560faca iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd9ee9cae iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdafdac89 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe1c4cd33 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xeb3e477f iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf82b698b iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x8b285d12 devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1cd1f8a4 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2621f27a iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x391080a2 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x635bedc7 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x69fac16e iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9fa1ab41 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xaac15a28 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb96a3958 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbe8b0672 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd0331c8e iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd8c1f328 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe9e13ef8 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x10f54713 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x4897ae86 iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x63d585e2 devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x0e38956f devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x96ccb924 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x819865d0 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb4776ead bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xddf50fce bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x72eb43fb fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xbc155c5b devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xf5139d46 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2de0bdf6 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x96311b72 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe459d47e bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x93589aa3 fxos8700_core_probe EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0056c78b iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x039eba13 iio_push_to_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x06b06d52 iio_read_channel_average_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x070d423a iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07304c5a devm_iio_trigger_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b71799d iio_read_channel_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dc097e9 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1252a30c iio_validate_own_trigger EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15338c0d iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15ec01b7 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x171e59d5 iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b2fc88c iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x202ef6a3 iio_enum_write EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2542011e iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26ed998c iio_enum_read EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2baddfb6 __devm_iio_trigger_alloc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2cb64235 iio_read_channel_offset EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x34aeb35e iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37d93838 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x390e961d iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b2cb7d3 iio_validate_scan_mask_onehot EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3cf31854 iio_read_avail_channel_attribute EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3f896088 iio_map_array_unregister EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44a6077d iio_read_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ef513d5 iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4fec347b iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b639be3 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e50ea94 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64007539 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54049f29 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57ed9381 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6236becc iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63bf6c23 iio_device_release_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64fab243 devm_iio_map_array_register EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6738f8b4 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6d8287b1 __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x711c1f80 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71bf0938 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x746e755a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7199d903 iio_device_release_direct_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x85b0f691 devm_iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8995dcaf iio_convert_raw_to_processed EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c47565c iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8d404bc0 iio_device_claim_direct_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e6e7b22 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90d79414 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9287969d iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93496778 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x985a7a00 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99e71204 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ee21750 iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f8654ce iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaceec16b iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb257b592 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe31484c iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe7cfa86 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f388f46 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8fbaeb32 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90d2e33a iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x970b2e87 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f348858 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1fb41d5 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7579263 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa9aa74f6 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4353bc5 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc54aec79 iio_buffer_put EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6837d0a iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8c98224 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce1295f0 devm_iio_device_alloc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf213d61 iio_channel_release_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1841df3 iio_read_max_channel_raw EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd924aa9c iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdaef3704 iio_device_claim_direct_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdaf1b394 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde9906c1 iio_device_claim_buffer_mode EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe29d3057 fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef5ae3da iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5c04869 iio_validate_own_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed74bef7 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf53cccda iio_buffer_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff733217 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfff2fd77 __devm_iio_device_register EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x17c80f7d rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x39dab21c rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5dc0403d rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x782e8f3f rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x82285df0 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb664f092 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbc91d2f0 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd020fc43 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdd247339 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xde217016 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeb6059e1 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfda0c2b2 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x7417fa59 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xd34ce7e9 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x350ce774 adxl34x_pm -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x78b8d19c adxl34x_probe +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b271e78 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2191de90 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2215f959 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3a0789c5 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x78c9be90 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7af1e88e rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d5bd1a1 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x81496fa5 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb28b7035 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb591f015 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeab27390 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfcbfb4c6 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x4c87026a input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x84a77c89 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x3c423d87 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x4747b3b5 adxl34x_pm EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f3f1637 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2a9de02f rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x379e39de rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3859ed3e rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x39e4fdcc rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3dc76142 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x51e2d837 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8b9ab1a8 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8e00dbb2 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa6592a46 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa85c770a rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbef90690 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfb734733 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7027c642 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x73197c0f cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x968bf888 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x95ee445c cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xdd448969 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x9062b963 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x94bbb784 cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x08e02071 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x552f2f4a tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x76a17671 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd1137971 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x12ce5862 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x36bce84e wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3adb0931 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3b080724 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3b1a4677 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x495cd705 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x54e2ca5f wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x64e53ee9 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7cdbe313 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x85f6d79b wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8dc78e4f wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa5479be4 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x18020d33 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x35d76114 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3aeee1f1 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4361ea78 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x45d87d6e rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7091ea5a rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7b24de61 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x80a45f32 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x821109bb rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa673349c rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdbbcdf68 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe1f0cb7e rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf2aee97e rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x05009be7 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x78e54f93 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xcd6eb9dc cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8d98ab6d cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd5ff393e cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x51613d21 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x74cbd285 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x291a0d4b tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x555599b8 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe5c8350a tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe88140c6 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x359dd154 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3735c0a6 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x53796ac3 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x559c0a6f wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x596f3115 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x668bdc8a wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x69987ca5 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x742661ff wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb88c6161 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe2af39b wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd16a591c wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfd56631a wm97xx_register_mach_ops EXPORT_SYMBOL_GPL drivers/iommu/iova 0x42acbf2f free_iova_fast EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get EXPORT_SYMBOL_GPL drivers/iommu/iova 0x5a7ce630 alloc_iova @@ -12750,15 +12781,15 @@ EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put EXPORT_SYMBOL_GPL drivers/iommu/iova 0xcefe03d4 init_iova_domain EXPORT_SYMBOL_GPL drivers/iommu/iova 0xef4d8133 put_iova_domain -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x04def935 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0af2dafa ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x52b64772 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x89828074 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x97bb923a ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbe1231ec ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcb3a039f ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdf2e0460 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf2de619f ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x22370d34 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x27996ec0 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8922ef7c ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8defd9a2 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9df60532 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa8f5c9b3 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcd0cfc7f ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdaad59ab ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf1da5044 ipack_bus_register EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x027d7da9 led_get_flash_fault EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x05f52c37 led_set_flash_timeout EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6c8c00c7 led_update_flash_brightness @@ -12772,16 +12803,16 @@ EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd9fdf199 devm_led_classdev_multicolor_unregister EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe18aa903 led_mc_calc_color_components EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf190ec5f devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x30de3dcc lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3a8dd5ae lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3e07bfac lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x44eb5b50 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x79e58117 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa5c044e9 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcc49bf49 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd27fc4d1 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe043c10a lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf4e4b609 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x120d6f86 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x27157aff lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x41d7f425 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x61fcf1e7 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8261e34f lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x85266aa3 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8b108ec9 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbd3afb9f lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc3b8aece lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdd4a05dd lp55xx_unregister_sysfs EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl @@ -12802,42 +12833,44 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05058957 __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x063306f1 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x099baa91 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x174f7593 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1bbccab7 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1d937c3a __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21f43f78 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x247368cd __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x262a1ce6 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x362eda19 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37808fd7 __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37b31e4f __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a3eb678 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3efc4479 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3cc7c2f7 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ce9035e __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3feb7def __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43132d75 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44bb87a3 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46148448 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46e249be __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47b2af54 __tracepoint_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ac09729 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b96c8a0 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4fd9262f __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x502e2323 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58324ebc __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b4a7ab7 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x535f172f __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x55d6710f __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d51df1c __traceiter_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f9386a1 __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6119e203 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64885f63 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66232cfe __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback @@ -12847,80 +12880,78 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81d4d2d1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8453b18e __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86d59f7e __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8702889d __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b4a9270 __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b9fa1d8 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8bba9251 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c5db98b __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f7308be __tracepoint_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c8c39b __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98559363 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f5b822e __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa0840dde __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09a6b09 __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa483d88a __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa9d5c0d9 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad72d247 __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb4c84065 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb877aa6d __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb74c42ba __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbfa7ad37 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbf560034 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd327bf21 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8aa1746 __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f63855 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdbc40811 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd1455a7 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdda8cffc __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde217821 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe59b14b4 __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe62bc566 __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe86a55bd __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe350a5cf __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3c1b65a __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea3a1ab2 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec3327c6 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf021519f __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1ae7b3c __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc0a0b57 __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd5d057b __tracepoint_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfed8327b __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x018cbcfb dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x04b7e15a dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0c0ae5e3 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0c20fe99 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0cee7d81 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0fe0acdb dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x13f2ac82 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 0x1e451699 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x27b6fc4c dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1d5206ed dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x286b5f42 dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x34372f85 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5b51bcfd dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x63fe1b99 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3e03d03e dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x48e31176 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4d6c0d6e dm_bio_prison_free_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6b3ac3b9 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6e69c7f8 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 0x7fd1c6ac dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa68be19f dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x80205106 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8db9086a dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa2d5f67e dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa7e8cd71 dm_cell_release_no_holder EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb3a10ddd dm_cell_get_v2 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 0xbe40d91b dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xba18d347 dm_cell_lock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xceb811d6 dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0b51f7f dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeae04772 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf14daaad dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0629158 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe45b948f dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1f92b59d dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x4196665f dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x656100cc dm_bufio_client_reset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard @@ -12945,40 +12976,40 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1c852cab btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x23ddc5ab dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x28ec3a44 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x37ef59a5 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x481a0b15 btracker_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4becb830 dm_cache_policy_get_hint_size -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4cadbbf7 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x50b3c64c dm_cache_policy_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65eea825 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7a03960a dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf29a135a dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5c1f0326 dm_register_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x718514db dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x4eca9d3a dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xcb1acd0b 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 0x050bfc7c dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2c786726 dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 0x4a8aa3d1 dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x61c96496 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 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x981faa19 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa4e827ce dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb1388be5 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 0xcc6de916 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 0xe5bf9bef dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf8f6f164 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xeaf51a62 dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf97b5cac 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 0x01f7c2b0 dm_btree_cursor_begin @@ -13039,7 +13070,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9718cffa dm_sm_disk_open 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 0xa0bc1801 dm_btree_cursor_end -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa903d6d2 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa99029b9 dm_bitset_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb940af6a dm_array_info_init EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbdde4031 dm_btree_empty @@ -13047,6 +13077,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd8682982 dm_btree_insert EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb2c8e97 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdbbb4efd dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdf3a4e7d dm_tm_create_with_sm EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe07a2542 dm_bitset_new EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe0e68183 dm_array_resize @@ -13055,73 +13086,73 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xedf5036f dm_bitset_flush EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0432fde3 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x31fb4039 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x40164dc2 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x544e9202 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x555bb0da cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6ed1a4a0 cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x84efff6f cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x84fad563 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x918f20d5 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9837d52e cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9fc64382 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0901082d cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b8eb4a7 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4e6491ae cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5025ec96 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5aa81b61 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5fa5ff0c cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x694eab1b cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x69ce13da cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x71c31204 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7d68c20e cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fde261e cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8d9b96b4 cec_notifier_parse_hdmi_phandle EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa5b27242 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xad2bd0c2 cec_register_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb7a3d71d cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb7c9ce1f cec_s_log_addrs EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc10a4c3b cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc0044aa6 cec_notifier_conn_register EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xce9d8d6d cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd32609b8 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xda7ca382 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe6d148cf cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf1f7b30a cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd0bc3623 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd551abb0 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd6296049 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xef240758 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf8799261 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfd11316d cec_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2c421fc8 saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x30e720c3 saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x46417651 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x645f03f3 saa7146_setgpio -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6e82c77f saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7be04d20 saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9091efb3 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9f1486f4 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x07b6ccde saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x135ac995 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2fa81e8a saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x398b3c69 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6fee9947 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7b69a392 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa620f1b1 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb25afe73 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc6c25da6 saa7146_pgtable_free EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe4763df5 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfa1bee65 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2802d58f saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x55105f80 saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8d96bf6a saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8fd6e2d4 saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf5231e9f saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0497a291 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x17081ce4 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x172ccdc2 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1862609e smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1938e607 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1c30f04e sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf21a5063 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa8f9b24b saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe32d3f1e saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf65a141e saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf6c5457b saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfc1410cc saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x12b008c4 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1fc78d02 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21d79fbf smscore_get_board_id EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2910e37b smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3385a82b sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x44eb2934 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3f89728f smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x497d9ae8 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68cef948 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x729d973d sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d315abe smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6bbf16d6 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6dddbc7e smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b170419 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x78ddaab1 sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x87e40c59 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x987d9007 smscore_unregister_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3f3733b smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb698a42c smscore_start_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbc979c77 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe0c3fcad smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xffde6f8e smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdc4ddd1b sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xde1d6089 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe8e13652 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea5deb47 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xebc9801e smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xee08b57c smscore_register_device EXPORT_SYMBOL_GPL drivers/media/common/uvc 0x08c5db3e uvc_format_by_guid EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text @@ -13140,435 +13171,435 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0555b56e vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0134f72b vb2_core_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1cb3c92d vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x20be2f99 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b64bc83 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2d403571 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x37e95bd8 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1638389d vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x245e78cb vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x27cee6b4 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x33d03c96 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3618845e vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3a3a1f2b vb2_core_querybuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c22713a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x43cc6c42 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x473b3d56 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bb48cdf vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bd48419 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4da057c8 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4db376e3 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f005be1 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f708e3c vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x49023247 vb2_core_queue_init EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50a1bb4a __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x53a3dc1e vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5761267f __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x70379dfe vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x78b02cf3 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x595585de vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6278c3fc __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x62c1e50c vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x680772fc __traceiter_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ee32286 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c5f8ced __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x994f9dc2 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa1fe2130 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaa52c8eb vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb1637d98 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb2055cb1 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x80a18726 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x886ced63 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ddd45da vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x91c44192 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaa8cebe5 vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb8520dbd vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb979d164 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9a9b5b3 vb2_queue_error EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbe5fe025 vb2_core_queue_release EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca706b78 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdb51fbcc vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec5a46c6 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcebc8baa vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd498995f vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe187cc49 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe55d0283 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe763cdfb vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe81a37d9 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xebd750ea vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xed9aff33 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf418560d vb2_write EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf97a7c84 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfbcaa36b __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x2e155c67 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xdd1bf3fa vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x39866618 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xba630dd9 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2532b9ab vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x259b0742 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2676d894 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29a909bb vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a902456 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e6e73dd vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e982075 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x31c956a6 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x335dc01a vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46b25274 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4790331e vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x63622b5a _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6ae0def5 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6dbf9978 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7236e17e vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7c9f8fc0 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85c3cae3 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x893827d2 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x896177d1 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x902eae4f vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97e77075 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d4ce3c8 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb60c3c84 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb83b697b vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcfd843d7 vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd75a15fc vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd80bcdca vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd82b5db1 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdb555a7d vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe8b01a19 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe9b5f2a5 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe9e2d293 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf5420926 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf5de6303 vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x6a88640d vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x998750cc dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xe2b4d6e2 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xf7cc1173 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa7368cac as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xccf58504 ascot2e_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0xd7a2dfa9 atbm8830_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x2228ca4e au8522_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xc5c3e871 bcm3510_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0xca19ed21 cx22700_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0xd0a2069b cx22702_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x6e177a8e cx24110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xa8ae29fc cx24113_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xa93aaffb cx24116_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x8567fe89 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x7411de01 cx24120_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x8d1b26b5 cx24123_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xcf798e4a cxd2820r_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x6a5842a1 cxd2841er_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x6d840671 cxd2841er_attach_t_c -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x7762ef12 cxd2880_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0xda4a9d4b dib0070_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x56c91394 dib0090_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xa0a77e98 dib0090_fw_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x4a44e2fd dib3000mb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x19ca593c dib3000mc_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x02684779 dib7000m_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x2244e8ba dib7000p_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x48fec221 dib8000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x6020cf2c dib9000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x20cdee7a drx39xxj_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x973af7e1 drxd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xa1267226 drxk_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0xcd2aed75 ds3000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xa14b07df dvb_pll_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x6fc5f13c ec100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xf12edb24 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x3661706c helene_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x786fdc87 helene_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x4976724c horus3a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x0ef47128 isl6405_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x90883a0a isl6421_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x2fd4d84e isl6423_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x43cc99d7 itd1000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x3c46b1b2 ix2505v_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xd5034e65 l64781_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0xaa787215 lg2160_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xf7ef9612 lgdt3305_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x5d559908 lgdt3306a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x51bcfcb9 lgdt330x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x3ca3ba79 lgs8gxx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0xff884c52 lnbh25_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x1d8a336c lnbp21_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x6d9f5da7 lnbh24_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xefad90c2 lnbp22_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x55964e14 m88ds3103_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0xc04ee01b m88rs2000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xb9eafeb1 mb86a16_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x647b1ad2 mb86a20s_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x1be7369c mt312_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x3b25a92a mt352_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x08c1b579 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x0bf130cb nxt200x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x3202535a nxt6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xfd7df81d or51132_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x1b3b22b4 or51211_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0xa323a657 s5h1409_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x7f2b4f4b s5h1411_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xdec07a53 s5h1420_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xf12903d4 s5h1432_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0xeb39fc52 s921_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0xd1ef5b4b si21xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xb0160b7d sp887x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xedcb9b76 stb0899_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x41501a63 stb6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x3b30b0d1 stb6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xb99b9b3a stv0288_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0xa038af30 stv0297_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x5c8e188f stv0299_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x20e20237 stv0367cab_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x53965152 stv0367ddb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xf45eb775 stv0367ter_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x01443037 stv0900_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xb9435df9 stv090x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x20c312ea stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x2dcb50b7 stv6110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xe2bd6aa2 stv6110x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x05180d94 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0xbcd43d3b tda10021_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xc764d598 tda10023_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xde0ea64c tda10048_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x3859c4ef tda10045_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xcc3a12b5 tda10046_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xd3cfc033 tda10086_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xf9fb4b15 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xe0449416 tda665x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0xd56835f0 tda8083_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0xea8f7c17 tda8261_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x97ef604c tda826x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x53fce80a ts2020_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xe76aef06 tua6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x3600cc0d ves1820_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x2ca0e4b0 ves1x93_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xb9b15194 zl10036_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x36b2daab zl10039_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x2b28f7dd zl10353_attach +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x203b8aa9 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf9e83686 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x258eb48b vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xc669a894 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x03c7ee03 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0ae3ae17 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0eec9a0c vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x158492a0 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x189ec66e vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21449ab2 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28ba3c3d vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2c108ffd vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2ff9b349 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x300dd8b3 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a005640 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4af45bcf vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4b19b959 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4d96cdcd vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4dc28105 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x76f5c119 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8358b8c8 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8f719d15 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x93051c1e vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x94f680d5 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d3f2594 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9f55a8b7 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xadd1a802 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xade63194 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc2f54bba vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc3fe98d7 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd0d6911b vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd593c996 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe06ec25a vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe10ebbbe vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf29d8fc6 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf9875a90 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfaec889f vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff44943b vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x0392ae21 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x320d7cbd dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc546f8e3 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xe72b0854 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x8e90cdfd as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x3f431898 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x65178aa2 atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x601b7bef au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x1d8a583e bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x212bc00f cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x85e7beb5 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x852557a0 cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x430bb4ce cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x793636b2 cx24116_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6e55d3a7 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x65444f10 cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x7c605eef cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xa7e6f871 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x370b25ee cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xc9b3fc13 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0xd2a1e5c7 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x1723ad6f dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x8e103bc4 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xbda3e70c dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x88a2759b dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xd65b7971 dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x64c737bf dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x9f22f253 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x28e11e42 dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x0aee5600 dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xdc989559 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0xf6e80059 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x9262e70d drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0xdaadb10c ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x2f2c7bab dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x8e0e4a15 ec100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x59fc45fe gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x13cd48be helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xff8ca61f helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0xbac0efd0 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x9b85f898 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0xc76ee853 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x674a8eb2 isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x03529860 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x57c7c676 ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xcdf65a41 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x76cc3998 lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x5e87533b lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x0f628230 lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0xc5b4237a lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0xe763f857 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x85b8d07d lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xa35c6f6f lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xfb5de06e lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xd4c9ec3c lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x9e4a4ef5 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x6356d795 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x70b224a8 mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0xa7238a2c mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x61d7aab3 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x80ed2041 mt352_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xf0347b7c mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x418a9b1d nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x6202f99d nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xb70653cb or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x58575007 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0xf34ab009 s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xbdcd5bb6 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xb6007418 s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x33cf1729 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x723309ea s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x84aae365 si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x2faed011 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x67a1a40c stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x42693870 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0xcdc2d7e2 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x1dac6158 stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x04363854 stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x67bdf44f stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x3d066d6c stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x9ace8b4b stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xe9bad82e stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x5e93c9bd stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xfa7b7697 stv090x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xdd7b96ab stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0xf29859d1 stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x385819cd stv6110x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x8ad81216 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x72695aec tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x647ce216 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x281b0faa tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x28e14d1f tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xdc829b45 tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0xb84eb7f7 tda10086_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x1713fdea tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xedafe14e tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x3e5a18de tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x61c0bf85 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x26c9656f tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x60b87d21 ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xe453cd15 tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0xec7df717 ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0xeff8744e ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0x8d6b5e84 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xb972c529 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x8eb63469 zl10353_attach EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x105bc954 aptina_pll_calculate EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x998c40e4 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x019324a0 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0c32acba max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x318a435b max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x329d1ee6 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4930dd33 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x527ac5f9 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6b702327 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8f536d06 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9ff43347 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb7ef61dd max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xba9addf9 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xce4d4f10 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xee3a0402 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02a8ba75 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x09c2e4a4 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x09cc754a __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b090a5b media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20229e96 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2a2607ac media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2beb92af media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3cff7e15 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x420b865d media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x441c5fed __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x48464c69 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4876cd61 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c46cca7 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4f65c70b media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x540fc266 media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x547bed9f media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5882f8e2 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x595215dc media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5a251f5d media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x633460e5 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x028b252f max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x15bc7b6b max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2935f8a0 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x40b92750 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x591c3a33 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x643df60d max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x748775bd max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7e1504a8 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9801e115 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbc350e6a max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xca25c415 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xddf53d79 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfe2ba2bb max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0398a7ed media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0b807927 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x133b11ef media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1d54bee5 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2c1dab9a media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x313c37f2 __media_pipeline_pad_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31d1e54a media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x34517e77 media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38d84fb4 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x390812a7 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a952c4b media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3bd45754 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41176e56 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4373dd06 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45a0c698 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a023078 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5147ba58 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x536f0e65 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x551ffa3b __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55d0e7ad media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x639a0222 __media_pipeline_entity_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65a6dd8e media_device_unregister_entity_notify EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65dd67e0 media_pipeline_entity_iter_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d6eafb6 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6f817b31 media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77dc88ee media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c2aad0e __media_pipeline_pad_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d5e609e media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x816cd434 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x863afd53 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8781f43f media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8785bc4c media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8d9b688b media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8fe44bdc media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94b5edce media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x963e47b2 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98ee7afb __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99de4a5a media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a181200 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a214a6e media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e9adc2e media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa6085f6a media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaeb2191a media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf548d10 media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb92ba2e5 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb945446 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbda03312 media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd550fa0b media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd84f3d2f media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde211cf0 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe4049c06 __media_pipeline_entity_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe41c5266 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe4a6451c __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe58fb658 media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x669f1c0d media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67775c5b media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c1af4f9 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x78fdb4f3 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83b90c04 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x86a205c3 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87577dda media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9885be39 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b7eae62 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ba301b8 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9fe633bd media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa50e6fe9 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaa511194 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaac6dccf __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb0c57e2d media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb148fc09 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4131498 media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc9607b1 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc4461375 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc63a9505 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc648be27 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9260b7e media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb023651 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd33f6e10 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd81b6bb3 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdab6fb21 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd9f86d8 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf670c83 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe487185b media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe541fd49 media_device_usb_allocate EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe6ef8dbe __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb2c1dac media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xec1f25da __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xed09e633 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfdab8ee3 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xffd98070 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x1064e53b dst_attach -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x88a60511 dst_ca_attach -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x4f61bfac cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x56778d20 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x082782a0 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x088dd55a mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0d893311 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1007a5bc mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x268be0b5 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x308e1d41 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3eabc7a9 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x42d14094 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48a4de4e mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x605d578b mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x87b65c65 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8f746837 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x90c4adf7 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x937463ca mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa1ef6f4a mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa47c8133 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc5ca62f mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1f88a42 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdfc3cb1f mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x09919ec9 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0c51ad1a saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x155e0c9b saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x32bb3634 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x346b5266 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41a103e1 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x446e6836 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b0606b3 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6ace5524 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8c98e4b9 saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98f1e437 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa19c7579 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaf1d1111 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb66c679f saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe14afef2 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe909dd46 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf164d2e2 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5376516 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf96f4b3d saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x258a7386 ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x74a27d77 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xedb012c4 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeef575bc media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf391cfd1 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4e5d2c5 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7053182 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xfa4e656a dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x908ec312 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa02bd853 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x0c97b419 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x056ba964 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x05aece0d mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0abafa29 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x17f6624c mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1ee35279 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4f64177f mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51823b92 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5c7786d6 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5dbb20bc mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x759b2f4d mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76276cb8 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x87a9fe34 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6c4e3a3 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb6797d66 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc283460 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf83db63 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1e17136 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfe146a7b mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfed10d12 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0bab3353 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1ae4db29 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b97e15b saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3137f0ca saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x358d5afa saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e9c2685 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x645bdaee saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x92b29ae2 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa435d3da saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb0665ab4 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb58171a2 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb8bd6f47 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb958d49d saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2e8d56e saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc5381b65 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe04594c7 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4755a94 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea796554 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf4db01a1 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x00452765 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x33566046 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6ff12ff0 ttpci_budget_debiread EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x82414309 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9194d9f4 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb2ceafce ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe3875830 ttpci_budget_init_hooks -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xea5cb10a ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x380fd954 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x93b9a80a mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9ec1e0a2 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xb2bfcff9 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xcff7d944 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x89b658b1 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc2b0fb87 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc72c57dd ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd73e10af ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x00645e10 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x1ed4a373 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x57435e4a mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xc4b4bf74 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xea4785d7 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x22868be3 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x29f13afc xvip_clr_or_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32a020d5 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x60bdaaa9 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x681792bb xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb031ea50 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb0dce58e xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb12e2de5 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x38ce7a40 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8711bb1b xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9bbcbd72 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xad6f9ca5 xvip_enum_mbus_code EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc82d0296 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcad088bb xvip_init_resources EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf9cb53a6 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 0x5e3f1bd9 xvtc_of_get EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xb600e07a xvtc_of_get -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x73ec6d8c radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa1807925 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7f611d18 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbf16e46d si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xce5643a5 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe4d1b486 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xff89c193 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x074fc15c rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1fc07a45 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x382b70d1 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39765711 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3a1c3157 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6d0a9aba devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6d52c84a devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x73aceb6e ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8bb9e743 rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x90b86807 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9e87df66 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa117a5e3 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x42503ecd radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x59619819 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x29825222 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2c562753 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x34ad10b4 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x49b5f55a si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xdda31ded si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x076ae28f rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x097479bb rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0983a3b7 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x17a96f32 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2aa56980 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x49f873f0 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5017f63d rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6733d5c0 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6cb27873 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98883ff4 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa0499121 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa61e4e5c devm_rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf1c6040 rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf3c390e lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb715817d rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcc2807f rc_unregister_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbef1458e rc_map_get -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1cb2a9b rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc6c905de ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcae941d5 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd5e2e74e rc_g_keycode_from_table EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7875151 rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe92449d5 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfa647c4a rc_free_device -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x41c375af fc0011_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xbcb914ce fc0012_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x2892bec9 fc0013_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x402522c7 max2165_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x7c61bb34 mc44s803_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x4a0be200 mt2060_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xd55172e7 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x4d68eced microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0xc5c483a9 mt2131_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x06ff1e44 mt2266_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x6a1dd9f2 mxl5005s_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0b1d30b5 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x2b55db34 qt1010_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xce35eeaf r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xc0c27d76 tda18218_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xb098d851 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xb5a61463 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x761ac5fb tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7d571383 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xfe70face tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x1fd51d09 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xd891fc01 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xa4ef2071 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xae9f1c67 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa77fe6d8 simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0xdd03630c xc2028_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x3cf012ce xc4000_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x46579a47 xc5000_attach +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7a98535 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe7e2a7af ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xed9b051d rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x59ba8fbf fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x22dc2a8e fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xbef4ec4b fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x143b7d3a max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x26a73cbf mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x8237161d mt2060_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x8f97f56c mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xc9d59411 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x0df877b4 mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x085494ef mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x59594cd9 mxl5005s_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x1b06ee74 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x25fe519f qt1010_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x6750630e r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x1f917410 tda18218_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xcebe977a tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xfc95151a tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa9f935f8 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xf4b18025 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x71b0e54c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x26c5e2f5 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5751e383 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2b2f3ff3 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x3485afff tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3e751360 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0x85586c9c xc2028_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0xfe160633 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x2e97940c xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x16e42afd cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1ba78ac6 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cbf6193 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x229d6289 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x25bcb90d cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30e29479 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4406298d cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4ceb99e7 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x501bfc1a cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5afb03db cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5efb99c6 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x635fbf01 cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x66ae1369 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67f9cbc4 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x96ea5c4d cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9cd5a5dd cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb21691de cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbaf634aa cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc7182fcf cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xefd5a9e0 is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb870305a mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xdfda9a95 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0661c44c em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x13904ba2 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3d69f4cf em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6439523d em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6ee9e478 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0f2a40af cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x375a66e1 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3f1ad30e cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x44e6893d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x46a63af9 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5f8a5640 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7778f8ff cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7d17ba42 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7e88be21 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9b62f498 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c80d47c cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa4e0460a cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb5d21a7b is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca04c91c cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcacefe9a cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xddd38989 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe4b6fc17 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe99d6ca9 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf69fe5f6 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfc7742f5 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x8ee90933 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x1df0299d mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x07bffa28 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x090b7b70 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0e722436 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0f9eace4 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0fca40fa em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x18df6bfe em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3dc4700c em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e6cbd09 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x518b7ac3 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x53769771 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64e4f891 em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d704fb5 em28xx_audio_setup EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fd3cfee em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x87fedece em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8bdc75c1 em28xx_setup_xc3028 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94868191 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9e4b2434 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc58a27b2 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd8b8a189 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6e9c106 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf2dbfd9d em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf5148b36 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa16f2aa em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb6f26f5 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfbcc9115 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0d8c3d64 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0dfab2e2 v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x223814e4 __v4l2_async_nf_add_i2c -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7a8ece0c __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb5e0b09c __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9d9727e0 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae74d41f em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb214b660 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb6b2a5e2 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd9218224 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf2274c7 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x156a4c19 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x39b39e82 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3c3a7aae __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7455eca8 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xce68cb21 __v4l2_async_nf_add_i2c EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -13586,247 +13617,247 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x57001c80 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x57d8291f v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xbf7a1ac1 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x09631104 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x11d5c4b8 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x288fccfd v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x496979a8 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x841c78d0 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x899f2fa3 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xea9cc95a v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0185f76b v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x04607ce8 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0d24ac1a v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4325d401 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x459af256 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x504ff83c v4l2_fwnode_endpoint_alloc_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6d919e4e v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6e338e9a v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x953e6eac v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd51e39bf v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe8a5ea45 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfb9661b0 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08be9f60 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0dafdfb9 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1433330a v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18dce366 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a219f64 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ad597e8 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x27a8ab5c v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2bf67f11 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2cd4fe9d v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2dbe4c0e v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e8884a5 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x335b52d9 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e33924a v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x402fddbf v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43ed79cc v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4bad8f2a v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e3ca275 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f6f334f v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x513d4d2c v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x583f40bc v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5930f0dc v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x596f3257 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x624a2bce v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x669a6bd0 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c887b66 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6b0cf7f8 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc5e3cffb v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcf25ca7b v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf56bad49 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x055a090d v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x060e85cb v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08ee0c07 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0ffa0ac5 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x172466b1 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a5af6cf v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b3016d6 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2b8b33aa v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35d396a1 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b1bdb96 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4098c7fb v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44440260 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fc7daf8 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x51e00063 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5464c8a9 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x565ce414 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56ac5d80 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56bd2762 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a79099d v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5b55c02c v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6a6518e6 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b123c05 v4l2_m2m_buf_remove_by_idx EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75d1b000 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x820d2890 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x838b56a8 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cd3c7a8 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ef8877f v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c018ad8 v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4257d01 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa489d623 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa8a57784 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4ab57fe v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbea8e613 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbff44fad v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x778019cb v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x78c91ac6 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8353d058 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x857b190b v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8db449ec v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8fef1406 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9d283742 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9f708967 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabb7ab88 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb66dbf8c v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc502851 v4l2_m2m_update_stop_streaming_state EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xceec623f v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd92a750a v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe23a25db v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe248fb18 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4cd14b0 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe865d79e v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc97b892a v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd421bae4 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb356b29 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xded04780 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0085451 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1c36c66 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe30799ef v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe81b73a7 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xecb1e65c v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed1d91d2 v4l2_m2m_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbb368c3 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0043f720 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x08dc8307 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a21cf16 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1aeec9ae videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2231c6bd videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x22503d72 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2fb8431e videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x43a51ace videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4fe4d603 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c6b3203 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6030c376 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x65256358 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x730979fc videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73d5f2bd videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7d6247f8 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83cac1e8 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8683e30a videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8836b0af videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9dcef281 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa4915263 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc74313be videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd5b79ca3 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xedbdbd4b videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd37db15 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x380ca4c2 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3f5a58bd videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf738f9ad v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0ba81924 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e2a84f1 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0ec8a94f videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10ae3bc6 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x22c32c4e videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3f928027 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x45499d63 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a4e5c3c __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50c2b2eb videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a14da17 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c7c1d1d videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e71c758 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x80acece1 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83c57a6d videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x850c980b videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8996b23d videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa252c8e7 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbcf5b26 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc4be4b35 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd3f868cf videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd53231eb videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xddb3f25c videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe46a57a1 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf595b9cf videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x24b05102 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4084ee5f 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 0xa72757b2 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf2df5dfc videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x83c4bdca videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xdb775080 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01ac43ec v4l2_mc_create_media_graph EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x01c4e4ce v4l2_subdev_state_get_stream_compose -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x062390e0 __v4l2_subdev_state_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0eedb2ec v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10064592 v4l2_subdev_set_routing +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0278e312 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03aa219a v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03e32b86 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04cc1a4e v4l2_subdev_has_pad_interdep +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0578c72a v4l2_subdev_s_stream_helper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05e9246e v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0cb0f6f5 v4l_disable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a68524a v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b71b493 v4l2_subdev_get_privacy_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b9b9a36 v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bdf821a v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c09aaf8 v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23edfa49 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27a2b750 v4l2_event_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b6856cd __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ba0f4f8 v4l2_subdev_disable_streams EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c031fa4 v4l2_subdev_state_get_opposite_stream_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x316ad0eb v4l2_subdev_routing_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x324a3752 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35d93d01 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x360c4eac v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3be0a71e v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3daad9ae v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ec94250 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x405e0500 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x434ee2de v4l2_subdev_s_stream_helper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d979fb5 v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e26d16c __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4eebeebf v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30757a96 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30e0fca0 v4l2_subdev_set_routing_with_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x368c2928 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e2ecc82 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40041ff7 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x453be8a6 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x487079ef v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4aa6673a video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f3f217c v4l2_device_disconnect EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a6e58b4 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5b979567 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e0591d3 v4l2_subdev_put_privacy_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x622e7869 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64c3ead4 v4l2_subdev_set_routing_with_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a11e622 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x509232ba v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x518e7ca5 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56e160e3 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ff822a8 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ffa0c5f video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6010e90f v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x626bf287 v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6576a22d v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b16f993 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6df7fa60 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e50b7b4 v4l_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x720a6aa9 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72c5c58b v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7466c31e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6eac6668 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x70e051a2 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74831815 v4l2_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7492f237 v4l2_subdev_state_xlate_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7de76707 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e1051e3 v4l2_ctrl_request_hdl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80061741 v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80626241 v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81fae267 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9534d7ca v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96e58ca1 __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75ed547b v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x788a1f0a v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7910afd6 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79588f7b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f4c1db3 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f4edaee v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f9f9810 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x814ee6e4 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8688dc5b v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x887e38cf v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d257993 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91bc9225 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x936ff40e v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93f3047f v4l2_subdev_routing_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97571c45 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97764e0e v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x989b5af8 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99d9ed55 v4l2_pipeline_pm_get EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1e241b6 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2b22420 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa641da51 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9182559 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9db6feb v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaae17162 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacadb7d7 v4l2_subdev_has_pad_interdep +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0a7a54e v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa79a830a video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa874b377 v4l_vb2q_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3dd8d6 __v4l2_subdev_next_active_route EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb48cf8aa __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb77ed558 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6cd298c v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7a341bd __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb82afeb5 v4l2_subdev_state_get_stream_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb98705c7 video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb99c3c7f v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc962f64 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbce09ee1 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc49a099a v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc76e83d5 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9a9fee1 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba6a42cc v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb7b2c5a v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc087734e v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc28b9ccd v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc52eefff v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb3a4209 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcba167f0 v4l2_device_unregister_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf0b5998 v4l2_subdev_disable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xccdfb5eb v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754c8f v4l2_subdev_routing_find_opposite_end -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0bf40c1 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd16c7721 v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd24fdf51 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3a78f53 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3f01ec3 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6f83167 video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7de0f1e v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd20d1b7b v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3182e47 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7af63e9 v4l2_event_dequeue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb1226ed __v4l2_subdev_state_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbe3d638 v4l_vb2q_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdef3dffd __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0af376b v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf9ce2e4 v4l2_event_subdev_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0b98a71 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0ed7333 v4l2_fh_is_singular EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe35a3af0 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe337774a __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3455eda v4l2_subdev_set_routing EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea056d8b video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xecbbd951 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe745328f __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebbcb4a1 v4l2_subdev_enable_streams EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xedde7c27 v4l2_subdev_state_get_stream_crop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeeafbda5 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf014c605 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf18cc054 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf26de85c v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee10ebfe v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef09fab8 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefe76809 v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef0f56 v4l2_subdev_enable_streams EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd6a9a1d v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd6f38f2 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe226f02 __video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff473f5a v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x106e8a14 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8f184bd3 pm80x_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8346b72 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe36e4ec __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x50fcdd63 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xae9630d4 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd62ce8d6 pm80x_init EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xfef9e357 pm80x_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02b2fecf cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x08b148bf wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x17edb2c5 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x19439e4b wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1439fadc cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1929c1e8 arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1949d8fa wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1a646e93 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1a8087c3 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1fe2ff71 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2c028402 wm5102_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3501187e wm5110_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39419a43 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3e334b7e wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x471d6435 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4b8989f3 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x73387d4e cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7afc42b9 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7be4df17 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x80bb8cc0 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa1cd8621 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa2c22cd8 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xacc49f35 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb6daddce wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39add1bf arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39af22d4 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3b867931 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3df052f6 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x42a34c6f arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x677fa6d9 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6f3a454e wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7d1fabc9 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8139a9e5 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x92691173 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa3760ef7 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd151d03f wm5110_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3fee6a6 wm5110_aod EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdfbe649b wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe00826ba arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf2adc2b6 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf5dc06e4 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf5e21c82 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xcc8dbd87 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xd281fb3e atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x11552729 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1a27379f da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x78372e49 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb88bda80 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcceb3991 da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdd6222fe da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xed54669a da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7f925c08 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x8cd5452a atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x058638c2 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2b7c8fb3 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2fa7dbc0 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x43548af9 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x62f43ec0 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6a190c75 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcc579378 da9150_reg_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x37e203b0 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x40fc3ec6 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x465310fb kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8acdaee0 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbfec579d kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xca33ea8b kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcde8b9c2 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf1f43c0b kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x80672471 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc096475f lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf3679073 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x050a9c8a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0ce2b0cc kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x10e2f1db kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x19db5211 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1be3c146 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x56b15f40 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6a437c83 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7caadfe4 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9c4d65ca lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa35e44c5 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xcc5fcf6a lm3533_update EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x16722f07 lm3533_ctrlbank_set_max_current EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1914ca30 lm3533_ctrlbank_get_pwm EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x486c34e2 lm3533_ctrlbank_enable @@ -13834,208 +13865,208 @@ EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x647b390b lm3533_ctrlbank_get_brightness EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x860d55a2 lm3533_ctrlbank_disable EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc7364352 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x51c44e8c lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x53b6b7c3 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa7f0285b lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x07615457 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x076c8817 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x08a7ba67 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6f6e0f44 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfb48f3a6 lp3943_update_bits EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d922e85 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x41347049 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4189acb0 cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4454495b cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4459951b cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e97e397 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e9a3fd7 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x93b114a2 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x93bcc8e2 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9b6c65c6 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9cb3995a madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa4300f5f cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa43dd31f cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb5476785 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbce578ef cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbce8a4af cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbfb4d309 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcda2fe9b cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcdaf22db cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd08409ae cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd089d5ee cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd442c88e madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe7051253 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe708ce13 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1be62f19 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1bebf359 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x58d33215 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x58deee55 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x60cb6184 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x60e96c51 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7c92b235 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8b95f307 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f366fec cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f3bb3ac cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x921098d9 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x921d4499 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa06203a1 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa06fdfe1 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa83b7af4 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb8b77411 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb8baa851 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcc0372e0 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcc0eaea0 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd12585d5 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd1285995 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe3571ead cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe35ac2ed cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe48332ee madera_dev_init EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xffd065e3 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xffddb9a3 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x02eecf3d mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x10e13a55 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2a4024dc mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4254841d mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7470b6f6 mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x840b2f5e mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf829c788 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfb82691d cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfb8fb55d cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfd6ee2ba cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x273bd53f mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5cbd2ca0 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x67819e1f mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x758e6b77 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb0ce4b71 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe20e412d mc13xxx_adc_do_conversion EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1b48693d pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x397c3148 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x39981f8f pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x48873b60 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x63eea77f pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6d63d835 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb1fd1adc pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbec60625 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcf309867 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd403e1ba pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd88c39c6 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xed7b6454 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc5e196e4 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xdc535262 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x00c04645 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1a6942c1 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x456fe745 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa919a91f pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xefa58a50 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x23f9026b devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x07c16745 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0e43872f pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x20d68c42 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2c841499 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x32615d6c pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x36e6cb0e pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3ca8e880 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x437b34a1 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4b3d4c5d pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x69311117 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x99831658 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xffcbcb75 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x570a5cd5 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x57304c0d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x43ead0bc pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x86bef073 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfa009908 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfbcda6e2 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xff1d5102 pcf50633_gpio_power_supply_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xd956976c devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x480600bd rk8xx_probe -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xa692388d rk8xx_shutdown -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xa969768d rk8xx_suspend -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xc4ead6cb rk8xx_resume -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02bb4614 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x17f0c0fb si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e2d246c si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e45b623 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2b3f807e si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2b5b619c si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2bb06e20 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30c284d9 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c13d850 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e5a50bb si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x448ca2cb si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4bf6edfd si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52fea906 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53be904d si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55cfbbaf si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59830584 si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5cc49f9e si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cc80261 si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6dd77961 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x720a2f91 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x748a8f28 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x79f3e324 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a9fa1a6 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5b2eb42 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa66dd316 si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac974d5f si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xafdd24c6 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb04b6110 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9b172e5 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc52793ff si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc69f960b si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd0e73422 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddc78f1b si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddfe80f6 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x016843b1 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x18140bf4 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x708b9884 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x815ba64a sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb3827f89 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x05e47608 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xd069d2a2 stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x81096e88 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8318af26 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd478d6f7 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe4482e4c am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0a579c32 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xa12f9139 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfa0e6f0a tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xb63514e3 tps6594_device_init -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xf11c7613 tps6594_is_volatile_reg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x04ee760a alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x13bc9bc5 alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5caa70f8 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x61e4391c alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6b21171f alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x9bbc03d8 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa4a91021 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x00a645a9 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06186d42 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0b9cbe9f rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1e182aff rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d099857 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2dd571ad rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x33f2daab rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x37856b75 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4c1c6c16 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x506d9db2 rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x54639275 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6be6d86c rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7ef84f66 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fa41384 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x82c22a6e rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x90befe57 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9806347c rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb2d2a4a4 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb7bec84e rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb92cb87c rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbaebe136 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd71030f2 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd796c0a4 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc5cd85d rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x10379e13 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x171d64aa rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1fbe37ed rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x49f70303 rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5ce12c44 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x67b9fab8 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x81634064 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x827126a8 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x86c2892c rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa6fe853f rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb0bcf225 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbc4eb0d9 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd0d42a33 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x06c968fe cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8170abe4 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb5f90378 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xce4d05ad cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x086617f5 cxl_map_afu_irq -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0da7060b cxllib_handle_fault -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x105fec16 cxl_get_priv -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x121cec32 cxl_start_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x26b53585 cxl_free_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2a358703 cxl_context_events_pending -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2fe1461e cxl_fd_release -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3d2daaac cxl_process_element -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3fb97d38 cxl_set_master -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4965088f cxllib_get_xsl_config -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x49a68f16 cxl_fops_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4a149d8f cxl_start_work -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4f7338b8 cxl_afu_reset -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x54a39c83 cxl_fd_poll -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x57675f01 cxl_stop_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x59b200fd cxl_get_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5b96b79b cxllib_set_device_dma -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5e6bfb52 cxl_dev_context_init -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x67505767 cxl_perst_reloads_same_image -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x77d41c24 cxllib_get_PE_attributes -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7ea0cf9f cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x289089c4 rk8xx_suspend +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x3fc5ffdf rk8xx_shutdown +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x4adc0b7b rk8xx_probe +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xccf07c24 rk8xx_resume +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0023f717 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x043c19b2 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20408ef3 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x244d7550 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ade9ec0 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x328aded8 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d48ec59 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49e1ddb1 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ba1b92d si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54b930be si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58fe3e11 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d3c305c si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x659c08c6 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x67bffef7 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x74ba69eb si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x761f8bd6 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7963fc03 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91ba2731 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99f3a226 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cfc7fd7 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4e99642 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xabe4e9ce si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb372c915 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb79c8b8e si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc1dbc4a8 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca162101 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe9099e90 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb193cd7 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xecce6193 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1fe7dc2 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2c77124 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf338c7fe si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfbeca19e si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc4c3a13 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x43c51a37 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9712bb3d sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa4c2dac8 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcd3b3ae7 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xed4bf17a sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x04a1b329 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x16c2de13 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x29720b1f am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb0f4bdc0 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf48c2cca am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xffeca435 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6d765ab1 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x746a8fe2 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb30297ee tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x0a752f2a tps6594_device_init +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x7c55c619 tps6594_is_volatile_reg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0d02c697 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x250e7d50 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4199e628 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4f8d0ccd alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6ad52344 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8d32d193 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xed77404b alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0431b3c2 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x05ba4588 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x193c8d75 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2b5ac5ba rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x384427a8 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x42f1d25d rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x45341e11 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4710cb61 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x479067b7 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x63646a00 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7f4600b4 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8697b4ec rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9613c847 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9cb407bf rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa1459258 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb45877f7 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc7dc4bfc rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcfbfeb32 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd2488851 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xea05bf8f rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed425f85 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeea4135a rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xef52c77a rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf2f0c3f0 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0db6632b rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3c85594f rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4f9a40f4 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x558dea58 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x578476bd rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x773fbe48 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7c57b1d2 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc00a90d4 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcf096dd8 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd17b7ac5 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xda7de0cf rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe352c908 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf8a7cd8e rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2207bae8 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x558c3f90 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x59b03eed cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc73e1ae4 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x17b442d1 cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1ab2a729 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x219a5904 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3215562a cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x359398b5 cxllib_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x39c7c7d9 cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3e436483 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x46a71a7b cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x52001408 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6f32c21e cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x70bd7cab cxllib_get_PE_attributes +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x73efed9d cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7c8479ca cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7cea3f32 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8440bc34 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8444e6d7 cxl_afu_reset EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8944ee9d cxl_psa_map -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x95036fd5 cxllib_slot_is_supported -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x99ef308c cxl_set_priv -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9b3b7a8e cxllib_switch_phb_mode -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc3832b09 cxl_allocate_afu_irqs -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc3db2dc1 cxl_set_driver_ops -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc53b8f7b cxl_pci_to_cfg_record -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc6b7213e cxl_release_context -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcebbcd46 cxl_fd_open -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcee137f6 cxl_read_adapter_vpd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd7538087 cxl_get_fd -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd869ffb6 cxl_fd_read -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xdd602a0e cxl_fd_mmap -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe0318813 cxl_pci_to_afu -EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe4b30e8f cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8db34daf cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x95aa98b8 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x99dfd2db cxllib_set_device_dma +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x99fdb1ae cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9d845112 cxl_get_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa83d721a cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xab74940e cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb0ade45d cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xb4743336 cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xbf053012 cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc07492d4 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc28ca1e9 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc457c8d0 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc6540d8b cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc66f8674 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc68a538e cxllib_get_xsl_config +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xec47a2fa cxl_set_driver_ops +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf6936a3b cxllib_switch_phb_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfc33029e cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfe2699b2 cxllib_handle_fault EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14057,199 +14088,199 @@ EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc986cc03 enclosure_unregister EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xef52a1e9 enclosure_find EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf194cdef enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1ae58ce3 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1ffaa0c1 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4830e9bb lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x523c889b lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x64a7a6da lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcad30736 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcf6e5c3b lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf4d9f187 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x03dafed0 ocxl_afu_irq_free -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x07807db4 ocxl_context_detach -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x090daae3 ocxl_function_afu_list -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1423ecfd ocxl_config_set_afu_state -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1680c278 ocxl_config_terminate_pasid -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1779c930 ocxl_global_mmio_set64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x188b99b5 ocxl_global_mmio_read64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1a8e94f2 ocxl_link_release -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1ce955cd ocxl_global_mmio_clear32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2c1c8c97 ocxl_link_setup +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2a6e0c8c lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2ba86f08 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x39c171d1 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x64a77b48 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9024ce07 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa052677f lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa96a5506 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe2f56b8e lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x14398394 ocxl_config_set_afu_state +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1c3442c7 ocxl_config_set_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x229a4682 ocxl_global_mmio_clear64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2338146c ocxl_function_fetch_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x271f1861 ocxl_config_set_afu_pasid EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d876dd2 ocxl_link_remove_pe -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2e7b3813 ocxl_config_set_afu_pasid -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x30e99394 ocxl_function_close -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x36d310ba ocxl_global_mmio_clear64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3c55bbe3 ocxl_irq_set_handler -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3d438c47 ocxl_global_mmio_set32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3de84637 ocxl_config_read_afu -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x4043927c ocxl_afu_config -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x4fbfeb75 ocxl_afu_get +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2f7305df ocxl_function_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3f0a0d98 ocxl_global_mmio_clear32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x450f4e87 ocxl_afu_get_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5324fc84 ocxl_config_get_actag_info EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5d8814ea ocxl_link_free_irq -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5fe96d1e ocxl_function_open -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7007242d ocxl_context_attach -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7145ec7f ocxl_config_read_function -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7b082936 ocxl_function_config -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7e43e9a1 ocxl_global_mmio_read32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x83bab166 ocxl_afu_irq_get_addr -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x84574ba5 ocxl_config_set_actag -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8b54c64f ocxl_afu_put -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8ecb88ff ocxl_afu_set_private -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x9d4f03cb ocxl_global_mmio_write32 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb0d3b0e2 ocxl_config_set_afu_actag -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb20fc7c7 ocxl_function_fetch_afu -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb77546bc ocxl_global_mmio_write64 -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xbc61cb28 ocxl_config_set_TL -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd2473b9a ocxl_config_get_actag_info +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x66af49ae ocxl_config_set_afu_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x722a7272 ocxl_link_setup +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x84bed41e ocxl_afu_irq_get_addr +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x868536c8 ocxl_afu_get +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8cc74f8c ocxl_afu_irq_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x8f43fe03 ocxl_function_open +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x99d6b9e5 ocxl_link_release +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xabca0c7f ocxl_context_attach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb1becf2a ocxl_global_mmio_read32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb2ec990b ocxl_context_detach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xb4fb4a48 ocxl_function_close +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xbc998dfb ocxl_config_read_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc3593d0e ocxl_config_read_function +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xca695783 ocxl_global_mmio_write32 EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd57e0fa7 ocxl_link_irq_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xdac3192a ocxl_afu_irq_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xde9902c7 ocxl_link_add_pe -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe0095acb ocxl_afu_get_private -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe19fbf03 ocxl_context_alloc -EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf8ff8d8b ocxl_context_free -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x4eb7e86c devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd7f91c99 ocxl_global_mmio_write64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd94ea029 ocxl_function_afu_list +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe09db079 ocxl_global_mmio_read64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe1ab27f1 ocxl_afu_set_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe3944dec ocxl_irq_set_handler +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe6ef1416 ocxl_global_mmio_set32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe9af071c ocxl_afu_put +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xec0ff650 ocxl_config_set_TL +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf00154a1 ocxl_config_terminate_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf00298e3 ocxl_link_add_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf6092ab7 ocxl_context_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf7954867 ocxl_context_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf91489dc ocxl_afu_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xfb7f5f0c ocxl_global_mmio_set64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xfeb2fd48 ocxl_afu_config +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7f8946fc devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x675e2442 st_register EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xecca78ec st_unregister -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x17cae154 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x46c6b9a0 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa35b9b7a uacce_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e4c5888 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e4ebec6 sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11b7abf9 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1252962f sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14f68b10 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x16c18945 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1beb5ff2 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x20a5f32c __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2256b3b7 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x22921020 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x28e9980a sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a7e9d93 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fafdbbc sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d405949 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x454480d6 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c652670 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x53459696 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a1c7fe0 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a22da33 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x690a6eaf sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d9e6441 sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f240dee sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6fb89034 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74868827 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d5f9cc1 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8084c7c1 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x850a76bd sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8bdf392e sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9b414bde sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa2c39ec8 __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4c355c9 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4e20c03 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbdf226d7 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7258914 sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdce2ed82 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdcec02a6 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe85fa7e1 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xebded0a1 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed83800f sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf9e3d77f sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfde38478 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe48c216 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x051d777c sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x35613518 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3c5b7979 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x40e6fa3b sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4766da82 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x50705e38 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcb182a86 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf1ee80cd sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf9521c01 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1d4c73f1 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1ec6f622 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x1f59ed95 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x431e5089 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6b349b9e most_register_component +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x137c47bd uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa2f7e0b4 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xf453c886 uacce_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x00b07f1c sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x01572c82 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0447c04a sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x071fcc05 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08291edc sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0ac7cd28 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b2e5a0a __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0cbc57f7 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0cc253a9 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x212fdbfa sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x25fee2ba sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b129fb8 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2d8d3b8c sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x39dbcd07 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x419388c5 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x424e24c1 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4b682675 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d834399 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f857348 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5315470a sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x537a7933 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b6de174 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x622e2ca3 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6ac11cb6 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7b691b51 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86265387 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9633ca72 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa2673821 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xad9225af sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8ad31c4 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb9ef0dff sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf002ebf sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbf95aca7 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcb25ab57 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4b7e27f sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xee55b13e sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xefa6d6c7 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0ad5537 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd1c5815 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe3eb67f sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfed4e5fd sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff908758 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x08bb088c sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1363e21a sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x29fb4dc3 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3ce6bb2d sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3da8c8ed sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x475ae360 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa8059865 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbbad3f75 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xeeb99545 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/most/most_core 0x308743b1 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3c1c10d5 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3cd0adde most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4d0cca6d most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4df16538 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x62dcaf00 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6b5582ab most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6b99a175 most_stop_enqueue EXPORT_SYMBOL_GPL drivers/most/most_core 0x9ded40d4 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa3030291 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa7ad12da most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa96f0698 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb6c1c97c most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb72ccfa3 most_put_mbo EXPORT_SYMBOL_GPL drivers/most/most_core 0xb735db3e most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbafaca85 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc9b76720 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xea291e57 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf3a266b4 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4c9d534b cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x73b476a3 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8eaa5335 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1272af87 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x6c20e457 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9fd92bd1 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xfde782d0 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7296317a cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf935c0c2 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xfeec857b cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x554f74dc hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x769e9f04 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbac9f6eb most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbe293325 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x46fdd915 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x79d4fcfd cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xbbe3fc83 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x273b0031 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x59694be1 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xaa908467 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xc8ae2d66 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x76d07348 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9fd7c43d cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf5082aea cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x10e48576 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x4a9397e1 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0036ea07 unregister_mtd_user EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00c8fce3 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02c35251 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x072a3306 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08ba2c09 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a72d376 mtd_ooblayout_get_eccbytes EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c2cf296 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cf2e2aa put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17973e3b mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19ba557e mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d391f60 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f1df2d5 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f57a805 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20148049 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22610471 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22e5d2dc mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x262cf06e mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2835a592 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x283f23bc get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30b9e3dc mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3334fa91 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37b6bf2f mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x405d6035 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4307c87d mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44e26c7e of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4876a107 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59869171 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59eff30f mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69073785 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ce8be83 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d800794 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73d957c2 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77449a09 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7fd487c5 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1248db8c mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x126adb40 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16094bb1 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1bacda94 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2147f864 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2386490d mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2808e9f7 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x28c06f84 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29fefcb9 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b53f075 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x372687ae mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38c3f39b __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x38dbcff5 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x454c2cfc mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53ec7d4b mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55dc3393 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59f8ba5b mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62b73ccd mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6469b7c8 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64ba71b0 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66697e06 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66b1715d mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67ed3e53 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6959970d mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b610771 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75a59077 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75daaba9 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77db28b0 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x794da93e mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x812a94fb mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x825bb296 mtd_ooblayout_free EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82828f84 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b52b72f register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d1bc0c4 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x93fc2725 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8fa5593a mtd_read_user_prot_reg EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9867ff73 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a229d07 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa04694a4 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0596590 mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa4dec186 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa609431c __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa579089 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab8d90ac mtd_get_unmapped_area EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xafd1b04e mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0c6cd49 mtd_ooblayout_set_databytes EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb3ba3102 mtd_del_partition EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcf0b104 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd06665f mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbe15aaf4 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd26c64f mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf54ec74 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8ef8baf mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb7ce3c5 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3081fe4 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe856bd0e mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf11f0b2b mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf12e7216 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xffbc92ae mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x21ea9692 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x41bd7345 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8396381b add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x942cdd07 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfd43efec mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd09c99d2 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd14a3f58 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd937e8ac mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3d8145d mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4360de8 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe78b2e37 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe89573ed mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3f42f01 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8f3340c mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfcae7157 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfd6e670c mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x02894bad register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x39d56c69 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9c4d9604 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xda4aa28d mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xee0d9215 del_mtd_blktrans_dev EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0043325a nanddev_bbt_update EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x04e8f301 nanddev_isreserved EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1ca5a0ca nanddev_isbad @@ -14257,10 +14288,11 @@ EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x23967ff5 nanddev_ecc_engine_cleanup EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x29522067 nanddev_bbt_cleanup EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x408f199d nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4c99b5f1 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4e376b1a mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5cee219a mxic_ecc_get_pipelined_ops EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x65e153e4 nanddev_mtd_erase EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x702a889d nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x715e2a84 mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7f7813d8 mxic_ecc_put_pipelined_engine EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8392ef9c nand_ecc_cleanup_req_tweaking EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x83b807e5 nanddev_ecc_engine_init EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x85dc47bf nand_ecc_restore_req @@ -14270,64 +14302,63 @@ EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xab58efdc nanddev_mtd_max_bad_blocks EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaefb685b nanddev_init EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb14ebf48 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcdf5937d mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdcc8fa65 mxic_ecc_put_pipelined_engine EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe9dbc8a0 nand_get_large_page_hamming_ooblayout EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf3faac8e nanddev_markbad EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf62cea5f nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfd773d84 mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x40925b8f onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x9c4ef816 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x03214915 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x05ea3ebb nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0d8f85e6 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0dced9cb nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0fa11741 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xb1cf6a89 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xeb34ffc2 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xc250d97e denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0ec6d522 nand_reset EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1c2ede81 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x299b3b9e nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2ac9d0a4 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1a5a82a5 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1b4ea42c nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1caa7b37 nand_gpio_waitrdy EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2f0bdff2 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x425a1677 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x50a724db nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x34294d40 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x34d1988f nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x39285640 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3b977f87 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x43997f9c nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x454d44a0 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x47b15789 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x47e7fc10 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5366f62b nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x552af022 nand_prog_page_begin_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x589d71ec nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x63c92048 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x663dc266 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x68057529 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6b45afad nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8c87c75d nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb9b17d15 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbc3f72e3 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbf77e530 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcbcb7073 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcc6b5bef nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcf32ac8b nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x564bf3f8 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x67437543 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x74fd7e24 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7cd5775e nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8da47237 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8e88d624 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9deff986 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa4ba9fb6 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1ccc97c nand_write_data_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdacf762e nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe2396cf9 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf7a7fe60 nand_change_read_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x1d1fef74 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x88b7fc33 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00d3e935 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x062b962a ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2e1f33dd ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x2216077b spi_nor_scan EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x399c4515 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3d8684f7 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x41f68acf ubi_open_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x44ab67ab ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5d8b91a3 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x553ce0e9 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x57a4eb4f ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5c62022b ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x62a5646b ubi_is_mapped EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6cf42b01 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7957a28b ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x91cba8a2 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9e86570a ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcdfc2b76 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcf3c7827 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf410af23 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc3fe017b ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcfc67190 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd743a279 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xda57a01c ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdcb35da4 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdf313dd4 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe4069e6d ubi_close_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf87ef46e ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa401fc9 ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1234c04f devm_mux_state_get EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1ca8e091 mux_chip_alloc @@ -14345,574 +14376,576 @@ EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xeb069e71 mux_chip_free EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xef22f0f7 mux_control_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x75e36963 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe60bd314 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1990989d c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x703b8cc5 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x88aab7f8 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbc941105 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdc85c417 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfac85e54 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x39620bad alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x436f9cc6 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x77c8d19d unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8ce1efa3 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x04de1784 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x067e29c9 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0da48fe0 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x715316f0 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc5dcd23c arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x00fffa86 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3bb36113 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x448ca0f0 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x601af556 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6d195ddb free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8e51f0c8 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x170863e7 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x24a48a47 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x740d61eb free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xaf83f8b4 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x018cf345 can_rx_offload_add_timestamp EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x12f28f51 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x140ce7cb can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x20732774 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2663ace3 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45c33d84 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5554ac00 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x56c4a5e2 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a5e8756 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1a9b6ee6 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x216d9e25 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x258b6742 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x29caeaa9 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2c7f9ced can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3845e26f can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4646f93c can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4bed9bbe can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x51d44c93 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x56b92d4d can_free_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x62a55122 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x75404732 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x78b086de can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x78f2e8f6 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x80134cfd alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x83591d25 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x86247812 alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x93dfdd8e can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97dbd846 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa3eaae32 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8cd2274 can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaa63bcd4 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb2a0506d can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbb57c0e6 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbca5c8b1 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc7b69ab6 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd6825bba alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd9eefe3a open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xebdbf1a2 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6d17664a can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x740b4559 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x800c8597 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x862728ba can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x89038794 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x90683718 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa3b98858 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae175d99 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0a26923 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb519a219 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbc6e7943 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc47e5f4e can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcc3b1a38 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcf2fc801 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5d0e51a alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdc6a47ea can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe47f3e12 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xead93e31 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf08bb945 alloc_can_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf17d9228 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfd273e65 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfeafbb1f alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x02b26ffd m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x02f504f1 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x20591d8e m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2a27ba54 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x43237b04 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7a14222f m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa56c3a37 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xffb5113e m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x12f480a2 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x43d60db7 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfc6cc265 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1940170a m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2fbc5b58 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x559a7d4f m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x773cf44a m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa31b0810 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbc0f9f33 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd4524c76 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xedb3b749 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1c31ff0c unregister_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbd75d284 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc372f048 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x44192151 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x1f190af9 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x56eb3175 mt7530_probe_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x67b1b846 mt7530_remove_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xccaf19ae mt7530_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xec65b4c9 mt753x_table -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x34c6efee felix_netdev_to_port -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x4f530097 felix_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xf0b8e3b6 felix_port_to_netdev -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x412c1471 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x03195a53 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0bbcf68c rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1de53ae3 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2a6190e4 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3ff9b836 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x48cdaa62 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4b2207f9 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6af8d4c1 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9856f3c4 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa9f2917f rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xafa06679 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbd75d222 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x3075e08a pds_client_adminq_cmd +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9dabd645 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa8c14ef9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf48ab20b alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc0b90063 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x4e5e2f02 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x24cd87d1 mt7530_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x4dd0b53a mt7530_probe_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x76659690 mt753x_table +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xdd66b488 mt7530_remove_common +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x2e67500f felix_netdev_to_port +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x64b5e1fc felix_port_to_netdev +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xc7f8d501 felix_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x6d1ccea9 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0459299b rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x06cf6543 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x27567e54 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x278c2c54 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x424f26bb rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x50d15e5e rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5446c8f8 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6045a763 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xae71b014 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xafdf7069 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xde0e43f9 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe2ebd428 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x2521b497 pds_client_register EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x45b87b4f pdsc_register_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x4c4cd19b pdsc_get_pf_struct -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x5c30ea5b pdsc_adminq_post -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x72535b67 pds_client_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x64b01d8d pds_client_adminq_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x8003e2d8 pdsc_get_pf_struct +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x86b1e8e3 pds_client_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xbc556c59 pdsc_adminq_post EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xce714617 pdsc_unregister_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xda303671 pds_client_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x029fb6db octeon_get_rx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0851dae6 lio_process_ordered_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x08d51b07 cn23xx_vf_ask_pf_to_do_flr -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0bcfdb69 octeon_droq_process_packets -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0c3e875a octnet_send_nic_data_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x10a3d845 liquidio_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0310d863 octeon_droq_check_hw_for_pkts +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0542c1af octeon_register_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x05ae44c8 octeon_alloc_soft_command_resp +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x11a19597 octeon_set_io_queues_off +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x197db3d8 octeon_droq_process_packets EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19cb4e69 liquidio_link_ctrl_cmd_completion -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1b2f8ab4 octeon_droq_check_hw_for_pkts -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1c728d65 cn23xx_fw_loaded -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1d32acab octeon_register_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1eab3c37 octeon_free_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x22ff5dd3 octeon_allocate_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1a5e9f48 octeon_free_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1b219fe0 cn23xx_fw_loaded +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x210c613f octeon_deregister_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x227d7476 octeon_free_device_mem EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x241a2a6c lio_fetch_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2542c29a cleanup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x25fe7437 octeon_mem_access_ok -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x26522fd8 octeon_free_sc_zombie_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2c69f9a1 cn23xx_octeon_pfvf_handshake -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x306f1241 octeon_delete_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x35b4e940 lio_setup_cn68xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x46f706c5 octeon_delete_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4cf58812 octeon_allocate_ioq_vector -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4e7960bf lio_wait_for_clean_oq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4e81d4a5 octeon_read_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4eedcbb2 lio_get_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x51470b8e octeon_set_io_queues_off -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5627180c lio_wait_for_instr_fetch -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x57f2e532 octeon_setup_output_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5aa48fee octnet_send_nic_ctrl_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5aff3a39 setup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x645f8ce1 octeon_setup_interrupt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6732a0cb octeon_free_sc_done_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x68f5ca09 liquidio_set_feature -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6adc24b4 cn23xx_setup_octeon_vf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x24233ab6 lio_setup_cn68xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x24d36673 octeon_get_conf +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x25b3428c liquidio_set_feature +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2ee35aeb lio_get_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x34ce1ec3 setup_cn23xx_octeon_pf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x384c4b67 lio_pci_readq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3a21e545 octeon_delete_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3b4c369c lio_pci_writeq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3f0ecd2f liquidio_get_fec +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x421f9e8c octeon_alloc_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4283dac4 octeon_read_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4781ce06 lio_process_iq_request_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4a523841 setup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x53c8eae7 octeon_delete_droq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x57c4abf1 octeon_delete_instr_queue +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x57de2568 cn23xx_tell_vf_its_macaddr_changed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5e1a71e3 octeon_pci_read_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5eeee0fa octeon_wait_for_ddr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x67d3aab5 cn23xx_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x696d6327 lio_wait_for_clean_oq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x69855114 octeon_get_tx_qsize EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d0d28ef octeon_init_device_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d2684c4 lio_setup_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6eef4797 liquidio_setup_io_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x700c4b31 octeon_get_conf -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x746b7a61 octeon_free_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x75d11c23 octeon_setup_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7b27f42d cn23xx_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x821b9586 setup_cn23xx_octeon_pf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x822f90f1 liquidio_get_speed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x872c772f lio_enable_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x878653d6 cn23xx_tell_vf_its_macaddr_changed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x89564aab octeon_pci_read_core_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8a578c29 octeon_delete_droq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8cc6e2f8 liquidio_get_fec -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9f56952d lio_setup_cn66xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa0b93bc4 octeon_read_device_mem64 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa46fa745 octeon_free_ioq_vector -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xaa53dd23 octeon_setup_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xab9aeeb5 lio_delete_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xafe51944 octeon_write_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb92dafa4 octeon_send_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb95fe829 liquidio_change_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc1d49c29 octeon_setup_instr_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc3fa1316 octeon_send_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x74bc9f31 octeon_unregister_droq_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x773ffe2a octeon_free_sc_done_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7a115c9b octeon_free_sc_zombie_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7d50ea4d octnet_send_nic_ctrl_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7f1e9475 lio_setup_cn66xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x82b4f7a7 octeon_ring_doorbell_locked +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x94391285 octeon_setup_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x98483eac liquidio_get_speed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9b035376 octeon_delete_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9ccd7176 lio_process_ordered_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9f58f869 octeon_setup_interrupt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9fe5c8df octeon_write_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xaa350286 cleanup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xab681cfe liquidio_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb067d640 octeon_setup_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb19f1bf6 lio_enable_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb1fd7734 octeon_get_rx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb46331f7 octeon_register_reqtype_free_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb6c2ad57 octeon_setup_output_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb966d4e6 lio_delete_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbaca87d6 octeon_send_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc0553671 octeon_pci_write_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc45ac528 octeon_send_command EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6abc5b1 octeon_core_drv_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6d369a9 octeon_alloc_soft_command_resp -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc77baa3d lio_pci_readq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcc475910 octeon_delete_instr_queue -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcd99013a octeon_init_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xce1fdef8 octeon_free_device_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd43d55c8 octeon_register_reqtype_free_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdb2433ab lio_pci_writeq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdf06e5dd octeon_register_dispatch_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe21777c1 octeon_wait_for_ddr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc7e56426 octnet_send_nic_data_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xce60e320 lio_setup_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcf59886d octeon_free_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd665505a octeon_setup_instr_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdbbc7660 octeon_allocate_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe14ba468 octeon_read_device_mem64 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe262e049 octeon_prepare_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe314f416 octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe35d4266 octeon_init_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe5fab081 liquidio_change_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe957de82 liquidio_setup_io_queues EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec7f00a5 lio_get_state_string -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xecc7245a octeon_pci_write_core_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xef41d7be lio_process_iq_request_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf19cff0f octeon_deregister_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf480f065 octeon_alloc_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf6d86176 octeon_get_tx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfb0f4f90 octeon_ring_doorbell_locked -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfc0876b9 octeon_unregister_droq_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfd406066 octeon_prepare_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0772741a enetc_port_mac_rd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0ab831a5 enetc_alloc_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0e132c70 enetc_get_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x118d43e9 enetc_set_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x17be9843 enetc_free_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1b83383d enetc_pci_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1bd22def enetc_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1fceabf0 enetc_close -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x21e4adb8 enetc_set_fs_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2272a909 enetc_free_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x277a2837 enetc_send_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xecf86c4e octeon_register_dispatch_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xeddc239b lio_wait_for_instr_fetch +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xef774ff8 cn23xx_vf_ask_pf_to_do_flr +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf32bab5c octeon_allocate_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf376c2ca cn23xx_octeon_pfvf_handshake +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf7569b96 cn23xx_setup_octeon_vf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfe2259d7 octeon_mem_access_ok +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x03aed141 enetc_free_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x0ac80098 enetc_port_mac_wr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1670678b enetc_pci_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x17248e2f enetc_set_fs_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x21decbff enetc_xmit EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x290512bd enetc_set_rss_key -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x37b0a2c8 enetc_setup_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3a199896 enetc_port_mac_wr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3b318676 enetc_configure_si -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4557843f enetc_pci_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4b70a623 enetc_setup_bpf -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x59eac02a enetc_xdp_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x6d810e31 enetc_reset_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x71e15f96 enetc_get_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x76961a05 enetc_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x77b90bcc enetc_alloc_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x966a41bf enetc_teardown_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa1426c39 enetc_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa1543517 enetc_clear_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb3933222 enetc_open -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb501ad9e enetc_ioctl -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb61e274f enetc_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xba8dfda0 enetc_get_si_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xbaa48c27 enetc_set_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc3b11353 enetc_setup_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcd2bf9e1 enetc_init_si_rings_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xddc5be2d enetc_mm_link_state_update -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe30440ea enetc_set_features +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2f3ff542 enetc_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x331ce06f enetc_mm_link_state_update +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3dfd1375 enetc_init_si_rings_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x46c734cf enetc_send_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x478830fa enetc_setup_bpf +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4996e209 enetc_setup_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4ce044b0 enetc_configure_si +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x62f260a1 enetc_teardown_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x67029ddb enetc_alloc_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x79095842 enetc_xdp_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x88b7a9b9 enetc_get_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9037d848 enetc_clear_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x95544233 enetc_free_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9b7387eb enetc_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa597a5bf enetc_open +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb3b9351d enetc_set_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb7d9002d enetc_setup_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb91e8145 enetc_port_mac_rd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc169fff0 enetc_close +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc1e6cf04 enetc_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc38059f3 enetc_ioctl +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd421e508 enetc_reset_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe5b08c9c enetc_get_si_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe63374ee enetc_alloc_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf217d4e8 enetc_set_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf969a8a0 enetc_set_features +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfa239980 enetc_get_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfe466557 enetc_pci_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x57974f0f enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x5e9afc7e enetc_mdio_write_c45 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb4bd5ddc enetc_mdio_read_c45 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc01d9957 enetc_mdio_read_c22 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc2e0bf81 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xe70f973d enetc_mdio_write_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x696948a4 enetc_mdio_write_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x92d324e4 enetc_mdio_write_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xc0b52bfd enetc_mdio_read_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xca2ab688 enetc_mdio_read_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd57f0c45 enetc_hw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x00492f14 fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x030c9bb1 fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3b4f1946 fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5496874e fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5930c3ee fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5e2142cd fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x67e6af39 fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6e00f266 fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7535a20a fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x88fc78a3 fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xae18b31c fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x37becbab i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa4167d31 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4f42b832 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x63ca2312 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7ad3b4af ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc2c25d8a ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf8758bac ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fecab1 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x080e2164 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x49eb55a8 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5d672d6c fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x80421891 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x88d5e964 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa03f16e0 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa4db8849 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xaf747e12 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb0bdfdce fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xce7fbe34 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xfbe7c7b7 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x3d7ec290 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xbbcca5a0 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x109b3517 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1a38b928 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x46ccca68 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5feac498 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd6adc224 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00749263 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x038a91a7 mlx4_counter_free EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x039b2e08 mlx4_put_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0485e0e6 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0594ef69 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0705cd55 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x093894a2 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x099ec054 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b005e4c mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ba1f6d7 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bf1ce19 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d44add5 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dea3cf2 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e09def8 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1077e8c3 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11c007b2 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12513e8b mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13205dcc mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x144e984f mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16f1df45 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17ab0604 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2064a70b mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21eddf6f mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23c3d1d0 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24f5d54e mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x251fa30b mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2811d8b6 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ce3565b mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d32a3a8 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ec37706 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f94b354 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30b8022a __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x311a695c mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x339457d3 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37a0a19b mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a310cd5 mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bc5fa62 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d1bee9f mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e02965d mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40a8bbaf mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4194c431 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41f780aa mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42bbda7b mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4855c360 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48ee4f97 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bd4c230 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50852eea mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529920c2 mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52e90e04 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x562a48ad mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5997912c mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60b5522e mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6188c97c mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x637fe6f1 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63fb3c31 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65547e74 mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x675941f8 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69f28af4 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f8ed319 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71ef9874 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72a55147 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77b80e53 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78dda806 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c9eb17d mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ec5b8da mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81700ab6 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ed2367 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x832530c2 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85569164 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85ce78b3 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x888a0bfe mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88e6ddff mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8985995f mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x899da2cc mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bea6c45 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91f01808 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96301390 mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d21671b mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa094de87 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0c2ea97 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa242a366 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa52fe809 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa57cd0cb mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabe040a8 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad8f09ce mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb665b577 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbc70b8e mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe186069 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe7d506a mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe9f697c mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6d7f260 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbf2b476 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc84110e mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcda1c3b5 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce66f5b5 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf741f35 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd21cd7bc mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3b985a7 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6b20367 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6d62b4b mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaa76186 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe003e42e mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1b2e36f mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe24e7c9f mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4b08ed1 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe57a41aa mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6acad42 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8ea74bf mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe921d763 mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9b67db3 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea1f1f9a mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeab9f843 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe271b5 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec00f6c4 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeee4804a mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef929917 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1f6f8d2 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2ab29ec mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3769ed4 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3b2b77a mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4679182 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa614015 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbc97470 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03ea52ff mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x058185ee mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09c2ef1c mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0afb1345 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b0a3e01 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d648271 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d7048e2 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dbecf7a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fca6eb6 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15680949 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x165e5ff2 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x178aa421 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e24fefe mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ebeb894 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20b4766a mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25062071 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2548cb6e mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27014ec9 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a50365b mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cd85ff9 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x332eb189 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x370fb656 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b8b9934 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bdb9044 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c538d63 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ddf1b4b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4136a0d2 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4357cebd mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45b52bfd mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46ff507b mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x476a7141 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cc0b5c9 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f1da507 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f3d45c2 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f7c7209 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x554a7811 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5947e8cc mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59540cd5 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cf22678 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e9a4f32 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x602563d5 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62755158 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6616792b mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6691c8a4 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x674ea62e mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a40b2da mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c5927b3 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cae92b9 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e25e383 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fab0d5f mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x728d9c3a mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x774e377c mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78a6bdb5 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78c2678a mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79dec984 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a934585 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bf0b1fb mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c651950 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e6f2efb mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f3dd029 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x810b9977 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81f45f4c mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83dc4cc5 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e7ef42 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87bf33be mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fcb631a mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9139d342 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92625057 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93bde320 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9495c984 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9508f4e5 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d6c8af mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a59569d mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d68be06 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e1173a5 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa03f53e5 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1b66b91 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa39adb14 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa45b4b57 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa716c816 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8467991 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8b46076 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac74555a mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf6643d2 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb19bd1ed mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb60852a0 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6851a74 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc553d84 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd891971 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe84ebd4 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d6a03a mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2a3c568 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc82b3dba mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8dfe0ef mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb2eb01d mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbd71d69 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd5ff730 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3ad7774 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5f2d78d mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5f66093 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd622da3f mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8e90393 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde012ba5 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0e3cae5 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe18232b8 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1c72450 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6989c93 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6e81231 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9cef3f0 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef074b07 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef63026b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefd7f8ea mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3dd1124 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf498e4e0 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf801bc4a __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa9eb95a mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbcf65ae mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff04240a mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff4ba3e7 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01ca67cf mlx5_query_port_max_mtu EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0811a78f mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d0b7254 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0db2e819 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f142ca9 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f34a248 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18319533 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1893e755 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b3f46f4 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ef1affa mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21223823 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2370c7c6 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24992d0c mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3273589c mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34f7a665 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x369be525 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff60709 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40de6adc mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42aafd32 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4359f64c mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4452defe mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4595a3e1 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49c96b06 mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ff5ce7d mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53ff0bce mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5548394d mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5826f17d mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bd6da86 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bed0d0e mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b60596b mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d4d7f58 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7de362cb mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cba994b mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x112abeb3 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11d95b56 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12b177df mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12d941ff mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20064572 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e296ade mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34853510 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aa94cbc mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b7ce496 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d51bebe mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40db9ead mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44efd9b9 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44f4b859 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47b6da74 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50c6ec07 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ee9be0 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x586ee658 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59059fad mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a2efa9e mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bda7299 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5beebbb6 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x624caa49 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6275755e mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66a71ff2 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a7dd80f mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a86e6c1 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6acddadd mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6be41437 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f59b66e mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71a8652c mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73d1a8f5 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a3051b mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bd94eb5 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c56ae23 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fc32d3a mlx5_query_nic_vport_mtu EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82a52d2c mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8411871b mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x859eb3b6 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86be44a6 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e741e7 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ab373ec mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b69cc18 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fd5e8d1 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99b2992f mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d4750a2 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5141337 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5d1e15a mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9fd2b45 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf0e49b8 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb080f8ce mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb64ee188 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6a0901f mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd36b915 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3da649c mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8ab7069 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8c109ff mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca058f03 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3078722 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd46ac615 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd74f9d79 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd967d324 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1510e83 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2e51337 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee9b3f33 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1acec2a mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2905504 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3321451 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5b20da3 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9df0a9c mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe9fe879 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffeb2bc6 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5caa2f5a ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x640f849b ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7d5e61b8 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe7e0e0f9 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1f954d1c devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8413ee7d mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96dce13b mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fd3ec74 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa668cd59 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa67742b8 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaab65dd4 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadb8e580 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb267a3c6 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb35480da mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb517de7 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1c4fcd4 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfed2091 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd249145c mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3c8f444 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd912a424 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd92f29ed mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9d0bd64 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda9875f9 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb103176 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc4e56bc mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe141509e mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5aad9a8 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ff2489 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe725537f mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaa5cff9 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1c5f597 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4168c49 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf765b261 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcb2640b mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe81226f mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x239cd663 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x9ce9c5e3 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb66bc863 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe8ef77ff ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6049d46a devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05463ada ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08a2ad44 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d94a3da ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1900fd2c ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1cf79576 ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x228ed359 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x264a17fc ocelot_port_set_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26c1f7ac __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bf8cf08 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d37662f ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x325b7563 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37436c81 ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x388f9a22 ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b16b67a ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4308cc06 ocelot_port_get_mm_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49a287b2 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50e957bb ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x510c10a0 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51f62474 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c35783b ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c437dd9 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6221caad ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x645ee602 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68097bab ocelot_port_configure_serdes -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a8a7c3e ocelot_port_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ea8eed7 ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83b29317 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8aa0a0c4 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c284867 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ff5ad9d ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x912a0398 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9286082c ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99efa825 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d7f628f ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad6f6580 ocelot_phylink_mac_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1ef844f ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb58a3af4 ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9e83b4d ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5bc6bf4 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4f10599 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9cb4e08 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf42fbde9 ocelot_port_get_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf85a0fa2 ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfccf2f4b ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcff3631 ocelot_mm_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00ed6ce5 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01470d2a ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x029694bf ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03124e24 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09804b8f ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a8219e2 ocelot_port_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1135a04e ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15122a4d ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d495e9c ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1eb45ac5 ocelot_port_configure_serdes +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1eba1721 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24c2f74a ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25a56db4 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b516b62 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x311acc4e ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x327feb0c ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34a8f4ef ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d6f72e7 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e6d10cc ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f12a12e __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x559091a7 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d39b15b ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x608a7e0c ocelot_mm_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68b153e2 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x756f27a4 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bbcaa86 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c0e53a1 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9600da18 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99ccaa6e ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f80635d ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2cdbcb5 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa84f8a4a ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad59edaa ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae8e3b8a ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc020daf5 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2c18e17 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3b2ee79 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6f1b9cd ocelot_port_get_mm_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9cfb4fe __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcde91177 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4565a53 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda6fa1f5 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb30cc69 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb3b3ec1 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf407e916 ocelot_regfields_init EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x045afc2c stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x01810f92 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0e4e1b41 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2d772fe7 stmmac_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x79458c5a stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8c1836bb stmmac_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa091f9c9 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcad9c645 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xddacca49 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2b3a359c devm_stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x51530f19 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5940c9a0 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x970e04d1 stmmac_pltfr_exit -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa0ab905b devm_stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbcc854a4 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc72d9b9a stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xccad7289 stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe51e056b stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf8b92221 stmmac_pltfr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfca62e34 stmmac_pltfr_remove_no_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3f2fcdd7 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7c80ab22 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe2ff3c69 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf0373aa0 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x99a35b5f geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1b551bbc ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x1b63a063 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2943e8d9 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5c30086e ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe9af6871 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/macsec 0x2966d828 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5b0cbb91 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5ec2a22e macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe0a2562f macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xed7c62e8 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x4a89a962 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe202a0b9 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xee7dab9e stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf5b191ad stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x01147f97 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x15df6ee6 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x26b76a79 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x427a80f1 devm_stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x46e4a31d devm_stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7ee81772 stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb6738fd7 stmmac_pltfr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbfb621f8 stmmac_pltfr_exit +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc4993b77 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd5281ac2 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdd2669e3 stmmac_pltfr_remove_no_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2b74f53d w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4dc51b38 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x807c33fc w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xaa3c39f3 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x30bce6ca geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3f307764 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x55082911 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb90202aa ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc0aa1c3c ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xde3eec56 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x455f4120 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x29acfac3 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x33545d0d macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5407d185 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x99e873ea macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xfa180453 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x1bc5ecae mdio_mux_init EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x9c38424e mdio_mux_init -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xa90d8d9a devm_mdio_regmap_register -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-lynx 0x12332658 lynx_pcs_create_fwnode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x163355e9 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xa7aad45a devm_mdio_regmap_register +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-lynx 0x05dbcd65 lynx_pcs_create_fwnode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x23796b33 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3a27fad3 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4d08f3eb xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x909c96f3 xpcs_destroy EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b430bc5 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaebb083c xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd0c2148e xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd0d68dff xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xe7043846 xpcs_create_mdiodev -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf88385b0 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e019077 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x163e49ae bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x245a9a18 bcm_phy_led_brightness_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x285271f8 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2dabb8b8 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33da142a __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3574afb0 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x359388d4 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3865ecd5 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x41ed9f18 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x45eb3451 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e468612 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4e9ce698 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4fa36b35 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x55f39d6a bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5828f3e8 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5e616f16 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x64219c98 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6dcee192 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76819d9a bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d4d7b30 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80e281d0 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x94a671bd bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ec02a27 bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc02a5f6a xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xef2456f7 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x020f553b bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0cf9045a bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x200581fa bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32f4d524 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3453c6b4 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3dd912ca bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x419cf836 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44b8e18d bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4858555c bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f889267 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4fb987f2 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ffca8e1 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5eab93c2 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x62075457 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6488d4c3 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6cf52592 bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x73d6f992 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7f90cba7 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x819a0c1e __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82915704 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a159321 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x99807f00 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9bfd3518 __bcm_phy_write_rdb EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa4d06ebd bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaeabc96a bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6753a72 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc1b3bd92 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc9366e1 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb89deee bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde456048 bcm_phy_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe286bf38 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe3d0edf6 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe79e22b9 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeb691d32 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0849ab6 __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa855877 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xd29cdbc9 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa36f561c bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb027e58a bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9086f1a bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6263e16 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd2e53dee bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd91155e2 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd97edc69 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe527ee53 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe52caec8 bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf558822b bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5ddafd1 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf8f3409d bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa703430 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xffdc05d2 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x3aef92b0 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x8724447d bcm_ptp_probe EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xfb56c620 bcm_ptp_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x029c2132 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x20ce5ada phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1ff7f773 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x291ab612 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c31adf7 phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3abe6fe5 phylink_validate_mask_caps -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4016ea97 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3bd21707 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4278d56a phylink_expects_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x43833b3b phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4655a75c phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x46c29bbd phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up @@ -14928,857 +14961,854 @@ EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9b652b6e phylink_resolve_c73 EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa16449b4 phylink_ethtool_ksettings_set EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb1b3f6ed phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb75799be phylink_generic_validate EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc2b6b44d phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc5e66321 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd4d8417e phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe4dccc15 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe21efbf6 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf875c251 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf6dd077b phylink_generic_validate EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x0c5468ec smsc_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x4b05936b smsc_phy_get_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x5ea2d833 smsc_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xa1e73342 lan87xx_read_status -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xb605f8f1 smsc_phy_set_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xcc7ddf81 smsc_phy_probe -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xce285627 smsc_phy_config_init -EXPORT_SYMBOL_GPL drivers/net/tap 0x1fd453bd tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x267091e2 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x27be2e6f tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x28260f5c tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x57bff3cb tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x7099636b tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x740adee5 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xac624039 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xe005017d tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1f9f36d8 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5055ded6 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x694a0d7a usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x703ab6e5 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x95fe72d0 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xec5b8ff0 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf79079bf usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0b366987 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x179c9aff cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2cae40a2 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x36c38f76 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x625aae72 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6e38fca0 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x80328d9a cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8dee20cb cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa17169af cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd1fb7f8a cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xda95f8c6 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x51915f99 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0c7262b1 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x25aa8263 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x347540b3 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x859bde9a rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb1c8e028 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfa78fb32 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x012fbe17 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x095f0020 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09fc51cc usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1db1f601 usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f75997c usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21060211 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x233a331b usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43abd35d usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43c31bfa usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x450ffb71 usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e1b1650 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c7a92b6 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x709abb38 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c56422b usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cc6d166 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fed5c51 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x860da26a usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d0091c9 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9cd6ca96 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9cf7fa03 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e843e7d usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xadca5687 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae514b3c usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb789f84e usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc886ce1 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc1e630ff usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc36ba6ed usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc83f1ffe usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd84bc43e usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6ddc768 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xea299db2 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf03c8675 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0564545 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6d12312 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2c79fcb2 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x3d4637bf vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x473d65c6 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xcaf2981b vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x968da082 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa739ac24 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbab6b596 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbffe0f79 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb5f4822 il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf326ba8a il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x48db4aef smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x753165eb smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x87add676 smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xac5c63b7 smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xdbb087d8 lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xdcc1b5f4 smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xf289c265 smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/tap 0x55cf9b5e tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x7734f69e tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x84619b15 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x89093224 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xa220bda3 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xad76a78e tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xbc52963e tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xd9e6f477 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xf7c02934 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2bf43baa usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x43c9585e usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x55507938 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x72006689 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7e3827d8 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb92e7600 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe4b504d3 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x088a0d8b cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0ca3666d cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x300911e4 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3954db12 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x446a1bb0 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x60cb50e0 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x668d11f4 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa70e1e79 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb8c76cd2 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcf0e52fa cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd7411d93 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x8cc0587e rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x474dedef rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x84ee0504 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x92bea961 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9d282d6e rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd75109aa generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdc7e2735 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x03509426 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x127fa677 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ade3467 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b5dcce8 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x257ca6dc usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x261058b8 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38c20cfd usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3c9183fe usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56a45271 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a8230cb usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b19e618 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b85cd63 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64d78563 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6667d301 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8116ba36 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83a97f38 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa17282bd usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa44fdf54 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa4566c23 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xafe15d58 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6bf0a4a usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbab463d9 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbcd07d08 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc35c56e5 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6bf304a usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd09b4fe usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd9aefa5d usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe71011e7 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeb1b0bdc usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf157caee usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf37f4a8d usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf5a64e7b usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfc06166f usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfd5b25ae usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x78492e3b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa4c066f2 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe547547d vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xef1e84e3 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xb6eb7504 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x112d9fdd il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x231fba01 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3ffd285 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb8f05d9 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec806b54 il_mac_tx_last_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13863121 iwl_fw_lookup_cmd_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443a0ac3 iwl_fw_lookup_notif_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x25142829 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x330ccfdb p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x38c3ad43 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x41e63ca1 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x493a625f p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6201b0ec p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc8069977 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd72e9308 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf028f318 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2336fdcf lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x252df5f7 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3ede0463 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4832d90d __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4da1fd6a lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x76d12fa2 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x860d77d4 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x93137942 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9f10b4cc lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc3b206ba lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc7ad4770 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc93543e5 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd75fbf95 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf37903de lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2b977b33 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2bbcd3d6 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4ed665ad p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5037d6c4 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6dcdcd06 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x950f13dd p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9eeb607b p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa2bddecd p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcfae8e38 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0ee52aab lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x22288d7f lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x426e62dc lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x52c85b12 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5a3fc113 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x65bea53d lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6f893a56 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x73a68f74 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8252b11c lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x87409df8 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa3f5eb7d lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb53eb986 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb54936bf lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb95c2c0c lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe93d5d7d lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf2dbce1b lbs_add_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfc5ce3a2 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfce9b2e0 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x33f10147 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x51c35900 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x63213b4a __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x82a3fd16 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaaf517a2 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x292e50d4 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4ed8e628 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x509c8576 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x74712911 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa3b0521e lbtf_cmd_response_rx EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd4eadbc5 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd5948797 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf3f74bb8 lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0bda43e2 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0ccf4026 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0f3a7303 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x15ce5dc8 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20794a18 mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x22f23c98 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x29c61de4 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x392ffa30 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x49f32c75 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x66fe8e99 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d89b565 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x783ec321 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x78817d5c mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7eb42e73 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x86cf5201 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9ac7c78b mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbc8f3e23 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc5b46cbc mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc73dd13d mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc91503ef mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe21c6ba9 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe21cf752 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xef07e8e3 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x197c8689 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x22dc49de mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x231cbfd3 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x26eac9c4 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2b657e97 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x30bc4850 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x37a68597 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a278cf1 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x46f436b0 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4d6d292f mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x571a5a1f mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6ef12f32 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x82f53b4a mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x892b8057 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8c5e1170 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb84a872b mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc7b1a3f7 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd360183f mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd38e6490 mwifiex_queue_main_work EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd6de5d55 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdac366d1 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe21d66b9 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3743689 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00452c59 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x048fca2b mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05ad56c3 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e8817aa mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f0eba6c mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x119f2266 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12cf9ad3 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd807eced mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe0aa4362 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe6b9a503 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeaf216f4 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3637162 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x028ead27 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x049f16a8 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x06f53185 mt76_dma_wed_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x072000dd mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07e28ecb mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10230ac5 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x139c7c28 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17e9595d __traceiter_dev_irq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17ff0bff mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x185c5d8d mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x199826cd __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1cca781e mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ae6cddf mt76_set_tim EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ed21a4c mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25591503 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2cd2497c mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3977fe5c mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b6eab98 mt76_create_page_pool -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40213a76 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4758308f mt76_dma_wed_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x497fde6d mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b9544f6 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e64f6b7 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4edded48 mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50577ff1 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x54679564 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5654d9d1 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a29a22d mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dbd83c4 mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e5cfe1e mt76_free_pending_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f5e30c8 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x605fd126 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60f00610 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66d6e772 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x688b30ae mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6939a9e9 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b7627e5 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d04a3b5 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d27be6c mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6dd3f855 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7183d60e mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7313efe2 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x732376c2 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x745799b6 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e23735b mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x203c62dd mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x239eae0f mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27162a32 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ae146ae mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c6b384a mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30196d90 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33b147eb mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34abd928 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x355774f9 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35b5f88f mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36fc3d93 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37b05945 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38406be3 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x386d9316 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38950feb mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e01f4ab mt76_ethtool_page_pool_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4263d877 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x446d74e8 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44e59fe2 mt76_create_page_pool +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x476ce2bc mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a87731b mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5019df9f mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58196353 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5927ccea mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c148f7d mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x669d2bf8 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b1f80a8 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x730712b1 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x759ef5b4 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75f60681 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76ca3965 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77feff3e mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79050015 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c28fd25 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f14508e __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fc5d6d1 mt76_mmio_init EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80cd5f07 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83fdda2c mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88fc6916 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f0ba9bb __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92509439 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x964f6b9b mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a3083f3 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c84c49d mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8396178b mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x854c8348 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x859374a2 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x864e42cb mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8848c4e8 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a0f2bdf mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8af9616b __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b4f8851 mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ce32569 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d424379 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9157b66c __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x956fdf63 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x988851b5 mt76_eeprom_override EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d28c26e __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4c6ee28 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5520db5 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa72ddf60 mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab61ca39 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa099aa53 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa23f5dcd mt76_update_survey_active_time EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaba8fdc3 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae996269 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0cff658 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb22f2053 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3c8935b ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4c10934 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb546b917 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaeeff192 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb50a206d mt76_seq_puts_array EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb608bb75 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9a536e6 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9cd16d3 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1afc819 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3a317d3 __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4671491 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8dc3b41 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9ffbd8e mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb315a64 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc4906c7 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf7a1c1e mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1ceca63 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc310c14e mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4c6e983 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5abc78a mt76_put_rxwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc97ddd1a mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb6314e5 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd85608b mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce21d895 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1b72904 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd24fe71a mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9cf2688 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe058ea32 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1da7733 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe1f1b5c7 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe401b6d0 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc696809e mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6b77fcb mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0472913 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd40184b6 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7215a44 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8533b6e mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe03c1281 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0bad9e3 mt76_dma_cleanup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe9992898 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0a1ac0c mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf17a32c4 mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf64a52e8 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6756e49 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6c70e87 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8246d59 mt76_ethtool_page_pool_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa2bb819 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa6ccf7a mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0199da9f mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0288acd4 mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x070ccf14 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4bda968 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7204893 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea831f8d mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed1826d0 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf41648bc mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5506c36 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6e88d5b mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfce7fc99 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x001e1899 mt76_connac_mcu_sta_uapsd EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a25337f mt76_connac_gen_ppe_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0bcd8f94 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x12a414a7 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ba61b85 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1def757f mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a2c5ceb mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c16b844 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ceb6193 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3fb495f1 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x40efdefa mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4530d5a6 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x461008da mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b296978 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4eb298d5 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fb9ebbc mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x519010a3 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5870cc8a mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c507f6b mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d304e09 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d6c9b35 mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61505a43 mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63a75fa1 mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c7634c6 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6caa741a mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73e9f717 mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79ceedea mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b083c15 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b5d538e mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7bd67b97 mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ecbb85c mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f8494eb mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x80e448b8 mt76_connac_get_phy_mode_ext -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82de7025 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x835844ab mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x83c65644 mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85de9d0b mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8fd0cea5 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1105e55b mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1520a323 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16b17b48 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17b82e3e mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c95719e mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f5d6a2c mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f608aa7 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x201d52a7 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x20468239 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x231b3482 mt76_connac_get_eht_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a7c4696 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2aadff46 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2adef311 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b2fe2fb mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d66563c mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e3b8fc8 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b7daa9b mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3dbe6636 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x422b1afb mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x451f0802 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48303d1e mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4890617d mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fc73ba7 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x509d63fe mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x50df66d5 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d16ba01 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e17ef24 mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e8de609 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5f59e6a6 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x604b3131 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x65e27dd6 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x73dc260e mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7c08a894 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84c111c4 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f58a788 mt76_connac_mcu_get_nic_capability EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ccdc62e mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa672b5c1 mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9e349d1 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa9f6e997 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xad4d065e __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb373b4f5 mt76_connac_get_eht_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7582f9e mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb87b4c7c mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbbc8dedc mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbcc3b8bd mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3bf2d08 mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3e8bd58 mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3fbef01 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc44fa3f3 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc63f1f3a mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9b504c0 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcbb8ef47 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd095463 mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcec536a0 mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd335de7b mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd36ea117 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd55b499a mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9022b59 mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9025e52 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc241320 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdead5340 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf2a21f7 mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe372819d mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5ec68c6 mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe70951f1 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe75d7579 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeae7238c mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xef5cb522 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf74f7cc4 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfcd60f73 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff1d416e mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff5f3021 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0d744f2b mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x32e439ce mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x43f5e727 mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4738bfb5 mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4c308eaf mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x64586b2f mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6d7a5535 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x87cd6b6d mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8ebc63c1 mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9bac8def mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa96b6d53 mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xaaac6812 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xacbfd4c7 mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbed17bd4 mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc51f356e mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xee69a87f mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0055fa26 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x09ae2da2 ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0f2b76eb __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2a3665fd mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x31741d0e mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x32dfa24a mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x509bbdaf __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x76b38c69 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x81bdb01b ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x831e52b2 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8727df78 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8d90c85d mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbee01a6c mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe6830ae9 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x019fe02c mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x08e17673 mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1032031d mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x15dabae4 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x21cb101b mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x21fdaf94 mt7615_led_set_brightness -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2d2a35ed mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x361e975b mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x38b8eb16 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3abf3699 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4576d8db mt7615_led_set_blink -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4832e73a mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x59c85d5c mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6c207b6c mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6ec88b39 mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b9702ef mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x85cccaba mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x892e02a5 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8cd65865 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8e6c06e8 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9bebe354 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa2400382 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xac436ccc mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd13b76c8 mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd581be3f mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe08cc9ee mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe597525a mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe770dcf5 mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe90e2664 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe68daac mt7615_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x12b88e11 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x97a34247 mt76_connac_get_phy_mode_ext +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9958af88 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9b141ac4 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9b9baf64 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d9d7f78 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9e9e2580 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f0fa4d8 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa3141245 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa3b9dcbc mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5bc1bd9 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6bab409 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7d00830 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8a86f4f mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xad4d7a68 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaed51228 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xafa6130b mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4731aba mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6678df5 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb904fa27 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb91fc175 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbee79c2a mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbfeaf822 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3ed41c8 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc403e46d mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd3469fd1 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd46731bb mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd4871a33 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd599de27 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd80a7c95 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd70ca20 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdea1f6e5 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0e080d7 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2c255f4 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe6d299be mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe74617a2 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xef0c67b9 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xefdf7f18 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf24cea29 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6a2f487 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf9a6c0f4 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x07015c44 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x18b41971 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2385c410 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x24466f54 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x400afaeb mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x596ee8ab mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x750e1cb8 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7584ffd7 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8ca52af9 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa62228f5 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb0204691 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb6306787 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd365523a mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd3ca6171 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdc3d0737 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe0af0a38 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x12bc2c8d mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x149b9d79 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3801a89e mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6c6b1453 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6d66387d mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x73c38caa mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x79646757 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8bcd7a9e ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc07e5a9b __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc3012906 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcad8d23a __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xee032fdb mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xee14f8e6 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfc5f4fe2 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x046cee07 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x08fafcc9 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x099fc41d mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x16ee7bd7 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1f4481ef mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x207a1cde mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2b20f2b8 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46d14198 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5f28e054 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x60a42c4f mt7615_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x68028a60 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6ebed8e2 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x87a5bd12 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x87c210fc mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c776cd0 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8daf1ebf mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d04f55f mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9e68067e mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9fa7f56a mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa84d2b43 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbabb2549 mt7615_led_set_blink +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbc7a1707 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbfc1b1f4 mt7615_led_set_brightness +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc148294a mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc3c6cc83 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcdd8a8a1 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd274d171 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe1e44364 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf367b328 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf476932f mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xc7803872 mt7615_dma_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x25a5474a mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4f4ae360 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x572f81d9 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x87df7b7d mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x1ca71eab mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3456ed28 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x63115c5e mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x73754927 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb2598be5 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xba33dda0 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc4ee50c2 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x076c9c94 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x083d4d64 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b05defe mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b0883a2 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f635ad9 mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x159b1936 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17009f9c mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1774e0db mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18808a6e mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1cd7ca4b mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d3892df mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ef4db3d mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1fe40e12 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ac61ce9 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x315ba646 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a72371b mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ae193fb mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3fd9360f mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45cae7e4 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e4780a5 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ffdd1ca mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x520ef795 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57fe6104 mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a68d5d5 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x54d7250b mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xab2c6a68 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd4c2d3a1 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe77f95ab mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3f5d662e mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x446d796c mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5fe26dfb mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x65aec0d8 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9e2b5cce mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa3c93136 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf89fee09 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0c29545b mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1212b7e1 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x129e9434 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ceb47fb mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21824f6f mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2208a0bc mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23f5b98e mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x243b8702 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e3f1bc8 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3276b5ce mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34e43391 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3be1d8b5 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c524d6c mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ddddd2e mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3df6843c mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3e497ba6 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f9a0453 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4742441b mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x508dffb4 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52eba3d8 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x559828e9 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a6cb0a9 mt76x02_dma_disable EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bfa7413 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5dd43e87 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ef5e43c mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63d70e2a mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x654a5fca mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6983c046 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x715b4e4a mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x722f0428 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c1b3d59 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c29687c mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c62b843 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62904f55 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62f325b4 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x657d4934 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x660f27d5 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6700ecc2 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6bc578f2 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fd17e77 mt76x02_resync_beacon_timer EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79017777 mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ae2295f mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8974b803 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f64b56b mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7701a56c mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x786f059d mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ead1842 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80af194d mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x87a02230 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x912e4911 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9132213a mt76x02_phy_dfs_adjust_agc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x966571e6 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a3062d6 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9dc536be mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2195db5 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa719efcc mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b4791aa mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b76a385 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f78c042 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa170668c mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa60f641d mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac8602ee mt76x02_dfs_init_params EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae3cbbe3 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb50c930 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc573d95 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd524ea1 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd9886dd mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbecce811 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbfe2ab1b mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc6fbf9e8 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd9a7484 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce0da515 mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd21f2d08 mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd64c09b2 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9ac42eb mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda7fa4a9 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde4ea817 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde54f47d mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf3c703f mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe43b25b3 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5ced16b mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeba417e6 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xed4dcfdc mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef096a4c mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef8f1d31 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf66c4a9d mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6d69d98 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0ae171cb mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x11223fa9 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x138db772 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2e3070b4 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x89f1acb9 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc90caa97 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xcf50fa32 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe410f4d8 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x090bede3 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x13eb4658 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x18c9f280 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x28139c8d mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2ba0f702 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x39d93f81 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x45d0f6bf mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x54f2d57f mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x73c4328d mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x770015f5 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7818f563 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x966f031d mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9eaa3d8e mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa11e225b mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaee1d173 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb019b37a mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xda30a22b mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xedaf7d9d mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfacad119 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfece1037 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x04457437 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x10a92a03 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x16d061b3 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x26fe72aa mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x414e654f mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x52577899 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x65f22163 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6f6b0f54 mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6ffa64a2 mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x76828c91 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7799c575 mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7bbaac0b mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8a6095d8 mt7921_get_mac80211_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8c8efb98 mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa526bc0a mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa9c361d2 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb23f635b mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc6faf649 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xccf29853 __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd66904db mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdb516510 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdb63c9e9 mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe6a2b8a5 mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0210d715 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3f5a9115 chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x481083b2 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x563d5b3a wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x75b244ee chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb4938940 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe577b063 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1a3ae06c qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb06885ac mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb17286d7 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb25d6e41 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb423fcfc mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb585819e mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbab96f40 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe200be3 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3dc4722 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc626cf56 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcaa2a57b mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcea31659 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd261c5a2 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd63014c1 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd7591f0b mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf244c1c mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe695bc14 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8802ca9 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1116cf6 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1f04f15 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6360f56 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf7c1f111 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1fb81a69 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x248d32a5 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x65dce295 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x69cd07f8 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9b6cde6b mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa2954c86 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf2a671c3 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf2cba2b7 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3454e00f mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3f83b2d8 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5620298c mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5ba02ba3 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x632033aa mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6795d41f mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x766dd821 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x83f7cb50 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8897c6b2 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbe1cad94 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc76819f2 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce2f52b0 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd3b0014c mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd54e9722 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd7bc2025 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe892faa6 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xec78ba6e mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf362a3a1 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf3d15b3e mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf71858bd mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0ad43982 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x11cbc1f4 mt7921_get_mac80211_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1416dc72 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x153b2650 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x25672439 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x34e5501a mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3b194012 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3e794038 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4a57dac7 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4b228beb mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4f9c3b1b mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x629cb5c2 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x73ef4a7a mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7b062f1d mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8e58f5c2 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8e5e998b mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9433ad94 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xab5351ef mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xafe97d20 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc913f97f mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdac78505 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xee6b9c4a mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf2c57ddd mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1401807a wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3e06c8a4 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x651c6f64 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x766a608e host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xae77bab8 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf5e23f06 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfdc6131a wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x0550eb83 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x21b5a9ba qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2ded93ef qtnf_core_detach EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5e9f9bb3 qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x741ca6d0 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9743d6c6 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xac25c866 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe2296bdd qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x05052300 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x08a99ac3 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0bab926e rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d592a44 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x239dc2fc rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x27081dcb rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x30d28080 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x356b6bce rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x393b5bbe rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3fde2b42 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x408f6e07 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x437bc5f1 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5b801cf0 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5e242226 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x614560fe rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x639b88d5 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x68f988ca rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x68ffa3bf rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6be086c8 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f37853f rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72da6ef7 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7321e89d rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x83b6180a rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8b64761d rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8c1a4bb4 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e35ce53 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9639dd59 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x97fe8064 rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2e374e8 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaeb582c5 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbdd9188d rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc06d43a0 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc669a21f rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8567249 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcba6e0cd rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd403bc7c rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6b0b0d3 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd76baaa2 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xddd7b501 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe494302b rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe738cb27 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xecb7a35b rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed21c528 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf162a4fe rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x02715c2b rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x199299d5 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x703fffce qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8db5f0b0 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa03141f0 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x04c2645c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c98c02d rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d731586 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f0a0b37 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10145487 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x184249d5 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x18f00bc1 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b2ad868 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x21fefa9f rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2f00c43d rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x393a909d rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3d3d9919 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4aa36039 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4da2e29b rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4fde0ba3 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x53123c3f rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59b42626 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6682319d rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x69bd6049 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6ac8a43f rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74106ab0 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7434cd09 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84c2d4e5 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86781eaa rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90b00f38 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92c719db rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x952b2a74 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2e67a32 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa544585f rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8ca83ab rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb2d4cb24 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5662dbd rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbe857193 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcba48290 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0b4d11b rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdbfd60ff rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdd8a9ce3 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe265cc43 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe5ffaf03 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe94f75d9 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xec4b21e1 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf80a9e05 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfbc8f55d rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfef94c70 rt2800_gain_calibration EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x37cd65bd rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x43686a86 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x45b39c93 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3fc57c66 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x420950ea rt2800mmio_clear_entry EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x51ee53fb rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5974f6bf rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5d635483 rt2800mmio_flush_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x60759e3f rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x67a33f5f rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x68dd826f rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7a9017b1 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fd1475c rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8d4d1733 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92fbccde rt2800mmio_kick_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x98b34980 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9ec72907 rt2800mmio_start_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb16cf6d7 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb1871b76 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbf5720ae rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc8699a11 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd926d76 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfa59d22e rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0230966f rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0275315f rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09ead527 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a938cd5 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0f948613 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c3ad526 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24746632 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x296fdf54 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x301cdf94 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x304789a8 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x34c23113 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38ab2199 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39c57995 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a9e726f rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x424fe072 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4af9841d rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4cbba876 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d66c7e4 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x532f09ff rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5497f6a1 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64e0f320 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x660cc63d rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6682ae1b rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68317e5c rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6fedfac2 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x71f231d3 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x766f3417 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f7dbaf2 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ab5a3ef rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9b462572 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ff59dc0 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa84fa3b0 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa89a60e4 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab4be971 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaddd691a rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5122b7f rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5e56fe8 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb73b2821 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbaa06939 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe361721 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc821bc33 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcbf32a1f rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdba47fdb rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe8522921 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xed089e95 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef2a243c rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff02693c rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1625cb00 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2cbd638b rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5489eb52 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd5ebe7c6 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe38f421e rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x612cff92 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x8fb9c2d0 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x90b4c6d9 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03b7704c rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x19b84be8 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1b53d851 rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x46ca744a rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x52699095 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x58c8b1ec rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5edfedf2 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6fc9efac rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x71974adc rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa4fd8493 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xabed6d79 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb9c4dfcc rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc197e595 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc40ccacd rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd60bea8a rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf5db9205 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2cd6d7aa dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4844202c dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e6c77aa rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8dddcc6 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x044c2cc5 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0663a753 rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0bd22bfc rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16cd626b rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x272dddba rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28d47231 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3a48e7a2 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa28ca483 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa85be6cd rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb841b0fb rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcf2a4b21 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd787cbd2 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xee47b2d0 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf5a03eff rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d178369 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x124a0c79 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x183c041a rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x26db7d28 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x36990aff rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39f50c90 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a90237b rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3d04468a rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e16d23d rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x408010c5 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ffaa50b rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a808abc rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6afcfdb5 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6b33d5b4 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6bff23b0 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b486107 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7ddf93dc rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f38d4d7 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f48674a rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x811bae8f rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8981ce7d rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8bb0bbe3 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c0146ed rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8df17f1b rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9019ea1b rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab950ab5 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae484f18 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8956a77 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbad384e7 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb081052 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe9c2d00 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbf92846c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2aed34b rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc39cf0a7 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc822bf05 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6a33df3 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdda0ed81 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf0d840f rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe061438c rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe1937d70 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe8e94432 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9d7e1e9 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xee3a722c rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf13a9403 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6e7f94e rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb93f7d3 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfc953214 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2fc21202 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5538e310 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x648d937c rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa34c28e8 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc1f45b44 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x3d3ef3d7 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4b0c2105 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb7417883 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x052d1853 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1a8654ab rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1c95ac94 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2e7acd0f rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3421fcf9 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3a9727c5 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4b981ab1 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x52a0a69a rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8b4486df rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8c653d29 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x91e8fdd5 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xab02c958 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb998a2fb rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcf91866f rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd219b7aa rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdcf72d98 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44801235 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49feac2c rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84964279 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0f69c03 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x01c2a448 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x303479c3 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3284a2ec rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32aac4fa rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36051794 rtl8723_phy_txpwr_idx_to_dbm EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48f16d25 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x511e21f8 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52d4b8de rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x54babeb0 rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5d173596 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6c9d806d rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x744f357e rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75f64524 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a0068ba rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e3ed888 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f2d0186 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59f87dee rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x757b9012 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f35c949 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fb08b44 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8717cca0 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x87a6df2a rtl8723_phy_path_a_fill_iqk_matrix EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x90fdfdaa rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbf49f788 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc89be781 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd3dc29ae rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd8491295 rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeeca47a5 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf8d234d4 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbd4f481 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00931619 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e537770 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ee97c5b rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93fc2402 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2473d77 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2d61c4f rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa71c4f1b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac35cec5 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadd2f9f5 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb407013 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd5899d1d rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe9aefb43 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xecea43ab rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7e24d5e rtl8723_dm_init_dynamic_txpower EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0efa8990 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10b06058 rtl_fw_block_write EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3214e4a8 rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38f8be3a rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ea50069 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x40e359f0 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ab4db43 rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c8768dc rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d5fb824 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4df02769 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57fb9a09 rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58cb286f rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3467d09e rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37523239 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46c8077c rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e7718ea rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f8e9063 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x626fbebf rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63b5c87d rtl_set_tx_report EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x708eb813 read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x731643c4 rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d808a2b rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x717f1cb7 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8aaa0ebb rtl_ips_nic_on EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ba4f2b1 rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9edfce8e rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf3ce758 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd523a04d rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd979c86a rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe91c994a rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea76f210 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf481fb9a rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb51eb6b rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe6eb308 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x050b49c7 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x09246354 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5296d74 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8d4a803 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabdbb68c rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb279e17c rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb41c7558 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb1d63c3 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4103131 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9278da2 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea5ee9c0 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb692d1d read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef1d0748 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef499416 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf35a35ef rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8e1e796 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd12a26a rtl_tx_ackqueue EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x161adc6d rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x53d89c47 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x85dc2d1d rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9ff60a89 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa3a9de23 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa5929340 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc257d531 rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2e890f1e cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x617536e9 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x813db2b8 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xc2bc034a cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4b97451c wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa9a54815 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf34f865e wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00df696d wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xf0e5b555 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1ab73429 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x52103b29 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaee13c72 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xed8ec893 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x44db41a0 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x80b2c78f wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x97022af3 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0408aae3 wlcore_cmd_generic_cfg EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ca5905c wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0cd2cd7c wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0d910d43 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e98b916 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10242062 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11bb1b26 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x16f799a1 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c909ea4 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f4ef062 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06ecfedc wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11079d68 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1772b7c5 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1efa472f wlcore_event_dummy_packet EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2aff3807 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x311787c1 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x322a6584 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3867d942 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3bd321f3 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3bee0e90 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44fbb26a wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47cc1426 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a214ae8 wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x50af0a51 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x538f0fc9 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b263e3a wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e53cda1 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60acfcb8 wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6360f66e wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d11ba88 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f4093e7 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x262b373f wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a97ea70 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a9f7b60 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4037ac2f wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4732088d wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x492b6a96 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b6e79e6 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53a78f54 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55d5e4f4 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x577d9d60 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5fe22611 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61e97c86 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ebf2a65 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6efc39e8 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x821885ab wlcore_translate_addr EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8924e4fb wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97188f29 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f61bb78 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac209030 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae3503be wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8670516 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba147320 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc3fccb1 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc23f380a wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5748985 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8a00355 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe70d1cf6 wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9c84df1 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeaf2e4ef wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf1091432 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfbc7f2ff wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x77d12224 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xba0c36a1 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc340f472 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xeccddb9a nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x64f48ad8 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6d46fc08 pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x714b72bf pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcda77275 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85e319e7 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89566a59 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8db0659c wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9067216b wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9aaa421a wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa03a631b wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa6d82317 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7f0a891 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9f1383e wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac200c6e wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf2e34a2 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8c317e1 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf80917f wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc2e717ab wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd731afcb wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5c5f6c6 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea16ef39 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xec17ddca wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3dd8351 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf55cba5e wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf69b963f wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf87810a1 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff84f96d wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7ebe9364 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xed83499e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xeed091c5 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfbf217e2 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x375e5c3b pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3e8a0f9d pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5cb2f349 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x694ea139 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa6dff0be pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa8fb7bbd pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc6e8e77f pn533_rx_frame_is_cmd_response EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdfcdd861 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xeeea8a53 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfc85a3a8 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0b116003 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3168291d st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x69623268 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6a0fbae5 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8dd7f164 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9fcd88a1 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xabc8cbea st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe27ffdda st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x169b91c4 st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x36aaaa64 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd29735cc st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x367da696 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4428fce6 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x60ad05cc st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x71e11670 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb9292273 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbdc235d8 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc26133e1 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc542f120 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x61fe3f8f st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xccdba874 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd9e03610 st95hf_spi_recv_echo_res EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1af3774c 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 0x5cb39b53 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7ffe688c 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 0xa3082ef1 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 0xe0ffb8b5 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/ntb/ntb_transport 0xf9f9aa1f ntb_transport_unregister_client -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x08e09bbb async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x9262d60d virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x1bbe0a57 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd27a9da5 virtio_pmem_host_ack EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x378e9f3e nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x3c1555ae nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6022e25d nvme_auth_gen_shared_secret -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x636cfd7d nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x640e760e nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name @@ -15787,116 +15817,117 @@ EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b908483 nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d821c85 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf38df1bf nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07c702a8 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b28d7fe nvme_complete_rq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x134086c1 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15638b60 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1be4b0cc nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d60a81a nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24e0fb91 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24ffbe62 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x278c981b nvme_init_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27fcbedb __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x29594f92 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ec4ff06 nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x318547cd nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x321ac2c4 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3225cdc6 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40991cd7 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x470e1cfc nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4803afec nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2eb8d8e7 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ef587ca nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x33853bf3 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x383ab590 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a5c2e17 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a6f4385 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3cbacfb7 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x454d5e42 nvme_dev_attrs_group EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4a044a88 nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d7e3c2f nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x533d295f nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54580849 nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59f62f2e nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x625e2ad2 nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x63eaf6af nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4e02493f nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f19f8b2 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57894cc1 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5aa9b7ef nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b64f1eb nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b9bbd02 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5c3ef628 nvme_cancel_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64fd356f nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x676a3b55 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x67e2c9a2 nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70a14c2a nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74b43711 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78e1a0d4 nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7cca058b nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x65798a8b nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x693044eb nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74946361 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78718d59 nvme_enable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x83411c80 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9e47e734 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f59166f nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa420d6bc __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab411707 nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba6e1d04 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb48d81e nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc042a3a7 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc20cdf95 nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc98b4671 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca35d315 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd08d41c nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd19b2d1f nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd37cbb25 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd4078d3a nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x872bf940 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a3490d2 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97d11b51 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x981282ad nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c809fc3 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa09f2ddf nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3850971 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb687872e nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb92d520b nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbb8398de nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbe0652ab nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc20c0c3e nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc8c281b2 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca3a234b nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcbc7484d nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcdb7ef37 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd19b30af nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1c8d53c nvme_stop_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9910a68 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdea2c8ae __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf364c73 nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe115ed28 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe2db6621 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe32b9168 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe4727fb5 nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8c494c6 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee4b18cc nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2f48570 nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf73f0614 nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf87e57f1 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8ad4374 nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8c6a181 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x14dc8f59 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1552c8e9 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd5da86fb nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xda32e865 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdab02d2a __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdeb4b682 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe5ba9ff0 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea28cf16 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed6fc642 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8a2bfbe nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xff89ee3a nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x046ebf3d nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e328d22 nvmf_set_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2462c0da nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3f2e2ac0 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4fedb1f8 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x61080310 nvmf_map_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8dbfb3a5 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb704dbc4 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xca129ba9 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2fcff90a nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4493bf50 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5bb9c48e nvmf_map_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7e88199d nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x800b521e nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x823b0c27 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9eeb42e8 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaa38c962 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd35624c5 nvmf_ip_options_match EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd8af66e nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe3817d8c nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xfb48eb45 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xde87eb39 nvmf_connect_io_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x1c93d418 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xb71f63ec nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcc8a2d78 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1ca9bb41 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x21427be5 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x35e3b5f4 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x39c17daf nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3c4e87ed nvmet_sq_init EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x444ee730 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6ae0b13a nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6b5b2497 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7b99b699 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8708e23e nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x90157e80 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbf42d336 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeaf4a969 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf91f5279 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3fcac8eb nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5c95fec4 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7763c58a nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x90b596b7 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9278592b nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb7e75e05 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcec19632 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfb8634f3 nvmet_req_complete EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x5ebbf4c4 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x725d6965 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x54426aae pnv_php_find_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0xc45e31d3 pnv_php_set_slot_power_state +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0x928cd112 pnv_php_find_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0xa48ad9ab pnv_php_set_slot_power_state EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x19f4adc2 rpaphp_add_slot -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x1ef07c3e rpaphp_check_drc_props -EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x49046214 rpaphp_deregister_slot -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x7553baf1 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x096eec9f mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x1234dc37 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x224f78d8 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x3fbf0c2a rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x4fc7629c rpaphp_check_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xdab8dd78 rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xc5e64d7d switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x112c9e2d mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4703c1d7 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x77786538 mcp23x08_regmap EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8c65169f reboot_mode_register EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc56196d0 devm_reboot_mode_register EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xd6615ef8 reboot_mode_unregister @@ -15904,103 +15935,103 @@ EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x63636bdf bq27xxx_battery_setup EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x6f84c2cc bq27xxx_battery_update EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xc42f85f4 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2a9e1287 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x5552e7bb pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xca4d5d51 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x09b7e454 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4fe46aaa pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xa2757259 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd0a29bd6 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x237363f7 ptp_qoriq_settime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x65533a8f ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x839b896c ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x9b1dfd37 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa8dd6d32 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xaedbd1b2 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb46b3816 extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xbe0f9c71 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x17b85d9f mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3218f148 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3ea3c68c mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6f9a7bbc mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8f8f88d6 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xa7756209 rohm_regulator_set_voltage_sel_restricted -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x198fed79 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x496bc48d wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6285b99b wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x995a8c2f wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xbafc462c wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdac7e3ac wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xe5ecf9d9 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3adb2a96 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x422ad1bb extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb45ad85d ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe1f7f0fe ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xeda45fbe ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf781638d ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfb58f11b ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x06e11995 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x390b95df mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7e402afa mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xccd6480d mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfb82d9d7 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xf53e6311 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x22cd0108 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x32c5f40a wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x61b523d8 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xae81490c wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc13074ac wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd7202d29 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x34573419 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x56df630d qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x2d8c299a qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x93b6f1b1 ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11f32e37 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1aad31eb cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22d8293f cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2469582f cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24cc5b05 cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c1cd6c6 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3295be2a cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5db8be cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b240fab cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3b3c1b80 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47362cb8 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fc2c837 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58551eaf cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60744395 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x611d6a4b cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62936c64 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63bb5917 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66c851bc cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a4f3c3b cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78436685 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x794fc076 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b120940 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x0a074879 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x088973ad cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f008988 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1fe6f89b cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29f7dfb5 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d2ecf37 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x315571c8 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36e7a11d cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x392966a1 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dc8aac0 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4389b7f4 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4add1542 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x578b80e8 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a9f23d9 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c83c7b0 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x60639c90 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x705aa532 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7159a8ca cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73f359cc cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ca6b907 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fcb672d cxgbi_device_register EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80b0b897 cxgbi_create_session EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d7f8551 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x956406b8 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97c85c94 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cc50abb cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ecf1c83 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3ef487e cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4469d3b cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad08b4d7 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb147843a cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb37fea21 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbcdebe3b cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4f3e608 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7d5dda0 cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7f15b61 cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1947c43 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4f8902d cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5123907 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde5170ac cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84e1d3dd cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bb01a30 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8db1ade4 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x941f5be7 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x966c6c0c cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9db50445 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9de90d90 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4586721 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa47c9ea9 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6ed31b0 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe1c06fe cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc010d1a3 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5e38e65 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd94e88e8 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9951858 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb1ac862 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdefd30b9 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe649a1e3 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7ae9c22 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec86d256 cxgbi_sock_rcv_peer_close EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2a2d821 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf375e057 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6a4be26 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xffd347e4 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x03700c24 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0bb8ad2a fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2fa7d922 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4c0a3786 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x56050a59 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x56efd031 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7c2d56c3 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x87064a6e fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x93f5227b fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a818a19 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xada2ae80 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf15b1592 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf20f5e64 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf88fc07b cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x164d084e __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x18d34a3a fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x206f5ede fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36470087 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x49227076 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5ece7641 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b78e8b0 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8836e6ae fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x923fce2d fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x946e8322 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c3b30ec fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9cd64b52 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa1f89360 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa6dc176e fcoe_link_speed_update EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc33d8f14 fcoe_get_paged_crc_eof EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcecddaa5 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5c6b103 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xda60ea41 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdcc6bd3d fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe82f80ff fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe0337943 fcoe_fc_crc EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2da01741 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xf1463f4d fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x7afebd01 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8db47b10 fdomain_create EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x07c6cd82 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa39c86ac iscsi_boot_create_acpitbl EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa8b9f302 iscsi_boot_create_host_kset @@ -16009,187 +16040,187 @@ EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc9cc108f iscsi_boot_destroy_kset EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd2cf6908 iscsi_boot_create_ethernet EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b5d4b09 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0150048d iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0457edc0 iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x048d5956 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00163f90 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e039b8b iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f98b79a iscsi_itt_to_ctask EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14eb759a iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1548d95a iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x183d39ff iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e941a1a iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26be6cf4 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ad5e1ec iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cdf4807 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f377e47 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3922b502 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15e4166f iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a34a0f9 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d28ecfc iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1dcab375 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x225bd9a9 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x237f36e9 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x303e2f2a iscsi_session_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x488d1550 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49738761 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50be09ae iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50d392b9 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57bbf4d4 iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x590a1a2f iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59cae273 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x669878d1 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d53cf10 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a87e501 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x883e2417 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f55e0f7 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x489175b6 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f7ca091 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52962a11 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54daae53 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56a47859 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58b13256 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bacf5bb iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d7796e5 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e02e32f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63ab1710 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a151791 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74876b07 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74c71c7b iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f437ad9 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80d06761 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x867fa266 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88c77001 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bb74a6a iscsi_target_alloc EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9353cc76 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x960c92c7 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c8bead4 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e064c80 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa06dbbc2 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab5c142b iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0200a97 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba83a361 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd68a8fd iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc13d1e6b iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5c26db9 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7acac25 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xce9e4887 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd322d500 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdae762cf iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcfee2d4 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf603c60 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe3574c0f iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe620bf40 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9fb2894 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91872b45 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94d5f629 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98ee55aa __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b56e882 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e4e70c3 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa49b36a2 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab1e1940 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac35abf5 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe161470 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc05899bc iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc22f7f06 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd29f556 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd56c7e9 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5539488 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xddd2c019 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8bceddd iscsi_session_setup EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb8caee1 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec58e937 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee3142db iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaef305b iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc10c043 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x181989ed iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1cb62e3f iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x26bae735 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3d59b526 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e6d9ddb iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x40537502 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52e56d0c iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x610ac8c8 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x68f3ace9 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f17cf97 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f6a742a iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa618666f iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xabd467cb iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac62b781 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb3ce8d30 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6e5da73 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe2b4f54 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08bc0032 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b25d2d9 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x102d1e0b sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13b5aba5 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1709c5e2 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c14a236 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e7c975a sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x331a801f sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ee97714 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4aa096ac sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c47a63c sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e37a20e sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5506a06d sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x609f444b sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67043158 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x69a387dd sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a171340 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7016048f sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7604863f sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x770e736c sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x794e8d4e sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f96e665 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89598958 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b981418 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98d37072 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaba11700 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4a326e2 sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbade6465 sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf015afe sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc1a001a2 smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3b0ccb6 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1d41904 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9c6a78c sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf622ba89 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6ab525b sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb10d295 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x7b885e5a fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x013f45ec iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x026cfa63 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03e82dc9 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07f242c8 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08ec5e2b iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0efde5bd iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11ab28a7 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x126484f6 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13dbe468 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1646cb4a iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1985c1f8 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d4cbfbe iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34d34e6f iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeed5133d iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf6b0bfdc iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf92291b0 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d9324c5 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x227cbcaf iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3208abef iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x35ad01a3 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46bee79a iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x676a2853 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x769fdaa8 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x82e4c31a iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8cf3283e iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xacdd02ca iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb85f3460 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb9ffc5c3 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc4174d89 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2de2337 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd61baa2f iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe52e027c iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf8d53aa2 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03492189 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04d0fb1a sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1332f039 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13a72597 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b1c8454 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1dab1060 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x223d8292 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22ae7a2c dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29ee5ec8 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2fef7c14 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x356d0315 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3fa5dc06 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4345eed3 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45ede900 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b4c5235 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6507d65f sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66148e04 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67b708c4 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79317404 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85156140 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x919fca86 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98cd0d23 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a0ae52f sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0618fcd sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa519bcdf sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa62aef51 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6fcdcd7 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8259d6b sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9065de0 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd62b520 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc408ddfa sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc70abde8 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe38ad63b sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4f1cbcf smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfaf95c93 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe963aef sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xdeb8c705 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05d972b6 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07ac1523 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0a91a302 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e522146 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f6cb5a8 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f553377 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24b18d20 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24cb2382 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x269e5715 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8543f0 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30262699 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x306f393f iscsi_create_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x363ef721 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44e72d3c iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4beee0ab iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5841c334 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38a3fe97 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f4d824b iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49f0c4b7 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50583084 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50c31436 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5591b698 iscsi_is_session_dev EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f273cf2 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6388c06e iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6472b748 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67e52da1 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6186e375 __traceiter_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b1a8f54 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f12d019 iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7179c39f iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c06fe20 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f8bcde4 iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74f087e9 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79454585 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8073c4b2 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75e5aea6 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x842790bd iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84815f1c iscsi_alloc_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c37d19e iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ce3fd6e iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9dadf6ef iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90e0dee0 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d27707d iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0ffb26e iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2073fe1 iscsi_conn_login_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ac06cf __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7fbf6fb iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa8e0a14 iscsi_remove_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1c01e05 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb03ed7d7 iscsi_lookup_endpoint EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb32662a6 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb38ab76e iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbad8e7db iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3eb1c41 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7f4dc2a iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbab22378 __traceiter_iscsi_dbg_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcf7645b __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc04e06ed iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5e0eda3 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc89732c iscsi_find_flashnode_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6264e7a __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfb01451 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4eeabeb iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb313692 iscsi_is_session_online EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda09b986 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd7b40f2 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde36a2b8 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2ad7fd5 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe369194e iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe38d5336 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3a77b6e iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda124c0c iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2d2089b iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3bc0f23 iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6e9a865 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8e18d0c __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf10ec77b iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4e876a7 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x48409398 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6ebb7e2f sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xca827703 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xda4573fe sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5cfced3 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6cae69f iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe95dc7bd iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee275c1b iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6c3ba8c iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf784e806 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7f92dd4 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7fc4c78 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9c454f0 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd56eb49 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1cefe69c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x66e830a6 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x73e8f298 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdd68a5b7 sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x545da279 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 0xaad673e1 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1b7033b2 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1c62f490 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x67b8e27c siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6cdccbe8 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x82fe9200 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xda76b5c2 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x01b0b6c0 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x146029b8 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x276668b2 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x34d96f17 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3d7d79fd siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x9ec4f5c0 siox_master_alloc EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0337daa9 slim_stream_unprepare EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x085fef16 slim_msg_response EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x17483e08 slim_free_txn_tid @@ -16216,86 +16247,86 @@ EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdf9f800c __slim_driver_register EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed008c4a slim_ctrl_clk_pause EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfcbc6c69 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xc0e4d47c devm_pmic_glink_register_client +EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0x60b96ed4 devm_pmic_glink_register_client EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xc161d729 pmic_glink_send EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x52b46606 sdw_bus_type EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x5e259aff __sdw_register_driver EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xfbe45569 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x8cd5a65d altera_spi_init_host EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xbae2c50f altera_spi_init_host -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0907f530 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x13cd3893 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x20db62c3 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x25d4058e spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6fc63623 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe6c312db spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2fabc4fa spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x47a6f92a spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xbe68b654 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0509c386 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0d3de5ed spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1e8fdef7 spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x20bce942 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b8ca8e5 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x37b51836 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41816f40 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x445ce74d spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x528bc954 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x53957888 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x56a2774d spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x58e2fee7 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6137e2b8 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x888e29a7 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x91156d84 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x998910d4 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbc0288a2 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeb6e5564 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfa3fe060 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xcfb3a2ea ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x02fb21c8 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x27fc2311 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3a094c4b anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3a4c47b4 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x46fe49e0 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x57c4983d devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7664d52a anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x79554350 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7cc20c36 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x881a2b13 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x88708d5e anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa0dc5fe2 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc05baac4 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x68ea48ad spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x792c6a10 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x89d046b3 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x95d23cab spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdcd8a9e1 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe7f333d2 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x29b9a3f7 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x4fecf647 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x80a36567 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x06d04537 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x077e1664 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1215dd01 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1ffaffda spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x253bed18 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2693b671 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c8e4c0b spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2da3ae0a spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x340b9a80 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4e0b3029 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5f2dfa14 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82f1c3ed spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9b29db97 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9de6dddf spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb1b5f3c0 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba80e6d4 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbbd9d7d9 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd93c35b2 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf09f5fbf __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x560d7f70 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x053e0fea anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1442e1c8 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1fd7020d anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x345822e8 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4596ad60 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x46fd0900 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7c64a573 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9353d059 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x95c4535d anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb53a3b46 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc8ac0e94 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcee768b1 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe5ef2d53 anybuss_recv_msg EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x010fef37 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x20ecc0a7 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x241e8145 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf12ab35f fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x174cd279 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1cdcc550 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x64565812 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x79744c96 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8aa59127 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8ff3d392 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc986c1c4 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd5093bae gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xee432625 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf22f0c65 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf9bf1b4c gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfb620d13 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfec59fa8 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x01561b73 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1862bac9 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1e9e0bb5 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x39bb4058 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x493de003 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5811c956 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x92f1b14c gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc0d6192e gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc27d6a40 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd814c496 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xefe6e453 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf2013bbb gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf35b3842 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x213d1946 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x52fafceb fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5b2d0d1b fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xaa2469a8 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x04f0a7f3 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0f645463 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x282092f5 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2f483bf0 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x41c25274 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4263a232 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5847a75f gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6eb39734 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8c05d067 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa78c3a13 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xabfdc900 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xca96d5a6 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xdff4cd9b gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x210d8edf gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x21fcc67d gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x24906f8d gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2a2b771d gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x41b4ae4f gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x465b47e9 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x71c914a1 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x736470d8 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x95790a63 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc74a9e67 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcedf0cf6 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe05ddbaf gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf5316251 gb_audio_gb_activate_tx EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x48516cf3 gb_audio_manager_get_module @@ -16303,379 +16334,380 @@ EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x9f2c02ae gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x4bd199f2 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe56788a6 gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x56cb6f01 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x78ab79f7 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xa07c5a68 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xd6b97bbd sp8870_attach -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x18554586 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2c1feae7 target_init_cmd +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x0e516b06 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xa0b9ef4c gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0073a109 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xd60f7b11 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x39e1a757 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x4901a0d1 sp8870_attach EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2c534d14 target_wait_for_cmds +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x37c9a018 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x721f7a77 target_submit EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7b99d123 target_stop_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x94f82aa4 target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x96b379b3 target_free_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9f74ad21 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xab9a1421 target_submit_prep EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xaf4ca84f target_alloc_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfe86817a target_queue_submission EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x08d8ca52 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1b5ee6b7 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x22795790 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3323f4c6 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x16f9fc15 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x23b039ab tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x30b1c502 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x35aa9ba1 tb_ring_alloc_tx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x44409deb tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x47d855b5 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3a1d72e4 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3dd7b51f tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x47e0e28a tb_ring_start EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4fd4d23f tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5c9fa9ef tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6ad7571c tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6b4b51f0 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6bec2515 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6d5dfdef tb_xdomain_find_by_uuid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x75c3fcd6 tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x78835443 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7b41030c tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x86306e46 tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9cd3e365 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9e459bf6 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa29145ca tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8c608d20 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9bb9f436 tb_ring_free EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaa1f77de tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb76b0ea1 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa6bfbe17 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xacde356c tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb0104c7b tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb3a29a89 tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbd74ab5e tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc5a01abe tb_register_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc7fb5428 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcfd7cdfc tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd268ec08 tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd34b78c1 tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd8dff927 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbd8b4589 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xce3a8164 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd646dbd4 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdeee2f37 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xef36b866 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xefa9207c tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf62d211e tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x05672a57 ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2847e1e1 ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x285f3870 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2a74f9cb ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2f23d621 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x48690cf9 ufshcd_mcq_enable_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5fde3d83 ufshcd_system_freeze -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x608a359d ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x66ecadd0 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6d5db00a ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6fb349b5 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x71ffe2ae ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x137dfbdc ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x16c3a79c ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x17b0aff8 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x231a9332 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2519a5ce ufshcd_mcq_enable_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2a1f69cf ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3dc1cb68 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x40190010 ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x494b4922 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x53f05f6b ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5c90fd19 ufshcd_mcq_config_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5eb57e9a ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6366d8a8 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x691f9028 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6d34e5ce ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x70265667 ufshcd_suspend_prepare EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7a96cd3f ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7db5f619 ufshcd_system_restore -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8f774774 ufshcd_mcq_write_cqis -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x91e86804 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x93ba70d0 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9519db6e ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x95dcca33 ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9ead2e79 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xacac03b5 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbf897ccc ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcc2585e4 ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcd9c1511 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd8951a0f ufshcd_mcq_poll_cqe_lock -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe3a95b80 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe8d2912d ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xea81d071 ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xef92727e ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf039c1da ufshcd_mcq_config_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfac4b6ec ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfb8a889c ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8665b380 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x91ebc0fd ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9271f538 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa399379e ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xabef002e ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xad80be5a ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xaf34b36e __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbc7dc802 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc60f2b5a ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd6cf2661 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdb3e0c59 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xde8615f1 ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe07c6f8f ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe55e4275 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xea039621 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfc53fffd ufshcd_mcq_poll_cqe_lock EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x57141a37 ufshcd_populate_vreg -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x59d2d6a8 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x6c90dab6 ufshcd_populate_vreg EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa00dd273 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xcac01180 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xdfd60bcb __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xe5761fae uio_event_notify -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x37a732c2 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4132eae1 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x03e01fe6 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x10c32a6e cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1fe9e61f cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x29b1e8d1 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x37b871b4 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x59e1b189 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8c9ad464 cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa9ec8fe6 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd51212df cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x10a847ef ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x49ae7346 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xad7af4b0 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc844c3cd hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x166ae99f imx_usbmisc_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3825e623 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x961af7dd imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xade6b11c imx_usbmisc_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xda522257 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf49d99a0 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x404ef771 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x57c1633d ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x594a1896 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9862b803 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb866439f ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcfc5a626 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0b2cebf5 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x110cc061 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1db3a612 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x238222a3 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x26f14c00 u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x34149ac5 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4bed1f94 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4f0eb854 u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6101f37d u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x669a92e0 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x69f4f557 u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x73363ebe u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa254cfd7 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbb9d7e69 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xda07860d u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x13715e10 gether_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x26e18f47 gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30ad71c6 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x346d75b4 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6cbbf81d gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x71517a75 gether_resume +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xf93d0c74 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x10f741ef __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x60b13cfa uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x72ebc995 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x89f4e21a __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x84727ea5 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfdcb70ff usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x034ae828 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1ce95c75 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x20a952e9 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x38673741 cdns_set_active +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4eab2cc0 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9cb9662f cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9daf9540 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xae172cae cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xd9fa62a9 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe9e46796 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x58791799 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x87003b7e ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa24f3f9d ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa4d1b0d6 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x34df7f46 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x847f672c imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa1cd6e58 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb24b797f imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb911b17a imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd7731f0f imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1c4df9bd ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x46b1affb ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7ab8c88c ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x884c432e __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd5c1673a ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe2596316 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x10bc0b8c u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1110ffb9 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1e4ee353 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x25024593 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x28ae8243 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5d370e78 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x61477704 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7f0fbb95 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x892a87bc u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x975702d7 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbf3574ba u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc21ae069 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd203be80 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdd026489 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfce947ad u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x02c77e7b gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x090bd4c2 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x15ac6862 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1be9b61c gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x243efa2e gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x31169e20 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3ae60c33 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3bb66645 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7172cf96 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x881ea481 gether_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8a857570 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8d7fb01c gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x94212765 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x95e0e906 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b8a18a1 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa79c110d gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2604cda gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd61356b9 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xda1dccf1 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdc704248 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe5c4962e gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed177b28 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x21da6fac gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c4eb75e gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e6a5709 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcb4680d5 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcb8044e8 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd08dbcf0 gether_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe9a7514d gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf1164f9f gether_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfeba64c7 gether_set_ifname EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x36811f49 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x506f8035 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x5f820894 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7c747547 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe4f2caf0 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xefbeac69 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf6986566 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1f1383f6 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6369ea50 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa5560d39 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x07c4fa34 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb8f1f494 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xfb621ca5 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05c253ab fsg_store_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x16699ffe fsg_lun_fsync_sub 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 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1f85b44a fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x21d39de4 fsg_show_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2ca65b3d fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x369fd8c0 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 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3d4f11bc fsg_store_forced_eject 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 0x4bad5c59 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x46db26bb fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x47a1af83 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x483ea5b6 fsg_show_inquiry_string 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 0x5c9ff549 fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x692814b8 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x699a2354 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56b9ebff fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5f7e89e5 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 0x7d044cb9 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7c73aa64 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 0x7ff3e05d fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x835b3e8b fsg_store_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x992768af fsg_show_file 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 0x9e8a2464 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa04b926c fsg_common_remove_lun 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 0xa6274f7c fsg_lun_close EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xabe52918 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xad61807b fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xadc719bb fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xac589fa6 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb1c15663 fsg_store_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address 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 0xceed9a20 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc18b85c7 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9a095f0 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcb382ce4 fsg_store_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdb130222 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf24a46a0 fsg_store_forced_eject 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 0x1cb17c9f rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x22da6d41 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5ab09de8 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6d6cbbfd rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9dbc320d rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa2ac48c3 rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa657eb2a rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa9d0394 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xafd090d0 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb06f011b rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbf6bf39b rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcd94224a rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe62914ed rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe8113413 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xed762e2a rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00981fee usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x042c21af usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x04e0429d usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b0081b2 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x446d5c32 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x534a8113 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x79708bd2 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f49c16b rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x947083fe rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3218fbc rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xabb07b79 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb78e7a27 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb94e74d7 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd176d936 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe03bb988 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe7bf837c rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf03d0c6e rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf403fdf4 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x04439ca1 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c331cf9 usb_string_ids_tab EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1408a868 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x154ee175 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1a8339e1 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1e6cad3e config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ffe8a88 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x191b0fbd usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1fadad46 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x246b39bb usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x24b8849c usb_ep_autoconfig_ss EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x306beb9c unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x332fef0a usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38df5a3b usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b03d419 usb_ep_autoconfig EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5219fa7c config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56813986 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x520735dd usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x571a18ce usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x585cab06 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a2a70ed usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5b282e16 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x62692b61 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6b6f79a0 usb_assign_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73d43eb5 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b0bb1a6 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7b60063b usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d09cacf usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7dd3e9c4 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84c003b3 usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x85a504da usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87aab966 usb_func_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8854f840 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c9136e7 usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c96d7ac usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa21c68bf usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc92af5b6 usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd1722788 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f1070e4 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x85d40f7f usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a76930e usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x902b783a usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9b6a0347 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c5b20ef usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fd232aa usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa03ea514 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce78aef4 usb_add_config_only EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd78aa9c9 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdd2d30dd usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeeb4a3bc usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf1bfb849 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd7be48e4 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdbdbf85c config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe2b79719 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4a7c853 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf06feff2 usb_func_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4897239 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf52b6b81 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5830d80 usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2b54803e udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x596996be free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5b4f39c4 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf9bd8d49 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff330016 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3aa73c3f udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x430b8c8b free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x47895d15 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4b0b9fa5 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5681bf76 udc_probe EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x735c53c6 empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9e8111a6 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe163d7d7 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe9bfb580 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfad554a8 udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xfb7219ab init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x90017ec4 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9af0cfdd udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9d8151ea init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc6ec6db9 udc_remove EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0b0ecd51 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0b342f1b usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x184c98e5 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c76d071 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1f66c8d3 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1f7fd68e usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2285f938 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2372cf9b gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f196021 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1146fb6f usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2279d391 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x260073a1 usb_gadget_ep_match_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2e3acf3d usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x35a85661 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2f15cc85 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x32db8c0d usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x37a57197 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x37d218a1 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x385ff0a7 usb_initialize_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4305cf48 usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x47d48f20 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x41445602 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x473f1180 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4902dba7 usb_gadget_set_state EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x51aba6e3 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x614161f4 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6fa6392e usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x54d10a34 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66dee350 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a3d764f usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a509651 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6ecff88f usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x707fb0bf usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x74e312e2 usb_del_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7b889a3e usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x855f078f usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x88dfc957 usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8b46d0cb usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8f3d510f usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9231daa4 usb_del_gadget_udc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa3a38e0f usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x97d15cf9 usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xae24cc2c usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbb8d7052 usb_gadget_check_config EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc2d36e7d usb_gadget_vbus_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5eb47de usb_gadget_set_remote_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc44bb1f0 usb_gadget_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd27f178f usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd8248739 usb_gadget_register_driver_owner -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc4e6d29 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xddd1faa7 usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec485fd5 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf41d2bb4 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf9b02a98 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x21629387 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x64041ad1 xhci_plat_pm_ops -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x71f3b777 xhci_plat_remove -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xecf6b9ff xhci_plat_probe -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x0d2e3256 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x55ffd57d ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9aa9842 usb_gadget_set_remote_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcb8cd56d usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1d29336 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe2a55486 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf08e784c usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfae472f5 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xd7dba737 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x54a98790 xhci_plat_remove +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x5cb377a2 xhci_plat_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xe407f662 xhci_plat_pm_ops +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9be31c56 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9d7fe58c ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x055b8303 musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1aba183c musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x329253ea musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x556e376a musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x57f8d8f9 musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x74376a08 musb_set_host EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbc76444d musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc6bac9aa musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb7ad292 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xbeb4c115 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd47897f4 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x395fb247 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4f8c0a10 usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x78dfcb16 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x962f28f0 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xeaa789d8 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xc5c33e94 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x39fde9d5 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ce00cbd usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0e19951d usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1327d9dd usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1abb5d1d usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31072b26 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x45fe7e9b usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c12204c usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6a748252 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f568ddb usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7f767789 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8296816a usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9659ef08 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa7ae9a59 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbc3c36b6 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbe472377 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe25c25c0 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe529cde7 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe5cd242b usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfa6ba48a usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff4d2f15 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x5d01a8f1 dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xf7f29844 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf5024de5 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x162e3c79 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4a21ff19 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x60f2b30d usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x9c09220b usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa8fb2385 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x3f15cf9b isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe0a8898b usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x04146a7d usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0892d1ac usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x241fc081 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2eed682c usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x342a6f2f usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x395ccd2b usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x43a53d30 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x59a523e1 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x61a4f07c usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x72855273 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x91f9ea14 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x94799436 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xafcd93c3 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb381a68a usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf35de2d usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1194e72 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe16ea00a usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe272797f usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xef807126 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf8f0760f usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x86e875df dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xfc533d38 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x435bc56f tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc1ca7bbf tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xaaf53bfa tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb3d607e4 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change @@ -16771,123 +16803,123 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb6362f93 ucsi_unregister EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd938ee5d ucsi_connector_change EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfc3a6c6e ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x015d667b usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x346346c6 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x37aef2eb usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x54db93ab usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x650d62b7 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x66c60664 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x14477ed7 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1a301052 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2a5e47d4 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x45703027 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x49cc2a59 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x56752ff2 usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7918516e usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8f50f86c dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x95949729 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb894f7b9 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc9d4dcbc usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcd12119c usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x928249e3 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x948a80e6 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa584999a usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb3a5feab usbip_stop_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe02178b6 dev_attr_usbip_debug EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe3ffdb0a usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x32215688 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5440d806 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5d0a3054 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5e233645 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7106328b vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x78614e69 vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8d538fee vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcc4200b1 _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd43cc2f7 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe7c1c181 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf89711a5 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x280aa3cb vdpasim_create -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x478deea8 vdpasim_schedule_work -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x062caafa vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c3ffb92 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0e8c125c vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x12eab0cf vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x22aa4c83 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3dd25d62 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x491fcf12 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe7ded2f6 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfcb6b88d usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0370a1df vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x222d8e29 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2787bc1f vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6baaac71 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7b7c1ee0 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x814d4aa2 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x862a0e17 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9298cfc2 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa22692dd _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb152c55f __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xeb6614af vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xa9d044ca vdpasim_schedule_work +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xf936b3c8 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x004a8975 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x028e3799 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x06241c57 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0b2dcbe6 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x26542c6b vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2e6828bf vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x37c10f88 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3fb804bb vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x427019f9 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x473556cb vfio_pci_core_err_handlers EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5df41f17 vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x68e284d1 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x70071415 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7608d7e2 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7b5ecef0 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x88ae8d64 vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb6d5e8a8 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd94da164 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdd30c568 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe796c6bd vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf5d66ec8 vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfa28a2ce vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x010ce0d2 vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0d61f7d7 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x12a254e9 vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x212e4d41 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x28ad9e85 vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2a524f2e vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x43f885d8 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4f32bf1b vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5a0ebfae _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x57be85ef vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6b3d90e9 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x90d8d09c vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa3d969e3 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaba649fd vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe2bed1b1 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfa171b95 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfa714197 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb4181c9 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x104f51e9 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x125bb06a vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x180a352d vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1f9283f3 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x440674f3 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x55efb640 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x569ce7cf vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x56bab07b _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5f135d73 vfio_file_enforced_coherent EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x61b0579d vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x61cdb335 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6a1a7bed vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6b1087aa vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7447d182 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x76239a7f vfio_mig_get_next_state EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7ae1426d vfio_device_set_open_count +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7bab2185 vfio_file_is_group EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x96dc6733 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9bed67f7 vfio_iommufd_physical_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa5f2e883 vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcd4a95cf vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdd6eec38 vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe3d97eb4 vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe7d19ba0 vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe7f2be4d vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf393e863 vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfd61dbf6 vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06e30632 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07ad8102 vhost_vq_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0889064f vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a5e7720 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e4289de vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ae8bebe vhost_vq_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1da5ad04 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27a7aab8 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b4e5653 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x503eb683 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x517b7d3a vhost_vq_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x526a34c8 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x55f6ec4f vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5795c06b vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a69f3ad vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ebbca03 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x604e0716 vhost_worker_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6342b2dd vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6975ec0b vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x69c4cc84 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e71e609 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78479594 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7e6e53bd vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fe546fc vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8286d970 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x853341ac vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8a32f62c vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8bfdc431 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90f06ef8 vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9423a5e7 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96723dfd vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9873401c vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa29a7d13 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6af16d4 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa74a58a8 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7e47f4c6 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb01680a7 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb5b0bad0 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd4635e36 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe24e004d vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe66dcd90 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfdbaac76 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c2120d2 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x26481a6a vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b249767 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30582ab2 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33a6ebaf vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x46d35212 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a07beca vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b86a590 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51f960dc vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61c9a0f9 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x697a7b76 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f58acd4 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74055c13 vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74aaefb3 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89f151b6 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d323232 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8fdba2cd vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90644d2c vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9708cd2c vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1a39c18 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3b65e73 vhost_add_used EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa92d56f0 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb963c5be vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbcc0c95c vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd836619f vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeb0113e8 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf04939aa vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9edd65c vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7e2e772 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbfb5559e vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc119c2ee vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3558cf8 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4622559 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7f74881 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcaaa21b4 vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb494396 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xccb96191 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3b13af1 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd7637032 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc31bdfb vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0435d30 vhost_worker_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2c9852a vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe47f1fea vhost_vq_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6218257 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed688386 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf81c046f vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf84de278 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfb370452 vhost_enable_notify EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff774417 vhost_init_device_iotlb EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first @@ -16898,390 +16930,390 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0f226462 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x188f55cc ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x564880b1 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6985201a ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa7353988 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbd9a1cfb ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd67f3566 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xd22ba041 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x9a4b2996 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc1881ce5 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x01cf45d9 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1e0259e5 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x2aae117e w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x485961d0 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x28ae19ab ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2e565e63 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x58022247 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8f55a38b ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x90f3885c ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa68e6f74 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xba504245 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa3f8a25b fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x1eeb7a4f sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x726706cf sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x32f20c30 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3990328d w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5aeeefee w1_reset_resume_command EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x673a1960 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x94d95d23 w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x99bc01e9 w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xb391d583 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xc81091ab w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd76dc4ad w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0xf4248c1a w1_reset_bus -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x113f38b5 dlm_posix_get +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f822a66 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x71b3f11c w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8e28ffb8 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb2bd3247 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb5e65b90 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9849ee7 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe23627a2 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfeddb71b w1_reset_bus EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7de1d963 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4e17b616 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7ba3f36a dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9c7f8b33 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbafe2d4b dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x16c6fb60 nlmclnt_rpc_clnt -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x53a414fb nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5440601e nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f5b0097 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8fcabe42 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2c1defb0 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3efa02a9 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x42e2501b nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4c144c90 nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x88e6ab68 lockd_down EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb168a2a1 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xda1c1596 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf535dcce lockd_down -EXPORT_SYMBOL_GPL fs/netfs/netfs 0x719de7cc netfs_extract_user_iter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x000d7fd5 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00cc0bae nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb23752d3 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd640d69c nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfe866d88 nlmclnt_done +EXPORT_SYMBOL_GPL fs/netfs/netfs 0xa6e3c2dc netfs_extract_user_iter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x002acb11 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00da7f24 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x034a5d86 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02e02751 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x038af865 register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04eca3df nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06aa0763 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08b5e916 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09819601 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ba0d70f nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ba966c1 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cc2a60e nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e7d6da7 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05a20331 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x066ded6a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07a2b8c0 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a398ba3 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b71cef7 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8130c3 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dd2953d nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x118d630f nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b01c4d9 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b24249b nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ba37fdd nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c2a1890 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e6dc7d9 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2279c234 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x114f8e1f __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1217d00b nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x124b2dd0 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x133af8a2 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1422fb85 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18052b67 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18ba9d72 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18c1002c nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d1359dc nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d55a387 nfs_atomic_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x232cd446 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23841cf1 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24b6f6cd register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25d66e7b nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24342e49 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25519113 nfs_initiate_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x269b72b2 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28224879 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26a4a957 nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29086fa3 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cec7a1a nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dfe6be7 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ed4720a nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33afa09d nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33c091a4 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29400c5b nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2be93715 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dd759fb nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e3c375c nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e91e10a nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f4514c2 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f734318 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3270b70f nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x329a0a31 nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34566b51 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36e3ea68 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36efc991 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34ca3c06 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34d60240 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x373b5774 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x377b1d3d nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37e4ea12 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3860a468 get_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a059411 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a6daa11 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b20ae0a nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c556015 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3adcb6fd nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b87e031 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cf6ee55 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eb5d029 nfs_release_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f32457c nfs_filemap_write_and_wait_range EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x410c8b18 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42140607 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4180a7bc nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4341ba86 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45458537 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48cd8348 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c59fe9c nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4374548f nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47c3b927 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49d43bc3 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a53048e nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b6b4be6 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c37380e nfs_clear_verifier_delegated EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fef1fce nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x506ed69d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dbbc928 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e31ac3c nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5068fa50 nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55949bf1 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x577d0da2 nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57849cb2 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5844202a nfs_filemap_write_and_wait_range EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x597daaab nfs_sysfs_add_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a90291a nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ca1c6cd nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e6ff1f8 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f0e266d nfs_read_alloc_scratch -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62f1abe8 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62fa10a4 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66e0bc6b nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6833c403 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68d83b1b nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bf22ed1 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6caa8f13 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cc0bde3 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cca9331 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63b2d66d nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63d888f8 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66b3cc30 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x684807dc nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a5074d4 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bcd0452 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c1f99bd nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fb501cc nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71526d67 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x727da874 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72a27549 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd0402a nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7053a216 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71eb7588 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72cc3e5c nfs_get_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7425da08 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x759ce9bc nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d0c8fec nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74aec34a nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7742308d nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x786e1410 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a5e4307 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d3b081e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dfe677a nfs_server_insert_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e202e89 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f38a15d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x805174c5 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8330956e nfs_rename EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89a03cac nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89dc2f27 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e93fc64 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ee00c1a __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f9f0404 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8556e19c nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8599ab25 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86c70d33 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ce29ee8 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d955501 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e949a08 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90174042 nfs_dentry_operations 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 0x93a993fc nfs_sops EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95ec90da nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96b18286 nfs_instantiate EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99478a51 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a9d6f3c nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9db87de3 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0a4d1c nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3573da nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f6731fd nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0561282 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa11bf112 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2c3ed1f nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa38472b9 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa45f6200 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4cec36e nfs_sysfs_link_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa80c946a nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa85e405b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98c0e4cf nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99198601 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cfc8339 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d235011 nfs_read_alloc_scratch +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0b2feb9 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e67082 nfs_wait_on_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9970e17 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaadfa554 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaec648f nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacdbf7c0 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad615ca3 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafcc1b6c nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb049904e nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0ee798d nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb14a78b2 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb14ef565 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2aa5152 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2dcfae4 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3cfabb7 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7c17280 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb848ec59 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaae3a9d nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad6574c6 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaefd76df nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf76f8f7 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafba155c nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafc9eed9 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb20e4366 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7e2f4cc nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb129f95 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbbf4e0e nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc60c8d __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdd6a705 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbeca8b19 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf735a94 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf91974a nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc02dd0c5 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc10c4905 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc15aae78 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc32d939b nfs_request_add_commit_list_locked EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5888707 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3fc9709 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb36c86f nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbd6cf86 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf957701 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfaca181 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1439ab4 nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4e7ca68 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd65e59ed nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd71025e0 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7106086 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd79115a2 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9380677 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc922a8ba nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc925bbcf nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd045cfc9 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd05519e7 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1824630 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1c0acea alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd23cb7db nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd31875b6 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4866cd8 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd49e2a76 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7a4e817 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8aa4bea nfs_sysfs_link_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9068b19 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda3e839b nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb3a76a1 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd6934a3 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0129d5f nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe38754ea nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4ae6cc3 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4d644d5 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe579deea unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe59a70ca nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6dd0283 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe73d7ded nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe80955f0 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe90c1416 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedaa3a71 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf07a048a nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf18d80be nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1b9e076 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3a3ad81 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6eea8ca nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcaae866 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd3dbc41 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd7f142e nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfceca2d nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe207d933 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3c06bb8 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4d9aafe nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9ce8062 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec53252d nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee6ad3d5 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefb1a8d2 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf031803f nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1ec7243 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2b269fe nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5b641a9 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6176e4e nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8d9b04c nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb1f2bac nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbb9d495 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc3dce18 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc5ec6a3 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbdd8892 nfs4_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff898b27 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffaec73b nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa8abb2f9 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0135750d nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff2eab93 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xbee10a16 nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02da1276 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03addf94 nfs4_delete_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0792411f pnfs_update_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0916e7c4 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd06bd1 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d2f0ba7 pnfs_generic_pg_check_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d381e90 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d68847e nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f53c90d pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x179553f5 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17c8f2db nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18904ca2 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13bd75b6 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16474363 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1707e722 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x181f3348 pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b41178 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19155532 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1be9f740 pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d57c82c __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e9da558 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21334258 __traceiter_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2174b794 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22315eca pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21f81a85 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22c09827 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x251546c2 pnfs_generic_prepare_to_resend_writes EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28cb1af2 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29a5c618 pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b84163f pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d4f45b2 pnfs_add_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f1e21ba __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fc0ce7d nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fe190c1 __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x323e1f3c pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3505dd78 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3525b144 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37ebf02e pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3efde403 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x412f0c25 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47f7954b nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4844e8de pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49569873 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dbc2fdd nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5093e43c pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41976c8b pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x429888ec pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43bb2824 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4456e738 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45672f64 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45e7a365 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e58ac3f pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51a59c6c pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5206e3c3 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53614eff nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53a659c0 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555bb1db __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x578f3a00 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555dccf4 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59286725 pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f11d3f8 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a825ee5 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a8df131 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b119cec __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e0ee4d0 nfs4_test_session_trunk EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x618c7a16 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61fd190f nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x679487bf nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61a29b3f nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65738a63 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66a87332 __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6aea5675 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d781874 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ddbdfe5 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5df7a8 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c331d05 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e468055 pnfs_set_lo_fail EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e637af7 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70f9548c __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x724f011c nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72e187cd __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70020484 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x702f7ba9 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74bafb1b nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77a2c161 pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78b7170b pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b182820 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c7cb46b nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cc22ae5 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fc13b48 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d475876 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f105407 pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x802046c5 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8027ca18 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x820ef5d0 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8424c29c pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b4bed52 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82d0a799 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8399e906 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87a08ed6 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be24f50 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9109ee89 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95d2f6e6 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96e5d40c pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98d6a38a nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99715c94 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3c8be2e pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3cda85d pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4786eb4 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa53afaf1 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8b4c688 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf1a873d pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf3c199d pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafe3847b pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1e2380b nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb461a8d9 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6555fcf __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e729668 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8eb553d8 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98ecb224 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x995d0163 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b30527a nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ca85f2d __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e2bb799 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e2e8d47 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa769982b pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacba6bcb __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad7a50e6 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xade49e2b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0f0029f pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0fff324 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1245b97 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7615df5 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb91bde8e nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd1277d2 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe976871 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc11a93da pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc27068f4 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc71dd3d8 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf71635b pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfa3da35 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc353cee5 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc393a74d nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc53e953b pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc688f596 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7230642 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8dd473b pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfc1c91a __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd004f592 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd141892a __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd47333c2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd901ec1f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdba5a8db nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcfed053 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd342fa8 __tracepoint_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2fdbf4c pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6e64cfe __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe71ae499 nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe745f069 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecd13619 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0697715 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe21dab31 pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5b96834 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6196cdf pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6271e83 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf67a23eb nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf70eff37 pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7af879b pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff1639b0 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc721bc0 pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x500cdb6c opens_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe315bddb locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe5bbf465 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x51fbd1ae nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x734dca34 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x89bdca10 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x9fea0dd3 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xdef899a6 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa0d89961 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb3e0084c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb755bde8 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe1cd17e1 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xb5573941 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2473f843 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x2e088154 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 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6d8ab37e o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8e2827b4 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa5e52dfb o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x95d1e5f8 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb37dbcbb o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb44c390c o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb7d95a46 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd616c58d o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcf34c65c 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 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 0xf87fc2f5 o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf99322de o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfc4aebfd o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1264088e dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x31909a3a dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3c4f5a08 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4dec6ddc dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5488f464 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1f70d924 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2c326d33 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x326fb858 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3326a8ba 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 0xa403d6dd dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9b74f243 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xacee8575 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 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x27958a27 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3c3a0220 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x43215a9e ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x534acf87 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8388a924 ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa565f427 ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb978055e ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xeca66f4b ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x614faa5f unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xfd369eb9 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x068a94d4 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x2c8572c2 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x6e5924b7 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xd715fc62 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x07a047ed unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xde7faee5 register_pstore_zone EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xabd9af6d cifs_arc4_crypt EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xc4c73891 cifs_arc4_setkey EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0x798f3830 cifs_md4_init @@ -17303,8 +17335,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x31d4e581 poly1305_init_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xd7219de2 poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xf3945fcd poly1305_final_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x25bf997c notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xbc5cd7b9 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0e4bf21b notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe6a6265b notifier_err_inject_dir EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 raid6_call @@ -17315,1082 +17347,1082 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x62f8377f lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb8cec5b4 lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x0ee5de0c garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x1c8ce071 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x5e483a70 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xbac9fdee garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xbe7f50ce garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xc9ffe29e garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0f04ec75 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x1c0eb004 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x227c9329 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x427e692e mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x96ae9a95 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xaafa28f2 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/stp 0x5bba2014 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0xb232ad41 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0xb42fca54 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xcbf2f1f8 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x9b9ce2b8 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x9bcfc50d lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x33e01708 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x46e7769a garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x95f96fd8 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x9adf312a garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc2b004aa garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xd487f601 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x081c0566 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb67f51f2 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xb924b8cf mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xcd1dd029 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe01b9bfa mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xe0fab5ee mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x30cdb02f stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xa075e246 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x38a15f87 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7889dd39 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 0x9ea3e0bf ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x9336eeef 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 0x150f42db l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x484c6b64 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7d079bbd l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x814330e6 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x85ffe087 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8ba1c72b l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbc1bba12 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcba1a3ec l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf4c1b9a0 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bridge/bridge 0x117e5b4d br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1bbc0ec9 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x39bfb22f br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4a3585c6 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d7761ce br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x53b26af4 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x792b27ee br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7be2b6bb br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8a9f52a8 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8e3a0291 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8fc572bb br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa8cda910 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xab2f86f9 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xae47c7b3 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xaf8d183f br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1483b65 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbcf551a6 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc8cf23ee br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xca82be71 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd388b315 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xddb3c5ff br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe6c15e00 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xef8b0dfe br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf4b6d258 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfc1ebb67 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/dccp/dccp 0x01afc6f5 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c1c1a1f dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f57e3c7 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x127ffb58 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x17d51aa3 dccp_child_process +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x078c71ec l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2a5922c6 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2c1ff07c l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4abda4e6 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x922d6d2b l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd58e0663 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd609aa97 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdba1889a bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc0779c8 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bridge/bridge 0x10baff11 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x18fd36f9 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x22c0234c br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x23459e9b br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2a9db684 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c318794 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2db2c5d0 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6665c834 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7478664c br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x86782c08 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9092ca73 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x93df7f09 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa0f847c5 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaf9ccebb br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbdb5e809 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbde55e14 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3b85fa8 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc474d508 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcd3cf3e7 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe201f102 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe3b38b76 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe9cd5da3 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xea4e0603 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf16d2374 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfb093375 br_mst_get_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09552ba8 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0fa6e82f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1780296e dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1906c5be dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b7d446c dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x32850e28 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x38d20c63 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x485a6a5d dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a220d6f dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19e0ce85 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b77a261 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d81f09d dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x314c5d88 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a31e73d dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x41d8ff6f dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x44493ab6 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x51889aa0 dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c3dbf12 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c3f41cd dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5cb42f3b dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f909106 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x642ed473 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60eba72a dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x629a0a4f dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x65613a4e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x696db361 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6aef9d4d dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f5feea9 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x70bf0874 inet_dccp_listen EXPORT_SYMBOL_GPL net/dccp/dccp 0x7132cad4 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7364afb2 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x76810f23 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x78c755e9 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x750ba439 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x757c49b3 dccp_rcv_established EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp -EXPORT_SYMBOL_GPL net/dccp/dccp 0x84160ebf dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8577f8eb dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b95691f dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x93e2473b dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8865f99c dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x89a53912 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9efa4dc dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbae94326 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc0b6f24 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf143196 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbfab2fb7 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1cca2df dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc42bf8d4 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc94126f5 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd02c6b6 dccp_ctl_make_reset EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd78c91a6 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2d97d7e dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1ac1ad4 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2dac2a1 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2e81a3f dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf94d577c inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb2dfb9b dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x05739fe9 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1ebfdb74 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa0051bdc dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb205f677 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbaa4d5bd dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdd70ee5d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7c80375 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdfb0934e dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe427797e dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe861d17 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2ae7c39d dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4c537a97 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x634312d8 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8be600df dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x95447031 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xde6f054c dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x041f25f2 dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x16a5ed94 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1b88e33f dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1de932ec dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x326d76ca dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x329797a1 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3bfd2d6f dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0eba7280 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x17e767f2 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1a5f1d4e dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x231dd256 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2848a8d4 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x375ffb38 dsa_enqueue_skb EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x41b91b86 dsa_devlink_resources_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x50f73bc7 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5406a8ce dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x56dca884 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5b28f37e dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62ea2ebb dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x658b8726 dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6e2b7a4c dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6f17eb35 dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x83dd97dd dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86689363 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c9668b3 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4841485c dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x528af49e dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x58aaa29f dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68798022 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6e7fb2fd dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76075a7f dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x77d3ef79 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7942e8fa dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d12a7ca dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7e68eb88 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x81085437 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x915099c7 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x979b689b dsa_mdb_present_in_other_db EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa0a5a740 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xafbb3552 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb16ccd47 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xba21aaa7 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbebe6af7 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa83b1091 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbaba4168 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbfae7b23 dsa_port_phylink_mac_change EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc4501d69 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc488d7dc dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc8d2c3dc dsa_register_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd11e0ee6 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe12ac55d dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbe32dbf dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe13ae5b7 dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf404db18 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf7a32139 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf193d775 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf3915b7c dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfa8630ce dsa_devlink_port_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfffe61df dsa_switch_find -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x05d4437c ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1b3ac604 ieee802154_mac_cmd_pl_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2263fe11 ieee802154_beacon_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2438de96 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2f8d0e5a ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x569a6637 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x60e6c134 nl802154_scan_done +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfdf23f23 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x04355118 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x0a8fb960 nl802154_scan_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x13ad1b1c nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x47c8d8ab ieee802154_mac_cmd_pl_pull EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa4953538 nl802154_scan_started -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xad98905d nl802154_scan_event -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe0120a90 ieee802154_mac_cmd_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfd1b7933 nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8d8e2978 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8f437d8f ieee802154_mac_cmd_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x97cbb92b ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb651ebef ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb73daf9d nl802154_scan_started +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbb35f316 nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc0a4cd00 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0x80e6c82a ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xbc7a5b1b ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xb124f257 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xd1079290 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x13625fb3 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa87140cd esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe3ce92ce esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/gre 0x484f0b77 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xde11188f gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2dfeed7a inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3630c41f inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5012c491 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x56344df3 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7c73cada inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x80b15284 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x84ae591c inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x94bb38c0 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbc158777 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x22d689f4 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c985080 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x23ba4413 ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x25c6fa04 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x31dbf681 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3894e600 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f9900f9 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x549a5688 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x567c3e9e ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c47fd10 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ea8a632 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x78115dd8 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x92ac8816 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xac65d390 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb991703f ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcc05710c ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4e1101a ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfa8d901c ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1fcb54f2 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x457f8127 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x068a9e02 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xcfaf0387 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x3781a8df nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x316a7525 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x578d5c38 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x59b3d79d nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5b7a6f1b nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x673f8c46 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xdda6ded4 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfdb8c72e nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x341b7ccd nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x311ac127 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x518c8b61 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xdf2bc37d nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x66508811 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x9d8eb7dd nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x253bf774 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3f5d5438 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7cfee2eb tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xba3af48d tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe74e2f12 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x08070581 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1cb2cadf udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x299d3c49 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7771bf0f udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x78f37cd3 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x793ddad3 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb58fc5ef udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd0981d7b udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x212bdfb9 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3194bc51 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8a7d20f7 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3f15fb1a ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb271e526 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb744d4c6 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x563e567b udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd7308b6a udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x5bc578b1 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x83dd02b3 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9994e865 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf81ef4f0 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3d35e63f nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x020ea54f nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0fbacabf nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2537990b nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2cbaceff nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7235d1fd nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa75892b0 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xffcc467b nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xb37cdda4 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6a507f6d nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xab2c35b1 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc71d1ee6 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xbfb2e484 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xd7b0e209 nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x029e73fa l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ab8b5ff l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2af141c4 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f1887ea l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x412a38f5 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x55dbd9a5 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x64487e3c l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73a08657 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e057c4e l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a327b36 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ffa64b8 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9751f8cf l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9fdf6e7c l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xabafa530 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb02601a9 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca8f087b l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd925b827 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe2ea715f l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef35c50c l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf9661392 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfd9248c1 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x9f522093 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x5a6acda5 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x706a29a0 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xcdd53d3a esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x10685ef6 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x8123db0d gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x526215b0 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c3ce8fa inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x84177bf5 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x850a0dca inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb6f98ace inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd37e06b5 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd3bf670b inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd8155a97 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe26f700c inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xb7a4ab88 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x044f0106 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x236f0d50 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x25e92095 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x365d6d4f ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3e8e6388 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63ff2048 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7159d0c8 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x74107fef ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8267a06c ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4c1f59d ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa9d20094 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb318f8eb ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc7229e9d ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcd2835a8 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcdc0c266 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd6b4831f ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xde2918d6 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x6009b75a arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb48b07c9 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x2f6fc2c4 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x88a7d9ef nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x509be8d2 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0ee9d701 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x11afc69f nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x12f31b8d nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x24d83a9a nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6663f06e nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6e62e3f9 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf028269a nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x056b2d29 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb6bc6b59 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xc171e46f nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xfe45c0a1 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x377c89e4 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x683a4996 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0887159b tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa52407ff tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xab654ce7 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd27dd814 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd94e782e tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x02bb774d udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2bb2fd0d udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x48f61566 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x507bb92c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc11cd5ab udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xda09a65d udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf5c95600 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf97d83f2 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6280bd9a esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x85114e55 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd59e4b28 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6176b9d9 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9121916f ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc5d667ed ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x34ea5f31 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa92edf82 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x3035669a ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x00aa21a5 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7d1612d2 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x994da56d nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x19a64baa nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1c5c123e nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3cfbf77f nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x756402e9 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x800f619e nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8ea53037 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbd42df84 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdd0a7f5b nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x820c8c40 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x018d6a02 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe3fbd7c6 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe47ac97c nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xd537e3da nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xda0b8893 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0cfdd6fd l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12dd945b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x17e43ea4 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ab47ab2 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x33b4d5d9 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x38d0c61f l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ab4d211 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4b931808 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d507248 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e6db696 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x595ef9cd l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x602e2ff5 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80b73ef6 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f193ad9 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x94d0db23 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9ab1385d l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb101b12c l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1a330a1 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf0853de l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8aee7d3 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdb2758c8 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x6de9abe7 l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xc96a69fc l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x06cf1a61 ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0de637d7 ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x15497eac ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x6ba7fef1 l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x19310829 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b545d00 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d615206 ieee80211_color_change_finish EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f73193e ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36532342 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b16b191 ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b51f742 ieee80211_set_active_links_async -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x46521f38 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4758bc9e ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d58974d ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x69096683 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x73f15495 ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ab0e0fc ieee80211_set_active_links -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e5f8506 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x948a4287 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21bb381a ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39eb32c3 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3fc2876b ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x57da4ee6 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e3e400f ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9c7018ea ieee80211_find_sta_by_ifaddr EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa52f51fa ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa8ae6779 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb7c52029 ieee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb7421de ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa349709e ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa8dd2165 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb9791f32 ieee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbbdd31fe ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xccaeb6be ieee80211_find_sta_by_link_addrs EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd3fe3aa2 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd26aeff6 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd67e4f3d ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd93cc2ea ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda0f2a9e ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe277cc89 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe60eb6f5 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe859082f ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe91a921e ieee80211_gtk_rekey_add EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeda4f477 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfc707525 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x25abde11 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3060e905 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x65b94d5c mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x662fa313 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x74588024 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec9bfc82 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeff545e6 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2854976 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf5a72cb4 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x04b83e2e nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x089132d0 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1a70e5e3 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x838874ed mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8cb2f769 mpls_output_possible EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11b563f6 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1bdfc769 ip_set_elem_len EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x26e7259f ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2716edfb ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x370528c8 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x230a2f5d ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2737d630 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28736c9f ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2ef3ac09 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x38ddec5e ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4d6e1d81 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6b0cd57c ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6ecdc7c1 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6f8af1f3 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e1747a4 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46008ef8 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x54d299cc ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c394ba5 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73bbc462 ip_set_put_flags 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 0x8559199c ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90fcab12 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x84fc7a27 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x94775430 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 0xaa53cdf0 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcb5cae61 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xccd27640 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcfb1ed8a ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe193eec6 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe300b241 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe6567bbb ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe86b949f ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xed45d3c4 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa3fc65b6 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc936c433 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda4cd780 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe0d24893 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe181caaf ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe32caf84 ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0b3df600 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x840f8ad1 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9f0e59e2 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcb8ef358 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9d54328f ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb70ecd5f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xba27eb97 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xeb825784 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x16a7cff6 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1af42f82 nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1f0f56d3 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x2db5f703 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x50c595ee nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x26b831dc nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5732ef62 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x719acf24 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcc378c62 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xffeecb1e nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5f183cbc nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbd6685a3 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0148dabc nf_conntrack_unregister_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x057c5349 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06df76ed nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b739b79 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08161b80 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0980d20e nf_ct_deliver_cached_events EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c6b81fc nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c90781a nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f6efef1 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1086835d nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1200f1bd nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1870f823 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19f5436b __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bad94aa nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22e700f9 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24ce9a74 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x262f4a10 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26be35af nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c2c183e nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fe45e07 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10dab208 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11a52594 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14263494 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15c5d9ff nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1772efac nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x188e0a1e nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x194b260e __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b68764a nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c7ecff7 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d25da71 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d2efe6d nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d5d0d7d nf_conntrack_alter_reply EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28b3e20e nf_ct_netns_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29204f50 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29971f59 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c1871ea nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3461df7c nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35ecaabc nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38751de2 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3af10e27 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c176461 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x465d0920 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46ca455b nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49b2627b nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ca8bc94 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dd71133 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x537e4007 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c2f4495 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ea08a18 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61263877 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61ff3fe4 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68429ca6 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cf32662 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fd5dddc nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39c1a4a9 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c1ed35c nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40580d34 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47705209 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f7d2f52 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5213e964 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x564263f0 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5aa9f05d nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cefeff4 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f645a64 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x619c532b nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63a75f4a nf_ct_bridge_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d694201 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dd29576 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70a7fade nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73b5c017 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7465cf6e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a136275 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bd36b1d nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ee41531 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f8448de nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x705df6ea nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x716992a3 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73733fe4 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74318489 nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x755559b9 nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7846b06c nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7baa67c5 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7df0f4f1 nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81e80812 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82f77220 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78a9a519 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79d78430 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x830bd9de nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85ec02ab nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86a6aa31 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87032e4a nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x880b1c01 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x891aaab2 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x896293b1 nf_ct_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8afa63fe nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cc9ac13 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d4a4652 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dddaa93 nf_conntrack_helpers_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90b7b521 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9112e8f3 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x941414de nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x996e5cdf nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ba0b590 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9da836e1 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e883033 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xacc9dfbc nf_ct_skb_network_trim -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadf07455 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb183a3af nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2f186e1 nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e9c59e9 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fbb9158 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1977b01 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4e812f8 nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa614b476 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa75f97ea nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa954b3ea __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb27b348a __nf_conntrack_helper_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb60784ef nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb67ca358 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfb76c2c nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4f45b01 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6f06785 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb74f58f7 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc90e2cb nf_ct_expect_related_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2596ce5 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1bec540 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc22f218a nf_ct_seqadj_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc708401a nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc77a0c6c nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf5fd32a nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd06c70e2 __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3941c1a nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb91914a __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb98c46e nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce88021f nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0bff863 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3a14857 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd41581a9 nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf9b48b5 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe33e2a46 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5cf2cee nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe601ab97 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe72eecee nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe92a351a nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe997fa8d nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea3e4aad nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea8f764d nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb56e580 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1cbf3ea nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe787af9e nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7e29714 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec41a283 nf_conntrack_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedf24317 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee079adc nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed35492b nf_ct_gre_keymap_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1f0a6b3 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2cd223d nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefae3e24 nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3a17e80 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8a86a32 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8a96850 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfce2fbce nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd797f30 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4476b32 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf583378b __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf776548c nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf89f4d88 nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd4e31ff nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdd4c8c1 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfeaf6b75 nf_ct_helper_log EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7bb5bb34 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x5f4477d2 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x3dd41894 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0826eaa6 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4f1edeff nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x05521c04 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0661b379 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3b8febe3 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x43548add ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x889165e0 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9c468a85 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa01762b1 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc58f83ac ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7b16685 ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x032a1c97 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5293742a nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x188c21f8 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7d8046f5 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe5e228d6 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x394cf2b2 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x57d6a08c nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5dbe15fa flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5eee1679 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6c8f2c32 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8191f40b nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8df3df52 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x969009d5 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9c7e6149 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb03be89f nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbbf422f7 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd528c934 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdddaebfc nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdfe9508d nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe6ad7555 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe8074222 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf70b2c28 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x01399259 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1e010326 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e054c0f nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e86e073 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x32d70aeb nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x898c4960 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xbc513db2 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xd19043d2 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x65a429f3 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc4ee7e57 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4db07eee nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xab9dcb0d nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x164c4b6d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x16d961cd ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x343c2bf0 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6dd0f93b nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8fb49c1a ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x97895f3f ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbb2fb0a3 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x7b619b32 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4c5f71a1 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0ed5b203 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x8d4aab9b nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf9c0b0bb nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x00bfbf0f nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0399561a nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x14c8cb6f flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x19930409 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1d3cbaa7 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e4d1672 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x477e4183 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7798aa75 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7d6a600a flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9124e183 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xac134674 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd0080b93 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd11fa9a4 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd4255e2e nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd89678fc nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xea9e5b2f flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfef35447 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x02636935 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1283c8d2 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x31b2d0ce nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3515620f nf_ct_nat_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bdb44c5 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3cb1fd12 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x674a1458 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x792b471c nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x84d25a81 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xac76bd0f nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb08267df nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb6bbe6bf nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb810c2eb nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc2e2e069 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd0ca665b nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4817ecdb nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x62474e0a nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x631f07bd nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x683c067d nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x80809f6d nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x80be4309 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97d76083 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbae86fcb nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd197bf8c nf_nat_ipv4_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdc006cef nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xeb7f4e02 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe4326083 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xedd4992a nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf8f84bb5 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf9112527 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfb7d0a53 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x07b52821 synproxy_send_client_synack_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x55d3a4ae ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6631a09e synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7130b04a synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x790de30a synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x81dd0293 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x896bbcad nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x92d9fda3 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xafec0d2f nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc9c1c0b4 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7aac1461 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7f83928c ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x84236f45 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x84f7f999 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x885eb50e nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x95479c23 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb3e2cfd3 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbf9f1598 nf_synproxy_ipv4_init EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcc4c1fb5 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef467136 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe0a51ffb ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfa73c942 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0058dc8a nft_meta_get_reduce EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0305e84e nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06a16371 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06b906f5 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0713ac4e nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x165a5714 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16e57c1a nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x319c29b0 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x079cf944 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c30054a nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x293ca7d3 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x315f5f51 nf_tables_deactivate_flowtable EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40d39302 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x344c2032 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35560c36 nft_do_chain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c8d3392 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4903f019 nf_tables_activate_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52b992f4 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x571d6793 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x596d2235 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5bb9955f nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5df2c1f9 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60466876 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x611135ce nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d5e6f6b nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d8167ed nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x56bccaa7 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5df15c51 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a703c54 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ad8fb90 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6eba003a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70ba98c9 nft_unregister_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74e5924a nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x760505eb nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x77b5088a nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a40ed7d nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b05d4ec nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8c89e277 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x962b8aed nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9be3150d nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac6754ad nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb36ae166 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb542ea71 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb65db2e0 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba3bcfbe nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbae6567f __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4101a49 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4a6fa62 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc77809b3 nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc9f49a3a nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca2c96f6 nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce31210a nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf9a793f nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd58ed775 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7742ec49 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7dcb2444 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8392d7ba nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x916060b9 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96713ae6 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e08e49c nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0469728 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa1d8b4cb nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4a99f03 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4ecdba0 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xacd124c3 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xadc9fa86 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae8f3d10 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb5977076 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbee6cb0e nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc01077d8 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc16bc6a9 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3692819 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4d3c555 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc683facb nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7d15236 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdae3bc27 nft_expr_reduce_bitwise EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdaefe2f6 nft_chain_validate_dependency EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7e4c496 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe83c77e4 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1f5f0de nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf344c58d nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1112b11f nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x185a8340 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6528462 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe92b6f4c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfbc3bdc2 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xffa32346 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3139e584 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3dae8589 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x471741d6 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x492ff668 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5b7667fa nfnetlink_unicast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x69f35626 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xacc8fe21 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcab4f698 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x92697a07 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbf13b790 nfnetlink_send EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe330d16d nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfb4647c4 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1d2e2ccd nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x939fe742 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7fa86c5a nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb4e85718 nfnl_acct_update EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xdac438ca nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2da33abf nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xffbb5a60 nfnl_acct_find_get EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xb2d16e38 nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x565ea18a nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x73680f20 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd407867f nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf343e8ec nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf3b006e4 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x526629ab nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xa316d8c8 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x03fc09da nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x109927aa nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1916bc15 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x56bdea19 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7e85a08e nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x09b66e53 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7e6110ad nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9924b3b9 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8e12af36 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd821617a nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb504e85b nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x02659f17 xt_unregister_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1102f0e3 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2acbf406 xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x306e1729 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x32d62dde xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x32fe2251 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x362b8643 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x38cde31f xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3a9bf2df xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47eb20a3 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48304639 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x55afc0e4 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5aec1688 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x14d46f0c xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1fb8019b xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2033681a xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20562f53 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x233d4c1a xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b788734 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c815c12 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x553d2668 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c9b05a2 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x70acbfca xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ea39b43 xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x88d55b7e xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x913bd7e0 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x931651c1 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x93541014 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x954f0c2d xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa552c22a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9dfe596a xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa1de1dc7 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2a15e29 xt_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb0a55ff5 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xba8cd092 xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9126dea xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc9848c58 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce7efeb0 xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd8492128 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd81fe598 xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe758489b xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee4fa8ca xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe2330dcd xt_compat_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfad7f171 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x804e9a7e xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xeca1e92c xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x32719750 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x406f3829 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x436e8699 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x32e439ee nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x560106d0 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x877ef8dd nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0x8eb396d1 nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0xa31ad6cc nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0cc7974c ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x56aee772 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9d16e200 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa9dbf621 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc68c118c ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd01ae8b5 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x9bdc5c94 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xa63c17cb psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xd1423ab2 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xfaa7d880 psample_group_get +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8fad798 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfcd209bf xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1255bfde xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x9b077d63 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x78366c45 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb7759cd2 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc43787e4 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa2f53a5e nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa38a8c7e nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xaf77559c nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x159a1672 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xcb1373fe nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0ea86d75 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4609e4d8 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x57316214 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x617f66b3 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6e3da21e ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x70d7b876 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x1c770c7e psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x579f863b psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x6b8abfe6 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x9f09c1a8 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5af1f52a qrtr_endpoint_register EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x954cd235 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8fc76a55 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xacbc46ba qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xfa9272e3 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc1db1095 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x07fd2964 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x0827a125 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x2534d461 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x0ae2e010 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x0d0d05b9 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x15658a28 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x1bf1c737 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x263ebd76 rds_conn_create EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x311db1dd rds_send_path_reset EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x4134ab65 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3c61fece rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4b25d850 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x4dad96fe rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x4f5384f2 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x53c67d36 rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x6dfcf366 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x7048fcc1 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x71dde213 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x7ef49069 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x82de245b rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x59395ea5 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x76ee5d59 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x77bac36c rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7d614a56 rds_inc_put EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8d9de544 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x998f54fe rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x99b1553a rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x865ade9a rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x866c0890 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8f39d631 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x90225ef4 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9845ca5e rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9b81c360 rds_conn_path_drop EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x9e8b0367 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xa4425866 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa6f3082d rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa9f131e9 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x9e1aacfd rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa1d35903 rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0xb0612de0 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xb49dac3b rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xbf2541d8 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xbf947c0b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb5fc63ee rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc3b91fe0 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xda9673ac rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xe5f49458 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xf84430a8 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0xf96fd5e0 rds_conn_drop -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x39ebc0ad mqprio_qopt_reconstruct +EXPORT_SYMBOL_GPL net/rds/rds 0xc6d5cd6c rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xce931830 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xe2888f72 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe49ce58b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xec6afbce rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xecc33356 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfd103f98 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xfe416db9 rds_message_addref +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x3427d64c mqprio_qopt_reconstruct +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x8b7e9498 mqprio_validate_qopt EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xfdf0db04 mqprio_validate_qopt -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x15c2576a pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3bd23c41 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5fc1fca7 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa2bbd936 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x16f8ba5d taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x6a6b1c12 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x16300621 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x5e2332a1 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb3055d4c sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe5a14f69 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x1cabb82a smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x84c9bcc9 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xac616a0c smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xfcee57d3 smc_proto6 -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x28ce1109 gss_mech_register +EXPORT_SYMBOL_GPL net/sctp/sctp 0x137ffd2b sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x21892187 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x71d01ef5 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x82d6864b sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x05c22ab9 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x128ed0e7 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x39c36f90 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x3eca3992 smc_unhash_sk EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x48e6e7b3 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x759072ab svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x888b983b gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8a9e31f7 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa5d00857 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa86a72f5 svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf0c5f1b9 gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0029d65d rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00ee1f19 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0321f827 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03d10881 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03f3898e csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0155c1f2 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0250e15f svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03978c08 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03e509aa xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04b403a6 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05674cd5 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0580db47 svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06237016 rpc_uaddr2sockaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0909b426 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a131d15 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a3fc546 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ad58a27 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1e863b xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b9dfbf6 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ceb8128 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d3320b1 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1018a688 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x118caf93 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11a24487 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11abe099 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11bbc087 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12cf3ab8 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134eea5b xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14d60c88 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15c10c5a rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15de755e xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x166d625e svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18794452 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x188ac46a rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1913965a rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb853c3 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cc5a03f xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd50560 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a5e4b6e read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ae56158 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b2dc82e xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b449e04 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b7411e9 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bc77ad6 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0be6a270 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c0a99b1 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cc87948 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d6c0b67 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e56bbf2 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e5d1109 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1432897c rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1509c23f xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f3f7b7 xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x187e1964 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c8316d rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18d1bc4f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19d73b08 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a93f8dc svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af441a5 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b751385 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce8b3f9 svc_xprt_destroy_all EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e9b6e3e sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ea21fd3 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20cddb5b xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x218b4d7e svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2506090a svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25fc854c rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2607d936 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2742301a sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x274530c4 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2784acca xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2789c9ee rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27e821be rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f75b97 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28292bee svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x286d2eb5 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x210b148a xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22315551 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226995a1 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x235a2463 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24bb2c5e cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2620087b svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x271f01d9 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b2e4c0 rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b429810 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ba2cc15 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e7b09dc svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3167a0f0 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aaf844f rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ae1ca2f rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bbf8dd9 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bdfa706 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c44d4de cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d8bcf9e rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f575ea5 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30279b88 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3145d1b9 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x319111a0 rpc_sleep_on EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x322f9900 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f940c6 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b3933a sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32fe7925 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x356ff818 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36057dbd rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x360fe2a9 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c26d35 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37fcc733 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34fab4aa xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3612bf2e xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378de9c2 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x382a5270 svc_fill_write_vector EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a13bd6b rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a644da3 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bed4276 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4fc7be rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cf1ca57 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d718fb4 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d92b9c2 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e7313c2 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38b3d9e3 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38cf3f0e xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab743b8 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dae1aa4 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f780bee rpc_task_release_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa30fd2 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4225ce26 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x438f0fbb rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43f64c93 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x441bfc30 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c6ddab svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ba1ed6 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x485210b8 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a183908 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4be005 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aabc46e rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ab57725 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41296e9f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41b3edaa xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42bf95e5 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x439d7f27 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45999c97 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46429e61 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f5b605 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4788f8e6 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4823ea49 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f9eee7 xprt_pin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b82cbb7 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba66c48 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bbb4067 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c299ca2 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d387cb2 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c575bb7 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d43ebdd svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eb6b444 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fdf9b91 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50268ace svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5110680f svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x519a4631 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x524e2eeb rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52cde09e rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eec068a rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eef32fb __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f1a6e1f rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fac53bb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50471368 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e6bc68 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5246ae60 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e5a65c svc_generic_rpcbind_set EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x541d9b36 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x546c0a83 rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550b77fa svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x551af777 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56d0a3d8 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57160b91 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d76d95 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59967741 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59f15a48 svc_xprt_init EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b1b8b8c svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bce5088 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c013bce xprt_alloc_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf6ffae rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d63433d xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d934005 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f3b0c21 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5da065dc xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e26cfb2 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f076d97 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f5a2de6 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6050c1dc xdr_init_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63069578 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65b332df xdr_truncate_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x690a2730 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b279a2e sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b3f76cd xdr_stream_encode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6db20f63 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e705f11 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eefd593 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x707519f2 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70803822 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b626b5 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7109ee6b rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71e0cec5 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6108c7a2 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6223776c sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6407e439 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6434b0cb rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x645472e2 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64ecf713 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x668cf3bb svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf7e6d8 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c859f93 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d4a74d2 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ed5814f rpc_destroy_pipe_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7335467f xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73815a60 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74791ebd xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x749b6678 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767ca0af rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76a1d22d xdr_stream_decode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76a80e3c rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78547b3c xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78eff95b svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e5194d sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734bd3c6 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73bef87f rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74032e22 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x741afba5 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748e118b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75b9ba9e svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d3ccf7 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7681d091 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e512be xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x782a45eb xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79eb694d rpcauth_init_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a25ef74 rpc_init_priority_wait_queue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a61984e rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bd8ffe0 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c86daee xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cefb408 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d75abc1 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b43aa7e rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c001b57 rpc_max_bc_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f0cdc0e xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fd7ba45 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x802246c4 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8070b6b2 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80b9b289 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80bc77bc svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82eeb7df rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82fccc87 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e6e050 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85629ba1 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85f21fc4 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87c56cd7 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88c986f6 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89551c1a xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b85403a xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d48ed25 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d527a95 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e4f84fa __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92981577 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92cf9529 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92f9fbac svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d76a45 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x957dbf62 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95aeff86 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x969e3143 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x976497f4 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9945fabf rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a2083d8 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b4240f9 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e23fca6 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fd61dfd sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fe379a3 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fef9b6e rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0650417 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2beb3a5 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a0657f svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b73590 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e4efbd6 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f98b0f9 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8134d074 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81a5098c svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x835437f5 xdr_stream_decode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8390101c xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83d2dfca rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8483ed1f rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85989e17 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85a535f7 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x876727bb sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88f92acb rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89ea7c73 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a011e1f rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a261491 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c1e0cce rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8913ca sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e59625d auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f576d9f rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903ce287 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91ca5332 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91ecb07f rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c7bda0 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x965dc8b7 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x969aba1e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x976a419a rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97e5aaaf rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f40b31 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9953fdf4 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99631c7f svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5a3716 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d230b47 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9db6f055 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f853eb1 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f88bbcc rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa128379d xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa20fdd12 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa38fa80f xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa575554a xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e436ba xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7946fe0 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7c09852 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8e6f37c rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9b63ae1 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9c781e2 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaba7d0d5 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac1171f2 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7822205 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa853c8aa xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9130151 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab7d51d8 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac1a3693 xdr_encode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0c7c623 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb151100e xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2824a2a rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb296964d svc_encode_result_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb61bc187 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb639cdb0 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb65553a8 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb69ebad3 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7210c1a rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba35341a svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb2f9442 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc605c4e xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdefc032 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeb72838 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf024813 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf28ae0d put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb559ba89 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6770810 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7448a67 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb75ac11d rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7bb734a rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb98170b8 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba173fa8 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8253d1 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd0c13cd xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd3422fe rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdcb6053 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe843c0d rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf228e26 xprt_reserve_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfbd2b9c sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc01c0a93 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc00b24dc svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc044416f svc_xprt_names EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2e230cf xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ef5b6a cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3a87424 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc576e047 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a908fb svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2aa1039 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc407869e unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc65e69a8 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc697f42a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6bfd60b xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6e12bb7 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc70922a1 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc76b3ad1 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7f08bd2 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8158e4d rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc88886a1 rpc_clnt_probe_trunked_xprts EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaeb28f7 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb263009 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbd9904f xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcafd676b rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd0660b3 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdbe3646 rpc_clnt_xprt_switch_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf58fb27 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd025b48c svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1b65bfa rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd21768ae svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd435c370 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd58a34ef rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65dd4f8 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd83c65f9 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9afb66c rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda02fb19 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda2c359c rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda62a97d rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb00fa0f xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfecd73a svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2ef1213 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c4720e auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd56151a7 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd83434b0 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8aaa471 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e77970 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9583a50 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacf7a1e xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc1f2930 svc_addsock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc35b81f rpc_machine_cred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf0393d1 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf68f744 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfd38756 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe04b157d svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1bacdad rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3dc7249 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe41db43f svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4f68f16 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6ce81e rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0c0aba9 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe14451b0 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4fb3f1d rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe543af00 rpc_clnt_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe651b8b1 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6b147ba xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7835628 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe813774c rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe868d67a rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe90e926b svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6dda5a7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe840abb5 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8ca8635 xprt_wake_up_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea940b3e svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeac7ee38 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb3de74a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebf0e42e rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebf52c59 rpc_release_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee330bfa read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee46404d rpc_bind_new_program EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefd293a3 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf049a876 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1e7e7f4 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf40acc64 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4414b77 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4667803 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5216dd8 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf56f5e59 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7015065 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a00abd svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c3f9c7 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd8690f1 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefb2367a rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefb248ea rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf06b41c3 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf23daff1 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf25bbb4d xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32998e9 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3371d32 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3d88266 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf54fe782 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5c5e3ad xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8128cab rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a3f48e rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf95083d0 xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d7878b cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa52b9c5 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa9c5a81 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa7f830 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc625551 csum_partial_copy_to_xdr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe54ad3c xprt_put -EXPORT_SYMBOL_GPL net/tls/tls 0x601cfcbd tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x7a4e184d tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x995a1de9 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xe8d65b8f tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeb56b76 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff082eb6 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff601f2f rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/tls/tls 0x009d4c6e tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x4aebd4de tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x9076e55b tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xb8afc18f tls_offload_tx_resync_request EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0b83b36a virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17cccf3b virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x235e8eb5 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32f1cdb7 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34cb87b0 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b82a84a virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f4742da virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4387177e virtio_transport_purge_skbs -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4626dbe4 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5360b8b0 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x57e8261b virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5c296d24 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x648466a1 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64c61e78 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77932daf virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a66c38e virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82618d70 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8868fdb3 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x939f58f5 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x986cbb12 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2d2a5a0 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa701f14 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xab060e68 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaf4b3ade virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0e0cb35 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb5c467e9 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x08e7d53a virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x161ffdd5 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2297148a virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34fef52a virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x36957a11 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4d41fb52 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f819991 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x58b370cd virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e964497 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6423c5d4 virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ab99f06 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7229d68e virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79502a5f virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79e107c1 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x856c4ee1 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x93f57fd1 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99625b53 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ae6c890 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1d9d5a8 virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3bf8d6d virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4151bbe virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa671b618 virtio_transport_inc_tx_pkt EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd24df97 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc31f4a8e virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc49c6f72 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc81481db virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd201250f virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4dfd7bc virtio_transport_read_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1c23aeb virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2c4986e virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf9a42af7 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x04dac052 vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a65fd0e vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2fb90dc virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc4f4f0d1 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd75cec34 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7b56ec5 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd8cd5012 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe49d7b38 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb08f98d virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed12207a virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1e57ae5 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf4bf896e virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8600e44 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe7d16f8 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff2622c3 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x007581f8 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01a3eb19 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x069b1b06 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a931814 vsock_dgram_recvmsg EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0fb15e02 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13ab9956 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x14bb571d vsock_connectible_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1014b799 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x17310ddf vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2e9fb6e2 vsock_dgram_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b4aac8e vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ceb1b99 vsock_table_lock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46819f15 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ddec37a vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46b74152 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x476205b1 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4abece7c vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e3c1ca3 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x63d2d958 vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x687d5ec1 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7598c123 vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f52a548 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8102dddf vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x83d4478a vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4e1fcd7a vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x50cee89d vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x556a08aa vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5be0c7d5 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8e692545 vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9853f32f vsock_remove_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa28af77a vsock_enqueue_accept -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa890bbed vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9ed77b57 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f33680a vsock_connectible_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa3b6d21a vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xba194ad2 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1f7cd42 vsock_add_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcdd38468 vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd26aad40 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe528ff51 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe975d000 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb2acf57 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbb08522c vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3416f3e vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec77cd40 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf93e6cb3 vsock_remove_bound -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10652eb2 cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x31f748a0 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x33d1c3c5 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x398e5c6f cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4da921f8 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x53cd7059 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x81f72124 wiphy_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8be0a67a cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9d766d28 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e9e4df7 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xab480857 wiphy_delayed_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xac1b6807 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc8dbcc39 wiphy_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9f9717a cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdc879af7 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe16e9988 wiphy_delayed_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe428f3ab cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec3deadd cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf8821c70 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfbfdd801 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf3c3e2ab vsock_remove_tap +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0b2500b6 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1a004ec2 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x30776b2e wiphy_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x33ce86bd wiphy_delayed_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x42e5d03e cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5800d6e8 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5b72b1ac cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x653355ed cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x809d448e cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8a10c978 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9a4d4f3a cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa44e170a cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbc9eb4a7 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xca3c6e87 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd0300d27 wiphy_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd878da72 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdddecd57 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee5d7bc4 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf604d3b7 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfca83739 wiphy_delayed_work_cancel EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -18403,7501 +18435,7505 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2acbfabd ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9b8a1722 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa7c1f0ca ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xeec7b95d ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7005b1a3 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7dc54f99 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb78fd833 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbd7f20c8 ipcomp_destroy EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x258d7546 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0x75c31dda snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x418cae5b snd_seq_kernel_client_put +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x469bbebe snd_seq_kernel_client_get EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xcbf9166f snd_seq_system_broadcast -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xd9d93047 snd_seq_kernel_client_get EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf03e77f7 snd_seq_kernel_client_put EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf0c8f9fa snd_seq_expand_var_event_at -EXPORT_SYMBOL_GPL sound/core/snd 0x0393f48c snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x0a8e97da snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x0b0996ba snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x15692072 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x1c2d8a89 snd_devm_card_new EXPORT_SYMBOL_GPL sound/core/snd 0x28ecde8b snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x2aab3bdb snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x33b90559 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x54c5eee0 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x58a22971 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x3413be00 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x43b30b6c snd_card_ref EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x70f67ecb snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x5cb81ad6 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x71745119 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x7240c0c9 snd_ctl_register_layer EXPORT_SYMBOL_GPL sound/core/snd 0x7ee655a1 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x7fc0c30e snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x7fe7401e snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x89fdae08 snd_ctl_disconnect_layer EXPORT_SYMBOL_GPL sound/core/snd 0x9176e446 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x930c4e68 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xb683a40c snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0xca3331ed snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xb8dc3140 snd_card_add_dev_attr EXPORT_SYMBOL_GPL sound/core/snd 0xcfaf57d0 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xd7bc6009 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xd55cf3f7 snd_fasync_helper EXPORT_SYMBOL_GPL sound/core/snd 0xe3d37c00 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0xe4c20ed9 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0xe5dcce8b snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xee41d1cf snd_devm_request_dma EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xa88a5488 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xfecc475b snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd 0xfeb2b02c snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xa6d5c069 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xda97b9be 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 0x0dde396a snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0e3cf3af snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x27723b20 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x30f1a431 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4bc88e2e snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1a1392eb snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x299286a2 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x316f93a2 _snd_pcm_stream_lock_irqsave EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x699fcbf9 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7061b511 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7aa3735e snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ce008ef snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7e505407 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x851019e0 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8599bb4c snd_pcm_hw_constraint_eld EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x97e37155 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9c9c75f7 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d39331f snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xaadb78ed snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc03a4cf8 snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xef59aded _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf15641bf snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfc3ffd46 snd_dma_buffer_sync -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfd3efc60 snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x39e83cc2 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4ac0ce36 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5857a8a8 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x671a0314 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9940d97b snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9e63111f snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa208bacf snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbe07ba78 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd30f1124 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd3a8f7e1 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe86818c5 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfa7caf60 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x1011aa23 snd_rawmidi_free -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x64b38e1d snd_rawmidi_init -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x3ffff08e snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x94b67fd8 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x4f8deaec snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xad877587 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbde40eb4 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcae99063 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe8c55799 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0ec703bb snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1d3099af snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4b9cfc19 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5db23d7f snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x85a53a54 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9705f2c9 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9c49bc94 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa71f1e2c snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbc7844e0 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc552d81b snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd9864277 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf2b50f19 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x5e783552 snd_rawmidi_init +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x89232da5 snd_rawmidi_free +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x08d366f5 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x6b27343e __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5848360c snd_ump_endpoint_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5a4ea5ef snd_ump_receive EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5b39d06f snd_ump_convert_from_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x8f7f07d1 snd_ump_receive_ump_val -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x96583d61 snd_ump_switch_protocol -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x9c504438 snd_ump_receive -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x9cabcfbb snd_ump_block_new -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xca6dd6cd snd_ump_endpoint_new -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xcd70f78a snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x80b2ef6a snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xc6ade605 snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd08c7d84 snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd37c6b24 snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xdc1ca43e snd_ump_attach_legacy_rawmidi EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xf15f4a29 snd_ump_parse_endpoint -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x32ab2383 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3ffaac8b amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x41017fd0 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x690abce1 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x69b436e3 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x79598024 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8f3b2d16 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd376dec7 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdd0f9676 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe4f9e7bf amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xeec19691 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf34fb126 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfb87c3e9 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x017060fe snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1a4bb9b7 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1cba5fbc snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x21bc027e snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2db6c8f3 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2efc9b1a snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e5b1601 snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4db62434 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x64249d42 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x64371a77 snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6662f908 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6fd88856 snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x79f98256 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a867526 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7bdf7467 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x80f0b071 snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x84a81d77 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ab26acd snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8c237ae5 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x939c3376 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x97affb1c snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa7652f4f snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaeb71caa snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb179f6bd snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb4637db4 snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbd4b77df snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc04f6a86 snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe00c1f2a snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe3518a84 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe62de220 snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf55874a1 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03977aa6 snd_hdac_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03b12223 snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0412fb08 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0dff4eb2 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11c4772a snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x135ea4c4 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13a530e8 snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15b44ff2 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16a795dc snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18bfce0c snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c6b17ae snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c99286b snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x253d4a9b snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e09eeca snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f004e7e snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f4cdc55 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31708d67 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3243347f snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x333ab047 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3524bb25 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3675d439 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b927d2a snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xfd1063fe snd_ump_receive_ump_val +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x34aa33d7 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3ae07174 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4847773f amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x611dbd55 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x857476ec amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x926dbf42 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xabb3bc35 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xabfa2144 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaf6ca566 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc68d4bb4 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc9990053 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe21fe58b amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe546d621 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x00c48f10 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x05458b06 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x055e7e87 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x05db5155 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x08c752de snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ddc6f55 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0f7a5945 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1232659e snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x21e4a203 snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x227da215 snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3a3c4cd0 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c40530c snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3fb0f17a snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x463f39fb snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5b837b84 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5d54c401 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c573ba5 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a714a31 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x845cd63d snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x92b29390 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9b0bd114 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa004b9dd snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6355a73 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xba74b58d snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbb732df9 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbeb301ca snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xca8b0074 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd0e96a43 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdb5c4ce1 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe74fbeaf snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xffdb6bbf snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00d74f23 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00f5e591 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02c9975e snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05fb12e0 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08f79818 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11154dfa snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12f209fc snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14f4850b snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1cbe93fd snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1eaa6ee8 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22c40d6c snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25074946 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2585b3d7 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28581468 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cbe0c20 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2eb23dce snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x354ba849 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35708f2c snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38dabb29 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b216690 snd_hdac_bus_send_cmd EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43430b96 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45df1427 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47267ef3 snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4887dc05 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fbececd snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fdc8890 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4081e8e2 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x443c205d snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48b5aeb2 snd_hdac_stream_setup_periods EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c80c18d snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5003c0dd snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x537fed5c snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55f255e2 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5785d798 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x507d8ab2 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52af6aa8 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5380e99b snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56096447 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x566049e7 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x566df90e snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5686356a snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a94cf40 snd_hdac_stream_sync_trigger EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d787db5 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5d8e0a37 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ffa6499 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61e7c531 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62b502b4 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x62060eb3 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6617a2a1 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66588cad snd_hdac_acomp_get_eld EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6958e1d5 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69f7bbd1 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c1e9ee4 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d338dd6 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6de4c3e4 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70ecd8ad snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7205d77f snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x749fb77c snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x680829fe snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c3e5108 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fd6b6ae snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71234465 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73dc1190 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75833910 snd_hdac_add_chmap_ctls EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77e0e09b snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7aa6bcce snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84bd8747 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x852638fc snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86baadf2 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87760024 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b628f6b snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c35d020 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90056669 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90ce5402 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9271a08e snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a59be56 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c166ac0 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e0804e9 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80e18a96 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87135091 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x883e867b snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89288f70 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a97808f snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c1949b3 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9032c089 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x963df427 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x981253ca snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98b239fe snd_hdac_stream_reset EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d9d9fdc snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0340846 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7a8dae9 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad427603 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb657fd1b snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb861d1b9 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8da087d snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d54d84d snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa05a0158 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4ce00af snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac31448f snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad85ad39 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xade84340 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb018d40a _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb01bed7e snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb12ae89e snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1666e0e hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3f72cb6 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb44b9dd3 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9437b50 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9545a2d snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb397821 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbe60471 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbcf33ca0 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd16eb06 snd_hdac_acomp_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbefa0214 snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2d98b1f snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc4ecb32 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfc28607 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0be96e5 snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd10af7c7 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4a94b8b snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd598687f _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd60e7fdc snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6106a1f snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd69c29e6 snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbacca94 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc423b0e snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdebb99c1 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf21e05f snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf9d4a0b snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe08029cd snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3d3a2a1 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc574690a snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7a93e49 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7f166c0 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccf8558c snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd158d20e snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1aadf21 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9114f81 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd95a6778 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9685383 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdca8104a snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdca9e33d snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe06d9d60 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe13df5c8 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe35569a7 snd_hdac_stream_get_spbmaxfifo EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe544e3bb snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7abfb27 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8d1a51a snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb1fd1fa snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec303556 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec7ebdfb snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed7a9611 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1d53331 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf486cebe snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb78e31d snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd23cdc9 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4d69a178 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd732d6cd snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x51a13628 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7f7cecdb snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb5ffc04a snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd0df8516 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd8179a00 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdbd30628 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00eeea95 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0168264e snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x022b354b snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03b0e2bc snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8550bf8 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedfa7116 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7fad5a0 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8572192 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb2e3395 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb6f3d1f snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x34554445 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e5a4007 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x020830ef snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0c34bd13 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x183db148 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3d907ad4 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3deed863 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8cba8792 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x006ae96c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0194db45 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x044a8433 snd_hda_jack_set_dirty_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a16ba73 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c3dde10 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1396bd61 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14ad980a snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16da401d snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ba1e7a3 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28f1d627 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ae5e671 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ef21a55 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x306246a8 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34fecfa6 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x067f017f snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07bc210c snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x080f57d0 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x084b67d5 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b3e868e snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12332137 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1286b6fa snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15c4d0e7 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15f345a2 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1862ad19 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x199bbe0d azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bf9f84d snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fec8aee snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20f27bb0 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23548825 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23ac7808 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2429c8c9 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24b93b24 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25655b8e snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x288ff60e snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x295e41d4 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aef7414 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2be2eba0 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33b4680c snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x353a7cc5 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36a762c8 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36fe5f3b snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x378737a4 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37d847c8 azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39c8dead snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39d1feb1 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b89a47e snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bfcbc5a snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f39187b snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3feb3f4b azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48390181 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x489020cf azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4926e32e snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4976522f azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ae26b76 snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b4f79ee azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c3394d8 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dc903e0 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5163b779 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5205eed3 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5362ee36 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55e5d062 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56c2b117 snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x571edc7d snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57f23e4a snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59ba4ba7 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59db3758 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e691f91 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x627fe2ec snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62cb76b8 snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x645aa9b9 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65143dc6 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65a0c7f0 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66c77316 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a6191f3 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ceafcec snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e298bea snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x711d3881 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71de276f snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x729badf1 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73e20a7a azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7549587b snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x768e0bd1 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78388d9c __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c119ce4 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83f5e021 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8427e80e snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84a9135a snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8568dd62 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ab16e7b snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c7f8c6b snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90b2c01e snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9456d2e3 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96225ace snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98b254ce snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a23010d snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b97c0af snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bc1231b snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c72c326 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cb0fcea snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ec13ba2 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa114e5d5 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4a3ade7 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa92bb5f7 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa94cb51a snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa83beca snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf1d034b snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb055887e snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb153a5aa snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1761f78 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb250f6e0 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2eb0974 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb667e4b9 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6a5576a snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6e9dd78 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb807b5df snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb87bc66e query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb94f2e71 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9621db0 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9ea13fb snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba14ee25 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba3d20d1 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe61f485 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc067030d snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc42d5a97 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc526f6f6 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7db6a35 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb04b9a1 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc6f8642 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdb1411e azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce6d7b4d snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd347db09 snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3984b32 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7d283fe snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd94c8e0d snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdeaac83f snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b8af4a1 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3baee970 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cce07a7 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e888b8a __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ffceefe snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x468fb6ca snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47b3d3af snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x482a2e2b azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b8d7c34 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4db91021 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ddd37a9 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52f8443c snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58a1d481 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58e82883 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a947ae7 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5af409dc snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f148d51 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61631383 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x664f9ad4 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67893757 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69d2000f snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a351eac snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cb95176 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d5e248c snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72411a22 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72a2af5d snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x739750fd snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76efd983 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a05b6fd snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b168a9c is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c963ef4 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7df29369 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82f82820 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x867b75df snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x891294dc snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b31926e snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b98a66d snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e67a319 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9150396d snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94b4bde6 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95d1efd5 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9605ed87 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96bfebdf snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x972e60ed snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9776a15b azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97ab55a2 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d048c70 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e1e9696 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e22b376 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f2be2f9 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0830123 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3ba307a snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5500383 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5e0fcdb snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8c0e53a snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9d688c0 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa2c387e azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabbdbb80 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacb3495c snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad450e48 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2e7bded snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb34f1b4d snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb36d9a8e snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb40645e8 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb54e12e7 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbab0c2fb snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd92a4bc snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe114420 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2a23499 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc312359c snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc54921cb snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5e3ec41 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb2ed949 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbc70d80 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xced186b4 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd09e3405 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd180ccb6 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5b5a8df snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6e2ab4c snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9c45056 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda0ee751 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde835e68 snd_hda_codec_pcm_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 0xe526b81f snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5e58edc snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6ff0a3d snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea42990d snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecc39bd7 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecd497e0 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed33c063 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed995d8f snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe11f55b4 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe20d2ac0 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6b45814 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7644e96 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7ba2582 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe88331f9 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe91f7ecd azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae4ff6b 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 0xef5c617a snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3c3e24a __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf51b5da4 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5b057c5 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf72fd5e8 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7e5de0c snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7f106bf snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf83fc461 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8d1d613 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0a082fb snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf124b949 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3be7c9e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf56bde20 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7fd9d9e snd_hda_get_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfca142b4 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfce9c1c2 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcf0fb67 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe4e37e6 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe634a31 snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01bbe822 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x08edcb0e snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x209f621d snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x25c00bf2 snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e113abd snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3aee72aa snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3e0b6a98 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x451e6c71 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f9aabef snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x65c894eb snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfeb49008 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff1a0cc2 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x11098e2f snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1c1b1deb snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d2d4ff4 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x37f9bcd8 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x39b7fde6 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x39c2cd58 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4491b528 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ec153e4 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5d9c960d 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 0x7c2d9144 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8662431a 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 0x8b7620ee snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x93015e68 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0323bb8 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xad1a8f8d snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xada4cc21 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb0026417 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb202e7fd snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xed94924a snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xefa78bff snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8aa53400 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8b8c9cf1 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x905948c0 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9476fda4 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa2488ed2 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa6563692 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbae1c0aa snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd1784b3f snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd26c159d snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8e059e0 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdcf73d1e snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf902b0de snd_hda_gen_stream_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xef479b89 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x4b17657f adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xa9150e62 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3559f2e1 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x592a9399 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6bb0992a adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7c4a9cc0 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7c7bca6a adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xba2ace4d adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc7a817e8 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcae61c3b adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfa081856 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfe35e8a7 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x740ccf5c adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x30d16cfc aw88395_dev_set_volume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x437027f3 aw88395_dev_get_profile_count -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x50463123 aw88395_dev_fw_update -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x6e054418 aw88395_dev_get_prof_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x8799b4d8 aw88395_dev_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xaec6df7b aw88395_dev_mute -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xbcfb6d49 aw88395_dev_stop -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xc042d4e2 aw88395_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd590318e aw88395_dev_get_prof_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd80273bb aw88395_dev_start -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xe41e8cf9 aw88395_dev_get_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf105ec88 aw88395_dev_set_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x2ccda53b aw88395_dev_cfg_load -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x867fba03 aw88395_dev_load_acf_check -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x828a9411 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xbc391018 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xd833e588 cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x24aba7ea cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x26c977ed cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x38999751 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xb09aecf2 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x093f07a8 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xa537df50 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1fba65f4 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x223de9dd adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4b6a6abf adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5d98348f adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x713f356d adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x899712a6 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb0065246 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc575a08f adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe4b12586 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xecc527dc adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x22989e7a adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1b64b675 aw88395_dev_set_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1c993531 aw88395_dev_get_prof_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x2dfd5963 aw88395_dev_get_prof_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x36e6614d aw88395_dev_fw_update +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x454c87b4 aw88395_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x6a00e415 aw88395_dev_get_profile_count +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x84be451d aw88395_dev_set_volume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x939ea83b aw88395_dev_start +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x97ba2e6a aw88395_dev_stop +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd3c5b7f3 aw88395_dev_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf1ccacbe aw88395_dev_mute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf999cba8 aw88395_dev_get_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x37823e8a aw88395_dev_cfg_load +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xc397ea82 aw88395_dev_load_acf_check +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x503f284c cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xe4093d3c cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xfaa4e671 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0a2fb24c cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x29f2f19f cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x30ea9773 cs35l41_regmap_spi EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x389e86c7 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x38b7b95b cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x42325780 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4e6e04ef cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x57cbe581 cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x74bb0470 cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8eaa99e1 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x93b26cd5 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa446bea6 cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xcaaa8553 cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdfc6dab8 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x52acc2f8 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x56a89d62 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6cb2ccd8 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x77ab3a84 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7a7f574d cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x86bf91ac cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9b8be974 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc92f6d51 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd158778a cs35l41_set_cspl_mbox_cmd EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe92ff6ad cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf467515f cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x0f734439 cs35l56_system_resume_early -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x5610286a cs35l56_system_suspend_late -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xafe68945 cs35l56_system_resume_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xddc62871 cs35l56_system_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe5c4497a cs35l56_system_suspend_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xfa90e90e cs35l56_system_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x43877ba4 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4d603f42 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf5763423 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xffbbf51c cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x2fc75d39 cs35l56_system_suspend_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x73aa346d cs35l56_system_resume_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xc852df3f cs35l56_system_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xd496147e cs35l56_system_suspend_late +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xdb547836 cs35l56_system_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe294907a cs35l56_system_resume_early EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0a5a3a06 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2a837205 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6b5070ef cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc5509638 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe9b7a99e cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5fe8be12 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x883530a4 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc9576c37 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x007f7501 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2142875f cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x57397417 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x58963e15 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xafd8f255 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x60801c3c cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xbf6ed613 cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc79def23 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x83db6b08 cs42xx8_pm EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x22ccd70f es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x668d8b57 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xa1019a4d snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xaf129da4 soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf08e7eb0 hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf7c9fbae cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0b3e9255 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x64563ea2 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x2b083c60 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x597ee626 soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xc0a51d95 hda_codec_probe_complete EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x851fcbb4 lpass_macro_pds_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xc48cc5fd lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xced4f786 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0e553946 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5b45108f max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7ad9564f max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe17ffb83 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x03efaf3a mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x4233d9d7 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8fa27fd0 mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf3133c37 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xd697ecca nau8821_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x5ed3a053 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x16489a5f max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x10d04387 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x41c0acab max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa7313e55 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc38c9877 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3ca8144a mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x4c532859 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x71f031bd mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xfd866d6b mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x9a283a03 nau8821_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1a13dd95 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb9d6d6b8 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xf9ceae63 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xbe667a90 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc6b46bc4 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x81b825fe pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xb1cef4cf pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x58670799 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x70077b36 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xaf1cd752 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd36e5cda pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x57f10dd8 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb0fdb7bb pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc06e514f pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xfd41ac13 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xfded7664 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x0bc16e8c pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x6129a581 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x846976e9 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x669909a9 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x8aba3eaa pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x3495749f pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xa4951007 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0fc82e3c pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x452686d9 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8ecbcf8d pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa0244b11 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4535d11f pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7369bf0a pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xae05e703 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf66041d2 pcm512x_pm_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info 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 0x0688b45f rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa407db12 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc2b64834 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xdafbc8e6 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe675ef4c rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xfec7d526 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xc836efc6 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdf05038e rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x24e6df86 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x05e1397c rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x332b6540 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x46c4aedd rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x537faccb rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5ba10991 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb1566783 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb3e9d4d8 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x890109ae rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd98b9593 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xe418ffab rt5659_set_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x22458c54 rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4732f1e0 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0e4fed10 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0ee88694 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x182dc809 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3bef92ec rt5682_readable_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x901900ec rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x92880fc3 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x92b95969 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x898e2ee8 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa8c00b8c rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa9d42977 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb0b22fd6 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb41a1bd5 rt5682_reset EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc9723757 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd19af608 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xda188b5c rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xee719189 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xef9fd1e7 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x74e85534 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7c0dc066 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9c7e046b sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9cdc2a71 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xde5d43b4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x4449d2f6 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xc05d64ea devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xd7646c44 src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xe240fac0 src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x3b853d7f ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4affc83e ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x11b6a05f tasdevice_dev_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x124c1f8c tasdevice_amp_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x232e0042 tasdevice_dev_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x2857c7d6 tasdevice_kzalloc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x454bb69e tascodec_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x4a487952 tasdevice_dev_update_bits -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x5faaa808 tasdevice_dev_bulk_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x65275e4a tasdevice_amp_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x82b56806 tasdevice_dev_bulk_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x847952d7 tasdevice_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb150aeaf tasdevice_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb4aae875 tas2781_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xbd4316f7 tasdevice_digital_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xca285731 tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd79a1378 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe5df3d97 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x30b9eec6 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4ab578a5 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x529d768b sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xae118960 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xea042fee devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x73b20ef5 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x9cdb3771 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x3abf89f9 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x5fe53983 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x5f1a6e87 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xe37a4e46 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x0f3525a3 tasdevice_amp_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x15d421a5 tasdevice_digital_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x20c5fd96 tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x287ddc90 tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x2a1883d6 tascodec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x329cd896 tasdevice_amp_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x74bb6fd5 tasdevice_dev_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x865b9b87 tasdevice_dev_bulk_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8c6dfcb4 tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x93671980 tasdevice_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xa0392a1a tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xa34d8f16 tas2781_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xae3aab23 tasdevice_dev_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb8b4a2e5 tasdevice_dev_update_bits EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd60d28da tasdevice_dsp_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5b1ff272 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xed9ef590 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xb167db10 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x518258f8 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x815be423 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xeeac11a0 ts3a227e_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x41f0022f wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9f425a37 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa1fd27b3 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc2f384f9 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf9ad0f01 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x15f150b8 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1ecf67f5 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2bcd5a19 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3200cac8 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3499e086 wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ccadbf5 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x208b61be wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x21203738 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5c8d3e10 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcb718679 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd018d6f3 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0396d4e8 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0aeb2f48 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0cb71f86 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x11be9fd0 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x31c3cd4b wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x38ca440e wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x427349ad wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x459cea76 wm_adsp_compr_copy EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x66e460d2 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x71f6eb52 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x74f0a7c7 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52d6e902 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5692918e wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x58b7751f wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5fcd60a9 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6c41fb93 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7340b308 wm_adsp2_init EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x894458f3 wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x92f17986 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x95364974 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x99c5f30b wm_adsp_power_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9ebc3087 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa5d3068b wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xad1b93e6 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc0917f00 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc5bca6d6 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcd63268f wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd13d6aa0 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1cf0b32 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd3488d86 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd664c434 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x96714569 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb2bdee96 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbc8063a3 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc403f1e9 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc94a4639 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd0990099 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd6053501 wm_adsp2_component_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe19cd966 wm_adsp_compr_handle_irq EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xecf7f62c wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xee82110a wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x1aaef0d6 wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xe26f7598 wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7c68da67 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe05cb712 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xfa1b14bd wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xff42813e wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x0aceafd9 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xae081839 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x2051ea66 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf43e94f4 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf55e639b wm_adsp_power_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf68f2eb5 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfba945e5 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xbf49822e wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xdcdffdca wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1d957bf8 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa2f5ef7e wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb6aba3fb wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbc81fd10 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xcb71d1e7 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4150e2a0 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6efd49d0 fsl_asrc_component 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/generic/snd-soc-audio-graph-card 0x25e7ff1a audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x370ad1f7 audio_graph2_link_dpcm -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x42334d29 audio_graph2_link_normal -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x4537016b audio_graph2_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xcd46ffa0 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x80f7ec2f audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x8ef354bc audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xd3c65587 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xdf5963ee audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xeea20006 audio_graph2_link_dpcm EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0474fd25 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0aa91870 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x14646e92 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x20824f46 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x283fd500 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2c1c47c0 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2db3f17d asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3f362585 asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x40d19118 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5866cc9a asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x61787872 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x62923752 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7f07bf5d asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x97cb6ef6 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9e33a368 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9f981a4e asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb3f6c596 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc9b885f0 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd90d4ba4 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdad471be asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdec958ab asoc_graph_parse_dai -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe06a300e asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe8a306a7 asoc_simple_init_aux_jacks -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf8b21d99 asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02658c5c snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0581616b snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0682113f snd_soc_add_pcm_runtimes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b26f4c snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b8450c snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08a10fe3 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e99707 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0aacca0c snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b1ce3e6 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0baf5b8f snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c1d2060 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c3957ff snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d1ed8a1 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10a504f4 asoc_dummy_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12a41b95 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14b393a3 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x150ef692 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1591398e snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17bce95c snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x199f9e1b snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b48b6e0 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bfd35db snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c5510bf snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e79b0ac snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ec31eee snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f96462b snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2020c601 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21160c46 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x228b519a snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x01420cf9 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0414c5ab asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x17b23aab asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2df5f293 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x350512e3 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x42b139c4 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x58058c80 asoc_simple_init_aux_jacks +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5a6f5237 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5ec27b0e asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7223b799 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8c553191 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x996f1b62 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa3de1137 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaae1a9bd asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc57d437a asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xca31e059 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcef3ecdd asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd0207c2f asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd865ab03 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdc2adacf asoc_graph_parse_dai +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdddec2d6 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdf06c3b2 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb0dad17 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf83d3543 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0112fff2 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01c7b247 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x040d299f snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0509562b snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05d25ca1 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07019026 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b48ba3c snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dce378d snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e1c03d9 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e8a60d3 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fc3580a snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fd884f3 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12a5d034 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14432b12 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1444a4eb snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14acbcb7 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14c79cce snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x157e98fa snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16bef707 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18f9a399 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19a4d600 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19ea0b53 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b6007ae snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b9523ce dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c0e3341 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c162b99 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c330d44 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e7c038d snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x216667c2 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2180a6a1 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x239dd2f7 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24615ac6 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24b14de2 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x251319fc snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28d7a8b2 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x294fcf76 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a2f7299 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b232bd6 snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b7b12d6 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c92979e snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ce81cb0 snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e163242 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f4b8d90 snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f927df9 snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3113575a snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3297b945 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36083c37 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x361beeae snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36c55e5a snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x380964f2 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38374f07 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38ba5f12 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x393ed209 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c0a92cf snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c415e93 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e007209 snd_soc_component_notify_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e162b78 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f3a079f snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x410d82ea soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4118dbfe snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4140ef3f snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41b9e01b snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41e7746c snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4228e3ed snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42a22967 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42b80f72 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42c546b8 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x431498ba snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4567e0b5 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45f1bf5d snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4617b0a7 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x497d677e snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a03f6d6 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a10df7e snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a33852b widget_in_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d114166 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e47c419 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e599322 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ebbdfe1 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f117fb4 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28f8b009 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29e244e5 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e3d2f65 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3199cc53 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32f6fcd4 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37e052d9 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3814c61b snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x395c15eb snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39cafb1b snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b2f292a snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b37a95c snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c81eb94 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e489d3e snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f7282c1 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x419a7099 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42250336 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4408c7a9 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44670946 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44860262 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44ffa9e2 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x456dd81b snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45ac026e snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x460187f8 snd_soc_component_get_jack_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4625127e snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47675bfc snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x481b2bdc snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x490839d3 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49163f5f snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x499a8917 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49ec63f5 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a742980 snd_soc_component_notify_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aca78c7 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b519002 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e551d6e snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eb2760a snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50b6dc7a snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51040f04 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x534d0319 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x538a1b21 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55d42938 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56638fcc snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57490897 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5879e531 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58e09a9a snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59218999 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59900afa snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5abf0f1c snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ad57b64 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b65adbe snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c010742 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c01aa6a dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c298273 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cb74932 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cf14fcb snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5da4f3ba snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fe40f73 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x616bbd78 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62b6f8a3 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62b8b0d8 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x637e7972 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63b5f075 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x642f5db0 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x644db5c3 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64afc658 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64e4c1de snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64fd76c7 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6559c166 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x663317d3 snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f2da3c snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6947b47a snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a42c794 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a958f95 snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bb01049 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c7cf127 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e283d97 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e97329e snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7322fece snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x732a124b snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73def098 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75952de4 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x761dcc0a snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76c1a134 snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x771c9be0 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x783baf9f snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78b047a0 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79549dd3 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b0aeca8 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b8060ab snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cacbf3a snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ceee11f snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e08bb22 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x504aa775 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x527b76be snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x534745e0 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x541d3aae snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x556d6be8 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55741969 snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x560595af snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x570a7993 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x586aac15 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x588f8a85 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58e4ef53 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a9f2d21 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c3d3f5f snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d18724d snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5db9f5fd snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dfff560 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fd96fe6 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6104eac5 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61519a01 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6294a270 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6320f0fd snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64dabc5d snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65481dee snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66be9425 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6702fe03 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6916d0fe snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6abcdda7 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b50e404 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cd0faf6 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f78d96b snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70df617e snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73a2eca8 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76c83742 snd_soc_get_stream_cpu +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77c3e6cf snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78d1105a snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c132c5a dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d0bf589 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 0x7edc6544 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f757d57 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x803605d5 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x840cf3cd snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x852bcd7d snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87796204 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87fe7a1d snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8aad0414 dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ac3fd39 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cb46cde snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e880e7c snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9061413e snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x908b78c3 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x930e2a32 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94eb2e00 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99dd4eb9 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b6706b0 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c53b8b8 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d967685 snd_soc_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e4f5c3a snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eac6b73 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa123870c snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1bc46e9 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2f32e64 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa79c0d04 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa909f62d snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa94cb8af snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa0b366e snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6738506 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb68bbb30 snd_soc_of_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb674feb snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcfb2592 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbefa3ac8 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf5482ad snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfe18216 snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc134d9a0 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc19b3b27 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2b6f5ab dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x801302df snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8093a2f3 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8131b490 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81391392 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x833940ce snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88892dde devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a00c444 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c376a93 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d045ed1 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ef5cef2 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f783565 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9058781f snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90e0ee91 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91d53e59 snd_soc_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92d845f7 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9304bf33 widget_in_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x934f1f8a snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97c2e64a dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x989de8fb snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cd4db2f dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa185911f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2d2c4b3 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa44f1725 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4910abe snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6d2b632 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7c17c1d snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8467864 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa0701e3 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac2f65df snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadc8867e snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae16d653 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae4805d5 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaed43eca snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf7df830 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf93c7a7 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1261450 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb14851bb snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb16f5255 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2a49429 asoc_dummy_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4a38259 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb53bcb93 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb591d30a snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5f372af snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6ab96e3 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6b3e19e snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7ac816c snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb820837b snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9cda8a2 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba0a81d6 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba763f33 snd_soc_dai_is_dummy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb171c53 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc9d8de snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd0db080 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd41f5e7 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdf1472b snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0562080 snd_soc_dapm_update_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc469e692 snd_soc_component_get_jack_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc660a869 snd_soc_dapm_force_enable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8278f39 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc844315e snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8e2d7ff snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca4f776b devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb3b39e3 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc5f7752 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc670682 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf6ebb1e snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf8781eb snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1828865 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd40f1ff6 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5a1801e snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5f8805b snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd650004d snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd673980b snd_soc_get_stream_cpu -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd69eda9f snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcc13f2b devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcda6e8f snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd042798 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde20dc41 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde2d6b95 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe200ceac snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe303fd9a snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3ad4bb3 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe407f4aa snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe40e3ee8 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe40e72af snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe57024b6 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5c9bcb9 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7029cbb snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe79257bb snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b3a901 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8818ff7 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9f0ca03 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc885d1da snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc976c73a snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc993b813 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb7a0cdb snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc4ed403 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc94898d snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccb2045a snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccf7432c snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd0b564c snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd3e4bb3 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd78eb8d snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdad6aa6 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf4e213a snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd20ae07b snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd286ec6b snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd308783c snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4a28495 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd89dbf94 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd97f5a75 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbd56bbb snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc35128e snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcb7d5e7 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde979551 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdef74389 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe00385f2 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe157451c devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1c28d1f snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1c95baa snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe243bbbd snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe27684ba snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3a4330c snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3be532e snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe41bd729 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5257fb2 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5db682e snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5ea12bc snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6104a64 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe91960ed snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9340955 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe960cbd7 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb3d797f snd_soc_dpcm_can_be_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee8199bf snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf38723b8 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf39acf57 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4603288 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6e661c6 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf80c8036 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8feeccc snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec79b29e snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xece71342 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed56a75b snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedd85da1 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1461f8b snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf52fb35d snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf59187ef snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5ff5470 snd_soc_of_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6343509 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7d80c99 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7df7f93 dapm_mark_endpoints_dirty EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb193ccd snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbbf79c7 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcd45dd5 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd7887d9 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe05adc3 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe831a4b snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x009a2066 line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0a012f12 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x16ff9ba4 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1703bb90 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1cceef54 line6_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb05fbb1 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd5408d4 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe15f5f3 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x057a6bef line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x11eb6022 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 0x3fb87436 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4f32d5a1 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5fd505bd line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7038b97f line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x97841a7c line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9f4407a7 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9f475c75 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa1f171b3 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd1ba8631 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe7f3e666 line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xebd8175f line6_pcm_release -EXPORT_SYMBOL_GPL vmlinux 0x00046701 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x0034cee7 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x003b712b fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00453dc7 usb_get_from_anchor +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3a1ecae5 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4ddd504f line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e8add37 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6164284d line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6b062951 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6cbfbaf0 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x97c0acdc line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9c3ca830 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xad06a09b line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb15fd035 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb25874bf line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc819a207 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd09a6aa0 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xed196d07 line6_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0007e913 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x000e2b03 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x000fd71b platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x001a1dd0 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x001ffe3f ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x0031c434 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x00476b98 pci_p2pmem_publish EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x0061f3ea pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x007148ff i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x0076924e pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x006955c5 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x00780a04 kthread_park EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x009896c1 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x00b119bc spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x00867439 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x0099751e clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x00a9e1a5 pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x00c583e3 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00f5e63e __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x01130ef4 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0x012243c4 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x0125fb8d wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x0136a42e shake_page -EXPORT_SYMBOL_GPL vmlinux 0x0138d784 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x00dea9e0 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x00fdf8e1 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00fe5955 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x01027f99 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x01054879 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x011447e0 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0117793c __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x011c7ce5 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x01289804 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x013d41fe mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x01406d15 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x0145374f led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x014a3d93 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x014d9aff PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x0153e3dc pcie_bus_configure_settings EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x01656516 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x017ad24b ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x01887917 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x01907648 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x01945180 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x019611a7 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x019a5acf icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x019dd143 __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free EXPORT_SYMBOL_GPL vmlinux 0x01a20dfe spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x01a450fa regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x01aab0d6 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x01affd11 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x01c72322 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x01c836af vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x01a9654e usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x01ac9323 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01f19f1a firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x01e6696d ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x01f451fe register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x02054640 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0223acd3 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x022d5151 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x0220801c finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x0231d626 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x024233cd tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x024bfd15 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x026a4118 pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0x027e634f crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x02811e5d blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x02a5000a bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0x02a9d55d set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x025ceba5 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x026243e6 icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x026fe0c4 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02878aa4 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x028b294d ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x0295fc83 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x029ae854 usb_of_get_device_node EXPORT_SYMBOL_GPL vmlinux 0x02ab472f devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x02afbed7 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x02c0ec0b of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x02acf5fc rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x02b4872c sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x02bd45ea crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02d0d570 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x02dbfb8a tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x02e4566a apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x02f3d464 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x0301fa2a __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x03047a3e fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x030b1434 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x02e413b2 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x0307e92d ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x03116d8a __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x03148e05 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x032091c7 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x031dc530 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03224334 input_class -EXPORT_SYMBOL_GPL vmlinux 0x0330d779 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x03250eb4 rcu_trc_cmpxchg_need_qs EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0341d0e5 __folio_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0343c51b vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0x0343db07 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x0345628c usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features -EXPORT_SYMBOL_GPL vmlinux 0x0354926a thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x0354e860 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0358f022 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x035dc021 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0369a08e crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x036c1aec perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03762213 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x03821e56 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x03887a32 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03a73974 devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0x03a79cc0 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x03a84be8 of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x03ab269a gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x03ac4bdf blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0x03ba4240 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x03bab9bc put_device +EXPORT_SYMBOL_GPL vmlinux 0x03c07cec crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03cbd622 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x03c78f75 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x03c9ba98 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d8f6ca vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x03fc52d2 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x03fd3aeb vmf_insert_pfn_pmd EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0416b05c max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x0406313b devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x041e02a0 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x0423e33b wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read -EXPORT_SYMBOL_GPL vmlinux 0x04352e7b __traceiter_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x043afb97 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x0442b555 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x0442ddd9 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x04446371 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x04646ed9 edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0464a0bb da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x042e5f8f perf_report_aux_output_id EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x047288a2 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0472930a pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x04789521 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0x048242f6 wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0x048a36d0 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x0484a270 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048cfecc tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x048e1a1e switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x048f6de9 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x049a3d10 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x049d49f7 ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x049fbe01 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0x04b54ee6 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x04bddac6 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04d0cb42 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x04d2c021 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x04d686ce virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x04dee32f nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e727e2 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0x04f227e0 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x04f3b36d usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x050ed0e7 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x04e80c43 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x04f20c6c usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x04f34894 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x04f9dcb3 regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x051964a9 srp_attach_transport EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051a70d9 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x051d9596 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x052787ff wm831x_auxadc_read EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x053d2958 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x0541da83 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05530509 replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0x0555dd93 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x0558ab4a freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x055fa1d3 is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy EXPORT_SYMBOL_GPL vmlinux 0x05641ac2 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x056d5d1b rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x05669e7e devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x056e0868 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0584d724 fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058aa70a phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x05927f1d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x059a3170 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x05b55b1a power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x05bf1981 rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x05c34bc0 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x05be9023 pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0x05cf010b d_same_name -EXPORT_SYMBOL_GPL vmlinux 0x05d01e23 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x05d47b44 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x05df8b53 wakeup_source_remove -EXPORT_SYMBOL_GPL vmlinux 0x05f0204a hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x05f9abe5 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x060a76f2 crypto_clone_shash EXPORT_SYMBOL_GPL vmlinux 0x060e6ae7 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x060ed435 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x061455a8 pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x06126b82 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0624dbd8 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0624fb2a sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock EXPORT_SYMBOL_GPL vmlinux 0x062d117f __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x062e6f18 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0x063b5bb3 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x0643b777 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x06346fb5 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x0640406c da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry EXPORT_SYMBOL_GPL vmlinux 0x064dd2be devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x06565310 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x065ed99d virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x06648ef9 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x066fee17 regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0x06718589 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x067b89f2 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x067eef68 ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0x0681b3eb i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x0693c529 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x06a057d3 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0x06a11cea of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x06a76b1d pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x06c67dca raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x06b2d2a5 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x06b438a0 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x06c14fc5 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x06cac78f usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x06cb00c1 tc3589x_block_read EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cdec5b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x06d9d89a tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x06e178c7 nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0x06e415bc __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x06e74c80 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x06ec885d usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x06fe475e skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x07026004 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x07129c80 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x06e9272d pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0727de9e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x072c3e63 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0x073a0b2a dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x0738e1c0 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x0739ac67 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074917aa virtio_reset_device EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x07529837 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x076108f6 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x07627a32 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x075c82e3 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x07630c46 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x0771f4f0 __traceiter_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x07815c47 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x07892735 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0x078f343e gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x07a12dbd free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x07a14200 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x077d7270 thermal_cooling_device_update +EXPORT_SYMBOL_GPL vmlinux 0x078ed77c usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x07a4a7b1 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x07a78fe0 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07a921ca __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x07af7c59 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x07b02602 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x07b1a6ba wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b48a4c put_pid EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b8d364 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x07b6ff34 uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c07df4 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x07c1d8df dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x07c610a4 generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x07e62da5 decrementer_max -EXPORT_SYMBOL_GPL vmlinux 0x07e6f332 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x07e7b755 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x07ecb518 device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x07eed188 kvmppc_do_h_enter -EXPORT_SYMBOL_GPL vmlinux 0x08082983 dma_resv_set_deadline -EXPORT_SYMBOL_GPL vmlinux 0x08102c9a regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x07e8e999 eeh_pe_mark_isolated +EXPORT_SYMBOL_GPL vmlinux 0x07ed68ba iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x07f2270b shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x07f815a2 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x0804d8ff irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x080e0423 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x08124937 irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x08149bab mmc_prepare_busy_cmd -EXPORT_SYMBOL_GPL vmlinux 0x08265fc2 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0x083321c5 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x0833a5a3 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x083d58f9 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x085a239b kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x085b645a crypto_clone_ahash -EXPORT_SYMBOL_GPL vmlinux 0x085d7fed pnv_pci_get_slot_id -EXPORT_SYMBOL_GPL vmlinux 0x087dcd4d fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x081c2f5c regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x081d37c8 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x083ec79d tpm_send EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x088553ad sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0x08a29e44 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x08a3feb9 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x088bcd6e mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x08b1944f dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x08ba3cf1 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x08bdc5e5 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x08c13687 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08c981cf crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x08cb779e pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x08cc6c05 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x08d91181 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x08dc6f22 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x08e9c123 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x08d31ba2 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x08ef2550 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x08f441c9 gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x09058530 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x0910b75c of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x0908d7e6 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x0915a41f linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x091b32da devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091dedf3 device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x091f6a01 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x09207b2e sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x0921437d perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x09266a49 fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x094eb9bc ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x094975ca devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x094deb05 usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x09519d59 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0x096afcaf bio_split_rw -EXPORT_SYMBOL_GPL vmlinux 0x096ca2a0 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x09735350 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x09795908 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x097c90ff fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x0991f3fc regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0x09a7409f xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x09adb84b bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x09b22834 device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove EXPORT_SYMBOL_GPL vmlinux 0x09b5b2e8 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x09be8727 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x09d41b0e i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x09d7ab07 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x0a00a76b gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x0a043068 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x0a0bfe70 of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x0a14e3de bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x09b61a2c i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x09bf6135 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x09c1e8c3 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x09cd91ba sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x09df3c9f devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x09e11b4a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x09e28e4d ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x09e958ce pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x09e9d371 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x09f12281 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x0a00d59f pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x0a0bc9af wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0a123b97 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0a1e1ecb exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0a24381a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x0a2e3a00 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x0a41a37c hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a51a42c dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw EXPORT_SYMBOL_GPL vmlinux 0x0a5c52fb thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x0a607655 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x0a65e83f cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x0a67db9c tcp_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0x0a70ba1f iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x0a7491b1 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x0a7a266e usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x0a80dea1 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x0a88fd38 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x0a6ad4cb to_nd_region EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x0a8f7158 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x0a9df53d for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x0aa7dc8a kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x0aaa1dc7 kvmppc_save_user_regs -EXPORT_SYMBOL_GPL vmlinux 0x0ab375ca usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x0ab46e4b dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ab95fc5 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has -EXPORT_SYMBOL_GPL vmlinux 0x0acac01d tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x0aedd1e0 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x0af39f2f kvmppc_check_need_tlb_flush +EXPORT_SYMBOL_GPL vmlinux 0x0ac8d66a blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x0ae4608e dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x0af09b2d devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x0af923b8 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x0afe511b umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x0b02ab62 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x0b06175c __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0af79f7a kvmppc_inject_interrupt_hv EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b1ba150 ethtool_dev_mm_supported -EXPORT_SYMBOL_GPL vmlinux 0x0b2cfdad ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x0b07ba51 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x0b232913 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0b2a8104 serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b356fa5 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0x0b4067f6 nvmem_add_one_cell -EXPORT_SYMBOL_GPL vmlinux 0x0b424a8c devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b48959b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x0b31393f uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x0b394665 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x0b511b81 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x0b569518 skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b79de54 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x0b7e9e81 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x0b8b9519 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x0b6f0987 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x0b7fc9a5 ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b916bcc netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x0ba27e21 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x0ba70625 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x0bb97122 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bc26598 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x0bd3cba2 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x0bd89445 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x0bf15696 genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0bc4ea73 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0bd77227 pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0c01fce0 ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x0c0bdd67 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x0bf3f5cd rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x0c09dd3b pnv_pci_get_slot_id +EXPORT_SYMBOL_GPL vmlinux 0x0c1fa6f7 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x0c23b954 bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c330dd4 of_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset -EXPORT_SYMBOL_GPL vmlinux 0x0c42671b devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x0c62c594 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x0c62e75e pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x0c47911f regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x0c4b6470 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0c4e8c4a blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x0c5badf2 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0x0c654629 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x0c6dfc52 folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x0c728854 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x0c853fb8 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x0c7279a5 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0c7b2ae7 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c97a64c misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x0c980c5a ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c88ef07 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x0c90d923 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0c9b8720 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x0ca11819 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x0ca61f60 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0x0cac5f75 nop_posix_acl_access -EXPORT_SYMBOL_GPL vmlinux 0x0cb8a73b debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x0cb9ec26 blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x0cbd36e5 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0cbd5f3a watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x0ca8e306 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x0ca9c84f crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc7a2a6 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x0cc9c25c devm_phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0cca5ed0 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0cd3b051 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize -EXPORT_SYMBOL_GPL vmlinux 0x0cf1229a pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0x0cfe3724 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d10ba5f cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x0d125ab6 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x0d18ba89 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x0d1e538a pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x0d32a52d vcap_alloc_rule EXPORT_SYMBOL_GPL vmlinux 0x0d389db7 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0d396f9e fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x0d3a593f regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x0d3b6f96 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports EXPORT_SYMBOL_GPL vmlinux 0x0d435bd5 __tracepoint_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d49cf97 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x0d560cf8 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x0d546b21 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x0d5cbb4a class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d6927c3 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d71c82d ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x0d72f427 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d75efa9 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x0d76f425 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x0d8bd6d4 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x0d8c9027 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x0d8e5a30 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x0da543f3 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x0db68046 hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x0db83d27 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0x0dbad10f devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0dbb4733 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x0dc1b1b4 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0dc95d6c mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x0d731493 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x0d76d3e6 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x0d86bdc0 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x0d9bea51 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x0d9f233a pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x0da6b8b6 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0dc1dec1 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x0dcf2f3b register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x0dd2ce45 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x0dd701e8 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x0dd9d583 crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddc60bd devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x0dde58b9 srp_release_transport EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core -EXPORT_SYMBOL_GPL vmlinux 0x0de3ddfa devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x0debf829 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x0ded36b0 debugfs_create_devm_seqfile EXPORT_SYMBOL_GPL vmlinux 0x0df033ef dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x0e03aa0c input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x0e066c5e crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x0df0891a regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x0df8c2e3 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x0dff6745 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x0e0a168b btree_insert EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0x0e18336a watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x0e0f63ce of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x0e10adfe put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x0e111ef1 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x0e19939c rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x0e1f08df of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0e23f66b edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e25400c gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x0e28c417 mas_store_prealloc -EXPORT_SYMBOL_GPL vmlinux 0x0e2e58a1 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x0e31c277 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x0e45821b devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x0e542939 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x0e548c02 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0e5ba45b usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e5e99a5 devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e7f38ba mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0x0e8e108a udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0e932e55 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0e6e0ac1 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x0e7446f8 irq_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x0e751c52 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x0e8ab690 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x0ec6828f sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x0ecfae26 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0ea67b5a xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x0eb89836 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x0ec5cff7 __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0eda46cb usb_string +EXPORT_SYMBOL_GPL vmlinux 0x0ee16614 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr -EXPORT_SYMBOL_GPL vmlinux 0x0ef49e78 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x0efe1d1f dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0x0f097e24 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x0f0ba13f inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x0f0bc386 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x0f160ddb pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x0f1181b2 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f352d37 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0f4cecdd kvmppc_inject_interrupt_hv +EXPORT_SYMBOL_GPL vmlinux 0x0f1cf70f rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0f2dcd95 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x0f3bccf5 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x0f4d91b5 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0f4ed42b regulator_bulk_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x0f571ab2 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0f63a2b7 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f687b53 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x0f6e2294 mt_next -EXPORT_SYMBOL_GPL vmlinux 0x0f7c895f vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x0f859381 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x0f95d5e1 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x0f8aedd1 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f8bdd81 pci_p2pmem_find_many EXPORT_SYMBOL_GPL vmlinux 0x0f961789 alloc_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x0fb25208 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align -EXPORT_SYMBOL_GPL vmlinux 0x0fbf4e45 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x0fc1ffa6 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0x0fc95b7b ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x0fcfb7db sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0fbbfe04 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x0fc07677 of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0x0fc7aa90 pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fe2a120 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x0fed69fa gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x0ff63150 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0fdc4ce5 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x0fdda512 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x0ff7fc61 thermal_zone_get_trip -EXPORT_SYMBOL_GPL vmlinux 0x0fff967c dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x10086f07 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1014bc1d synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x10156c34 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0x10185973 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x101c3916 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x102473ee srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x103efc66 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x102a6f4d crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x10314eb0 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x10318efc crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x103b9aba copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x1043dcee pinmux_generic_get_function EXPORT_SYMBOL_GPL vmlinux 0x104a5fee hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x104d8739 usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x105018f2 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x106fa32b pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1083639c devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x107e0087 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x107e8e10 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x107f221f serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x10837ad9 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x10897b06 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x108c0186 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x1098370e tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x10a06eed dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x10a8cedb devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1092e013 kvmppc_h_read +EXPORT_SYMBOL_GPL vmlinux 0x109b20d1 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x10b77a09 kvmppc_p9_enter_guest EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10b9da16 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x10d29716 of_platform_depopulate EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10e3c417 flush_fp_to_thread EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f6c1c4 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x10f97e6a __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x110fa4bd input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x11003acc fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x110309b2 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x110ff30d rt288x_setup EXPORT_SYMBOL_GPL vmlinux 0x1113c6fb power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states -EXPORT_SYMBOL_GPL vmlinux 0x11235e3f wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x113af05e pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x115d78ad dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x1124239e ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x11293f92 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x112e38a7 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x113b220a pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x113cf8f7 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x1150a30c dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x1166c35e sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x116d96ba devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x117a2c00 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x11833a19 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x11883dfc pin_get_name EXPORT_SYMBOL_GPL vmlinux 0x118b539e blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0x118fd5aa regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x1191fec9 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x1199ae43 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x119ca59a tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x11aef374 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x1190e03f tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x11ab00a9 vcap_tc_flower_handler_portnum_usage +EXPORT_SYMBOL_GPL vmlinux 0x11abd2f8 ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0x11b68a56 __tracepoint_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x11ba59d6 rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0x11c75978 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x11da3d59 vp_legacy_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x11dae9db fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x11c94cce irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x11cf49e7 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x11d56c13 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x11d85e65 devlink_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11e2c6de rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x11e31465 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x11e770b4 pci_ims_alloc_irq -EXPORT_SYMBOL_GPL vmlinux 0x11f6d7ec ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x11fa01f8 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x12134f5a clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x11f92bc0 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x12124d15 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121fd34d nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0x122ce299 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x122d92f6 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x12513310 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x12580346 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x125cacbe virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x12668737 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x12721842 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x123ba150 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x124bc625 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x1252f854 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x126057ec nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x1265496b pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x126e8b03 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x1274651f filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x127af1d9 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x1285fd53 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x1286bdb2 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x12a6128d tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x12a65911 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x12b13503 __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x12c20034 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x12a91c1b __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x12aaad6f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x12bacec2 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x12bc4da9 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x12c79f22 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x12e47516 metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x12e5ef0c rtas_set_power_level -EXPORT_SYMBOL_GPL vmlinux 0x12ed2deb vas_register_api_powernv EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x13109227 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x13177ddf devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x12f31b48 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x13070e92 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x130aaa8f sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq EXPORT_SYMBOL_GPL vmlinux 0x13316638 of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x133360db usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134cdae1 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1356fc70 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x13603365 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x13469dff gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x1364d237 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x1376982c __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x137d3441 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x137e55f8 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x137d3c8e au_platform_setup EXPORT_SYMBOL_GPL vmlinux 0x137e955c iommu_tce_table_put -EXPORT_SYMBOL_GPL vmlinux 0x13810c4c rio_del_device -EXPORT_SYMBOL_GPL vmlinux 0x1383e218 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x1383113a proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x13852df7 clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x138f25ac blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x13935b2e add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x13ab2175 static_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x13ae6346 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x13af8f0a get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x13c5affc tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x13c72807 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x139a078e sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x139f4645 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x13adb8f7 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x13b6b2f6 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x13c4a21b ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x13cd40ee usb_put_dev EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x13d2337c unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x13e2005a fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x13e08866 pnv_ocxl_map_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x13e32f89 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x13e97a3a dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f12bf8 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x13f71290 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14108f9b metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1414f084 phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x1415ddf5 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14244fd8 inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0x14448706 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x14476ad6 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x145192d4 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x145ca261 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x14612983 i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x1469d825 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x146b4bf4 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x14498636 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x144d6ccb dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x1456b786 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x1461dc3f pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x1476604e device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x1496fd71 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x14998e9a rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x149b6884 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x146f435b __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1478062f __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x147d3afe blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x14840a9c fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x149ee49b dma_resv_get_singleton EXPORT_SYMBOL_GPL vmlinux 0x14a50174 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x14ae2d7f fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x14bf9c2b pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x14a65c52 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x14c74104 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x14cd7523 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x14fa5716 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x14dfd564 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x14e8f1ef devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x14fbcd5e __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x1501a1bf led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x150438cd devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x150480ff spi_async -EXPORT_SYMBOL_GPL vmlinux 0x150ee6d1 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1533d58d fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x1533ff55 eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x1502927d devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x15246410 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x152d9378 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0x1538a940 copro_flush_all_slbs EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x1543a016 dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x1562339f iommu_flush_tce -EXPORT_SYMBOL_GPL vmlinux 0x1565af95 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x1567a3a3 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x156a4fd7 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x15971ee6 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0x159871c7 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x159516a8 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x15a0069d iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x15a0b25c __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x15aa1710 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15bd098b irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x15ae4d29 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x15af7726 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x15b435e9 blkg_rwstat_recursive_sum EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0x15d43987 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x15d8b300 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x15db74dd debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15eb029f iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x15f1d772 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x15f3cdef bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x15ff67ff tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x15f2c29d devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x15fb3ca8 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0x160bd45c rtas_token -EXPORT_SYMBOL_GPL vmlinux 0x160ef683 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x1612c6ba clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1616145f scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x161ba184 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x161feee3 ata_pci_device_do_resume -EXPORT_SYMBOL_GPL vmlinux 0x1623123d __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x16286565 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x162bf1e3 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x16121318 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x1612b4d1 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x1617eea7 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x16274845 irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x16369a27 xive_native_sync_queue -EXPORT_SYMBOL_GPL vmlinux 0x1636fa6d dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x163d7edc register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x165ce296 __dev_fwnode_const -EXPORT_SYMBOL_GPL vmlinux 0x165f0d8b __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x1664bb91 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x16759d5e ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x1643c69d devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x16497750 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x164cbd0a xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x16645e23 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x1676b7b6 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x1678bbc9 blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1695dd36 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x16a6103f tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x16adacc2 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x16b166bd dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x16b5b0a8 sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x16c5ec08 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x16c7cc57 hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0x16d2855d __wake_up_locked EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e19928 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x16e49a67 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x16fa64d3 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x16fdf586 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x170468d3 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x170dc334 crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x171874b2 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x174046ff icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x1743a5a4 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1730ff51 class_create +EXPORT_SYMBOL_GPL vmlinux 0x17346155 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x17493858 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x174f0979 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x174fba10 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x175b4436 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1761b0c5 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x177ac2c7 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1767d130 spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x177b1042 __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x177d8876 pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0x17832188 make_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x179f1d23 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x17a42d66 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x178a5ef2 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x17a45f50 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x17a9fa32 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x17ad72d4 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x17aeb33c xdp_set_features_flag EXPORT_SYMBOL_GPL vmlinux 0x17b69c2a transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x17bb1de5 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x17c268be extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x17bd9bb3 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id -EXPORT_SYMBOL_GPL vmlinux 0x17c724c8 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x17e50dec phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x17ea37d4 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x17f34dbc regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x17f82a6e fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x17f91401 eeh_pe_inject_err EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x181065f8 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x1811b5db cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x18188e81 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1801498d crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x18122895 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x18194bf9 xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0x181d3885 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x18283636 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x182b91f9 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x182dd506 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x183cda79 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x183f1224 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x1846dee7 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x18494e01 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x18602712 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x186e9837 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x187c774f led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0x187f5c2e pinctrl_utils_free_map EXPORT_SYMBOL_GPL vmlinux 0x187f74bd devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x18a33c4e blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x18a9777e get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x188e5912 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x18991cc0 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x18ac8fc3 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x18ae1b33 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x18b1dcef pci_intx EXPORT_SYMBOL_GPL vmlinux 0x18b50ebe kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x18d57717 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x18b57ee7 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg EXPORT_SYMBOL_GPL vmlinux 0x18e88b8d led_get +EXPORT_SYMBOL_GPL vmlinux 0x18eb8f01 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x18edb9d7 inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0x18f1deea clk_hw_determine_rate_no_reparent +EXPORT_SYMBOL_GPL vmlinux 0x18f67f52 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL vmlinux 0x19106f2a au_platform_setup -EXPORT_SYMBOL_GPL vmlinux 0x191fc715 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x1924598e perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x1928dcd1 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x1929f84c crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x193220d1 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x19233082 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x19261f6c clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x19311016 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x193918f4 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x193e8d71 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x19436fdc pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x194e1f61 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x1953b052 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x196eab4d regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x1956a009 edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init -EXPORT_SYMBOL_GPL vmlinux 0x197be0bb wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1986fda0 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x19770310 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x1990228b kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0x199193af bdev_nr_zones EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19ad3cb8 __irq_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x19b5dcb8 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x19b8a803 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x19a4b133 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x19a59a57 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x19c15eb0 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19cf91e7 component_add -EXPORT_SYMBOL_GPL vmlinux 0x19d62bc7 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19c9af99 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x19cb3a27 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x19cc4f2a iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x19cc928b mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x19d93f6d __irq_apply_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0x19dab35b ftrace_set_filter_ips -EXPORT_SYMBOL_GPL vmlinux 0x19e162a4 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ecff7c of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x19ef2f78 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x1a0a2f68 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a38d45a led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x1a3a1b25 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x1a3a4c97 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x1a3b70d5 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x1a5e638f ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x1a6716fd skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x1a6af678 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x1a1f10df of_console_check EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x1a8f081f dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x1a8f0f88 pnv_ocxl_get_actag -EXPORT_SYMBOL_GPL vmlinux 0x1a9550a7 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x1a834e84 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x1a8e5f11 serial8250_clear_and_reinit_fifos EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1aa555d1 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x1aa7a185 __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x1aaadeac sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x1ab2d415 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x1ab995b6 usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0x1ac18dac pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x1ac7163e of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x1acb9bf4 blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad32cf1 get_device -EXPORT_SYMBOL_GPL vmlinux 0x1ad8769a usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1ae837f9 netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x1ae84350 arch_smp_send_reschedule -EXPORT_SYMBOL_GPL vmlinux 0x1aec4c9e fsverity_verify_blocks -EXPORT_SYMBOL_GPL vmlinux 0x1af1e17b tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b0aa2f3 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0x1b14f4ad __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x1b175d9f gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x1b199458 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x1b1e5640 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x1b291d49 __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x1b2d9a22 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x1b2ebd5d tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x1b320af7 pnv_pci_get_presence_state -EXPORT_SYMBOL_GPL vmlinux 0x1b480fb5 of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x1b560eb9 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x1b34feba platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x1b41ec0e ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x1b5cb82d pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x1b5e9387 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x1b639ddb device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1b676b0e usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x1b67bd78 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1b6a150b sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x1b6f997b tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x1b6fef32 regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0x1b739ef5 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1b745429 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x1b85ae3b ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x1b87bd8f relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x1b748582 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x1b850532 key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8909b9 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x1b89e575 rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context -EXPORT_SYMBOL_GPL vmlinux 0x1b978107 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x1b98a02a set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x1ba0fe35 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x1bacd48b perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x1bba7202 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x1bbd0534 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x1b9f0c10 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x1bb099a6 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x1bb556da usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x1bba2615 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x1bc8924d of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x1bcede46 thermal_zone_get_crit_temp -EXPORT_SYMBOL_GPL vmlinux 0x1bd9fe7c rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x1bde0ca8 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x1be07f71 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x1bf95769 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x1bfcf1bd rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x1c1dd6fb blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x1c25a5bf irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x1c273b2c inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x1c2e93a2 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0x1c33b582 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1c3f484f of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x1bca7f4f usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x1be1c4e3 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1be69d9d pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x1bfe58f3 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x1c076917 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1c333d28 failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c54588f tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5fd40c xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase EXPORT_SYMBOL_GPL vmlinux 0x1c62e34d opal_get_sensor_data -EXPORT_SYMBOL_GPL vmlinux 0x1c6ce8c1 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree -EXPORT_SYMBOL_GPL vmlinux 0x1c77036a debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x1c7cb7c7 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x1c75a18d __io_uring_cmd_do_in_task +EXPORT_SYMBOL_GPL vmlinux 0x1c788a87 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x1c7d5f42 class_find_device EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c85e9ea sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8a0a94 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store -EXPORT_SYMBOL_GPL vmlinux 0x1c95492d skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x1ca3280a usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1c8f6df0 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x1ca8a3f7 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0x1cb69569 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x1cba35d8 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cc73b96 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x1cd1f9dd pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x1cc36b29 vas_register_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0x1cd3c59d dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x1cd954e1 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1ce4a5d3 of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x1ce5ba2f register_kprobe EXPORT_SYMBOL_GPL vmlinux 0x1cef3226 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0x1cf74705 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x1cfcf7f6 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x1d025965 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1d0df32b irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x1d11ec5b power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x1d1b5d2a mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x1d175816 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2ac40e __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x1d39fde3 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x1d47f8e0 usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x1d4a40d2 devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x1d4c7940 iommu_tce_kill -EXPORT_SYMBOL_GPL vmlinux 0x1d517ce7 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x1d539d69 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x1d626e4e ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x1d67e235 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x1d718e34 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x1d4cf67d bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0x1d73012d kvmppc_update_dirty_map -EXPORT_SYMBOL_GPL vmlinux 0x1d85bd11 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x1d8a1a52 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x1d956161 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x1da07998 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x1da12f0a pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x1db3f304 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x1dc84cc0 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x1dcefa83 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x1dd19b93 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x1ddc0acb phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x1de00afb devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x1de0e069 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x1def3600 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1d868af7 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1d951fef device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1db31874 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x1dc01508 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1dc659d4 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x1dc69d4d lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x1ddda1c9 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfacd81 ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x1e002904 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release EXPORT_SYMBOL_GPL vmlinux 0x1e0b560e __thermal_zone_get_trip EXPORT_SYMBOL_GPL vmlinux 0x1e0cf235 opal_get_sensor_data_u64 -EXPORT_SYMBOL_GPL vmlinux 0x1e32476b crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1e0d4335 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e13c5d5 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1e2f0cfc pm_clk_suspend EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4d06de virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x1e52320d trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e55e8ab thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x1e75ab0f devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x1e6d39f6 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x1e6db5c9 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e86307c dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x1e86e4b0 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x1e892fcf ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1e8eb717 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e923c72 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1e9647d5 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e993cd9 vring_del_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1e9fd1ca ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1ea03a51 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x1ea18698 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x1ea56cfd kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x1ea8c2a9 devm_register_power_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x1ea8ca4e dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x1eab4323 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x1eb3d7fc devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x1eb6c321 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x1eb92f4d crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebc2320 crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x1ebd70a2 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ecacd5d get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x1ecc8283 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed77a40 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x1ed6032b of_dma_request_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x1edac5c3 xive_native_enable_vp +EXPORT_SYMBOL_GPL vmlinux 0x1ee42958 crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr -EXPORT_SYMBOL_GPL vmlinux 0x1eea7372 devl_traps_register EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1efb137a pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0x1f050e36 pnv_pci_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x1f0b7692 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x1f08e39e genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1f195ae4 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x1f2b2e94 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3cbfa5 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f44cb31 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1f506d07 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f67ec1f pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x1f729bca dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x1f5e5ca4 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x1f6bb2fd pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x1f7e0b95 devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8e4826 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x1f8ed628 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x1f989e9f spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0x1f9aadaa tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x1f9b9db4 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x1f9e4af4 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1f892f99 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x1f9e7470 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x1fa060f1 stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fc7177b pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x1fc7e6f3 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1fab1adc mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x1fca434d usb_enable_ltm EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe71656 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x1ff2f3e0 __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x1ff3fd20 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x1fffb6d6 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2003adc5 tty_port_install EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2013a174 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x20187f04 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x20188823 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x2018ae6f vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x2018e79a da903x_reads EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2042fda8 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x2046b834 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x2048757b wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x204c62bb devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x20507cbc regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x2063c49c irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x207c9ac1 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x208c7d93 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x209d0b7f net_failover_create -EXPORT_SYMBOL_GPL vmlinux 0x209e3628 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x20a3b60a bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x20451ae8 __fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x208f3746 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x2092c7fc edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20b2c127 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x20b4d6b8 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x20b7a1d0 unregister_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x20be2bff mmc_pwrseq_unregister -EXPORT_SYMBOL_GPL vmlinux 0x20d34b13 backing_file_open -EXPORT_SYMBOL_GPL vmlinux 0x20d83453 of_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x20ecbccf serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x20fa3662 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x20ffd1d0 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x20b557ed crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x20e15096 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x20e680eb rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x20ed1a15 devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x21082054 mas_find_range -EXPORT_SYMBOL_GPL vmlinux 0x210db965 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0x210e8a8e regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x2117a83f devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask -EXPORT_SYMBOL_GPL vmlinux 0x211b809a dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0x211ca385 fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x21218e74 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x211ba1b2 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x211fe9b1 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy EXPORT_SYMBOL_GPL vmlinux 0x2127f51f rtas_function_token -EXPORT_SYMBOL_GPL vmlinux 0x212e8637 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x212c6844 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x21385152 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x2139d31a regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x213d307a __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x2153a531 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x215a491a ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x2162681f debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2174d6f4 bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x21813880 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x2181c088 srp_rport_del -EXPORT_SYMBOL_GPL vmlinux 0x21831ad7 devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x2188a2e9 mas_find -EXPORT_SYMBOL_GPL vmlinux 0x218a8dc8 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x219ba8d0 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x21966219 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x2196665b regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x2197f38e virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x219e42b1 xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a68203 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x21ad9631 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x21ade1e5 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x21a8a539 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x21c00be5 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x21c9efac of_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d82a1b rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x21da828e regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x21df2c98 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x21f93334 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x2204f932 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x220aee58 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x221838fe i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x21d245a2 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x21d57cfc iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x21dc529f xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x21e3b61b to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0x22265285 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x22580e0c devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x225e66f2 vcap_find_keystream_keysets -EXPORT_SYMBOL_GPL vmlinux 0x2260782d ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x2275b259 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x228cceab tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x22915312 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x229ab029 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x22a6d049 nfs_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x22b543ff page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x2237013d phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x223ec441 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x22540af9 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x22546be9 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x22559711 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x22646322 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x2264adf2 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x226662ea rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x227ff5ec pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x2288473c fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x228d434f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x229d51b6 regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0x22bab715 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x22c13cfc irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x22d2fce5 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22ef933e blk_mq_end_request_batch -EXPORT_SYMBOL_GPL vmlinux 0x22f3789b iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x22f7b746 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x22ddea91 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x22eb1317 param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x22ff2f99 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x231405c3 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x2325a784 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x230debe3 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x230f5abc __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x23111a4f get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x2312a474 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x231306f6 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x232b09e0 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x232fc1a4 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x23311b6c usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x233feff1 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x234305da generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x2347cdcc nvmem_layout_unregister EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2357562f sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x23581842 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x235aaaca strp_init -EXPORT_SYMBOL_GPL vmlinux 0x23631a98 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x23516987 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x236d595b blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238f0f71 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x239198c8 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x23955845 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x239dcd7a fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x239eccf0 platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0x23a0a9b7 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x23c0f7e4 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x23a0eea7 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x23a8beab fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x23ce8686 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x23e1d8c6 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x23ec4e1b usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x23facc6f crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x2404f151 of_pse_control_get -EXPORT_SYMBOL_GPL vmlinux 0x240cbc3d devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x23d2bf98 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x23d9b2ab shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x23e2e7e2 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x23f53a77 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x24054bfb serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x24099794 of_usb_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x2445066e syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x2479b8ff gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x24274bd0 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x245043a2 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x24594da8 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x24778cb6 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x247a8fff rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x2481032c dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x24852826 __SCK__tp_func_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x24982984 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0x249dfd21 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x24a0ee8b inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0x24a5dddb devm_clk_get_prepared EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry -EXPORT_SYMBOL_GPL vmlinux 0x24bbc3aa irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x24bdd384 usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x24c44a06 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x24c93f49 serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x24d5a96e __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x24bbc2e4 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x24c1bc20 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x24cce8d3 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x24d14fd8 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24d488d7 vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24de6e54 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x24e58b8c net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x24e7bf99 usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24ecb936 rhashtable_walk_exit EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x250501b8 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x250d6d7e of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0x251b8ab3 raw_v6_hashinfo EXPORT_SYMBOL_GPL vmlinux 0x252151d4 kvmppc_save_current_sprs -EXPORT_SYMBOL_GPL vmlinux 0x252aa381 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem -EXPORT_SYMBOL_GPL vmlinux 0x253489e3 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x25337410 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x253460cd dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x253c8659 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0x25475091 tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2547bcff device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x254f968b devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x25389a3d isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x2539926e iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x254ddd4c regmap_field_test_bits EXPORT_SYMBOL_GPL vmlinux 0x25588ba4 devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x2558b7c4 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr -EXPORT_SYMBOL_GPL vmlinux 0x256a3db8 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x25700ec8 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x25854fb9 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x25892efc perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x256c5189 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x2577ede2 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x257e3d1d serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0x258bb54b ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x258d1556 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x2591b621 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x259564eb __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x25977c5a usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x259be502 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x259dc0f8 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x25a29e85 fuse_dev_install EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs EXPORT_SYMBOL_GPL vmlinux 0x25dd007e badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x25efd336 dev_pm_opp_get_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x25fe0fd4 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x26173d89 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x260bec5e blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0x260faf89 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x260ffd5e __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x2616ee8a posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x261ad35c badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0x2621e6aa eeh_dev_check_failure -EXPORT_SYMBOL_GPL vmlinux 0x2637f4a9 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x263b8f49 of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x2640313e blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x263b954c input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x264e030f mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x265081f2 ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded EXPORT_SYMBOL_GPL vmlinux 0x265c0fb5 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x265cd0c5 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x2664be53 crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x26758d58 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x267941b3 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x267d6b47 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x267cbed2 mbox_bind_client EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x268f22fd __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x26913940 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x26918054 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x269f7adb bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x26a047d7 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26a30287 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x26a3c472 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x26a4eb78 edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x26a9e8bd skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x269e2eec xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26adbc94 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x26b3e568 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x26bd5d1a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x26addb42 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x26be73c0 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x26c44a3b __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26da43f4 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x26df0229 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x26e4e7b9 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x26d5bd57 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x26d654e6 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x26d787c6 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x26d7a4a7 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0x26d84529 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x26dc26ca sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f6a9c4 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x26f7e8a1 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x26fb3372 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x27091ea3 wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x270d7d5b vfs_get_acl -EXPORT_SYMBOL_GPL vmlinux 0x271ff8ac serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26fe5dc6 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x27024f84 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x2730345a destroy_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x2756ac32 phy_get_rate_matching -EXPORT_SYMBOL_GPL vmlinux 0x27590db9 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x273c1563 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x2744d47e rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x2752a291 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x275b7455 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x27607fb3 devm_register_power_off_handler EXPORT_SYMBOL_GPL vmlinux 0x27617e12 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x2766579e relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x276eda80 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x277f52b5 pcibios_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x27823e66 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x278c808b blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x278f6b40 raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x27900c9c edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x279446dd vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x279488b6 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x27830573 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x27865986 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x278b643b mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x2795fc9d vcap_set_rule_set_actionset EXPORT_SYMBOL_GPL vmlinux 0x279ade24 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x27a1a054 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x27a70dcb debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0x27a79eab __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x27bc01c3 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x27bdc242 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x27a91c6f dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x27bb78f4 devm_rtc_allocate_device EXPORT_SYMBOL_GPL vmlinux 0x27c49fbb mas_erase EXPORT_SYMBOL_GPL vmlinux 0x27ce3ec0 cpu_latency_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x27e418cf fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x27e5701f rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x27e7f231 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f7216c __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fb1f64 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x280427ba register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x280512b1 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x28084aa3 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x28217164 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0x282b3f94 __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2832cf7e spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x28385876 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x2843482c fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x28488ce7 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x28500cfb tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x285a0876 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x2835c388 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x28492e95 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x2853412d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x285ab631 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x28615fe7 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x286494cf devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2866fcb8 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288356fd __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x28907a52 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2896d522 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x28a8f935 usb_anchor_suspend_wakeups EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b1f604 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x28c453a0 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x28b9b090 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x28c3385c pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x28c8a3db mmu_psize_defs -EXPORT_SYMBOL_GPL vmlinux 0x28f5c787 pinctrl_pm_select_sleep_state -EXPORT_SYMBOL_GPL vmlinux 0x28f61feb xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x28cbd44e debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x28da7cb3 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28dc83ef irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0x28faf009 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x290bfb09 cxl_afu_get -EXPORT_SYMBOL_GPL vmlinux 0x290df9b2 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x290d3fff dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x29105201 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x2917bcde spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x2929336c of_irq_to_resource EXPORT_SYMBOL_GPL vmlinux 0x292ca22c sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x29302587 devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x29329ea5 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x293336a0 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x293d3033 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state -EXPORT_SYMBOL_GPL vmlinux 0x2942f56b devm_hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0x294f4874 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x2956e57c cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x296e6532 i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x29731e6e pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x297447ba cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x2978315a load_vcpu_state -EXPORT_SYMBOL_GPL vmlinux 0x2987f36c icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x298dab1a rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x2953e1db ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x2965ac78 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x296ddbcf dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x297105d4 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x29873be5 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x298e9b46 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page -EXPORT_SYMBOL_GPL vmlinux 0x29bde2ca mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0x29e296ff of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x29b15772 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x29b48b59 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x29b5cd7d devl_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x29c05cbb rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x29d0a7b0 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x29d1b543 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x29d423d9 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x29d923b9 vas_tx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x29db7307 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x29e57bd4 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29ed2afb serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x29fa0762 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x2a241ba7 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x29f4383d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x2a0f61bd stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a0ffd98 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x2a2cbe63 extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms +EXPORT_SYMBOL_GPL vmlinux 0x2a31a1e2 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x2a336698 opal_rtc_write -EXPORT_SYMBOL_GPL vmlinux 0x2a33ec9e pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x2a340310 hte_push_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x2a47c99d spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x2a374811 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x2a3cfdab pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x2a4080ec of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2a454ba2 kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0x2a4d881d devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a536ae5 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a65b5b1 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2a633c53 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a931b0a pci_p2pmem_publish -EXPORT_SYMBOL_GPL vmlinux 0x2a96e8db ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2a7d9bdd devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2aa4e735 tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x2ad1bf63 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x2ae6424d get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x2af9e3fc pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x2b016f31 msi_lock_descs -EXPORT_SYMBOL_GPL vmlinux 0x2b03deac modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2a9ead2a fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x2aa42e4f platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x2ab94851 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2ada9de2 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x2aef6c52 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x2af4a84b blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x2b16c5fa sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue +EXPORT_SYMBOL_GPL vmlinux 0x2b22e22f skb_morph EXPORT_SYMBOL_GPL vmlinux 0x2b289cab samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x2b2b5ce4 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2b3cd76e mmc_prepare_busy_cmd EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4a8fdf regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x2b4f3b16 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x2b4e2974 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x2b505ef2 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x2b529cdd skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b64ba30 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x2b67d590 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b739889 vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0x2b7ca95d sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x2b83f6c0 rio_add_device -EXPORT_SYMBOL_GPL vmlinux 0x2b84e2df of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x2b9d3c3b fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x2ba5a82b nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2b7f8a49 devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x2bb9095f radix__flush_pwc_lpid -EXPORT_SYMBOL_GPL vmlinux 0x2bc1c8a2 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x2bd462ef __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x2bd73a75 device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bd9b23a iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2be5f343 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x2beaa9d0 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x2bfdb31c clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x2bf2ade4 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x2c035711 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x2c08fbb5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x2c09ce14 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c234cd8 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x2c3016d2 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x2c23ad03 devl_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x2c2abc6b of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x2c2e9c17 crypto_akcipher_sync_decrypt EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c30e6c8 xdp_master_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2c33aa23 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x2c3654b8 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x2c370909 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2c3cbc9d pnv_ocxl_get_tl_cap +EXPORT_SYMBOL_GPL vmlinux 0x2c448b00 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x2c451c16 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x2c4a311c driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x2c560f08 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x2c565acf akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2c4f3782 io_uring_cmd_sock +EXPORT_SYMBOL_GPL vmlinux 0x2c579fca set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x2c5e0e81 bus_get_dev_root -EXPORT_SYMBOL_GPL vmlinux 0x2c62bdc6 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x2c5e67da edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x2c633169 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6713d3 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x2c72d74f __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x2c7da0a5 irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c83cce5 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x2c848fe0 mas_store_gfp EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c8f3d6e bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x2c906620 fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x2c90ca1e power_supply_class EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2cacd766 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x2ca061e5 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x2ca60b27 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0x2caed6db ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2cbdda29 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x2cb6abb9 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x2ccb56cb __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x2ccd45d2 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated -EXPORT_SYMBOL_GPL vmlinux 0x2cd8fd6f mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2cff025b ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x2ce9d109 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x2cf60208 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x2cf96b7b mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x2cfbcf91 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2d0443c9 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x2d06f8ac debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2d0dd4d8 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x2d1225a5 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2d12ff45 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2d16632b pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait EXPORT_SYMBOL_GPL vmlinux 0x2d1b1e7b inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x2d2d7fea __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d40baa4 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x2d344e95 crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4bdcfe da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0x2d4db905 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x2d4f215d filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0x2d4fef75 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x2d523888 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x2d57a480 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d63c1d2 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x2d8ded5a __traceiter_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x2d91f80b device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x2d955c39 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x2d7bf05c __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2d893274 spi_transfer_cs_change_delay_exec EXPORT_SYMBOL_GPL vmlinux 0x2d99f503 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2db4b620 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x2dc99d10 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x2dcf2a32 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x2dd10455 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x2da89ad3 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x2dac8c56 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x2dc606b9 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x2dd5f785 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x2dde8179 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x2ded7599 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x2df1d419 blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0x2df63f5a __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x2dfafa27 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2dfb9b84 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x2e0256ce rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e035bb5 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0x2e1fb0dd register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x2e06341f perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x2e14dae8 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x2e210714 dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e267767 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x2e3925f5 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x2e41bc2e device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x2e4ab5ad cpu_remove_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0x2e52764b devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x2e5645dd fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2e24d51b of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x2e3b8cc9 genphy_c45_plca_get_status EXPORT_SYMBOL_GPL vmlinux 0x2e59822f irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x2e5b3266 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2e613cbb fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e683cec bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x2e7243e0 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e70a2ad trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing -EXPORT_SYMBOL_GPL vmlinux 0x2e7aa379 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x2e859071 fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x2e8b428f ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2e8fcd31 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x2ea5cade of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x2e7b6e28 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2e7f81e0 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2e9ac74e usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x2eb5f7aa power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebea855 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x2ec8aabf of_prop_next_u32 EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array -EXPORT_SYMBOL_GPL vmlinux 0x2ecc2aa1 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x2edaca6a fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2eec9248 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x2ef5859a device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x2eff0543 mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x2f001389 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x2ed7c5f4 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x2edab614 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x2ef7cc1a devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x2f08be39 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string EXPORT_SYMBOL_GPL vmlinux 0x2f0daf01 __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x2f0dd718 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f2cc3ba wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0x2f41055b debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x2f42479e ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x2f2f106d ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f32e1bc strp_init +EXPORT_SYMBOL_GPL vmlinux 0x2f364b21 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x2f391ba9 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x2f40fb81 folio_invalidate EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f562fe5 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x2f69dc98 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x2f7d2687 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x2f8374e5 irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0x2f8a626b rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x2f8adccf blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x2f92fd1f crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x2f933b63 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x2f965045 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x2fa4bcd4 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x2f503e82 of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x2f57add6 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x2f5901dc remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x2f6dca28 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x2f6f0e34 usb_set_wireless_status +EXPORT_SYMBOL_GPL vmlinux 0x2f7b7ae8 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x2f998ed6 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x2fa3fb52 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fa6de79 devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x2fae96de rtas_data_buf_lock -EXPORT_SYMBOL_GPL vmlinux 0x2fb4e81b posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x2fbbcf46 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2fc0c213 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fda65d3 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x2fe5d73f add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x2fd65fd7 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x2fe77a4c pci_epc_linkdown EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3007203a folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3003357e xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x3005c330 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features -EXPORT_SYMBOL_GPL vmlinux 0x3012d1e4 mmput_async EXPORT_SYMBOL_GPL vmlinux 0x30178255 __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x30256b8e vcap_lookup_rule_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0x30275efe __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x302f71f9 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0x30309989 extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3045269f ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x304a018d blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x304aa910 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x30272f57 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x3043715f bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3069b421 devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0x3078df82 tpm_chip_bootstrap -EXPORT_SYMBOL_GPL vmlinux 0x307c6316 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x307798bc is_xive_irq EXPORT_SYMBOL_GPL vmlinux 0x307eccf9 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0x3080ef22 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x3087a543 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x3089fe26 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x308aef19 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x309edafe sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x30c5c321 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x309e3ad6 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x30acd534 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x30b803fa crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x30c446b0 tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x30d80416 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x30e1d5c5 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x30e97d7c sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x30f5e76e net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x30f8d052 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x30fb1711 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x30db2713 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x30e5cab3 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x30e7ac66 component_add +EXPORT_SYMBOL_GPL vmlinux 0x30eb6484 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x30fed77e pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x310bc3d1 pci_epc_bme_notify -EXPORT_SYMBOL_GPL vmlinux 0x31166030 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x311b0548 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x310348dd pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x3103c49e iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x310520a4 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x31094d74 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x311342f8 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x311b3e99 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave EXPORT_SYMBOL_GPL vmlinux 0x31269173 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x31371049 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x313ff35b devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x31422c41 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x31404b43 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x3145017b of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0x3148e76f dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x3150abd6 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x31631b04 vfs_splice_read -EXPORT_SYMBOL_GPL vmlinux 0x31648417 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x3166163b regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x3167cbfd devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0x316e9203 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x3176d0c9 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x3177dc21 vcap_tc_flower_handler_ipv4_usage -EXPORT_SYMBOL_GPL vmlinux 0x317b936e uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x317bd0a1 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x31821b99 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x3153c321 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x318076a4 devm_nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31a86bfb __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x319f66a4 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b1d251 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x31b6f2e2 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x31aac6b8 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x31b1e85f fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31cbeb40 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x31d07819 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x31d2aab6 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x31d3d74d fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x31d54786 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x31d7b62c stmpe_dev_pm_ops EXPORT_SYMBOL_GPL vmlinux 0x31dc42f5 __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x31e32e5d fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0x31e55939 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x32189152 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x31f06959 mm_iommu_is_devmem +EXPORT_SYMBOL_GPL vmlinux 0x31f6e003 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x320025af relay_open EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x322aa2c7 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x323b6f63 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x323d1a20 rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x3246c7f9 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x324e7aa5 devm_of_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x32581756 lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0x325d7297 __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x32624662 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x326a5a5f register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x327a20d5 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x326ff8ce watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x327de163 iommu_map EXPORT_SYMBOL_GPL vmlinux 0x32804d31 dev_pm_opp_of_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x3285c777 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x329b7611 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x32a6e392 extcon_sync EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32ad292b balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x32ad45a3 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x32b8c1d7 thermal_zone_device EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32bf91da netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32e18c76 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x32edd500 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x32fc9ec5 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x32fd5cf6 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x32d045b7 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x32efffc8 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x331a20d1 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x330ff381 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x3310ca6c blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0x331adc21 __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x3325bc68 cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x3338c502 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x33393190 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x333e4a9b xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0x33545e93 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x33565a8e pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x334689a2 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x3352642c xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x33532303 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x33552546 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x3357e7a3 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x338530e8 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x338b5c6f iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x338dbc31 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x33a00153 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0x33aca503 iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0x33ae3989 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x33b2d233 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x33c276b0 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x335ee1ee unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x336d66a6 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x337751e0 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3378b7b2 dev_pm_genpd_synced_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x3380174e mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x338213a4 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x3382f513 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x338b04b5 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x338fb0b9 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x33a128f9 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x33a5c01d clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x33a66bab fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x33a9bb7a register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x33c3b76e param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x33c4530d xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x33c64fc2 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x33ce91f4 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x33d8fa07 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x33d95b0b of_pci_dma_range_parser_init EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x340f4863 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x34136bfe nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x34174e93 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x341a1d38 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x342ec2df class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x343bd87d pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0x343e469e ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x33f64188 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34178912 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x342d66bb shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x3438724a __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x343c87cf of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x34495d17 devl_linecard_create EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344f093a crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x346f2229 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34720bdb iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0x3482e179 kvmppc_host_rm_ops_hv -EXPORT_SYMBOL_GPL vmlinux 0x348e2e96 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x34770186 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x34805998 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x3482eefe usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x34920985 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x349e7c80 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x34a4cd7f devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34ad4df9 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x34c1752e skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x34c4b4c6 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x34c7e01b irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x34cf162f ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x34d292c6 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34e51b38 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x34f90246 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x350c881b switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x34de353e kvm_free_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x34e31a91 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x34f26a0d class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34fcce1c regulator_put EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x351e95b2 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x3522f49f sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352c5752 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x352e062b edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35411651 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x353a6d46 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x353b11f7 memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x35579923 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table -EXPORT_SYMBOL_GPL vmlinux 0x356c3b8c folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x358c2b9e dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x358d17b1 extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3591675c xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0x35a08c85 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x35a1994e md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x359d8623 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0x35a72357 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x35a72d04 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x35e605aa of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x35e91b46 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x35f7eb02 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x360cac9a da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x362192ce eeh_dev_open -EXPORT_SYMBOL_GPL vmlinux 0x3623113e unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x35c45604 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x35c6ec39 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x35ceb9eb of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x35db77c5 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x35e73c8c xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x360285bb pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x360f746d eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0x36174282 pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362a385d gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x362c4e9e device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x364a6107 kvmppc_invalidate_hpte -EXPORT_SYMBOL_GPL vmlinux 0x366b1153 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0x36741f71 devm_regulator_bulk_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x3675674e regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x362d7cc4 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x362e5dfa crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x364538c1 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x366de2c7 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x3673d1cf trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x368491bd is_software_node EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x369013e4 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x3699dcaf __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x368d0f3f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x368e89d6 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x369af210 inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a38454 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x36b5a00e io_uring_cmd_done -EXPORT_SYMBOL_GPL vmlinux 0x36ca66ea xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x36d02c0f pci_p2pdma_add_resource -EXPORT_SYMBOL_GPL vmlinux 0x36d24255 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x36f08441 devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x36f6692e phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x37302462 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x36a72658 inet_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x36c0f9e2 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x36c1d0ab __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x36c9cdcb blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x36cd6081 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x36d83048 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x36dd2579 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x36e2bd65 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x36f73587 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x370a107e icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0x37117bf4 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x37160ab4 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x37183f92 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x371bcbe7 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x371bcc80 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x37265235 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x37268e51 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x37302496 irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x37383edd rtas_get_power_level -EXPORT_SYMBOL_GPL vmlinux 0x373b9560 crypto_akcipher_sync_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x3742d137 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3748321b blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x374b5c0c irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3738e1ea devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x3744ad8e devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x374aac2e pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x374c4790 from_vfsgid -EXPORT_SYMBOL_GPL vmlinux 0x374ed9a2 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x37790a2e sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x3779996e folio_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x378252be iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x378e95e5 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x3799c8cd pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0x379d4641 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x37a0acea iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0x377f0d60 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x378bc0f8 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x378c8a43 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3790cb38 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x37917b10 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x37962487 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3798e71e tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x379f005a dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37d1eecc usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x37d5fe25 get_current_tty EXPORT_SYMBOL_GPL vmlinux 0x37db6520 devm_of_led_get EXPORT_SYMBOL_GPL vmlinux 0x37e2c547 dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x37e314e2 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x37ed98cc regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x37f99cbc yield_to +EXPORT_SYMBOL_GPL vmlinux 0x37e8d447 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x3804ac38 sched_numa_hop_mask EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x381b6c5b fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x38135ad4 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x38161806 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x3819acc1 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x3819f6b1 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3828246c wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x38385f16 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x383decc0 eeh_pe_get_state EXPORT_SYMBOL_GPL vmlinux 0x384693cd software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x384ac82d onboard_hub_create_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x38537139 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x38480837 gov_update_cpu_data EXPORT_SYMBOL_GPL vmlinux 0x3857df9a __traceiter_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x385d27a9 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x38672881 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x387b69de gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x38803c85 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x3886b8f3 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x38894214 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x38992175 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38a18bb9 __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x38a27d66 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x389d6e01 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38bc46b6 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x38c5e34b crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x38cdc124 xhci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x38c3631d crypto_akcipher_sync_encrypt EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x38ddeee2 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x38e1626b __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x38d7c08d ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x38dcfd5f fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e4984c devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f2f3df handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x38f7f86d __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x39040b37 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x3904bd55 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39102cba ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x3904be09 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x3917a681 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x391c2bee __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x391c6d60 devm_led_get -EXPORT_SYMBOL_GPL vmlinux 0x39202eec of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x391e49fe simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x392bb08c x509_load_certificate_list -EXPORT_SYMBOL_GPL vmlinux 0x39314b6e virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x39503cda do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x3947997c tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x3957325c __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x3958ccb6 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x395d6779 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x396f765b regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x39628c75 scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3993f43c tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x397ed88c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x39825730 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x39889315 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x399f7593 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39a8ea78 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b3b7da nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x39b87e35 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0x39b37fce dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x39d85f82 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x39dd6027 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x39c8b5dd pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x39ccd297 component_del +EXPORT_SYMBOL_GPL vmlinux 0x39d5708e stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x39f68cde security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x39f71a23 cxl_afu_put +EXPORT_SYMBOL_GPL vmlinux 0x3a00d8e1 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3a0a2e6d xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x3a11bd7f pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3a1350cc gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3a1ec1c9 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x3a233cf5 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a270dde pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x3a2a8bfa ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x3a33c952 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x3a357e56 genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x3a38e738 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x3a321730 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x3a415304 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a5225fd inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a690886 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x3a6d4966 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x3a95a028 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x3a58af97 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x3a694fd5 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x3a7e6e01 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x3a83f31f devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa0ea34 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x3aa98883 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3aaa092f gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x3aa101f4 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3aa1bb98 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3aa9573e sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x3aacca25 platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0x3aba1368 dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad2cc80 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x3ad19a8b tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x3aef1504 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x3afeee99 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x3ae696d2 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3aef7a7c __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop EXPORT_SYMBOL_GPL vmlinux 0x3b03a771 start_poll_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x3b0f8d7e power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x3b1092f3 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x3b1a84cd pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x3b410cb3 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x3b1b0990 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3b220800 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x3b3724a2 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x3b42d6ed iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3b4326fa kvmppc_do_h_enter EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b6dc7a6 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x3b6dda6d rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x3b749c85 vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0x3b757ff3 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x3b7efb80 md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0x3b8316a0 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x3b7e73b1 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x3b8f4788 rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x3b92ad47 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x3b93ac95 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x3b93ef45 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3b96aff6 crypto_sig_set_privkey +EXPORT_SYMBOL_GPL vmlinux 0x3b9fffdf usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bccfced pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x3bc0a70b input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x3bcc5e03 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x3bcdb7cb dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0x3bd10fdc powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x3bee1ad3 rcu_trc_cmpxchg_need_qs EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c00f542 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x3c0c6751 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x3c16c440 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x3bfd32f9 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x3c046dcd pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x3c0ee983 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x3c0fa99c of_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply EXPORT_SYMBOL_GPL vmlinux 0x3c37cbf8 machine_check_print_event_info EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x3c3fe21c led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x3c41b57b pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x3c43d6b2 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x3c4fdae3 dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0x3c51beda ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x3c62be63 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x3c55bd77 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x3c64e55f sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi -EXPORT_SYMBOL_GPL vmlinux 0x3c67cf6d trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c6ad18d clk_hw_init_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x3c865f83 devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0x3c9951de virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x3c9f2190 usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x3cbc4ba6 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x3cc34e9c fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3c75801f flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x3c779c88 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x3c93bc93 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x3c9af8b6 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3ceb531f tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x3ceed14f iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x3cf80259 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3cfae59b extcon_get_edev_name EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv -EXPORT_SYMBOL_GPL vmlinux 0x3d099468 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x3d181cd3 filemap_migrate_folio -EXPORT_SYMBOL_GPL vmlinux 0x3d2abf85 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x3d0981b1 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x3d1d86c3 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x3d330b3e kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x3d365723 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d441c1b rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x3d4cf7d6 devl_params_register +EXPORT_SYMBOL_GPL vmlinux 0x3d4d1cfc gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d544624 mpc8xxx_spi_rx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm EXPORT_SYMBOL_GPL vmlinux 0x3d6666d7 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x3d750634 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d874a13 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da83a28 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dafd32b mpc8xxx_spi_probe EXPORT_SYMBOL_GPL vmlinux 0x3db31b1d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x3dbbeb23 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x3dbc46c4 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x3dd5952a iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x3ddb6559 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3db9bbf1 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3ddacffa usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x3de70f24 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x3de918e7 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3debdcf2 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3df1637f gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x3df1e761 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x3df636e6 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x3df6efe6 pnv_ocxl_unmap_lpar -EXPORT_SYMBOL_GPL vmlinux 0x3df88d36 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3dfe7d93 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0x3e04306c sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x3e089f2c vcap_tc_flower_handler_portnum_usage -EXPORT_SYMBOL_GPL vmlinux 0x3e175d5c sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x3dfe6cf5 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x3e12a3f2 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x3e165e1f dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x3e2defc2 uart_handle_cts_change EXPORT_SYMBOL_GPL vmlinux 0x3e31c869 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x3e36f437 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x3e3dc405 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x3e3f5ad9 md_stop EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e46a3ef platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x3e57d87f of_alias_from_compatible +EXPORT_SYMBOL_GPL vmlinux 0x3e54ab11 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3e5818c1 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x3e62a354 vcap_is_last_chain +EXPORT_SYMBOL_GPL vmlinux 0x3e6ca187 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x3e6d9d64 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e8022c8 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x3e86637e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3e713941 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x3e7e3bf5 devl_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3ea3a630 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x3e9061f4 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x3e9cabf0 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x3ea0cc95 pnv_pci_set_tunnel_bar +EXPORT_SYMBOL_GPL vmlinux 0x3eac3c83 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3eb17167 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte +EXPORT_SYMBOL_GPL vmlinux 0x3ece898c kvmppc_h_bulk_remove +EXPORT_SYMBOL_GPL vmlinux 0x3ed1ad5a crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x3ed210a1 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x3ed3393e devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x3ed782ab rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x3ed8d399 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put -EXPORT_SYMBOL_GPL vmlinux 0x3ee36563 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x3ee2adb6 handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0x3ee44641 __srcu_read_unlock_nmisafe -EXPORT_SYMBOL_GPL vmlinux 0x3eedc568 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3ef2831c wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x3efe3c0f usb_cache_string -EXPORT_SYMBOL_GPL vmlinux 0x3f0ac3b0 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x3f0e01be dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x3f18b593 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x3f341ad6 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x3ef5b7e2 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x3f0ec608 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x3f16a0a0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x3f189768 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3f233048 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x3f472d5a dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4d42b8 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x3f689a58 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x3f4982ea dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x3f4ef68c crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x3f5d5b7f gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x3f67ca80 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x3f6c7176 regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f856900 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x3f924ba9 rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x3f9cbdf5 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x3f9ede9e edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x3fc05818 wwan_put_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x3fd052e8 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0x3fd4c16a mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0x3fd68a2c dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0x3fdb6de0 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x3fdf2c34 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x3f85fa43 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3f99792d cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x3fab1862 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x3fd314fa ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x3ff5b584 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x3fff8575 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x4001b19f kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x40037f57 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x401e0d06 direct_write_fallback +EXPORT_SYMBOL_GPL vmlinux 0x4027b4eb relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x402b8e61 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x40512801 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x404afea9 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x405a2125 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x406062e8 usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4070fba2 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407f5c53 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x40987efc device_destroy EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data EXPORT_SYMBOL_GPL vmlinux 0x40b5e5da thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x40d4295b blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x40ef5586 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x40d5f3a5 scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f58c09 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x40f66360 fbcon_modechange_possible EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped -EXPORT_SYMBOL_GPL vmlinux 0x40f8bd29 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4103abbb kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x410a9737 extract_iter_to_sg EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x414ab98e virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x412fe3b0 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x413d2bc0 user_read +EXPORT_SYMBOL_GPL vmlinux 0x41439cd0 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x414c2c21 __mt_destroy EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state EXPORT_SYMBOL_GPL vmlinux 0x41550893 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x415a0af7 put_device -EXPORT_SYMBOL_GPL vmlinux 0x417961d5 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0x417f4d55 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x415758ee dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x41814a05 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4183132a kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x419e55e8 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x419e7142 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a05b5f genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x41a13d9c synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x41a986ce tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x41aa7399 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x41affe5e sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x41b57ba6 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x41a7e680 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x41ad87f6 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x41b85d61 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41c36b9b __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x41cd3bee vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x41c59295 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x41c6bc20 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x41ccac41 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x41d79969 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x41ea79d7 fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41f87465 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x41fdf184 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x41faeacb fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x41fbec0e balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x41fd5632 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x420393f8 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420e85f2 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x422051c6 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x423062cb regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x42377804 pci_p2pdma_enable_store -EXPORT_SYMBOL_GPL vmlinux 0x423a3357 rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x42499601 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x423145fa device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4233cc0e nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4233fbd9 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x42344176 skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0x42571113 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0x42576639 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x4262c9fe of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x42631fbf kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x426eafb3 __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0x4275bd23 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x42729818 folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4287e371 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x42883234 crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0x4289a820 nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42a2fe78 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x42bc404b serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x42a05fa1 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x42a4871e devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0x42c47c87 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x42c7c2f9 devm_thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0x42d23c8a thermal_zone_device_id +EXPORT_SYMBOL_GPL vmlinux 0x42cfc33f devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42d433d5 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x42d6e334 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x42d73ac0 percpu_is_read_locked -EXPORT_SYMBOL_GPL vmlinux 0x42e4f2b4 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x42da9fb4 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x42e49a58 device_create EXPORT_SYMBOL_GPL vmlinux 0x42e732cb vcap_rule_add_key_u128 -EXPORT_SYMBOL_GPL vmlinux 0x42ee72c9 pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x42f4092b platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x430152fd dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x42fecf1b vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x430427cf ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x430fdf91 alarm_restart EXPORT_SYMBOL_GPL vmlinux 0x4310ed1d power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4317186e mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0x431aeb28 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x431f4eeb __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x431f1bbd sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x431ffd3a sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc -EXPORT_SYMBOL_GPL vmlinux 0x4327bddf debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x432cc26f serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x433c982e pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x434edcbe sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x4332c6e3 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x433aecd5 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x434ffc15 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x436aa0c5 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x43538a3e pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x43642aa9 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x436d0335 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x437c7410 dma_resv_iter_first EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x437ef41a skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x4386b48d serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x43a1dfeb pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x4386f050 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x43a801ff usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b69146 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x43c562b6 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x43c6b55e gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x43ae2837 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x43bdfe44 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear +EXPORT_SYMBOL_GPL vmlinux 0x43cd916c lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x43d42ba6 devl_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x43d49b07 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x43d78204 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x43d5e8f2 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x43dda3fc __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x43e3ef8e led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x43e4bd7f nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x43e89bfc scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x44163c5a fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x44179c9e pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x4420d66e relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x442526af fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x4405418e pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x4421544f synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x4421f380 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x44254a08 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x4427df4e sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x44338a36 firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x443ed41a ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x44424fe4 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x443defc3 pnv_ocxl_set_tl_conf +EXPORT_SYMBOL_GPL vmlinux 0x4448750c pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x4448c679 mt_prev -EXPORT_SYMBOL_GPL vmlinux 0x444ca534 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x4453e7b0 kthread_func EXPORT_SYMBOL_GPL vmlinux 0x4454bca9 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x446aa110 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x4456d0f2 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x4460c530 of_nvmem_layout_get_container EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop +EXPORT_SYMBOL_GPL vmlinux 0x44745322 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x447647ba __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x447a3239 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs -EXPORT_SYMBOL_GPL vmlinux 0x44824e07 vcap_tc_flower_handler_ethaddr_usage EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4491934d devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x44978591 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x448de6fd md_run EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove -EXPORT_SYMBOL_GPL vmlinux 0x44acdbe5 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba -EXPORT_SYMBOL_GPL vmlinux 0x44b1bcd9 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c068cc serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44c70e76 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x44ca69fd unregister_kprobe EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str EXPORT_SYMBOL_GPL vmlinux 0x44d2d9ff sbitmap_get -EXPORT_SYMBOL_GPL vmlinux 0x44d41c35 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x44d50a08 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x44e54088 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x44da0d4e __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x44de07f5 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x44e1fe4b vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0x44e58976 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x44eebed3 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x44f43958 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x44f89b58 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450be69f tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x450cdcc2 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x450d9fc4 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x4516b501 mpc8xxx_spi_rx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x4534c47b shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x453a6a92 pcibios_free_controller_deferred -EXPORT_SYMBOL_GPL vmlinux 0x4543c8c2 cpu_add_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0x4544726e user_update +EXPORT_SYMBOL_GPL vmlinux 0x45345948 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x453f7215 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x4548c352 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x45597170 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x457231b1 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x4574711f skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x456f5def bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x45752c44 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x4579ade0 genphy_c45_read_eee_abilities -EXPORT_SYMBOL_GPL vmlinux 0x457d5ff1 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x457ff693 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x4599fec2 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x45a3ae1a ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x45b72b26 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x45b80e37 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x45cc91eb platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x45cf2c3f debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x45e197f1 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x458364a8 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x45927367 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x4594e95c nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x45966c24 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x45b20e8c __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x45c3f5d9 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x45c689ba nvmem_layout_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x45ca1d2c bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get -EXPORT_SYMBOL_GPL vmlinux 0x45f137aa debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x45fb4821 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x45f1a861 fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x461e959b crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x46554ca4 regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x4658e14d devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x4664f6e2 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x467d115c regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x4602a390 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4626c96e mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x462dae00 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x4639912c devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4645e710 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x464cdedd lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x465f2537 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x46708d8e devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x4677c84b regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x467dd80f sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x467eb7de vas_unregister_api_pseries EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46916828 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x4692f673 copy_mc_generic -EXPORT_SYMBOL_GPL vmlinux 0x4699eca4 edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x46a82efa pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x46c7f5c9 icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0x46b66ab5 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x46c785eb tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x46d71703 __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x46e465de klist_init -EXPORT_SYMBOL_GPL vmlinux 0x46e99776 regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x46f8c5ae tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x470575c4 sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0x46e7f13c pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x46f77ce4 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x470551d1 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0x470996c6 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x471c9e7c dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x471d4eaa usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x470b001e crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x471c6f12 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472c3df2 xdp_set_features_flag -EXPORT_SYMBOL_GPL vmlinux 0x4739d202 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0x473a8c43 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x474c5f92 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4729300e vcap_tc_flower_handler_cvlan_usage +EXPORT_SYMBOL_GPL vmlinux 0x4731f816 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x47464c1c tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x474e92dc balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4763a4ac of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0x476461e8 __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x47735a58 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4781d6b9 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode +EXPORT_SYMBOL_GPL vmlinux 0x479b9f31 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a2b862 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x47a11b4d fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x47a93586 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b38f49 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x47ac23ac da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x47b11163 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x47b7a692 cpu_feature_keys -EXPORT_SYMBOL_GPL vmlinux 0x47c80d44 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x47c14153 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x47d488b4 of_detach_node EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47f860aa sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x47f89ea4 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x47de49c1 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x47e919cd fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x47f3957c clk_hw_determine_rate_no_reparent +EXPORT_SYMBOL_GPL vmlinux 0x47f60711 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x47f762e6 usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0x4801ded1 sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x4807a056 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x4807f06f device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x480ad18b irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0x481d44ec pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x4809e6e8 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x481ae717 iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x4825c082 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x482b3fef generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x484277e3 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x4849c5f5 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x484e01c8 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x4854ebad pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x486d6168 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x487920fe __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x482aaf3e fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x482dd4ba pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x48368942 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x483f9ea5 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x484de5dc iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x48517579 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x485a92d3 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x48641981 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x486c0f0e device_attach +EXPORT_SYMBOL_GPL vmlinux 0x486d7127 shmem_read_folio_gfp EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x48818687 sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a8cf63 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x48a97cae ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x48ac2ecd class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x48b109bc regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x48be3c25 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x48be5f8a set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x48bedc56 usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48c35c9e __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x48dfac61 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x48e5e8e9 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x48fbed40 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x48c71e90 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x48e6b1b0 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x48f90e4e virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x490249f8 get_device EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x49130dd3 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x49205cff virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x492ee325 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x4926e47a set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x4931f958 iov_iter_extract_pages EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493c30df ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x494ab593 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x4945d4ce tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4958308e raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49634d67 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x497e10e7 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x497e177a gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49961455 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x49a4a5aa devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49a81ff7 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x49abb149 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x49aee88d phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x49b08cff invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x499be8ec lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x499e4de0 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x49a8e4b0 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x49ab1598 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0x49b6ed20 pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x49b915fa skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x49c6392f css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x49b8668e raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x49b87565 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x49bb6d0f __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x49c3d258 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x49c76d8d preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49cf66ca __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x49d8c0a1 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x49e28bbe rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x49d27796 of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f20f4d irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x49f8a494 rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x49fba4ac serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x49f495db nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x49fb56dd __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec -EXPORT_SYMBOL_GPL vmlinux 0x4a052fe5 kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x4a10557d regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x4a1301e4 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x4a069c9e pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x4a0bcf9b kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x4a0e00a0 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4a169202 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x4a16c518 devm_regulator_get_enable EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a19b920 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4a1c61db fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x4a1cf3bb devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x4a243151 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x4a27afc9 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x4a42f14d put_io_context -EXPORT_SYMBOL_GPL vmlinux 0x4a474740 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x4a55b510 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x4a313859 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x4a319505 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x4a33c29d trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x4a3b7025 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4a5cd5bf pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x4a5f2538 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4a61abbb sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x4a63632f do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x4a6f484a iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x4a9081bf usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x4a622cd9 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x4a66f575 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x4a6a9ab4 vring_create_virtqueue_dma +EXPORT_SYMBOL_GPL vmlinux 0x4a7db634 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4a82856a dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable -EXPORT_SYMBOL_GPL vmlinux 0x4a9f07a9 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4aa5c0ba desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x4ad9ef38 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x4af648f1 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x4b0de595 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x4b0f789b tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x4b1a99ca serdev_device_break_ctl -EXPORT_SYMBOL_GPL vmlinux 0x4b2726bf rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x4b27476e dax_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x4b369dd3 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4b5a75d0 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x4abe32ad fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x4ac178b6 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x4aca6d1c of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x4aca78b1 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4acd3bfe nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4ad41175 devl_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ad5c22f bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x4ad6946e accumulate_time +EXPORT_SYMBOL_GPL vmlinux 0x4adb0bbe request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x4ae54634 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x4aeb508e kvmhv_vcpu_entry_p9 +EXPORT_SYMBOL_GPL vmlinux 0x4afc82b0 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x4b27be44 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x4b2eb106 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x4b3809ef iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4b50311a fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x4b5181e3 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x4b6474e2 vas_init_tx_win_attr -EXPORT_SYMBOL_GPL vmlinux 0x4b6ea9eb tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x4b7975d9 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x4b7b55b1 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x4b8ae332 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x4ba60b5a virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x4ba736d9 spi_transfer_cs_change_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x4ba9ed6b __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x4bb2f5d9 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4b7c537b generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x4b862fb1 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x4b87f8ab bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x4b8d1b17 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x4bb46d28 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x4bc0374e adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4bd2c3b8 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4be3d73b __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4bdcd635 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x4be553fd usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x4bea132e rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0x4beb9151 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x4bed8152 of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add -EXPORT_SYMBOL_GPL vmlinux 0x4c0300b7 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0x4c037b06 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x4c25021b vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x4c274a7f tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x4bf0c0f5 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4bf1f8d3 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x4c08d032 vcap_chain_offset +EXPORT_SYMBOL_GPL vmlinux 0x4c14a7d1 usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x4c392c60 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x4c3baee6 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x4c3e171b component_del -EXPORT_SYMBOL_GPL vmlinux 0x4c4c50c3 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x4c2fe272 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4c48ae18 ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c5a9275 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x4c5aee1a dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0x4c96fefd nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x4c9ce0bb pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x4cae9186 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x4cb1e2c2 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x4c6156b6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4c6990c1 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x4c875323 device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb70d07 usb_find_alt_setting EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cb89c8d devl_trylock -EXPORT_SYMBOL_GPL vmlinux 0x4ccce42e gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x4ccda360 of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x4cd6db63 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x4cdd7e37 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0x4ce0e03c ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x4cf0aa41 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4cda36d2 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x4ced9aa2 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4cfda6f8 phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d03ae6e dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x4d246712 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4d1f3f95 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x4d1ffd48 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x4d25b4cc tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x4d31d162 nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d3c91a5 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x4d3e40d9 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x4d402d6c pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x4d5df586 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4d4a23fc phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4d4fa80d fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x4d58a246 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x4d599675 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x4d680100 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d6bd19d fscrypt_context_for_new_inode EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d83c27f ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x4d880d07 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x4d8a8fe6 devm_register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x4d8c3ba3 rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x4d937e5c tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x4d974b0c usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x4daaf97c phy_create +EXPORT_SYMBOL_GPL vmlinux 0x4d868fdb mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d913b13 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x4da5b964 tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db0b73a blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x4dc47b0b of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x4dc52c09 pnv_power9_force_smt4_catch -EXPORT_SYMBOL_GPL vmlinux 0x4dc8cf66 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x4dcbf292 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4de133df iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x4dd47c2d virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x4de1058f devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de6e236 pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e040994 gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e3d8b9b device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x4e27cae6 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x4e2c0e90 tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x4e46aa18 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0x4e54eafd bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x4e56789a __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x4e612570 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4e4be4c6 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4e55eab0 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x4e5b528e phy_create +EXPORT_SYMBOL_GPL vmlinux 0x4e5ffd2f sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4e60dbd9 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop -EXPORT_SYMBOL_GPL vmlinux 0x4e83a6b3 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x4e7bdd66 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x4e8548e1 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x4e872f05 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x4e9acf90 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4ea8c7bb regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb8fb20 mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x4ec95010 xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x4ecb3883 dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x4ee52ec0 mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x4ebb2bd4 eeh_pe_state_mark +EXPORT_SYMBOL_GPL vmlinux 0x4ebc26c4 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x4ec19713 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4ec3a40e tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x4ed1942f __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x4edae62a espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x4ee3fa37 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x4ee98d95 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4eebcef2 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4efff4f4 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x4f063e59 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0x4f0aa844 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x4f0aac91 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4f1bd051 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4f0ca34d uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x4f205920 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2fa3d1 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0x4f349cff phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x4f3c910d wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x4f4a371f fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x4f4ba7e5 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4f316a19 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x4f36fa6f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x4f41ff7e spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x4f4ba621 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x4f4c1432 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x4f601408 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f72d72e sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x4f7aacae spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4f98b99e dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0x4fadba95 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x4f85a08e pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f9ab958 store_vcpu_state +EXPORT_SYMBOL_GPL vmlinux 0x4fa75567 vcap_get_rule_count_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fb60de9 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x4fc807bc mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x4fdb3da2 vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdd3145 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe8e209 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x4ff2c724 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x4ff8a151 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4ff96955 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x50004955 kvmhv_vcpu_entry_p9 -EXPORT_SYMBOL_GPL vmlinux 0x5009d5fa tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x501a7b57 dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x5025aeb7 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x504a13a3 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x5054565e vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x505569cb tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x5008c641 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x503d1e94 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x50483455 vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0x505e4a54 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x5068a162 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x506b00a7 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x507d7634 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x50826fae serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0x508377eb xive_native_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5090feec __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start EXPORT_SYMBOL_GPL vmlinux 0x5093e76e __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x50a7cde4 rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x50b50ea5 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x50b95315 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x50bd4873 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x50c40ed0 serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0x50cb4c1e ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x50d91353 usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x50dfe68e skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x50dd1e15 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num EXPORT_SYMBOL_GPL vmlinux 0x50eabb98 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x50f0a770 irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50ff83f8 pnv_ocxl_set_tl_conf -EXPORT_SYMBOL_GPL vmlinux 0x51159703 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x5131e1ae fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x50fc3570 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x5104d815 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x51104c32 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x51364cd2 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513a6b93 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x514f624a dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x51535544 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x51537116 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x513c418d sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x51530cc5 kvmppc_h_clear_ref EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x515d19ec reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x516a8443 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x516b5195 cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x516e1159 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x51780b97 i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x517bef27 ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x517e90da sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x518141fe rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x51884060 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x518b6870 failover_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x51941ba7 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x516c320d devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x51713673 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x517b1a57 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x51954ea3 vp_legacy_set_status EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51ac9f3e dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x51b3c799 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock -EXPORT_SYMBOL_GPL vmlinux 0x51baaaf5 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x51c02982 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x51c44cec soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x51d2f597 da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x51d43d27 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x51c89b8a wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x51c9a477 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51f6bf14 regulator_get_current_limit EXPORT_SYMBOL_GPL vmlinux 0x51f9edea auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x51fe2bac set_thread_tidr -EXPORT_SYMBOL_GPL vmlinux 0x5200f71a regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x52136ade register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x51fe8013 ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x52313a96 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x52266e64 dm_hold EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x523b8d63 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x524f446f vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0x525feed2 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x523d35cb blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x52497966 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x52629218 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x526cc53d __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x52854277 class_create -EXPORT_SYMBOL_GPL vmlinux 0x52855a5b fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0x528c8099 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x5294210f usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0x529d79dc mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x52afa9de ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x52b19ce8 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x527f2a45 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x52a5b98c ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c1da90 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c795f4 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x52c9a973 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52e12949 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x52ed13bd spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x53003212 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x532a01a9 vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0x531a2a0a bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x532660af scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x53370983 sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x535eba32 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x53666f1e device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x537153b4 devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x537d2371 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x53800ae5 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x5372d827 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x53771ad2 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x537cb742 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x537ddc95 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x5388726a pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x539ae810 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x53ae5a32 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0x53b42833 regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x53bbc27b blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x538ed55c kvmppc_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x5396add4 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x539c4300 of_dma_is_coherent EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c95e7b usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d8edf0 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x53d9f73a sensor_group_enable -EXPORT_SYMBOL_GPL vmlinux 0x53ebf72d crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x5415d885 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x53e0d19a fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x53e62c89 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x53f33af5 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x53f3b68d gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x53f59f19 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53f5de63 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x54096c05 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x54098824 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x54133c6f usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x541519ce fib_new_table EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x542122e1 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x542388b9 of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x5428345f xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0x543646b8 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x5432165d tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0x543d8bfb clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x5443fe3f da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x54461702 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x5447d66d of_scan_bus -EXPORT_SYMBOL_GPL vmlinux 0x54568a8d balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x5457c87d device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x545fe033 sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x54649618 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x5466642a gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq -EXPORT_SYMBOL_GPL vmlinux 0x546c8a6a pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x5484dcc3 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x54942b6c devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x54733664 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x54744e1e md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x5486b7ca __put_net +EXPORT_SYMBOL_GPL vmlinux 0x548f977f strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x549244f6 kvmppc_set_msr_hv EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549b5310 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x54aeae40 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x54bc09a2 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x54c80af6 pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x54d4a961 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x5500886e debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x5501db22 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x5505f74d crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x55083bfe regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x5498f151 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x54a3ac31 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x54bbac25 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x54bef1c1 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x54d2bcf3 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x54da5219 wwan_put_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5511d2c3 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x55131d5a addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x5518e087 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x5521495e usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0x552237df devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x5525631d usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x5528ad4c regmap_async_complete EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x553a32c0 nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x553d22ac spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x556a0d9e __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x5541f235 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x5550612f devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x555136b1 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x5557aeaa blk_rq_poll EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5574532a mdiobus_c45_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557e7eed virtio_require_restricted_mem_acc -EXPORT_SYMBOL_GPL vmlinux 0x5585482d of_regulator_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x559dc034 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x55aa09bf of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x55b4ad95 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x55b5b0bd sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x55b8b4ea vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x559ebe5f __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x55a27958 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x55a93d56 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x55bc4c24 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55d57138 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x55dc004c of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f093a9 opal_write_oppanel_async EXPORT_SYMBOL_GPL vmlinux 0x55f4fe1f devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x55f69c36 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x5603bb35 tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560a153f ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x560a292c usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x5608ba82 nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x560e4eee list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x561375bd tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x5615921f __fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x561ad788 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x56237d5a regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x5623c444 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562d6e1d regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x5632ec2f usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x56384e56 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x563ac6eb dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x564b1605 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x565145aa folio_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x5654be15 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x565d128e blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0x565d8240 __devm_clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x5665c8e0 divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x566c4f75 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x56700894 thermal_zone_device -EXPORT_SYMBOL_GPL vmlinux 0x56774d16 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x567c67d8 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x5643eaf1 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x5645777e bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x564cefd0 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x5656464a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x56649823 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x56714075 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5678648c pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x567a7e3e __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x567ad881 pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0x568653d0 pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x56a5bd4e dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x56bad798 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x56865c5a dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x568a07eb aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x568dc0f5 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x56a275f5 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x56a53f24 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x56b7e4cb pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x56c2b95b rtas_progress -EXPORT_SYMBOL_GPL vmlinux 0x56ce87da adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x56d214a1 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x56c9c524 kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0x56dde73c free_uid EXPORT_SYMBOL_GPL vmlinux 0x56ef15d0 __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57073a27 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x570a867f sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0x570f2da1 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x5711cbd6 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x57253186 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x571cda1c devl_register +EXPORT_SYMBOL_GPL vmlinux 0x572c29db rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x57359729 of_get_fb_videomode EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa -EXPORT_SYMBOL_GPL vmlinux 0x573bc4b7 __traceiter_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x5742a452 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x5744c2b6 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0x575c8a73 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x5789ee24 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x57405cc1 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x5749f5a9 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x576a2a74 kvmppc_hpte_hv_fault +EXPORT_SYMBOL_GPL vmlinux 0x577000e5 ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x578f6a58 pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a20b3e shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x57aa0946 usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0x57ad4be0 opal_int_eoi EXPORT_SYMBOL_GPL vmlinux 0x57c58e9b __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57dd7cae pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x57e2fb9f devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x57ef9e5b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x57ea1448 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x57ed3a6a devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x57ee2232 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57f5aaa5 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x5803b693 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x58058f4b virtio_check_driver_offered_feature EXPORT_SYMBOL_GPL vmlinux 0x58099527 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x581cca70 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x5822530c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x583035b8 genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58397ce3 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x58323087 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x58359871 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x5838b4ab vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0x5840372e __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x584058b5 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x584e5c93 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x585b8c14 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x58423000 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5846c4ed pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x585123b5 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587e2bb7 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x588ce41a component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x5886fe69 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x58931245 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x589778f6 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x589aa9fc power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x589e1e0d icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x58a32a24 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0x58ac4b2a __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58aedcc4 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x58c30db1 __nvmem_layout_register +EXPORT_SYMBOL_GPL vmlinux 0x58afae5e blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x58b1ccf2 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x58d933f7 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x58ddf476 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e904dc sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x58ef4b9c swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0x58f10ac2 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x58f9406c restore_p9_host_os_sprs +EXPORT_SYMBOL_GPL vmlinux 0x58e8a91d devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x58ed80a3 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x58f5b244 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x58f7891e pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x5905df0b spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read -EXPORT_SYMBOL_GPL vmlinux 0x590a9c12 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x590b717e usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0x593ac537 __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x595bfc8f devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x595c3866 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x59607195 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x596249be of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x597742a6 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x597b99bf nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x59809cf2 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5985d06d fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598acaee led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x599ebdd7 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x598b6f07 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x599dbbc3 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x59ac08bc pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59cab65d usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x59d2ebd5 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x59e617b6 iommu_add_device -EXPORT_SYMBOL_GPL vmlinux 0x59e6f8b3 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x59debe7b tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x59dec85f usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x59e696e7 crypto_alloc_sig +EXPORT_SYMBOL_GPL vmlinux 0x59ec1aee pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x59ec8d31 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8eacb dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x5a02cfae mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a161a99 check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a333030 usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x5a3cbbe0 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x5a401ea9 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x5a2a79fa ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x5a3adc9e platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x5a448a07 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a592e9c pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x5a5f6209 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x5a4daa98 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x5a4dd098 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a63d1d6 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5a68d2fc cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x5a6b1c2c trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a74909a devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x5a7acff0 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5a8f6741 __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x5a934b3b crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x5aa0f06b sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5aa66015 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x5aa7aec8 vcap_enable_lookups EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab5963e blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x5ac58f9a skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x5adbab92 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5ab785aa __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5abb9dd0 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x5ac13f9c irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x5ac1f80c rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ac36bcb of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5adc0257 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x5adff0e5 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5aeaaaa3 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x5aeaab73 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x5aecd553 sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0x5b0c1762 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x5b0caeb9 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x5b1e90e8 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x5af288f9 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x5af5c553 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x5afc722e __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x5b0adf35 i2c_client_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2a621b stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x5b2fd285 fscrypt_prepare_lookup_partial -EXPORT_SYMBOL_GPL vmlinux 0x5b3071c4 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x5b271f2d device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x5b3e0e4e nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0x5b4bbe2d pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x5b4b6db8 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x5b4ecae3 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x5b501a80 spi_setup EXPORT_SYMBOL_GPL vmlinux 0x5b50af89 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x5b5467d4 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x5b54f4a5 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x5b680640 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x5b69c853 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5b569c41 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5b5fe302 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x5b6f1356 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x5b72f040 devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5b787037 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x5b7377c1 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x5b766536 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x5b83d7ab __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x5b86d4cc __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x5b8b11b4 backing_file_real_path +EXPORT_SYMBOL_GPL vmlinux 0x5b94da79 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bad03f0 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x5bc39ee6 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x5bc3c551 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x5bb5ddf2 usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bc9da64 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bda9821 ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5beb8804 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x5bf56cb5 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x5c01f51e md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x5c0a0861 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5bf3bc6e crypto_sig_verify +EXPORT_SYMBOL_GPL vmlinux 0x5c099797 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c0c3912 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x5c19a5d0 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c29f818 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x5c3522a4 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5c367cba mddev_resume EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c43bfc1 usb_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x5c474494 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x5c4d2a45 edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x5c4e4f92 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5c5119b6 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x5c53fb36 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6c35e2 ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x5c7d17be mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x5c7ec8c0 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c84f624 rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0x5c85146b xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0x5c938171 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x5c8cef77 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x5c902f76 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5c9ca147 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb1acbe dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x5cb18c3b devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x5cb56be8 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x5cb6ec87 restore_p9_host_os_sprs EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr -EXPORT_SYMBOL_GPL vmlinux 0x5cc6594f usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5cbcbd2a perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x5cc10550 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors EXPORT_SYMBOL_GPL vmlinux 0x5cd305ed digsig_verify -EXPORT_SYMBOL_GPL vmlinux 0x5cd91c8f usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x5cdfa55f _copy_mc_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x5cec85e0 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x5cd794f9 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5cdee536 rio_release_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf4d981 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x5cf62128 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x5cfcb12c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x5cf32974 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5d0769ff pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2e1222 xdp_features_clear_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0x5d462a64 pnv_ocxl_map_lpar -EXPORT_SYMBOL_GPL vmlinux 0x5d4d70db serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x5d4f1982 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x5d535266 devm_regulator_get_enable_optional -EXPORT_SYMBOL_GPL vmlinux 0x5d5c911a dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x5d6b5adc netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d2fb7de crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5d382c42 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x5d5f61a2 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x5d64782c pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x5d64b83a regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5d6c1b0b pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d85bb62 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x5d85e937 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5d91951d of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x5d95d431 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x5d93ccbf ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x5d965477 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x5d97c192 vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5da99bac regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x5dad36c4 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x5dba39c9 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x5dba5861 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x5dc10a19 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x5dc1765d dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x5dca4a62 usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0x5dcf5e00 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0x5dd8d1c7 blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0x5de494c4 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x5de4970a of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x5deee1c8 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5dfe30b9 of_css +EXPORT_SYMBOL_GPL vmlinux 0x5db7c4cf irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5de982c5 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x5dfa496a invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x5e001873 raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0x5e00aea4 ucall_norets -EXPORT_SYMBOL_GPL vmlinux 0x5e15f7e3 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5e0a1507 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5e0abb4f proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1ae48a led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0x5e1d9d92 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x5e241933 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x5e3eff07 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x5e472aee proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x5e18f0d4 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x5e1a4cc2 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5e1d704e pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5e3b9776 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5e3e63d9 usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e53c509 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x5e648c4c devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e76841a ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5e5d6f9e devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e682a78 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e72e61e set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5e740686 mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7a85e2 ata_pci_bmdma_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x5e806090 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x5e82d2b4 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e862468 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x5e86a19f skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x5e8cc567 dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0x5ea80562 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x5ea97675 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x5eaa5999 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x5e981f5a crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x5e990caa tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x5ea513c7 divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec45629 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x5ec8c322 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable -EXPORT_SYMBOL_GPL vmlinux 0x5ed49e7f vcap_keyfield_name -EXPORT_SYMBOL_GPL vmlinux 0x5ed74f4b __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x5ed8a35b pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x5edefd1d crypto_sig_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x5eebe49f regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5edd899a usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x5eedf1af xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f036e31 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x5f1f6fb7 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5ef783f7 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x5ef8b679 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x5efc098f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5f00e316 debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0x5f071d75 proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f341af0 fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x5f414fab task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x5f42af43 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x5f56d5d6 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x5f398c08 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x5f583f3a crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x5f58db42 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x5f61383a devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x5f63148b crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x5f656a75 dm_disk EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f7782d4 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x5f7feca2 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x5f8bc513 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x5f7d96c8 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f8d4f5a platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x5f8ff816 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x5f952a5a __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5f955d08 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5fa2974e devm_of_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x5fa603b2 phy_set_speed EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fbf354e sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x5fc935aa sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x5fd1ee31 clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x5fd3350c __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x5fdfa6ae class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x5fe1065e xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x5fefea4b virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0x5ff00183 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5fb99462 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x5fd59755 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5ff24c8f bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x5ff58c0f driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ffd3987 fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token -EXPORT_SYMBOL_GPL vmlinux 0x60035cbf pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size -EXPORT_SYMBOL_GPL vmlinux 0x601a4cd8 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x603d328e fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x6015c9af add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x601715ee mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x601e7450 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x60235383 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x602f4b37 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x603eb652 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x6053c1f9 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6062e220 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x606377a4 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x6067401d tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x604d097e pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x60683ba5 regulator_map_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x606fdf79 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x60713e1a crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x607343a6 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x60762d1d proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x60816576 xas_find EXPORT_SYMBOL_GPL vmlinux 0x6081884a usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x60854cd9 fb_deferred_io_mmap -EXPORT_SYMBOL_GPL vmlinux 0x608c05c9 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6095a141 fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60ae5330 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x60aeb4ae dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x60c6fa03 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x60d08b1d percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x60d60b31 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0x60de0c0c usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x60e297bc sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x60d960f7 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60e1ce5c ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x60e96e2c devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f29049 xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x60f874ab md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x6111bf80 trace_add_event_call -EXPORT_SYMBOL_GPL vmlinux 0x611cf35b icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0x61201e4d crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x60f64909 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x611e1396 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x61259eb5 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x6129c0db xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x6145227a phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x6142936f of_property_count_elems_of_size EXPORT_SYMBOL_GPL vmlinux 0x6146c01f hrtimer_active EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x6160e0da bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0x6167a297 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x614f23c7 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x61776cf7 usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618d3910 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x61976ba4 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher EXPORT_SYMBOL_GPL vmlinux 0x619a8194 threads_core_mask -EXPORT_SYMBOL_GPL vmlinux 0x619e3cee of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x61a07677 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x61a2f154 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x61ae5638 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x61ab916e iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0x61ad3c9d skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x61b0b25d open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x61b12cf3 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61c126ba debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x61c7c3db driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x61d93099 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0x61e686a8 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x61e81674 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x61ec95b5 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x61d9f3d1 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x61dc4eef mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x61e2d713 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x61eb073a gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x61edba37 __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x61f11de7 sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61fe0486 dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0x620d4334 genphy_c45_fast_retrain -EXPORT_SYMBOL_GPL vmlinux 0x62177d65 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x621e033d genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6227ca66 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x61fee015 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x620725a7 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x621cafb1 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x621f256f eeh_dev_open EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622f311a inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x6244dfca pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x62392def lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x62457857 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6246aa79 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x624d7fd6 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x626c3a37 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x627013ea simple_rename_exchange -EXPORT_SYMBOL_GPL vmlinux 0x6274ec9c regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x627a5ac1 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x627d877f skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x627e742b dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x625fdbe5 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x6260e32f mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr -EXPORT_SYMBOL_GPL vmlinux 0x628199d2 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x6283317a dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x628888e6 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x628caa31 of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6292712a rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x628f8608 lwtunnel_get_encap_size EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0x62a239e4 of_irq_get_byname EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c3b363 devl_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x62d3e221 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x62d9f2ab genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x62edfe15 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x6302096e gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x62d3a82a iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x62dac4a5 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x62dc5429 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x62e3cdc2 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x62e6e2c4 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x62eeeed4 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x62f5beaf tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x62f7c083 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x62ff8e42 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x63092d04 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x6314e711 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631c9db2 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x6325e860 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x63278f46 fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0x6332e1c9 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x63486e1f rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x633dfefa ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x633faa8f pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x634eddb7 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x63528317 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x6354f2b2 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x63680dbb pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0x636f9cc8 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x634ffa71 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x636a7275 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x636ec1a9 edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x638cf366 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x638ebdb5 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6390f73f failover_register +EXPORT_SYMBOL_GPL vmlinux 0x63949391 kvmppc_check_need_tlb_flush EXPORT_SYMBOL_GPL vmlinux 0x63b60084 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63d81254 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x63f3d738 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x63d7e640 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x63ebdcf1 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x63f19154 sched_set_normal EXPORT_SYMBOL_GPL vmlinux 0x63f82be0 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x63fb0bc8 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x6401c7a0 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x640b4b12 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x641555d2 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x640e358d fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x6418789c xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x6428696e sysfs_remove_device_from_node -EXPORT_SYMBOL_GPL vmlinux 0x64367a5d fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0x645109ad vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x6427328a iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x643461ac scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x643625ee lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x64428b78 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x64451979 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x6457fc34 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x6459b8ee inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x645dc268 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x645e8c58 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x64614e91 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x64687559 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6474d627 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6480adbd tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x64898fe3 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0x64972076 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x64b053c3 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x64b1b885 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x64b6e53f __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x64b9bf91 icc_provider_deregister -EXPORT_SYMBOL_GPL vmlinux 0x64c46bca class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64cfb8f7 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x64d15b21 blk_crypto_intersect_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x64d1cb14 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x64d6d01b dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x64d76ccc mmc_regulator_disable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x649e5a66 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x64a8b5d2 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x64aa0b3f clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x64aa744a shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x64aab9ec devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x64aae3fc of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x64c0d728 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x64d95988 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64f0c956 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x64ee401f nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x64f31969 pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f521ee thermal_zone_device_register_with_trips -EXPORT_SYMBOL_GPL vmlinux 0x64f92064 of_device_compatible_match -EXPORT_SYMBOL_GPL vmlinux 0x65028b70 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x65043052 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x6509330b usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x64fb6a6a __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x6503fe75 irq_domain_disconnect_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x652e2238 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x651ff839 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6533299f pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6546a430 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x65385401 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x654f2825 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x655efc6c fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0x6562b9ae devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x6571acc6 trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6573cc22 blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x6578db86 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x6582c5d7 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x6586bcd0 iov_iter_is_aligned -EXPORT_SYMBOL_GPL vmlinux 0x65c1444d tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x6568c8a5 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x656c2de5 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x658104cb crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x658240db gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x658b7e79 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x658be45d key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x6591157f sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6598d734 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x65cc50f7 devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cda177 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x65d536b6 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x65da69f0 pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x65e5e719 cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x65ea3f66 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x65e8bc45 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x66024738 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x66034a5d kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x66044888 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x660a151a watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x662a1bd4 ata_common_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x662f72db fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6626a5db blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x665067e3 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x665b2dfc bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x663ee6b5 pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6666ab02 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x66760be7 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x665f724f fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x667f96d8 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66885fe1 virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x669368aa ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x6695b6f5 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x66a08241 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0x66a1ca99 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x66ac82f4 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x66b53d4a shmem_read_folio_gfp -EXPORT_SYMBOL_GPL vmlinux 0x66b661d5 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x669a3310 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c320b2 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x66d32924 dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x67176bb5 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x67182dcc serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x67219cfd rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x66f53281 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x6703e3ef usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x671da89f vcap_keyfieldset EXPORT_SYMBOL_GPL vmlinux 0x672df0dd thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x6737108d of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x67392e89 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x673ffb76 xdp_features_set_redirect_target EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6758e11d devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x675be4a4 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x67673f9f ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x6781ca6b ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x6744592c vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x6748e6f2 onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x6760c333 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x676c99e9 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x677ccfea dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6789924e class_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67999ec4 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x679b606e thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0x67bef1cd l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x67ade622 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x67d26e07 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x67d7fd90 device_move EXPORT_SYMBOL_GPL vmlinux 0x67d86f1c ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67e03f95 dax_iomap_rw -EXPORT_SYMBOL_GPL vmlinux 0x67f82b0b fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x6800e36b vcap_get_rule_count_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0x6805764d exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x67eb62ce da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x680664da phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x680c07a5 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x6815cea2 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x681e9291 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x6821be13 dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister +EXPORT_SYMBOL_GPL vmlinux 0x682b3eb3 disk_set_zoned EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683a7c30 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x683f41f7 device_store_int EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x684bcca9 gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0x684e9b04 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x685cb93c failover_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68697920 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x685c91c4 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6866a486 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6874a7c2 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6878b92a dsa_stubs -EXPORT_SYMBOL_GPL vmlinux 0x688542eb devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x6885e66e tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x688684a8 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x6892715b __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x68948b55 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689b06f7 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x68a630bd regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x68acb04b skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x68b10f30 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x68b3a50a to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x68bb51da pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x68d498f5 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x68d6b2d8 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x68ef9136 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x68ab48db phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x68b025a8 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x68b81a2e shake_page +EXPORT_SYMBOL_GPL vmlinux 0x68c3c921 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x68c697a8 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x68cb8543 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x68d12469 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x68d884b6 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x68e4ed0b serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x68eb86a3 i2c_dw_prepare_clk EXPORT_SYMBOL_GPL vmlinux 0x6900686f vcap_find_actionfield -EXPORT_SYMBOL_GPL vmlinux 0x6900adbe pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x69051dca device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x69095a0b virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x69094992 cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691275ea wm831x_auxadc_read EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x69245e8b rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp -EXPORT_SYMBOL_GPL vmlinux 0x692a1a6c regmap_write -EXPORT_SYMBOL_GPL vmlinux 0x69324d17 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x693d23b2 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x694bf17a dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x69312b2b ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x6936b579 blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0x695776c5 seq_buf_do_printk EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6969f9c2 get_current_tty EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x69790c10 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core -EXPORT_SYMBOL_GPL vmlinux 0x6985e023 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x699b4712 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x699e65b4 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x6980bbbd io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x698ab650 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6993ffbb fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x699f694b skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x69a0f743 devlink_free EXPORT_SYMBOL_GPL vmlinux 0x69a54b4c xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x69aa61b3 devm_hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0x69aeddef atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x69bb540f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x69beb0e6 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0x69bf91ec anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69c0ceb2 irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69cf0cb2 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x69d3d5d7 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x69e59372 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x69d17012 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x69d51e9d nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x69db1cb1 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time EXPORT_SYMBOL_GPL vmlinux 0x69ebc355 devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69ee77f8 of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x69f18966 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x69fea386 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x6a055ae0 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a0f0823 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x6a1862a8 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x6a0eca41 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6a13d9eb netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a42eca0 from_vfsuid +EXPORT_SYMBOL_GPL vmlinux 0x6a43f0b9 alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4e38ee raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a63f95d nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0x6a6f2f19 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x6a7f7515 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x6a574b28 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x6a61148f dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a61d2da pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a63a366 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x6a7f8be3 device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x6aa07962 is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x6aaf3c88 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x6ab2a1c5 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6ac63c76 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x6ad2c5ac serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x6adee683 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x6ae1c3d9 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0x6b12a55b __traceiter_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x6b13c4d9 pci_msix_can_alloc_dyn -EXPORT_SYMBOL_GPL vmlinux 0x6b145789 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x6b26ffc7 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x6a9eb44c iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x6a9ef6d0 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x6ab15df3 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x6ab2f3bb inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6abe6861 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x6adf71ff irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6ae8d67d xhci_stop +EXPORT_SYMBOL_GPL vmlinux 0x6aede472 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6af16ea9 mpic_subsys EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b3c256a i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x6b330a50 regulator_get EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b49a82e cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x6b5811b8 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x6b5b5c0f usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x6b5b838d vcap_is_next_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6b65e64d of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x6b7d7e20 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b4aa808 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x6b7fb7c2 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b8fb260 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x6b8714d7 clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba55bbe disk_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x6bb73ab1 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6bb52e6e da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x6bb56449 bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8faf usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x6bc9a378 rt_mutex_lock EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bce88d6 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd3c5ec of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0x6bedfddf ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x6bfed016 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x6c154c1c devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0x6c171edb iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x6c196210 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x6bd3ebb1 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x6bebd39d mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x6c16eba5 thermal_zone_get_crit_temp EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c22434e __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0x6c2afc54 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x6c2cd3cd update_numa_distance -EXPORT_SYMBOL_GPL vmlinux 0x6c30ad43 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x6c34bbba vp_legacy_set_status -EXPORT_SYMBOL_GPL vmlinux 0x6c35a0bd srp_stop_rport_timers -EXPORT_SYMBOL_GPL vmlinux 0x6c3accbe ata_eh_read_sense_success_ncq_log -EXPORT_SYMBOL_GPL vmlinux 0x6c3d8d08 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x6c3e63c8 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c4c191b fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c61bfec ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x6c6694a4 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x6c74c9a9 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x6c75413d usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work -EXPORT_SYMBOL_GPL vmlinux 0x6c7be928 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0x6c82558d __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x6c8a5fca cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x6c8a8020 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x6c8c7569 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x6c906aa8 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6c92aa2f thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca9edb5 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6caedbdc ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x6cb44b96 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x6cbb1ff5 devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x6ccc7551 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x6cd12278 spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x6cd6bf0f kvm_alloc_hpt_cma -EXPORT_SYMBOL_GPL vmlinux 0x6cdb5864 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x6ce4c6b7 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x6cf78d8d phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x6ca520c8 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6cb707f0 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x6cb8340d dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x6cca4a53 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0x6cd6be61 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cd7810e of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x6cde2bab blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x6ce0fb3b of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6cebde6a modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6d05910d kvmppc_add_revmap_chain EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d09e009 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1b1583 crypto_clone_tfm EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time -EXPORT_SYMBOL_GPL vmlinux 0x6d2b98dd stmpe_block_read EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d36c35f da903x_write EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi EXPORT_SYMBOL_GPL vmlinux 0x6d4fbca8 srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0x6d552a2b bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x6d5ce053 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0x6d651e65 strp_stop EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d774ec9 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8ba59c rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6d8c18ea free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x6d8d503d cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x6d9331a2 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x6d9b9491 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x6da5b860 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x6daba6eb extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x6db6c5ae platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6da7bd96 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x6dacb88f sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x6dad23f9 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x6db92c2c vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc9551f dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x6dc1744c dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dd98239 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x6ddaf914 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6ded3958 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x6dfd70c5 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x6dd73614 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x6dda5c50 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6deeab6c inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6def4ced hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e027fd4 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e0a9ef1 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x6e13d4c8 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x6e16a216 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6e1fba34 vring_create_virtqueue_dma -EXPORT_SYMBOL_GPL vmlinux 0x6e261487 device_iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x6e27ebcf vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x6e2e7a3f regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x6e321cde fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x6e1a0b3d sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6e237e21 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x6e2e61e7 to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e516277 kvmppc_h_read -EXPORT_SYMBOL_GPL vmlinux 0x6e54dee6 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x6e6917c5 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x6e704ea2 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x6e45b090 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x6e4a5d96 of_alias_from_compatible +EXPORT_SYMBOL_GPL vmlinux 0x6e4e0451 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x6e57ec61 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e750974 bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e85f56d register_cxl_calls -EXPORT_SYMBOL_GPL vmlinux 0x6e889b6f dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e9d4d4a class_register -EXPORT_SYMBOL_GPL vmlinux 0x6e9dfc9f alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x6ea256a0 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x6eaf2cf5 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6eb45673 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec7e09f regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x6ece3497 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0x6ed0701d register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0x6ee698c4 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6eccda84 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ed4901b ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x6ef1d6e6 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x6ef52640 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6efe82cb rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x6f000209 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source -EXPORT_SYMBOL_GPL vmlinux 0x6f0d2554 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f14f74a trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f2e68f1 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x6f36b3ff serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x6f40cc42 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x6f4d9c28 devm_regulator_bulk_get_const -EXPORT_SYMBOL_GPL vmlinux 0x6f5e5a25 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x6f6b0180 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f722ce0 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x6f79fb4d hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x6f6decde usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x6f725e77 devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f82e669 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x6f973052 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x6f9a05da pci_probe_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fab8626 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x6fbf87df dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0x6fcbfc2d regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x6fa353d7 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x6fbf1ecc devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fdd947f bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x6fe4fe41 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x6ff0d389 scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x70019a7c dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x7004a6cc devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x70043a9c fsverity_verify_blocks EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7006874c sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x70079d69 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x70269eee fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x702a5bc2 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x703b1b45 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7030020b pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x7034b692 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x703f8bdd usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x704767d9 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv -EXPORT_SYMBOL_GPL vmlinux 0x70570f3a tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x706c48bc ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x7072af3d ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x70540c40 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x70547d48 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x705746f0 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x706154d5 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x706c6607 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x707125cd ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70804fd3 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x708dcdef shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x707f62c8 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x708874a9 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x709f0ec1 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x70a86dc0 crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0x70aa0764 i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x70ab3fc3 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x70b11cef of_msi_get_domain EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x70c36910 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x70c41297 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70dc5815 ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x70e8744a pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x710b0d94 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x70e498c5 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x70f55bee gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x710e348e badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x711357be usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x71198301 usb_check_bulk_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x711becf0 ip_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x711f4081 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x712cf8e2 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x7137bbe7 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x714fa598 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x71524d05 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x715e5147 devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x7161ae60 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x713e8d0b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x715df37b edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71642db0 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x7188d0f8 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x718335df pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x71881382 iomap_page_mkwrite EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x71989d06 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71b619b8 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71b7d59e bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71cf20a0 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x71d7b9f1 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x71d994a8 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x71dbcfc7 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x71df89ca i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x71f081a2 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x72062065 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x72148e27 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x71c21e6f synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x71c5209d class_register +EXPORT_SYMBOL_GPL vmlinux 0x71cfaf6d edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x71cfd86a io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x71dde81a pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x71e4b06f kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x71eb320d get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x71ee347b unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x71f364d3 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x71fb81b6 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x72057b11 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x721ce8e4 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x722cd5cf pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0x7234ca17 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x726277cc pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x723bcce3 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x723ef182 trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum EXPORT_SYMBOL_GPL vmlinux 0x726a4b5d pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x7275d638 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x727611fa folio_test_hugetlb EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727a10e0 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x727c78c8 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x727e4b85 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x72875e62 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x72a542d0 phy_configure -EXPORT_SYMBOL_GPL vmlinux 0x72a979ab spi_split_transfers_maxwords EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72b1a022 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x72b3c2fa usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x72b8456d mpic_subsys -EXPORT_SYMBOL_GPL vmlinux 0x72c4525a trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x72c67d61 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x72d0da95 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72fd2831 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x73060180 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x7306ad7f ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x72e0784f tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x72e84375 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x72f9a649 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x730a37ff pci_doe -EXPORT_SYMBOL_GPL vmlinux 0x730e9329 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x731bf793 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x731dd6e2 sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x73205ac4 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x7325299a dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x73266a68 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x73386f32 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x733cdfdb mmc_regulator_get_supply -EXPORT_SYMBOL_GPL vmlinux 0x73430576 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x7351f944 ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0x7354ff45 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x73744f31 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x7321226f rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x732918aa get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x732dc833 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x73329f65 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x734545c0 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x734f32d4 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x737895e7 vas_init_rx_win_attr -EXPORT_SYMBOL_GPL vmlinux 0x7379be28 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x73890cc1 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x738d6bcb skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x73924154 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x7395ad20 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x739c9f14 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x737d2026 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x737f8641 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x739439e3 usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73b04306 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0x73c179bb gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x73b36027 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d1997b skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x73d61c5f crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x73cf41c0 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x73d6505e find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0x73d661a7 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x73ecaa6d sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7410633d lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x741630a7 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x73f5d379 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x73f8225e bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7406c22d dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind -EXPORT_SYMBOL_GPL vmlinux 0x741f59c8 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x74286107 pnv_ocxl_map_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x74286e3c ata_port_wait_eh EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x7429b765 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x742c01b6 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x74748894 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x747588c9 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x74305f78 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x7438f4b7 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x743c3164 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x74434f2c blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x74441985 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x7451a1c0 fat_attach EXPORT_SYMBOL_GPL vmlinux 0x7475c512 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x747a6d8f gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x748655cf dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x7496ff7a is_xive_irq -EXPORT_SYMBOL_GPL vmlinux 0x74a37fcc usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7481895c dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x749949f3 pcibios_unmap_io_space EXPORT_SYMBOL_GPL vmlinux 0x74a549a8 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x74a58c9a virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0x74af7e8a fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0x74b01c77 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b61c72 xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74d23fd5 debugfs_create_atomic_t EXPORT_SYMBOL_GPL vmlinux 0x74d25282 __devm_add_action EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74ea1bd7 kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0x74ec8bda gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x74f7bccb clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x74fccaf9 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x750e595e pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x74f6d579 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x750cf558 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0x751f0234 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x753e1415 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x7545da96 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x75296fcd cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7536d6a6 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x753af4e9 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x753c5b95 thermal_zone_device_priv +EXPORT_SYMBOL_GPL vmlinux 0x754081b4 __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x754ba823 trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x754d8f87 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x75503b36 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x7565f54d devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x756e5b16 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x754dbfab usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x754e7680 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x754e8156 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x756524c8 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x756aa1c8 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x756c9990 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x756f20f5 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7571d4f6 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info -EXPORT_SYMBOL_GPL vmlinux 0x758cf85c nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x75904667 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x75809e46 genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0x7584bbfd vcap_tc_flower_handler_ipv6_usage EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759b58fb regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0x759c1ff8 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x75a33b40 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x75a533eb tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x75a1737b exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key -EXPORT_SYMBOL_GPL vmlinux 0x75aad548 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x75aaf7c7 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x75ace4f7 pnv_ocxl_get_actag +EXPORT_SYMBOL_GPL vmlinux 0x75b03bdd regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x75b0c322 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x75b974f5 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x75c0c932 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e5ad5d virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75e9f8b6 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0x76124b7e of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x7632c58e of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x76355ac0 create_signature -EXPORT_SYMBOL_GPL vmlinux 0x7642b144 vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0x764f207f scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x75ecd1c2 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x75f8626d of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x7607a7db ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x76100074 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x76300910 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x7659eca3 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x76649e81 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x76659a42 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x76699f78 mm_iommu_new +EXPORT_SYMBOL_GPL vmlinux 0x76758478 copro_calculate_slb EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7691af24 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x769b5429 devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x769b8633 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7683e690 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x768d987c usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76bd9ab9 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x76c02384 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x76ce3d88 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x76aa0f40 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x76bdc5ca nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x76ca30d2 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e65ab1 cpu_add_dev_attr_group EXPORT_SYMBOL_GPL vmlinux 0x76e9b42d dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x76eac736 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0x76f85b96 user_read -EXPORT_SYMBOL_GPL vmlinux 0x7700f032 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7704d8db rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x7713d869 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x771924d4 io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0x77200b7d ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x77204a30 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x7718f4ff device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7734fed6 mptcp_diag_fill_info -EXPORT_SYMBOL_GPL vmlinux 0x773bbc59 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x774fd53c shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x773cbd9c usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7748775d debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x774b78f3 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0x7752fcee tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7756344c debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776046ee dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x77616aee exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x7777460e sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x77597710 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x77633926 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x77750654 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x778373fa srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x7783c8b8 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779f61ba device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x77a7b423 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x779dbb3f of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x779e3c52 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x77a07597 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x77ac731e noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77cbbf30 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0x77dab0aa trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x77b3940e __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x77d1bddc rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77e8f134 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x77eb8c3b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x77ec8b22 pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x77ede33a dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x77f9281b iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x77ff80d3 __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x78086f20 devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x780d6efc bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x78152bd2 register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0x78152bd4 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x780dc168 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x7823545a crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x7829bbb4 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x78319419 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x7834d481 ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x78493a95 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x784d43ff tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x784dcef8 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x7855f568 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x785b23fb phy_get -EXPORT_SYMBOL_GPL vmlinux 0x78637118 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78643faf crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x786fbae1 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x786fe2bc debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x787d7ed9 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x7881af6d tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x788486f0 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a5fc56 of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x78d3fc01 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x78dadde0 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x78a84dd0 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x78c00e2b stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x78dba2a7 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x78e132fd dev_attr_em_message EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation -EXPORT_SYMBOL_GPL vmlinux 0x79068f08 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x791477ce of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x792e9411 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x7932567a usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x79255f1e phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x792f716f ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x7939d426 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x793c6f66 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x79431559 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x793ed645 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7952b1d8 regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x79550ca3 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x7968414a __traceiter_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x7986c8b1 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x7990eb87 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x79a27b3d of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x79ad41bc led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x79c86723 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x79c8b116 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x79d8dbfe mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x79547797 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x795b0dbe virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x79628ec6 crypto_sig_set_pubkey +EXPORT_SYMBOL_GPL vmlinux 0x79736a5a irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7974dfb2 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x79782b37 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x79ba2e90 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x79c37757 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x79d03c90 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x79d92e68 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x79de46c6 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e82412 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x79e919af uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x79e7f491 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x79ec8c20 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x79ee2514 palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a041309 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x7a259e25 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7a07a52a mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x7a154ff0 __traceiter_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x7a3c0563 dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a41ea3d regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x7a68491e simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x7a714850 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7a48db01 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x7a4a9cc2 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x7a68aa2e tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7a6d4bd0 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x7a7243b1 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a76c093 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x7a7bbe9c debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7a77ff35 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x7a798f3c __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7a7a0fdd phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x7a7f21d1 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a85af26 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x7a923506 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa161ab ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x7aa18056 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7aa32404 dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x7aa99c3d pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x7aade2b4 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x7ac5b343 fixed_phy_change_carrier EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acb5a6e regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x7acea428 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ad26c68 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x7ad957d0 follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x7ada14f3 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7af9d233 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b0733a7 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7b071c6d regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7b08f33c pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7b0bf643 iommu_detach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio -EXPORT_SYMBOL_GPL vmlinux 0x7b27f9b1 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x7b32352a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7b266206 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x7b2790f4 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x7b30260c follow_pte EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x7b539c33 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x7b58a1f7 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7b58f4a6 balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b648290 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x7b6d6183 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7b5f47df devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7b6c8e4b od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available +EXPORT_SYMBOL_GPL vmlinux 0x7b832a60 of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b947b44 devm_pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7ba53933 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x7ba90aaa rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0x7baa031b crypto_alloc_sig -EXPORT_SYMBOL_GPL vmlinux 0x7bac093f validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x7bab4a48 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x7babe77c inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit -EXPORT_SYMBOL_GPL vmlinux 0x7bbca323 cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x7bcda349 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x7be96aea crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x7bc55196 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x7bd0d791 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x7bea45ae devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7bfda29b debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x7c0973a3 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x7c0b066b __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x7c171c70 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x7c1f9f97 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x7c247799 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x7c24ec75 srp_stop_rport_timers EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c30a1ed iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list -EXPORT_SYMBOL_GPL vmlinux 0x7c3a7e6a genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x7c3a2e64 devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c4728fe ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x7c66ad8e dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x7c4592c6 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x7c640084 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7c6414e9 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7c662c88 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7c6bb203 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x7c6e1826 devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x7c81593e balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x7c862940 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0x7c896c1e l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7c8a41de crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7c79b9a6 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x7c837877 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x7c85d11f iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c8f182c __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x7ca76c86 pcibios_claim_one_bus EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cc233bd platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x7cbd1b9d pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x7cbe170f bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x7cc6ac39 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x7cce902d __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7ccfc5f7 pcibios_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7cdddac1 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7ce7954d bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x7ce9624e init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ced6031 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x7cef3225 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x7cfd9d20 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0bb03c of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x7d0991de md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x7d0d3a97 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x7d0e55d6 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x7d0f6b42 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x7d1cc97a register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x7d2f898d generic_device_group EXPORT_SYMBOL_GPL vmlinux 0x7d33a0d5 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x7d3d9e61 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x7d4c1e89 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x7d4d3a5d usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x7d57fb9a net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7d3ef813 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d525941 early_find_capability EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq EXPORT_SYMBOL_GPL vmlinux 0x7d5c89b8 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x7d5d0395 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x7d73cfb2 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x7d6687cd gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x7d6cb301 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x7d6fbb16 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0x7d773372 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x7d7f46aa bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x7da173ce of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x7db07b32 thermal_zone_device_priv -EXPORT_SYMBOL_GPL vmlinux 0x7dc68988 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x7dc9d33f addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x7dd7347f unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d8f27b7 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x7d9093ef ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x7d98703c crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7db561de stmpe_reg_write EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0x7ddd5fd4 idr_find EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7de4cbe6 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x7de442f0 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7de9546e fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0x7debc39f mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x7df59cb8 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0x7df739d8 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x7e07d98e divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x7de728b9 pnv_ocxl_get_xsl_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dec8aa2 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x7e0587e7 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0x7e07f6c7 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x7e0ab580 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x7e0fe641 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x7e14981d rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa -EXPORT_SYMBOL_GPL vmlinux 0x7e1e6957 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7e2b36e8 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x7e21a6ed platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7e2fe4a9 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x7e37c1de of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x7e3b642a ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e3c9bab folio_test_hugetlb -EXPORT_SYMBOL_GPL vmlinux 0x7e55a6e9 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x7e54a957 clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6ad562 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x7e6443dd ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e832869 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x7e8acaae rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7ea9a803 nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec23845 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x7ed36315 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x7ed382f8 usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x7ee9208e devres_destroy EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7eed3dfe scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x7ef1533f pci_free_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x7efd5ce5 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x7f012a92 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0x7f2331da phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x7f3f420b sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x7f47eb40 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x7f482fd9 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x7f709b75 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x7ef9a057 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x7f4046a4 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x7f491fd7 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x7f60293f find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7f77b723 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7d2e11 regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f855275 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x7f88316e srp_attach_transport -EXPORT_SYMBOL_GPL vmlinux 0x7f900dbe of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x7f929c59 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0x7f9a4408 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x7fa8285f wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x7faa1779 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x7faaee08 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x7fb429e6 switch_pmu_to_host -EXPORT_SYMBOL_GPL vmlinux 0x7fb456e6 device_create -EXPORT_SYMBOL_GPL vmlinux 0x7fc22b97 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x7fdffb98 devl_params_register -EXPORT_SYMBOL_GPL vmlinux 0x7ffddde8 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fa36b88 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x7fa50dd5 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fa7adb1 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x7fbf25e4 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fcc5428 blkg_conf_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fdca00d clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fdd902a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7ff76b76 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ff9b27a spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x800a9a0c perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x800e56be cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x801e26d9 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x802e6dd1 pseries_eeh_init_edev_recursive -EXPORT_SYMBOL_GPL vmlinux 0x8037d330 copro_calculate_slb -EXPORT_SYMBOL_GPL vmlinux 0x8046d56a pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x804bba85 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0x805668f3 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x805e2227 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x805e75b4 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x80728472 pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x80322531 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x8032984b security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x803643af msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x8062271e __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x80649d74 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x806d58e4 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x80730ad7 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x80778dfc phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x8079e904 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x807cba92 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x8081e190 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0x808a1652 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x808beda2 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x80825c05 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x808dee4a edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80b9a3b6 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0x80bc8f00 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x80a47213 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x80af3c65 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x80b4f29c regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x80bcc4b2 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x80c0f71b genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x80c1ab56 of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cb602a iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x80d243ac msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dd6e18 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x80e88177 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x80eabbb0 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x80eb761a tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x80f18e9d of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x8103f38f devm_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x8108673c edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x810df4ec __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x810fd3f3 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x81117221 do_h_rpt_invalidate_prt -EXPORT_SYMBOL_GPL vmlinux 0x8111df43 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0x8114593b skb_gso_validate_network_len EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x811f7ccf __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x814ff59a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x81378fe8 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x813d68e5 sysfs_remove_link_from_group EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815fbaa4 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x815c742a inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8164d046 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits -EXPORT_SYMBOL_GPL vmlinux 0x817cc7b8 devl_register +EXPORT_SYMBOL_GPL vmlinux 0x817f079a devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x8186d011 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x81991da7 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x819e6a5d genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x81a29947 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8194ca97 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x81980771 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81a95f1f find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x81b08022 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x81ab2404 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x81b95573 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x81bbe7ae device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x81bc1958 pci_hp_remove_devices EXPORT_SYMBOL_GPL vmlinux 0x81c0a84f rtas_set_indicator -EXPORT_SYMBOL_GPL vmlinux 0x81dc599a vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x81e08f98 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x81d3d11a pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x81d98527 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x81e275ba serdev_device_break_ctl EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e591e2 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x81e6ad65 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x81eb108b ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x81f11e85 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x8201e824 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x8209ac48 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0x82135fc2 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x8216a855 eeh_pe_reset EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8228897b usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x822bb9d9 rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0x823e9e36 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x8245e2cc rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x82461f15 raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0x8259dd91 mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0x8275b78b nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x82784981 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x82992018 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x826e5196 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x8275ccc2 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x827de105 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x82966266 dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x829f9253 spi_delay_exec EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82b6bb33 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x82ba88f5 phy_exit -EXPORT_SYMBOL_GPL vmlinux 0x82d0a520 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x82c69118 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x82d1a91b pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x82d1e444 irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x83035dcd register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x82eda946 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x830e8e17 rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x83151142 kvmppc_h_bulk_remove -EXPORT_SYMBOL_GPL vmlinux 0x8318c2ee fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x831e759a crypto_clone_shash EXPORT_SYMBOL_GPL vmlinux 0x8323159f housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x83296d8b synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x8327738b rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x832b5e4a __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x832b7c45 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x832e48e6 usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind EXPORT_SYMBOL_GPL vmlinux 0x833b5211 mce_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8340eba7 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834a6662 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x834abe7f usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x836b05c4 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x834ef69f debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x834f0b3b __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x835d0c87 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x836fb352 dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage -EXPORT_SYMBOL_GPL vmlinux 0x83823073 irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x839653af pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x838792c6 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x83912d8d pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8393707e usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x83a93f71 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x83b6b3f1 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x83e428f8 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x83ebd1aa blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x83f17650 check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x83fa47af __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x83fd3759 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x83b86f85 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x83c46228 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x83c60dfb of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x83c642c7 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x83cd793c nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x83cf4735 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x83da992e syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x83db1ab4 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x83dcbbc4 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x83f0015b component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x83f2b746 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x83f978de perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x840b1225 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x840c300c rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x840fa08a tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x8414c3ab of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x841ae964 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x8436ce6e regmap_might_sleep -EXPORT_SYMBOL_GPL vmlinux 0x843df590 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x84427372 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x8444f68b clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x84492637 blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0x844d73e1 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8452ff7e dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x84575c14 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x845d9402 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x845ea9ce copro_flush_all_slbs -EXPORT_SYMBOL_GPL vmlinux 0x84608a4f pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x847075a2 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x8475c1ed rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x84813712 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x848527c1 devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x84904b78 badblocks_show EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84a9b3ac virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x84ac6973 xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x84ae1af5 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x84af1a5f mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x84ec050d ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x84ef1322 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x84d28c82 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f70262 crypto_sig_set_pubkey +EXPORT_SYMBOL_GPL vmlinux 0x84fe8fe1 vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x8506eaa7 extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x850c3e20 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x85171905 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x851a67fc devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x851db999 blk_mq_unquiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8522b9ed irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0x8523539b fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x8529adac virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x8553cf47 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x852c86f9 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x852cd654 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x852e8168 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x85338f7b mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x853e0c05 ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0x85499556 device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x855dcd5f pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x855df349 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x8561cfdc usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x8579049a rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x857f56c9 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0x85878436 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x855897fe device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x85732727 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x858c094f vas_register_api_powernv EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder -EXPORT_SYMBOL_GPL vmlinux 0x858ea65d device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x85a63fc6 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x85bd8990 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x85c57353 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x859808ab kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x85b6dd87 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x85c147a0 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0x85ca848e nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x85cab1e0 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x860d7349 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x860fce00 nf_ip6_check_hbh_len +EXPORT_SYMBOL_GPL vmlinux 0x85d7f367 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x85f87f26 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x86035217 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x86168c13 screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x861ae2d9 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x863d7617 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x86323e63 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x8642e57f blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x864564c1 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x86499480 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8657829e dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x866bb488 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x865922af phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x865b2790 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x865e1fe3 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x866aba66 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x866bf959 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x866c726e gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x867f2235 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x867a2c1e __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8680145d of_reserved_mem_device_init_by_name EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868ab2ee crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x86a8c032 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x86d0bd93 devl_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x86d530a7 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x86a11ad9 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x86a38ded crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x86b2e211 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x86b7e083 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x86b87375 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL_GPL vmlinux 0x86dd9e25 led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f84d25 fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x86fec742 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x87126d74 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x873a6acd gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x8744b70a edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x8749638b regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x87032cc1 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x87080b8b platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x870927ff ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x872643ab phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x8744bc94 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x87498f41 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0x875c0d4b __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0x87841e72 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x87976fd4 regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x879f0239 filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x87b136a8 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x877e720c usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x878f77d9 ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x87d1fab9 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x87d747c6 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x87f7b52c sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x87f8dc3b da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x880369b8 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x88091e84 inet_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0x88126a62 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8820f772 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x882ae8a0 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x87bfe9df devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87e50e1f pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x87e8307b ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x87f6fac7 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x87f71d28 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x88089c81 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x881c0974 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x8827dc4e thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x882dab09 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x88309375 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x88390829 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x88380c35 sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0x8840fbe9 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x8850ba72 pci_remove_device_node_info -EXPORT_SYMBOL_GPL vmlinux 0x88522491 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x88486f34 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8871c033 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x88867586 class_is_registered -EXPORT_SYMBOL_GPL vmlinux 0x88899b8c wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x885d0fc0 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8864c477 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x88738d0f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x88797cfb access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x88889c97 devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer EXPORT_SYMBOL_GPL vmlinux 0x8896df7d mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x889fbffa regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x88a96605 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88aeaa43 usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88bc9bcc dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x88d5d114 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x88d9adf1 devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0x88dee351 register_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x88e3fa3c vas_paste_crb +EXPORT_SYMBOL_GPL vmlinux 0x88df16a9 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x88e5fb2a divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x88e950a0 regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x88f97bd6 of_platform_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x890b10c2 device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x890df948 dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x891b3e14 tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8926c897 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x89276828 relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0x893a85d3 ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x894ce76a pinctrl_generic_get_group_name EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x89773bdd sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x898e73a8 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x89901ebe ata_slave_link_init -EXPORT_SYMBOL_GPL vmlinux 0x89ae6f57 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x896621f3 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x896d2aa3 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x89864eff device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x89882fba uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b37087 pm_relax EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89c1810e bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x89cabd88 device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x89e73ca2 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8a025566 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x8a06451d sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8a3603ab irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x8a37edca genphy_c45_plca_get_cfg -EXPORT_SYMBOL_GPL vmlinux 0x8a3ced91 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x89c949b6 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x89d90a61 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x89da341f dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x89f7b7ba wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x89ff69ad __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x8a0ed205 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a1a4a17 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x8a1edefb fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a458310 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a72d864 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x8a7c4c45 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x8a7c714c of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x8a7ce48b regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x8a7e1a94 iommu_device_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a8b6fb9 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x8a8d71ce mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x8a9112a5 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x8a9331e9 pci_find_doe_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x8a909906 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x8a93d98c sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x8aad2a5f acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x8ab5539c __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x8aa28c6f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x8aa426ac gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8aa8f0cc mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x8ab2736b tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac13401 of_get_named_gpio EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ac9c9e2 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x8ad21950 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8ad51a30 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x8aed6026 vp_legacy_set_features -EXPORT_SYMBOL_GPL vmlinux 0x8af224b6 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x8afd13cd device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x8ac8a826 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x8afad252 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b027335 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x8b1492f9 usb_hub_clear_tt_buffer EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1a1d65 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x8b2100ee wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x8b3716c6 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x8b1e776a sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x8b24af1e rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x8b2b1323 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x8b4100aa rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x8b42ddf0 usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0x8b487f00 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x8b566478 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x8b48d08f nf_ip6_check_hbh_len +EXPORT_SYMBOL_GPL vmlinux 0x8b48f86a dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8b584823 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x8b5e3839 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x8b61e5e8 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8b69f796 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x8b6ab28b tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled -EXPORT_SYMBOL_GPL vmlinux 0x8b97fefa debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x8b9fbd1a rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8b7dfdcc vcap_tc_flower_handler_tcp_usage +EXPORT_SYMBOL_GPL vmlinux 0x8b83ead9 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x8ba05987 vcap_chain_id_to_lookup EXPORT_SYMBOL_GPL vmlinux 0x8bace729 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x8baf4b92 __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x8bb8463a of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x8bb8f751 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x8bb2acea do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x8bbe527c __tracepoint_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8bc42e64 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x8bcf21e2 crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0x8bd75c7e xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8be61ffe sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x8bcea891 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x8bd4a7a0 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x8be88d5d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x8bf77937 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8bf95c81 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c0358cf vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06c793 spi_sync EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8c0e9a2f vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x8c0a18ac dev_pm_opp_get_max_clock_latency EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c1f4310 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x8c23afd5 sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x8c281e6e mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x8c3206da irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x8c4407df iommu_device_link -EXPORT_SYMBOL_GPL vmlinux 0x8c48ccc2 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8c0edb56 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c11655d md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x8c23f693 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x8c52dd7c __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x8c5f2583 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x8c6a3569 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x8c6b77ed pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x8c622fa4 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x8c705606 vma_kernel_pagesize EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c74ad1a devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x8c768294 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x8c81fc37 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x8c884209 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x8c75a641 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x8c774162 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c7ac265 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8c7c1053 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8c85ad95 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c931f99 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x8c9429c1 __fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x8c984e52 devm_blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x8c98ceba __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9bf9e4 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext EXPORT_SYMBOL_GPL vmlinux 0x8ca20266 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x8cae4ce7 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x8cae8e53 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x8cbc0842 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x8cbed551 vcap_tc_flower_handler_arp_usage +EXPORT_SYMBOL_GPL vmlinux 0x8cbf6df6 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x8cd94f86 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x8cfad231 ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8cffadea register_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x8d031f51 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d0a6596 blkcg_punt_bio_submit -EXPORT_SYMBOL_GPL vmlinux 0x8d14ebb9 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x8ceb63ad blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x8cedb90e scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8cf168cd of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x8cfb9317 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x8d0987ac dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x8d185679 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d2b8454 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x8d326540 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x8d2dcc0a of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d3523f1 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x8d6095b7 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d3f18db fsverity_get_digest +EXPORT_SYMBOL_GPL vmlinux 0x8d4730b1 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8d4829cc fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x8d48d433 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x8d508737 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x8d520dc1 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x8d588848 cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches -EXPORT_SYMBOL_GPL vmlinux 0x8d703cef blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8d6de951 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d7ff63e crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8d9a584f device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x8d9aaf14 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x8dacd3eb sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x8dbd82df msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x8d9db07a get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x8da020f5 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8da5d21e tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline -EXPORT_SYMBOL_GPL vmlinux 0x8dbf6975 perf_report_aux_output_id -EXPORT_SYMBOL_GPL vmlinux 0x8dc3f5c1 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x8dcc8ce8 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8dc392c8 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x8dc5d393 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x8dce284b xas_split -EXPORT_SYMBOL_GPL vmlinux 0x8dceb48d ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8de713ba xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x8de747bc ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x8df2d93e fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x8ddb1c2d ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8de083b9 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x8de12457 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8dea307a pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x8deb21c1 pinmux_generic_get_function_groups EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0x8e13741c devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x8e13b2cc serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0x8e203909 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x8e230b72 fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x8e2ec605 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x8dfe45f1 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x8e172e43 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x8e22dafa ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x8e31cd5e led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x8e3c1b48 device_set_of_node_from_dev -EXPORT_SYMBOL_GPL vmlinux 0x8e45458c gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x8e4b2b0a devl_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x8e4bbccf fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x8e38c6f5 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x8e393528 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e519813 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x8e57ecdf fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x8e60c6e4 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x8e56aaa0 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e780d22 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x8e81d7f0 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x8e9c334d debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8e850ce6 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8e95700e fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x8ea360b9 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eaeb101 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8eb7331a blk_rq_poll -EXPORT_SYMBOL_GPL vmlinux 0x8ecd2054 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x8ed8e218 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x8eb81fd9 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x8ec2371b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ec25169 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x8eda801e generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x8edb770e vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eed9731 pnv_get_random_long EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef5e68b blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x8ef8ab41 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x8ef8d419 component_release_of -EXPORT_SYMBOL_GPL vmlinux 0x8efb95eb devm_mipi_dsi_attach EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start +EXPORT_SYMBOL_GPL vmlinux 0x8f01ff90 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f13ad7e fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x8f325821 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x8f3759f3 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x8f382280 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x8f3f8dea pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x8f34493b nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x8f373d44 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0x8f4f5b83 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x8f581eef ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x8f63a0e3 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x8f6856ec vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f783951 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f78d03d ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x8f7e044b iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x8f9727ea tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x8f9ee84c gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x8f823c04 ata_eh_read_sense_success_ncq_log +EXPORT_SYMBOL_GPL vmlinux 0x8f823e42 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x8f874da6 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x8f8a9e23 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f90965a fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x8fa2f839 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x8fa787ed fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x8faecdc7 of_get_display_timings EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release -EXPORT_SYMBOL_GPL vmlinux 0x8fb2de9d irq_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x8fb81959 cpu_add_dev_attr EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc32edb crypto_akcipher_sync_post -EXPORT_SYMBOL_GPL vmlinux 0x8fc5f55f of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0x8fc72cfa br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0x8fc7dbe3 blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x8fc8dd7c blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x8fd323cd gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x8fd6774f usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x8fde97f6 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x8fe0cdbd devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points EXPORT_SYMBOL_GPL vmlinux 0x8ff6faf5 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x8ff9dd80 spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x90269770 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9027bb14 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8ffef46e mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x90027ec2 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x901fb15a em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x9025a17d devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0x90388779 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90454aa9 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x904bd42c i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x904c9610 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x904efa6d virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x90599e97 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x90645e07 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x906d773d blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x907ecab9 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x903e5149 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x906ae0e3 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x907e76b7 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0x907ffb62 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x908924d2 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x90ad11ca shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x90c5219f genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x90c5e8a9 eeh_iommu_group_to_pe -EXPORT_SYMBOL_GPL vmlinux 0x90da5072 sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x90e3aff6 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0x90ebb2ae i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x9116e0df fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0x91192113 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x90974509 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x909e19f6 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x90b1d026 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x90cf3daa ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x90fe8821 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9105577a init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x910789da __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x911d18ae dev_pm_opp_of_cpumask_add_table EXPORT_SYMBOL_GPL vmlinux 0x9129a855 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x912a43eb sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0x912fbc5e bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x9146ccb2 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x9154fff4 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x91583976 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x9158c927 fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x91654e88 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9143550b sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9167bb31 irq_gc_unmask_enable_reg EXPORT_SYMBOL_GPL vmlinux 0x9168c033 rtas_get_sensor -EXPORT_SYMBOL_GPL vmlinux 0x91785620 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x916af71c pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x917900d8 phy_modify EXPORT_SYMBOL_GPL vmlinux 0x917d9939 devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x91925ba3 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x9192cd85 cpufreq_enable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x919f2a88 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x91a38078 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x91a0b22f ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91c185b0 genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c884e7 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x91d0ddca devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x91d40441 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x91d85319 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x91d883eb crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x91dfcbfb fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x91e02d1c crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x91e8f682 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x91d7d7bb edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91ebf993 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x91ee0b22 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x91fc1566 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x91fdd366 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x9203e011 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x920886c3 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x92187e61 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x922a74e5 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x922eb5ad da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x92374b5a unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x9214ef06 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x92402314 devl_unregister EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9248cafb __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924d1a2d __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x924dd6df ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x924dec23 mm_iommu_get -EXPORT_SYMBOL_GPL vmlinux 0x9254255b pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0x925604a9 blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0x925bbe78 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x925cc9a0 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x9269c20c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x925c9360 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9261dae3 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x926232d9 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x92762db2 perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x927f050a power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x929d88b6 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x929e68a9 device_move +EXPORT_SYMBOL_GPL vmlinux 0x9292f5c9 addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter EXPORT_SYMBOL_GPL vmlinux 0x92a13e8e __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x92a2defd tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x92a2fdb0 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x92a86d03 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x92aa373b idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x92aa618f dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x92ae3c57 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x92b1f1b5 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x92bc90d9 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0x92bd1588 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x92be12a4 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x92c40e9e sdio_writew EXPORT_SYMBOL_GPL vmlinux 0x92cb609e __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x92cc9311 device_create_file EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92d97cb4 pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e576e7 is_pnv_opal_msi EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92ebb23f dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x92f0aa28 opal_tpo_write EXPORT_SYMBOL_GPL vmlinux 0x92ff0bcb kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x9312deed dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x9303ce0b devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x93188c64 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x9319a39b devl_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0x931ac7c0 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x9322e7b8 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x931c0300 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x931cc421 irq_gc_noop EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x9327c693 freq_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x9331cc6e rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x932cd59f dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x9332a568 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x933894e6 of_get_pci_domain_nr -EXPORT_SYMBOL_GPL vmlinux 0x933b217c pci_epc_linkdown -EXPORT_SYMBOL_GPL vmlinux 0x934314f4 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x933b0697 irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest -EXPORT_SYMBOL_GPL vmlinux 0x934d43ef usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x93505520 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x9356abeb nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x935644df crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x935b8929 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x935dd52c transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x935fe2d0 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x935de91b genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p -EXPORT_SYMBOL_GPL vmlinux 0x936d4102 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x936ee4cd xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x937570c1 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x9364573a of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x9364b542 device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0x937db55a dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x938cf9d8 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x938ec28a xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x93b4597e hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x93bcc595 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x939e88d4 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x93b2dd6c vas_win_close EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x93cf528d balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x93ce8125 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x93d60e75 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x93e4cb4a irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x93ea3d50 regulator_set_soft_start_regmap EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93f518d1 wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x93f61525 vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0x9400f82e inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x94078c72 __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x94097484 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x9410465b register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x94161a4f ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x9430ccfc tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x94343e05 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x94393de0 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x94413f94 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0x9448421b clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x9455edf4 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x943f4123 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x94530eda cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9459293c ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9459df5b usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946cb49c mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9471e0c5 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x94785700 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x948dd5bd pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x948f2f7e clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x9494bc5c devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x9489089f blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x948e4ec7 uhci_check_and_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949c9df1 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x949d46d1 kiocb_modified EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a0d3f4 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x94a64e83 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x94aa5117 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x94aea06e perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x94aef91f device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x94b58daf led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x94b63111 pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x94bbb62f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x94bcca92 switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0x94c0d186 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x94ca2f52 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x94e2a64e eeh_pe_configure EXPORT_SYMBOL_GPL vmlinux 0x94e927e4 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x94e96c9c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x94eb83d7 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f289a9 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0x94f64aa5 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x94fb09ca devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x94fc10ac msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x94fe7157 cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x951849bc gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x9532c7e0 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x95380486 iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0x953cc43f devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x951d25c8 dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9550c8c5 max8997_write_reg -EXPORT_SYMBOL_GPL vmlinux 0x95533a19 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x9556a62b spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x9541b8c9 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x954afe00 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955e00df debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x955d51a1 usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956c63a4 vp_legacy_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0x95774e27 ip6_input EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958ac305 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x958d8851 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x958dad57 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x95928554 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x959682a4 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x95973773 synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x9597d2a3 dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x959cd55a perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x959cf8fc eeh_pe_configure -EXPORT_SYMBOL_GPL vmlinux 0x959f63cb dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x95a25b34 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x95a2c6d7 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x95a93774 scsi_block_targets -EXPORT_SYMBOL_GPL vmlinux 0x95b66db0 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x95b0fac1 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95d3ac5a usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x95dd687b hash_page_mm -EXPORT_SYMBOL_GPL vmlinux 0x95df3813 fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x95e41ee3 security_kernel_post_read_file -EXPORT_SYMBOL_GPL vmlinux 0x95e69836 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x95f34656 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0x95f6271a usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x960824aa crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x96089564 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x95cabadb pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x95ed2621 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x95efa769 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x95f2b772 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9606729f pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x960a665b usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x960a9d46 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x96291884 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x96372a9a l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x961668d9 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x96243312 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x9624facc iommu_tce_xchg_no_kill +EXPORT_SYMBOL_GPL vmlinux 0x964bf7b9 irq_of_parse_and_map EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9658cc94 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x9656ab30 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x96619380 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x96680066 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x966a24ff regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x966b0f3a __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x966b4580 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x966e66eb dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0x966f703e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x966d831f nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x96700ca6 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x96761d6a __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x96785ecb fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x967c0b30 analyse_instr -EXPORT_SYMBOL_GPL vmlinux 0x9685b332 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x968b9e90 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x967ebc59 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x96830a9c kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x9688b5c0 devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x968d024f mas_destroy -EXPORT_SYMBOL_GPL vmlinux 0x968da22f blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x96ab3409 cxl_afu_put -EXPORT_SYMBOL_GPL vmlinux 0x96b5d564 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x969bc14d handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x969f4220 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x96a37006 of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift -EXPORT_SYMBOL_GPL vmlinux 0x96d4ad7a tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x96efdf5e event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x96f1b2f7 __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x96f84082 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x96daa835 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x96eab1b2 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x96f3ce51 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96fe3a64 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x97067ae7 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97156fc6 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x971ad5c7 devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x971c2508 devl_linecard_create -EXPORT_SYMBOL_GPL vmlinux 0x973551ee thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x9737cd38 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x973ea178 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x975079ad nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x974758f1 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x97532536 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9772e6f8 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x97805f26 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x9786933b devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x978771c6 iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0x978ef19d fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x97b404c6 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x97bf4c05 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x97cbd1b3 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x97cd5b8d scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0x97d15dcf usb_put_intf -EXPORT_SYMBOL_GPL vmlinux 0x97d30263 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x97595ae2 scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0x9766f4f4 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x97789450 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x97b3baa4 crypto_sig_set_privkey +EXPORT_SYMBOL_GPL vmlinux 0x97c98388 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x97ce96cf ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97f9302f blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x97e3b284 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x97e734a7 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x97ed8f89 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x97f4abc9 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x97f8ef37 usb_get_role_switch_default_mode EXPORT_SYMBOL_GPL vmlinux 0x97fe11b3 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x98157e7b devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x980bb924 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x981acc00 divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x9823ae97 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x98318fc2 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98423697 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x984e6289 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x984f698a fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9854d956 rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0x9855a697 opal_xscom_read -EXPORT_SYMBOL_GPL vmlinux 0x9865c4f2 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x98694f99 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x986b832f inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x986baf69 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x986a03e5 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x9875c6af tcp_splice_eof EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x987ddd94 clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x987ed7db pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x988c4478 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x988648ec skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x988f051b clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98a86eda bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x98abe950 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x989367cc kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x989cc670 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x98a10049 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x98abb7f8 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x98c5c870 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x98e42524 __trace_trigger_soft_disabled -EXPORT_SYMBOL_GPL vmlinux 0x98e7b11b tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x98ec5cee __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x98e9be56 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f6abc8 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x99137bb9 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x99292afa irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x99388915 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x9948860b sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x991210ec crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9924a59d crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9933f02c dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x99393b1b failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x994968d3 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x994caf96 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x995230bc proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x9953acdb pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x99550dfe ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x9956d4a9 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x995a6d82 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x995e40f4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x996ff144 dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x9986cabc hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x998cbede kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x99889a6c wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x9988f42b devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x998e460f fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x99916edf mm_iommu_preregistered EXPORT_SYMBOL_GPL vmlinux 0x9997030b pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x999ba6a1 ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99aa9d58 regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x99b01d68 gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x99b115b7 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x99b98564 balloon_mops -EXPORT_SYMBOL_GPL vmlinux 0x99bdd153 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x99cf235e phy_put -EXPORT_SYMBOL_GPL vmlinux 0x99d284c2 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x99d8c521 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x99b288c5 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x99b7f9ff iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x99cb91b1 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x99d06575 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x99de3510 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x99e607df sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x99e83f2c dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x99f00203 devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f2f176 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0x99fedf13 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x9a019084 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x99fcd687 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a0d1b34 backing_file_open EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a3acd42 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x9a445731 priv_to_devlink -EXPORT_SYMBOL_GPL vmlinux 0x9a7cb812 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9a7e87b6 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x9ab5bf1a fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0x9abdb213 devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x9abf7509 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x9a200616 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x9a2198fb blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x9a414f91 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x9a4947a1 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x9a4c3a1d fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x9a5e0a55 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9a61ab73 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x9a82e391 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9a9c6ba5 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9aa255f4 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x9ab7c4b7 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9ac58f15 __tracepoint_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0x9ace4357 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x9ada7ed2 group_cpus_evenly EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize -EXPORT_SYMBOL_GPL vmlinux 0x9ae7fdde usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9ae5f8fb __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af026c5 pnv_ocxl_get_xsl_irq -EXPORT_SYMBOL_GPL vmlinux 0x9af1b1f5 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x9aee3f7a __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9af48a52 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw EXPORT_SYMBOL_GPL vmlinux 0x9af9ae0d devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9affb035 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x9b06c664 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x9afcdd08 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9b030197 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x9b076914 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b0883f7 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x9b130ca5 h_query_vas_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9b146705 dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0x9b147bc9 save_p9_host_os_sprs +EXPORT_SYMBOL_GPL vmlinux 0x9b15e50d of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x9b1ca546 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9b1d9244 devl_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x9b2022c7 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x9b2be5c9 msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b5ca46e mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x9b670b71 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x9b6a083e regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b86b41d vas_rx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x9b6f48b9 vas_rx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x9b6f6323 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b7f522f __skb_zcopy_downgrade_managed EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9bad3ef2 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba7cb1a irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0x9bb3fcd1 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9bbbbe75 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9bc1d407 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x9bd25e48 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x9bd5e700 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x9bde79bc xive_tima_os EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x9be1a477 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bef02c6 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x9c153ad8 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x9c1f8738 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9c205a5c inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x9c2201ef nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x9c3bfa86 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x9c4f498d nvmem_layout_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9c552fe9 blkg_conf_exit -EXPORT_SYMBOL_GPL vmlinux 0x9c582c37 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x9c59b3a4 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c0fceaf rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x9c25ef07 crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0x9c2b51fe i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x9c2d4c41 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x9c2df247 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x9c35e7d9 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9c443e7a iomap_release_folio EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7db415 phy_driver_is_genphy_10g EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c8304c1 genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0x9c8e8aa0 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9c954847 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x9ca213ce tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x9c932507 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9ca13036 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x9ca3c1f2 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x9cb34284 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9cbe73f2 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals -EXPORT_SYMBOL_GPL vmlinux 0x9cece1d2 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x9ced5e29 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x9cdef832 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x9cdf6a91 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x9ce9bfb8 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf9e1e5 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x9cf44521 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x9d009f0d rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d169fa8 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d11dd45 ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0x9d1b105a sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x9d2d3f5b pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d31fe67 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x9d3521c8 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x9d57f620 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x9d59f0f7 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x9d5d7bc0 icc_put -EXPORT_SYMBOL_GPL vmlinux 0x9d5e6169 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x9d6ec660 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x9d87ff3a device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x9d8b9c27 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x9d48fb54 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9d491e9f devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x9d4b4ae7 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x9d5851bb nop_posix_acl_access +EXPORT_SYMBOL_GPL vmlinux 0x9d607bdd public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x9d79145c pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0x9d7f3457 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x9d8126ab pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9d861736 pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d8fc0e8 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x9d9c9406 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x9da613cd buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0x9de0c43e eeh_pe_state_mark +EXPORT_SYMBOL_GPL vmlinux 0x9d91c07c debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x9db32485 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x9db775ab unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x9dbe7e55 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x9dc4a793 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x9dd94b58 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x9dea732c acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9deeb490 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9e031b98 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x9e045823 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x9deeffae ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9e14bd0d ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0x9e15f631 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x9e193241 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x9e1dc2b4 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x9e109916 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e17c225 pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e2aeb9b zone_device_page_init -EXPORT_SYMBOL_GPL vmlinux 0x9e37356f blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x9e4072f1 devlink_register EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field EXPORT_SYMBOL_GPL vmlinux 0x9e4e22eb devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x9e52f37e vcap_rule_mod_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9e5bc3fc pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x9e76b4d9 __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x9e8a615f pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x9e9be8b0 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9e572e34 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9e64702c genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x9e6fbad2 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x9e74c6ab usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x9e7fde85 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x9e7ffa12 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x9e8b4739 compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9e9f7ee1 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x9ea14b9f regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9ebf8d62 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x9ea149bf update_numa_distance +EXPORT_SYMBOL_GPL vmlinux 0x9ea8bd83 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x9eb7c4c0 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x9ebbf200 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x9ebfb9ce tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest -EXPORT_SYMBOL_GPL vmlinux 0x9ec708be public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x9ed4cd8d bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x9ed2d941 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed6d210 clk_hw_forward_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x9ee10f97 user_destroy EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eefd582 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x9f03ea37 pci_alloc_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f143cc7 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x9f3fc933 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x9f4dc97b scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x9f0e6bc0 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x9f2bf503 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x9f475fe1 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x9f4a97fc of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x9f4d7cd1 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x9f52608e devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0x9f54fb4e devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x9f556516 max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f8332c2 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x9f8cac4f vcap_is_last_chain -EXPORT_SYMBOL_GPL vmlinux 0x9f9a8503 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x9f5fa627 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9f6119ce crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x9f6942ec vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x9f6c7967 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x9f6ec04d dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x9f72519a kvmppc_h_protect EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9faebe34 kill_device EXPORT_SYMBOL_GPL vmlinux 0x9fb996a7 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x9fbb2b56 __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x9fbe1787 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x9fc58410 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fe829d2 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x9fe76999 devm_mipi_dsi_attach EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff5a71a eeh_pe_set_option EXPORT_SYMBOL_GPL vmlinux 0x9ff60120 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9ff67d83 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x9ff76480 devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x9ff8151b driver_set_override EXPORT_SYMBOL_GPL vmlinux 0x9ff9984c devres_find -EXPORT_SYMBOL_GPL vmlinux 0x9ffcc2ad bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xa0052775 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa016c650 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xa015bbed mm_iommu_newdev EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01b8ce1 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0xa02b654f pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xa03213a0 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xa03e0e3d synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xa04a4b04 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xa04eb336 crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa06256bc vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xa0645cca fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xa069e842 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xa06ab590 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa076c79a devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa0824dfe devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xa08337ed btree_init -EXPORT_SYMBOL_GPL vmlinux 0xa08bf06e usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa0990f7d of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa0b3cd28 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa0c44a78 crypto_sig_sign -EXPORT_SYMBOL_GPL vmlinux 0xa0cf1ecc set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xa0d1a250 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xa0844a22 kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xa0b6cd50 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa0bfc69d regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0df24da xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xa0f67088 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xa0fca43e irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xa107f006 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1137115 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa11cbcd9 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xa125ee56 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xa0e4857b fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xa0e868b1 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xa0eff54c da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa101df02 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xa103293e regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa11aa2f3 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xa11f6494 dma_opt_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xa13b2962 pnv_ocxl_tlb_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xa1432199 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xa144d5bb lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa14da495 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xa156abc5 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa158116c bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0xa17bcafb fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xa161518e ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xa1660943 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xa16ac565 is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xa184d5f2 mmu_vmalloc_psize EXPORT_SYMBOL_GPL vmlinux 0xa185b2ea inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0xa188feba devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0xa18dedfb pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xa1895631 rio_free_net EXPORT_SYMBOL_GPL vmlinux 0xa19561fb __SCK__tp_func_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa19634b4 early_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xa1975f5f pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xa1b6de0d genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xa1c0121b dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xa19f2b91 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa1a85f6b debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa1a85fe5 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xa1be6b68 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xa1c1bdcd rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1c62515 __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xa1c69660 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa1d71dee scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1def852 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0xa1eace17 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xa1ed135f tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xa1f1b10a ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0xa1ff9a50 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa1fd9ccb wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa1ff5117 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xa2052e4a kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0xa206b85e pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa23a76ac firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xa2347257 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xa23b6aa2 ata_sas_port_destroy EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa2450c5b netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa249510a irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa255eee6 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xa256c605 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa25e266f tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0xa26340e2 key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xa268336f ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa270f35d mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xa275bcd8 clk_register -EXPORT_SYMBOL_GPL vmlinux 0xa27adacd usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xa29409d2 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa27a4c60 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa281142a ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xa2817c83 net_failover_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa2843b0d __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0xa290a850 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info -EXPORT_SYMBOL_GPL vmlinux 0xa29a2903 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xa2a8ced9 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2b18420 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xa2b7cb20 sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter EXPORT_SYMBOL_GPL vmlinux 0xa2c3e457 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0xa2d73f0c vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xa2dc536d dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers EXPORT_SYMBOL_GPL vmlinux 0xa2e371c5 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xa2f9146d serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0xa3079b9c mmc_regulator_enable_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xa31be0ad pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xa325ca8c device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa32809ea regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xa329b396 usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0xa32b9d9a of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xa31e5a19 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xa32a32f1 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xa32e0b85 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xa33d91a8 btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0xa352d912 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0xa36a6e45 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xa3545420 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xa355fda3 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0xa36ce42b devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0xa36efdc4 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa381dd0e fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xa3795977 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa37d75c0 dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0xa382a645 init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa387f1a1 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38b3bff wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xa39b76ec skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a24081 driver_find EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3cda5a4 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0xa3dfb20a iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xa3c51f3b i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa3d4e04e dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa3e146f1 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0xa3e4d6f7 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa3e50e00 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3ef6318 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f456e0 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xa3f58c6b serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xa3f97c61 devl_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xa3ffc2ed dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0xa4038e89 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xa4062a57 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa406a0a7 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xa40a12ae alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa40f8d32 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa419cb8d ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xa41f92e4 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0xa4223174 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0xa435f091 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xa438c9dc regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa43f59c7 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xa42c951f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa42f3c37 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa44aa6ef powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xa44c429b find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa4586ab7 nvdimm_region_delete EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa46348c4 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xa46b9dad devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa472c21b ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48aacd4 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa497007a mm_iommu_put -EXPORT_SYMBOL_GPL vmlinux 0xa49839f3 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xa48dd8db irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xa49aff04 tpm_get_timeouts EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c6d5e2 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa4e2639c rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0xa4e56d49 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0xa4f8862f sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0xa501ed05 icc_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xa521a1ce cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0xa5257673 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xa526af4b platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xa5285fa7 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4d094e7 usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xa4d50648 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4e5d02a wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4f38ccd bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xa4f3ef30 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xa4f74794 of_css +EXPORT_SYMBOL_GPL vmlinux 0xa4fcc7e1 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xa4feda5f l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xa500bef7 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa50e763f ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xa523ee0d switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa537dad3 ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xa53e9d8e ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0xa545f118 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa534d0ae ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa53c907e blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa55e7bb1 kvmppc_set_msr_hv +EXPORT_SYMBOL_GPL vmlinux 0xa55d8167 vcap_tc_flower_handler_ethaddr_usage EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xa56fb711 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xa57f257a perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xa5a2e913 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xa579a5e2 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa57df289 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa581bb5a rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xa58d9bb5 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0xa59b0e10 __fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xa5a45aff wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xa5a4892f regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5ad8f24 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq -EXPORT_SYMBOL_GPL vmlinux 0xa5c45325 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0xa5d10b4e phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e78d50 kernel_file_open -EXPORT_SYMBOL_GPL vmlinux 0xa5ea59d5 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa5ddf28c sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full EXPORT_SYMBOL_GPL vmlinux 0xa5f66070 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xa5fe8bc1 pci_traverse_device_nodes -EXPORT_SYMBOL_GPL vmlinux 0xa5ff2928 hte_ts_get -EXPORT_SYMBOL_GPL vmlinux 0xa5fff34e tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xa602d623 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xa5fe3f0b PageHuge EXPORT_SYMBOL_GPL vmlinux 0xa612469b mas_find_range_rev -EXPORT_SYMBOL_GPL vmlinux 0xa61b8a2b ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xa6303ebd udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xa6258032 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xa6430d5c fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0xa64317ef devres_release -EXPORT_SYMBOL_GPL vmlinux 0xa645d2f0 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xa64d7823 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa66453b0 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa66a91fb fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xa66daaec ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xa6724d24 paste_selection -EXPORT_SYMBOL_GPL vmlinux 0xa68428e3 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa69702fa tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xa6990212 access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xa69c0c48 irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0xa69d2f21 device_register +EXPORT_SYMBOL_GPL vmlinux 0xa645ddcd irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xa65a5d96 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa65f97a4 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa660e046 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xa6647be8 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa6778ff0 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a7844d input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa6a3b8a7 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xa6a82c91 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0xa6a8e33d devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xa6a8f117 divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xa6bd200b sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xa6bf8f1d vas_tx_win_open -EXPORT_SYMBOL_GPL vmlinux 0xa6bfe039 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa6c16ac9 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield -EXPORT_SYMBOL_GPL vmlinux 0xa6d819d8 dm_audit_log_ti -EXPORT_SYMBOL_GPL vmlinux 0xa6e06c65 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xa6d4d186 pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb17d7 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xa6e40f97 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa7048ed3 spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa7113dd6 __fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xa719518a blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xa719deba of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xa70b33fa crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa70d311d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xa7112ee0 handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0xa7241959 pkcs7_supply_detached_data -EXPORT_SYMBOL_GPL vmlinux 0xa73b3d1e agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xa742cf14 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xa750e665 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xa7590c86 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xa77c89ce devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa78ab62d blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xa7255e22 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xa7308ca3 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xa750401b __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa770bc88 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xa77b4698 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xa786dbfe usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0xa790ab4b __tracepoint_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xa791cc15 pci_p2pmem_free_sgl -EXPORT_SYMBOL_GPL vmlinux 0xa79bf11e component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa7911c7d dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xa79454b8 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xa795a548 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa7af0dec __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0xa7c68231 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa7cfa531 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xa7fb062f dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xa8060860 vcap_tc_flower_handler_ip_usage +EXPORT_SYMBOL_GPL vmlinux 0xa7d4787f kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa7e8a0c2 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa7e9f3a1 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xa7eff056 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xa8004017 pinctrl_pm_select_default_state EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa8206810 md_run -EXPORT_SYMBOL_GPL vmlinux 0xa8222449 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0xa828fd04 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xa82d737c blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xa835871a devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xa84f67f2 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xa838ec0c mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8464b81 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa848bc00 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa84d965d pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xa851011c iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa86a617f ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xa858ff82 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xa8606108 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xa8696fea eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0xa86f4772 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa86fa1b6 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa88d5ba0 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa89341e0 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa89648db ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xa89744d7 nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0xa89f5cd9 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xa8a5e2ea of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xa8b068ea ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xa8c54c89 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xa8c7bdfb tcp_plb_update_state_upon_rto -EXPORT_SYMBOL_GPL vmlinux 0xa8ecb2bc dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa8efef4e pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xa8f61649 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0xa8f694b8 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa8b01ae4 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa8b0a74a blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xa8ca53ad wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8e3c4b2 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa8f2dfa6 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xa8f97178 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xa90ae8f9 bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xa90d3699 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xa8fcb86a usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xa8ff29ee device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa90e3b96 timer_rearm_host_dec +EXPORT_SYMBOL_GPL vmlinux 0xa916ff22 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0xa91d120d of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xa9241038 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xa924c039 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa922175d virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9351967 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xa9366d1c lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xa949d732 remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xa9357d78 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xa93cf2b0 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xa944ecd1 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa94dddca devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa95e50de regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xa964af7f iomap_invalidate_folio -EXPORT_SYMBOL_GPL vmlinux 0xa967de1a fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xa96d32c6 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa9609c3f tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xa96a3f6b devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9730619 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xa98539f8 iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0xa98a9f9e power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xa9950ff3 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree -EXPORT_SYMBOL_GPL vmlinux 0xa9b9e49e fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xa9c2791a fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xa9b78afa raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xa9c62441 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xa9cd4782 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xa9dc3b5e regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xa9f11776 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xa9f8e1db clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xa9f90530 xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0xa9fd0b81 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xa9ff40c4 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0xaa0418dc init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xa9ce9794 devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0xa9e5d916 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa9f800da perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xa9fc954d usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0xaa05b933 mas_empty_area +EXPORT_SYMBOL_GPL vmlinux 0xaa060395 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xaa0c5e91 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xaa180fde mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0xaa2cb4ad register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xaa2db0de fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xaa3097a1 usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0xaa360dbb of_nvmem_layout_get_container EXPORT_SYMBOL_GPL vmlinux 0xaa46908a devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa815a38 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xaa88862a __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0xaa8cdc07 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xaa8b9795 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xaa958102 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xaa9c31f1 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xaa9dc875 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xaaa7b9df __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaaaa5ec9 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xaaadde6c kvmppc_h_enter EXPORT_SYMBOL_GPL vmlinux 0xaaba7cf1 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xaadbb3e7 vcap_tc_flower_handler_ipv6_usage -EXPORT_SYMBOL_GPL vmlinux 0xaaf80b37 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0xab050b70 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0xab0f2a56 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0xab1c8795 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xab1fb73c regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xab206f43 debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0xaac106eb xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xaac493ef gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaad22c40 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaae5be4e usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xaae95214 priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0xaaebce11 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xab0326aa perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xab1c0bf8 ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xab21f44c pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xab370b4d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xab260124 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xab2832a7 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xab36398a of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xab364026 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xab38d284 mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xab399e90 __hwspin_unlock -EXPORT_SYMBOL_GPL vmlinux 0xab3e762d ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0xab5797d5 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0xab698aa2 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xab63b692 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xab66f5bf mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xab6dde78 __nvmem_layout_register EXPORT_SYMBOL_GPL vmlinux 0xab6f0ded __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xab8853ed perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xab899fbf tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xab8ebb9f of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0xab91ce9f fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xab7811dc br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xab810c7e __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xab987bed sysfs_add_device_to_node EXPORT_SYMBOL_GPL vmlinux 0xabaa314b hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xabac447f wwan_unregister_ops EXPORT_SYMBOL_GPL vmlinux 0xabb26c4f led_blink_set_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xabb4c945 nop_posix_acl_default -EXPORT_SYMBOL_GPL vmlinux 0xabb94d98 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xabb96bfb srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xabb9fb30 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xabbbd3a9 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabc69c7f spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep -EXPORT_SYMBOL_GPL vmlinux 0xabe4151c ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xac04af2e pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0xac09de0e ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xabe06430 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xabf402bb debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xac0842bc __regmap_init EXPORT_SYMBOL_GPL vmlinux 0xac100cea power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xac2af2f0 dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xac2c2441 __virtqueue_unbreak -EXPORT_SYMBOL_GPL vmlinux 0xac2caed2 nvmem_layout_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xac7a44c5 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xac7a5965 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0xac9bab8c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xac11f492 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xac1dc284 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xac2315b7 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xac2fccb2 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xac410459 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xac49565c pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xac4bb53e vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xac4bb612 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xac561b04 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xac5daa59 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xac6654e4 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xac6c8401 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac766ca0 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xac928aad ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xac93a417 regcache_sync EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacb9b314 tcp_unregister_ulp -EXPORT_SYMBOL_GPL vmlinux 0xacbb8ebe relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xaccd0ea7 devm_regulator_get_enable -EXPORT_SYMBOL_GPL vmlinux 0xacdb0732 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xacbd1d89 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xacc4d19f netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacc8e784 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0xacf1a5a5 powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xacf6f902 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0xacf9d2a7 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0xacfc4c74 ata_pci_device_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xacfdb312 pci_cfg_access_lock EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xacff0c9c rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xad0989f2 udp_bpf_update_proto EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xad1f70f3 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xad28edd8 crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xad32b2f8 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xad17da1b key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xad1be6e2 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xad3a16c0 radix_tree_preloads +EXPORT_SYMBOL_GPL vmlinux 0xad3eea61 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad430e3f scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xad457440 ata_bmdma_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad4f44e5 dm_suspended EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6c1b6e pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad8e7652 ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xad9932a8 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada77b11 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0xadc53e5e vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0xade08fbd dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xada805eb regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xadaefa68 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xadbdd018 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xadccb503 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xaddf70d3 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xaddf7be8 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xadeb8a8c platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xadf05801 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xadf87c4a skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae0703d3 store_vcpu_state -EXPORT_SYMBOL_GPL vmlinux 0xae08510b tcp_reno_undo_cwnd EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae304462 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0xae3053d8 inet_bhash2_update_saddr -EXPORT_SYMBOL_GPL vmlinux 0xae33b520 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xae33c93a spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xae1e2e45 tty_perform_flush EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3ab53a adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable +EXPORT_SYMBOL_GPL vmlinux 0xae458e8e bdev_alignment_offset EXPORT_SYMBOL_GPL vmlinux 0xae5923c4 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xae6534c1 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xae60e80a fscrypt_prepare_lookup_partial +EXPORT_SYMBOL_GPL vmlinux 0xae657956 ata_host_put EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae7116ee pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xae72e82f tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xae6e1a85 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xae711699 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xae75b81d acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7efe43 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr EXPORT_SYMBOL_GPL vmlinux 0xae91eac5 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0xaeb988ee eeh_pe_get_state -EXPORT_SYMBOL_GPL vmlinux 0xaeba93d8 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xaea8f135 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xaeb411f8 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xaec191a3 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaecdfd71 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xaed241c7 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xaed5dd6b dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xaef59ae4 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xaefb004f devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf025b3b devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf1a3a04 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf0bb53c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xaf1a7f5f virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0xaf1e10da opal_int_set_mfrr -EXPORT_SYMBOL_GPL vmlinux 0xaf31cef2 pcibios_scan_phb -EXPORT_SYMBOL_GPL vmlinux 0xaf329773 pinctrl_generic_get_group_count -EXPORT_SYMBOL_GPL vmlinux 0xaf342f62 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xaf214e76 sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3f5655 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf46bcb1 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xaf5e66bb dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xaf6572e1 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xaf56b7db iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xaf5d4ea0 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xaf61cbba nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaf671a53 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf6c2adc __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf7ad94c __SCK__tp_func_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xaf8496b6 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xaf7f30ed genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf9016d0 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xafa1c9a4 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xafa4c6f0 iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xafae8f44 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0xafb83589 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xaf97c7be scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xaf9c2f44 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xafae55ad skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xafafb17c perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present -EXPORT_SYMBOL_GPL vmlinux 0xafd912df crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xafc89ac5 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xafdab05b i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe22992 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xafe67eb1 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xafe695ec fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xb001230f skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xb006cd99 devl_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xb00af3d8 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xb01493e9 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xb0376abd usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xb03f0e31 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xb02e17cb sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb0644d74 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0xb04b4bb0 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress -EXPORT_SYMBOL_GPL vmlinux 0xb0770b6a ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb0797cba xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0xb0802f90 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb092d03d crypto_init_akcipher_ops_sig -EXPORT_SYMBOL_GPL vmlinux 0xb0965bee mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb08a0b1e relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xb08ac800 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xb098fe25 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb09e967b component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xb09f947d scsi_dh_attached_handler_name EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0cf1972 dw_pcie_host_init EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d8fdeb skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0xb0e7ab1f __traceiter_console +EXPORT_SYMBOL_GPL vmlinux 0xb0e92648 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xb0f06f7c fuse_file_poll EXPORT_SYMBOL_GPL vmlinux 0xb0f73f8e __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb0f75172 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb10dbf54 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0xb11a83c0 pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb12f2c32 pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0xb1353544 dev_pm_get_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xb13837ce vcap_rule_add_key_u48 -EXPORT_SYMBOL_GPL vmlinux 0xb13ab054 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xb148f549 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xb1517566 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb15ccb6c crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xb1521e4a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xb15bd5bd of_phy_get EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb164f012 of_add_property -EXPORT_SYMBOL_GPL vmlinux 0xb16f08b6 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xb1789692 crypto_clone_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb17d28f5 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0xb193cbcd devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xb19479a8 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xb1a316cc mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xb1b94e49 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xb16b8dee gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1785fe7 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xb186e62f spi_split_transfers_maxwords +EXPORT_SYMBOL_GPL vmlinux 0xb198e116 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1acf176 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail -EXPORT_SYMBOL_GPL vmlinux 0xb1bdf9b1 phy_reset EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bee4c2 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xb1d8d352 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xb1cb9316 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xb1d3ca56 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xb1dac53f crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb1dbef08 mm_kobj EXPORT_SYMBOL_GPL vmlinux 0xb1dfecea power_supply_battery_info_properties_size +EXPORT_SYMBOL_GPL vmlinux 0xb1e0156e __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1fbe73d ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xb1f152b1 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb1f44ff6 make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb20276b2 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb20abf45 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xb20eb2a6 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0xb21c24a2 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xb1feb87c usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb2288a40 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xb22bee4e component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xb23183af skb_mpls_push -EXPORT_SYMBOL_GPL vmlinux 0xb2350e67 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0xb235602b mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xb221d8dc pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xb2359ebd crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0xb23d7377 dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb266f572 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xb247150e md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xb251f5b2 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb2569be6 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xb26156ca __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb2815270 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb28ac3c4 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xb28d221a sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xb2856e89 hvc_poll EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb29bedf0 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb2a59071 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xb2abe050 __traceiter_br_mdb_full -EXPORT_SYMBOL_GPL vmlinux 0xb2b42c1a xdp_features_set_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0xb2aedc0b __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xb2bff68e fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xb2c15cbf sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c74bd9 serial8250_do_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xb2d8792a dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xb2d5fa5f iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xb2dc2ef9 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f6472f blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xb2f7b04f __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xb300a89b pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb3025498 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xb306a9d5 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31636d2 msi_unlock_descs -EXPORT_SYMBOL_GPL vmlinux 0xb31d5e9c devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xb325060a get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0xb32c7482 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xb3361992 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0xb338fff9 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0xb35ea335 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xb37cb02f strp_done -EXPORT_SYMBOL_GPL vmlinux 0xb38439f0 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xb3901413 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xb32e60d9 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xb3503f25 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xb35a289c xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xb3812259 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb3c1338c mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0xb3fb1e97 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb3a03a02 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb3a5e9c8 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb3bc118a spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xb3cb4ee4 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xb3cce4fe ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xb3d14a33 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb3dc46db rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xb3ecd1b1 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb3f39339 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xb3f5e105 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xb3ff57bf da903x_update -EXPORT_SYMBOL_GPL vmlinux 0xb401377c elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb40dd2b2 icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0xb42394fa regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xb42ad356 xhci_stop -EXPORT_SYMBOL_GPL vmlinux 0xb433dc35 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xb43b1df5 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0xb40837d6 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xb42eddfb pnv_ocxl_spa_setup EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4415cdc gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb465690c regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0xb46ba682 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xb45b3e75 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xb46f877f devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xb47480b3 tpm_chip_start EXPORT_SYMBOL_GPL vmlinux 0xb47c37fb pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xb48269e7 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0xb4840674 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xb47e417b of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb47eb72b br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0xb487d47e attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb492982b regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xb4966680 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0xb499de92 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xb49bb73f serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xb4af9ffa nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb49aff7d fsverity_ioctl_read_metadata EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bfc40a pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0xb4c4e15f serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xb4c50489 blk_stat_disable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xb4c5bc3a platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb4cbd02d regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xb4cfde86 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb4c03b19 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb4c1862b dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xb4c5a158 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xb4d354ea extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4de1478 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4f5de5a dev_pm_genpd_synced_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xb4f90bf4 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xb4fee371 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb4f4edbf __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb504ec24 vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list +EXPORT_SYMBOL_GPL vmlinux 0xb50b2be8 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state -EXPORT_SYMBOL_GPL vmlinux 0xb528f540 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xb531ae87 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xb535ebda tun_get_socket -EXPORT_SYMBOL_GPL vmlinux 0xb55130de account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xb5301ac5 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xb535a868 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xb53959e6 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xb54156bb pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb550e45d anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xb55ecd2c gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul EXPORT_SYMBOL_GPL vmlinux 0xb570745c __SCK__tp_func_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb59cf11e extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xb5859daa thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xb5a04f05 xive_native_has_save_restore EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb5b8c97d tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb5b9a73d regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0xb5b9ca35 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xb5b9dcd4 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xb5be60fe hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xb5d4555f usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0xb5dabedf netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xb5e394d4 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xb5f8783a fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xb5b89bd6 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xb5b927f5 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb5c56793 device_add +EXPORT_SYMBOL_GPL vmlinux 0xb5cb7020 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xb5cc934a usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xb5d14bf0 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xb5e5b7e6 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb5fdef9e netdev_is_rx_handler_busy EXPORT_SYMBOL_GPL vmlinux 0xb605a9c8 iommu_tce_table_get +EXPORT_SYMBOL_GPL vmlinux 0xb6061af4 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xb6065c9c ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq -EXPORT_SYMBOL_GPL vmlinux 0xb60eeb52 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xb61f6962 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb6258f1a regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb6308170 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6380c3d cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb63e2169 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb6473127 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xb6490b11 pnv_power9_force_smt4_release -EXPORT_SYMBOL_GPL vmlinux 0xb655c123 mm_iommu_lookup EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb65c7320 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0xb66840c1 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xb676f640 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xb667bf54 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xb66d7199 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xb6770546 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67f0b31 io_uring_cmd_do_in_task_lazy EXPORT_SYMBOL_GPL vmlinux 0xb6812b03 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xb684c579 usb_register_driver EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb69ba608 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb69fff2a peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb6a194a7 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xb6af7bd3 __fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0xb6b28514 xas_load +EXPORT_SYMBOL_GPL vmlinux 0xb6ce05e4 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0xb6d1d7b4 clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xb6e15c0d debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xb6e67fe3 wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f87fb2 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb6f32a3b of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb71900e8 get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0xb71b7b65 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb71fa2e3 kvmppc_clear_ref_hpte EXPORT_SYMBOL_GPL vmlinux 0xb7280e59 of_clk_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73a2c1f blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xb7454d1d device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb7526726 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb757ba52 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0xb779a599 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xb751828b dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xb7720535 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xb79b1e13 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0xb79ee072 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xb790052b xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0xb791dece gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb79891d1 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7aad927 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xb7b22de2 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xb7ad406c ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xb7b2a49b power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0xb7c15ddc dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xb7c5ceb6 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c90d67 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xb7c91b10 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xb7cc2abd usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0xb7d17fa0 pgtable_cache +EXPORT_SYMBOL_GPL vmlinux 0xb7d2bdfb usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb7f3db62 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xb800dc06 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xb7ef48bb get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb7f33033 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb7f4bfbb regmap_read EXPORT_SYMBOL_GPL vmlinux 0xb8015489 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xb80e8cc5 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0xb829b099 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xb832d1a7 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb8336101 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xb867a4c9 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xb86d94e7 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xb87cd00c mbox_bind_client +EXPORT_SYMBOL_GPL vmlinux 0xb81aafb2 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xb820404f of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xb82948ca component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xb8339315 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb833c49d gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xb836d3ab vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xb8498143 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xb85037f6 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xb861440a xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xb86aa4b3 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xb86f406b pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb883243d spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb88741c5 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb89065df blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xb891572d disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xb89b4b4e xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xb89d5946 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a82aa3 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xb8ad767b ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0xb8be9b62 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xb8a3799b devm_hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0xb8c644ab mce_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb8c68ee8 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0xb8cc94e5 xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8dd54fc pcibios_finish_adding_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xb8e49903 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xb8f4e6d7 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0xb8fd71c9 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0xb8fdce04 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xb8ff109b vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb8dcc3e0 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb8df6ca3 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb8f4f2b8 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xb905a780 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0xb90b01b2 hrtimer_forward EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb915f5b9 devlink_port_register_with_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9254c4b pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb928b452 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xb9196e57 nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0xb92a4374 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb9425293 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0xb952fc1d devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xb9551b20 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb95cd9f4 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xb95f0e00 crypto_clone_cipher -EXPORT_SYMBOL_GPL vmlinux 0xb9601512 devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9727a4e devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9789755 devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0xb9803193 devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xb980dc42 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb986e90d pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xb98caf9b srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb98e5521 kvmppc_h_clear_mod EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bccf48 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d8ae98 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0xb9e9cbde devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xb9f64b55 devm_kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0xba07243e serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xb9da2c2d spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xb9da61dd sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xb9e967af dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xba027aaf regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xba0df975 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xba122332 dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan -EXPORT_SYMBOL_GPL vmlinux 0xba18d451 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xba2007cb synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xba28b942 pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3606af __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xba43066a pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xba32f4c5 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xba349a83 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xba383bb0 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xba478c5c blk_crypto_has_capabilities EXPORT_SYMBOL_GPL vmlinux 0xba4b1b3d alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0xba52904a regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xba616402 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0xba661cb5 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xba6d4977 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xba608a71 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xba6a15b8 edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0xba6eb67d __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xba855668 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xba85fd5c ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0xba94d80b usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xba9e7c68 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xba86972c irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xba96c965 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xba9847df blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xbaa5f3b4 scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbac54fd6 rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xbac94448 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xbae4045c pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xbacfb7f0 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xbad2837f devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xbaedfae4 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xbaf1b7b1 spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbafd2270 of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0534b4 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xbb0a1745 ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb115b6e perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0xbb177379 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xbb0c817e __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb26de58 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xbb285861 nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0xbb33f7e8 clk_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xbb3e6dc3 kvmppc_h_remove -EXPORT_SYMBOL_GPL vmlinux 0xbb3fef13 ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb49bb8f ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xbb4a2da0 hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0xbb6425ba blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xbb5f8666 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6c75ac xas_pause +EXPORT_SYMBOL_GPL vmlinux 0xbb6caf1f gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb760b22 dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0xbb764745 vcap_admin_rule_count -EXPORT_SYMBOL_GPL vmlinux 0xbb839a8c get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xbb88c15f blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xbb9afa78 ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xbbb6f554 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xbbcb5bb1 generic_handle_domain_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0xbbd1fd36 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xbb7b5c15 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xbb7c3b72 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xbb90245a wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbba6e913 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xbbc783de bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xbbe11cb6 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xbbe1cae3 serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID EXPORT_SYMBOL_GPL vmlinux 0xbbebf3cf vas_unregister_api_powernv -EXPORT_SYMBOL_GPL vmlinux 0xbbfac7b1 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xbc08343f __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0xbc22102a ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbbf5fe21 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbf669bf usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xbc0a2d4f devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xbc174fc4 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc3a914b tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc50f030 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xbc6ad25f uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xbc5995fb phy_reset EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc849d26 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xbc999a76 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbcaad43c device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xbcbc4d9d nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xbc721226 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbc771ce5 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc8fe36e pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbca5f2d1 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcca0c25 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcd28c13 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xbcdc4de1 generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcee4504 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0xbce586ea vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcfb2471 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0xbcfb81df stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xbd031991 scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd080284 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xbd0959f4 ethnl_cable_test_pulse EXPORT_SYMBOL_GPL vmlinux 0xbd0abe8e auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xbd18257a device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xbd1cdebc shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xbd2537bd of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xbd11f0de ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xbd19666f ima_file_check EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xbd3bbbf5 kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4f88e9 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xbd58bf80 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xbd63fe07 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xbd654f34 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xbd5a57f8 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xbd5b0450 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xbd63c046 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xbd6f17ec regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd7adc00 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xbd836a78 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0xbd89acbf of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0xbd9f6fcf transport_class_register EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbdc85994 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xbdc969d0 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0xbdce9c93 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xbda20dfb debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xbdb9b587 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xbdbd66fd rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xbdc03e61 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbddd5c2e cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbde77761 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xbdeb54f8 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xbe0955b9 skcipher_walk_complete EXPORT_SYMBOL_GPL vmlinux 0xbe0ab358 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xbe0efe12 pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xbe1bb1d8 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0xbe1cd716 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xbe202eea sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xbe25b36e inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xbe280d54 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xbe302154 nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xbe33cc7d wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe393051 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xbe39a72f tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xbe3cb3dc of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xbe45bcf1 vp_modern_set_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0xbe5287f0 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xbe56ef05 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xbe173bd1 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xbe4fa3e5 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xbe50e06c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbe567701 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xbe5f3d94 clear_node_memory_type EXPORT_SYMBOL_GPL vmlinux 0xbe65a4d8 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xbe684c5c of_phandle_iterator_next EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe6a50a2 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xbe6cb9ca mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xbe7a4537 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xbe7ad303 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xbe840625 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xbe852d5e ata_scsi_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xbe874b8f device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0xbe87c6f2 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xbe8acc43 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xbe8eeafe evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xbe90488a get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xbe95380d dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xbe6e3bcd crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xbe72fe43 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbe78c155 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbe8c4141 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbe8e2628 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9cb3b5 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbe9d0b02 unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0xbeab49c6 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xbec569f7 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xbec7083a of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbecfce6e platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0xbed613e9 vp_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0xbee3ab74 inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xbef80437 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0xbf027c02 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xbecf31ff shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbed12b4b dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0xbed50116 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xbef39463 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbefd9fe5 skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0b3c2a usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xbf074fc6 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbf0b2254 srp_rport_del EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0xbf1d97d8 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled EXPORT_SYMBOL_GPL vmlinux 0xbf314b6a rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xbf37f038 kvmppc_add_revmap_chain EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf458055 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xbf50ace5 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xbf514af1 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbf5e5254 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xbf748872 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xbf74faa5 devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xbf75292e mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0xbf8bbc3c regulator_irq_map_event_simple -EXPORT_SYMBOL_GPL vmlinux 0xbf93ff0c uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0xbf9a3422 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xbf79be54 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xbf9e4c20 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xbfa80e92 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xbfa8b854 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbfb338c8 iommu_add_device EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfdb60f9 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xbfdf299a pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xbfc02e04 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xbfcc2b06 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xbfccf1c6 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xbfcd1684 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xbfd73ea4 regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe97f03 vcap_chain_offset -EXPORT_SYMBOL_GPL vmlinux 0xbfee535d regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0xc01a5831 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xc01ad45f sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0xc01e83cd clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0xc0214e00 vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0xc02a2135 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xc03391cb pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0xc04079e1 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xbff9afae perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbfff60fc extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc00eb596 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xc0237516 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc024f26b __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc039331f rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc04be746 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc04cd1cd nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xc05ddfe4 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0xc06198b1 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xc063845f of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc065072e pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread -EXPORT_SYMBOL_GPL vmlinux 0xc06d13fa __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xc0790bd7 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xc082dd55 __io_uring_cmd_do_in_task +EXPORT_SYMBOL_GPL vmlinux 0xc080d63b sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xc08192fc watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc08486a8 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xc088fa19 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xc09018bb mmc_app_cmd EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0948b53 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0b99e50 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xc0d4147b dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xc0d94d5f virtqueue_get_vring EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e4ed93 devl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0e1aef3 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xc0e45423 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f63551 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xc0f956a4 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xc0f98318 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xc10033d2 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc0f05162 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xc107c382 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc11cdbf5 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xc11d8b4c regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xc12b70d6 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xc12e4a4f __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xc10acf92 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xc117a615 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc1202463 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xc1280aca ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1283e78 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xc129c708 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xc135eecd iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xc148f5ed pci_epc_bme_notify EXPORT_SYMBOL_GPL vmlinux 0xc152fe33 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xc15f56ec pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0xc162c3f8 fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0xc16757be fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc15ca47a pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc174c65b dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc18d1ab3 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0xc18dea33 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xc1961d76 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xc19b2437 __tracepoint_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc1a7cc0c rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xc1b9c1c6 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xc1bf8b77 of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xc1c560ce irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xc1d69e72 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xc19dd805 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xc1a7bafb md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xc1bdbc27 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0xc1becf1f __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xc1c58063 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc1d7e9a9 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xc1e1b868 da903x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first EXPORT_SYMBOL_GPL vmlinux 0xc1ed9c89 cpu_latency_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xc1f6ed17 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xc1fe1afb tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc2205e62 irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xc221ca58 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc1f5801d irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc1f8827c iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xc1fdc456 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xc2054c45 create_signature +EXPORT_SYMBOL_GPL vmlinux 0xc206c820 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xc223afcf extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xc2244422 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc23610c8 pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc2480885 sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0xc24bc398 vcap_tc_flower_handler_tcp_usage -EXPORT_SYMBOL_GPL vmlinux 0xc265dc62 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xc24c49a3 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xc268e032 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2702773 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xc2720343 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xc285b957 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xc2863bce elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xc26fc50c device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc2747922 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc2795cef devl_traps_register EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc28ae9bd device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xc29897b6 of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0xc2a427be device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xc294c45a dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xc29ec9ba genphy_c45_read_eee_abilities EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ac1b9a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xc2ad77f1 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xc2c14388 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc2c275ff opal_poll_events -EXPORT_SYMBOL_GPL vmlinux 0xc2d33eb6 inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0xc2d440cc devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc2e52ed2 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc2fc1878 cxl_update_properties -EXPORT_SYMBOL_GPL vmlinux 0xc2fc5850 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xc2fe0147 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xc309196f ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0xc3191048 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2dca8f0 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc2de79c0 extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0xc2e58cf8 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xc2e5e2c1 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xc2f6768c vcap_select_min_rule_keyset +EXPORT_SYMBOL_GPL vmlinux 0xc2f97763 relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0xc31b536c __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc32e8a63 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc3355e9b class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc34e9b8e vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xc35c24a9 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xc3654b81 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xc3425f00 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xc3472fc5 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc3477342 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xc353ecfd rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xc35fc987 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xc36a25a1 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xc36cebb9 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3785107 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xc37bd719 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc383b88f dma_need_sync EXPORT_SYMBOL_GPL vmlinux 0xc386fa5c device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0xc393bac5 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xc38f7a5c blk_mq_quiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0xc3955cb0 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xc397ca34 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc3aeab32 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xc3aaeab1 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax -EXPORT_SYMBOL_GPL vmlinux 0xc3be9410 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0xc3c395d6 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xc3b9e341 spi_add_device EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3c53f35 of_request_module -EXPORT_SYMBOL_GPL vmlinux 0xc3c93737 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xc3ccfd7d irq_generic_chip_ops -EXPORT_SYMBOL_GPL vmlinux 0xc3cd9618 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xc3dcf1e8 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc3e874d3 mm_iommu_newdev +EXPORT_SYMBOL_GPL vmlinux 0xc3e431c3 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough EXPORT_SYMBOL_GPL vmlinux 0xc3f82c3f srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xc3fd302e led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xc410cfec __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0xc411debd proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xc412ca59 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xc4009942 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xc4020eb0 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xc408d954 crypto_akcipher_sync_post EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid -EXPORT_SYMBOL_GPL vmlinux 0xc423bf3d ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xc4265eed gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc4273b84 register_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42b32e1 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc435661b fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xc43e2f5a ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0xc4435f5b __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xc42e36a3 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc42fa61e switch_pmu_to_guest +EXPORT_SYMBOL_GPL vmlinux 0xc439e4c9 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xc43afacb __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xc44429c3 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc44762d6 iomap_file_unshare EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xc46dbbb4 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xc46e5f09 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc4741b63 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc47d5f35 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xc4811342 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xc4852885 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc49e5f14 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xc4a288c6 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xc4723df0 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xc474ce10 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc4850676 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a69f60 devfreq_event_set_event EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4a7eb09 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xc4b6dfa0 vas_win_close -EXPORT_SYMBOL_GPL vmlinux 0xc4ba14cf led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xc4c8cf91 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xc4dcae7e blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xc4e37105 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xc4b7ffae dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xc4cdb45b hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4d11e68 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0xc4edcb00 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xc4f004a7 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f54c04 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xc504a4b2 usb_set_wireless_status -EXPORT_SYMBOL_GPL vmlinux 0xc529aecb vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0xc537149b of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0xc53b36a4 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xc51d67a3 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0xc54250e2 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xc55fa167 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xc5477f71 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc54d16bf devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xc551de2d skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc560a7e8 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0xc563ee6f pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xc565c333 __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc571aeb4 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc5703408 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc577070f lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc584223e vcap_del_rule EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy EXPORT_SYMBOL_GPL vmlinux 0xc58ce483 pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xc5a3e609 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc594a8a1 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5a22bc5 crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5a80e49 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc5bba047 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0xc5e0da10 pnv_pci_set_tunnel_bar -EXPORT_SYMBOL_GPL vmlinux 0xc5e70554 ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0xc5f25f75 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xc5a99d6a misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xc5aad051 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0xc5cb4621 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xc5d942f5 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xc5fc8c2a __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6199156 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xc618e64f devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy EXPORT_SYMBOL_GPL vmlinux 0xc6299625 rht_bucket_nested_insert EXPORT_SYMBOL_GPL vmlinux 0xc636d60f __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc645d80d devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc64b08e7 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xc64be6e9 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc64e00ab cpuidle_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xc659d9c1 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xc654e7ba lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xc658d5b0 pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc672cdbc sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0xc672d3d4 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc6739daf pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc677b70b pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xc67a725a led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0xc6892662 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xc684f8c1 spi_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xc68ea64e list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xc68f0236 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc68f9cec usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a67167 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6ba1dab udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xc6a4aa47 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xc6b20cff blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xc6b72cf4 static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xc6d220d1 rtas_busy_delay -EXPORT_SYMBOL_GPL vmlinux 0xc6d35362 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xc6d3f2ef devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xc6d5b963 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6eb8795 dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0xc73c8ea5 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0xc74f2507 mm_iommu_new +EXPORT_SYMBOL_GPL vmlinux 0xc6ecd63c crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xc6eeedfc tpm_chip_bootstrap +EXPORT_SYMBOL_GPL vmlinux 0xc6efbb62 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xc732dbf8 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xc7333de1 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xc74a3183 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc751ca52 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc75e50b6 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0xc7685b60 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0xc77bddab vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0xc77c4bc9 pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0xc784bf79 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0xc795fa91 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc79a1924 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc76d02b0 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc773ed3e irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xc7773790 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc77767b8 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc77f5805 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc785dff8 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc7899d61 net_ns_type_operations EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a45a2f blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7b26cad ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0xc7cdf069 extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0xc7dd754b em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xc7b3e911 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xc7cb8ee7 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0xc7e376d4 klist_next EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7eeb931 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7e8d815 gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0xc7f1ecd8 devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xc7f3f115 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xc7f5fde8 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc7f99ed2 pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc805e617 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xc8072b15 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xc807f887 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xc8200cfe __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc84680b1 get_net_ns_by_id -EXPORT_SYMBOL_GPL vmlinux 0xc84d2aae pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xc8330169 io_uring_cmd_do_in_task_lazy +EXPORT_SYMBOL_GPL vmlinux 0xc835989a skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xc83f79cc i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc84bf0ba led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc8727b36 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xc86c265c cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xc86d3544 pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0xc87690e4 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xc889bdf7 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xc88eb643 ata_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0xc8902618 __srcu_read_lock_nmisafe -EXPORT_SYMBOL_GPL vmlinux 0xc895e97b extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xc896367c syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc8b4abbc kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xc8b8fde3 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xc8c19e65 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xc8d95292 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xc89e0e2f sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xc8c52c26 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xc8dd8a3a tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8fa020c stmpe_dev_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xc8fa844d __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0xc914408c scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xc8e511fa clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8eb32d0 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xc8f509b3 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9064dba fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xc90723bd usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xc90b3937 pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc93d3225 folio_alloc_buffers +EXPORT_SYMBOL_GPL vmlinux 0xc923cf8c bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc94d83d5 phy_led_triggers_unregister EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9599cc6 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc961f110 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9644070 evict_inodes EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc977ec21 kvmppc_h_clear_mod EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc9b8f8e6 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xc9bb7d2a ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xc9bf95ea usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xc9865156 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xc9900f89 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc9966156 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xc999e626 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xc9acbdbb pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc9aeacb1 thermal_zone_device_id EXPORT_SYMBOL_GPL vmlinux 0xc9c56873 perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xc9c6a27a xive_native_set_queue_state +EXPORT_SYMBOL_GPL vmlinux 0xc9cb1885 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9d75c83 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0xc9e36ef2 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9dad7c4 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xc9dfcce9 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xc9e26453 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xc9e4027d sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f0c6b9 clk_divider_ops EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca147f29 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xca2aee78 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xca43ba1b nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xca17cfc5 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xca1c6de6 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xca277f56 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xca412e78 usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca49514c vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca5b0699 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0xca714d52 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xca615ad2 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xca7683c6 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xca7685d7 receive_fd EXPORT_SYMBOL_GPL vmlinux 0xca7b204f devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca7dd653 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0xca83e181 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xca8ca3c8 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xca8a57ff phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9d4aa3 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xcaa56210 of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0xcab34abb devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xcab62ab3 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xcab6e47b mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xcaab44f6 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcad5370a kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcacbf994 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xcacd0193 gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xcadab7df blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0xcae2ce2c blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xcaf00784 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xcaf09de5 usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0xcaf6272b pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xcafd4c17 vas_register_api_pseries -EXPORT_SYMBOL_GPL vmlinux 0xcafdb040 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xcb01a686 pinctrl_generic_add_group EXPORT_SYMBOL_GPL vmlinux 0xcb1662d0 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xcb1c838e dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xcb1e8281 crypto_unregister_ahash EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb423c42 dw8250_do_set_termios -EXPORT_SYMBOL_GPL vmlinux 0xcb49ec9d fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xcb309e0d __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xcb35b79b vp_legacy_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xcb525aba pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xcb50571b crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcb51d360 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xcb52d4eb bio_trim EXPORT_SYMBOL_GPL vmlinux 0xcb552ae0 devm_remove_action EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb606f0d i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0xcb6d4054 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0xcb6df95a ata_sff_dma_pause EXPORT_SYMBOL_GPL vmlinux 0xcb6e94e4 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xcb91551f cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xcb9d0551 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xcb9d637c usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xcbaa9f64 led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xcbcc0f79 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xcbe569f5 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xcb6f2831 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xcb7711bf tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xcb86e3d2 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb975c61 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xcbb40110 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xcbb6aa66 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcbc393d5 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xcbcd4e6a vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xcbcdd18f __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xcbdbde02 set_thread_tidr +EXPORT_SYMBOL_GPL vmlinux 0xcbe19aed vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbe803cf relay_close -EXPORT_SYMBOL_GPL vmlinux 0xcbeed779 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xcbf10fe7 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0xcbfe9ec8 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xcbedb084 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0xcc02a49c mas_prev_range -EXPORT_SYMBOL_GPL vmlinux 0xcc0848a0 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0xcc0a0975 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0xcc1334a8 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xcc17893a rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0xcc23406a rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0xcc335379 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xcc1c8079 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xcc1e9524 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xcc2fd4a6 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc3ffa87 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0xcc426652 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xcc596eee inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xcc431f7f vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xcc4ab712 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0xcc6dc76c power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0xcc751ff8 usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc9c673c clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc9a6e3e pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xcca4ba40 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccac32b6 pci_iov_get_pf_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xccb5a28a gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xccbb5a21 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xcccaa745 md_start EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd6a012 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xccdafb41 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xccdc1367 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcce1ac3a pnv_ocxl_get_tl_cap +EXPORT_SYMBOL_GPL vmlinux 0xccd9c89e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xccdb3a0e memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xccea9e7e dm_table_device_name EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfafe42 pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0xccff97d7 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xcd071403 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xcd16ccf8 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xcd068d10 hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2e8576 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xcd449ede of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xcd4894f9 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xcd571515 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xcd262586 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcd27290c clk_register +EXPORT_SYMBOL_GPL vmlinux 0xcd298824 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcd31f119 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcd4c160c debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcd518bfa of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xcd5bf237 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0xcd5f953a key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd785612 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xcd7d1992 ext_pi_type1_crc64 -EXPORT_SYMBOL_GPL vmlinux 0xcd861a27 dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xcd8b2c2d regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xcd8e1ff4 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcd82a3cf strp_done +EXPORT_SYMBOL_GPL vmlinux 0xcd8de74e net_selftest EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0xcd9b8ec6 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xcd9cb9f4 filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0xcda1b874 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xcda34bfa of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xcd9f2e6b vas_paste_crb +EXPORT_SYMBOL_GPL vmlinux 0xcd9f791c bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xcda7734d platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xcda95880 debugfs_create_u32 EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdba12d8 vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0xcdbaffe5 vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xcdbe1ccc rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xcdc76596 regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdce2025 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima -EXPORT_SYMBOL_GPL vmlinux 0xcdde9426 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xcddf3609 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0xcde0a818 cpu_remove_dev_attr -EXPORT_SYMBOL_GPL vmlinux 0xcdf61b42 xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xce22bc36 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0xce32e5fd __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xce37b6a9 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcde48e3e dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xcdf1c901 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xcdfa15aa cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xce0563b1 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xce0b3ded vcap_tc_flower_handler_ip_usage +EXPORT_SYMBOL_GPL vmlinux 0xce36e96c _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xce3b0281 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xce3b0595 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xce4139f1 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xce42b87a pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xce4a9fd0 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xce4c4433 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xce4e0129 regulator_get_mode EXPORT_SYMBOL_GPL vmlinux 0xce4e80f3 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xce565d1e crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xce5a2a90 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xcea661bd devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xce76342f devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xce8acf15 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xce8f43ce phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xcea5ff1d mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xceab3d49 dax_recovery_write EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb4b99c klist_prev -EXPORT_SYMBOL_GPL vmlinux 0xceb7d48a vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xcebb45f5 spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcec2a689 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xcec74e27 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xced4f09d vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0xced97159 tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee63d26 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xceff6724 badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xcf02e1c3 pci_iov_vf_id -EXPORT_SYMBOL_GPL vmlinux 0xcf05314c pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xcf0932fc inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0xcf133159 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0xcf1437cd cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xcf26dddc i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0xcf366acd devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xcf7b13ad kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xcf7db869 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xcf9c5bc3 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xcfa6752c cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xcf5dfd15 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xcf760783 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcf7ab1b6 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xcf7f69bb sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0xcf801c24 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xcf89e566 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xcf8ea5d1 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcf8fd8a5 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xcf924e41 udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xcfa33073 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0xcfacd2ea power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfe68756 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcfd0c474 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xcfdbb463 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0xd01c26d2 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xd02807a0 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0xd02d8e91 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xd0202823 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xd02b6adb regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd03b74a5 rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04610e5 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xd0462107 cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd0620123 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd05a4798 nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd06c3ae9 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xd08b4d08 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xd06decd6 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd09ba6ea devres_add -EXPORT_SYMBOL_GPL vmlinux 0xd09c31ad skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xd09e4eea pci_ecam_create -EXPORT_SYMBOL_GPL vmlinux 0xd0a5a159 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xd09f589d debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xd0a0bfb2 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xd0aad134 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart EXPORT_SYMBOL_GPL vmlinux 0xd0c30d37 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xd0d03317 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xd0d95e29 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xd0ca8c8b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xd0d97a33 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd10e9066 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xd10fdc11 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xd110b7da cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd110fd38 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xd11efef7 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xd0ee4c32 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xd0ffa1c6 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xd102f252 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xd1085e9c virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd113862d clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xd11b881b spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0xd1262886 rtas_data_buf -EXPORT_SYMBOL_GPL vmlinux 0xd12f8430 of_get_fb_videomode -EXPORT_SYMBOL_GPL vmlinux 0xd133a9b7 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xd137d08f fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xd1419904 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14c0402 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd155e4cf usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xd157d20f mmu_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd16bc5a0 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd175d754 wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd17b0514 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xd17e6308 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd15b5013 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xd15bc84a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd1691735 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd17769c5 vcap_tc_flower_handler_ipv4_usage +EXPORT_SYMBOL_GPL vmlinux 0xd177bdf4 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xd17d7ec2 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xd18ea2ef thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xd191cd4b skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xd192671e show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xd19512ad irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd1b207e5 percpu_up_write EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule -EXPORT_SYMBOL_GPL vmlinux 0xd1cb7c00 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xd1c9b531 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e5451e trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0xd1e6a7dc vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd1d3b0df input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xd1dbe4f8 serdev_device_write_buf EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1fd77b1 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xd20f3739 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xd1f988a2 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd213d6e4 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd219e69e pnv_ocxl_get_pasid_count EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21bc9e9 of_msi_get_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd22214f8 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xd252b061 genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0xd256e2ce dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xd222b89e tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd24c9aa1 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xd255a55c usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd26b41af of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0xd26c376c perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0xd271155f transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2755776 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xd284216d clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0xd287f0b8 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xd297d865 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2a2d0d9 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0xd2a822c7 pseries_reloc_on_exception EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b9f632 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xd2bffaa5 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xd2c71ab2 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xd2c86ce1 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xd2b3d9be virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd2bf37d0 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xd2d16bdd gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2df1b02 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xd2fbd3d9 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xd30426b4 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xd2e0d2cf mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xd2e301eb device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xd2e46054 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd3079246 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xd310badf fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xd3124989 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd316e5da device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xd319c15d pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd3397de7 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0xd33c4a15 sata_link_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xd345cda8 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xd34822d2 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd3229a3b pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0xd33139ce acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xd34eacad usb_string +EXPORT_SYMBOL_GPL vmlinux 0xd35402c4 devm_gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xd3589162 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd35e44ec mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xd3672513 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd3719d00 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xd373e548 dax_remap_file_range_prep -EXPORT_SYMBOL_GPL vmlinux 0xd3996eec pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xd37835f6 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xd386904e crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xd3874f2f ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd3875de5 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xd387625e __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3ab422d put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xd3cc754a pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xd3da1344 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xd3e0b6cf regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xd3a7a6f0 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xd3c69f90 inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd3efeb3e raw_seq_next EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage EXPORT_SYMBOL_GPL vmlinux 0xd3f30cdf __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd3fe49ad crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd3f38a3e phy_power_on EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq EXPORT_SYMBOL_GPL vmlinux 0xd4104e0d subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xd4107fd4 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xd421cd67 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd41192f3 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xd4149024 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xd426bc6e pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd439bfa3 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xd43f3650 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c472c pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0xd4565152 kvmppc_h_protect -EXPORT_SYMBOL_GPL vmlinux 0xd4668b21 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0xd470c3ee ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0xd47e5fe9 iommu_device_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xd487890f pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd44ab1a6 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd451fe38 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xd454fbaf dma_resv_set_deadline +EXPORT_SYMBOL_GPL vmlinux 0xd45b97eb blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xd45c5790 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xd460cb1a l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd4618249 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd4645a8b ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xd477ca5d __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xd47fcac2 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xd4891ca7 regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0xd48a9773 drop_reasons_register_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd48d004c tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4967bd4 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0xd49df0ff tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xd4a7ed1b sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xd4a84dee of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xd4aa6b41 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xd4a150f3 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xd4a863ef akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd4a994d6 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xd4a9d18e led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xd4ae91a7 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0xd4aeaef3 decrementers_next_tb EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4bd37a0 gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0xd4bfada9 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd4bb1203 fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d982c8 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xd4ce9c0b mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4efba44 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xd4f8c22e of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0xd501393a __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xd517224d usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xd5184eee kvmppc_do_h_remove -EXPORT_SYMBOL_GPL vmlinux 0xd5192757 ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xd519504a wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xd4fa1907 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xd5208845 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xd52ba8c8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd52d5511 device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd530c313 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd54435a0 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55679e1 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd5629c57 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xd5656e7f ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xd5749cbe irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xd5794dd1 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0xd585f831 wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd59623fb extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd57d67c7 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xd587f780 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd58d7880 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5906a04 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd59145a6 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xd5947c65 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xd5994e63 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59b0f10 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd59e445c anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xd5a57509 device_show_ulong EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xd5c87f4a __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0xd5c99359 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd5cb887d pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd5e4bd2b dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd5e97c4d vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xd5ee6bec unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xd5f5865d __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xd5fcbf74 pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd6068719 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0xd616b69f kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xd6279380 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xd6298394 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0xd62cfd0e gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd63ec6af __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xd64381c3 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd62fa894 fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd6674fe6 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xd66c211c sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0xd6725d6e phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xd64f0284 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xd65b083e sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xd664d7a2 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68b1677 mpc8xxx_spi_tx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0xd68c483d devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xd695befa l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xd699ced8 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0xd69e9a4d sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xd699c99a ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6ae0be4 cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0xd6ae832b devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry +EXPORT_SYMBOL_GPL vmlinux 0xd6be7133 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0xd6d15a1e sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xd6d7595c devl_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd6e133ae copro_handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xd6e6512c tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xd6ea0ed2 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xd6f70c16 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xd6c7357d sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xd6c7bc49 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xd6cdd77c spi_async +EXPORT_SYMBOL_GPL vmlinux 0xd6d7fdbf perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xd6ddf5ed ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xd6f122ee ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd6fd0e55 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7173482 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd708e308 pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xd70cd07b of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xd713e629 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0xd724d6d8 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xd727513e tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72cd837 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0xd73e186b transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xd73e8205 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0xd742a6a9 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xd74473f5 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0xd74a6b85 xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd764e5bb iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xd75ce86f fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd75feac4 __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints EXPORT_SYMBOL_GPL vmlinux 0xd76e4a35 ioremap_phb -EXPORT_SYMBOL_GPL vmlinux 0xd772327f metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xd77c8676 devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0xd7a86a04 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xd770cabb fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xd77cbec2 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xd78666d1 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd7941055 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xd79629e1 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd7ac8053 device_del EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xd7c261a6 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xd7b12590 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xd7c00060 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0xd7cbb26e transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7dbf6de ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xd7d0cfb0 lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7e21659 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xd7e8651e led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0xd80352ec msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0xd819458c genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xd7f189c9 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd7f6536c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xd7f9d2fc nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0xd810801e dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xd823d36d __SCK__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xd82fb758 tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xd83d3324 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xd82632c1 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xd84367b8 cxl_afu_get EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd85ed11f nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xd85f5fb8 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xd85fbf4f phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xd8608cba icc_link_create EXPORT_SYMBOL_GPL vmlinux 0xd8675cb0 devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd8a07d40 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0xd8a0b4d4 blk_revalidate_disk_zones -EXPORT_SYMBOL_GPL vmlinux 0xd8a83b36 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xd8aa87fc fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xd8b94df4 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xd8bcefc6 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xd8cff80c __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd8de5507 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd88afde5 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xd89514f1 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xd8a043fb tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xd8b4daa9 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xd8c6ef58 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8cf0e27 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd8d51291 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xd8e9247d ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xd8f2f680 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xd8f6210f devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xd8faa044 pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0xd8fadc12 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xd8fb2d19 pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90891fa blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xd9174c4c tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd901a648 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd904345b devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9082913 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xd9168e7a genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd91c94ee devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd9273cb5 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd92eaaeb dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xd91f4ad3 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xd929f8a7 __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd934e422 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0xd9543bcf param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xd957dc79 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xd95f7525 mmput +EXPORT_SYMBOL_GPL vmlinux 0xd966ce70 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97d26d8 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xd9980b6b mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xd99e5bfc of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xd99f9791 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xd9879800 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xd98cbfad serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xd999e3c3 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd9a103d9 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xd9b19aa5 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xd9b5fa2a ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xd9b7a95a pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0xd9bb076e sbitmap_any_bit_set EXPORT_SYMBOL_GPL vmlinux 0xd9bb2c13 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd9c0b4d4 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0xd9c561ea ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xd9ca4c4b fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0xd9d3b0e0 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd9c35032 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd9d96cc0 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd9dcbda7 gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xd9e699d0 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xda1f225f ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xda27fc05 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xda208efd ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda361293 isa_bridge_pcidev -EXPORT_SYMBOL_GPL vmlinux 0xda3d263d tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xda4fe531 pcibios_free_controller -EXPORT_SYMBOL_GPL vmlinux 0xda58792f sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xda5d3974 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xda86b41b rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xda3d8500 pnv_ocxl_get_pasid_count +EXPORT_SYMBOL_GPL vmlinux 0xda49fc0b devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xda5885bc mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xda5a22ee mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xda63e647 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xda7164da of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda9e7b1e of_pci_get_slot_power_limit -EXPORT_SYMBOL_GPL vmlinux 0xdaa35b16 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xdaa4efc1 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0xdaac0fe0 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0xdab550fe platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xdaa6bc09 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdaa993c8 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdaaa927f edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xdaad26e2 ata_scsi_slave_alloc EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdab79cde trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xdaba21bc sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0xdad05467 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xdad20081 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0xdad3ac06 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xdab906eb dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xdaba9dac pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdac6246e fwnode_connection_find_matches EXPORT_SYMBOL_GPL vmlinux 0xdad4255e driver_register -EXPORT_SYMBOL_GPL vmlinux 0xdad90653 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0xdae6ae72 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xdaf0cf0f regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xdafb4a32 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0xdafe43ff lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xdafec6e2 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0xdb15c7fd gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xdb1e4908 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0xdb2123be kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0xdb22332e sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xdb2fa48c tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xdb3232e8 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xdadc4102 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdae70c8a ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xdafa3f5c blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xdb018369 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xdb10c0f2 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xdb1376b9 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb1ade0f fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xdb23e8ee sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb26032b serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0xdb324f03 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load -EXPORT_SYMBOL_GPL vmlinux 0xdb48f544 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xdb4f371a fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0xdb7f77f3 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xdb81220f pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xdb890157 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xdb3f425e usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xdb46063d lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xdb4d30c3 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xdb5c4005 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xdb64b05e uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xdb6ec3e0 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0xdb6f7ca7 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xdb8350ba kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xdb8650f2 devl_unlock EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb9e8fff sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xdba7819d iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xdbaf9700 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xdbbefcc4 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xdb94d656 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xdb957b53 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xdb9cd965 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdba882ab locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xdbb3d785 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdbb5606d metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xdbbcbc8b __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdbc51c88 dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0xdbc72ac2 xive_native_alloc_irq_on_chip +EXPORT_SYMBOL_GPL vmlinux 0xdbca76f5 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xdbd441af led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbdc0e38 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xdbde1b09 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xdbde45c3 aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create -EXPORT_SYMBOL_GPL vmlinux 0xdbe5f5ac debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbebfc61 devl_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xdbef4402 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xdbf09086 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdc016770 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xdc07e007 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xdc002cb6 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xdc021c1f to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xdc050dc8 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xdc07162c phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write -EXPORT_SYMBOL_GPL vmlinux 0xdc0f3054 crypto_sig_verify EXPORT_SYMBOL_GPL vmlinux 0xdc10d4aa init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xdc1744b7 mdiobus_c45_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xdc204c1a pci_find_bus_by_node -EXPORT_SYMBOL_GPL vmlinux 0xdc2149a3 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xdc2da8b3 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xdc35a549 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xdc11c4d1 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xdc1d434c devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xdc3a2fab hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xdc3b432d irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0xdc40c3a8 dax_inode EXPORT_SYMBOL_GPL vmlinux 0xdc40e570 srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc455be2 netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc4ced28 bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0xdc54ff07 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0xdc557a66 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdc6158e3 pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc69dba6 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xdc6b6407 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xdc6e45f6 folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0xdc74624f rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xdc7b1004 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xdc804d43 virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc8c55b3 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0xdc8d61ca devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xdc965e77 pinconf_generic_dt_free_map EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9f5cb3 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xdc99176d fb_deferred_io_release EXPORT_SYMBOL_GPL vmlinux 0xdc9f6bca __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xdca43c05 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xdcb1beab sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xdcb7a076 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xdcb5e638 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xdcbba6b6 watchdog_notify_pretimeout EXPORT_SYMBOL_GPL vmlinux 0xdcbcffbf rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdcd6b43c bio_poll -EXPORT_SYMBOL_GPL vmlinux 0xdce1686d rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xdcc57270 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xdcd04407 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xdcd83ab5 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xdce3e579 power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xdcea0d89 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xdcec5083 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xdcecb124 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xdcfae668 of_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0af1b2 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0xdd25431d failover_register -EXPORT_SYMBOL_GPL vmlinux 0xdd2f2c49 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xdd1dc473 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd24ea62 devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xdd2e0151 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xdd387b4d edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xdd3bd398 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xdd4170de regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xdd50a088 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xdd53755b ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0xdd5ae3b4 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xdd5c5149 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd702eef dev_pm_opp_get_power -EXPORT_SYMBOL_GPL vmlinux 0xdd7a343c device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd7408bd regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xdd744cca wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd8707c8 vp_legacy_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xdda27d00 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xddaa7e99 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xddb2b018 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0xddb9b218 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xdd946d6d fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xdd96d881 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xdd9d5e5b devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xddb4f7e5 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xddbcf9c0 __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddbffd6a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xddcac35d __dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0xddf0540a fscrypt_fname_encrypted_size EXPORT_SYMBOL_GPL vmlinux 0xddf07334 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xddf9c893 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0xddfe1ad7 __SCK__tp_func_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xde05cc8d nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0xde0ab918 clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde0c7636 net_failover_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde26da37 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde3d69ba devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xde40a6ee platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xde616ffd crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xde31e2ef usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xde685cf5 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde71ccb5 fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0xde823a2e crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0xde86f14e devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xdec266b2 pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0xded6b1b8 iommu_tce_xchg_no_kill -EXPORT_SYMBOL_GPL vmlinux 0xdee33b11 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xde8df44b usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xdea0dbf9 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xdeb3f678 pseries_eeh_init_edev_recursive +EXPORT_SYMBOL_GPL vmlinux 0xdec12464 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xded38847 cpuidle_get_driver EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdeec4b35 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xdef0e9a9 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xdef82faa unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xdefbd186 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xdefeaafb pskb_put EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf043f0a balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xdf09116a ohci_resume EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1c0bd5 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xdf1cf2ca __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf31eb25 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xdf38419b set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xdf291736 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf31b360 mbox_flush EXPORT_SYMBOL_GPL vmlinux 0xdf3ff41b mas_next_range -EXPORT_SYMBOL_GPL vmlinux 0xdf4614c0 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xdf4091f9 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xdf4106c6 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xdf474fa8 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdf4ab5c0 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xdf502254 dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0xdf538d9f crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xdf52fb27 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties +EXPORT_SYMBOL_GPL vmlinux 0xdf5883d2 max8997_read_reg EXPORT_SYMBOL_GPL vmlinux 0xdf5da59d bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xdf68d8ab usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xdf715763 crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xdf72cd1f clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdf80d538 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xdf6a8873 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xdf8125d6 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xdf819366 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xdf835b11 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xdf8c0208 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0xdf90578f of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xdf865221 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xdf91d6f5 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xdf9b2301 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xdfa6a1e3 i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0xdfa7ccfe reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdfab01f2 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xdfab6aa9 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0xdfb744a8 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xdfc90a4c skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfe4e5e8 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xdfe85304 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xdfe64041 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xdfe88032 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xdff8c116 get_slice_psize -EXPORT_SYMBOL_GPL vmlinux 0xdff9577e backing_file_real_path -EXPORT_SYMBOL_GPL vmlinux 0xdffc9052 nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xdfffc2d7 pnv_ocxl_spa_setup +EXPORT_SYMBOL_GPL vmlinux 0xdfff5bf3 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0xe00db6dc __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe01976ab gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xe02a5ba1 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xe02d2ecf sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xe043b3ec set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe0594b38 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0375907 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe038a664 class_is_registered EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe07a5150 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xe07de27f perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xe068b0f8 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xe06db61d usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe0721345 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe0727830 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xe07b913f kvmppc_h_enter +EXPORT_SYMBOL_GPL vmlinux 0xe084cd48 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0a9062a __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0xe0b06cfc cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe0a33a0f dev_pm_opp_config_clks_simple EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0b8364e __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xe0bd9566 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xe0c0a7c8 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0xe0c484e3 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xe0c4acda trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0xe0d3a28e gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0xe0f99015 regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe1028a0e devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xe0da2743 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe0e0c209 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe0f06c2a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xe0f69e5a gpiod_export EXPORT_SYMBOL_GPL vmlinux 0xe108d302 trace_seq_printf -EXPORT_SYMBOL_GPL vmlinux 0xe11f57f6 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xe10accc4 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xe11dded9 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xe1228e5e dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xe12681a4 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xe12f1818 ata_pci_sff_init_one EXPORT_SYMBOL_GPL vmlinux 0xe13cbf02 inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0xe15767b1 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xe158989d klp_enable_patch -EXPORT_SYMBOL_GPL vmlinux 0xe15aba72 regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xe15f2c0f nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xe140a9e3 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xe149850d fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xe1530d7f dst_blackhole_redirect EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0xe176b07c find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xe19fd367 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe1878ea6 kvm_alloc_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0xe18b6c27 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe1907be7 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xe198deec dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1c0f1ea __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xe1be27b5 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xe1c2298d bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xe1c65eab tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1ce6c66 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xe1d4cfa2 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0xe1d7367b device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xe1da68d2 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0xe1efe9d3 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0xe1f8c201 md_start +EXPORT_SYMBOL_GPL vmlinux 0xe1fb3740 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xe20a5248 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0xe20baeb3 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xe20bd9ef pci_p2pdma_enable_show -EXPORT_SYMBOL_GPL vmlinux 0xe21e763c devm_pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe2237425 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xe2317d6c ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xe2328967 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xe20ca221 input_class +EXPORT_SYMBOL_GPL vmlinux 0xe22e4c98 of_device_modalias EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2412708 pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe255b4a8 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xe26363bc rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0xe263c53b __traceiter_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xe298755d debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0xe298ca3a fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xe2443f01 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xe2751fbf fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xe279fefe regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xe288b2fc simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xe29760b0 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xe2ae91ca get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule -EXPORT_SYMBOL_GPL vmlinux 0xe2d7c3a9 pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0xe2e35728 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xe2e6ba03 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe2f90ccd crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xe2ff7057 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xe311ba09 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xe314660c bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xe3341cc2 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xe33aef1f platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xe3422d1d mmput -EXPORT_SYMBOL_GPL vmlinux 0xe3444e90 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xe36c092c __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xe36ee8dc virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe3055273 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xe30d8e3e mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xe311b2ea sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe31647be kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xe31d4a91 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xe32351c8 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe3277f73 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xe33385f2 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xe3372a99 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xe347d80c dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xe3546e0b unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xe35648ce vfs_splice_read +EXPORT_SYMBOL_GPL vmlinux 0xe35ad0a4 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xe3658268 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe36b49a2 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xe371a085 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xe38153ca gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xe37681ea regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe37955e2 __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3893e9c ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xe390ae99 locks_owner_has_blockers EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3a611a6 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xe3ad4e31 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xe3aeaa03 freq_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3bd5266 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe3ce2fc5 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0xe3d11e73 iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xe3dfe086 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xe3b85efa regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe3c2ae58 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xe3d1d86c pci_p2pmem_virt_to_bus EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3ea5de7 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xe3f082e2 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xe3f7a26e rio_unlock_device EXPORT_SYMBOL_GPL vmlinux 0xe4008c8a devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0xe4065864 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xe405d581 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xe40ba284 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe41e57dd fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xe41ff40b i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe4207ab2 fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xe4297033 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe42e39cd regulator_set_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4367f22 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xe44225e6 make_vfsgid -EXPORT_SYMBOL_GPL vmlinux 0xe447879f devm_phy_package_join EXPORT_SYMBOL_GPL vmlinux 0xe447900b list_lru_count_node EXPORT_SYMBOL_GPL vmlinux 0xe448ba6c sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe44d088c vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xe44f40f1 __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xe46f30dd spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xe4603030 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe4613761 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xe474bb52 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe48fb07f mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49788d1 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xe49f305b strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xe4a68b94 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe4a06560 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe4a60714 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4bfd751 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xe4c14a31 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe4c234c5 devlink_to_dev EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4df012d disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe4c48c07 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4eade25 pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0xe4ec5322 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe4ef5cd0 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0xe4f1290f mas_preallocate -EXPORT_SYMBOL_GPL vmlinux 0xe518d5a4 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0xe51c2120 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xe572442a iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0xe574c011 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xe4f74d0c blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xe5079ea1 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xe519b2d5 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xe52366ec debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe523e741 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe5341c57 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xe54ba3bb clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xe5519a87 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xe5531aaf blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xe5576e06 switch_pmu_to_host +EXPORT_SYMBOL_GPL vmlinux 0xe560973b fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xe562a9c1 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xe5721d1f regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xe57a30a3 devm_pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe5953a8e thermal_cooling_device_update -EXPORT_SYMBOL_GPL vmlinux 0xe5a7920b irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xe5b10074 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xe5c6943f cpu_add_dev_attr_group -EXPORT_SYMBOL_GPL vmlinux 0xe5c7d547 devl_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5ae6bc8 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xe5c0fb2c blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5c93fa0 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock -EXPORT_SYMBOL_GPL vmlinux 0xe5f361bc sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xe5f7b56c xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe5f90322 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xe5f97888 irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe607517b thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe625567a xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe62dbe5a nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0xe635b743 crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xe64772df rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe65d56da usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xe62cb4dd iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xe64d13cf fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xe64e5709 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xe655bf03 crypto_sig_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xe65d814a adp5520_read EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xe6814f8b devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe687767d pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6a2e13a tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0xe6aef439 __tracepoint_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xe6b4c640 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xe6d9fdd8 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xe6bc33d4 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xe6def88b folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e47fdd devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6f43346 devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xe6fa6e68 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe716696a dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xe71b01b6 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0xe722b6ca xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xe7234684 devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0xe72c0af5 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0xe738d68d tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0xe743a169 __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0xe73028f6 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0xe730f018 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe73e0a7e usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xe747c31d regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0xe74b9548 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74c5145 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe761d8ca blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xe762c830 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe754a125 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe75a7aa1 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe7711302 crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe788d76d irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xe788efee adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe78b556b phy_init +EXPORT_SYMBOL_GPL vmlinux 0xe793410d sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7a7a405 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xe7a8e925 usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0xe7b61ebf tcp_plb_check_rehash -EXPORT_SYMBOL_GPL vmlinux 0xe7bbd10a pcibios_unmap_io_space -EXPORT_SYMBOL_GPL vmlinux 0xe7bdc4b0 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe7aab0a3 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xe7b6326a preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7ba885a virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0xe7be906b xive_irq_free_data -EXPORT_SYMBOL_GPL vmlinux 0xe7c1309f ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0xe7c3b2c4 sbitmap_queue_clear EXPORT_SYMBOL_GPL vmlinux 0xe7d34db2 opal_async_wait_response EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds EXPORT_SYMBOL_GPL vmlinux 0xe7d71b00 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe7e7d786 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xe7ea0ec2 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xe7de739e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xe7df18de regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore -EXPORT_SYMBOL_GPL vmlinux 0xe7f9dbc9 vcap_select_min_rule_keyset -EXPORT_SYMBOL_GPL vmlinux 0xe8001e05 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xe817743f nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xe7f70e76 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xe7f85cbd __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe800aad9 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe829eebf regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xe82bf6cf fscrypt_fname_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xe83228d9 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xe836780a init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xe83af95f sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xe83bf25c stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0xe84d47d6 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xe84f1cbb spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xe82e3567 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xe8346080 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xe83777e4 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8566636 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xe85705f7 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0xe8586d98 bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xe858800f fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xe851e52d rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe85264fb validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86c8640 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xe862d2ab of_pci_find_child_device EXPORT_SYMBOL_GPL vmlinux 0xe87f8643 led_classdev_notify_brightness_hw_changed EXPORT_SYMBOL_GPL vmlinux 0xe87f8ae8 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xe8865c2d bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0xe89e0d81 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0xe8a65f57 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xe882e346 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe887c139 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe88eec59 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0xe8ad1bea spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xe8ad8748 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe8bc052b genphy_c45_baset1_read_status EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xe8bf4815 alloc_dax EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c051d6 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xe8c84d87 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0xe8d156f5 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0xe8e42d4f blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0xe8e4b15f pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xe8eec622 usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0xe8ef2aea spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xe8f7695c __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xe8fd8f7c irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xe8eb363f fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9157704 dax_remove_host EXPORT_SYMBOL_GPL vmlinux 0xe91a909d power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe92c2e3e platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe93ab22e of_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe93fee02 pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction EXPORT_SYMBOL_GPL vmlinux 0xe95e5441 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe962657d mpc8xxx_spi_tx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xe9678e1a led_init_core -EXPORT_SYMBOL_GPL vmlinux 0xe98d03c7 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0xe98fe6df fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe9679739 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xe96d07ad devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xe9791252 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe97c06fb device_register +EXPORT_SYMBOL_GPL vmlinux 0xe98a3ae2 pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0xe993bb07 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe9970042 folio_alloc_buffers EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xe9a88935 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xe9c5b80d sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe9ac5a95 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xe9b5f5e2 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xe9bfc48e blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9d6ebd5 pci_add_device_node_info -EXPORT_SYMBOL_GPL vmlinux 0xe9de773f synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xe9d3227e pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe9d99064 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xe9e25aa2 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xe9e7d99e udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0xe9e9af89 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe9ee1d0c pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0xe9f72d7d class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xe9f92f9a firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0xe9fa819b sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea02e496 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xea04ee68 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0xea0f03f3 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xea11c547 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea2436b4 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xea2c1628 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xea339cf7 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xea24d576 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xea2735b5 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea41daa7 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xea659c8f crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0xea67f355 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xea77eb64 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xea3c1ca4 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xea470307 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xea5ef39c gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xea75a17f fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0xea88c866 copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xeaa542ec gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xea8f52a8 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xeaafdd0f regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xeaad0177 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xeaae7a1b tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xeaaf58c8 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xeac06ecf crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xeac68987 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xeac6c543 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xeac81518 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xeac9f997 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead486fd crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xead7111d fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xeadce6d6 pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0xeadf72e1 tm_abort EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae8ecaa usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xeaeaecb0 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xeaeee512 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL vmlinux 0xeafbb4f6 genphy_c45_plca_set_cfg -EXPORT_SYMBOL_GPL vmlinux 0xeb109562 thermal_zone_device_type +EXPORT_SYMBOL_GPL vmlinux 0xeaf417d1 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xeb011f6c trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code -EXPORT_SYMBOL_GPL vmlinux 0xeb1f46f6 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xeb2599e9 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0xeb2c652a crypto_akcipher_sync_prep -EXPORT_SYMBOL_GPL vmlinux 0xeb587b3f usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xeb5a5aa8 kvmppc_msr_hard_disable_set_facilities -EXPORT_SYMBOL_GPL vmlinux 0xeb61ff7d devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xeb27ba82 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xeb2aebbb mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xeb4c301e __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xeb576ece perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xeb6483d9 buffer_migrate_folio_norefs EXPORT_SYMBOL_GPL vmlinux 0xeb69fcdd bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xeb721201 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0xeb88470f icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0xeb9251c9 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xeb976d1f __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xeb9c7928 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0xeba33972 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xeba5b993 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xeba80b3c pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xeb6f809e switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xeb7bd2cc of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xeb7cc259 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xeb7cd9b3 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0xeb8365f3 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xebbca210 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xebc5e654 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xebc79fad stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xebcfe522 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xebd34cf0 dst_cache_set_ip4 EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd71376 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xebe2787c devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0xebe496ca __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xebf3c621 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xec022b3c devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xec0ef777 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0xec10584d spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xec118a1f dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xec14af77 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0xec16879e wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xec1982f0 rt288x_setup -EXPORT_SYMBOL_GPL vmlinux 0xec279137 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xec297259 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xec06c03d crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xec0ddfd3 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xec1c2380 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xec22004f nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xec321117 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set +EXPORT_SYMBOL_GPL vmlinux 0xec357586 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xec35ef9d pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xec3729f7 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xec383832 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range -EXPORT_SYMBOL_GPL vmlinux 0xec576860 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xec6b90dc phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0xec6ca2cc kvm_free_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0xec56883a serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xec72130f xhci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xec755019 bgpio_init EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec79451d __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind EXPORT_SYMBOL_GPL vmlinux 0xec865850 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0xeca01d9c xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xecaee6ae genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0xecba727e vp_legacy_set_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xecccfee1 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xecffbdf9 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xed03793d eeh_pe_inject_err -EXPORT_SYMBOL_GPL vmlinux 0xed040254 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xeca6fd16 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xeca7705e genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0xecc569e7 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xecd072f2 devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0xece25314 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xece9642e of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xecf46d2b fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xecf74f21 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xecf75c04 devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0xed1d612f bus_register +EXPORT_SYMBOL_GPL vmlinux 0xed26a44c fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed2c726a pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0xed2f2f02 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xed2dabeb dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xed333e18 pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed48cc9e devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xed403f16 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xed4ac73f devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0xed4de109 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0xed6605d2 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xed6e294d wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xed7c5a8c device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xed53d1ef rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xed724e64 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xed8a556c regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed8c9c21 pci_find_doe_mailbox EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xedae9e24 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xedc1ebc6 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xedeb162c usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xedff166a devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedb42169 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0xedbf7f96 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xedcfd4f2 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xedd40363 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xedf73bdf gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0xee143d7f mas_walk -EXPORT_SYMBOL_GPL vmlinux 0xee1f770c clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xee353492 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xee2189e5 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xee2719dd usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xee2c8efa component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xee35cc93 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xee363c61 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xee55886b pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xee6701a8 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xee578131 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xee613471 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xee63488b mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0xee644e93 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xee66e495 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xee74a922 __tracepoint_console -EXPORT_SYMBOL_GPL vmlinux 0xee7a286e regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xee8f96d2 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xee9c38f8 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xeeaa8a2d __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xeeabf14a vcap_enable_lookups -EXPORT_SYMBOL_GPL vmlinux 0xeeb8abe6 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xeebaaadc irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xee7aaaa5 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xee86c73e phy_get +EXPORT_SYMBOL_GPL vmlinux 0xeeb3a12c get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xeebacbc8 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xeecc835f clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeede6d55 iov_iter_extract_pages -EXPORT_SYMBOL_GPL vmlinux 0xeedfd0be platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xeee0efd1 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put -EXPORT_SYMBOL_GPL vmlinux 0xeef01f7d gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xeef5ca12 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xeef852b5 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xeef87d1d inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xef0a274f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xeee7860d __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xeef1d5fd unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xef040675 clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0xef1567ee dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xef1a43cd fuse_conn_put EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef329aca gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xef2d5cdc pnv_ocxl_map_lpar +EXPORT_SYMBOL_GPL vmlinux 0xef3a5ac9 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xef4099b6 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xef4593ab tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef5d9fbb rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef65692d devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0xef5dcfb0 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xef5fae14 dummy_con EXPORT_SYMBOL_GPL vmlinux 0xef67ec35 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef6d0376 opal_invalid_call -EXPORT_SYMBOL_GPL vmlinux 0xef6ea117 kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef994e6d phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xef7ab893 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xef8f4fd1 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xef9aecd0 regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa5c507 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0xefa65a5e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xefa62f33 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xefad6a78 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xefb3b484 dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0xefb69fb3 cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xefb89d09 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xefc43fbc irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0xefd03cc1 pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0xefd29667 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xefd2d419 blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0xefd51b33 mm_iommu_is_devmem -EXPORT_SYMBOL_GPL vmlinux 0xefe1dc12 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xefe490e2 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs -EXPORT_SYMBOL_GPL vmlinux 0xefedaf58 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xefef2d28 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0xefef6d73 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0xeff00719 power_supply_put EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xf01247bd sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xf01f297f clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xf01fe8e4 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf011be04 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xf0187ae4 split_page EXPORT_SYMBOL_GPL vmlinux 0xf02182c6 thermal_zone_get_num_trips +EXPORT_SYMBOL_GPL vmlinux 0xf026ec82 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf04668db sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid -EXPORT_SYMBOL_GPL vmlinux 0xf05e5f09 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf063a183 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0xf0671e81 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xf080f6c2 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xf08fab5c device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xf072d290 vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0xf075c5f4 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xf085d71a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xf0906481 direct_write_fallback EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0bc70e1 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf0bb9ea3 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf0ded1b3 clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0xf0e52dc0 __tracepoint_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf10c2fd1 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xf10b239f dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0xf1111461 crypto_akcipher_sync_prep EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate -EXPORT_SYMBOL_GPL vmlinux 0xf1420606 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xf15452b5 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xf158c56d dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xf15aa4e5 crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xf160071f irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xf181820c __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf123aea8 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xf12d37eb usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf163bbd7 nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0xf180e2c1 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf1946541 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xf18d2ae4 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0xf199afd9 mas_pause -EXPORT_SYMBOL_GPL vmlinux 0xf19ef5a3 ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0xf19fae66 clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xf1a0946b reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq -EXPORT_SYMBOL_GPL vmlinux 0xf1abb328 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xf1b175d8 fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0xf1bc969f encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xf1c01f6d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xf1ac0cd6 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0xf1c2bafe irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xf1ea8f90 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xf1c4a87c vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xf1e22a3c serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset -EXPORT_SYMBOL_GPL vmlinux 0xf1ed05f3 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf1edaf40 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xf1fe2ae7 sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0xf2068b09 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xf21c4c0c sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf20b5cbd ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xf20de8ce iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xf219fdc0 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf22a2090 dw_pcie_ep_raise_legacy_irq -EXPORT_SYMBOL_GPL vmlinux 0xf2397ff2 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xf243a7ce thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0xf24c1025 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf250e737 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0xf25c7c69 pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xf262d4d0 devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xf22a4a7c root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf231fe25 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xf24266fb sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0xf26eadbd devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xf2710766 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf27205cd devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xf28089c2 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf28612fe fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xf29334ca rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf2861070 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xf2883e5d device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf293d0b3 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf2941bd6 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf299c7ce disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xf2b0cf9f load_vcpu_state EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b4c7f6 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xf2b9a409 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xf2c6aef4 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xf2cc29d0 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xf2de5382 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xf2e42ea5 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xf2b4bc48 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xf2c577f2 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xf2f04bd7 pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xf2f0b73a xive_native_get_vp_state -EXPORT_SYMBOL_GPL vmlinux 0xf2f90472 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported -EXPORT_SYMBOL_GPL vmlinux 0xf3028ba1 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf3112aac mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf319c605 vas_copy_crb +EXPORT_SYMBOL_GPL vmlinux 0xf31a90ea devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf321591b vp_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0xf3236a50 kthread_data EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33f8b9a usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0xf34e47cd of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0xf34fbffc wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf33ba2b7 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xf33bfcfb spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf342684b vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0xf34786a0 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xf3482ccc devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf34af1c0 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0xf350c19b simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf361df2e fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xf364be92 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf358d087 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xf36707e9 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0xf368d677 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xf3763117 nvdimm_bus_register EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37ee3a4 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xf37f56c7 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38a4f2a fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xf3864cc6 irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0xf38d1d38 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xf39cbec1 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf3913ea9 pci_epc_init_notify EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3aa9b84 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xf3b1ff54 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0xf3b3549c ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xf3b3e771 scsi_alloc_request EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3c4199b switch_pmu_to_guest -EXPORT_SYMBOL_GPL vmlinux 0xf3dc9f44 of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xf3ebc5cd crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf3f678f8 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xf40d8feb device_add -EXPORT_SYMBOL_GPL vmlinux 0xf40e2889 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xf41055c3 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xf41bcc7e fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xf3b90ba8 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xf3b926ee of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xf3b9f660 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xf3befd5a mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xf3c2b2ae pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xf3c52553 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf3caaef2 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf3e5dbae scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xf3e64843 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xf3e75b85 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xf3eaaae5 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf3f57079 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xf41759ca lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xf41a19f8 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xf426da33 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0xf429f737 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xf42afb5f gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0xf43e4844 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf440e79e dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xf445fce9 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xf44618e9 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xf44b059c cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xf450ff75 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xf46347b5 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xf428b858 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xf445aa51 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xf446075b hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xf4574639 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xf466dbc5 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46b4784 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0xf46f7c73 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47e6c22 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xf483ee10 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf486f814 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf480adb0 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xf4837d74 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xf489a6d8 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xf48b7e4a balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0xf49c371b led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xf4a793f7 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xf4ac4dc4 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xf4ae33f4 unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4c285a1 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xf4af9fca tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf4b62832 pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0xf4c71c6c ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d7ae9f blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xf4e0f381 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xf4e295b9 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xf4e2c80c __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xf4f06e93 rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xf4f2ec83 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xf4ffac7d gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xf50e551e devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xf521561b folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0xf52a4ce3 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0xf53c61a6 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4e77695 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xf4eb428a user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf500f789 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xf503b70c splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xf504039f ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf52e4e5c dsa_stubs +EXPORT_SYMBOL_GPL vmlinux 0xf53270c4 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xf537be7a genpd_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf55021ce report_iommu_fault EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf5643fe3 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf56ab863 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf57509a6 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0xf585ec3d serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xf59e76d6 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xf59f2d71 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xf55bcdfe regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xf5913910 iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5af057d sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf5a6d011 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xf5a8e96b fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache -EXPORT_SYMBOL_GPL vmlinux 0xf5eff5e5 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xf5d965b8 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xf5daedac serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xf5eefd05 srp_rport_add EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5fdae2a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf5f8bd5b virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf5f9acdf usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf609fd50 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xf6126c29 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xf613fa20 irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xf61ad5af kernstart_virt_addr -EXPORT_SYMBOL_GPL vmlinux 0xf62bff91 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xf62ed86f tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xf61b7aae dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xf6224ef0 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xf62d449d led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xf6341a9c sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0xf63961c6 rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0xf63e85c8 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xf642c3ca usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xf64f5cf1 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf6508541 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf6488d6d irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xf64bd8ac crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xf654f195 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xf65fa365 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf66a8926 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xf6730dd5 mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xf6766677 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf696622f ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf6715bb2 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xf6777dd3 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf67a650a thermal_zone_device_type +EXPORT_SYMBOL_GPL vmlinux 0xf69fa3f8 thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6a8465a __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0xf6b0f195 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xf6b8cdbc led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xf6a44f5d user_update +EXPORT_SYMBOL_GPL vmlinux 0xf6ab7657 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf6b13320 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xf6b35c33 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c6097e tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable EXPORT_SYMBOL_GPL vmlinux 0xf6e05d25 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xf6e26012 ata_bmdma_post_internal_cmd EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f24a43 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0xf711e306 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf6f567f2 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0xf6fb92b8 regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf722f74f pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xf724d227 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7155851 blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf73df8de usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf739f91b ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf7464302 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf7597cc7 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xf75f0ddb crypto_akcipher_sync_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xf763b001 dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0xf7642068 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xf74f2236 extcon_get_extcon_dev EXPORT_SYMBOL_GPL vmlinux 0xf76ac1f6 mas_store -EXPORT_SYMBOL_GPL vmlinux 0xf77f44e6 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf7810b1e pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xf7820271 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xf7995829 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xf79b3d65 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xf7a0de0b regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf7a6fb55 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7ac7ad1 regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0xf7b5790c alarm_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7bcb505 wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0xf7c3b62d rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xf7cfea0e vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xf7d2dbdb xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0xf7d50256 eeh_pe_mark_isolated -EXPORT_SYMBOL_GPL vmlinux 0xf7d69381 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0xf7dbac95 pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xf7d95c5d clk_hw_forward_rate_request EXPORT_SYMBOL_GPL vmlinux 0xf7dbf9f7 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xf7dd5ae7 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xf7eb8de1 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0xf7f50793 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xf7fedaef poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xf7ffeb2d kvmppc_hpte_hv_fault EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf816b75e bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event -EXPORT_SYMBOL_GPL vmlinux 0xf824e561 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xf81dcf89 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xf8282fe1 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf82843a1 of_dma_router_register EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf83d40ef tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xf84374cc serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xf84c3207 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xf84c814e __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xf85128b5 mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0xf85f02a0 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xf871ae5d nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xf880e098 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xf85c7a5e iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xf863ddee vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf8a1711c do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xf8a23827 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0xf8a420c5 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xf8ae2776 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xf8c64066 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xf8c73d2b dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xf8d3c61e virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xf8d3fef8 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xf8d45372 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xf8e06058 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0xf8e2b25d dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xf8e6484b vcap_tc_flower_handler_cvlan_usage -EXPORT_SYMBOL_GPL vmlinux 0xf8ec338e accumulate_time -EXPORT_SYMBOL_GPL vmlinux 0xf8ed7046 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0xf8f0ccf4 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf8cfee54 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf8df5c36 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xf8e0a12d of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xf8e61171 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf8ed482c xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit -EXPORT_SYMBOL_GPL vmlinux 0xf8fc4771 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf90eab5f skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xf9220779 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xf9255d16 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xf92a89b7 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xf92aba4d of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xf92ef162 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0xf9460e78 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf8f40e33 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf8f6a525 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf8fb0b7c ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf90d825c usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xf9514dc5 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9532f3b cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf973e3a1 devm_of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request -EXPORT_SYMBOL_GPL vmlinux 0xf98a5777 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xf9929e08 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf9838e64 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xf9904c6b fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a25755 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xf9a2bbe8 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xf9b16715 to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xf9bf774f kvmppc_h_clear_ref -EXPORT_SYMBOL_GPL vmlinux 0xf9d77ea8 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xf9dbd892 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0xf9e07d9a ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0xf9efcd28 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xf9f82b7c tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0xfa11488b tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf9a80585 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf9b2841c blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xf9bbdbfb usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xf9e303c9 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xf9f1afc6 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xf9fdba78 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xfa06027e clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0xfa151379 mas_next -EXPORT_SYMBOL_GPL vmlinux 0xfa1731c1 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xfa17b783 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa1f3e05 led_put EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0xfa27430d crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xfa213164 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xfa2796d2 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xfa28c78d fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xfa336bf0 syscon_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xfa474f2c sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xfa495da4 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xfa606a6e ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xfa5e8a94 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0xfa64ad6f ata_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa6cddc3 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xfa766cdb l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0xfa79b05d power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0xfa7d2ad8 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xfa837e58 fb_bl_default_curve -EXPORT_SYMBOL_GPL vmlinux 0xfa8ed3b5 dw_pcie_link_up -EXPORT_SYMBOL_GPL vmlinux 0xfa90c06a pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xfa971326 klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0xfa9b760c fsverity_get_digest -EXPORT_SYMBOL_GPL vmlinux 0xfa9f92ae pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xfaa9ec16 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xfa8911f6 of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab3bf34 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line EXPORT_SYMBOL_GPL vmlinux 0xfab65754 pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0xfab7ee31 blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0xfabb6aff opal_flash_erase -EXPORT_SYMBOL_GPL vmlinux 0xfacc659f cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xfad14ed0 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0xfad2a763 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xfac583db device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfae2afb8 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xfb0b7b8d ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xfadfd185 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xfae174a3 vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0xfaf3533c thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfaf690bb inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0xfb0d7867 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xfb2659af switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xfb1b8dea kvmppc_msr_hard_disable_set_facilities +EXPORT_SYMBOL_GPL vmlinux 0xfb203015 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfb23301f usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb2af507 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xfb2ddfe3 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb302299 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb340c66 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xfb35890a x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xfb4ad3a3 udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xfb4d682f user_describe -EXPORT_SYMBOL_GPL vmlinux 0xfb526c5f phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xfb433345 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfb55645e vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb67b51a of_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb732249 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xfb70d1d1 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xfb726b17 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0xfb738290 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xfb7937f8 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xfb7f8928 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfb9245b7 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xfba01378 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xfba21783 device_attach -EXPORT_SYMBOL_GPL vmlinux 0xfba6c5a3 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xfbb5b2e0 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xfb91793b regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xfba30eb1 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfbb91f9a ata_sas_port_start EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbc47033 rio_inb_pwrite_handler -EXPORT_SYMBOL_GPL vmlinux 0xfbd5b1b6 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xfbd636c7 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xfbea5122 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xfbecd359 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xfbbdf55c iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc006baf icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xfc02ccaa pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0e7463 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xfc0679ea register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xfc0ec615 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xfc0ff030 devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0xfc20c555 lwtstate_free EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr -EXPORT_SYMBOL_GPL vmlinux 0xfc2c71f0 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xfc513570 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xfc283f6c net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0xfc28a9be task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xfc2a64f3 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0xfc51b499 mmu_lpid_bits -EXPORT_SYMBOL_GPL vmlinux 0xfc587d28 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xfc5c8181 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0xfc65de0e devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xfc571e96 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xfc5cf339 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xfc5ec1aa nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores -EXPORT_SYMBOL_GPL vmlinux 0xfc7e5d68 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xfc838c32 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0xfc8ceaff xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xfc9ff512 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0xfca2591d component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xfc71e4c6 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xfc8d7596 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xfc8d8fca vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xfc92cf8e netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xfc958f4f wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xfc9e2644 devlink_register EXPORT_SYMBOL_GPL vmlinux 0xfca4b21c to_software_node -EXPORT_SYMBOL_GPL vmlinux 0xfcab1724 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xfcaaeed1 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0xfcb5f1e3 device_del -EXPORT_SYMBOL_GPL vmlinux 0xfcbe8ae1 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xfcbefd5b xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc37108 of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfcc51045 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xfcec9d2a sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xfcefc21a platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xfcc478b0 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xfcc807f2 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xfcd2d5c2 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfcdb3dd1 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0xfce8e67d debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xfceaecbd pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xfcf7b3a6 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfcffda3b devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xfd0e065f __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd199063 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xfd2eddba blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0xfd3e0b98 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xfd45c424 nl_table -EXPORT_SYMBOL_GPL vmlinux 0xfd4b25b8 vcap_tc_flower_handler_arp_usage -EXPORT_SYMBOL_GPL vmlinux 0xfd53f2a9 __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xfd5531a2 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0xfd590add mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0xfd6007c7 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xfd61c68a wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfd63730c i2c_client_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xfd6451b1 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfd02bc0d flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xfd113e62 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xfd2352fc pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xfd2c2465 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xfd4d55e6 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd725050 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd7e3ced __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xfd7f1138 extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xfd83f86c serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0xfd87f461 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0xfd8c97ca usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xfda8da0b gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xfdacae37 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xfdaf247b phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xfd99da69 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfd9fb52a devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfda08ac3 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xfda36432 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xfdae9e24 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xfdba1353 hash_page_mm EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdd71e73 udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xfdc5bd37 usb_of_has_combined_node EXPORT_SYMBOL_GPL vmlinux 0xfdd86052 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfddafce7 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xfdde08fd validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xfddeda00 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xfdedcd3b generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xfdee9793 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xfe1470d1 __scsi_init_queue EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe275fc9 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0xfe295d5e skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xfe1d7a8d wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xfe24b762 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0xfe2c717a irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0xfe30965d crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xfe31f9e4 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0xfe44f5b3 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xfe4527a7 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4ff5c4 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xfe51f2a4 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xfe5899a0 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xfe6106f2 devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xfe707ad3 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xfe7d0eb9 split_page +EXPORT_SYMBOL_GPL vmlinux 0xfe4c674e of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xfe500a8e dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xfe667344 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xfe801e55 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe8d2402 devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfea8bb87 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible EXPORT_SYMBOL_GPL vmlinux 0xfeb54517 devm_thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0xfec711c0 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xfec8b2e4 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xfec0af0d perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xfec133ef ata_sff_drain_fifo EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeea1b3d irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0xfeec3489 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0xfeecc3d0 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfef6d1f8 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xfefa2e17 trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff071f8e irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xff08daf6 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xff095138 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0xff11631c fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xff142ff8 sync_page_io EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff16a3e3 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL_GPL vmlinux 0xff17d41b adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xff1bc855 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff354a58 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xff405082 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xff3ffdc4 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff64576f phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xff6abe49 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xff6ddb8c inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xff6e71de sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0xff7525ea ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xff4a72e2 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xff581bae usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xff59c945 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xff747146 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff7ebaf0 strp_process EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8279d4 of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff8f64c2 is_pnv_opal_msi -EXPORT_SYMBOL_GPL vmlinux 0xff938b49 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xff8789cf of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xff98bc5c blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xff9ac500 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xff9e8c03 devm_clk_hw_register_fixed_factor_index -EXPORT_SYMBOL_GPL vmlinux 0xff9ef1ca cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xffa4e289 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffd3ad1c devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xffeeb6e3 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xffb7862b ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xffc0c4bd rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xffd69639 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xffe294e4 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xfff59ad3 fat_scan FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -FW_CS_DSP EXPORT_SYMBOL_GPL 0x001f3cd0 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0144f9cb cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0bafb15d cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0cdc0e87 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x116387a0 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x1bc2521a cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x2e871595 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x32fd98cb cs_dsp_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x38b9bc68 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x49381a3a cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1793a78f cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1fccab54 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x23162285 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3d4ad51f cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3e148bf1 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x57e1c7ba cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x59d03344 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e793cb2 cs_dsp_remove drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4eb0842a cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6c6da26e cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x83dbffcb cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x84e0d62d cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x8d5c36a0 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6fe42a18 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x8a7fcacc cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x937602cf cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x99e81bba cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9cf21972 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xa5f2473f cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6482368 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9fcab183 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa171f7c2 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xaa970c39 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb5986f88 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xba9ed2b0 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xbc250109 cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xbe7268dd cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xcee16fb7 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xd154c108 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xda6a83ed cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf2190c0f cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf4c2bce6 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0x6b69b05f hwmon_device_register_for_thermal vmlinux +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc62d12ac cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xc8dcfe51 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd6033f68 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd9a99042 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xe8a1ca02 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xeea6a30c cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x2fe4d65a hwmon_device_register_for_thermal vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x85c2b7eb idle_inject_stop vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x95e93783 idle_inject_set_latency vmlinux @@ -25906,31 +25942,31 @@ IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xea86d9dd idle_inject_register_full vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux -IIO_AD5592R EXPORT_SYMBOL_GPL 0xb676e515 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0xe96811b0 ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x9e384342 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0xe1542b7d ad5686_remove drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x4868c5b7 ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0x9ad44705 ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x3d6afc73 ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0xfbabf19e ad7606_probe drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x0c8b142c adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xeac87af5 __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0c69f300 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0da2996f __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2cd13985 __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4ce7979f __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4d4a5c12 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x58858d18 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x83c5147a __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa8353d7c devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xee992046 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf5913bc0 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xa9b07b38 __adis_reset drivers/iio/imu/adis_lib -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xd26558e8 devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xd37cb626 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x03555e59 adxl313_core_probe drivers/iio/accel/adxl313_core -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x33b5c379 adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_AD5592R EXPORT_SYMBOL_GPL 0x088e437a ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x7cfe5db1 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x16440310 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x5f776c2b ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x76483281 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xfe4b54ac ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x42f4b6c8 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xc4d433fa ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x23bfdda0 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x9da3d3ac __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x02953ee8 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0ac69d57 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1143ae2f __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x334ee726 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x786ad1c8 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7b511e2a devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7e95f249 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x888b619d adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa9d6994c devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe66dfd6d __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x56e99f3b __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x7aabd862 devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xddd4ae52 adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x1a2606a2 adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x6de61776 adxl313_core_probe drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core @@ -25938,60 +25974,60 @@ IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core -IIO_ADXL355 EXPORT_SYMBOL_GPL 0x5a2aa1ab adxl355_core_probe drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x9117dbb0 adxl355_core_probe drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL367 EXPORT_SYMBOL_GPL 0x7b4fa039 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x3d6db690 adxl372_probe drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x6cd9966e adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1018bc02 ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x171ccce9 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x184574ca ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1d978c08 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x47a7de8b ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x78b55b38 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7d97b050 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xde55db5b ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe2b8a731 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xf1f1cdce ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0x0c99b991 bma400_probe drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0x350ae6a7 bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x2df8c2e1 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x5179e87c bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x5fec54dd bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xbfe50e35 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x3c1c60ad bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x4b9f7e37 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x5be9443a bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x694de870 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0x730a9c8e bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0x6c530686 bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x4243497f bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x484d4681 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x9c9b56fa bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xf31cec76 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0xb1f00425 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x817ab3fd adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x42443918 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x5605953d adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x0d645f48 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2ea8b671 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4a28e786 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9c0d4dd5 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa4363c3d ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xad44cf13 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xaffe0ba0 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xdcbfb577 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xed1c3922 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfe06ece1 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x1085c525 bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xc1b18fbe bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x23fb8a63 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x3574d1c9 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xd3d7f40d bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xefe9a13f bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x3abbdbbe bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x935fce3f bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xce7d32f6 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xdf01ae48 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x0c546825 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xf9a3709a bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x3cf55690 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7bbab8ee bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xb6e5100b bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xfea50faf bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x3b0c95d1 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL_GPL 0x6e4d9148 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x19c6aeee bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x1cc2abe6 bmp280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x2b2727ae bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x60a38e3d bmp180_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x6b278a22 bme280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x790f0126 bmp580_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x81cd4a90 bmp380_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf340738c bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf694180f bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf8e8a48a bmp580_regmap_config drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x11de5803 bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0xae046190 bno055_probe drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x1dfa8690 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x5b184dc7 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x7d6b0ec8 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x28bbc2a1 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x8a655664 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc2ceae55 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc38cb1dd fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_BMI160 EXPORT_SYMBOL_GPL 0xd3a83fa7 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x022f7116 bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x07fb1a95 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x0c53cd93 bmp580_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x175c4291 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x3450d909 bmp380_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xa95f387f bmp280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xcc9292bf bmp580_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xd53e1da4 bmp180_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xdeba19bb bme280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xed7dc7f7 bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x07691dcf bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x4e37473a bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x0a312f20 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x2083f149 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xe56d047c fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x000f3679 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x0e176375 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7678d323 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa2d1a2bc fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x094bee02 iio_gts_avail_scales_for_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x296bb0cd iio_gts_all_avail_scales drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x4ed89402 iio_gts_find_sel_by_gain drivers/iio/industrialio-gts-helper @@ -26005,356 +26041,356 @@ IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd7e29768 iio_gts_find_gain_sel_for_scale_using_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf0f8e0d3 devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf42af90f iio_gts_total_gain_to_scale drivers/iio/industrialio-gts-helper -IIO_HID EXPORT_SYMBOL 0x11401254 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x5ae237ed hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x033d282f hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x0421316e hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x182851c5 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2355b114 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2a25aff5 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x418d2764 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4ba6da09 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5a38ef23 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x854c9ca9 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x85d13e1b hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9dae1b93 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9f6cc527 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9fae9246 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xa639d396 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xcec05528 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xd32b6ee4 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xe9d14062 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xed28fc34 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x08acd225 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x10f8c0e4 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x70d2f2f1 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x89c67a52 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0x309873d7 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x4ece08d4 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0xffb600d6 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0xd9d67691 hts221_probe drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0xdf5225ba hts221_pm_ops drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x5be4e1e7 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x897cd14d inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xeda16d07 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0xc55b015c kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0xeff5f94b kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x1149bee4 kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x3189051f kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x980e2926 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x07306883 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0x22235f40 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0179d2bb ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_HID EXPORT_SYMBOL 0x82263d2f hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x950af6f7 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbd366515 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe8fb9cca hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xb4b080dd hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xde561fe9 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xee72a0f0 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf0f9e78d hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x1a5ab462 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x2bde4f46 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x635225f7 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0xafd57a62 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xdc168983 hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x0099e440 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xafd60fe1 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xe900cbe9 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x3f5a9d60 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x9995e89d kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x3d7b0b08 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x4935a135 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xfcec36ff kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x23205c74 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xc8602a3b st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x01c51cdc ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2ef6814f ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x36d8d9a5 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x64c3edff ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x6ed6b4e8 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7bee7ad1 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x89a101c7 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8a5edf53 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd93a8894 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe79fb55d ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x15b39903 mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x2ea7367a mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xd6a21845 mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x002cb448 mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x01a3bc90 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x0685de04 mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x353a85c8 mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x3ba0d8d2 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x61a3cd88 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x759172e5 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7f686012 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x9f9167da ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xdf21c73f ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xdf5775b9 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xefd4fb42 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x0f8e6c90 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x5f38a220 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x8a072f56 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x071c5fb8 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1c91b65b mma9551_write_config_words drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x45600b10 mma9551_update_config_bits drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x4c19a876 mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x4f0bbf60 mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x6e4753a4 mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb4b065fc mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x481f51a2 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x6f1dbd09 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x78b07c61 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7ce74255 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x9fd79c71 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa1a26bdf mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa497c8cc mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xad9496ce mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb043d5d2 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb2988e71 mma9551_gpio_config drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xcba45d9c mma9551_app_reset drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xce755c33 mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xd7c59f50 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xf96edfc7 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xfd01ab71 mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xfe9daf30 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd560abad mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd6bcc33d mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xe2145b8e mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xe23918ba mma9551_read_version drivers/iio/accel/mma9551_core IIO_MPL115 EXPORT_SYMBOL 0xf44a5c5d mpl115_dev_pm_ops drivers/iio/pressure/mpl115 IIO_MPL115 EXPORT_SYMBOL_GPL 0xc1f1119d mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0xb6fc629b inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0xe3cd352e inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x95c353ff ms5611_probe drivers/iio/pressure/ms5611_core +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xbb369b25 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xe6691cd1 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0xa58fd88a ms5611_probe drivers/iio/pressure/ms5611_core IIO_RESCALE EXPORT_SYMBOL_GPL 0x094814f5 rescale_process_scale drivers/iio/afe/iio-rescale IIO_RESCALE EXPORT_SYMBOL_GPL 0x8c3197e7 rescale_process_offset drivers/iio/afe/iio-rescale IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xbd4667b0 rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_RM3100 EXPORT_SYMBOL_GPL 0xf6688823 rm3100_common_probe drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x148f254b scd30_probe drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0xf634c86e scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0xd9d66252 sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x15c97df3 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x37c634e3 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x6e1a25c7 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SCD30 EXPORT_SYMBOL 0x1b9f9f6b scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xc6ddb39e scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xcc1f6309 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x5664c70f ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x63cb3780 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub IIO_SSP_SENSORS EXPORT_SYMBOL 0x825f0922 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x85098066 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub IIO_SSP_SENSORS EXPORT_SYMBOL 0x88055ba8 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x8ffb0622 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xb25445bb ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa306c1f6 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xaf684fa5 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub IIO_SSP_SENSORS EXPORT_SYMBOL 0xf5c96b46 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_ST_SENSORS EXPORT_SYMBOL 0x0055dc04 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x054c7257 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x0eb912f0 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x17fa4b80 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x35ee8aba st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x36723b33 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x3f1b2663 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x4533c7c2 st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x48220fa7 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x571ae369 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0x628019b9 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x63e89bcd st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x6a868c4f st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x82686618 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x88f975d2 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x8f99d22b st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa27c542f st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xa2b6d589 st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xa4d2ffc7 st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xaba62926 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xae0b274d st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xaf81d6a4 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0xb187c825 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xc6ee28c8 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xec27ca64 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xf0c034b4 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xf0dd1ecb st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xc27fafaf st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0xcb002473 st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0xfd77136c st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x091e632c zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0c8da03c zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0e08a4b0 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x53620117 zpa2326_remove drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6c0b4249 zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x88c66368 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x171023d3 m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x406856b5 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x453c6b52 m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x77b1f790 m10bmc_sys_read drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xfd2ddc17 m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core -IOMMUFD EXPORT_SYMBOL_GPL 0x10382ef4 iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x18532894 iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x2dd7005a iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x39bc689e iommufd_access_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x4e7df74b iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x5e798e16 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x647b9ccd iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x976d6130 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x9ec5f7c0 iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xa62f3290 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xcfb75ba0 iommufd_device_unbind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xe82a0ce7 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xf6000520 iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x4af298c6 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x5bb1f773 iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xe03e8ed7 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x01c45552 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x029f9c62 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x04d0e761 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x060c3ad9 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0a1935b6 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x105ca08a iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x13798b80 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1e6243dd iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IIO_ST_SENSORS EXPORT_SYMBOL 0x201de14d st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x39445097 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x3c5dbb64 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4575c1c1 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x46ef44eb st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4fd49c32 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x52a08c7b st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x564774f6 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x70d112e2 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x87bb9f4d st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x881ba2d3 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8a25e168 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9d5cfae6 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xa9d6fea9 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xc35447da st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xc645005a st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xca0a3724 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xcaadf368 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xdb0c5129 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xdb5e4d8d st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe138e400 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf04a791b st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xf0e4111b st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf62e5355 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xf9b64adf st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x375c63b4 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x5a54dc1b st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xb1d2eaa9 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x58ee8344 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5c2419c4 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7f4a9a65 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x85a02b79 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xe4739ff0 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xec4e838d zpa2326_probe drivers/iio/pressure/zpa2326 +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x213c8106 m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x6a9759f9 m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xbe10ddaa m10bmc_dev_init drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xc5e4569d m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xfcc2abff m10bmc_sys_read drivers/mfd/intel-m10-bmc-core +IOMMUFD EXPORT_SYMBOL_GPL 0x2e280749 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x3212ffeb iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x3aacd484 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x47b94c60 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4e65eb84 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x5184d870 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x5995539a iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x5d35b6a8 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x693085f4 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x947b1815 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xbbd4f54c iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd0327b7c iommufd_access_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xf216c074 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x13d25e1c iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x3764f7a6 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xb59c6114 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x0ad8e398 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0feb82d1 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x103db6ea iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x12db2aa5 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x13f1f445 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x186b3bc6 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x186ff202 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ce286d2 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1ee1c386 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x205f8ccb iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x20b3882c iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x222eb0fb iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x229d8b26 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2559a602 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x29948484 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x29cb0665 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2a5a4d41 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2e114daa iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2edd6478 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x30c8340e iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x34ed65d5 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x32484a35 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x34998f8c iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35307150 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3a817653 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3cbc60c0 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3d52c315 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x44c4af52 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x41b3df03 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x423fc5ad iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x447ebc21 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4992cd51 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4b3670fe iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5102750a iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x517ac59d iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x57a766f4 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5bf4c31b iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e587e4 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4a16a4f6 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5496a6c9 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x565935dc iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x59ea0f73 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5e1a6ac1 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x62611dd8 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x641fbb53 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x68ee7e43 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x6e4a86d9 iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e663b65 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72453bb7 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72480388 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x724e8822 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72f370cd iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x7307e077 iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7342840e iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x74572da6 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x76b9bd5b __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x77a257a1 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78232daf iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7c7ab76c __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x818d9b9d iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x854e0fea iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8d28c4c9 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8e3d8855 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8f90e4df iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x924343f4 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x99d4b4d1 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9a011520 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9b97d50c __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa361da6c iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa7026055 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa7b0148a iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa8dabdcd iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xad99b57b iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb31fb5f5 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x87b69871 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x976d0a43 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x99881d90 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9ccaf82d iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9f77129b __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa0716008 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa42b7fab iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa9a20f34 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaa7b1d7d iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xadca6ca7 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb54fcdcf iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7c843c7 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc407ec65 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcdbe2d8c iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbe147bfe iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc1eff297 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc378d43d iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc53ba587 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc93a405a iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcb57d914 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcc101fe3 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xce867286 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcf1412c2 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd23b252a __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd40ef2f4 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd57947ff iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe8d73895 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd0a9434c iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd7721b59 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe8514764 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe8d40a33 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xebf7afd6 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xef4036ec iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf0c2c4c9 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf2aa2576 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf423f73f iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xff1e8cab iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x3a7cd31d ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x94bf8707 ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x04add250 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x23bae6d5 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x23d044ec mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x2516e92a mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x567a67d6 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x76ad0d7d mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x76bc1cc7 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9d29276e mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa3cf2934 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa95edcd8 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbc1c3a62 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd0df3e3c mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd336e5a0 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe14d665c chameleon_parse_cells drivers/mcb/mcb +IWLWIFI EXPORT_SYMBOL_GPL 0xec6604c7 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x8098f9f4 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xf81d86c0 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x200d1ced mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4287fa83 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x43d47d90 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x808bfc0a mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8329e483 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x86486236 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8f61863e mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa89ec95a __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xacfc832a mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xadd81765 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc8453c78 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd7532ae7 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xea00fa04 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb10f1c2 mcb_alloc_bus drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x36f78ddd ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0xd77b4ead ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0xdfb8a2ea ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x147658c8 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x28032b2c nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x29ed0b18 nvme_execute_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2a1d3876 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x60674388 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x933506a9 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbafdd034 nvme_passthru_start drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x01ce507a peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x09e1f538 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x1274ff47 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x1e081a7a peci_xfer_ep_pci_cfg_readw drivers/peci/peci +MFD_OCELOT EXPORT_SYMBOL 0x7b89a4f3 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xfdba3dc6 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xccec0451 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1be54e26 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6b231b07 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6e1672da nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x716a4114 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x98a69290 nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xccd10edf nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe8266fff nvme_command_effects drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x06e729f0 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x11af05e7 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x12d26612 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x251b9cc8 peci_xfer_pci_cfg_local_readw drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0x2a7408c8 peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x46abb0d2 peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4d15ba2a peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5175bc1a peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x572fd70e peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5d095927 peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6c68850e peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6f508f47 peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x7912387e peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8156b95a peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x87b5246e peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8ff1d60a peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9a1e50b4 peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb1c985f3 peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb9bb10e1 peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc08c706a peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x30894daa peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x365c0107 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x38cb084f peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x42300ac7 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4cd0f346 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5b819601 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x70ca634a peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x73880ef7 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x778f5f52 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x83910226 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8e0166c5 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x96db0395 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9e60381d peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xae4e095a peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xba6af9cd peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbf1ff89f peci_xfer_get_dib drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0xc962ecc2 devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xcae21be0 peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd5255928 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd7328f67 peci_xfer_pci_cfg_local_readl drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0xd7ddad5f __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdb23e24b peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdd24df5e peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf994a370 peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xfd39d62f peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd82c008d peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd9e00a09 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xed4f4a07 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xee0d27ba peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf5fd112c peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf837dbf1 peci_request_data_readl drivers/peci/peci PECI_CPU EXPORT_SYMBOL_GPL 0x268a9338 peci_ep_pci_local_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0x55f2138e peci_temp_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0x8ab557d9 peci_pci_local_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0x8b899229 peci_pcs_read drivers/peci/peci-cpu PECI_CPU EXPORT_SYMBOL_GPL 0x94db4ae5 peci_mmio_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x0694aee3 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x11af6746 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1d8a196a pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2b0db956 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x34e8e894 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x37b33e3a pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3e05522b pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x48073791 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x49327b0d pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6c18905d pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7ab927fb pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8f030456 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8fb069eb pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb2429261 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc09668e1 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc181ef4a pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc8313f36 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc8b6c1d0 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xee50f96c pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf03ca68e pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfefc759c pmbus_unlock drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x16ddcc10 sx_common_read_proximity drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x271c2da2 sx_common_probe drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x3fa93708 sx_common_get_raw_register_config drivers/iio/proximity/sx_common +PMBUS EXPORT_SYMBOL_GPL 0x03f72682 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x18665e6c pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1a832abd pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2aaa536f pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x47717b47 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x631c084d pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x80921926 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x84c2ac18 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x883348f1 pmbus_unlock drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x93f4784e pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x96793fea pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x997808e3 pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa55aa0b4 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa8e8e434 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xac1413d8 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd11bb4ee pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xde6f9b51 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe40ba1b1 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xebea6f55 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf80c4789 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf9fa5515 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x109a52a9 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x91d5d40e sx_common_read_proximity drivers/iio/proximity/sx_common SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xda8d66b4 sx_common_read_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xe1441206 sx_common_write_event_config drivers/iio/proximity/sx_common -SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x19685391 serial8250_pci_setup_port vmlinux -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x21b6c210 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xb1bb589b sx_common_get_raw_register_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xbd4b463c sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xef35dcc8 sx_common_write_event_config drivers/iio/proximity/sx_common +SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0xf34dbe3c serial8250_pci_setup_port vmlinux SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3dca03f7 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x4eb15aaf cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7ef2c2bb cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xe1d54114 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xe6b62b99 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7148a0ac cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7caa5c90 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x905725a9 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x9d9c7d8c cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xa748b77d cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xd36fe4e5 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x049a474a cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x05482545 cs35l56_irq sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x21e92f63 cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x40e1dc0b cs35l56_init sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x48018537 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x6df49d8e cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xaf424e2e cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xdd6ba1e6 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xe1c86a1c cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x10b75e78 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x2747818a cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x632abde1 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xa42558f4 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xb2d90c3e cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xf1168442 cs35l56_init sound/soc/codecs/snd-soc-cs35l56 SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x05c2529e cs35l56_tx_input_values sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x0bf80b05 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x0c6116c7 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x2c90284d cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x312c0e0f cs35l56_dsp1_regions sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x55ab1ae1 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x64e759e4 cs35l56_tx_input_texts sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x72c339a9 cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x88762c92 cs35l56_get_bclk_freq_id sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xc4963f76 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x9ac52e92 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcd5438ad cs35l56_fill_supply_names sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xfd3ef8b3 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x18e49675 cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x26830471 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2e6d2cc0 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2fc6047c cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x309b5704 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4787869e cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4c26c807 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x766d592e cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x88e750ce cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9125e524 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0e336f66 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x1fe723cd cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x404872a4 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x443be222 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x504cd114 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7997a5ae cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x79e832d9 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7a2b6791 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x7f6e72ef cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x82ae9e7d cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x928c8596 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x95f911a6 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae4be5c4 cs42l42_irq_thread sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xbfb32cb2 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xaf3a77f8 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xcf5b5d6d cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd00ca557 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xfccc25fe cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe18f6d11 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x09351149 tasdevice_prmg_calibdata_load sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1a949c7c tasdevice_select_cfg_blk sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1ab9b7d9 tasdevice_select_tuningprm_cfg sound/soc/codecs/snd-soc-tas2781-fmwlib @@ -26368,35 +26404,35 @@ -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x08f00b60 dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2264d495 dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2c52ea45 dw_spi_dma_setup_generic drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x39c97341 dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x42461a95 dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x82a9ace7 dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x846f45c3 dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xceac9a7f dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd4e5fa14 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x207e05f0 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x3f332ce3 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x502e3e56 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x63543871 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x67431d17 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6fe8cdc1 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x880786c8 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x9958f6dd dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdbec6b0b dw_spi_resume_host drivers/spi/spi-dw TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x0963f092 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0a68a399 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1af8e0fe usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x05d738aa usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x070e89ad usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x071542da usb_stor_disconnect drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1e3b0ea5 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x269041b2 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x28b3de03 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2a501615 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x3b9d79df usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x429f1710 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x44ef6ca8 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x49b331d2 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4a0cb997 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5513acf4 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x71fa0eec usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x82abb0a5 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x89f7bf5a fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9e481a99 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc0aa356b usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcdf2cc71 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd9d054d1 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xdb5041ad usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xed010273 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf35666e6 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfc82b91b usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x31b3b4ee fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x329962de usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4a4da65f usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4ad0d1ee usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x50134591 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x51c8ed21 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5744dc22 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5a6f8b95 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x880e6ecb usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8b5a63ce usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x922abb4f usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9248b52b usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x949b9a7f usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa2979759 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa8546365 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc0f57680 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc4e0e474 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc5b41717 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc74c6084 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcb0b9843 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdb6a0cc9 usb_stor_bulk_srb drivers/usb/storage/usb-storage diff -u linux-oracle-6.5-6.5.0/debian.master/abi/ppc64el/generic.modules linux-oracle-6.5-6.5.0/debian.master/abi/ppc64el/generic.modules --- linux-oracle-6.5-6.5.0/debian.master/abi/ppc64el/generic.modules +++ linux-oracle-6.5-6.5.0/debian.master/abi/ppc64el/generic.modules @@ -195,6 +195,8 @@ adl_pci6208 adl_pci7x3x adl_pci8164 +adl_pci9111 +adl_pci9118 adm1025 adm1026 adm1029 @@ -216,6 +218,7 @@ adp5589-keys adp8860_bl adp8870_bl +adq12b adrf6780 ads7828 ads7846 @@ -243,10 +246,12 @@ adv7511 adv7604 adv7842 +adv_pci1710 adv_pci1720 adv_pci1723 adv_pci1724 adv_pci1760 +adv_pci_dio advansys adxl313_core adxl313_i2c @@ -286,6 +291,8 @@ aic79xx aic7xxx aic94xx +aio_aio12_8 +aio_iiro_16 aiptek aircable airo @@ -325,7 +332,14 @@ amdgpu amdxcp amlogic-gxl-crypto +amplc_dio200 +amplc_dio200_common +amplc_dio200_pci +amplc_pc236 amplc_pc236_common +amplc_pc263 +amplc_pci224 +amplc_pci230 amplc_pci236 amplc_pci263 ams-iaq-core @@ -640,6 +654,7 @@ budget-core budget-patch c67x00 +c6xdigio c_can c_can_pci c_can_platform @@ -675,8 +690,10 @@ cavium_ptp cb710 cb710-mmc +cb_pcidas cb_pcidas64 cb_pcidda +cb_pcimdas cb_pcimdda cc10001_adc cc2520 @@ -800,9 +817,11 @@ com90io com90xx comedi +comedi_8254 comedi_8255 comedi_bond comedi_example_test +comedi_isadma comedi_parport comedi_pci comedi_test @@ -945,7 +964,16 @@ da9150-gpadc da9210-regulator da9211-regulator +dac02 daqboard2000 +das08 +das08_isa +das08_pci +das16 +das16m1 +das1800 +das6402 +das800 davicom dax_cxl dax_pmem @@ -1034,6 +1062,7 @@ dmard09 dmard10 dmfe +dmm32at dmx3191d dnet dp83640 @@ -1082,6 +1111,12 @@ dsbr100 dst dst_ca +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x dt3000 dt3155 dt9812 @@ -1341,6 +1376,7 @@ firewire-ohci firewire-sbp2 fixed +fl512 flexcan floppy fm10k @@ -1964,6 +2000,7 @@ igc igorplugusb iguanair +ii_pci20kc iio-mux iio-rescale iio-trig-hrtimer @@ -2801,6 +2838,7 @@ mdio-octeon mdio-regmap mdio-thunder +me4000 me_daq mediatek-ge megachips-stdpxxxx-ge-b850v3-fw @@ -2899,6 +2937,7 @@ mp5416 mp8859 mp886x +mpc624 mpi3mr mpl115 mpl115_i2c @@ -3020,6 +3059,7 @@ mtk_t7xx mtouch multipath +multiq3 musb_hdrc mux-adg792a mux-adgs1408 @@ -3207,6 +3247,14 @@ 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_routes_test @@ -3569,6 +3617,18 @@ pci-stub pci200syn pcips2 +pcl711 +pcl724 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcmad +pcmda12 +pcmmio +pcmuio pcnet32 pcrypt pcs-lynx @@ -4227,6 +4287,9 @@ rtc-x1205 rtc-zynqmp rtc_cmos_setup +rtd520 +rti800 +rti802 rtl2830 rtl2832 rtl2832_sdr @@ -4310,6 +4373,7 @@ s3fwrn5 s3fwrn5_i2c s3fwrn82_uart +s526 s5c73m3 s5h1409 s5h1411 diff -u linux-oracle-6.5-6.5.0/debian.master/abi/s390x/generic linux-oracle-6.5-6.5.0/debian.master/abi/s390x/generic --- linux-oracle-6.5-6.5.0/debian.master/abi/s390x/generic +++ linux-oracle-6.5-6.5.0/debian.master/abi/s390x/generic @@ -1,28 +1,28 @@ -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5731a85d crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x748a9849 crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa79662d8 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2bebaa2b crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd2ee0485 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xe49f38dd crypto_cipher_encrypt_one vmlinux CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0856d699 dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0d03e666 dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x25e756bc dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x2ced3b30 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x350290b6 dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x4332a6b7 dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x48790599 dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x48f42b38 dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x4f55e042 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x655cd7d9 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9cea3944 dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xac222793 dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xcae45788 dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd5f9ec90 dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xdffa4712 dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xeda160a2 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf0ea7752 dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf20c42fd dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf8ee28e4 dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf8eef036 dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xff014167 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x048860ab dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x04c9afa2 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x06b6912b dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x23b6ee4a dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2d75538f dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x51c8fc3a dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6839d79d dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x68785641 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6bd5bbf5 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x70dc88a4 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x72e6d54a dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x735af657 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7b285cf9 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x878690a4 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8888f386 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x90472dae dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9934c5f9 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa28be524 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe2f3f073 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf790963a dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfac04c31 dma_buf_vmap vmlinux EXPORT_SYMBOL arch/s390/crypto/chacha_s390 0x220b49ab chacha_crypt_arch EXPORT_SYMBOL arch/s390/crypto/chacha_s390 0xdc94f829 chacha_init_arch EXPORT_SYMBOL arch/s390/crypto/chacha_s390 0xdd8ec6bd hchacha_block_arch @@ -47,1434 +47,1435 @@ EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x063ca8c1 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0x6cfbf93b crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x9cfcf990 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0xd8125fe1 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0xddce5950 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0xe9fdc238 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x18690881 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x2c5057d3 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x7f1bcd28 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x87c60d93 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xb9ab9531 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xeb69b9f4 crypto_nhpoly1305_init 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/gpu/drm/drm 0x007198bf drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01dc5419 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00865eab drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00912e3a drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x013a427a drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01d8f6e6 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02aa899d drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02eeeea6 drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x03156232 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d52883 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0445f22d drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a4ee8f drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05aacdad drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05e1dbb0 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e0823e drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x071df6f4 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x082fc903 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x086a875b drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0917c903 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a37112e drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a40d6aa drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x056cb970 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b11151 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06104839 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x075ad34e __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0820c4a7 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0846ff3a drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08aa8b36 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09980aa5 drm_vblank_work_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ad7782d drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b714b1e drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c032e25 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c04271c drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c4ee32e drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ccb23ff drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d033f2f drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d28376c drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b1dd4c2 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b78d7f4 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d6505e3 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d771a5a drm_connector_set_orientation_from_panel EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0de60ca5 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e43d118 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4cd202 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f6884f3 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df6c6b8 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dfb91a0 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4b44c3 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1f9bc7 drm_show_fdinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f6cdd5a drm_mode_create_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1048abb2 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1028f693 drm_plane_enable_fb_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ae9a38 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1314a15d drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1315ffda drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x137530d5 drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x137fcefd drm_show_fdinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x145c3665 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10d99f77 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12336360 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x133ccae3 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a5321e __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1412bb8b drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x143315ee drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b4e87e drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163d7d8f drm_bridge_chain_mode_set EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x171d1b96 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1785e4aa drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17d9dae8 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x184dbf23 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x189e9f1c drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b7c715 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c97a30 drm_bridge_chain_mode_fixup EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b495d48 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d585530 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d772273 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e87c194 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f8e0a8f __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ff4d5c0 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20ab3c52 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2100c556 __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x210484d8 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a71acd3 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5802ac drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c9b1f4e drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cef7251 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcca512 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de0374e drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e69fdfd drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2078b965 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21041335 drm_invalid_op EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x219342ca drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x235a367f drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x239013ac drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2452c12a drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a63461 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22286b1d drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22318160 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x225fbfa0 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2288fb87 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f3a8c5 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x241aabfc drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24536912 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2486125b drm_event_reserve_init_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2556dc23 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2563c9a8 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x259f5f42 drm_dev_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x262ee3de drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2631ac67 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271d73aa drm_gem_lru_move_tail_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27611e0b __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27978ecc drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27a1d444 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x277f219c drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27962011 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e89922 drm_mode_config_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c0d1fa drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f03de6 drm_gem_vmap_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f222df drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac570e4 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c09edd1 drm_gem_private_object_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d134514 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d467191 drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d823bab drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d8c804e drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da4d78e drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af44400 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b464169 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b6a8c8d drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2baa119c drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c1b9fb9 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d051b95 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d16dc7a drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e73cf85 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e74b6e1 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec7dd9c devm_drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f463e6c drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x303641de drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31128819 drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3180fd35 drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x319b952f drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2bed79 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f31fc8b drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd092a5 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3002585f drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32961cdb drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32bf513d drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33595a15 drm_mode_create_tv_properties_legacy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3432105f drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34bc9d03 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35c7f66f drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x362feff8 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a2d664 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37b8231b drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d54367 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f61a79 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3398b44c drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f21830 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34fc7754 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x354a6432 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3753b486 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x375f4936 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380c195b drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38666ed7 drm_crtc_check_viewport EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38724f64 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a6cc83 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x394b9a32 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3906dfc3 drm_gem_dmabuf_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3989ea25 drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a0c47ad drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a0def48 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397ee83b drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a4b516 drm_get_edid_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a0f8fe6 drm_vma_node_allow_once +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a740862 drm_hdmi_avi_infoframe_from_display_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c8b692b __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b503a9d drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b75e5fc drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c1bc99e drm_analog_tv_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c1cd805 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c3a41cc drm_encoder_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cb803c8 drm_vma_offset_manager_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e9d2499 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ed01bae drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3db2b2c5 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd4f15a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee97d4b __drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8ac873 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x404bfd40 drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4106ba10 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ad7090 drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42a2e225 drm_crtc_next_vblank_start -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e163d7 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4326a068 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x408409ba drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x415196e7 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41746505 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x419096fe drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41977775 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4206d6f7 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x422a31fe drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x437166da drm_gem_dmabuf_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x440cd029 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440ca56c drm_bridge_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4573993c drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45b282d0 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46ee0159 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4750848b drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x479abe84 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c55492 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x496e988f drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ee1651 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c21b78 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x465ad7eb drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46b14f8a drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46dedbd4 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47e29f41 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x495e4b6e drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498e843c drm_connector_attach_dp_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b08f524 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a61f0d2 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7101ab drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a93b664 drm_gem_evict EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c877a68 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc70126 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d1eb6c4 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9fb505 devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dbac2f8 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2bee90 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef1e3d6 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fdc0eee drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ffd9951 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x503af8e0 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5059c3f4 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf25f99 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c8074d1 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd9e269 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d39b0d2 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ee3742b __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f21cde0 drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5017ae22 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50237030 drm_client_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x507af56e drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50814cf3 __drmm_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x514cf89d drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x517db038 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5142100b drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x515761d5 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x517399e9 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x518912c5 drm_av_sync_delay EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52a21c86 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5450cedf drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55608e87 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5576fc17 drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d6ca85 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x523ec338 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52816023 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x528baa76 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5296a3a2 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52b6e846 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x537122f0 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x555f8cfe drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55893b96 drmm_mode_config_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x561fa6a3 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5628eeb4 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56708385 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e07e77 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5602d055 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562bc8af __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f1a576 drm_gem_create_mmap_offset_size EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x587a3cf0 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x589faa3e drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f99905 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5834902a drm_gtf_mode_complex EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5990648c drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c062d8d drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c34a84d drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59504520 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59b06749 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a3e8f6f drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a99df2d drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5112b5 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bceb63a drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c279e3d drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c815de5 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d986d9a drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5df0efa4 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e054c56 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e32b419 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e51d1bd drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ed087e5 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f5e71a0 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f763492 drm_writeback_get_out_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6029f867 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60932daa drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60fa1845 drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6125a8f7 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a6d96b drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61eab18f drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6202cb20 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x621ce03d drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62489a4a drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62572b08 drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62977e0b drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x639f212a drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x645136f6 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64791a9c drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a6aec0 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9ef274 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fe3d9ed drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ffd5297 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6008c015 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60bfeda0 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61382284 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6190856c drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62d77a50 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63445778 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63901e06 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e098a7 __drmm_mutex_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6584f7e3 drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66d4d59a drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66e32eb8 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6791671f drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a583d2 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66271535 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66925be2 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6770afe5 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6779f526 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680cc921 drm_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x682fbda3 drm_vma_node_is_allowed -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6905f289 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6842325f drm_edid_read_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a53ee99 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6957726c drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x695a6cca drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69ce0717 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a0aced8 drm_crtc_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b48a0d9 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bfb38ef drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bfd5f4a drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c662094 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c7f713b drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d85fa23 drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d93c1d2 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e6c2ff4 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e949191 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f30e5db drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f66dbc8 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70e32933 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ed2919 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x721d1ca8 drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x731d11f1 drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7353fc99 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x746c142f drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a77b3a drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74aa65d6 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b0e8bff drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc2189a drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e47b73d drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e7ac7e3 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f650f22 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x700d2b3d drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7125db5a drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71d6c005 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x729e76fe drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733680c5 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7360dd5c drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74674274 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c8703e drm_property_lookup_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7525680c drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7537d1b9 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7565954d drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7670c7fe drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76a94616 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76b64f05 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x785c209c drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79123343 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x795aeca1 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a435e58 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afd4bc7 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7577b546 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75e1a6db drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x761b68ce drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7634bf95 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78f5bb2f drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x794b06d5 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79902efe drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a0f4d0a __drm_dev_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9194b6 drm_client_modeset_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9b3370 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dbb9227 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e10d6f3 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc355cc drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e06cc95 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e125331 drm_edid_connector_update EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3f7b28 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6eaec7 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ec3a6ee drm_property_create_object EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f1f055c __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80ccc365 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b97349 drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81eb1ed9 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b7fa8c __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d9f7a5 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8361a130 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a7d12c drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d6110e drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e0a038 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89c63102 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a15ad6a drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f68ae71 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7faeaa3d drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x802babdc drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80382c39 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ad0554 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x838a5579 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8403a3d9 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84046951 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8415290d drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8419c3ae drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84360973 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84373831 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86336aa1 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86b2abad drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86f28a1c drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x875a38d1 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x891eb352 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aa90186 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ada6005 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af6dcb9 drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b645078 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b6ce948 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb278c3 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c726ba4 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ca0220e drm_atomic_get_new_crtc_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd1f61b drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3e9d10 drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3fa139 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd34c68 drm_is_current_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da792a7 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e3b65c3 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e844254 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f1ad1ac drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f5a25d5 drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90897c3b drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90bcc2e3 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91401e5a drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91d69c43 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93380a40 drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9351743b drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9388b032 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94bec700 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9519dee7 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x958bfbae drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x958e37a3 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95b1fa32 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ee819b drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96cb21cb drm_analog_tv_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd6fb89 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3462b4 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x908a0161 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c3e819 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91143c58 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x917bd4ab drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9214f610 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c04178 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c09dfb drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93e0f261 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94326436 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x961e2df2 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9655f7db drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ae8776 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ff0f9f drm_mode_create_hdmi_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x983b34ab drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9933a655 drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a20efa3 drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a299577 drm_property_create_signed_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a9bfc94 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9901f3f6 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9970a62e drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0ab7ba drm_edid_connector_add_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a69ab2e drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad2a760 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b1d78fb drm_cvt_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b59f6c1 drm_connector_attach_colorspace_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb69327 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc76594 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9be87db9 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ccaf23d drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e71fa29 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb6e71e drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f433903 drm_edid_connector_add_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f5f43c8 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6b38b9 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fc5a558 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa110b805 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa12dacb7 drm_gem_lru_move_tail_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15661eb drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1da7e45 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa216eaab drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9de0dc2b drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e2503ad drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e2dbb2a drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ea6659c drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed78283 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa077f1a6 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa17dd2ba drm_mode_prune_invalid EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa37910eb drm_debugfs_add_file EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ce2964 drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d72837 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa538862d drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f9b990 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ca8c92 drm_modeset_lock_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ec2523 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa659a1d3 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa65ea5c0 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa647f7ee drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa678d5ac drm_print_regset32 EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6943fc6 drm_edid_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6eca9aa drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6fa5eca drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa79c6fff drm_master_put EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ff050f drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80efbc1 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8a56c17 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b67c72 drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa91bebb0 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa987ee75 drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9ca6a1b drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa1486ef drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa70dd6b drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab8bcd01 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba2d4a1 drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac584700 drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7722bb drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa97adec6 drm_crtc_next_vblank_start +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa37037e drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa87f2b4 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac313ece drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5e096d drm_gem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad7878f0 __drmm_mutex_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad545278 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad621758 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad6b7174 drmm_kfree EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb04a6426 drm_atomic_get_new_crtc_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1a366dd drm_gem_vm_open EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb280c758 drm_show_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb30b6823 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31385c5 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36f2a2d drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb382fd13 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb395b457 drm_get_edid EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb42df32f drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb42f3bb4 drm_plane_force_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4fe0501 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5b9c989 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb503fcae drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb506ef70 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5844ced drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5baae15 drm_crtc_vblank_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7512397 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb82326a4 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb82e7732 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8442dfa drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb99e0a7f drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e710e8 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9687b1d drm_connector_attach_edid_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f9c146 drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba18cc34 drm_atomic_get_old_crtc_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb4e348e drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb56bfe9 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb58a589 drm_edid_read_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbd01e1b drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd2af451 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda396e5 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdf32055 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe1ac6b9 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe45d38c drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe508146 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe562cc8 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeefda90 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc028e4ae drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc049f817 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc08c80c1 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc12faaf1 drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1c621bd drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc239cce2 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32b7171 drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc39f38c2 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f44b95 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc530f5c3 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b80531 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5fc97d3 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6105bf9 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc651bd3e drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc682a1f6 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6dfab1c drm_debugfs_add_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8efdb98 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca83bbdd drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb3a1e5c drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb4fae8a drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb5f18e5 drmm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc5435ea drm_gem_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccd29734 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb72b2c8 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbba4b7a2 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf10c50 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc6f2371 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda5c3bd drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe4df291 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf2956a3 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc068bd84 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc10a0b9a drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b007ee drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3951e6e drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d55dc2 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3faf661 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b54402 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc90e5acd drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa6888a drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa7fbad drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac7e557 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb8bf4d9 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc3a1619 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd7adc2f drm_connector_set_path_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce0f3598 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf11ba5f drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf5c96f5 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd005e6da drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce893a95 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcea78bb6 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xced76c0f drm_debugfs_remove_files EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0885e1a drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd121fff6 drm_atomic_get_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd190218e drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1f93386 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3554207 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3da4d8a drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ea73c9 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd538c9d9 drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56805a3 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2acee91 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2bc44e8 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2c1199f drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2cc0f41 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6362053 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd667ca06 drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd73838cc drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75b0669 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7803400 drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d02d49 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8b8d95d drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9457ef4 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda96c974 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab02ead __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9522a47 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e8ff26 drm_vblank_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaff2cdf drm_get_tv_mode_from_name EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbe76c13 drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcf1eb8d drm_property_lookup_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde1e9435 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde9f63c1 __drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec2da41 drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf10e0ba drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda85715 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde0afc86 drm_property_create_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf422920 drm_atomic_check_only EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf9bea0d drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00ee5fe drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe09f7f90 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2035a7e drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe22b1d83 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2f2c34b drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb3008d drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb94702 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0156467 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1acb235 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2cf65dc drm_gem_lru_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d786fa drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b3b235 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe60c5e78 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe419c0e9 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5781624 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5d05b3c drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6587ce9 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6aedf6a drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6b4229c devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6c1b13e drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe716ccda drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8143b7d drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe876571d drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66e1d81 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d9351f drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe866e8e3 drm_gtf_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f4f9cf drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0a676 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe911261b drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96780ce drm_gem_vunmap_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea060949 drm_writeback_get_out_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0xea6201bd drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaee864e drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2dbcfc drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb77bb35 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xec1d3a19 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed228701 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee51ea8d drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee87d7f8 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea7a936b drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb0c3fef drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb6947a5 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8894d3 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec8fafec drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeca1fa01 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed441071 drm_gem_private_object_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed74426e drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec9b7ec drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeedf66f6 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeee645e6 drm_syncobj_get_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf08f7957 drm_master_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xf092af45 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b16b36 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf128b4d6 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1058f4e drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf119aa7d drm_atomic_get_old_bridge_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1853c25 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf14a75ad drm_connector_set_tile_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1fc3a34 drm_edid_read_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e46b37 drm_plane_create_zpos_immutable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4466119 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf425940b drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46b0736 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4e06249 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf56d53eb drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ba846f drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7dcebd4 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4cb29d7 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52901f3 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a5db21 drm_client_rotation EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a338b0 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9647f4b drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d67bbb drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d9bfce drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfab550e8 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad0b00b drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbdcbee7 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe066382 drm_connector_oob_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe6cc186 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f72767 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb40c597 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb803ee9 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc3c0ba8 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc7231b0 drm_calc_timestamping_constants EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd8e49e drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00382ed5 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0115fa53 drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x019bc318 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0226b072 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02eef39f drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0329063f drm_fb_helper_damage_area -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x039b0368 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07ed8caa drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09342845 drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x095d3e00 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c12c20d drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d12a21c drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dd7163b drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e46f931 drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143dcef6 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x160eca29 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b911d4 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16f0b84f drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a4eb3d7 drm_fb_xrgb8888_to_argb8888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a7552f4 drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cfb1bdd __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d79ecdf drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea80cde drm_fb_xrgb8888_to_argb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20a1f33f drm_fb_xrgb8888_to_rgba5551 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20e064c4 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x213c5edf drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2175edfe drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x219a7837 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff72141a drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff846bd7 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03d79629 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0485a9d4 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x067c6a4b __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07aaf3b2 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x081b0e65 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0888cf22 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x092342d6 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x093c2ddb drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09c9fb8a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ab1580f drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ace2b7f drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b39728d drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da9bcfd drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10e0400c __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x113e81f6 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x144597f4 drm_fb_xrgb8888_to_rgba5551 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14574944 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15861728 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16294b37 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16397a5b drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1676af97 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x167fc004 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16c01855 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18cad1c7 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1add6432 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f16863c drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2023741a drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x236b0a53 drm_fb_helper_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2428d2f0 drm_atomic_helper_plane_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25ce17ce drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x267e4908 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27af4906 drm_fb_xrgb8888_to_argb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28535d58 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x291a0f39 drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2badaa3d drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ca4b553 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cab463e drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf69e3f drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d3eefda drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27be38e8 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b48e48d drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b623e68 drm_crtc_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d64038b drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x309621d4 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x345b0247 drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x360b1a52 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36982b5f drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3775cabf drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f4410a drm_fb_helper_damage_range -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39f3c367 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d650063 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eee5e0b drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ffe2c14 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43bff336 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x445b0f5c drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44956375 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44d2cf9b drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44d7040f __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4517fc6c drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45624c20 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46021e1c drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46b4cd76 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d87a92 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4746dfb7 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x487bbab3 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a254b8b drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a6d5f67 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b364010 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc06b0b drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dd17d83 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e5efe6d drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e654358 drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eee20c0 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51e82fa9 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52755543 drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53664f4d drm_connector_helper_tv_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x540b7a56 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54ff607d drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56c1f466 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57587b34 drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3d347d __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dc47101 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e22340a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e8013d9 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f20063a drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3168c356 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32d3ab4d devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34ad69c4 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x357102b9 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35b683dc drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x388bca11 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c77c2d7 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e6daff6 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ea98244 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eccefef drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f958d9e drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40d23f81 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x423737fb drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44a9135d drm_atomic_helper_connector_tv_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44bad3f3 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44dc017a drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x461ab2e6 drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46c40bac drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x487ae077 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b71612 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49329d22 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a049444 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bdb8255 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2e18a7 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c9aa389 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d750a11 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eb08767 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f10e8d9 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f2e726e drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f2e7be8 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x500366c0 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5140b0c6 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52bd0790 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52fe0aa8 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5406caa0 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x546220fe drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55b9415e drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56e3ade1 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57a58de3 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5814bac5 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ec69e8 drm_gem_fb_vmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a7b2161 drm_i2c_encoder_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aa2b037 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aadde47 drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f1bdbe0 drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fbc931a drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62d1aa77 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64db793c drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6687184d drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66f4b3c7 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ac1d073 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b659555 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ba1a7e1 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bade53c drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c002f92 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c9ad9e4 drm_kms_helper_poll_reschedule +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d93db04 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60a171fc __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6158c03a drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6209c1f4 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62bb8efd drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62d46b1a drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63a0eca8 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6503def5 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e31f88 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x671f42f5 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67daba0e drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69fefd68 drm_fb_xrgb8888_to_gray8 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c13b1a0 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d3c1757 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d6e98dd drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c602a7b drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cb42e51 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6daa3d31 drm_atomic_helper_commit_duplicated_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70d931b5 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x720d18f8 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73791953 drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78537d52 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78abd81e drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7210ffd2 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f68a61 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74a6fc28 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x779f7d2f drm_connector_helper_tv_get_modes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7964f9dc drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79820745 drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a385f3b __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d75cead __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fcaa74c drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81aae471 drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81e4e392 __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x821d5bd5 drm_fb_helper_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82a60422 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83a6530d __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84075085 drm_atomic_helper_connector_tv_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85d495ca drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a74d9e1 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b379110 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bb40a17 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bf37a2d drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e47364c drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed8c047 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x805768a9 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82e68fdc drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x854102e1 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86bd43a0 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x870ba57a drm_i2c_encoder_destroy EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8818d78f drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x896bbb6c drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a4d7678 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a87e61c drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aa130dd drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e1b6b7d drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x911dccec drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8783b431 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89a8f67a drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8afd8cef __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c4491a7 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cebb508 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cf1cb92 drm_fb_xrgb8888_to_argb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e8e1698 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90505c31 drm_i2c_encoder_save EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9217d4ee drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9345b671 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9370fbad __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9258a68b drm_kms_helper_poll_init EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93cec5c7 drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x951ac594 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96c0bf98 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x973f0ea7 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97d1e786 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9457037d drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97772a36 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97ab0cc8 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x982d36cc drm_fb_helper_fill_info EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b9011eb drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f099297 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f349967 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fa326e1 drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa15c9bfc drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2a4c67b drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b0d8ce drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa34a53e0 drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa78dfb5b drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaad94f56 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab6c58bd __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac693b91 drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacb82b99 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadd790c9 __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf94d790 drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d30c81b drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d92935e drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dc157ed drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2077b16 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa209857f __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa313f8e2 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa462be34 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6838f17 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa84c5110 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9630170 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac436530 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad49c704 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea78176 drm_panel_bridge_remove EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb350c64e drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb36a0f4f drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3f99747 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb40b0529 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5414da3 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb62b1b19 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb66c484d drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb56b1f96 drm_atomic_helper_crtc_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6cbfec8 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb77dbd25 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb87d1134 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb923196a drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9d3a846 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaad264d drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb5460e2 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe81bd58 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc14e9871 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc20a6787 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb71a0fd5 drm_fb_helper_damage_area +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb777158d drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb79a1514 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8f9cfe4 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9875f6d __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9c8188b drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba18f785 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbab7781e drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb2fea38 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcfc803f drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd8f85a4 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbef4d6c5 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfc0e555 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc16d4a0d drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1bc8294 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1d28f0f __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc34ef042 drm_atomic_helper_bridge_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc460392a drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc483c010 drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5a6c3e0 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7c6390e drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc47166e3 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc519a897 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca02532c drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca0a3588 drm_fb_xrgb8888_to_xrgb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca4200dc drm_gem_simple_kms_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd86d55c drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb4f7747 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbf0ddee drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccf8b7de drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd2e1f19 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd6f7a8c drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd781b11 drm_fb_swab EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf9fab2c drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd04403e5 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd289c116 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2de9b7f drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd339beaa drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd36cc0b3 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3b8fe03 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd411d71e drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4c7517c drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd58133f8 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6e7202b drm_fb_xrgb8888_to_xrgb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd81e41b5 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd95de589 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb917cc1 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdccd5b73 drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd137d92 drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd25dd93 __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd6d648f drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe16f3283 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe205c0d0 drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe20d6164 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3ca31b0 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3e16023 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe41e00e5 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe45942b3 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe724b948 drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe92c8d4d drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea64b74f drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee847181 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefc7cf83 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf21c57c8 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3b01339 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf54c2a8a drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6e27c63 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8babda0 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa2f54fb drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfac58a80 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb77398c drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb90f516 drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb914392 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbf82051 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcd93039 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd08683c drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfda17731 drm_kms_helper_poll_reschedule -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff77ab72 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2a3f8cb __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd38e722a drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd750c923 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8eb91f6 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc42fece drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd3dd5af drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdda50dcf drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe08cb2e8 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c8641c drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6b68f44 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7b86e37 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe81fb462 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe839e317 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9cb2c0e drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb7a03f3 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec14b12a drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec43d91a drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec4cf075 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee37e2cf drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef00cc2c drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf437dde5 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf52ff445 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5534b52 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5ca0115 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7168c75 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7335e9c drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf882856c drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfec34ac1 drm_atomic_helper_prepare_planes EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0f66e184 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1b3ecdbe drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x22fd2e40 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x356d0347 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3c0aac83 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5084837f drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x56d20a37 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5a3447b8 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x60cc9c66 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x91252f6c drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x352f1414 drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9f49dbb3 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xab8e28a9 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd81b9bf2 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdf826af0 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x00570ee1 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0d7dfef7 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x34098ee8 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5ea9f49d drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5f72e26c drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x60b69f0e drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6b7d9d4a drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7a4facb6 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8e0ab93e drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa44e711b drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa477dc07 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb559c54f drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbeeba3c6 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc1ce67de drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe2af90d4 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf95dda35 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02f5b0b5 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04ed9ca4 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05f00141 ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08aa6ab2 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ae3cc64 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0beda824 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ca13c8c ttm_bo_wait_ctx -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ca3ee5d ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x101f92ce ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a2943ff ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x036bfabd drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1d0e85d6 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x427f5098 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x4ceb8124 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5bda729e drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc0510f2d drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcdfa8cfb drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd3ad3665 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xda1db267 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf20c044c drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x3c96a855 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x597b9a18 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc6aef082 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc857d5a5 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdf42d1f1 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0bded33b drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x236bfcc7 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x26a26698 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2782fa48 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3fda9941 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x53155df5 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5acf1c70 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5b0fcab1 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5c989ce3 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x62cdf602 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x650d8988 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x70899882 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x71496f89 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa531ec30 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe2646cc1 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf755e334 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0018de71 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03800c85 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06e75320 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11d5d49c ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1229f133 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1297114c ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19f592d6 ttm_bo_unmap_virtual EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ea746b2 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f44d5fa ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29415d84 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35dfd61f ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38c9960c ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a185623 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3af30a59 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x424b1171 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50f18318 ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52ab4f2c ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d83ea69 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d4ba27f ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25ffed49 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2739b9b9 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f259ad5 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35b5c955 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x387321de ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ad6340d ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4086d1f0 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42049a87 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45a955f9 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47b92e08 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f18d4e5 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51dc83a1 ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x552aa260 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56e3c063 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57a4874c ttm_bo_wait_ctx +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5814f599 ttm_bo_kunmap EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f263760 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64e9dc87 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6894432c ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x602df630 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6133f0fd ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61dfca9b ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x622fde8e ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65f2d035 ttm_bo_move_accel_cleanup EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f5f00e0 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x716d561a ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79879969 ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80e347e8 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x831b19bf ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x831f0014 ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x834aeae1 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836e4570 ttm_pool_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x862d7245 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x865cb1ac ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8cf9a98c ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fd8df5d ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa547db99 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaafd3500 ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8653f0a ttm_pool_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb92da8b0 ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba937f46 ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe51138a ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0ee5662 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1c45a86 ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4a14006 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5b6ce47 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbc8c72c ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfbb7ce6 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2587083 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd503b928 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda6dc568 ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe15c0905 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe18061e3 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1a6867d ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe21ae5f7 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2cd6b48 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea2e11df ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf02951f0 ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcdd87f9 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/i2c/i2c-core 0x0056ed2d i2c_get_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x0329b1f2 i2c_verify_client -EXPORT_SYMBOL drivers/i2c/i2c-core 0x110bf1ef i2c_put_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x12cbb0c2 i2c_smbus_write_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0x153a3439 __i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x2964d232 i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6eef5f04 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x719a26f0 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74284f7b ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75d90930 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x780c0f85 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88059bbd ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ce8331c ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99d74de0 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a1d56e1 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f5bc101 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0a613dc ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa19db859 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb272c0f5 ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3df81f6 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb60ce6b6 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6c3d9bc ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcee1336c ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd28a6ec0 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8845f5a ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8fa5347 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe22dca2f ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3f041eb ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4c54287 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe502ec99 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9b6a586 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb4d1554 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff40c0cd ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff4a04b7 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffd6a311 ttm_bo_vunmap +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1408b594 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0x1feb84d7 i2c_del_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x218de977 i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2ee44c55 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL drivers/i2c/i2c-core 0x3491d1ae i2c_smbus_pec -EXPORT_SYMBOL drivers/i2c/i2c-core 0x41d15b55 i2c_smbus_read_word_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x44d2037d i2c_smbus_read_byte -EXPORT_SYMBOL drivers/i2c/i2c-core 0x4507296d i2c_smbus_read_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x68d8df53 i2c_del_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x707d1df8 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x7a2c60c8 i2c_get_adapter_by_fwnode -EXPORT_SYMBOL drivers/i2c/i2c-core 0x8178c42c i2c_smbus_read_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x83bef6f8 i2c_verify_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0x90035420 i2c_smbus_write_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0x94c18213 __i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0x9f98c8db i2c_clients_command -EXPORT_SYMBOL drivers/i2c/i2c-core 0xa0869cf5 i2c_get_match_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xa19b92a8 i2c_smbus_write_byte_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xa367e5e0 i2c_smbus_xfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xa3f425c6 i2c_find_adapter_by_fwnode -EXPORT_SYMBOL drivers/i2c/i2c-core 0xad219cea i2c_add_adapter -EXPORT_SYMBOL drivers/i2c/i2c-core 0xb2d2e086 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL drivers/i2c/i2c-core 0xd35d9adc i2c_register_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0xe1b88918 i2c_transfer -EXPORT_SYMBOL drivers/i2c/i2c-core 0xe8d4ac58 i2c_del_driver -EXPORT_SYMBOL drivers/i2c/i2c-core 0xeb31c945 i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL drivers/i2c/i2c-core 0xed02f9cc i2c_find_device_by_fwnode -EXPORT_SYMBOL drivers/i2c/i2c-core 0xf8bced0f i2c_smbus_write_word_data -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04253070 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0a33c91b ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x146a8ebd ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29997eb0 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e13c5e3 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3efd9b3a ib_destroy_cm_id +EXPORT_SYMBOL drivers/i2c/i2c-core 0x43c78552 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x445d2ade i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4af7705e i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4c9ea5fc i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x7409ef46 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x76175212 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x84a7fbbf i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x87cdf285 i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8f868eed i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x99a23972 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa0f548e2 i2c_get_match_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa1afe444 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa488d124 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xa5c1f144 __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb908ab38 __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xd23e3c58 i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe3aca277 i2c_find_adapter_by_fwnode +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe53a9bfd i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe7607334 i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe79072e4 i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe82b646d i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xeac35bc6 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf1d02dc6 i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfd26b84f i2c_find_device_by_fwnode +EXPORT_SYMBOL drivers/i2c/i2c-core 0xfda0b722 i2c_get_adapter_by_fwnode +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0e2ef50c ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x10d7c807 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x42db191a ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4f8b0c84 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5fab9a10 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x640faa5a ib_send_cm_drep EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b5673e4 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7f2b2c05 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82900090 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb18cd089 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbe3de5b ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe6406006 ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf2d9258d ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf4cbf60b ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf4dedac3 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x012eb524 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01e880df ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02fb1f19 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x814fca08 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa00af2b7 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb2d3c840 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb4b0a0a3 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb64821d4 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb86006e2 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf37eacc ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe253a631 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfa2da20d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x000b483f ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00b49f15 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x060b80cb ib_modify_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x074ed151 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08a70301 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x094e7bc0 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f165e2f rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10084d9c rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12721e64 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12ef35b6 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1386e534 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x138d8048 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13bbca54 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15836a12 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16b5d89a ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a265d1d ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a6fe5f6 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ac49265 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dcd39b5 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e45d0ff ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x119cfa1b rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11c48305 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14cdca15 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15561de6 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171be403 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19a3ffb5 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a738c75 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a871ee3 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aa6cc20 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1afcae12 ib_unregister_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c6a6715 rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e98ff29 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21953145 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23306f77 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x239d03ac ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23d099dc ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x260d838f ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2806f282 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2894f573 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29bc3cbf ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cd8a94f rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d8d4519 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dd6416f rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e7d9f75 ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc99f4c rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ff57534 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30596e2d ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305d595e rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b0aa59b rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b9d0928 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1be069f9 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e0c1f53 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20599a8e ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x207ed94b ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x209f0061 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21c27269 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x222d0d7a rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x235b746c ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2503235d ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25728905 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2947301f ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a7df33f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2afe02e5 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e22447d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fb4831f ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3029e93f ib_register_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x312a2d66 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3415d39c ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34cd96e1 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35bc24e4 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x364d630a ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37caadb7 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x380433af rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x381113d1 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x382d38b8 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x384b95f4 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38717a41 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b9580f9 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3be7de95 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dcf3925 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e7e6021 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30aabad1 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x327b613b rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x328731e8 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x330ed19b ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33993285 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3483c5ae rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3beaa6 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f29ee2d rdma_set_cq_moderation EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b66362 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4110f8e9 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41838a9e ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4117227d rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42212bdb ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d86f23 rdma_user_mmap_io EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43b03f63 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4406a3eb rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44086d25 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44afa9fa ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44f838e9 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4485e260 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4491f1a3 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44e6c81b ib_port_register_client_groups EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x470427fd rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x488000c0 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49b2fb91 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cd66e5c __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46a4e290 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x495f093f ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49ad4be6 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ac0d72c ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ad8939b ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bfae7c5 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e11d768 ib_alloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e3e41f7 ib_get_eth_speed EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fc99629 __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52399f88 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52404b29 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x552ba8f4 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f1e13c8 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fd2f940 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51222fcb __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52f34b2d rdma_restrack_get_byid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5692fc46 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ac82d8 rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56ef0e93 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5843d187 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a0f2354 ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b121b6f ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c349ada ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d82f5c7 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f66a62c rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6045b136 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55c463b1 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x574594b2 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58e99ec4 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b15b69c rdma_nl_multicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61c3ace7 roce_gid_type_mask_support EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x622b4640 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62891404 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62d5d2c7 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65157509 ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65f3919d ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x662ce036 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x668663b4 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x670d8b37 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67bb0a0d ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69125b41 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b3e0305 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b3f7e1f ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63f9e339 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64b2f7ac rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x656af88e rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67a9fa99 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67d1a490 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68348bc8 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x697beff1 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x699ddae9 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b56199f __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b7f2d2b ib_attach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c1bfb0a rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c16431e rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d0fbbf5 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dabdd25 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e3dd7ab ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e500c27 rdma_nl_put_driver_u32 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fa4aaaa rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70390984 _ib_alloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70f1d1bb roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71068b83 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7268cbb7 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72982588 ib_create_qp_security EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7454eaaf rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74964f87 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7447de2c rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7565b9b0 ib_map_mr_sg_pi EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770208a6 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77bf0ec3 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x763c5883 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76911e25 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x786ada99 ib_init_ah_from_mcmember EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x790227c7 rdma_set_cq_moderation EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79787750 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ace9c88 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c5b249b ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f18e212 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80e290d4 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83649240 ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8493e085 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87ebc3f6 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89129c43 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c55f09d ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e3d85c4 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b1a8413 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d1b9ac5 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d5a4727 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e802dcf ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x808d476d ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80a1e344 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82cc5a71 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83394281 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x849b271b ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84b95ba6 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84c008a8 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x852061a3 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86b99d19 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x872ed1da ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89a2b187 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c492e10 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d965da4 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8db91e7f ib_get_cached_pkey EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90b1288a ib_set_device_ops EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92d96226 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93585c8b rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93dae141 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93f75c9a rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x949bb4a3 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9568e104 ib_create_wq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9573ffe4 ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96c861fc ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97887697 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98f02fb0 ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d538114 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f6df767 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa16da5e8 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1cead59 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa56ca1f0 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7e4a440 ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa80a082f rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa820b430 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa987494a ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadfc66d2 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae7648d8 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96237bf1 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x965a87a7 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97515bf2 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9792fe0b rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9863c2b7 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99489291 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99901902 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b660d52 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c050325 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa161c7d2 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e84b2d ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa79ce24e ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa864ce54 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8b57398 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac9dea06 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacca8847 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad14bdbf ib_destroy_cq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0873393 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb112819e ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1f1acc0 ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb25b1e31 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3187150 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaefa009d ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa8506f rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd2a2e9 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb237b90b ib_detach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4ed1e26 ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb568c860 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb725460c rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5228aad ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb68503ad rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6ad4d29 ib_init_ah_attr_from_wc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaab5179 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcc85958 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbee80833 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc010234e ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc463e464 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb934da7c ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb556f6d rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc99af8c ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcc69256 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe8323c9 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbef30d94 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf417301 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0845c42 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1ffe538 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3474104 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c92fee rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3db27ea rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4697a67 rdma_copy_src_l2_addr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4dba8ec ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc525f95e ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5783318 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8220a6e ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8a1253a rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9eed04e rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc369604 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd74b061 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce21cc76 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5e054d9 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6bcb098 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6e50670 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc74ab0a0 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9c8792d rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca4b993c ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb263e03 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbaa8bd9 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd381bd9 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdb1d02e rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcee7b71a ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfde2a3e ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfe6532f ibdev_alert EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd04a9305 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd152d478 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd19aaca4 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0f3b6f7 ibdev_info EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd259e22d rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3a7ce3c ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd48c3ae4 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd49e3a69 ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd51796a8 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd300d0b3 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5d895b1 ib_init_ah_attr_from_path EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f80f72 ib_get_rdma_header_version EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd671c289 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a97a89 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7d1e753 ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd83a6040 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd84a72b4 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8e4ce16 rdma_query_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcde57c3 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd22fa3e ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd5b9335 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde28290e rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5189a62 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb4a9165 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb52724c ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc41926d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdefff191 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe01f0977 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0c52b57 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe31488fe rdma_move_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe58577a5 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6d61f5d ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe97229ad rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe979fd44 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe847aacf ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe89a8921 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe934031c ib_create_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab71dba rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebcb8525 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec97df62 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeda4ce61 ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedd0a05a ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefc96230 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf043a27e rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1786dad rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1ad3c1f rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3dff5e4 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4c0935a rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9eb4463 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xead2ff4f ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed67a281 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed7b18b9 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb08326 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf11038ff ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4b6abd7 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dced9d ib_drain_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a21604 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6317822 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf66b6241 rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7bbfdab rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7fd4310 ib_modify_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaabf420 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb21728b rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb738324 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbbee568 _ib_alloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbc3a9a8 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe7f7a9c ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeffcf9d ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfffecafc ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x033e5b7d flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x111f7751 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x160f9bd1 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26a556c5 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a2f8794 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2dcaf168 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd952d64 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f09a0ec flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x17304feb uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x177cf80d uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c5e5123 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1fb41bd3 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2af3229c uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30286627 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34f08f44 uverbs_finalize_uobj_create EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4b335837 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5caf4a38 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61f31e29 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x62b6a216 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x636567a8 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6fd8d9ff uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cda04e6 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x42bd6082 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x44ffd114 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48653908 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4e70126e _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x61759c8f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6991f1fa ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d729e40 ib_umem_dmabuf_map_pages EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d409cbc ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fe93783 uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ff0f728 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9c2a8423 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9db7fdc8 ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad1a92b3 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb1d83102 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbe001488 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbeb089cd uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf4ac856 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7710e9c ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc87b897b _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcf4fab7f uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdeb32bb1 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe24e0047 ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe603dba9 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe6befe8b ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf307ee21 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3af8cde uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf456dbc8 ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf848c3e9 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x066db6e4 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x16af6fca iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x297c7c95 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x656e28c8 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x775a6d26 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9802ac05 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd17f66da iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd1e2caba iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ba48036 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7ba959e9 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b5c1de8 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8e04e7c3 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x995def57 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9aafa74f ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa87c0eea uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xae69d8c7 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb850bdf3 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc01608a ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc15082ce ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2addd45 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd3f1d18c ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde7593ab uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe6c79820 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1cfb241 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf6be5bcd uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x10959618 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x19a55892 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4c9582a5 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x64fe42df iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x797cc7f3 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8a64ddda iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x957dd979 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd80b2a11 iw_cm_reject EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x092a701b rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0afa7891 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d405738 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e5e51a1 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x192d67e0 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x217c89f4 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24821d1b rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2aede8b0 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cbc98d2 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33945c33 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35b307f2 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52583927 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56d39ffd rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x579f3c17 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c0e9eed rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64618a33 rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6cd6a864 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78d47cae rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85dddc70 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x06a9f70a rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0961e717 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09b8bdb9 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e39c449 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19eed3f6 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a271363 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28f1ac46 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2cc815cc rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x338510f1 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x348f084f rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3586fd67 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x420e1d42 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56017104 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a222cbc rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63ff4762 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x740a0dc0 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x769e7ff9 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b5cfa0e rdma_connect_locked EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x932fd67d rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x933e71b9 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c968cdb rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cc259d6 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa447a1e7 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb039705a rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb20d5500 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbaa4a57e rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb37aaec rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb8b471d rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbcece159 rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1c3796b rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xedc4150f rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf785b187 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdef89d4 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x02217b6c rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2d8b44fd rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3cc3aa07 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7d39a78e rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x887db808 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa4cee766 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xccdaa8a7 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x23b97d33 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x47cd5ff7 rtrs_ib_dev_find_or_add -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4c6861c8 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92e2ea49 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6b16538 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa8c0c515 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xabb4dfb9 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc10e3b15 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc65462ff rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8b20ca2 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcbb7bd4a rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcbd6b5a4 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf823ee6 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd05e6255 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1f48bf9 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2676dc8 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec7c0a3b rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf32ad09f rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd7c766c rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x00bd3a2f rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x22ceb964 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x742d5486 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x85f4d5e6 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa7205b9c rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xc5ee8965 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xef4e0046 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x27cc6b6c rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5cc818a0 sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x6244d613 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x76ff6ece rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f6c7edf rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbb09e2ba rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc28750dd rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1d88f2f5 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3a1f80c1 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5d82db7b rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa60e8490 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xec6d44dd rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf8f4cea3 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xcc087aea rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6e85a886 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9390243f rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x95ffbb9d rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe694eba5 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf4530845 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfb70b029 rtrs_srv_close EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x10d2a048 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ca75fd3 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x07268d86 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x10e89ef2 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x232f745f mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x24c4f850 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35eca3d1 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x377bac85 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3d917c90 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4835d181 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x31b85c19 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a66dbf7 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x472731a7 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47dc7d4d recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x559adb48 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6167fd5d recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6666c2af recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x786561b9 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x95a3e999 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x88a69636 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8e893884 queue_ch_frame EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa77e2aa3 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9cfaf83 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb3a1a5a3 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb495a98 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb319fd68 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb584ee20 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb693b8e3 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb890a306 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb955faf5 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc1bc4202 mISDN_clear_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc517a840 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd2501de9 mISDN_freebchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd2efb3e9 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd3ca16bd mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd83a29aa dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc0e49d6 bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1eeff7f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdba3f5c4 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe742ec4a recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xebc10faa mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeeb7d7b7 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfcd38902 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfe895f19 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef674c06 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf852cfd6 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range -EXPORT_SYMBOL drivers/md/dm-log 0x40327744 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x93b6adf5 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0x97de4202 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xa5276159 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x1eb2178e dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0x47e54631 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4887a0c5 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x8e4ea8d7 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xca46aaac dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0xe25b8d47 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x5eb9844b r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xd212d7c8 raid5_set_cache_size -EXPORT_SYMBOL drivers/mfd/mfd-core 0x16c9c10c mfd_add_devices -EXPORT_SYMBOL drivers/mfd/mfd-core 0x2fde2559 mfd_remove_devices_late -EXPORT_SYMBOL drivers/mfd/mfd-core 0x4fc53593 devm_mfd_add_devices -EXPORT_SYMBOL drivers/mfd/mfd-core 0x92b6cf2a mfd_remove_devices -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x036cb1a3 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04544e17 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049c9e14 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d04329 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b35a2e7 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c3583b2 mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fbeb778 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x113bcc3c mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17382f06 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275d4a4a mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2773a7ef mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ade46e3 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b256ce2 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33b21a1b mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38057332 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43627a42 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x487cd08f mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x586e7313 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a1e1f9b mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fab7d34 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63cd6fd2 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64b9bdc2 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6750d348 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bbcb1a3 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7beffa3b mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c3e3d80 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f0b87b0 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/md/dm-log 0x0fadf582 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x2cdd3be1 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xa2e8f470 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xd44eb4eb dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1c3d7ee1 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3ee402c1 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa671d052 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb83b363d dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe35c6168 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe92e2714 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x2f57e174 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xf3256243 raid5_set_cache_size +EXPORT_SYMBOL drivers/mfd/mfd-core 0x0924b41e mfd_add_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0x8d52d27b mfd_remove_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0x97d5b615 mfd_remove_devices_late +EXPORT_SYMBOL drivers/mfd/mfd-core 0xf38b1553 devm_mfd_add_devices +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x064d48cf set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08346e61 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d023a8c mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19334111 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2da08bd9 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33fe5325 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x349b9552 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ac525e9 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46b6959d mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cd09c3d mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529e6077 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54b0f87e mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bba0049 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e9a3bd5 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x611a918a mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6435a96f mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74f7514f mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bd0da34 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d350ab7 mlx4_get_slave_port_state EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b96c1cb mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa264010e mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaccf65c4 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb13fb475 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5907ff5 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8d07692 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe335e11 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc777611b mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe6ca1c mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5c50c7c mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1952a19 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4c95ea3 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe72068de mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf047d188 mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf12f31d3 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf87e99ce mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd00ba96 mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01e59e5e mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x030921c3 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04087427 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x040ede1a mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x043d23d2 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80bbddaa mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81aa0ae5 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91d64c6d mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92c73367 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96d68e0f mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x982a7c47 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a7da143 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0fcb7f0 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa90dfb5d mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa4959d4 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1c6d7c1 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb54a9d06 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb96c16b7 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7cc3f43 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7d35a2a mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8b607c6 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf8ab0d4 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe080de24 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8497b41 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee0249bb mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeea5243 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf44ded8c mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf48fb411 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6047e10 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7d15845 set_and_calc_slave_port_state EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04641715 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x065e0619 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06c83356 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09ae9053 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aae772f mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ee26bcd mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f08730d mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11474b1a mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05f92d4c mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x060edb3a mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06882cfa mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0773063a mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07951b48 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09bd09ff mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0be967a4 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e35edd1 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f296918 mlx5_fs_add_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12135c1c __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16322a93 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18871c46 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19504bb5 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b209f48 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b9c2537 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c5951c9 mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c68f94d mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d7cf39c mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20311802 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22dcf4b0 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23f5f3b2 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b8f9af6 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13c9a55c __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15872dec mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1709e55c mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aeec516 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c05b7d9 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d6658e3 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dae9b31 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2041581b mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2380a263 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25075185 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26bc367a mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28d84dca mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2945dfa9 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x295302d2 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c9c4d3a mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cf543c4 mlx5_core_modify_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2efd346e mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f924bec mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x308ea5e0 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f4c798d mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f7b1c92 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30b437a9 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30ee1e9d mlx5_fpga_sbu_conn_sendmsg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x355493cb mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x395d492d mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3deb4327 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e9aa443 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ec5dae6 mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f98bb64 mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x418b031d mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3689677e mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x393b840b mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39b61915 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f9465d mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x425c748b mlx5_cmd_exec_polling EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43764d59 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x440659a1 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x443bc091 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4540227b mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b52e00 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4889fa77 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48cf704b mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c579fdb mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c6451d5 mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d62e046 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dd50de2 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f7f28ab mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f9b89da mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fc4f4c1 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5096ed9f mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51147d92 mlx5_core_query_vendor_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51371a99 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53492900 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52a6d458 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52f153aa mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x537665f3 mlx5_cmd_cleanup_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dfeba6e mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eec89e2 mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ed525c __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5747f2ad mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5828a838 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a3685a4 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b7bc4c6 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cd646ab mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eb33ac7 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x603ae811 mlx5_core_modify_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61530d56 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61606cb7 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6225fb18 mlx5_core_get_terminate_scatter_list_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6329b35c mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63432428 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63d2765a mlx5_eswitch_uplink_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63f5a6fa __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66c5ae62 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67ac2b8e mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a2b4a36 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a545750 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64823ba3 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x683fdfa4 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a1833dd mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd483dc mlx5_msix_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd87e86 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c7f1be1 mlx5_mpfs_add_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd5a182 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cf1a08d mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dab57ba mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dadc67a mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fd54506 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fee6095 mlx5_fpga_sbu_conn_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72053ee2 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6df8b8f3 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e2912f4 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ee0a35e mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x720aea4b mlx5_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73fc1d8e __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75e615f7 mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7632812b mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76d31c64 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77ed9cd0 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7893568f mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x792969a6 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x793e0579 mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x769282a2 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a5e1c6 mlx5_fpga_mem_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b88eae2 __traceiter_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bbc902c __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c619c2c mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cb452c2 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cdb64ca mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d147ef4 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dc6b77a mlx5_eq_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7deb6ac6 mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83a79c9d mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84ab37ed mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x857437fe mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88c49461 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bdf7e68 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c7e3859 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fbf273d mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90066656 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93723fa0 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x962c90c0 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96493a46 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9696ac09 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96dc1127 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x811c4bb2 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82b0c979 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x886e4ae0 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9091d19e mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x920ab972 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f4bef0 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97573e18 mlx5_cmd_exec_cb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x975a4d72 __traceiter_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98548f30 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ab019bd mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c8d7bf7 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c9a2284 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a5de53e mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a869e38 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce22aa4 mlx5_rl_is_in_range EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa146719a mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa297f11a mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4bee67f mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa96239bd mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9995c52 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabd42232 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e68ed67 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e7bdd3a mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fd6acd5 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a01f7e mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1eb5a25 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3106082 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa745b4aa mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7c6c3c3 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa87854d6 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab943fa6 mlx5_blocking_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac21b91e __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac29c680 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacab62fc mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae3b72d1 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf31cfae mlx5_mpfs_del_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf335351 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb411bfa9 mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c33cbd mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0e40a37 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0efe32c mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb10469fc mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2848d0f mlx5_rl_add_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5ec5a13 __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6d291d3 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb741ab38 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaf779d8 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6915d2a mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6af1bb9 mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb07ebdf __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbff1919 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc9f3ec6 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe93128e mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe96c110 mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf6f12a6 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe2ec83 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1cf6966 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd2c25b2 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc29573c4 mlx5_core_query_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc29afe01 mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2bbbd4c mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4cab910 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc39841fc mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc39dec98 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3aee645 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4f007cd mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc72b741a mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8737e65 mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8aeab7d mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8cdc274 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9499ac4 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd8fbf24 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf6c163d mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0f36fdb mlx5_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1402fd3 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c3cecc mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2d80d05 mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3249fcd mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd465c31b mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd68fc867 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd82ad9b4 mlx5_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd86a034b mlx5_msix_free -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd974c52e mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9393336 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9c0eb09 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8f538a5 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda41eacb mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda656b06 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaaff67f mlx5_core_query_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdae8aa4d __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcb6bcd3 mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf07096a mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfe54ccb mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1b03b4b mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30d5572 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe617512e mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7472b7b mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde557870 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdef0adac mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0411e31 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe090d8c0 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe172ff9f mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1d11cdd mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe21ffe7d mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe34d4c8b mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe720bf7c mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe902fecc mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe947f1c0 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe96048f9 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec6df679 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed7996c6 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef353e56 mlx5_msix_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0538786 mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf06013b1 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed88433b mlx5_eswitch_reg_c1_loopback_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf06725b6 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf124bea5 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1e64e24 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3c61196 mlx5_qp_debugfs_cleanup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52e1946 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5d21b76 mlx5_lag_get_next_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf698a9b8 mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaa7c009 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb9abf55 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf97209dc mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa8fdd90 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaba0e52 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbd8b350 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc1ca208 mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xa94ee689 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x03c632ea mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn @@ -1483,25 +1484,23 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x150f8852 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x163d02d3 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1663a47b mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16673aec mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1a2c5f7b mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x22155d70 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x299e2562 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2dcb1079 mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2e849627 mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x31034cee mlxsw_core_rx_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x34f40fbf mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3be973b0 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406278f7 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4648c96d mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page @@ -1511,21 +1510,22 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x564c8740 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x626efd1a mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x632314f1 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6cc8cf62 mlxsw_core_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6e1ab36d mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7cbb8a86 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set @@ -1534,26 +1534,27 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x90f8f383 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9610585e mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98f40bb5 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9a2aa491 mlxsw_afa_block_append_mirror -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9b17bf8e mlxsw_core_skb_receive -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9b95422e mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa407f42f mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xabb85516 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaefecb83 mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xafe76dce mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb0552095 mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc7b9041 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xce17fee0 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1bab622 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag @@ -1561,145 +1562,144 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f02835 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc5c95df mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde2a5239 mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe868134d mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe9110f7e mlxsw_core_ptp_transmitted -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeadb4dae mlxsw_core_port_netdev_link -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec097473 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe6913d97 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf32d7fb3 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf7ea9b16 mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x046d7987 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xbc9811ca mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x7cffe987 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/team/team 0x12970c5c team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x57d43e17 team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x5cd81bde team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x64ebccc8 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x8bce1ca5 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xa3318b3f team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xc3c69648 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xf19656d4 team_modeop_port_enter -EXPORT_SYMBOL drivers/ptp/ptp 0x0d9751e1 ptp_cancel_worker_sync -EXPORT_SYMBOL drivers/ptp/ptp 0x212a2263 ptp_find_pin_unlocked -EXPORT_SYMBOL drivers/ptp/ptp 0x3719fcb2 ptp_clock_unregister -EXPORT_SYMBOL drivers/ptp/ptp 0x7833ff3d ptp_clock_event -EXPORT_SYMBOL drivers/ptp/ptp 0x8e78e388 ptp_clock_index -EXPORT_SYMBOL drivers/ptp/ptp 0x996ed1a5 ptp_find_pin -EXPORT_SYMBOL drivers/ptp/ptp 0xd3ca7415 ptp_schedule_worker -EXPORT_SYMBOL drivers/ptp/ptp 0xdd151608 ptp_clock_register -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x03969f54 dasd_path_create_kobj -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0799c1ce dasd_log_sense_dbf -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x09621917 dasd_kick_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1801f935 dasd_diag_discipline_pointer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x18545c20 dasd_add_request_tail -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x19474ae6 dasd_device_clear_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1cfa8b49 dasd_sleep_on_immediatly -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2baa8311 dasd_add_link_to_gendisk -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3cbb9db1 dasd_sleep_on_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x46808d05 dasd_enable_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x55bd320a dasd_reload_device -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x5e749ee6 dasd_path_remove_kobjects -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x63662fc6 dasd_sfree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x659e6896 dasd_free_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x689ba9e7 dasd_device_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x81c5c92e dasd_default_erp_postaction -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8419e37a dasd_schedule_block_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x84c4e890 dasd_set_feature -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x914e6391 dasd_debug_area -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x936746af dasd_term_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9ac55bbf dasd_alloc_erp_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9f0c56e5 dasd_ffree_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa2839e1a dasd_path_create_kobjects -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa3ad4f92 dasd_sleep_on -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa4e0d979 dasd_fmalloc_request -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa770d760 dasd_eer_write -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xae985e1f dasd_int_handler -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb3cb0c1f dasd_smalloc_request +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x3e07d71b mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xb5a6ce60 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x3c35017f bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/team/team 0x0b542fb3 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x2ed15f63 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x4506f37d team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x982b21f1 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa93f7106 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd445c7fa team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xdb248ee6 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xfcc08292 team_mode_register +EXPORT_SYMBOL drivers/ptp/ptp 0x01a976c7 ptp_cancel_worker_sync +EXPORT_SYMBOL drivers/ptp/ptp 0x179f1ab8 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x18ddda0f ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x2315ea40 ptp_schedule_worker +EXPORT_SYMBOL drivers/ptp/ptp 0x792b68ca ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xb07ce905 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xd23dd562 ptp_find_pin_unlocked +EXPORT_SYMBOL drivers/ptp/ptp 0xe7292c03 ptp_clock_unregister +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0cc194c7 dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0e1ae66d dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0f5aea5c dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1114881b dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x17bfdd02 dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1c3e511a dasd_path_create_kobj +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x21bd8bca dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x23765d18 dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x247bc099 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x29fe8c5e dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x34fb646e dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3c44fbd3 dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3dc07d60 dasd_ffree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3f96bf31 dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4cd0ea19 dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x67f62606 dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x70d8455c dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x7d293538 dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x915cb9f4 dasd_path_create_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x92efb908 dasd_path_remove_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb20a59a4 dasd_schedule_device_bh EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb61b1e97 dasd_log_sense -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb7c520c7 dasd_default_erp_action -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbfe31c0b dasd_schedule_requeue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb67f60eb dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb8be7a75 dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xbaea927f dasd_default_erp_postaction EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc134caac dasd_sleep_on_queue_interruptible -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc1806527 dasd_start_IO -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xda84b070 dasd_block_set_timer -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe0cfb534 dasd_add_request_head -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf4b8c89a dasd_schedule_device_bh -EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf941e096 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc897c59f dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc9fd33c6 dasd_fmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcfec7db5 dasd_set_feature +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd2dc6282 dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd4247bcd dasd_term_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd586a7fc dasd_schedule_requeue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xed8bb907 dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf1ca80cf dasd_add_link_to_gendisk +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf3cc401a dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf3fbf5b1 dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf862a4b3 dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xfc1d076b dasd_reload_device 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 0x03895d7d tape_std_mtoffl -EXPORT_SYMBOL drivers/s390/char/tape 0x08cd6a8e tape_std_mtbsr -EXPORT_SYMBOL drivers/s390/char/tape 0x09baedfe tape_generic_offline -EXPORT_SYMBOL drivers/s390/char/tape 0x0bd955c1 tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0x09446897 tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0x0db5c4e6 tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0x0dd85de8 tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0x10ae1a5a tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0x186e086c tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0x1ef182c0 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0x218b193b tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0x2200daf4 tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0x222df377 tape_std_mtreten EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x25f38751 tape_do_io -EXPORT_SYMBOL drivers/s390/char/tape 0x2f1004d0 tape_cancel_io -EXPORT_SYMBOL drivers/s390/char/tape 0x328dae96 tape_std_write_block -EXPORT_SYMBOL drivers/s390/char/tape 0x34aef823 tape_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0x375f11a6 tape_std_mtreset -EXPORT_SYMBOL drivers/s390/char/tape 0x42c9cecb tape_generic_remove -EXPORT_SYMBOL drivers/s390/char/tape 0x482c8b5d tape_std_read_block_id -EXPORT_SYMBOL drivers/s390/char/tape 0x5a68e34b tape_do_io_interruptible -EXPORT_SYMBOL drivers/s390/char/tape 0x5e54d534 tape_std_mtweof -EXPORT_SYMBOL drivers/s390/char/tape 0x612508b8 tape_get_device -EXPORT_SYMBOL drivers/s390/char/tape 0x668c2c09 tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0x25fe215f tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0x2bc0bd0e tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0x34c55621 tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0x3afd0ba7 tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x40035135 tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0x504112d1 tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0x50f77f7a tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0x5402f49b tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0x5b885153 tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0x5fe3dae2 tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0x65951e38 tape_get_device EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose -EXPORT_SYMBOL drivers/s390/char/tape 0x6b1d945d tape_std_mtunload -EXPORT_SYMBOL drivers/s390/char/tape 0x6c7ead1f tape_std_mtfsf -EXPORT_SYMBOL drivers/s390/char/tape 0x72a146dd tape_std_process_eov -EXPORT_SYMBOL drivers/s390/char/tape 0x85d64faf tape_std_mtfsfm -EXPORT_SYMBOL drivers/s390/char/tape 0x8b975fa2 tape_std_read_backward -EXPORT_SYMBOL drivers/s390/char/tape 0x8d2601f1 tape_mtop -EXPORT_SYMBOL drivers/s390/char/tape 0x9ec428dd tape_std_mterase -EXPORT_SYMBOL drivers/s390/char/tape 0xaa1a10db tape_dump_sense_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0xaba57549 tape_std_mtnop -EXPORT_SYMBOL drivers/s390/char/tape 0xb2fedd35 tape_std_mtfsr -EXPORT_SYMBOL drivers/s390/char/tape 0xbb72f864 tape_std_assign -EXPORT_SYMBOL drivers/s390/char/tape 0xbcf9d60a tape_put_device -EXPORT_SYMBOL drivers/s390/char/tape 0xbeb3c2a9 tape_std_unassign -EXPORT_SYMBOL drivers/s390/char/tape 0xc6e829c1 tape_std_display -EXPORT_SYMBOL drivers/s390/char/tape 0xd64d1aa4 tape_std_mtbsf -EXPORT_SYMBOL drivers/s390/char/tape 0xd96bd908 tape_std_read_block -EXPORT_SYMBOL drivers/s390/char/tape 0xd9df161c tape_std_mtbsfm -EXPORT_SYMBOL drivers/s390/char/tape 0xdb507f09 tape_std_mtreten -EXPORT_SYMBOL drivers/s390/char/tape 0xe1633d0b tape_alloc_request -EXPORT_SYMBOL drivers/s390/char/tape 0xe2166553 tape_std_mtload -EXPORT_SYMBOL drivers/s390/char/tape 0xe3ed2782 tape_med_state_set -EXPORT_SYMBOL drivers/s390/char/tape 0xe9ebbec5 tape_std_mtcompression -EXPORT_SYMBOL drivers/s390/char/tape 0xf3838525 tape_do_io_async -EXPORT_SYMBOL drivers/s390/char/tape 0xf38d3d9f tape_generic_probe -EXPORT_SYMBOL drivers/s390/char/tape 0xf60f8faa tape_std_mtsetblk -EXPORT_SYMBOL drivers/s390/char/tape 0xf9cda904 tape_std_mteom -EXPORT_SYMBOL drivers/s390/char/tape 0xfa027688 tape_core_dbf -EXPORT_SYMBOL drivers/s390/char/tape 0xfd2db757 tape_std_mtrew -EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x8ec83f77 tape_34xx_dbf -EXPORT_SYMBOL drivers/s390/char/tape_3590 0x4315c925 tape_3590_dbf -EXPORT_SYMBOL drivers/s390/char/tape_class 0x65d4fff8 register_tape_dev -EXPORT_SYMBOL drivers/s390/char/tape_class 0xd74f60a7 unregister_tape_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x03c8a877 ccwgroup_set_offline -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x6c58dc98 ccwgroup_create_dev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x85e5210d ccwgroup_driver_unregister -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xa81cb522 ccwgroup_probe_ccwdev -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xb7b4ea10 dev_is_ccwgroup -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe3dc0ca4 ccwgroup_driver_register -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xf24d9328 ccwgroup_set_online -EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xf86d8cc5 ccwgroup_remove_ccwdev -EXPORT_SYMBOL drivers/s390/cio/qdio 0x1307f7f0 qdio_start_irq -EXPORT_SYMBOL drivers/s390/cio/qdio 0x9ea1a257 qdio_stop_irq +EXPORT_SYMBOL drivers/s390/char/tape 0x68c38d46 tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0x692c6506 tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0x6a7c8a0f tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0x6e6f26ca tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x77751841 tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0x7a5b9126 tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0x7bb47966 tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0x7de2941c tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0x8716e93d tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0x8ad8a956 tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0x9402e170 tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0x98a1897d tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0x9edca2c6 tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0xa6d648d6 tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0xaafce25c tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0xb199edbf tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0xbb05cd0c tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0xc7e009a4 tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0xc8ee5267 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xee788dbf tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0xf393055b tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xfaedd443 tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0xfb2d94e1 tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x98c31274 tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0x551ee426 tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0x51b3aa15 unregister_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0x7bd13a84 register_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x00640c46 ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x295e19b2 ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x2da4f5ea ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x42c517a8 ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x49621b65 ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x50b5032c ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x6534a22a dev_is_ccwgroup +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xa948d668 ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/qdio 0xd6f888de qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xe223a26e qdio_stop_irq EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x00cbfcde __traceiter_vfio_ccw_chp_event EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x42810e16 __tracepoint_vfio_ccw_chp_event EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x5e52f9ca __tracepoint_vfio_ccw_fsm_io_request @@ -1713,54 +1713,54 @@ EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xda66c31d __tracepoint_vfio_ccw_fsm_async_request EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0xeeaa8b65 __traceiter_vfio_ccw_fsm_async_request EXPORT_SYMBOL drivers/s390/crypto/pkey 0x2c537fd6 pkey_keyblob2pkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x024c2617 zcrypt_queue_register EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0327b454 zcrypt_send_cprb EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0b198dc8 ep11_clr2keyblob -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0c15a251 zcrypt_card_unregister EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x0ebc8b2f __SCK__tp_func_s390_zcrypt_rep EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1360e3df cca_findcard2 EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x17a7ba6e __SCK__tp_func_s390_zcrypt_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1a184939 zcrypt_card_get -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1eb8ed85 cca_check_secaescipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1d9256ed cca_check_sececckeytoken EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x274ee02a ep11_findcard2 -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2a542faa zcrypt_queue_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2bf4cec5 cca_check_secaeskeytoken EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2d7f789b ep11_genaeskey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2dc30fe9 cca_findcard EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x314aed2b cca_get_info EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x404502d2 __traceiter_s390_zcrypt_rep -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x405c9ee6 cca_check_secaeskeytoken +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x41ffc8bb ep11_check_aes_key EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4aad03c0 cca_gencipherkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4e15da00 cca_check_sececckeytoken +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4c0a5adf ep11_check_ecc_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x50eef635 zcrypt_card_get EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x52190334 cca_sec2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5c4bdd2e zcrypt_queue_get -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5dfa6880 zcrypt_card_free EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5e050fdf cca_genseckey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5f564f6a zcrypt_queue_alloc -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x64b6f3e9 zcrypt_queue_put -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x66aa0ff6 zcrypt_card_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5eb33ae9 zcrypt_card_free EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x67cedaeb zcrypt_rescan_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x808f8cf5 ep11_check_ecc_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x68e65eb0 zcrypt_card_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x6c1560ff zcrypt_queue_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x726b739e zcrypt_queue_free EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x85ca4e1d __traceiter_s390_zcrypt_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x889af60b ep11_check_aes_key_with_hdr EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x89f3a162 __tracepoint_s390_zcrypt_rep EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9032dd84 zcrypt_device_status_mask_ext EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x90e89023 __tracepoint_s390_zcrypt_req -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x96ccae5b ep11_check_aes_key +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x92bd07b3 zcrypt_card_register EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x9992a66f cca_clr2seckey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa502c213 zcrypt_wait_api_operational EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xa54284be zcrypt_device_status_ext -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xab911f17 zcrypt_card_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xaebcee5e zcrypt_queue_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xbf721f5a cca_check_secaescipherkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc0c976b6 ep11_get_domain_info EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc20af440 cca_query_crypto_facility EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc3ee9fa0 cca_cipher2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xcece7008 zcrypt_queue_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc521d783 zcrypt_queue_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xcb525b3c zcrypt_msgtype EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xdb0adadb ep11_kblob2protkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xdf7ff06c zcrypt_msgtype +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xe25252be zcrypt_queue_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xe4151119 zcrypt_queue_put EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xe741c8e5 ep11_kb_wkvp EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xea54d73e cca_clr2cipherkey -EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xebccfbea zcrypt_card_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xead8dd27 zcrypt_card_unregister EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xec693119 cca_ecc2protkey EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee077284 ep11_get_card_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xf3b890b6 ep11_check_aes_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xf7ce62c9 zcrypt_card_put EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfa128312 zcrypt_send_ep11_cprb EXPORT_SYMBOL drivers/s390/net/ctcm 0x40b3051a ctc_mpc_dealloc_ch EXPORT_SYMBOL drivers/s390/net/ctcm 0x56f42138 ctc_mpc_alloc_channel @@ -1773,359 +1773,359 @@ EXPORT_SYMBOL drivers/s390/net/fsm 0xaefe8672 fsm_getstate_str EXPORT_SYMBOL drivers/s390/net/fsm 0xdf20006d fsm_settimer EXPORT_SYMBOL drivers/s390/net/fsm 0xe8a7dd7d fsm_deltimer -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0cf0e08c fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14538969 fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x495b503a fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6646ea46 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x678feb9f fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x82091ce3 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9a1069d2 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa250d622 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb0a89615 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd85dafea fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xde97f751 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02d545c2 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x085ceb80 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a4c6655 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a8850e8 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x320b3a9e fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3fd7e2b9 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x67741760 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x68d52511 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x840966a3 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8da592a6 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9a969716 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa9027978 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbb302a1f fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbff6de9f fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf3ca839e fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02dfaeb9 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0414e3a0 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x047f4ecd fc_exch_mgr_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0dec4125 fc_fill_hdr EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f9c8dbc fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13a6ccd9 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a4b5bd2 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10c0bd35 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18ef6d03 fc_lport_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1dff580d fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2105fe7e fc_lport_iterate EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x288df52d fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28b4dd22 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2acb8aa7 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30f95b3a libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32722ec2 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37e5ce82 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d4a7487 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c63124a fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52c19fb3 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52dfbb03 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x532c427f fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2561c96c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26223510 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29f4b565 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32ceba5a fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x332c6410 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33701782 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36feb7e8 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38c55c25 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x448a44ec fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4defc187 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fc4e42f fc_exch_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57a46bb2 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57b12f36 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58b2884a fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x591654ae fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b864bbf fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5efc35f6 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6165142b fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x61de5185 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70da62d8 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74396fe0 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ed273b1 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59b67d42 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5aff7421 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6295770a fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d44184e fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e5ce7a9 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7db47b69 fc_rport_terminate_io EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83549d5c fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e3e3fa1 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84f2999b fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85156cfc fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87bbfcc9 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e686121 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ff2a0c6 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a7d9422 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cf6c68f fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5e9e06d fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac71ebdb fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xace2e107 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae073403 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae77c554 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb061ced9 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa36a12cd fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaf656104 fc_seq_assign EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3417f09 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb48c71c6 fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb51e2137 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb7cf2318 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd2726f5 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4c37d6a fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8ac27d2 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc71a1bfa fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7af4348 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8ab43be fc_fabric_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce0657f7 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf4d89be fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd06deeca fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce14e636 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf377e4f fc_lport_recv EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd078ec4c fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5d01b11 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc74c89a fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0f00159 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1e552ab fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe38830e2 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7772f7f fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9e0c9a7 fc_eh_device_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe989c52a fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9d128e3 fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xead18fa3 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeecc467c fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed73840b fc_rport_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1e0571d fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7b49ea7 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2e2c4e2 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf50a9e33 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5403d0e fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf7ce98c6 fc_linkup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd24e72c fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3e4789be sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb21b5b9 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb2573c5 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdab5e6e fc_fc4_deregister_provider EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x565395af sas_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa310245f sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xeb0942d7 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/raid_class 0x4e601a16 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xdc95ebbc raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3341e743 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x71b952fd sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xaee251e5 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd67b109d sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xec918000 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/raid_class 0xdac46f60 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xfaaec4c9 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x10d0f1f8 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2fdce6fa fc_vport_create EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3dccebc2 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x42692604 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x44afc04c fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6b8b247c fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6c448bb7 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6e482dd1 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x733dbcb8 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7dab68d9 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8bfbff76 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb30b3a1d fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc8a35bef fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd3af7556 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd73dcca0 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe10bff30 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe7459266 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfbaf287e fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x04e8aac4 scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a4fe285 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e13b6d8 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a0fea35 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32b42c60 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x37a4d51d scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e2820b2 sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46d6a353 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54f97ac0 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5668a16c sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b249687 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7228bb86 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x84398160 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x845b4081 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87da6855 sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88be0d05 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa581b58f sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xada79880 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf8a3550 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2601d7f sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0f8d793 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc5054f75 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc9f37776 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb588fb1 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0e8a2ef sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe13ea2d7 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe41ecc4e sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee932a58 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf450dcf4 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x390df63a fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x485b6dd0 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x777f8267 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x85ea4e80 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8781d250 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94eb811e fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x96d34479 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc1b64909 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc86454c9 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcd6c43a8 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcfc2cc7e fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd1be46c3 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd7524518 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe49c2bb9 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xec724089 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c3da3a2 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0cf24124 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x114e1321 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19f76527 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ca97653 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21d0db5a sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2bc70364 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3408660f sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x390fcce8 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bdec974 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e2e8669 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48f06b02 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x62c67290 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6af6614e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b712a32 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79bae082 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88b35702 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8fbc1454 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9614cccb sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9bc0edad sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa29f9a39 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad01b51c sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8712b7b sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbd922bfc sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc596a5aa sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4ed70b5 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd57755cd sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe95bf80d sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff581091 sas_port_mark_backlink EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x47816f75 spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6859e546 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x956d88b9 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd8220aa1 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe6973277 spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x08bd9f01 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2e1e8acf srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2edf7870 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4f33f66d spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6e3bca1c spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9f12e0d6 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe1be0ebe spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfaa42cfb spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0e8076a3 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x58a57991 srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbaf021ca srp_reconnect_rport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x029a8d5f iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x038716ba iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0671bdbd iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b2c284b iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1cd179c8 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d03cca7 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f057bf5 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23ae633b iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x260fdf49 iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27b102a1 iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2822ab13 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x29544f49 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x348d4daa iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52eae775 iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5626511e iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5edf87f1 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f91249d iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7080b44b iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71b92ca5 iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85e43e8f iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b42614a iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b869290 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92d43f31 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96f900d1 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97764eaf iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x989a7a55 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98f77409 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9beb7355 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d37cded iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1a02e83 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2eb6528 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa841ebf0 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1572b4d iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc35a4ee0 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4928510 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc86787ed iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9cf2718 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd51551c3 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd7103724 iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd4583b8 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5bbc6be iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5ed7a7b iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x53cf54b4 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6d10a594 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x84827f18 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xbbb5cf36 srp_reconnect_rport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x00f64518 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05d558fc iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06b7170b iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fc0413b iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d64dec0 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f657cad iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x222f1158 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x295ea6b2 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2aa709da iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f847146 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x321744d1 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x359ea0a5 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b800239 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ed521bf iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42f04396 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4853432f iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ab295bf iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d9ef019 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4dbee7dd __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51aa23cb iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53ae5f88 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5806d23d iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b4fb64c iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f659ea3 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64fa2f48 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6831c040 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6aa6e498 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75c20ac1 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7bdd643c iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x906b05f7 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9905b064 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa30a4ecd iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5a1efc3 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9ab011a iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xacfe6da3 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb895a1f iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce1b9598 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd47c816d iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfd708bc iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe44f46c7 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee706215 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf04b4646 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2006dc2 iscsit_setup_nop_out EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf43018f7 iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb87495e iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd1b3fdd iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00299615 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x01061a13 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x0267ed6e transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x07462922 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0858d07e target_send_busy +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4b86f20 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9758d54 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/target_core_mod 0x03b597f3 target_depend_item EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d565bcb target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x10556a6f target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x12522b1a transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x09c90692 target_send_busy EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1dce1656 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x1e68b3af transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x21161035 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2affb5e0 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x2b7dffc8 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2bcc09c6 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x2dd1b94f core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x31b09678 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x38795fac target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b28bf13 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bd4f810 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x281a2629 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2aad321a transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b48477a sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b853ca2 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e62916e target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e81d87f target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x34943d63 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x3723e452 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x385adaec sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x38d33474 core_tpg_set_initiator_node_tag EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3ac0da40 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x3e9ccf49 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x40939615 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x45f28218 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x49f78d1b transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x4a9b63d2 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x503b9923 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x539f8e9b target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x53bbd24f target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x57883dbf transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f811d44 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fbde808 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x42c4835b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4364f938 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x449a4bec transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a12e761 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f378aee transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f5a5b0c passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x501ee621 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5774252a core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x596de831 transport_register_session EXPORT_SYMBOL drivers/target/target_core_mod 0x5c999a72 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d24b4ed target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x5dee2d8f target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cb2f657 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d2306eb transport_generic_new_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x6ad47d31 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x77f1e7fd spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x78fdc197 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x644a011a target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x66248836 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c7ceeb2 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d6b5f35 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e162f40 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x72a90830 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7559f65c target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x79d7917d transport_generic_request_failure EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b20e3d4 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x89c66dad transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ba7e14b transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x8ba89e26 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x8e27b8c8 transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f0af308 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x91e1fbc4 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x9532e3df transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x978f330a core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x984a3056 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x99e283e9 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x9eaf068e core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa2139e67 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0xa44e1df0 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xa54fc3ea target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xace1b91e transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xbadae0b1 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xbb4dd797 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xbdf0321a core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe2b8488 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xbe35d463 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6fed241 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xcc5f34d2 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xd0925506 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xd32ebefc transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xd3e375c2 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9e7ebed spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xdbd6b306 target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc38e396 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xe400f115 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5fb8657 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6df982c passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe9e3d1de target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xea8b473a target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b5deed3 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c065527 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x91fe4e90 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x998dd2e1 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b7d8a79 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa055e069 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0c7bd15 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xa20c7387 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa28fee67 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3772ccc target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3bef4df target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xa46b756e target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa74a6fa2 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb17906a7 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2ddc62f target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb38d0249 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbe550f0 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2188ac6 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2359a8b transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xc726ee16 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbc532cf transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xccb6bd01 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb82e04c sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbc8f1a6 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf34d041 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0fc1ec5 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1ec396a core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3e609e5 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe622fb0a passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb587ca2 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xee328c92 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf22c923a transport_deregister_session EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3eda93d __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6ad816b target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xf8bfc497 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd9a6d88 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfe013c58 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xff6f6236 sbc_attrib_attrs -EXPORT_SYMBOL drivers/tty/serial/serial_base 0x092fa70a uart_add_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_base 0x1c045b0a uart_unregister_driver -EXPORT_SYMBOL drivers/tty/serial/serial_base 0x1d86169f uart_match_port -EXPORT_SYMBOL drivers/tty/serial/serial_base 0x26d4f73b uart_remove_one_port -EXPORT_SYMBOL drivers/tty/serial/serial_base 0x4503ed4b uart_get_baud_rate -EXPORT_SYMBOL drivers/tty/serial/serial_base 0x4c9f7ab9 uart_resume_port -EXPORT_SYMBOL drivers/tty/serial/serial_base 0x71b8f6ee uart_write_wakeup -EXPORT_SYMBOL drivers/tty/serial/serial_base 0x86f4203b uart_update_timeout -EXPORT_SYMBOL drivers/tty/serial/serial_base 0xd07d966b uart_register_driver -EXPORT_SYMBOL drivers/tty/serial/serial_base 0xf31bc7d8 uart_get_divisor -EXPORT_SYMBOL drivers/tty/serial/serial_base 0xf657aad6 uart_suspend_port -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x199acb19 mdev_unregister_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x30d8a589 mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5f95dac2 mdev_register_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa72d9024 mdev_register_driver -EXPORT_SYMBOL drivers/vfio/vfio 0x2b71c61a vfio_dma_rw +EXPORT_SYMBOL drivers/target/target_core_mod 0xf52876cf __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9aa9e7c transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9d93e4b target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa9d158c transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xfec8bb61 transport_alloc_session_tags +EXPORT_SYMBOL drivers/tty/serial/serial_base 0x07c65826 uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_base 0x1aa4a860 uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_base 0x226d5687 uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_base 0x3316db7c uart_get_baud_rate +EXPORT_SYMBOL drivers/tty/serial/serial_base 0x34360e60 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_base 0x761afab6 uart_update_timeout +EXPORT_SYMBOL drivers/tty/serial/serial_base 0xa913887b uart_match_port +EXPORT_SYMBOL drivers/tty/serial/serial_base 0xa9525be4 uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_base 0xc989a81d uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_base 0xd31f5dfd uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_base 0xdf532096 uart_get_divisor +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x01c648e1 mdev_register_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1033c63b mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x33c16de3 mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4ee9421e mdev_register_driver +EXPORT_SYMBOL drivers/vfio/vfio 0x0241eede vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x1895db0e vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0x4232a0c3 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x87dbffdb vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x8ccbbbe3 vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xaf8a4a7f vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xed6b3571 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xf3411eb8 vfio_info_add_capability -EXPORT_SYMBOL drivers/vhost/vhost 0xbe929c78 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xfc8627e0 vhost_chr_poll -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0f3db63c virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1783e802 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x77d3cc93 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa01cee2a virtio_dma_buf_export -EXPORT_SYMBOL fs/fscache/fscache 0x00022484 fscache_wait_for_operation -EXPORT_SYMBOL fs/fscache/fscache 0x0895bb23 fscache_relinquish_cache +EXPORT_SYMBOL drivers/vhost/vhost 0x597317bd vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x9a968fe4 vhost_chr_poll +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1550b9fd is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x722efad9 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb44e426a virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xd8d03488 virtio_dma_buf_attach +EXPORT_SYMBOL fs/fscache/fscache 0x002c0ec6 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x00bc847d fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x087b8c0a fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x0e4520bc fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1887caf0 fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write -EXPORT_SYMBOL fs/fscache/fscache 0x1f25ce88 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1d4ba278 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x209e5c2d fscache_add_cache EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x249671dc fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0x2b389369 __tracepoint_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x3196bdf0 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x309ada3d __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3525ddd9 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3b0269d2 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3f104e6a fscache_relinquish_cache EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates -EXPORT_SYMBOL fs/fscache/fscache 0x4b95fbc2 __fscache_use_cookie EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x6c187696 __fscache_write_to_cache -EXPORT_SYMBOL fs/fscache/fscache 0x6c24b068 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x50bb4bfc fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x55196787 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x629bd846 __fscache_relinquish_cookie EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6f090eef fscache_dirty_folio EXPORT_SYMBOL fs/fscache/fscache 0x71fb0e58 __tracepoint_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x74788057 fscache_end_cookie_access -EXPORT_SYMBOL fs/fscache/fscache 0x75d7fd70 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7641a298 fscache_withdraw_cookie EXPORT_SYMBOL fs/fscache/fscache 0x77e19a42 __tracepoint_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x7ad0b384 __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x85cea904 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0x8d830429 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x8fc64523 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x81f89453 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x82bff547 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x89510882 __fscache_acquire_cookie EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x93e34474 fscache_cookie_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x9aa23490 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9c3cda28 fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa0c0eb23 fscache_acquire_cache -EXPORT_SYMBOL fs/fscache/fscache 0xae25213c __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa2ca7d9d fscache_put_cookie EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb2c2cd19 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb160bc8d __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xbaafa80a __fscache_begin_read_operation EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xbdd96628 fscache_put_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xc9a1d825 fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xd1edaf43 fscache_withdraw_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xd5f9c21b __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xd2127128 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xd8dd25d6 __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xe0e70aad fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xe249e085 __fscache_clear_page_bits -EXPORT_SYMBOL fs/fscache/fscache 0xeb0c0bdc __fscache_relinquish_volume -EXPORT_SYMBOL fs/fscache/fscache 0xf65e2072 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe1760b54 fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0xf68b44dc fscache_addremove_sem -EXPORT_SYMBOL fs/fscache/fscache 0xf692fdb1 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xf7e5595b fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0xf8e2dc8c fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0xff20eabd fscache_clearance_waiters -EXPORT_SYMBOL fs/netfs/netfs 0x05e235df netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0x509ed0f4 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x6bcf6272 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x6f97790d netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xde8abf80 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x5368d65c netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x9ec1908e netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xd921dfcc netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0xe093674b netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xf6d3f30d netfs_readahead EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0xa81dd4db qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb8819504 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xbbd17d8d qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xbdf369b9 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xea4e2455 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf03668e0 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x121d8f36 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x36103491 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9c707a98 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xe693c0fc qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe74e3ab4 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf417a682 qtree_delete_dquot EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc-itu-t 0xdf59602c crc_itu_t EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -2153,14 +2153,14 @@ EXPORT_SYMBOL lib/lru_cache 0x5f8e9bc8 lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0x5fcc5043 lc_reset EXPORT_SYMBOL lib/lru_cache 0x6c0e9649 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x79cf717f lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x82d556b7 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0xa752d9cd lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xa96da040 lc_create EXPORT_SYMBOL lib/lru_cache 0xb5ce3732 lc_put EXPORT_SYMBOL lib/lru_cache 0xbb4ab7f7 lc_committed +EXPORT_SYMBOL lib/lru_cache 0xd155c2c8 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xd2c9f32a lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xdca3cd72 lc_del -EXPORT_SYMBOL lib/lru_cache 0xe3d10a7e lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xe8d41b56 lc_is_used EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize @@ -2198,5461 +2198,5470 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL net/802/p8022 0x050a9ad1 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xdca9d548 register_8022_client -EXPORT_SYMBOL net/802/psnap 0xa8f81d58 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0xb3eb7a2d register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x01cb992e p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x0e87511a p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x111db5c5 v9fs_unregister_trans +EXPORT_SYMBOL net/802/p8022 0x1a3f6c65 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x5dce91e8 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0xc91feffc register_snap_client +EXPORT_SYMBOL net/802/psnap 0xc9f1a6ca unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x149a4e62 p9_client_renameat EXPORT_SYMBOL net/9p/9pnet 0x16df3f8e p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x2d3ea1ac p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x2e1090f0 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x2f75d952 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x1c50abc7 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x1e5fc05e p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x286d6977 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x2aa1457d p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x2e5ab8af p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x352a7ae5 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x3d69731b p9_client_wstat EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x42ae776f p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x468e68a4 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x3e2babfb p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4267fbb0 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x47be13f6 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x4a202aa6 p9_client_unlinkat EXPORT_SYMBOL net/9p/9pnet 0x4bb518b4 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x4ccd1625 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x4ec3cdbc p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x5023c9e2 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x5653f84f p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x59e1cae0 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x60955fea p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x60ba2e08 do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0x6220ff0c p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x62913aa4 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x63bb2ac1 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x6426e1be p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x6809cc7d p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x6929977d p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x69ed76d1 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x7a0990e0 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x519a81c8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x52f7c8d9 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x53e246ae v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x599bb040 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x599f86d2 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x5d92349e p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x5f9f4c65 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x61b99c5e p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6c70d98c p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0x7a4d6f23 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x886c3bfb p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0xa17daf34 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xa322c09d __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xab08aa48 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xad350871 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xaf0fac53 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xb37459f4 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x7ca72650 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x9d409950 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x9e2960fe p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xa342fec7 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xa5aa02bd p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xaf3bdf6d p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xb201aa46 p9_client_symlink EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xb5f02360 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xba0e7ed2 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbd81dfa6 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xbe9b8b1a p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xc3f176e8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xb8efdb75 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xb92f8851 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xb9ec0b99 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xbca8a625 p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0xc7bad4fc p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xcc3c341a do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0xcdb4c2e4 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xd05d7ce5 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xcf05c564 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xcf37be61 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd0fb071e p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd1dbf2fd p9_client_mknod_dotl EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd81f39b1 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0xda8f0124 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xdbde9bb2 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xdc11a7eb p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0xe2d9436f p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd5615d48 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe539324b v9fs_unregister_trans EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe9370d0b p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xe5d61e4f p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe997a7e7 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xeda0d886 p9_client_walk EXPORT_SYMBOL net/9p/9pnet 0xee437897 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xf2f673b1 v9fs_register_trans -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x05719ba0 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x625d9aa3 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x670b7088 ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x689fe1cd ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x838b0776 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf3c3a1bd ebt_register_table -EXPORT_SYMBOL net/ceph/libceph 0x040bab76 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x041d5ed7 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x049a59ab ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x0682fcd8 ceph_con_keepalive +EXPORT_SYMBOL net/9p/9pnet 0xf5b04500 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xfb78571b __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xfe6fc0f2 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xffc95d84 v9fs_get_default_trans +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6656abab ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x88707eef ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd8adaaa3 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdb0b0348 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe1b699e2 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfe158f27 ebt_unregister_template +EXPORT_SYMBOL net/ceph/libceph 0x02f38bd2 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x04bb4984 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x06f6f523 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x09505a07 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x0b7309c9 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x0bd34fb7 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0x0d6f4535 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x0d89c567 ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x0e776b7e ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x13dc4996 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x1419198c ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x174003f8 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x19691279 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x19eac2bd ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x1a94df5d ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x1c92cfbf ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x15a291c4 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x179181da ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x1b037adc ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x1b1863af ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x1c60ed1d ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x1cc7d56a osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x205d187a ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x207191ba ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x20c52a81 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x20cebeb6 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x20f74fec ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x210770af ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x24bfc9a9 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x2506b9c4 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x277e9a02 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x2a870127 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x2ab7b9af ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x2bad6307 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x2bbaf78a __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x2cc49e85 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x3075de76 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x34640d2d ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x3467bbd5 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x233abf31 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x268b438d ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x28b9f67f ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x2b683351 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x2daac85f ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x2e90a7a9 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x30cff175 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x34166769 ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0x3524c308 ceph_find_or_create_string -EXPORT_SYMBOL net/ceph/libceph 0x3684fb2d ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x3746c25c ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x37680737 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0x3808faa7 osd_req_op_copy_from_init EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x42b222c5 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x44c68afa ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x454c91ef osd_req_op_extent_osd_data_pages EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x483fdf0a osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x489317c7 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x478e385b ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x499461fc ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4ce151cc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x4ccf685a ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x525fd4ad ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x51872632 ceph_parse_param EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x568223e4 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x53446c46 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x53a8f35f ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x53fcf9b1 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x5655e283 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5a97fa51 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x581a03a2 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x58f4a480 ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5c029279 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x5c29342f ceph_monc_renew_subs -EXPORT_SYMBOL net/ceph/libceph 0x5de969ae ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x606f1162 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x63679464 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x5c8247f3 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x5e39b0f5 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5fba96bf osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x638df72b ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x63b7c3c0 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x67720bb0 osd_req_op_extent_osd_iter +EXPORT_SYMBOL net/ceph/libceph 0x6906ec6e osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6a152202 ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6e7b6fb2 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x75416936 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6cfe7098 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6fc76312 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x70962468 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x749f86b8 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x79f0c5ec ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x7a0f09e0 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x7c714c10 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x7cf75255 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x7d3c649c osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x7ded0d91 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x7e422022 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x7fa0025f ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x7907fd2a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x79c57758 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x7be8a739 __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0x7dc8d43e ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x7ea37f73 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x7fe9b3bd ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0x8111e973 ceph_pg_poolid_by_name EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x82b6221a ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x82cfd237 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x8324e278 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x83433f1a osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x8391964d ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x8479d27f ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x860c6267 ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x87665185 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x8ac6e806 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8beb6b21 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x8ebb98a0 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x93c7d4c6 ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x96138fa6 ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x966b05ea osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x96933d47 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x97ed643f ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x880597aa ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x89d90b9d ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x8d29e9bb ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x8ee9fbb9 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x90dfa5d9 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x915f5a4a __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x99e1fde6 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x9bd27c26 ceph_monc_do_statfs EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9d756b8a ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x9e94c3bc ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa258472e osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa190aea2 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xa2363b31 ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0xa376f5df ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xa4720933 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xa57d618e ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0xa58b7e99 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0xa64f2880 ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa785f740 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xa7d4a427 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0xac8db656 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xa75305e0 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa8a2919f ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xaceb5dab ceph_osdc_cancel_request EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xafb7a850 ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xafc41079 ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0xb03049ed ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xb4cae18c ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xb06bf24a ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb0f1fed1 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xb11aa82e osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xb32bea33 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5b0e01c ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xb5b1620d osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xb66edfc3 ceph_monc_init EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb7af1484 __ceph_alloc_sparse_ext_map EXPORT_SYMBOL net/ceph/libceph 0xb8028006 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xbbc0e211 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xbaa9eceb osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xbb617ca8 ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0xbc98cee2 ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbd3020a7 ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbf0d59d5 ceph_osdc_watch -EXPORT_SYMBOL net/ceph/libceph 0xc05ef745 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xc0d3f34c osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xc68727b4 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0xc7909e32 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0xc9ccb652 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xbf43b5b7 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xc23b3573 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xc29cf31c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc4097eb9 ceph_open_session EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file EXPORT_SYMBOL net/ceph/libceph 0xcab25d94 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0xcbbd961c ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xcbe4a6a7 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xd00c6c5b ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0xd285a11d osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xcccef2c8 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xd3b50ad3 ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd6389f29 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xd80f7680 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0xdcb7192d osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xde3994b8 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xd52ab1f3 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xd6178a5f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xd6bf5c22 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xd764b818 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xd87e07bd osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd88e1fea osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0xdeddd368 ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe3002a7d osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xe340e9a9 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xe4188aa8 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xe6a4f490 osd_req_op_extent_osd_data_bvec_pos EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0xe8ebc843 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xea1d8350 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xed92de6d osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xea42a6c3 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xeaf02857 ceph_zero_page_vector_range EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef1c0cdc osd_req_op_extent_osd_iter EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf631915b ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xf658b105 ceph_monc_blocklist_add -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8acf6f6f dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xff611233 dccp_req_err -EXPORT_SYMBOL net/ipv4/fou 0x0aef47fc __gue_build_header +EXPORT_SYMBOL net/ceph/libceph 0xf34f5141 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xf399f0e0 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xf44eb31a ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xf4a101a1 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xfa0af675 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xfbde570f ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xff2cce8d ceph_compare_options +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3ed6767f dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7ae7efab dccp_syn_ack_timeout +EXPORT_SYMBOL net/ipv4/fou 0x06dfdd65 __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x583022cd __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd859f45c __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0xdf2dc58a gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x344d1e28 ip_tunnel_md_udp_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5ba9a8c6 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x73df2e90 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbe1ca98d ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfd488ec0 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6139104d arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x80564b61 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa56e2f5a arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf5930f19 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2d222990 ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4afb8ced ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb7fa0db7 ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd08dc3fe ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x130a9bbc xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/tunnel4 0xb9c8f685 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x457570eb udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1bf428d7 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3820cea2 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4d46d79b ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4f5445fa ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4f7340c1 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x63cf9072 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcda78bbe ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd3c28ca2 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf208df6a ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4d81cdfb ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc48f77a3 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe84b8806 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xed1d14d3 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x1acd8a53 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x70812e2a xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x310e10a9 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb4a1374c xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/llc/llc 0x32920352 llc_add_pack +EXPORT_SYMBOL net/ipv4/gre 0xc2f924d7 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x00e0fa63 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x24377e50 ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa1596055 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc5f67fc6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcb269287 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x128c84c3 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5d911a23 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb873ba18 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbd121aa6 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x222c0015 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7b655b9a ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7da7bcf3 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9e58ef40 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x115e0ffd xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x2be108ce xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x3295d9f8 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x22695329 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4b581134 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6721eae1 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x89492ba2 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x98b11c5a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa77aba89 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa85cdd29 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb56f98ba ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf4f59014 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x09ad96b1 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4427b20a ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9da98323 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd6c5b244 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x66da83e6 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xe5ee80b9 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2e23794d xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7851d71d xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/llc/llc 0x0cb3c559 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x30027bca llc_add_pack EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3b00a818 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x3bb17b7a llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x59c75f93 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x745693be llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x84e8bd56 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x97320746 llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x9a52d6d7 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xc0e65b26 llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f2eddcd ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x268eed57 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a714d37 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3b35073a unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4cd49eae ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5a5f7b64 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f15ceb3 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93ed068b ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x982c2894 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa4f424c0 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xad52ad79 ip_vs_scheduler_err +EXPORT_SYMBOL net/llc/llc 0x727ae3ab llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x8fb1af90 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xe8a168a3 llc_sap_find +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47c49506 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61a32820 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x66db34e5 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x73955e7f ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7adce6a1 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x850f4fc1 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8cddca4f unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa97def73 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3759cce ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc4031a3 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd432f255 ip_vs_new_conn_out EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc64de77 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe28de69d register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeb8a2777 ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xed678bde register_ip_vs_app -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0a6a5d9c nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdbe32a10 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdf3626fc ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe98b6c38 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfa59577a ip_vs_conn_put EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4f3c0c87 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x2092fd6a __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x4375fe10 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0x934d9721 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xc21aff76 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x26301e8c nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x3d0f42be nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x5cca2049 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x962cb821 __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2455fbac xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x226d1012 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2b7eef27 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2f5910ce xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x4f2afbfa xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x507399b6 xt_find_match EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x5d61659a xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x6f1a23c9 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x770ccd6e xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x8c2b7d7f xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x6836734d xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x7188e8e2 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x78880059 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x80831d8c xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xae9d11c5 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xaeaf1af0 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xf84e9d8f xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe8bcdfe1 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xeebfca7b xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfdee7265 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0398b4f2 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x176d4017 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0c5f9e8d rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x11cfae13 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b1af448 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2bcff2b4 rxrpc_kernel_send_data EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x32b3dffa rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x490d715d rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x49d4ee7a rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4c7f4c2e rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e96652e rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x665fdd5c rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6b01e362 rxrpc_kernel_shutdown_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x97050e83 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9edcc3b8 rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa86a47c6 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xae558902 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb63b4eec rxrpc_kernel_put_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb63c1ee4 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbd5bf7ee key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc410c764 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcca976d5 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8ac4f23 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/sctp/sctp 0xba4c96c7 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x294563a1 __traceiter_smcr_link_down +EXPORT_SYMBOL net/rxrpc/rxrpc 0x393a1759 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x51a7c5ae rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5439c6eb rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x59c3ab83 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x785ba603 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x810f395d rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa987e25c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb685e478 rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb9aca348 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc0add333 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd1c1d021 rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd40b703d rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe41f931d rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe5a615b0 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf7138302 rxrpc_get_server_data_key +EXPORT_SYMBOL net/sctp/sctp 0x7c9a9e82 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x0b66b8ad __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x3665012a __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x37928824 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x549f1f66 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0x76da5303 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x831a7d38 __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xa053541c __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xcaaa5b39 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xd24addfc __tracepoint_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xe9f4f915 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xf47b4ee2 __tracepoint_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4cbb91ed gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x61294429 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdae4e374 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/sunrpc 0x47bfdc8a svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x50b91c39 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x6fbb4e01 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x581eb226 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x7a18f7ba tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xea6ee9af tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xf9e43a46 tipc_dump_start -EXPORT_SYMBOL net/tls/tls 0x09ce23c4 tls_get_record -EXPORT_SYMBOL vmlinux 0x0012c869 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x00206ab5 __netif_schedule +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x3af28724 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x96b78db8 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf4561e82 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x75f06619 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x84bfad46 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbcb57022 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x1f756412 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x85713216 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xab9b8abb tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xb09c1ab5 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0xb15df366 tls_get_record +EXPORT_SYMBOL vmlinux 0x0006ee5a unregister_quota_format +EXPORT_SYMBOL vmlinux 0x000c1731 try_module_get EXPORT_SYMBOL vmlinux 0x0029a606 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x003d7aff pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x004851e5 fb_blank +EXPORT_SYMBOL vmlinux 0x0045ec06 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x004733c1 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x004a3042 mount_subtree +EXPORT_SYMBOL vmlinux 0x00580038 finish_swait EXPORT_SYMBOL vmlinux 0x006e114b __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x007b2613 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0x00868701 ether_setup -EXPORT_SYMBOL vmlinux 0x009092a2 send_sig_info -EXPORT_SYMBOL vmlinux 0x009526e7 iov_iter_get_pages_alloc2 -EXPORT_SYMBOL vmlinux 0x00ac4e1a inet6_ioctl -EXPORT_SYMBOL vmlinux 0x00b495fc security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x007caac2 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x00a3cdb9 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x00b445fa scsi_dma_map EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00ce6879 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x00b7fa8c ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x00b86fc2 inet_frags_init EXPORT_SYMBOL vmlinux 0x00d8e84a mtree_alloc_rrange -EXPORT_SYMBOL vmlinux 0x00f2519f kern_unmount EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper EXPORT_SYMBOL vmlinux 0x00f51fdd sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0x00ff86ac do_clone_file_range EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010b29d7 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x01272d35 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0x012f43d5 eth_header_cache -EXPORT_SYMBOL vmlinux 0x0130622b tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x013643e7 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x01018188 dev_addr_del +EXPORT_SYMBOL vmlinux 0x011dc2be __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x012917a5 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x012f76c2 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x01372b97 complete_request_key +EXPORT_SYMBOL vmlinux 0x0143ca15 netif_device_detach EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x014dc4cf config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x0157b2c0 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x01585ca5 _atomic_dec_and_raw_lock -EXPORT_SYMBOL vmlinux 0x0159ccda do_SAK EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x0176a438 fsync_bdev EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x01927aef import_single_range -EXPORT_SYMBOL vmlinux 0x0194c08d fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x019c9432 pcie_capability_clear_and_set_word_unlocked -EXPORT_SYMBOL vmlinux 0x01a09959 folio_alloc +EXPORT_SYMBOL vmlinux 0x01a092f3 ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x01a20ede radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x01a57836 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x01addf84 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x01af8ea4 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x01bf09c2 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x01a8babd __skb_checksum EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01e397f5 nf_ip6_checksum -EXPORT_SYMBOL vmlinux 0x01f272f1 fiemap_prep +EXPORT_SYMBOL vmlinux 0x01f0483d jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x01ff7734 vfs_llseek +EXPORT_SYMBOL vmlinux 0x02023256 sock_no_mmap EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x020c3da2 neigh_parms_release EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x020f9fe1 pci_request_regions EXPORT_SYMBOL vmlinux 0x021228c7 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x0222b671 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x0237a99d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x02203e3a set_bh_page +EXPORT_SYMBOL vmlinux 0x0242d5ec kbd_keycode +EXPORT_SYMBOL vmlinux 0x0245c887 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x02536be5 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x0270eba9 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x02731411 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02781ac0 proc_set_user -EXPORT_SYMBOL vmlinux 0x027d229f jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x027d272b dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x02832738 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x0295fe97 phy_attached_info +EXPORT_SYMBOL vmlinux 0x028a8f03 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x02913664 eth_gro_receive EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x029a7bf2 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x02a5fb5d dquot_disable EXPORT_SYMBOL vmlinux 0x02aa5653 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x02b38886 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x02bba05a input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x02bd68b9 locks_init_lock +EXPORT_SYMBOL vmlinux 0x02b7731d unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x02d2db08 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x02e655df dev_open +EXPORT_SYMBOL vmlinux 0x02cf8c29 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x02d23af8 param_get_ulong EXPORT_SYMBOL vmlinux 0x02f034a1 xz_dec_run -EXPORT_SYMBOL vmlinux 0x02f15552 pci_msi_vec_count EXPORT_SYMBOL vmlinux 0x02f4d77f __SCK__tp_func_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x0305efb1 vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x032bdec0 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x032de460 mpage_readahead +EXPORT_SYMBOL vmlinux 0x030cc4f6 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x03191f5a vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x03218e61 tcp_syn_ack_timeout EXPORT_SYMBOL vmlinux 0x0332c029 kmalloc_size_roundup EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0346e510 scsi_host_put EXPORT_SYMBOL vmlinux 0x034a7afe idr_destroy EXPORT_SYMBOL vmlinux 0x035d25ab memcg_kmem_online_key EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x03629c77 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x03638585 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x03721671 ap_cancel_message +EXPORT_SYMBOL vmlinux 0x03799d18 simple_statfs EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037a1159 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x037bd4a9 sk_stop_timer EXPORT_SYMBOL vmlinux 0x038762c8 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0x0388eaac copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x039d6379 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03b95171 tty_name -EXPORT_SYMBOL vmlinux 0x03c24677 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x03c87b04 genphy_update_link -EXPORT_SYMBOL vmlinux 0x03cd8d07 netdev_get_by_name +EXPORT_SYMBOL vmlinux 0x03c2623d tty_write_room EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0x03ed074f netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x03ed4f30 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x03fa20de platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x03db46d0 d_splice_alias +EXPORT_SYMBOL vmlinux 0x03dbe501 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x03fb803f handshake_req_submit EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x041e55ca __register_binfmt +EXPORT_SYMBOL vmlinux 0x03fea8b9 input_setup_polling +EXPORT_SYMBOL vmlinux 0x0414e033 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x042b16a5 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0x04377c9b __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x04381ff9 keyring_search EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc EXPORT_SYMBOL vmlinux 0x04444662 lockref_get_not_dead EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x0463a639 blk_put_queue -EXPORT_SYMBOL vmlinux 0x046ad511 d_add -EXPORT_SYMBOL vmlinux 0x046b3bdc register_netdevice -EXPORT_SYMBOL vmlinux 0x04746bc9 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x0460d17d block_write_full_page +EXPORT_SYMBOL vmlinux 0x0468a8cd ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x046b4978 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x0476cd06 xfrm6_rcv EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x048c8de6 __debug_sprintf_event -EXPORT_SYMBOL vmlinux 0x04a7782c register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x04ad1194 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x04afac47 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x04b9c167 do_splice_direct -EXPORT_SYMBOL vmlinux 0x04bb89a3 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x050497c0 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x0513b99b remove_proc_entry -EXPORT_SYMBOL vmlinux 0x051f914f ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x05234aa8 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x047c3d25 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x0489eb29 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x048f2afc tty_port_init +EXPORT_SYMBOL vmlinux 0x049d045c netlink_set_err +EXPORT_SYMBOL vmlinux 0x049f7b1f inode_set_flags +EXPORT_SYMBOL vmlinux 0x04c23734 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x04c294a0 debug_register_mode +EXPORT_SYMBOL vmlinux 0x04dcd224 bdi_alloc +EXPORT_SYMBOL vmlinux 0x04dd30e3 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x04df3713 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x0513d0ae dev_mc_flush +EXPORT_SYMBOL vmlinux 0x0518db04 locks_delete_block EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052bc4d0 __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x053310bb sk_ioctl +EXPORT_SYMBOL vmlinux 0x052a4d83 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x05383a19 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x0542e33c generic_file_write_iter EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0553bcd5 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x055cee0a tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x056ad4e8 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x056276eb tcp_read_done EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x056e2bff param_set_bool -EXPORT_SYMBOL vmlinux 0x056f32a0 get_phy_device -EXPORT_SYMBOL vmlinux 0x0578bd29 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x0572b255 copy_page_to_iter_nofault EXPORT_SYMBOL vmlinux 0x0584d4ac __traceiter_s390_cio_ssch -EXPORT_SYMBOL vmlinux 0x058584bd devm_of_iomap -EXPORT_SYMBOL vmlinux 0x058ea63d tty_port_put -EXPORT_SYMBOL vmlinux 0x0595c827 flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0x05aca00a napi_build_skb -EXPORT_SYMBOL vmlinux 0x05c99ca8 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x05d6f019 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x059be2c2 __scm_destroy +EXPORT_SYMBOL vmlinux 0x05a4c2be mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x05b6ae9d pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x05c03f4f proc_set_user EXPORT_SYMBOL vmlinux 0x05dd0f91 __lshrti3 -EXPORT_SYMBOL vmlinux 0x0612dac4 begin_new_exec +EXPORT_SYMBOL vmlinux 0x05ea37bd cdrom_open +EXPORT_SYMBOL vmlinux 0x05edb2b2 dqput +EXPORT_SYMBOL vmlinux 0x0614f46b ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061e52b9 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x062cc2e0 truncate_inode_pages EXPORT_SYMBOL vmlinux 0x063015d4 gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0636b218 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x063a6b31 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x0650c484 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x065ac411 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0653057c dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x0676d706 pmdp_xchg_lazy -EXPORT_SYMBOL vmlinux 0x067923af ptep_reset_dat_prot -EXPORT_SYMBOL vmlinux 0x067f942b bioset_exit -EXPORT_SYMBOL vmlinux 0x06948503 retire_super -EXPORT_SYMBOL vmlinux 0x06bb09fb vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x067ebe1d param_get_int +EXPORT_SYMBOL vmlinux 0x0688b815 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x069380c2 dev_addr_add +EXPORT_SYMBOL vmlinux 0x06b83806 kernel_param_unlock EXPORT_SYMBOL vmlinux 0x06ce98f2 raw3270_read_modified_cb EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d38fc6 mount_nodev -EXPORT_SYMBOL vmlinux 0x06deab3c netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0x06e8d5a5 fifo_set_limit -EXPORT_SYMBOL vmlinux 0x07062418 register_framebuffer +EXPORT_SYMBOL vmlinux 0x07060926 netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x07196d49 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x071cac29 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x072baf38 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x072ca8ab seq_release EXPORT_SYMBOL vmlinux 0x0736c3ff fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0x07464f55 udplite_prot -EXPORT_SYMBOL vmlinux 0x0746d49c key_move -EXPORT_SYMBOL vmlinux 0x07781dc6 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x07444cfd phy_attached_print +EXPORT_SYMBOL vmlinux 0x075fc13d __module_get +EXPORT_SYMBOL vmlinux 0x07821226 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x07965889 nla_put -EXPORT_SYMBOL vmlinux 0x079ed74c netif_stacked_transfer_operstate EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b2f456 pci_write_vpd EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07e0c275 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x07e6f2d3 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x07d37203 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x07d84e4e bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x07e85cf3 ip_check_defrag EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07fe8246 put_disk +EXPORT_SYMBOL vmlinux 0x07f6b795 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x07f7efe9 set_create_files_as EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x081dd855 sock_create_kern +EXPORT_SYMBOL vmlinux 0x0813de1c nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x081ac164 from_kgid +EXPORT_SYMBOL vmlinux 0x08294433 skb_free_datagram EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x082ffbc9 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x08317450 crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0x08456553 match_string -EXPORT_SYMBOL vmlinux 0x08509c7b seq_bprintf -EXPORT_SYMBOL vmlinux 0x0856fabe tcp_poll -EXPORT_SYMBOL vmlinux 0x085df1c9 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x084f7de0 __folio_alloc +EXPORT_SYMBOL vmlinux 0x086153fd unlock_two_nondirectories EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit EXPORT_SYMBOL vmlinux 0x08763ec5 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x08843a29 blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x08992ab3 skb_push +EXPORT_SYMBOL vmlinux 0x08ab2481 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0x08ad8521 register_adapter_interrupt -EXPORT_SYMBOL vmlinux 0x08bdb6a0 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x08de1ce2 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x08e72f7a ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x08fb654f pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x090e3d32 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x08f388c0 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x08f53378 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x08fb6e7b handle_edge_irq +EXPORT_SYMBOL vmlinux 0x090c1e60 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x090ff82c d_find_alias EXPORT_SYMBOL vmlinux 0x0920b173 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x09367cd6 unregister_nls -EXPORT_SYMBOL vmlinux 0x094b6fec __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x09322f32 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x09457d94 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x094e5ad6 phy_do_ioctl EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive -EXPORT_SYMBOL vmlinux 0x0965221c security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x095979d4 d_exact_alias +EXPORT_SYMBOL vmlinux 0x096962ab scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x0970102e zstd_compress_bound EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x0977a428 folio_migrate_flags -EXPORT_SYMBOL vmlinux 0x0986c5e6 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x09858ee9 ap_send_online_uevent EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09ae19c0 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x09af30f5 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x09b69e14 udp_prot +EXPORT_SYMBOL vmlinux 0x09b78842 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x09c0dca9 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d50dca cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x09ec7551 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x09f7c09a mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x09d85ce4 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x09f69397 mdiobus_scan_c22 EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a116ee5 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x0a0cee12 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x0a12b108 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x0a23a0bc __netlink_dump_start EXPORT_SYMBOL vmlinux 0x0a3b0d94 raw_copy_from_user -EXPORT_SYMBOL vmlinux 0x0a514e3e __folio_lock -EXPORT_SYMBOL vmlinux 0x0a6a1a67 bio_add_folio -EXPORT_SYMBOL vmlinux 0x0a6f436f jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x0a4fd9c1 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x0a6345a8 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a79aed3 devm_memunmap -EXPORT_SYMBOL vmlinux 0x0a7d9b69 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x0a8c6d92 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x0a9676f6 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x0a795433 ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0x0a7d02f1 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x0a92e835 pci_enable_device EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa3f714 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x0ab066ee kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x0ab6b8ca del_gendisk -EXPORT_SYMBOL vmlinux 0x0acfdcf1 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x0ad1a20f set_user_nice -EXPORT_SYMBOL vmlinux 0x0adc60ab pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x0ade5dbd kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x0b059ef1 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x0b06ae8b __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0abfac48 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x0b1af597 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x0b1b93d8 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b1c5a91 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x0b406024 dev_driver_string -EXPORT_SYMBOL vmlinux 0x0b4f1484 deactivate_super -EXPORT_SYMBOL vmlinux 0x0b516654 vlan_for_each -EXPORT_SYMBOL vmlinux 0x0b531133 tty_devnum +EXPORT_SYMBOL vmlinux 0x0b3da71d seq_write +EXPORT_SYMBOL vmlinux 0x0b4568d6 locks_init_lock +EXPORT_SYMBOL vmlinux 0x0b4ad412 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x0b640df6 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x0b6c67c9 sock_alloc_file EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b9f0c82 sk_dst_check -EXPORT_SYMBOL vmlinux 0x0b9f1219 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba985d2 complete_request_key +EXPORT_SYMBOL vmlinux 0x0ba623ef tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x0bad271d dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x0bb92617 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x0bc1481c rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type EXPORT_SYMBOL vmlinux 0x0bc4911e nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0bd8c3db sock_from_file -EXPORT_SYMBOL vmlinux 0x0bec6ba9 vma_set_file -EXPORT_SYMBOL vmlinux 0x0bf9e86b page_get_link -EXPORT_SYMBOL vmlinux 0x0c1580ba neigh_update +EXPORT_SYMBOL vmlinux 0x0bf048fe security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x0bfda774 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0c075364 netdev_change_features EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support -EXPORT_SYMBOL vmlinux 0x0c1efdd7 netpoll_setup +EXPORT_SYMBOL vmlinux 0x0c2441d7 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c32724a netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x0c2f5546 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x0c310626 param_ops_int EXPORT_SYMBOL vmlinux 0x0c333a7f radix_tree_insert -EXPORT_SYMBOL vmlinux 0x0c46fdea dm_put_device -EXPORT_SYMBOL vmlinux 0x0c73303d rtnl_create_link +EXPORT_SYMBOL vmlinux 0x0c4cca0a blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x0c50f34c xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x0c73ce69 submit_bio EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c7d9ec9 param_ops_byte EXPORT_SYMBOL vmlinux 0x0c904c5b mempool_exit +EXPORT_SYMBOL vmlinux 0x0c9c3887 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cbdb31f netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0x0cc99dfa config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x0cc4949a udp_seq_stop EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0d0317b2 mount_subtree -EXPORT_SYMBOL vmlinux 0x0d059f4a handshake_req_alloc +EXPORT_SYMBOL vmlinux 0x0cf77065 tcp_add_backlog EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d085c5b ethtool_notify -EXPORT_SYMBOL vmlinux 0x0d09c7f3 padata_free -EXPORT_SYMBOL vmlinux 0x0d130589 inet_addr_type -EXPORT_SYMBOL vmlinux 0x0d18aa5f generic_write_end -EXPORT_SYMBOL vmlinux 0x0d3c2995 phy_disconnect -EXPORT_SYMBOL vmlinux 0x0d40c440 registered_fb +EXPORT_SYMBOL vmlinux 0x0d193e0f watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x0d1f0aab dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0d31b423 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x0d470052 input_register_device +EXPORT_SYMBOL vmlinux 0x0d494928 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type EXPORT_SYMBOL vmlinux 0x0d570a0e raw3270_request_reset -EXPORT_SYMBOL vmlinux 0x0d576e94 vfs_get_link -EXPORT_SYMBOL vmlinux 0x0d640e33 follow_down -EXPORT_SYMBOL vmlinux 0x0d6431e6 tcf_block_get -EXPORT_SYMBOL vmlinux 0x0d6eb67d param_ops_charp -EXPORT_SYMBOL vmlinux 0x0d72e7f5 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x0db9673e inode_query_iversion -EXPORT_SYMBOL vmlinux 0x0dba8dae component_match_add_release -EXPORT_SYMBOL vmlinux 0x0dc94a33 dquot_transfer -EXPORT_SYMBOL vmlinux 0x0df2a8f3 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x0df5120c xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x0e0041d8 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x0e1153aa pci_get_slot +EXPORT_SYMBOL vmlinux 0x0d7b36cd seq_dentry +EXPORT_SYMBOL vmlinux 0x0dbc0c8f fput +EXPORT_SYMBOL vmlinux 0x0dd1d876 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x0df94a71 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x0e07d382 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x0e0b28ba dst_discard_out +EXPORT_SYMBOL vmlinux 0x0e0d8473 truncate_setsize +EXPORT_SYMBOL vmlinux 0x0e15597a param_set_long EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1a9889 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x0e1b7f04 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x0e1ee435 _copy_from_user_key -EXPORT_SYMBOL vmlinux 0x0e215fa8 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x0e267997 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x0e2df52c tcf_block_put +EXPORT_SYMBOL vmlinux 0x0e3fb453 param_set_int +EXPORT_SYMBOL vmlinux 0x0e3fffd8 netdev_crit +EXPORT_SYMBOL vmlinux 0x0e49992c tcf_qevent_handle EXPORT_SYMBOL vmlinux 0x0e56b80a __SCK__tp_func_s390_cio_tsch -EXPORT_SYMBOL vmlinux 0x0e5f14aa jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x0e6c6b84 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x0e79a5b5 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x0e97bd3c flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea5f487 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ecb01ea setup_arg_pages +EXPORT_SYMBOL vmlinux 0x0ed70b16 pneigh_lookup EXPORT_SYMBOL vmlinux 0x0ee61a9b airq_iv_free +EXPORT_SYMBOL vmlinux 0x0ef242c1 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x0efb09bd jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x0efd3977 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0a47b0 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x0f151730 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f5a5d6c md_write_start -EXPORT_SYMBOL vmlinux 0x0f5ca080 folio_unlock +EXPORT_SYMBOL vmlinux 0x0f2bffa2 file_modified +EXPORT_SYMBOL vmlinux 0x0f30d738 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x0f3be511 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x0f45f258 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x0f4819be pci_iomap +EXPORT_SYMBOL vmlinux 0x0f5234c1 sock_set_mark EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9084ae input_flush_device -EXPORT_SYMBOL vmlinux 0x0f9fcacc input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x0fa8a51f security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x0fa893e1 drop_super EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc3af14 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x0fc427ca pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x0fcd830b disk_stack_limits -EXPORT_SYMBOL vmlinux 0x0fcf6dfb unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x0fc689a7 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x0fc7d051 input_get_keycode +EXPORT_SYMBOL vmlinux 0x0fd5c5b2 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fdad28f device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x0fef8dba ip_generic_getfrag EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x10088263 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x101b54ce pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x1019710b skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x10205625 tcp_req_err +EXPORT_SYMBOL vmlinux 0x102524ab dm_unregister_target EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x10364ea1 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x1039562f rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x103bafd6 down_read EXPORT_SYMBOL vmlinux 0x10497616 memweight -EXPORT_SYMBOL vmlinux 0x105e178e ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x10728c9f __d_drop +EXPORT_SYMBOL vmlinux 0x1073b15c __getblk_gfp +EXPORT_SYMBOL vmlinux 0x107410e9 dev_addr_mod EXPORT_SYMBOL vmlinux 0x10776fb9 xa_extract -EXPORT_SYMBOL vmlinux 0x107c4e3f tcp_mmap +EXPORT_SYMBOL vmlinux 0x107dceba vfs_ioctl EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1091544b eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x1095312c dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x10c10e68 inet6_bind -EXPORT_SYMBOL vmlinux 0x10c336e2 scsi_print_result +EXPORT_SYMBOL vmlinux 0x108501e0 inode_update_time +EXPORT_SYMBOL vmlinux 0x108ea928 mdiobus_write +EXPORT_SYMBOL vmlinux 0x10b54961 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10e120e2 __neigh_create +EXPORT_SYMBOL vmlinux 0x10e41a19 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10f769d2 tcf_exts_init_ex EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype EXPORT_SYMBOL vmlinux 0x112121f7 __traceiter_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0x1121322d napi_gro_flush -EXPORT_SYMBOL vmlinux 0x113efdc4 blkdev_put -EXPORT_SYMBOL vmlinux 0x114c8224 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x1163cda6 xp_free -EXPORT_SYMBOL vmlinux 0x116e8578 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x11325fd8 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x1160637e skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x11b145df folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0x11c24fa8 tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0x11e1272b tso_start +EXPORT_SYMBOL vmlinux 0x11727c65 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x117de45f bio_add_page +EXPORT_SYMBOL vmlinux 0x11840c0b tty_devnum +EXPORT_SYMBOL vmlinux 0x1185c126 pci_clear_master +EXPORT_SYMBOL vmlinux 0x11ab7d2e ip_getsockopt +EXPORT_SYMBOL vmlinux 0x11c6125b single_open +EXPORT_SYMBOL vmlinux 0x11c7913c security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x11dbc4c1 mr_dump EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11eb2a77 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x11f79699 dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0x11f8ad31 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x120b12f1 lookup_one_len +EXPORT_SYMBOL vmlinux 0x1201162c netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x12082cdb dev_get_mac_address EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x121ca5e8 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0x1222f3aa tcp_child_process +EXPORT_SYMBOL vmlinux 0x12106317 skb_copy_bits EXPORT_SYMBOL vmlinux 0x122c3a7e _printk -EXPORT_SYMBOL vmlinux 0x122e8df4 tty_unlock -EXPORT_SYMBOL vmlinux 0x1231fb5c dcb_getrewr_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0x12325bbb md_error EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x12450ab5 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x12469eb0 __cgroup_bpf_run_filter_sk EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x1251a12e console_mode -EXPORT_SYMBOL vmlinux 0x1261f5e4 _dev_info +EXPORT_SYMBOL vmlinux 0x12528831 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock -EXPORT_SYMBOL vmlinux 0x12651d70 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x12798491 genphy_restart_aneg EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x12844c18 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x128c1c93 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x12941e14 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x1281f4c1 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x128a1761 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x12b3af0a config_group_init_type_name EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e4a67d xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x12cd7c83 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x12cdf43b cdev_del +EXPORT_SYMBOL vmlinux 0x12d44c6b release_sock +EXPORT_SYMBOL vmlinux 0x12d9677a ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x12d97354 ethtool_aggregate_mac_stats +EXPORT_SYMBOL vmlinux 0x12e9dfae inode_init_owner +EXPORT_SYMBOL vmlinux 0x12ed086a file_path EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var EXPORT_SYMBOL vmlinux 0x12f8b235 raw3270_request_set_cmd +EXPORT_SYMBOL vmlinux 0x130627e5 phy_set_max_speed EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x13180931 iov_iter_init -EXPORT_SYMBOL vmlinux 0x131dfe7a netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x13543c7d has_capability_noaudit -EXPORT_SYMBOL vmlinux 0x1357b2df config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0x138fb7e1 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x13c7b725 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x1320cb2c xsk_tx_release +EXPORT_SYMBOL vmlinux 0x1339a7e5 xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0x133a26c2 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x134c8825 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x137cbb0e tty_unthrottle +EXPORT_SYMBOL vmlinux 0x13923d5b napi_build_skb +EXPORT_SYMBOL vmlinux 0x13991990 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x13bf3a77 mnt_set_expiry EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13d371d6 km_state_expired -EXPORT_SYMBOL vmlinux 0x13d497ea eth_validate_addr EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x13d929a0 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x13daede2 add_to_pipe -EXPORT_SYMBOL vmlinux 0x13e36f21 tty_write_room -EXPORT_SYMBOL vmlinux 0x13eaf06b dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x13ef3388 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x13f9540f set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x14182c60 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x141858f9 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x13e6602f pci_iomap_wc_range +EXPORT_SYMBOL vmlinux 0x13ec0ceb gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x13f50446 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x13feb5a6 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x141272e2 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x1416aff9 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x141789c2 consume_skb EXPORT_SYMBOL vmlinux 0x141903e6 ap_send -EXPORT_SYMBOL vmlinux 0x141b2737 fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x1422d185 set_groups -EXPORT_SYMBOL vmlinux 0x142efca6 copy_splice_read -EXPORT_SYMBOL vmlinux 0x144932b9 sys_copyarea -EXPORT_SYMBOL vmlinux 0x144c1e89 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x145731f9 kernel_accept +EXPORT_SYMBOL vmlinux 0x1423971d __bio_advance +EXPORT_SYMBOL vmlinux 0x144c23b2 pcim_iomap +EXPORT_SYMBOL vmlinux 0x14568615 xfrm_state_free EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146245fc xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1465bcb1 bdi_put -EXPORT_SYMBOL vmlinux 0x14759583 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x147a2d04 fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0x147a3f47 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x147bab00 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x147470a6 pci_select_bars EXPORT_SYMBOL vmlinux 0x147d7290 xor_block_xc -EXPORT_SYMBOL vmlinux 0x1489e7ce tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x14b3fb46 thaw_super -EXPORT_SYMBOL vmlinux 0x14b7458b pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x14a97425 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x14ad19f9 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x14ae5b7b tcp_ioctl EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14c8d6a4 tcp_disconnect EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14ec9293 seq_pad -EXPORT_SYMBOL vmlinux 0x14f0e58d mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x14f5b6fc scsi_host_busy +EXPORT_SYMBOL vmlinux 0x14d85375 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x14e68511 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x151ca534 is_subdir EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x152130e5 param_get_ullong EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x152ec524 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x152875dc dquot_set_dqblk EXPORT_SYMBOL vmlinux 0x1535c5a3 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x1539a59b sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x153e5acd simple_unlink +EXPORT_SYMBOL vmlinux 0x154642c1 cookie_timestamp_decode EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154ebbf2 pci_iomap_wc_range -EXPORT_SYMBOL vmlinux 0x1555e92e __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x1566603b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x154cf2da param_get_ullong +EXPORT_SYMBOL vmlinux 0x155950da napi_consume_skb +EXPORT_SYMBOL vmlinux 0x15671a7f unregister_shrinker EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x1593417e scsi_execute_cmd -EXPORT_SYMBOL vmlinux 0x1599db38 seq_release_private -EXPORT_SYMBOL vmlinux 0x15b45c51 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x15705af2 ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0x157d569d iov_iter_revert +EXPORT_SYMBOL vmlinux 0x159b92f4 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x15aecfd6 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x15b1113a __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x15b49bac vscnprintf EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x15bb3b05 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x15bbd1b3 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x15bd8fd3 dcb_getapp EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15cfb2b3 _find_first_zero_bit_le -EXPORT_SYMBOL vmlinux 0x15d1e0be freezing_slow_path -EXPORT_SYMBOL vmlinux 0x15d58992 tc_setup_cb_reoffload EXPORT_SYMBOL vmlinux 0x15d85a57 down_trylock -EXPORT_SYMBOL vmlinux 0x15ddc872 fb_find_mode -EXPORT_SYMBOL vmlinux 0x15e83ace ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x15d987a9 get_pgste +EXPORT_SYMBOL vmlinux 0x15e7bff1 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x15ea33fd kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x16049db3 __skb_pad +EXPORT_SYMBOL vmlinux 0x1608d552 fd_install +EXPORT_SYMBOL vmlinux 0x16161ba7 cdev_device_del +EXPORT_SYMBOL vmlinux 0x161926f6 vfs_unlink +EXPORT_SYMBOL vmlinux 0x161fa463 netif_set_tso_max_size EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x162a44e4 md_flush_request EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1647394e ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x1639900b posix_lock_file +EXPORT_SYMBOL vmlinux 0x1642207a neigh_direct_output +EXPORT_SYMBOL vmlinux 0x1648888e unregister_netdev +EXPORT_SYMBOL vmlinux 0x165a2246 fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0x165d15e2 down_interruptible -EXPORT_SYMBOL vmlinux 0x168f43c5 page_mapping -EXPORT_SYMBOL vmlinux 0x16a47d34 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x16a5aab6 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x16c0392a tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0x16c49442 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x16cf1402 phy_print_status -EXPORT_SYMBOL vmlinux 0x16ddc494 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x1660e865 bio_copy_data +EXPORT_SYMBOL vmlinux 0x16643d7c seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x16694052 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x166d7974 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x16a33fbd skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x16b45aa1 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x16d4942c pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16ec502e pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x16f661cb sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x17063a66 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x1714a5b5 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x172fbd16 get_task_cred -EXPORT_SYMBOL vmlinux 0x17433926 unregister_md_personality -EXPORT_SYMBOL vmlinux 0x174bc1cc debug_sprintf_view -EXPORT_SYMBOL vmlinux 0x1754fd9a phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0x1761c867 pps_register_source -EXPORT_SYMBOL vmlinux 0x176a04f2 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x1775b09d jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x17a86ab7 proc_symlink -EXPORT_SYMBOL vmlinux 0x1819871c gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x181afe51 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x1833dd40 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x16fd6527 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x17b7ba0b rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x17b8690f device_add_disk +EXPORT_SYMBOL vmlinux 0x17c4f1fd skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x18302296 vc_resize EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x183fc740 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x1850395e seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x185eb7ed genlmsg_put +EXPORT_SYMBOL vmlinux 0x186a51b8 bdi_put +EXPORT_SYMBOL vmlinux 0x187b84a9 sock_no_listen EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x189a3ca1 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x18967b93 skb_expand_head EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x18a089e5 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x18aeff05 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x189db6fc unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x18b83b07 con_is_visible EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate -EXPORT_SYMBOL vmlinux 0x18c016b4 mount_bdev -EXPORT_SYMBOL vmlinux 0x18c0987f generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x18c716ba pci_request_region -EXPORT_SYMBOL vmlinux 0x18dc7673 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x18c3fdb2 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x18d04d55 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x18d3c287 get_guest_storage_key EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e60c34 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x1909595c generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x1919ab97 skb_put -EXPORT_SYMBOL vmlinux 0x19220438 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x19385c80 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x193abdd8 dst_discard_out -EXPORT_SYMBOL vmlinux 0x194b7925 blk_rq_init -EXPORT_SYMBOL vmlinux 0x195ee73a mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x197399a2 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x18edf13c flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x18ee7406 sk_free +EXPORT_SYMBOL vmlinux 0x18f2bdc9 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x18fc278e free_task +EXPORT_SYMBOL vmlinux 0x192920b2 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x192d3f21 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x192fa510 d_genocide +EXPORT_SYMBOL vmlinux 0x194f71c5 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x197dd748 ww_mutex_trylock EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x1987c3fc netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0x199245df dev_uc_init +EXPORT_SYMBOL vmlinux 0x1999c643 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19ae9d52 stop_tty -EXPORT_SYMBOL vmlinux 0x19b561a4 param_ops_bool +EXPORT_SYMBOL vmlinux 0x19a6900f netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x19b7683c security_socket_socketpair EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bdbab0 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x19c5e77d phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x19ebd684 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x19f198e9 bio_free_pages +EXPORT_SYMBOL vmlinux 0x19c0c87e simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x19e1d6dd ccw_device_tm_start_timeout EXPORT_SYMBOL vmlinux 0x1a08d2ba VMALLOC_START -EXPORT_SYMBOL vmlinux 0x1a222d71 dm_table_event -EXPORT_SYMBOL vmlinux 0x1a26a93a dev_kfree_skb_any_reason -EXPORT_SYMBOL vmlinux 0x1a3e576a pci_set_master -EXPORT_SYMBOL vmlinux 0x1a5f337c noop_llseek -EXPORT_SYMBOL vmlinux 0x1a8017c5 reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x1a974e18 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x1a096648 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x1a1998ad __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x1a4bd74d pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1a9d4c00 set_page_writeback +EXPORT_SYMBOL vmlinux 0x1a9d2440 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x1aa7fb28 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0x1ab347ba inetdev_by_index -EXPORT_SYMBOL vmlinux 0x1abbdfee scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x1ac54800 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x1ad6af3a pcie_capability_clear_and_set_word_locked -EXPORT_SYMBOL vmlinux 0x1addecef d_lookup -EXPORT_SYMBOL vmlinux 0x1af9b1f0 mdiobus_read +EXPORT_SYMBOL vmlinux 0x1aaea1b8 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x1ab315be fc_mount +EXPORT_SYMBOL vmlinux 0x1abc3ece fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x1abef638 user_path_create +EXPORT_SYMBOL vmlinux 0x1ac40a32 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x1acf56d2 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x1ad37acc pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x1ad5a277 ilookup5 +EXPORT_SYMBOL vmlinux 0x1af92c2c get_tree_keyed EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b19ec0d __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x1b335af2 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x1b384ef6 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x1b427909 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x1b4581c2 generic_ro_fops EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b6dcdc2 input_set_keycode +EXPORT_SYMBOL vmlinux 0x1b63c8c9 _dev_emerg EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b799d73 param_get_uint -EXPORT_SYMBOL vmlinux 0x1b94c45e skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x1ba0221a dev_change_flags +EXPORT_SYMBOL vmlinux 0x1b7c42f9 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x1b956bd5 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x1b95f5b8 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x1ba4e52e bioset_init EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb949e4 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x1bbb76b0 dcache_readdir -EXPORT_SYMBOL vmlinux 0x1bbe67cf nf_log_trace -EXPORT_SYMBOL vmlinux 0x1bc9a446 phy_start -EXPORT_SYMBOL vmlinux 0x1bc9bbe4 single_release EXPORT_SYMBOL vmlinux 0x1bd241d6 dns_query -EXPORT_SYMBOL vmlinux 0x1bd4662f nf_log_set -EXPORT_SYMBOL vmlinux 0x1bd7af9f __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x1bdfa5f4 dma_resv_init -EXPORT_SYMBOL vmlinux 0x1beede85 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x1c04017a param_set_short -EXPORT_SYMBOL vmlinux 0x1c111570 dentry_create -EXPORT_SYMBOL vmlinux 0x1c3ff326 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x1c422688 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x1c4f1e5b md_finish_reshape -EXPORT_SYMBOL vmlinux 0x1c555d4f lookup_one -EXPORT_SYMBOL vmlinux 0x1c577d2f vfs_getattr +EXPORT_SYMBOL vmlinux 0x1bf623f4 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x1c0963f6 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x1c182095 padata_free_shell +EXPORT_SYMBOL vmlinux 0x1c63961d file_remove_privs EXPORT_SYMBOL vmlinux 0x1c65d1e3 ioremap_wt EXPORT_SYMBOL vmlinux 0x1c664434 __write_overflow_field -EXPORT_SYMBOL vmlinux 0x1c9292a3 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x1c82725b generic_update_time +EXPORT_SYMBOL vmlinux 0x1c8c40d9 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x1c8dd701 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x1c8e7bb4 d_move +EXPORT_SYMBOL vmlinux 0x1c91702a dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x1c977ffb scsi_done_direct +EXPORT_SYMBOL vmlinux 0x1c9e5013 tso_build_data EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cd5c8d6 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x1cd87dfb bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x1cdb61b3 crypto_sha3_update +EXPORT_SYMBOL vmlinux 0x1cd087ca udp_set_csum +EXPORT_SYMBOL vmlinux 0x1cd30814 lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0x1cd8a423 module_layout +EXPORT_SYMBOL vmlinux 0x1cdb9725 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x1ce26a63 zstd_flush_stream -EXPORT_SYMBOL vmlinux 0x1ce9a267 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x1ced5148 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x1cea5cdf blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x1cf4515d __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x1d216a6b mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x1d2c8f6c iov_iter_discard +EXPORT_SYMBOL vmlinux 0x1d24a72b inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce -EXPORT_SYMBOL vmlinux 0x1d428b53 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x1d449b90 dfltcc_can_deflate -EXPORT_SYMBOL vmlinux 0x1d544177 flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x1d5a941c flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x1d748c55 bdi_register -EXPORT_SYMBOL vmlinux 0x1d7dd577 neigh_destroy -EXPORT_SYMBOL vmlinux 0x1d921c27 vfs_get_tree -EXPORT_SYMBOL vmlinux 0x1d97837d eth_type_trans -EXPORT_SYMBOL vmlinux 0x1da7e426 ndisc_ns_create -EXPORT_SYMBOL vmlinux 0x1da9a087 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x1d44fd90 register_shrinker +EXPORT_SYMBOL vmlinux 0x1d87baff handshake_req_private +EXPORT_SYMBOL vmlinux 0x1d91ed41 vfs_rename +EXPORT_SYMBOL vmlinux 0x1d991bb0 address_space_init_once EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc -EXPORT_SYMBOL vmlinux 0x1db931f6 tso_build_data -EXPORT_SYMBOL vmlinux 0x1dc43e63 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dce04fb page_get_link EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd7351c tso_build_hdr EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de5127e kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x1de56c8b kset_unregister -EXPORT_SYMBOL vmlinux 0x1df4fda6 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x1df88e1a ram_aops +EXPORT_SYMBOL vmlinux 0x1df104fa blk_finish_plug +EXPORT_SYMBOL vmlinux 0x1df28b08 io_uring_destruct_scm +EXPORT_SYMBOL vmlinux 0x1dfed78b simple_transaction_get EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e1115e1 vfs_mknod -EXPORT_SYMBOL vmlinux 0x1e57298b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x1e0ccce0 param_ops_bint +EXPORT_SYMBOL vmlinux 0x1e22865e misc_register +EXPORT_SYMBOL vmlinux 0x1e39bee3 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0x1e63fe69 vcalloc -EXPORT_SYMBOL vmlinux 0x1e6ad964 dev_add_pack -EXPORT_SYMBOL vmlinux 0x1e6b1a9c sync_filesystem +EXPORT_SYMBOL vmlinux 0x1e65e935 cont_write_begin EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e6f2b87 input_get_keycode +EXPORT_SYMBOL vmlinux 0x1e6efbb8 setattr_prepare +EXPORT_SYMBOL vmlinux 0x1e78a044 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic -EXPORT_SYMBOL vmlinux 0x1e987acc tty_port_close -EXPORT_SYMBOL vmlinux 0x1e9a2e65 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x1e9c4faa validate_slab_cache EXPORT_SYMBOL vmlinux 0x1e9c5bab dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1eb25eb7 mpage_writepages -EXPORT_SYMBOL vmlinux 0x1ec099a3 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x1ec18e69 vfs_mkobj -EXPORT_SYMBOL vmlinux 0x1ec3b9ae con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x1ec98be8 bio_split +EXPORT_SYMBOL vmlinux 0x1ea782d1 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x1eac28ae fb_set_suspend +EXPORT_SYMBOL vmlinux 0x1ebf678b netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x1ec54131 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x1eca69ab fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x1ed340df __nlmsg_put EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1ed92d13 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1ef04785 pid_task -EXPORT_SYMBOL vmlinux 0x1ef9ccdd pci_write_config_word -EXPORT_SYMBOL vmlinux 0x1f2c376b mount_single -EXPORT_SYMBOL vmlinux 0x1f4b19f3 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x1f4c5903 skb_append -EXPORT_SYMBOL vmlinux 0x1f7045b6 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x1f7df503 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x1ef64bd8 kern_path +EXPORT_SYMBOL vmlinux 0x1f1cb59c elv_rb_add +EXPORT_SYMBOL vmlinux 0x1f3686c0 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1f3a6322 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x1f50ddce devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x1f5327ec netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1f582616 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x1f71ac4a inet_stream_ops +EXPORT_SYMBOL vmlinux 0x1f7dd2e6 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x1f808f05 simple_open EXPORT_SYMBOL vmlinux 0x1f95657b mempool_resize -EXPORT_SYMBOL vmlinux 0x1f977094 from_kgid -EXPORT_SYMBOL vmlinux 0x1f97b6a6 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x1f99f460 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x1f9c396f debug_register +EXPORT_SYMBOL vmlinux 0x1fb498fb tty_hung_up_p EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fcb1fae netif_receive_skb EXPORT_SYMBOL vmlinux 0x1fcb720d tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x1fcf2778 current_time +EXPORT_SYMBOL vmlinux 0x1fd805fe tty_unlock EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 -EXPORT_SYMBOL vmlinux 0x1fdc5aff devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x1feb076e scsi_dma_map +EXPORT_SYMBOL vmlinux 0x1ff347c8 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x1ff43e9f security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x1ff9a920 blk_mq_start_request EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x20050ce6 unix_gc_lock EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200ffc1c napi_schedule_prep EXPORT_SYMBOL vmlinux 0x2014a246 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x201cd9f8 bio_init_clone -EXPORT_SYMBOL vmlinux 0x203c461a netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x2028a2e4 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x203198bc tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x2034ebc2 __break_lease +EXPORT_SYMBOL vmlinux 0x20385e3f vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x203cbd94 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c34f1 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x205349f3 sock_set_priority +EXPORT_SYMBOL vmlinux 0x20502c76 input_set_max_poll_interval EXPORT_SYMBOL vmlinux 0x20592c6f arch_write_lock_wait -EXPORT_SYMBOL vmlinux 0x20822159 xfrm_input -EXPORT_SYMBOL vmlinux 0x20865ade unregister_key_type -EXPORT_SYMBOL vmlinux 0x2089c1e3 dst_alloc +EXPORT_SYMBOL vmlinux 0x205b1c10 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x20666667 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x20670aa9 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x20797831 grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload -EXPORT_SYMBOL vmlinux 0x2098b1c4 pci_iomap_range EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20c2ecb9 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x20c4ca8f dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x20cf7056 unregister_netdev +EXPORT_SYMBOL vmlinux 0x20bd9fbf page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x20c81337 poll_freewait +EXPORT_SYMBOL vmlinux 0x20cd9721 input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20d8c570 blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x20ff6355 filemap_range_has_page -EXPORT_SYMBOL vmlinux 0x211c9724 sk_capable -EXPORT_SYMBOL vmlinux 0x211f8605 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x21360122 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x2179273e vfs_link -EXPORT_SYMBOL vmlinux 0x217b9064 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x2182a74d unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x2186d44e locks_delete_block -EXPORT_SYMBOL vmlinux 0x2189a725 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0x2189d27f scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x20fe6923 del_gendisk +EXPORT_SYMBOL vmlinux 0x211a8170 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x213c7ee8 ap_queue_message +EXPORT_SYMBOL vmlinux 0x21489b3f follow_down_one +EXPORT_SYMBOL vmlinux 0x2153fdbc dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x215a8fa9 scsi_add_device +EXPORT_SYMBOL vmlinux 0x215ca173 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x21669ff3 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x217b9f41 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x218b75e9 iget_failed EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21ac98b1 set_blocksize +EXPORT_SYMBOL vmlinux 0x21983721 set_disk_ro +EXPORT_SYMBOL vmlinux 0x219e5bac block_write_end +EXPORT_SYMBOL vmlinux 0x219f70c6 sg_miter_next EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21c584ed mark_info_dirty -EXPORT_SYMBOL vmlinux 0x21d719ca blk_integrity_register +EXPORT_SYMBOL vmlinux 0x21c88db5 filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0x21d2a411 iov_iter_alignment EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e180ea security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x21e8aef4 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21ea83bc zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x21ed244a dst_release -EXPORT_SYMBOL vmlinux 0x21ff76f1 inet_getname -EXPORT_SYMBOL vmlinux 0x220d5a62 pci_enable_device +EXPORT_SYMBOL vmlinux 0x21f56093 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x2200e7e0 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x2205fce3 inet_protos +EXPORT_SYMBOL vmlinux 0x220cbc31 dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure EXPORT_SYMBOL vmlinux 0x221567e6 __traceiter_s390_cio_tpi -EXPORT_SYMBOL vmlinux 0x221abea4 scsi_host_put +EXPORT_SYMBOL vmlinux 0x2223e56c sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x222837c2 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223b2168 dma_pool_create -EXPORT_SYMBOL vmlinux 0x22535b94 d_drop -EXPORT_SYMBOL vmlinux 0x22571446 thaw_bdev -EXPORT_SYMBOL vmlinux 0x226c5023 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0x22713786 pci_match_id -EXPORT_SYMBOL vmlinux 0x227ba639 dev_add_offload -EXPORT_SYMBOL vmlinux 0x2291e314 blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x22955884 seq_open_private -EXPORT_SYMBOL vmlinux 0x22a84baa inode_to_bdi -EXPORT_SYMBOL vmlinux 0x22adac1d phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x2246c511 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x22694647 getname_kernel +EXPORT_SYMBOL vmlinux 0x227218b4 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x228a8173 d_alloc +EXPORT_SYMBOL vmlinux 0x229b5584 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x22ac4f59 ip6_err_gen_icmpv6_unreach EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bd887c get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x22d4fc26 find_vma_intersection -EXPORT_SYMBOL vmlinux 0x22f06003 genl_register_family -EXPORT_SYMBOL vmlinux 0x22fc1e96 free_netdev -EXPORT_SYMBOL vmlinux 0x231051f2 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0x2318638a netdev_printk -EXPORT_SYMBOL vmlinux 0x2322db25 arp_tbl -EXPORT_SYMBOL vmlinux 0x2327243d param_get_string -EXPORT_SYMBOL vmlinux 0x233946c6 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x23415759 sk_alloc -EXPORT_SYMBOL vmlinux 0x2353af49 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x22c864f7 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x22d71ecf md_write_inc +EXPORT_SYMBOL vmlinux 0x22dd2cdc path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x22e38c91 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x22e97e2d sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x23131862 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x232b181e wake_up_process +EXPORT_SYMBOL vmlinux 0x233a6339 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x233bf98c vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x2361ce0d cdev_device_add EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy -EXPORT_SYMBOL vmlinux 0x237512c6 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x237adc6a __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x237cd20f validate_slab_cache -EXPORT_SYMBOL vmlinux 0x23846617 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x238ddff5 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x237b3c45 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x238b9bca __remove_inode_hash EXPORT_SYMBOL vmlinux 0x23924a48 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x23a02fb4 set_disk_ro -EXPORT_SYMBOL vmlinux 0x23ac9da1 dev_kfree_skb_irq_reason -EXPORT_SYMBOL vmlinux 0x23b503b7 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x2392ab5b unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x23b1ba7e pci_iounmap +EXPORT_SYMBOL vmlinux 0x23b71f10 napi_complete_done EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23c6768d scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x23ddd74a dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x23e259ad security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x23bc851f hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x23bf8d0a buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x23c8d76a input_reset_device +EXPORT_SYMBOL vmlinux 0x23ecf7bf sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count -EXPORT_SYMBOL vmlinux 0x23fcf0b1 genphy_read_lpa EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24014942 generic_block_bmap EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register -EXPORT_SYMBOL vmlinux 0x243fc83e skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0x2446412b devm_request_resource +EXPORT_SYMBOL vmlinux 0x2436dd76 noop_fsync +EXPORT_SYMBOL vmlinux 0x2441ab13 class3270 +EXPORT_SYMBOL vmlinux 0x2443aa46 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x244e756b udp_gro_complete EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x2477e930 param_set_int +EXPORT_SYMBOL vmlinux 0x246a636f md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x246fde1c xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x24855f80 tcf_unregister_action EXPORT_SYMBOL vmlinux 0x24962712 lowcore_ptr -EXPORT_SYMBOL vmlinux 0x24988173 tcp_md5_key_copy -EXPORT_SYMBOL vmlinux 0x249c7dbe generic_file_open -EXPORT_SYMBOL vmlinux 0x249eb116 tty_lock +EXPORT_SYMBOL vmlinux 0x2496b6e2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x24b6171b pps_unregister_source EXPORT_SYMBOL vmlinux 0x24b8528f mutex_trylock EXPORT_SYMBOL vmlinux 0x24bc53b0 __traceiter_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0x24c20d3b simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x24c6f599 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x24ca07b0 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x24cd4de0 kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0x24d01731 inet_release EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24dd73a7 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x24dfe4d9 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x24d5345a sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x24d552a7 param_get_string +EXPORT_SYMBOL vmlinux 0x24d7eaab generic_perform_write EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24e66dab inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x24e29905 param_array_ops +EXPORT_SYMBOL vmlinux 0x24eb3a89 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x24eec383 page_readlink EXPORT_SYMBOL vmlinux 0x24f4173f kobject_get -EXPORT_SYMBOL vmlinux 0x24fd8abe setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0x24fe8e1c skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x2521e550 con_is_bound +EXPORT_SYMBOL vmlinux 0x24fac3c5 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x2513874c register_quota_format EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x252c26f3 debug_exception_common EXPORT_SYMBOL vmlinux 0x252cf375 scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0x252fe7e4 down_read_interruptible -EXPORT_SYMBOL vmlinux 0x253b6105 sk_stream_error EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x256e1186 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x256dbe32 configfs_depend_item EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25918896 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x25957f4a pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x2598c6c0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x259b95df ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x25baa0d5 cdrom_release -EXPORT_SYMBOL vmlinux 0x25e9b0fc tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x259f5d7b unlock_new_inode +EXPORT_SYMBOL vmlinux 0x25b15120 tty_kref_put +EXPORT_SYMBOL vmlinux 0x25b6d406 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x25d12c10 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x25d932fc __ip_options_compile +EXPORT_SYMBOL vmlinux 0x25db9106 netdev_update_features +EXPORT_SYMBOL vmlinux 0x25e95efa sock_no_shutdown EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen -EXPORT_SYMBOL vmlinux 0x25f96b32 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x25fb7db5 make_kgid -EXPORT_SYMBOL vmlinux 0x26005804 inode_update_time +EXPORT_SYMBOL vmlinux 0x25efc18d kill_pid +EXPORT_SYMBOL vmlinux 0x2606d35a tcp_gro_complete EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table EXPORT_SYMBOL vmlinux 0x261c30c5 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x262a8f83 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x262b18ec page_pool_unlink_napi +EXPORT_SYMBOL vmlinux 0x263b40d4 input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 -EXPORT_SYMBOL vmlinux 0x266cf5cd block_truncate_page +EXPORT_SYMBOL vmlinux 0x2648ef14 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x26615516 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x26767608 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x267c955d xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2685e1e4 set_posix_acl EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x2690b0b9 generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure -EXPORT_SYMBOL vmlinux 0x26c0fdd3 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x26d105bc napi_gro_receive +EXPORT_SYMBOL vmlinux 0x26a64811 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x26b3007f simple_link +EXPORT_SYMBOL vmlinux 0x26d1f71e mpage_read_folio +EXPORT_SYMBOL vmlinux 0x26d8d609 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x26e07640 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x26e1290f icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26ed7ffa netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x26f62e3a tcp_splice_read +EXPORT_SYMBOL vmlinux 0x26ecbd05 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x26eec983 kernel_accept +EXPORT_SYMBOL vmlinux 0x26f01b2b __folio_put EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x271b353f pci_request_regions -EXPORT_SYMBOL vmlinux 0x27247334 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x27236894 file_ns_capable EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x27439eeb flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x2736c3c2 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x27405f79 fb_set_var +EXPORT_SYMBOL vmlinux 0x27461aea module_put EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x27571dfd tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x2758d862 fasync_helper EXPORT_SYMBOL vmlinux 0x2759f2bf radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x275c24a7 kvfree_sensitive EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x2760969b sync_blockdev_range -EXPORT_SYMBOL vmlinux 0x27650308 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x276b0e39 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x277362e5 get_inode_acl EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string EXPORT_SYMBOL vmlinux 0x277d4035 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x277ec8ef vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x277e9f7f locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27951d0b tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x2797fb6d register_quota_format -EXPORT_SYMBOL vmlinux 0x279fa5f3 __do_once_done +EXPORT_SYMBOL vmlinux 0x278fa058 input_set_abs_params EXPORT_SYMBOL vmlinux 0x27a81f84 nla_reserve_64bit EXPORT_SYMBOL vmlinux 0x27a8f51b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x27ab6a66 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x27b1a497 bmap EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x27c50a13 phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x27ccc580 phy_start_aneg EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d4716c __bh_read_batch -EXPORT_SYMBOL vmlinux 0x27e82df4 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x27e0a04e send_sig_mceerr EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg -EXPORT_SYMBOL vmlinux 0x27f5f314 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x2804fff5 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x28098454 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x28119c98 vfs_create -EXPORT_SYMBOL vmlinux 0x2815e4e8 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x28077022 inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281c8485 qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0x281e4658 get_tree_single -EXPORT_SYMBOL vmlinux 0x28270848 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x2821b0fc flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x282c7e12 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x2837398b jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0x28378917 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x28544188 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x2857a70c folio_wait_bit -EXPORT_SYMBOL vmlinux 0x28641046 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x28500b4c dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x286a3661 airq_iv_scan -EXPORT_SYMBOL vmlinux 0x286f4eb3 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x2872d4e1 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287c1879 eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x28864fef __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x28d74034 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x28a4fe27 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x28bf4824 tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0x28bf8e0c pcie_set_mps +EXPORT_SYMBOL vmlinux 0x28cf2ce6 pci_disable_device +EXPORT_SYMBOL vmlinux 0x28d29fc9 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x28dccae0 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x28e750da pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x28f264d7 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x28f8c8c5 fd_install EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x29168bd5 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x2924659d dquot_acquire -EXPORT_SYMBOL vmlinux 0x29364c39 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x28fbcb8e sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2924dd3e inet_accept +EXPORT_SYMBOL vmlinux 0x29321342 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x2938eab1 netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap -EXPORT_SYMBOL vmlinux 0x294cca60 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x2946aa01 module_refcount +EXPORT_SYMBOL vmlinux 0x294fc3a4 tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed +EXPORT_SYMBOL vmlinux 0x295d3c09 __alloc_pages EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2974aa00 dev_mc_init +EXPORT_SYMBOL vmlinux 0x2961e4e1 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page -EXPORT_SYMBOL vmlinux 0x297de711 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x297f42d5 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x29836013 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0x298caf02 xattr_supports_user_prefix -EXPORT_SYMBOL vmlinux 0x29a760f9 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x29cc2059 __icmp_send +EXPORT_SYMBOL vmlinux 0x298a1f6f dev_mc_add +EXPORT_SYMBOL vmlinux 0x29a426f0 bio_init_clone +EXPORT_SYMBOL vmlinux 0x29ad6ff7 __netif_schedule +EXPORT_SYMBOL vmlinux 0x29bd5dbd nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x29cadc9b rtnl_unicast EXPORT_SYMBOL vmlinux 0x29d78b59 kset_register -EXPORT_SYMBOL vmlinux 0x29fe3669 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x2a003ac8 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x2a0562cc dst_destroy +EXPORT_SYMBOL vmlinux 0x2a178bd2 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x2a19dbb0 filemap_get_folios_tag EXPORT_SYMBOL vmlinux 0x2a23be62 dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x2a2e0b4d bio_uninit +EXPORT_SYMBOL vmlinux 0x2a37dff9 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x2a409c4a skb_append EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init -EXPORT_SYMBOL vmlinux 0x2a45e4f3 I_BDEV -EXPORT_SYMBOL vmlinux 0x2a537295 netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a8563de clear_nlink -EXPORT_SYMBOL vmlinux 0x2a90269a register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x2ae91877 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x2aef7d38 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x2af17623 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x2a727a74 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x2a8d5b0e jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x2ac0e00c filp_close +EXPORT_SYMBOL vmlinux 0x2aca6f9e dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x2af3f454 ssch -EXPORT_SYMBOL vmlinux 0x2afb8a41 neigh_lookup -EXPORT_SYMBOL vmlinux 0x2b436b36 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x2af82c65 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x2b21f604 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x2b3fdbfd vfs_readlink +EXPORT_SYMBOL vmlinux 0x2b41f060 filemap_map_pages EXPORT_SYMBOL vmlinux 0x2b5ecbc6 __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x2b726c45 jbd2_journal_invalidate_folio -EXPORT_SYMBOL vmlinux 0x2b75e119 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x2b862936 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x2b873ae1 eth_header_parse +EXPORT_SYMBOL vmlinux 0x2b72b561 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x2b95720a mod_zone_page_state EXPORT_SYMBOL vmlinux 0x2b96ad05 __nla_put -EXPORT_SYMBOL vmlinux 0x2b9c73dc __lock_buffer +EXPORT_SYMBOL vmlinux 0x2b9a725d genphy_c45_eee_is_active EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2bb6590a tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x2bab67d1 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x2bbe76f4 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x2bc1fecd mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x2bf0402d rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x2bf89968 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x2bd8fd1e unregister_binfmt +EXPORT_SYMBOL vmlinux 0x2bed5152 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x2bf77866 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x2c042ec7 __bforget +EXPORT_SYMBOL vmlinux 0x2c062ede scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x2c0b35ee key_link +EXPORT_SYMBOL vmlinux 0x2c1af8b7 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x2c22a200 __traceiter_module_get EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c4882c6 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x2c6ef082 vfs_setpos -EXPORT_SYMBOL vmlinux 0x2c745134 nf_hook_slow -EXPORT_SYMBOL vmlinux 0x2c77b3d8 nf_log_register +EXPORT_SYMBOL vmlinux 0x2c3214e0 ap_get_qdev +EXPORT_SYMBOL vmlinux 0x2c393f69 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x2c5d668e pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x2c6d7d02 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x2c8149af vlan_vid_del EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8db502 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x2c9889ed iterate_dir -EXPORT_SYMBOL vmlinux 0x2cbc9565 tty_port_open +EXPORT_SYMBOL vmlinux 0x2c876c00 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x2c948a39 config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x2cbd23af trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x2cbe1b0e netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x2cc4d6a4 sock_wfree -EXPORT_SYMBOL vmlinux 0x2ccb9b1d __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x2ccbc616 ip_frag_next EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cd6e500 tcp_peek_len -EXPORT_SYMBOL vmlinux 0x2cde5bc4 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x2ce1cea8 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x2cdeef3a tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x2cf442f7 debug_unregister EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2d0ed8b0 simple_open +EXPORT_SYMBOL vmlinux 0x2d0c6a2f phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x2d115a00 __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d1c673d inet_sk_get_local_port_range -EXPORT_SYMBOL vmlinux 0x2d1eef52 write_cache_pages -EXPORT_SYMBOL vmlinux 0x2d2e7f11 inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3b2c12 skb_find_text EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d51affb device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x2d6e4d7b inode_needs_sync +EXPORT_SYMBOL vmlinux 0x2d60dd23 __devm_release_region +EXPORT_SYMBOL vmlinux 0x2d6aec4a unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x2d79d0f3 kbd_alloc +EXPORT_SYMBOL vmlinux 0x2d7ada4f input_mt_init_slots EXPORT_SYMBOL vmlinux 0x2d832cbf utf8_casefold -EXPORT_SYMBOL vmlinux 0x2d983787 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x2d92f619 netpoll_parse_options EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da0bbae sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x2db545ba __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x2db93bf5 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x2dc9342c flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0x2dca2bac request_key_rcu -EXPORT_SYMBOL vmlinux 0x2dd615f1 mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x2dd74c8d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x2da5d345 key_invalidate +EXPORT_SYMBOL vmlinux 0x2da6c69d sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x2da81e90 d_add +EXPORT_SYMBOL vmlinux 0x2dbe644e alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x2dd128b3 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x2dd7b4f2 dev_set_allmulti EXPORT_SYMBOL vmlinux 0x2ddb834b __xa_alloc +EXPORT_SYMBOL vmlinux 0x2ddd2e28 scsi_is_target_device EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de43f15 __alloc_pages -EXPORT_SYMBOL vmlinux 0x2e0ae769 folio_mark_dirty -EXPORT_SYMBOL vmlinux 0x2e2a3154 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x2de593aa padata_alloc +EXPORT_SYMBOL vmlinux 0x2e1355e6 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x2e2867ec debug_register_view +EXPORT_SYMBOL vmlinux 0x2e2a4284 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x2e2f7e4f blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0x2e3c5950 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x2e3ca46a pci_enable_msi EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2ea49db5 mod_node_page_state -EXPORT_SYMBOL vmlinux 0x2ead2652 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x2eae9f36 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x2e7fd408 vfs_create +EXPORT_SYMBOL vmlinux 0x2e8e4177 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x2eb20933 register_key_type EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ed11b5a textsearch_prepare +EXPORT_SYMBOL vmlinux 0x2ed528a0 eth_header EXPORT_SYMBOL vmlinux 0x2ed67d13 raw3270_start_request EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2ef5ddee invalidate_disk EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f1eeb38 cdev_del +EXPORT_SYMBOL vmlinux 0x2f1d5fcd make_kgid EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f35df2d truncate_setsize -EXPORT_SYMBOL vmlinux 0x2f409399 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x2f40de4f inode_init_once -EXPORT_SYMBOL vmlinux 0x2f41064a blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x2f2ed8d1 ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0x2f388064 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x2f495edb netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x2f4aaca7 freeze_bdev +EXPORT_SYMBOL vmlinux 0x2f4f741c dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x2f5629a5 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x2f5d2263 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x2f5d259f blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x2f641977 raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0x2f6928df proc_create_data +EXPORT_SYMBOL vmlinux 0x2f71165b netdev_printk EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f86981a register_cdrom -EXPORT_SYMBOL vmlinux 0x2f9022c5 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x2fa2c39f tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x2fa2cf2d netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp -EXPORT_SYMBOL vmlinux 0x2fa9da98 tcf_classify -EXPORT_SYMBOL vmlinux 0x2fad8297 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x2fbffc41 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x2fd05f13 xfrm_lookup EXPORT_SYMBOL vmlinux 0x2fd09944 blake2s_update -EXPORT_SYMBOL vmlinux 0x2fd6b926 debug_unregister +EXPORT_SYMBOL vmlinux 0x2fd65abc crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x2fd82514 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fed3dcb __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower EXPORT_SYMBOL vmlinux 0x300d6be4 __irq_regs -EXPORT_SYMBOL vmlinux 0x30195e9b dev_get_by_index +EXPORT_SYMBOL vmlinux 0x3014e831 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x3025df1c con_is_bound +EXPORT_SYMBOL vmlinux 0x30362c63 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x30386504 kill_fasync +EXPORT_SYMBOL vmlinux 0x303de363 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x303e1f12 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x304844c1 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x3062ab0b unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3095c3a8 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a731b9 __ip_dev_find EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30ba20ba __pci_register_driver -EXPORT_SYMBOL vmlinux 0x30bafd63 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x30e08d54 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x30e0dcbe ccw_device_clear_options -EXPORT_SYMBOL vmlinux 0x30f781b9 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x30fe427e jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x311df502 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x30afd6e7 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x3102be0a tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x310d8475 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x31358696 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x3140db80 netdev_features_change +EXPORT_SYMBOL vmlinux 0x3147cd27 dquot_quota_on_mount EXPORT_SYMBOL vmlinux 0x31500158 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x315f9d93 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x316bd2c7 set_bh_page -EXPORT_SYMBOL vmlinux 0x319d5b7c netdev_emerg -EXPORT_SYMBOL vmlinux 0x31a6d2aa __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x31b6a149 padata_alloc_shell -EXPORT_SYMBOL vmlinux 0x31c92812 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x31d223b1 page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0x31e657e0 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x315d6a0a sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x315e138b __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x315e53d9 finalize_exec +EXPORT_SYMBOL vmlinux 0x3175e6b3 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x317bdf40 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x3193d829 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x31a54dcc reuseport_alloc +EXPORT_SYMBOL vmlinux 0x31a71622 crypto_sha3_init +EXPORT_SYMBOL vmlinux 0x31bd0046 unregister_key_type +EXPORT_SYMBOL vmlinux 0x31c4d2ac nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x31d01b07 seq_lseek EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update -EXPORT_SYMBOL vmlinux 0x31ec7a59 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x31f9bc9a fs_param_is_path -EXPORT_SYMBOL vmlinux 0x31fcd2d2 dqget -EXPORT_SYMBOL vmlinux 0x3207ae15 redraw_screen +EXPORT_SYMBOL vmlinux 0x3203718f inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x320d4c82 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x3219196b devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset -EXPORT_SYMBOL vmlinux 0x323fdc5a no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0x3244e36b seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x324e849d xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x32725554 iterate_fd -EXPORT_SYMBOL vmlinux 0x3278dcc2 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x32249eda set_anon_super +EXPORT_SYMBOL vmlinux 0x3236d1bf kthread_stop +EXPORT_SYMBOL vmlinux 0x323bce5e udp_ioctl +EXPORT_SYMBOL vmlinux 0x32408d0d inet_add_offload +EXPORT_SYMBOL vmlinux 0x324ed752 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x3260d769 neigh_update +EXPORT_SYMBOL vmlinux 0x326934f4 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x3272c2dd pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x327a6b53 ap_flush_queue EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3293f5ba xfrm_init_state -EXPORT_SYMBOL vmlinux 0x32943a80 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x32aabe91 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0x32af3d2a t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x32afb0ad end_page_writeback -EXPORT_SYMBOL vmlinux 0x32b46ea7 __block_write_full_folio -EXPORT_SYMBOL vmlinux 0x32c30f42 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x3286b483 sk_capable +EXPORT_SYMBOL vmlinux 0x329051ae dec_node_page_state +EXPORT_SYMBOL vmlinux 0x32952c50 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x32a01b6b tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x32a7b8fa bio_split_to_limits EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32e1cbdb cdev_device_add -EXPORT_SYMBOL vmlinux 0x32e33d9a tty_port_init -EXPORT_SYMBOL vmlinux 0x3307cbb7 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x32d61edc phy_start +EXPORT_SYMBOL vmlinux 0x32f2e612 xfrm_trans_queue EXPORT_SYMBOL vmlinux 0x331de0b9 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x33232c8b softnet_data -EXPORT_SYMBOL vmlinux 0x332f04be fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x332fa38c filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0x333126f7 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x334452f3 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0x33457b5a phy_config_aneg -EXPORT_SYMBOL vmlinux 0x334e6967 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x332f7ffc scsicam_bios_param EXPORT_SYMBOL vmlinux 0x33569e6f nla_put_64bit -EXPORT_SYMBOL vmlinux 0x335b9ea1 vm_mmap +EXPORT_SYMBOL vmlinux 0x33628844 pci_find_next_bus EXPORT_SYMBOL vmlinux 0x3362a5ac udp_table -EXPORT_SYMBOL vmlinux 0x336b5c2b pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x337818a7 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x337fb3d7 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x338259b4 pipe_lock -EXPORT_SYMBOL vmlinux 0x339369ea tso_build_hdr -EXPORT_SYMBOL vmlinux 0x33976a23 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x33c299ed ap_driver_register -EXPORT_SYMBOL vmlinux 0x33ca35e9 __breadahead -EXPORT_SYMBOL vmlinux 0x33db3cab netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x338e24ff dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x33c222e4 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x33dca2ec dev_set_mtu +EXPORT_SYMBOL vmlinux 0x33e448bb trace_event_printf +EXPORT_SYMBOL vmlinux 0x33ebd7c0 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x33edead8 fb_prepare_logo EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 EXPORT_SYMBOL vmlinux 0x33fa677f rename_lock -EXPORT_SYMBOL vmlinux 0x33fbca89 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x3401be59 submit_bio -EXPORT_SYMBOL vmlinux 0x3403324c sock_no_mmap -EXPORT_SYMBOL vmlinux 0x341152c2 bio_copy_data -EXPORT_SYMBOL vmlinux 0x34363fcd genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x34480ffe seq_write +EXPORT_SYMBOL vmlinux 0x341578b8 sget +EXPORT_SYMBOL vmlinux 0x34197059 d_path +EXPORT_SYMBOL vmlinux 0x342317c3 mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0x342625ba dev_add_offload +EXPORT_SYMBOL vmlinux 0x343c8222 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x3441c2a1 pskb_extract EXPORT_SYMBOL vmlinux 0x344b207f security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x345937c6 finish_swait -EXPORT_SYMBOL vmlinux 0x347c9c1e udp_set_csum +EXPORT_SYMBOL vmlinux 0x3461c156 genphy_suspend +EXPORT_SYMBOL vmlinux 0x3462f8c6 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x346537b7 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x347892d5 tcf_get_next_proto EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x34ac5a21 remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x34aee455 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x34b190cf kthread_create_worker +EXPORT_SYMBOL vmlinux 0x34b27398 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x34b39688 dump_page +EXPORT_SYMBOL vmlinux 0x34c58b91 kmalloc_caches EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34e8be3a block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x34d0d621 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x34d19b68 ccw_device_halt +EXPORT_SYMBOL vmlinux 0x34f0e92e fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34ff6d8c get_cached_acl +EXPORT_SYMBOL vmlinux 0x34f7493a __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x350656e4 __tracepoint_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x351033a5 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x3512d2af mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x3516dafc jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3551ff75 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x355f7e9b cdev_set_parent -EXPORT_SYMBOL vmlinux 0x35608248 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x35783772 fasync_helper -EXPORT_SYMBOL vmlinux 0x3578e224 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x358aa636 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x351d94bd simple_fill_super +EXPORT_SYMBOL vmlinux 0x353aa363 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x354add3f tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x3564894f netdev_err +EXPORT_SYMBOL vmlinux 0x3584a43c cdrom_check_events EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35c574ca phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x35d1e9cd fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x35a98e69 generic_write_end +EXPORT_SYMBOL vmlinux 0x35b6af08 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x35c10021 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x35d7c336 dev_uc_init EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier -EXPORT_SYMBOL vmlinux 0x36081816 flow_rule_match_l2tpv3 -EXPORT_SYMBOL vmlinux 0x360d4d91 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x362a632e unregister_service_level -EXPORT_SYMBOL vmlinux 0x36380ffe proc_mkdir -EXPORT_SYMBOL vmlinux 0x3654f163 register_key_type +EXPORT_SYMBOL vmlinux 0x36130484 __brelse +EXPORT_SYMBOL vmlinux 0x3616d938 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x36190c24 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x3659e626 unregister_console EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365c0ca0 sock_cmsg_send EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x365f6c33 noop_qdisc EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init -EXPORT_SYMBOL vmlinux 0x366dc5a7 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x3679d823 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x368692be scsi_host_get -EXPORT_SYMBOL vmlinux 0x36d8d2fa seq_file_path -EXPORT_SYMBOL vmlinux 0x36e221d6 udp_ioctl +EXPORT_SYMBOL vmlinux 0x366e7c57 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x369b6bb1 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x36bc3bb5 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x36cbe2d6 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x36e7082f mtree_store_range -EXPORT_SYMBOL vmlinux 0x36f1b22d __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x37005944 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x3700dd9f filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x3706f44a __filemap_get_folio EXPORT_SYMBOL vmlinux 0x370756ff bitmap_print_bitmask_to_buf -EXPORT_SYMBOL vmlinux 0x3708022e io_uring_destruct_scm -EXPORT_SYMBOL vmlinux 0x3712e954 inode_insert5 -EXPORT_SYMBOL vmlinux 0x37167b35 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x372ece9b xp_can_alloc EXPORT_SYMBOL vmlinux 0x3736d025 down_read_killable +EXPORT_SYMBOL vmlinux 0x373cc84d __alloc_skb EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3753e893 iov_iter_alignment EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x37580536 bio_add_page +EXPORT_SYMBOL vmlinux 0x37577f44 genphy_update_link EXPORT_SYMBOL vmlinux 0x375ac910 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0x376a5684 generic_fillattr -EXPORT_SYMBOL vmlinux 0x377e6034 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x375fcfdb skb_unlink +EXPORT_SYMBOL vmlinux 0x37a6e440 folio_unlock +EXPORT_SYMBOL vmlinux 0x37b00fe1 scm_detach_fds EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37cc1723 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x37d96a80 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x37c46d5e param_set_ullong +EXPORT_SYMBOL vmlinux 0x37d08b79 mdio_device_free +EXPORT_SYMBOL vmlinux 0x37d59cab skb_tx_error EXPORT_SYMBOL vmlinux 0x37e39ec0 abort_creds -EXPORT_SYMBOL vmlinux 0x37f24c0f scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x37faaeda ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x3807f58d inet6_del_offload -EXPORT_SYMBOL vmlinux 0x3809745f __folio_batch_release +EXPORT_SYMBOL vmlinux 0x38074004 noop_dirty_folio EXPORT_SYMBOL vmlinux 0x380ec283 bit_waitqueue EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x382760ae param_set_bint EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x384b5195 unlock_page -EXPORT_SYMBOL vmlinux 0x385108a2 kthread_stop +EXPORT_SYMBOL vmlinux 0x3832a894 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x38569582 cond_set_guest_storage_key EXPORT_SYMBOL vmlinux 0x385c7481 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x385e1d7b page_pool_destroy -EXPORT_SYMBOL vmlinux 0x38724d63 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x38827979 devm_free_irq +EXPORT_SYMBOL vmlinux 0x38669843 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x386ebc72 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388d119d netdev_state_change EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x3894d896 kthread_create_on_node EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a88e90 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x38a9ec9b nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38beb37b generic_buffers_fsync -EXPORT_SYMBOL vmlinux 0x38cf9d33 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x38e647a8 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x38f6c8fe super_setup_bdi_name -EXPORT_SYMBOL vmlinux 0x3904d59a config_item_get +EXPORT_SYMBOL vmlinux 0x38ad6970 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x38bccd4b kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x38dd0a52 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x38e0efd6 sk_common_release EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x3929c13f pudp_xchg_direct -EXPORT_SYMBOL vmlinux 0x393a83de node_data -EXPORT_SYMBOL vmlinux 0x393c085f get_inode_acl EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394685e2 folio_end_private_2 EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x3952d49a param_set_ullong -EXPORT_SYMBOL vmlinux 0x396e92d3 fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x397096ce register_service_level -EXPORT_SYMBOL vmlinux 0x3972804c tcf_get_next_chain -EXPORT_SYMBOL vmlinux 0x397545aa skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x397897d7 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x397e56fe kernel_connect -EXPORT_SYMBOL vmlinux 0x3982e125 genphy_resume +EXPORT_SYMBOL vmlinux 0x396c766d phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x397e1085 key_type_keyring +EXPORT_SYMBOL vmlinux 0x3984d0e1 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x39e7a693 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x39fd2b63 zstd_reset_dstream EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc EXPORT_SYMBOL vmlinux 0x3a1733d0 dfltcc_inflate -EXPORT_SYMBOL vmlinux 0x3a182368 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x3a2df0e2 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a3b5d7f forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x3a47dd1f inet_rcv_saddr_equal EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a4fd9bf pcie_get_mps EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x3a5a7f1e __scm_send -EXPORT_SYMBOL vmlinux 0x3a69aad6 single_open -EXPORT_SYMBOL vmlinux 0x3a6ca2d7 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x3a713831 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x3a544b97 sock_no_linger +EXPORT_SYMBOL vmlinux 0x3a68a15b bio_kmalloc +EXPORT_SYMBOL vmlinux 0x3a720e39 may_umount +EXPORT_SYMBOL vmlinux 0x3a77a122 vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x3a8f22ce gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x3aafb546 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x3a9252fa input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x3a9ff777 xfrm_state_add EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3aba7b1a gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x3ab99d4e mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x3acc7dee mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x3ae2be48 keyring_clear -EXPORT_SYMBOL vmlinux 0x3aec20ba pci_iounmap -EXPORT_SYMBOL vmlinux 0x3aec88a2 misc_register -EXPORT_SYMBOL vmlinux 0x3aeffb5e skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x3b09bdea tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x3b0c3a68 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3aed21de truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x3b0249e1 security_path_rename +EXPORT_SYMBOL vmlinux 0x3b03ca0e xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x3b0addf3 release_pages +EXPORT_SYMBOL vmlinux 0x3b0b0bd8 sk_net_capable EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x3b25d6e0 padata_alloc -EXPORT_SYMBOL vmlinux 0x3b3e376b page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x3b422df0 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x3b4617f6 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x3b501e18 key_validate +EXPORT_SYMBOL vmlinux 0x3b2c3e49 init_task +EXPORT_SYMBOL vmlinux 0x3b303b28 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x3b4ec12d pci_dev_driver EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b65e72c single_open_size -EXPORT_SYMBOL vmlinux 0x3b6c3188 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b756f6a crc32_le -EXPORT_SYMBOL vmlinux 0x3ba5e895 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x3bb243ef tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x3bbe3127 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x3be508b3 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x3bf0b060 md_write_end -EXPORT_SYMBOL vmlinux 0x3bf171b9 fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0x3bf968fd __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x3b804423 devm_release_resource +EXPORT_SYMBOL vmlinux 0x3b87167f generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x3b888d08 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3b979d4f get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x3ba10575 ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0x3ba13677 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x3bbeea6d dst_release_immediate +EXPORT_SYMBOL vmlinux 0x3bc96c9f ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x3bdffbc7 pci_iomap_wc +EXPORT_SYMBOL vmlinux 0x3bfd75a4 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x3c02a999 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x3c0a8884 nf_reinject EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c1a3734 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0x3c336de3 folio_wait_private_2 -EXPORT_SYMBOL vmlinux 0x3c34d073 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x3c38e231 scsi_host_busy EXPORT_SYMBOL vmlinux 0x3c3af15f __tracepoint_s390_cio_tpi EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c45c5ab jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x3c4bd9e0 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x3c4619d4 skb_ext_add +EXPORT_SYMBOL vmlinux 0x3c50b3af skb_store_bits +EXPORT_SYMBOL vmlinux 0x3c51b711 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x3c523149 d_set_d_op EXPORT_SYMBOL vmlinux 0x3c531813 zstd_is_error -EXPORT_SYMBOL vmlinux 0x3c604f85 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x3c768b51 xz_dec_microlzma_run -EXPORT_SYMBOL vmlinux 0x3c9e749b textsearch_unregister -EXPORT_SYMBOL vmlinux 0x3cb14d80 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x3c9161b3 kern_unmount EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock -EXPORT_SYMBOL vmlinux 0x3cb9f26a xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x3cc86b80 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x3cdb643a d_obtain_root -EXPORT_SYMBOL vmlinux 0x3cdcff6d fb_pan_display +EXPORT_SYMBOL vmlinux 0x3cb7799d arp_xmit +EXPORT_SYMBOL vmlinux 0x3cbfe722 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x3cc424b3 vma_set_file +EXPORT_SYMBOL vmlinux 0x3cd42fa2 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3cee5775 pci_read_config_dword -EXPORT_SYMBOL vmlinux 0x3cef9199 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x3cfade51 config_item_put -EXPORT_SYMBOL vmlinux 0x3d1178c7 unregister_quota_format EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size -EXPORT_SYMBOL vmlinux 0x3d16905b sget_fc -EXPORT_SYMBOL vmlinux 0x3d25788f __post_watch_notification -EXPORT_SYMBOL vmlinux 0x3d2623db blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x3d1887e3 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x3d293f8b reuseport_add_sock EXPORT_SYMBOL vmlinux 0x3d2981fa utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x3d38ebc2 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x3d4252e4 reuseport_select_sock EXPORT_SYMBOL vmlinux 0x3d4cb9d1 airq_iv_create -EXPORT_SYMBOL vmlinux 0x3d5c049a jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x3d58ddf3 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x3d654ecc rw_verify_area EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name -EXPORT_SYMBOL vmlinux 0x3da21a06 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x3da89e5a param_get_ushort -EXPORT_SYMBOL vmlinux 0x3da9d22d netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd59d03 key_alloc EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e252458 tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x3e27750e dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0x3e2b5a9e configfs_register_default_group -EXPORT_SYMBOL vmlinux 0x3e2e11d2 kernel_read +EXPORT_SYMBOL vmlinux 0x3e11080a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x3e38cbb8 km_policy_expired EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e3cf91f dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x3e81c97b sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x3e8924cd phy_validate_pause -EXPORT_SYMBOL vmlinux 0x3e95a990 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x3ea90af0 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x3eb65534 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x3ec255de set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x3e3c26b0 datagram_poll +EXPORT_SYMBOL vmlinux 0x3e7d29d1 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x3e9e3e3b skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x3ea3a536 set_page_dirty +EXPORT_SYMBOL vmlinux 0x3eca3c4a xfrm_find_acq EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ed42b38 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x3eef4c68 folio_set_bh EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f02b971 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x3f36c1cf kill_block_super EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd -EXPORT_SYMBOL vmlinux 0x3f4c19b6 iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x3f5d0658 ccw_device_set_online -EXPORT_SYMBOL vmlinux 0x3f6ea229 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0x3f780219 __phy_resume -EXPORT_SYMBOL vmlinux 0x3f78af11 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3f5576da vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access EXPORT_SYMBOL vmlinux 0x3f8c9c29 ns_capable +EXPORT_SYMBOL vmlinux 0x3f8cb4b9 kbd_ascebc +EXPORT_SYMBOL vmlinux 0x3f9f5f36 dev_kfree_skb_any_reason EXPORT_SYMBOL vmlinux 0x3fa913da strspn -EXPORT_SYMBOL vmlinux 0x3fc3ada0 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x3fab226f netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x3fb5b6a8 udp_poll EXPORT_SYMBOL vmlinux 0x3fd54f12 raw3270_request_set_data EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fe0d415 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x4003c00c vmemmap -EXPORT_SYMBOL vmlinux 0x4004e762 inet_offloads -EXPORT_SYMBOL vmlinux 0x40093701 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x4022b04f vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x40259c75 debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x3fdf4e4c unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x3fe2e78d skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 -EXPORT_SYMBOL vmlinux 0x402f54d1 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0x403173a3 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x4033fd50 mr_dump -EXPORT_SYMBOL vmlinux 0x4048f908 set_cached_acl -EXPORT_SYMBOL vmlinux 0x4070d68e sg_miter_start +EXPORT_SYMBOL vmlinux 0x404eace0 xp_alloc +EXPORT_SYMBOL vmlinux 0x40581dbe pci_request_irq +EXPORT_SYMBOL vmlinux 0x4075e6c0 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x4080c054 dump_align EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate -EXPORT_SYMBOL vmlinux 0x40a6fd98 __scm_destroy -EXPORT_SYMBOL vmlinux 0x40a8c25b blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b3e4df tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x40b711fb flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x40c57b8f tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40c8427b dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x40cd67e1 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e72619 dquot_alloc -EXPORT_SYMBOL vmlinux 0x40f71c75 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x40f9ef89 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x41134625 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x4116fc2f devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x40d5f6b0 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x410cb9d7 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x410d38f6 dquot_commit EXPORT_SYMBOL vmlinux 0x4122fac9 nla_reserve EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413cdcfc simple_nosetlease EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x415fcab5 sock_register +EXPORT_SYMBOL vmlinux 0x414fdf1e clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x41765cac dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x41788f71 __ip_mc_dec_group EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418e572d ccw_device_get_path_mask -EXPORT_SYMBOL vmlinux 0x41a06aff keyring_search -EXPORT_SYMBOL vmlinux 0x41b40d42 kill_litter_super -EXPORT_SYMBOL vmlinux 0x41b5cdf3 phy_find_first -EXPORT_SYMBOL vmlinux 0x41bab643 udp_seq_start -EXPORT_SYMBOL vmlinux 0x41bd12ff sock_init_data -EXPORT_SYMBOL vmlinux 0x41cfd898 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x41d801eb phy_attached_print -EXPORT_SYMBOL vmlinux 0x41fab3c2 rt6_lookup -EXPORT_SYMBOL vmlinux 0x421e5ab2 pps_event -EXPORT_SYMBOL vmlinux 0x42305e25 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x41af53f3 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x41b1c531 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x41b530cc make_bad_inode +EXPORT_SYMBOL vmlinux 0x41c2af1a generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x41d4974d pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x41d5f91c remap_pfn_range +EXPORT_SYMBOL vmlinux 0x41df14cb qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x41f504bf __folio_start_writeback EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x42370c21 path_is_under +EXPORT_SYMBOL vmlinux 0x423945d4 sk_ioctl +EXPORT_SYMBOL vmlinux 0x4244f444 input_unregister_device +EXPORT_SYMBOL vmlinux 0x42456317 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x424fd655 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x4265acf4 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x42810c0a is_subdir -EXPORT_SYMBOL vmlinux 0x42813e12 pskb_extract -EXPORT_SYMBOL vmlinux 0x4282aa44 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x4259a234 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x42684a5a debug_unregister_view EXPORT_SYMBOL vmlinux 0x429dcdc0 xa_find_after EXPORT_SYMBOL vmlinux 0x42ae6d99 xa_find -EXPORT_SYMBOL vmlinux 0x42bd86c4 skb_vlan_push EXPORT_SYMBOL vmlinux 0x42c4050a zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x42d133a2 irq_set_chip -EXPORT_SYMBOL vmlinux 0x42e82cd5 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x42c76f0a fget_raw +EXPORT_SYMBOL vmlinux 0x42dc864c follow_down EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x430a8a77 dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x43125719 misc_deregister -EXPORT_SYMBOL vmlinux 0x431aaab2 update_region -EXPORT_SYMBOL vmlinux 0x433c9c9a phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x4350da6f dquot_get_state +EXPORT_SYMBOL vmlinux 0x431acc8d pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x43216217 ethtool_aggregate_phy_stats +EXPORT_SYMBOL vmlinux 0x43313193 netdev_state_change +EXPORT_SYMBOL vmlinux 0x434da0b4 dcb_getrewr EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4351e929 param_get_hexint -EXPORT_SYMBOL vmlinux 0x4365bbb9 tty_hangup +EXPORT_SYMBOL vmlinux 0x4353d463 tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0x435c2019 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4384ceae tcp_check_req EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x4388a150 folio_migrate_copy -EXPORT_SYMBOL vmlinux 0x43963591 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x4392d5fe __fput_sync +EXPORT_SYMBOL vmlinux 0x43a39e74 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x43b1f866 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x43b495c0 block_write_end +EXPORT_SYMBOL vmlinux 0x43a7bc63 param_get_long +EXPORT_SYMBOL vmlinux 0x43ac74ce __neigh_create +EXPORT_SYMBOL vmlinux 0x43b651fb file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x43baf1ac jbd2_journal_load EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43d05020 watchdog_register_governor EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43d42b63 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x43d9ba52 fault_in_readable -EXPORT_SYMBOL vmlinux 0x43e5718c get_guest_storage_key -EXPORT_SYMBOL vmlinux 0x43fa162e ap_send_config_uevent -EXPORT_SYMBOL vmlinux 0x43ff2661 tcf_em_register -EXPORT_SYMBOL vmlinux 0x44025ea6 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x4406edc7 tcp_fastopen_defer_connect -EXPORT_SYMBOL vmlinux 0x440b7b80 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x441726a3 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x441fb3e4 sget -EXPORT_SYMBOL vmlinux 0x44213e51 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x43e9ee74 iget5_locked +EXPORT_SYMBOL vmlinux 0x43fd5131 bprm_change_interp EXPORT_SYMBOL vmlinux 0x4424a9d4 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0x44369238 input_free_device +EXPORT_SYMBOL vmlinux 0x44342dc5 iter_file_splice_write EXPORT_SYMBOL vmlinux 0x4443a2c1 diag_stat_inc EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x445b8bd0 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x445fd2d3 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x446a9e62 skb_queue_head -EXPORT_SYMBOL vmlinux 0x4472d4b5 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x4494d632 ccw_device_tm_start_key -EXPORT_SYMBOL vmlinux 0x44973339 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x449eaad6 release_pages -EXPORT_SYMBOL vmlinux 0x44ac0cba skb_checksum_help +EXPORT_SYMBOL vmlinux 0x4446df53 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x4447f329 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x446bc859 skb_pull_data +EXPORT_SYMBOL vmlinux 0x447a0fab xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x4482f9e6 inode_init_once +EXPORT_SYMBOL vmlinux 0x4486ef28 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x448acd4c kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x449108c4 pudp_xchg_direct EXPORT_SYMBOL vmlinux 0x44b30fb5 csch -EXPORT_SYMBOL vmlinux 0x44b36c39 param_ops_long -EXPORT_SYMBOL vmlinux 0x44bf7906 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x44bfb14a udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x44d85e33 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x44bca122 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x44c8edf3 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x44dc7e89 dma_pool_create +EXPORT_SYMBOL vmlinux 0x44dedc8c skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x44e9b7d0 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x44f73e6e scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x44f785ab devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x44f0d172 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x45000f9d vfs_fsync_range EXPORT_SYMBOL vmlinux 0x45006cee default_red -EXPORT_SYMBOL vmlinux 0x45010eaa xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x450218ef devm_memunmap +EXPORT_SYMBOL vmlinux 0x45133743 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x4526b747 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x453273c5 simple_transaction_set EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x45461471 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x454e8fa8 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x45549070 mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x4557ead1 unregister_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x456f4a40 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x453fcff2 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x4546334f phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x45615d63 dev_uc_add EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x458e3997 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x457edc3d security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x459cce4c inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0x45b9877f prepare_to_wait +EXPORT_SYMBOL vmlinux 0x45c96988 simple_get_link +EXPORT_SYMBOL vmlinux 0x45d1f78e pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul -EXPORT_SYMBOL vmlinux 0x45ee1371 sys_imageblit -EXPORT_SYMBOL vmlinux 0x45ee807e csum_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x45f0d192 dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x45f16e60 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x45f17fb6 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x46046d71 udp_seq_next +EXPORT_SYMBOL vmlinux 0x4608fc7b blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x46091b9d ip_local_deliver EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461bbac5 security_path_mknod EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents -EXPORT_SYMBOL vmlinux 0x464ce7e6 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x465505b4 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x46203f0c register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x4628ebc8 ihold +EXPORT_SYMBOL vmlinux 0x462ed4c0 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x4644011c qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x46580d30 inet6_bind EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466d5094 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x4674b161 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x468f75a1 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x46a163e7 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x46a1b3b9 inet_getname +EXPORT_SYMBOL vmlinux 0x46bc6631 pcim_enable_device EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options -EXPORT_SYMBOL vmlinux 0x46c5cd93 kbd_free -EXPORT_SYMBOL vmlinux 0x46ca7c6d netdev_err -EXPORT_SYMBOL vmlinux 0x46cd0caf qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send +EXPORT_SYMBOL vmlinux 0x46d57a99 simple_transaction_set EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46db5f1e kmem_cache_free EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data -EXPORT_SYMBOL vmlinux 0x46ef8a68 ccw_device_dma_zalloc -EXPORT_SYMBOL vmlinux 0x470ada8a fb_get_mode -EXPORT_SYMBOL vmlinux 0x470edf97 pci_choose_state +EXPORT_SYMBOL vmlinux 0x46e40905 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x46edb483 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x46efd5d4 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x471dca6e __inet_hash +EXPORT_SYMBOL vmlinux 0x472fbcad sg_miter_skip +EXPORT_SYMBOL vmlinux 0x4733944e find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy -EXPORT_SYMBOL vmlinux 0x4739d60b dm_io -EXPORT_SYMBOL vmlinux 0x473d57b4 kernel_bind -EXPORT_SYMBOL vmlinux 0x47440c0a seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x47446699 phy_device_register -EXPORT_SYMBOL vmlinux 0x47478881 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x475d26f3 done_path_create +EXPORT_SYMBOL vmlinux 0x473da6c7 crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4776b239 ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0x4787f95a phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x4791c6ea gen_pool_create -EXPORT_SYMBOL vmlinux 0x47b24be0 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x47b74339 block_commit_write +EXPORT_SYMBOL vmlinux 0x4796afc9 blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c291e8 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47cabf59 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x480caea6 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x47e5bff3 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x4808b66b param_set_byte EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x4825e8f7 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work EXPORT_SYMBOL vmlinux 0x482d4f73 raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0x483be2f4 dcb_getrewr_prio_pcp_mask_map +EXPORT_SYMBOL vmlinux 0x484aae96 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x484cf504 nonseekable_open EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4851e137 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x485a69c6 simple_fill_super -EXPORT_SYMBOL vmlinux 0x486caf9d ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x486f6e4a t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x4866b5d8 blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0x487370a2 fault_in_writeable -EXPORT_SYMBOL vmlinux 0x488778bc ap_queue_message -EXPORT_SYMBOL vmlinux 0x488f17a4 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x4890f7bb param_get_short -EXPORT_SYMBOL vmlinux 0x4891ae65 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x489a8f64 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x488cb9e5 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x489d0ff4 neigh_connected_output EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48cb8313 xp_alloc +EXPORT_SYMBOL vmlinux 0x48ae5d03 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x48c4f2b9 textsearch_destroy EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects -EXPORT_SYMBOL vmlinux 0x48ef4e18 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x48f2b93d file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x48deeb2e setattr_copy +EXPORT_SYMBOL vmlinux 0x48e60fdb tcp_sock_set_cork EXPORT_SYMBOL vmlinux 0x48f6905b zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x48fd7bc9 tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490d08b8 register_cdrom EXPORT_SYMBOL vmlinux 0x490dddac dq_data_lock -EXPORT_SYMBOL vmlinux 0x49218c36 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x4916a25c tty_port_put EXPORT_SYMBOL vmlinux 0x4932011e gen_pool_free_owner EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4957eda6 sk_send_sigurg EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x4961a190 sock_set_priority +EXPORT_SYMBOL vmlinux 0x49626d8d tls_client_hello_x509 EXPORT_SYMBOL vmlinux 0x49672828 node_states EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x497a0db3 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x49aa5176 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x49ab88c3 devm_memremap -EXPORT_SYMBOL vmlinux 0x49afc123 pci_enable_link_state -EXPORT_SYMBOL vmlinux 0x49b03092 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0x49b51398 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x49e4260d textsearch_destroy +EXPORT_SYMBOL vmlinux 0x49823437 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x49883296 init_net +EXPORT_SYMBOL vmlinux 0x4999b763 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x499cf51d dst_init +EXPORT_SYMBOL vmlinux 0x49a2a3aa posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x49a36685 genphy_read_status +EXPORT_SYMBOL vmlinux 0x49b3b9f0 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0x49e5e7f3 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x49e8e800 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x49edd62e fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x49e8adbe scsi_register_interface +EXPORT_SYMBOL vmlinux 0x4a1098a5 tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x4a572e3a swake_up_all -EXPORT_SYMBOL vmlinux 0x4a679f7b inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x4a87e711 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x4a93934a __devm_release_region +EXPORT_SYMBOL vmlinux 0x4a694ecf neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x4a7342c9 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x4a81a6e8 dump_skip_to EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9da702 set_page_dirty -EXPORT_SYMBOL vmlinux 0x4aaabbf3 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x4ab7eb85 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x4aa6f087 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x4abad4b0 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x4ad74e09 param_get_charp EXPORT_SYMBOL vmlinux 0x4ade3f9b ns_capable_setid -EXPORT_SYMBOL vmlinux 0x4ae09f91 neigh_table_init -EXPORT_SYMBOL vmlinux 0x4ae679f3 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x4adf9c17 xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 -EXPORT_SYMBOL vmlinux 0x4afab466 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x4b06d9db pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0x4afc20d8 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x4b09bf9f tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x4b0b019e add_device_randomness -EXPORT_SYMBOL vmlinux 0x4b0f4350 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x4b117c24 dget_parent -EXPORT_SYMBOL vmlinux 0x4b24fe6e read_cache_page EXPORT_SYMBOL vmlinux 0x4b369167 __SCK__tp_func_s390_diagnose -EXPORT_SYMBOL vmlinux 0x4b3bcc5a genphy_loopback -EXPORT_SYMBOL vmlinux 0x4b526429 inode_set_flags -EXPORT_SYMBOL vmlinux 0x4b579e23 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x4b78ef93 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x4b8092a7 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x4b390bba thread_group_exited +EXPORT_SYMBOL vmlinux 0x4b3a040e sys_fillrect +EXPORT_SYMBOL vmlinux 0x4b401d98 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x4b437f1f devm_request_resource +EXPORT_SYMBOL vmlinux 0x4b47dde0 nf_log_packet +EXPORT_SYMBOL vmlinux 0x4b5b5011 zap_page_range_single +EXPORT_SYMBOL vmlinux 0x4b6cc9c3 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x4b8944fe xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0x4b8f4e7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x4ba40456 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x4bbc74fe from_kuid +EXPORT_SYMBOL vmlinux 0x4bc0dd39 request_key_rcu EXPORT_SYMBOL vmlinux 0x4bd018e2 kmalloc_large_node -EXPORT_SYMBOL vmlinux 0x4bdb7956 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x4bfca20c pci_scan_slot -EXPORT_SYMBOL vmlinux 0x4c0c6664 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x4c0ccfc2 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x4c2ae080 tty_register_device -EXPORT_SYMBOL vmlinux 0x4c3f02b2 generic_fadvise +EXPORT_SYMBOL vmlinux 0x4c11fd65 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x4c153552 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x4c18c142 sock_wake_async +EXPORT_SYMBOL vmlinux 0x4c1c9525 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x4c2e98d3 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c43a3f9 mdiobus_c45_read_nested EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp EXPORT_SYMBOL vmlinux 0x4c5d9949 sclp -EXPORT_SYMBOL vmlinux 0x4c92b564 unlock_rename -EXPORT_SYMBOL vmlinux 0x4ca4db17 pci_resize_resource -EXPORT_SYMBOL vmlinux 0x4cadaeed unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x4cc25c44 dev_deactivate +EXPORT_SYMBOL vmlinux 0x4c7264e8 elevator_alloc +EXPORT_SYMBOL vmlinux 0x4c7e83e8 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x4c890a4c netdev_emerg +EXPORT_SYMBOL vmlinux 0x4ca20814 get_watch_queue +EXPORT_SYMBOL vmlinux 0x4ca71e5a dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x4cb88108 lock_rename EXPORT_SYMBOL vmlinux 0x4ccc5204 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x4d2673f1 kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x4d2e0be8 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x4d455062 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x4d4f5ec5 pci_find_bus +EXPORT_SYMBOL vmlinux 0x4ceca2d4 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x4cf11b8b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x4cfa1966 vm_map_ram +EXPORT_SYMBOL vmlinux 0x4d042f21 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x4d2098a2 mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x4d25036a fs_param_is_path +EXPORT_SYMBOL vmlinux 0x4d25a1fe phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x4d5188a8 vfs_symlink +EXPORT_SYMBOL vmlinux 0x4d51ff93 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x4d5dcbaf handshake_req_cancel EXPORT_SYMBOL vmlinux 0x4d5fe525 percpu_counter_add_batch -EXPORT_SYMBOL vmlinux 0x4d963216 set_pgste_bits +EXPORT_SYMBOL vmlinux 0x4d7843c8 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x4d7def2b crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x4d90dc21 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9c6005 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4d9ddff2 vfs_statfs +EXPORT_SYMBOL vmlinux 0x4d9e5199 tcf_idr_create EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x4dbe10cf tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x4da5a604 softnet_data +EXPORT_SYMBOL vmlinux 0x4dadb5aa netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy -EXPORT_SYMBOL vmlinux 0x4de98fe9 __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df18bbd blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4dfde9dd phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x4e0b4b08 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x4e14c2f2 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x4e02f523 input_get_timestamp EXPORT_SYMBOL vmlinux 0x4e14fb7d __traceiter_s390_cio_msch -EXPORT_SYMBOL vmlinux 0x4e3159e5 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4e251a9c __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer +EXPORT_SYMBOL vmlinux 0x4e54ac7e xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x4e5b0cc6 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x4e66741d d_find_any_alias EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7b50b9 pci_scan_root_bus_bridge EXPORT_SYMBOL vmlinux 0x4e89ce10 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x4e8a2504 xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x4e8e2703 zstd_decompress_dctx -EXPORT_SYMBOL vmlinux 0x4e9a6e52 jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x4e9e6a05 downgrade_write -EXPORT_SYMBOL vmlinux 0x4ea9fe21 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x4eaa06f5 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eae8c10 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ec9b478 d_alloc_anon -EXPORT_SYMBOL vmlinux 0x4ecee614 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x4ed1a95f alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x4ed9ec88 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0x4eee4a66 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x4ec9363b bio_split +EXPORT_SYMBOL vmlinux 0x4eca5dd9 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x4ef7f54b neigh_ifdown +EXPORT_SYMBOL vmlinux 0x4efdc45a inet_del_protocol EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2a7c37 posix_test_lock EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd -EXPORT_SYMBOL vmlinux 0x4f42ae04 skb_eth_push +EXPORT_SYMBOL vmlinux 0x4f3add1f ptep_xchg_lazy EXPORT_SYMBOL vmlinux 0x4f5aa411 radix_tree_next_chunk EXPORT_SYMBOL vmlinux 0x4f6a17e4 raw3270_del_view -EXPORT_SYMBOL vmlinux 0x4f8187ec config_group_init -EXPORT_SYMBOL vmlinux 0x4fa269e2 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x4fa6cd64 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x4fbe0b3a poll_initwait -EXPORT_SYMBOL vmlinux 0x4fbf68e0 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x4fc7d192 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x4fd1ff91 lease_modify -EXPORT_SYMBOL vmlinux 0x4fdc4230 hmm_range_fault -EXPORT_SYMBOL vmlinux 0x4fe1c692 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4f718719 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x4f74a584 thaw_super +EXPORT_SYMBOL vmlinux 0x4f74f897 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x4f7b5f91 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x4f85c0bb scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x4f99a41e devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x4fadfa05 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x4ff3bb4e fs_param_is_blob EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x5003d52a ap_perms_mutex +EXPORT_SYMBOL vmlinux 0x50070fd7 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500db56b d_splice_alias -EXPORT_SYMBOL vmlinux 0x5010f60e mntput -EXPORT_SYMBOL vmlinux 0x5012ddfb iov_iter_zero -EXPORT_SYMBOL vmlinux 0x501ca608 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x502d5061 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x5031b485 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x503cc24d jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x505307b7 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506817be neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free EXPORT_SYMBOL vmlinux 0x507144f4 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup -EXPORT_SYMBOL vmlinux 0x5086730b dquot_destroy EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x509a7d5c ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x50a2484c vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b1e86d unregister_shrinker EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x50bcd94c _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50ca57a9 dm_put_device EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d23527 kthread_create_worker EXPORT_SYMBOL vmlinux 0x50e087dc radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x50e5a9e6 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x50eadf96 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x5111541e blk_sync_queue -EXPORT_SYMBOL vmlinux 0x5126450a security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x512958f0 ethtool_aggregate_pause_stats -EXPORT_SYMBOL vmlinux 0x51360ce1 fb_show_logo -EXPORT_SYMBOL vmlinux 0x5138fc4b memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0x513d9ddf kbd_ascebc +EXPORT_SYMBOL vmlinux 0x50f76324 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x50fa41b0 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x513be602 cdev_init EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51645ecc tcp_read_skb -EXPORT_SYMBOL vmlinux 0x517de54c dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x5184213b proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x51827210 reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 -EXPORT_SYMBOL vmlinux 0x51918139 lock_rename_child -EXPORT_SYMBOL vmlinux 0x51934c50 tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x5193985f sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0x5197bdcb genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x51a41d8d fb_set_suspend +EXPORT_SYMBOL vmlinux 0x51b81959 dquot_alloc EXPORT_SYMBOL vmlinux 0x51d6bd83 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x51e6c4ed dentry_path_raw -EXPORT_SYMBOL vmlinux 0x51fe535e blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0x522a4be1 pfifo_fast_ops -EXPORT_SYMBOL vmlinux 0x5231929a locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x5244d267 sync_blockdev -EXPORT_SYMBOL vmlinux 0x525afe3c md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x51e29faf redraw_screen +EXPORT_SYMBOL vmlinux 0x51f7f396 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x5225691e security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x5255657f kernel_write EXPORT_SYMBOL vmlinux 0x526975eb sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x526d382b generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x5298723e iget_locked -EXPORT_SYMBOL vmlinux 0x529a4c9b rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0x52a65eca filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x52c0f0f3 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x52cd68cd __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x526c23c3 sock_register +EXPORT_SYMBOL vmlinux 0x52a8b930 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x52cf2a00 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x52d5d9ff blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52d950dd vfs_llseek EXPORT_SYMBOL vmlinux 0x52db1a14 zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x52e71059 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x52e7d246 vma_alloc_folio -EXPORT_SYMBOL vmlinux 0x52f17d35 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x52f35a62 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x52f65988 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x52ff0506 dm_get_device +EXPORT_SYMBOL vmlinux 0x53047b05 tty_register_device EXPORT_SYMBOL vmlinux 0x530bbc96 __hsiphash_unaligned EXPORT_SYMBOL vmlinux 0x531625b6 wait_for_completion +EXPORT_SYMBOL vmlinux 0x531d8788 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x5325d6f3 dfltcc_reset_deflate_state -EXPORT_SYMBOL vmlinux 0x532e2883 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x5331bd4a mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x535abae2 xattr_full_name -EXPORT_SYMBOL vmlinux 0x537bffd9 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x5384d2f2 empty_aops +EXPORT_SYMBOL vmlinux 0x538532cf qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x538715f9 simple_rmdir EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53c05a2c netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0x53c24b01 mutex_is_locked -EXPORT_SYMBOL vmlinux 0x53d5150f dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x53e03bc6 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x53f5e832 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x53dea699 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x53ded98f phy_error EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings -EXPORT_SYMBOL vmlinux 0x53fa81b4 dev_addr_del +EXPORT_SYMBOL vmlinux 0x53fafb25 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x5400d124 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x5403af02 pci_release_selected_regions EXPORT_SYMBOL vmlinux 0x540862e2 diag14 -EXPORT_SYMBOL vmlinux 0x541878bd md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x54235186 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x5424a311 netif_skb_features -EXPORT_SYMBOL vmlinux 0x542659bf blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x54286050 pci_read_vpd_any -EXPORT_SYMBOL vmlinux 0x54350ff0 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x542629db udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x543ec48c md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x54476997 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x545e465a lock_sock_nested -EXPORT_SYMBOL vmlinux 0x545f5837 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x545f90f5 tcf_register_action -EXPORT_SYMBOL vmlinux 0x5470a5e1 may_umount_tree -EXPORT_SYMBOL vmlinux 0x5474de67 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x547f96ac genl_unregister_family +EXPORT_SYMBOL vmlinux 0x54563ca3 phy_get_pause +EXPORT_SYMBOL vmlinux 0x546187f1 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5462e095 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x54637958 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x5479ccb2 ccw_device_start_key +EXPORT_SYMBOL vmlinux 0x548c3678 inet_shutdown EXPORT_SYMBOL vmlinux 0x548d17c4 airq_iv_alloc -EXPORT_SYMBOL vmlinux 0x54a01faa skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x54b0cbad scsi_block_requests +EXPORT_SYMBOL vmlinux 0x54a972ec adjust_managed_page_count EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54deef24 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x54e1dc6f pci_bus_find_capability EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54eec8cd parse_int_array_user -EXPORT_SYMBOL vmlinux 0x54f2caac jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x54fbc715 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x54f18c16 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x54f1bdd1 param_get_bool EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x55070422 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x550b454b __do_once_done +EXPORT_SYMBOL vmlinux 0x550d05a9 skb_checksum +EXPORT_SYMBOL vmlinux 0x550f5bfa kbd_free +EXPORT_SYMBOL vmlinux 0x551389c6 set_cached_acl EXPORT_SYMBOL vmlinux 0x551668bc kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x551a403b dma_resv_add_fence EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551ed4d5 mdiobus_free -EXPORT_SYMBOL vmlinux 0x55208838 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5524fe20 __ClearPageMovable EXPORT_SYMBOL vmlinux 0x552556a8 gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x5528203b pci_iomap_range +EXPORT_SYMBOL vmlinux 0x553287fb dev_set_alias EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554af211 cdrom_ioctl EXPORT_SYMBOL vmlinux 0x554b16f9 dma_fence_set_deadline +EXPORT_SYMBOL vmlinux 0x554e385d __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5559f476 unpin_user_pages_dirty_lock EXPORT_SYMBOL vmlinux 0x555ccb97 up_read -EXPORT_SYMBOL vmlinux 0x555d8428 key_revoke -EXPORT_SYMBOL vmlinux 0x556344b8 pci_restore_state -EXPORT_SYMBOL vmlinux 0x55697b74 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x5573be2e pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x55781f2c dquot_free_inode +EXPORT_SYMBOL vmlinux 0x55844807 ip_output +EXPORT_SYMBOL vmlinux 0x5588194f tcp_disconnect EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x559e04f3 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x5595070a follow_up +EXPORT_SYMBOL vmlinux 0x559d4850 dev_activate EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request -EXPORT_SYMBOL vmlinux 0x55ab0e13 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x55baf8a3 ccw_device_get_id -EXPORT_SYMBOL vmlinux 0x55d174b6 has_capability EXPORT_SYMBOL vmlinux 0x55d63108 kstrtol_from_user EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55ebe176 is_bad_inode EXPORT_SYMBOL vmlinux 0x55eccdf5 mod_virt_timer -EXPORT_SYMBOL vmlinux 0x55ee5539 folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x55fba272 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x55f38a16 pci_bus_type +EXPORT_SYMBOL vmlinux 0x55f6b281 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x55f7b39a node_data EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback -EXPORT_SYMBOL vmlinux 0x561c7a73 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x55fdeec0 elv_rb_del EXPORT_SYMBOL vmlinux 0x562b9be5 ap_test_config_ctrl_domain -EXPORT_SYMBOL vmlinux 0x5634bd03 discard_new_inode EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x5639dd74 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x5642c56e fwnode_iomap EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564ab27f nla_append EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56925e13 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0x56c4afb4 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x568d68ed lease_modify +EXPORT_SYMBOL vmlinux 0x569af1b3 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x56b385d8 passthru_features_check +EXPORT_SYMBOL vmlinux 0x56be7882 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x56c7b9af __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg EXPORT_SYMBOL vmlinux 0x56d78870 chsc -EXPORT_SYMBOL vmlinux 0x56e38596 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x56e90d09 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x57315f0c put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x56d980d0 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x56df0559 registered_fb +EXPORT_SYMBOL vmlinux 0x56e01b4e jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x56ef06ed empty_aops +EXPORT_SYMBOL vmlinux 0x57328fa4 padata_do_serial EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x57648f34 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x576567f8 putname +EXPORT_SYMBOL vmlinux 0x575534d7 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x57575a86 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x575948d3 __wait_on_buffer EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x57a8080c inet_stream_connect +EXPORT_SYMBOL vmlinux 0x576e507e inet6_release +EXPORT_SYMBOL vmlinux 0x576fbbf3 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x5797fdf2 dput +EXPORT_SYMBOL vmlinux 0x57982aae ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x579f85c7 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x57b4b9a1 register_external_irq -EXPORT_SYMBOL vmlinux 0x57cc9e90 ccw_device_tm_start -EXPORT_SYMBOL vmlinux 0x57ee81f0 __block_write_begin +EXPORT_SYMBOL vmlinux 0x57d7df05 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x57d83881 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x57df3501 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x57e19cd5 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x57f18433 swake_up_one -EXPORT_SYMBOL vmlinux 0x57f810bc xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x57fbd368 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x58069384 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x580c357a unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x5817193b tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x582d59ff __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x583ce9f7 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x58464828 icmpv6_ndo_send -EXPORT_SYMBOL vmlinux 0x58542464 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x585b435b generic_delete_inode -EXPORT_SYMBOL vmlinux 0x585fd88e ip_output -EXPORT_SYMBOL vmlinux 0x5872840f ap_send_online_uevent +EXPORT_SYMBOL vmlinux 0x5838bbc7 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x58473a49 debug_sprintf_view +EXPORT_SYMBOL vmlinux 0x585d4c3d phy_connect_direct +EXPORT_SYMBOL vmlinux 0x5860ca20 skb_trim EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf -EXPORT_SYMBOL vmlinux 0x588bb75b blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit +EXPORT_SYMBOL vmlinux 0x58a1153a fb_get_mode +EXPORT_SYMBOL vmlinux 0x58a847e9 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b60384 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x58b520cc can_nice EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem -EXPORT_SYMBOL vmlinux 0x58d68fb7 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x58e08092 lock_sock_nested EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e85964 mntget EXPORT_SYMBOL vmlinux 0x58eae9ec gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x58f2f18b clocksource_unregister EXPORT_SYMBOL vmlinux 0x58f6a317 __tracepoint_s390_cio_msch -EXPORT_SYMBOL vmlinux 0x5900b28e __register_nls -EXPORT_SYMBOL vmlinux 0x59189fb0 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x5944d015 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x595841f6 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x59677e95 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x598250d6 bio_init -EXPORT_SYMBOL vmlinux 0x598dee1d devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x5910e052 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x5911ea54 param_ops_charp +EXPORT_SYMBOL vmlinux 0x591b50f6 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x591dd832 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x59212ce0 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x59251980 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x59368e75 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x59399ae5 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x594a55ec keyring_alloc +EXPORT_SYMBOL vmlinux 0x596fddc4 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5989f312 blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x598f0a95 udplite_table -EXPORT_SYMBOL vmlinux 0x59a3aa8e simple_empty -EXPORT_SYMBOL vmlinux 0x59a5e04d dcache_dir_open -EXPORT_SYMBOL vmlinux 0x59b3ab23 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x59952f0f __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x5999260b eth_header_cache +EXPORT_SYMBOL vmlinux 0x59a55b93 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x59a69aa6 skb_condense +EXPORT_SYMBOL vmlinux 0x59b2a142 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59d5529a neigh_seq_next -EXPORT_SYMBOL vmlinux 0x59e70116 __break_lease -EXPORT_SYMBOL vmlinux 0x59e9731b nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x59ef2643 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x59ca7789 generic_read_dir EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0fdf6c __vfs_removexattr EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer -EXPORT_SYMBOL vmlinux 0x5a3173b3 flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x5a33275d fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x5a294dbf tcf_classify +EXPORT_SYMBOL vmlinux 0x5a3011a0 md_update_sb +EXPORT_SYMBOL vmlinux 0x5a33f143 make_kprojid EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a6073e1 always_delete_dentry EXPORT_SYMBOL vmlinux 0x5a630934 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x5a78b98f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x5a8f5675 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5a9b054c vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x5aa3c3e9 simple_getattr -EXPORT_SYMBOL vmlinux 0x5aa90a5e pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x5ab8844f make_bad_inode -EXPORT_SYMBOL vmlinux 0x5ad94593 folio_set_bh -EXPORT_SYMBOL vmlinux 0x5ad9c439 udp_poll -EXPORT_SYMBOL vmlinux 0x5ae01108 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x5a9d9767 register_netdevice +EXPORT_SYMBOL vmlinux 0x5ad6611f sk_dst_check EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae3e0fa simple_rmdir -EXPORT_SYMBOL vmlinux 0x5af9694f kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x5b0ef03e fuse_dequeue_forget -EXPORT_SYMBOL vmlinux 0x5b1b0d52 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5af8b729 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x5b1bab22 dquot_destroy +EXPORT_SYMBOL vmlinux 0x5b1e023b phy_read_mmd +EXPORT_SYMBOL vmlinux 0x5b21808f input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x5b25b6e6 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw -EXPORT_SYMBOL vmlinux 0x5b3b2d62 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x5b4fb57d __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x5b361637 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x5b5d3fc1 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type EXPORT_SYMBOL vmlinux 0x5b745a3d xa_load -EXPORT_SYMBOL vmlinux 0x5b8acceb build_skb_around -EXPORT_SYMBOL vmlinux 0x5bb4a6e6 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x5bbd179d ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x5bcbd811 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x5b79f109 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x5b95ff13 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x5b9796b1 ip_frag_next +EXPORT_SYMBOL vmlinux 0x5b9b7088 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x5ba15e1f ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5ba2308d skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x5bb35267 __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0x5bced458 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval EXPORT_SYMBOL vmlinux 0x5bdcabe7 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x5be27836 block_read_full_folio EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bed7890 submit_bh +EXPORT_SYMBOL vmlinux 0x5beb4c2a unregister_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x5bf6cee5 commit_creds -EXPORT_SYMBOL vmlinux 0x5c072948 ccw_driver_register -EXPORT_SYMBOL vmlinux 0x5c1cf146 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x5c0574d1 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x5c0d7c68 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c3ef3ee debug_register_view -EXPORT_SYMBOL vmlinux 0x5c5c6d09 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x5c93eb89 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x5ca6486c bio_reset -EXPORT_SYMBOL vmlinux 0x5ca8ae71 shmem_aops -EXPORT_SYMBOL vmlinux 0x5cacd9ea scsi_ioctl +EXPORT_SYMBOL vmlinux 0x5c57530d qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x5c798ee0 fqdir_exit +EXPORT_SYMBOL vmlinux 0x5c84e39d devm_memremap +EXPORT_SYMBOL vmlinux 0x5c989227 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x5c9892c3 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x5cab5d8f pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x5cb026c7 __mdiobus_c45_read EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cceb15c tcp_conn_request EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x5cd6f99b completion_done +EXPORT_SYMBOL vmlinux 0x5cdacaa4 sock_gettstamp EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf56b46 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x5cfe2cc7 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x5cfff693 xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x5d12f3de inet_frag_find EXPORT_SYMBOL vmlinux 0x5d16d8cd radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x5d192931 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x5d19b9d4 inet_select_addr -EXPORT_SYMBOL vmlinux 0x5d223766 tcp_read_done -EXPORT_SYMBOL vmlinux 0x5d32f450 from_kprojid -EXPORT_SYMBOL vmlinux 0x5d428f16 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x5d197baf put_fs_context +EXPORT_SYMBOL vmlinux 0x5d2f4638 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x5d329c7f lookup_one +EXPORT_SYMBOL vmlinux 0x5d3c5a4b mdio_device_create EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d57b826 vm_map_ram -EXPORT_SYMBOL vmlinux 0x5d621a01 framebuffer_release -EXPORT_SYMBOL vmlinux 0x5d675f18 phy_suspend +EXPORT_SYMBOL vmlinux 0x5d632cf4 set_user_nice +EXPORT_SYMBOL vmlinux 0x5d7a58c7 inet_del_offload EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad -EXPORT_SYMBOL vmlinux 0x5d92a3b0 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x5da047ab fs_lookup_param -EXPORT_SYMBOL vmlinux 0x5da504f7 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x5d908c21 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0x5da84b31 unregister_adapter_interrupt -EXPORT_SYMBOL vmlinux 0x5dab82db __filemap_get_folio -EXPORT_SYMBOL vmlinux 0x5defbfd9 audit_log_start -EXPORT_SYMBOL vmlinux 0x5df6399d __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x5dd1bd60 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x5de9e309 vma_alloc_folio EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5dffc045 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x5e01e1bd param_set_ulong +EXPORT_SYMBOL vmlinux 0x5e01fd57 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x5e03341b km_new_mapping EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform EXPORT_SYMBOL vmlinux 0x5e0f6089 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x5e1ef658 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x5e25c4ff security_sctp_assoc_established -EXPORT_SYMBOL vmlinux 0x5e273b8b tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5e1451d2 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x5e2bf720 ccw_device_clear +EXPORT_SYMBOL vmlinux 0x5e2fba55 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x5e359413 input_inject_event EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e44926e kthread_bind -EXPORT_SYMBOL vmlinux 0x5e472204 bdi_alloc -EXPORT_SYMBOL vmlinux 0x5e4ec350 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0x5e54924c dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x5e627cca folio_add_lru -EXPORT_SYMBOL vmlinux 0x5e6b77e0 kbd_ioctl -EXPORT_SYMBOL vmlinux 0x5e83374f security_path_unlink +EXPORT_SYMBOL vmlinux 0x5e4502b8 kill_anon_super +EXPORT_SYMBOL vmlinux 0x5e56f877 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x5e6ecea2 param_get_byte +EXPORT_SYMBOL vmlinux 0x5e78b844 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5e8f4a67 pci_irq_vector EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9fc63c vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x5ea0beaa __put_user_ns EXPORT_SYMBOL vmlinux 0x5ea31004 arch_spin_trylock_retry +EXPORT_SYMBOL vmlinux 0x5eb9c47f devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x5ebab5ad inet_unregister_protosw EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecadd56 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x5ece8cb6 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed8d8a9 crypto_sha256_update EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5eda0fd5 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x5efa6745 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x5f0325a6 devm_register_netdev EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f0e1936 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x5f0fffc9 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x5f112364 __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x5f11c748 nmi_panic -EXPORT_SYMBOL vmlinux 0x5f1a703c security_sb_remount +EXPORT_SYMBOL vmlinux 0x5f1a0b11 would_dump +EXPORT_SYMBOL vmlinux 0x5f1c14a1 tcf_register_action +EXPORT_SYMBOL vmlinux 0x5f23f6eb crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x5f2f8c23 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x5f409b3f open_exec -EXPORT_SYMBOL vmlinux 0x5f488756 generic_perform_write -EXPORT_SYMBOL vmlinux 0x5f52a433 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f574159 phy_driver_unregister -EXPORT_SYMBOL vmlinux 0x5f7eaae1 ccw_device_tm_start_timeout_key -EXPORT_SYMBOL vmlinux 0x5f8b8c8f unix_attach_fds -EXPORT_SYMBOL vmlinux 0x5f8d4115 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x5f9ae346 ip_frag_init -EXPORT_SYMBOL vmlinux 0x5faff3e7 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x5fb3a6ef dev_mc_del -EXPORT_SYMBOL vmlinux 0x5fc74764 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x5fc781b2 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x5f5c52b9 tcp_child_process +EXPORT_SYMBOL vmlinux 0x5f77ac4e invalidate_bdev +EXPORT_SYMBOL vmlinux 0x5f874919 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x5f951bec netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x5fa05fa9 skb_dump +EXPORT_SYMBOL vmlinux 0x5fc11046 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x5fc59dd2 skb_orphan_partial EXPORT_SYMBOL vmlinux 0x5fcddab3 __ashlti3 EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr EXPORT_SYMBOL vmlinux 0x5fd7d9e4 ap_recv +EXPORT_SYMBOL vmlinux 0x5fe3e08c mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x5fe447a9 bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0x5fe5d6b5 configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x5fe60de8 seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x5ff104be pci_find_capability EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x60090d9c tcp_rcv_established EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60201f63 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x6024be36 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604625bb vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x603dc810 skb_queue_head EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x606c1b25 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x607b5197 free_netdev +EXPORT_SYMBOL vmlinux 0x608b1106 vfs_getattr EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x609a77f7 filemap_fault +EXPORT_SYMBOL vmlinux 0x6092155d __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60ad3849 phy_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x60c6ffed pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x60bf1d75 tty_vhangup EXPORT_SYMBOL vmlinux 0x60cf0d39 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x60d27fb8 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x60ec1aa8 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x6103a984 set_capacity +EXPORT_SYMBOL vmlinux 0x60d7d8ee fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x60e6e121 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x60e8569e __debug_sprintf_exception EXPORT_SYMBOL vmlinux 0x6108288f complete_all -EXPORT_SYMBOL vmlinux 0x61251916 simple_release_fs +EXPORT_SYMBOL vmlinux 0x6112c37d proc_create_seq_private EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x6130f66c seq_lseek +EXPORT_SYMBOL vmlinux 0x612e6ffd kernel_param_lock EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x6138fa63 debug_event_common -EXPORT_SYMBOL vmlinux 0x614816dd simple_write_begin -EXPORT_SYMBOL vmlinux 0x61504979 inet_protos +EXPORT_SYMBOL vmlinux 0x614565d3 _dev_err +EXPORT_SYMBOL vmlinux 0x6147d6fa xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x61804de3 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x618cc222 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x6191cf29 dump_skip -EXPORT_SYMBOL vmlinux 0x61a3efc2 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x616bf0f0 bio_put +EXPORT_SYMBOL vmlinux 0x618c7cbc xp_dma_map +EXPORT_SYMBOL vmlinux 0x619473b0 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x61985a87 tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61d08eec blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x61d15f23 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x61de36a7 vfs_unlink +EXPORT_SYMBOL vmlinux 0x61c4b498 phy_device_free +EXPORT_SYMBOL vmlinux 0x61cb9c4c tcp_create_openreq_child EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final -EXPORT_SYMBOL vmlinux 0x61e5669a arp_send EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61fb7304 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x621780cb ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x62206bd6 inet6_protos +EXPORT_SYMBOL vmlinux 0x61eb24d8 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x621816c9 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x621e56fa inet6_ioctl EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x62314d61 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x6249b9b4 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x622a5817 security_sock_graft +EXPORT_SYMBOL vmlinux 0x62327a86 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x62385cf1 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x6238a520 console_start +EXPORT_SYMBOL vmlinux 0x62423bbb dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x624bcff1 load_nls EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq -EXPORT_SYMBOL vmlinux 0x6254403e _dev_alert +EXPORT_SYMBOL vmlinux 0x625a5e9b vfs_fsync +EXPORT_SYMBOL vmlinux 0x625e9c82 dst_release +EXPORT_SYMBOL vmlinux 0x626567dd vm_map_pages EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x627bc1c4 smp_ctl_set_clear_bit -EXPORT_SYMBOL vmlinux 0x627d9ff0 pmdp_xchg_direct -EXPORT_SYMBOL vmlinux 0x62843687 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x628356d6 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62857ae4 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x62a0ae07 inet_listen -EXPORT_SYMBOL vmlinux 0x62a8b938 icmp6_send -EXPORT_SYMBOL vmlinux 0x62bad673 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x62dbf2db __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x62e045a3 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x62ea575f security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x62ec49b2 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x630c636d proc_set_size +EXPORT_SYMBOL vmlinux 0x629197e8 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x62abb402 __seq_open_private +EXPORT_SYMBOL vmlinux 0x62da498c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x62f863df tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x62fc3910 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x62fd5347 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x62fda7c2 drop_nlink EXPORT_SYMBOL vmlinux 0x630cbf2f security_cred_getsecid EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x6323cd31 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x63240d4c elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x633ac577 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x633c0c87 sock_gettstamp -EXPORT_SYMBOL vmlinux 0x633e6581 dcb_setapp -EXPORT_SYMBOL vmlinux 0x636f4208 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x63164b4a pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x63191b60 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x6330e01e unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x633f75f4 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x63639803 page_pool_unlink_napi +EXPORT_SYMBOL vmlinux 0x636aae66 end_buffer_async_write EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb -EXPORT_SYMBOL vmlinux 0x638bf6f4 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x63932f0f dev_mc_sync -EXPORT_SYMBOL vmlinux 0x63936267 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x637d830a jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x63968dde prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x639dd1df sock_create +EXPORT_SYMBOL vmlinux 0x639f31f4 configfs_register_default_group EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a64df9 __SCK__tp_func_s390_cio_msch -EXPORT_SYMBOL vmlinux 0x63a700a0 md_reload_sb EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63a96174 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x63a9f1a2 init_special_inode -EXPORT_SYMBOL vmlinux 0x63aedfd1 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x63b7b1b8 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x63c04403 __skb_checksum -EXPORT_SYMBOL vmlinux 0x63c27223 inet6_release -EXPORT_SYMBOL vmlinux 0x63d069e5 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x63b0d775 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x63cabcd8 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63efc114 tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x640fe1c2 peernet2id +EXPORT_SYMBOL vmlinux 0x63ee12ce vm_mmap +EXPORT_SYMBOL vmlinux 0x63f3ac8b key_revoke +EXPORT_SYMBOL vmlinux 0x6405ba36 current_in_userns +EXPORT_SYMBOL vmlinux 0x640d8b8a jbd2_journal_start EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x64209bb3 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0x644637d7 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0x644ef27d phy_stop +EXPORT_SYMBOL vmlinux 0x6413a527 inet_release +EXPORT_SYMBOL vmlinux 0x6434994a tcp_seq_next +EXPORT_SYMBOL vmlinux 0x64472974 __dev_set_mtu EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x64578ed8 tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x6458f1e7 zstd_init_cstream -EXPORT_SYMBOL vmlinux 0x645cc551 dst_init +EXPORT_SYMBOL vmlinux 0x645a8078 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x64755be9 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x6476d761 dm_table_get_size EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x648565b0 clear_inode +EXPORT_SYMBOL vmlinux 0x648b51ea sg_miter_start EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x6492c270 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x649504d1 pci_dev_put -EXPORT_SYMBOL vmlinux 0x649feb24 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x64a874d1 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu -EXPORT_SYMBOL vmlinux 0x64c53700 bdi_unregister -EXPORT_SYMBOL vmlinux 0x64fdb0ce mdiobus_write +EXPORT_SYMBOL vmlinux 0x64ae6fd2 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x64da6351 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x6508c0d5 truncate_pagecache EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651a4139 test_taint -EXPORT_SYMBOL vmlinux 0x651de31b scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x65389d75 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x652cde1d dev_trans_start EXPORT_SYMBOL vmlinux 0x653b992c raw3270_activate_view EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6553be20 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x6569f863 __dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x656a11bb would_dump +EXPORT_SYMBOL vmlinux 0x6553c1f8 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x6565fc8c input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x6593752a pcim_iomap EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a49ddd iunique -EXPORT_SYMBOL vmlinux 0x65ae6f36 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end EXPORT_SYMBOL vmlinux 0x65e6d82a security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x65f07fce block_dirty_folio +EXPORT_SYMBOL vmlinux 0x65f96be3 udp_seq_next EXPORT_SYMBOL vmlinux 0x66027704 mtree_store +EXPORT_SYMBOL vmlinux 0x66087cf4 phy_device_create +EXPORT_SYMBOL vmlinux 0x6610e077 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x66117743 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x6620fe59 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x6623f2e3 vmalloc_array -EXPORT_SYMBOL vmlinux 0x662ea4ad dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x665adabf udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x665cb3c7 pci_release_regions +EXPORT_SYMBOL vmlinux 0x66279bce tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x66302546 km_policy_notify +EXPORT_SYMBOL vmlinux 0x664f0e29 register_console EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x665f5eb4 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x66624e39 logfc EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666a18a5 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x668684b0 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x669247fc dma_alloc_attrs EXPORT_SYMBOL vmlinux 0x66987888 dma_fence_init +EXPORT_SYMBOL vmlinux 0x669a5f49 vm_insert_pages EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x669d0672 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x66aa1529 vmap -EXPORT_SYMBOL vmlinux 0x66e08b7a mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x66a520d9 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x66afd14e tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x66b82607 file_update_time +EXPORT_SYMBOL vmlinux 0x66ba0ea5 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x66c3aecf tcp_peek_len +EXPORT_SYMBOL vmlinux 0x66c8a2ce get_task_cred +EXPORT_SYMBOL vmlinux 0x66e47f54 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit -EXPORT_SYMBOL vmlinux 0x66fe2a74 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x66fe865b zstd_cstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x671bc3c7 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x670eb137 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x672144bd strlcpy -EXPORT_SYMBOL vmlinux 0x6731b794 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x67444ef4 simple_setattr +EXPORT_SYMBOL vmlinux 0x672545a7 peernet2id +EXPORT_SYMBOL vmlinux 0x6726e0ee sk_ns_capable EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x675c4c01 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x674b2032 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x6758688f __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x675f183e dma_map_page_attrs EXPORT_SYMBOL vmlinux 0x676155ff dotdot_name -EXPORT_SYMBOL vmlinux 0x6772710b pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x67745bf8 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6764db13 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x676d93b8 blkdev_put EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x6790e065 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x679365dc hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x67938b5b tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x67aa2e03 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x67ab8641 genphy_c45_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x67c7d318 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x67bea7d9 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x67beca11 param_set_hexint +EXPORT_SYMBOL vmlinux 0x67c2ad0a unlock_page +EXPORT_SYMBOL vmlinux 0x67d6b209 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x67e2272e refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x67e66ed1 scsi_device_get -EXPORT_SYMBOL vmlinux 0x67ff7b74 blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0x68210e8c page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x6825b2f7 current_in_userns -EXPORT_SYMBOL vmlinux 0x686c51d8 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x6875e551 skb_seq_read -EXPORT_SYMBOL vmlinux 0x687ee87a file_modified -EXPORT_SYMBOL vmlinux 0x6883242d jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x68855cfc noop_dirty_folio -EXPORT_SYMBOL vmlinux 0x68863d0a load_nls -EXPORT_SYMBOL vmlinux 0x688be12c __skb_get_hash -EXPORT_SYMBOL vmlinux 0x68974c0c __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x67e8f7e9 setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x6824373d fiemap_prep +EXPORT_SYMBOL vmlinux 0x6848d8eb xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x6899ff1d md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x689c2ded tcf_idr_search +EXPORT_SYMBOL vmlinux 0x68bf0c16 init_special_inode EXPORT_SYMBOL vmlinux 0x68cb33c0 gen_pool_virt_to_phys -EXPORT_SYMBOL vmlinux 0x68dd526a inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x68f11788 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x69097457 crc32_be -EXPORT_SYMBOL vmlinux 0x690974d5 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x6912a379 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x692ba49d dma_fence_describe -EXPORT_SYMBOL vmlinux 0x6932c0cf md_check_recovery -EXPORT_SYMBOL vmlinux 0x69664691 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x692740f5 mdiobus_free +EXPORT_SYMBOL vmlinux 0x6956ef4d inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x6967d9da vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x6968bb9b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x696f338c __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and -EXPORT_SYMBOL vmlinux 0x69873c8d param_set_uint -EXPORT_SYMBOL vmlinux 0x698d33c1 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0x6991fd32 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x69c6ae90 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x69e7962d flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x69d55d4f __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x69d7618e fb_find_mode +EXPORT_SYMBOL vmlinux 0x69da9dcc input_register_handler +EXPORT_SYMBOL vmlinux 0x69dd9338 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x69f4bc19 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a09e86e tcp_ioctl -EXPORT_SYMBOL vmlinux 0x6a3ca10d dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x6a431860 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x6a094912 retire_super +EXPORT_SYMBOL vmlinux 0x6a0cb05a inet_bind +EXPORT_SYMBOL vmlinux 0x6a2aea4d generic_buffers_fsync +EXPORT_SYMBOL vmlinux 0x6a2cf4b2 phy_queue_state_machine EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5dab6b __folio_lock EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a62e0b3 param_set_charp EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a7b9d62 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x6a8c5af4 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x6a9d43cc fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x6a73494d block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6a84fae5 __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x6ab23aa1 load_fpu_regs -EXPORT_SYMBOL vmlinux 0x6ab69895 ccw_device_is_multipath -EXPORT_SYMBOL vmlinux 0x6ae9c507 netif_device_detach -EXPORT_SYMBOL vmlinux 0x6aebbed9 wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0x6ac33fd2 scsi_device_put +EXPORT_SYMBOL vmlinux 0x6ac729c7 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x6adbdacf pci_dev_get +EXPORT_SYMBOL vmlinux 0x6ae49feb __mdiobus_c45_write EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b0bd89b mdio_driver_register +EXPORT_SYMBOL vmlinux 0x6b0a495b nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x6b13dbc1 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x6b141666 input_match_device_id +EXPORT_SYMBOL vmlinux 0x6b21a9a7 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x6b241c0e t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b3bd94b sk_common_release -EXPORT_SYMBOL vmlinux 0x6b3db7fa sockopt_lock_sock -EXPORT_SYMBOL vmlinux 0x6b49c216 kern_path_create +EXPORT_SYMBOL vmlinux 0x6b44f885 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x6b462d32 md_integrity_register +EXPORT_SYMBOL vmlinux 0x6b4a2300 sock_kmalloc EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5858e4 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x6b75cd01 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x6b6eda9a tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list EXPORT_SYMBOL vmlinux 0x6b8d2325 s390_epoch_delta_notifier -EXPORT_SYMBOL vmlinux 0x6b952b5e dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x6b999165 generic_read_dir +EXPORT_SYMBOL vmlinux 0x6b9229fe reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x6bac671b __crc32c_le EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bc6075d vfs_create_mount -EXPORT_SYMBOL vmlinux 0x6bd028fc sock_bind_add -EXPORT_SYMBOL vmlinux 0x6bd0b99e gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0x6bd8cc5e scsi_device_resume -EXPORT_SYMBOL vmlinux 0x6bdb8b8b nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x6bec5cdc scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x6beda13a skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0x6bf74709 netdev_alert +EXPORT_SYMBOL vmlinux 0x6bd42eed gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x6bd8b0cc __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x6be45e55 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0x6bfe1653 iucv_message_receive -EXPORT_SYMBOL vmlinux 0x6c02921d generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x6c01f60f md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x6c041e19 __xa_insert -EXPORT_SYMBOL vmlinux 0x6c1a82cc xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x6c21caef xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x6c39f226 d_exact_alias -EXPORT_SYMBOL vmlinux 0x6c4e551a trace_event_printf +EXPORT_SYMBOL vmlinux 0x6c1631fe cdev_alloc +EXPORT_SYMBOL vmlinux 0x6c19f829 key_put +EXPORT_SYMBOL vmlinux 0x6c5618c8 security_inode_invalidate_secctx EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c95ff60 brioctl_set -EXPORT_SYMBOL vmlinux 0x6ca12252 skb_store_bits -EXPORT_SYMBOL vmlinux 0x6cb437ad tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x6c8505c1 simple_setattr +EXPORT_SYMBOL vmlinux 0x6c963afe kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x6cab20d6 inet6_offloads EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc50fd9 unregister_service_level EXPORT_SYMBOL vmlinux 0x6ccc34dd sort +EXPORT_SYMBOL vmlinux 0x6cd58ebd fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x6cdc910a page_pool_get_stats EXPORT_SYMBOL vmlinux 0x6cf192df kvrealloc -EXPORT_SYMBOL vmlinux 0x6cf817b6 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x6d04f4a2 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x6cf5f6a8 phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat -EXPORT_SYMBOL vmlinux 0x6d21b4be netlink_ns_capable EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d299530 ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x6d31bd22 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x6d5456d7 crypto_sha3_update EXPORT_SYMBOL vmlinux 0x6d67762b tccb_add_dcw -EXPORT_SYMBOL vmlinux 0x6d695434 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x6d6d8948 folio_end_writeback -EXPORT_SYMBOL vmlinux 0x6d6f9dc8 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x6d7afd89 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x6d7c4fd0 kmem_cache_size EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d88e1dc dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x6db09038 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x6db6468b pci_assign_resource EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dc56f3d skb_queue_tail -EXPORT_SYMBOL vmlinux 0x6dc6b9f5 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x6dc78784 param_ops_uint +EXPORT_SYMBOL vmlinux 0x6dc8de6b stop_tty EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null -EXPORT_SYMBOL vmlinux 0x6de849d7 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x6dd64bc3 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df31b92 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x6dfbb43e dma_resv_init EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc -EXPORT_SYMBOL vmlinux 0x6e05a83d device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0x6e1f18d6 dquot_operations +EXPORT_SYMBOL vmlinux 0x6e01312c d_alloc_anon +EXPORT_SYMBOL vmlinux 0x6e10236e gro_cells_init +EXPORT_SYMBOL vmlinux 0x6e196f7a sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x6e2da197 arch_read_lock_wait -EXPORT_SYMBOL vmlinux 0x6e33e79e scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x6e528441 generic_permission -EXPORT_SYMBOL vmlinux 0x6e52a605 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x6e573521 raw3270_reset -EXPORT_SYMBOL vmlinux 0x6e5f6f51 ccw_device_start_key -EXPORT_SYMBOL vmlinux 0x6e6356a4 flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e827550 pci_find_next_bus EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature -EXPORT_SYMBOL vmlinux 0x6e9b11be xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x6e9b0a1e neigh_xmit EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put -EXPORT_SYMBOL vmlinux 0x6ea5896c handshake_req_private -EXPORT_SYMBOL vmlinux 0x6ea8ce6c noop_fsync EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eade949 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0x6eafc686 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x6ec09bc5 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x6ed55f7d ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x6ecabeb1 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0x6ed8a016 raw3270_request_free -EXPORT_SYMBOL vmlinux 0x6edd3c63 init_pseudo -EXPORT_SYMBOL vmlinux 0x6ef195f2 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0x6ef65b7f __devm_request_region +EXPORT_SYMBOL vmlinux 0x6ee82173 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x6ee855c6 config_item_set_name EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node -EXPORT_SYMBOL vmlinux 0x6f101c20 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x6f024230 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x6f030172 xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock EXPORT_SYMBOL vmlinux 0x6f20e8a0 nla_strscpy +EXPORT_SYMBOL vmlinux 0x6f213717 dcache_readdir +EXPORT_SYMBOL vmlinux 0x6f253e9f netif_tx_lock EXPORT_SYMBOL vmlinux 0x6f36ccb1 prepare_creds +EXPORT_SYMBOL vmlinux 0x6f376335 __insert_inode_hash EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove -EXPORT_SYMBOL vmlinux 0x6f41f6f6 netdev_change_features -EXPORT_SYMBOL vmlinux 0x6f441edd register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x6f4cc62c mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x6f51169c __dev_get_by_name EXPORT_SYMBOL vmlinux 0x6f53043d wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x6f5bbc97 register_fib_notifier EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv -EXPORT_SYMBOL vmlinux 0x6f6b4ca5 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x6f5fe374 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x6f659441 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x6f7240bb vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x6f79375c mempool_free -EXPORT_SYMBOL vmlinux 0x6f9543bc pci_map_rom -EXPORT_SYMBOL vmlinux 0x6f9a001b ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x6fa2e58f inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x6fa54248 audit_log +EXPORT_SYMBOL vmlinux 0x6fab178a phy_free_interrupt EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fd96638 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x6fc3ec82 jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7007997f netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x701266bb inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x70141619 ccw_device_get_path_mask EXPORT_SYMBOL vmlinux 0x70336943 xa_set_mark -EXPORT_SYMBOL vmlinux 0x7057e3c7 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x7058e020 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x706423e0 get_pgste EXPORT_SYMBOL vmlinux 0x70667f89 __tracepoint_s390_diagnose -EXPORT_SYMBOL vmlinux 0x706883dc f_setown -EXPORT_SYMBOL vmlinux 0x706d27d1 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x707ad4eb vfs_readlink -EXPORT_SYMBOL vmlinux 0x709dc52c param_array_ops +EXPORT_SYMBOL vmlinux 0x707357ba tty_port_open +EXPORT_SYMBOL vmlinux 0x70796a53 md_reload_sb +EXPORT_SYMBOL vmlinux 0x7084ae26 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x709a7362 pci_release_regions EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x70d45ce4 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x70db16dc eth_mac_addr -EXPORT_SYMBOL vmlinux 0x70e90035 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x70aca056 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x70c1b6df dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x70cd7d3f pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size -EXPORT_SYMBOL vmlinux 0x7104ae1e tty_vhangup -EXPORT_SYMBOL vmlinux 0x710a3b3a ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x711e1491 ap_perms EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x71210532 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x713091d2 unlock_buffer -EXPORT_SYMBOL vmlinux 0x71382515 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load -EXPORT_SYMBOL vmlinux 0x7152a9d7 set_binfmt EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x716785a1 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x715af1d6 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x7161998b devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x716ff52f vmemmap EXPORT_SYMBOL vmlinux 0x7171121c overflowgid EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x718f5e17 proc_do_large_bitmap EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b29045 tcp_connect -EXPORT_SYMBOL vmlinux 0x71beef40 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x71cfaead scsi_print_command -EXPORT_SYMBOL vmlinux 0x71d1ad15 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x71f18a86 input_grab_device -EXPORT_SYMBOL vmlinux 0x71f7330c phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x71f9c203 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x71acf02c seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x71b0ac46 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x71bf89dc flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x71dab106 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x71de10a1 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x71f0d1ea inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x71fc1437 dquot_quota_sync EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x72119f30 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x72260716 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x720ec953 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x7213d690 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x72227e33 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0x72297f25 __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x723f0e1d d_rehash +EXPORT_SYMBOL vmlinux 0x7241c2fb xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x7242e96d strnchr -EXPORT_SYMBOL vmlinux 0x7247e680 pci_get_device -EXPORT_SYMBOL vmlinux 0x724825ef pci_release_resource -EXPORT_SYMBOL vmlinux 0x725bd0b1 ip6_xmit -EXPORT_SYMBOL vmlinux 0x725fc8a1 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x7262481f security_dentry_init_security EXPORT_SYMBOL vmlinux 0x726ac332 regset_get -EXPORT_SYMBOL vmlinux 0x726db525 drop_super -EXPORT_SYMBOL vmlinux 0x72771819 seq_read -EXPORT_SYMBOL vmlinux 0x729443a2 seq_dentry -EXPORT_SYMBOL vmlinux 0x729c19a8 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x72b45573 inc_nlink +EXPORT_SYMBOL vmlinux 0x72adcfb1 finish_no_open EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c28188 seq_escape_mem EXPORT_SYMBOL vmlinux 0x72da70e2 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x72e89972 tty_port_carrier_raised EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv -EXPORT_SYMBOL vmlinux 0x730b1c4e blk_execute_rq -EXPORT_SYMBOL vmlinux 0x732bf8a9 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x731753db dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x73244596 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x73296265 vfs_get_fsid EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7376784e netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x73808788 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x7345f3e0 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x7348f033 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x736a5188 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0x737ab513 pci_enable_msi EXPORT_SYMBOL vmlinux 0x7380dffa argv_split EXPORT_SYMBOL vmlinux 0x7389706a __memset16 -EXPORT_SYMBOL vmlinux 0x7393eec1 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x7395d227 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x739e197d page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc -EXPORT_SYMBOL vmlinux 0x73cafec2 key_invalidate -EXPORT_SYMBOL vmlinux 0x73eb6d49 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x73cb085b skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x73ce574d page_pool_create +EXPORT_SYMBOL vmlinux 0x73dc10f8 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x73dcb54c xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x73e77f50 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x73f51925 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x74029e86 sync_blockdev +EXPORT_SYMBOL vmlinux 0x740436d2 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x74634781 sock_create_lite -EXPORT_SYMBOL vmlinux 0x74709a6f alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x7456a2ab discard_new_inode +EXPORT_SYMBOL vmlinux 0x7463a78b set_page_dirty_lock EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init EXPORT_SYMBOL vmlinux 0x74819541 raw3270_request_set_idal EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748756f8 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0x7490eaeb file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x74ae8a7c dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x74a5d638 ip_options_compile +EXPORT_SYMBOL vmlinux 0x74bd9791 skb_copy_expand EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c6d7ce is_free_buddy_page EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x74da16a0 __dquot_alloc_space EXPORT_SYMBOL vmlinux 0x74dae967 proc_dointvec -EXPORT_SYMBOL vmlinux 0x74daf8e4 textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x74dc4410 __inc_node_page_state -EXPORT_SYMBOL vmlinux 0x74deaa1d __f_setown EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x75068806 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x750c0942 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x7536779e key_link -EXPORT_SYMBOL vmlinux 0x7550efd0 register_console -EXPORT_SYMBOL vmlinux 0x75589fba pci_enable_wake -EXPORT_SYMBOL vmlinux 0x7578f14b netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x7586e380 block_write_begin -EXPORT_SYMBOL vmlinux 0x75892f17 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x75920c67 kill_anon_super -EXPORT_SYMBOL vmlinux 0x75970433 scmd_printk +EXPORT_SYMBOL vmlinux 0x7500572d phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x7510e480 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x7511991b kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x751bb53d vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x752c4798 d_drop +EXPORT_SYMBOL vmlinux 0x754bcff9 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x754cf14c generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x756fe0d2 bioset_init +EXPORT_SYMBOL vmlinux 0x75773d11 fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 -EXPORT_SYMBOL vmlinux 0x759bf705 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x759f92aa finish_open -EXPORT_SYMBOL vmlinux 0x75b624d5 dev_addr_mod EXPORT_SYMBOL vmlinux 0x75b9cf29 hsch EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75bf5f28 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x75c3b7f9 napi_disable -EXPORT_SYMBOL vmlinux 0x75ca1225 ccw_device_start_timeout_key EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75e89c38 skb_copy_header -EXPORT_SYMBOL vmlinux 0x75eae0a2 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x7601fccb __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x75d7ecdc dev_deactivate +EXPORT_SYMBOL vmlinux 0x75ede3ec __devm_request_region +EXPORT_SYMBOL vmlinux 0x7603bc41 sk_error_report EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x761dd5d5 flow_block_cb_incref EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x7629ce2e blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x763ad0d2 set_anon_super +EXPORT_SYMBOL vmlinux 0x76363184 __d_lookup_unhash_wake EXPORT_SYMBOL vmlinux 0x76426845 strncpy_from_user EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x7656de6d dma_fence_array_create EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x766d7050 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x767f43de textsearch_register -EXPORT_SYMBOL vmlinux 0x76822397 bpf_map_get +EXPORT_SYMBOL vmlinux 0x7670b881 simple_recursive_removal EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x7695cf1e genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x769624af __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76aaa8a3 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x76c28d9b unpin_user_pages -EXPORT_SYMBOL vmlinux 0x76cce468 sock_rfree +EXPORT_SYMBOL vmlinux 0x76b615cc netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x76bb3dfd tty_port_destroy EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76e0017f md_update_sb -EXPORT_SYMBOL vmlinux 0x76e2c151 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x76efd0e7 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x77048b10 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x7712a664 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x771aba8b __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7719aaf3 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x7719c401 phy_driver_unregister EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL vmlinux 0x772f9e6b iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x77315dcb reset_guest_reference_bit EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x77394d40 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x773d28d5 mdio_device_create -EXPORT_SYMBOL vmlinux 0x773f5b6e key_put +EXPORT_SYMBOL vmlinux 0x773b76ec pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x7740a8bb __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x7755eef0 vfs_path_parent_lookup -EXPORT_SYMBOL vmlinux 0x77597101 freeze_super +EXPORT_SYMBOL vmlinux 0x77559a1b phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 -EXPORT_SYMBOL vmlinux 0x777f1d8c block_dirty_folio -EXPORT_SYMBOL vmlinux 0x7789b11a eth_header -EXPORT_SYMBOL vmlinux 0x778acf4d jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x778e27ff __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x7790d7a6 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x779f5bbd phy_get_eee_err -EXPORT_SYMBOL vmlinux 0x77b09e3b mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x7774427e phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x7775dff5 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x778245b6 param_get_uint +EXPORT_SYMBOL vmlinux 0x778d391e skb_split +EXPORT_SYMBOL vmlinux 0x77a262c5 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x77a7cfc1 neigh_lookup +EXPORT_SYMBOL vmlinux 0x77a81876 inode_query_iversion EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77de8e7e fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x77e5e278 dqput +EXPORT_SYMBOL vmlinux 0x77db6ab1 vfs_mknod +EXPORT_SYMBOL vmlinux 0x77e3a1b5 dqget EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt EXPORT_SYMBOL vmlinux 0x77f37c74 __put_cred -EXPORT_SYMBOL vmlinux 0x77f7bbe2 filemap_get_folios_tag -EXPORT_SYMBOL vmlinux 0x7804b193 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x78237e81 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif -EXPORT_SYMBOL vmlinux 0x784f673f tls_server_hello_x509 -EXPORT_SYMBOL vmlinux 0x785088fc netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x784a62e4 ccw_device_get_ciw EXPORT_SYMBOL vmlinux 0x78569adf ida_alloc_range -EXPORT_SYMBOL vmlinux 0x785da439 netdev_features_change -EXPORT_SYMBOL vmlinux 0x786c9b61 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x787883cb blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x785d20f3 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x7861db8f md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x788eb045 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x789a4977 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b0264c d_invalidate +EXPORT_SYMBOL vmlinux 0x78a3d730 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x78a7e6f1 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x78ab1d15 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c3858b vfs_setpos +EXPORT_SYMBOL vmlinux 0x78c8ad08 __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78e7a702 __lock_sock_fast EXPORT_SYMBOL vmlinux 0x78f1475a __traceiter_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0x78f48504 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x79054eac dev_get_flags +EXPORT_SYMBOL vmlinux 0x7914c9b6 neigh_parms_release EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x794e6b84 sock_no_getname -EXPORT_SYMBOL vmlinux 0x795f28e1 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x791ab9d0 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x791ba39f ccw_device_start +EXPORT_SYMBOL vmlinux 0x791beb5f fs_param_is_string +EXPORT_SYMBOL vmlinux 0x792e73e3 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x7931dac1 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x79475c62 d_alloc_name +EXPORT_SYMBOL vmlinux 0x7959264b mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x7970ef55 swake_up_locked -EXPORT_SYMBOL vmlinux 0x79993ed9 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0x799f8028 param_set_invbool -EXPORT_SYMBOL vmlinux 0x79a8dce5 inode_init_always -EXPORT_SYMBOL vmlinux 0x79ab6c40 get_fs_type -EXPORT_SYMBOL vmlinux 0x79bd9a32 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x79c2f941 genphy_c45_eee_is_active +EXPORT_SYMBOL vmlinux 0x7979e1a2 set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x798dde96 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x79b08d5b dev_change_flags EXPORT_SYMBOL vmlinux 0x79cd6498 down_write_killable -EXPORT_SYMBOL vmlinux 0x79dd2329 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x79ede5fa tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0x79eecf0d kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x7a0bac9b security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x7a1504ea generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x7a01c271 __netif_napi_del EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a25d4ec init_task EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a4f0bb1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x7a4243ef in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a5b73e0 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x7a5ec8a7 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x7a63eb80 skb_dump -EXPORT_SYMBOL vmlinux 0x7a731d4a inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x7a74b901 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x7a54e775 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x7a638de4 audit_log_start +EXPORT_SYMBOL vmlinux 0x7a70fa11 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register -EXPORT_SYMBOL vmlinux 0x7a8295d2 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x7a8c5924 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x7a8e3e8c bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7a940f01 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9e2ff7 tcp_md5_do_add EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7ab94d50 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x7aaebf17 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x7ab13c7e tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x7ab3d44b netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x7aba52c0 vfs_parse_monolithic_sep EXPORT_SYMBOL vmlinux 0x7aca8b9f klp_sched_try_switch_key EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7aec478b scsi_device_lookup EXPORT_SYMBOL vmlinux 0x7aecd2e3 diag8c -EXPORT_SYMBOL vmlinux 0x7afba940 touch_atime -EXPORT_SYMBOL vmlinux 0x7b0c2cd6 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x7b0f49a9 __folio_put +EXPORT_SYMBOL vmlinux 0x7afebeaf key_instantiate_and_link EXPORT_SYMBOL vmlinux 0x7b10ba97 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x7b1adc61 skb_ext_add -EXPORT_SYMBOL vmlinux 0x7b1b3908 get_watch_queue -EXPORT_SYMBOL vmlinux 0x7b34aaf0 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b3a2123 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x7b4559a5 tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x7b48b88d pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x7b52a999 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x7b3b289f pci_read_vpd +EXPORT_SYMBOL vmlinux 0x7b4136a8 mount_nodev +EXPORT_SYMBOL vmlinux 0x7b4412de __napi_schedule +EXPORT_SYMBOL vmlinux 0x7b49b743 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x7b5927d1 proc_mkdir EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b5b04c3 zpool_unregister_driver EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b615125 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x7b76d0b3 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x7b86136d drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x7b8f0424 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x7b91a7ce arp_create -EXPORT_SYMBOL vmlinux 0x7ba52913 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x7b5c5e7d insert_inode_locked +EXPORT_SYMBOL vmlinux 0x7b634776 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x7b7487f2 pci_choose_state +EXPORT_SYMBOL vmlinux 0x7b99a01e seq_open_private EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc20558 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x7bd3a414 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x7bd56b18 follow_pfn +EXPORT_SYMBOL vmlinux 0x7bcff7b8 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x7bd51990 dst_dev_put EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain -EXPORT_SYMBOL vmlinux 0x7bd9ac16 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x7bde35a6 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x7bfdbdb1 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x7c09703d blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x7c0cdb11 page_mapping EXPORT_SYMBOL vmlinux 0x7c14f503 gen_pool_dma_alloc EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c1e3e40 pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x7c3e13f5 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x7c4cb86e cdrom_open +EXPORT_SYMBOL vmlinux 0x7c3336b5 scsi_rescan_device EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate -EXPORT_SYMBOL vmlinux 0x7c5f851a phy_device_remove -EXPORT_SYMBOL vmlinux 0x7c77bd92 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x7c85db2b security_path_mknod +EXPORT_SYMBOL vmlinux 0x7c9c5542 sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7ca07732 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x7ca9ed62 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x7cac7902 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x7cba5ada phy_get_pause -EXPORT_SYMBOL vmlinux 0x7cd6e4cc bio_split_to_limits -EXPORT_SYMBOL vmlinux 0x7cdce605 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x7cb783bd skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x7cce4b7a xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x7cd7f48b __pci_register_driver EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid -EXPORT_SYMBOL vmlinux 0x7ce45a05 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x7ce93615 fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x7cef085f kthread_create_on_cpu EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d05616f inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d1419e0 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x7d178561 proc_dostring -EXPORT_SYMBOL vmlinux 0x7d204ad5 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d2cf9af iov_iter_npages +EXPORT_SYMBOL vmlinux 0x7d43ee62 notify_change EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d522361 mempool_create_node -EXPORT_SYMBOL vmlinux 0x7d7835ff qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x7d7b3ec8 pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x7d85a295 param_ops_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x7d8bbec3 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x7d93b8e9 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0x7da4a010 freeze_bdev +EXPORT_SYMBOL vmlinux 0x7d6d21fb cdrom_release +EXPORT_SYMBOL vmlinux 0x7d72c576 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dbf8556 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable -EXPORT_SYMBOL vmlinux 0x7dde7696 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x7de2b4be dev_mc_add -EXPORT_SYMBOL vmlinux 0x7dea5f18 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7dc71ea6 mdio_device_register +EXPORT_SYMBOL vmlinux 0x7dd53646 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x7ddcfef4 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x7deb903f inc_node_page_state EXPORT_SYMBOL vmlinux 0x7dec65ff mempool_init +EXPORT_SYMBOL vmlinux 0x7df81c1c inet_offloads +EXPORT_SYMBOL vmlinux 0x7df82069 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x7e09ea42 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e427c51 make_kprojid -EXPORT_SYMBOL vmlinux 0x7e66ca9d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x7e34d6ad ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x7e37d9d9 km_query +EXPORT_SYMBOL vmlinux 0x7e3fc47e __ip_select_ident +EXPORT_SYMBOL vmlinux 0x7e6459b5 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x7e7c1d37 locks_free_lock EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt -EXPORT_SYMBOL vmlinux 0x7eb2f70f generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x7eb6ac4e pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x7ec3736e no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x7e83d8c3 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x7ea3a2a5 flow_rule_match_mpls EXPORT_SYMBOL vmlinux 0x7ec9a413 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x7eeba237 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x7ed6a837 vm_insert_page +EXPORT_SYMBOL vmlinux 0x7ee0da85 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x7ef2d519 vfs_link EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f081210 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x7f0d4845 inet_register_protosw EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f25353a simple_pin_fs -EXPORT_SYMBOL vmlinux 0x7f277c75 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x7f3c5ee0 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x7f4c565b add_wait_queue +EXPORT_SYMBOL vmlinux 0x7f4cbbcb dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table -EXPORT_SYMBOL vmlinux 0x7f64feec blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x7f6e8326 elv_rb_del EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable EXPORT_SYMBOL vmlinux 0x7f801c54 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x7f81fa91 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x7f96ef8c clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x7fb4bdf7 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x7fca6ec8 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7faa8390 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fec59dc inet_add_offload -EXPORT_SYMBOL vmlinux 0x7ff0fe04 ethtool_aggregate_mac_stats -EXPORT_SYMBOL vmlinux 0x80069e6a debug_register -EXPORT_SYMBOL vmlinux 0x8006c6ac iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x800ffb55 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x80170274 pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0x8018e200 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7ff89b0a security_path_unlink +EXPORT_SYMBOL vmlinux 0x800fe9f2 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x802d219f rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x80397fa4 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8043cbda kernel_read EXPORT_SYMBOL vmlinux 0x8053525a sclp_register +EXPORT_SYMBOL vmlinux 0x80536f86 devm_pci_remap_cfgspace EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x80588c84 call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x80680149 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x80a71a4e nf_ct_attach +EXPORT_SYMBOL vmlinux 0x80873546 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x80a312a8 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x80a6819f input_unregister_handle +EXPORT_SYMBOL vmlinux 0x80ab5516 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x80aec3d1 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x80bcc4b0 submit_bio_wait EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80d414bf sk_stop_timer EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80f57b89 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x80fa2d67 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x80ec58dd tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x80f8265a dev_add_pack +EXPORT_SYMBOL vmlinux 0x80ff886c udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x810e0e3d tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8114e885 fqdir_exit EXPORT_SYMBOL vmlinux 0x81164daa __SCK__tp_func_s390_cio_rsch -EXPORT_SYMBOL vmlinux 0x81190622 locks_free_lock EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback -EXPORT_SYMBOL vmlinux 0x812e1eab register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x812d7cb9 pci_dev_put EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update -EXPORT_SYMBOL vmlinux 0x813131e1 inet_frags_init +EXPORT_SYMBOL vmlinux 0x813035dd skb_eth_pop EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8163683f skb_put +EXPORT_SYMBOL vmlinux 0x8164bff1 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x8178b664 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user -EXPORT_SYMBOL vmlinux 0x818ce351 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x819da3c4 tcf_action_set_ctrlact -EXPORT_SYMBOL vmlinux 0x819f7d71 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x818f10fc iterate_fd +EXPORT_SYMBOL vmlinux 0x8194318d netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a39c93 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0x81a58001 mempool_init_node -EXPORT_SYMBOL vmlinux 0x81abb07a security_path_rename +EXPORT_SYMBOL vmlinux 0x81ad478b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x81ae7c9b iput +EXPORT_SYMBOL vmlinux 0x81b01ae1 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0x81b433f2 down -EXPORT_SYMBOL vmlinux 0x81b82860 inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0x81c1e347 jbd2_journal_load EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x81c9e3f9 scsi_report_device_reset EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset -EXPORT_SYMBOL vmlinux 0x81f0d435 module_refcount -EXPORT_SYMBOL vmlinux 0x81f2e6fa __mod_lruvec_page_state -EXPORT_SYMBOL vmlinux 0x81f83ab4 put_fs_context -EXPORT_SYMBOL vmlinux 0x81fad0a6 configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0x8222579a blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x8233f13e bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x82427d21 key_task_permission -EXPORT_SYMBOL vmlinux 0x82591fe4 release_sock -EXPORT_SYMBOL vmlinux 0x82623253 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x826e14a5 request_firmware -EXPORT_SYMBOL vmlinux 0x82b1f4c1 param_get_long -EXPORT_SYMBOL vmlinux 0x82c61925 proto_unregister +EXPORT_SYMBOL vmlinux 0x81ddbbd6 load_nls_default +EXPORT_SYMBOL vmlinux 0x81f26a83 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x82135d4f scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x823830f7 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x8245eac1 pin_user_pages +EXPORT_SYMBOL vmlinux 0x82598b76 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x8268ee07 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x82780aa8 ap_queue_init_state +EXPORT_SYMBOL vmlinux 0x828a8444 skb_seq_read +EXPORT_SYMBOL vmlinux 0x8298fc9a eth_header_parse +EXPORT_SYMBOL vmlinux 0x82a1eea0 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x82a2330e simple_release_fs EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d042b4 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x82dcfd3b tcf_idr_create +EXPORT_SYMBOL vmlinux 0x82dfdb14 unlock_rename +EXPORT_SYMBOL vmlinux 0x82e82a4c skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f2b1a3 nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x8322149b configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x830b086a path_has_submounts +EXPORT_SYMBOL vmlinux 0x8339635e ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x83469131 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x834a3ba3 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x83525d66 pci_find_capability +EXPORT_SYMBOL vmlinux 0x8352abee sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x83845a4e d_alloc_name -EXPORT_SYMBOL vmlinux 0x838934ee d_tmpfile +EXPORT_SYMBOL vmlinux 0x835e94d2 do_splice_direct +EXPORT_SYMBOL vmlinux 0x8376a9f3 fs_bio_set +EXPORT_SYMBOL vmlinux 0x838063bd flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x8387ed75 elv_rb_find EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838e7496 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x83a37519 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x83b16783 remove_arg_zero EXPORT_SYMBOL vmlinux 0x83bdb3e1 gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0x83bebc43 padata_do_serial -EXPORT_SYMBOL vmlinux 0x83e3d3ca _dev_err -EXPORT_SYMBOL vmlinux 0x83fa830f flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x83e82754 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x83f8cb3c import_iovec +EXPORT_SYMBOL vmlinux 0x83fefb35 skb_push EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free -EXPORT_SYMBOL vmlinux 0x840e11bd get_tree_bdev -EXPORT_SYMBOL vmlinux 0x8412eecf ccw_device_tm_intrg -EXPORT_SYMBOL vmlinux 0x84313a70 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x8459c842 __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8473e98b buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0x84796ac8 con_copy_unimap -EXPORT_SYMBOL vmlinux 0x847a0ebc vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x840a9d7d mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x8415dd84 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x84203611 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x842637e6 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x84272c8e km_report +EXPORT_SYMBOL vmlinux 0x8429da1d tcf_idr_release +EXPORT_SYMBOL vmlinux 0x8445a7a0 copy_splice_read +EXPORT_SYMBOL vmlinux 0x844d22da pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x845ad6c0 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x846e4ad5 eth_validate_addr EXPORT_SYMBOL vmlinux 0x84872f7a dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x84899679 bio_chain +EXPORT_SYMBOL vmlinux 0x84955171 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0x8499b061 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x849ea7ca from_kgid_munged EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84a4b0ee netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x84cb699b vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 -EXPORT_SYMBOL vmlinux 0x84e3f5d4 dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0x851b84f9 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel -EXPORT_SYMBOL vmlinux 0x8542ce70 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x855104cb filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0x85629a79 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x84df785a request_key_tag +EXPORT_SYMBOL vmlinux 0x84e23ba2 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x84e769a7 tty_port_close +EXPORT_SYMBOL vmlinux 0x8529fdae dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x85406f88 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x85482f47 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x855059e5 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x855b938c pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x85888162 t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x8588e380 seq_puts +EXPORT_SYMBOL vmlinux 0x8582a282 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x8595e9d9 filemap_flush +EXPORT_SYMBOL vmlinux 0x85ab462f pci_enable_wake EXPORT_SYMBOL vmlinux 0x85abc85f strncmp -EXPORT_SYMBOL vmlinux 0x85bcf5e9 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c78d90 get_cached_acl +EXPORT_SYMBOL vmlinux 0x85cab8dc pci_disable_msi EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x85d871ff security_path_mkdir EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85ed4626 blk_sync_queue EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x85f77ea9 __tracepoint_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0x86043731 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x8608e188 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x860efa2c mutex_lock -EXPORT_SYMBOL vmlinux 0x86128f40 sg_miter_skip EXPORT_SYMBOL vmlinux 0x86216acd __xa_set_mark -EXPORT_SYMBOL vmlinux 0x862709a8 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x865401b9 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x865570f9 param_set_bint EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init EXPORT_SYMBOL vmlinux 0x8676db46 get_random_bytes +EXPORT_SYMBOL vmlinux 0x86815fe2 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x8686bd80 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x868acba5 get_options EXPORT_SYMBOL vmlinux 0x868bde1d down_write_trylock -EXPORT_SYMBOL vmlinux 0x869e65ae neigh_for_each +EXPORT_SYMBOL vmlinux 0x869c0e1a put_disk EXPORT_SYMBOL vmlinux 0x86a34793 _copy_to_user_key EXPORT_SYMBOL vmlinux 0x86a8fb71 mutex_unlock -EXPORT_SYMBOL vmlinux 0x86aa138a devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x86bbbfa2 dma_fence_signal -EXPORT_SYMBOL vmlinux 0x86bf79ca sk_reset_timer -EXPORT_SYMBOL vmlinux 0x86c22549 address_space_init_once +EXPORT_SYMBOL vmlinux 0x86c2ae76 seq_path +EXPORT_SYMBOL vmlinux 0x86c7aa12 ip6_frag_init EXPORT_SYMBOL vmlinux 0x86d2335e mempool_create EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86f96e0c posix_acl_chmod EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86ff478b tcp_release_cb -EXPORT_SYMBOL vmlinux 0x870bf770 current_time -EXPORT_SYMBOL vmlinux 0x870c7b64 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x8701a8c2 inc_nlink +EXPORT_SYMBOL vmlinux 0x87106bcf __destroy_inode EXPORT_SYMBOL vmlinux 0x87268af4 __tracepoint_s390_cio_ssch -EXPORT_SYMBOL vmlinux 0x872bd359 input_copy_abs -EXPORT_SYMBOL vmlinux 0x8747a60c dm_unregister_target -EXPORT_SYMBOL vmlinux 0x874b238a netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x875c34e7 skb_clone +EXPORT_SYMBOL vmlinux 0x873c2b3e fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x8768686d dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x87711c15 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x87718457 simple_link -EXPORT_SYMBOL vmlinux 0x877b4e8c __dquot_free_space EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x87942a17 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x87908826 sock_create_lite EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87a6fb73 dcb_getrewr -EXPORT_SYMBOL vmlinux 0x87a966a6 folio_zero_new_buffers EXPORT_SYMBOL vmlinux 0x87b8798d sg_next -EXPORT_SYMBOL vmlinux 0x87bbaeb2 inet_put_port -EXPORT_SYMBOL vmlinux 0x87fa83e1 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x87e8fada from_kprojid +EXPORT_SYMBOL vmlinux 0x87eab732 d_make_root +EXPORT_SYMBOL vmlinux 0x87fc05cb input_flush_device EXPORT_SYMBOL vmlinux 0x87fcab48 hex2bin +EXPORT_SYMBOL vmlinux 0x880f68cb inet_add_protocol EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x882e58e7 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x881fc4ce security_sk_clone +EXPORT_SYMBOL vmlinux 0x882b9edb iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x883505e9 genlmsg_put -EXPORT_SYMBOL vmlinux 0x8845dbd7 fb_io_write -EXPORT_SYMBOL vmlinux 0x8845f4ee sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x88617f40 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x88714bdb build_skb -EXPORT_SYMBOL vmlinux 0x88772666 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x8851e656 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x886e0f1e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x88788015 generic_fadvise +EXPORT_SYMBOL vmlinux 0x887a91de framebuffer_release EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88878fe2 pci_disable_device +EXPORT_SYMBOL vmlinux 0x88887203 __inode_add_bytes EXPORT_SYMBOL vmlinux 0x88999894 utf8_validate -EXPORT_SYMBOL vmlinux 0x88b085e1 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x88b82f05 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x88ce500f tcf_exts_change +EXPORT_SYMBOL vmlinux 0x88b2366b generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x88c1f77b netif_rx +EXPORT_SYMBOL vmlinux 0x88cc6687 nlmsg_notify EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88e52cdb idr_for_each -EXPORT_SYMBOL vmlinux 0x88edd6ea scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x88f521c3 dev_uc_add -EXPORT_SYMBOL vmlinux 0x88f5f69b scsi_remove_device +EXPORT_SYMBOL vmlinux 0x88e99a6e gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x88fc8c31 proc_create EXPORT_SYMBOL vmlinux 0x88ff22df raw3270_start_locked -EXPORT_SYMBOL vmlinux 0x893329e5 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x89402586 ptep_xchg_lazy -EXPORT_SYMBOL vmlinux 0x894c709b start_tty -EXPORT_SYMBOL vmlinux 0x8955986a inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x8902f250 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x8910b00a md_bitmap_unplug_async +EXPORT_SYMBOL vmlinux 0x89120537 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x892a4da8 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x892b8bb1 textsearch_register +EXPORT_SYMBOL vmlinux 0x89331992 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x894a3649 sync_file_create EXPORT_SYMBOL vmlinux 0x895b5e8b fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x895e2417 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0x896539ce ip6_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x896e344e fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0x89713ea8 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x897bc69a file_path -EXPORT_SYMBOL vmlinux 0x8982298d filemap_check_errors +EXPORT_SYMBOL vmlinux 0x897e04a3 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x8982a07d phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x89885253 security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x898b19cc utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x89932232 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x899ec994 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x89a09837 ioremap_prot +EXPORT_SYMBOL vmlinux 0x89b0c9bc netif_receive_skb EXPORT_SYMBOL vmlinux 0x89ca2d73 wait_for_completion_state +EXPORT_SYMBOL vmlinux 0x89e3bb8c jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x89e4ed49 __bread_gfp EXPORT_SYMBOL vmlinux 0x89e51caf set_security_override -EXPORT_SYMBOL vmlinux 0x89e67f95 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x8a0b06d1 param_ops_short -EXPORT_SYMBOL vmlinux 0x8a0d8dd6 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x8a2ec7f8 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x8a32f5f7 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x8a61e996 netdev_notice +EXPORT_SYMBOL vmlinux 0x8a12362f __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x8a3b411a dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x8a3f7cec simple_transaction_read EXPORT_SYMBOL vmlinux 0x8a65338b percpu_counter_sync EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7ebbd4 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x8a7fec1c folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x8a8c88d3 sock_recvmsg EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa37c3f mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x8a9cea87 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac96e0d io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x8ad0457c user_path_at_empty +EXPORT_SYMBOL vmlinux 0x8ae1b271 config_group_find_item +EXPORT_SYMBOL vmlinux 0x8af0d55d tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x8af92e65 find_vma EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b10492d load_nls_default -EXPORT_SYMBOL vmlinux 0x8b26dcb3 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x8b27e8c1 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x8b0b2125 readahead_expand +EXPORT_SYMBOL vmlinux 0x8b34235f ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x8b38aabc netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x8b4459cc netdev_bind_sb_channel_queue EXPORT_SYMBOL vmlinux 0x8b55fd4f hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x8b58f41a try_module_get EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6cf09d ip_local_deliver -EXPORT_SYMBOL vmlinux 0x8b73fcde xp_alloc_batch -EXPORT_SYMBOL vmlinux 0x8b75d3ff generic_file_fsync -EXPORT_SYMBOL vmlinux 0x8b7913aa udp_seq_stop +EXPORT_SYMBOL vmlinux 0x8b7ba3cb __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b840fe4 skb_trim +EXPORT_SYMBOL vmlinux 0x8b89374c netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x8b8f070a xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample -EXPORT_SYMBOL vmlinux 0x8ba22e10 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x8bb21867 __bread_gfp -EXPORT_SYMBOL vmlinux 0x8bb4cfae find_vma -EXPORT_SYMBOL vmlinux 0x8bb6fdf6 input_set_capability -EXPORT_SYMBOL vmlinux 0x8bcdbea8 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x8ba1fcfd simple_unlink +EXPORT_SYMBOL vmlinux 0x8bae7650 seq_read +EXPORT_SYMBOL vmlinux 0x8bb0a337 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be556d6 cond_set_guest_storage_key -EXPORT_SYMBOL vmlinux 0x8c0e03e4 noop_qdisc -EXPORT_SYMBOL vmlinux 0x8c177172 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x8c1a1961 nf_log_packet -EXPORT_SYMBOL vmlinux 0x8c3a69b6 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x8c4c4585 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x8c57a28a page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x8c73b4da crypto_sha3_init -EXPORT_SYMBOL vmlinux 0x8c80b9bf d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x8bec7ca1 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8bf0e4b2 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x8bf52c6e sk_mc_loop +EXPORT_SYMBOL vmlinux 0x8c3ba641 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x8c4da03e napi_get_frags EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init -EXPORT_SYMBOL vmlinux 0x8c8f6b36 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x8c95da66 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x8c9974d9 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x8ca06bc8 nf_log_register +EXPORT_SYMBOL vmlinux 0x8ca85846 proc_remove +EXPORT_SYMBOL vmlinux 0x8ca8af12 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cafd636 dev_activate EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply EXPORT_SYMBOL vmlinux 0x8cdfc002 sclp_unregister -EXPORT_SYMBOL vmlinux 0x8ce15fba udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x8ce2e7a4 ap_driver_unregister +EXPORT_SYMBOL vmlinux 0x8cdfd071 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x8ce25060 _dev_notice +EXPORT_SYMBOL vmlinux 0x8cef498f fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x8cf8aed8 mdiobus_read +EXPORT_SYMBOL vmlinux 0x8cfc16ba dm_register_target EXPORT_SYMBOL vmlinux 0x8d0fd4ef idr_replace -EXPORT_SYMBOL vmlinux 0x8d1f59b0 mdiobus_c45_write_nested -EXPORT_SYMBOL vmlinux 0x8d27e869 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x8d256ffa msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d41bc8d get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x8d53ca15 dquot_disable EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d624e3b skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d7a8c6c iov_iter_single_seg_count EXPORT_SYMBOL vmlinux 0x8d7b0014 register_sysctl -EXPORT_SYMBOL vmlinux 0x8daae515 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x8db3bbe3 d_make_root -EXPORT_SYMBOL vmlinux 0x8dc63e34 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x8d96e58e set_pgste_bits +EXPORT_SYMBOL vmlinux 0x8dc77e3e sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x8dcd8ea0 con_set_default_unimap EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de61883 seq_open -EXPORT_SYMBOL vmlinux 0x8dea3613 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x8df3012d input_unregister_device +EXPORT_SYMBOL vmlinux 0x8dde5658 get_user_pages +EXPORT_SYMBOL vmlinux 0x8de655f1 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x8df96e27 iov_iter_zero EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e05e77c dma_set_mask -EXPORT_SYMBOL vmlinux 0x8e11dbc0 may_setattr -EXPORT_SYMBOL vmlinux 0x8e213cc3 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x8e2ef20b dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x8e40aa4b dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x8e443145 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x8e51b482 ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0x8e52b72c input_allocate_device -EXPORT_SYMBOL vmlinux 0x8e736d9e simple_get_link -EXPORT_SYMBOL vmlinux 0x8e739210 pci_select_bars +EXPORT_SYMBOL vmlinux 0x8e002751 d_rehash +EXPORT_SYMBOL vmlinux 0x8e046713 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x8e1e64a7 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x8e39de96 ilookup +EXPORT_SYMBOL vmlinux 0x8e4cf92f qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8ea8e77a kmalloc_caches -EXPORT_SYMBOL vmlinux 0x8eac3c66 md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x8eaf2d62 fixed_size_llseek EXPORT_SYMBOL vmlinux 0x8eb15aae kobject_put +EXPORT_SYMBOL vmlinux 0x8ec3540f d_obtain_alias +EXPORT_SYMBOL vmlinux 0x8ec4a4f0 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ed396bf pci_iomap_wc -EXPORT_SYMBOL vmlinux 0x8edcefef bio_endio -EXPORT_SYMBOL vmlinux 0x8f16e3d9 fb_io_read -EXPORT_SYMBOL vmlinux 0x8f1774f1 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x8f1f2bfe key_payload_reserve +EXPORT_SYMBOL vmlinux 0x8eddbe01 kernel_bind +EXPORT_SYMBOL vmlinux 0x8eec3739 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x8ef1da8b netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x8ef32133 qdisc_reset +EXPORT_SYMBOL vmlinux 0x8f039819 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x8f04b35b pci_set_mwi +EXPORT_SYMBOL vmlinux 0x8f16d4e2 __sock_i_ino +EXPORT_SYMBOL vmlinux 0x8f18ac74 __quota_error +EXPORT_SYMBOL vmlinux 0x8f21b38e netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x8f2b449b dquot_commit_info EXPORT_SYMBOL vmlinux 0x8f2e8039 zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0x8f310f15 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x8f5556d5 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x8f6dfad4 sock_create +EXPORT_SYMBOL vmlinux 0x8f7024bd pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x8f7383f5 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x8f954119 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x8f99374b register_service_level EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa308cb udp6_csum_init +EXPORT_SYMBOL vmlinux 0x8fb0638f __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0x8fd0849b utf8_normalize -EXPORT_SYMBOL vmlinux 0x8fd82720 mq_change_real_num_tx -EXPORT_SYMBOL vmlinux 0x8fe42102 phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x8ff7dac9 mdiobus_c45_read_nested +EXPORT_SYMBOL vmlinux 0x8fe0fcdb setup_new_exec +EXPORT_SYMBOL vmlinux 0x8ff03289 inet6_protos EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit -EXPORT_SYMBOL vmlinux 0x8ffa0f63 blk_queue_flag_clear EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x9007bd7d dm_get_device +EXPORT_SYMBOL vmlinux 0x900d2738 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x9012e38c config_group_init +EXPORT_SYMBOL vmlinux 0x901563da jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x90162c67 __tracepoint_s390_cio_hsch -EXPORT_SYMBOL vmlinux 0x90162f51 rw_verify_area -EXPORT_SYMBOL vmlinux 0x906a64d2 tls_server_hello_psk -EXPORT_SYMBOL vmlinux 0x907f232e jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x904c51fd ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x90537d28 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x905580d4 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x90589c47 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x906e27a6 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x907561b3 dquot_scan_active EXPORT_SYMBOL vmlinux 0x907faabf zstd_compress_stream +EXPORT_SYMBOL vmlinux 0x90832e07 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x9097df1c __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x90aabdce phy_attach EXPORT_SYMBOL vmlinux 0x90abb542 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x90b96d88 __bforget -EXPORT_SYMBOL vmlinux 0x90db03d6 dcb_getrewr_prio_pcp_mask_map -EXPORT_SYMBOL vmlinux 0x90eec03d dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x90aebd8d scsi_target_resume +EXPORT_SYMBOL vmlinux 0x90b1d4c6 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x90bec6d8 put_watch_queue +EXPORT_SYMBOL vmlinux 0x90e4276e ip_defrag +EXPORT_SYMBOL vmlinux 0x90f0efb4 inet_select_addr +EXPORT_SYMBOL vmlinux 0x90f21eb6 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x90faa679 flow_rule_match_ct EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x91163a16 __find_get_block EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs -EXPORT_SYMBOL vmlinux 0x9152a067 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x915b849a jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x9117d5d9 devm_ioremap +EXPORT_SYMBOL vmlinux 0x913608fc config_item_put EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue -EXPORT_SYMBOL vmlinux 0x916f63c2 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x917c6b8e xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x917cc99e vc_cons -EXPORT_SYMBOL vmlinux 0x918728f6 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x9198064b md_flush_request +EXPORT_SYMBOL vmlinux 0x9171f8cb proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91ac0880 task_work_add -EXPORT_SYMBOL vmlinux 0x91b11f13 device_add_disk -EXPORT_SYMBOL vmlinux 0x91b9cdf3 file_remove_privs -EXPORT_SYMBOL vmlinux 0x91c00663 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x91c9cd8f fget -EXPORT_SYMBOL vmlinux 0x91d1c247 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x91afaa02 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x91c739a9 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x91d4ae78 __fs_parse +EXPORT_SYMBOL vmlinux 0x91d81b4a inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0x91d8e425 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x91dc316d tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x91dff14d sock_no_getname EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91fc7859 vif_device_init +EXPORT_SYMBOL vmlinux 0x9201be49 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x92083dc5 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x9208f01f inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x92280dba mdio_device_reset EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x923d8583 flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0x9264b8dc file_ns_capable +EXPORT_SYMBOL vmlinux 0x925b9702 mntput +EXPORT_SYMBOL vmlinux 0x926c7c84 generic_parse_monolithic EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x927b9d98 __free_pages EXPORT_SYMBOL vmlinux 0x927e2955 xa_get_order -EXPORT_SYMBOL vmlinux 0x9286b509 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x9289e67a inet6_add_offload -EXPORT_SYMBOL vmlinux 0x929aeff5 put_cmsg +EXPORT_SYMBOL vmlinux 0x928509a4 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x92a16af7 lockref_get -EXPORT_SYMBOL vmlinux 0x92bb315a igrab +EXPORT_SYMBOL vmlinux 0x92acb970 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x92cc271d key_task_permission +EXPORT_SYMBOL vmlinux 0x92d19bf6 sock_i_ino EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x92dfae5a skb_find_text EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f6df12 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x9312004c __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x93126b76 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x92ed3d27 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x9320ebc7 follow_pfn +EXPORT_SYMBOL vmlinux 0x93250246 md_register_thread EXPORT_SYMBOL vmlinux 0x933afd98 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x933d02aa qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x9347390f neigh_for_each +EXPORT_SYMBOL vmlinux 0x935f5be4 __skb_gso_segment EXPORT_SYMBOL vmlinux 0x9369c41c raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0x937147d9 scsi_device_resume EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x937f24cf skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x9389be5f jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x9398991d __check_sticky -EXPORT_SYMBOL vmlinux 0x93a3537e skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x9378273f param_set_bool +EXPORT_SYMBOL vmlinux 0x937c838e fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x937e97f1 tty_unregister_driver EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a756e6 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x93b012a4 ccw_driver_unregister -EXPORT_SYMBOL vmlinux 0x93b3d463 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x93acb80e nf_setsockopt EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93c957c0 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x93ca90ab ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0x93cc5b33 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x93ddd4d1 __memset -EXPORT_SYMBOL vmlinux 0x93e6156e config_item_set_name -EXPORT_SYMBOL vmlinux 0x941cc64e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x93e257d1 ip_frag_init +EXPORT_SYMBOL vmlinux 0x93e4403c __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x93e652ee tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x941bfb3b xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x941e4b67 tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages -EXPORT_SYMBOL vmlinux 0x9445f489 get_user_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked EXPORT_SYMBOL vmlinux 0x945775a5 segment_save -EXPORT_SYMBOL vmlinux 0x945f4a98 kmalloc_trace -EXPORT_SYMBOL vmlinux 0x94656dfd writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x948f5a3a __d_lookup_unhash_wake -EXPORT_SYMBOL vmlinux 0x948ff49f inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x945e22d9 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x9476d46e tcf_action_exec +EXPORT_SYMBOL vmlinux 0x947b772e __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x947da51e netdev_lower_get_first_private_rcu EXPORT_SYMBOL vmlinux 0x94961283 vunmap EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94def80e flush_signals -EXPORT_SYMBOL vmlinux 0x94e2529c fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x94ed3ccb pci_get_class -EXPORT_SYMBOL vmlinux 0x94f718af tcp_filter +EXPORT_SYMBOL vmlinux 0x94c40517 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x94cd4f0e __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x94d4cf48 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x94ef367e __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x94f3f2d6 pps_register_source +EXPORT_SYMBOL vmlinux 0x9502ec53 inet_listen +EXPORT_SYMBOL vmlinux 0x9507c89d dump_skip EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950ff770 pci_release_region EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept -EXPORT_SYMBOL vmlinux 0x951da33a mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x9530365d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0x954cba15 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x954066df blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9551e01d inet6_getname -EXPORT_SYMBOL vmlinux 0x955ab621 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x955b0021 seq_printf -EXPORT_SYMBOL vmlinux 0x9594a79a __sock_create -EXPORT_SYMBOL vmlinux 0x95a31adc km_state_notify -EXPORT_SYMBOL vmlinux 0x95a3925c input_release_device +EXPORT_SYMBOL vmlinux 0x9568425e inet_frag_kill +EXPORT_SYMBOL vmlinux 0x956eeb39 pps_event +EXPORT_SYMBOL vmlinux 0x957a0aaf iucv_if +EXPORT_SYMBOL vmlinux 0x9593d416 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x95a19b09 __phy_write_mmd EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x95cb01b3 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x95c4b545 neigh_destroy +EXPORT_SYMBOL vmlinux 0x95c85618 get_phy_device +EXPORT_SYMBOL vmlinux 0x95cb3de8 putname EXPORT_SYMBOL vmlinux 0x95ceb864 key_update -EXPORT_SYMBOL vmlinux 0x95d75523 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x95d1edd3 key_move +EXPORT_SYMBOL vmlinux 0x95dcdf49 dev_vprintk_emit EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host -EXPORT_SYMBOL vmlinux 0x95f61195 reset_guest_reference_bit -EXPORT_SYMBOL vmlinux 0x9614b2dd fqdir_init -EXPORT_SYMBOL vmlinux 0x9623e651 kbd_keycode +EXPORT_SYMBOL vmlinux 0x9606c3b5 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x960c76ed flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x960da5f9 bioset_exit +EXPORT_SYMBOL vmlinux 0x961308a0 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x96163ef5 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x961ddb01 input_free_device +EXPORT_SYMBOL vmlinux 0x9623960b proc_symlink EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data -EXPORT_SYMBOL vmlinux 0x966e102d netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0x96891193 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x96c00287 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x964b94e0 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x965747f4 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x9675384e tty_do_resize +EXPORT_SYMBOL vmlinux 0x968cc928 scsi_device_get EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c35d2f tty_register_driver +EXPORT_SYMBOL vmlinux 0x96cb6b6c dcb_setapp EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96cd458c netdev_notify_peers EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x970248eb iterate_supers_type +EXPORT_SYMBOL vmlinux 0x97019ab6 genl_notify EXPORT_SYMBOL vmlinux 0x970f17a7 ap_parse_mask_str +EXPORT_SYMBOL vmlinux 0x971761e7 param_get_short +EXPORT_SYMBOL vmlinux 0x9731531d tcf_em_register +EXPORT_SYMBOL vmlinux 0x973af08a scmd_printk +EXPORT_SYMBOL vmlinux 0x975a0607 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x97627be4 fsync_bdev +EXPORT_SYMBOL vmlinux 0x97654c56 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x9774d6ca ethtool_aggregate_rmon_stats EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat -EXPORT_SYMBOL vmlinux 0x9781e4ee audit_log -EXPORT_SYMBOL vmlinux 0x979b18b1 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x977f932a bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x9795fa9a pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x979d1a8e dcb_setrewr +EXPORT_SYMBOL vmlinux 0x97a59513 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x97a77994 mdiobus_unregister EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b7ca13 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x97bc19fe dmam_pool_create EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97cde887 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x97d5d7e9 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x97dbeff1 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x97dc8a73 debug_unregister_view -EXPORT_SYMBOL vmlinux 0x97dd3ab3 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x97e076b0 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x9817d2c1 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x97e0dd16 d_add_ci +EXPORT_SYMBOL vmlinux 0x97f27e6d sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x980864bf pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x9809043f skb_copy_header +EXPORT_SYMBOL vmlinux 0x9813e04a km_state_notify +EXPORT_SYMBOL vmlinux 0x983219d1 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x98637c7e tcp_parse_options -EXPORT_SYMBOL vmlinux 0x98812a4b fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x9878546e netlink_net_capable +EXPORT_SYMBOL vmlinux 0x98910558 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x989173cd kobject_init EXPORT_SYMBOL vmlinux 0x989e1516 xa_destroy -EXPORT_SYMBOL vmlinux 0x98b76e1e skb_copy +EXPORT_SYMBOL vmlinux 0x98ab9920 pipe_lock EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98c8de81 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf +EXPORT_SYMBOL vmlinux 0x98e20530 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x98e430d4 dquot_get_state EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f090e5 km_query +EXPORT_SYMBOL vmlinux 0x98f17362 filemap_range_has_page EXPORT_SYMBOL vmlinux 0x9900761a zstd_dstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x99039343 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x991da654 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x99378be5 unload_nls +EXPORT_SYMBOL vmlinux 0x99194125 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x99212f75 clear_nlink EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x9951ac6d set_posix_acl -EXPORT_SYMBOL vmlinux 0x99690a2e kmem_cache_create -EXPORT_SYMBOL vmlinux 0x9972b2e6 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x99524d86 bio_reset +EXPORT_SYMBOL vmlinux 0x995a99e4 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x995b3901 console_stop +EXPORT_SYMBOL vmlinux 0x995c46bb eth_type_trans +EXPORT_SYMBOL vmlinux 0x996835c1 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x9976b7c6 dcb_getrewr_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x997a3633 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x998cbd7f neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x998d5566 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x998fd263 __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a72f44 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x99afb85f tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x99b5688b tty_register_driver +EXPORT_SYMBOL vmlinux 0x99c13ae3 generic_file_open EXPORT_SYMBOL vmlinux 0x99ca74a6 xa_erase EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d857dd slab_build_skb EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99dc62e7 cad_pid -EXPORT_SYMBOL vmlinux 0x99dd63cf jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x99f5816d __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x99f6529f ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0x99f811b3 mark_page_accessed EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a038901 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x9a18592e __bh_read +EXPORT_SYMBOL vmlinux 0x9a0257e6 inode_permission +EXPORT_SYMBOL vmlinux 0x9a1cb1e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x9a1d9818 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk -EXPORT_SYMBOL vmlinux 0x9a1fbec9 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x9a4a77c0 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x9a533119 dcb_delrewr +EXPORT_SYMBOL vmlinux 0x9a24ed9e arp_create +EXPORT_SYMBOL vmlinux 0x9a2581d2 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x9a290f61 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x9a2af5b1 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x9a30e3ac pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9a3531ff ip_do_fragment +EXPORT_SYMBOL vmlinux 0x9a4d42aa single_open_size EXPORT_SYMBOL vmlinux 0x9a57bc89 tccb_init EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a620010 dquot_file_open -EXPORT_SYMBOL vmlinux 0x9a62b9be fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x9a5c91c4 elv_rb_latter_request EXPORT_SYMBOL vmlinux 0x9a684448 do_wait_intr -EXPORT_SYMBOL vmlinux 0x9a726bc2 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x9a69ce2a device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x9a6ad30e ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x9a6b3348 brioctl_set +EXPORT_SYMBOL vmlinux 0x9a81166e dentry_open EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9a9b8d74 make_kuid +EXPORT_SYMBOL vmlinux 0x9aa1b192 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x9aa588dc bpf_map_get EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ad858c1 setattr_prepare +EXPORT_SYMBOL vmlinux 0x9ab4fbf9 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x9ac1d984 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x9acc7eaa netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x9adc9c67 vsnprintf EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9af40139 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x9af42b4e lock_rename -EXPORT_SYMBOL vmlinux 0x9b1a071a ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x9b1f9aa7 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x9ae5ba90 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x9b143f7e blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b318096 udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4bdb0c vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x9b51b946 path_has_submounts -EXPORT_SYMBOL vmlinux 0x9b7bdb04 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x9b82972a xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x9b8c6c7b handshake_genl_put +EXPORT_SYMBOL vmlinux 0x9b6f2033 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x9b776f65 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x9b786cdf pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x9b7b3962 configfs_undepend_item EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen -EXPORT_SYMBOL vmlinux 0x9ba26a6c sync_file_create -EXPORT_SYMBOL vmlinux 0x9ba64fef page_readlink -EXPORT_SYMBOL vmlinux 0x9bab39b8 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x9bb1f6f5 follow_up -EXPORT_SYMBOL vmlinux 0x9bb6675a ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x9bc9adca tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x9c06a3e6 genphy_c45_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x9c1cdfd6 input_register_device -EXPORT_SYMBOL vmlinux 0x9c425fba netif_tx_lock -EXPORT_SYMBOL vmlinux 0x9c50354a xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x9c5f8b6d __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x9c6fc1f7 sock_no_listen +EXPORT_SYMBOL vmlinux 0x9bafc1f3 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x9bc979d7 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x9bd79b7b unlock_buffer +EXPORT_SYMBOL vmlinux 0x9c6d953b no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9ca02b6c vfs_rmdir +EXPORT_SYMBOL vmlinux 0x9c9a2c0d may_umount_tree +EXPORT_SYMBOL vmlinux 0x9caa769d cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x9cadbd3b __init_swait_queue_head -EXPORT_SYMBOL vmlinux 0x9cbb9ffb pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x9cc2de36 d_add_ci -EXPORT_SYMBOL vmlinux 0x9cd32691 read_cache_folio -EXPORT_SYMBOL vmlinux 0x9cd7b78b posix_lock_file -EXPORT_SYMBOL vmlinux 0x9cdf8656 folio_create_empty_buffers +EXPORT_SYMBOL vmlinux 0x9cc4a882 rtnl_notify +EXPORT_SYMBOL vmlinux 0x9cd9de60 slab_build_skb EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9cee24c3 fget_raw -EXPORT_SYMBOL vmlinux 0x9cf0c23f sock_no_accept -EXPORT_SYMBOL vmlinux 0x9cf152a9 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x9d0b97be unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x9ce07bfe sock_pfree +EXPORT_SYMBOL vmlinux 0x9cf1c191 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x9d024a51 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x9d0800e2 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d28e355 submit_bio_wait EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2b48e4 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x9d2c880b sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d30ed9c iov_iter_revert -EXPORT_SYMBOL vmlinux 0x9d361a61 configfs_depend_item EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev -EXPORT_SYMBOL vmlinux 0x9d52c695 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x9d55885d page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x9d59640b pci_dev_get -EXPORT_SYMBOL vmlinux 0x9d5cd948 class3270 -EXPORT_SYMBOL vmlinux 0x9d5f22f6 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x9d615af9 netdev_get_by_index +EXPORT_SYMBOL vmlinux 0x9d50c99c dquot_release +EXPORT_SYMBOL vmlinux 0x9d5a3717 mr_table_dump +EXPORT_SYMBOL vmlinux 0x9d61667a blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0x9d6afab2 itcw_add_dcw -EXPORT_SYMBOL vmlinux 0x9d729e8d ccw_device_resume -EXPORT_SYMBOL vmlinux 0x9daf1d3b __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x9dd1df62 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x9d71c744 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x9d9ad06d cdev_add +EXPORT_SYMBOL vmlinux 0x9dbc5f6d ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x9dd08b7d tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x9de87197 kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0x9df6976e raw3270_add_view EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e1394bf bpf_link_put EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e170b57 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x9e284252 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e5d86c0 ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0x9e5dcee9 __fib6_flush_trees EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e76e37c __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e976315 simple_lookup +EXPORT_SYMBOL vmlinux 0x9e82246e csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x9e86c9df try_to_free_buffers EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea0e696 flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x9eaba24d pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x9eabcd3f phy_init_eee +EXPORT_SYMBOL vmlinux 0x9ec14c85 debug_hex_ascii_view EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ec70258 param_set_charp -EXPORT_SYMBOL vmlinux 0x9ee61a1c block_write_full_page -EXPORT_SYMBOL vmlinux 0x9f01e737 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x9ec816e5 fb_class +EXPORT_SYMBOL vmlinux 0x9edc9b09 scsi_remove_host EXPORT_SYMBOL vmlinux 0x9f0cb753 __tracepoint_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0x9f103b72 con_is_visible -EXPORT_SYMBOL vmlinux 0x9f12cb2b blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x9f14d961 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x9f182a0d __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x9f12dd1d fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x9f1436bc ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x9f1e221f kmalloc_large -EXPORT_SYMBOL vmlinux 0x9f22cb60 flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x9f24dd0c genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x9f382cf1 __invalidate_device +EXPORT_SYMBOL vmlinux 0x9f210bda fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x9f217f18 param_ops_string +EXPORT_SYMBOL vmlinux 0x9f31f6f6 sk_alloc EXPORT_SYMBOL vmlinux 0x9f3c8a49 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x9f3e10bf pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x9f446c3c flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f59f573 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x9f6648ee nf_log_unset EXPORT_SYMBOL vmlinux 0x9f6871c6 __ashrti3 -EXPORT_SYMBOL vmlinux 0x9f69bea2 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x9f7193e7 tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0x9f7bfce2 md_bitmap_unplug -EXPORT_SYMBOL vmlinux 0x9f8caec5 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x9f8533ed get_vm_area EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9fa090be __nla_reserve EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fb013d4 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fb7bbd0 security_sock_graft -EXPORT_SYMBOL vmlinux 0x9fbd2131 debug_register_mode -EXPORT_SYMBOL vmlinux 0x9fd6ce8e jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x9fc34d41 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x9fc87c69 napi_enable +EXPORT_SYMBOL vmlinux 0x9fcf6f23 fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fdf23cb inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x9feb2c1a input_allocate_device +EXPORT_SYMBOL vmlinux 0x9fec219c genphy_resume EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff9a3ff pci_get_subsys EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0xa00c3e77 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xa005e3f9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xa018b70a config_item_get EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa02be895 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0xa02f3038 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xa02ec076 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa036563d sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa034eba9 ethtool_aggregate_pause_stats EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa04d8230 netlink_ack +EXPORT_SYMBOL vmlinux 0xa04ba5e3 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xa04f154b xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute EXPORT_SYMBOL vmlinux 0xa066d89f xa_store_range EXPORT_SYMBOL vmlinux 0xa066fd6c __wake_up -EXPORT_SYMBOL vmlinux 0xa06a0a30 blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0xa06e587a release_firmware -EXPORT_SYMBOL vmlinux 0xa0722f9e fwnode_iomap +EXPORT_SYMBOL vmlinux 0xa07984b3 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xa07bf6d3 vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa083f6e4 nf_unregister_sockopt EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or -EXPORT_SYMBOL vmlinux 0xa0872fd2 file_update_time -EXPORT_SYMBOL vmlinux 0xa08c4d09 blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0xa08d78c8 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0xa08e5cc0 netdev_info +EXPORT_SYMBOL vmlinux 0xa093acd9 phy_register_fixup EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09e4a91 unload_nls EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xa0a30d54 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0ae40b0 elevator_alloc EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0c55864 migrate_folio -EXPORT_SYMBOL vmlinux 0xa0d06aea ipv4_specific +EXPORT_SYMBOL vmlinux 0xa0bb2528 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa0bc62fc bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa0c273c5 iucv_root +EXPORT_SYMBOL vmlinux 0xa0c7b009 skb_eth_push EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dda257 phy_resume EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa0fd0922 fput +EXPORT_SYMBOL vmlinux 0xa0fea705 elv_rb_former_request EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max EXPORT_SYMBOL vmlinux 0xa115da49 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xa1322d06 skb_udp_tunnel_segment -EXPORT_SYMBOL vmlinux 0xa13542a3 scsi_done -EXPORT_SYMBOL vmlinux 0xa13600fc d_genocide -EXPORT_SYMBOL vmlinux 0xa174ad7c vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa117951f phy_find_first +EXPORT_SYMBOL vmlinux 0xa11d6c82 sock_rfree +EXPORT_SYMBOL vmlinux 0xa14844d0 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xa14d4e6e mod_node_page_state +EXPORT_SYMBOL vmlinux 0xa1538674 get_tree_bdev EXPORT_SYMBOL vmlinux 0xa189c2c2 uv_info -EXPORT_SYMBOL vmlinux 0xa192fe2f ip_setsockopt -EXPORT_SYMBOL vmlinux 0xa1976096 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false -EXPORT_SYMBOL vmlinux 0xa1aa3a73 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xa1b15522 tls_server_hello_x509 EXPORT_SYMBOL vmlinux 0xa1b87900 zstd_compress_cctx -EXPORT_SYMBOL vmlinux 0xa1c37fbc udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xa1c7c4c3 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa1cb56f9 __dec_node_page_state EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv -EXPORT_SYMBOL vmlinux 0xa1dfede4 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0xa1ee661e xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa1fa9ee3 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2155a2a end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xa2282b1f neigh_table_clear +EXPORT_SYMBOL vmlinux 0xa22c8d11 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2431c77 mdio_device_reset -EXPORT_SYMBOL vmlinux 0xa249e0fc flow_rule_alloc EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa2502680 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26792f9 mdio_device_free +EXPORT_SYMBOL vmlinux 0xa2674f28 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xa26e1f70 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xa27699c5 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa28e1b49 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0xa2b5e738 sk_free -EXPORT_SYMBOL vmlinux 0xa2b8b505 fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0xa2ba006c sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0xa2c65965 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xa2b338d2 single_release +EXPORT_SYMBOL vmlinux 0xa2bf62fe bpf_link_put +EXPORT_SYMBOL vmlinux 0xa2cb0064 seq_read_iter EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2d81f72 tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0xa2e939ac sys_imageblit EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xa30e03b9 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xa31a24a8 input_open_device EXPORT_SYMBOL vmlinux 0xa31d1dea __xa_erase -EXPORT_SYMBOL vmlinux 0xa32440b6 scsi_register_interface -EXPORT_SYMBOL vmlinux 0xa33b845f elv_rb_add -EXPORT_SYMBOL vmlinux 0xa3508839 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xa338a62b md_write_end +EXPORT_SYMBOL vmlinux 0xa34ce10b dec_zone_page_state EXPORT_SYMBOL vmlinux 0xa3509ddc dev_base_lock -EXPORT_SYMBOL vmlinux 0xa351b698 dquot_resume -EXPORT_SYMBOL vmlinux 0xa369a255 kill_pid -EXPORT_SYMBOL vmlinux 0xa376d0ef phy_drivers_register -EXPORT_SYMBOL vmlinux 0xa37d3e62 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0xa3812bb8 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xa37318a0 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xa38e641e generic_fillattr +EXPORT_SYMBOL vmlinux 0xa38fa87f tcp_connect EXPORT_SYMBOL vmlinux 0xa3a0cc12 raw3270_wait_queue EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove -EXPORT_SYMBOL vmlinux 0xa3aaf5c2 tcp_seq_next -EXPORT_SYMBOL vmlinux 0xa3ab5ffa configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0xa3b06dde percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xa3b34636 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xa3b66ceb kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xa3b3b671 dquot_operations +EXPORT_SYMBOL vmlinux 0xa3b9b74a xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c00214 cdev_add -EXPORT_SYMBOL vmlinux 0xa3c3ebb9 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0xa3dbe1b2 tty_port_close_end -EXPORT_SYMBOL vmlinux 0xa3e118c2 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0xa3f53254 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xa3c80b03 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xa3d4ac2e finish_open +EXPORT_SYMBOL vmlinux 0xa3db7af4 sock_from_file +EXPORT_SYMBOL vmlinux 0xa3e30321 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa402afb6 bio_copy_data_iter EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue -EXPORT_SYMBOL vmlinux 0xa4066a02 configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0xa40edc7b fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xa4105d06 ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0xa427e6b9 md_handle_request +EXPORT_SYMBOL vmlinux 0xa40b7804 set_nlink EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa44e5345 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xa44f263b dev_mc_del +EXPORT_SYMBOL vmlinux 0xa454b0c0 iov_iter_get_pages2 EXPORT_SYMBOL vmlinux 0xa45c59bd __SCK__tp_func_s390_cio_chsc -EXPORT_SYMBOL vmlinux 0xa45dbdaf vfs_rename -EXPORT_SYMBOL vmlinux 0xa480611c dev_pre_changeaddr_notify -EXPORT_SYMBOL vmlinux 0xa485c43d sock_i_ino -EXPORT_SYMBOL vmlinux 0xa4a82520 phy_device_free -EXPORT_SYMBOL vmlinux 0xa4a9dfd2 dev_get_iflink -EXPORT_SYMBOL vmlinux 0xa4b0f0f6 input_register_handler -EXPORT_SYMBOL vmlinux 0xa4c0f87f mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0xa4dced81 _dev_printk +EXPORT_SYMBOL vmlinux 0xa45d4a4b udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xa494196d input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xa4b2d735 netlink_unicast +EXPORT_SYMBOL vmlinux 0xa4bcaea4 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xa4dc5c8d filemap_release_folio EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa503d6f5 ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xa503dd04 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0xa50b4661 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0xa510a233 __mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0xa5143644 netpoll_poll_disable EXPORT_SYMBOL vmlinux 0xa51a2967 _find_next_zero_bit_le -EXPORT_SYMBOL vmlinux 0xa51f4413 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0xa521e6d4 __inet_hash -EXPORT_SYMBOL vmlinux 0xa523dfa4 __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0xa52f10a1 proc_create_data -EXPORT_SYMBOL vmlinux 0xa53a7ce2 __netif_rx +EXPORT_SYMBOL vmlinux 0xa5228e54 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0xa53c8305 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0xa54378c7 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xa5445357 xp_dma_map +EXPORT_SYMBOL vmlinux 0xa53ef0f2 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5706f8e devm_arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xa57e9130 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xa5892b12 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xa5567dff freezing_slow_path +EXPORT_SYMBOL vmlinux 0xa5567e08 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa55fb960 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xa5682cbc gro_cells_receive +EXPORT_SYMBOL vmlinux 0xa5742c42 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xa5747ef7 d_tmpfile EXPORT_SYMBOL vmlinux 0xa58b31da __wait_on_bit -EXPORT_SYMBOL vmlinux 0xa5a7844b jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0xa5b1d8d8 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xa5b34e4b inode_nohighmem -EXPORT_SYMBOL vmlinux 0xa5b995b9 sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xa5fe51a5 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xa59cde5c devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa5a430ad bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa5a591ed flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xa5dd7b59 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xa5e26043 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xa5f57660 pci_pme_capable EXPORT_SYMBOL vmlinux 0xa6025b61 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xa60c310c proc_remove -EXPORT_SYMBOL vmlinux 0xa618bea4 d_delete +EXPORT_SYMBOL vmlinux 0xa6085d20 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa62ac9af sg_miter_stop -EXPORT_SYMBOL vmlinux 0xa6441780 alloc_pages EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa65786fa generic_setlease EXPORT_SYMBOL vmlinux 0xa66055f4 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xa6744e83 netdev_update_features -EXPORT_SYMBOL vmlinux 0xa681f69d proc_create +EXPORT_SYMBOL vmlinux 0xa668b724 nf_log_set +EXPORT_SYMBOL vmlinux 0xa676f12a gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68ed4ba sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xa6b73dea pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0xa6dc63de devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xa6e4ccae tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xa6944662 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xa6950c16 unpin_user_page +EXPORT_SYMBOL vmlinux 0xa6bbd5a4 start_tty +EXPORT_SYMBOL vmlinux 0xa6c79602 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0xa6cb370e phy_print_status EXPORT_SYMBOL vmlinux 0xa6e9c670 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0xa71b6a07 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xa721d41f tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0xa73a6b8d xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0xa6f63b1d __register_binfmt +EXPORT_SYMBOL vmlinux 0xa71dd27f build_skb +EXPORT_SYMBOL vmlinux 0xa72a2d37 ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0xa73b265b param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xa74ad134 forget_cached_acl EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa76264a3 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xa76c6d53 phy_write_paged -EXPORT_SYMBOL vmlinux 0xa77088fd sk_error_report -EXPORT_SYMBOL vmlinux 0xa77867fe eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa768c21d eth_get_headlen +EXPORT_SYMBOL vmlinux 0xa76e5a19 phy_resume +EXPORT_SYMBOL vmlinux 0xa77983e8 __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa780da4a phy_trigger_machine -EXPORT_SYMBOL vmlinux 0xa7828425 user_path_create -EXPORT_SYMBOL vmlinux 0xa7a4ef4b vm_map_pages -EXPORT_SYMBOL vmlinux 0xa7a8bff5 nf_log_unset EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way -EXPORT_SYMBOL vmlinux 0xa7b71039 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0xa7bfea7c md_unregister_thread -EXPORT_SYMBOL vmlinux 0xa7cac97f inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0xa7cbc146 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0xa7e32b49 raw3270_start +EXPORT_SYMBOL vmlinux 0xa7e954be inet_sendmsg EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f8660e netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0xa814646e add_to_page_cache_lru -EXPORT_SYMBOL vmlinux 0xa82e7af0 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xa8332c83 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xa7ffa5e4 ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0xa819548d vmap EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8460537 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa85630fe scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xa856d87f __register_chrdev +EXPORT_SYMBOL vmlinux 0xa86011cc __scsi_add_device +EXPORT_SYMBOL vmlinux 0xa864c75f skb_dequeue EXPORT_SYMBOL vmlinux 0xa8676398 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8b72a67 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0xa8e03f2b setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xa8e2697a netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xa8bd01f7 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0xa8c67d4a gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xa8cd1e77 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xa8e2c723 dev_open EXPORT_SYMBOL vmlinux 0xa8e3fe19 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xa8eef914 skb_splice_from_iter EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa909d210 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0xa90aa890 dput -EXPORT_SYMBOL vmlinux 0xa90b79db iter_file_splice_write EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa9187e87 sk_wait_data EXPORT_SYMBOL vmlinux 0xa91a2148 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xa921a798 __skb_recv_udp EXPORT_SYMBOL vmlinux 0xa92c9f8d __traceiter_s390_cio_tsch EXPORT_SYMBOL vmlinux 0xa9392430 xa_clear_mark -EXPORT_SYMBOL vmlinux 0xa9520b88 finalize_exec -EXPORT_SYMBOL vmlinux 0xa95d1ceb pipe_unlock -EXPORT_SYMBOL vmlinux 0xa9651eb2 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xa943a0b7 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xa95bd2b0 lookup_one_len +EXPORT_SYMBOL vmlinux 0xa962a2d5 ip6_output EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa979011e rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0xa989d447 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0xa98ed642 udp_gro_receive -EXPORT_SYMBOL vmlinux 0xa9aaf76c unix_detach_fds -EXPORT_SYMBOL vmlinux 0xa9bfc34c vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xa9c00ed3 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xa9e5559d ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0xa9849644 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xa98b3482 phy_suspend +EXPORT_SYMBOL vmlinux 0xa991360a pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xa997df8c inode_io_list_del +EXPORT_SYMBOL vmlinux 0xa9cc7e0a sget_fc +EXPORT_SYMBOL vmlinux 0xa9d6ac9d qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa1e096b sock_no_shutdown EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update -EXPORT_SYMBOL vmlinux 0xaa300b44 _dev_emerg EXPORT_SYMBOL vmlinux 0xaa3212b1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0xaa341ba0 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0xaa444ed3 __brelse -EXPORT_SYMBOL vmlinux 0xaa535250 setattr_copy +EXPORT_SYMBOL vmlinux 0xaa357049 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xaa425e87 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xaa4c0bf4 tty_port_tty_set EXPORT_SYMBOL vmlinux 0xaa53b33c gen_pool_dma_zalloc_algo -EXPORT_SYMBOL vmlinux 0xaa606c85 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xaa5f85f1 tcp_mmap EXPORT_SYMBOL vmlinux 0xaa7a1f77 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0xaa81a1f5 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xaaa43392 dev_uc_del EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa66739 ap_wait_init_apqn_bindings_complete -EXPORT_SYMBOL vmlinux 0xaaadca73 folio_mark_accessed -EXPORT_SYMBOL vmlinux 0xaaaf3b86 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xaab1808a ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xaab5c1c3 follow_down_one +EXPORT_SYMBOL vmlinux 0xaab34db4 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xaab7e292 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xaab869a1 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xaac23fa5 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xaac2cbc1 folio_wait_bit EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaaec2de6 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xaaf856c5 dump_skip_to +EXPORT_SYMBOL vmlinux 0xaadce10c debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0xaae2f20c folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xaaf7bd77 pci_read_config_word EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0745b3 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0xab0c80ea tcp_init_sock -EXPORT_SYMBOL vmlinux 0xab212ae7 ccw_device_start +EXPORT_SYMBOL vmlinux 0xab0c063c bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0xab225b7c proc_douintvec -EXPORT_SYMBOL vmlinux 0xab295bdb param_ops_ullong +EXPORT_SYMBOL vmlinux 0xab261738 napi_disable EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab444c6a blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0xab46c289 __SCK__tp_func_s390_cio_hsch -EXPORT_SYMBOL vmlinux 0xab51a298 ethtool_aggregate_rmon_stats -EXPORT_SYMBOL vmlinux 0xab544dbf fb_class -EXPORT_SYMBOL vmlinux 0xab5b6026 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0xab6042b9 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xab4d8ff3 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xab561536 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xab565f16 handshake_genl_put EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab6fbf82 proc_create_single_data EXPORT_SYMBOL vmlinux 0xab722432 proc_dobool EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab84cfc0 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0xaba6e912 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xabd0c1d4 debug_set_level +EXPORT_SYMBOL vmlinux 0xab8f9fbd pci_map_rom +EXPORT_SYMBOL vmlinux 0xab928d79 inode_insert5 +EXPORT_SYMBOL vmlinux 0xabb75790 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xabbb3019 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xabe57b49 cdev_device_del -EXPORT_SYMBOL vmlinux 0xabf25436 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf7536b inet6_add_offload +EXPORT_SYMBOL vmlinux 0xac0817de padata_alloc_shell EXPORT_SYMBOL vmlinux 0xac179cae dma_fence_get_status -EXPORT_SYMBOL vmlinux 0xac19bb0b security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xac19c12e blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac2b37f3 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xac2d24a5 md_bitmap_unplug_async -EXPORT_SYMBOL vmlinux 0xac2d9278 param_get_bool EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac37578f qdisc_put +EXPORT_SYMBOL vmlinux 0xac3fc284 tcp_getsockopt EXPORT_SYMBOL vmlinux 0xac4744cc __memmove -EXPORT_SYMBOL vmlinux 0xac5abbb1 pci_iomap -EXPORT_SYMBOL vmlinux 0xac5b1a8a mdio_device_remove +EXPORT_SYMBOL vmlinux 0xac5786d3 skb_recv_datagram EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac6ce479 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xac756101 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xac7e539a seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0xac7f8e33 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xac62e1c9 phy_device_register +EXPORT_SYMBOL vmlinux 0xac86ff77 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xac8c0235 has_capability_noaudit EXPORT_SYMBOL vmlinux 0xaca0aef0 complete +EXPORT_SYMBOL vmlinux 0xaca8de48 __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacae3bb2 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0xacaf9f9c register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xacafc117 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xacb8eb9d input_unregister_handler -EXPORT_SYMBOL vmlinux 0xacbf1cbf inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xacc2de69 __fput_sync -EXPORT_SYMBOL vmlinux 0xacd2a395 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xacd026b8 kernel_recvmsg EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd9f79c configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0xacea318c zstd_get_error_code EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex EXPORT_SYMBOL vmlinux 0xad07a08f mt_find +EXPORT_SYMBOL vmlinux 0xad088c4b tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xad1441f0 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xad153c96 tcf_idr_release EXPORT_SYMBOL vmlinux 0xad162ff1 mtree_erase -EXPORT_SYMBOL vmlinux 0xad171826 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xad1ac9fb input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xad19d285 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xad299b78 ioremap_wc -EXPORT_SYMBOL vmlinux 0xad4a3051 configfs_register_group +EXPORT_SYMBOL vmlinux 0xad3bff13 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xad42cd50 padata_free EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad4ed616 d_obtain_root +EXPORT_SYMBOL vmlinux 0xad50e889 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xad6c3f78 dqstats +EXPORT_SYMBOL vmlinux 0xad6d95cf wrap_directory_iterator EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad756a1b tty_kref_put -EXPORT_SYMBOL vmlinux 0xad769e3f param_ops_byte -EXPORT_SYMBOL vmlinux 0xad881ce5 tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0xad943562 arp_xmit EXPORT_SYMBOL vmlinux 0xada09ad2 dfltcc_can_inflate -EXPORT_SYMBOL vmlinux 0xada64110 kthread_destroy_worker EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadafe5f5 blk_start_plug -EXPORT_SYMBOL vmlinux 0xadb1bcc0 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0xadce8811 d_set_d_op EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xade05845 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0xadef5b7b tcw_get_tccb -EXPORT_SYMBOL vmlinux 0xadf83eac unregister_console -EXPORT_SYMBOL vmlinux 0xadfb1904 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xae029cba dquot_quota_off +EXPORT_SYMBOL vmlinux 0xadfe006a nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xae003290 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xae005ba4 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc EXPORT_SYMBOL vmlinux 0xae06002a kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xae144509 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xae14c307 kmalloc_trace EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae1e81b6 __block_write_begin +EXPORT_SYMBOL vmlinux 0xae2bac03 submit_bh EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae5031f9 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xae32cb9f dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xae4b317a __d_drop +EXPORT_SYMBOL vmlinux 0xae4bfa02 sock_create_kern EXPORT_SYMBOL vmlinux 0xae5139ef hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xae5ff999 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xae89b157 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xae8e2ef5 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xaeab76ac tls_client_hello_x509 +EXPORT_SYMBOL vmlinux 0xae5a6253 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xae6a2973 pci_match_id +EXPORT_SYMBOL vmlinux 0xae85d277 tcf_em_unregister EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb99a02 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xaeb3b9d5 tcp_poll EXPORT_SYMBOL vmlinux 0xaebdf85f refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xaec3237d pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xaedb9ee4 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xaee13d73 flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xaee3bea0 sock_wake_async -EXPORT_SYMBOL vmlinux 0xaeef346f tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xaef58a1a register_shrinker -EXPORT_SYMBOL vmlinux 0xaf0471b7 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xaf097bac locks_remove_posix +EXPORT_SYMBOL vmlinux 0xaed25b16 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xaedd33fc security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xaee57697 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xaeed59c3 sync_filesystem +EXPORT_SYMBOL vmlinux 0xaef06f19 may_setattr +EXPORT_SYMBOL vmlinux 0xaef851ec __invalidate_device EXPORT_SYMBOL vmlinux 0xaf15bc1e kobject_del -EXPORT_SYMBOL vmlinux 0xaf352927 devm_iounmap +EXPORT_SYMBOL vmlinux 0xaf1fcad2 folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4c5f2c file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xaf56fad9 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0xaf57f9a5 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xaf61eb03 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xaf62e671 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xaf7d6918 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xaf99fab0 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xaf9e86cd blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0xafa6c45a trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xaf50e8cf lease_get_mtime +EXPORT_SYMBOL vmlinux 0xaf7d1cea fqdir_init +EXPORT_SYMBOL vmlinux 0xaf7d856b udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xaf7e0141 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xaf841642 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit -EXPORT_SYMBOL vmlinux 0xafb372b3 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xafc55f96 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xafc5b446 filp_close -EXPORT_SYMBOL vmlinux 0xafd3bfe5 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xafe0b817 end_page_writeback +EXPORT_SYMBOL vmlinux 0xafe1491b seq_vprintf +EXPORT_SYMBOL vmlinux 0xafe27f94 unregister_cdrom EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn -EXPORT_SYMBOL vmlinux 0xb00922ca dev_addr_add -EXPORT_SYMBOL vmlinux 0xb00d6925 netdev_crit -EXPORT_SYMBOL vmlinux 0xb017d0a5 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xb0013351 inode_init_always EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb0270e37 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xb02e1659 netlink_unicast -EXPORT_SYMBOL vmlinux 0xb03a34d1 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xb03b5ca2 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xb03f0f1c param_set_byte +EXPORT_SYMBOL vmlinux 0xb020cce6 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb02eb71f dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb03303d2 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xb0443a28 ap_queue_init_reply +EXPORT_SYMBOL vmlinux 0xb04c2621 sock_no_accept +EXPORT_SYMBOL vmlinux 0xb05099b2 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0661da9 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xb071ce13 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xb0799e22 locks_copy_conflock EXPORT_SYMBOL vmlinux 0xb084d362 ap_is_se_guest -EXPORT_SYMBOL vmlinux 0xb085bcef kernel_tmpfile_open +EXPORT_SYMBOL vmlinux 0xb086396a netdev_info EXPORT_SYMBOL vmlinux 0xb0967c5b dfltcc_reset_inflate_state -EXPORT_SYMBOL vmlinux 0xb0c79f3f rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xb09cfb88 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xb0a05fc9 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xb0ad6c8f xattr_full_name +EXPORT_SYMBOL vmlinux 0xb0d1305a n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb0f136e3 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xb0f66ab7 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb0fce810 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xb1056c23 fb_io_read EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0xb110ec29 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xb10f95b7 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0xb1176e59 try_wait_for_completion EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb136611c dquot_commit -EXPORT_SYMBOL vmlinux 0xb13be821 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb159c5ff netdev_offload_xstats_push_delta -EXPORT_SYMBOL vmlinux 0xb16d183c xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0xb178e529 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xb166c0a7 put_cmsg +EXPORT_SYMBOL vmlinux 0xb16855ff netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xb1830038 override_creds -EXPORT_SYMBOL vmlinux 0xb1837b84 pci_free_irq -EXPORT_SYMBOL vmlinux 0xb18bdf05 devm_release_resource +EXPORT_SYMBOL vmlinux 0xb1b556cc tcp_rcv_established EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c73f73 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e12825 pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0xb1e8126c down_timeout +EXPORT_SYMBOL vmlinux 0xb1eea384 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xb1f77fdd mdio_find_bus +EXPORT_SYMBOL vmlinux 0xb1fd4372 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xb2058ca9 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xb21ba006 cdrom_get_media_event EXPORT_SYMBOL vmlinux 0xb222e6db dma_fence_array_ops EXPORT_SYMBOL vmlinux 0xb2251eee __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xb2256910 input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0xb26051b0 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xb2619924 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0xb270183e phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xb276cf0e inet_shutdown -EXPORT_SYMBOL vmlinux 0xb2944e16 generic_listxattr -EXPORT_SYMBOL vmlinux 0xb2a78f8d __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xb237d34b dma_free_attrs +EXPORT_SYMBOL vmlinux 0xb254967b genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xb2729e6c file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xb2a97672 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0xb2c7456a shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xb2d49f74 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0xb2d8422e __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xb2e68b41 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xb2bc5ea7 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb2c0ed00 devm_iounmap +EXPORT_SYMBOL vmlinux 0xb2dae464 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xb2ecf3fd nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xb2f8aea4 tcp_filter EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb3099e32 md_write_inc -EXPORT_SYMBOL vmlinux 0xb31ef40e mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0xb31b7d0f clocksource_change_rating EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one -EXPORT_SYMBOL vmlinux 0xb3223433 skb_tx_error EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 -EXPORT_SYMBOL vmlinux 0xb32f2999 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0xb334a7cf netdev_warn -EXPORT_SYMBOL vmlinux 0xb339435c dump_page -EXPORT_SYMBOL vmlinux 0xb34daf96 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xb3340221 ip6_xmit +EXPORT_SYMBOL vmlinux 0xb33579d5 __folio_batch_release +EXPORT_SYMBOL vmlinux 0xb35318d3 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb375c416 _dev_crit -EXPORT_SYMBOL vmlinux 0xb376d45f dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xb36a42d9 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xb3803c61 netdev_alert EXPORT_SYMBOL vmlinux 0xb381ff9e ida_destroy -EXPORT_SYMBOL vmlinux 0xb3914412 sockopt_release_sock -EXPORT_SYMBOL vmlinux 0xb3917259 from_kuid -EXPORT_SYMBOL vmlinux 0xb399e924 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0xb39a50f0 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xb3a42283 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0xb3a58be5 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xb39a8cc6 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xb39aee88 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0xb3a7ff68 kthread_complete_and_exit -EXPORT_SYMBOL vmlinux 0xb3b52d2d phy_detach -EXPORT_SYMBOL vmlinux 0xb3ba075f pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0xb3be9249 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0xb3c76c3b import_iovec EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d3538f get_vm_area -EXPORT_SYMBOL vmlinux 0xb3d9b3a5 zpool_register_driver -EXPORT_SYMBOL vmlinux 0xb3ddc56f napi_consume_skb -EXPORT_SYMBOL vmlinux 0xb3e0df41 filemap_splice_read -EXPORT_SYMBOL vmlinux 0xb3f16f87 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xb3e4a527 tcp_shutdown EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f79413 generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact -EXPORT_SYMBOL vmlinux 0xb4177a31 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xb41235a1 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xb41759f5 dquot_file_open EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb4258d5f simple_rename -EXPORT_SYMBOL vmlinux 0xb4338754 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0xb437f789 pci_pme_active -EXPORT_SYMBOL vmlinux 0xb4417b53 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0xb45ae3c3 inode_io_list_del -EXPORT_SYMBOL vmlinux 0xb467fcb0 unix_get_socket +EXPORT_SYMBOL vmlinux 0xb4284f35 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xb45bcd8c inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb47e1291 dquot_transfer EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts -EXPORT_SYMBOL vmlinux 0xb49587df unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xb492f138 dma_set_mask EXPORT_SYMBOL vmlinux 0xb4afb043 trace_seq_acquire -EXPORT_SYMBOL vmlinux 0xb4b2cb87 mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0xb4de337d blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xb4df755f mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xb4e8fc3f ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xb4b5c9d9 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xb4c77eed inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xb4ee7552 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xb4ee7bb1 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xb51e9d70 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xb527086e mdiobus_c45_read EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc -EXPORT_SYMBOL vmlinux 0xb54fef2c vfs_iter_read -EXPORT_SYMBOL vmlinux 0xb59564ba seq_read_iter +EXPORT_SYMBOL vmlinux 0xb53b2dd5 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xb541d68f nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xb54ede3c netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xb55be98d mount_single +EXPORT_SYMBOL vmlinux 0xb581ae41 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xb59014fb fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xb59e32d3 devm_free_irq EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev -EXPORT_SYMBOL vmlinux 0xb5a6a551 netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5bbf656 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb5c322ec fb_validate_mode +EXPORT_SYMBOL vmlinux 0xb5c469d0 bio_integrity_trim EXPORT_SYMBOL vmlinux 0xb5d3119d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xb5d51e29 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb60406da scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xb60a6bc9 netif_device_attach -EXPORT_SYMBOL vmlinux 0xb60b4d74 dup_iter -EXPORT_SYMBOL vmlinux 0xb6263f0d blk_mq_alloc_disk_for_queue -EXPORT_SYMBOL vmlinux 0xb6264a6c vc_resize -EXPORT_SYMBOL vmlinux 0xb62bb548 __put_user_ns -EXPORT_SYMBOL vmlinux 0xb62f61f4 napi_complete_done -EXPORT_SYMBOL vmlinux 0xb62f735b napi_enable +EXPORT_SYMBOL vmlinux 0xb5f5ff54 igrab +EXPORT_SYMBOL vmlinux 0xb5fcf218 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xb61ec03d d_invalidate +EXPORT_SYMBOL vmlinux 0xb6238a63 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xb62f98e5 vc_cons EXPORT_SYMBOL vmlinux 0xb6308446 __load_fpu_regs EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb63644e6 flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xb6480ccf __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xb649eab2 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xb64ba02a iget_failed -EXPORT_SYMBOL vmlinux 0xb65b1993 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xb661b39e genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xb6640816 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xb665144c dev_get_iflink EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6850ed9 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xb6878a1c mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xb68bc596 zpci_report_error +EXPORT_SYMBOL vmlinux 0xb69170e1 rt6_lookup EXPORT_SYMBOL vmlinux 0xb692395e neigh_proc_dointvec EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a34665 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0xb6a7f0a1 generic_block_bmap EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b5cd6a dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xb6ae9fc4 has_capability +EXPORT_SYMBOL vmlinux 0xb6c93795 new_inode EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6d5dd94 ethtool_aggregate_phy_stats +EXPORT_SYMBOL vmlinux 0xb6d47b87 fs_lookup_param EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6e63f19 invalidate_disk -EXPORT_SYMBOL vmlinux 0xb6ec0ae1 skb_condense +EXPORT_SYMBOL vmlinux 0xb6eb3d84 ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0xb6f4dbfc ___ratelimit EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb70dee93 udp_disconnect +EXPORT_SYMBOL vmlinux 0xb707328c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xb70a4d29 task_work_add EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb723d5e9 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xb7395eb7 block_read_full_folio -EXPORT_SYMBOL vmlinux 0xb73ea75e sys_fillrect -EXPORT_SYMBOL vmlinux 0xb767da6c dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xb783943c inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xb729cfe0 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xb74129c9 request_firmware +EXPORT_SYMBOL vmlinux 0xb7542be4 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xb76a0b8b scsi_scan_target +EXPORT_SYMBOL vmlinux 0xb7734332 pci_set_master EXPORT_SYMBOL vmlinux 0xb78700c3 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0xb78788ed netlink_net_capable EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb79708c9 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xb79df1ed netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xb7a26d2f mtree_load -EXPORT_SYMBOL vmlinux 0xb7aadc93 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xb7aead53 tcp_recv_skb -EXPORT_SYMBOL vmlinux 0xb7aefade lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0xb7af5dfe cdev_alloc -EXPORT_SYMBOL vmlinux 0xb7bffb66 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0xb7c0050c key_type_keyring +EXPORT_SYMBOL vmlinux 0xb7a6706f xfrm_init_state +EXPORT_SYMBOL vmlinux 0xb7bd5956 netlink_ns_capable EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7c8a963 page_symlink -EXPORT_SYMBOL vmlinux 0xb7cce937 netif_rx +EXPORT_SYMBOL vmlinux 0xb7d9cea5 input_mt_report_pointer_emulation EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c -EXPORT_SYMBOL vmlinux 0xb7f1429e bio_put -EXPORT_SYMBOL vmlinux 0xb81196d9 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xb80aeb6f filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xb8194348 param_get_hexint EXPORT_SYMBOL vmlinux 0xb827d331 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0xb82d90d3 stream_open +EXPORT_SYMBOL vmlinux 0xb84b5a19 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xb853597b udp_seq_start +EXPORT_SYMBOL vmlinux 0xb862129b pcie_capability_clear_and_set_word_locked +EXPORT_SYMBOL vmlinux 0xb867dd26 netpoll_cleanup EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb87cdb69 tty_port_hangup EXPORT_SYMBOL vmlinux 0xb87f5b9d tcw_set_tccb EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89eca5c security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xb89f58c7 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xb8a6e933 _dev_crit +EXPORT_SYMBOL vmlinux 0xb8a76e44 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xb8a7aff1 __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b26e1d register_md_personality EXPORT_SYMBOL vmlinux 0xb8b27e06 __sie64a -EXPORT_SYMBOL vmlinux 0xb8bc1327 ilookup5 -EXPORT_SYMBOL vmlinux 0xb8d598fd dev_mc_flush -EXPORT_SYMBOL vmlinux 0xb8f82dcd folio_mapping -EXPORT_SYMBOL vmlinux 0xb8fc026b notify_change -EXPORT_SYMBOL vmlinux 0xb90020a7 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xb9082388 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xb8be6152 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb8d16c42 arp_tbl +EXPORT_SYMBOL vmlinux 0xb8daf923 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xb8eb1665 pmdp_xchg_lazy EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb912e068 xfrm_state_update EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb94f4d5d __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0xb956d7f1 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xb9595a08 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xb95f1067 security_unix_may_send -EXPORT_SYMBOL vmlinux 0xb964ecde blk_get_queue -EXPORT_SYMBOL vmlinux 0xb9673e68 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xb969380b ipv4_specific +EXPORT_SYMBOL vmlinux 0xb96a9a2b netdev_get_by_index EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb96fb7c1 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb97924bc raw3270_find_view +EXPORT_SYMBOL vmlinux 0xb97e2639 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0xb9825984 __klp_sched_try_switch -EXPORT_SYMBOL vmlinux 0xb9bcd210 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0xb9cfe109 filp_open -EXPORT_SYMBOL vmlinux 0xb9e669c0 param_get_int +EXPORT_SYMBOL vmlinux 0xb9983cab rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xb9bc665f input_mt_report_finger_count EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9eaec7b phy_write_paged +EXPORT_SYMBOL vmlinux 0xb9edb791 param_set_copystring EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba361955 passthru_features_check -EXPORT_SYMBOL vmlinux 0xba3b2011 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xba3e3979 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xba0ebd08 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xba2023b1 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xba37c887 dcb_delrewr +EXPORT_SYMBOL vmlinux 0xba3952dc skb_abort_seq_read EXPORT_SYMBOL vmlinux 0xba46a344 __tracepoint_s390_cio_rsch EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba49b368 filemap_alloc_folio -EXPORT_SYMBOL vmlinux 0xba8c4ced kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xbaa1dddd ping_prot -EXPORT_SYMBOL vmlinux 0xbaa31c87 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0xbaa4785c skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xbac53f7f xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xbae2564b pci_bus_type +EXPORT_SYMBOL vmlinux 0xba507b17 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xba730bed platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xba76980c skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0xba7bf73e scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xba8b1f20 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xba9624f0 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xbaa53d64 bmap +EXPORT_SYMBOL vmlinux 0xbaa92de0 find_vma_intersection +EXPORT_SYMBOL vmlinux 0xbacfc76a dget_parent +EXPORT_SYMBOL vmlinux 0xbaeedc3f ap_driver_register EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbafacca8 dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb08dbee tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0xbb090832 ip_defrag -EXPORT_SYMBOL vmlinux 0xbb126532 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xbb16ec8a tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xbb21ab0e dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xbb23b70f mpage_read_folio +EXPORT_SYMBOL vmlinux 0xbb05cfb0 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xbb1dfb0f vif_device_init +EXPORT_SYMBOL vmlinux 0xbb24aadd genl_register_family EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb50ecc8 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xbb4afcff pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xbb55c7d8 unregister_nls EXPORT_SYMBOL vmlinux 0xbb5934be __wake_up_bit -EXPORT_SYMBOL vmlinux 0xbb675827 mr_table_dump -EXPORT_SYMBOL vmlinux 0xbb7cdfe3 phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xbb8420dd inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xbb5b2395 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xbb5c53ef ip6_frag_next +EXPORT_SYMBOL vmlinux 0xbb754ad1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xbb936fd2 md_check_recovery EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex -EXPORT_SYMBOL vmlinux 0xbbb98cc3 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0xbbd6ba24 param_set_ushort -EXPORT_SYMBOL vmlinux 0xbbdd8009 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xbbe4d090 dquot_release -EXPORT_SYMBOL vmlinux 0xbc0ed670 keyring_alloc -EXPORT_SYMBOL vmlinux 0xbc1235b2 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0xbc1632a1 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xbc1e87c2 file_open_root -EXPORT_SYMBOL vmlinux 0xbc1ff883 vm_insert_page -EXPORT_SYMBOL vmlinux 0xbc2fb434 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0xbc4d5e3b phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xbc6be56c copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0xbc764233 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xbba3790a blk_get_queue +EXPORT_SYMBOL vmlinux 0xbbbf35cc pci_free_irq +EXPORT_SYMBOL vmlinux 0xbbbf3ba2 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xbbd8bc07 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xbc11ceff dm_table_event +EXPORT_SYMBOL vmlinux 0xbc490267 md_error +EXPORT_SYMBOL vmlinux 0xbc66d495 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xbc72684e ioc_lookup_icq EXPORT_SYMBOL vmlinux 0xbc76641a __SCK__tp_func_s390_cio_ssch -EXPORT_SYMBOL vmlinux 0xbc78829b dev_disable_lro -EXPORT_SYMBOL vmlinux 0xbc833b80 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xbc8aad5e d_obtain_alias +EXPORT_SYMBOL vmlinux 0xbc7fe021 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xbc8e73bc netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xbc9e1407 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0xbca7112e diag_stat_inc_norecursion EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key -EXPORT_SYMBOL vmlinux 0xbcc7bc14 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xbcf61b9b skb_copy_expand -EXPORT_SYMBOL vmlinux 0xbd06d630 can_nice -EXPORT_SYMBOL vmlinux 0xbd1c54c1 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0xbd2f2a4c fs_param_is_enum -EXPORT_SYMBOL vmlinux 0xbd492e74 phy_error -EXPORT_SYMBOL vmlinux 0xbd4b6e1d __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xbd60d758 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0xbd9c7aff dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0xbdab7fc9 kernel_listen -EXPORT_SYMBOL vmlinux 0xbdc3baa1 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xbdeb5e8e pci_unregister_driver -EXPORT_SYMBOL vmlinux 0xbe0658ed netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0xbe32bcba iucv_root -EXPORT_SYMBOL vmlinux 0xbe345663 drop_nlink -EXPORT_SYMBOL vmlinux 0xbe3bf110 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xbe44db48 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xbcb5cf13 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xbcc97f78 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xbcceab21 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xbce5a315 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xbd35d2ba pci_request_region +EXPORT_SYMBOL vmlinux 0xbd436f1e scm_fp_dup +EXPORT_SYMBOL vmlinux 0xbd47d217 __bh_read +EXPORT_SYMBOL vmlinux 0xbd4c6b96 done_path_create +EXPORT_SYMBOL vmlinux 0xbd4cf48a param_set_uint +EXPORT_SYMBOL vmlinux 0xbd88ddb6 dev_mc_init +EXPORT_SYMBOL vmlinux 0xbdaadd54 skb_clone +EXPORT_SYMBOL vmlinux 0xbdc7839d inet_addr_type +EXPORT_SYMBOL vmlinux 0xbddb5069 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xbdeb3b6f tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xbdfaacd7 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xbe0fa6c9 page_pool_update_nid EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe726799 ip_getsockopt -EXPORT_SYMBOL vmlinux 0xbe79bdd8 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xbe89b523 sg_miter_next -EXPORT_SYMBOL vmlinux 0xbebae7b8 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xbee4bbb4 kernel_getsockname -EXPORT_SYMBOL vmlinux 0xbee86f4c inet_recvmsg -EXPORT_SYMBOL vmlinux 0xbeee9c19 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xbe5c597f dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xbe5f5cd6 open_exec +EXPORT_SYMBOL vmlinux 0xbe75f839 init_pseudo +EXPORT_SYMBOL vmlinux 0xbe812e79 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xbe84c6a7 ap_send_config_uevent +EXPORT_SYMBOL vmlinux 0xbeddd768 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xbede7227 bio_uninit +EXPORT_SYMBOL vmlinux 0xbee2b76b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xbee9de8b __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf -EXPORT_SYMBOL vmlinux 0xbf07cc16 param_ops_bint -EXPORT_SYMBOL vmlinux 0xbf10b6d2 dst_release_immediate -EXPORT_SYMBOL vmlinux 0xbf143054 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0xbf1986de fs_param_is_bool -EXPORT_SYMBOL vmlinux 0xbf22277a __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xbef673bf generic_listxattr +EXPORT_SYMBOL vmlinux 0xbefdf369 input_register_handle +EXPORT_SYMBOL vmlinux 0xbf19802f generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xbf2076e5 pps_lookup_dev EXPORT_SYMBOL vmlinux 0xbf49aafa percpu_counter_set -EXPORT_SYMBOL vmlinux 0xbf52ccb9 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init EXPORT_SYMBOL vmlinux 0xbf60aad0 drop_reasons_by_subsys -EXPORT_SYMBOL vmlinux 0xbf7cc0c0 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xbf915c1f flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xbf677553 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0xbf7fcaba pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xbf8dfeec eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0xbf9a5a1e __init_rwsem -EXPORT_SYMBOL vmlinux 0xbfa51baf dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xbfa6f364 kill_block_super -EXPORT_SYMBOL vmlinux 0xbfb7b5c1 km_new_mapping -EXPORT_SYMBOL vmlinux 0xbfc5db75 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xbfcfe6b6 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xbfb3ef3c ether_setup +EXPORT_SYMBOL vmlinux 0xbfbf373e pgste_perform_essa EXPORT_SYMBOL vmlinux 0xbfd9f046 remove_wait_queue -EXPORT_SYMBOL vmlinux 0xbffebf7c unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xc0159cb5 simple_statfs -EXPORT_SYMBOL vmlinux 0xc04012cf netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0xc053ce91 key_alloc +EXPORT_SYMBOL vmlinux 0xbfdd3ab0 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xbfeb8acc write_inode_now +EXPORT_SYMBOL vmlinux 0xc015daf1 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xc03ae2e7 dup_iter +EXPORT_SYMBOL vmlinux 0xc0510389 __skb_ext_del EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get -EXPORT_SYMBOL vmlinux 0xc064b6b1 netlink_capable -EXPORT_SYMBOL vmlinux 0xc06e43ed posix_test_lock +EXPORT_SYMBOL vmlinux 0xc06b36fa compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xc06fa7e0 add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc09177c7 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xc0a825ce scsi_host_get EXPORT_SYMBOL vmlinux 0xc0bfb9d4 VMALLOC_END -EXPORT_SYMBOL vmlinux 0xc0c01628 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xc0dc2b3a vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xc0eeedd4 folio_wait_private_2 EXPORT_SYMBOL vmlinux 0xc0fd237c xxh32 EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc10b0764 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc136f890 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xc12ba712 input_set_capability EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic -EXPORT_SYMBOL vmlinux 0xc13e549e kbd_alloc -EXPORT_SYMBOL vmlinux 0xc140bb46 page_pool_create +EXPORT_SYMBOL vmlinux 0xc13f5136 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc160cd52 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xc158fa40 filemap_splice_read +EXPORT_SYMBOL vmlinux 0xc15d4b0d tty_lock +EXPORT_SYMBOL vmlinux 0xc1605863 fifo_create_dflt EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem EXPORT_SYMBOL vmlinux 0xc16fe12d __memcpy -EXPORT_SYMBOL vmlinux 0xc1819e64 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xc194be5f ccw_device_get_mdc -EXPORT_SYMBOL vmlinux 0xc1c04c49 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xc1c5ac15 netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0xc1cd60c4 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc17b3488 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xc192b4dc tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0xc1abfd39 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xc1bb511c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xc1ce40f0 bdi_unregister +EXPORT_SYMBOL vmlinux 0xc1d35058 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1e6d61b inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xc1ef7fa8 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xc1f0c2d0 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xc1f76571 input_setup_polling -EXPORT_SYMBOL vmlinux 0xc213cfab ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xc22e8a42 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xc1dca019 read_cache_folio +EXPORT_SYMBOL vmlinux 0xc1e612b2 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xc1f395bc fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xc20a0e70 stream_open +EXPORT_SYMBOL vmlinux 0xc20a5687 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xc2140ebd __sock_create +EXPORT_SYMBOL vmlinux 0xc22c0d17 folio_mapping EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xc230473b xp_raw_get_data -EXPORT_SYMBOL vmlinux 0xc23761be udp_prot EXPORT_SYMBOL vmlinux 0xc250590f strnlen_user EXPORT_SYMBOL vmlinux 0xc27ee138 __SCK__tp_func_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xc2898c44 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xc28f6ea9 dec_node_page_state -EXPORT_SYMBOL vmlinux 0xc29ed68e module_put -EXPORT_SYMBOL vmlinux 0xc2c27fa1 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xc28c5509 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xc2a09b9b inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xc2b9f0fc vfs_get_tree +EXPORT_SYMBOL vmlinux 0xc2bd955e blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xc2e1f023 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xc2e42374 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ef60fe ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0xc2f40c8b iucv_bus EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc30766ee __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xc3130be7 pci_clear_master +EXPORT_SYMBOL vmlinux 0xc30cac74 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xc310172c __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xc31423e7 read_cache_page EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc31eceb3 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc327bd5e tcp_v4_connect EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc338af01 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xc345d53e skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0xc34a64eb dma_fence_chain_init EXPORT_SYMBOL vmlinux 0xc359fb65 abort -EXPORT_SYMBOL vmlinux 0xc362112c phy_driver_register -EXPORT_SYMBOL vmlinux 0xc3670ae8 mdio_bus_type -EXPORT_SYMBOL vmlinux 0xc3764373 d_instantiate EXPORT_SYMBOL vmlinux 0xc38a6c60 kobject_set_name EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc38e403d __sk_dst_check -EXPORT_SYMBOL vmlinux 0xc3e3e515 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xc39707f4 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xc3a9cb52 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xc3b1f260 proto_unregister +EXPORT_SYMBOL vmlinux 0xc3c5392e fs_param_is_bool EXPORT_SYMBOL vmlinux 0xc3e45457 down_killable -EXPORT_SYMBOL vmlinux 0xc3f55fbc tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xc3fdc9ce dev_close -EXPORT_SYMBOL vmlinux 0xc402f373 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0xc416c3ff skb_unlink -EXPORT_SYMBOL vmlinux 0xc419df59 md_register_thread +EXPORT_SYMBOL vmlinux 0xc3f7d15b pci_save_state +EXPORT_SYMBOL vmlinux 0xc419c9c4 sock_wfree EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc4290147 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xc42467f8 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xc424e664 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xc425af78 udp_gro_receive EXPORT_SYMBOL vmlinux 0xc433a088 __read_overflow2_field -EXPORT_SYMBOL vmlinux 0xc470f62d dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0xc4764e71 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xc43b923c pid_task +EXPORT_SYMBOL vmlinux 0xc45035e6 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xc45fe458 security_inode_init_security EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc478e6d3 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xc47b3b50 md_done_sync +EXPORT_SYMBOL vmlinux 0xc4914c1b xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0xc4a83cc3 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xc4b93e71 __module_put_and_kthread_exit -EXPORT_SYMBOL vmlinux 0xc4bb29d5 copy_page_to_iter_nofault -EXPORT_SYMBOL vmlinux 0xc4ea51ee genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xc4af0c74 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xc4bcd0f4 phy_detach +EXPORT_SYMBOL vmlinux 0xc4c353ac tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc4c43d6a neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xc4c828ba jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xc4cd86a1 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xc4d1dc32 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0xc4f43370 dma_fence_wait_any_timeout -EXPORT_SYMBOL vmlinux 0xc53139e9 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xc4fa206f param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xc506fb02 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xc51b8f7b __icmp_send +EXPORT_SYMBOL vmlinux 0xc52694f9 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xc529c0e2 sock_release +EXPORT_SYMBOL vmlinux 0xc530d7e3 tls_handshake_cancel EXPORT_SYMBOL vmlinux 0xc53c4e62 cpumask_next_wrap -EXPORT_SYMBOL vmlinux 0xc5475c09 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xc560c558 ccw_device_dma_free +EXPORT_SYMBOL vmlinux 0xc53ce971 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xc554e280 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset -EXPORT_SYMBOL vmlinux 0xc5741874 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xc57ad5d5 dev_driver_string EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 -EXPORT_SYMBOL vmlinux 0xc5928ec0 pci_save_state +EXPORT_SYMBOL vmlinux 0xc58114bc tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xc586d725 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit EXPORT_SYMBOL vmlinux 0xc5b0d06f lockref_put_return EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on EXPORT_SYMBOL vmlinux 0xc5c8b56c raw_copy_to_user -EXPORT_SYMBOL vmlinux 0xc5d1be9b skb_try_coalesce EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc621b4d3 simple_write_begin EXPORT_SYMBOL vmlinux 0xc622ea97 stsi EXPORT_SYMBOL vmlinux 0xc62ab2bc mempool_destroy EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc6329d28 kernel_write EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc6449e3d phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xc6463c55 sock_no_connect -EXPORT_SYMBOL vmlinux 0xc648d01a posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xc649c30e tcp_read_sock +EXPORT_SYMBOL vmlinux 0xc64bf086 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xc655a214 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc66d3543 __seq_open_private EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable -EXPORT_SYMBOL vmlinux 0xc6e27cf6 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc6f06dd0 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one -EXPORT_SYMBOL vmlinux 0xc6f3e604 task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key EXPORT_SYMBOL vmlinux 0xc6f8989b airq_iv_release -EXPORT_SYMBOL vmlinux 0xc6f9549f rtnl_notify -EXPORT_SYMBOL vmlinux 0xc6f9d292 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xc6fb02c7 pci_release_region -EXPORT_SYMBOL vmlinux 0xc709d311 sock_i_uid -EXPORT_SYMBOL vmlinux 0xc714fd90 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xc70d9165 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xc72f7279 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xc733db9b scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xc7501e3b generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xc764f031 tcf_idr_search -EXPORT_SYMBOL vmlinux 0xc7687eb1 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xc76bc898 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xc77c437f fb_set_cmap +EXPORT_SYMBOL vmlinux 0xc732dfdc devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xc7359706 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xc735c17f blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xc73b027e nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xc751745f netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xc75186bf iov_iter_init +EXPORT_SYMBOL vmlinux 0xc75746d9 build_skb_around +EXPORT_SYMBOL vmlinux 0xc7588073 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xc758d6ca jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xc75ae36b xfrm_input +EXPORT_SYMBOL vmlinux 0xc75e16b8 netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc785b879 dma_map_resource -EXPORT_SYMBOL vmlinux 0xc79c4d12 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xc79b32de generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock -EXPORT_SYMBOL vmlinux 0xc7a81bdf nf_setsockopt EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe EXPORT_SYMBOL vmlinux 0xc7d2cf1a kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xc804403c devm_ioremap -EXPORT_SYMBOL vmlinux 0xc808deb9 vfs_fsync -EXPORT_SYMBOL vmlinux 0xc80a83bb remap_pfn_range -EXPORT_SYMBOL vmlinux 0xc80d1677 __destroy_inode +EXPORT_SYMBOL vmlinux 0xc7e7d2ec block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xc801c50b netpoll_setup EXPORT_SYMBOL vmlinux 0xc8106878 gen_pool_fixed_alloc -EXPORT_SYMBOL vmlinux 0xc816a2c8 eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0xc81db162 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0xc82459f1 pcie_print_link_status -EXPORT_SYMBOL vmlinux 0xc82e8c9b user_revoke -EXPORT_SYMBOL vmlinux 0xc83904ae skb_pull +EXPORT_SYMBOL vmlinux 0xc82a4caa __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc8402069 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xc847206a mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xc8477114 jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84d2875 bio_alloc_clone -EXPORT_SYMBOL vmlinux 0xc854ee48 console_stop -EXPORT_SYMBOL vmlinux 0xc8561200 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xc84cfd76 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xc8503c4d genphy_soft_reset EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8756e2e seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xc87ce99f __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0xc87b335c path_put EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc883b6c1 close_fd_get_file EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc896c1f1 iget_locked +EXPORT_SYMBOL vmlinux 0xc8a46437 dev_uc_del EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8ae27f0 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xc8ae7141 folio_create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc8b95174 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0xc8c1f170 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xc8cddfa0 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0xc8dba3d4 sock_edemux EXPORT_SYMBOL vmlinux 0xc8e173ed _find_next_bit_le -EXPORT_SYMBOL vmlinux 0xc8fc9f50 fc_mount +EXPORT_SYMBOL vmlinux 0xc8f45703 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xc8fddcdf irq_set_chip +EXPORT_SYMBOL vmlinux 0xc90f54e2 bio_integrity_alloc EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc91d61f7 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xc920f421 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0xc9456179 put_ipc_ns -EXPORT_SYMBOL vmlinux 0xc94778d5 dev_trans_start +EXPORT_SYMBOL vmlinux 0xc92c2cf9 dma_map_resource +EXPORT_SYMBOL vmlinux 0xc9429889 add_to_pipe EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr -EXPORT_SYMBOL vmlinux 0xc9567531 km_report EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc96afb73 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc967821c seq_puts EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc97d23c8 km_policy_expired EXPORT_SYMBOL vmlinux 0xc97f0a42 zstd_get_frame_header -EXPORT_SYMBOL vmlinux 0xc98b146f kill_fasync -EXPORT_SYMBOL vmlinux 0xc9b67a05 set_nlink -EXPORT_SYMBOL vmlinux 0xc9c69ba1 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xc9d1f60b pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xc9d459c2 skb_expand_head +EXPORT_SYMBOL vmlinux 0xc9846543 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xc98b8724 vlan_for_each +EXPORT_SYMBOL vmlinux 0xc99f8ad7 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xc9bd8750 sock_alloc EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9ebc533 skb_clone_sk -EXPORT_SYMBOL vmlinux 0xc9eef94c bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xc9fda570 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0xc9fe8f2c skb_eth_pop +EXPORT_SYMBOL vmlinux 0xca01a1fc blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xca17639e call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca1f4a62 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca266f2c netlink_ack +EXPORT_SYMBOL vmlinux 0xca36ec6d input_set_timestamp EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca468779 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xca6aefe6 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xca520dba mount_bdev +EXPORT_SYMBOL vmlinux 0xca6159b0 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xca654388 d_instantiate +EXPORT_SYMBOL vmlinux 0xca83d737 read_cache_page_gfp EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa5fc3d qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xcaca0697 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xcad8e74b inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xcae17a32 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xcadd5cb2 input_open_device EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xcae5bf54 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0xcaf8f5f0 raw3270_start_irq +EXPORT_SYMBOL vmlinux 0xcafb3858 register_qdisc +EXPORT_SYMBOL vmlinux 0xcaff15b5 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xcb01608d set_page_writeback +EXPORT_SYMBOL vmlinux 0xcb058e4c scsi_print_result +EXPORT_SYMBOL vmlinux 0xcb0cdc59 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xcb0e5880 input_event +EXPORT_SYMBOL vmlinux 0xcb0fb97f truncate_pagecache_range EXPORT_SYMBOL vmlinux 0xcb196b9d __vcalloc +EXPORT_SYMBOL vmlinux 0xcb22d0aa fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xcb25eb5f tc_setup_offload_action EXPORT_SYMBOL vmlinux 0xcb34a6e7 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb4fd243 key_unlink -EXPORT_SYMBOL vmlinux 0xcb5bcbd1 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xcb8b090a pskb_expand_head -EXPORT_SYMBOL vmlinux 0xcb91ae7d input_set_timestamp +EXPORT_SYMBOL vmlinux 0xcb4682f1 deactivate_super +EXPORT_SYMBOL vmlinux 0xcb7675bb security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xcba56bd9 path_get EXPORT_SYMBOL vmlinux 0xcba6550b __SCK__tp_func_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0xcbb17f95 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xcbbd58de elv_rb_find EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbd373bf dquot_drop +EXPORT_SYMBOL vmlinux 0xcbc0d5f9 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xcbd29a9f iucv_bus EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbf971ca mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xcc000374 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xcc158c39 timestamp_truncate -EXPORT_SYMBOL vmlinux 0xcc1d4d30 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xcbddd75b dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xcbe23ca0 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xcbf0429a tcp_check_req +EXPORT_SYMBOL vmlinux 0xcbfd9f8b eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xcc01f5b6 genphy_c45_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xcc149976 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xcc21e00a begin_new_exec +EXPORT_SYMBOL vmlinux 0xcc2797f8 kernel_tmpfile_open EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc454aae page_pool_destroy EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5a1311 tcp_parse_options EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc6130a0 logfc -EXPORT_SYMBOL vmlinux 0xcca7ea66 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xcca9e54d set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xccaad46d input_register_handle -EXPORT_SYMBOL vmlinux 0xccaea876 sock_alloc +EXPORT_SYMBOL vmlinux 0xcc67fe09 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xcc70a19b keyring_clear +EXPORT_SYMBOL vmlinux 0xcc7680e2 ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0xcc9301fb locks_remove_posix +EXPORT_SYMBOL vmlinux 0xcca2f0f9 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xccaf4e91 sock_init_data_uid EXPORT_SYMBOL vmlinux 0xccb491e8 bsearch -EXPORT_SYMBOL vmlinux 0xccb5c659 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0xccc13ad2 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xcccf4fc6 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xcccc8772 param_ops_uint +EXPORT_SYMBOL vmlinux 0xccd34883 seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0xcce15c38 finish_no_open -EXPORT_SYMBOL vmlinux 0xcce33bee scsi_host_lookup -EXPORT_SYMBOL vmlinux 0xcce991fa n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0xccea7a30 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xcce05324 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xccf9f229 task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xccfb2a8d set_security_override_from_ctx EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0xcd000557 generic_error_remove_page EXPORT_SYMBOL vmlinux 0xcd0c29d2 wait_for_completion_interruptible_timeout EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd28f43c ap_flush_queue -EXPORT_SYMBOL vmlinux 0xcd638e60 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xcd76fb0c fs_bio_set -EXPORT_SYMBOL vmlinux 0xcd79abb8 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xcd952a53 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xcd322622 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xcd3f65e4 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xcd56d928 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xcd7d6319 sock_efree +EXPORT_SYMBOL vmlinux 0xcd899c3a tty_port_hangup +EXPORT_SYMBOL vmlinux 0xcd923d9f generic_write_checks EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xcdaa478d qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0xcdb10565 netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xcdb68b34 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xcdc1025d tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xcdc29a6a gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xcda7b057 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xcdb90ffc mark_buffer_dirty EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdc49968 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xcdc4c1a6 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xcde26b35 tcf_generic_walker EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcde8b62b netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xcdffa96d skb_copy_bits +EXPORT_SYMBOL vmlinux 0xcdfb2897 iunique +EXPORT_SYMBOL vmlinux 0xcdfdbff1 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0xce0c1f34 dfltcc_deflate -EXPORT_SYMBOL vmlinux 0xce12f1d2 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0xce205ea9 seq_release +EXPORT_SYMBOL vmlinux 0xce186271 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce2afe92 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xce2efeb8 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0xce3f9b69 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xce405f81 inet_sock_destruct EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce582a73 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xce569a68 phy_attached_info EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce775a59 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xce5d779b writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xce649b60 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xce677618 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section -EXPORT_SYMBOL vmlinux 0xcea8d6e3 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xce967da9 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xce9b9eec pci_find_bus +EXPORT_SYMBOL vmlinux 0xce9fa524 phy_validate_pause EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul EXPORT_SYMBOL vmlinux 0xcebe3bd9 gen_new_estimator -EXPORT_SYMBOL vmlinux 0xced8a5c7 __folio_cancel_dirty -EXPORT_SYMBOL vmlinux 0xcef6c9b3 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xcefff502 consume_skb -EXPORT_SYMBOL vmlinux 0xcf07d1e7 console_start -EXPORT_SYMBOL vmlinux 0xcf129e5e rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xcf2763df generic_file_read_iter -EXPORT_SYMBOL vmlinux 0xcf2d9883 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xcedb00c3 seq_printf +EXPORT_SYMBOL vmlinux 0xcef3fc45 mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0xcef64d20 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xcefbd34c mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xcf26e867 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xcf2afda3 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xcf2c69d4 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0xcf2ea86b __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xcf332c9e __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xcf33ea6b tcp_close EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf4958ec module_layout -EXPORT_SYMBOL vmlinux 0xcf66c8ac ihold -EXPORT_SYMBOL vmlinux 0xcf7e30e7 simple_nosetlease -EXPORT_SYMBOL vmlinux 0xcf8196bb remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xcf8868e1 iucv_if -EXPORT_SYMBOL vmlinux 0xcf892807 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xcf426734 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcf4acdbb phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xcf4f8cde ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xcf59d605 kernel_connect +EXPORT_SYMBOL vmlinux 0xcf6adb6d seq_bprintf +EXPORT_SYMBOL vmlinux 0xcf7745fa ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xcf9ad09d ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfb05070 __fs_parse -EXPORT_SYMBOL vmlinux 0xcfb14ed0 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xcfbf2286 poll_freewait -EXPORT_SYMBOL vmlinux 0xcfc0147b jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0xcfd634b3 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0xcfd7747c bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xcf9b65cf inode_nohighmem +EXPORT_SYMBOL vmlinux 0xcfb87786 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xcfb9d960 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xcfc1fe0b mpage_readahead +EXPORT_SYMBOL vmlinux 0xcfc3f4d6 blk_put_queue EXPORT_SYMBOL vmlinux 0xcfe16dc5 key_create EXPORT_SYMBOL vmlinux 0xcfe403ca mtree_insert -EXPORT_SYMBOL vmlinux 0xcfefcebb dev_set_alias -EXPORT_SYMBOL vmlinux 0xd0079273 genl_notify -EXPORT_SYMBOL vmlinux 0xd016ae16 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xcfff9946 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xd00000b3 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xd0135103 find_inode_rcu +EXPORT_SYMBOL vmlinux 0xd0283110 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xd037b57f md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xd04a43d9 param_set_invbool EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05e5582 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06f8143 zpool_register_driver EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07b8903 param_get_ulong -EXPORT_SYMBOL vmlinux 0xd09a5ba9 inode_get_bytes -EXPORT_SYMBOL vmlinux 0xd0a1172e security_inode_init_security -EXPORT_SYMBOL vmlinux 0xd0ad1dc0 qdisc_offload_query_caps -EXPORT_SYMBOL vmlinux 0xd0e27fc1 phy_connect_direct -EXPORT_SYMBOL vmlinux 0xd0ea8908 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0xd0ecfb22 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xd104eeab prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xd10efefe generic_update_time +EXPORT_SYMBOL vmlinux 0xd0789fd4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xd087e644 param_set_ushort +EXPORT_SYMBOL vmlinux 0xd09b68b5 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xd0af68f3 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd0d10ef4 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xd0e00d67 send_sig +EXPORT_SYMBOL vmlinux 0xd0ff63ff _dev_printk +EXPORT_SYMBOL vmlinux 0xd1085535 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xd113160c tcp_initialize_rcv_mss EXPORT_SYMBOL vmlinux 0xd11bac17 check_zeroed_user -EXPORT_SYMBOL vmlinux 0xd11da78d eth_header_cache_update -EXPORT_SYMBOL vmlinux 0xd12368f5 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xd1239e18 phy_read_paged -EXPORT_SYMBOL vmlinux 0xd1339798 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xd15311fa request_key_tag -EXPORT_SYMBOL vmlinux 0xd15a01a5 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xd160047a __traceiter_module_get -EXPORT_SYMBOL vmlinux 0xd1645502 generic_write_checks -EXPORT_SYMBOL vmlinux 0xd17f890a ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xd12d80d0 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xd13203f8 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xd16be335 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xd16e6d54 simple_getattr +EXPORT_SYMBOL vmlinux 0xd17ed769 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xd18d12c4 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xd192c918 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xd1979a58 scsi_mode_sense EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg -EXPORT_SYMBOL vmlinux 0xd1c81823 path_get -EXPORT_SYMBOL vmlinux 0xd1d2815a netif_set_tso_max_size -EXPORT_SYMBOL vmlinux 0xd1d39498 dm_register_target +EXPORT_SYMBOL vmlinux 0xd1b61d62 reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1e0c75e pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xd1e710e2 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xd1e9e560 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xd209e848 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0xd21636d0 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xd20c795b __netif_rx EXPORT_SYMBOL vmlinux 0xd2260096 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0xd239c31a scsi_scan_target -EXPORT_SYMBOL vmlinux 0xd240fb4a scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xd2498c52 pin_user_pages -EXPORT_SYMBOL vmlinux 0xd24c64c7 neigh_event_ns EXPORT_SYMBOL vmlinux 0xd2504a8c arch_spin_lock_wait EXPORT_SYMBOL vmlinux 0xd2510a63 up_write +EXPORT_SYMBOL vmlinux 0xd255252c fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xd2553aac phy_device_remove EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd259c780 mt_find_after +EXPORT_SYMBOL vmlinux 0xd25c4672 __lock_buffer EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd263d191 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xd268dddc param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd277cde6 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xd27a40d5 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd28a25f2 __ip_select_ident -EXPORT_SYMBOL vmlinux 0xd28a88ce path_put -EXPORT_SYMBOL vmlinux 0xd2ab201d netlink_set_err -EXPORT_SYMBOL vmlinux 0xd2c6be81 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xd2d6098f kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xd291f79a folio_end_writeback +EXPORT_SYMBOL vmlinux 0xd2b153fd unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xd2cdb7a0 qdisc_put +EXPORT_SYMBOL vmlinux 0xd2d84d86 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd3169570 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xd321ff69 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0xd34640db input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xd2e412ba jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xd2e89e3b xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd2f77515 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xd30b36c0 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xd3339974 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xd34e512c bio_add_folio EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd36b2365 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xd35aff98 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xd35f9300 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 -EXPORT_SYMBOL vmlinux 0xd3708a63 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xd3816308 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xd382d7de netdev_port_same_parent_id -EXPORT_SYMBOL vmlinux 0xd3894893 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xd389aadb __folio_alloc +EXPORT_SYMBOL vmlinux 0xd3753617 unix_get_socket +EXPORT_SYMBOL vmlinux 0xd38b7b2e write_cache_pages EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd39f5118 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd3abbad7 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xd39517b0 debugfs_create_automount EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3cd5646 netdev_name_in_use EXPORT_SYMBOL vmlinux 0xd3cf1c01 down_write -EXPORT_SYMBOL vmlinux 0xd3d16b79 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0xd3f1edac make_kuid EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd41f5f51 folio_clear_dirty_for_io -EXPORT_SYMBOL vmlinux 0xd43967ee dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xd45145e7 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xd451dbe2 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0xd4524111 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xd4574456 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0xd4692539 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xd4438782 input_copy_abs +EXPORT_SYMBOL vmlinux 0xd461be6a md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd466848f generic_permission EXPORT_SYMBOL vmlinux 0xd469bccc __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd472b5f0 bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0xd473adc4 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0xd489d678 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xd469d0a6 _dev_warn +EXPORT_SYMBOL vmlinux 0xd475dba2 genphy_c45_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xd487bd06 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xd48cbbae xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb -EXPORT_SYMBOL vmlinux 0xd49868c9 zap_page_range_single EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4d87c60 phy_attach +EXPORT_SYMBOL vmlinux 0xd4cd51ad ptep_xchg_direct +EXPORT_SYMBOL vmlinux 0xd4d06b3f input_grab_device +EXPORT_SYMBOL vmlinux 0xd4d3647c nf_log_trace EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0xd5123905 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd55a16e7 param_get_charp -EXPORT_SYMBOL vmlinux 0xd5624a2b inet_del_offload +EXPORT_SYMBOL vmlinux 0xd5435688 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xd54452b4 folio_alloc +EXPORT_SYMBOL vmlinux 0xd554f50a netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0xd566933c up -EXPORT_SYMBOL vmlinux 0xd59113ba __ip_dev_find -EXPORT_SYMBOL vmlinux 0xd59215b8 copy_string_kernel -EXPORT_SYMBOL vmlinux 0xd59c9e6b pneigh_lookup +EXPORT_SYMBOL vmlinux 0xd56e1aea netdev_get_by_name +EXPORT_SYMBOL vmlinux 0xd576f3d9 pci_find_resource +EXPORT_SYMBOL vmlinux 0xd5838ed0 iterate_dir +EXPORT_SYMBOL vmlinux 0xd5876e01 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xd5a62466 md_finish_reshape EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5d572b1 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xd5df1c41 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd5b6b8fd pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index +EXPORT_SYMBOL vmlinux 0xd5f071ae pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xd5f4bd33 scsi_remove_target EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd6113e02 param_set_copystring -EXPORT_SYMBOL vmlinux 0xd616289f inet_ioctl -EXPORT_SYMBOL vmlinux 0xd61bb222 __skb_pad -EXPORT_SYMBOL vmlinux 0xd62e5788 thread_group_exited -EXPORT_SYMBOL vmlinux 0xd63625ce __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0xd639f3be sock_set_mark +EXPORT_SYMBOL vmlinux 0xd60e3866 bio_chain +EXPORT_SYMBOL vmlinux 0xd61ed209 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xd622608b ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xd62c5592 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only -EXPORT_SYMBOL vmlinux 0xd643399d jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xd64426b5 __traceiter_s390_cio_hsch EXPORT_SYMBOL vmlinux 0xd6454286 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd647c057 setup_new_exec -EXPORT_SYMBOL vmlinux 0xd655e4b4 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0xd65e104b pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xd65c2534 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xd6671e7b configfs_register_group EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states -EXPORT_SYMBOL vmlinux 0xd67aacbe tty_do_resize -EXPORT_SYMBOL vmlinux 0xd67cb6e1 register_md_personality +EXPORT_SYMBOL vmlinux 0xd6755241 poll_initwait +EXPORT_SYMBOL vmlinux 0xd675b00b kern_path_create EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd6a28e87 param_ops_int -EXPORT_SYMBOL vmlinux 0xd6b202ae generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xd6b3c7da skb_checksum +EXPORT_SYMBOL vmlinux 0xd68ebdb4 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xd69101c3 inetdev_by_index EXPORT_SYMBOL vmlinux 0xd6bf3f5d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0xd6c3146d tcp_req_err +EXPORT_SYMBOL vmlinux 0xd6cafaf0 filemap_fault +EXPORT_SYMBOL vmlinux 0xd6df89ef iptun_encaps EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f6dd77 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd6ffba51 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xd7077d6c path_is_under +EXPORT_SYMBOL vmlinux 0xd708d53f setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0xd7096271 d_delete EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe -EXPORT_SYMBOL vmlinux 0xd71ceaac sk_net_capable +EXPORT_SYMBOL vmlinux 0xd7125bd2 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xd72ec6f5 pci_scan_single_device EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers EXPORT_SYMBOL vmlinux 0xd73d34e0 unregister_external_irq -EXPORT_SYMBOL vmlinux 0xd781bd70 ip_check_defrag -EXPORT_SYMBOL vmlinux 0xd7839b71 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd74a3bba netif_device_attach +EXPORT_SYMBOL vmlinux 0xd76e68e5 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xd77064e1 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xd774b623 ccw_device_dma_free +EXPORT_SYMBOL vmlinux 0xd77b934f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xd78ae9df ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xd78c5a9c dma_fence_describe EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd79b5f09 md_write_start +EXPORT_SYMBOL vmlinux 0xd7b0fa75 simple_rename +EXPORT_SYMBOL vmlinux 0xd7b89af3 security_sb_remount EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d66140 seq_putc EXPORT_SYMBOL vmlinux 0xd7e1c5e1 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xd7e4b3df xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7ebbe7a fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xd7f7c425 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0xd7f99a10 lookup_one_qstr_excl -EXPORT_SYMBOL vmlinux 0xd7fd7c5a __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xd81917c4 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xd8055a80 send_sig_info EXPORT_SYMBOL vmlinux 0xd827fff3 memremap -EXPORT_SYMBOL vmlinux 0xd8304beb pin_user_pages_remote EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd83bede4 dma_unmap_page_attrs -EXPORT_SYMBOL vmlinux 0xd855bd3d ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xd83f248e phy_disconnect +EXPORT_SYMBOL vmlinux 0xd8431180 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xd8458be5 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xd85344b5 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd869c299 dentry_create +EXPORT_SYMBOL vmlinux 0xd86e7276 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xd8763783 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xd88604bb set_capacity EXPORT_SYMBOL vmlinux 0xd88dbbf4 refcount_dec_and_lock -EXPORT_SYMBOL vmlinux 0xd893e5e3 param_set_hexint +EXPORT_SYMBOL vmlinux 0xd8928cf7 security_inode_copy_up EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b1b099 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit +EXPORT_SYMBOL vmlinux 0xd8c4becc tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xd8d62e30 skb_pull +EXPORT_SYMBOL vmlinux 0xd8d986f1 pci_scan_slot EXPORT_SYMBOL vmlinux 0xd8e41cc6 utf8_strncmp -EXPORT_SYMBOL vmlinux 0xd8e599e1 register_netdev -EXPORT_SYMBOL vmlinux 0xd8eddecb vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xd8fa56d3 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xd8fbde35 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0xd8f52312 pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd EXPORT_SYMBOL vmlinux 0xd8fea321 __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xd90d1053 skb_split -EXPORT_SYMBOL vmlinux 0xd91370e5 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xd9151ea9 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xd906c903 folio_add_lru +EXPORT_SYMBOL vmlinux 0xd9094775 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xd9122749 __post_watch_notification +EXPORT_SYMBOL vmlinux 0xd91c99e6 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xd922e64b jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xd92c2afb zstd_decompress_stream -EXPORT_SYMBOL vmlinux 0xd94e5874 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0xd95aecf5 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xd937f441 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xd94b7153 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0xd9658d18 tcp_prot EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string +EXPORT_SYMBOL vmlinux 0xd973a47b drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xd979a655 blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9a462f0 pci_dev_driver EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9ba7aca folio_account_redirty -EXPORT_SYMBOL vmlinux 0xd9c45d46 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0xd9d01997 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xd9cdd7e6 clear_inode EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e6a105 dev_set_threaded -EXPORT_SYMBOL vmlinux 0xda184329 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xd9e31656 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xd9e95727 netdev_notice +EXPORT_SYMBOL vmlinux 0xda0033a5 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xda01dc79 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xda334797 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xda3c74b0 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda3e497c mdiobus_setup_mdiodev_from_board_info -EXPORT_SYMBOL vmlinux 0xda5490ee input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xda696a11 sk_wait_data -EXPORT_SYMBOL vmlinux 0xda6ddb27 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xda44eb96 flush_signals EXPORT_SYMBOL vmlinux 0xda6fa05c _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xda75f7c1 skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0xda783dd6 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xda9b59eb udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xdab32638 ap_cancel_message +EXPORT_SYMBOL vmlinux 0xdab4f2c6 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdace8e59 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xdac541d3 seq_open +EXPORT_SYMBOL vmlinux 0xdacaaad5 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0xdada0aa4 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xdadbd5d5 ap_queue_init_state -EXPORT_SYMBOL vmlinux 0xdade1155 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape -EXPORT_SYMBOL vmlinux 0xdaf56329 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xdb091c08 md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0xdb1248a7 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0xdb2b8016 inet6_offloads -EXPORT_SYMBOL vmlinux 0xdb2c7872 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xdb58ff34 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xdaf6ad7f device_get_mac_address +EXPORT_SYMBOL vmlinux 0xdb03b93a genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xdb1c1bc1 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xdb24a2dd pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xdb2744bb proc_set_size +EXPORT_SYMBOL vmlinux 0xdb55762c touch_buffer +EXPORT_SYMBOL vmlinux 0xdb55c4de set_binfmt +EXPORT_SYMBOL vmlinux 0xdb73aa4c md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb9ea276 sock_release +EXPORT_SYMBOL vmlinux 0xdb89d3c8 phy_stop +EXPORT_SYMBOL vmlinux 0xdb8bc9c6 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xdb8f6628 user_revoke +EXPORT_SYMBOL vmlinux 0xdb9788a7 security_inet_conn_established EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0xdbbac91b mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0xdbb1d19b f_setown +EXPORT_SYMBOL vmlinux 0xdbc01a72 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xdbc43308 ap_driver_unregister EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbc8319c neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0xdbd35f32 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xdbdb8aaa dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe2fd17 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xdbf02636 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xdbf8840b kbd_ioctl +EXPORT_SYMBOL vmlinux 0xdbfb2c93 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xdc0ca8d8 tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc243423 ccw_device_set_options +EXPORT_SYMBOL vmlinux 0xdc188431 block_truncate_page EXPORT_SYMBOL vmlinux 0xdc34e840 mtree_destroy -EXPORT_SYMBOL vmlinux 0xdc3db6d4 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0xdc3e7c8e blk_queue_io_opt EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc4079a5 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xdc42bd62 input_close_device -EXPORT_SYMBOL vmlinux 0xdc4324b8 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xdc46c46d pci_read_config_dword EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc54b90e dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xdc551c54 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xdc5b4f70 vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0xdc63b5d5 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xdc640b07 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xdc6cd51e I_BDEV +EXPORT_SYMBOL vmlinux 0xdc6cfcb1 misc_deregister +EXPORT_SYMBOL vmlinux 0xdc8dd7fe pci_pme_active EXPORT_SYMBOL vmlinux 0xdc96f398 __SCK__tp_func_s390_cio_csch -EXPORT_SYMBOL vmlinux 0xdc9abbab tls_handshake_cancel -EXPORT_SYMBOL vmlinux 0xdca3bd72 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xdc9c60f5 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xdcaad985 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xdcbd20ed genl_unregister_family +EXPORT_SYMBOL vmlinux 0xdcc11132 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xdcca252d fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xdcd21466 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xdcd95af2 scsi_alloc_sgtables EXPORT_SYMBOL vmlinux 0xdce4bb87 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xdcf09c5b dm_io EXPORT_SYMBOL vmlinux 0xdcf84646 sort_r -EXPORT_SYMBOL vmlinux 0xdd01588a param_ops_ulong +EXPORT_SYMBOL vmlinux 0xdd04638f dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xdd10c94a qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xdd1a8d6e tcp_read_skb +EXPORT_SYMBOL vmlinux 0xdd271c4a ram_aops EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd2e6a3d netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0xdd4db76b __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xdd333357 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xdd3ee87a take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xdd524b1b vfs_rmdir EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg -EXPORT_SYMBOL vmlinux 0xdd7bd21a xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xdd7e567c skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xdd7fc360 input_inject_event -EXPORT_SYMBOL vmlinux 0xdd841d39 register_filesystem +EXPORT_SYMBOL vmlinux 0xdd772f58 sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0xdd822e7b mpage_writepages EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd883cd2 phy_loopback -EXPORT_SYMBOL vmlinux 0xdd9e8615 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xdda17bec xfrm_state_add -EXPORT_SYMBOL vmlinux 0xddc257f7 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0xddc79828 param_ops_string -EXPORT_SYMBOL vmlinux 0xddca797d cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0xddfaeaba ip_options_compile +EXPORT_SYMBOL vmlinux 0xdd978587 secpath_set +EXPORT_SYMBOL vmlinux 0xddde9bb1 filp_open +EXPORT_SYMBOL vmlinux 0xdddf620a scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xdde66391 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xddf7129f bio_integrity_add_page EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xddffdbd7 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xde02950b register_framebuffer EXPORT_SYMBOL vmlinux 0xde0bdcff memset -EXPORT_SYMBOL vmlinux 0xde12f44d kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xde0f939e default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xde106a8c genphy_loopback EXPORT_SYMBOL vmlinux 0xde1371ce radix_tree_tagged -EXPORT_SYMBOL vmlinux 0xde4cdfea __register_chrdev -EXPORT_SYMBOL vmlinux 0xde5be50b get_tree_nodev -EXPORT_SYMBOL vmlinux 0xde6058a9 __quota_error -EXPORT_SYMBOL vmlinux 0xde697b4b iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0xde71c6f6 nf_reinject -EXPORT_SYMBOL vmlinux 0xde87ecd6 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xde933a3c secpath_set -EXPORT_SYMBOL vmlinux 0xdea12b31 xfrm4_udp_encap_rcv -EXPORT_SYMBOL vmlinux 0xdea2257b pci_reenable_device -EXPORT_SYMBOL vmlinux 0xdea57f67 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0xdeac6b7e disk_check_media_change -EXPORT_SYMBOL vmlinux 0xdeb0e67d seq_vprintf +EXPORT_SYMBOL vmlinux 0xde396063 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xde6112c2 sock_no_bind +EXPORT_SYMBOL vmlinux 0xde69c9f4 __kfree_skb +EXPORT_SYMBOL vmlinux 0xde745af8 param_ops_short +EXPORT_SYMBOL vmlinux 0xde85cbed pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xdeadf10c pci_restore_state EXPORT_SYMBOL vmlinux 0xdebb8a67 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xdec3b891 __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0xdec7f8d2 dma_fence_array_first EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xdef69581 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef84f9f radix_tree_lookup -EXPORT_SYMBOL vmlinux 0xdf08a55e inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xdf02fc93 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xdf0af698 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xdf24ce4a __phy_read_mmd EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf312333 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0xdf4d508f fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xdf2e51f7 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xdf30a752 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xdf488c9f skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xdf4c3c2c tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf5bf23e dquot_initialize +EXPORT_SYMBOL vmlinux 0xdf59b93b kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0xdf6d476e __percpu_counter_init -EXPORT_SYMBOL vmlinux 0xdf6ea413 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0xdf7203e7 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xdf827b08 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xdf7b7ca3 sock_no_sendmsg_locked EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid -EXPORT_SYMBOL vmlinux 0xdf935253 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9c2387 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xdfa5da8f debug_exception_common EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid -EXPORT_SYMBOL vmlinux 0xdfab0fee kern_unmount_array +EXPORT_SYMBOL vmlinux 0xdfacfb6a netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0xdfafa1f3 raw3270_buffer_address -EXPORT_SYMBOL vmlinux 0xdfb41ae7 page_pool_put_defragged_page -EXPORT_SYMBOL vmlinux 0xdfc0842d submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xdfc38b19 phy_init_hw +EXPORT_SYMBOL vmlinux 0xdfb2085c component_match_add_release +EXPORT_SYMBOL vmlinux 0xdfc16dcf simple_lookup EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfd5f515 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xdfd3e548 __f_setown EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdfdd02ad __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0xdfe5a602 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xe02fa72a netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xe035331e write_inode_now +EXPORT_SYMBOL vmlinux 0xe003aaef security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xe00fc939 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xe015a09b dev_load +EXPORT_SYMBOL vmlinux 0xe01a5955 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xe025f38c ping_prot +EXPORT_SYMBOL vmlinux 0xe03815fa remove_proc_entry +EXPORT_SYMBOL vmlinux 0xe03c05f0 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe04f19cc netlink_broadcast +EXPORT_SYMBOL vmlinux 0xe04fca79 ccw_driver_register +EXPORT_SYMBOL vmlinux 0xe05887bf __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xe068a91c gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0xe0753d8e netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xe07cfd66 pmdp_xchg_direct EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups -EXPORT_SYMBOL vmlinux 0xe08a32e2 tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe09b7d7d ipv6_select_ident EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b2e23b sock_queue_err_skb EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xe0c01b2f tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0xe0c276a4 mtree_insert_range -EXPORT_SYMBOL vmlinux 0xe0cb1697 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xe0cbbc2e __bio_advance -EXPORT_SYMBOL vmlinux 0xe0f88107 iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0xe11f51c5 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xe0c633fc dst_alloc +EXPORT_SYMBOL vmlinux 0xe0ed5722 dev_uc_unsync EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release -EXPORT_SYMBOL vmlinux 0xe124b28c tcp_shutdown -EXPORT_SYMBOL vmlinux 0xe131676b skb_set_owner_w -EXPORT_SYMBOL vmlinux 0xe135c47f zpci_report_error EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0xe14819b2 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe15614d5 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe1580129 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0xe15b73fb mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0xe15c067a find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xe16c94ca in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xe1a23891 ap_queue_init_reply -EXPORT_SYMBOL vmlinux 0xe1a35e3d security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xe1b1e6bb netpoll_print_options -EXPORT_SYMBOL vmlinux 0xe1b857a4 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xe1665a90 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xe1ac2662 sys_copyarea +EXPORT_SYMBOL vmlinux 0xe1ac4e66 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0xe1adddf9 icmp6_send +EXPORT_SYMBOL vmlinux 0xe1c8b51f scsi_print_sense +EXPORT_SYMBOL vmlinux 0xe1d212f4 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xe1d57c43 inet_confirm_addr EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e3c950 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xe1e24e26 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xe1e64b98 fs_context_for_submount EXPORT_SYMBOL vmlinux 0xe1f74840 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xe1f8ea8d dentry_open -EXPORT_SYMBOL vmlinux 0xe1fc3032 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xe20266dd ccw_device_clear -EXPORT_SYMBOL vmlinux 0xe2102741 readahead_expand -EXPORT_SYMBOL vmlinux 0xe231635e inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xe23e514b devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xe2354ee2 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xe239d432 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xe23c0fd6 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0xe254f4f8 xa_get_mark -EXPORT_SYMBOL vmlinux 0xe256d07b inode_add_bytes -EXPORT_SYMBOL vmlinux 0xe26a58b2 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xe259e76b rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xe26c49ea pci_get_slot EXPORT_SYMBOL vmlinux 0xe27d87a4 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0xe282085a bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0xe28ed569 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xe29afac4 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xe29c5e80 pci_get_device EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0xe2ad6a14 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xe2b468f0 sock_no_bind +EXPORT_SYMBOL vmlinux 0xe2b4ea96 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xe2b70fb4 phy_driver_register +EXPORT_SYMBOL vmlinux 0xe2c92f09 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2f28a95 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xe2dd0041 pci_get_class +EXPORT_SYMBOL vmlinux 0xe307b5ab flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xe30b93f7 bio_init EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe310a655 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe319d7fc flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xe322ea86 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xe324f0a6 inet_put_port +EXPORT_SYMBOL vmlinux 0xe3261ea8 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe333732d security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0xe3463484 wake_up_process -EXPORT_SYMBOL vmlinux 0xe34cd726 set_create_files_as -EXPORT_SYMBOL vmlinux 0xe3575949 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe32e1355 kill_pgrp +EXPORT_SYMBOL vmlinux 0xe3348f43 dev_get_stats +EXPORT_SYMBOL vmlinux 0xe34b2d96 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xe3590a70 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xe35b229d inet_stream_connect EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup -EXPORT_SYMBOL vmlinux 0xe37aaffe ccw_device_start_timeout -EXPORT_SYMBOL vmlinux 0xe38530bf page_pool_release_page -EXPORT_SYMBOL vmlinux 0xe3975fce mntget +EXPORT_SYMBOL vmlinux 0xe3623327 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xe36a4121 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xe382294b udp_pre_connect EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3c20555 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xe3cb3433 pgste_perform_essa -EXPORT_SYMBOL vmlinux 0xe3d466cf devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xe3d91d39 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xe3d9c0f2 send_sig -EXPORT_SYMBOL vmlinux 0xe3e26705 config_group_find_item +EXPORT_SYMBOL vmlinux 0xe3ad276e tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xe3b8a037 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xe3c4b869 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xe3d759eb page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xe3d93093 phy_init_hw +EXPORT_SYMBOL vmlinux 0xe3df7d97 __udp_disconnect EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f5104b genphy_suspend EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 -EXPORT_SYMBOL vmlinux 0xe40b3466 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xe417e43c put_watch_queue -EXPORT_SYMBOL vmlinux 0xe419522f sock_pfree -EXPORT_SYMBOL vmlinux 0xe4244fea blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xe434c6cf page_pool_get_stats +EXPORT_SYMBOL vmlinux 0xe40e0d1b iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xe419c9df neigh_table_init +EXPORT_SYMBOL vmlinux 0xe4265e40 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xe43145f2 fb_blank EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name EXPORT_SYMBOL vmlinux 0xe43ee9c4 cred_fscmp -EXPORT_SYMBOL vmlinux 0xe44ffc01 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0xe4548612 __module_get -EXPORT_SYMBOL vmlinux 0xe462afe5 bio_integrity_prep -EXPORT_SYMBOL vmlinux 0xe468e272 netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0xe47ed683 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xe4b855ca init_net -EXPORT_SYMBOL vmlinux 0xe4c95884 dst_destroy -EXPORT_SYMBOL vmlinux 0xe4ce25ec __mdiobus_read +EXPORT_SYMBOL vmlinux 0xe46505d2 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xe48f58d5 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xe497f07b tcp_time_wait +EXPORT_SYMBOL vmlinux 0xe49badc6 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xe4ac71bc scsi_execute_cmd +EXPORT_SYMBOL vmlinux 0xe4b521b2 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xe4bc785b __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xe4c03c2f dquot_acquire EXPORT_SYMBOL vmlinux 0xe4df9aec hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xe4f22c56 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xe4f40481 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xe5074c46 debug_set_level EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste +EXPORT_SYMBOL vmlinux 0xe50a77ca xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe5235966 wait_for_key_construction EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp -EXPORT_SYMBOL vmlinux 0xe532f478 phy_write_mmd -EXPORT_SYMBOL vmlinux 0xe53c9713 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0xe54f8256 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0xe52d04a4 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xe543a5cd debug_event_common +EXPORT_SYMBOL vmlinux 0xe5491c07 kill_litter_super EXPORT_SYMBOL vmlinux 0xe555c7ab radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xe55d7cea scsi_print_command +EXPORT_SYMBOL vmlinux 0xe562cbd9 pci_bus_add_devices EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch -EXPORT_SYMBOL vmlinux 0xe572767a pci_disable_msix -EXPORT_SYMBOL vmlinux 0xe57b40af write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe58010fc flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe58eed21 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe586cd10 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe594a29f param_get_byte -EXPORT_SYMBOL vmlinux 0xe5958ac1 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xe5969f31 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xe59bc4ed tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0xe59d5082 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0xe5a56ecd idr_get_next +EXPORT_SYMBOL vmlinux 0xe5abc93a shmem_aops EXPORT_SYMBOL vmlinux 0xe5abe9f3 mtree_alloc_range -EXPORT_SYMBOL vmlinux 0xe5aebeed __sock_i_ino -EXPORT_SYMBOL vmlinux 0xe5b25397 gro_cells_init +EXPORT_SYMBOL vmlinux 0xe5aebb05 tso_start +EXPORT_SYMBOL vmlinux 0xe5b86ccf param_ops_long EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e055e8 d_path -EXPORT_SYMBOL vmlinux 0xe5f02c8e __napi_schedule -EXPORT_SYMBOL vmlinux 0xe603691a phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0xe6288fd2 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xe60e46e0 do_SAK +EXPORT_SYMBOL vmlinux 0xe61e7b3e dev_close +EXPORT_SYMBOL vmlinux 0xe62d0908 crypto_sha3_final +EXPORT_SYMBOL vmlinux 0xe62d507c lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xe65f69b4 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe67b87fe kthread_bind +EXPORT_SYMBOL vmlinux 0xe67f9d26 ccw_device_resume +EXPORT_SYMBOL vmlinux 0xe68bcb80 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe6935d72 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xe6aaee02 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xe6b0a9de page_symlink +EXPORT_SYMBOL vmlinux 0xe6bedbb5 __block_write_full_folio +EXPORT_SYMBOL vmlinux 0xe6c5250a tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe6c9e03b tcf_block_get EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6eb13c8 crypto_sha3_final EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset -EXPORT_SYMBOL vmlinux 0xe6ff29aa truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xe703c0e0 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xe6f35ef4 pci_clear_mwi EXPORT_SYMBOL vmlinux 0xe70e184a xa_store +EXPORT_SYMBOL vmlinux 0xe7128758 scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister -EXPORT_SYMBOL vmlinux 0xe72c264f phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xe771ca44 neigh_direct_output -EXPORT_SYMBOL vmlinux 0xe77251ac ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xe713c018 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xe73625e4 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe73c15dd vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xe76ef24a dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xe770fea7 dentry_path_raw EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure +EXPORT_SYMBOL vmlinux 0xe77dd75f set_blocksize +EXPORT_SYMBOL vmlinux 0xe7954613 generic_shutdown_super EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack EXPORT_SYMBOL vmlinux 0xe798236d jiffies +EXPORT_SYMBOL vmlinux 0xe79b7a84 bdi_register +EXPORT_SYMBOL vmlinux 0xe7a46e02 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xe7aca2c2 block_write_begin +EXPORT_SYMBOL vmlinux 0xe7b00230 noop_llseek EXPORT_SYMBOL vmlinux 0xe7c61d76 __tracepoint_s390_cio_csch EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7dc5454 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xe80abad7 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xe7d7fe70 vfs_get_link +EXPORT_SYMBOL vmlinux 0xe7e5b5fb netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xe7e6c284 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xe7f24599 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xe8086015 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xe80f9002 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xe8153749 filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe816a331 handshake_req_cancel -EXPORT_SYMBOL vmlinux 0xe81a9e4a cont_write_begin -EXPORT_SYMBOL vmlinux 0xe8285aac pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0xe82e7510 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xe837e8ac unregister_framebuffer -EXPORT_SYMBOL vmlinux 0xe85a7f14 __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0xe81889af inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xe8230c90 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe824528c blackhole_netdev +EXPORT_SYMBOL vmlinux 0xe82490c5 ccw_device_dma_zalloc +EXPORT_SYMBOL vmlinux 0xe82bbc29 _dev_info +EXPORT_SYMBOL vmlinux 0xe839b7ed touch_atime +EXPORT_SYMBOL vmlinux 0xe8487b91 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xe855b800 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xe866d73d in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xe88559e1 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xe88ef8ef inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0xe8a35d89 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xe8b6be4b md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xe8886d26 input_release_device +EXPORT_SYMBOL vmlinux 0xe8a4753a __ip_queue_xmit EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul -EXPORT_SYMBOL vmlinux 0xe8c98380 may_umount EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8f4bfa7 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xe8fbb5ef scsi_scan_host +EXPORT_SYMBOL vmlinux 0xe8e4081d __scm_send +EXPORT_SYMBOL vmlinux 0xe8e4c752 inet_ioctl +EXPORT_SYMBOL vmlinux 0xe8ffd881 sock_kzfree_s EXPORT_SYMBOL vmlinux 0xe9020709 trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xe90bd575 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xe90f8076 netlink_capable EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe94b5b1d kern_path +EXPORT_SYMBOL vmlinux 0xe9176c4c flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xe937f04b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xe9468c37 ethtool_notify +EXPORT_SYMBOL vmlinux 0xe94df00b fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe96b2e6a dev_get_by_name -EXPORT_SYMBOL vmlinux 0xe9703f23 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0xe97b2399 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xe9556658 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xe9614267 __register_nls +EXPORT_SYMBOL vmlinux 0xe965ca20 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xe97df3f6 alloc_pages EXPORT_SYMBOL vmlinux 0xe994130a __xa_store EXPORT_SYMBOL vmlinux 0xe995eee3 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0xe9993570 proto_register -EXPORT_SYMBOL vmlinux 0xe99f24f8 handshake_req_submit -EXPORT_SYMBOL vmlinux 0xe9a39c4e ccw_device_is_pathgroup -EXPORT_SYMBOL vmlinux 0xe9ac6cfd inode_init_owner +EXPORT_SYMBOL vmlinux 0xe996a0b4 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xe9977cf0 tcp_close +EXPORT_SYMBOL vmlinux 0xe9ac68a5 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xe9bb595c fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize -EXPORT_SYMBOL vmlinux 0xe9c9d34a blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xe9cf42c9 kill_pgrp -EXPORT_SYMBOL vmlinux 0xe9e30e5f free_task -EXPORT_SYMBOL vmlinux 0xe9e81ebd __mdiobus_c45_write -EXPORT_SYMBOL vmlinux 0xe9eca225 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xe9f6092d md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xe9cfbceb param_ops_ullong +EXPORT_SYMBOL vmlinux 0xe9d9316d input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xe9e7395b tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize EXPORT_SYMBOL vmlinux 0xe9fcb616 mempool_alloc -EXPORT_SYMBOL vmlinux 0xea0699a1 nonseekable_open -EXPORT_SYMBOL vmlinux 0xea13f410 phy_connect -EXPORT_SYMBOL vmlinux 0xea172f8c dump_emit EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea46cc0c xfrm_state_flush -EXPORT_SYMBOL vmlinux 0xea5e8c6b pci_find_resource -EXPORT_SYMBOL vmlinux 0xea66c1b8 neigh_xmit +EXPORT_SYMBOL vmlinux 0xea472888 simple_pin_fs EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea72926c dev_remove_offload EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options +EXPORT_SYMBOL vmlinux 0xea857fa3 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv -EXPORT_SYMBOL vmlinux 0xea9f974d ndisc_send_skb -EXPORT_SYMBOL vmlinux 0xeaacb3a6 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0xeab20873 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xeabaf735 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xea932e48 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xea963d78 dquot_drop +EXPORT_SYMBOL vmlinux 0xeaa2921b pci_release_resource +EXPORT_SYMBOL vmlinux 0xeaa5f44c generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xeaa73421 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xeaae35da bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xeab5f983 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xeabb865f ccw_device_get_id +EXPORT_SYMBOL vmlinux 0xeac14178 lock_rename_child +EXPORT_SYMBOL vmlinux 0xeaca7122 xfrm_register_km EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeade4a27 proto_register +EXPORT_SYMBOL vmlinux 0xeaf983b8 __neigh_event_send EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb057a91 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xeb184017 pci_write_config_word EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb40f11f inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xeb6304dc __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xeb6b3098 vfs_statfs -EXPORT_SYMBOL vmlinux 0xeb7ea8bf sock_ioctl_inout -EXPORT_SYMBOL vmlinux 0xeb9cde59 param_set_long +EXPORT_SYMBOL vmlinux 0xeb3e081c pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xeb4288c9 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xeb4e61e1 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xeb504fbb pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xeb6026f4 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xeb6976d3 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xeb714631 bio_endio +EXPORT_SYMBOL vmlinux 0xeb8271fb phy_config_aneg +EXPORT_SYMBOL vmlinux 0xeb972645 arp_send EXPORT_SYMBOL vmlinux 0xeb9dc55b ap_owned_by_def_drv EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba4f0d2 blk_finish_plug -EXPORT_SYMBOL vmlinux 0xebb053c3 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xebbc533c phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0xebbc8935 kvmemdup EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebca91da netpoll_poll_enable EXPORT_SYMBOL vmlinux 0xebcb8bdc kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xebdcba3e skb_dequeue -EXPORT_SYMBOL vmlinux 0xec0aa960 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xec314e1b locks_copy_lock -EXPORT_SYMBOL vmlinux 0xec4174bd add_watch_to_object -EXPORT_SYMBOL vmlinux 0xec88ad20 ap_get_qdev -EXPORT_SYMBOL vmlinux 0xec8a73e3 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xec9a42a2 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xebd5f7ce cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xebd60484 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xebd772a9 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xebddfc39 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xebf795c1 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0xec04e982 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0xec487171 md_handle_request +EXPORT_SYMBOL vmlinux 0xec5f126f blk_rq_init +EXPORT_SYMBOL vmlinux 0xec5f58ea fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xec7377fb ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xec8314ec tty_hangup EXPORT_SYMBOL vmlinux 0xec9d7c8a __traceiter_s390_diagnose -EXPORT_SYMBOL vmlinux 0xeca083ae unpin_user_page -EXPORT_SYMBOL vmlinux 0xeca49df7 pcie_ptm_enabled EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecab441c scsi_add_device -EXPORT_SYMBOL vmlinux 0xecc2e03b pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xecddcb73 _dev_notice -EXPORT_SYMBOL vmlinux 0xece2a6ab jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xecb85659 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0xecd5d895 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xecd88011 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xece1e5b7 __check_sticky EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xece99c73 dev_get_flags -EXPORT_SYMBOL vmlinux 0xecf42e64 phy_device_create -EXPORT_SYMBOL vmlinux 0xecf556a3 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xed09f7ac phy_register_fixup -EXPORT_SYMBOL vmlinux 0xed0b1bbd ethtool_aggregate_ctrl_stats -EXPORT_SYMBOL vmlinux 0xed1fa6a4 mdio_device_register -EXPORT_SYMBOL vmlinux 0xed269426 dev_get_stats -EXPORT_SYMBOL vmlinux 0xed3d4932 give_up_console +EXPORT_SYMBOL vmlinux 0xecfbce8a sock_bind_add +EXPORT_SYMBOL vmlinux 0xed1a5ec3 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xed224087 km_state_expired +EXPORT_SYMBOL vmlinux 0xed2dab96 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xed31c0e9 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xed477576 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xed63ab39 jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed659ede jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xed71bd59 napi_get_frags -EXPORT_SYMBOL vmlinux 0xed860a17 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0xed991b3b tcf_block_put EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xedb2d4a7 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xedb1a8a4 xp_free EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc2bdf4 inet_csk_accept EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xede12167 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0xee080831 new_inode EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge +EXPORT_SYMBOL vmlinux 0xee09d3b0 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee3ad506 tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0xee4de4fb __traceiter_s390_cio_csch EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee6d073d ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0xee6d3df9 __vfs_setxattr EXPORT_SYMBOL vmlinux 0xee7ba02c skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xee7cca3a seq_file_path EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea418e4 xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeb51e3c xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xeecde5ea mark_page_accessed -EXPORT_SYMBOL vmlinux 0xeee0cfeb tty_hung_up_p -EXPORT_SYMBOL vmlinux 0xef08dc89 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xef08f58b qdisc_reset -EXPORT_SYMBOL vmlinux 0xef185aba folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0xef2161dd prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xef37179d crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xeeb09768 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xeebc58dd sk_stream_error +EXPORT_SYMBOL vmlinux 0xeed10077 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xeed39c50 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xeedd5229 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xeee78372 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xef0c899f netdev_warn +EXPORT_SYMBOL vmlinux 0xef163b42 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xef2bd041 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xef3a71b3 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init -EXPORT_SYMBOL vmlinux 0xef7bf2e5 console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0xef82865c pci_get_subsys -EXPORT_SYMBOL vmlinux 0xef8e2a12 pagecache_get_page -EXPORT_SYMBOL vmlinux 0xef8f68b0 phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xef97a36d bprm_change_interp -EXPORT_SYMBOL vmlinux 0xefa01cd4 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xef52c8f5 __phy_resume +EXPORT_SYMBOL vmlinux 0xef5584ae filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xef5cf58b inet_frag_find +EXPORT_SYMBOL vmlinux 0xef6040cf handshake_req_alloc +EXPORT_SYMBOL vmlinux 0xef666d20 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xef817714 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xef941270 fb_show_logo +EXPORT_SYMBOL vmlinux 0xef97c612 sock_no_connect +EXPORT_SYMBOL vmlinux 0xef993b15 file_open_root EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefaf49d3 input_event EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xefd7b9a3 __nlmsg_put -EXPORT_SYMBOL vmlinux 0xefde2ff5 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xefed02c3 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xefd74993 netif_skb_features +EXPORT_SYMBOL vmlinux 0xefded80f unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xefe7cbf9 ccw_device_set_options EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff5e520 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xeff941b1 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf00356e2 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xf005f785 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0xf0192622 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0xf0325b62 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0xf032aa7b create_empty_buffers -EXPORT_SYMBOL vmlinux 0xf0562666 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xf0036fb7 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0xf032ad30 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xf047c373 skb_copy +EXPORT_SYMBOL vmlinux 0xf04914f4 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xf05b4b12 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect EXPORT_SYMBOL vmlinux 0xf06482e0 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xf069236c pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xf06bd790 mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0xf081f12e inode_get_bytes +EXPORT_SYMBOL vmlinux 0xf08b5ead param_get_ushort EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0b01719 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xf0c29a9e input_reset_device -EXPORT_SYMBOL vmlinux 0xf0dc8d23 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xf0e0279a page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xf0e65cd4 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xf0ea2318 __mutex_init -EXPORT_SYMBOL vmlinux 0xf0edef96 configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0xf0f6bbe5 __tracepoint_s390_cio_xsch -EXPORT_SYMBOL vmlinux 0xf0f756b3 ilookup +EXPORT_SYMBOL vmlinux 0xf0fc104d xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0xf0feb5d5 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xf105423d tcf_unregister_action EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf134f5a6 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0xf1522bba xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xf1485444 folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xf166b535 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xf1690224 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0xf16b4375 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xf16fd90b kfree_skb_list_reason -EXPORT_SYMBOL vmlinux 0xf1734e2e kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xf17f2816 __alloc_skb +EXPORT_SYMBOL vmlinux 0xf17afaac ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xf18b2bb6 d_lookup EXPORT_SYMBOL vmlinux 0xf18dd55e dma_fence_enable_sw_signaling EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1d7b847 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xf1a9404a param_set_ulong +EXPORT_SYMBOL vmlinux 0xf1b458a1 ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0xf1d4517a sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf1d64c96 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0xf1d992eb radix_tree_delete EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1df6d01 fifo_set_limit EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e74271 vfs_symlink +EXPORT_SYMBOL vmlinux 0xf1e6c090 key_validate EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f4204e xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xf1f2ff7a scsi_partsize EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf20945a5 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xf216aaaa __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xf21883b4 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xf22c28dc tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0xf23dbb03 iget5_locked +EXPORT_SYMBOL vmlinux 0xf211db99 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xf2138cda xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0xf21d0d54 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xf22c1ee8 ptep_reset_dat_prot +EXPORT_SYMBOL vmlinux 0xf23b406b skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf2423de5 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0xf24a3331 dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xf24e26d2 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xf25506d7 configfs_undepend_item -EXPORT_SYMBOL vmlinux 0xf2569626 pci_claim_resource EXPORT_SYMBOL vmlinux 0xf258142c radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0xf25a4413 debug_hex_ascii_view EXPORT_SYMBOL vmlinux 0xf25ed853 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0xf26af7e5 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0xf2755b85 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xf2842f9a scsi_device_put -EXPORT_SYMBOL vmlinux 0xf28c53d2 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xf25ef837 block_commit_write EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf28ef17f iov_iter_advance -EXPORT_SYMBOL vmlinux 0xf28fe05a pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xf28d2cab phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xf299d2fc touchscreen_report_pos EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0xf2ab7350 input_mt_init_slots EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d27371 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xf2d36968 inet_csk_accept -EXPORT_SYMBOL vmlinux 0xf2d8b52b d_alloc -EXPORT_SYMBOL vmlinux 0xf2e1b8a2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xf2cc05a9 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f189d2 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0xf30cec7b blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0xf316453a tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf2fb12a7 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf2fd031a tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xf30b934e ccw_device_is_multipath EXPORT_SYMBOL vmlinux 0xf31c0d52 ioremap -EXPORT_SYMBOL vmlinux 0xf3342491 pci_request_irq -EXPORT_SYMBOL vmlinux 0xf336e9ac get_ccwdev_by_busid -EXPORT_SYMBOL vmlinux 0xf3382707 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xf32de1b7 register_netdev +EXPORT_SYMBOL vmlinux 0xf32f3833 dump_emit +EXPORT_SYMBOL vmlinux 0xf331286f deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf33185a0 seq_release_private EXPORT_SYMBOL vmlinux 0xf34490b1 radix_tree_iter_resume EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf35193c6 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xf34f6f75 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xf3519723 generic_setlease EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf36c6290 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xf3727b0b jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xf377b6e2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xf3702b13 dquot_resume EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf39738fb napi_schedule_prep -EXPORT_SYMBOL vmlinux 0xf39ac75d sock_efree -EXPORT_SYMBOL vmlinux 0xf3ab96fd dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send -EXPORT_SYMBOL vmlinux 0xf3c6f645 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xf3bfb23e inet6_register_protosw EXPORT_SYMBOL vmlinux 0xf3ca733b hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xf3d3d06d tcp_seq_start +EXPORT_SYMBOL vmlinux 0xf3d3ea3f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xf3d5feb6 disk_check_media_change EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e4dfaa sock_init_data EXPORT_SYMBOL vmlinux 0xf3e70d4b __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xf3f7d33f ptep_xchg_direct -EXPORT_SYMBOL vmlinux 0xf4057ca5 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0xf4283bd8 km_policy_notify +EXPORT_SYMBOL vmlinux 0xf40380df inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xf4350ca6 __free_pages EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter -EXPORT_SYMBOL vmlinux 0xf43f2f13 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xf441fda0 __skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0xf447057a pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xf4413afd mdio_bus_type +EXPORT_SYMBOL vmlinux 0xf4420993 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xf448dc51 phy_loopback EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4a38f5e eth_get_headlen -EXPORT_SYMBOL vmlinux 0xf4a3ac31 scsi_partsize -EXPORT_SYMBOL vmlinux 0xf4b532d6 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xf48c2c03 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xf495fa85 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0xf4bb992f inetpeer_invalidate_tree EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e6e7e7 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xf4dbe733 unpin_user_pages EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0xf4f30b97 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xf539969b iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xf53cab35 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xf500908d md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xf5103136 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xf5146d3e pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xf51fb3af xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf526fe4f sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xf53a89de register_filesystem EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf5664645 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0xf573e78d __vmalloc_array -EXPORT_SYMBOL vmlinux 0xf5957db4 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xf5ce1d1f devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0xf5cfdb0d dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xf5d82626 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xf5a51066 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xf5aaf5dc cad_pid +EXPORT_SYMBOL vmlinux 0xf5adc548 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xf5bf101f seq_pad +EXPORT_SYMBOL vmlinux 0xf5d1bc2f bio_free_pages +EXPORT_SYMBOL vmlinux 0xf5e2fedf udp_read_skb EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5eba4e0 pcie_bandwidth_available -EXPORT_SYMBOL vmlinux 0xf5f0a40c bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0xf6085c0b scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xf61372cc netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0xf61f3772 dump_align +EXPORT_SYMBOL vmlinux 0xf60766c5 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xf6096749 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xf60ce3cc fget +EXPORT_SYMBOL vmlinux 0xf610aeae phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xf618753a iterate_supers_type +EXPORT_SYMBOL vmlinux 0xf63d8723 import_single_range EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf651a56d kmem_cache_size +EXPORT_SYMBOL vmlinux 0xf64debc7 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xf64f4f1d kernel_listen EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf673cf3c md_wakeup_thread EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6960b1a d_move -EXPORT_SYMBOL vmlinux 0xf6abebdb tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf695e382 dquot_initialize +EXPORT_SYMBOL vmlinux 0xf6a16af1 param_set_short +EXPORT_SYMBOL vmlinux 0xf6a78b92 free_buffer_head +EXPORT_SYMBOL vmlinux 0xf6bbffaf blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xf6bd7e15 key_unlink EXPORT_SYMBOL vmlinux 0xf6c3e4aa wait_for_completion_io -EXPORT_SYMBOL vmlinux 0xf6ca802f jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xf6d5d681 tty_check_change +EXPORT_SYMBOL vmlinux 0xf6dc492a default_llseek EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f4b978 __xfrm_init_state EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7128811 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xf7027c23 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xf71d8789 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xf72379d6 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xf729e4e4 ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0xf731156f dev_mc_del_global EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted -EXPORT_SYMBOL vmlinux 0xf7444e5e xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xf7852c94 tcf_exts_init_ex -EXPORT_SYMBOL vmlinux 0xf785eef3 param_get_invbool +EXPORT_SYMBOL vmlinux 0xf75b763f qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xf79df02d dma_resv_replace_fences EXPORT_SYMBOL vmlinux 0xf79faab3 ip_send_check -EXPORT_SYMBOL vmlinux 0xf7a611c9 ip6_output -EXPORT_SYMBOL vmlinux 0xf7ac03a6 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0xf7b395a1 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xf7a627ba skb_queue_purge +EXPORT_SYMBOL vmlinux 0xf7b577c0 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xf7c67f8d thaw_bdev EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0xf7d89e93 inode_permission EXPORT_SYMBOL vmlinux 0xf7dbdcc2 zstd_end_stream -EXPORT_SYMBOL vmlinux 0xf7de2296 pci_disable_link_state -EXPORT_SYMBOL vmlinux 0xf7f477c0 padata_free_shell -EXPORT_SYMBOL vmlinux 0xf7fa5085 sock_kmalloc -EXPORT_SYMBOL vmlinux 0xf80bf7c4 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xf7e28b2d xfrm_register_type +EXPORT_SYMBOL vmlinux 0xf7eb0d12 phy_read_paged +EXPORT_SYMBOL vmlinux 0xf8086272 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xf80eea50 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf81fd636 arch_spin_relax +EXPORT_SYMBOL vmlinux 0xf820375b __find_get_block +EXPORT_SYMBOL vmlinux 0xf822095f udplite_prot EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf830ec5d from_kuid_munged EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf8545285 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0xf858c86c security_d_instantiate -EXPORT_SYMBOL vmlinux 0xf85b06d7 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0xf8887a85 seq_putc +EXPORT_SYMBOL vmlinux 0xf85bcf75 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xf85ec833 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xf884d6ca __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf888f9db pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf8ab6f08 freeze_super +EXPORT_SYMBOL vmlinux 0xf8b16721 rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d14362 d_find_alias EXPORT_SYMBOL vmlinux 0xf8d9f260 revert_creds -EXPORT_SYMBOL vmlinux 0xf8e2fb70 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0xf8e3327a md_done_sync -EXPORT_SYMBOL vmlinux 0xf8f0a047 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xf8e0a127 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xf8e25333 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xf8e7dc61 __breadahead EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf90a9b13 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0xf92d7170 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xf93047f5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xf8fa03f0 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xf90ac02c xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xf9121a97 blk_start_plug +EXPORT_SYMBOL vmlinux 0xf92c14c4 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xf92f1570 crypto_sha512_update EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf95e3b9c tty_unregister_device +EXPORT_SYMBOL vmlinux 0xf95a6a3f inet_recvmsg EXPORT_SYMBOL vmlinux 0xf96a60d7 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0xf97eb46a udp_read_skb -EXPORT_SYMBOL vmlinux 0xf982e1fd __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xf98c113a block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xf96ee2d0 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xf9864483 vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0xf9958396 kobject_add +EXPORT_SYMBOL vmlinux 0xf99bafb7 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0xf9a06e0e ida_free +EXPORT_SYMBOL vmlinux 0xf9a35fbc udp_disconnect EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9bff543 skb_pull_data -EXPORT_SYMBOL vmlinux 0xf9ca3065 dst_dev_put +EXPORT_SYMBOL vmlinux 0xf9ad098b generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xf9c1224f phy_connect EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9d92e1f vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xf9e1dc13 tty_check_change -EXPORT_SYMBOL vmlinux 0xf9eb1afa __kfree_skb +EXPORT_SYMBOL vmlinux 0xf9f05f53 neigh_sysctl_unregister EXPORT_SYMBOL vmlinux 0xf9f0c1a3 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0xf9fc09c7 iput EXPORT_SYMBOL vmlinux 0xfa025df5 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0xfa02c4ad reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa089735 tcp_rtx_synack EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa098502 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xfa374e56 give_up_console EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa4d8d81 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0xfa50bd24 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6095e2 genphy_read_status -EXPORT_SYMBOL vmlinux 0xfa7c3cd9 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xfa80003c tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xfa815661 sock_no_linger +EXPORT_SYMBOL vmlinux 0xfa5e0f9e get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xfa83367d tty_name +EXPORT_SYMBOL vmlinux 0xfaa1a328 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaab110e inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xfab4d556 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xfaace47c blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xfaad9eeb __skb_recv_udp EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfade2c5b super_setup_bdi +EXPORT_SYMBOL vmlinux 0xfad0a96a fb_io_write +EXPORT_SYMBOL vmlinux 0xfad9938d input_unregister_handler +EXPORT_SYMBOL vmlinux 0xfad998b9 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xfae33627 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xfb0231a7 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xfb2ba4dc default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xfb10fc6f pipe_unlock EXPORT_SYMBOL vmlinux 0xfb34fad4 __nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3ebe0d seq_path -EXPORT_SYMBOL vmlinux 0xfb4449eb input_alloc_absinfo EXPORT_SYMBOL vmlinux 0xfb482dd1 __traceiter_s390_cio_stsch -EXPORT_SYMBOL vmlinux 0xfb49689f input_match_device_id -EXPORT_SYMBOL vmlinux 0xfb5531c8 fb_set_var -EXPORT_SYMBOL vmlinux 0xfb592a9e devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xfb547499 _dev_alert +EXPORT_SYMBOL vmlinux 0xfb582b77 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xfb5958da xfrm_state_update EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80398c genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xfb9fc9c5 get_fs_type EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab2dcc sb_set_blocksize EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0xfbb8e50c __netif_napi_del +EXPORT_SYMBOL vmlinux 0xfbb0f5b2 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbf82d95 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xfbfd172a _dev_warn -EXPORT_SYMBOL vmlinux 0xfc1d20c8 inet_accept -EXPORT_SYMBOL vmlinux 0xfc3ab976 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xfc40bfe7 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xfc0d74c0 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xfc35d24d pcie_capability_write_word EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc4a7713 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xfc5d8eb5 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xfc6fb988 device_get_mac_address -EXPORT_SYMBOL vmlinux 0xfc9f480a dev_load -EXPORT_SYMBOL vmlinux 0xfcab9274 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xfc4a7aae inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xfc508dc9 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xfc5d8e4d is_bad_inode +EXPORT_SYMBOL vmlinux 0xfc8a6e77 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xfc9a7905 dev_kfree_skb_irq_reason +EXPORT_SYMBOL vmlinux 0xfcb20583 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xfcba1510 napi_gro_receive EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfce4ad44 default_llseek +EXPORT_SYMBOL vmlinux 0xfcd440b6 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xfcd491e9 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xfce86628 __dev_remove_pack EXPORT_SYMBOL vmlinux 0xfcea0408 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0xfcea98c2 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf7d9e4 pci_disable_msi -EXPORT_SYMBOL vmlinux 0xfd04cdf7 gro_cells_receive -EXPORT_SYMBOL vmlinux 0xfd17f3f0 __vfs_getxattr -EXPORT_SYMBOL vmlinux 0xfd67eb1c ccw_device_halt -EXPORT_SYMBOL vmlinux 0xfd6be4a0 iptun_encaps -EXPORT_SYMBOL vmlinux 0xfd6f1f16 free_buffer_head +EXPORT_SYMBOL vmlinux 0xfd0079b1 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xfd06a068 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xfd087aae tcp_release_cb +EXPORT_SYMBOL vmlinux 0xfd2c0c71 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xfd2c7345 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xfd2da252 scsi_is_host_device EXPORT_SYMBOL vmlinux 0xfd76f166 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0xfd7d68f2 dcb_getapp EXPORT_SYMBOL vmlinux 0xfd81cb79 hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0xfd8a9bcf generic_write_checks_count EXPORT_SYMBOL vmlinux 0xfd9a9866 stfle_fac_list +EXPORT_SYMBOL vmlinux 0xfda040b7 get_tree_single +EXPORT_SYMBOL vmlinux 0xfdb2fe8f __debug_sprintf_event EXPORT_SYMBOL vmlinux 0xfdb7f6a9 finish_wait -EXPORT_SYMBOL vmlinux 0xfdbaec7a xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xfdbb7967 sync_blockdev_range EXPORT_SYMBOL vmlinux 0xfdc0eb26 security_binder_transaction -EXPORT_SYMBOL vmlinux 0xfdc54842 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xfdc5a6a1 input_close_device EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdd20de1 md_integrity_register -EXPORT_SYMBOL vmlinux 0xfddb87be register_qdisc -EXPORT_SYMBOL vmlinux 0xfdde0bb2 phy_init_eee -EXPORT_SYMBOL vmlinux 0xfde4edcc tcp_prot -EXPORT_SYMBOL vmlinux 0xfe021b54 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xfdef77a2 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0995c7 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xfe0e8cb6 xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0xfe1a1d50 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0xfe3d60cb cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0xfe407f89 datagram_poll -EXPORT_SYMBOL vmlinux 0xfe46c237 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xfe26de45 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xfe2cd632 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xfe30b3f2 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xfe30c881 sock_i_uid +EXPORT_SYMBOL vmlinux 0xfe458d9b pcie_capability_clear_and_set_word_unlocked EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe524436 dma_fence_free EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe6ecf11 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xfe81cd31 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0xfea670e5 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xfea94654 inet_bind +EXPORT_SYMBOL vmlinux 0xfe5f7c0a param_get_invbool +EXPORT_SYMBOL vmlinux 0xfe6ae0f9 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xfe7a3eec simple_empty +EXPORT_SYMBOL vmlinux 0xfe802165 sock_edemux +EXPORT_SYMBOL vmlinux 0xfe81236b bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xfe9e68a7 update_region +EXPORT_SYMBOL vmlinux 0xfea09153 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xfeada55d netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0xfeb8736f tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xfebc5347 inet6_getname +EXPORT_SYMBOL vmlinux 0xfeceeb76 scsi_done EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedce52e touch_buffer -EXPORT_SYMBOL vmlinux 0xfefdcd6b genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xff076c38 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xff0e7ba5 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xff19f887 kfree_skb_partial EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer +EXPORT_SYMBOL vmlinux 0xff33045f seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xff33724b dma_fence_match_context EXPORT_SYMBOL vmlinux 0xff41a709 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0xff432198 filemap_flush +EXPORT_SYMBOL vmlinux 0xff5420d2 input_set_keycode EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff75ad5f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xff6ac0c1 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xff7926ac fscrypt_free_inode EXPORT_SYMBOL vmlinux 0xff7ad1b5 krealloc EXPORT_SYMBOL vmlinux 0xff8b56a9 wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0xff95e0c7 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0xff9cf61f scm_detach_fds -EXPORT_SYMBOL vmlinux 0xffb945b3 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xff9ceb0c kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xff9cf0ae generic_delete_inode +EXPORT_SYMBOL vmlinux 0xff9f3474 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xffae0d41 blk_mq_end_request EXPORT_SYMBOL vmlinux 0xffbf5a41 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0xffc1d975 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0xffc9db48 cdev_init EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffde664f ip6_frag_init -EXPORT_SYMBOL vmlinux 0xffe3cba1 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xffedca0c dcb_setrewr +EXPORT_SYMBOL vmlinux 0xffce448d migrate_folio +EXPORT_SYMBOL vmlinux 0xffdb90cc secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xffe91671 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xffedc5ab pci_enable_link_state +EXPORT_SYMBOL vmlinux 0xffeea376 fb_pan_display EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL arch/s390/net/pnet 0xbb5eb1b6 pnet_id_by_dev_port -EXPORT_SYMBOL_GPL crypto/af_alg 0x20318bf6 af_alg_get_rsgl +EXPORT_SYMBOL_GPL arch/s390/net/pnet 0xb3c814e4 pnet_id_by_dev_port +EXPORT_SYMBOL_GPL crypto/af_alg 0x0928c1c4 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x18f5f8c2 af_alg_wmem_wakeup EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x434d5a56 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4487c57a af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x48efa77c af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x607b8b57 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x6741a8e6 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x6df70499 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x79b80db9 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x7d86508d af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x82e0f850 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xa094605e af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xadccc62c af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e0b31e7 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x6ccc6fa4 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x75907a9e af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7f522ce1 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x8d63d01d af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xaebeda91 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xaf3ff0cf af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xb292fa58 af_alg_poll EXPORT_SYMBOL_GPL crypto/af_alg 0xb984d37c af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xcee71b04 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xe13bf9b5 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x81c42da7 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x12859236 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6b667f95 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x18506596 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb5a1aa5e async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x610e6ff0 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x939dbcf2 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa13b582f async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x223030ad async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x542cdd45 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd3f2688c async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xed8e8408 async_xor +EXPORT_SYMBOL_GPL crypto/af_alg 0xc0ad01a2 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xc1bb4028 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xdc2c493b af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xf7c47ebd af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x098196b9 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x41b054a1 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x696bc3bd async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x35fac614 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb479224c async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x200ed7bc async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x24bc01f4 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4ad2f7ac async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x03509735 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x198bc8b9 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2adc5119 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xef6fc11a async_xor_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xad58a046 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x6ea13c14 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0x702265ec cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x218501d6 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3e862f47 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xf03aac6b cast6_setkey EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x00f2d428 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x680f2444 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x710f844e cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x8a555b34 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9f2b281d cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xa432782a cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb2328a74 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xbcc73592 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xcb1f83bc cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xdd2296e7 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xebb14546 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xf5fbb4c7 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xfbc9930b cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1aa7ec3c crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x49cfd793 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6d802f9c crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x709056b0 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x768df088 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7d20368c crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa6ff1dd5 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xab16433f crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xafe235e3 crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd6c72303 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xda01c8ef crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xde229678 crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf570d183 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf7bcc675 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xffc2c786 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x0adeb053 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x0d60d864 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x2f5a005b cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x2f784a73 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x40e5d66f cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x599d8672 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x684013be cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x89403eb1 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x8c1f0242 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xa57c9c03 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc1afeefc cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xdf9c43bb cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xfe2a9923 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x029fd476 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x14fe2b73 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x662657cb crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6fa122ff crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7731c328 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x79c1c3d9 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8396ed5b crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8dd9e061 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9693d1cf crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9b824ec4 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9e5c52aa crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xae35eb5e crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb197f186 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbd11601b crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd6adf52d crypto_engine_start EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x6630890b serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xc85a3799 serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm2_generic 0x1fe49ab1 sm2_compute_z_digest +EXPORT_SYMBOL_GPL crypto/sm2_generic 0xff04ea5e sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/twofish_common 0x4ea1ffb2 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL crypto/twofish_common 0xe38f46e4 twofish_setkey -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xa09881d9 __regmap_init_i2c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xaa50cd6b __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xfc1aabf1 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x164c863a of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x212a9a32 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4783c53d fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5a9498ea fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5ebcb6b2 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x66e3f2db fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x904e59e9 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb355c699 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbad37dc5 devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc0ff1f32 fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd20370af fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf2551831 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf700f63f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x9986018d bgpio_init +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x18d1f897 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x5892b3f4 __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xd3b7ee69 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1f6a504b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x26854d2a fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2d5a3b70 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2fe7ab5a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa257c505 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa67185ef fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa937a0e5 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb20aa732 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcdcc0440 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe598c494 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf4b90668 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf4b9b59d fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf5f02d43 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xdd01e510 bgpio_init EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x02a994f2 idio_16_get EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x1bf5ac5a idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x40f176c1 idio_16_get_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x8e08818b idio_16_set_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xa143e5cb idio_16_state_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x28bb10fd drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x43494c9d drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x439ee259 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5dc58b57 drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8ee4fb53 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x94be0c0e drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x981992ed drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb8e5e45e drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbb3ef90e drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xecda6e2f drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf485320f drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfa6af74e drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x081d9eff drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0eb7c860 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x242ebcf0 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x388b0bb9 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4698997f drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8a874916 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd5ae7677 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf20519c8 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x1ec19265 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x37c5a937 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x4e1d26a5 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5264004d drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6e34e4f0 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa207e936 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe40ee8ff drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xfe4a971b drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x23a78208 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2fda595d intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x37cc2b34 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x441ffed6 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x61591187 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x86a63f47 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa30b316d intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xee767f17 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xff0b10e9 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x19fce4df intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd68b85c6 intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xdabd1001 intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x02c8d473 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x29be3869 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x91c05c6d stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb0d5afbb stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcc6b7220 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcd384718 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd29bc8d0 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xdb32fbdf stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2aa3dd7 stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x021846f9 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x037202e4 i2c_unregister_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x063e86ed i2c_adapter_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x0804a92c i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x12ac3449 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x177ec1b1 i2c_new_scanned_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x21ff18ae i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x09ac53f3 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0eef72bf drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x12bab9d9 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3aa1611a drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x435f3604 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x519263ba drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x78e31889 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7d648276 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8bffc4b1 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf1d82c6 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf06f5a0b drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf5fc85e0 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3ac72b0c drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4f02befb drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5cea1895 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8c1c7f3c drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x94f5747e drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9a5f1a8c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb569da6a drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc68d04dc drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x0d3fef0b drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x0eef3c89 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x3d1d26df drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x506ca217 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x691857ab drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x83d04775 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb1bdb992 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc27286f1 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2c65cb4e intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2c79fac4 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x39b9b977 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4a4d3955 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc3d34b37 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc5168323 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xeeebdf2f intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfe2ecde4 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xff9d8236 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd916434e intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf29440fe intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xfdd3208f intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1354b0d0 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x25eeb43b stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x551d2738 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x58f3a1bc stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x752c7e16 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbca855a5 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe5bda10f stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf19b8a99 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf209c24a stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x05b9c004 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x15fc0a07 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1fcf5967 i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2530bc8e i2c_client_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x25ae7995 i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x27e12f3c i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2d8b955e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2eb35259 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x3f543096 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4a895221 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x777637e6 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7dacadfb i2c_bus_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x84e25ef9 i2c_adapter_depth -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9157bdaa i2c_for_each_dev -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9474510b devm_i2c_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9acb4af2 i2c_match_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc83d5e49 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc968b86e i2c_client_type -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe1f480fd i2c_new_dummy_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe4b9dce8 i2c_new_client_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xedf6111b i2c_client_get_device_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf3f207a2 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf9455a88 i2c_get_device_id -EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xfcb6c00c i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7d88ebee i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x88ea04f5 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9df314d2 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa328a59f i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x579fd3a7 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6e9cbaab i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x90806c10 i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9f991bbf i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xb1da3202 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc536cedf i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcc8b1cb1 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xd3542f1d i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe23b9536 i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe9886d4d i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf2517825 i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf79ea0d5 i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf8807f98 i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x752c81a0 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x86e70369 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb0732ff4 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd6ca17e0 i2c_mux_add_adapter EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2c821c58 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3661244e rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x42042996 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4c9f50fd rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x61c79aca rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x627432c1 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x66bdcc89 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x70a555f8 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8973fbb2 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd7ac0436 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdb41cb48 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xead1e206 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2100d7f3 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3b05bd89 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x42168bcb rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x59c3410c rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7524fead rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7be24d7d rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa6014cbb rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaba4b34f rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbf62b4ad rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc522d4ba rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe09381eb rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xff4dec30 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x040f2c86 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04b25810 __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05058957 __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x063306f1 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10bb3336 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x110d56c9 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1654c48f __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1860de8c __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c7eacb5 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e214bd4 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20612b40 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x23ac1228 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b564a5c __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x304807c3 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x35702dfa __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x362eda19 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37808fd7 __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37b31e4f __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a3eb678 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3cbeb875 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3feb7def __tracepoint_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44bb87a3 __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47b2af54 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48be24d7 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48e3443e __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b96c8a0 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4ef7ddf3 __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59411eb5 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5b636d87 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f9386a1 __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write @@ -7661,87 +7670,79 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66232cfe __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x691255b9 __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6df6cd33 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e7df078 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e97aa65 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71a90620 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d19d649 __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7e95809e __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7edfe69b __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80c41f9b __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x811522ab __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81d4d2d1 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89e6d25c __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8588e098 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b9fa1d8 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8bba9251 __tracepoint_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f7308be __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x901dfcfb __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x917c4912 __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c8c39b __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x988698f1 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x955fab7e __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09a6b09 __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa3386d59 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4448179 __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xacc9cf54 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb538d4e0 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb80148a8 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc71c2ab5 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc752ac17 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4548de4 __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8aa1746 __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f63855 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda24644c __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd1455a7 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde915d79 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdecda587 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe45d5695 __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe66fb4d2 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2896543 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea3a1ab2 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec3327c6 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf021519f __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4fb9f2f __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7e56915 __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc0a0b57 __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd5d057b __tracepoint_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfed8327b __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0fe7081c dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x16457125 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x011d4d1d dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x037651d8 dm_cell_unlock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x20cc624d dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2ab3b78d dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3065e7d8 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4f4d3949 dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5fe92ab5 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3390610a dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x439aa73b dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4a266f24 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x500ce4ef dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x55da01e2 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5c4356fc dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6fbed910 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x692e8c85 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 0x78f0d794 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x92fe2ca4 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8734cd80 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa28612cf dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa7295713 dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 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 0xb9b38f0c dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc00ee5df dm_bio_prison_free_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcb0f8b2c dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd60eb273 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd2db78df dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe7efd174 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeb6e04ac dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf6ea6b5f dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe13733b1 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xef4bf4ea dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf4a62578 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf7de6db8 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 0x24772bfe dm_bufio_get EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number @@ -7752,13 +7753,13 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d83826d dm_bufio_get_block_size EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7ab460ea dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x91f00abc dm_bufio_set_minimum_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcac119b9 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size @@ -7767,7 +7768,7 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x032b524d dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x07863eac dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1c852cab btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1ca7a695 dm_cache_policy_get_version @@ -7781,28 +7782,28 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa975270f dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbaec9cd8 dm_cache_policy_create -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd91a0fb9 dm_cache_policy_unregister -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x21c0035d dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe0863400 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xce2f3307 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2e29502f dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xed9ef6d1 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 0x0b77087c dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x29fd1c10 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x213ed72d dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 0x5136308d dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x65e0e5ac 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 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa491c9e2 dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa75ae244 dm_rh_bio_to_region EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb06a9385 dm_rh_mark_nosync -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb160e342 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcd4efa2f dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd69cbf8c 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 0xe53c49af dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size 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 @@ -7863,7 +7864,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xae600b00 dm_tm_open_with_sm EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb11cd6c1 dm_bm_read_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb500e95b dm_tm_shadow_block -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb8695f8a dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb940af6a dm_array_info_init EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbdde4031 dm_btree_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xcbba75fc dm_tm_read_lock @@ -7879,267 +7879,270 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf551114d dm_bm_checksum EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5aada6c dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf5f7fe90 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x5f341101 tps6594_device_init -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xe6ee238d tps6594_is_volatile_reg +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xc3054a8f tps6594_is_volatile_reg +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xedab7261 tps6594_device_init EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x3c8d5a4e st_unregister EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xb2a1cb02 st_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03935a0e mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0758ab38 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x083aa298 mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f843a25 mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12f0640e mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13731440 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13ff8b98 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x153f34f7 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15e8e705 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0046b03f mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02098939 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0658d06e mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09c00738 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b5f63e7 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x123a4072 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x129473f1 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1304d192 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x151fb4ae mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1675e0b6 mlx4_qp_modify EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18f820ab mlx4_put_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x194baa97 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x194e12ec mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae3320f mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ce522e1 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d65fabb mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x223e44ea mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22efea8a mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x234bf1aa mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x246cde11 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29e64ff7 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b0444e9 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b900b4f mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fd4169d mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31246f14 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36040f35 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x385bb958 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x385e6fa4 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a0c4672 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a2de2f5 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a2e9aaf mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c12ae78 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4432f6f0 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x459e0feb mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46024bdd mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46176da4 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x464c4eba mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x468b095c mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48b772cd mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bfb322f mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4de0b5c4 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x524c2a22 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5474a44e mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55c09801 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56183c66 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x571aaee8 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x595f27a1 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59da5c90 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b62f679 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b83a6b9 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ed9b28b mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fce4506 mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62912f0b mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68937409 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad91957 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ba25214 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c074997 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x744eeb30 mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7585fbfa mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x775e5372 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79fe2fab mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a9c4466 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac2a9d7 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ca4efb7 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e58ed74 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80fb2f79 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ea0589 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x836f6245 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89a9b905 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aeb01e0 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bbf8e15 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fae53b8 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90437d3d mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91abb487 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x921cca25 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x950dd7fe mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95a48b48 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97e13c50 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9952c673 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f4e3f2f mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa10c0759 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1482f9b mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1edd005 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa33a2406 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4744294 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa516d840 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5389dcd mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e2cd8f mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa76ed076 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa28c7f7 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab94ce7e mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf5d49e7 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf8fda54 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb90acd62 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbab5fa86 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb224a68 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb32ac9a mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb43c3d mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbed269dd mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc32dfb96 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8b310dc mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8f2fc0e mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc8689d4 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2c8a490 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd386faa8 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde798faa mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfabfb42 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3fd5de5 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6008dde mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8bf325e mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea0264e1 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea58e938 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeacab73f mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebf44b19 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef1a3887 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0fbabf0 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf19e549f mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6229ab2 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf681651e mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7af8f86 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb0d4825 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbaa3f30 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff47dcba __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02f2c8b1 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03fa342b mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e26a48c mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dff5c02 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f96d764 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x322d6ab5 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x350c7516 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3973c5d6 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a8d4706 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c115748 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x406ffee1 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4183c7ab mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41fcb5c5 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42c80b24 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x442a9f7b mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44edda6d mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44f52aeb mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45973f39 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a74939c mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4daa5417 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54f964e8 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58f01132 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a121a42 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a41e5e9 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e2267c5 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eb783e6 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fa65cde mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fd30c83 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61ab2331 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6476f56f mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c488e9 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65089d64 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x680a1059 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68da61ef mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a0eaa86 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fc5aa10 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x742c4b16 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76247684 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x771ddd0b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782ff12f mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x798fca18 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ae046ab mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b5ae573 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c2a28ee mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d5729c0 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x814dfbbd mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8177d708 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8290f7e4 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83b655dd mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86d7a659 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86fb2fef mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87160106 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x890fcb05 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b7707db mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c3b16a5 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cc8c6fb mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e52d372 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f0becc2 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fef89d6 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90f08760 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92c2e8ec mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x964eb501 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x967bc5e8 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97448976 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f5df1c3 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f6af77e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2065518 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3c061fa mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa61c8579 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7e0e3a0 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac3e8038 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0e9d890 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1b06b95 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb603b3c5 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7352841 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9cf7da1 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbedc6172 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfc8923e mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4a32c9f mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc598fbaf mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6a34fce mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc719da54 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc94c6397 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc987fcfe mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc98f92a3 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb2531c9 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7fbf87 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd1035e1 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdb2412d mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce00b9c0 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce4eaddd mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfdf4d2e mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd306ef29 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3a34f3e mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7fcf283 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7ff4054 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda76e202 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbb036bf mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf27f1f0 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfab8c3a mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdffcf500 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe11c07e1 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2b2b4cf mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe505d502 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7d2ec56 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd66df4 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef2627d1 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefcb0c18 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7ff8bc6 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbb7068c mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc377fe8 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe97a84f mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfeaf1766 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01644689 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02360689 mlx5_query_nic_system_image_guid EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08fd7523 mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f475b6b mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11520a78 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cc27305 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d5651a6 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d632606 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2161489f mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x224fca56 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x281551b2 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x288b3d09 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a771f82 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a86090d mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b36af95 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e294b85 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e3daa8a mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32d5a85e mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37ffc898 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3958e30c mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aa242ee mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e2b97b0 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e9e7d1b mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4044828c mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x414ec83e mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x443f0313 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53c86b40 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5850f5ff mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x592a0139 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x594da039 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595879e0 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a39c495 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b9ec75a mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6339466c mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66252502 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d55910 mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d328a7f mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef8c8c4 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f089004 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fb76c6d mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x807f0d45 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a867050 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d9d0532 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e4c51df mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11f3f550 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fc7a871 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22c358e1 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x259fb586 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2719595f mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d767efd mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x364f61ac mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38ed16e9 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bef9ddd mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c57e91e mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c93d3e9 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d140872 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d7514e5 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4427a51d mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x446ae371 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4af6aacf mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5025557c mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x509b4db9 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5598ae0f mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59cbfae4 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd1c7ce mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60081af9 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6067f8c2 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x619edc98 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6200e5a9 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6597edda mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65f820ec mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6604c085 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6643488e mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ce192c8 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x758003db mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c2cd9a5 mlx5_query_nic_vport_mac_address EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8261bdf8 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88b5d8eb mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f57247f mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fabef82 mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0b9aaa0 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xace4db8f mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb025072f mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2903a76 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb93d807e mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc443e40 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd6f2753 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7cbf762 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc918cb7c mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9eed71d mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb9bbc64 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21f6d56 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb2c9c40 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbd9d5fc mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe28bb024 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe79ea910 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea687ff7 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed4480aa mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1c33c85 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2b06d4c mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8bbd4a3 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdf6bb2e mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/geneve 0xf21c46ce geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x08daff1c ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3cc0bd4b ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8e1d25bb ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9dbce721 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xcdebc87f ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macsec 0xaf7a7429 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1b6a5f15 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5a495e79 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9884d26a macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xde5a8a27 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xcd92e467 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e435812 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f4e6e9b bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1dab9fde bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2bdb19bc __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2dbf4ba9 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3062dcd2 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x346aa158 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x40fc113e bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ade464d bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f9e7ea1 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x56014596 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x670494e4 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c626d1a bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x748889fa __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79209fe8 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x90ac3665 bcm_phy_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9aa56e33 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e0a02be bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83a65a5e mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x848f23c1 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84cd3fc5 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85cda017 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86168891 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a4a2f0e mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e421745 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e06c4a4 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5c2c9d5 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7773054 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaac8f5f7 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad3a9285 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb121b235 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6349dff mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb734199d mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb912bb4a mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba866c1f mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc4b19ad mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbef5e14e mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6668234 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdc799f5 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce6b460a mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd04a8ee7 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5c3ad95 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6820612 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2fd7882 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe67bf274 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe963189c mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf27c1808 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfef7a957 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/geneve 0xeedf3598 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0452819d ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0ac6056a ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x3b77c980 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x746152d8 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xae41686b ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/macsec 0x34f7e09d macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7e718b5a macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xaa62a030 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xff16778c macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfffdd101 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xa6c0e046 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0324f969 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x034391a4 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0512c119 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x052453fa bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x076fbb18 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d88c774 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x113eaf43 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2104a1ce bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a788829 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b37cec4 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b4181a2 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42e86671 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c6e459b bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x598d9ad9 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5edccce9 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x726f53b4 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79fdf192 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7ab28ca5 bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7afb0857 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80f3b09c __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82ea7161 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x844f7b2b bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87b406c8 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x87d36e05 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89051bde bcm_phy_read_exp EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2c7eb74 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6e049d0 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa70c17e9 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xad5b60b3 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xadbef8e7 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb44cedc5 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb951f134 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc46067aa bcm_phy_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7d59161 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdff8e9ed bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe1e3ca0a bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6255f40 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe62dbe5c bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6932f3e bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebb06ffa bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf2e4b088 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd7d579d bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfdc7ccf1 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff1fd095 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x0a3e9ac8 bcm_ptp_probe -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x29b86790 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa3aade36 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6bdd7c3 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa788f1aa bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb999b13c bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb674a4a bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf091805 bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc4525837 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd241f83c bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe37024c4 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe4ca0252 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea868f86 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf60eb6ec bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x338ee904 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x99541954 bcm_ptp_config_init EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0327a831 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2af17237 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3abe6fe5 phylink_validate_mask_caps EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4278d56a phylink_expects_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x53c6515d phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5f99ff52 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset @@ -8147,587 +8150,585 @@ EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x94299178 phylink_decode_usxgmii_word EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9616a255 phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x969e1abc phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x99f6840e phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9b652b6e phylink_resolve_c73 EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa16449b4 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa3564b60 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xaff8241f phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xafec22c9 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb138748e phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb1b3f6ed phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb7269de6 phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xbceedaaa phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb325cc16 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcf4dd12f phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd4ad22ad phylink_generic_validate EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe89ea686 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf528fb27 phylink_mii_c22_pcs_an_restart EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xfa740951 phylink_connect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x20e5b902 smsc_phy_probe -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x2cde8ad1 smsc_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x7cd66fa6 smsc_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x8fe22c5e smsc_phy_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xc1c3ebc3 smsc_phy_get_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xe4589849 smsc_phy_set_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xec6c234c lan87xx_read_status -EXPORT_SYMBOL_GPL drivers/net/tap 0x1abd775f tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x27dd9c05 tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x4d0f3041 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x57398a02 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x7d69a170 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x8923ca69 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xa5c58514 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xf96d4092 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xff1942d6 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x0acb183e vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x246656cd vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x706c56a1 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb060259b vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x25320252 nvme_auth_gen_privkey +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x08726a23 lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x0fe7844b smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x5cfdbab0 smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x5e770deb smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x818ce766 smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xbcc79920 smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xd0f69bf5 smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/tap 0x1a640ee0 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x28a6755d tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x489d569d tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x68fe4feb tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x779183f3 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x7c2761cf tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xa256185a tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xb65af443 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xfb6b95c9 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x97e46343 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9823f342 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xadba4ac8 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd481e189 vxlan_fdb_clear_offload EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x3898cd06 nvme_auth_augmented_challenge -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x401d97e7 nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x494092e7 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x4ba78f1c nvme_auth_hmac_hash_len EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x50b431c4 nvme_auth_extract_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x5f92549a nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6804e9d6 nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9c6b9e5b nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xaef4a750 nvme_auth_generate_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xbd3e3482 nvme_auth_free_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf7b3dc4f nvme_auth_gen_pubkey -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02b665ba nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03568bb3 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x052577d6 nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x070dee89 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ada9e84 nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d7bb797 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x045803f0 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0797fc37 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07999b11 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0aa76100 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0eb1836b nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1068b035 nvme_setup_cmd EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ea99927 nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x220e92c2 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x24a45ed1 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11c8ca91 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1235d291 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x177eb91b nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x182d5124 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b80bf2a nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d1a1a02 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e640273 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x275a7522 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27f36b58 nvme_complete_async_event EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27fcbedb __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2c7a54ae nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d7416c0 nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f09444b nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f123800 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x309d5229 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38829b56 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46bbfbe9 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28e4b092 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2c26ea88 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d4f6b2d nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40804793 nvme_set_features EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b82d435 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5462021e nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56bc09a5 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f81fa9a nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d5ed544 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51763c33 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59ea9ede nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b285ef5 nvme_wait_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69940b6c nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d322dee nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d493a0c nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d84a78d nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70bfcd6e nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b7aa7ab nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6eb994fe nvme_unquiesce_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x848f6c63 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88cf30f6 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8966262e nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9580d781 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x963d3aec nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a001ef5 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fcc9531 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa19551c9 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4707345 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf919b25 nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4eb472e nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb4ff751a nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5db4296 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc35e1293 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4813998 nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5264ed8 nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7c0af74 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd3d807c4 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8209ed99 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e9c07e7 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fa89eda nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8ff47cb5 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9068a601 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c939348 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9cdb1234 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa1319d23 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa16f33e8 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa84791e8 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad02f7e7 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb66e64f6 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb71ec359 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb7380250 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8c8df20 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbecd037c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb7c8d98 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcce9dd2d nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcd8d0e62 nvme_quiesce_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6ac3856 nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd75f36dc nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdbb3721c nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0ef5884 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe379d4a1 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe84c05a3 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9f15077 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed585874 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3316725 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6fe68a0 nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf86f48a5 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x02005bb8 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2fe33d87 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3a344d9a nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3b1000f7 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x49b19df2 nvmf_map_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5591cb15 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7a008968 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd10726f nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde0ac5cf nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe7504b11 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe7746847 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea610c93 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb55bb90 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed1043da nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf7d344d2 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf943c552 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfff05ab4 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x214fa223 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x52f04324 nvmf_map_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5d00a0e8 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7bbc41db nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8aa81e0f nvmf_set_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x91c157ee nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x980fc59c nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa3bf9a3e nvmf_connect_io_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa53fe35c nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaac879ce nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xcf68bbc9 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xda8393cd nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xff6a2c15 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb94a524d nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc5fd2af7 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc7d2feb6 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf22a1a9a nvmf_reg_read64 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8febb0e7 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xb58f3678 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfa05346e nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0e9a3051 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x25602939 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2a0126fd nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x336a4436 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x10d50701 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x23b92c78 nvmet_req_free_sgls EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6c7acc13 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8e899621 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9b68bb95 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xae282378 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb492dddc nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb9e19cc2 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc31b52de nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4f4bb031 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x562f6ce7 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x801c7246 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8478d5b9 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x92684580 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa772518c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcc58959e nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf1979104 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf97f02bc nvmet_unregister_transport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7962dccc nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xe0c12799 nvmet_fc_register_targetport -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x8554051c switchtec_class -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x026b87ab dasd_generic_path_event -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0b9fdf33 dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x80480063 switchtec_class +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x066a5955 dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0c7be09c dasd_biodasdinfo +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0ed3f15b dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0edac25e dasd_free_block EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x1970ba26 dasd_generic_remove -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x22dcb270 dasd_generic_requeue_all_requests -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3b70c690 dasd_generic_set_offline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x3e15b1df dasd_generic_verify_path -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x40d4bca5 dasd_generic_notify -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x45db4396 dasd_device_is_ro -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x542736cf dasd_generic_space_avail +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x29a50ead dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x434fb043 dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x44480b4c dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x52ebc932 dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x599283d2 dasd_generic_last_path_gone EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5a95fab2 dasd_get_sense -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5d506ca3 dasd_generic_handle_state_change -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x62982aac dasd_free_block -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6336dda2 dasd_put_device_wake -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x69873b6e dasd_dev_groups -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6dc34df2 dasd_generic_free_discipline -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7560d8a9 dasd_generic_probe -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8e63067d dasd_generic_space_exhaust -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x90ae5b7b dasd_device_set_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9bdcbb27 dasd_biodasdinfo -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa0343fc2 dasd_wakeup_cb -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb19e53a2 dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x60c16f42 dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6fd17c6a dasd_devmap_set_device_copy_relation +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x741bad2a dasd_generic_space_avail +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x83826140 dasd_generic_space_exhaust +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8385cb64 dasd_generic_free_discipline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x8ce409c5 dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9653b171 dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9f016f34 dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xa8a86e9d dasd_generic_requeue_all_requests +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xabe5e7ed dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xac054908 dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xada6e020 dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xaf057c3e dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb3056e90 dasd_generic_uc_handler EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb813fa0b dasd_device_remove_stop_bits -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xbbf08a64 dasd_devmap_set_device_copy_relation -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xdcecbb62 dasd_generic_last_path_gone -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xe8b7397e dasd_generic_path_operational -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xee993f6a dasd_generic_read_dev_chars -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf112cee4 dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb931f409 dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xbcf13f17 dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd0351acd dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xdbca03d1 dasd_dev_groups EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf3071c9e dasd_flush_device_queue -EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf657b4ba dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf2f84ea2 dasd_put_device_wake EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x85d9d140 eadm_start_aob -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x1c4d3566 qdio_allocate EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x23c0e637 qdio_alloc_buffers EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x27488bbc qdio_reset_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x43076e5b qdio_inspect_input_queue -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x5b8a62c2 qdio_activate -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x5d58a7a4 qdio_get_ssqd_desc -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x83c35431 qdio_add_bufs_to_input_queue -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x97472817 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x27f29cdb qdio_add_bufs_to_output_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x50cb03ea qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x53b7db82 qdio_inspect_input_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x7a22ce57 qdio_inspect_output_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x7dffb09b qdio_add_bufs_to_input_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x82229296 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x87f2b185 qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x92ca037d qdio_activate EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa04bb255 qdio_free_buffers -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa80fdcf3 qdio_shutdown -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xcbb898aa qdio_establish -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xf6ac40c3 qdio_add_bufs_to_output_queue -EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xff8c27fe qdio_inspect_output_queue -EXPORT_SYMBOL_GPL drivers/s390/net/ism 0x3380ddc7 ism_unregister_dmb -EXPORT_SYMBOL_GPL drivers/s390/net/ism 0x7fe3cfc0 ism_unregister_client -EXPORT_SYMBOL_GPL drivers/s390/net/ism 0xaaa2d1f3 ism_get_smcd_ops -EXPORT_SYMBOL_GPL drivers/s390/net/ism 0xeca8b5dd ism_move -EXPORT_SYMBOL_GPL drivers/s390/net/ism 0xee311104 ism_register_client -EXPORT_SYMBOL_GPL drivers/s390/net/ism 0xfd6eee64 ism_register_dmb +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xb980530d qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xf4096b0d qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/net/ism 0x53dab93a ism_move +EXPORT_SYMBOL_GPL drivers/s390/net/ism 0x58a0d434 ism_register_dmb +EXPORT_SYMBOL_GPL drivers/s390/net/ism 0x6146f5aa ism_unregister_dmb +EXPORT_SYMBOL_GPL drivers/s390/net/ism 0x7185fdf6 ism_get_smcd_ops +EXPORT_SYMBOL_GPL drivers/s390/net/ism 0xb53ab841 ism_register_client +EXPORT_SYMBOL_GPL drivers/s390/net/ism 0xd541bc11 ism_unregister_client EXPORT_SYMBOL_GPL drivers/s390/net/ism 0xff2d22b7 ism_get_seid -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0e9314e5 qeth_threads_running -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x109e565c qeth_poll -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x160fe62d qeth_set_real_num_tx_queues -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1ea2b81c qeth_setadp_promisc_mode -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x243b1b9e qeth_fix_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2696cf61 qeth_xmit -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2c4f8a5d qeth_get_diag_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x34bad87d qeth_set_allowed_threads -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x34d4f92e qeth_setassparms_cb -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3659f316 qeth_vm_request_mac -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3d044353 qeth_siocdevprivate -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x56b9a519 qeth_features_check -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5c4f15f9 qeth_dbf_longtext -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x67607870 qeth_set_offline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x70ebe955 qeth_stop -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x71ea7232 qeth_setadpparms_change_macaddr -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x71f2fae3 qeth_dbf -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x775ee3da qeth_open -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x84e8497a qeth_iqd_select_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8b39869f qeth_osa_select_queue -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9809fe2d qeth_enable_hw_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x99bd78d9 qeth_set_features -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa56e6c71 qeth_send_simple_setassparms_prot -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa5fe7f20 qeth_resize_buffer_pool -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xaba64e38 qeth_do_ioctl -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb7682ed5 qeth_get_setassparms_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc8687156 qeth_tx_timeout -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd254d2e7 qeth_ipa_alloc_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdd43486a qeth_send_ipa_cmd -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe7ee9d5b qeth_get_stats64 -EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf6e3617c qeth_configure_cq -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x46df4438 qeth_l2_discipline -EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0xfdca6fcd qeth_l3_discipline -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e74bd81 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x12681abb fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x170236c8 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c9cc03c fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x418a5049 fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4a8ef00f fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57042769 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6ced6d50 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7eea2373 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82f7084c fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x92e170f1 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x97022422 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a5ac620 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9b260f8d fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa4383e78 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xada2617d fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1354b8bc qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2d157379 qeth_send_simple_setassparms_prot +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2dcfb069 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3670a2d0 qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3eb4a17c qeth_iqd_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3ee74d9d qeth_vm_request_mac +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4949252c qeth_osa_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x56745dd8 qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5c682f10 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5fe224ce qeth_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6ec90303 qeth_siocdevprivate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x774ca807 qeth_xmit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x838a575f qeth_set_real_num_tx_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x865380d3 qeth_open +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x88c57ca8 qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8bee36e7 qeth_stop +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8e6ae648 qeth_get_diag_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x93c4e6c0 qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x969eaf55 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x979e1aeb qeth_features_check +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9a19c4e1 qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9d711311 qeth_do_ioctl +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa07292c3 qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xac009868 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd41d96e2 qeth_enable_hw_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd6b70128 qeth_set_offline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xddc3affa qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe44039aa qeth_get_stats64 +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe6f64dd7 qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe8e29dab qeth_resize_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf5d173fd qeth_ipa_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xe5c5bcb8 qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0xc40772c1 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0c1e6517 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x167d0454 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x254dcd6a fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x25e7e753 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2f50e152 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47b0c71d fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e4f4931 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6652ae84 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x741baac2 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x767de950 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x85cffc2c fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb580cc87 fcoe_validate_vport_create EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac93a79 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbf4ed731 fcoe_ctlr_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1e160cdd iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4d875c6d iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x768ec618 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xab036a0c iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc563e30e iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xce15c799 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe3057b03 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf4c5415a fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9561aad fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x26115f8f iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x48def27d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x70b48ba7 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbf0f5b8f iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf601aecc iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfd3966c8 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xffae1dfe iscsi_boot_create_host_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x17a6fea4 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08185207 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ab40c02 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0696521d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08879a61 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x109c003f iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1219593e iscsi_host_add EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1739c8bc iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1bee945e iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1db20ed9 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2223a257 iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31bc3e01 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3494ce0b iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37f429f2 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x170b1fcc iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x230ece28 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x236ee10d __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23cbe86c iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2532b49a __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x291e983d iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a440dec iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b10cf4b iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31f581f3 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36ac463b iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b3810df iscsi_requeue_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e0ae759 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3fbf4a08 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x468a84e3 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50c8d804 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5446b7a4 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57ecb163 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a23f9d6 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f9f6474 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5faad572 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bb4398a iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70833ee5 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x708ee211 __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70facd46 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73a56c32 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x759fda91 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75f2f7c6 iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88dc9ed0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46fa6996 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x473fae43 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c18604b iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x530a9bf6 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ad00ffd iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c7775c5 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65c0f133 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6739c780 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7867a0c6 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78ff747e iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8163d0dd iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8596d883 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85e86f9b iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b72aa48 iscsi_eh_session_reset EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x953017e9 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9619d25e iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x974e70ac iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x992b7a7e iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e0faee9 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4ee9e86 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb36559b1 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6d6b49b iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9d5eb3c iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbfa5d4ad iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6e108db iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf8b0748 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd093a4a9 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4a61245 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb20da8b iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbb82c83 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbeb1ca6 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe341634d iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dbe6024 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97172f31 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5b37751 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadc88571 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf6ce83f iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb34566ae iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5691aea iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7010aad iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7ebc3b9 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd1ae404 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6d5ebe4 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3f7b990 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd99679d5 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6084025 iscsi_queuecommand EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedb66957 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2d972a6 iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf53def0e iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfea79b7f iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ff37e0a iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x266eed48 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f07dab8 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fe3276a iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x596315c5 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5b2c06bb iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x908cf060 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa366a557 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad3ab66e iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbdf4af03 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcb752599 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb608eed iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe5af3e2f iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee241a4a iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0060a95 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfa6c459b iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfd1f2934 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0007ae10 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03059a84 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0da40784 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13d9332c sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1918cd24 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1cc859f6 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24ad77e0 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d0d1b61 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x349007a6 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b4642c6 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4057ad0d sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43f264e4 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b62aff3 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ba2e2e1 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7966dc4e sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c23716e sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8110b24e sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84ebcfce sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b54f9b2 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9366e9de sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa118fbb5 dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa92a1342 sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb9953855 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc28c5611 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc807c36 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1fe36bc sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4f66187 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd957083e sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0eacf36 sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1bac627 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2c2d557 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe92ece76 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xe359726e fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00f96b6e iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01c42eb4 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d7f6770 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17eeab23 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x185cd14a iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x228233c9 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26aff500 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32740dcd iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x327cffbc iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3379b301 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x348ca4b4 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed1069b7 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf1aa9cab iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcd8c1a1 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd99bbc7 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfeed856f iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0449542e iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x15ff2a75 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48cbd7de iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53ae3e47 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x545912c7 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6fca43f2 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77c7075b iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7be3eb66 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8798efb1 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x95e64e02 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xadfaf6bc iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb12235ec iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbbdd2eb8 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcc6e9781 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd94ad5fb iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xec8c1b95 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeea3e636 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01bd3aa4 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x034a0721 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04d15ea1 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1085135c sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10ca8bac sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1aa1de9f sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e7cf197 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x224529b0 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x258d9e2b sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2802686a sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2982cfd4 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29d0a677 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49a61c1b sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a1d4e5a sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5aa33d24 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d40c614 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x609da880 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62010beb sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x626301a7 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x69a80fec dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x77ae8e6e sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c689ea1 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e0ca0cc sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81ffe1e7 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x844c3e90 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e23f886 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9902a714 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa98a79e0 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc93886e4 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd34025c9 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf8036dc5 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd67ef24 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xae45fc99 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d01271d iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21498f72 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23fe9275 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2412e4b4 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24e839ad iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2693171d __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3362389a iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x343b10e7 iscsi_force_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x363ef721 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38e64032 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39e7edc1 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3da55635 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41dfa79c iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4280adec iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42b5842a iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48f4e498 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4a2cea92 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56a8a37a iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x364365e8 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bbfbb2e iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c18e936 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ab005cb iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5346e318 iscsi_host_for_each_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5879935c iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a71f2cb iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6384291b iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a059bcd iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x639705d3 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 0x70e533ca iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6c961eb1 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fab6f62 iscsi_post_host_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79017181 iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x798b3e03 iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x806116c6 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81dcdffa iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x823354fe iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x781581f6 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7880ecda iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78b928f9 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c0f62ab iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f811495 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fcd7ba9 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 0x85c45660 iscsi_get_port_speed_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8cd9bacf iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d124f20 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94080f66 iscsi_remove_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ac06cf __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9b95a3f __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6ceeffa iscsi_get_port_state_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb0172d5c iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb22f7335 iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2fb9221 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac968927 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaee7beb4 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1f53da2 iscsi_destroy_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb32662a6 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb47d0583 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5f888f7 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb65b94a6 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb76a8580 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb79f7488 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb1740f8 iscsi_dbg_trace EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc7a10be iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc34eef67 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfdf31e5 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5302b05 iscsi_free_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6264e7a __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6bbc920 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0235a80 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd37e92cb iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf56e10d iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1d82ee8 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5f99505 iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda09b986 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddcca8fa iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf4db3c1 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf5faf5e iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0abd64a __traceiter_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb4ad15b __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed32f642 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeded05b5 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee1d8057 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf00899b7 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf13829d3 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf868be18 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x169cc26f sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x262885df sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x640c8fea sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8dc5770c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xedfa5bdd iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf00a9cb0 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf261e7c8 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6a43876 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8adafb1 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x4b3d7419 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x67979cb2 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9f5ca0d3 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf31561c7 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 0x3d24bc89 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_spi 0xe704be40 spi_populate_tag_msg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1b8d4e8b srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3c2b68df srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4ada2017 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x80a0c2ea srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x91d16174 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9b663ede srp_release_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x0dfa2cf8 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5aca19a0 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5c9480ed __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7586ed85 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x937c1da4 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xdb255d8d siox_master_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0189cf88 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c5dd963 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x12afc1e9 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1327476b slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x24ef4d74 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x27207873 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x43395e8a slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x450b29b6 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x46bac333 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4b8f518c slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x584d2fa0 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5bd97431 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c756baa slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x71987d72 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fcb2cc9 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x92f77517 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa182810a slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa26d5e1a slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf769810 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc91358e3 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcf93d113 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd8aed02d slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdafc6a59 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xebcb38fc slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf9489c15 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfcb5769f slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x20ebbb8a target_submit_prep +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x317e202d srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x39e345bc srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3a979820 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4942cc3f srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6207e05e srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xabc4be5e srp_release_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x06ea3bf4 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5a82d5fc siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x622023a9 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x73b3e62e siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc3a70a57 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd20c3d2a siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x06e99f05 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x18f7c390 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3b00a5b0 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x436bfee4 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x538b5168 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5951cd01 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5e2c43c0 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c4dcd24 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x79b7311b slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x83679dd1 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9fc0ecd2 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa099c6e7 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xadf13507 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xafe44589 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc88866c2 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcb8a27f7 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xce9c6d24 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe9553e1b slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xea5573ab slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xebe7bbcf slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeec4a26e slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf15c0778 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf25ca507 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf2d5a86a slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf61017ea slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf7aaf635 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x056736d6 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2d72f08a target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x30529cae target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x8af7d82c target_wait_for_cmds EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc07557cb target_stop_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc10b4542 target_submit_prep EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd4f410d0 target_free_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd8ab8cf1 target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xda7a6c6d target_init_cmd EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe7b37d88 target_alloc_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xec497375 target_submit -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x05dbdc39 uart_console_device -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x0d3ae773 uart_insert_char -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x298a52e7 uart_handle_cts_change -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x43008908 uart_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x6c0f6df7 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x75a10a31 uart_xchar_out -EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0xf4ffc932 uart_get_rs485_mode -EXPORT_SYMBOL_GPL drivers/uio/uio 0x0bfd6f6c __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x202fb1b5 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x642665cc __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xb5d0a051 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x4d1596eb mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1234a65c vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2ad3c7c3 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x47ef7c30 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x2a06f9ee uart_get_rs485_mode +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x439f9fcc uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x85ada9c4 uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x96d47c98 uart_xchar_out +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0x9e6e7a22 uart_console_device +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0xbdbe7712 uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_base 0xf7a3b60c uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4c2e74a7 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x73dbe8c3 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x78f7cf09 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc30298c5 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x73678c2b mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0116d76b vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0d93f01a vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2e7ff80c vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3e510875 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3f0ed464 vfio_pci_core_enable EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6aae72be vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6c65c1a1 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6d305cdd vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x74020c70 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7750b92c vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x77573cee vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7855eb1d vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8d030bec vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x93273e5d vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9b20db0f vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa50b3ab0 vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb40ef670 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc6befc51 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xca703711 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdb422a03 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe8c5b300 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x000aab96 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x07eeac02 vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1c15ae36 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3f3281c2 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6c85c2e2 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7684ca38 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x88d810a4 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x92eb1612 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9cdf4581 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa7449150 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaa3a6e50 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbc306c38 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc13b104e vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd0afb52a vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd32a9b04 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd6ad21aa vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd6f52e1e vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe4c8da0e vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x02aea035 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x10ced948 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x155cbc85 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x28c55605 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4d6f83d3 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5246d9a7 vfio_register_group_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x529db99e vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x56563d1a vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5935dd82 vfio_file_set_kvm EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5f602dc7 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6aef0df1 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b8fe654 _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x850364aa vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9174bccb vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9bb515d5 vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc0cb51dd vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8add0192 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e90141a vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa831243f vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xad6561c4 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbe304f0f vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1dfc623 vfio_register_iommu_driver EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc6984055 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd2b1bc10 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd9c28534 vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xea5550f1 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf908ce0a vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06904e43 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0883aaa7 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c7fc5c5 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cc3ea0b vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10fce86e vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19f2e804 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2450c664 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30be934f vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35dbbe70 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3834ddd1 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4dedceba vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f0e78ef vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4fdad25d vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ba55965 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a23d925 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a5ba4e4 vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c945aa8 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d8eafa1 vhost_vq_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86ae2f4a vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87564b06 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96f1ae36 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x984e04f5 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa10502c0 vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1dbd4d1 vhost_vq_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa28db640 vhost_vq_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa2dde524 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa870c6e8 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfb142ebf vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfd079b69 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x046f7501 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a38645f vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e768def vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16545c3d vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16732870 vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x24219281 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x26a0d7f0 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3057e58a vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31b310a3 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fc0973b vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x468098b7 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48e62e55 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x48fe6c77 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52e44f7c vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x542896fe vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5848d367 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58d6180d vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x602d4b13 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6683a8e8 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x66fc6adb vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ebaa89d vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70bd6585 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76239823 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79751619 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9340a30d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c154085 vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1637a38 vhost_dev_ioctl EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf787c11 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb62a6f7f vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbcdb89c7 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc36729b3 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5a4bb1a vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc49c26e vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd35e80ed vhost_worker_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3a79acc vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda7d5050 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc7dce21 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1552f43 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe579f99f vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9ec9170 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf3331a36 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf757ff6e vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5a52a09 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb97afea5 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1e9de09 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5fcd473 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc9340212 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc819c59 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf35423a vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf3ffb91 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf8172f1 vhost_vq_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb146ef2 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf4f52ba vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe7e2302f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf306c601 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4f9fa08 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd057be6 vhost_worker_ioctl EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset @@ -8739,358 +8740,358 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x06decb4c dlm_posix_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1c04c758 dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x64ded865 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xefbea8a8 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x27a8ab1e nlmclnt_rpc_clnt -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x51822b08 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x718e4e79 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x71fc2176 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd28888b0 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd55a0e47 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x38b5e772 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x61c058d3 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x95d86a37 nlmclnt_init EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc1c52617 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf4f92658 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf864b889 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfce14fb4 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/netfs/netfs 0x1e97a101 netfs_extract_user_iter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x013f926c nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x016d3e0c nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa3642327 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaae7277b nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xabaf4409 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc886d642 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd6a03700 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/netfs/netfs 0xcb1b3314 netfs_extract_user_iter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x021d40b6 nfs_pageio_init_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0382b642 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x038d5c70 __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x047a6872 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0794138b nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08cbc367 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bd5267c nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e1a85d2 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e96e38c nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06490b75 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06b72ab2 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0721cd85 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0765ab31 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07934569 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0872d9c3 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a19d94b nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0adedd49 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cc899dc nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e2ae39a nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fd7b1d7 nfs_rmdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x125099c7 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12e0b879 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13f2bfaa nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1469e78c nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15dc02fb nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17a3a8b1 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17ffe7cd nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19284ca2 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19cb6268 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c11bb47 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c443c5d nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cf65632 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d6c11d8 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dae5665 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x216bf92e nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x115d5691 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11d32aa6 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14decef8 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1726878b nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17edb6ff nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18de5c0a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1963c2e2 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1aec413d nfs_file_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x233dd506 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24980a34 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24c08060 nfs_release_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27032d7a nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x269241ee nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26f0c178 nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29086fa3 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29288fb9 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c9f3a9a nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb0267e nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32043446 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x330fcf2e __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b0780c7 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c284e75 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c5a13e0 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e8d6c71 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f95bf34 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fa5a43f nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30a37b9b nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32563b7c alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32c97281 nfs_commit_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34566b51 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3570d1ec nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36fd2ae7 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37a4371f nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x398494c5 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39c649fd nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39d286de nfs_read_alloc_scratch +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x348e54a5 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x354711ec nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35f32eb4 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b18bb0a nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a873918 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b7c8546 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d72a8ff nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e2de8ea nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ee1e3f0 nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x404f83c7 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f6e741b nfs_check_cache_invalid EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40e4088a nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x459c9a3a nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4888e538 nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bfe2b21 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46dde492 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x490e59ee nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b55a3db nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e003eaa nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e274c51 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f3c6b62 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fd80233 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5058e26a __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50ae926b nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54b34dda nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55ae2445 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56c9333e nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55e681f0 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5712d8af nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5746ef98 nfs_file_llseek EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5948e942 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a455029 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a8c46c1 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c2e24be nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5db352f5 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61c951d0 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6224d9ee nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65961491 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67a512ca nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d227200 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d64a484 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af3b667 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e9e0113 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x642d2810 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64aae881 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64e2913b nfs_read_alloc_scratch +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6512cf3f nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x653c6561 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6688c93e nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6781692e nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a1b1cb6 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a45d5c2 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b80f842 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cc83fda nfs_do_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e88b8e1 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fea6a0c nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7060a9c9 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73df7baf nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e8ee881 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72ccc0ca nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73b3fdff nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dc6058 nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x756d3e2c nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7630a7e0 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78c630ac nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a03bff7 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bcffe46 nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7da9bd5d nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77d72a6e register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799eaa53 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bd2f2d6 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bdc6c11 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dbf7aff nfs_sysfs_link_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e202e89 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e37caa0 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x802ae12d nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81211d21 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82bef58c nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8336db56 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e99679e nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e9c8594 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80c996b2 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80f1e314 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83f8cd47 nfs_create_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84c4876d nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85209a2e nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87b9936b nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88d92520 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89dd36b5 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b81d5f5 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c66fdf5 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9022634c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88d6e6c7 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ae0c2cd nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c09b20c nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f6b1765 nfs_get_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 0x931d3d05 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94cd1c41 nfs_sysfs_link_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92c5cc34 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x931eb56a unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93617bc7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94a630ff nfs_initiate_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x965a9bf9 nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96afc5a0 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95df8c58 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96e7a7bd nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d9749f7 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e8227fe nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa23f794a nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa63477ae nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c45c682 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f5de876 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6934491 nfs_post_op_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa51098c nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaac314ad nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8fec984 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaf92fbe nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab480cbc nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb09da69f register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb220d270 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb28ae12a nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb341dcdf nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb41543d3 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4fb3ef5 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5c50b1e nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb94d68f6 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb49e303 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc778ea0 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab96617d nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeba9533 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb00f951d nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb45d7fa8 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5b9a98b nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb68ed127 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7adaa52 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8748133 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8e67cbf nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba73fa3c nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba91c13f nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc60c8d __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc69613 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbef2afc3 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe2b7d82 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe3879ab nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbef1f90b __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc21c94c9 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2f34cbb nfs_wait_on_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4db111b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc485dee2 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4eff44d nfs_probe_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6cd5eb9 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9746aae nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca554f1a nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd28c3758 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2afac95 nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9792a1a nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc93495d4 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc98103b4 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc5383b6 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf6c436a nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf92a466 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0f9fccd nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd118da65 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3f0a2c6 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5e7c9ae nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc7df1fe nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde11b2e5 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1761fbe nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3322217 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ac3423 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe62578e2 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7c25bd2 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8ab1c26 nfs_client_init_is_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9ccb806 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea89d61f nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb115d91 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb36af80 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb8b06cc nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebe0c1a9 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed1d1545 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed71e91c __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef1d6b67 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf30bb02b nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a07b38 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6741af8 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6ee6c6d nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7b575b4 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7dffc6b nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf875c622 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbe68cec nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc7cbcb9 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd176358 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf0b3edf nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe14e4e6b nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5696f75 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7723cbb nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8a65d13 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9c5ca2f nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea16b563 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeeaa8f04 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefd777f3 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf00af8bc nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf501e363 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf829d115 nfs_sb_deactive EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb700256 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbabec6a nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbb1cf17 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb557106 nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfebb0b66 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff0cab00 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7a74c413 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa8b26c nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x988380f5 nfs3_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02da1276 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0361e2fe pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x081ad973 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x078950c9 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07f1b579 pnfs_report_layoutstat EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0998fe5d pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09cd6cec nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ade403e pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd06bd1 __tracepoint_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d381e90 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0df9f0a4 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x112c24ff pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1278f352 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18511e35 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10d275fd nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10fdd8d1 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14ceb62c pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17643162 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x183a0bcf pnfs_generic_pg_check_range EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b41178 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b2c64fe pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ba39450 nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d57c82c __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x213cef1d pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e2293df pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21645f92 nfs4_schedule_stateid_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2174b794 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2247093e __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2385207a nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x245b7de5 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24ca040f nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2550a952 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26d6b6b8 __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28745d23 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28caba3b nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c175fdf nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c7192f7 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29625323 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a21f0ef pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d7c10c6 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dca0bcb nfs4_decode_mp_ds_addr EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f1e21ba __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f36cb83 pnfs_report_layoutstat EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30f66d28 nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33106999 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34b1e96b pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x371b85ff __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37e5fba7 nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39aa6eb1 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b00ad57 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e314df1 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x439e19bf pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45dad78c nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b3eb854 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b772eb0 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ca88c1f nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x506d61d5 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x516d105c pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x316e8006 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35bd974c __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ae61a1c __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b52ab92 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3eb3ed83 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x425a003d __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45a9c700 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47d3b67d __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49657663 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49e39a43 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d060c99 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e4b2e60 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f73dd32 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x501b96f8 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x52693b9b __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x546836b3 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555bb1db __tracepoint_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a2c93ab pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x594bec2e pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59f75825 pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a5092fe nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f9651b6 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x613cfa1e __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x631782f4 pnfs_write_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e637af7 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71f6819b nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x775c667d pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77b2ec53 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7308b08a pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75bf1449 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76a247cf nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x773af7df pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x794fe016 pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b09b7a2 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7aeae369 pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7dd79913 pnfs_generic_ds_cinfo_destroy EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x802046c5 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x817a8127 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x836367aa pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89ac5fe6 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81178272 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ce58f7 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84abf1c3 nfs4_find_get_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be24f50 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d648a70 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x945a0d56 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9974b2d2 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9cf65503 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e957051 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa009805a pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8e946e7 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa76fd87 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad39afaf nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0a5c64d __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0e9b983 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1fc9e7f nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb26d6e65 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3a16528 pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5b4d741 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d6464f5 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x923ec93f pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9580c26e nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aaa6627 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d9cd1a5 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4e396f8 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8a5da2b nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaaa196f6 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad59e55e nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae74cb12 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb28609ba nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb635387b pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb6ad1b84 pnfs_register_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba6d5f4c pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfae2e85 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc282d7cd pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2f80fff pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3c855db nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b1159e pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3fc0072 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc773366c pnfs_generic_ds_cinfo_release_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc81240b3 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc94e9c30 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb16b389 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbacc2a4 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc9f9447 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf8a18d8 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf8a38ed nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf9a36f1 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3994748 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9879bab nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdb2fe70 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd091fe3f __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2586bff __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd47333c2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4b94a11 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4db74b8 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6c593be nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd342fa8 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde7b91e7 pnfs_write_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdfa8bb8c pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7af7c37 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9889240 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3dbcd41 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe78be887 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8f05f2f pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee49db6e pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0c7e5f0 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed3a9384 nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd973326 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff3f73cf pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc7e83cc pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd67f04f __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdfa93c8 pnfs_generic_pg_check_layout EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9dc45b08 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd5f84a15 locks_in_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xea0de891 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x205e863f nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4b5f39fa nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe8f4c5e1 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfec790ff nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x50996b27 nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0bd53c89 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3c3658ec o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3e045749 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x464b1a6a nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x77fc02be nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa05169af nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xcd8f37b7 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x6b46a31f nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x07dc7816 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x362badf3 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 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x67936fc2 o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x857f6be0 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x90aa1917 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8855977d o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae442198 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb96f9c61 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd053c682 o2hb_register_callback 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 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfa83d357 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfa9539f5 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfae4c727 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x51219e21 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0b3883b5 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x14aa1a7f dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2f61cfc0 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3d2462c7 dlm_register_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa3698880 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb9ba7934 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc6513480 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc993327c dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x850982f8 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x87bb0353 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 0xe06110e2 dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4e4cb8d0 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x75a718d3 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x624121df ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x6e4efcff ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8297cf86 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x93828c25 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xae6bb30f ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbc89b944 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status @@ -9113,961 +9114,961 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x31d4e581 poly1305_init_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xd7219de2 poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xf3945fcd poly1305_final_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x298842e3 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc52c6538 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x068be394 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x86b45dd1 notifier_err_inject_dir EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x3e193101 raid6_call EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov -EXPORT_SYMBOL_GPL net/802/garp 0x026398d7 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0x17266839 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x41535966 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x763070d3 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x7e07f2e8 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xf8dab758 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x2f03d660 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x4b5a54d3 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0x4e930544 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x54fdd3e3 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x92592b2e mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xb690b271 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/stp 0x47b302c2 stp_proto_unregister -EXPORT_SYMBOL_GPL net/802/stp 0x751e1134 stp_proto_register -EXPORT_SYMBOL_GPL net/9p/9pnet 0x7e718eb3 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x8717e55d p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/bridge/bridge 0x04b60f2c br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x07871af7 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x084ee987 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x092f0120 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b6bd376 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2733f512 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2b68a58a br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c9a8f5e br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3725fd40 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4c693226 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ee346fc br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x51518b57 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e63206e br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e9a4555 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x67dd0450 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x69967e13 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7c8f61d3 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x95f6575e br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0xae6cdffc br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1f70ef1 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbcf16f6 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe3363ada br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0xe5679356 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xef9a9fea br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf38d3a3e br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/dccp/dccp 0x02da04fd dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x04ed5371 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0x077759a8 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b4b0c58 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0fcdad5c dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x15f0c34d dccp_send_ack +EXPORT_SYMBOL_GPL net/802/garp 0x0750f205 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x57da4d52 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x75f8893d garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x864ee83b garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x9bfa357d garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xa5daf44a garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x22547126 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x37a30a25 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x8e2f5e8d mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x99a0942a mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbb21200e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xdebb2614 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x5b04eabd stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x792f7795 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5bc188f3 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbc02823c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1a0ae021 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1a4dfb58 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x320b6daf br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x34100104 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x35924fd3 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b061378 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b8dc8b0 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x54a8a119 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x54dd3402 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x56ededcf br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d522980 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5d7135b2 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5f2ceb87 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7982573f br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8e8139f9 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x944a0d10 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x99ba6575 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9e0bbddb br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc394a03 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc85ecd2a br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd64bdadf br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe6078d05 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe986f9dd br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xea1cca32 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xec1eef80 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00e48bf9 dccp_disconnect EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x22a2070e dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x24ce4977 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b056da8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1cad1312 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2432d110 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x289088b4 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x289df7af dccp_poll EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b0fdb6b dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0x35f6ee87 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f7d922c dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x40ad7079 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4be42f3d dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x465bddc7 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4989a2e8 dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x51d324a3 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e34d9c5 dccp_reqsk_init EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e4f97f6 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x62e32147 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x66930d06 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7292d4cc dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7385d900 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x77045be0 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5fa48274 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66a45930 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x673a606b dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6cf02f48 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71cb1b49 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x74c97f35 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7e03e004 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fa7b8fd dccp_getsockopt EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x820a7a87 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x859183b0 dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87349bca dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x950c4113 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87e4f02b dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8e33804a inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9010aac4 dccp_sendmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa836e66a dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5a33a79 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe9353b5 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7d8226d dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xccbcd635 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0c03f65 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb277101c dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb6493a3 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbb57fdd dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbeed77cf dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xccb6220f dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd25d2d1b dccp_sync_mss EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd963581b dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9fe9ad6 dccp_death_row -EXPORT_SYMBOL_GPL net/dccp/dccp 0xda690f27 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe677ad4a dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe755baa2 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8148d89 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf79e3682 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7c563a5 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x84d429f8 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa052b72d dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbb358e90 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcd26d894 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd40a61c5 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfc8001f3 dccp_v4_connect -EXPORT_SYMBOL_GPL net/ife/ife 0x3fc403df ife_encode +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe86afb2e dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf31c3033 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x264938a8 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x63d9807a dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f3144de dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7b1dd80a dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbc17ea08 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xee114636 dccp_v4_send_check EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next -EXPORT_SYMBOL_GPL net/ife/ife 0x624a048e ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x8d2a4eef ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xbdb2c1b9 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x4ff8b5c7 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8309d079 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x88ed5f6f esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x37970ff8 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xb72cdb2a gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x17df735b inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x34b25b2d inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3e0d3fdf inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4fe03b38 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8a5c8c99 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x94eea642 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcdc9991f inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd6e3e636 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xea614c48 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x2f7797de gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x07d898c6 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0b4b74c4 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0bde023b ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0e8b86b2 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1e6f2bfd ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x345f9bad ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x53f1f8f9 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x78a79412 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8220367a ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8615ed10 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa185f3f0 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa530935 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcf197868 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe8258499 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xed2be03a ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf75fdc0e ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfcf66f64 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7b1b8aab arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa51d2b6d ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x157ee534 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x3849c75b nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x587e828a nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0a078b49 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1670c3e9 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3a81e850 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x612b7bee nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x659da93f nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9e6b1876 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe0aaab45 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xf0c47097 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0b6e2280 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3eefd8f9 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7fb8fca3 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x338f89e4 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4760f360 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x08972f8b tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1c1ccd90 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2ca61d82 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xab6778cf tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd45afc71 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1b94eee5 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x78e90d17 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7f961fe2 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x883b1175 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9a247aad setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb3186059 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xebae5f20 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xebc256f5 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x1a62a836 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6deea960 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xde3911c3 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x097d57a8 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1839ceb1 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa91e8432 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x34f2e9db udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x550676ee udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xc54f1c62 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8ae22b30 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xdb799e37 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xfb9183e4 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5ed2bc0f nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1f0ed90e nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x517bf24c nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6fd5cb9d nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x891408e1 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8dea0e9b nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd9dd8232 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdb724214 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x77a3d1fe nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x795a9322 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xa0ee66a9 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe2083814 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x90bcc1fa nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xea20d33d nft_fib6_eval -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x097635ba l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e7b82d8 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x38653c96 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ae2588a l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d648543 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43cb2a21 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x503a7478 l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x53771319 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5438b840 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ac5f2f3 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5fe4fb17 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x702b9341 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x801095d4 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb1c63cb9 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2e7302c l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc4f6411b l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb3c3abf l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd964ab6 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe675ba94 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf32331c3 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfdd6c0ac l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x81b1b74e l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x77a00997 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xbbf74436 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc0af8a0e esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x37dfee04 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4dea38ac gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2ac134bb inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x38a50b5a inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c3767e3 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffd811 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x803ac274 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9bd57d80 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc5038018 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd70882a0 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf91e6a70 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x01b207b6 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x01a02136 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x058d47fd ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1047debd ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x16a817ad ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1f2aecc7 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1fc1264b __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x42438d0d ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x52b32e0e ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x60f65c80 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x873dafd5 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa3760cc9 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb9c58e28 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc75d0db4 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1e2e806 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xde9c8d70 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeab321b3 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf52b74f0 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x87f3352d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x41a488ba ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb4057cb5 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf0c85dac nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5c67ae5c nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x049add52 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x233dacc9 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x422bf785 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x55fa5892 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5a75b467 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x62321f91 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6b39ea5a nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x5b7423b8 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x27b8abcd nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x632f486d nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x89df0e18 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1e4c8d0f nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe5a24fd1 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x119d70dc tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x58e2c5b7 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xacb09127 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc5030764 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe3274835 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0451e475 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1b8ebcb8 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1ca11e58 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6dfd7a7c udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9d20eed2 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xad559541 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbb0d552d udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd4bfc0b7 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x1d9a9586 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x23ad456d esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xef60b16a esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x040f6282 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x321a8805 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7a7db647 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6dd5d508 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x96cb19c6 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x1e717d44 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4909c67e nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x898c29b3 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x9fcedd97 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xc21a1154 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x478d7a24 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4f0a30c8 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5b63560e nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x74e8aa43 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xccaf510b nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe410a37b nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfe4bf879 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xdc1382d1 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x21f1d40f nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2edaaa05 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x6da2b887 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x4ce846c0 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe14b6e18 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0aa392f7 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b054977 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x15f8be6c l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2e84ebcc l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x658e0236 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x695387bc l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77b93a68 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x813ccdae l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f7e0ffe l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa10008d5 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4086d86 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbf22091e l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2fa066f l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc5d877cc l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc88f2b38 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd5fca292 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe752e541 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf17be277 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7e2a583 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc549cca l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc790374 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x3034db0b l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe30a6644 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2957781c mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x39da10d2 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x68275a39 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x70745b5d mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x89d8b0d8 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x391f92cf l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x78c1121a nla_put_labels EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x08e5c37e ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09ad5f83 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9cb2dedc mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb2491cb2 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb387f392 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xefa7e482 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0386ffb0 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x06cb9e87 ip_set_get_ip4_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x14a82b93 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b3280e0 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x214f387c ip_set_nfnl_get_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x315ffa37 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2b905772 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x31123d0e ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x32f08129 ip_set_type_unregister EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39996d85 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4086f7a0 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x48a31881 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4b74a467 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f49fbf1 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x42695415 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c847973 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x52f377ca ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x79dc5371 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 0x83590150 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87968319 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x89b0722e ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b02e3fb ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e75cdc1 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x820593d9 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x987fa5e8 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e8fb153 ip_set_del EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa0d12274 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa1b8df90 ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa575155f ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa58b3211 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda1979db ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee2f58b6 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x103ffae5 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8bc7fc10 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa41a17ca ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb1813665 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x22097ba9 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3095c510 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb0f1f4f5 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe575bf95 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf075efec ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf699e614 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x090e1ed5 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x14747007 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3c242f99 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x71da61ed unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x19622c4b nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3a5d065a nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x419ab422 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa41dfa5a nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc0e11663 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcba565dd nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x878f3de1 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa9b3242a nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xbeaba7c3 nf_conncount_add EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf808bf82 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x019b698c nf_ct_destroy_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06c6ae94 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x080b46bb nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b6d9e5f nf_ct_expect_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ff1e277 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a6c58fc nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1aaf5440 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x223e5e42 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x235b658c __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24d2166d nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2761056b __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x283d6dc1 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11211377 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11d58d49 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14b1928d nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x168bf984 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x187cd078 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x191fbe03 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a6c0f65 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f15a733 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x204c90fb nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21e8e290 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22464dc6 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26e76e25 nf_nat_helper_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x296446df nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d14d0ef nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f55e18c nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35afe991 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3848dd81 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ab16ac8 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c743132 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d55d1df nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x403c008d nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40dc88d0 nf_conntrack_tuple_taken -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x412f1ad5 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4392a6bf nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4732a819 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x492ea032 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f2e2f14 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53572c5f nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59c402dd nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b349385 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f7f3833 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61672afe nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29f8b100 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a7acc6f nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c74c65c nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e30070f __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33096846 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a743829 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b2ddc08 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ef559ad nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x469aa305 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46bccb0e nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47574417 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ce86e52 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e56747a nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e7c1e2d nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5152f19a nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5280fcd3 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53f3826f nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56e631fd nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58bbe9e2 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a9637c6 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x616ede26 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64d1bf4d nf_ct_seqadj_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x697a4b9d __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c493b8e nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72009da8 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7356a44b nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x750ce147 nf_ct_expect_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x758cdf88 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77be791d nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ae1c897 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87164a0a nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b767543 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75d51f41 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76e74f7e __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b8e0e16 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c132c40 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ca2108d nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d0e143d nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7df05b79 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e4882ea nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x828e4cd5 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84668358 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8963834c nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b7077b3 nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99a9589b nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a4a430b nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9aaa5389 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b0a3c4b nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa511437e nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab4e008e nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadff1089 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaebface2 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf7c6fd3 nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf9f092b nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafa57738 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb262c73a nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9482fdb4 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x963da109 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96d6c8ed nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b66fc04 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa15a5d62 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6243dce nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa92decaf nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac9ed36f nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1f10f95 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb25697f4 __nf_ct_expect_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3b32278 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7af62dd nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba900ee3 nf_ct_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0a22e65 nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d923d3 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb57560cf nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5f5c45b nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6d0a1d9 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb741bd56 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba64f889 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbe87e6c nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbed39c95 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc01cf24e nf_connlabels_replace EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3a28f9a nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc38407da nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3ef7427 nf_ct_get_tuplepr EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc52b93bd nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca60fa37 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccf40e31 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc56ab722 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcacbeeab nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaac37 nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd03f1160 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0fb7a0f __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd16f6255 nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3acd7db nf_conntrack_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd68e819e nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd70339d3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd88d1f3d nf_ct_delete EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9cc99d7 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaf23996 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdaf487a8 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc508868 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0a2a0e8 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2e3789c nf_ct_handle_fragments -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe95149a1 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9bf84a9 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb0eb1ac nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb82a259 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd963d9a nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1e737ff nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6978198 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8bd82b1 nf_ct_iterate_cleanup_net EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8de6b0 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee10ba6f nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeefabbb5 __nf_conntrack_helper_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24e79d8 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf25f01bd nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3687bd3 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf34c4c56 __nf_conntrack_confirm EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf43d3cde nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf76616e9 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8d2e83e nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9ecab49 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcd35b6c nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcd77773 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdbb538f nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfddd9b4b nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x4fcc0009 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x3096fce8 nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x69ce7f25 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3485d3c7 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xded16400 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xcdc10db2 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3ed6198f nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1fb6b10b ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x26e4d3e8 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a88533d ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x48fb7ed6 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x90825a8d ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9d81c54e ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xae271d95 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x0aa8e7d8 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xb847d1f2 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x883b3964 nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe55fc79f nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xed15160b nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x18ddb9e6 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1ab84d4e flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x36f5702d flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x454c96a9 nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x56602134 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5a74088d flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5e6548c6 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5f9e713c flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x899e8f9e nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9b834bb6 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa57c93f0 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xac7ce125 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc201088a nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc74243a4 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc81a6976 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdf2ff6aa flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe0ad28d2 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x14958fb1 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x26f37193 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2ac0efc5 nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3136277b nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x31fdf7ea nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf44da4d3 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf927caac nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf98061af nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe5dbae4 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff56d069 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x3da02d36 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc022408b nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x4f9ba89c nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0056bef7 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3a47ad7f nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x84c26bc7 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7e6dbb8e nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3942ac08 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x755b0a98 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa2565217 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc4decf1d ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcce2e9b6 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe8ec6702 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe9150dc1 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb8132d9a nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xeaebca52 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x427e5fa6 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7e1be521 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xadc408d3 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0bc42960 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x15801632 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x284d9f81 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2f72c689 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x410a6fcb nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x44386c6c nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5d550d9b flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6ab237ff nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7daa4615 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x93eab1c9 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x94dcefa5 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaecd8ee1 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb0721af1 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc578c7b4 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcd4f74e7 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe94d222d nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf01147d8 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0265be33 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x12ce121c nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15b5fda3 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x31f32408 nf_nat_inet_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x42213d22 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5b7b2537 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x74bb59b7 nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x77a14e85 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b9c0a56 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97ccc808 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb7a12bf1 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd4ee38f nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd6d1169 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x43c7f690 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x44960350 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4f2006e6 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x592faa52 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6daec8ef nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x74bc5e23 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x842d7101 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x924d1443 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb1b114b4 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb1ffd628 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc64771a6 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3fd9b4b nf_nat_ipv4_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe6192714 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf38a91ac nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf6279c73 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfe8dacdd nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x038716f5 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd210c83 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe965247c nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x168f56ea synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x18df4ee7 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1b43d76f ipv6_synproxy_hook EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x33a7f045 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4ef123b1 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x66e77adc synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x68f917e0 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7ba2c4dd nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaae8a263 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xab8eeb0d ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc2cef5c7 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7682ed2d synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fb2570d nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8e183e06 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9d6754d1 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9f14661d ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa9ffd58b synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xba6e9feb nf_synproxy_ipv4_init EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd2cd704b nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf1f69874 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x02778894 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03cdd6ee nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x055dcff5 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x07a9d97f nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09d77878 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x138439a0 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1a64831f nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1fa56cef nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x233561db nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25a72fa3 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdd038601 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0022c9d7 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x137d3dde nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1562de09 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d47f5a0 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x285ef594 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ab6c8c5 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31ea6404 nft_flowtable_lookup EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3468a76c nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36842e65 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c18d9a8 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3c88a327 nft_meta_set_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4375651b nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x42d3a036 nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ad9193a nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63fd55aa nft_meta_get_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x655f56f2 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66286db1 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68a77509 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b1a496c __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6fc20e31 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x681fefdf nft_meta_inner_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7021cb90 nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98e5679d nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9eed2e65 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9eefbded nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f253437 nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa728087d nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa7590790 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa8dba1d3 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xac469fa6 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafc7c05d nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb376a717 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc3bf960 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd327049 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc37d5306 nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc88ba2d4 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0f35e84 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd52297ac nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6e8fe4a nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x710c7e1e nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x760da2ed nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82eaaa24 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83158683 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x848eb184 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8be1cbe4 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8ed90d81 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa5ef2481 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab28d95a nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaba2e98f nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad3571fe nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb458c252 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb61fabd5 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb99c9d34 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc25617a9 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc6493e48 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc75bf5fa __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc87f7f02 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcceb6b14 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd67d6265 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc764749 nft_unregister_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe18f9ebb nft_expr_reduce_bitwise EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2cdb4d6 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe39dce40 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe7a2ecdf nft_do_chain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea0302b7 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeaad13ac nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee158954 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf130b4d2 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf54d8c1a nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf97d059e nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x250c1dc5 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x42add7a5 nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x534e2721 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb31a941 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9548f89 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa53c1ee nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc8e6e89 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff256474 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x017a38cb nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x22593b05 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x273b4ab0 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3f5fe51b nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4130e5be nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x864aa967 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa2a78f54 nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb951f7e4 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc91df62f nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9a749392 nfnetlink_subsys_register EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x36b9c081 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3cbc888c nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xeba77d50 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1c79cfd9 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5dfc9f4e nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd8b2f15b nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x34563b09 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe9720084 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x30e51099 nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xf7e2b19b nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0d3aee81 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x308aae42 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5abadf29 nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7f9697ea nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa803335c nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x8368a3ac nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0de2360b nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2cae6229 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa01536a4 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb263a4e6 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbab7a75c nft_fib_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x39deef79 nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5c4251be nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x34f83402 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8a382198 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8af824cb nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xac51a1ce nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0287324f xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x02dd1f48 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x031262cb xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x046f3bb3 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0599cd27 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x18b374a9 xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a0493f1 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1a18060d xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1de48777 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d7150c8 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x44944b21 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4bc851f1 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x516ef405 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6b044a13 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16665cd3 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21bb343e xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2aa5badc xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d0f261b xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2d780319 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3fbc35f8 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x41de4e78 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a602063 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x53808af2 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76820b1c xt_compat_target_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d33b3df xt_compat_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87408878 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x91ca80b3 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x83951347 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x894d497e xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8e3c5930 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9430782b xt_unregister_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9ca55b62 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa07c5ade xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa9a12436 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xac4d9cf8 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad1cb0e8 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb72b4af9 xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1d29786 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc66b2cf4 xt_compat_target_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdcb09053 xt_compat_target_offset EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf69e0dcc xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe785c0a8 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf58eb32a xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1a2ecb0c xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8e310d60 xt_rateest_put -EXPORT_SYMBOL_GPL net/nsh/nsh 0x530a3ee8 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xedf1c153 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1b5ccbed __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x492f07ea ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6727513f ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9a35f60a ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xab15a137 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf81e62e2 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x0d788649 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0x74955364 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x9835c7f5 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xf6c8db8f psample_group_get +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf7bab49d xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf9ef6426 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfd3c5613 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8599db73 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc0e0643a xt_rateest_put +EXPORT_SYMBOL_GPL net/nsh/nsh 0x6637bce5 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xdeddbbef nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x02f22b72 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1950b748 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x41c31d55 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6319ecdd ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa12cdb5a ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe44cbe9a ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x1eedf7c0 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x27fe4069 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xb90337f5 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xf88aa601 psample_group_put EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x06c1acaf rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x19543e7b rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x274e3350 rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x2a380d81 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x2a4c06f0 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x064437a2 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x082d3c3c rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x14c45296 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2682611b rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x29817e0c rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2b5742d5 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x2cd9d475 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x2fdb355c rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3b1f221a rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x37edf088 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3bcb1196 rds_info_register_func EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4e7ae6f9 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x53053519 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x49569d39 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x4c64677a rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x52ac03bd rds_recv_incoming EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x603fb649 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x5eec01eb rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x75f260fa rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x766bce6b rds_conn_connect_if_down EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x7cf52431 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x7ed334e0 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0x89cb38c3 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x9c4a2fdf rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xa31e702a rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xa4b4af92 rds_connect_path_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xa8dd11b4 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xb27a0a16 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xb6b0885d rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xbc83d26c rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x7d70e1f6 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x83fc77d7 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x91505c70 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x9428c186 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xa28a6987 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xa2b69a9d rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa789ecec rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xb4a0a81e rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xc14d9dbd rds_inc_put EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc7053151 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xcff17676 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xd2ca97a9 rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xd8a61c89 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xc915cd83 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd8e3e1a5 rds_conn_destroy EXPORT_SYMBOL_GPL net/rds/rds 0xd949fdff rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xe1ff0774 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xea84a6ea rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xf3d77cf0 rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xfc11c110 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xfdaf33ae rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x0e6b63a2 mqprio_qopt_reconstruct -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x978d8ff4 mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/rds/rds 0xf90dfc6f rds_conn_drop +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x25d6b789 mqprio_validate_qopt EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x69e86ded pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xe33cb716 mqprio_qopt_reconstruct +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5c73c348 pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xdb3b4981 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xedc8f7eb pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x2940d030 taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7c6b158e taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x0a841a65 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x5f07a6cd sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xb81dcfa8 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xe555c9d8 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/smc/smc 0x297e449d smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x5c33c02e smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x5d4f8eac smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xb44a6185 smc_hash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x29bc1001 gss_mech_register +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5a988c3b sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x650fc8d1 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xcaf7a310 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfb7dc4f6 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x3c24a623 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7477d3d7 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x798b6842 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xed374a36 smc_proto6 +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x083a1cca svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6082c359 svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc4bdc82e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x561a4ed9 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6ab1e811 gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xed6bbd7c svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024cc0e4 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02e2a6ff rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdcccfa92 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x007c6960 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0100a0b8 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x017e7128 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0231eebd rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02bae69d svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fc8bcd rpc_bind_new_program EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x062aa0b9 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x064b0096 xdr_terminate_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x066929ec xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a1daf6 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a7e316 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c216e5 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ad45d9b rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0be07e05 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cb93467 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cf199e2 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d16f1dd xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d7d7c14 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ddfffd0 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8abb97 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x066e142d xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09531971 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x097d5e8e xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bcb5fa5 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ce11ade rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea3eaf6 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ecff42e sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f8d70b3 xdr_page_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103944c1 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d95423 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x133c0265 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16597892 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16fe77e5 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17141eb3 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18b55211 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a014f4a xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b2a54aa xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b84dea3 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bdbe54b rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c42fc10 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d48baaf rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d871b1f rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1daa8631 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1deaaf94 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1054d891 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11f70866 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1284147c xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x130c1261 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17db8661 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a957435 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac7971a rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bae5141 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d50c3ce svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1db809a9 rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2025c298 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x213d25e0 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c5d4fc xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2343bdef xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x255d9a1f rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26e6eed7 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27e70dae svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2847c7c0 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1d880b xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21825fe5 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21bbc080 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x221e58c4 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x238a1af8 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f058cb xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f7cff1 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26739a84 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26928c0c rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b079c5 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2769ee3d csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b53408 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27d6c7f9 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x280e26b0 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2879becd rpc_localaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x298de2b2 xdr_truncate_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x298fce0e svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29c32685 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b11e270 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b71e78e xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b7e2e41 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c1225f9 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cff456b gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d14d329 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d9c56dd rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f3a5673 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x302724aa rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3091e9f2 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bf1c9dc rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c42df0b rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c579626 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dfa3042 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e457268 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30fd25d7 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31155ff2 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31636661 xprt_register_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34f4f874 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x377b8794 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387a7bfb xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31ef2a82 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32ed4ba7 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3304b2b6 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x337deb42 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34b7bb5f rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c73b0c svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34f331b7 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35dadac5 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3625cdfa xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x372452fc svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378421ef xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3854dd2c svc_rpcbind_set_version EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b1604e6 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dab77b2 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dd8204d cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e639085 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ed3ec51 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f1cd516 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39befaef sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a0500c7 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a1aeffa rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a3a91c3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab6efca svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5781ae xdr_inline_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40bd21fd svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4299599d rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42a096af xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x431fecbd rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x433c4491 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43868f4d rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4498ede0 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44b6d120 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45c20c4e xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464d11a3 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47b7425e rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x481321cd cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48372ab8 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a74d41e xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aefd5f9 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fa2ea45 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41671315 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43cb18d1 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x461d37c1 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4790f2e8 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e44ac0 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48ce015d rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49c221e1 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac4ef72 bc_svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c5046ed write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cc431e2 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4da54668 rpc_find_or_alloc_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dee330c rpc_alloc_iostats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f06dd67 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e3041f rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52c84cfe svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb766bd xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ff31950 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50023170 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x521b7c56 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52b9b876 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52fbad5e rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x533e1b83 xdr_stream_move_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53cb5449 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53ee87e1 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x566dab0f rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573b4d45 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577d3f45 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57c93587 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ff28c9 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54760f89 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55de6a26 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56322e06 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573c3b8f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x579ad42d rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d53ae0 rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e1ede3e sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eba933f cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f26016a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c3291b8 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d235cde rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e6d0af1 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f472ba3 svc_rpcb_cleanup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60eb4073 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61cb965b svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61e9ed6a xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x624bca71 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6268b6a5 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631bb6e2 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6442ff16 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67b97d8d rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69aedfcc xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a068cb7 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bedc32d xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c65d8b2 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb200f6 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d55fad7 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d24603 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6110bcac xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x637108fa svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64535048 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65260a47 xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65ed5ce3 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6716125d xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6746ed51 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67800b67 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6829c2b7 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6844c35e xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68b9fbe1 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a01e8d9 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a923aa3 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ae876e3 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dccf6dd xprt_force_disconnect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9516ec rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee24ea4 svc_xprt_copy_addrs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f356271 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x701a951a svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x714e0d46 rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71f10feb xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff795fa xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70139216 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71376d17 xdr_enter_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b616ab xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e42582 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f2ee35 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7240d614 rpc_switch_client_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f98eec rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7344fa5e xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x735e14ab rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73926433 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73a60b91 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77fe9d9f xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x785b65ed svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78d9aa81 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x793c9d18 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ce7456f rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d8f5b85 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x730f3ee4 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74f0f317 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x753a4f05 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x769f891f rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7840d26c rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7882993d svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7973f0c1 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a19577d rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ade8441 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b82ff55 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bfcd6f9 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cce6fec rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7ae6c9 rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f119d3f xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x811271c7 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x814a3680 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81efcf93 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82403dfb xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d914c6 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x847767d9 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1701d1 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7efc7bea rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81046dd2 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x818b29c8 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x827b2008 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84186319 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84a695bb svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x855f1a45 rpc_clnt_setup_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cc37ad rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86e3db7a xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x872bb341 xprt_write_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x878e0bd3 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a7d0568 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b3e7eff svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b725256 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e148fca svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90160d56 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9032e8b6 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9068ae54 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x907768e7 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x924c1ac6 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92dfc76e svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93cab7fb svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93faf2bd auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x949ac48f rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x978490bc svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e931a5b rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f341175 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa21de499 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa21f2987 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3294c3e svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3794665 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5803472 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5a1adb7 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76223b3 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac569b5e xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac9ac8f6 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad3cf3a9 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae7508e4 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeeb8900 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x869f55eb xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8768d926 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8999b61a rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c283890 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f715a5a rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f753837 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91903b2c rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9447ad2b rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x958db607 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9769d8c9 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97ee13ed xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x999c4d9c xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a7e5380 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cda8cf5 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff05f63 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff9defd rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a2343e xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43a6cf3 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5da4dbe svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6719538 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6dcd567 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa73f306b xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7aead2f cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8cc3c76 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaac2f84c sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac5c3d21 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd23c9f svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae1814a1 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae464af0 gssd_running EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff6a8c5 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb110d8f6 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb118efb8 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb17db0f1 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3096c8c rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb321fead rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb472e9c1 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafcef183 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1af7292 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ffd5ae unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb42cb566 read_bytes_from_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb521ed7b svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6390b64 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7068281 svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb795d25a rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7bf1b17 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7e5c363 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7f6b211 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb12c04e xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb59631f rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd2e090a svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe622641 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbee1e28d rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbb63c3a xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc5aa908 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8afe28 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd63f69f rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc02ebe11 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc088b863 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc046bf9e xdr_init_encode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc138eb0e rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2367ff4 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37d1e2f rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8425e82 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc17ae269 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc640d7fe rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc76a1fdf xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc781fe24 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc88877c4 xprt_wake_pending_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9213534 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9889ca6 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbacc3d2 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdc111ff rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca17fa92 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb4b4b5c sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc1211be _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc31ff87 xprt_complete_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf10b14f svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a0f87a xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd26fe239 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d6c711 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd427d00d xdr_stream_decode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd44d782f rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4aa6d58 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd531db84 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd69b3f32 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd79eeec7 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f5bffc svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88b705d xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc68a446 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdce26e2f svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf1efd32 xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfd086d0 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0cb1a61 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1ad9cd8 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd316a901 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3d325d7 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd54239bc rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6941aac xdr_stream_decode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd87ff477 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd954e5fe cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda8a113f rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc555572 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdce94f20 svc_rqst_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfb1c251 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b1fb1e rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0fcc689 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe191a28e xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1bb4dbf xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe28b47b9 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe312efa9 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f2ecd3 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40cad62 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddbfb3c9 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde58b94f auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeb2bace rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf513a15 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdffd71d4 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0bbffa9 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe229aa11 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2d2b319 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe335738a sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe44c7d8e xdr_stream_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe665cc4d xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7aa8cf7 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5bb4a27 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe755b231 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8b25029 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8eaee95 rpc_clnt_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e8444b rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb7a78e3 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb89bbec rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec6cb6a1 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed20d1aa rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec1a17e1 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec994afa auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed06047f cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed41d367 xdr_init_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedeea5bd xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee111433 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee017ff6 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2d8365 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee841b1e rpcauth_lookupcred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeebc3f81 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef462237 xdr_stream_encode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefdd03f1 rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0250885 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf13d7eba rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf203a681 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf62453ce xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6e4b69e xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf760c01d svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef95157b rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf021b063 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf06f3c4e xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0751bd4 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf091d148 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1fa7c1c xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2965c44 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf342a7cf auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf40a2106 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf44ca186 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5bd24d3 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf602dc6a rpc_run_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fca26f rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a60b1b svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa29fb3 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfab030e1 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc0e1f84 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc305f66 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc40062c rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcad3a1c svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff4d2554 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/tls/tls 0x71557a56 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xab841d4b tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xb0006bc3 tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xe8c9b134 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x024ca19e virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf81f5667 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb52a1e3 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbae10dd rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcaf56d7 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe3e10d6 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea57ca1 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff3aa730 svc_recv +EXPORT_SYMBOL_GPL net/tls/tls 0x0da7b98e tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x1f480aa5 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x27b36125 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x4458a8a8 tls_validate_xmit_skb EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x04fadca5 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0beeefda virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d257148 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0dec53ec virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x18f53763 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a4b0459 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25e49a61 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37c6fe95 virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39c09f2c virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a66d16c virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b7a7793 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x418812d5 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x447b0ed4 virtio_transport_purge_skbs -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c8ad442 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a4a61f8 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6313da23 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e76f954 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x71ba5c9b virtio_transport_read_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7965d6eb virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7cffe240 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8e0eeb74 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ea0cb39 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa76e7508 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa84081fd virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xad864bf0 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaf5ee4d0 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb89722a4 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x134325f0 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a561285 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27c46720 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x285fd10e virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37ea678a virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3c3f987b virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3cf4cb9e virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x454cc680 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x455150c4 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x551f6805 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x558287bc virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x57a3cef2 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e44c85f virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62f9fb61 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x645aaa8d virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64cf1cec virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7208e44c virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7cb8fb3d virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7e8ef93e virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x997771f3 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0c22ff0 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa1d2ebc4 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa51bd3c9 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaaa12e71 virtio_transport_notify_recv_pre_block EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc47dc62c virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcfca097e virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdf3cf09f virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe1df2519 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9359f83 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf84dbc31 virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8740c6a virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0091f24f vsock_connectible_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00c8d6dd vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbef29902 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcad3234d virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9152aa0 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb71fe62 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdb7cfb73 virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdce66a80 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde3fdae9 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde4897ee virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2fba770 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe43cd60f virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf9b877d9 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x024f7238 vsock_connectible_recvmsg EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x103060b1 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x121fcdac vsock_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x187f4906 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x219d3e07 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1347b8c5 vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x21b2d61d vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22a22827 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x258c5fce vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x39a17772 vsock_data_ready +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b0bbbfe vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2e3846ee vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x309cfc33 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3238e12d vsock_stream_has_space EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41897bf0 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x428f38a9 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49b5f66d vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4a8474f1 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5582a61f vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6f61cb74 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c66fb3f vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5224a0e1 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x54022e8e vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5611a72e vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x71854285 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c92d64e vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x807cb3bd vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8589a827 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d22050c vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x94fc1292 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99b18fda vsock_dgram_recvmsg EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa735c33 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c211d5e vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbbc16ec2 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb095b9d6 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc34899d vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbc9898ec vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd00a591 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd88874b vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc23fd62d vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2b72cfc vsock_dgram_recvmsg -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc70fafdc vsock_find_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc76b01b4 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc12792e5 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2040923 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeab45fae vsock_enqueue_accept EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf9147307 vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed99a53d vsock_add_pending EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -10082,4271 +10083,4273 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5ac59c28 ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x65802424 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x79f89c13 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x91dccbe2 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x02eb700b ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3e644622 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9ffb71ea ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa2dc5797 ipcomp_init_state EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy 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 0x0009dd62 regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x00286ff5 trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x002ef8bd __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x0030d669 pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0x00377825 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x0044a45a iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x0013af25 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x00196174 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x0021df27 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x004802fc crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x00587479 driver_set_override -EXPORT_SYMBOL_GPL vmlinux 0x006099b7 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x008b0bd5 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x00ab72bd tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x00b78dc3 gpiod_get_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x00bd80bc backing_file_open -EXPORT_SYMBOL_GPL vmlinux 0x012f846b blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x0130170a unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x01339606 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x005b46d7 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x009acc39 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x00af1196 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x00d99345 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x00eb131d cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x00f2503a devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x013b4bd7 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x014b61e6 cio_start -EXPORT_SYMBOL_GPL vmlinux 0x0158516d folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0x0167b2f8 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x01736c5a iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x01c74810 skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x01d26adf rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x01e694be irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x0218630b blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x022b464f vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x022d57f2 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x014f8d35 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x0164a3ec lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x016fbf87 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x017678c5 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x017cc22b register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x01942946 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x0198539a __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x01caa632 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x020f9c92 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x021851b9 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x021ac05e regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x021bea04 dm_suspended EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x02481b10 dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x029d88b8 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x02453cf8 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x024a6bbe dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x024b8d27 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x024bbf23 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0279d2c1 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x02984f76 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x029ad41f fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x02ba7aed mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0x02e9f64b blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x03096df7 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x0311569b switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x031a91a2 bio_blkcg_css -EXPORT_SYMBOL_GPL vmlinux 0x03211a76 disk_alloc_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x033242d0 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x02e6a504 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x02e8179b serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x02f07d26 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x0310302a devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x03142f1a is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0314cd3e anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x033a2271 bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features -EXPORT_SYMBOL_GPL vmlinux 0x035b62ff gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x035992b9 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x035a8684 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x035e1f26 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x03725fb9 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x037a1f0c tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x0391d45e set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x03924ae0 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03ad118b user_describe -EXPORT_SYMBOL_GPL vmlinux 0x03b2a4bb scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x03b314af fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03ce5dfd fuse_conn_init EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03e5df88 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04311a05 crypto_clone_ahash -EXPORT_SYMBOL_GPL vmlinux 0x0432a9b5 __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x04365758 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0x04434033 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x044888df dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x04168ebd blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x041cee40 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x042721ff kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x044c2928 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x045ff882 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0462e9e5 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04662362 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x0482ad70 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x04960bf8 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x048754eb blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x0492d6ea metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x049c0a99 gmap_map_segment EXPORT_SYMBOL_GPL vmlinux 0x04a6fee6 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x04b090f0 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x04bd407d account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x04bda2fb fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04ca2268 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x04d97866 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x04e124b7 fscrypt_parse_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x05110a36 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x04ee71f4 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x050aa7c8 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x05173e4e kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x0518371d __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x05313883 __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x0545ccc7 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0547de1f bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05559613 dma_resv_set_deadline -EXPORT_SYMBOL_GPL vmlinux 0x055df23e devl_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05626608 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x057b04c9 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x05573e92 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x055dd0cb fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x055ef9c4 file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x05766191 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x05859f16 md_submit_discard_bio EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x05ae99ed virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x0593a97b gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x0594ff9b device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x05969d94 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x0599395c devl_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x059dd037 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x05ba1979 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x060c988a trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x05bf856a of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x05c116bd crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x05d2ad4c __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x05eaf839 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x0601ceb9 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x06087552 crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0x06153746 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting -EXPORT_SYMBOL_GPL vmlinux 0x062b20a5 pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x062d117f __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x0644c609 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x0646b77d ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x0633d5b5 generic_device_group EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x064eaba7 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0x065a7a23 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x0663b173 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x0677d9be fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x06930a3f pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x067e54ba device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x068aa663 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06e3d4b4 component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x06e415bc __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x06e5fa08 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x06edad3d devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x06e8a4ba locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x06eba5a3 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x07081d18 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x07150c3a kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x0729e762 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x072500c3 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x0726451e fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x0729a524 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x0732863a blk_bio_list_merge EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0755ff46 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0x0757eede stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x075f6682 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x0768aed1 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0x076fe1ab get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x077bfe3c sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x077d610b sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x078cbc1b __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x078a9005 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x0791df05 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x079ac68f blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x079ef7f3 blk_mq_wait_quiesce_done EXPORT_SYMBOL_GPL vmlinux 0x079fe7a0 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x07ac4259 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x07a7fb97 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c4d544 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x07cb7afb sfp_parse_port -EXPORT_SYMBOL_GPL vmlinux 0x080c3ebe gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x07eb3016 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0804f4b0 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081caa87 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x08177023 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x082268d1 __udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x084cb3ad irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x084e5b1b relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x0850a79f crypto_clone_tfm -EXPORT_SYMBOL_GPL vmlinux 0x086ffe1b dw_pcie_ep_raise_legacy_irq -EXPORT_SYMBOL_GPL vmlinux 0x0874be10 xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0x0895951b ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x089320d8 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x08a25c5e tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x08a929cb css_sch_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x08b2e9aa hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x08bc836d trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x08c2fd1b fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08f9e555 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x090efd50 ptep_notify +EXPORT_SYMBOL_GPL vmlinux 0x08cd1f10 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x08d6f86f tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x09108ad2 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x0917b89e irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x092b5b18 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x09372d8f debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x09624e52 ccw_device_get_chp_desc -EXPORT_SYMBOL_GPL vmlinux 0x0965ee5c __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x096dbc75 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x0945719b virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x095b6865 irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x097efc75 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x098359f0 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09b79977 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x09bc02b3 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x09bfd007 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x09cf90c6 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x09f9f239 debugfs_create_str -EXPORT_SYMBOL_GPL vmlinux 0x0a039b8c crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x0a051a7f blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x0a0e99ca key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x0a1f3dc7 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x0a2956dc devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x0a31eda0 device_del -EXPORT_SYMBOL_GPL vmlinux 0x0a4a3d0f strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x09c34acf genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x09daf771 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x09e33238 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x09e8291b net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x09f432f3 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x0a0e25da proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x0a12b0d8 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x0a549b3b ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x0a5c3faa crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0a838c39 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x0a893a3f iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x0a8b9fd7 fat_build_inode EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x0a9b3eda class_dev_iter_init EXPORT_SYMBOL_GPL vmlinux 0x0a9df53d for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x0aa92510 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x0abf7e03 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x0ac85571 __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0x0adbfa0f watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x0aecf859 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x0af780c1 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x0afadf5b dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x0ab197d0 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x0ab53668 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x0acf90a4 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x0ad43718 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x0ad8241a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0ad8b014 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x0ae62e7c get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0af80055 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x0afacccc fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0e9846 bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0x0b11a171 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x0b14f7c5 s390_sha_final -EXPORT_SYMBOL_GPL vmlinux 0x0b221bb8 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x0b2d29c8 ipv6_recv_error EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b2fd5bf umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x0b3701e1 arch_make_page_accessible -EXPORT_SYMBOL_GPL vmlinux 0x0b3a5a88 relay_close -EXPORT_SYMBOL_GPL vmlinux 0x0b586f6f ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x0b69a7c9 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x0b46bbfc debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b8ca605 __dev_fwnode_const -EXPORT_SYMBOL_GPL vmlinux 0x0b95bbc7 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x0b8dfbd4 net_failover_destroy EXPORT_SYMBOL_GPL vmlinux 0x0ba2f9ac dma_fence_unwrap_next -EXPORT_SYMBOL_GPL vmlinux 0x0ba4abd3 tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x0bb85bf1 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x0bb45c0b regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bc2b464 iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max EXPORT_SYMBOL_GPL vmlinux 0x0be5d5c0 ip_tunnel_netlink_parms EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0c1cdbb9 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x0c22394b ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x0c26bdd5 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x0c2aef4a devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c3c967a mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x0c408e19 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0c57d066 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x0c6e8330 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x0c78e224 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x0c7a35c6 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c9ec5a9 __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x0cba55bb debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x0c8c9df5 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0c96e63e event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0c9fef89 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x0cbb1aa2 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0cedc915 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x0d126631 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0d171296 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0cdb5ab6 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x0d01d7b3 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x0d179e1a cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d42839a pci_epf_bind EXPORT_SYMBOL_GPL vmlinux 0x0d435bd5 __tracepoint_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open -EXPORT_SYMBOL_GPL vmlinux 0x0d5edaf6 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x0d613915 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0d4cc77e irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x0d56a8c5 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d74639c platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x0d7e342e skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x0dadacdb rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x0dae1c9d gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x0db20dd1 virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0x0dcf0ed2 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0x0dd7c66a devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0x0d91630b blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x0dce6151 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0e0839c3 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x0df67dc9 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key -EXPORT_SYMBOL_GPL vmlinux 0x0e28f0f3 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x0e10fba5 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0e53da25 zpci_kvm_hook EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e5f45cf ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x0e644cbd dev_set_name EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e809580 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0x0e830600 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x0e993109 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x0eb72044 rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0x0ec0d11c register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x0ec7abc6 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x0e88be90 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x0ea51711 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x0eb27085 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x0ebd5c75 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0ec6732d irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0edec1ac kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x0ee26ad3 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x0ee2e528 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0f06347e blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page EXPORT_SYMBOL_GPL vmlinux 0x0f3b8882 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0x0f47ca1c hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x0f4da3c5 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x0f50d563 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x0f7432fa xas_split_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0f7a9c44 device_create -EXPORT_SYMBOL_GPL vmlinux 0x0f80f01c tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x0fb22d9f blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x0fb25c42 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0f77461f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f89788f gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x0f8cc151 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x0fc84bcf pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x0fc9cd5d fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fda1790 genphy_c45_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x0fe3259b mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x0fe32a96 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x0fea472a unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x0ff42984 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x0ff9e675 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x1000904a __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0fe58889 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0fee1295 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x10095a52 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10143367 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x101807cc proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0x10185973 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x1023490a virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x10438cf6 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x104cff2c crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x10571abd xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x101f49b1 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x107cf008 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x108aed9a pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0x108e77f5 parse_OID EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10bfc2a4 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x11088421 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x111667f7 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x10ddfe92 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x10e7848d udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x10ebb323 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x110e1199 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x111145be dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0x111f2c25 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x11452943 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1149dca3 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x1156f426 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x1170ecb7 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x117b3c14 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x11ad7339 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x113507f2 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x11427812 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x114a54ea raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x115883d4 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x11637a95 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x11651d36 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x11667894 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x1179021b io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x1179ef80 blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x118c0b77 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x119e5ee2 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x11a85611 s390_pci_dma_ops EXPORT_SYMBOL_GPL vmlinux 0x11b68a56 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x11cfc9d9 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x11da4273 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x11ce5b01 backing_file_real_path +EXPORT_SYMBOL_GPL vmlinux 0x11cf3671 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x11dad9e2 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x11ed8cf1 xdp_features_clear_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0x11fead03 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x1212be4f iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x11f1c21e gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0x11f24951 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x12194c8f __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122d28fc pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x12342fe0 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x121f1c4d fsverity_verify_blocks EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us -EXPORT_SYMBOL_GPL vmlinux 0x12384c6e balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x12574f8e gmap_shadow_page -EXPORT_SYMBOL_GPL vmlinux 0x1261f6e4 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x126fe7fd inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x1271cc7a ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x127d8bd9 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x12965e8e crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x129ffba8 devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0x12a18848 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x12c04a3e fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0x12ca77cc bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x123e1c6f bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x124e19f5 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x12540c49 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x125d1d61 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x129fc051 ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0x12ae65a8 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x12c6c6e8 pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x12cdbd51 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x12de77ee skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x12e0c8e7 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x12d5628f perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12e34fe3 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister EXPORT_SYMBOL_GPL vmlinux 0x12f1f15c ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x12f2726f gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x12fe7c8b nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x1308b90f destroy_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x13165591 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x13175d44 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x13196aa3 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x13285153 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x13246779 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1354cdcd skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x1359ac81 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x135e2b1e gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x133f0a09 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x1374fa02 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x136693ec ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13c5e4c6 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x13e1b7ec gmap_sync_dirty_log_pmd +EXPORT_SYMBOL_GPL vmlinux 0x139e3865 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x13bb7927 balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x13e7fd83 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x13ea1333 pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x140bfa56 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x14072c46 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x141a4efa pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1422df95 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x142fa437 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x14379bad bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x145e2d8b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1460c135 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14864237 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x148a3278 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x14ab4068 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x14ad9f4a skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x14c3b546 shmem_read_folio_gfp -EXPORT_SYMBOL_GPL vmlinux 0x14d2e16e dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x14eb6ee2 irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x1518dfe3 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x147b2959 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x147f40bf fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x147feba2 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x14a86981 devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x14ce500e fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x15087c5a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x1513883b nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x1530f8a3 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x154d5b6d gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x1543c474 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x156b0e29 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x155771fb devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x1573376d klp_get_state EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey -EXPORT_SYMBOL_GPL vmlinux 0x1587afd1 kvm_get_dirty_log -EXPORT_SYMBOL_GPL vmlinux 0x1589dd99 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x159f7961 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x15a0f031 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x157ea59e gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x15872f08 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x15936049 vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0x15a8fd37 mas_find_range +EXPORT_SYMBOL_GPL vmlinux 0x15ad23bb pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15b4e613 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave -EXPORT_SYMBOL_GPL vmlinux 0x15cc0efe akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x15d662bd inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0x15f02233 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x15f1ed85 dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x1600c131 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x160af26b sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x16278ba6 blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x1627afac crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x1631db6e device_add +EXPORT_SYMBOL_GPL vmlinux 0x15c6db81 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x15d05002 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x15d6fe58 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x15dfd0ff sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x15e213bb thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x1600aad5 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x16067e5e crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x160f4eba __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x16423082 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x1650ff0d verify_signature EXPORT_SYMBOL_GPL vmlinux 0x16623182 mt_next -EXPORT_SYMBOL_GPL vmlinux 0x166bbbc0 cio_update_schib -EXPORT_SYMBOL_GPL vmlinux 0x166cc379 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x1678f30c crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x168bbc0d vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x16ae0550 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x169c7aa9 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x16a7e119 elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store EXPORT_SYMBOL_GPL vmlinux 0x16bb647f poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x16c95f6c debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x16cb1f29 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16c88e54 vfs_get_acl EXPORT_SYMBOL_GPL vmlinux 0x16d3764e register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dec018 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16fb2881 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x1700ea70 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x1702deb9 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x16e1a3d6 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x16e700f3 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x16e800f2 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x16f3c968 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x171451de dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x172a4158 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x173c2c52 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x173eff23 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x175b80c5 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0x175c5875 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x174d0c6a blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x176cc620 pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x1777f129 irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0x177b1042 __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x177b7b34 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x1783bac5 blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x17878e6c priv_to_devlink -EXPORT_SYMBOL_GPL vmlinux 0x179c1900 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x17ab470d fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x17adf14d raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x17b09b50 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x17c8dd93 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x17de9e6b regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x17ea2917 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x17f67366 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x17b12c48 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x17d12ca3 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x17ec75c1 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x182405da ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x1828bebd gmap_shadow_valid +EXPORT_SYMBOL_GPL vmlinux 0x1808f33e fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x1814d3c9 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x1852cdba regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x183c50b2 crypto_sig_set_pubkey +EXPORT_SYMBOL_GPL vmlinux 0x184243b1 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x18575cea sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0x1858890e mas_next_range EXPORT_SYMBOL_GPL vmlinux 0x1864813c ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x188c4fb2 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x188e8ab4 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x189d5697 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x18b83c47 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x18667640 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x187b2f7e device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x187ddc13 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x18d13afa __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e9225e sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x18e98661 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x18f477f3 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x18f67236 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x190555d0 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x19140221 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x191fe11a __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x19235208 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x1928ea2f __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x19322a4c gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x195068bc kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x1967bb2f splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x196b6d97 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1974f410 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0x197bb7d9 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x197254aa rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x19808dda unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x19a43ebe device_iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0x19c0e2bc access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x198d63a6 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x19b5e3b0 class_create +EXPORT_SYMBOL_GPL vmlinux 0x19b9d81e s390_unlist_old_asce EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19ead4fa d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x19e60f2c fib_nexthop_info EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19f55a4c zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x19f6a8a3 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x1a1b5725 zpci_kvm_hook -EXPORT_SYMBOL_GPL vmlinux 0x1a1bc357 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1a6a2dd8 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x1a1d204f folio_test_hugetlb +EXPORT_SYMBOL_GPL vmlinux 0x1a309c7a platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x1a3432e0 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x1a4a4c19 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x1a4d764c pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a7614ac ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1a8059ed gmap_register_pte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1a9c309e crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x1a9d700a ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x1a9f715e devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x1aa07b05 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x1aa9dff4 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0x1aa155e7 kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0x1aac6df6 blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x1ab2f288 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad5ae7b pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b055c7b invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x1b0577a9 proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x1b07ef8d noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x1b08e283 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x1b0985d2 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0x1b0f70f3 crc64_be EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x1b467be4 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x1b4cd6bd pci_debug_msg_id -EXPORT_SYMBOL_GPL vmlinux 0x1b6797aa kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x1b6c214f pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x1b304627 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x1b51ae51 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x1b545147 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response EXPORT_SYMBOL_GPL vmlinux 0x1b739ef5 __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1b744728 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x1b7511d4 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x1b8c3fe6 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x1b8651a0 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x1b88f258 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x1b894d3c phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1bc5e765 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x1bcca193 s390_replace_asce -EXPORT_SYMBOL_GPL vmlinux 0x1bd7fd4c virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x1b9e6769 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x1bbfe02d pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0x1bda3f58 list_lru_walk_node EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0x1bfad06e mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x1c0988b8 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x1c14d313 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x1c1c1b99 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x1c039c1e genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x1c440d10 device_add EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5d3d26 ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0x1c6ad3fd fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1c7b65ba regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x1c84716e vfs_splice_read +EXPORT_SYMBOL_GPL vmlinux 0x1c853971 platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1ca333d7 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x1c9720f1 devl_register +EXPORT_SYMBOL_GPL vmlinux 0x1c9dc4e6 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1cb1567d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1cb6a8df iomap_invalidate_folio EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1ccdf24e devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x1cd41123 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0x1ce6eede __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1ceeed3a rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1d0fe619 regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x1d1c9ac7 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x1cc678dc __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x1cdfbf8c acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x1ce58f9d dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x1d15b35b pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3c6210 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x1d44f3f6 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x1d67b245 ccw_device_get_chpid -EXPORT_SYMBOL_GPL vmlinux 0x1d72e548 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x1d8448f4 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x1d9937c5 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x1d9fcc39 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x1db1ab05 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x1dbcf48b fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x1d24776f perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x1d43b551 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x1d65ebb8 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x1d6c3b8f sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x1d820c40 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x1daf9cea device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x1dca8012 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x1dec0430 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x1dce8744 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x1de734d5 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x1df33cc9 __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1e093f65 tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x1e18546e cio_disable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0x1e1da278 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x1dfefd37 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1e0c2fab platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e0f41a2 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x1e1a7a8f gen10g_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x1e20f13f freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1e326ff0 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x1e36661a pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x1e39975f genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x1e3e201b devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e70b731 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x1e719218 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x1e7b89ef vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1e5bd5d8 md_start +EXPORT_SYMBOL_GPL vmlinux 0x1e610c1c pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e925dfa handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x1ea2f425 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x1eab3937 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x1eaf40d7 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x1e7f0363 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x1e92432d class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0x1ea36b42 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x1ea6188b validate_xmit_skb_list EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebe9c6f fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x1ebd5235 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec00d45 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x1ec6de61 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x1ecac628 class_create EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed586fa devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr -EXPORT_SYMBOL_GPL vmlinux 0x1ee619e9 put_device EXPORT_SYMBOL_GPL vmlinux 0x1eec1238 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x1ef004a9 bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1ef24141 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1ef50c44 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x1ef2fd66 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x1ef356cb ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x1ef8ef45 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x1f1deb01 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x1f2d801a alarm_forward_now EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit EXPORT_SYMBOL_GPL vmlinux 0x1f436eaf hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x1f4bfded debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x1f497141 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x1f4b395d blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f6e5aaf devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x1f58fd3e extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0x1f735aa7 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x1f7b5160 tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f8b750b serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0x1f96b6bb device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x1f890140 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x1f89b384 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f9a73d1 dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fe0a442 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x1fe20a82 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1fa6ce26 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x1fbf9de9 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x1fc09861 pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fedb1e5 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x1ff2591c pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x2001a7d0 gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x1ff1a577 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2014a8cc gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x20284743 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x2030be07 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x2060ce07 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x20716f42 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x20163711 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x20295462 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x20302e25 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20613ecd ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x2061ee57 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x2097d7f2 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x2099d4a6 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x209c88fb devl_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x20a8b96a raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x20b97372 filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x20bfb13c report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x20c431f4 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x20aae083 balloon_mops EXPORT_SYMBOL_GPL vmlinux 0x20c7c731 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x20d89523 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x20d159cc screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x20e6176b freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x20e6f928 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x20f56ae0 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x21076a07 crypto_clone_shash -EXPORT_SYMBOL_GPL vmlinux 0x2110df15 tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x21135ed1 gmap_create -EXPORT_SYMBOL_GPL vmlinux 0x211786b1 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x21199af8 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x210ab443 sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0x211e3caf sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x212ccf11 devl_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x213955d2 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x2154903e param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x21248d7b regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x214dd9d2 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x21501955 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x21502606 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x2154805e platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x21751bc0 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x217cdba7 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x21b14a54 dw_pcie_ep_reset_bar -EXPORT_SYMBOL_GPL vmlinux 0x21c2b98c devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x21ccbfcb task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x2174e6cf iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x21b1634f priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x21baba3e crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x21c8fdf3 folio_mkclean EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d91e3c irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x21e089ac tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x21e47802 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x21dbc50a zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0x21e5c880 xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0x21e783b7 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x21edccde sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x21ef3e08 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x2228d71e cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x21ecaa5c ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x21f2dde2 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x221726af create_signature +EXPORT_SYMBOL_GPL vmlinux 0x22292b23 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x223858a2 kthread_mod_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x223ac608 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x22435ff1 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0x22439ba2 sched_numa_hop_mask EXPORT_SYMBOL_GPL vmlinux 0x225018a2 mt_prev -EXPORT_SYMBOL_GPL vmlinux 0x22517883 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x2261564d dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x226bb498 kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x228dc10c dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x228e6700 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x2291c5d9 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0x22a2ef6a __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x22a50f5e zpci_mod_fc -EXPORT_SYMBOL_GPL vmlinux 0x22a5f471 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x22aa3f18 do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x22b8146b __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x22cbce51 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x22c19454 blkg_conf_exit +EXPORT_SYMBOL_GPL vmlinux 0x22c196d1 __traceiter_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x22caf70d crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x22ce5eb5 crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e1b2b7 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x22e2dd18 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x22ed27d5 vring_create_virtqueue_dma +EXPORT_SYMBOL_GPL vmlinux 0x22f2e416 cio_clear +EXPORT_SYMBOL_GPL vmlinux 0x22f4dabb fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x230bca5e key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x23118ace sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x2312f02f misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x233e0c30 regmap_read EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x23453fb8 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x234663ec call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x2343a5cd is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x2372661c uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2372839b device_move +EXPORT_SYMBOL_GPL vmlinux 0x23696816 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2369c639 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x237397c2 kernel_read_file_from_path EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x238c8b6f ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x239586a8 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x23a99dfe bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x23884836 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x238f931a debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x23915725 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x23a07427 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x23b09618 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x23c0eed7 crypto_grab_aead EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x23cc4416 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x23f6d3db cio_cancel_halt_clear -EXPORT_SYMBOL_GPL vmlinux 0x23f7c231 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x24108978 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x23d31fed udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x23e53376 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x23e7dd29 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x241f9056 irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24234973 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0x246f182d firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0x247d0531 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x2471a84f pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x24775652 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x24791b09 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x247ff5b1 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x2482fca5 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x24852826 __SCK__tp_func_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x24874328 aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0x249ce8b1 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x249f9599 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x24d08475 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x2490d9cc failover_register +EXPORT_SYMBOL_GPL vmlinux 0x24bf7669 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e2e722 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x24efa7c6 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x24fd5e2c ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x24fdcbfd perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x2512505d ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x25177877 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x24e6a2e8 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x250a0552 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x2522ffe2 sysfs_remove_link EXPORT_SYMBOL_GPL vmlinux 0x25284add list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x25310997 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x25522a49 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x255affff gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x256ff24c rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x25611ea2 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x2592b12e dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25943893 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x25a491ca kick_process -EXPORT_SYMBOL_GPL vmlinux 0x25ba57e2 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x259446ee raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x25a92f77 devl_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25ad3876 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25df4859 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x25ee3238 __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x262a8985 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x264cb428 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x25d9897e lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x25e6f5b8 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x262b902a pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x264177cf blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed EXPORT_SYMBOL_GPL vmlinux 0x2653ca04 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0x26584b09 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265ca41a gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock EXPORT_SYMBOL_GPL vmlinux 0x267941b3 __tracepoint_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x267ed719 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x2682e439 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x267fdd4d relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x2682c190 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26bcc3ac kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x26c0fd22 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x26c44a3b __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26c9dd47 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x26cd0efc gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x26de3840 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x26e8b95d bpf_offload_dev_netdev_unregister EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26ffc470 fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2704a1c3 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x270e5508 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2710e92e perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x2724343e pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x2726a8d7 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x2745ca8a sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x27475d87 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x2759acb6 perf_trace_run_bpf_submit -EXPORT_SYMBOL_GPL vmlinux 0x275a1fdf devl_region_create -EXPORT_SYMBOL_GPL vmlinux 0x277656de tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2796c4dc dma_vunmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x27a2400c xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x27cb811f debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x27d256e9 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x27f3d1f8 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x278158eb pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x2786a3dc sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x27be32e5 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x27e8287d sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x27ea3fba security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x27f01ddd switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x280679ff tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28196620 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x27ff2ce6 vtime_account_kernel +EXPORT_SYMBOL_GPL vmlinux 0x2819ad1f crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0x282b3f94 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x2838ef10 fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x2847feca xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x282ddacd tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x282eb1e2 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2839cd92 PageHuge EXPORT_SYMBOL_GPL vmlinux 0x2849c663 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x285fa867 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x284c0f5d scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x289fb748 md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x28ab2b21 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x28c069f4 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x28d0285c rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x28d657a5 devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info -EXPORT_SYMBOL_GPL vmlinux 0x28dc2312 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x28e6bc2c __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x29179ec6 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x2909c9cf crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x291306a6 gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine EXPORT_SYMBOL_GPL vmlinux 0x2921074c hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x29233a54 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x292a91a2 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x293062a2 xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x29408d47 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0x294746d6 device_register -EXPORT_SYMBOL_GPL vmlinux 0x29652a58 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x29bcf95d rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x29c62d8d sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x29cb7877 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x292eb7a9 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x294f2428 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x29578143 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x295fcae3 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x296efcf3 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x297a32b4 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x29906e93 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x2993b7bb bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x299a8943 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x29aef87f irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x29b19cdb __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x29b5564d crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0x29d19f9e kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x29de2e4a disable_cmf EXPORT_SYMBOL_GPL vmlinux 0x29deb0ac add_wait_queue_priority EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a0c6bf0 bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x2a211cb5 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x2a28cdea __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x2a2a6777 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x2a30b43d tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x2a381b7a iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2a391529 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x2a4b809c srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x2a619c3b pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x2a56b0c4 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a6b3525 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a7d63ce device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2a7fc26f rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x2a86bef2 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2a8d014b blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x2a921129 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2a9c3228 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0x2aa0e23e pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x2abccb50 crc64_rocksoft_generic EXPORT_SYMBOL_GPL vmlinux 0x2ac8017e start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x2ad4d543 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x2af67184 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x2b026977 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x2b04948e perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x2b0ab15c regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x2afd7fe1 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x2b159d39 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x2b2f0cc4 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b4905d5 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x2b64b9e1 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x2b692560 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x2b69471c platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x2b7c8bda genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x2b880cab xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x2b9802ac genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x2b9a699a crypto_akcipher_sync_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x2ba7dee9 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2bcd87de debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x2bd12e57 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2b4a1967 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x2b6cfedd component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x2b843c9c gmap_register_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2b926a40 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0x2bd2915e kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2bd4f216 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x2bd3fd16 crypto_default_rng EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x2c11efc6 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0x2c1f0adc dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x2c20a9ca sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2c09746f __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c2baae5 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x2c2eaa50 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4037b8 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x2c555439 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x2c386ac6 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2c5a77a2 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c5d9a46 crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put EXPORT_SYMBOL_GPL vmlinux 0x2c7256dc synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x2c7a6603 udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x2c74f4a3 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x2c79b3af dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x2c7c6992 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x2c7d13e2 __ioread32_copy EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c80bd95 folio_wait_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c965a77 pci_epc_linkdown -EXPORT_SYMBOL_GPL vmlinux 0x2c9fea47 gmap_pmdp_idte_local -EXPORT_SYMBOL_GPL vmlinux 0x2ca61c00 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x2ccad62f folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x2c855eeb phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x2c86e279 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x2ca334df gmap_unregister_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2cc8abb4 device_attach EXPORT_SYMBOL_GPL vmlinux 0x2ccb56cb __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x2ccc1c00 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x2cdea168 pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2cf229ae fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2d134af6 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d27ba55 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x2d28c613 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x2d1bd95a skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d3f9de5 ccw_device_pnso EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d4437d4 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x2d462a2d devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x2d430074 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x2d45606b cio_halt EXPORT_SYMBOL_GPL vmlinux 0x2d510565 mas_preallocate -EXPORT_SYMBOL_GPL vmlinux 0x2d5c542a get_ccwdev_by_dev_id EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d9f3721 regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2dc8f8ac vp_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x2dd6c4be disable_cmf -EXPORT_SYMBOL_GPL vmlinux 0x2dffb0ea fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x2da4fabf pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x2db2c766 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dbc6f35 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x2dd8a5ec devl_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x2e1c6474 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2e1b42bd key_type_user EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x2e1e5927 xfrm_audit_state_replay EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e2f857b fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x2e316fa5 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x2e3459d3 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0x2e3ffc71 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x2e4ef073 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x2e51c413 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x2e624b0f fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x2e405903 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e45a96d perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x2e530d39 gmap_shadow_pgt_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2e6537e7 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x2e655529 file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6ad127 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x2e774ae7 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing EXPORT_SYMBOL_GPL vmlinux 0x2e7f0499 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0x2e8f8212 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x2ea082d7 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x2eb03e9f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x2e82d3db virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x2ea67610 get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x2eae505c devl_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2eca0895 gmap_shadow_pgt_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2ec54dfc bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x2eeb1064 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x2f05bc7c devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x2f12555b percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2f1401aa xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x2f1668bd pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x2ed6bdc5 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x2ef9d2d3 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f1f1a59 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x2f214db1 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x2f221750 cio_commit_config EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f351719 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x2f320326 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x2f3daf07 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x2f3e9370 gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x2f413ba2 acomp_request_free EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f59f902 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2f51540e pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2f539a59 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x2f60a4ea kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x2f64be23 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x2f6d1a69 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x2f79abba crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x2f7a789d pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x2f8621f2 component_add -EXPORT_SYMBOL_GPL vmlinux 0x2f91966d tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x2f920458 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x2f9a6fd3 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x2f9a7b47 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x2fb4cd7d bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x2fbf7f55 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fd11725 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x2fd758ea crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x2fc25e53 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x2fcabe05 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x2fe226a6 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x2ff7cbf4 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x30008ea1 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x3005e20d bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x2ff6850d metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x2fff9b41 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features -EXPORT_SYMBOL_GPL vmlinux 0x301831cd trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0x303415ca umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x30377131 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x303db71c __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x3020c059 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x3020eae3 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x303982f6 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x3045a198 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x30696079 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x306999e8 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x306e09e1 fsverity_get_digest -EXPORT_SYMBOL_GPL vmlinux 0x3077ce12 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x30780e27 devl_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x30791005 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x30797ad1 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x3081ebfa device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x309aec1a fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x309b0ce1 finish_rcuwait -EXPORT_SYMBOL_GPL vmlinux 0x309e99b5 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x309eba61 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x30ae9e9a vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x30af63e4 crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0x30d5f4fa skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x30e87a1a platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x306bbee2 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x307df60b pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3094c171 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x30c44864 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x30c81be2 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x30d5de83 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x30ea0b2e fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x310597fc mmput_async -EXPORT_SYMBOL_GPL vmlinux 0x31059d2c gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x310dec7d __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x313c9324 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x316a65a2 fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x3177b388 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x31839e78 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x3190b753 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x312f935d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x31318bd1 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x31387106 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x31490bde regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x314d6580 l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31ce58ce synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x31d3199b rhltable_init EXPORT_SYMBOL_GPL vmlinux 0x31dc42f5 __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x31ec9295 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x32164ae1 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x31e6f904 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x32099a45 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x321c0cbb genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x3234c4e3 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x32438985 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x32481ef0 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x326aeb6e crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x329de1de iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x322daac2 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x324482cb fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x3248bf6d ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0x3258b9a2 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x326439f1 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x3272fef8 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x327e1cee sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x32a35628 inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b53c45 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x32b92b5b kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32ed4b88 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x32f0ecf3 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x32cbe30a gmap_pmdp_csp +EXPORT_SYMBOL_GPL vmlinux 0x32eb688f fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x32f86652 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x32fb82d1 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x3315d121 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x33101f78 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x33136dcc kvm_vcpu_gfn_to_hva EXPORT_SYMBOL_GPL vmlinux 0x331adc21 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x33252d51 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x33291b1f vp_legacy_config_vector EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x333e63a8 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x3343d21f mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x334f3d82 blk_mq_end_request_batch EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x337bd921 iommu_device_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x338319bd nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x339ab7c2 gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x33b55a22 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x33b6be20 vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x33c13fb1 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x33ee57a6 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x335cadfd pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x33b9153d devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x33f061c0 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x33f0b1ae pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x33f90753 is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0x33fdd77b pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x34031448 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x341bc7ee l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x34242b52 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x341ef491 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x34229bef ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3423685d regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x3447c18d debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34564261 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x34876140 ccw_device_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x34884eb5 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x345cede9 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x345e0956 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x34627a56 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x3479e356 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler -EXPORT_SYMBOL_GPL vmlinux 0x34ac5bbd find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x34be505c scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x34d560ff gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x349a0670 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x34bfaa8a pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x34c663e1 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34e7617b bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x34ead672 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x350b0e9f dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x34e099d2 debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35123dc1 device_store_bool EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3533d574 crypto_akcipher_sync_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x353cbb20 balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x35543214 put_io_context -EXPORT_SYMBOL_GPL vmlinux 0x35573ed4 backing_file_real_path EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table -EXPORT_SYMBOL_GPL vmlinux 0x356c1d15 kvm_are_all_memslots_empty -EXPORT_SYMBOL_GPL vmlinux 0x3574bd30 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x357bc60e blk_mq_unquiesce_tagset EXPORT_SYMBOL_GPL vmlinux 0x3584114e alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x358e403b from_vfsgid -EXPORT_SYMBOL_GPL vmlinux 0x35ac7d56 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3597352b tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x35b104df mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x35bf7aaf udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x35ccc1fe handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x35ce8983 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x35b4a7e1 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x35c2509a fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x35f63013 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x36054374 dax_remove_host EXPORT_SYMBOL_GPL vmlinux 0x3607c5d7 sthyi_fill EXPORT_SYMBOL_GPL vmlinux 0x360c7de6 tracepoint_srcu EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36278d1e tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x3625daad switchdev_bridge_port_unoffload EXPORT_SYMBOL_GPL vmlinux 0x364354ba rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x366e8718 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x367bc8dd crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x365d3c4c tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x36693094 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x3694ac12 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x369caef1 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x36929f08 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x36981fb5 __fat_fs_error EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a12216 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x36b977b4 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0x36c80c36 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x36d56508 nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x36ec8ca5 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x370ba2f6 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x3739a7cb devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x3746288e seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x374da5c4 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x36f5bbd2 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x3705f557 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x37268612 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x372e9803 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x37424d0c sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x3761d215 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x376e4905 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x378a9729 fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x3793b945 blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0x37651427 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x376515c7 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x37774a93 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x379678a4 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x379fc9b1 gmap_shadow EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37d60921 __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x37d6c793 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x37f049bf device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x37c8d0b5 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x37e1f4db rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0x38048a59 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x380f6636 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x380f7418 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x3812ccf0 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x3816444b udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x381b1f2d crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x382d6dc6 sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383ce18f __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3845eb49 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x38493a8b idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3849929b kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x385bf2ea class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x3861444a dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x38661426 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x386d6eff crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x387dc3e6 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x38846835 alarm_init EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389cf8bf paste_selection EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38da41fc input_class +EXPORT_SYMBOL_GPL vmlinux 0x38cb07c5 gmap_get EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set -EXPORT_SYMBOL_GPL vmlinux 0x38e5b312 gmap_shadow_r3t +EXPORT_SYMBOL_GPL vmlinux 0x38e5825c dma_pci_p2pdma_supported EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x38f8c195 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x38f8c450 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x393ae6fe mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x3953d00c anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x394cc6db sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x39579087 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x3958ccb6 __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x395a1335 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x396c34f7 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x39786edf blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x397a138a device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x396012ad skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x399726da gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x399f0899 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x39b302bc rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x39b476e1 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x398df44b iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39bdf6f7 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39d292ee list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x39d5566c device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e8fbc5 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x39efe696 genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x3a12c341 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x3a19bebe handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a2684c6 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x3a2c3e8e devl_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3a3d2d30 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x3a4b50f8 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a5311f7 strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish -EXPORT_SYMBOL_GPL vmlinux 0x3a558170 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a849cce xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x3a8e13d3 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3a59d4dc fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x3a6f0a44 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x3a77d8fe iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x3a9b935e tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa1c2f9 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x3aa69ce4 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x3ab1d71b inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x3ab71b6a hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0x3ae03d40 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x3ae19dca devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x3ae51a0c mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x3b1194e3 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x3b23079d nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x3b43fd3b bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b57eb94 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x3b65ee85 dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x3b71b70c vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x3af58ad1 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x3b159fc2 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b1986d8 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x3b45bafa device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3b4a4a12 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3b4ae046 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0x3b8cfbd4 zpci_aipb -EXPORT_SYMBOL_GPL vmlinux 0x3b948c88 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free -EXPORT_SYMBOL_GPL vmlinux 0x3ba00942 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba9c87a crypto_sig_sign -EXPORT_SYMBOL_GPL vmlinux 0x3bc12465 failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bbcc246 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bc9ab6d kthread_use_mm EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3c1962dd irq_create_of_mapping EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x3c27aa47 scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c55c1c3 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3c6013c4 fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c7d9bd8 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x3c80625a fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c82f25b skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x3ca21c29 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x3ca66e01 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3c9977ca dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x3c9eafd9 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x3cadeddf fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x3cbe889b iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0x3cc60807 evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0x3ccbe6a5 __bio_release_pages EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3d0dceda fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x3d1b3696 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x3cd765c6 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x3d11decd inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x3d198c2e fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x3d2a7629 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x3d2fed22 md_account_bio EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d79262d ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3d51c99a skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x3d5406e7 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x3d5a1493 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x3d79d5d8 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x3d88dae6 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x3d93fdfc sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3d8701ab sysfs_rename_link_ns EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3dad01d7 pci_iov_get_pf_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3db5c41c sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x3dbb52e7 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x3ddb83cf devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x3dbd8340 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x3dcd2f12 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x3dde22dc restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df315b1 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x3df87d48 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x3e17de6e xas_find +EXPORT_SYMBOL_GPL vmlinux 0x3e1a1a07 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3e210438 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3e31697d crypto_akcipher_sync_prep EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e647c8f n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x3e6b8bfe devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x3e5803fd bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0x3e6d9d64 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e74bc3a serdev_device_break_ctl +EXPORT_SYMBOL_GPL vmlinux 0x3e7bbdcc devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e888c5a apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3eb39650 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x3eb795d8 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x3ed0f0d0 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3ed227c6 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x3edbd04e pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x3eeeed52 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e95fb21 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x3eaba62a iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x3ee7d071 xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x3ee8d97c device_set_node EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3f38907b dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x3f3fa938 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x3f5ac2b0 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x3f620550 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x3f6deaea fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x3f7ecbc7 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x3ef782b2 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3ef8a957 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x3f016b1c blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x3f12a7c7 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x3f23a73f blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x3f28c43c open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x3f43b2b1 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3f4fff36 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3f620a64 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x3f715ee6 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x3f747f3e virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f98e5c7 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x3fa5c88f generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x3fc58a02 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x3f8b810b phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x3fa066ad blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x3ffe96de pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x40148998 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x402940a2 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x401ac5d6 ccw_device_get_cssid +EXPORT_SYMBOL_GPL vmlinux 0x402576cc gmap_pmdp_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x402cfe86 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x404179b0 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x40449420 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x40485456 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x404170d4 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4042a3fb skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x404c4616 fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x4071089b gmap_convert_to_secure +EXPORT_SYMBOL_GPL vmlinux 0x40717f5b debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407ffeba lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x4089e35c blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x408e725a nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x407d8bec scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x4086b8f6 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4095f1b6 blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free EXPORT_SYMBOL_GPL vmlinux 0x40a13568 vbin_printf -EXPORT_SYMBOL_GPL vmlinux 0x40ab7632 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x40aeeffe ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x40c2ee95 pci_hp_destroy -EXPORT_SYMBOL_GPL vmlinux 0x40d21e9f irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x40d839a3 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x40e27570 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x40e62ef8 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x40ed2918 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x40b52e29 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x40bb7cda bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0x40bcca5a find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x40c180de device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x40e60064 vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x410616d7 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0x410f47ef scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x411b48bc debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x412bdee3 devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x4136cfe7 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x4158daf1 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x41594e07 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x417d8076 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4198955b scsi_dh_attach EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x419f9f30 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x41ab5421 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x41af2d15 __platform_driver_probe EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x41c28cf5 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x41c2c652 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x41d19f0f devres_release EXPORT_SYMBOL_GPL vmlinux 0x41d2948d property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x41da1eeb clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x41dc719c __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x41f4acf7 unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0x41fa3907 __gmap_zap EXPORT_SYMBOL_GPL vmlinux 0x41fb68cb copy_from_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0x420300a7 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x42075d4e iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x420aa162 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x420add25 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x42107bcc scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4219ed11 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x421af8ee switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x421c1e0b component_del +EXPORT_SYMBOL_GPL vmlinux 0x422ba6f0 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x4233261a iomap_zero_range EXPORT_SYMBOL_GPL vmlinux 0x42342f90 tcp_parse_mss_option EXPORT_SYMBOL_GPL vmlinux 0x42468543 __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x4247d3dd device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x42661f65 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x42783618 dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428b2331 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x4291cd3f trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x4289ed30 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x428fd7fe irq_set_default_host EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42b32499 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x42c00d62 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x42d2725e create_signature -EXPORT_SYMBOL_GPL vmlinux 0x4302d185 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x42c144e7 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42fb9eaa irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x4305e1a6 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x430fa18b cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x431430cb gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0x4333fa15 devres_open_group EXPORT_SYMBOL_GPL vmlinux 0x43376731 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x433970a6 devl_register -EXPORT_SYMBOL_GPL vmlinux 0x43692b60 pci_epc_bme_notify +EXPORT_SYMBOL_GPL vmlinux 0x433e17dc perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x436ccd80 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4387267a devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x4388497f xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x4395caa1 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x438c3058 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x43981d10 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43a1a442 xdp_attachment_setup EXPORT_SYMBOL_GPL vmlinux 0x43a59c0e sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x43a9b4e4 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x43a8f05e dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43c318b3 scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43f20dfd rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x43cc9915 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x43e63da2 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x43ec3d6a sdev_evt_send EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43fc4cd3 blkg_conf_init EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x440a2eaa dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x4402c91c ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x4411163b iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0x4423b92c raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x4426d1d5 vfs_splice_read +EXPORT_SYMBOL_GPL vmlinux 0x44208c9c pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x4421e340 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4423f497 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44348a1e screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x443ea8a5 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x444c1693 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x445602f8 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x44601531 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x44673c27 msi_lock_descs -EXPORT_SYMBOL_GPL vmlinux 0x4469f911 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x4441c64c __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x4452b7c0 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x445ad063 disk_set_zoned EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop -EXPORT_SYMBOL_GPL vmlinux 0x44754e8e gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4489723a mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x448d6c72 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x449178c2 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x448ba05c switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x44b0f692 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x44b1fa5f x509_load_certificate_list EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44c65ec5 strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str EXPORT_SYMBOL_GPL vmlinux 0x44e0ccaa zpci_set_irq_ctrl EXPORT_SYMBOL_GPL vmlinux 0x44e58976 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x44ebed07 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x44f391e8 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x4501878c fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x4534fee7 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x4545b8bf ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x45549720 int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x457081c0 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x4511feb8 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x451c9e9b devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x454bd447 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x456a28b1 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x45725808 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x458c25e0 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x45ad5c66 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0x45bbc8f3 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x45874ebe crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x459226b5 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x459b999e crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x459debd1 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x45bdc429 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x45c04efa user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x45c494a4 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x45c4954b blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x45db4079 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x45e645fe ping_close EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x46025fe4 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x460fd075 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x465bd082 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x4610fe31 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x462b9b61 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x464a9cd0 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x464c6e46 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4666256c pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x46b5653e crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x46d0faad device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x46e1660d ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0x46e205a9 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x46f453d0 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x47157962 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x46b7ecb1 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x46c55f1d blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x46c7746a disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x46e682a5 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x46e8289b devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x46f1db4f inet_twsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472b5f17 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x4739fb0d devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x474c6f6a iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x474e7f51 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x473301e2 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47645151 vp_modern_probe EXPORT_SYMBOL_GPL vmlinux 0x476461e8 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x4766c645 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x47664a80 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x47682ffe ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x476e0eaf serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x477a8277 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x47864d92 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478899a3 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4795bd81 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode -EXPORT_SYMBOL_GPL vmlinux 0x47ae5d13 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x47b041a5 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x47c213f7 __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x47c43c15 mas_find -EXPORT_SYMBOL_GPL vmlinux 0x47d2ac31 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x47eb0295 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x47f50b10 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x47c61603 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x47e52136 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47e5fa45 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x47ea00a5 kick_process EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480b8906 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm -EXPORT_SYMBOL_GPL vmlinux 0x486c787f attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4885dff9 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x48354b46 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x48438a6c debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x484752cd xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x48598427 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x4867458b alloc_dax EXPORT_SYMBOL_GPL vmlinux 0x48a09202 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x48c0cf29 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x48af44ff unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48c35c9e __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x48cd8f7a gmap_disable -EXPORT_SYMBOL_GPL vmlinux 0x48d1f2dd mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x48e05924 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x48c38e58 pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x48e5eb7b blkcg_set_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x48ec6548 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x48fc7ed5 disk_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x48fcf2d8 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x48f9dc59 securityfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x49058445 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x490b5e10 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x4906b020 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x4916de4e platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x4918dc5b blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x492a7b46 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x492e5165 peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493ef287 __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x495a6bfb debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49732d17 gmap_pmdp_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x496601be mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x496a1a2f fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x496c7bf0 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x496e876d iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x49aac593 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x49b5ec54 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4995ef36 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x49a0da87 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x49b7f854 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49cd2748 dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x49d6d96a put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x49e1c737 gmap_pmdp_idte_global EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f8e7bf irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x49fb3eaa pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x49fcdb80 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x4a15b0d8 netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a1a0169 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x4a1f3153 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x4a4355e1 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x4a7cbc7a crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x4ab8f0f8 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x4ac1b400 balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x4ae43cbd kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x4b12480b fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x4b2c9e20 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x4b4d9705 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x4b857a68 kernel_file_open -EXPORT_SYMBOL_GPL vmlinux 0x4ba05c8c dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x4a2f8698 blk_rq_poll +EXPORT_SYMBOL_GPL vmlinux 0x4a2fba78 crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4a3d9e32 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x4a4a0430 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x4a4e6ff6 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x4a57a8b8 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4a6c8eb2 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4a6d221a __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4aa04ad0 blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0x4aa0e3f5 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x4acb61cc skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x4ae9907b devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x4b268a3e device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x4b2cf030 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b2cf105 kvm_s390_pv_cpu_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x4b5e6784 kvm_arch_crypto_set_masks +EXPORT_SYMBOL_GPL vmlinux 0x4b84182a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x4b87b86d devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x4b9750c9 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x4b9facac __udp_enqueue_schedule_skb EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib -EXPORT_SYMBOL_GPL vmlinux 0x4bd4cb15 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4ba8d020 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x4babd4fb access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x4bb15b5d msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x4bb1d47b __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x4bb3ae48 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bd89c5a css_chsc_characteristics EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4bfc4b16 kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4bff538d pci_debug_err_id -EXPORT_SYMBOL_GPL vmlinux 0x4c1e11a3 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x4c258265 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x4c279a41 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x4be74bd8 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x4beed68f key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x4c101fbb dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x4c4faf64 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x4c52d6d2 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x4c3011d4 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x4c31b76e driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4c525bc4 paste_selection EXPORT_SYMBOL_GPL vmlinux 0x4c56bd15 stack_type_name -EXPORT_SYMBOL_GPL vmlinux 0x4c5d8d7c rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x4c63068d gmap_shadow_r2t -EXPORT_SYMBOL_GPL vmlinux 0x4c6637d7 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x4ca5910d kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x4cabdd9b bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x4cadd4cb skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x4c6da2c5 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x4c7cbfdc unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x4c8e992f tty_save_termios EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb2ef4c tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cb96ff9 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x4cbcaaae fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4cbe2041 aead_register_instance EXPORT_SYMBOL_GPL vmlinux 0x4ce91483 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x4cef8202 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x4cf18c1f virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d1a6650 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x4d22358a exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x4d2b80b3 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x4d3fce31 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x4d643021 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x4d6c5beb irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x4d6c8991 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x4d06a4f9 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x4d1d66bc sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x4d40e75d vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x4d487921 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x4d4efda5 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4d60930a generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d71b236 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d774d3e sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x4d7c5fad css_sch_is_valid EXPORT_SYMBOL_GPL vmlinux 0x4d80cba4 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4d96dda6 cio_start_key -EXPORT_SYMBOL_GPL vmlinux 0x4dd4beab sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x4dd51a81 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x4e006e3f devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4e366493 css_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4e37cd8a __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x4e3e8bec fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x4daba3e7 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4db49052 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x4dca628c devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x4dcd27e6 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x4ddf9fb2 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e4f6759 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x4e57b07b kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x4e7adc84 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x4e950032 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x4eaa3141 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x4e446073 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x4e4cd461 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4e5cbe69 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x4e5d85a9 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4e692bc6 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x4e6fcd5c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4e9a9349 gmap_make_secure +EXPORT_SYMBOL_GPL vmlinux 0x4ea4e90b clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4eab25e2 tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb14b7a crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x4ec1e9f5 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x4ed0f121 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x4eaf468e dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x4ebe4ea7 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x4ec2d916 pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0x4eedd6f3 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x4eeecf06 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4ef09c3c gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f07076a tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x4f21a524 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x4f40aed7 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x4f43d3a5 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x4f4acb0b ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x4f5228c6 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4f045930 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4f16a457 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x4f190699 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0x4f3c2b87 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x4f5fcd73 netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x4f64a7d3 cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6b7738 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x4f8a4b03 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4f8c8666 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x4f91fd51 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x4f96c950 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x4f9ebd49 kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0x4fad980c pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fb71758 __s390_uv_destroy_range -EXPORT_SYMBOL_GPL vmlinux 0x4fbf4caa failover_register +EXPORT_SYMBOL_GPL vmlinux 0x4fddf15e __fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4fe10d69 sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4ff2d2a3 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x501e9b05 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x501fa0a8 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x5036e758 debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x50421e41 folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0x50460252 blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x504a2a15 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x505b5b50 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x5073de3d iomap_invalidate_folio -EXPORT_SYMBOL_GPL vmlinux 0x50748617 xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x5087de7e __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x4fee6652 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x4fee78e6 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x4ff7807a trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x5003c8d7 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5003e6ff pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x502bdaba pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x503090ec fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5033bdcf blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x5071da89 devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x508687b6 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x509479dc tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x509bb0d1 __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0x50a6dc43 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x50b49049 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x50d80f2b __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x5092e70d devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x50db489b virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x50dc8fb3 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num EXPORT_SYMBOL_GPL vmlinux 0x50eabb98 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x50f268a6 dw_pcie_link_up -EXPORT_SYMBOL_GPL vmlinux 0x50f7f9e4 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fd2f06 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x510859b1 make_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x511994d4 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x511fb34a dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x51104ae7 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x511a24a7 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x5126d871 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x512b85b0 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x512e47ad irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x5148de5d locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x513b5b96 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x513f53be devl_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x516960bd klist_iter_init_node EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x517a9f57 vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x517e6e9f tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x519258f1 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x51b00cd2 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x51c83555 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x51f817f4 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x52072662 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x5208e1a0 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x521c323b vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x51db079a iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x522c314a pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock -EXPORT_SYMBOL_GPL vmlinux 0x523a4265 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0x5261ee0a tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x5262b215 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x5238323b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x525ce741 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x5295bff7 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x526c9006 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x5279f15c xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x52902f03 put_device +EXPORT_SYMBOL_GPL vmlinux 0x52a92914 skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b23191 __trace_trigger_soft_disabled -EXPORT_SYMBOL_GPL vmlinux 0x52b4fff4 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x52b52c5b devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c44fea devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52cae04f serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52d85286 devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x5301006c bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x53067886 devl_trylock EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x53461b24 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x534d4bba acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x534fba40 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x534cf7e1 software_node_fwnode EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x536682b5 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x53814be3 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x5382cd02 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x5362099e regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x537b76c0 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x53a3b4e6 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x53bf27a9 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x53c50641 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x53d75180 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x538d84e8 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x53a719c1 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x53b9c09e bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x53d1d849 gmap_shadow_valid EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e57440 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x53ebccda platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x53ee406e sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0x540345c8 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x54177046 crypto_aes_set_key EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541f7f95 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x542001cb __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x5426772f __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x5427b74d cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x542fd74a fscrypt_dio_supported -EXPORT_SYMBOL_GPL vmlinux 0x54390f29 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x54569ce5 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x546228a2 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x54629147 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x546cbf10 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5426c405 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x5449ca64 genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0x544be67b crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0x54598dce devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x546061a4 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x5469763a device_create +EXPORT_SYMBOL_GPL vmlinux 0x546ad918 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x547307b8 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x547403e3 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x5483dcd2 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x5476770b __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x547c6e18 devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0x548a61b1 ZSTD_customFree -EXPORT_SYMBOL_GPL vmlinux 0x54942759 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x5494efed crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549be66a decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x54af1d2f sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x54b11088 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x54c89c18 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x54ca673c irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x54d3136a firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x54f6aa84 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x55138980 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x552d1c8c class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5511f9a3 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5528b5cf phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x554871c2 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x55635ef2 iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x556a9ead xas_split EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55861d8e dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x5587f6d0 mdiobus_c45_modify -EXPORT_SYMBOL_GPL vmlinux 0x5593eb5d irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x559a9786 devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x55c46671 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x557855d3 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x558a0845 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x558b7969 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x558f599f public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x55905e56 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x55932fe8 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x55b28c3c rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x55bb011c pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x55ebecdc input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x55f91924 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x56044970 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5605322b relay_open EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x561375bd tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x5629277d locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x563f145e kvm_arch_crypto_clear_masks EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56958c6b devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x56da1afb kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x56655ad2 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x56708fb1 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x5673daeb devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x567b5246 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x56834fb7 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x56915b8f hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x56afdfe8 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x56b47c73 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x56b584d8 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x56edbc29 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x56ef08de kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x56ef15d0 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x56ef7ead exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x56f0a960 zpci_register_ioat EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5714e153 shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x572e3d44 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x57306c6f devl_rate_node_create -EXPORT_SYMBOL_GPL vmlinux 0x575e992b sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x578be82a gmap_pmdp_idte_global +EXPORT_SYMBOL_GPL vmlinux 0x573bfb2d genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x57584674 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x575a321a mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x575e4037 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x57749e0f percpu_is_read_locked EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5793124d switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x57979545 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x5797a291 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57b7bc13 pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0x57c06a55 inet_pernet_hashinfo_alloc EXPORT_SYMBOL_GPL vmlinux 0x57c58e9b __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x57d593ea firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x57da24bb serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x57dfc3eb tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57fa7cfc ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x57fb5ac2 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x582ef0e6 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x57f63598 screen_pos EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x5833d256 crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0x584e9d45 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x5864374b devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x5867ac13 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x585bbaf0 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5875809e phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x5875b866 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x5878dc57 kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x589b9c26 pcie_flr -EXPORT_SYMBOL_GPL vmlinux 0x58a9e413 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x58b6767d inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x58bdad67 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x58c70d6f tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x58cd3a89 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x5893ba46 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x58a41c50 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x58af1a58 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x58cbdb35 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x58deee0e bio_poll EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58f03aff fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x58eda550 finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0x58f31f10 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5904e3a1 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x59088c88 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x5912ba71 msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x59171802 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x59210afc bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x5923ef25 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x5924cc65 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x593ac537 __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x594fe160 tod_clock_base -EXPORT_SYMBOL_GPL vmlinux 0x595666d8 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x5957c736 devl_unregister EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x596ad7c6 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x596f76bd io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0x59848a50 gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x59a34657 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x59a628f8 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x595acc44 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x596ab21a pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x597e03f0 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x599386a7 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x59aaefcf tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x59b03cea blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59d839b1 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x59cc80b9 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str -EXPORT_SYMBOL_GPL vmlinux 0x59f2f0ea ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm -EXPORT_SYMBOL_GPL vmlinux 0x59f4829c addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x59f79525 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x59fc645c tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a13b075 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a211e27 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x5a289baf trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x5a3e015a relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x5a361b3d sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x5a3b3560 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x5a3f63a6 iommu_group_add_device EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4f1bc6 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x5a5c2cae blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5a5d4ba0 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x5a64c445 yield_to EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a78783a input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a7cdc70 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x5a8f7505 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x5a92a0f0 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x5ac7323e dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x5b0a53c2 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x5a9627ac mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5aa5835d auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ac0eddc device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x5afc722e __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x5b0acf6f dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x5b15a3cd pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b225a45 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x5b22c715 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5b2362fb ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x5b434833 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x5b46803f bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x5b32398a mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x5b39dac8 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0x5b50af89 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x5b5585e2 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5b6c3044 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x5b6ce9c1 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x5b6cff27 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x5b7cf8d1 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x5b610d75 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x5b6aa447 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x5b6dd73d perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x5b7180b1 kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL vmlinux 0x5b7b6db5 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0x5b83d7ab __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x5ba52228 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x5ba63bef property_entries_free EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index EXPORT_SYMBOL_GPL vmlinux 0x5bbadee5 __dma_fence_unwrap_merge EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x5bbe6e16 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x5bc96be5 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x5bc202f3 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x5bcb3b5c blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x5bcd66f6 crypto_sig_maxsize EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x5bd663f8 kvm_get_kvm EXPORT_SYMBOL_GPL vmlinux 0x5bd674f4 xas_load EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5be48c7b devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0x5c06a2cf balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5c0d133e tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x5c276bb1 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x5c2cbad0 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x5c37eae8 pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0x5bdc96cb fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x5c0e4930 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x5c1b386f class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5c2a446e regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x5c2c0edc fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x5c2e76e1 mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x5c30953f tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x5c3807a9 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c4e4634 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x5c51a802 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x5c4e380a devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x5c5ddfbc simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x5c67ecda fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c9a8801 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x5ca7970a devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x5cb4171c gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x5cb588c5 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5cdf1c0f fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cfaad56 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x5d2c3bd2 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x5d35e4d3 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x5d512765 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x5d62bc98 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x5d81b632 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5cf1b666 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x5cfac38c dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x5cfe0ac1 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x5d0c51fd fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x5d0f87a6 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x5d1261b6 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x5d275d03 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x5d2b782d devres_find +EXPORT_SYMBOL_GPL vmlinux 0x5d3683ef xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d52b7c6 serdev_device_break_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5d580450 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x5d603d8d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5d62907e kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x5d72d119 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x5d7a7510 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d85bb62 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x5d87e679 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5da523e1 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5d98cd38 __fscrypt_prepare_link EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5dacf59e sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x5db68ac1 devm_register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x5db79d47 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x5dbe2282 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5dc3acc9 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x5dc66f1c crypto_unregister_aead EXPORT_SYMBOL_GPL vmlinux 0x5dd76e44 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x5df92cde balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5de5cb2a crypto_akcipher_sync_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5e16906b unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e2d2ba5 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x5e4a7ff1 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5e2689f3 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x5e366695 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x5e48cee7 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e6fd7b3 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x5e615cfd tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x5e6c4f20 vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e9c898c class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x5eaf6e81 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x5ea2893e __put_net +EXPORT_SYMBOL_GPL vmlinux 0x5eaa19ef component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x5eae7588 s390_sha_update EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5ec6ba0b platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ecc63c8 devl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5ed312bc acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5ecef56d bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x5ef1b3a0 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x5f048e3a __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0x5f0bfd53 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2dfbcd iomap_writepages EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x5f693fb3 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x5f6e9b2e crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f752ee2 vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0x5f765b46 ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x5f88a6d9 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5f91c816 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5f892512 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x5f89ad7a user_update EXPORT_SYMBOL_GPL vmlinux 0x5fa4ce72 xas_nomem EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fb99b0a iov_iter_extract_pages -EXPORT_SYMBOL_GPL vmlinux 0x5fc02b4b class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5fc446da irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0x5fe4ad9e sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ff2f04f irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x5fce297f dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x6001da18 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x6001e586 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x6040af4b regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x6046df23 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x60372765 __fscrypt_inode_uses_inline_crypto EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x605862fe xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x605aaa83 gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0x60601f04 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6056d984 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x605bc0a7 gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x60810803 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x6083fc85 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x60899067 inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x609a1f71 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a9fe2e ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x60a4f4ac bus_register +EXPORT_SYMBOL_GPL vmlinux 0x60b0371c raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x60cafdb4 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60fab342 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x60fca0c3 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x60ffa01f mas_find_range_rev +EXPORT_SYMBOL_GPL vmlinux 0x6100b550 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0x610399cd cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x611af32f dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x6148cf01 rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x6173fbb9 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x61464862 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x61771cb3 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x6177373f rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x617f1665 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x61786a14 netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618301c5 fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher EXPORT_SYMBOL_GPL vmlinux 0x61ad8659 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x61b083b9 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x61b302f0 perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x61bd1905 kvm_s390_pv_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x61c0aa72 devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x61cc0c08 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x61d38382 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0x61ddb96e unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x61ef8a1d mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x61ca83a0 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61ceb3d7 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f7ba67 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x61fbb31b dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x622c1720 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x61f6f5ad sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x62338be0 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x62320636 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0x626886bd __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x6282459d transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x628a946f bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x62764da5 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6295f0b5 gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0x62b44b28 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62be7952 bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x62c00e7f lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x62c43814 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x62e2a233 component_compare_dev -EXPORT_SYMBOL_GPL vmlinux 0x6318ccd6 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x62bbf83c tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x62f94cb6 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x63148116 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x6315dbf4 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x631aeb7d get_net_ns_by_pid EXPORT_SYMBOL_GPL vmlinux 0x631ba529 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x632102bb skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x63274e1c sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x632b0951 vp_legacy_set_status EXPORT_SYMBOL_GPL vmlinux 0x632cd412 sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x6330da0b ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6349498d devres_destroy EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x634c6082 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x638714c8 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x6390d24d switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x63a7bdc2 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x63b250f0 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x63bd9639 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x63c735b3 bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0x63e09451 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x63ec0383 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x6350a2d9 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x636e7b69 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x63750e25 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6384ccb6 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x6388d017 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x63b2c015 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x63d1b4ee io_uring_cmd_sock EXPORT_SYMBOL_GPL vmlinux 0x63f63785 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x64062e75 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x64211c35 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x6436ee74 get_device -EXPORT_SYMBOL_GPL vmlinux 0x643d3c6f irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x64547817 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x645bd37c inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x6475f5cf device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x64248589 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x642cfe36 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x64375114 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x643ee1b7 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x6447e657 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x644e7103 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x64575086 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x64786375 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x64a964e4 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x64b2b158 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x647e12e2 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x6482c809 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64b442d1 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x64b77d67 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x64bc7a70 ccw_device_set_timeout EXPORT_SYMBOL_GPL vmlinux 0x64c3ad06 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x64c6389a __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x64d1d903 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x64d54cf3 skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e2b2ad xfrm_dev_state_add EXPORT_SYMBOL_GPL vmlinux 0x6506a8ef housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x6506e63d auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x6518db61 kvm_read_guest EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6563f78f phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x65817e97 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x658f8996 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x65a6fcd5 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x65395143 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x653fc2a0 s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0x65590075 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x655bac16 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x65776c5e crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x657b125f direct_write_fallback +EXPORT_SYMBOL_GPL vmlinux 0x657b54c4 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x657ccd0a register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x65818a8b iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x65ade9df fsnotify EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d7db7f vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x65dbcecd crypto_alloc_sig EXPORT_SYMBOL_GPL vmlinux 0x65de3021 stack_depot_snprint -EXPORT_SYMBOL_GPL vmlinux 0x65fea940 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x65dff9c1 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x65f81d1a disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661b8366 get_user_pages_fast_only EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663b1b59 dm_disk EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x664374a0 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x6649cc4f iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x6653b5e7 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x665ee3cf __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668a6331 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x66aa472a cio_cancel -EXPORT_SYMBOL_GPL vmlinux 0x66b27738 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x66b8f798 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x66896b32 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x668a6d37 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x669884fb vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66ba906e register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x66ca661d rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x66ba30e1 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x66c22993 strp_done EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr EXPORT_SYMBOL_GPL vmlinux 0x66df0d36 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x66e4e3bf dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x66feede2 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x66ffe527 devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0x67006845 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x672e003a irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x673ee8f8 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x66e4b906 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x66eb9e54 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x670d828e cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x672db788 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x67627ba7 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x677c6bd7 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x677d9fee __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x67462256 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x674ad383 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x676ee36d nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x677164a7 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6779b6fb gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67990d7b tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x67be1010 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x679afb4b irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x67b07796 __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x67b538bb phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67d3e8c1 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x67d17d34 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67ebeb95 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x67ee5703 class_register -EXPORT_SYMBOL_GPL vmlinux 0x680a5019 devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0x680db39e gmap_unregister_pte_notifier -EXPORT_SYMBOL_GPL vmlinux 0x68126c76 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x68280eca perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x67e1ae48 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x67ff64d1 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x6806c738 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x682e7f24 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x6839dca3 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x683eecf9 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6830b483 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x683d8303 genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0x6848da56 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x68540b65 __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0x685d09ac __kprobe_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x686db837 gmap_make_secure +EXPORT_SYMBOL_GPL vmlinux 0x685f934c sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x688395ac zpci_disable_device EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL vmlinux 0x68933953 netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689f7a8c __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0x68a0c9c1 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x68b5ef6f elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x68d207ef badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x690cdeb5 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x690d1356 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x68a1c780 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x68d71bd2 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x68d96c9c devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x68e8a9b1 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x68ef99f8 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x68fe172a tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x69192805 raw_v6_match -EXPORT_SYMBOL_GPL vmlinux 0x692f6f42 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x6931f37f switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x69423239 gmap_put EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x6972a234 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x697b9040 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x697a4bfd scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697e071b security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x698a2654 software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0x69925d0e sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x69adb46c proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x69c8c846 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x69c8ece0 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x6996dc46 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x69bc097d debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d8f7a1 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x69e0a0cf nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69ee0737 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x6a08fa3a dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x6a16db5c devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x6a40da15 of_css +EXPORT_SYMBOL_GPL vmlinux 0x69f25f40 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x69f6e3ae irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x69fc6c53 device_move +EXPORT_SYMBOL_GPL vmlinux 0x6a0ab8ce perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x6a0cf700 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x6a0d5f0a elv_unregister EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x6a489570 ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a7512df pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x6a7f63fe genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x6a63eaa0 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x6a6d309f debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x6a7619d9 gmap_sync_dirty_log_pmd +EXPORT_SYMBOL_GPL vmlinux 0x6a80d9c1 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start -EXPORT_SYMBOL_GPL vmlinux 0x6a9d0304 gmap_enable -EXPORT_SYMBOL_GPL vmlinux 0x6aac6b6e dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x6ab02482 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x6ac2c100 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0x6af53498 kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x6b0bcb13 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x6b10a1e4 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x6b18758e __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x6a9bc427 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x6ab880f1 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x6ad507d9 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x6b0dab15 __gmap_translate EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b38ee4c perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b4c0433 __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x6b4c0bd5 ccw_device_get_iid -EXPORT_SYMBOL_GPL vmlinux 0x6b5bcdd3 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x6bbb4f43 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x6b538288 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x6b7b2a24 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x6b7fdfa9 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x6b9c5afc udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x6bc43b26 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd47998 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x6bde1622 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6bf4419e crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x6bf66163 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0x6bff834f eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x6c023b78 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x6c3554ce shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x6bf2d6d2 css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0x6bfc5b67 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6c02a59d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x6c0626e7 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x6c0fa60c vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x6c2c2395 pci_find_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c493b7b gmap_put -EXPORT_SYMBOL_GPL vmlinux 0x6c510226 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x6c474315 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c6ccc03 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x6c8c7e41 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x6c8cd606 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x6c946d86 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x6c6f82ad inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6c90641d devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6caf094f component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x6cd1f651 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x6cff04f0 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x6cbb86aa fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6cc52d76 nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0x6cd840e1 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user -EXPORT_SYMBOL_GPL vmlinux 0x6d0c0c5c bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x6d1c754b switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x6d1e6057 pci_create_root_bus EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x6d4fd8b7 __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x6d5e52a3 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d67315b dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x6d69d8e2 dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7699ba generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d786372 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6da4ecce perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x6dac14d0 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6db83f7f skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x6d8f6a7a skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x6da11246 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x6dab1cc4 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dd4f3de list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x6dbf1c6d crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6dd93fc0 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x6de9f588 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x6dee932f __traceiter_console -EXPORT_SYMBOL_GPL vmlinux 0x6df84fc3 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x6e05f536 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x6defdd2a devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x6df411d0 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6e08ef36 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift -EXPORT_SYMBOL_GPL vmlinux 0x6e628c75 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x6e66924c bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x6e3bf86b __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6e50ed12 kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e86af67 fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base -EXPORT_SYMBOL_GPL vmlinux 0x6e8a2cfd set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x6eb16e39 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x6e8e63d6 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x6ea57a0d vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x6ea639cb scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x6eae9cc8 fat_scan EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6ec7b94c gen_pool_avail -EXPORT_SYMBOL_GPL vmlinux 0x6ecd182a devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x6ed989e4 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ee5c7ec metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6efdab1d iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6ef73dc7 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x6efd7c38 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x6f00278a seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x6f0b5a96 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f2014d6 pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f24c999 blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0x6f38ff9f serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x6f413734 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x6f658a3d sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x6f676ba1 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x6f38b9ed devl_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x6f442fdc driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6f4d5204 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f4fd778 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x6f68552b device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f79c32d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6f6e5bc4 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x6f729560 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f9e1a1c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x6f8766c2 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fb6b720 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x6fada8f1 __io_uring_cmd_do_in_task EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fe1866e shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x6ff527b5 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x6fdb8f61 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6fe68a39 irq_domain_associate_many EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffa882e device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x70005090 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x700539e0 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x6ffa38cf nf_route EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x70079d69 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x702f0b8e pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x70316cd6 iommu_device_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x70320c79 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x703c50a8 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x704a0f69 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x705802ad enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x7044b380 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x705c9c9c genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x70672932 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x70856a97 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x70ae13cb receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x70b2245b sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x70758ffe get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x709b5bb0 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x70a9831c dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x70bb04be crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0x70be882d free_uid EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c74433 crypto_sig_verify +EXPORT_SYMBOL_GPL vmlinux 0x70e96140 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x71029fa6 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x713659a9 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7155f531 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x711f0c08 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x71467055 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716f35b0 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x7167ca8b blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x717059a8 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x7172afd8 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start -EXPORT_SYMBOL_GPL vmlinux 0x7188182e iomap_get_folio -EXPORT_SYMBOL_GPL vmlinux 0x71961125 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x719b6a42 devl_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a51fd1 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x71abf034 kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71ca1a08 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x71f4882e devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x71f69a66 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71f850d9 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x721edbc2 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0x722a614a wbt_disable_default -EXPORT_SYMBOL_GPL vmlinux 0x7230fb0b iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x7232d618 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x72382453 fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x7241e304 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71fa50f5 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x720e25b2 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x720e3678 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x7240b86a gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x724b75cc mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x7259a120 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x72686dd5 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x7276ccb4 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727cbe93 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x727e9c92 inet_hash EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x729d18a7 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x72acba13 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7287ff11 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x72988ddb xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x729ba3e6 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x729eece6 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x7309ce3e regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x7331db52 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x72ae4d4d tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x72c7c496 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x72ce3a31 xdp_features_set_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x73153768 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x7332aae7 bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x7334483c s390_uv_destroy_pfns -EXPORT_SYMBOL_GPL vmlinux 0x7343fc72 tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x734b2281 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x738d2a82 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x73977471 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7359f197 s390_sha_final +EXPORT_SYMBOL_GPL vmlinux 0x73671fee kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x73735f2d iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7373ce6a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x738c8c6e crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x73977910 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x73a84f77 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x73b41307 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x73c5b748 net_selftest EXPORT_SYMBOL_GPL vmlinux 0x73c93090 rhashtable_insert_slow EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73ce8601 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x73d50dfa gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x73db8824 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x73debb7d class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x73e9174a devm_register_power_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x74140653 swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0x742db026 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x743f9cd8 folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x745d8388 dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x74736dd4 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x74b289c0 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x740666ad shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7417bbc6 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x74248085 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7426bba9 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x745e63e9 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x74a9d9b9 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x74ad3122 kvm_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b8944f blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block -EXPORT_SYMBOL_GPL vmlinux 0x74c27a3b is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x74d60b7e appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x74c66058 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f01fb7 fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x74fc552a __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x75177b1f pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log +EXPORT_SYMBOL_GPL vmlinux 0x751eaee7 pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7535efb0 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x753c2091 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x754c18a4 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x7526d1d4 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x7528dbd8 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x752ee6e2 regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x75608e85 crypto_sig_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x7571d9c8 irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x75813e9d crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x758ac036 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x758d3937 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x75d71c5e virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x757d7184 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x758e80b2 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x75e65a97 mas_store_prealloc EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ed92d4 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0x75edf7b3 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x75ef6263 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x76210be6 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x762b4445 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0x764163f0 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x75ee8186 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x75efc398 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x75f99114 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x765d5086 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x7692f888 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x765f8452 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x7670b455 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76af57e7 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x76b6c59c crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x76b93f84 add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x76c5bf54 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x76e6df48 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x76bf582a class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x76e01fee exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x76eb21f0 xfrm_dev_policy_add EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7707910a iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x770a0218 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x77183bd4 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x771ad633 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x771d82d5 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x7735cdd4 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x773cc319 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x774f0c73 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x775e59d3 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x775eb084 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x77639322 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x776fd18c kpp_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x777dc7be anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x778ad288 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x776857cb lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x7769b846 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x776f57b1 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x77705b70 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x77710db7 trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x77b99a4f inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x77c15cbe iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x77cc059d __fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x77dcc320 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x779a7975 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x77beab97 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x77cdd3cd devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x77d7762c gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x77dc38dd pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77e8f134 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x77eb4fb0 fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77fb8fde tcp_plb_update_state_upon_rto EXPORT_SYMBOL_GPL vmlinux 0x77ff80d3 __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x781f6074 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x78523e0c get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x7854f8dd io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x781a140a crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x78221e4d irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x783e9c30 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x784fbf1b iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x7854afd9 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7859a2a3 get_task_pid EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x787c3fc2 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x785afe8c kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x7871234f serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x788c1c2b regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x788c6eda validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x78901a57 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x78968236 fsverity_verify_blocks +EXPORT_SYMBOL_GPL vmlinux 0x7896165c tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78b92c72 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78a92b30 tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x78c400ab raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x78e28dcd tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x78f3bffb __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x78dbaaa5 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x78fe9e75 alloc_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x790b12d2 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x7904e2d0 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x7912b0d7 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x7942ff05 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x793aaf30 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac -EXPORT_SYMBOL_GPL vmlinux 0x7948287b iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x795a0a3c hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x797db374 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x798f8efb tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x79903569 static_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x79a02166 gmap_map_segment -EXPORT_SYMBOL_GPL vmlinux 0x79a29d4f perf_report_aux_output_id -EXPORT_SYMBOL_GPL vmlinux 0x79d4f9f2 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x794f04c7 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x79556f63 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7978f420 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x797fe324 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x798ffea5 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x7998a970 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x799e10c4 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x79ba4544 hypervisor_kobj EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e09181 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x79eb60cf crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x79ef7018 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x7a312384 bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0x7a315ae9 sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a411eb8 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x7a45ef3e device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x7a4ea9d0 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x7a57bc11 filemap_migrate_folio -EXPORT_SYMBOL_GPL vmlinux 0x7a5f792e pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x7a779c59 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x7a7b37e2 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a516a08 gmap_remove +EXPORT_SYMBOL_GPL vmlinux 0x7a5c94d7 shmem_read_folio_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7a6c0039 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x7a6f2e94 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7a7e17ff fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x7a7fad8b cio_start EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a924250 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x7a92e6f0 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x7a95352a direct_write_fallback -EXPORT_SYMBOL_GPL vmlinux 0x7a96b91d blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x7a99208e __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x7aa4b0b7 proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x7abfa4ac shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x7ab6492d regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7abf8840 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acde380 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x7acf9062 irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad30a82 smp_yield_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ad3985f devres_close_group EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b003e1d fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0x7b226d49 __fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7b0052b9 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x7b29bc7b iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0x7b524c91 locks_owner_has_blockers EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b636c82 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x7b7f8e61 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x7b5f8b04 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x7b7bae41 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7b86d53f ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval -EXPORT_SYMBOL_GPL vmlinux 0x7b8fe134 __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x7b96e753 genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b996904 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x7ba067c5 kvm_s390_gisc_register +EXPORT_SYMBOL_GPL vmlinux 0x7bafc0f3 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bc48ff9 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7bb5bc61 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7bb98407 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7bd01c40 gmap_shadow_sgt +EXPORT_SYMBOL_GPL vmlinux 0x7bd7bbe7 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0x7be224da blkg_rwstat_exit -EXPORT_SYMBOL_GPL vmlinux 0x7c060328 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x7c23f586 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7c26153f pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0x7c2d392d trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x7c44ea67 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x7c4d2bff irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x7c516b8d __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x7c52e996 __unwind_start -EXPORT_SYMBOL_GPL vmlinux 0x7c57e21b tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x7c7819d0 mas_prev_range EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7ca9cea0 securityfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cb259f8 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x7cb7489c scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x7cc4fd4b pci_epc_bme_notify EXPORT_SYMBOL_GPL vmlinux 0x7cce902d __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7ccec658 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7cd9db7a debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cf13c45 kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x7d0f6b42 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x7d15671c invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x7d2cb3d3 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7d73a157 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x7d751642 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7d1ca69f regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7d30fb40 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7d36dc56 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x7d5bf0ac debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x7d786b5b shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x7d89da22 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x7d8aceb1 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7d90ba45 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x7db2e757 watchdog_set_restart_priority -EXPORT_SYMBOL_GPL vmlinux 0x7dc1cdde regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7d8dc967 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x7d91de7f blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x7d94b867 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7d9a3b0b gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x7daacd44 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7dbd2100 tcp_get_syncookie_mss EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddaa203 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de55512 xfrm_output_resume EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7df05777 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x7df5c9cb ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x7e0b86cd gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x7e300301 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7dfeb1f4 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7e060a55 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x7e271b6e rtnl_get_net_ns_capable EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e7466a3 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x7e543a6b pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x7e605e36 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7e694640 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e75a7e6 iommu_get_domain_for_dev_pasid EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7eab622f gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebb8237 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x7ebd083c dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7ebff7cb __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7eec0117 iommu_device_sysfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x7f0d069d regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7ee3ec6a driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x7ee90b68 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7eeeb2d9 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x7ef20353 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x7efe6d28 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x7f291183 xas_store -EXPORT_SYMBOL_GPL vmlinux 0x7f3385cf gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x7f4f138c gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x7f58f0b7 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x7f78d52b virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x7f797871 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7faa2f dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0x7f805a57 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7fd040d9 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x7f86bf06 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x7f8c59cf find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7f9c7e19 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7fb6fc9c fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x7fc3db69 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x7fdb3dd1 kern_mount EXPORT_SYMBOL_GPL vmlinux 0x7fe7f219 group_cpus_evenly -EXPORT_SYMBOL_GPL vmlinux 0x7ff73c31 platform_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x800334f9 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x8007ec21 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x800d459d kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0x80152ad2 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x805c814c __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x8061243b ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x80112020 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x801b4643 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x80215b8b mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x80251162 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x80265b6d ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x80313198 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x804cfba9 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x8055ec94 __irq_domain_add EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80ab4675 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x80af8039 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cb1a69 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x80d13d11 device_create_file EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80de51b0 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x80e3b2d6 fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0x80e88177 __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x80fb44b1 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x810e2471 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x812c4e99 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0x815c3a0d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x81405d1d put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x8177cc8d nop_posix_acl_default -EXPORT_SYMBOL_GPL vmlinux 0x8178f643 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x8179e5d1 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x8178dc38 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x817b091e phy_modify EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81881cc4 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81c29100 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x81af6d28 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x81bc8cf0 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81e35928 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x81e8a81c pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x8226d8a9 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x825bf4d1 bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0x825f2023 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x8275503f irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x81f7b6bc __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x820776d1 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x82141c6c virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x82156952 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x822cef39 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x823708f6 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8247b8bb input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x826c6476 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x826ccc4b fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x828048a6 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x8281f3fe dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0x828b3710 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x828df998 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x8297b5c8 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x82a3aca2 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x82a2a550 br_ip6_fragment EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82c18574 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x82cee00f fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x82d5ae1a unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x82a82038 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x82b249b6 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x82d215ad dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82d8980b fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x82e233dc blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x82e4bc56 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x82f193bf device_match_name -EXPORT_SYMBOL_GPL vmlinux 0x8315044b fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x831a1205 crypto_akcipher_sync_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x832a338f ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82f5e504 gmap_read_table +EXPORT_SYMBOL_GPL vmlinux 0x8302adf9 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x83189b56 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x8322efbc xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x8326a2cb netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x832974e3 fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x835754c9 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x835d881e crypto_init_akcipher_ops_sig -EXPORT_SYMBOL_GPL vmlinux 0x8364c7d5 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x834779e2 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x834b3980 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x835348f4 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x836c47b0 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x83856261 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x836ead07 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x836f2430 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x83857b16 hwrng_msleep EXPORT_SYMBOL_GPL vmlinux 0x83aa84da ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x83b220d6 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x83b47bff ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0x83c02a12 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x83c0a99e iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x83f11cda l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83c8a7e4 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x83e0c92a device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x83e9d8c1 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0x840f0985 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841664e3 __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x841f4b17 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842a635b __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x842b519d dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x84343ff5 dev_fill_metadata_dst EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x8452bdcf fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x845ab4ed ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x846625e5 user_read +EXPORT_SYMBOL_GPL vmlinux 0x846affa6 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x846f73a5 mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0x8496c871 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0x849bd363 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x849f3750 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x84c5e483 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x84e29f95 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x84ec909e iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x84feb56f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x84ae8f08 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x84bf0c23 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x84dda9a2 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x84f01766 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x84f39db5 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x84f5b040 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x84fcb09a clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x85098247 __folio_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x852331d9 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x8527ee62 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x854430c6 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x8568109f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x856ee672 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x857b7208 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x858b417b filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder +EXPORT_SYMBOL_GPL vmlinux 0x859969a5 pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0x85a298b0 crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x85a2d4c2 sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x85d7b12d devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x85ed34b3 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x85ba317c iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x85c5b520 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x85caea27 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x85ed5444 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x85f2b4e7 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x860602c0 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x8611e56e tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x8613ede4 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal -EXPORT_SYMBOL_GPL vmlinux 0x861f8326 scm_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8645c57d phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x862e62d2 folio_alloc_buffers EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x8660a322 ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x867a9125 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x86816f8f device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x8681ac26 unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x869ed8f5 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x86a46de7 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x86abdbaf pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier EXPORT_SYMBOL_GPL vmlinux 0x86c5baf7 trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x86d99ff8 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0x86e0fc0b driver_find -EXPORT_SYMBOL_GPL vmlinux 0x86f32ad6 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x86c6f771 kvm_arch_crypto_clear_masks EXPORT_SYMBOL_GPL vmlinux 0x86f3ecbf register_kprobe EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f6be7e add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x8700aa85 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x87140295 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8721d3fe sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x87292c9d devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x8743b50d blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x8707583c dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x8715f740 dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0x875f6043 sbitmap_queue_resize -EXPORT_SYMBOL_GPL vmlinux 0x876f9105 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x87ac48de devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x87bff7fe phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x87c519ba gmap_destroy_page -EXPORT_SYMBOL_GPL vmlinux 0x87c5246a fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0x87d9b687 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0x87ecb0b3 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x881645ed perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x88165ae6 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x878da63b wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x879aff14 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x87b1fda7 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x87ce4cf7 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x87d65a6f bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x87e6ec34 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x87e93cd9 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x87ecf67b debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x87f59b9e enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x87fdc462 dma_resv_set_deadline EXPORT_SYMBOL_GPL vmlinux 0x881b793f dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0x882c7d0d kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x88327ae9 pci_iov_vf_id -EXPORT_SYMBOL_GPL vmlinux 0x88357c64 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x883bec66 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x884da064 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x8854a206 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x883bf688 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x8841f9e9 l3mdev_table_lookup_unregister EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x886bed7c tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x886de6d4 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x889b5123 pci_ims_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x889cbc58 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88cd84fd skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x88d3f4cf crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x88dc3a08 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x88e0b2fa tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x88edb8b4 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x88ee7aed register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x88f7a696 xdp_features_set_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0x89078473 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0x891dd0d4 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x89032871 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x8914b9e2 devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x891fbbb5 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x892233fa tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x89248fa4 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x89351d83 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x89270e58 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x8948460f blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x89460a99 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89510de4 transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x89605f73 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x8966b006 kvm_s390_gisc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8969b951 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x896fa2be regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x897c7297 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x89647f69 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x896ad9d7 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x898512ef gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x89865400 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x899da26d dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x89a8acc9 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x89b7cb19 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x89b95f28 devl_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x89b69ae0 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x89bb2a0b xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x89ceedda transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x89d3d680 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x89e0f2e6 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x89e00262 crypto_sig_set_privkey EXPORT_SYMBOL_GPL vmlinux 0x89ea5521 digsig_verify EXPORT_SYMBOL_GPL vmlinux 0x89fb400f kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0x8a5abfc3 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a1151b3 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x8a3c1b7f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8a434883 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x8a451400 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x8a53f172 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x8a5f1362 security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x8a615a20 __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a62ff16 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x8a63bf7a gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x8a65f162 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x8a67b0c1 clear_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x8a8073a2 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ad9555c pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x8af412e6 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x8af86b94 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x8b0a0361 folio_test_hugetlb +EXPORT_SYMBOL_GPL vmlinux 0x8acca16a devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x8ad0e088 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x8b003944 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x8b0a2114 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8b182d29 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x8b402b12 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0x8b7aa493 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x8b8f5f35 blkcg_activate_policy EXPORT_SYMBOL_GPL vmlinux 0x8bad4ff4 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x8bb120bc pci_find_dvsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x8bb4b78c vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0x8bb9f4fb hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x8bba1d88 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x8bb7d257 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x8bbe527c __tracepoint_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8c02c580 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x8be86f65 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x8bf0dbc1 iov_iter_extract_pages +EXPORT_SYMBOL_GPL vmlinux 0x8bf9a03e mmput EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c067bcb __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x8c0d6a4b aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c18c478 devl_port_register_with_ops -EXPORT_SYMBOL_GPL vmlinux 0x8c3c5283 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x8c42529c devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x8c447b9c skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x8c318343 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x8c47afca idr_alloc EXPORT_SYMBOL_GPL vmlinux 0x8c52dd7c __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x8c8d91d9 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x8c5b3093 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x8c922160 vcpu_load EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb -EXPORT_SYMBOL_GPL vmlinux 0x8c9b2398 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext -EXPORT_SYMBOL_GPL vmlinux 0x8cc33fbe tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x8cc391cb fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x8cc50bd6 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x8ccc417e net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0x8cccafdf devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8ce2f8c1 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x8cf5725e percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x8cb97fcc inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x8cc6fb7d __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0x8cfbb6f9 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x8d05dfe5 gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x8d073f63 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8d1c5c11 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d1f2087 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d28e423 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x8d32ad37 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x8d249ec4 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d3b7054 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x8d4f2b18 mas_pause -EXPORT_SYMBOL_GPL vmlinux 0x8d5f3241 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x8d6455b4 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x8d8753f6 scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8d7a2755 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x8d83239e dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x8d939914 from_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x8db28dc1 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0x8dd06d75 proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x8dd6e609 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x8dda3788 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x8ddfc9c6 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x8de45a0c __fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x8de5250a simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x8debf75f cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x8e1d6e24 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x8e1e4668 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x8dc43e90 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x8dce0ddc mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x8dfec635 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x8e0368e9 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x8e2f08dc crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8e452cbd iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e54aa9d crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x8e634d58 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x8e6790e0 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e74bf26 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x8e773a34 scsi_internal_device_unblock_nowait EXPORT_SYMBOL_GPL vmlinux 0x8e77570f sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0x8e7a4769 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x8e9d6a95 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x8eacb676 s390_pci_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x8ebc3baa skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8e78cc05 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x8e7deb12 crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0x8eb0f76f security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x8eb324d7 pci_msi_unmask_irq EXPORT_SYMBOL_GPL vmlinux 0x8ec11d01 kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x8eca99fe __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x8eccef7e dax_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x8ed721be vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0x8ec7f523 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ed4db91 iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0x8edb0ce6 register_fprobe_syms -EXPORT_SYMBOL_GPL vmlinux 0x8edbcd1f fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x8edc377a sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x8ee234ec synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x8ee89d88 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x8ee664e4 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eec8b3e show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef4add8 msi_unlock_descs -EXPORT_SYMBOL_GPL vmlinux 0x8ef85cb2 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x8efbaea3 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x8eff3767 gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x8f39f7e2 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x8f4057a2 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0x8f4f5b83 __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x8f50e672 ip6_flush_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x8f5bf523 __zpci_load -EXPORT_SYMBOL_GPL vmlinux 0x8f6b9bf0 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f6b657e locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x8f6c89b9 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f83f7d0 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x8f845095 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x8f997176 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x8f9a7b67 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8f7f7681 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x8fb0f31d crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x8fd4102b regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x8fe4e98e sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8fb449d7 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x8fceee4c iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x8fd2c957 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x8fec0064 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff98878 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x8ff618c7 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x8ffe457f irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x9002c3f8 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x9002ed13 udp_splice_eof EXPORT_SYMBOL_GPL vmlinux 0x9007f9cf ftrace_set_filter_ips -EXPORT_SYMBOL_GPL vmlinux 0x900a182b wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x9014f4d3 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x901f683c generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x9025d180 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x902bf7b4 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x902f69d8 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x902e2142 fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90419359 __devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x907580b7 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x907e28f9 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x903d43b1 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x903ed173 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x9040c4c0 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x90414495 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x904d4806 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x9055c962 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x905c6127 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x906808d8 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x907733b3 scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0x907ffb62 __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0x909a8abf nr_running EXPORT_SYMBOL_GPL vmlinux 0x909fda42 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x90a845e6 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x90a98738 gmap_create EXPORT_SYMBOL_GPL vmlinux 0x90aee818 make_vfsgid -EXPORT_SYMBOL_GPL vmlinux 0x90bd5e1a xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x90b2e2ed bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x90c15b2d ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x90dcfd53 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x90f7ec23 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x90faad5c shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x90fac662 __traceiter_br_mdb_full -EXPORT_SYMBOL_GPL vmlinux 0x910cda47 iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0x911fbcbe __gmap_translate -EXPORT_SYMBOL_GPL vmlinux 0x913ae09e fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x913e3de0 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x90e47366 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x90f68d4f rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x90faa648 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x9110fcdb pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9137c368 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x913c715f device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x91483af0 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x91519063 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x9187f5cc regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0x918ba7b4 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x9148a4bc crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x91625202 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a27cf6 iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91b8ac8b blk_crypto_intersect_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x91bd6965 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x91d768ae generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x91e79a26 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x91cfa8f6 dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x92072e01 noop_direct_IO -EXPORT_SYMBOL_GPL vmlinux 0x9216dc76 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x9229cc39 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x91eaee5d nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x91eb6549 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x91ff14ce skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x922f5030 fuse_dev_install EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x926fcdb8 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x9279d303 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x92819235 crypto_akcipher_sync_post EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92a9976a replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0x92ac0579 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x92be5f13 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x92c5ef45 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x92a963d2 serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x92cb609e __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dfb396 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x92dfe493 dm_report_zones EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work EXPORT_SYMBOL_GPL vmlinux 0x931ac7c0 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x931f0b4b tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932ea2b9 fscrypt_prepare_lookup_partial -EXPORT_SYMBOL_GPL vmlinux 0x9331a66c tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x93336b0c crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x935d976a synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p EXPORT_SYMBOL_GPL vmlinux 0x936c7caf perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x937370cf device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x9380e41b crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x9381800f gmap_convert_to_secure EXPORT_SYMBOL_GPL vmlinux 0x938cf9d8 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x93a56be8 inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0x93ab834b balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0x93af31ad vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0x93c9bbf6 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x93e99335 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x93ae3aff kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x93b7a67d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x93b9cba9 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x93c071ea device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x93e610f3 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93fb4a22 genphy_c45_fast_retrain -EXPORT_SYMBOL_GPL vmlinux 0x940f53ce kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x93f999b8 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x940619e0 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x94160518 __put_task_struct_rcu_cb +EXPORT_SYMBOL_GPL vmlinux 0x941ed950 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9430118d tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x94398cb7 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x9466ba76 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x94390995 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x9455b791 ccw_device_pnso +EXPORT_SYMBOL_GPL vmlinux 0x94574605 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x94643367 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x94656d75 sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x947a71d7 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x948c0697 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x94ab78c5 gmap_unmap_segment -EXPORT_SYMBOL_GPL vmlinux 0x94b19a3e genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0x94b42e55 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x94baf1de kvm_read_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x94bbb62f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x94d1851b dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x94dac240 dax_add_host -EXPORT_SYMBOL_GPL vmlinux 0x94e2da38 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0x94ea0ea0 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x94eb9d74 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x95020ab5 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x94ef87f1 scm_driver_register EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9509e58d ccw_device_get_chid +EXPORT_SYMBOL_GPL vmlinux 0x95170281 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x9523863c disk_set_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x952e1168 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x953603f7 fat_attach EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x954c2f47 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9554f66a fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x953e91d9 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x954b6749 kvm_put_kvm EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955c637a fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0x95618de1 component_master_del EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0x95792dd1 fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0x95825d4b skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958aa592 crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958eb560 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x958fcc1b dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x959682a4 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x95988267 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x959a7d06 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x95a3d156 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x95a49194 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x95c798dd tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x95e1d754 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x95e5652b wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x95f1926b __traceiter_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x9608eb57 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x95cb2e24 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x95e2dd6d vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x95e84183 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x960396fa devl_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x9611aac3 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x9613d8b7 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x961cf9f8 disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0x96458885 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x96331826 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x96480440 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x96512412 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x96524323 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x965c905d register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x9670e367 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x96946f75 gmap_read_table +EXPORT_SYMBOL_GPL vmlinux 0x9666aea2 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x9666ed92 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96730351 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9679e6e0 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x9682d8ec bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x968858b0 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x968cdc07 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x96927fb0 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x969f51a3 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0x96c057c9 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x96b551f0 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x96c2dffa sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x96cf1ff1 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x96e7b2a2 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x96e4c948 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96ffc74b inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x97006c0b device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x9700b641 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971ce90b serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x97246f65 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x971a7eba blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x97203d4c pci_epc_mem_free_addr EXPORT_SYMBOL_GPL vmlinux 0x973d9070 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x9740d690 compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97689358 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x97765092 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x977e8ef8 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x978d4bcb phy_get_rate_matching -EXPORT_SYMBOL_GPL vmlinux 0x9793134a ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x97a53811 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0x97b04607 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x97b14ee2 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x97b81fc5 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x97cadba7 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x97d17326 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x97647e88 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x976de448 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x97780f6e perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x97795ead kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x97898b19 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x97910567 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x97936d40 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x9795b5c5 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x97a424b9 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x97b2a300 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x97b561c0 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x97c56cc3 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x97c76b10 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x97cc5d8f skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e2de78 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x97f0178b irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x97f6601d kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x97fa1c63 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x98064f55 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x981cbbc5 kthread_park EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x984ae4e2 __kthread_init_worker EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9852240a xdp_set_features_flag EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985d19a7 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x98673133 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x98731511 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x98671855 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x98742ad5 split_page EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987dabad vtime_account_kernel +EXPORT_SYMBOL_GPL vmlinux 0x988ad3d0 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x9894d4c1 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x989fc44c device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x98c6691a device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x98ea6653 __io_uring_cmd_do_in_task +EXPORT_SYMBOL_GPL vmlinux 0x9895ddbd virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x98bb1eb9 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x98d494b9 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x98ecae32 kernfs_put EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f4ea68 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0x9902c095 ZSTD_customMalloc -EXPORT_SYMBOL_GPL vmlinux 0x991913c4 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x993e5c6f to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x99501b11 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x995c72d2 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9992d58f genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x999b47d4 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x996daba6 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9972c747 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x997c1295 devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99a19761 tpm_chip_bootstrap +EXPORT_SYMBOL_GPL vmlinux 0x99ab0f2c component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x99b5707d devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x99b6f255 md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at EXPORT_SYMBOL_GPL vmlinux 0x99f4591c key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9a012aa1 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9a0f25c6 pci_iov_get_pf_drvdata EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a128d58 __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x9a3800de perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x9a597913 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9a59ec8d gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0x9a8697df input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x9a8d9bd0 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x9a96443a kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x9ab925cd __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x9a35cca4 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x9a43e85d dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x9a7aa037 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x9a8bfbe9 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x9ac75a5d sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0x9ad3de36 mm_account_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x9ae9813f to_software_node EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9b15d64c watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9afbbbe9 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x9b05f5bf regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9b0e599c is_software_node EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x9b19a48e kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0x9b2f9ff2 inet_bhash2_update_saddr -EXPORT_SYMBOL_GPL vmlinux 0x9b3dbc2f driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9b4659b3 simple_rename_exchange -EXPORT_SYMBOL_GPL vmlinux 0x9b5b5c64 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x9b5e1308 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x9b666e4b kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b2e0d72 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x9b3bce8d ccw_device_get_util_str +EXPORT_SYMBOL_GPL vmlinux 0x9b6cca18 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b856e48 fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0x9b88c932 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x9b8be12c gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9b8ed5a6 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b953264 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9ba30670 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9baf917e vring_notification_data EXPORT_SYMBOL_GPL vmlinux 0x9bb3fcd1 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9bd8b7cb tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x9bdb548b blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bd2f0a3 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be51373 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9c29155c vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x9bf849c7 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bf8d56c __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x9c3386a7 tcp_slow_start EXPORT_SYMBOL_GPL vmlinux 0x9c35f138 unregister_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x9c4703fa nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x9c6eddab devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x9c40421b genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9c68da7c __fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c70bf61 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x9c88cc15 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x9c8d05c2 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x9cbed626 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c722cf0 devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x9c7fe676 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x9c858bef pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x9ca1cabd devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals -EXPORT_SYMBOL_GPL vmlinux 0x9ce343b6 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x9ce6eb16 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9cfe93ab tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d198ca8 bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0x9d28357e vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d311859 event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0x9d3967d9 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x9d3abb49 css_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d6311d4 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x9d7ec130 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x9d811977 register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0x9d887e6b get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x9d4ca62c iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9d524276 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d5d806b nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x9d639759 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x9d642eda pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x9d646e8a __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x9d749983 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x9d7ff323 scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d949fb4 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x9d9c5193 s390_unlist_old_asce +EXPORT_SYMBOL_GPL vmlinux 0x9d9e9854 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9da7e38a blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x9dae4f20 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9dc35343 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9dccd607 mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x9dda4d1a platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9de876d4 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9ddf6d21 dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x9df4a2a8 idr_remove EXPORT_SYMBOL_GPL vmlinux 0x9df620c9 sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x9dfe3c85 __crypto_alloc_tfmgfp EXPORT_SYMBOL_GPL vmlinux 0x9e018752 pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0x9e02539b cio_commit_config -EXPORT_SYMBOL_GPL vmlinux 0x9e0cf576 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e13a02b bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x9e197f84 chsc_scud -EXPORT_SYMBOL_GPL vmlinux 0x9e35c3ba devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9e3d9906 device_link_remove EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e5360e9 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0x9e659a5d devl_assert_locked -EXPORT_SYMBOL_GPL vmlinux 0x9e724f0f udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x9e79def3 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x9e8c7ced mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9e555a50 css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9e658f36 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x9e65f3fd appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x9e79cb2f simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x9e9adaa8 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x9e9b81df xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9e9f4732 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x9e9fafc0 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x9ebfe051 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x9ebf823e virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9eccb708 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed674b8 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x9edbab9c genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x9ee577ea preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ed5e87c kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef197da device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f009582 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x9f153487 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x9f3ee63e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x9f4b4197 relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x9f65732f regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x9f6dfeb9 tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x9f8e76cd ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x9f91a76c cio_tm_start_key -EXPORT_SYMBOL_GPL vmlinux 0x9fa2c292 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x9f6a8f7e xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x9f6d1a77 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9f7ee0a6 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x9f8181dc blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x9f8a3dbd regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x9f9fe5ef gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa826ee bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x9fb0c40d skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0x9fb996a7 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd91cee devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0xa0008f77 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xa00e2559 folio_alloc_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa04c5c3c pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa0145ce4 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xa0369ad1 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xa044fea8 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa04ee65f of_css EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa060024b __virtio_unbreak_device EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa082038e nop_posix_acl_access -EXPORT_SYMBOL_GPL vmlinux 0xa083ec41 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0xa08a40f4 kvm_vcpu_halt -EXPORT_SYMBOL_GPL vmlinux 0xa08bd5a2 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa08fcd6c crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xa0980535 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0xa0a021ec device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xa0a184b3 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xa0a8cd88 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xa0890117 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa09e42c2 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xa0a04a09 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xa0b721aa kvm_s390_pv_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xa0b98bde pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0xa0bc9efe tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa0bd3348 kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa109f611 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0xa10a693c tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xa0fdcdb1 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xa10cf488 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa11164cc vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0xa111e665 pernet_ops_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xa12a63cd wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xa13eeca3 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xa1465db3 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xa1498a55 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xa151fc3d scsi_template_proc_dir -EXPORT_SYMBOL_GPL vmlinux 0xa1646979 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xa166bc94 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa1acbdeb do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xa1870fa1 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xa1963f82 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xa19c0c3c __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xa1a031e7 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa1bb64d1 blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1cea8bb crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0xa1d8ef42 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xa1cd7274 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xa1ed2c76 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa1f5a649 gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xa1f60014 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa1f77c33 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xa20c009f crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk EXPORT_SYMBOL_GPL vmlinux 0xa20f3f75 __traceiter_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xa2106741 genphy_c45_read_eee_abilities EXPORT_SYMBOL_GPL vmlinux 0xa211c34b unregister_fprobe -EXPORT_SYMBOL_GPL vmlinux 0xa24457a4 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xa2471a92 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0xa24bbffd devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xa24bc889 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa21d0d78 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xa238ab62 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa2531e45 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa268a0e3 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27022e5 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xa28a3ad3 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xa2934665 devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xa2957f5b pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xa29aa3f4 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0xa29b543b md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xa28550b5 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2b111a6 __sk_flush_backlog -EXPORT_SYMBOL_GPL vmlinux 0xa2ba9d18 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xa2bb9b6a serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2ed7d00 gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0xa2fc8bfe mas_erase -EXPORT_SYMBOL_GPL vmlinux 0xa30a283f tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0xa3116172 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0xa3294680 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xa3479fcd devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa360cef3 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xa3341f3e vcpu_put EXPORT_SYMBOL_GPL vmlinux 0xa3687f21 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0xa37fed95 pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xa381645c blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0xa36b8665 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xa37e3dfc task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa3924bc3 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xa3974592 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa39abf34 regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0xa39f5b9c udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xa3ac8524 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa399e1f0 dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0xa3b0d5d6 __xas_next EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c6a246 gmap_discard -EXPORT_SYMBOL_GPL vmlinux 0xa3d93b7f gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xa3cc4087 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa3cca50b device_find_any_child EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3efa563 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f66c84 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xa3f829f6 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0xa3faacf3 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xa3f5e298 kvm_s390_gisc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3f761a2 gmap_shadow_r2t EXPORT_SYMBOL_GPL vmlinux 0xa4062a57 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa40b3a0c fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xa40a300c ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa415f560 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xa41947f9 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xa41ccf54 check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0xa43b0116 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa4453872 bus_get_dev_root +EXPORT_SYMBOL_GPL vmlinux 0xa4160296 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa42af92f genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa464bebb irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0xa467484b pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0xa46d72a9 md_start +EXPORT_SYMBOL_GPL vmlinux 0xa461b78c splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xa46bf3b0 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xa47c0b2b wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xa47c218e tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xa48bc0f9 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa4a2c4ba devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xa4a7ac32 devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b44132 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string -EXPORT_SYMBOL_GPL vmlinux 0xa4ccc9f1 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0xa4d6203c pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0xa4e0a264 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xa50aebcb io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xa5204276 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xa52e57ea dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xa4ccac3e buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xa4de1e84 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xa5226d09 serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa571affc bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xa55d3aa4 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa5612520 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xa56218c7 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xa5731fee fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable -EXPORT_SYMBOL_GPL vmlinux 0xa5809fee udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xa5b8ff4b blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0xa5ceba5a crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa59b6676 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa5b1ca6e iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xa5bdf468 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xa5c0bf4e md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa5c4df6a wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xa5e4c13b irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5e6e214 crypto_sig_verify +EXPORT_SYMBOL_GPL vmlinux 0xa5e7b24f io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa6112a07 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa617f1b6 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa625ffad devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa62cec4e fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xa648ee1e iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xa64d4564 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa6609c48 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xa673515c ccw_device_get_util_str +EXPORT_SYMBOL_GPL vmlinux 0xa65e1c0a regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xa67245e8 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xa6a0511a perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xa6ad66ce follow_pte EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xa6b288ad gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xa6b373f2 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa70393bd cio_enable_subchannel EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa72038f3 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xa723eddc perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xa7292e1c firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xa7161df4 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xa721e07d pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa73cf09e sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xa74cf711 chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0xa74eabac fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xa756d674 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xa75fd3ab freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa76f08d4 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xa784f6f5 evict_inodes EXPORT_SYMBOL_GPL vmlinux 0xa790ab4b __tracepoint_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xa796cf7f devl_params_register +EXPORT_SYMBOL_GPL vmlinux 0xa7a0cce4 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xa7a99c1a tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa7ab7ed7 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0xa7b64453 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0xa7bb5cfb pkcs7_supply_detached_data +EXPORT_SYMBOL_GPL vmlinux 0xa7bba40d blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xa7c5160b fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0xa7c68231 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa7c6ef75 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xa7cb2d4f zpci_disable_device -EXPORT_SYMBOL_GPL vmlinux 0xa7ea7a53 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xa7faba75 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0xa80afe62 fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7d789b4 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xa7fe4a50 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xa80705ba tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0xa81f00ff pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xa82afb69 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa83acd74 dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa879c2e5 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0xa87a16e5 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xa889fa4c devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xa88e158a crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a086fe linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0xa8af38b9 sbitmap_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xa8b1dc9d __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0xa8c66492 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xa8cef3c2 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xa8dffcce debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa91b3714 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa8b62936 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xa8d817dd xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xa8f0b8e2 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xa8f361c2 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xa8ff0289 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa90749f5 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0xa907be24 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xa918d106 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93ed117 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0xa9459c97 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0xa96737cf fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xa96c5208 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0xa98b2e1e platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xa98f4428 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xa93ef751 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xa950d86e perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xa9679880 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa9730f8c device_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99e8ef0 __s390_uv_destroy_range EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9afb2dc scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0xa9cb5ef8 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xa9cabfb3 badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0xa9f2ff54 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xa9f8a6dc gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xa9d2f760 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xa9df1dc8 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa9fb10a7 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie -EXPORT_SYMBOL_GPL vmlinux 0xaa16541b genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xaa2a7d7e irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xaa38bd41 dm_audit_log_ti -EXPORT_SYMBOL_GPL vmlinux 0xaa392e94 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xaa52cdd2 mmput -EXPORT_SYMBOL_GPL vmlinux 0xaa5423af msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0xaa06ee73 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xaa0b61bc register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa17fe5a irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xaa40f787 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa82f81b sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xaa96013a phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaaba7cf1 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xaad45c7a dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xaad7fa08 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0xaaf434f6 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xaae0d80e nop_posix_acl_access EXPORT_SYMBOL_GPL vmlinux 0xaafa5482 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xab14648b gmap_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0xab162955 raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0xab17e5dc gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xab282c88 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0xab48801c evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xab4bed5e sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xab555b8a tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0xab7cb255 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0xabc3df8e pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xabc3fd7d bdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xabc481f8 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xab0cabab ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xab23d4b8 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xab2cd2d6 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xab34e538 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xab36ec23 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xab4b6b6c umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xab789c4b gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd0bedf alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xabd78add irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xabd928cd devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xabea9506 fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xabf6def3 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xac0825f0 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xabc7885c clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xabd83771 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xabe2f25a iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xac0a6bf9 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0xac2268cc bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xac2540ea drop_reasons_register_subsys -EXPORT_SYMBOL_GPL vmlinux 0xac486293 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xac2f8f95 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xac4672f0 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xac477737 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xac49d390 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0xac7ab5fa synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xac85ded9 crypto_alloc_sig -EXPORT_SYMBOL_GPL vmlinux 0xac8e118b sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xaca4d4b7 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xacab654d virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0xacd6c8f2 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xacd729b4 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xacea4461 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xacf768ab crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xad01c3dc __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xad086be0 split_page -EXPORT_SYMBOL_GPL vmlinux 0xad20eb50 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0xad2ae1a9 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xac92e822 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xacbc04af devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xacd03e45 xdp_set_features_flag +EXPORT_SYMBOL_GPL vmlinux 0xacd724c6 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xacde5232 devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xacfe1b00 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xad02a3f6 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xad2de614 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xad32d4ec devm_kmemdup EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad3e4ea9 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad4eb420 regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad68be2f device_property_present -EXPORT_SYMBOL_GPL vmlinux 0xad72bf59 fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad78945e __traceiter_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xad9cb44a kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xad7cfb29 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xad830ed1 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xad865378 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xad97ed7b devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xad9ee66c modify_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada425f0 hvc_remove EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 -EXPORT_SYMBOL_GPL vmlinux 0xadac9656 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xadad0e93 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xaddc2387 crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0xadfb2f65 ftrace_free_filter EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae144f1f dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xae25eddd genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xae2b0960 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0xae2ef45b devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae16b034 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xae209b81 fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae4a428b pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xae428c33 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xae513ea6 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6d8acf regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xae7a6bd7 debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae9342d0 iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xae9ee47e pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0xaeb503ee sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xaec48b1b __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0xaeda11c9 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xaee74507 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xaee7830c ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xaeeeb0ca zpci_register_ioat -EXPORT_SYMBOL_GPL vmlinux 0xaefc9b61 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xaeffc032 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xaf06f254 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xaf0f6278 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xaf116afc vp_legacy_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xaf2561c0 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xaf37bb75 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0xaf39c548 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xaeaeffb7 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xaece6579 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xaed030c8 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xaed0601e msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xaed45794 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaed591b8 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xaee0559a inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0xaf0bcbcb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xaf1478f6 xfrm_state_mtu EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xaf4d0ef5 crypto_akcipher_sync_prep -EXPORT_SYMBOL_GPL vmlinux 0xaf6be0cc blk_mq_quiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0xaf72ee75 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xaf3ea5b2 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xaf45ad43 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xaf53f3d5 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xaf7ad94c __SCK__tp_func_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xaf861b43 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0xaf88d6ee sched_show_task EXPORT_SYMBOL_GPL vmlinux 0xaf89c1be mas_next -EXPORT_SYMBOL_GPL vmlinux 0xaf934ea4 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xaf966e43 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xafbdefbe get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0xafc1874a regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xaf8cc304 fat_detach EXPORT_SYMBOL_GPL vmlinux 0xafc7a41d hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0xafd8a278 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xafdeab4a css_sched_sch_todo EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xaffe65e0 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xb0135289 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xafefdb8f dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xb01bb522 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xb04111d0 raw_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb073baed bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb07f70d0 __pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0xb0802f90 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb0a4cee8 cmf_read -EXPORT_SYMBOL_GPL vmlinux 0xb0a6f84a strp_done +EXPORT_SYMBOL_GPL vmlinux 0xb0960bbe failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0a187f2 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xb0a26c4e device_rename +EXPORT_SYMBOL_GPL vmlinux 0xb0b44744 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c17d26 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xb0d1d9c0 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0xb0b8a9b9 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bc205f fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb0d21f57 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xb0dabfc2 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xb0e21c19 ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0xb0e938c4 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xb0ec7fe6 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xb0ec34a5 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb125c73a linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0xb13311f7 sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xb13713c0 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xb1432f4f devl_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb14f0c2e devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1231bb4 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xb1268184 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb13fa784 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xb15096aa gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb16d5966 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xb16dbd7d do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xb178b890 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb1a94180 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xb1af5ad2 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xb18aa70c pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb19d8504 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xb19f0f9b cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xb1a261f0 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xb1accb12 vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0xb1b1c93e atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb1b3950e class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail -EXPORT_SYMBOL_GPL vmlinux 0xb1c79e94 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xb1c29675 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xb1c3e839 tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0xb1cdea85 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xb1d33042 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb212574e irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xb217ed89 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xb223d354 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb22d61d8 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xb23907a0 dm_submit_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xb239b95f xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xb23a364e sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb260d2bd sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xb261bec8 sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26c0fd5 devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb275b70d fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xb28f2eeb crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xb29f6a70 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xb29a1005 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xb2ac9a6f strp_stop -EXPORT_SYMBOL_GPL vmlinux 0xb2acfbfa devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb2acea78 genphy_c45_loopback EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2ca00b7 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xb2cc357a shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xb2d21dff blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xb2dd21b9 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xb2da450a pci_set_cacheline_size EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb300f410 regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb308d6fb md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xb32bf010 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0xb3510553 kvm_arch_crypto_set_masks -EXPORT_SYMBOL_GPL vmlinux 0xb3666e29 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xb368f824 s390_sha_update -EXPORT_SYMBOL_GPL vmlinux 0xb3b1352e kvm_s390_pv_cpu_is_protected -EXPORT_SYMBOL_GPL vmlinux 0xb3c4e08d vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xb3d2a1cd ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xb3ec10a2 pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xb400a9c5 cio_tm_intrg -EXPORT_SYMBOL_GPL vmlinux 0xb40a7207 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb316eea4 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xb34ef929 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xb389c853 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xb39dd73f regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xb3a6ac92 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb3b4c9f0 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xb3be4298 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb3ca9339 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xb409e0a5 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb414d4fe __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xb41fc6e2 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xb426eb80 crypto_clone_shash +EXPORT_SYMBOL_GPL vmlinux 0xb42833e9 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0xb4339edb iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb43b5259 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb446b0f4 seq_buf_do_printk EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb4526b19 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xb452cf02 fb_sys_read EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb4703fa7 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xb474d266 fat_remove_entries -EXPORT_SYMBOL_GPL vmlinux 0xb4a867ae unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xb47bc220 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xb4802ac0 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb48078de dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb484f98e switchdev_handle_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cb05a1 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xb4e38b9f vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb4ecc1c2 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb4edb989 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xb4fe3fc1 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb515b861 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0xb51d438f get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xb536a2c1 pci_ims_alloc_irq -EXPORT_SYMBOL_GPL vmlinux 0xb555bf60 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xb55aa52a __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xb529cf5c dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xb532c13d set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb55595f7 fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul EXPORT_SYMBOL_GPL vmlinux 0xb570745c __SCK__tp_func_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xb57daec2 switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0xb583f7d7 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xb58c780e kvm_release_page_dirty EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xb5aaa7d8 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0xb5c3d7ce dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xb5c4c201 dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0xb5eced8c devl_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xb5f7a110 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb59a69a8 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xb5a6b496 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xb5b59739 fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0xb5c6ec8e dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5d067c3 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xb5df369f percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb5ead6b6 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xb5f73cdb mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb5fbf4e4 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xb6068c18 transport_setup_device EXPORT_SYMBOL_GPL vmlinux 0xb6088146 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xb617b6e6 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64f0ef8 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xb655d449 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xb674e800 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb6579add vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xb6674e1b device_register +EXPORT_SYMBOL_GPL vmlinux 0xb670a8b8 devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0xb6842fae mas_find_rev -EXPORT_SYMBOL_GPL vmlinux 0xb692e9a7 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb69c68d8 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xb6b3e8c3 __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb6b4f963 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0xb6bb29fc user_update -EXPORT_SYMBOL_GPL vmlinux 0xb6bb88fb md_stop -EXPORT_SYMBOL_GPL vmlinux 0xb6dd2e60 request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xb6e1b508 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xb72272ad fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xb6a7e5f9 devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0xb6c41503 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xb6c4c0f7 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xb6e52a01 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xb70c4907 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xb715acea crypto_register_acomps EXPORT_SYMBOL_GPL vmlinux 0xb730ef83 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0xb7736870 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xb774ca50 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb781a4a7 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xb74c7c16 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xb7651e76 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xb76e6c7a posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xb7715179 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xb77192ae tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xb7786f4e component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb79ce0c3 kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xb79ff2fc ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7a9c6cc regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0xb7b350ed klist_init -EXPORT_SYMBOL_GPL vmlinux 0xb7c083d6 virtio_reset_device EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c9e28d fwnode_remove_software_node EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb7edb43e devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xb7f3419e kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0xb803f816 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0xb81c9f1e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0xb84b496c iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0xb85136de devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb81e689b device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xb82236c7 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xb82411ea fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb845443d synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xb86279da vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8938cc7 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a07ae7 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xb8cb9d71 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8cff6b2 user_read -EXPORT_SYMBOL_GPL vmlinux 0xb8e79aeb devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xb8f7fc18 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xb8d07dee request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xb90f85f6 scsi_block_targets EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb923639f serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xb93173eb bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block +EXPORT_SYMBOL_GPL vmlinux 0xb9534d8f tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xb965e577 cio_cancel_halt_clear EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush EXPORT_SYMBOL_GPL vmlinux 0xb980dc42 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb997ff87 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0xb99e14ca crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0xb9a66844 fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0xb9a772f5 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0xb9ac0adc kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0xb9b28c02 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xb9b755a2 ccw_device_siosl -EXPORT_SYMBOL_GPL vmlinux 0xb9c203fd skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xb9a88b49 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9ce9728 fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d69f5c ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0xba158068 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xba19f519 __virtqueue_unbreak -EXPORT_SYMBOL_GPL vmlinux 0xba1b1c31 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xba29b7dd pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xba31093a tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0xba402ae8 file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0xba60bbd6 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xb9da0ebe bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xb9ea77a1 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9f1927e ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xb9f6cb23 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xba021701 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xba0c082e kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xba498b42 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0xba6b73f9 zpci_aif_sbv +EXPORT_SYMBOL_GPL vmlinux 0xba6bc195 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0xba6eb67d __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xba7ad70b synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xba875a4b device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xba9a4443 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xbaade660 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0xbabd6de6 devl_lock +EXPORT_SYMBOL_GPL vmlinux 0xbaac6526 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xbac59303 devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0xbac94448 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xbaf0751f tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0xbaf1e275 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xbadc0d5e iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xbaf4b75f devl_params_register EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbb008ff2 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0xbaf6c317 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb14cc55 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xbb1febf7 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xbb23b38e ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0xbb201e58 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2ad1d2 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0xbb32e49b css_general_characteristics -EXPORT_SYMBOL_GPL vmlinux 0xbb3d5fce page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbb41b0a6 serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xbb53df99 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xbb594b8f skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xbb5c8763 rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb713ce7 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb734cae crypto_unregister_alg EXPORT_SYMBOL_GPL vmlinux 0xbb7b3f80 chp_ssd_get_mask EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xbba94ced sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0xbbc63fee trace_add_event_call -EXPORT_SYMBOL_GPL vmlinux 0xbbef8520 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0xbbf13f0a blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0xbbf8221a virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0xbc22b0fd ext_pi_type1_crc64 -EXPORT_SYMBOL_GPL vmlinux 0xbc28a2d4 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xbbcd7236 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xbc00e6cd __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xbc220338 sysfs_file_change_owner EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap +EXPORT_SYMBOL_GPL vmlinux 0xbc3313b8 kvm_get_kvm EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4455b2 kvm_read_guest EXPORT_SYMBOL_GPL vmlinux 0xbc4c4bcc trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xbc65f81b fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xbc5c609b fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7b9040 vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0xbc831351 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xbc875da4 bio_clone_blkg_association -EXPORT_SYMBOL_GPL vmlinux 0xbca5dd91 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0xbcac0acd skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xbc71611f dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xbc74f4de pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccd05a1 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xbcdbf543 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbcc3f36b kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xbccda317 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xbccf161c gmap_mprotect_notify EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbcdd7763 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xbcec0323 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0xbcee4610 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xbcef1071 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xbce0d95f serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xbce3ee69 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xbcf19d83 subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd0b6a8a inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbd0b813f __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xbd0c6f56 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xbd1af44c desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd544036 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0xbd5c423e bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0xbd6830ff klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0xbd693d7e kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xbd4e714a kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xbd521335 gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0xbd658e7e mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd813f22 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xbd959888 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xbd95e941 blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0xbd975194 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xbd99cf3f gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xbd87e2a7 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xbd96eb70 blk_crypto_intersect_capabilities EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbda560a1 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xbda97f7a register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xbda9fb55 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xbdb242d9 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xbdcf7357 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xbdc091a2 pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbddac79d l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbde439fb nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xbe008fbb sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xbe11aafe blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xbe415ae8 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xbe4504ee devlink_port_register_with_ops -EXPORT_SYMBOL_GPL vmlinux 0xbe4564e1 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xbe51d308 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0xbe60cead gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0xbe661c7e pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xbdf5123a badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xbdfedb58 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xbe182d4b __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xbe42dd49 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xbe43fbc4 iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0xbe50105c set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xbe52964f device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe691858 cio_clear -EXPORT_SYMBOL_GPL vmlinux 0xbe8893d8 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xbe6e73b5 list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9ec1d6 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea826ce fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xbeaa3a16 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xbeca9d41 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0xbecdf38f badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xbedbc05b bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xbee1bae9 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xbee2913b sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xbeb29474 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xbec30b3d device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xbed6a47f watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xbee2afa7 io_uring_cmd_do_in_task_lazy +EXPORT_SYMBOL_GPL vmlinux 0xbef9582d gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xbefc320d gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf1120f8 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xbf2b140c crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xbf261cb6 kvm_release_page_clean EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf3896c6 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xbf2f271c irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf453ad5 dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0xbf4fe00b component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xbf746e7f xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xbf8b6d22 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xbf4952b8 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbf54f9b1 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xbf550ba5 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xbf6efb15 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xbf871157 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0xbf91ca88 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xbfb37f3e __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0xbfb7cea6 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0xbfb8f9a5 gmap_get -EXPORT_SYMBOL_GPL vmlinux 0xbfbad29c msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xbfbb1949 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xbfd4dcbf serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xbfb0c166 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbfbd856e sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xbfc9a0ea skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xbfd42c95 ptep_notify EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe7660a badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xc011a6e6 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xc01d676c ip_route_output_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xc02b7ecf crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0xc044ccb5 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc01ab71b seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xc022a7a6 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xc02c8142 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xc02cada0 blk_crypto_has_capabilities EXPORT_SYMBOL_GPL vmlinux 0xc045988c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc07acac0 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xc08d9011 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc09420f6 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xc0a42f53 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xc0a4374b serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xc0929c57 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xc0a8146e generic_online_page EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0afdc77 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0b67980 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0xc0be3188 ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0xc0d6054c pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xc0dbf386 tty_buffer_space_avail EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc123d679 net_failover_create EXPORT_SYMBOL_GPL vmlinux 0xc132c453 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc13374f5 failover_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc15d80e3 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc179d5d1 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xc17e07c5 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xc197430a ccw_device_get_cssid +EXPORT_SYMBOL_GPL vmlinux 0xc138bd39 cmf_read +EXPORT_SYMBOL_GPL vmlinux 0xc155c0f1 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xc15b5755 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc17fe4c9 debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0xc18cc2f3 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xc1b7b740 device_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xc1b990aa sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0xc1be4b18 cio_enable_subchannel -EXPORT_SYMBOL_GPL vmlinux 0xc1c75f81 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0xc1cb4113 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xc1ceacc1 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xc1d345a7 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xc1dcda89 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xc1ddca99 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xc1ec94bb xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc1dac3ae device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc1e2c353 shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0xc1edf1ac freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc20aa799 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xc221049d __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc2158b2f fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc239a223 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xc2448702 blkg_conf_exit -EXPORT_SYMBOL_GPL vmlinux 0xc283d52c __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xc293d96f genphy_c45_pma_baset1_setup_master_slave -EXPORT_SYMBOL_GPL vmlinux 0xc29ab1e5 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0xc29b6192 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xc2362556 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xc245c6f0 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xc257712e regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xc27063cd do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc27b3838 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xc2873a10 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xc29b0f08 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xc2a1b188 s390_replace_asce EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2ab4ddb fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xc2ae49bc msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xc2af3418 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xc2b48ddb pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2cabd13 __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xc2de7608 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xc2f85644 gmap_remove -EXPORT_SYMBOL_GPL vmlinux 0xc304d297 pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xc304ebef gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0xc31dd214 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc2d03144 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xc2e2756b get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xc2f0ad2b __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2f339ce fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc301453a badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xc30de7eb pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xc3149992 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xc325b690 sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc35238d6 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xc34ee824 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc35bba0d sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc38d5ee6 __put_net -EXPORT_SYMBOL_GPL vmlinux 0xc3968a48 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc3ad888c pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0xc3916dc8 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xc3ad78b6 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax -EXPORT_SYMBOL_GPL vmlinux 0xc3c02bde bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xc3c41bc1 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc3be9a1d devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xc3c088e6 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3cffbff md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xc3d071d9 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xc3d211ba device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e11bd2 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xc3e48848 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f1b59a sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc3f9a027 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xc3fa0974 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xc403de1f call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd -EXPORT_SYMBOL_GPL vmlinux 0xc41d7f4f ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0xc4207b86 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xc41d72a8 tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all -EXPORT_SYMBOL_GPL vmlinux 0xc42c3d7c list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0xc4377dea sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xc45b3f46 vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0xc4697d11 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xc48064be blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xc42a7952 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xc43affbe crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xc45a1f5d pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc46ce408 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xc4732f22 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4762fa5 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xc47765d3 ima_file_check EXPORT_SYMBOL_GPL vmlinux 0xc480eb84 appldata_diag EXPORT_SYMBOL_GPL vmlinux 0xc4810203 nr_iowait EXPORT_SYMBOL_GPL vmlinux 0xc48f7eb5 is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xc4988ad2 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xc49b5519 blk_rq_poll EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc4a7e169 dma_resv_iter_first EXPORT_SYMBOL_GPL vmlinux 0xc4af157f srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc4b14807 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc4b722cc vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4ba5586 fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0xc4c9c75a synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xc4cba338 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc4da17f5 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xc4da6037 ccw_device_get_iid EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4fff2ba kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0xc50559de devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xc50c282a blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xc51bd040 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc527ffa0 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xc535a5fa crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xc539bdf1 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc53a92b6 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xc53ba24f atomic_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xc53cd7e4 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0xc5416964 dma_opt_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xc54e3bf3 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xc5618525 s390_reset_cmma -EXPORT_SYMBOL_GPL vmlinux 0xc56f58bc fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xc5535c37 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc558ed63 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc562e18f do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc56d6b58 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xc5704716 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5866921 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc59789ab fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xc5dac4c9 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0xc5dd4e04 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xc5fff0c4 virtio_require_restricted_mem_acc -EXPORT_SYMBOL_GPL vmlinux 0xc605bff5 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0xc60ee146 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xc5771a52 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc58af883 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xc5d5a32a mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc5d91951 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xc614070d __dev_fwnode EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61acb5d perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xc627821f kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xc62fd262 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0xc636d60f __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xc638c709 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xc639d8bc param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0xc643d58a devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xc65d0776 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xc6416c8d gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc66cc19c open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xc672ed5a virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xc67425fc pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc68e4973 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xc68d2ae2 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc6a2bf51 xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xc6ab9a27 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xc6b3bf41 tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xc6bf9813 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6c813cd platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xc6ed85c7 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xc69c100c skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xc6bd9065 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xc6e8d5de mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc6f5aaee iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0xc6f6d4c9 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0xc70cda8c tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xc70e7277 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xc720b46d bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xc727e3b9 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xc734b5d0 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0xc766bc85 inet_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xc767796f subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc75b3052 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0xc76da9fd radix_tree_preloads -EXPORT_SYMBOL_GPL vmlinux 0xc7708c40 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xc78dfefd __irq_apply_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xc791aa61 seg6_do_srh_encap -EXPORT_SYMBOL_GPL vmlinux 0xc7958c7c inet_send_prepare EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0xc7a49ae9 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xc7aef99e tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0xc7b13121 securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0xc7b5d628 gmap_pmdp_csp -EXPORT_SYMBOL_GPL vmlinux 0xc7b75bde __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xc7c637c1 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xc7e4296c sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xc7e5c8ba virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7ef5702 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xc7f7dc5a pcie_reset_flr EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fc596e preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xc80acfca chsc_sadc -EXPORT_SYMBOL_GPL vmlinux 0xc80ad1d7 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xc80bc3af pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0xc8124d3d class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0xc824f9d8 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xc82519b6 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8485e7d debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xc855f6ce crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xc85bd550 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xc861f8cc net_failover_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc86a55ce mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc8ab8d4f buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0xc8aece38 dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0xc8b649c1 devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xc8dc2bbe kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xc8a2f213 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xc8b037cb pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc8bfa877 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc8d790c0 devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xc8dae9ed nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8ec61cb genphy_c45_plca_get_status -EXPORT_SYMBOL_GPL vmlinux 0xc8ecaef5 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xc8fcf953 gpiod_disable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0xc9150d0f dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xc8f482f6 cio_tm_intrg +EXPORT_SYMBOL_GPL vmlinux 0xc901f20d param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xc907f2f8 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc90a838c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc90dd224 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc911e914 dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc922e727 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xc932cfa4 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xc953a60d scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xc946490b security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc94b7ee6 fb_sys_write EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9579357 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xc975d1ed security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xc95aa508 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc9728492 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9790394 __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0xc9794909 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98cccaa pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xc9af573c show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xc9832c96 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc9899307 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xc98c77b3 devm_kfree EXPORT_SYMBOL_GPL vmlinux 0xc9c77806 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xc9c802ab kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0xc9e1fa91 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc9df0366 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xc9eaf87d kthread_data EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xca1903a6 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xca23881f crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xca279301 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xca0c4f87 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca471e4a __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xca5ca2c8 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xca64f57f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xca6d5e07 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0xca732a32 sock_map_unhash EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca887f83 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xca89258b udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaa03691 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xcaa3ee18 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0xcab0ce1b gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xcac5e431 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0xcad29180 pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xcad3fff1 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0xcb165039 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xcb268ec0 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0xcb2b1810 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xcad5c0ac class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcaedbcc6 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xcaf640a1 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xcafba9f4 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xcb14960d virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xcb2b775e peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcb491bf4 nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xcb4de040 pci_hp_create_module_link EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb7fba2c fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xcba9ea4a strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xcbaa6907 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xcbd766b8 crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xcbda5c68 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xcb69bac8 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xcb6ad29e fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcb78b31b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xcbb466a2 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xcbb7699f smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xcbc5b843 blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf198e3 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xcc11ba43 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcc121b76 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcc3335e9 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xcc37b546 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcc3a5ea2 pci_vfs_assigned EXPORT_SYMBOL_GPL vmlinux 0xcc3f54e5 net_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xcc5a44d4 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0xcc85a269 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xcc453fa4 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xcc569844 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xcc5d91c9 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xcc92a116 mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcca80fa0 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0xcccc7c9b mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcca6eea3 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xccb93546 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xccbb4a84 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xccc096d0 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xcce7f066 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xccebea7d __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccfcf70b device_show_int -EXPORT_SYMBOL_GPL vmlinux 0xcd0df603 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xccfb5498 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd2946d3 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0xcd2df3b6 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0xcd308b4e modify_ftrace_direct_nolock -EXPORT_SYMBOL_GPL vmlinux 0xcd4d3120 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xcd5e1ae3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xcd38e434 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xcd607b39 relay_reset EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd86af16 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcd8e1051 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcd71a80f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xcd745f62 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xcd9138c3 genphy_c45_read_pma 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 0xcdab573c genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0xcda11d75 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xcdb37a42 xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdbe89be synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0xcdc20eff kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xcdc065c8 __traceiter_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde167e0 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xcde1c729 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0xcdf265c9 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xcdff5c38 __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0xce080078 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0xce0c102b inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xce0c2783 fb_deferred_io_mmap -EXPORT_SYMBOL_GPL vmlinux 0xce0f12c8 devl_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xce18e768 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xce286d36 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xce3d8104 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xcde3afb3 msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0xcdf87918 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xcdff9367 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xce022561 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xce4d69fd bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xce578686 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xce5d774e register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7bcf6f driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xce767ac1 iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xce7f1645 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xce84ffe0 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xce95040a fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xce9f30d9 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xcea41753 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xcea8a6a2 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xceaa1466 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xceaee30c fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xceb11cae fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xcedd4d48 fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0xcee5b4e3 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xcef54ac9 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0xcf0afbfb copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xcf21acf1 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xcf32320e smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xcf410b00 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xcf51b151 devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xcf6fcf61 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0xcf7eaefe crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xcf9a35c2 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xcf9d7c92 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0xcfa49405 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xcf327b94 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xcf374496 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xcf392a99 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xcf49a11c platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcf610dca crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xcf974675 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xcfad8a1c unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0xcfaeadaf klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xcfbc43b1 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xcfbcc2c9 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xd0129515 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0xd01463ce cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xd014bad6 scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0xcfd5eae2 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xcfde88a3 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcfe74b6d ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xcfef6ab1 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xcffbe162 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xd02ff31d crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0xd03bd8e2 mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd049d61a gmap_get_enabled EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd0512d69 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0xd04c7f3f fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd050c6bb irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xd050d30d mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd0ab4b21 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xd0836cab blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xd0855b89 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c53440 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xd0cb3ff4 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0xd0cd3ba2 crypto_sig_set_pubkey EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0e76b59 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xd1021a8f devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xd102b98a get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xd106882d blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xd108ada1 tcp_plb_check_rehash -EXPORT_SYMBOL_GPL vmlinux 0xd10b8706 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xd12ff95c crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xd1422cd0 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xd0e672c8 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd0e96f59 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xd12b80f5 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd153609e devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1539993 user_describe EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15d4945 net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0xd181b1cf devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd1916722 fscrypt_prepare_lookup_partial EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xd1ad6d38 uv_pin_shared +EXPORT_SYMBOL_GPL vmlinux 0xd1b7cd8d l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd1b81cdb bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xd1c4401b blk_mq_hctx_set_fq_lock_class EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1e7be87 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd1ddad79 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd1e3af3f pci_domain_nr EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2137a6a pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd241b523 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xd2473090 bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0xd255ec84 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xd2237a15 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xd22c6d35 platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd2673d76 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xd26c9299 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xd26b952a shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd293e44e ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xd27b6d24 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2c490a7 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd2c61911 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd2c72c79 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xd2f8d961 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0xd3034428 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0xd30a3546 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xd3095767 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd3161f83 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd31d8c91 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xd320dd7d gmap_pmdp_idte_local +EXPORT_SYMBOL_GPL vmlinux 0xd3235648 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xd3241991 __netpoll_cleanup EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xd32832ed crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xd32b6f0f __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xd332640f dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xd353c9e8 crypto_sig_set_privkey -EXPORT_SYMBOL_GPL vmlinux 0xd37b3321 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xd37c723a espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xd35d05ad gmap_shadow_r3t +EXPORT_SYMBOL_GPL vmlinux 0xd35f0a7a virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xd367dfc7 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xd36afd81 pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0xd383debd ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xd384c0c0 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xd39b1b4d pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b1adbe __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0xd3b69efb skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xd3b94d54 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xd3daf2ca nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xd3a055ee l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xd3ab8d95 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xd3d960bd sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xd3e4cb12 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f35227 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xd3f1a80c __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41a1cdb platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0xd42cbadb vp_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd42fddc9 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xd4439e2d devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xd44a1673 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xd4730720 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xd44d8113 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xd45417fd devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xd459ca58 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd468d851 dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd49a3c12 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0xd4a9bee2 device_link_del EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4bf483c inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c4dc06 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xd4c5604e devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4eab5a9 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xd4eb0ec1 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0xd4ef630c fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xd50d42c6 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xd51179d3 iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0xd516a804 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xd54d5202 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xd4e6224c class_register +EXPORT_SYMBOL_GPL vmlinux 0xd4ed7ab9 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xd4edc719 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xd50ba5f7 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata EXPORT_SYMBOL_GPL vmlinux 0xd570bc95 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xd57ad194 vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xd57c5d29 appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xd57f49eb fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a3807e dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0xd5a3f129 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd5b17266 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0xd5b776e9 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xd5e5bfb4 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xd5a40501 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xd5a5e8e8 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5bfd182 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xd5c9ab40 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xd5f5865d __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xd5f74cf8 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0xd60fd8ce virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0xd649fb6c __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd6202cc5 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xd63f8864 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd645c871 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd64872de fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd656e22c pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0xd65bfd07 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0xd66e9fec __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd673fec4 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0xd6a8d840 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd6784df2 ptep_test_and_clear_uc +EXPORT_SYMBOL_GPL vmlinux 0xd6817449 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd6932e74 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xd69ca91c cio_start_key +EXPORT_SYMBOL_GPL vmlinux 0xd69ebcd6 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0xd6a74d26 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd6ac58ac driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry -EXPORT_SYMBOL_GPL vmlinux 0xd6b15ce2 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0xd6cc4118 sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xd6d5c20d bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0xd6e24d44 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xd6e95dfa user_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd71e7cbe fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd725f94b phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xd6e9cfc1 tcp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xd6f51219 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd6f6c5f3 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd70fe46a tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd754e775 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xd7306462 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xd73662f6 blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0xd747284a device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xd752d1a2 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xd7741455 kvm_irq_has_notifier EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xd78c3ea6 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xd794e267 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xd7886a86 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd7bc180b devl_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd7abe0ec devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xd7b9474a crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd7c5adff component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xd7c9f3ed iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xd7d7e315 devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xd7dc7515 crc64_rocksoft -EXPORT_SYMBOL_GPL vmlinux 0xd7dece7c mddev_init -EXPORT_SYMBOL_GPL vmlinux 0xd7e62ce7 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0xd7f0e68a yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd7f5b25e arch_make_page_accessible +EXPORT_SYMBOL_GPL vmlinux 0xd7f7277a __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xd805598b __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd814d5e2 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xd8201371 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0xd823d36d __SCK__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xd830ee10 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xd839a90a crypto_create_tfm_node EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8596b10 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0xd85f7bb2 ZSTD_isError -EXPORT_SYMBOL_GPL vmlinux 0xd8645970 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xd87585ab pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xd881d392 irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xd8945021 devlink_to_dev -EXPORT_SYMBOL_GPL vmlinux 0xd8a3fba2 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0xd8edd178 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xd867b450 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xd8813dab rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8867a26 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xd890672e devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xd8a0bff4 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xd8befdeb badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xd8d0fb29 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd8d41fbf vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xd8dd54a5 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd8e1bcb3 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xd8f59170 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd9188a3a evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0xd91c5fdf tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data -EXPORT_SYMBOL_GPL vmlinux 0xd95292e5 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd938198b proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xd93d72b5 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9561368 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xd96323c9 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97f355b skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xd99650f1 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0xd9a79c0c device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xd9726b18 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xd9735534 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xd9a2ead5 gmap_fault EXPORT_SYMBOL_GPL vmlinux 0xd9b19aa5 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xd9b8cfda alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0xd9d3588e xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd9bb6c7b pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9bd3686 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xd9f50bea ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xda081b4d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xd9eb44ca iomap_file_buffered_write_punch_delalloc EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0a246b trace_array_put EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xda2088a7 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0xda23f283 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xda248542 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xda2a323b fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xda2dbb23 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xda1b98a9 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xda1dfee0 irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register -EXPORT_SYMBOL_GPL vmlinux 0xda60abb3 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xda44f309 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xda50e24b pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xda5a6ea6 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xda62f9a0 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0xda66f161 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0xda6cc011 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xda71f151 crypto_clone_cipher -EXPORT_SYMBOL_GPL vmlinux 0xda7d7ec9 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xda70dc9d crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xda7ee82c devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0xda847ac4 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xda9efa25 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0xdaa52cc3 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xda92d2dc pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdad261a4 fscrypt_prepare_symlink -EXPORT_SYMBOL_GPL vmlinux 0xdad4e1a7 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xdae2fd1d devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdaf96981 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xdafadcb1 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xdb3e9a6f __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xdab5bf06 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xdad49096 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xdadf9b6d clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xdaee593f skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xdb02a692 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xdb065109 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xdb340b62 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xdb57820e __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xdb6ec488 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb92c94b blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0xdb938301 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xdb9f70f6 md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xdb9fd722 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xdbb6c80c fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xdb91a7d4 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xdba34ee9 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdba4c15f tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0xdbba8eb2 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xdbc229c8 crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0xdbc9f595 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdbcb2073 vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbdd0906 device_set_node EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create -EXPORT_SYMBOL_GPL vmlinux 0xdbe85327 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xdbe7dec8 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbf0453b tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdbf4df44 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfc612b trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xdc0f4fe2 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xdc0e0e4f pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdc3087c2 component_master_del EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0xdc5786f9 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xdc5e7513 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xdc466719 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xdc50680d devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xdc5f2b74 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0xdc69193b synth_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc97d6be io_uring_cmd_do_in_task_lazy +EXPORT_SYMBOL_GPL vmlinux 0xdc92baee debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xdc990b97 debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0xdc9f6bca __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca3d750 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0xdcaa3d71 __virtio_unbreak_device -EXPORT_SYMBOL_GPL vmlinux 0xdd0182b7 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0xdd048741 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xdca9a8cc transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xdcaac0cf cio_tm_start_key +EXPORT_SYMBOL_GPL vmlinux 0xdcb3a35d swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdcb42ef4 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0xdcc2f8d2 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdcc40d04 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xdcf4bd2a bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xdd01da2f netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0dd95a kvm_s390_gisc_register EXPORT_SYMBOL_GPL vmlinux 0xdd129b46 register_fprobe -EXPORT_SYMBOL_GPL vmlinux 0xdd12d660 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xdd1fb5e3 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0xdd4f863f pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xdd12fe87 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xdd131fcf pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xdd1cee0b ping_err +EXPORT_SYMBOL_GPL vmlinux 0xdd4d6d2e fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xdd57f873 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xdd5ebc44 perf_report_aux_output_id EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd806cc9 crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd910cfe devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xdda771b6 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0xdda97ccf iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd863f73 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0xdd9ec7bd bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xddbc5fc6 pci_epc_linkdown EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc8d009 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xddc97b82 HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0xddf8e4ac class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xddd3fe86 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xddd7a2a2 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xddddd4af fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xdde44b5f folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xddfc87fb param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xddfe1ad7 __SCK__tp_func_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xde03b684 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0xde052e95 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xde091bb3 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xde0840ee genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde095a64 l3mdev_fib_table_rcu EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde1b5aff pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xde2cc3e7 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xde120773 zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xde2127ba __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde32ac59 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL vmlinux 0xde487663 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xde568869 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xde57a559 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xde5eeefe sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xde628da4 genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xdee47863 lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xdeeaf507 component_del -EXPORT_SYMBOL_GPL vmlinux 0xdf0adfd2 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0xde77f3c2 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xde90a7e2 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xde976493 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xdeebdfdd failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdef3bef5 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xdef95b4c evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xdf06c9b3 __fsverity_file_open EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf335859 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdf49ac71 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xdf4e964d crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xdf3157d8 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xdf4d1c15 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xdf54f68b regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xdf84cbbd skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xdf9a52ab gmap_destroy_page EXPORT_SYMBOL_GPL vmlinux 0xdf9bc82b sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xdf9d30ee find_vpid -EXPORT_SYMBOL_GPL vmlinux 0xdfd4a8dd dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xdfd5b079 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xdfe2e2ac irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xdfbaeb0b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xdfc166c8 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xdfd8ca2e devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xdff3aaeb sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xe00db6dc __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe01ac3ae smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xe01e7407 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xe033b7b6 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xe043468d debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xe04604ae irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0xe04df3d5 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xe05b4fdc irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xe038d816 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xe0401c85 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe0444356 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe066e0d7 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xe070658b fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xe098ae19 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xe099b984 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0xe0614a6f dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xe07faf9c md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0xe0b8364e __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xe0c30396 register_fprobe_ips -EXPORT_SYMBOL_GPL vmlinux 0xe0d10f29 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xe100b3e8 blk_add_driver_data -EXPORT_SYMBOL_GPL vmlinux 0xe114448b iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xe11490fc ccw_device_get_chid -EXPORT_SYMBOL_GPL vmlinux 0xe1159ede tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe1053a70 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xe1094e8d debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe1106cc9 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0xe12681a4 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xe139395d ip_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0xe13ce7db crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe14a5af3 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xe14aa950 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0xe165111a pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xe19ce79c tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xe1a65d92 fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xe1c1a4aa kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe136cbde add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xe1451aa4 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xe15c26ee firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xe1662e24 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe17bfe7b regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe17f61b8 devlink_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0xe184d8af devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xe197f824 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe1ab43a6 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xe1b9a6e0 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe1c32cdc dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1d62f4a phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xe1df5119 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xe1cd9b80 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xe1e67cc2 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0xe2053147 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xe2070a77 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xe20c260d mas_destroy -EXPORT_SYMBOL_GPL vmlinux 0xe213faa4 mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0xe21e17a1 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xe21ea7f3 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xe2130501 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe221b42c blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe2364ddc fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xe23913dc crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xe258286b gmap_shadow_sgt -EXPORT_SYMBOL_GPL vmlinux 0xe26cada8 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xe25139d7 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe25d1686 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xe25fcf8c __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xe260a352 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0xe27052f7 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xe29c974f pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe2a8455a fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2e2161e __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xe2e6fda5 dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xe2f7b150 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0xe2f8155d dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xe2dfac21 relay_close EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe30af7f0 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0xe3176fae sbitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xe31d93a3 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0xe3292a95 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0xe3348b5a iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0xe379dc93 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe371bd09 cio_resume +EXPORT_SYMBOL_GPL vmlinux 0xe372bdfd __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe37e61eb devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe381a26e __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe3a12031 devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe3ab8efc __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xe3a807c7 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b4dc45 switchdev_handle_fdb_event_to_device -EXPORT_SYMBOL_GPL vmlinux 0xe3c02d43 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xe3d839e5 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe3b492d6 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xe3cce388 irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3ee5c8e skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xe3f459ab crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe3e55917 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe411fe72 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xe41ce1d2 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xe42f7a23 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0xe4455061 crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0xe451d2f3 xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xe47b8ed7 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xe48e9c2a inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xe490e2e2 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xe495fd62 transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot EXPORT_SYMBOL_GPL vmlinux 0xe4a95266 blocking_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4c71497 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xe4befe4f sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xe4ceb36e strp_stop EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe524af71 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0xe52df0a2 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xe565718b ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe56c915a genphy_c45_read_eee_abilities -EXPORT_SYMBOL_GPL vmlinux 0xe56e580a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xe4efdc66 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xe5194337 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xe53ff968 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe574e81f __blk_trace_note_message EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe59e6012 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xe5a7824e gmap_mprotect_notify -EXPORT_SYMBOL_GPL vmlinux 0xe5b518f9 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xe5dee542 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0xe5e1d2d1 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0xe5e52ba3 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe59d34fd pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe5c5dd58 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xe5cc9bb0 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xe5ea7c94 __devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xe5ecfef1 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe612ae3e regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xe6192c58 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe61ec0e4 debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array EXPORT_SYMBOL_GPL vmlinux 0xe64dc1f4 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xe650f5af gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xe65e760d filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0xe6888bcb mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0xe6893fae dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xe67705f7 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xe69652c6 folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0xe6aef439 __tracepoint_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xe6bf8534 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xe6c3f77d iomap_file_buffered_write_punch_delalloc -EXPORT_SYMBOL_GPL vmlinux 0xe6c5a1d7 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0xe6df1ad7 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xe6b7a555 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xe6c1483e kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe6ca7a73 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xe6e3868f gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e67a1a rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6eb1585 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xe6ed1789 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xe6f7f24b gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe6f98f92 regmap_write EXPORT_SYMBOL_GPL vmlinux 0xe70a4c39 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0xe70afc1c tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xe70b75d5 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0xe721c2ac vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xe70d86db backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0xe7117f0a transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xe7329421 gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0xe7366d53 relay_flush EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe77bdc27 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xe78397dc udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe76cfc7c trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe786af0d cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0xe78c89ed irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xe784a033 rt_mutex_lock_interruptible EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7abf150 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xe7ad641b kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe7af785c bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xe7b53386 scm_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc -EXPORT_SYMBOL_GPL vmlinux 0xe7bc27cf nfct_btf_struct_access -EXPORT_SYMBOL_GPL vmlinux 0xe7bc8ea1 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe7bdd203 fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7d953b2 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xe80e0f26 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xe82399cc device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0xe8271c17 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe7ee8a8f gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xe811f8cb shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe81c43ee __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xe82357c0 devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0xe82859ff init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xe844bee6 xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xe867a2f7 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xe87175f2 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xe8839830 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xe88fa34f elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe897131d sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xe89b2025 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xe8ad7ba6 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe866b0bb __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xe8776c1d bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe87a2f78 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send -EXPORT_SYMBOL_GPL vmlinux 0xe8bcae06 iov_iter_is_aligned EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c1147b pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xe8c75259 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xe8d5deca devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xe90b9a34 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe8c58de3 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xe8c6e872 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xe8e94798 gmap_shadow_page +EXPORT_SYMBOL_GPL vmlinux 0xe90ecd8d __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9136906 fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0xe99b0d7e aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe9a544c3 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xe9b463e7 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe9d68781 iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0xe9e2ebd8 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xe9e6a481 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe955a8de vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xe9a66745 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xe9abbd96 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xe9efe170 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9f56155 platform_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit EXPORT_SYMBOL_GPL vmlinux 0xea066330 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xea0950ef receive_fd EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1dfd98 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xea2b8d84 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xea213ea7 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xea279976 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xea2a3d7f devlink_free +EXPORT_SYMBOL_GPL vmlinux 0xea2e2e71 pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea6e2a51 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0xeaa0a52d kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xea4300b4 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xea5297a1 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xea60636a pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xea6581bd cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xea6c68af dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xea7abc5a device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xeaa32658 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xead176da tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xeab3182c simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xead3b324 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeafb2424 __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xeafbd6eb perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xeb0b4fdf __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xeae26913 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xeb0a5959 virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0xeb317ee6 __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xeb432840 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xeb70b9a0 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0xeb755d96 mdiobus_c45_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xebc0c31a vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0xeb3cc765 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xeb58141a tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb8a5d30 devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xebc10b0b nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xebd53503 devl_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xebde3dc4 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xebdf60dd regcache_drop_region EXPORT_SYMBOL_GPL vmlinux 0xebe496ca __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xebe9b77a inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xebf9def9 css_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo -EXPORT_SYMBOL_GPL vmlinux 0xec32c53c raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xec3acdef elv_register -EXPORT_SYMBOL_GPL vmlinux 0xec4bcacd pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0xec6d0b63 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xec7c0df6 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xeca347ef devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xecfcc827 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xec2286e3 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xec5f8bae unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xec7485d1 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xec7d7e80 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xec8aeb2b tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xecacfd98 appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xecad580c vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xecc3791c smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xecda286b blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xeceead37 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xecf44d60 device_del +EXPORT_SYMBOL_GPL vmlinux 0xecfc79f0 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xed06eb33 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0xed08cabd __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0xed0ed018 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xed1d1771 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0xed178e8a bus_get_kset EXPORT_SYMBOL_GPL vmlinux 0xed2d9bee xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xed3b8aa9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xed2e0ea1 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xed3f4a6a virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xed4602bd virtio_check_mem_acc_cb EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0xed546623 get_device +EXPORT_SYMBOL_GPL vmlinux 0xed703d27 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xed7dd335 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue -EXPORT_SYMBOL_GPL vmlinux 0xed950906 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0xeda13312 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xeda34f80 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xedbc64b5 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xede94feb css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed8c5a0a bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xed97087d xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xedaadbda bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xeddf0e19 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xee053075 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0xee339b2f icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xee0cb9ef perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee491fd1 kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xee59e148 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xee4b694a iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee72628b device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0xee74a922 __tracepoint_console -EXPORT_SYMBOL_GPL vmlinux 0xee889616 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xee9fc27c extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0xee7faefa blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xee80159c pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xee80e927 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xee943456 bpf_offload_dev_create EXPORT_SYMBOL_GPL vmlinux 0xeea834c0 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0xeedc4b36 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xeebc04d6 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xeec8f084 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xeed18878 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xeedbe762 unix_peer_get EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeee15e9d __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put -EXPORT_SYMBOL_GPL vmlinux 0xeeece5eb __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xeef34c75 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xeef829b4 gmap_shadow -EXPORT_SYMBOL_GPL vmlinux 0xeefa5a60 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xeefb5b5a cio_resume -EXPORT_SYMBOL_GPL vmlinux 0xef02776b kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xef08fa93 class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0xeef5cf6f phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads -EXPORT_SYMBOL_GPL vmlinux 0xef2f46b8 cio_halt -EXPORT_SYMBOL_GPL vmlinux 0xef2ff5e5 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xef3b46a8 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef549413 vring_create_virtqueue_dma -EXPORT_SYMBOL_GPL vmlinux 0xef57ef0a devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xef5b6713 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xef55539a dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0xef67ec35 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef79990d badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0xef888baa kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xef90158a shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xef96d199 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xef71fb84 inet_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xef7263bc pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xef77c63e pci_create_ims_domain EXPORT_SYMBOL_GPL vmlinux 0xef9c8eef ipl_info EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb87e54 vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xefbebcd8 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xefc3aa63 scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xefedd8ef tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xefbdea12 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xefc1d7be md_stop +EXPORT_SYMBOL_GPL vmlinux 0xefc8e084 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xefd6a45f irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xeff92a33 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xeffefa5d inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xf0141a2d tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0xf0344bea put_pid -EXPORT_SYMBOL_GPL vmlinux 0xf046edbe blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xf00a0eee pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0xf0142acf ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf04eafae dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf04f361a auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf0512a3b __mmdrop EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf0634d30 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xf0680b7a pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf0740afe kvm_destroy_vcpus -EXPORT_SYMBOL_GPL vmlinux 0xf07427a6 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xf0684e19 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xf0691f68 irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0xf080db15 xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0xf0845850 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xf0900334 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xf087e937 pci_user_read_config_dword EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0aadd0d kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xf0af437a tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0xf0b5c5e6 genphy_c45_pma_baset1_read_master_slave -EXPORT_SYMBOL_GPL vmlinux 0xf0c302f3 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0xf0c83b1c irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xf0cb39ac tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0xf0d2e926 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xf0f42aa7 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xf1017404 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf0bf9fd7 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xf0c480ef set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xf0f37e7c blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xf0fd67b0 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf1008f0f netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xf11013f2 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate -EXPORT_SYMBOL_GPL vmlinux 0xf1167642 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xf13477e8 handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xf1384705 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xf127e5bc xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xf12af928 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xf14f7286 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xf15a4231 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0xf18551f8 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xf18bd285 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xf194ab10 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xf194c9c3 mas_walk +EXPORT_SYMBOL_GPL vmlinux 0xf19d1550 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xf1a64886 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xf1ea2698 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xf21077d0 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xf1d240da pid_vnr EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf242359a dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xf24a4cf5 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf280111a kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xf28192b4 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf260de54 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf2669b83 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xf268c98a unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf2839da9 fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf2886741 cmf_readall -EXPORT_SYMBOL_GPL vmlinux 0xf288dbb9 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xf29225a2 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2a0b5dc rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xf2af771f device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf2a99ff3 iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2dcbf1c ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0xf2e2fe2e __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0xf2f5fceb tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xf2c4cd7e fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf2ce5997 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xf2e39722 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf323d3d5 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xf32f5599 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0xf3307e50 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0xf3488f73 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xf333f30d fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf356217a relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xf367b651 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xf36d278e fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xf3771878 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf3691d92 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf36ed61d dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf39f201c disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf385fdf4 fuse_dev_alloc_install EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3b87fa2 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0xf3bef49b irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xf3c03bc3 __blk_req_zone_write_unlock -EXPORT_SYMBOL_GPL vmlinux 0xf3e47ca8 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xf3f3f3a2 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf40322a7 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xf403c4f2 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0xf40458e9 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xf41561c0 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xf44c1cba dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xf3c959c3 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf415b8d4 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xf41a43b4 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46d3054 gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0xf46e2c19 vp_legacy_set_queue_address EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf4852ced fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xf487f87a crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf49c710a dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xf4a48bb6 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf483e13b component_add +EXPORT_SYMBOL_GPL vmlinux 0xf4aaa9f8 nf_ip6_check_hbh_len EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4b94de3 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4bf5563 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0xf4dc995e pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xf4e7c347 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xf4c188d3 iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0xf4ed648b unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xf50474bc crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0xf50db6fa irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xf5105b18 devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5159ea8 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xf51b2738 device_match_any -EXPORT_SYMBOL_GPL vmlinux 0xf5457ca0 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xf50aa409 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xf5146b6b devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xf51dca42 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xf51fb494 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf52a1aa2 cio_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf532cd23 fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf5601f01 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xf57e1250 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xf5830fe0 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xf597d279 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xf59f2d96 devl_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xf56310e8 crypto_clone_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf564e32d iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xf567fb1e driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xf576cc3a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xf5a03dc2 inet_csk_reqsk_queue_hash_add EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5bbab8c gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0xf5c80766 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf5e40ddd sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf603deda pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xf61affbd iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0xf6237963 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xf6436c53 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xf5f90feb devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xf5ffcebb fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xf61c629a pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0xf66a2590 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0xf68d67f8 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0xf6919dda crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xf698e4b6 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0xf6a44998 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xf6bcfd93 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xf65c1da8 input_class +EXPORT_SYMBOL_GPL vmlinux 0xf666f768 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0xf67a41cc fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0xf693751c bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c296b2 crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xf6c75713 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6ccc7ea dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xf6d168c1 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xf6f21779 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf6f21f9c pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xf7087901 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xf6d60024 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf718bf1d pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0xf71de0dd blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xf7241b93 tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72d113a chp_get_sch_opm -EXPORT_SYMBOL_GPL vmlinux 0xf7337d27 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xf72e8635 class_destroy EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf75810f3 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xf75f2d59 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xf7636fc9 ptep_test_and_clear_uc -EXPORT_SYMBOL_GPL vmlinux 0xf776b074 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0xf7802b37 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf750ba3f vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xf75b3d8d debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync -EXPORT_SYMBOL_GPL vmlinux 0xf78ce77e fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0xf7b38450 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf78ff52f device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xf7a07321 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7e941b5 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0xf7f863b5 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xf804fa87 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xf7c6ce6d pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xf7e5b965 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf7f1b590 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xf7fb6404 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0xf81994a2 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf81b1451 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xf8287d7e __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf835ed9a kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xf8300ae4 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xf83c8967 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store -EXPORT_SYMBOL_GPL vmlinux 0xf8683f66 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf876ed9e __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xf877d08d ccw_device_get_chpid +EXPORT_SYMBOL_GPL vmlinux 0xf87d4740 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf8bfcb89 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xf8906c9a irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xf8b4cb9d scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xf8c13616 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0xf8c3dc85 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0xf8feecbc virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xf914b023 screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0xf917165a class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf919007a gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xf92b8e0a pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xf9304d92 ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0xf8d8d160 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xf8db9917 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xf9099913 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xf90bab7b devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xf92aa022 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xf9346e28 device_initialize EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96c4808 input_ff_event EXPORT_SYMBOL_GPL vmlinux 0xf96ecc78 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xf9701d4e cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xf9735449 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9707199 bus_get_dev_root +EXPORT_SYMBOL_GPL vmlinux 0xf971a24a devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf9755232 pci_epc_map_addr EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a431e4 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0xf9ae8935 netdev_sw_irq_coalesce_default_on -EXPORT_SYMBOL_GPL vmlinux 0xf9b72d17 md_run -EXPORT_SYMBOL_GPL vmlinux 0xf9be6d09 ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0xf9cab462 dw_pcie_ep_raise_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xfa115071 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xf9a5cc4e ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf9b001f7 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf9be7ccc xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xf9c9aa02 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xf9d0b3f0 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xf9dfd51f dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xf9f6924f fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xfa0934a5 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xfa1308c7 gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xfa35d3af nl_table -EXPORT_SYMBOL_GPL vmlinux 0xfa36bcfe input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfa5ca195 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xfa64373a fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xfa2bbb4e class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa31bfe5 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa7502da crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0xfa75c83b rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xfa7bbaf5 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xfaa297b3 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xfa6edde7 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xfa8b4f91 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xfaa0d820 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xfaafeadf transport_add_device EXPORT_SYMBOL_GPL vmlinux 0xfab13212 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfac736ac fsnotify_alloc_group EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadd1922 pci_reset_function EXPORT_SYMBOL_GPL vmlinux 0xfafb1e78 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0xfb0d7867 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xfb1a4d0e irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfb1198fa sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb4e1fd4 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0xfb569277 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xfb3917fd evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xfb3df85a strp_init +EXPORT_SYMBOL_GPL vmlinux 0xfb439104 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xfb54825e device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xfb5d3859 register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb729067 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0xfb8b4b35 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xfb9baf1c __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xfb731e97 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xfb7ede31 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xfb8d2361 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbde8a4 lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xfbc4149f bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfbc1f954 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xfbc31d7a regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0xfbd0eec3 hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xfbd914af perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0xfbe4df28 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xfbd49503 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xfbd52253 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0xfbfb0ecf unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc1858ad kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xfc1cc693 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xfc1d4b05 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfc334afd netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0xfc3da0e7 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xfc497b4e pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0xfc930edf __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfc96f5f9 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xfcab876f bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xfc35b87d blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xfc5ee204 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfc9de9f9 fsverity_get_digest +EXPORT_SYMBOL_GPL vmlinux 0xfcb3cba4 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc5e9e5 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0xfce6df1b device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xfcec99ce sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xfce9deea ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd1de9f6 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0xfd49bcb2 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xfd4b4793 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0xfd2e9792 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xfd3030eb devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xfd30bb3f tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xfd3fc07b inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfd580fcf ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xfd6c994f dw_pcie_ep_linkup EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd81dae3 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xfd9fe2e6 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xfdaca7be bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdef9224 nf_ip6_check_hbh_len -EXPORT_SYMBOL_GPL vmlinux 0xfdf8e886 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xfdc8ab1e md_run +EXPORT_SYMBOL_GPL vmlinux 0xfdd83f66 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xfde25164 inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0xfdf5f512 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfdfdda4a msi_unlock_descs EXPORT_SYMBOL_GPL vmlinux 0xfdfefb5e __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0xfe01e7e2 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xfe07b780 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe1b7a43 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0xfe361ce9 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe480b53 component_release_of -EXPORT_SYMBOL_GPL vmlinux 0xfe6764f5 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xfe7ed0b0 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xfe86cb67 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfe50a7b4 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfe626439 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe7518c1 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0xfe7a78bf pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe9333bc irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xfe98e933 tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfe9f9822 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xfeaa6dc3 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xfeb3aed8 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0xfeb47569 debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0xfecb2fd5 msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0xfeeedb81 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xfea3a9c4 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xfecd4338 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0xfefaf9a4 fsverity_ioctl_enable EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff142038 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xff1206b6 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xff1803d4 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xff5111de sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xff5b3a26 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xff4b6db5 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xff4cbb31 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0xff5c3e11 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff5ec9c9 devm_gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xff684bf6 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0xff6f44f4 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xff6fca37 kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8388ea xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order EXPORT_SYMBOL_GPL vmlinux 0xff8cbf4b rhashtable_walk_start_check EXPORT_SYMBOL_GPL vmlinux 0xff9b06fc srcu_batches_completed EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa8ec9f sysfs_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffbf86aa blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xffc8cf61 tcp_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xffe0c11e fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xfffc3d0c kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xffd2088f cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0xfff22332 cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0xfff4cf1a tpm2_get_cc_attrs_tbl FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x021ee895 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0d812623 nvme_execute_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1dc04f81 nvme_passthru_start drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1f96fd2b nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5bf5e873 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x74d701dc nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd24cf7f5 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0a4cc9da nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x16e6c431 nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4be01a6a nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x56432eed nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x73098ebc nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8b798e28 nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc7c36ebd nvme_find_get_ns drivers/nvme/host/nvme-core TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x46ed53c1 firmware_request_builtin vmlinux diff -u linux-oracle-6.5-6.5.0/debian.master/abi/version linux-oracle-6.5-6.5.0/debian.master/abi/version --- linux-oracle-6.5-6.5.0/debian.master/abi/version +++ linux-oracle-6.5-6.5.0/debian.master/abi/version @@ -1 +1 @@ -6.5.0-12.12 +6.5.0-16.16 diff -u linux-oracle-6.5-6.5.0/debian.master/changelog linux-oracle-6.5-6.5.0/debian.master/changelog --- linux-oracle-6.5-6.5.0/debian.master/changelog +++ linux-oracle-6.5-6.5.0/debian.master/changelog @@ -1,3 +1,1537 @@ +linux (6.5.0-17.17) mantic; urgency=medium + + * mantic/linux: 6.5.0-17.17 -proposed tracker (LP: #2049026) + + * [UBUNTU 23.04] Regression: Ubuntu 23.04/23.10 do not include uvdevice + anymore (LP: #2048919) + - [Config] Enable S390_UV_UAPI (built-in) + + -- Roxana Nicolescu Thu, 11 Jan 2024 13:47:08 +0100 + +linux (6.5.0-16.16) mantic; urgency=medium + + * mantic/linux: 6.5.0-16.16 -proposed tracker (LP: #2048372) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + + * Add missing RPL P/U CPU IDs (LP: #2047398) + - drm/i915/rpl: Update pci ids for RPL P/U + + * Fix BCM57416 lost after resume (LP: #2047518) + - bnxt_en: Clear resource reservation during resume + + * Hotplugging SCSI disk in QEMU VM fails (LP: #2047382) + - Revert "PCI: acpiphp: Reassign resources on bridge if necessary" + + * Update bnxt_en with bug fixes and support for Broadcom 5760X network + adapters (LP: #2045796) + - bnxt_en: use dev_consume_skb_any() in bnxt_tx_int + - eth: bnxt: move and rename reset helpers + - eth: bnxt: take the bit to set as argument of bnxt_queue_sp_work() + - eth: bnxt: handle invalid Tx completions more gracefully + - eth: bnxt: fix one of the W=1 warnings about fortified memcpy() + - eth: bnxt: fix warning for define in struct_group + - bnxt_en: Fix W=1 warning in bnxt_dcb.c from fortify memcpy() + - bnxt_en: Fix W=stringop-overflow warning in bnxt_dcb.c + - bnxt_en: Use the unified RX page pool buffers for XDP and non-XDP + - bnxt_en: Let the page pool manage the DMA mapping + - bnxt_en: Increment rx_resets counter in bnxt_disable_napi() + - bnxt_en: Save ring error counters across reset + - bnxt_en: Display the ring error counters under ethtool -S + - bnxt_en: Add tx_resets ring counter + - bnxt: use the NAPI skb allocation cache + - bnxt_en: Update firmware interface to 1.10.2.171 + - bnxt_en: Enhance hwmon temperature reporting + - bnxt_en: Move hwmon functions into a dedicated file + - bnxt_en: Modify the driver to use hwmon_device_register_with_info + - bnxt_en: Expose threshold temperatures through hwmon + - bnxt_en: Use non-standard attribute to expose shutdown temperature + - bnxt_en: Event handler for Thermal event + - bnxt_en: Support QOS and TPID settings for the SRIOV VLAN + - bnxt_en: Update VNIC resource calculation for VFs + - Revert "bnxt_en: Support QOS and TPID settings for the SRIOV VLAN" + - eth: bnxt: fix backward compatibility with older devices + - bnxt_en: Do not call sleeping hwmon_notify_event() from NAPI + - bnxt_en: Fix invoking hwmon_notify_event + - bnxt_en: add infrastructure to lookup ethtool link mode + - bnxt_en: support lane configuration via ethtool + - bnxt_en: refactor speed independent ethtool modes + - bnxt_en: Refactor NRZ/PAM4 link speed related logic + - bnxt_en: convert to linkmode_set_bit() API + - bnxt_en: extend media types to supported and autoneg modes + - bnxt_en: Fix 2 stray ethtool -S counters + - bnxt_en: Put the TX producer information in the TX BD opaque field + - bnxt_en: Add completion ring pointer in TX and RX ring structures + - bnxt_en: Restructure cp_ring_arr in struct bnxt_cp_ring_info + - bnxt_en: Add completion ring pointer in TX and RX ring structures + - bnxt_en: Remove BNXT_RX_HDL and BNXT_TX_HDL + - bnxt_en: Refactor bnxt_tx_int() + - bnxt_en: New encoding for the TX opaque field + - bnxt_en: Refactor bnxt_hwrm_set_coal() + - bnxt_en: Support up to 8 TX rings per MSIX + - bnxt_en: Add helper to get the number of CP rings required for TX rings + - bnxt_en: Add macros related to TC and TX rings + - bnxt_en: Use existing MSIX vectors for all mqprio TX rings + - bnxt_en: Optimize xmit_more TX path + - bnxt_en: The caller of bnxt_alloc_ctx_mem() should always free bp->ctx + - bnxt_en: Free bp->ctx inside bnxt_free_ctx_mem() + - bnxt_en: Restructure context memory data structures + - bnxt_en: Add page info to struct bnxt_ctx_mem_type + - bnxt_en: Use the pg_info field in bnxt_ctx_mem_type struct + - bnxt_en: Add bnxt_setup_ctxm_pg_tbls() helper function + - bnxt_en: Add support for new backing store query firmware API + - bnxt_en: Add support for HWRM_FUNC_BACKING_STORE_CFG_V2 firmware calls + - bnxt_en: Add db_ring_mask and related macro to bnxt_db_info struct. + - bnxt_en: Modify TX ring indexing logic. + - bnxt_en: Modify RX ring indexing logic. + - bnxt_en: Modify the NAPI logic for the new P7 chips + - bnxt_en: Rename some macros for the P5 chips + - bnxt_en: Fix backing store V2 logic + - bnxt_en: Update firmware interface to 1.10.3.15 + - bnxt_en: Define basic P7 macros + - bnxt_en: Consolidate DB offset calculation + - bnxt_en: Implement the new toggle bit doorbell mechanism on P7 chips + - bnxt_en: Refactor RSS capability fields + - bnxt_en: Add new P7 hardware interface definitions + - bnxt_en: Refactor RX VLAN acceleration logic. + - bnxt_en: Refactor and refine bnxt_tpa_start() and bnxt_tpa_end(). + - bnxt_en: Add support for new RX and TPA_START completion types for P7 + - bnxt_en: Refactor ethtool speeds logic + - bnxt_en: Support new firmware link parameters + - bnxt_en: Support force speed using the new HWRM fields + - bnxt_en: Report the new ethtool link modes in the new firmware interface + - bnxt_en: Add 5760X (P7) PCI IDs + - net: bnxt: fix a potential use-after-free in bnxt_init_tc + + * drm: Update file owner during use (LP: #2047461) + - drm: Update file owner during use + + * CVE-2023-6622 + - netfilter: nf_tables: bail out on mismatching dynset and set expressions + + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + + * Support Cirrus CS35L41 codec on Dell Oasis 13/14/16 laptops (LP: #2044096) + - ALSA: hda/realtek: Add support dual speaker for Dell + + * Add support of MTL audio of Lenovo (LP: #2048078) + - ALSA: hda: intel-nhlt: Ignore vbps when looking for DMIC 32 bps format + + * Fix AMDGPU crash on 6.5 kernel (LP: #2047389) + - drm/amdgpu: disable MCBP by default + + * Some machines can't pass the pm-graph test (LP: #2046217) + - wifi: iwlwifi: pcie: rescan bus if no parent + + * Sound: Add rtl quirk of M90-Gen5 (LP: #2046105) + - ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5 + + * linux tools packages for derived kernels refuse to install simultaneously + due to libcpupower name collision (LP: #2035971) + - [Packaging] Statically link libcpupower into cpupower tool + + * [Debian] autoreconstruct - Do not generate chmod -x for deleted files + (LP: #2045562) + - [Debian] autoreconstruct - Do not generate chmod -x for deleted files + + * CVE-2023-6931 + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + + * Mantic update: v6.5.8 upstream stable release (LP: #2046269) + - net: stmmac: remove unneeded stmmac_poll_controller + - RDMA/cxgb4: Check skb value for failure to allocate + - perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7 + - platform/x86: think-lmi: Fix reference leak + - drm/i915: Register engines early to avoid type confusion + - cpuidle, ACPI: Evaluate LPI arch_flags for broadcast timer + - drm/amdgpu: Fix a memory leak + - platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section + mismatch warning + - media: dt-bindings: imx7-csi: Make power-domains not required for imx8mq + - drm/amd/display: implement pipe type definition and adding accessors + - drm/amd/display: apply edge-case DISPCLK WDIVIDER changes to master OTG + pipes only + - scsi: Do not rescan devices with a suspended queue + - ata: pata_parport: fix pata_parport_devchk + - ata: pata_parport: implement set_devctl + - HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect + - quota: Fix slow quotaoff + - dm crypt: Fix reqsize in crypt_iv_eboiv_gen + - ASoC: amd: yc: Fix non-functional mic on Lenovo 82YM + - ASoC: hdmi-codec: Fix broken channel map reporting + - ata: libata-scsi: Disable scsi device manage_system_start_stop + - net: prevent address rewrite in kernel_bind() + - arm64: dts: qcom: sm8150: extend the size of the PDC resource + - dt-bindings: interrupt-controller: renesas,rzg2l-irqc: Update description + for '#interrupt-cells' property + - irqchip: renesas-rzg2l: Fix logic to clear TINT interrupt source + - KEYS: trusted: Remove redundant static calls usage + - ALSA: usb-audio: Fix microphone sound on Opencomm2 Headset + - ALSA: usb-audio: Fix microphone sound on Nexigo webcam. + - ALSA: hda: cs35l41: Cleanup and fix double free in firmware request + - ALSA: hda/realtek: Change model for Intel RVP board + - ASoC: SOF: amd: fix for firmware reload failure after playback + - ASoC: simple-card-utils: fixup simple_util_startup() error handling + - ASoC: Intel: soc-acpi: fix Dell SKU 0B34 + - ASoC: Intel: soc-acpi: Add entry for HDMI_In capture support in MTL match + table + - ASoC: fsl_sai: Don't disable bitclock for i.MX8MP + - ASoC: Intel: sof_sdw: add support for SKU 0B14 + - ASoC: Intel: soc-acpi: Add entry for sof_es8336 in MTL match table. + - ALSA: hda/realtek - ALC287 merge RTK codec with CS CS35L41 AMP + - ALSA: hda/realtek: Add quirk for HP Victus 16-d1xxx to enable mute LED + - ALSA: hda/realtek: Add quirk for mute LEDs on HP ENVY x360 15-eu0xxx + - pinctrl: nuvoton: wpcm450: fix out of bounds write + - pinctrl: starfive: jh7110: Fix failure to set irq after CONFIG_PM is enabled + - drm/msm/dp: do not reinitialize phy unless retry during link training + - drm/msm/dsi: skip the wait for video mode done if not applicable + - drm/msm/dsi: fix irq_of_parse_and_map() error checking + - drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow + - drm/msm/dp: Add newlines to debug printks + - drm/msm/dpu: fail dpu_plane_atomic_check() based on mdp clk limits + - phy: lynx-28g: cancel the CDR check work item on the remove path + - phy: lynx-28g: lock PHY while performing CDR lock workaround + - phy: lynx-28g: serialize concurrent phy_set_mode_ext() calls to shared + registers + - net: dsa: qca8k: fix regmap bulk read/write methods on big endian systems + - net: dsa: qca8k: fix potential MDIO bus conflict when accessing internal + PHYs via management frames + - can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior + - can: sun4i_can: Only show Kconfig if ARCH_SUNXI is set + - arm64: dts: mediatek: fix t-phy unit name + - arm64: dts: mediatek: mt8195: Set DSU PMU status to fail + - devlink: Hold devlink lock on health reporter dump get + - ravb: Fix up dma_free_coherent() call in ravb_remove() + - ravb: Fix use-after-free issue in ravb_tx_timeout_work() + - ieee802154: ca8210: Fix a potential UAF in ca8210_probe + - mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type + - xen-netback: use default TX queue size for vifs + - riscv, bpf: Sign-extend return values + - riscv, bpf: Track both a0 (RISC-V ABI) and a5 (BPF) return values + - xdp: Fix zero-size allocation warning in xskq_create() + - drm/vmwgfx: fix typo of sizeof argument + - bpf: Fix verifier log for async callback return values + - net: refine debug info in skb_checksum_help() + - octeontx2-pf: mcs: update PN only when update_pn is true + - net: macsec: indicate next pn update when offloading + - net: phy: mscc: macsec: reject PN update requests + - net/mlx5e: macsec: use update_pn flag instead of PN comparation + - drm/panel: boe-tv101wum-nl6: Completely pull GPW to VGL before TP term + - ixgbe: fix crash with empty VF macvlan list + - net/smc: Fix dependency of SMC on ISM + - net/mlx5e: Again mutually exclude RX-FCS and RX-port-timestamp + - s390/bpf: Fix clobbering the caller's backchain in the trampoline + - s390/bpf: Fix unwinding past the trampoline + - net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn() + - net: tcp: fix crashes trying to free half-baked MTU probes + - pinctrl: renesas: rzn1: Enable missing PINMUX + - af_packet: Fix fortified memcpy() without flex array. + - nfc: nci: assert requested protocol is valid + - octeontx2-pf: Fix page pool frag allocation warning + - rswitch: Fix renesas_eth_sw_remove() implementation + - rswitch: Fix imbalance phy_power_off() calling + - workqueue: Override implicit ordered attribute in + workqueue_apply_unbound_cpumask() + - riscv: signal: fix sigaltstack frame size checking + - ovl: temporarily disable appending lowedirs + - dmaengine: stm32-mdma: abort resume if no ongoing transfer + - dmaengine: stm32-dma: fix stm32_dma_prep_slave_sg in case of MDMA chaining + - dmaengine: stm32-dma: fix residue in case of MDMA chaining + - dmaengine: stm32-mdma: use Link Address Register to compute residue + - dmaengine: stm32-mdma: set in_flight_bytes in case CRQA flag is set + - usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer + - xhci: track port suspend state correctly in unsuccessful resume cases + - xhci: Clear EHB bit only at end of interrupt handler + - xhci: Preserve RsvdP bits in ERSTBA register correctly + - net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read + - usb: dwc3: Soft reset phy on probe for host + - usb: cdns3: Modify the return value of cdns_set_active () to void when + CONFIG_PM_SLEEP is disabled + - usb: hub: Guard against accesses to uninitialized BOS descriptors + - usb: musb: Get the musb_qh poniter after musb_giveback + - usb: musb: Modify the "HWVers" register address + - iio: pressure: bmp280: Fix NULL pointer exception + - iio: imu: bno055: Fix missing Kconfig dependencies + - iio: cros_ec: fix an use-after-free in cros_ec_sensors_push_data() + - iio: adc: imx8qxp: Fix address for command buffer registers + - iio: dac: ad3552r: Correct device IDs + - iio: admv1013: add mixer_vgate corner cases + - iio: pressure: dps310: Adjust Timeout Settings + - iio: pressure: ms5611: ms5611_prom_is_valid false negative bug + - iio: adc: ad7192: Correct reference voltage + - iio: addac: Kconfig: update ad74413r selections + - media: subdev: Don't report V4L2_SUBDEV_CAP_STREAMS when the streams API is + disabled + - arm64: dts: mediatek: mt8195-demo: fix the memory size to 8GB + - arm64: dts: mediatek: mt8195-demo: update and reorder reserved memory + regions + - drm: Do not overrun array in drm_gem_get_pages() + - drm/tiny: correctly print `struct resource *` on error + - drm/atomic-helper: relax unregistered connector check + - drm/amdgpu: add missing NULL check + - drm/amd/display: Don't set dpms_off for seamless boot + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA + - ACPI: resource: Add TongFang GM6BGEQ, GM6BG5Q and GM6BG0Q to + irq1_edge_low_force_override[] + - ACPI: EC: Add quirk for the HP Pavilion Gaming 15-dk1xxx + - serial: Reduce spinlocked portion of uart_rs485_config() + - serial: 8250_omap: Fix errors with no_console_suspend + - serial: core: Fix checks for tx runtime PM state + - binder: fix memory leaks of spam and pending work + - ksmbd: not allow to open file if delelete on close bit is set + - perf/x86/lbr: Filter vsyscall addresses + - x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs + - x86/alternatives: Disable KASAN in apply_alternatives() + - mcb: remove is_added flag from mcb_device struct + - thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple + Ridge + - thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding + - thunderbolt: Correct TMU mode initialization from hardware + - thunderbolt: Restart XDomain discovery handshake after failure + - powerpc/pseries: Fix STK_PARAM access in the hcall tracing code + - powerpc/47x: Fix 47x syscall return crash + - libceph: use kernel_connect() + - ceph: fix incorrect revoked caps assert in ceph_fill_file_size() + - ceph: fix type promotion bug on 32bit systems + - Input: powermate - fix use-after-free in powermate_config_complete + - Input: psmouse - fix fast_reconnect function for PS/2 mode + - Input: xpad - add PXN V900 support + - Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table + - Input: xpad - add HyperX Clutch Gladiate Support + - Input: goodix - ensure int GPIO is in input for gpio_count == 1 && + gpio_int_idx == 0 case + - tee: amdtee: fix use-after-free vulnerability in amdtee_close_session + - mctp: perform route lookups under a RCU read-side lock + - block: Don't invalidate pagecache for invalid falloc modes + - nfp: flower: avoid rmmod nfp crash issues + - can: sja1000: Always restart the Tx queue after an overrun + - power: supply: qcom_battmgr: fix battery_id type + - power: supply: qcom_battmgr: fix enable request endianness + - usb: typec: ucsi: Use GET_CAPABILITY attributes data to set power supply + scope + - cgroup: Remove duplicates in cgroup v1 tasks file + - dma-buf: add dma_fence_timestamp helper + - scsi: ufs: core: Correct clear TM error log + - riscv: Only consider swbp/ss handlers for correct privileged mode + - counter: chrdev: fix getting array extensions + - counter: microchip-tcb-capture: Fix the use of internal GCLK logic + - coresight: Fix run time warnings while reusing ETR buffer + - riscv: Remove duplicate objcopy flag + - RISC-V: Fix wrong use of CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK + - usb: typec: ucsi: Fix missing link removal + - usb: typec: altmodes/displayport: Signal hpd low when exiting mode + - usb: typec: ucsi: Clear EVENT_PENDING bit if ucsi_send_command fails + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call + - usb: cdnsp: Fixes issue with dequeuing not queued requests + - usb: typec: qcom: Update the logic of regulator enable and disable + - usb: misc: onboard_hub: add support for Microchip USB2412 USB 2.0 hub + - dmaengine: idxd: use spin_lock_irqsave before wait_event_lock_irq + - dmaengine: mediatek: Fix deadlock caused by synchronize_irq() + - powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE + - powerpc/64e: Fix wrong test in __ptep_test_and_clear_young() + - fs: Fix kernel-doc warnings + - fs: factor out vfs_parse_monolithic_sep() helper + - ovl: fix regression in parsing of mount options with escaped comma + - ovl: make use of ->layers safe in rcu pathwalk + - ovl: fix regression in showing lowerdir mount option + - ALSA: hda/realtek - Fixed two speaker platform + - Linux 6.5.8 + + * Mantic update: v6.5.7 upstream stable release (LP: #2045806) + - ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol + - ASoC: tegra: Fix redundant PLLA and PLLA_OUT0 updates + - maple_tree: add mas_is_active() to detect in-tree walks + - mptcp: Remove unnecessary test for __mptcp_init_sock() + - mptcp: rename timer related helper to less confusing names + - mptcp: fix dangling connection hang-up + - scsi: core: Improve type safety of scsi_rescan_device() + - scsi: Do not attempt to rescan suspended devices + - ata: libata-scsi: Fix delayed scsi_rescan_device() execution + - btrfs: remove btrfs_writepage_endio_finish_ordered + - btrfs: remove end_extent_writepage + - btrfs: don't clear uptodate on write errors + - arm64: add HWCAP for FEAT_HBC (hinted conditional branches) + - arm64: cpufeature: Fix CLRBHB and BC detection + - net: add sysctl accept_ra_min_rtr_lft + - net: change accept_ra_min_rtr_lft to affect all RA lifetimes + - net: release reference to inet6_dev pointer + - iommu/arm-smmu-v3: Avoid constructing invalid range commands + - maple_tree: reduce resets during store setup + - maple_tree: add MAS_UNDERFLOW and MAS_OVERFLOW states + - iommu/apple-dart: Handle DMA_FQ domains in attach_dev() + - scsi: zfcp: Fix a double put in zfcp_port_enqueue() + - iommu/vt-d: Avoid memory allocation in iommu_suspend() + - net: mana: Fix TX CQE error handling + - net: ethernet: mediatek: disable irq before schedule napi + - mptcp: fix delegated action races + - mptcp: userspace pm allow creating id 0 subflow + - qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info + - Bluetooth: hci_codec: Fix leaking content of local_codecs + - wifi: brcmfmac: Replace 1-element arrays with flexible arrays + - Bluetooth: hci_sync: Fix handling of HCI_QUIRK_STRICT_DUPLICATE_FILTER + - wifi: rtw88: rtw8723d: Fix MAC address offset in EEPROM + - wifi: mwifiex: Fix tlv_buf_left calculation + - md/raid5: release batch_last before waiting for another stripe_head + - PCI/PM: Mark devices disconnected if upstream PCIe link is down on resume + - PCI: qcom: Fix IPQ8074 enumeration + - platform/x86/intel/ifs: release cpus_read_lock() + - net: replace calls to sock->ops->connect() with kernel_connect() + - btrfs: always print transaction aborted messages with an error level + - net: prevent rewrite of msg_name in sock_sendmsg() + - drm/i915: Don't set PIPE_CONTROL_FLUSH_L3 for aux inval + - drm/amd: Fix detection of _PR3 on the PCIe root port + - drm/amd: Fix logic error in sienna_cichlid_update_pcie_parameters() + - arm64: Add Cortex-A520 CPU part definition + - [Config] updateconfigs for ARM64_ERRATUM_2966298 + - arm64: errata: Add Cortex-A520 speculative unprivileged load workaround + - HID: sony: Fix a potential memory leak in sony_probe() + - wifi: mt76: fix lock dependency problem for wed_lock + - ubi: Refuse attaching if mtd's erasesize is 0 + - erofs: fix memory leak of LZMA global compressed deduplication + - wifi: cfg80211/mac80211: hold link BSSes when assoc fails for MLO connection + - iwlwifi: mvm: handle PS changes in vif_cfg_changed + - wifi: iwlwifi: dbg_ini: fix structure packing + - wifi: iwlwifi: mvm: Fix a memory corruption issue + - wifi: cfg80211: fix cqm_config access race + - rtla/timerlat_aa: Zero thread sum after every sample analysis + - rtla/timerlat_aa: Fix negative IRQ delay + - rtla/timerlat_aa: Fix previous IRQ delay for IRQs that happens after thread + sample + - wifi: cfg80211: add missing kernel-doc for cqm_rssi_work + - wifi: mac80211: fix mesh id corruption on 32 bit systems + - wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet + - HID: nvidia-shield: add LEDS_CLASS dependency + - erofs: allow empty device tags in flatdev mode + - s390/bpf: Let arch_prepare_bpf_trampoline return program size + - leds: Drop BUG_ON check for LED_COLOR_ID_MULTI + - bpf: Fix tr dereferencing + - bpf: unconditionally reset backtrack_state masks on global func exit + - regulator: mt6358: split ops for buck and linear range LDO regulators + - Bluetooth: Delete unused hci_req_prepare_suspend() declaration + - Bluetooth: Fix hci_link_tx_to RCU lock usage + - Bluetooth: ISO: Fix handling of listen for unicast + - drivers/net: process the result of hdlc_open() and add call of hdlc_close() + in uhdlc_close() + - wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling + - perf/x86/amd/core: Fix overflow reset on hotplug + - rtla/timerlat: Do not stop user-space if a cpu is offline + - regmap: rbtree: Fix wrong register marked as in-cache when creating new node + - wifi: mac80211: fix potential key use-after-free + - perf/x86/amd: Do not WARN() on every IRQ + - iommu/mediatek: Fix share pgtable for iova over 4GB + - wifi: mac80211: Create resources for disabled links + - regulator/core: regulator_register: set device->class earlier + - ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_BLACKLIST_KEYRING + - wifi: iwlwifi: mvm: Fix incorrect usage of scan API + - scsi: target: core: Fix deadlock due to recursive locking + - ima: rework CONFIG_IMA dependency block + - NFSv4: Fix a nfs4_state_manager() race + - ice: always add legacy 32byte RXDID in supported_rxdids + - bpf: tcp_read_skb needs to pop skb regardless of seq + - bpf, sockmap: Do not inc copied_seq when PEEK flag set + - bpf, sockmap: Reject sk_msg egress redirects to non-TCP sockets + - modpost: add missing else to the "of" check + - net: stmmac: platform: fix the incorrect parameter + - net: fix possible store tearing in neigh_periodic_work() + - neighbour: fix data-races around n->output + - ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data() + - ptp: ocp: Fix error handling in ptp_ocp_device_init + - net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent + - ovl: move freeing ovl_entry past rcu delay + - ovl: fetch inode once in ovl_dentry_revalidate_common() + - ipv6: tcp: add a missing nf_reset_ct() in 3WHS handling + - net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg + - ethtool: plca: fix plca enable data type while parsing the value + - net: nfc: llcp: Add lock when modifying device list + - net: renesas: rswitch: Add spin lock protection for irq {un}mask + - rswitch: Fix PHY station management clock setting + - net: ethernet: ti: am65-cpsw: Fix error code in + am65_cpsw_nuss_init_tx_chns() + - ibmveth: Remove condition to recompute TCP header checksum. + - netfilter: nft_payload: rebuild vlan header on h_proto access + - netfilter: handle the connecting collision properly in + nf_conntrack_proto_sctp + - selftests: netfilter: Test nf_tables audit logging + - selftests: netfilter: Extend nft_audit.sh + - netfilter: nf_tables: Deduplicate nft_register_obj audit logs + - netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure + - ipv4: Set offload_failed flag in fibmatch results + - net: stmmac: dwmac-stm32: fix resume on STM32 MCU + - tipc: fix a potential deadlock on &tx->lock + - tcp: fix quick-ack counting to count actual ACKs of new data + - tcp: fix delayed ACKs for MSS boundary condition + - sctp: update transport state when processing a dupcook packet + - sctp: update hb timer immediately after users change hb_interval + - netlink: annotate data-races around sk->sk_err + - net: mana: Fix the tso_bytes calculation + - net: mana: Fix oversized sge0 for GSO packets + - HID: nvidia-shield: Fix a missing led_classdev_unregister() in the probe + error handling path + - HID: sony: remove duplicate NULL check before calling usb_free_urb() + - HID: intel-ish-hid: ipc: Disable and reenable ACPI GPE bit + - net: lan743x: also select PHYLIB + - parisc: Restore __ldcw_align for PA-RISC 2.0 processors + - smb: use kernel_connect() and kernel_bind() + - parisc: Fix crash with nr_cpus=1 option + - dm zoned: free dmz->ddev array in dmz_put_zoned_devices + - RDMA/core: Require admin capabilities to set system parameters + - of: dynamic: Fix potential memory leak in of_changeset_action() + - IB/mlx4: Fix the size of a buffer in add_port_entries() + - gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config() + - gpio: pxa: disable pinctrl calls for MMP_GPIO + - RDMA/cma: Initialize ib_sa_multicast structure to 0 when join + - RDMA/cma: Fix truncation compilation warning in make_cma_ports + - RDMA/bnxt_re: Fix the handling of control path response data + - RDMA/uverbs: Fix typo of sizeof argument + - RDMA/srp: Do not call scsi_done() from srp_abort() + - RDMA/siw: Fix connection failure handling + - RDMA/mlx5: Fix mkey cache possible deadlock on cleanup + - RDMA/mlx5: Fix assigning access flags to cache mkeys + - RDMA/mlx5: Fix mutex unlocking on error flow for steering anchor creation + - RDMA/mlx5: Fix NULL string error + - x86/sev: Change npages to unsigned long in snp_accept_memory() + - x86/sev: Use the GHCB protocol when available for SNP CPUID requests + - ksmbd: fix race condition between session lookup and expire + - ksmbd: fix uaf in smb20_oplock_break_ack + - ksmbd: fix race condition from parallel smb2 lock requests + - RDMA/mlx5: Remove not-used cache disable flag + - Linux 6.5.7 + + * Mantic update: v6.5.7 upstream stable release (LP: #2045806) // + CVE-2023-34324 + - xen/events: replace evtchn_rwlock with RCU + + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + + * CVE-2023-6531 + - io_uring/af_unix: disable sending io_uring over sockets + + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + + * Avoid using damage rectangle under hardware rotation mode when PSR is + enabled (LP: #2045958) + - drm/amd/display: fix hw rotated modes when PSR-SU is enabled + + * CVE-2023-46813 + - x86/sev: Disable MMIO emulation from user mode + - x86/sev: Check IOBM for IOIO exceptions from user-space + - x86/sev: Check for user-space IOIO pointing to kernel space + + * CVE-2023-6111 + - netfilter: nf_tables: remove catchall element in GC sync path + + * CVE-2023-5972 + - nf_tables: fix NULL pointer dereference in nft_inner_init() + - nf_tables: fix NULL pointer dereference in nft_expr_inner_parse() + + * Orchid Bay MLK2/Maya Bay MLK soundwire support (LP: #2042090) + - ASoC: Intel: soc-acpi-intel-mtl-match: add rt713 rt1316 config + - ASoC: Intel: sof_sdw_rt_sdca_jack_common: add rt713 support + - ASoC: Intel: sof_sdw_rt712_sdca: construct cards->components by name_prefix + - ASoC: Intel: soc-acpi: rt713+rt1316, no sdw-dmic config + + * Build failure if run in a console (LP: #2044512) + - [Packaging] Fix kernel module compression failures + + * Fix system suspend problem for Cirrus CS35L41 HDA codec on HP ZBook Fury 16 + G9 (LP: #2042060) + - ALSA: hda: cs35l41: Override the _DSD for HP Zbook Fury 17 G9 to correct + boost type + - ALSA: hda: cs35l41: Use reset label to get GPIO for HP Zbook Fury 17 G9 + - ALSA: hda: cs35l41: Assert reset before system suspend + - ALSA: hda: cs35l41: Assert Reset prior to de-asserting in probe and system + resume + - ALSA: hda: cs35l41: Run boot process during resume callbacks + - ALSA: hda: cs35l41: Force a software reset after hardware reset + - ALSA: hda: cs35l41: Do not unload firmware before reset in system suspend + - ALSA: hda: cs35l41: Check CSPL state after loading firmware + - ASoC: cs35l41: Detect CSPL errors when sending CSPL commands + + * Support speaker mute hotkey for Cirrus CS35L41 HDA codec (LP: #2039151) + - ALSA: hda: cs35l41: Support systems with missing _DSD properties + - ALSA: hda: cs35l41: Fix the loop check in cs35l41_add_dsd_properties + - ALSA: hda: cs35l41: Add notification support into component binding + - ALSA: hda/realtek: Support ACPI Notification framework via component binding + - ALSA: hda: cs35l41: Support mute notifications for CS35L41 HDA + - ALSA: hda: cs35l41: Add read-only ALSA control for forced mute + + * Add SoF topology support on Intel RaptorLake DELL SKU 0C11 (LP: #2038263) + - ASoC: Intel: soc-acpi-intel-rpl-match: add rt711-l0-rt1316-l12 support + + * Update io_uring to 6.6 (LP: #2043730) + - fs: create kiocb_{start,end}_write() helpers + - fs: add IOCB flags related to passing back dio completions + - io_uring/poll: always set 'ctx' in io_cancel_data + - io_uring/timeout: always set 'ctx' in io_cancel_data + - io_uring/cancel: abstract out request match helper + - io_uring/cancel: fix sequence matching for IORING_ASYNC_CANCEL_ANY + - io_uring: use cancelation match helper for poll and timeout requests + - io_uring/cancel: add IORING_ASYNC_CANCEL_USERDATA + - io_uring/cancel: support opcode based lookup and cancelation + - io_uring/cancel: wire up IORING_ASYNC_CANCEL_OP for sync cancel + - io_uring/rw: add write support for IOCB_DIO_CALLER_COMP + - io_uring: Add io_uring command support for sockets + - io_uring/rsrc: Remove unused declaration io_rsrc_put_tw() + - io_uring: cleanup 'ret' handling in io_iopoll_check() + - io_uring/fdinfo: get rid of ref tryget + - io_uring/splice: use fput() directly + - io_uring: have io_file_put() take an io_kiocb rather than the file + - io_uring: remove unnecessary forward declaration + - io_uring/io-wq: don't grab wq->lock for worker activation + - io_uring/io-wq: reduce frequency of acct->lock acquisitions + - io_uring/io-wq: don't gate worker wake up success on wake_up_process() + - io_uring: open code io_fill_cqe_req() + - io_uring: remove return from io_req_cqe_overflow() + - io_uring: never overflow io_aux_cqe + - io_uring/rsrc: keep one global dummy_ubuf + - io_uring: simplify io_run_task_work_sig return + - io_uring/rsrc: Annotate struct io_mapped_ubuf with __counted_by + - io_uring: rename kiocb_end_write() local helper + - io_uring: use kiocb_{start,end}_write() helpers + - io_uring: stop calling free_compound_page() + - io_uring: improve cqe !tracing hot path + - io_uring: cqe init hardening + - io_uring: simplify big_cqe handling + - io_uring: refactor __io_get_cqe() + - io_uring: optimise extra io_get_cqe null check + - io_uring: reorder cqring_flush and wakeups + - io_uring: merge iopoll and normal completion paths + - io_uring: force inline io_fill_cqe_req + - io_uring: compact SQ/CQ heads/tails + - io_uring: add option to remove SQ indirection + - io_uring: move non aligned field to the end + - io_uring: banish non-hot data to end of io_ring_ctx + - io_uring: separate task_work/waiting cache line + - io_uring: move multishot cqe cache in ctx + - io_uring: move iopoll ctx fields around + - io_uring: fix IO hang in io_wq_put_and_exit from do_exit() + - io_uring/fdinfo: only print ->sq_array[] if it's there + - io_uring: fix unprotected iopoll overflow + - Revert "io_uring: fix IO hang in io_wq_put_and_exit from do_exit()" + - io_uring/kbuf: don't allow registered buffer rings on highmem pages + - io_uring: ensure io_lockdep_assert_cq_locked() handles disabled rings + - io_uring: don't allow IORING_SETUP_NO_MMAP rings on highmem pages + - io-wq: fully initialize wqe before calling + cpuhp_state_add_instance_nocalls() + - io_uring: fix crash with IORING_SETUP_NO_MMAP and invalid SQ ring address + - io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid + - io_uring/rw: disable IOCB_DIO_CALLER_COMP + - io_uring: kiocb_done() should *not* trust ->ki_pos if ->{read,write}_iter() + failed + + * System hang after unplug/plug DP monitor with AMD W7500 card (LP: #2042912) + - drm/amd/pm: Fix error of MACO flag setting code + + * correct cephfs pull request for uidmap support (LP: #2041613) + - Revert "UBUNTU: SAUCE: ceph: BUG if MDS changed truncate_seq with client + caps still outstanding" + - Revert "UBUNTU: SAUCE: ceph: make sure all the files successfully put before + unmounting" + - Revert "UBUNTU: SAUCE: mm: BUG if filemap_alloc_folio gives us a folio with + a non-NULL ->private" + - Revert "UBUNTU: SAUCE: ceph: dump info about cap flushes when we're waiting + too long for them" + - Revert "UBUNTU: SAUCE: rbd: bump RBD_MAX_PARENT_CHAIN_LEN to 128" + + * RTL8111EPP: Fix the network lost after resume with DASH (LP: #2043786) + - r8169: add handling DASH when DASH is disabled + - r8169: fix network lost after resume on DASH systems + + * kernel BUG: io_uring openat triggers audit reference count underflow + (LP: #2043841) + - audit, io_uring: io_uring openat triggers audit reference count underflow + + * Fix ADL: System enabled AHCI can't get into s0ix when attached ODD + (LP: #2037493) + - ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list + + * [UBUNTU 23.04] Kernel config option missing for s390x PCI passthrough + (LP: #2042853) + - [Config] CONFIG_VFIO_PCI_ZDEV_KVM=y + + * Azure: Fix Azure vendor ID (LP: #2036600) + - SAUCE: (no-up) hv: Fix supply vendor ID + + * Mantic update: v6.5.6 upstream stable release (LP: #2044174) + - NFS: Fix error handling for O_DIRECT write scheduling + - NFS: Fix O_DIRECT locking issues + - NFS: More O_DIRECT accounting fixes for error paths + - NFS: Use the correct commit info in nfs_join_page_group() + - NFS: More fixes for nfs_direct_write_reschedule_io() + - NFS/pNFS: Report EINVAL errors from connect() to the server + - SUNRPC: Mark the cred for revalidation if the server rejects it + - NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - NFSv4.1: fix pnfs MDS=DS session trunking + - media: v4l: Use correct dependency for camera sensor drivers + - media: via: Use correct dependency for camera sensor drivers + - gfs2: Fix another freeze/thaw hang + - netfs: Only call folio_start_fscache() one time for each folio + - btrfs: improve error message after failure to add delayed dir index item + - btrfs: remove BUG() after failure to insert delayed dir index item + - ext4: replace the traditional ternary conditional operator with with + max()/min() + - ext4: move setting of trimmed bit into ext4_try_to_trim_range() + - ext4: do not let fstrim block system suspend + - netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention + - netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC + - netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation + fails + - netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration + - netfilter: nf_tables: fix memleak when more than 255 elements expired + - ASoC: meson: spdifin: start hw on dai probe + - netfilter: nf_tables: disallow element removal on anonymous sets + - bpf: Avoid deadlock when using queue and stack maps from NMI + - bpf: Avoid dummy bpf_offload_netdev in __bpf_prog_dev_bound_init + - ALSA: docs: Fix a typo of midi2_ump_probe option for snd-usb-audio + - ALSA: seq: Avoid delivery of events for disabled UMP groups + - ASoC: rt5640: Revert "Fix sleep in atomic context" + - ASoC: rt5640: Fix sleep in atomic context + - ASoC: rt5640: fix typos + - ASoC: rt5640: Do not disable/enable IRQ twice on suspend/resume + - ASoC: rt5640: Enable the IRQ on resume after configuring jack-detect + - ASoC: rt5640: Fix IRQ not being free-ed for HDA jack detect mode + - bpf: Fix a erroneous check after snprintf() + - selftests/bpf: fix unpriv_disabled check in test_verifier + - ALSA: hda/realtek: Splitting the UX3402 into two separate models + - netfilter: conntrack: fix extension size table + - netfilter: nf_tables: Fix entries val in rule reset audit log + - Compiler Attributes: counted_by: Adjust name and identifier expansion + - uapi: stddef.h: Fix header guard location + - uapi: stddef.h: Fix __DECLARE_FLEX_ARRAY for C++ + - memblock tests: Fix compilation errors. + - ASoC: SOF: ipc4-topology: fix wrong sizeof argument + - net: microchip: sparx5: Fix memory leak for + vcap_api_rule_add_keyvalue_test() + - net: microchip: sparx5: Fix memory leak for + vcap_api_rule_add_actionvalue_test() + - net: microchip: sparx5: Fix possible memory leak in + vcap_api_encode_rule_test() + - net: microchip: sparx5: Fix possible memory leaks in + test_vcap_xn_rule_creator() + - net: microchip: sparx5: Fix possible memory leaks in vcap_api_kunit + - selftests: tls: swap the TX and RX sockets in some tests + - net/core: Fix ETH_P_1588 flow dissector + - ALSA: seq: ump: Fix -Wformat-truncation warning + - ASoC: hdaudio.c: Add missing check for devm_kstrdup + - ASoC: imx-audmix: Fix return error with devm_clk_get() + - octeon_ep: fix tx dma unmap len values in SG + - iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set + - ASoC: SOF: core: Only call sof_ops_free() on remove if the probe was + successful + - iavf: add iavf_schedule_aq_request() helper + - iavf: schedule a request immediately after add/delete vlan + - i40e: Fix VF VLAN offloading when port VLAN is configured + - netfilter, bpf: Adjust timeouts of non-confirmed CTs in + bpf_ct_insert_entry() + - ionic: fix 16bit math issue when PAGE_SIZE >= 64KB + - igc: Fix infinite initialization loop with early XDP redirect + - scsi: iscsi_tcp: restrict to TCP sockets + - powerpc/perf/hv-24x7: Update domain value check + - powerpc/dexcr: Move HASHCHK trap handler + - dccp: fix dccp_v4_err()/dccp_v6_err() again + - x86/mm, kexec, ima: Use memblock_free_late() from ima_free_kexec_buffer() + - net: hsr: Properly parse HSRv1 supervisor frames. + - platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() + - platform/x86: intel_scu_ipc: Check status upon timeout in + ipc_wait_for_interrupt() + - platform/x86: intel_scu_ipc: Don't override scu in + intel_scu_ipc_dev_simple_command() + - platform/x86: intel_scu_ipc: Fail IPC send if still busy + - x86/asm: Fix build of UML with KASAN + - x86/srso: Fix srso_show_state() side effect + - x86/srso: Set CPUID feature bits independently of bug or mitigation status + - x86/srso: Don't probe microcode in a guest + - x86/srso: Fix SBPB enablement for spec_rstack_overflow=off + - net: hns3: add cmdq check for vf periodic service task + - net: hns3: fix GRE checksum offload issue + - net: hns3: only enable unicast promisc when mac table full + - net: hns3: fix fail to delete tc flower rules during reset issue + - net: hns3: add 5ms delay before clear firmware reset irq source + - net: bridge: use DEV_STATS_INC() + - team: fix null-ptr-deref when team device type is changed + - net: rds: Fix possible NULL-pointer dereference + - vxlan: Add missing entries to vxlan_get_size() + - netfilter: nf_tables: disable toggling dormant table state more than once + - net: hinic: Fix warning-hinic_set_vlan_fliter() warn: variable dereferenced + before check 'hwdev' + - net/handshake: Fix memory leak in __sock_create() and sock_alloc_file() + - i915/pmu: Move execlist stats initialization to execlist specific setup + - drm/virtio: clean out_fence on complete_submit + - locking/seqlock: Do the lockdep annotation before locking in + do_write_seqcount_begin_nested() + - net: ena: Flush XDP packets on error. + - bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI + - octeontx2-pf: Do xdp_do_flush() after redirects. + - igc: Expose tx-usecs coalesce setting to user + - cxl/region: Match auto-discovered region decoders by HPA range + - proc: nommu: /proc//maps: release mmap read lock + - proc: nommu: fix empty /proc//maps + - cifs: Fix UAF in cifs_demultiplex_thread() + - gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() + - i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() + - i2c: mux: gpio: Add missing fwnode_handle_put() + - i2c: xiic: Correct return value check for xiic_reinit() + - drm/amdgpu: set completion status as preempted for the resubmission + - ASoC: cs35l56: Disable low-power hibernation mode + - drm/amd/display: Update DPG test pattern programming + - drm/amd/display: fix a regression in blank pixel data caused by coding + mistake + - arm64: dts: qcom: sdm845-db845c: Mark cont splash memory region as reserved + - direct_write_fallback(): on error revert the ->ki_pos update from buffered + write + - btrfs: reset destination buffer when read_extent_buffer() gets invalid range + - vfio/mdev: Fix a null-ptr-deref bug for mdev_unregister_parent() + - MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled + - spi: spi-gxp: BUG: Correct spi write return value + - bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() + - bus: ti-sysc: Fix missing AM35xx SoC matching + - firmware: arm_scmi: Harden perf domain info access + - firmware: arm_scmi: Fixup perf power-cost/microwatt support + - power: supply: mt6370: Fix missing error code in mt6370_chg_toggle_cfo() + - clk: sprd: Fix thm_parents incorrect configuration + - clk: si521xx: Use REGCACHE_FLAT instead of NONE + - clk: si521xx: Fix regmap write accessor + - clk: tegra: fix error return case for recalc_rate + - ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 + - ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot + - bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up + - swiotlb: use the calculated number of areas + - power: supply: ucs1002: fix error code in ucs1002_get_property() + - power: supply: rt9467: Fix rt9467_run_aicl() + - power: supply: core: fix use after free in uevent + - firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() + - xtensa: add default definition for XCHAL_HAVE_DIV32 + - xtensa: iss/network: make functions static + - xtensa: boot: don't add include-dirs + - xtensa: umulsidi3: fix conditional expression + - xtensa: boot/lib: fix function prototypes + - power: supply: rk817: Fix node refcount leak + - powerpc/stacktrace: Fix arch_stack_walk_reliable() + - selftests/powerpc: Fix emit_tests to work with run_kselftest.sh + - arm64: dts: imx8mp: Fix SDMA2/3 clocks + - arm64: dts: imx8mp-beacon-kit: Fix audio_pll2 clock + - soc: imx8m: Enable OCOTP clock for imx8mm before reading registers + - arm64: dts: imx8mm-evk: Fix hdmi@3d node + - arm64: dts: imx: Add imx8mm-prt8mm.dtb to build + - firmware: arm_ffa: Don't set the memory region attributes for MEM_LEND + - i915/guc: Get runtime pm in busyness worker only if already active + - accel/ivpu: Do not use wait event interruptible + - gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip + - i2c: npcm7xx: Fix callback completion ordering + - NFSD: Fix zero NFSv4 READ results when RQ_SPLICE_OK is not set + - x86/reboot: VMCLEAR active VMCSes before emergency reboot + - dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock + - bpf: Annotate bpf_long_memcpy with data_race + - ASoC: amd: yc: Add DMI entries to support Victus by HP Gaming Laptop + 15-fb0xxx (8A3E) + - spi: sun6i: reduce DMA RX transfer width to single byte + - spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain + - nvme-fc: Prevent null pointer dereference in nvme_fc_io_getuuid() + - parisc: sba: Fix compile warning wrt list of SBA devices + - parisc: sba-iommu: Fix sparse warnigs + - parisc: ccio-dma: Fix sparse warnings + - parisc: iosapic.c: Fix sparse warnings + - parisc: drivers: Fix sparse warning + - parisc: irq: Make irq_stack_union static to avoid sparse warning + - scsi: qedf: Add synchronization between I/O completions and abort + - scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock + - scsi: ufs: core: Poll HCS.UCRDY before issuing a UIC command + - selftests/ftrace: Correctly enable event in instance-event.tc + - ring-buffer: Avoid softlockup in ring_buffer_resize() + - btrfs: assert delayed node locked when removing delayed item + - selftests: fix dependency checker script + - ring-buffer: Do not attempt to read past "commit" + - net/smc: bugfix for smcr v2 server connect success statistic + - ata: sata_mv: Fix incorrect string length computation in mv_dump_mem() + - efi/x86: Ensure that EFI_RUNTIME_MAP is enabled for kexec + - platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig + - platform/x86: asus-wmi: Support 2023 ROG X16 tablet mode + - thermal/of: add missing of_node_put() + - drm/amdgpu: Store CU info from all XCCs for GFX v9.4.3 + - drm/amdkfd: Update cache info reporting for GFX v9.4.3 + - drm/amdkfd: Update CU masking for GFX 9.4.3 + - drm/amd/display: Don't check registers, if using AUX BL control + - drm/amdgpu/soc21: don't remap HDP registers for SR-IOV + - drm/amdgpu/nbio4.3: set proper rmmio_remap.reg_offset for SR-IOV + - drm/amdgpu: fallback to old RAS error message for aqua_vanjaram + - drm/amdkfd: Checkpoint and restore queues on GFX11 + - drm/amdgpu: Handle null atom context in VBIOS info ioctl + - objtool: Fix _THIS_IP_ detection for cold functions + - nvme-pci: do not set the NUMA node of device if it has none + - riscv: errata: fix T-Head dcache.cva encoding + - scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command + - scsi: pm80xx: Avoid leaking tags when processing + OPC_INB_SET_CONTROLLER_CONFIG command + - smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP + - ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() + - ata: libata-eh: do not thaw the port twice in ata_eh_reset() + - Add DMI ID for MSI Bravo 15 B7ED + - spi: nxp-fspi: reset the FLSHxCR1 registers + - spi: stm32: add a delay before SPI disable + - ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag + - spi: intel-pci: Add support for Granite Rapids SPI serial flash + - bpf: Clarify error expectations from bpf_clone_redirect + - ASoC: rt5640: Only cancel jack-detect work on suspend if active + - ALSA: hda: intel-sdw-acpi: Use u8 type for link index + - ASoC: cs42l42: Ensure a reset pulse meets minimum pulse width. + - ASoC: cs42l42: Don't rely on GPIOD_OUT_LOW to set RESET initially low + - ASoC: cs42l42: Avoid stale SoundWire ATTACH after hard reset + - firmware: cirrus: cs_dsp: Only log list of algorithms in debug build + - ASoC: wm_adsp: Fix missing locking in wm_adsp_[read|write]_ctl() + - memblock tests: fix warning: "__ALIGN_KERNEL" redefined + - memblock tests: fix warning ‘struct seq_file’ declared inside parameter list + - ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link + - ASoC: SOF: sof-audio: Fix DSP core put imbalance on widget setup failure + - media: vb2: frame_vector.c: replace WARN_ONCE with a comment + - NFSv4.1: fix zero value filehandle in post open getattr + - ASoC: SOF: Intel: MTL: Reduce the DSP init timeout + - powerpc/watchpoints: Disable preemption in thread_change_pc() + - powerpc/watchpoint: Disable pagefaults when getting user instruction + - powerpc/watchpoints: Annotate atomic context in more places + - ncsi: Propagate carrier gain/loss events to the NCSI controller + - net: hsr: Add __packed to struct hsr_sup_tlv. + - tsnep: Fix NAPI scheduling + - tsnep: Fix ethtool channels + - tsnep: Fix NAPI polling with budget 0 + - gfs2: fix glock shrinker ref issues + - i2c: designware: fix __i2c_dw_disable() in case master is holding SCL low + - LoongArch: Use _UL() and _ULL() + - LoongArch: Set all reserved memblocks on Node#0 at initialization + - fbdev/sh7760fb: Depend on FB=y + - perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 + - ASoC: cs35l56: Call pm_runtime_dont_use_autosuspend() + - iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range + - spi: zynqmp-gqspi: fix clock imbalance on probe failure + - x86/sgx: Resolves SECS reclaim vs. page fault for EAUG race + - x86/srso: Add SRSO mitigation for Hygon processors + - KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway + - KVM: SVM: Fix TSC_AUX virtualization setup + - KVM: x86/mmu: Open code leaf invalidation from mmu_notifier + - KVM: x86/mmu: Do not filter address spaces in + for_each_tdp_mmu_root_yield_safe() + - KVM: x86/mmu: Stop zapping invalidated TDP MMU roots asynchronously + - mptcp: fix bogus receive window shrinkage with multiple subflows + - mptcp: move __mptcp_error_report in protocol.c + - mptcp: process pending subflow error on close + - Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" + - scsi: core: ata: Do no try to probe for CDL on old drives + - serial: 8250_port: Check IRQ data before use + - nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() + - crypto: sm2 - Fix crash caused by uninitialized context + - ALSA: rawmidi: Fix NULL dereference at proc read + - ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre + M70q + - LoongArch: Fix lockdep static memory detection + - LoongArch: Define relocation types for ABI v2.10 + - LoongArch: numa: Fix high_memory calculation + - LoongArch: Add support for 32_PCREL relocation type + - LoongArch: Add support for 64_PCREL relocation type + - ata: libata-scsi: link ata port and scsi device + - scsi: sd: Differentiate system and runtime start/stop management + - scsi: sd: Do not issue commands to suspended disks on shutdown + - ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES + - io_uring/fs: remove sqe->rw_flags checking from LINKAT + - i2c: i801: unregister tco_pdev in i801_probe() error path + - ASoC: amd: yc: Fix non-functional mic on Lenovo 82QF and 82UG + - kernel/sched: Modify initial boot task idle setup + - sched/rt: Fix live lock between select_fallback_rq() and RT push + - Revert "SUNRPC dont update timeout value on connection reset" + - NFSv4: Fix a state manager thread deadlock regression + - ACPI: NFIT: Fix incorrect calculation of idt size + - timers: Tag (hr)timer softirq as hotplug safe + - drm/tests: Fix incorrect argument in drm_test_mm_insert_range + - cxl/mbox: Fix CEL logic for poison and security commands + - arm64: defconfig: remove CONFIG_COMMON_CLK_NPCM8XX=y + - mm/damon/vaddr-test: fix memory leak in damon_do_test_apply_three_regions() + - selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and + hugetlb_reparenting_test.sh that may cause error + - mm: mempolicy: keep VMA walk if both MPOL_MF_STRICT and MPOL_MF_MOVE are + specified + - mm/slab_common: fix slab_caches list corruption after kmem_cache_destroy() + - mm: page_alloc: fix CMA and HIGHATOMIC landing on the wrong buddy list + - mm: memcontrol: fix GFP_NOFS recursion in memory.high enforcement + - cxl/port: Fix cxl_test register enumeration regression + - cxl/pci: Fix appropriate checking for _OSC while handling CXL RAS registers + - ring-buffer: Fix bytes info in per_cpu buffer stats + - ring-buffer: Update "shortest_full" in polling + - btrfs: refresh dir last index during a rewinddir(3) call + - btrfs: file_remove_privs needs an exclusive lock in direct io write + - btrfs: set last dir index to the current last index when opening dir + - btrfs: fix race between reading a directory and adding entries to it + - btrfs: properly report 0 avail for very full file systems + - media: uvcvideo: Fix OOB read + - bpf: Add override check to kprobe multi link attach + - bpf: Fix BTF_ID symbol generation collision + - bpf: Fix BTF_ID symbol generation collision in tools/ + - net: thunderbolt: Fix TCPv6 GSO checksum calculation + - thermal: sysfs: Fix trip_point_hyst_store() + - tracing/user_events: Align set_bit() address for all archs + - ata: libata-core: Fix ata_port_request_pm() locking + - ata: libata-core: Fix port and device removal + - ata: libata-core: Do not register PM operations for SAS ports + - ata: libata-sata: increase PMP SRST timeout to 10s + - i915: Limit the length of an sg list to the requested length + - drm/i915/gt: Fix reservation address in ggtt_reserve_guc_top + - power: supply: rk817: Add missing module alias + - power: supply: ab8500: Set typing and props + - fs: binfmt_elf_efpic: fix personality for ELF-FDPIC + - drm/amdkfd: Use gpu_offset for user queue's wptr + - drm/amd/display: fix the ability to use lower resolution modes on eDP + - drm/meson: fix memory leak on ->hpd_notify callback + - rbd: move rbd_dev_refresh() definition + - rbd: decouple header read-in from updating rbd_dev->header + - rbd: decouple parent info read-in from updating rbd_dev + - rbd: take header_rwsem in rbd_dev_refresh() only when updating + - memcg: drop kmem.limit_in_bytes + - mm, memcg: reconsider kmem.limit_in_bytes deprecation + - ASoC: amd: yc: Fix a non-functional mic on Lenovo 82TL + - Linux 6.5.6 + + * Mantic update: v6.5.5 upstream stable release (LP: #2043416) + - iomap: Fix possible overflow condition in iomap_write_delalloc_scan + - autofs: fix memory leak of waitqueues in autofs_catatonic_mode + - btrfs: handle errors properly in update_inline_extent_backref() + - btrfs: output extra debug info if we failed to find an inline backref + - locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock + - ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer + - kernel/fork: beware of __put_task_struct() calling context + - rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to + _idle() + - scftorture: Forgive memory-allocation failure if KASAN + - ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 + - platform/chrome: cros_ec_lpc: Remove EC panic shutdown timeout + - x86/amd_nb: Add PCI IDs for AMD Family 1Ah-based models + - perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09 + - s390/boot: cleanup number of page table levels setup + - kselftest/arm64: fix a memleak in zt_regs_run() + - perf/imx_ddr: speed up overflow frequency of cycle + - ACPI: video: Add backlight=native DMI quirk for Apple iMac12,1 and iMac12,2 + - hw_breakpoint: fix single-stepping when using bpf_overflow_handler + - ACPI: x86: s2idle: Catch multiple ACPI_TYPE_PACKAGE objects + - selftests/nolibc: fix up kernel parameters support + - selftests/nolibc: prevent out of bounds access in expect_vfprintf + - spi: sun6i: add quirk for dual and quad SPI modes support + - devlink: remove reload failed checks in params get/set callbacks + - crypto: lrw,xts - Replace strlcpy with strscpy + - ice: Don't tx before switchdev is fully configured + - wifi: ath9k: fix fortify warnings + - wifi: ath9k: fix printk specifier + - wifi: rtw88: delete timer and free skb queue when unloading + - wifi: mwifiex: fix fortify warning + - mt76: mt7921: don't assume adequate headroom for SDIO headers + - wifi: wil6210: fix fortify warnings + - can: sun4i_can: Add acceptance register quirk + - can: sun4i_can: Add support for the Allwinner D1 + - [Config] updateconfigs for CAN_SUN4I + - net: Use sockaddr_storage for getsockopt(SO_PEERNAME). + - wifi: ath12k: Fix a NULL pointer dereference in ath12k_mac_op_hw_scan() + - wifi: ath12k: avoid array overflow of hw mode for preferred_hw_mode + - net/ipv4: return the real errno instead of -EINVAL + - crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui() + - Bluetooth: btusb: Add device 0489:e0f5 as MT7922 device + - Bluetooth: btusb: Add a new VID/PID 0489/e0f6 for MT7922 + - Bluetooth: btusb: Add new VID/PID 0489/e102 for MT7922 + - Bluetooth: btusb: Add new VID/PID 04ca/3804 for MT7922 + - Bluetooth: Fix hci_suspend_sync crash + - Bluetooth: btusb: Add support for another MediaTek 7922 VID/PID + - netlink: convert nlk->flags to atomic flags + - tpm_tis: Resend command to recover from data transfer errors + - mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450 + - alx: fix OOB-read compiler warning + - wifi: iwlwifi: pcie: avoid a warning in case prepare card failed + - wifi: mac80211: check S1G action frame size + - netfilter: ebtables: fix fortify warnings in size_entry_mwt() + - wifi: cfg80211: reject auth/assoc to AP with our address + - wifi: cfg80211: ocb: don't leave if not joined + - wifi: mac80211: check for station first in client probe + - wifi: mac80211_hwsim: drop short frames + - Revert "wifi: mac80211_hwsim: check the return value of nla_put_u32" + - libbpf: Free btf_vmlinux when closing bpf_object + - wifi: ath12k: Fix memory leak in rx_desc and tx_desc + - wifi: ath12k: add check max message length while scanning with extraie + - Fix nomenclature for USB and PCI wireless devices + - bpf: Consider non-owning refs trusted + - bpf: Consider non-owning refs to refcounted nodes RCU protected + - drm/bridge: tc358762: Instruct DSI host to generate HSE packets + - drm/edid: Add quirk for OSVR HDK 2.0 + - drm: bridge: samsung-dsim: Drain command transfer FIFO before transfer + - arm64: dts: qcom: sm6125-pdx201: correct ramoops pmsg-size + - arm64: dts: qcom: sm6125-sprout: correct ramoops pmsg-size + - arm64: dts: qcom: sm6350: correct ramoops pmsg-size + - arm64: dts: qcom: sm8150-kumano: correct ramoops pmsg-size + - arm64: dts: qcom: sm8250-edo: correct ramoops pmsg-size + - drm/amdgpu: Increase soft IH ring size + - samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000' + - drm/amdgpu: Update ring scheduler info as needed + - drm/amd/display: Fix underflow issue on 175hz timing + - ASoC: SOF: topology: simplify code to prevent static analysis warnings + - ASoC: Intel: sof_sdw: Update BT offload config for soundwire config + - ALSA: hda: intel-dsp-cfg: add LunarLake support + - drm/amd/display: Use DTBCLK as refclk instead of DPREFCLK + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN31 + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN314 + - drm/amd/display: Use max memclk variable when setting max memclk + - drm/msm/adreno: Use quirk identify hw_apriv + - drm/msm/adreno: Use quirk to identify cached-coherent support + - drm/exynos: fix a possible null-pointer dereference due to data race in + exynos_drm_crtc_atomic_disable() + - io_uring: annotate the struct io_kiocb slab for appropriate user copy + - drm/mediatek: dp: Change logging to dev for mtk_dp_aux_transfer() + - bus: ti-sysc: Configure uart quirks for k3 SoC + - arm64: dts: qcom: sc8280xp-x13s: Add camera activity LED + - md: raid1: fix potential OOB in raid1_remove_disk() + - ext2: fix datatype of block number in ext2_xattr_set2() + - blk-mq: fix tags leak when shrink nr_hw_queues + - ASoC: SOF: amd: clear panic mask status when panic occurs + - x86: bring back rep movsq for user access on CPUs without ERMS + - fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount() + - jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount + - ext4: add two helper functions extent_logical_end() and pa_logical_end() + - ext4: avoid overlapping preallocations due to overflow + - PCI: dwc: Provide deinit callback for i.MX + - ARM: 9317/1: kexec: Make smp stop calls asynchronous + - powerpc/pseries: fix possible memory leak in ibmebus_bus_init() + - PCI: vmd: Disable bridge window for domain reset + - PCI: fu740: Set the number of MSI vectors + - media: mdp3: Fix resource leaks in of_find_device_by_node + - media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer + - media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer() + - media: af9005: Fix null-ptr-deref in af9005_i2c_xfer + - media: anysee: fix null-ptr-deref in anysee_master_xfer + - media: az6007: Fix null-ptr-deref in az6007_i2c_xfer() + - media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer + - scsi: lpfc: Abort outstanding ELS cmds when mailbox timeout error is + detected + - media: tuners: qt1010: replace BUG_ON with a regular error + - media: pci: cx23885: replace BUG with error return + - usb: cdns3: Put the cdns set active part outside the spin lock + - usb: typec: intel_pmc_mux: Add new ACPI ID for Lunar Lake IOM device + - usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc + - tools: iio: iio_generic_buffer: Fix some integer type and calculation + - scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show() + - serial: cpm_uart: Avoid suspicious locking + - misc: open-dice: make OPEN_DICE depend on HAS_IOMEM + - usb: dwc3: dwc3-octeon: Verify clock divider + - usb: ehci: add workaround for chipidea PORTSC.PEC bug + - usb: chipidea: add workaround for chipidea PEC bug + - media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning + - kobject: Add sanity check for kset->kobj.ktype in kset_register() + - interconnect: Fix locking for runpm vs reclaim + - usb: typec: qcom-pmic-typec: register drm_bridge + - printk: Reduce console_unblank() usage in unsafe scenarios + - printk: Keep non-panic-CPUs out of console lock + - printk: Do not take console lock for console_flush_on_panic() + - printk: Consolidate console deferred printing + - printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() + - ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow + - btrfs: introduce struct to consolidate extent buffer write context + - btrfs: zoned: introduce block group context to btrfs_eb_write_context + - btrfs: zoned: return int from btrfs_check_meta_write_pointer + - btrfs: zoned: defer advancing meta write pointer + - btrfs: zoned: activate metadata block group on write time + - mtd: spi-nor: spansion: use CLPEF as an alternative to CLSR + - mtd: spi-nor: spansion: preserve CFR2V[7] when writing MEMLAT + - btrfs: add a helper to read the superblock metadata_uuid + - btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super + - nvmet-tcp: pass iov_len instead of sg->length to bvec_set_page() + - drm: gm12u320: Fix the timeout usage for usb_bulk_msg() + - scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir() + - md: don't dereference mddev after export_rdev() + - md: fix warning for holder mismatch from export_rdev() + - efivarfs: fix statfs() on efivarfs + - PM: hibernate: Fix the exclusive get block device in test_resume mode + - selftests: tracing: Fix to unmount tracefs for recovering environment + - x86/ibt: Suppress spurious ENDBR + - x86/ibt: Avoid duplicate ENDBR in __put_user_nocheck*() + - riscv: kexec: Align the kexeced kernel entry + - x86/sched: Restore the SD_ASYM_PACKING flag in the DIE domain + - scsi: target: core: Fix target_cmd_counter leak + - scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - panic: Reenable preemption in WARN slowpath + - ata: libata-core: fetch sense data for successful commands iff CDL enabled + - x86/boot/compressed: Reserve more memory for page tables + - x86/purgatory: Remove LTO flags + - samples/hw_breakpoint: fix building without module unloading + - blk-mq: prealloc tags when increase tagset nr_hw_queues + - blk-mq: fix tags UAF when shrinking q->nr_hw_queues + - md/raid1: fix error: ISO C90 forbids mixed declarations + - Revert "SUNRPC: Fail faster on bad verifier" + - attr: block mode changes of symlinks + - ovl: fix failed copyup of fileattr on a symlink + - ovl: fix incorrect fdput() on aio completion + - io_uring/net: fix iter retargeting for selected buf + - x86/platform/uv: Use alternate source for socket to node data + - Revert "firewire: core: obsolete usage of GFP_ATOMIC at building node tree" + - drm/amd: Make fence wait in suballocator uninterruptible + - Revert "drm/amd: Disable S/G for APUs when 64GB or more host memory" + - dm: don't attempt to queue IO under RCU protection + - dm: fix a race condition in retrieve_deps + - btrfs: fix lockdep splat and potential deadlock after failure running + delayed items + - btrfs: fix a compilation error if DEBUG is defined in btree_dirty_folio + - btrfs: fix race between finishing block group creation and its item update + - btrfs: release path before inode lookup during the ino lookup ioctl + - btrfs: check for BTRFS_FS_ERROR in pending ordered assert + - tracing/synthetic: Fix order of struct trace_dynamic_info + - tracing: Have tracing_max_latency inc the trace array ref count + - tracing: Have event inject files inc the trace array ref count + - tracing/synthetic: Print out u64 values properly + - tracing: Increase trace array ref count on enable and filter files + - tracing: Have current_trace inc the trace array ref count + - tracing: Have option files inc the trace array ref count + - selinux: fix handling of empty opts in selinux_fs_context_submount() + - nfsd: fix change_info in NFSv4 RENAME replies + - tracefs: Add missing lockdown check to tracefs_create_dir() + - i2c: aspeed: Reset the i2c controller when timeout occurs + - ata: libata: disallow dev-initiated LPM transitions to unsupported states + - ata: libahci: clear pending interrupt status + - scsi: megaraid_sas: Fix deadlock on firmware crashdump + - scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() + - scsi: pm8001: Setup IRQs on resume + - Revert "comedi: add HAS_IOPORT dependencies" + - [Config] updateconfigs for COMEDI/HAS_IOPORT deps + - ext4: fix rec_len verify error + - drm/radeon: make fence wait in suballocator uninterrruptable + - drm/i915: Only check eDP HPD when AUX CH is shared + - drm/amdkfd: Insert missing TLB flush on GFX10 and later + - drm/tests: helpers: Avoid a driver uaf + - drm/amd/display: Adjust the MST resume flow + - drm/amd/display: fix the white screen issue when >= 64GB DRAM + - drm/amd/display: Add DPIA Link Encoder Assignment Fix + - drm/amd/display: Fix 2nd DPIA encoder Assignment + - Revert "memcg: drop kmem.limit_in_bytes" + - drm/amdgpu: fix amdgpu_cs_p1_user_fence + - interconnect: Teach lockdep about icc_bw_lock order + - x86/alternatives: Remove faulty optimization + - x86,static_call: Fix static-call vs return-thunk + - Linux 6.5.5 + + * Could not probe Samsung P44 30S3 PM9C1a SSD correctly: nvme nvme0: Device + not ready: aborting installation, CSTS=0x0 (LP: #2041495) // Mantic update: + v6.5.5 upstream stable release (LP: #2043416) + - nvme: avoid bogus CRTO values + + * Mantic update: v6.5.4 upstream stable release (LP: #2041999) + - net/ipv6: SKB symmetric hash should incorporate transport ports + - drm/virtio: Conditionally allocate virtio_gpu_fence + - scsi: ufs: core: Add advanced RPMB support where UFSHCI 4.0 does not support + EHS length in UTRD + - scsi: qla2xxx: Adjust IOCB resource on qpair create + - scsi: qla2xxx: Limit TMF to 8 per function + - scsi: qla2xxx: Fix deletion race condition + - scsi: qla2xxx: fix inconsistent TMF timeout + - scsi: qla2xxx: Fix command flush during TMF + - scsi: qla2xxx: Fix erroneous link up failure + - scsi: qla2xxx: Turn off noisy message log + - scsi: qla2xxx: Fix session hang in gnl + - scsi: qla2xxx: Fix TMF leak through + - scsi: qla2xxx: Remove unsupported ql2xenabledif option + - scsi: qla2xxx: Flush mailbox commands on chip reset + - scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit() + - scsi: qla2xxx: Error code did not return to upper layer + - scsi: qla2xxx: Fix firmware resource tracking + - null_blk: fix poll request timeout handling + - kernfs: fix missing kernfs_iattr_rwsem locking + - fbdev/ep93xx-fb: Do not assign to struct fb_info.dev + - clk: qcom: camcc-sc7180: fix async resume during probe + - drm/ast: Fix DRAM init on AST2200 + - ASoC: tegra: Fix SFC conversion for few rates + - ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size + - arm64: tegra: Update AHUB clock parent and rate on Tegra234 + - arm64: tegra: Update AHUB clock parent and rate + - clk: qcom: turingcc-qcs404: fix missing resume during probe + - ARM: dts: qcom: msm8974pro-castor: correct inverted X of touchscreen + - arm64: dts: qcom: msm8953-vince: drop duplicated touschreen parent interrupt + - ARM: dts: qcom: msm8974pro-castor: correct touchscreen function names + - ARM: dts: qcom: msm8974pro-castor: correct touchscreen syna,nosleep-mode + - arm64: dts: renesas: rzg2l: Fix txdv-skew-psec typos + - ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 + - send channel sequence number in SMB3 requests after reconnects + - memcg: drop kmem.limit_in_bytes + - mm: hugetlb_vmemmap: fix a race between vmemmap pmd split + - lib/test_meminit: allocate pages up to order MAX_ORDER + - Multi-gen LRU: avoid race in inc_min_seq() + - parisc: led: Fix LAN receive and transmit LEDs + - parisc: led: Reduce CPU overhead for disk & lan LED computation + - cifs: update desired access while requesting for directory lease + - pinctrl: cherryview: fix address_space_handler() argument + - dt-bindings: clock: xlnx,versal-clk: drop select:false + - clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz + - clk: imx: pll14xx: align pdiv with reference manual + - clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock + - soc: qcom: qmi_encdec: Restrict string length in decode + - clk: qcom: dispcc-sm8450: fix runtime PM imbalance on probe errors + - clk: qcom: dispcc-sm8550: fix runtime PM imbalance on probe errors + - clk: qcom: lpasscc-sc7280: fix missing resume during probe + - clk: qcom: q6sstop-qcs404: fix missing resume during probe + - clk: qcom: mss-sc7180: fix missing resume during probe + - NFS: Fix a potential data corruption + - NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + - bus: mhi: host: Skip MHI reset if device is in RDDM + - kbuild: rpm-pkg: define _arch conditionally + - kbuild: do not run depmod for 'make modules_sign' + - kbuild: dummy-tools: make MPROFILE_KERNEL checks work on BE + - tpm_crb: Fix an error handling path in crb_acpi_add() + - gfs2: Switch to wait_event in gfs2_logd + - gfs2: low-memory forced flush fixes + - mailbox: qcom-ipcc: fix incorrect num_chans counting + - kconfig: fix possible buffer overflow + - tools/mm: fix undefined reference to pthread_once + - Input: iqs7222 - configure power mode before triggering ATI + - perf trace: Really free the evsel->priv area + - pwm: atmel-tcb: Harmonize resource allocation order + - pwm: atmel-tcb: Fix resource freeing in error path and remove + - backlight: lp855x: Initialize PWM state on first brightness change + - backlight: gpio_backlight: Drop output GPIO direction check for initial + power state + - perf parse-events: Separate YYABORT and YYNOMEM cases + - perf parse-events: Move instances of YYABORT to YYNOMEM + - perf parse-events: Separate ENOMEM memory handling + - perf parse-events: Additional error reporting + - KVM: SVM: Don't defer NMI unblocking until next exit for SEV-ES guests + - Input: tca6416-keypad - always expect proper IRQ number in i2c client + - Input: tca6416-keypad - fix interrupt enable disbalance + - perf annotate bpf: Don't enclose non-debug code with an assert() + - x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() + - perf script: Print "cgroup" field on the same line as "comm" + - perf bpf-filter: Fix sample flag check with || + - perf dlfilter: Initialize addr_location before passing it to + thread__find_symbol_fb() + - perf dlfilter: Add al_cleanup() + - perf vendor events: Update the JSON/events descriptions for power10 platform + - perf vendor events: Drop some of the JSON/events for power10 platform + - perf vendor events: Drop STORES_PER_INST metric event for power10 platform + - perf vendor events: Move JSON/events to appropriate files for power10 + platform + - perf vendor events: Update metric event names for power10 platform + - perf top: Don't pass an ERR_PTR() directly to perf_session__delete() + - perf lock: Don't pass an ERR_PTR() directly to perf_session__delete() + - watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load + - perf vendor events arm64: Remove L1D_CACHE_LMISS from AmpereOne list + - pwm: lpc32xx: Remove handling of PWM channels + - accel/ivpu: refactor deprecated strncpy + - perf header: Fix missing PMU caps + - i3c: master: svc: Describe member 'saved_regs' + - perf test stat_bpf_counters_cgrp: Fix shellcheck issue about logical + operators + - perf test stat_bpf_counters_cgrp: Enhance perf stat cgroup BPF counter test + - regulator: tps6287x: Fix n_voltages + - selftests/bpf: Fix flaky cgroup_iter_sleepable subtest + - drm/i915: mark requests for GuC virtual engines to avoid use-after-free + - blk-throttle: use calculate_io/bytes_allowed() for throtl_trim_slice() + - blk-throttle: consider 'carryover_ios/bytes' in throtl_trim_slice() + - netfilter: nf_tables: Audit log setelem reset + - netfilter: nf_tables: Audit log rule reset + - smb: propagate error code of extract_sharename() + - net/sched: fq_pie: avoid stalls in fq_pie_timer() + - sctp: annotate data-races around sk->sk_wmem_queued + - ipv4: annotate data-races around fi->fib_dead + - net: read sk->sk_family once in sk_mc_loop() + - net: fib: avoid warn splat in flow dissector + - xsk: Fix xsk_diag use-after-free error during socket cleanup + - drm/i915/gvt: Verify pfn is "valid" before dereferencing "struct page" + - drm/i915/gvt: Put the page reference obtained by KVM's gfn_to_pfn() + - drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt() + - drm/amd/display: fix mode scaling (RMX_.*) + - net/handshake: fix null-ptr-deref in handshake_nl_done_doit() + - net: use sk_forward_alloc_get() in sk_get_meminfo() + - net: annotate data-races around sk->sk_forward_alloc + - mptcp: annotate data-races around msk->rmem_fwd_alloc + - net: annotate data-races around sk->sk_tsflags + - net: annotate data-races around sk->sk_bind_phc + - ipv4: ignore dst hint for multipath routes + - ipv6: ignore dst hint for multipath routes + - selftests/bpf: Fix a CI failure caused by vsock write + - igb: disable virtualization features on 82580 + - gve: fix frag_list chaining + - veth: Fixing transmit return status for dropped packets + - net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr + - net: phy: micrel: Correct bit assignments for phy_device flags + - bpf, sockmap: Fix skb refcnt race after locking changes + - af_unix: Fix msg_controllen test in scm_pidfd_recv() for MSG_CMSG_COMPAT. + - af_unix: Fix data-races around user->unix_inflight. + - af_unix: Fix data-race around unix_tot_inflight. + - af_unix: Fix data-races around sk->sk_shutdown. + - af_unix: Fix data race around sk->sk_err. + - kcm: Destroy mutex in kcm_exit_net() + - octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler + - igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 + - igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80 + - igb: Change IGB_MIN to allow set rx/tx value between 64 and 80 + - s390/zcrypt: don't leak memory if dev_set_name() fails + - regulator: tps6594-regulator: Fix random kernel crash + - idr: fix param name in idr_alloc_cyclic() doc + - ip_tunnels: use DEV_STATS_INC() + - net/mlx5e: Clear mirred devices array if the rule is split + - net/mlx5: Give esw_offloads_load/unload_rep() "mlx5_" prefix + - net/mlx5: Rework devlink port alloc/free into init/cleanup + - net/mlx5: Push devlink port PF/VF init/cleanup calls out of + devlink_port_register/unregister() + - mlx5/core: E-Switch, Create ACL FT for eswitch manager in switchdev mode + - net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and + offload + - net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times + - net: dsa: sja1105: complete tc-cbs offload support on SJA1110 + - net: phylink: fix sphinx complaint about invalid literal + - bpf: Invoke __bpf_prog_exit_sleepable_recur() on recursion in + kern_sys_bpf(). + - bpf: Assign bpf_tramp_run_ctx::saved_run_ctx before recursion check. + - s390/bpf: Pass through tail call counter in trampolines + - bpf: bpf_sk_storage: Fix invalid wait context lockdep report + - bpf: bpf_sk_storage: Fix the missing uncharge in sk_omem_alloc + - netfilter: nf_tables: Unbreak audit log reset + - net: phy: Provide Module 4 KSZ9477 errata (DS80000754C) + - net: hns3: fix tx timeout issue + - net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() + - net: hns3: fix debugfs concurrency issue between kfree buffer and read + - net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue + - net: hns3: fix the port information display when sfp is absent + - net: hns3: remove GSO partial feature bit + - net: enetc: distinguish error from valid pointers in + enetc_fixup_clear_rss_rfs() + - sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() + - sh: push-switch: Reorder cleanup operations to avoid use-after-free bug + - linux/export: fix reference to exported functions for parisc64 + - watchdog: advantech_ec_wdt: fix Kconfig dependencies + - drm/amd/display: Temporary Disable MST DP Colorspace Property + - ARC: atomics: Add compiler barrier to atomic operations... + - clocksource/drivers/arm_arch_timer: Disable timer before programming CVAL + - dmaengine: sh: rz-dmac: Fix destination and source data size setting + - misc: fastrpc: Fix remote heap allocation request + - misc: fastrpc: Fix incorrect DMA mapping unmap request + - jbd2: fix checkpoint cleanup performance regression + - jbd2: check 'jh->b_transaction' before removing it from checkpoint + - jbd2: correct the end of the journal recovery scan range + - ext4: add correct group descriptors and reserved GDT blocks to system zone + - ext4: fix memory leaks in ext4_fname_{setup_filename,prepare_lookup} + - ext4: drop dio overwrite only flag and associated warning + - f2fs: get out of a repeat loop when getting a locked data page + - f2fs: flush inode if atomic file is aborted + - f2fs: avoid false alarm of circular locking + - lib: test_scanf: Add explicit type cast to result initialization in + test_number_prefix() + - hwspinlock: qcom: add missing regmap config for SFPB MMIO implementation + - memcontrol: ensure memcg acquired by id is properly set up + - ata: ahci: Add Elkhart Lake AHCI controller + - ata: pata_falcon: fix IO base selection for Q40 + - ata: sata_gemini: Add missing MODULE_DESCRIPTION + - ata: pata_ftide010: Add missing MODULE_DESCRIPTION + - fuse: nlookup missing decrement in fuse_direntplus_link + - btrfs: zoned: do not zone finish data relocation block group + - btrfs: fix start transaction qgroup rsv double free + - btrfs: free qgroup rsv on io failure + - btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART + - btrfs: set page extent mapped after read_folio in relocate_one_page + - btrfs: zoned: re-enable metadata over-commit for zoned mode + - btrfs: use the correct superblock to compare fsid in btrfs_validate_super + - btrfs: scrub: avoid unnecessary extent tree search preparing stripes + - btrfs: scrub: avoid unnecessary csum tree search preparing stripes + - btrfs: scrub: fix grouping of read IO + - drm/mxsfb: Disable overlay plane in mxsfb_plane_overlay_atomic_disable() + - mtd: rawnand: brcmnand: Fix crash during the panic_write + - mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write + - mtd: spi-nor: Correct flags for Winbond w25q128 + - mtd: rawnand: brcmnand: Fix potential false time out warning + - mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller + - Revert "drm/amd/display: Remove v_startup workaround for dcn3+" + - drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma + - drm/amd/display: limit the v_startup workaround to ASICs older than DCN3.1 + - drm/amd/display: prevent potential division by zero errors + - KVM: VMX: Refresh available regs and IDT vectoring info before NMI handling + - KVM: SVM: Take and hold ir_list_lock when updating vCPU's Physical ID entry + - KVM: SVM: Don't inject #UD if KVM attempts to skip SEV guest insn + - KVM: SVM: Get source vCPUs from source VM for SEV-ES intrahost migration + - KVM: nSVM: Check instead of asserting on nested TSC scaling support + - KVM: nSVM: Load L1's TSC multiplier based on L1 state, not L2 state + - KVM: SVM: Set target pCPU during IRTE update if target vCPU is running + - KVM: SVM: Skip VMSA init in sev_es_init_vmcb() if pointer is NULL + - MIPS: Only fiddle with CHECKFLAGS if `need-compiler' + - MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install' regression + - perf hists browser: Fix hierarchy mode header + - perf build: Update build rule for generated files + - perf test shell stat_bpf_counters: Fix test on Intel + - perf tools: Handle old data in PERF_RECORD_ATTR + - perf build: Include generated header files properly + - perf hists browser: Fix the number of entries for 'e' key + - drm/amd/display: always switch off ODM before committing more streams + - drm/amd/display: Remove wait while locked + - drm/amdkfd: Add missing gfx11 MQD manager callbacks + - drm/amdgpu: register a dirty framebuffer callback for fbcon + - bpf: fix bpf_probe_read_kernel prototype mismatch + - regulator: raa215300: Change the scope of the variables {clkin_name, + xin_name} + - regulator: raa215300: Fix resource leak in case of error + - parisc: sba_iommu: Fix build warning if procfs if disabled + - kunit: Fix wild-memory-access bug in kunit_free_suite_set() + - net: ipv4: fix one memleak in __inet_del_ifa() + - kselftest/runner.sh: Propagate SIGTERM to runner child + - selftests: Keep symlinks, when possible + - selftests/ftrace: Fix dependencies for some of the synthetic event tests + - net: microchip: vcap api: Fix possible memory leak for vcap_dup_rule() + - octeontx2-pf: Fix page pool cache index corruption. + - net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in + smcr_port_add + - net: stmmac: fix handling of zero coalescing tx-usecs + - net: ethernet: mvpp2_main: fix possible OOB write in + mvpp2_ethtool_get_rxnfc() + - net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in + mtk_hwlro_get_fdir_all() + - hsr: Fix uninit-value access in fill_frame_info() + - net: ethernet: adi: adin1110: use eth_broadcast_addr() to assign broadcast + address + - net:ethernet:adi:adin1110: Fix forwarding offload + - net: dsa: sja1105: hide all multicast addresses from "bridge fdb show" + - net: dsa: sja1105: propagate exact error code from + sja1105_dynamic_config_poll_valid() + - net: dsa: sja1105: fix multicast forwarding working only for last added mdb + entry + - net: dsa: sja1105: serialize sja1105_port_mcast_flood() with other FDB + accesses + - net: dsa: sja1105: block FDB accesses that are concurrent with a switch + reset + - r8152: check budget for r8152_poll() + - kcm: Fix memory leak in error path of kcm_sendmsg() + - platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors + - platform/mellanox: mlxbf-tmfifo: Drop jumbo frames + - platform/mellanox: mlxbf-pmc: Fix potential buffer overflows + - platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events + - platform/mellanox: NVSW_SN2201 should depend on ACPI + - [Config] updateconfigs for NVSW_SN2201 + - net: macb: fix sleep inside spinlock + - veth: Update XDP feature set when bringing up device + - ipv6: fix ip6_sock_set_addr_preferences() typo + - tcp: Factorise sk_family-independent comparison in + inet_bind2_bucket_match(_addr_any). + - tcp: Fix bind() regression for v4-mapped-v6 wildcard address. + - tcp: Fix bind() regression for v4-mapped-v6 non-wildcard address. + - selftest: tcp: Fix address length in bind_wildcard.c. + - ixgbe: fix timestamp configuration code + - igb: clean up in all error paths when enabling SR-IOV + - net: renesas: rswitch: Fix unmasking irq condition + - kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg(). + - vm: fix move_vma() memory accounting being off + - drm/amd/display: Fix a bug when searching for insert_above_mpcc + - Linux 6.5.4 + + * CVE-2023-6176 + - net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() + + -- Roxana Nicolescu Fri, 05 Jan 2024 15:57:56 +0100 + linux (6.5.0-14.14) mantic; urgency=medium * mantic/linux: 6.5.0-14.14 -proposed tracker (LP: #2042660) diff -u linux-oracle-6.5-6.5.0/debian.master/config/annotations linux-oracle-6.5-6.5.0/debian.master/config/annotations --- linux-oracle-6.5-6.5.0/debian.master/config/annotations +++ linux-oracle-6.5-6.5.0/debian.master/config/annotations @@ -531,6 +531,9 @@ CONFIG_RUST_IS_AVAILABLE policy<{'amd64': 'y', 'arm64': '-', 'armhf': '-', 'ppc64el': '-', 'riscv64': '-', 's390x': '-'}> CONFIG_RUST_IS_AVAILABLE note<'required to enable Rust support, LP: #1993183'> +CONFIG_S390_UV_UAPI policy<{'s390x': 'y'}> +CONFIG_S390_UV_UAPI note<'LP: #2048919'> + CONFIG_SAMPLE_TRACE_PRINTK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> CONFIG_SAMPLE_TRACE_PRINTK note<'Required for ftrace selftests'> @@ -738,6 +741,9 @@ CONFIG_VFIO_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> CONFIG_VFIO_PCI note<'LP: #1636733'> +CONFIG_VFIO_PCI_ZDEV_KVM policy<{'s390x': 'y'}> +CONFIG_VFIO_PCI_ZDEV_KVM note<'LP: #2042853'> + CONFIG_VIDEO_VIMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_VIDEO_VIMC note<'LP: #1831482'> @@ -1543,6 +1549,7 @@ CONFIG_ARM64_ERRATUM_2457168 policy<{'arm64': 'y'}> CONFIG_ARM64_ERRATUM_2645198 policy<{'arm64': 'y'}> CONFIG_ARM64_ERRATUM_2658417 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_2966298 policy<{'arm64': 'y'}> CONFIG_ARM64_ERRATUM_819472 policy<{'arm64': 'y'}> CONFIG_ARM64_ERRATUM_824069 policy<{'arm64': 'y'}> CONFIG_ARM64_ERRATUM_826319 policy<{'arm64': 'y'}> @@ -2416,6 +2423,7 @@ CONFIG_CAN_SLCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_CAN_SOFTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_CAN_SOFTING_CS policy<{'amd64': 'm'}> +CONFIG_CAN_SUN4I policy<{'riscv64': 'n'}> CONFIG_CAN_TI_HECC policy<{'armhf': 'm'}> CONFIG_CAN_UCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_CAN_VCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> @@ -2780,6 +2788,7 @@ CONFIG_CODA_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> CONFIG_CODE_PATCHING_SELFTEST policy<{'ppc64el': 'n'}> CONFIG_COMEDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_COMEDI_8254 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_8255 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_8255_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_8255_SA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> @@ -2797,40 +2806,91 @@ CONFIG_COMEDI_ADL_PCI6208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_ADL_PCI7X3X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_ADL_PCI8164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADL_PCI9111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADL_PCI9118 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADQ12B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADV_PCI1710 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_ADV_PCI1720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_ADV_PCI1723 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_ADV_PCI1724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_ADV_PCI1760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADV_PCI_DIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AIO_AIO12_8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AIO_IIRO_16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_AMPLC_PC236 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PC236_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_AMPLC_PC236_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PC263_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_AMPLC_PC263_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PCI224 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PCI230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_BOND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_C6XDIGIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_CB_DAS16_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_CB_PCIDAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_CB_PCIDAS64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_CB_PCIDDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_CB_PCIMDAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_CB_PCIMDDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_CONTEC_PCI_DIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAC02 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_DAQBOARD2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS08_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_DAS08_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS08_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS16M1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS1800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS6402 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB policy<{'amd64': '20480', 'arm64': '20480', 'armhf': '20480', 'ppc64el': '20480', 'riscv64': '20480'}> CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB policy<{'amd64': '2048', 'arm64': '2048', 'armhf': '2048', 'ppc64el': '2048', 'riscv64': '2048'}> +CONFIG_COMEDI_DMM32AT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2811 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2814 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2815 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2817 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT282X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_DT3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_DT9812 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_DYNA_PCI10XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_FL512 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_GSC_HPDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_ICP_MULTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_II_PCI20KC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ISADMA policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_ISA_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> CONFIG_COMEDI_JR3_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_KCOMEDILIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_KE_COUNTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ME4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_ME_DAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_MF6X4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_MISC_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> CONFIG_COMEDI_MITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_MPC624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_MULTIQ3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_NI_6527 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_NI_65XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_NI_660X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_NI_670X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_ATMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_ATMIO16D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_AT_A2150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_AT_AO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_NI_DAQ_700_CS policy<{'amd64': 'm'}> CONFIG_COMEDI_NI_DAQ_DIO24_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_LABPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_LABPC_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_LABPC_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_LABPC_ISADMA policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_COMEDI_NI_LABPC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_NI_MIO_CS policy<{'amd64': 'm'}> CONFIG_COMEDI_NI_PCIDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_NI_PCIMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> @@ -2840,8 +2900,24 @@ CONFIG_COMEDI_NI_USB6501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_PCI_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL726 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL812 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL816 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL818 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCM3724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCMAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_PCMCIA_DRIVERS policy<{'amd64': 'm'}> +CONFIG_COMEDI_PCMDA12 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCMMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCMUIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_QUATECH_DAQP_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_RTD520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_RTI800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_RTI802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_S526 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_S626 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> CONFIG_COMEDI_TESTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> @@ -6099,11 +6175,13 @@ CONFIG_IMA_APPRAISE_BOOTPARAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_IMA_APPRAISE_BUILD_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> CONFIG_IMA_APPRAISE_MODSIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_BLACKLIST_KEYRING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> CONFIG_IMA_DEFAULT_HASH policy<{'amd64': '"sha1"', 'arm64': '"sha1"', 'armhf': '"sha1"', 'ppc64el': '"sha256"', 'riscv64': '"sha1"', 's390x': '"sha1"'}> CONFIG_IMA_DEFAULT_HASH_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'y', 's390x': 'y'}> CONFIG_IMA_DEFAULT_HASH_SHA512 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> CONFIG_IMA_DEFAULT_TEMPLATE policy<{'amd64': '"ima-ng"', 'arm64': '"ima-ng"', 'armhf': '"ima-ng"', 'ppc64el': '"ima-sig"', 'riscv64': '"ima-ng"', 's390x': '"ima-ng"'}> CONFIG_IMA_DISABLE_HTABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IMA_LOAD_X509 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> CONFIG_IMA_LSM_RULES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> CONFIG_IMA_MEASURE_PCR_IDX policy<{'amd64': '10', 'arm64': '10', 'armhf': '10', 'ppc64el': '10', 'riscv64': '10', 's390x': '10'}> @@ -9033,7 +9111,7 @@ CONFIG_NVME_TARGET_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> CONFIG_NVME_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> CONFIG_NVME_VERBOSE_ERRORS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> -CONFIG_NVSW_SN2201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVSW_SN2201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> CONFIG_NV_TCO policy<{'amd64': 'm'}> CONFIG_NXP_C45_TJA11XX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> CONFIG_NXP_CBTX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> @@ -11058,7 +11136,6 @@ CONFIG_S390_TAPE policy<{'s390x': 'm'}> CONFIG_S390_TAPE_34XX policy<{'s390x': 'm'}> CONFIG_S390_TAPE_3590 policy<{'s390x': 'm'}> -CONFIG_S390_UV_UAPI policy<{'s390x': 'n'}> CONFIG_S390_VMUR policy<{'s390x': 'm'}> CONFIG_S3C2410_WATCHDOG policy<{'armhf': 'n'}> CONFIG_S5P_DEV_MFC policy<{'armhf': 'y'}> @@ -14326,7 +14403,6 @@ CONFIG_VFIO_PCI_INTX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> CONFIG_VFIO_PCI_MMAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> CONFIG_VFIO_PCI_VGA policy<{'amd64': 'y'}> -CONFIG_VFIO_PCI_ZDEV_KVM policy<{'s390x': 'n'}> CONFIG_VFIO_PLATFORM policy<{'arm64': 'm', 'armhf': 'm'}> CONFIG_VFIO_PLATFORM_AMDXGBE_RESET policy<{'arm64': 'm', 'armhf': 'm'}> CONFIG_VFIO_PLATFORM_BASE policy<{'arm64': 'm', 'armhf': 'm'}> diff -u linux-oracle-6.5-6.5.0/debian.master/control.stub.in linux-oracle-6.5-6.5.0/debian.master/control.stub.in --- linux-oracle-6.5-6.5.0/debian.master/control.stub.in +++ linux-oracle-6.5-6.5.0/debian.master/control.stub.in @@ -37,7 +37,7 @@ libnuma-dev [amd64 arm64 ppc64el s390x] , dkms , curl , - zstd [amd64 s390x] , + zstd , pahole [amd64 arm64 armhf ppc64el s390x riscv64] | dwarves (>= 1.21) [amd64 arm64 armhf ppc64el s390x riscv64] , clang-15 [amd64], libclang1-15 [amd64], diff -u linux-oracle-6.5-6.5.0/debian.master/reconstruct linux-oracle-6.5-6.5.0/debian.master/reconstruct --- linux-oracle-6.5-6.5.0/debian.master/reconstruct +++ linux-oracle-6.5-6.5.0/debian.master/reconstruct @@ -1,9 +1,4 @@ # Recreate any symlinks created since the orig. -# Remove any files deleted from the orig. -rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.c' -rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.h' -rm -f 'include/linux/ceph/mdsmap.h' -rm -f 'scripts/is_rust_module.sh' chmod +x 'debian/cloud-tools/hv_get_dhcp_info' chmod +x 'debian/cloud-tools/hv_get_dns_info' chmod +x 'debian/cloud-tools/hv_set_ifconfig' @@ -18,9 +13,6 @@ chmod +x 'debian/scripts/dkms-build--nvidia-N' chmod +x 'debian/scripts/dkms-build-configure--zfs' chmod +x 'debian/scripts/file-downloader' -chmod +x 'debian/scripts/helpers/close' -chmod +x 'debian/scripts/helpers/open' -chmod +x 'debian/scripts/helpers/rebase' chmod +x 'debian/scripts/link-headers' chmod +x 'debian/scripts/link-lib-rust' chmod +x 'debian/scripts/misc/annotations' @@ -56,4 +48,10 @@ chmod +x 'drivers/watchdog/f71808e_wdt.c' -chmod -x 'scripts/is_rust_module.sh' +chmod +x 'tools/testing/selftests/netfilter/nft_audit.sh' chmod +x 'update-dkms-versions' +# Remove any files deleted from the orig. +rm -f 'arch/parisc/include/asm/mckinley.h' +rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.c' +rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.h' +rm -f 'include/linux/ceph/mdsmap.h' +rm -f 'scripts/is_rust_module.sh' exit 0 diff -u linux-oracle-6.5-6.5.0/debian.master/tracking-bug linux-oracle-6.5-6.5.0/debian.master/tracking-bug --- linux-oracle-6.5-6.5.0/debian.master/tracking-bug +++ linux-oracle-6.5-6.5.0/debian.master/tracking-bug @@ -1 +1 @@ -2042660 2023.10.30-2 +2049026 2024.01.08-3 diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/abiname linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/abiname --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/abiname +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/abiname @@ -1 +1 @@ -1008 +1014 reverted: --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/ignore +++ linux-oracle-6.5-6.5.0.orig/debian.oracle-6.5/abi/amd64/ignore @@ -1 +0,0 @@ -1 reverted: --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/ignore.modules +++ linux-oracle-6.5-6.5.0.orig/debian.oracle-6.5/abi/amd64/ignore.modules @@ -1 +0,0 @@ -1 reverted: --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/ignore.retpoline +++ linux-oracle-6.5-6.5.0.orig/debian.oracle-6.5/abi/amd64/ignore.retpoline @@ -1 +0,0 @@ -1 diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle @@ -1,106 +1,130 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x159487e6 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0x47cd20a3 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x46bcb508 counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x498b4a06 devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x71c0b03c counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x94133361 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xabb9f6fa counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xc02259d4 counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xd2cf1769 counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xefbedb78 counter_put drivers/counter/counter -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xac5684b8 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb639225e crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd6090548 crypto_cipher_decrypt_one vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x91048989 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0xbbf229ec brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x13a82dc6 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x2ee4c04a counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x4b2106a3 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x5c88063b counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x8a51298b devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x8b0da8fa devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xbdbd3c1c counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf1e8c5ad counter_add drivers/counter/counter +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x09bce895 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5f1a9560 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xcd7a34e6 crypto_cipher_setkey vmlinux CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x0b236619 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0c158a18 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0c3b197a is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x14687bdd devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x16fe3323 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x17a23c1a cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1bc6a36a find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1c0722fa cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x207c6d51 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x21442f57 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x289ab133 cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2bf5d093 is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3244e835 set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3383b95e to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0708982f cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0709c192 cxl_mem_get_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x089d8ea6 cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0a2fc4fb is_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0f6c8fd7 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x11249849 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x13d1940e cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x13db8a28 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1af4c707 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1bce5a38 cxl_pci_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1e03edb8 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x21155775 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x24aa47bd cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x26ad1d30 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2f21f36c to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31e924c8 devm_cxl_add_memdev drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x347b419c cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x391f6f7c cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3d9ae51d devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x40a5a16f read_cdat_data drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x444b2e45 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x45f15894 cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4692ccf7 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x471d2866 cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x47257fdf to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4b091425 cxl_port_to_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x589dceed to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x60c6e5fe cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x613007d8 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x66f8af53 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6af22eb8 cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6d2c3ad4 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x34b92076 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x35e355db devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3ea73f60 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3fea6360 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x49bb20c2 cxl_mem_sanitize drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4a377a13 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4ba31910 to_cxl_dax_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4ce55ba8 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4fafeeb5 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x591cf912 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5971e374 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5ac14295 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5c183dd2 cxl_trigger_poison_list drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x61ff68f6 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6547a3c4 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x65c68cae devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6c2ba76e cxl_setup_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6c505f1d cxl_cor_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ed6aa5e cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6f7024cf to_cxl_endpoint_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7611617b cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x798f7852 cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7db0f985 cxl_rcrb_to_component drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x726e1885 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x785ba13c cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7a13c93c cxl_count_regblock drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x8126e737 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x80b6eb68 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8318d7eb cxl_map_pmu_regs drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x86ec4423 cxl_dev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x87b45679 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8be38474 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x92598018 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x940dcf9d to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x886738d2 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x898e86ac cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8c09996a is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8e9c8a2f cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x94d5ddf2 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9f42485e cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa370e7cd cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa37293c6 cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa6b40907 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa6ffe09e devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xac9e99c6 to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xad6bd899 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xae491190 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb21204bb cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb83bfc2f is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc5746cd9 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd273799a clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd7f1a0d9 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdeb885c2 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe9898413 devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xebc0d3ca devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf031ebee is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf1f197f9 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf62dc263 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf65840df is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf8410cf1 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x99fc2389 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b581694 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9fe8c775 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa51de1af cxl_add_to_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab3d87ac cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaba3cd12 cxl_mem_get_event_records drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xade82e62 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xae7f52a6 cxl_clear_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf21b4db devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb130acdf cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb2f7ee5c devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb3b74fe4 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb9dcb898 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xba52e5e3 cxl_set_timestamp drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbb19f3ed devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbb6d012e is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbfa8eff0 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc092c3f6 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc365cbdc cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc73a6a03 to_cxl_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbdd768d devm_cxl_dpa_reserve drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd286f016 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd2c4a73e cxl_find_regblock_instance drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd69b3c85 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd8d7d697 cxl_inject_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdca60c22 cxl_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xde42a229 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe014950b __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe1f5991f cxl_poison_state_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe5e42cf4 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe6ad8549 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xeaa3bab7 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xefad7a82 devm_cxl_pmu_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf12730c0 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf2af9d2c is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf7077eac is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfc5242f9 cxl_memdev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe88965b to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core DEVMEM EXPORT_SYMBOL_GPL 0x3c804b25 cpu_cache_invalidate_memregion vmlinux DEVMEM EXPORT_SYMBOL_GPL 0xd6551b9c cpu_cache_has_invalidate_memregion vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0062d3b2 dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x04789723 dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x0c0e672c dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x2132397c dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x259d48ee dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x61be5d03 dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x6408c2d6 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x64184bd3 dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x6ebc8a06 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x77c5a699 dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x81e2149f dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8f8ace43 dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9cb29caf dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xa941ca9b dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xb40f4564 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbecd5d2f dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xd0d1b161 dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xde1f3d3b dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xdfad52f9 dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xea78a079 dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf6bfc788 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x044d78e5 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0617d058 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0ab8187e dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x152bdd33 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2cebde28 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x488962a1 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4bce1a3d dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x51c22345 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6d43d530 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x72bd99f2 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7d6add88 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8b4ebd82 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8b8442c4 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8bad9db2 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x97dd65bc dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa147ea24 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa4f26fb2 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc3df1b3d dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xca8467d1 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdffd3746 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe6bda3b5 dma_buf_map_attachment_unlocked vmlinux DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux @@ -108,6 +132,7 @@ EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xa336852c efivar_get_next_variable vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xee5240dc efivar_query_variable_info vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0x220b49ab chacha_crypt_arch EXPORT_SYMBOL arch/x86/crypto/chacha-x86_64 0xdc94f829 chacha_init_arch @@ -138,765 +163,770 @@ EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x138659e8 crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x1d9147a8 crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x32d5eea1 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x46daedae crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x4d5d1c07 crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x7b1d5754 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/sha3_generic 0x0e56b4fa crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0x540578d2 crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0x58f61abb crypto_sha3_update -EXPORT_SYMBOL crypto/sm2_generic 0x0fe0950e sm2_compute_z_digest +EXPORT_SYMBOL crypto/nhpoly1305 0x10c8989d crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x827a8f0d crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x8e1ac03b crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xa7f303be crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xc84ab0f0 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xd5a26747 crypto_nhpoly1305_init EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x103735ba acpi_video_report_nolcd EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight -EXPORT_SYMBOL drivers/acpi/video 0x7917e851 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0x47ebc21e acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses EXPORT_SYMBOL drivers/acpi/video 0x7de7bf50 __acpi_video_get_backlight_type EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0x8e268f5b acpi_video_get_edid -EXPORT_SYMBOL drivers/atm/suni 0xc5d46796 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x40937d8c bcma_core_dma_translation -EXPORT_SYMBOL drivers/bcma/bcma 0xba7edce0 bcma_core_irq +EXPORT_SYMBOL drivers/acpi/video 0xb3a377f2 acpi_video_get_levels +EXPORT_SYMBOL drivers/atm/suni 0x4dda1d1c suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x97be3c48 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xc7560eef 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 0x01b28e30 pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0x1795287e pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0x28af3f4f pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x37aefc65 pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x405e5869 paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x46c997aa pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x5cc4f1b9 pi_connect -EXPORT_SYMBOL drivers/block/paride/paride 0x943deb0a pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0x9e0dfe41 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb7392d28 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xca53d6b0 paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0xe4f7e031 pi_init -EXPORT_SYMBOL drivers/bluetooth/btbcm 0x673a5c6d btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x17777c12 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x11a2f469 mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x49e9d76f btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xd09ddb15 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x64510705 mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x108f5480 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x54fe2c95 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x636fad74 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x931ad38d ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9d6fb996 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd5902c55 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe98c507d ipmb_checksum EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf43c5a2d ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf64f53cb ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode EXPORT_SYMBOL drivers/char/nvram 0x3ef38dc9 arch_nvram_ops -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x08fe6b32 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x337b2914 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x723a603b st33zp24_probe -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7c9529e0 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x34367ac6 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x920d25ff xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xbc709b2c xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x96bb7c82 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd23803c6 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd89580d8 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xeccc115c st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x61f032a5 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x646299bd xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd2851fcd xillybus_cleanup_chrdev EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x28e9e338 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x70b88189 xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe73c19be xillybus_endpoint_remove -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x03bcc3cf atmel_i2c_probe -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x399397cd atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6e53921c atmel_i2c_enqueue +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc6cf6961 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd6005af2 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xef2c0919 xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x1d524d8a atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x3fce4cac atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6e4dc8d7 atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd EXPORT_SYMBOL drivers/crypto/ccp/ccp 0x47d3c97f psp_check_tee_status +EXPORT_SYMBOL drivers/crypto/ccp/ccp 0x4a937398 psp_check_platform_access_status EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x57e2a86d xdma_get_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x5c2ef072 xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xbe6beca9 xdma_enable_user_irq +EXPORT_SYMBOL drivers/firewire/firewire-core 0x00c2a005 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0776df67 fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1418105f fw_bus_type -EXPORT_SYMBOL drivers/firewire/firewire-core 0x1fe71eb2 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2576a231 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17ed7d20 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1829d945 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b99db5c fw_core_remove_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x2fbcd5ef fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x315e7ebb fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x37785eef fw_card_add EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ae3df87 fw_iso_context_queue_flush EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f02cf75 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f57b7ab fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x41d13b1d fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x52344a20 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x40440449 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x486c1e86 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e5e9d4d fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x51c42b82 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a371beb fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64d82944 fw_iso_context_stop EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x738dfd30 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ee92296 fw_fill_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3f14b30 fw_iso_context_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa839616b fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8fda6c49 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90bb1cca fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8d786ae fw_iso_context_create EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb9531fdf fw_iso_context_flush_completions -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb9621a90 fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xcd881b97 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd40c08a4 fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc13d5d4 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdf439a20 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaeeb7048 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb1fcc0a2 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb38f9cbe fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb2b60e1 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0f555ff fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc88a6d7c fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd152efec fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9f78390 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc18dee1 fw_send_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xea018257 fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1809138 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7fdab5e fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf87e3014 fw_iso_buffer_destroy -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf8947942 fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/fpga/dfl 0x69f866cf __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0xdfec09dd dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x2cb8e4ba sysconfig_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0061e1df drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf218c397 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf24e239f fw_card_add +EXPORT_SYMBOL drivers/fpga/dfl 0x2c36c1b4 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0x41fc8156 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x57728883 sysconfig_probe +EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0ea5d74b amdgpu_xcp_drv_release +EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x27be3ff2 amdgpu_xcp_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0142d33e drm_dp_dpcd_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02ce356e drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06145f56 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x061a0004 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06e6e40f drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x080b5331 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b1c2eea drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d495e6b drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e9093f2 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f1e4d24 drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12c293db drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13dca9a3 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1465cc6a drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14df7017 drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x159b2215 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0434ba5f drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x04d3c847 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09899529 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d606762 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d6ba527 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f0fc6d5 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1032bf81 drm_dp_cec_irq EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18321ef1 drm_hdmi_avi_infoframe_colorimetry -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19bdcf68 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18d03644 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19de3929 drm_edp_backlight_disable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a73a267 drm_dp_aux_register EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1cd7e10b drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e41aa3f drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e75d298 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e4fce72 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1fd56859 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x202bc10d drm_dp_mst_atomic_setup_commit EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2540a487 drm_dp_mst_root_conn_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x255f60c2 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24ada755 drm_dsc_set_rc_buf_thresh EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2960754a drm_dp_add_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29df8819 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29ef9b19 drm_dp_dual_mode_get_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e0c4958 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x285f8f5e drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2b2b4b6b drm_dp_pcon_frl_prepare EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x312b10f9 drm_dp_read_dpcd_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3176b74d drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3164e1a8 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x334083ef drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x335d2787 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x353d4145 drm_dp_dual_mode_max_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x414dd30a drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x421366b2 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42aa2b25 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42d37fd7 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3ab47b7f drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b59a099 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3fcdafa5 drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40047967 drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x442a4481 drm_dp_stop_crc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x48f164a2 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b18990d drm_dp_remove_payload -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4bd187b0 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e30fa98 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4fa8f9f8 drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x50824d47 drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51601726 drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x519e14a8 drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x52ee3ee1 drm_atomic_get_new_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53169c5b drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x46583809 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x522329c9 drm_dp_downstream_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x559574f8 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57841f75 drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5811f05b drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x54112814 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57d09b4c drm_dp_mst_atomic_enable_dsc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x590af863 drm_dp_pcon_hdmi_link_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f373f89 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x609915bc drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6099248a drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x616f6bcc drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627ba04b drm_dsc_set_const_params +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x636fd90a drm_dp_pcon_hdmi_link_active EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x645d500d drm_dp_lttpr_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x669058f6 drm_dp_read_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67f86ec4 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x66b6a37d drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6751e139 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6791cb86 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x688d57ac drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68b08711 drm_dp_read_dpcd_caps EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69d9428b drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a10049e drm_dp_mst_get_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b02884d drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b1cbf4f drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6da17ab1 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f985862 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6fb47fa1 drm_dp_set_phy_test_pattern EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x715d0375 drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71df31b1 drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70c0bdd6 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x719eca5f drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x72f60e31 drm_scdc_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x738aa193 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74f701f7 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73a70b38 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73c4e553 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x745bb194 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75cbd69b drm_scdc_set_scrambling EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d1712fc drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e848ade drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f5ed691 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x807abf52 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x846c0e0d drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86332797 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a20a428 drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a8e4e8d drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x77760753 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79008c7e drm_dsc_setup_rc_params +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7af8252e drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d934ba9 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7ef451d6 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x800df2a0 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x80b9a040 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8113bda1 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x835060b9 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x84753697 drm_dp_mst_hpd_irq_handle_event +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85a01fcd drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x89b235c6 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b8d7be6 drm_dp_cec_set_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x911aa020 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x91994f09 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f1a9029 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f95cba7 drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x927b5568 drm_dp_aux_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9554f82e drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x983d66fa drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x987e7057 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x98e65f60 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9b00179d drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9b6e4982 drm_dp_atomic_find_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9bb22c98 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9df50ec8 drm_atomic_get_mst_payload_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f87bae8 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9431a4ba drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95883bb4 drm_dsc_initial_scale_value +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x96035648 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9666829b drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x98c1cce0 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x992fefa7 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f8d5f94 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa183f944 drm_dp_cec_unset_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa204d920 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa389822d drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5d4886e drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7cad06d drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xadc74941 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaecae7b8 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3f439f6 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa45ee567 drm_dp_mst_edid_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa77f2819 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb604bea7 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb630e624 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcb737b0 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb049b67f drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb08d9668 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2d6993f drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb77a3fb3 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7f919cc drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc287662 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbd37ddef drm_dp_read_sink_count_cap EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc2d10883 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4cb6f8d drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4fb0764 drm_dp_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc63c3e02 drm_dp_mst_detect_port EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc98b7452 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc62fe55 drm_dp_dpcd_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf0117f2 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd103ff20 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd146254a drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd32e3f64 drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5495832 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcfad8c06 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0e95456 drm_dsc_get_bpp_int EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdcf14303 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd66bafd drm_dp_mst_update_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf12f3ac drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1dd9272 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd908ba28 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd921d0fa drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd99b45fc drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe021c19c drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2468a48 drm_dsc_flatness_det_thresh +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2d5f060 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe338ba87 drm_dp_pcon_pps_override_param EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe78b00d3 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7f3cfe6 drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe879b070 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec3ffac5 drm_connector_attach_content_protection_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec65c7d6 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe576e90a drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe8462660 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe90faf7e drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe987a733 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeac65250 drm_dp_mst_hpd_irq_send_new_request +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec6085a7 drm_dp_pcon_pps_default EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf48cd6c1 drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf48d71cb drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xee3eee39 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xef9d0cfa drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf01a3e7a drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf021e1ee drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf144be3b drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf293d766 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf300e047 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf3db64c5 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf630ad43 drm_dp_dual_mode_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf7bb1135 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8692b72 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf92f2d92 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf9f9e5fd drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa217397 drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfcd05530 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfde0dd49 drm_dp_aux_unregister EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff2a4e0c drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff340146 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x02eed979 drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03242307 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe3f3013 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfed97bc7 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xffe385ad drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00323046 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x019ddc92 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0382640d drm_crtc_commit_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e04708 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b15e86 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0502f6a6 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x055b0a81 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0615c184 drm_mode_plane_set_obj_prop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06c194f2 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06fc5305 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0436cf57 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0446edd9 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x044b6f29 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ea70eb drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a026ef drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06ca89fc drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06cc19f9 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e3012a drm_atomic_add_encoder_bridges EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x08a808c6 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09801965 drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0992dd11 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4b71d1 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08c7e72f drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08d09cc6 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09227a72 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09484cdf drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09d23e87 drm_gem_lru_move_tail EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac41736 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac7c084 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d099486 drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d445924 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae8929e drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b03c9a5 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b5464d4 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba90e47 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c71e2c9 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7acba0 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c94a727 drm_gem_handle_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9c80bb drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e2ed1f9 drm_syncobj_get_fd EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f71f0a0 drm_gem_dmabuf_export EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8495e5 drm_atomic_bridge_chain_check EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10773259 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe31b8c drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x112b1b6f drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x115399ac drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x130af675 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x13440af5 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e9136b drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x15ad06e4 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x167ae902 drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ba0a9d drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f5bfcd drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x176bf4bf drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c6338c drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17d224b2 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f25410 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0x17f490b6 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19074c2c drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e10635 drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f449a5 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107ee795 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x108b9f22 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x112be0a8 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11529c51 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x120bf260 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x128cb82d drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130ab6b8 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13873457 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13bd6484 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d2d5b8 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13dab04a drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142cc5e9 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14549aad drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15bbfb0c drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16bddf4e drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16fc58c7 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x170930b8 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x173c2a5b drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19879db0 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19cb1425 drm_crtc_wait_one_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba67369 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df3c95d drm_modeset_lock_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e03c655 drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec537c7 drm_privacy_screen_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee46dd1 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1acc05cc drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b28a8a5 drm_analog_tv_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b38c8c4 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c465edb drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d48b17a drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e71c678 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f01b712 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fd44be8 drm_gem_mmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x22340988 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23440592 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2354ec93 drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23945d51 drm_connector_set_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x241beefc drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2196f1b6 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22a1da71 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22f1ee7d drm_crtc_vblank_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cde253 drm_mode_create_tv_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d91545 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25d76ba3 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25262093 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25981b83 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ccb670 drm_gem_prime_handle_to_fd EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2606fc2d drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26854efa drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2720a52e drmm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2787c745 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27d46a2f drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27db5876 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x282b68b6 drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2843785c drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x284d4fea drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27b3eab4 drm_gem_map_detach EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28b81b9d drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28fe6404 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291dc4db drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c207a5 drm_edid_read EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a557714 drm_mode_config_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b5985e9 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b7692fc drm_privacy_screen_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b8782b4 drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bdab33d drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c33b9ae drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c3668fa drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dd4511d drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a9e0170 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ae85d23 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d1466b8 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d24beaa drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e361485 drm_edid_connector_add_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f53160d drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fdd22a6 drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x303298f8 drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31966a45 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f63f1da drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f78800e drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd1a661 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x306bc9f2 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x310ed37d drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31167969 drmm_kmalloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3202b0ef drm_crtc_from_index EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d70e4e drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331327e5 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x331ea3cf drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34232ae2 drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x349b411b drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3503c849 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3583ad5a drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e9ac87 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3785cfc5 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e78927 drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3821d17c drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32e50921 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33cd7801 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x353630c1 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35850b0a drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x358bf89e drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35cceddf drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35d14729 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36528770 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b62055 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36dea860 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376fbc2f drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37939ad0 drm_atomic_set_mode_prop_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e96ed7 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x390661e4 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x390fec2a drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3951d60e __drmm_add_action_or_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x395f4fa0 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3871bce3 drm_connector_list_iter_begin EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a585c4a __drmm_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b069800 drm_crtc_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b2773cf __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba87203 drm_connector_attach_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c7f2d52 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c842ca2 drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc98d31 drm_warn_on_modeset_not_all_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d01eaf1 drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d17148e __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e9d17bf drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea41e69 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8b75b1 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e44ce0d drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e778fed drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f37fd98 drm_property_create_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f98115e drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc08970 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40082b33 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x408d4582 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40cfea1f drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a7bd6a drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x41ac3589 drm_crtc_vblank_count_and_time -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42fafbd5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x405d13b8 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x405d7b9c drm_crtc_next_vblank_start +EXPORT_SYMBOL drivers/gpu/drm/drm 0x429c0962 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x430582fc drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x431763c7 drm_connector_update_edid_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4407cfbc drm_mode_create_scaling_mode_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4745c6b1 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47aa3275 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47b616d8 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ca25a3 drm_gem_dmabuf_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48456f55 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48660385 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49063ff5 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4931ed9a drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49d5190c drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a583e3 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498b0e11 drm_atomic_bridge_chain_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a686d7b drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6dcef2 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a89cb0f drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a9dcaea drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa75b33 drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b30c3de devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b58f90f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a777672 drm_atomic_get_connector_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bcb58b6 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bf18dd9 drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c0c45d7 drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc1f2c9 drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d3e9f8c drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d94ae98 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c0b6d64 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c9fba41 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc1d5de drm_writeback_connector_init_with_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f923596 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fca2d72 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e71f192 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f24f320 drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa20a6e drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fb656a1 drm_privacy_screen_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a07b6e drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51175617 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51296a58 drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51bdb3fa drm_crtc_set_max_vblank_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54ed3dfe drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55500182 drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x558d931a devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55ce8294 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e9665c drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52898561 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53058338 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x530cb153 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x531ae38c drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x537ab81e drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53eb0503 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5411a7b9 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54a1ff15 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5530abaa drm_gem_dma_resv_wait EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x567cc36f drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56f0ed3b drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x571a7eb8 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56eee744 __devm_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x579b4a75 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b67c31 drm_gem_free_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58bc26a4 drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f4b1d2 drm_client_dev_hotplug EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x596690dd drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a83d575 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac29168 drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b47c9c7 drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4b42e9 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dea7634 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ea35fc3 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f013a71 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5957c456 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a9ae19b drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5acdb861 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b1ae622 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bcb5e57 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c0e6620 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c91f7ed drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d17ff6f drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d4c53c1 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ebc8138 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee0a2aa drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f297285 drm_state_dump EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x602fbf14 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6086edb5 drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a94737 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x61f64277 __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a24397 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x62db1a70 drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x632e4985 drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63656727 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64600ccf drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65192729 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fe78811 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6032540b drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60543e7d drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c86384 __drmm_mutex_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6119aa91 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x616ea94b drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x627740be drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62822f75 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629d50c9 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x630e7d56 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6441cad4 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x649c16b7 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e1e49d drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x651a70a2 drm_atomic_normalize_zpos EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e16537 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65eb5f7e drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ed22eb drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6597c7c8 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66792b3b drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67d10023 drm_atomic_get_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6995c7f5 drm_property_blob_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a0cf665 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a984e91 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aabd0c0 drm_probe_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf1e9eb drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca0ac9e drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6da03a71 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ddc8e12 drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df0fca2 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6df84eb8 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e342624 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e55bc8f __drm_dev_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea13e50 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70611cb3 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70fb2891 drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71548b35 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a5c27e drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x723a50e5 drm_gem_create_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b4495e drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b8d9a5 drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74969c92 drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7497f993 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bd74a06 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bde3007 drm_show_fdinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c04e060 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c2e5a2c drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3833d5 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c582cd3 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c66cf32 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d0cc71c drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d6e6d00 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0a33ee drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e5c299c drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71097d57 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71abd9f9 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7239c27b drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72735540 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7273e2c6 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x727a46e6 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a73fe8 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b4eaad drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7382596f drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a3b6d0 drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x743c51ae drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75068d31 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x770fa057 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7837361a drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x784ce70e drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78936e9f drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79326a83 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75f968ff drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x768d34ae drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7691d11e __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77490952 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77def66a drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x786187c9 drm_crtc_handle_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a5e92da drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a794c82 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a801ab0 drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a90554c drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa2b08c drm_edid_read_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b04ad59 drm_show_memory_stats EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b70fdcd drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc724d7 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bcad361 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c5b7cab drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c63658c drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d2f7118 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d192a69 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d8379a5 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9aa1b1 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dd80dfe drm_privacy_screen_register_notifier EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9d7510 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eca2e72 drm_hdmi_avi_infoframe_quant_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff3df97 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x812a9a18 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8173d388 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81c2cce6 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e146fa drm_mode_validate_driver EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82548c95 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x825f38cd drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82aba3a6 drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x835583ac drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a330e4 drm_syncobj_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x840b8f43 drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842a1ede drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x842e1b5f __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86c5f561 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x890a2706 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x890d26d5 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x893e3081 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8960943a drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab79036 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad63124 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b5ba3e9 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b728363 drm_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b91f1d3 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2d0d03 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x824634d4 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8258e637 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8299e9f7 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837fb792 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b6899d drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84a6c572 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86018caa drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x863aeee7 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86af9a6b drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x885d5cf5 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a1ded1 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a25fe3b drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b48ec3f drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0d12e7 drm_modeset_acquire_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1d1002 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f06a682 drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f67f744 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ffb85a1 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9028ec18 drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90b9fae7 drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e5f969 drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x913dba61 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x913e3371 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c0536f drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9329869a drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94dc43f5 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9550b3ec drm_gem_prime_handle_to_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a09c84 drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a12402 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9811fec8 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ddb410c drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de2928d drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3e2971 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f69c6bb drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fbdd5ac drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9023de46 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x914e89e7 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91514d6c drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x920df619 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c0ba54 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93cf4707 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9491c5ae drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x949c369b drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ee41f7 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x963b9535 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96942398 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96af35e4 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96dc3ab1 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97341795 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9773f354 drm_gtf_mode_complex EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f235df drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac4cfc5 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aeaf827 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990bb3bd drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x999104e2 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9992ead7 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x999d4ef0 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a54350b drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac21f5a drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9affc372 drm_aperture_remove_conflicting_pci_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b4d864d drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b8ddc09 drm_wait_one_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9beeb2ba drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9caf142b drm_panel_unprepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3b8220 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb609e9 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f33063a drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa01b3bb2 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa124c44f drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1499ae9 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a0baf9 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d387e75 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d8d5aca drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f318ca1 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f5d53d0 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f769fb2 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa04f12dc drm_dev_put EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa26e886b drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa34381ae drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa26f94ec drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa283beae drm_privacy_screen_set_sw_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa53720ca drm_privacy_screen_set_sw_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5adf30c drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa70d8b8b drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa719f1b5 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7dc77a5 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa81ff595 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4560de9 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa50052c0 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b66100 drm_gem_private_object_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa81f3137 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa840a384 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8df32a1 drm_crtc_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa987a0e6 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9b8cfc1 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa75623 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaafea55b drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xace93bf6 drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf10c5c drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa957511a drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f16954 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad823dc drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab4f6767 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac2e09b2 __drm_atomic_helper_disable_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xad707cfa drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad98dff7 drm_dev_enter EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaea47be7 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee0e257 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1358f4 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf78157e drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0266f74 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06817f7 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb086fb7b drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1101d4c drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf0bfdd3 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb043ff6b drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb063cf1a drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb086a4c9 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a8f69f drm_gem_prime_fd_to_handle EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb14582a0 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c64173 drm_vblank_init EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb224114a drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2ff7c88 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb302a051 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36fe6df drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb232a4a3 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29b6423 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2be9af8 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d315d5 drm_client_framebuffer_create EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3e22c90 drm_dev_has_vblank EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb433935c drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4a29e9f drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4b2cd43 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb537f135 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb49f299e drm_mode_validate_ycbcr420 EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb729eeb8 drmm_mutex_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb733da7f drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77a13d4 drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb79bbd4a drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb94e2093 drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9867819 drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a04d01 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb898e3e3 drm_crtc_vblank_off EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3284cb drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad25417 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc981ba drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbccfe9ba drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd495526 drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdaafbb1 drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe345c49 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbef69eaa drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf44acd0 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0a40835 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0cd9683 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1416733 drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3703b4d drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4993b6a drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5bf0860 drm_gem_lru_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d1d185 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9fef41b drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba115779 drm_atomic_get_new_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba230200 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad63cf0 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb35fe7d drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb60b762 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1b6916 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbebfb39d drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf483c96 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0705071 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc10e0e93 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1b71787 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b2bfb6 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4347aa6 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e9bb43 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70aa64f drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7901ef1 drm_modeset_backoff EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b14629 drm_modeset_lock_all EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8cd065 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca918f79 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa47cb1 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb0dad40 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb1ea49b drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6cc25c drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc957a07 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc4865f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccac4259 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd247b9e drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5ea5fb drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdad1cb3 drm_gem_lru_move_tail_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdde9372 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcded5860 drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff0198c drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf90b7ef drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfa7b53f drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfcd4678 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd086aa55 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08eb90d drm_crtc_vblank_waitqueue EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd17a15cb drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2a59a7a drm_privacy_screen_get_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3394503 drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd342b7a9 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ceb111 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f3078d drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49b4365 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49e0ca6 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ae3960 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd65f9d49 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1f82bf0 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd24c5559 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd24cf719 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd25ad8db drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d6fb9a drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd37459ae drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a3cdf2 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4fb74b5 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5305fef drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd535c21d drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60c0c4d drm_gem_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd722b951 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d4eb27 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6edd6ad drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7bd319f drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd848b2d1 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8218a29 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96984e0 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9bf2b88 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9fa93d4 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda35aad7 drm_dev_unplug EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdadccd0f drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1ed242 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb76d768 drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb7fd1f2 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc5e3034 drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd5cfc2b drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdde2a184 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbeca5e6 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc2e197c drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd416b1 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda2d46b drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde59c7b6 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeb73595 __drmm_add_action_or_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4b28f3 drm_gem_vmap_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe230ee13 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2cbb2b4 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff7b11b drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00e4764 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02e0f27 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1145f35 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1abe315 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe224e43d drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2aab92e drm_mode_parse_command_line_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3a46c64 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3b69860 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c8cffb drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3fab68d drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4654fd3 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4c77dca drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe62277a3 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c6b154 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ffbe52 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe42d765d drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe432bc7d drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4595765 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4adf9be drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe583a0e8 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5f0e3d6 drm_atomic_state_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7a67690 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe694b48e drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6da5582 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe75b8a0b drm_av_sync_delay EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9cde89e drm_connector_attach_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xea546fca drm_mode_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeafe4119 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb147737 drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb456170 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9f31cc drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeced99cf drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed946e7a drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1c8189 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xef7f5724 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0045af5 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea850b04 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2e7d93 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb978779 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebcb982d drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec57a5ba drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed68ca04 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9d8183 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedbaedfd drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee97a00c drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeea405b9 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeb1bfed drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef10cbd3 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf020d39f drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf02e518b drm_modeset_lock EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d6e2ca drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e56f93 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf06336f5 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf095dc96 drm_get_tv_mode_from_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b716ab drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1551f72 drm_connector_oob_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e03bb4 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e8bf19 drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f89a6c drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31cc7ea drm_client_dev_hotplug EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4083784 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43b0bd9 drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a9a03a drm_edid_read_custom -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c86345 drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf72c318d drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf76b79b3 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4466cd1 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf532384f drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5ea2220 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a89a8e drm_gem_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7f7ffeb drm_client_modeset_check EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf90d0a55 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a8e6d3 __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7383f1 drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaf06832 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc6823e drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5cec6f drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc6724cc drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcf6c203 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd5bdbf8 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde6ce6f drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8483842 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c55b14 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a3bfa2 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d1b80b drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa832f1 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfafaf0e8 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb02c9a9 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8f7c7d drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfce52037 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd62322e drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd778d0c drm_panel_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff31de89 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffbe9075 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff9afaf drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff9518e1 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff148e7 drm_vblank_work_schedule EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy @@ -906,421 +936,435 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xe1b363f9 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xfe0e99de drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f8d030 drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02ff380a __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0347ce06 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04aae2e9 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04c482b0 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04d7689b drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05425415 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0562253a drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x074e28d9 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x076b9445 drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x076ba3fd drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x085fecab __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08e1275b drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a433567 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c63731f drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e2719c9 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x119b5d58 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x2a92b372 drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xba1b88af drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xd4227e3c drm_fbdev_dma_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0005b759 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0015ddf3 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x001deee1 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x077f1d50 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0824b927 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b9c4753 drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c052d8d drm_i2c_encoder_restore EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x129b28ce drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1457dd34 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1580b272 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15bb1eaf drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15d8393a drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17b91c08 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x187a5da1 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a06ab29 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ba4acdd drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d5b5ace drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e50829f drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e6a5914 drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1306a19d drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d12c29 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14f45643 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1690fc83 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x177fe8cf drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x181e89b5 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18f8098f drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a32d11f __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1bb8a8f9 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c1dff4a __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d6efb84 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1da4143a drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dce12e6 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f2b5417 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f52be5f drm_fb_helper_lastclose EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22b6637f drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x234626c7 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x247b193e drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29271a7f drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a0ba45a drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aec1343 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b45d026 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23451022 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x239f79a5 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24eaccbd drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25350b58 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26a74c31 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x278ae5b5 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2817049b drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2989f978 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29bec156 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d9f519 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b1a0a09 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cbbc94f drm_atomic_helper_plane_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fe0f66c drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31bb3cc6 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32aff8fe __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32cda7e0 drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34d3e8f5 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36bde30b drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x381b2097 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a1e928 __drm_atomic_helper_plane_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b3c1b6f drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c8b43a0 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d7bdf1a drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd85fd0 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f26d343 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f2e0ba3 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f54dd66 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4187016a drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42254f51 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42c92279 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x433e27fd drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e7d71d drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47a6a25f drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4884e2a4 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c5e63b7 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc2c167 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e2c2c6f drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51b79b32 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x529a4518 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c54629 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54948a51 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2db0e3a6 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f983cba drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2fa8c6d2 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x309baf60 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32c57af6 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35563054 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36a83e1e drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37e10858 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3829a5f7 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d8ff134 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f1ba2e8 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44d143c7 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x462fb319 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x490c5e83 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4968a5dd drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4970bb0d drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bfcd3e6 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d6cba90 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e514294 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x514e47a6 drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52153327 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5273edd3 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x545ab426 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54cd5dff drm_fb_helper_set_par EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55556e2a drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59390e51 drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x599c1cf9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x590af3e1 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x594dedc7 drm_atomic_helper_async_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f5c9e29 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fed519f drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60ad8272 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61256f09 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x619a9298 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x620cbc5f drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62a73706 drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64950913 drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7aec63 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6af07b05 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b1f92f8 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a593982 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e717b85 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f01ae8b drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f71a33c __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6193ad6b drm_kms_helper_poll_reschedule +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x646bc6e5 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65a6ade2 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66ea9fe6 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x688d6078 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f07ef5 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69cd0755 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ae83fad drm_gem_simple_kms_begin_shadow_fb_access EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c661934 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cca1053 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b9e948e drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cc18eef drm_atomic_helper_check_plane_damage EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e9ec98a drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f510771 drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70f8f627 drm_fb_helper_cfb_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71e7d11c drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71eb968c devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7257ed3f drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73833f67 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75cf083d drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7673f69c drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76bbcc2d drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77bf3d62 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77e556fc drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x780f4a21 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7921153b drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7974c5d7 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a586625 drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7efc6acf drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f08803e drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f9f35b0 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810f0b47 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81280dda drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83d17faa drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f85ba62 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71276e90 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x714be43b __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71b2a6aa drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x731d18ae drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73bad515 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x777e21f7 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78b0473a drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a9e33c4 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd73715 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c31630f drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fe25f4b drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8039702c drm_atomic_helper_connector_tv_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x843f701f drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86d45729 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84935cfd drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86a46e06 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x870b51d8 __drm_atomic_helper_plane_duplicate_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87a03b0b drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8967717e drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e19abd drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b513069 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c1aee4a drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c1b8322 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e194af6 drm_fb_helper_cfb_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8eec56c2 drm_fb_helper_cfb_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91088451 drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91c00200 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87a72f67 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e64c52 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bd3f8cd drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c22c8ce drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c7d3b32 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d3ddc47 drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e0bfdd3 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e44977a drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e55a51d drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f017bef drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f7d0ac6 drm_i2c_encoder_commit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93d49998 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x960b5de7 __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9709292b drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x993c1a7e drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9203b593 drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92045973 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92bc8968 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x936c9ef7 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9434fc59 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x974a325a drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97b6efe9 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99498876 drm_plane_helper_update_primary EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c37ce17 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e049d55 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f0b128e drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa07f6b7f drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa105bcd2 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1bf0258 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa240a64f drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6750af1 drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa698e6f0 drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa877e90b drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa88f32f7 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8dce9e8 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa92a41cd drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa95715af drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafa15847 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a5c66fc drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a91b188 drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c93f8da drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e8c9965 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0e2089b drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa31b7802 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4cd72d8 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa675b952 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa790a89c drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7b2e084 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa813f382 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8307d31 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa94d1c9c drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa51e30b drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaacd6dbe __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab553155 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabb0cc8c drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac3b0657 drm_fb_xrgb8888_to_argb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacb481a6 drm_connector_helper_tv_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xace0d962 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadf18b41 drm_panel_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2ed03b4 drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb30a9ef4 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb39908e5 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb39e632d drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb66523c6 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb07b43ed drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb096bfa6 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb165c3c5 drm_fb_xrgb8888_to_xrgb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb234c0fc drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3110c69 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4329d1f drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb463d6fb __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb682f679 drm_fb_helper_unprepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb81cb2b0 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd34ad0b __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc33e0ca6 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4f58836 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc53b36fb drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc61e5f0b drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7d4021b drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7fff362 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb84eed08 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb9544eb __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc585e7b drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc6ae9c2 drm_fb_xrgb8888_to_rgba5551 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc03a832d drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0559d59 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc153e625 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc25d5f13 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2e7ed0c drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3951903 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc45fde40 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4a67642 drm_kms_helper_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc911b9bc drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca121c2b drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6ba8172 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc73335d8 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79cf63c drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ac72a5 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9793c24 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca72b830 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcafb22cc drm_gem_fb_vmap EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce150fdf drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce1a34a7 drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce8051f0 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccb5bb5e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdb4773b drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce08709c drm_i2c_encoder_save EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1bfe31e __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1d9f72a drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2e22339 drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3242be0 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd477f815 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd650f54b drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7d69575 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8bda58c drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd918a491 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd919a27d drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda5f5afd drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb4f599f drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc08a846 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc0ef654 drm_helper_disable_unused_functions -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcae2b1b drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd75d298 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd7e3c94 drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0c930d6 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1cc482c drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe24a08c0 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2f9457c drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe30210fb drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe32da0bf drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3681bb2 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6472343 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe66cc447 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6d5655d drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8b7509f drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b02396 drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeabbb4a4 drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb892ad7 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf02fce3a drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf142e17a drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf63ae96d drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf718f32d __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7fcb9de drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf81c92c8 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf87f7651 drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a5782a drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa9b171d drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2781c4 drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe420730 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe798be5 drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff01bbac drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff56d10d drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x004db454 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x211791aa mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x29e5c175 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2ea7d2eb mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x34f0f702 mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x78475967 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7b8e1379 mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7c3b7c7d mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x80a16013 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x89ceeaf3 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9b848761 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa032f272 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbc5013ce mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdecdf96e mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdf7fb09f mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe8a69268 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xec3149d6 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfba8275f mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1fe87031 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x52f77567 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5af5afe4 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x763db2a3 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa53a430b drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc2bc0fd9 drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc397d239 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcab1a356 drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd4495966 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdfb51867 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x02c2f5ce drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x09eb8707 drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x82b6dcbb drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xadfab70e drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf50f318f drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0087e94a drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1d949052 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x25c35792 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x265e6e6c drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2deab7ec drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2fbff600 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x57999921 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7e5fb1a2 drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x84fe2630 drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x87f4bb77 drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbc8021d3 drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbf6cc5ce drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbf92c71c drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdaa3b510 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe5ccc14b drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf7faddb1 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0cd04384 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d63c48a drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e638abc drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x30f2a3d8 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ba57af6 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3d7a755c drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4769827b drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x47a714e3 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x488004a7 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x56394319 drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x57551c1d drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x742cb66d drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x79a53ffa drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b2d26ce drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8913c323 drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8e40c079 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbbd340f2 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbbe983f1 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbf7dfec1 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc18afcab drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce9aa24d drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xec599b24 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf7f06982 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf9802ffb drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00b4f3a4 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07124035 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09326b22 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09df3296 ttm_resource_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a2ee08c ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a60d3f7 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e1ecf9f ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x122a3260 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf6b91fd drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd276feaf drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3556110 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd387902c drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3bb38c3 drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3d3da1b drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4ee4a57 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7830ac7 drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbd662c6 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc8e37cf drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdce5ed72 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdda2f5cf drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf719b82 drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0412eb9 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe085013b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe086070b drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe19714cb drm_fb_helper_damage_area +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2527ca3 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2f54714 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3102e3b drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe842ccc1 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8cf7ce6 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9da0591 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec63cc64 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecf2ea68 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed44f03a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef13ceb9 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2086c53 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6752704 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf863eb30 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8f32c5b drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf90b6f05 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa228c36 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfabb1695 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfccd9e51 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x05378dd6 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x06d3fc26 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0f4e717a mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x103530dd mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1b62362e mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1cdca2d6 mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3d41892d mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x470ca3d3 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4bd1f72a mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x67d1be4a mipi_dbi_pipe_duplicate_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x74f4c5a5 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x79b695b3 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x898e70e4 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9071e55e mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x961ad75f mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x96800ccf mipi_dbi_pipe_reset_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x99c9321e mipi_dbi_pipe_end_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb38c8833 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc22c4c76 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcc9277dc mipi_dbi_pipe_begin_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd031d809 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdfc9f827 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xebfed394 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2a68e1f2 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x301d7d8f drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x377de8ad drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x72ebf942 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x9696db19 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x9dcc9e24 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xad798317 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xbe913019 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcd4365d2 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf74cf372 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x048a510f drm_suballoc_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x0bad1988 drm_suballoc_new +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x8debd4c9 drm_suballoc_free +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xcfea1bec drm_suballoc_dump_debug_info +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xdd9c3522 drm_suballoc_manager_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x088364ed drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0da1f073 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x479ec26b drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x66a96c67 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x8255875b drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x016e3971 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x01d6d425 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1313da9c drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2a26e3b0 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x30836cae drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3ee55be4 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x48c1689e drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x50b02a8c drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8a4804da drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa036b1ac drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa0d4dc0c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb0cf4706 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcb264652 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd32c381c drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdd817879 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf5e6835d drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02fb1b38 drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0613dc48 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x082812c8 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12232f0e drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12438190 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x139de779 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1a492da1 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36ea2852 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4faa3b3a drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x514a7959 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x52ab11c9 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x535b5d20 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x57935905 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x688a598c drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a131f03 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9478fbf3 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa47693d2 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa8053c74 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa8c69fd2 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xae405139 drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xae7bb563 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcf7e74cd drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe7019c02 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xee9bc89a drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf5231713 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf88b3fc4 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0741a3c3 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ee63882 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x152ec019 ttm_bo_vm_dummy_page EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b1978c1 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c00f906 ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e9ca972 ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1efb00fd ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20f5b60f ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22303260 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cc41258 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2db0219e ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e1d1762 ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33e544b6 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35cfacb2 ttm_agp_unbind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ae96c55 ttm_agp_destroy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x412a8192 ttm_agp_bind -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4586b49d ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d7790e4 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f79fdb3 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x539b512a ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5507f664 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56164216 ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x586fb124 ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ccdf640 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d479cae ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x212e7c96 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22aa181a ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x244cce9f ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a9e5bab ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b31a992 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bdeda9b ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2dd55354 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2fac9507 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3014e3e1 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31877525 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cd11c0d ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ee0f7dd ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40d7e6fd ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49b5da33 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x517c5c12 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51eca6e5 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55e9e0ff ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55faf8a9 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59abd608 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6284e380 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68c165d5 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a847134 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6dd4b2e5 ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x725b4907 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d6c7563 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x810f6789 ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82153522 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8547df32 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8631d846 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a624ec ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90a02beb ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x935dadf2 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x999c4253 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a28dcaa ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c581a13 ttm_agp_is_bound -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d481485 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7dd564b ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae8cbf43 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd7346c4 ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0a5f3b8 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2be518e ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7477705 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca04c259 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca92fe86 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcac49c89 ttm_agp_tt_create -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce455cca ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd1b09d08 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd430f37f ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5e8bb55 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd60bd421 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb4b0f26 ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc6a7236 ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5624d91 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9178b4c ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeadee0e7 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf491c21a ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7baa5ff ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb9c35d7 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/hid/hid 0xe2e6bd70 hid_bus_type -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x02e24b68 ishtp_set_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x065e671e ishtp_cl_flush_queues -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0ec873a3 ish_hw_reset -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2199e993 ishtp_start -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x23adc0a8 ishtp_set_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3d6c900d ishtp_cl_driver_register -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x436dcf79 ishtp_cl_get_tx_free_buffer_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4f4199d2 ishtp_cl_rx_get_rb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x52b5fd76 ishtp_cl_io_rb_recycle -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x550f9a27 ishtp_set_connection_state +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70815634 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x742e881c ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75d9e878 ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x821d7e23 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x894dba09 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90073952 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92def799 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95ae225a ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x966fca1f ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a1781f3 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7e0a87f ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad6e1eb5 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae162ef4 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae29573f ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb66e5695 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6a6deab ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6f2f50e ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9c331b2 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd517505 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc09597a2 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1db94bf ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4f98546 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbd32b5d ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd938092 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcda87a0d ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce43436f ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce609f4a ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3704f7a ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8ab9b8f ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbab1f22 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe084b4b3 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5ec585e ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf53b90f3 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6767826 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8787506 ttm_bo_wait_ctx +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf99d28d3 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb1234de ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe8a3245 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/hid/hid 0x5c14008d hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0e1d21ec ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0f970ef5 ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x10270581 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x125100e3 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x15f9d642 ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1953844b ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2798ed66 ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2a2fdad2 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x37b524a5 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3c068dc9 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4108ce51 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4abd5f6a ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x557eb21d ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5c9637f9 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5d656d97 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f240e33 ishtp_cl_tx_empty EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x650cffa8 ishtp_register_event_cb -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x658162c9 ishtp_fw_cl_by_uuid -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6b396d6b ishtp_send_resume -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7bf25c51 ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7e249602 ishtp_cl_set_fw_client_id -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x802a3ab4 ishtp_cl_allocate -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x820bcf47 ishtp_dev_to_cl_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x87a5dfaa ishtp_cl_connect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa1e2f697 ishtp_set_rx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa3e888d6 ishtp_get_pci_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa8374099 ishtp_reset_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa83769d5 ishtp_device_init -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa8853a83 ishtp_cl_send -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa911740c ishtp_get_ishtp_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa930300e ishtp_cl_driver_unregister -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xadf91ae5 ishtp_cl_unlink -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb0916eff ishtp_get_client_data -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbdaeab32 ishtp_put_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc1e7db5e ishtp_send_suspend -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc2f0e00f ishtp_cl_get_tx_free_rings -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc8ca38ed ishtp_get_device -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcafe5e3f ishtp_bus_remove_all_clients -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd6cd06e5 ishtp_cl_disconnect -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd838b9f0 ishtp_get_drvdata -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe139b422 ishtp_reset_compl_handler -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe1d820a1 ishtp_recv -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe52dc5d2 ishtp_fw_cl_get_client -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe923e8f1 ishtp_cl_tx_empty -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xee850d04 ishtp_cl_link -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf74fccd4 ishtp_set_tx_ring_size -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf90ecdaa ishtp_cl_free -EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfdc044f4 ishtp_trace_callback -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4517796a vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4ef895f6 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbeddc769 vmbus_recvpacket -EXPORT_SYMBOL drivers/hwmon/adt7x10 0x38b707bd adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6207d431 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x661cf711 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6b2b5a69 ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6c326b0c ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6d4626bc ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x73402c39 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x74339d2a ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x74c14970 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7b0d6edd ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x8df2f036 ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x987930cb ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9bc9e1e5 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa46e9cfe ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa832f260 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb1af3d36 ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb397879e ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb53c44a1 ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbff55390 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcce1a07e ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd673bb93 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd7efb6c9 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdcc7319f ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe079f8b4 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe302e562 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf260ddc1 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfb9c988e ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4d43a83c vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x7924220d vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x87a55476 vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x14fdb974 adt7x10_dev_pm_ops EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x083cf7e0 ltc2947_pm_ops +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x5aa0ff99 ltc2947_pm_ops EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x78dc1bc1 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xd9a4c619 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x6644ca39 i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7607d795 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xfc7dee54 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x2924f954 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb6148ac7 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xe05978ef amd756_smbus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x27487f9f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x857336bd i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd74c3b74 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1c6aa4ad i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x83db6558 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xc20d4ae4 amd756_smbus EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1330,1165 +1374,1045 @@ EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x44cc48cd iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd8bc7386 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbe1174f2 iio_kfifo_free -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf2cfd921 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xb31ed972 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x04f0c7af iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x05bf4be3 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x17a3f60d iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x26159298 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xcbb399b1 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xee570370 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd83e06e5 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdd78a251 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xc6424e6b fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0906e8c5 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x18039ca7 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x1869041d iio_trigger_set_immutable EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x2e92be83 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x7240b812 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x7d7180d1 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x8189875e iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x8fa9cda2 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x9a1bcefd iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x9f458d1c iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xa32862cc iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xa4276948 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xad9d0d0c __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xb8c43649 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xbb24c414 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xbfb4a736 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xc686f2de iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xc83b13bd iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x2f4368a5 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x36512927 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x45d46a1e iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x4ba9d04f __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x84e2630d iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x8f1e0e99 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x94cce79f iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x9b155b0e iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x9fbbebef iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xa42c7cc4 iio_trigger_poll_nested +EXPORT_SYMBOL drivers/iio/industrialio 0xab3e3bba iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xb1482876 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc97ae49c iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xcc6b39f9 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xddc33b55 __iio_device_register EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe0bbbd2d iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xed2c9553 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xf1877501 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xbe894831 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5b0c735f iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x65700e5b iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x79e78138 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcbc41300 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x31985d24 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb52dbd7f iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc3878c76 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc5b3f78b iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x0603b2f5 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xe7c61120 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x479c8263 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0f77354c ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d9d8d1a ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b25b72e ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c0c5bf5 ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x49444cc2 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5589e1ef ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x64a01d0f ib_send_cm_rtu +EXPORT_SYMBOL drivers/iio/industrialio 0xeda02b92 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xf40111dd iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xface3d48 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xfb695b2c iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xfbab9bde iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x149e9fb3 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x22633709 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x62263bac iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc9c662d1 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x38d2dc16 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3d3ef8e9 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3f156a0d iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x6398143d iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x11afae5b iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7ee60074 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x9b05774c bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0f42edbc ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x15628923 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x31fb9746 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x53833d39 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5e1b0a63 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67f09e18 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67f82b74 ib_send_cm_rep EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x71f77f0f ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7922a5ad ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6726cb6 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd16977af ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xea367c8a ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xed6a6489 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf8429cfa ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc8eeb0b ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00484f50 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00954210 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fae4ff4 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa1e1e4dc ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa14d782 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb3588b0b ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb9e8b039 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe3749fda ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf051def0 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd573437 ib_send_cm_mra EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x012f0a30 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0417da31 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04f3d823 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x057b512b rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07769256 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0911c88d ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0945d7b6 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x098fab56 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ba0eb5a rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bc46e72 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04e7b3f8 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05a6dd80 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x063b3070 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06808c4c rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c249cd ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0737cac9 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a5411d2 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bf05ae8 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bf0ab31 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bf961e6 rdma_move_grh_sgid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c9926de ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d44d7b1 ib_check_mr_status -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ded349a rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f234da2 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f2ab5b5 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11f128f5 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12862cfa ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12888ff0 ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12ebdb8b ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15e310d1 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16ab9fec ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16faf9ae rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1770b07e rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17b161f8 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17c9447a ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dd76341 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f4774e9 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1138d2c5 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x114be375 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x123c0927 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12ee3b7a rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13b87352 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x162800cd roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x176e2b60 ib_get_device_fw_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19ffeae0 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a21fd9e ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a582a93 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a89244c rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b53d272 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c014c2c ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cb32369 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e07762b rdma_restrack_del -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f14c3e0 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22030c94 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22180fdf ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b735814 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b7834f0 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bfc4b47 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c87713e rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d47af79 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e0e0dae rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x217d0b58 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21e2bd1a ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22bc18f9 ib_dereg_mr_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x244778ea ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26a1b387 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27fd3b03 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2993d150 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c0555df rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cce6b58 ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2da7635d rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29e24679 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a29cd40 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a71cd51 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d9b11b4 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f05ae44 ib_create_qp_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x314eb22e rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31617ed8 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x316b49f6 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x338e15ac ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36213c2a ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36dbc04a rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x397b90a9 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ac5cfa8 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b677962 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d87bda9 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f0b52a8 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30bb455e rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30d1db55 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3206ddc1 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x328a2e51 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33094ffd rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x336e2021 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34e32a6f ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35df1661 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x387869bb ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3927cd2e ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39d67248 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ade4aa8 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b2990ee rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b46a2a6 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bae4ec0 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc2aef6 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c933bbe rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d980c5a ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e03d795 ibdev_emerg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41382f9f rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42bef7ae ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42dc23e4 rdma_hold_gid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c7961 rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4381c627 ib_query_srq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4523a038 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x458bdfde ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44da8b1b rdma_user_mmap_entry_get_pgoff EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x465fb40d _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a4dd951 ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a79868c ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b97948a ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x465bf9cc ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471fe6eb rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49c8ce48 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ac682c3 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af1aa16 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c808183 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d55eb4a rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4de4c2f2 rdma_set_cq_moderation EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x504cb7dd ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50e7e050 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5336513e rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53a2f8a1 ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5476bcf7 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x547de422 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54b7348b ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x553d6297 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ecd59a9 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x508f1980 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50d62167 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50e38c0f ibdev_err EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55c2ae1c rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56efd234 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56316480 ib_dispatch_event EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5771abf9 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5816d351 ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5830ee3e ib_mr_pool_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ba4bc86 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c0022a0 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x600764f7 ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60c0ed88 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cb99d13 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d154e63 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f3a2c89 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb423a1 ib_get_cached_port_state EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61532513 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x616be361 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61976aba ib_drain_sq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62131167 rdma_nl_put_driver_u64_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63698514 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63bf4bfc ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6646f4bc ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6877d398 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68f9cb17 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6984b16c rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62ee131e ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x643f74c5 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a9cfd1 rdma_modify_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e119fe7 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d4d15d4 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d8cb05d ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2ceefb ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7230284f ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x734df5fd rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71257b91 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71392e7b rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7233b7a2 rdma_translate_ip EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75029b6f ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x740d5aca rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74a71543 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74c0c666 rdma_nl_put_driver_string EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76ea680f ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x780d294b ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75b6d8fe ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75fa79cd rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76438a7d ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7655ae36 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x779aa297 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77b2f3f6 ib_device_set_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dda2df5 ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7de32976 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f1ed6c2 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fa49811 rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80195e3d ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82128ddd ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x842e6050 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8573f2d4 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x872f5e9b rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8733b92f rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87862007 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88004fae ib_init_ah_from_mcmember -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88b17b04 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88d44483 ib_cq_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89b9a3a6 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a52d860 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c62dd40 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8dd2a0f6 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79882cab rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79e633fa rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ccdda53 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fb4481e ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80857221 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x819f157f ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82350d23 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x836ab67b rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8433b7ae ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84618b2d ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84de6c2c rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86f4f4b8 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x893a2300 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8961bb51 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a4c7b51 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b86e0e1 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c33e97c ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c764210 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ddab0b1 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e340793 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e6c3f63 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x905a2375 rdma_user_mmap_entry_insert_range EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91b6cce4 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91ca431f rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93949da8 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93eeda6c __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b11f35 ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95bd759f rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96db6f9c ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97f877d4 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b66fce4 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9db9c790 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2142751 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3ca20f6 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94680a43 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99cdcc2c ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99f77dda rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a666f6d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd413f4 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cd620c1 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d765813 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e73126b rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa34bfa83 rdma_umap_priv_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5a59cea rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa74fb991 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa859a467 rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa925a377 rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa24ba2d ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac7fbfb8 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac92d6d4 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae34810a rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa907ef90 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa31022f ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad800b89 rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2d0982d rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafafb064 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafcc8c3e rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd47bdc ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0ee0bf9 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1d74806 ib_map_mr_sg_pi EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5022be7 ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5208b3b ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6bca129 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb729d9aa ib_detach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7be2d90 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaaab8cd ib_dealloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb57ca07 rdma_umap_priv_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc68088f rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd539ce6 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdde31f1 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe9a3a0d ib_modify_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0aee618 rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4a2c811 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4c9fa02 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8cee3a6 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb893214c rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8d8373a ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb90d4573 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93e40d0 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9e1cf94 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbd08bb25 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbedfeb9d ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbee6c941 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc076ef6e ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0fefe1b ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc20e30d6 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc312dec9 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c22cbc ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc41577a8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc469711b _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc52f1e79 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5746e4d ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc60f3cf8 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc73042dd ib_mr_pool_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9636ab3 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaabc0f8 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcba11e58 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd03f4ae ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd90086e ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfe701ea ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd01c0df0 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9030d52 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb8beaa3 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbbef4bc __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfb3fea6 ib_rdmacg_try_charge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd098faeb rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0d52e39 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1b806c1 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0fd7777 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1ad92eb rdma_link_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2ecb2ee rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd442dd15 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd46d7472 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd31ade6c ib_alloc_xrcd_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd73b14d0 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd792f772 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd814f77f ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0001ee rdma_create_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa19a8a rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaea4f3c ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc64f1b6 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde8b85a0 __ib_create_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe113a5de rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe333893d ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3eeaff7 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4008716 ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4f41bd7 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc7ad8d7 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc7cc33d ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc7f5228 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfac0326 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3399429 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3a1f29e ib_alloc_mr_integrity EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe603db02 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe61fa074 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6fe9e57 ib_find_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe83bad6e rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8a7345e ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8caec16 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8ff837f ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe957cd70 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe96d57c6 ib_get_vf_config EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeba49db1 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeca5cfb1 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed98d3ce ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeec01c9b ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeee4a69d ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef571a24 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0fc7e51 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2b2e87f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb5647b8 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb5d3d5d ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee202aab ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee417f5b ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0213f7b ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0496d60 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf09d1ce8 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf46d0ee0 rdma_destroy_ah_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf95c9791 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa1b9a1c ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd352a8d rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfecc6617 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x012f46c4 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10043455 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x130266d2 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x14ccd34d ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26cd652d _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30ddf536 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf78db201 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7c86c14 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9911c77 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe1c65c6 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x04189875 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b474a41 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x144f1e03 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a7d1892 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ac54153 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e41b997 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x22f0f9c2 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25fa8569 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2ffd26e1 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x30f20e84 uverbs_get_flags32 EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3ba2ea4e flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47bab242 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4afe7351 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51f5aa4c uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x532f073d uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56fc0ecf ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x622ededf ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x634390fa ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x67bbe923 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37dfd3a3 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39fb4b05 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3ba5ea97 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68e10a42 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x698c44fe uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a770e58 _uverbs_alloc EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f268926 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x875618ba ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b63446c ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8b8182d6 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9784c3fe _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x989f489c ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa23a406a ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa895fe3b ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacc0c381 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb3f75b0b ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb81d83e2 uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbcb4a53b flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc96ad50b uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc247285 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd0d1997d uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1127e83 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe1f83406 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe295cd16 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe7c4a114 ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2af62d1 ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfeae6c01 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xff88e1cd _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x118743e8 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x18328377 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x25a98cd4 iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x27c50a96 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x37ccce9b iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3b791664 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7eafdad9 iw_cm_accept -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc2567bdd iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b68dfc7 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7bb27252 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x837852df ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x842213cd uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8a226496 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96c8e6a9 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b73bec0 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa7157275 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa88fd148 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacf940b8 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbf10ab2c flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc83062e3 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeb88e63c ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef3d6cac ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1509229 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf91028e8 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfc8276f9 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0f7b2484 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x461daecc iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5182186c iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x668b1d01 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x77c5c884 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8dc6adb6 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd591d7af iw_cm_reject EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x01589cb2 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07f3d4b9 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0a045ae0 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1062da94 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11d3e595 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19e835ec rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19fb78a8 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d0550b8 rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e4ef5d9 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f727f91 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x273eadad rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3717b66c rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a05f366 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a5c2262 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b9ffb26 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x415c26cd rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54aa8ead rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59553a96 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x783d3ae7 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84b08dc6 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xff74243c iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03284b10 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05fb5220 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1075d398 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12d680c5 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16baf8e7 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x304072df rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42f3d4e3 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x48495ec8 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d1c7895 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63d9de7c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x64f42d81 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69b0ac3e rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x755f7e3f rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76fd2654 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85820c8d rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87aa954f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88eb4b63 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e3b0e49 rdma_set_ib_path EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9d493fd3 rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0d8b661 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa622c2c7 rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb31aacbf rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcaf694f6 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc465543 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd162878c rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda57537d __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdd96ebf7 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe53a8b17 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe7a314df rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb9e7bbe rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef64d790 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf109047f rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x942cbb4e rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9691c801 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1a40f5e __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3d989fa rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa68e2c07 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaaef94bd rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc695a2e1 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca67681e rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd3630709 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda8f9ae1 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe342ae92 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5a324fa rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe715fe13 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed8b8e9c rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xee98f74b rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfce5e02c rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x06b6c050 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x085171ec rvt_lkey_ok EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2445cf5b rvt_lkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2a9cec12 rvt_cq_enter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x36ad808d rvt_stop_rc_timers -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x3707fadd rvt_error_qp -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x44e55435 rvt_compute_aeth -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x491007c2 rvt_qp_iter_next -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x49a8ed4e rvt_register_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4cfa1245 rvt_ruc_loopback -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x69207e9d rvt_copy_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6b042f41 rvt_send_complete -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x701d66ff rvt_rkey_ok -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x72fbba84 rvt_get_rwqe -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x741188ac rvt_restart_sge -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x95eba87c rvt_comm_est -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9c60f40a rvt_rc_error -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa2083353 rvt_dealloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xabca1d52 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0fe53442 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x191e32f8 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x272a6e44 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x374fdc85 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4110548f rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x48defe02 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x528a22d2 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x58d26fc3 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5ca9151d rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5e9b3127 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x675473d1 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6849863a rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x73b3f3d6 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7a8eef5a rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9ff43d6a rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xab89c79b rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb1d6aab1 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7de45c6 rvt_add_rnr_timer EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc328b635 rvt_unregister_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc523313f rvt_init_port -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc62cec0d rvt_alloc_device -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc67a09d3 rvt_check_ah -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc8202212 rvt_add_rnr_timer -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd0bca349 rvt_qp_iter_init -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd0e76346 rvt_get_credit -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd1216849 rvt_qp_iter -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe13761b5 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc3f33293 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc4824adf rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc52a8453 rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd233543e rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xde7ab982 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe1722940 rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9b38113 rvt_stop_rc_timers EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf73a56fa rvt_invalidate_rkey -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8920e82 rvt_add_retry_timer_ext -EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8cf7a41 rvt_mcast_find -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x33cab4f4 rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8ec6f01f rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb0174693 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb5162a82 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbd079286 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd914c20d rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xe4751007 rtrs_clt_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x22253bc3 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xee12baab rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf487278a rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x14848f52 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1d681872 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2a1d3a81 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2bba3105 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6bfbcf8e rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6cc144bf rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6e4ca8a5 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x14a8d3c0 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2279ba8b rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2883140e rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x35a96c38 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4a2d131d rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7dedbefb rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x9c1eef74 rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0b50f9b2 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa9c84e8e rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xacee4943 rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc6fc6ee7 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xda442baa rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xeeae0f88 rtrs_srv_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0bffda97 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0fba6447 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x25c933b7 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2b727245 gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x306b8e72 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x405ccddc gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x804a634f __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8c27fed6 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x96bb7534 gameport_unregister_port -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x21965e32 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9b8e5c72 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xcf28f56e iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0x81005254 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x84c7c4f3 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x96325f49 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xf36dcee1 ad714x_enable +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x25dab2d6 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x375e6949 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x55d06273 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb2af101e rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe48aac52 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xfd13b536 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1d33662c __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x343d501b gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x847e1119 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8e18b062 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x920c2b00 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xad2e454c gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb166029a __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd9a4a5e4 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf3c1b488 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x5b4053b7 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x874bf9d8 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xaba4664e iforce_send_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x493bb73b matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6237ae8e ad714x_pm +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf8183d62 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x16b9b710 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 0xbafd0181 cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x78e74707 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x33631a6e sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x8c829ad4 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0x9d16f864 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xa50c072a sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0xdd685454 sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x642f7565 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x683841eb ad7879_pm_ops -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x078f74c5 amd_iommu_set_invalidate_ctx_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x1fbdd38d amd_iommu_unbind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x409cab09 amd_iommu_set_invalid_ppr_cb -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x468bd5f9 amd_iommu_bind_pasid -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xb7afa365 amd_iommu_free_device -EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xe53e841c amd_iommu_init_device -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0ece16ec attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x36a98146 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb3ed7f83 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdaee9d3e capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf4765d8a detach_capi_ctr +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xa3f30556 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x17417ca6 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x56c475a2 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x769c7a70 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x80750a28 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x929c2d5f sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x21a36d9c ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xfdffc8af ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x252e73aa amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x7e3151b3 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x87e4557c amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xa58e336b amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xe28e8e23 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xfc1e9279 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3c390e44 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3d36685f detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb9b1c25b capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf2ffa52b capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf665efec attach_capi_ctr EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x09703290 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1c7ec879 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x780ba994 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xabdaa08f mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1883a238 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x36c82e05 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1dc3be69 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4394bf46 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5096c4fd mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xcfabc952 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x061a3849 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xb786b9b7 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0251bd70 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03638423 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1064c731 mISDN_initbchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x157ae443 dchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2077586e get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1b69cec3 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1be79d79 recv_Dchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b5c3ee8 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2ec07d8b dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52567087 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5728f4f3 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x59bef916 mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x62351c69 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e780843 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74fe4518 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c44a087 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c55a26f get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9247e3ca recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9443b11b mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x951b8aa9 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97965cf5 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x670acf1c mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7bd0283a get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7eea60b5 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8aff509e mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8dba974b mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x91e98ad1 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9885f1d8 mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa475fec4 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6595dac bchannel_get_rxbuf -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbda17e6d mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa1fd8715 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac2f19a9 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf010ca4 bchannel_get_rxbuf EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc549440d mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc32acf5 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc40f5273 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xccabec71 mISDN_initbchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd34ffee0 recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdad3bdc5 recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec5aefb9 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xece5c604 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee219dec mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeeae677d mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa99e351 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xff6c2771 queue_ch_frame EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x2e95452d ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x020c884b ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1f8e1e7d ti_lmu_common_get_ramp_params EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xbbf470f6 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/md/dm-log 0x765c4e8d dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x95dffc97 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xc7a606a1 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0xdd591756 dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x050d64c1 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0b8d3032 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x5592b442 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9606b212 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x9c247b42 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb4f2893e dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0x185ed385 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xbe2211dc raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x095d719e flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x167d5324 flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x17f79c47 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x22835762 flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2432544f flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5302258f flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6446e11e flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7416b3e6 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x92765d9d flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9ed7f94f flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaa714c84 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc834a0c3 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd86e45b3 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range +EXPORT_SYMBOL drivers/md/dm-log 0x032c114a dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x53ff8f23 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x78968e92 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x7acf0dc2 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0e0b819b dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0f8e1992 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x450ded93 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb700976f dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbb3d276f dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf125305b dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x153ba2b8 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x1b1a7d0e raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x172c4bd1 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x42c4d8a2 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5264353b flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d0889d3 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x93c2e964 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaf5fb1f2 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xbc1d144b flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc2d14e93 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcc0cfed9 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xccd686fd flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd527ec29 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdb20c0a1 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe4e09bfe flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/cx2341x 0x041d0473 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query -EXPORT_SYMBOL drivers/media/common/cx2341x 0x1f2758bf cx2341x_handler_setup EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x32f1202c cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3bde08f6 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x6feab45d cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b5cc43e cx2341x_ext_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0x8052140c cx2341x_handler_set_busy -EXPORT_SYMBOL drivers/media/common/cx2341x 0xd775c605 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xaa1b07f8 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb2e2788e cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2b126e67 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x14654acd cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x775b762d ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x7a14aa3d ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0xad1a024c tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xdba9f8b0 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d32a359 vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc163f34e vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x9af6f6f7 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe28055ba vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x181544f7 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x75cc44d4 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x95fa38b2 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x98d93966 vb2_dvb_unregister_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xc82af6f9 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdc3c63b0 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x4aadaebc vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6a3dde75 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8d6ee8a9 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8ddbe623 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x924983ad vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xef491c4f vb2_dvb_dealloc_frontends EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x52a9d5a3 vb2_querybuf +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xab1066d7 vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x125170e0 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d32ed7c dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e00ef40 dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1fac7d06 dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27eb314a dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2852dee1 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1fd2a5f9 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f9445b1 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x38d999a4 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x31f1071d dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3cb93dda dvb_register_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d66e718 dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x500a1172 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x503291f0 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3cd6f1a1 dvb_register_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5eeb1709 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f0f360e dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x797f9415 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x81513f74 dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x863df01c dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c714f34 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6dea956f dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x71719e8d dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72482df4 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x75116f1b dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d6dc6f5 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83489e03 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x84bee46d dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89fbdf43 dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9283c29c dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d534e43 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x99c5f6c3 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa3ccd8d7 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa66c6e3 dvb_register_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xafd437c3 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa981ae50 dvb_register_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc0815ac2 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3d936f3 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb342afeb dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb78b70e5 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbae90fdb dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3a16252 dvb_remove_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd40b745b dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcc01903d dvb_frontend_suspend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe17328c8 dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf1440a28 dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfee6811c dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xe6497947 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x2d972e9a atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0d840056 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x28161483 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x38757741 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x492b2bbe au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4d32958d au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x529159c2 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x68558ed7 au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8be2d12e au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa5e3aaa3 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc6dd608c au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x97bddcdf bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x6eff1f4c cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xcc3af082 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xcaf188e3 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x87680d67 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb585753b cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x146a2cb8 cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0075f458 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xdf3ab1b1 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xeba71238 cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xf806aefa cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x26e1574e cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd9bf4100 cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0xf4057713 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x48d752a2 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xabe6ea27 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc590adf8 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd3e8e322 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd7c92363 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x133d9cfc dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x169b47b6 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3ea5888c dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64addd23 dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7136093c dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x79cd8e1d dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ae9cee1 dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d37c9f1 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x90059998 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x95d04487 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x968fd470 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae83ba28 dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc69e99fa dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca2a31cb dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfd654f95 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xb9e84726 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4f7345b1 dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6700ee42 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb477abbb dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb570e8bc dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbb8f932e dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc99a3d8e dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x54c67a05 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6e28b8af dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb8a47520 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe1d71ec7 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x5e3c21bf dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x00a26ef2 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2b2f99ef dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4a59c04a dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6e55f782 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6e58eb5d dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7560e270 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7ed81b22 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x80f2a640 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x924121f5 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9ece97b3 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb1f4bd4d dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec331a9d dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xee7a99d9 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf1bbe971 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x19bb4edc dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x234972e9 dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x27674aa1 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa4435661 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe7a59fe0 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xd8b2036e drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x061b3222 drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x81693824 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x65011c01 ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x60616e0b dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4c45e9bd dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x66383fb6 dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xe78bcdd5 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2daa0914 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x28398faa helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xc8cd5d9a helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x63ca8e0f horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xe9dc524b isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x11f706ae isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x65aee3a9 isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xb75be286 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x8154a60a ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x3b38d88e l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xda79e52b lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x54f38f64 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x1e04ca40 lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x959610f0 lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x24579436 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x39bea4ca lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x1b3a23be lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x55acb9a1 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x443c0d76 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfd9139a9 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xbb937da0 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x11985de4 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf2780275 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xe7f89af6 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3a2aad85 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa21f8c63 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xff555970 mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x83b8b2b4 mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x9d06107f nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x027d9814 nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x6b8ad8a9 or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x939d1823 or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xafa8ca35 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xae3fcb3e s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6d0a9d9c s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8828be42 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x203d87a1 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x86011c3d s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xcd77ad52 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x0a41fda2 sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x9fbdca57 stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xadddd1e1 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x35884c26 stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x0da0dc4b stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x5eb0957a stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xd14265c2 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x779ee441 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa3225103 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xd0560266 stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x12a951bd stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xbf52a21d stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x71ea6c2f stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x28f202ae stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x730adf92 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe0d2af75 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x7a314c0f tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x284a3100 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xdc29e75a tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x6eddd78b tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x463fecfe tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x718ec79d tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x79e03fbe tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe5994b77 tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x73b3a208 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x0be72484 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x29d9ae8a ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xeac47201 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x24e2cb33 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x6e804d0c zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xeeba8e16 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xd88b7e6a zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x5be4b707 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0efb8f5e flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x50d4ab87 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x67b64a04 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9e099fb4 flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xad1a76a3 flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc1a7d773 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf9f8bda9 flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0bced880 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x67cb6be6 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9ae63c7c bt878_start +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfdbaa50b dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x35272bc7 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4d7f1c33 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6e1d817a au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7b45d02a au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x80956e84 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x93834794 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb74c6713 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xce2a8ef3 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xff2eac36 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb4fa9fee cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9c16c6fc cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4ffc8556 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x99fdf468 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc4d31fe2 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcd29374a dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x04045ed1 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2e0818be dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2f9d962c dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x37f268c4 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x39f57654 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3dfcb54d dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x43bb8bfe dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x477a9672 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4961027a dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ee48adb dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x94072b0d dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb951aaed dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea46dd8b dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4b64f244 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x55083246 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x67392e38 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x741408d4 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc630b077 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5b9f94e9 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x99693895 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xba039f38 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0a74c42e dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1054e95c dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x406aced8 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x856bfbc5 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8fcefdb4 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xac8cf2f9 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaf363fa1 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcc3ed908 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd279d897 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdc51343d dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe507af7a dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe7b0374c dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x04d604fe dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1f45b26b dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x702a1438 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9e827e60 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa2743958 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4daa7909 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x52d98df7 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xe6645d61 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x0815129c lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x1358d66f lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x906c87a3 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8bf92b67 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x15a10847 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x68608178 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x06704aa4 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1b2ccfcb flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x343e6581 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x88fc3936 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9472b99b flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb6e55a85 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb75883d0 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x162e76b9 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x63755807 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6fa93c49 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x74febe56 bt878 EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xff1818d0 bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x81bbbb9d bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x158b570d bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1f63ea03 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x459bd6e7 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa0412b15 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xc852f5fd bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3172ebf0 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3d56cd47 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x13c03cbc write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x38b9787a read_dst EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x636a0c31 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6bd6e42e dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x71e83eab dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9d6cecb0 dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb26a3185 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf083b2a0 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfa5b48db dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x6c78e93b dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x071186f2 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4884fb4e dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5a6a1794 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x855b9b34 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa4a2637b dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbb67d6c8 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbdb7d56b dst_error_bailout EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x392afd14 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4bea4db9 cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8c2a489f cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9b0cc463 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x419db2ee cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4dfdb2b3 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x99fb3fff cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xed245a77 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf97fef04 cx18_release_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc 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 0x26ca43c4 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3eb06ac5 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0d76b29f cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0db9f46f cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3a5d5356 cx25821_set_gpiopin_direction EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x457be050 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x479ae6e9 cx25821_dev_unregister -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x82d19ca1 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xaea0c13e cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xca13253e cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5b5c6e88 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7605d9a3 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8493eb47 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8f634226 cx25821_dev_get EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x37f51760 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe1d0d49c vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6f3f778e cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7315ecda cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x78dd4242 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf672b78f cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x249f20fe cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3df1a68e cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x50dcb3ec cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5db8867f cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xde7f31a8 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe35e34b6 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xedb92671 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x072a1a16 cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0eb6216a cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x151e28f4 cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x26cb44bf cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2790131e cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ab32eab cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ad029bf cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x42f96771 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x53fd337b cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1582337a vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6128372a vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3c4727e5 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4d83201f cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xbb0df154 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc083ca24 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x128f59b5 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2e04fc29 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x522a5728 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x649bc7bd cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa9ebebfe cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb4d8c5bd cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb90a61e3 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0cf13a69 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x105f30ce cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1b2d70fc cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x23fc9c42 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2517ba21 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x307ae89e cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x36c4b519 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3cff4bae cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5363f030 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x58fee1e3 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5ade379e cx88_reset EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d4f5cc2 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x888062e7 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8913204f cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7090169f cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7accd1eb cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8804a724 cx88_ir_start EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb324ae0 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe2a280e8 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeafcb7d1 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeb195abe cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeba1bc2d cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf3ceed77 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf5c39089 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfbdc0f51 cx88_core_get -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x39cced2f ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9d9a3768 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaadbfba0 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf848a77 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd94352af cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdef806ae cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf9b70171 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0441f671 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0971ff0e ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1320b38b ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1420fdea ivtv_ext_init EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28f22077 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x331d8479 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3bea1a5d ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4861b49e ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a761fcc ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x589af7b1 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5b1bf73b ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x60000f98 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x86f59c6f ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x88b2c06d ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa575dee5 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbe4c7325 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcbd835d5 ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdd032018 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe049e7cc ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf989bccf ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfd681dd7 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1c93366b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c5f1e32 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x318adfe4 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6bf3f206 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7feab094 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8e36385e ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x95d3c993 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9c754e19 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa4d71fad ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xabcdd164 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaf2712a2 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf59eac3e ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9461c63 ivtv_vapi_result EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1e1029c9 saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2410daf1 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b56db9a saa7134_ts_register -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x569998d8 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x123f7d01 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x261b6e9c saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3d8ccec1 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x43848e99 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x506fcdab saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x64f5d37a saa7134_set_dmabits EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9ba8bc69 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa19f0ef6 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaef3f7e8 saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb005b9c0 saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb9d14dca saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd436c1f1 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xed5fcd3f saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/radio/tea575x 0x03677593 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x18f57590 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x270f0a92 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0x4045143a snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x88d71cf8 snd_tea575x_enum_freq_bands -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd5571107 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xdd329704 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x94b0def7 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa5e1fcbf saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xac2ea58b saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb01860b5 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf83dc8e5 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/radio/tea575x 0x274738fc snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd1f4f3f9 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xea8641c4 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xefb174f3 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfaf96a64 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfdd9f4e1 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfef0d425 snd_tea575x_g_tuner EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x1aeb2113 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5ee61dee ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl -EXPORT_SYMBOL drivers/media/rc/rc-core 0x8d9c3175 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x977df5fd ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/tuners/fc0011 0xee06b001 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0xa8118916 fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9355634a fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc27c93ec fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe525f3a9 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0x286a21fd max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xc0c15cb8 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0x2df96ee8 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xa2360f41 mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xa116622c mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x4a5293f0 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x8cbca75c qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x9ce341ee tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x47657c56 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7781acbd fc0013_rc_cal_reset EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/xc2028 0xa2bd1f75 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0xede496bb xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0x10bf5e56 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb7f90f2a cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc18ef63f cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x01209bd2 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0177f4ae dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x01b0d8c4 dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x608da6cf dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x62154fa4 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6e328873 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa587ded5 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb4607766 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc3845f0a dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x01fe778b usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0586e051 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x06520709 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x078e46af dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d082b76 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x44d53bc7 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xed2c615f cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x16259ffc dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x486f7a6c dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x62e0ae5c dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6acaa275 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x813980cb dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9a826b19 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaa9a651c dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc565e8f9 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf7322717 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2f059186 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x32b30bf0 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x496ecc1e dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5eaaf170 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7a788b03 usb_cypress_load_firmware EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xac246c36 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd5f60ea6 dvb_usb_generic_rw EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xbd50d7ef af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xbd18a012 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 0x0d65f365 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3ca2a28a dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4ab6660f dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5e7ec47d dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5ff105d9 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x84867f43 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x02d26501 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x18e2a064 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1c266fc6 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4026c50c dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x70dc8755 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x86ed41e1 dibusb_pid_filter EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9ec1e5be dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd1b11901 dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd8ff8226 dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x27fb3def dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x68517010 dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd29332c0 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf724b9ab em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x122c07b1 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x18f7ad48 go7007_alloc -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x254c837b go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3472f883 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5432766a go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9576a8b3 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd35fbf54 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4ee1584 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf580a2cd go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x333ae136 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3cc005d0 gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x80628ae7 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa9866174 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdc45c0d9 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfb825108 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x9b75fe06 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb31664a0 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf888cbd8 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfcf40354 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x417cca48 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7eb49c0b go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x89f090de go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9f9f30f4 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb4c67148 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbc82d8e9 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdc0c95c3 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdec05ee1 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfa50b5f0 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0985b3fe gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x32431da2 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x56644146 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8b276ca8 gspca_resume EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x99f43f9f gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9c38ab0b gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa2a60485 gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb73ecaaf gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc5fc5779 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4e827832 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x654579f8 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x337d17fb v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4152bec3 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x46dea157 v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8f0c2366 v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbf6ec8e3 v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xe03a0fac v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xac53845f gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf386220a gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf7e55f3d gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfea074aa gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8c0a4f86 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa7cd4e4c ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1c19a75e v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x48e5634e v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x80a30cd7 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb973c84b v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xeab7b6ea v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xec835572 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0040c7b8 v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x817e2fd9 v4l2_m2m_mmap -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8ccc0d56 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xaa8836f8 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xafdd3eed v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7a881118 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7aaca614 v4l2_m2m_mmap EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x040e4220 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04e56209 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf78683fe v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0153ec4f v4l2_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06aa5cbc video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06b0d297 video_devdata EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x086a640b v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dde8612 v4l2_ctrl_activate 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 0x17f486f5 v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ebd768d __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c6c6126 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e2ebee1 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ece5480 video_device_release_empty EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30a16b7a video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2710fccc v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ed133ea v4l2_ctrl_new_std EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x376fcebc v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34eb9ae2 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ff98bf v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36be54ea __v4l2_ctrl_modify_range EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b0129b3 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b86cd9a v4l2_ctrl_fill EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a195fb v4l2_ctrl_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47015cec v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4837968e v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49ede37c v4l2_ctrl_g_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e62d414 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ea724d5 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50bb00d0 v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6418d83b v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6abd2698 v4l2_ctrl_type_op_log -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cad9835 v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73a7c905 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75825176 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x783db085 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a7da2f7 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ade06a1 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b2ae445 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d75f606 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e0217ab v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8034ca81 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3efd253e v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43a5d6b7 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43d5bc36 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ab6f9f2 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d4717c5 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a1ea059 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73cf7269 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78bf4b8a __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79b7c2db v4l2_ctrl_g_ctrl_int64 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82422eb6 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82b58446 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82fabede video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8755ca30 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8577a8cf __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x878203ff v4l2_ctrl_handler_init_class EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c41fe74 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cd9a6a0 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95af1a0f v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x969e2d41 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d644618 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f2f0cfa v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2af87d0 __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac3c98dc v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac8e3b85 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94d0ea80 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94f1244e v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a43f83f v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d232e02 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9df63811 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa20e701c v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa34f8c6f v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4b4d58a v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa981d839 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaac7be9d v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb46055dc v4l2_ctrl_type_op_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7be17e3 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8a583ca video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb92d521b video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba6ffa01 v4l2_ctrl_radio_filter EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfb7bfbf v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc36092f1 v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc90f98da v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc50ad3c v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc542bcd __v4l2_ctrl_s_ctrl_string -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd05c056 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe7adacd v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc383b66b v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc31d88a v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xccbc54f6 v4l2_ctrl_new_fwnode_properties EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda6dba89 v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf3e230d v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe271e0bc v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd23fa281 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6806995 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda47d4bc v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdaa24b7e v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb3f2074 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb5cbf25 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe285de51 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2ab3a7c v4l2_queryctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5c96cee v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe76fc8d1 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8f5d1ce v4l2_ctrl_type_op_equal -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec640952 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3a6ac64 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4727571 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb78c550 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef23d222 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf11976ec v4l2_ctrl_type_op_log EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5a94d17 __v4l2_ctrl_s_ctrl_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7059986 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/memstick/core/memstick 0x05415b9f memstick_free_host +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9dfd884 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa6812bc __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe1e8300 v4l2_querymenu +EXPORT_SYMBOL drivers/memstick/core/memstick 0x002802b4 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x08bfed9e memstick_remove_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1cefcac7 memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2208caeb memstick_remove_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x2ccd58b3 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3e840753 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5fe30394 memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x80a5cd22 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8b9470c4 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0xad8a910d memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb126d521 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb4cabfa7 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xe4f5bb1e memstick_add_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00c37dc6 mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x023bce15 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x104872b5 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x257b7b87 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2df9e8be mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b6ddcee mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43f847e4 mpt_findImVolumes +EXPORT_SYMBOL drivers/memstick/core/memstick 0x43fb9e30 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4cddacd5 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x71997386 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa2670801 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa2d53257 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaa2fd098 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc8d96777 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe28820c3 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf6a47f13 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf8a71118 memstick_alloc_host +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x004d97c0 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a3aac30 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0f0ca275 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1748ab1b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f3049fa mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e99418d mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x354ca495 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4fd2b29c mpt_findImVolumes EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a9676c2 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x572b4423 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f433b1c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5fde4e85 mpt_free_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72bdd0bc mptbase_sas_persist_operation EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74c2c3ba mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a2ff673 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7779fad8 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x77f0d7f6 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7cca884b mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8290bc9f mpt_resume EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99449fdb mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a3ad9b5 mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa96bf00 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaea76cce mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb29f12b9 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb660425f mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc4cae25 mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdef57eb mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8a24a5a mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcad08fda mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcf7d3653 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa5cde631 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa836e7f6 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab0e58fd mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb12dd7f8 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb4a33001 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf44d836 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xccf3be74 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcd32608a mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcdabe781 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5e2e9f4 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6834873 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd889163a mpt_put_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde1cb7fd mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe41693de mpt_raid_phys_disk_pg1 EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9bef66c mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe9d0e825 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xec6d42b5 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3164f43 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf530f333 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5cec6bf mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfdffc61f mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1861887d mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25630233 mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26cf10fd mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32f74f14 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35e7bdd2 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x376d08fc mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39a9ce4c mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x616c2ba5 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6fc4e769 mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a5b64cc mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c8bd56a mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d3bd244 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f6e7bc4 mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x818285ed mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x847bd782 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90e2e1e7 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94e99e68 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa5dd315d mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6aafcb4 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9611a61 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacdc0f4a mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd33d12a7 mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd9572af2 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe02dde7c mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf3a17f20 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfdb0e27b mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xffe3f64a mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/mfd/axp20x 0x28ff22e7 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xaf21a47a axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0xdfa733b0 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/dln2 0x65556b14 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x8184e58f dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0xb4523783 dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x98927457 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xaaa53ac7 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x09da32d5 mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0c19ac27 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0db31812 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x33a70c10 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3d974056 mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x49ae64dc mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x50b26987 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6d2e0487 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x95764e6d mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa2d7c76d mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xff08bc01 mc13xxx_reg_write +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06de2559 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x07a1aba8 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1537fc87 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x22b36629 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3019c2df mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e01dc9b mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3fa34739 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x467f316e mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54cf3c3b mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x68dee12c mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7270a09d mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x77be9f90 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7860c6d7 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f01afea mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88ce809c mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x91438fca mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9fd5b669 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7457eb8 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3746d6a mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbe3a2bb9 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcab54991 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xda08a494 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde54aa16 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe95accca mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf42a5e7a mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf9e52808 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xffc60ed2 mptscsih_host_reset +EXPORT_SYMBOL drivers/mfd/axp20x 0x0ed5ec17 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x9293ac32 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xd1202223 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x154b2dcb dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x4ff57457 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xf5c9b8df dln2_transfer +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a92d31c mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0c74e521 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x158fa27b mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x56b8bc2e mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5b1507a5 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x651aa79c mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x707ac389 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8a87da2a mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x99f61c44 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9ad103ab mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xaf86797a 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 @@ -2497,212 +2421,215 @@ 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 0x4f090839 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0x5f598493 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x6d633f0a wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xcc0e8c88 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xd1280262 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xf2013d27 wm1811_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x550831fe ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xda86af0a ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x10835293 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x48c1f6c9 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x5bf1e6e6 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7afb4d50 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xbee79c88 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xd7a3f4e4 wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x446763d6 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf890995e ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x88c5d783 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/c2port/core 0xab79b83a c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x8a54252c c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xb60d00dd c2port_device_unregister EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x0c33829a __traceiter_mei_reg_write EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x289b8751 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x302a1518 __tracepoint_mei_reg_write EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x3b7c0dae __traceiter_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x41f1652c __SCK__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x8034a96e __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xbd3c2a0d __SCK__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xde40033a __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xf509d598 __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xf8586ef7 __SCK__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xf92fbc0a __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x3bec0e83 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x4b771b2f __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x4f79a2c9 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x767ce46c __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xc4f67c73 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xd7c99749 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xe5045160 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x00398f3f tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x05b73071 tifm_add_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x1e605801 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x278e65e1 tifm_remove_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x32e731dc tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x35550338 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x3a3739d0 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x43736ff2 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x6402b423 tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6c8581d6 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x827d3265 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x86a03d08 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xe5a962d2 tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xfd9bdc45 tifm_alloc_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x229369a6 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x499f9d66 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6e347050 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x79d38a54 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x960bb717 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x4acdc894 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf1966a0b mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5a06bb6d cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x67819dbe cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x81fc97a8 cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd8bab787 cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdfe5d966 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe2323841 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe93bfff0 cfi_merge_status +EXPORT_SYMBOL drivers/misc/tifm_core 0x154f916f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x45d6d2de tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4bb9be3b tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x5f43c34e tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x66111ba8 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x96f2328d tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9770b00c tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xdc507e33 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe0486cc0 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf7ff40f5 tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x04314082 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x3ff2c0c0 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4e0600f1 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7db6615f cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe16aeadc cqhci_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x6227a2c1 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x71840826 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1ad21227 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x35b21d29 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x59540f07 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8c32ccc4 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xafee9c3b cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb4b1e085 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbbe87e22 cfi_varsize_frob EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1dc25020 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x60914144 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x84d9b442 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf0620c12 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x5aa957fd mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x39b40af5 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf97acf7e simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0xd95538a9 mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xf932c4fd mtd_concat_create -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1572dbb3 nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x195ae125 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1bf8c02e nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1f828f78 nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2dba66fc nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2feee1cb nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x33298d0a nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x418ad2cc nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x42b89eb9 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5665f974 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5a1c4e7e nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x603e2bcb nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7adc5fb5 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x84a07611 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8557e59f nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa380f467 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb33c097f nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc0b3e3fb nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd3feba21 nand_ecc_register_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe4b2f3de nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x230b8a8f unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x65a3de9c map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb0319ea2 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xcf03c5a2 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xa90937b6 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x852bdf52 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x8659b237 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x41229758 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xf06f60c9 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0126257e nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0c5f8873 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x342343a1 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3c238c21 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4b8fb1d4 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x51006f25 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x611e4288 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x61980fba nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x677b2a9c nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7be7bce9 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82eafa94 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x869f8b86 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x86dbdcac nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9e7abf29 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaea4b25f nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc3e78e47 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc806a336 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcaaac13e nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd0c48fc1 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd3e01e57 nand_ecc_unregister_on_host_hw_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe825da7d nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xed56b14b nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe83e6541 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xef73b729 nand_ecc_sw_hamming_correct EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x5d488a5a onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xd41c53a9 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb4a969ea flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xc16ed0e5 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x114f0c01 denali_remove EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xceeb5927 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xe937a6a3 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x031a21a5 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x09c01cc8 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x316f51d7 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x38be6659 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3c1d07b9 nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5726e800 rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x578f57d9 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5dccee0d nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x781d470c rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x823e4bc9 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x82af0afa nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xbe747207 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x117e57be nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3053092a rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x34afd548 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4b20910d rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x582c66a6 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x60b2ca2a rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8846b024 nand_monolithic_read_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa53511ba nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa9683803 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcacc5d96 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe311b6a1 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe3dd6e2d rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xffdc8dbe nand_create_bbt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0ed35ab1 arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2ce6fbd1 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3be9b999 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4170a3bf arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x543baa78 arcnet_timeout +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb419103d rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb5e58306 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb601cbf0 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbc38f43b nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcaba16d2 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd5ddd413 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd9299ab7 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe975e8b8 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf711482b nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfea214e2 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x09f04699 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4ce3af50 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5015fc44 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x581c5720 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5f755b1f alloc_arcdev EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7518650a arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8db1758e arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x928a89d5 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9886b947 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd9f3427f free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6c727e2b arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x79855593 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7b74de8c arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7f4ff2b0 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x99ab6026 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdfbe1c94 free_arcdev EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xedf08551 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1ec03915 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x65a0f99f com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb26aa67c com20020_found -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7d28e757 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xa7a1028e ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf77e7d17 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xf3b62cd4 can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xfe8f006b can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0411f5c5 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x05f09d7d b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x08c72f90 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c97cf1b b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0cf6e87a b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d352ced b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x11fb6147 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x144f5f69 b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d3629ad b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a3b45e7 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2c8b700b b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ff0250a b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3bee381e b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d8c3297 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x43610418 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x49a39e8a b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53418fa8 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x55f418e3 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x570d80f6 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f1fdd73 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7007b2f9 b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7e4d7d94 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ea53d5d b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8dd7edee b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9768f249 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d963e5e b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa850b6b7 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf1710f1 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb66f44f7 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbd26719a b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca4cafe4 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce0eb1fd b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe5353d1a b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeeb6d6a4 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4df2ed0 b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7c7dca2 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf96e50b6 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfd23c5ac b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x43d23d60 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x454159f2 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xef2562f4 b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfc1e0b76 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0fdb6285 lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5f174e3b lan9303_remove +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x457365c0 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6724eb3c com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf2744c94 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x18a91f45 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x47ed557e ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xbc6fed6e ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x5af2095e can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xd765bcc2 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0236e5c0 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0715201b b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0bfdab1b b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x121f0b25 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x127061af b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x28acc6be b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d134260 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2da4d502 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37ea1481 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3e27e0f1 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4078a2ad b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x40e954ec b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47a457bf b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47e665ec b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x52be9272 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cac39a8 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6f545e86 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x70dce2c2 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7cbaa221 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d0f8bbb b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7de35a53 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80938a8c b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8726a286 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9756dc69 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a084595 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e8aa8d1 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa0a97d6a b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa163612c b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9e0a4be b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xadf27142 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb05d7f35 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb9ab8ab3 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbc61c832 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc1449d21 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd283e9a2 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd74febb2 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe7ea4efe b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf6f9e106 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6b870f04 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x9631a7cf b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa61b6866 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc813986a b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x86ac764b lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xa933d21c lan9303_probe EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xcedbfa17 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x57bdef5c ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x7321c869 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x75ea256a ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x4f3cb34b vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xd7f2b9aa lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x95caacb9 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x96911756 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xb59569a7 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8a0b7e11 vsc73xx_probe EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xb0882f6f vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xd8d2c06f vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x31f75d80 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6903a936 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9d2895d4 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xd9aa8ba8 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x615fba53 xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x96914087 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xa8fef5cf xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xaba9814b xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xcf05f04a xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc2c2814b xrs700x_switch_register EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x134407cf ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x184ac23a NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4f6666bc __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5ca941c2 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x62cb686a ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x784a4257 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x81f81b2d ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x892cd38c ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8c27a36a ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf3efe2e8 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x191be256 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4104e5a7 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x644e7c1e ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8e94a5e5 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x912043c7 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9561a5ae ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9f4ae378 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb7276d73 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb7325b81 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd0e108fd ei_start_xmit EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x79a55a74 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x74f8d650 bnxt_unregister_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x7d7d8713 bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x946c9088 bnxt_register_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xed5cd7c0 bnxt_register_async_events +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x4cc1c885 cnic_register_driver EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xfc880ba8 cnic_register_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x3fa64b77 cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xfa2e68cf cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x4ba9ecc6 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xa2be3169 cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count @@ -2720,320 +2647,328 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a6cf41c cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1e6cf36c cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ec059b1 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5eda2a34 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65b95fb3 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9285907e t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94a40b34 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x94ecb655 cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b589059 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa48082c4 cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc0f65345 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcbf8bea6 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcefab579 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd946ce64 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd9b65ec5 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe660410b t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x02018eca cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x035093df cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06049327 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06e409b3 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c9c635e cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ccfff65 cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e8f0f74 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0f85b2ba cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x105b3a8a cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x125ab318 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x214a9ae6 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x265ca874 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x299fda9c cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4837b87c cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4df014da cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ab460ca cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6cadbf8e t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa85f4b6a cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb1926ac9 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbfac63cd t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc8e200f7 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdf26d404 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeb38aab1 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x085bfdea cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e0c53f3 cxgb4_alloc_atid EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10144fe2 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11c5a73d cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13b55d91 cxgb4_dbfifo_count -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1e9536dd cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2da59240 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f09fcee cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f3fda0e cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39548676 cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39b0c074 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b485031 cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e12c2e1 cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e4f24c3 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x407a99b8 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x409c440f cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x464dcb3c cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b04572f t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c027a67 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4e64d00a cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11d3762b cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2438caf4 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29a10e51 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fa67a19 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2fe6e219 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33fb1711 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x348bad97 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ef7e506 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50191db4 cxgb4_port_chan EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a546c2f cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6328f68f cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6d412b45 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x737e2371 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x785e5e54 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cdfba73 cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x844aa28c cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90eded71 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0dabd0f cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1720d9e cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa66fdff2 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56b1bcef cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d17d803 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f2f68cb cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64618e0a cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x657431cf cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x680fa616 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a2235d7 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6adbd6f6 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71e7189f cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77b85c0c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78bca28a cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x802be00f cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x814c0b49 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x876e9be1 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89c9470e cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90578636 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91b3e7c1 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x987e6c56 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x995b8a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa47e4b3d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa52f22e5 cxgb4_l2t_alloc_switching EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf71bd04 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc48b3f09 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc93544ac cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaff38884 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc39a9011 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5c73ae9 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc98cf8f3 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5b42746 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd5d2d386 cxgb4_update_root_dev_clip EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdd45981a cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe15e1c80 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe794050d cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8f6d9d6 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf812a24d cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb7171ae cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdddcf41 cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x024a44d4 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdfe64e06 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe21cbc37 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe53802a7 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7a0e745 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7dff6f1 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf0f553e2 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2c8f849 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf618889c cxgb4_reclaim_completed_tx EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1c773f6c cxgbi_ppm_init EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7a2ccca0 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8b0f79b3 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaf2f8746 cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc66f272b cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe8e4b48c cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x44a60163 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4bdc0911 vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7141544d enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xaa591469 vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe082ed61 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf1da57b1 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3b028438 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6c911a15 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9019bce6 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x90fbef21 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9acd7339 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb155a71e cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc9118396 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x515ff154 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x52d22679 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x60634849 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x92b344d6 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb7b88ec7 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc7f1b10f enic_api_devcmd_proxy_by_index EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5db34660 be_roce_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbb9f2c4c be_roce_register_driver -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5c08642b fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5d4077de fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x85dd6a29 fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xcb419e3e fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd1183631 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xd5cec0a1 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x65a7baf2 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x915377a1 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x2b5f2494 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x4bdf0221 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xa5de6180 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xd1f99996 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x16c71ac3 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x709fd272 iavf_unregister_client EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x3d8a8f7d prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb11edbb6 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c848890 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d7e591d mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10303c04 mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x180ac6f6 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f8ee987 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c853218 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ee2f648 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33e1a682 mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3890010f mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39388bc6 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x459f3c9a mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e369433 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x566526f9 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ae7c06d mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60cd1f8e mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62a2b528 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6759e251 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c21bc40 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6de21216 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x718a9a11 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72062dec mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dd38535 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x5835b921 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xcf396f34 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0244abef mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03e82c66 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09c4e180 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dd76fa6 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14308102 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x156629e0 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d43b299 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e61c156 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c02bfc mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22b70138 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab993f0 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ddaedb1 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ffaaa70 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39450294 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ca02be2 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x423bd6fb mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x469a1503 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49995f1f mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ad4d6f3 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f2a35b4 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54f939d4 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6811ad47 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e32aeaf mlx4_test_interrupt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84f135bc mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96ba85e5 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x975f7327 mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9911d4b4 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x993b3bf0 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9983fcaf mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8b9c212 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9bf0d8d mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab6bec9a mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacd8f580 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb705f38d mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbb633d8 mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc27c3c83 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbc6dd49 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4e71ae2 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8d6142 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddca5722 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfdabb9b mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef767412 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef94dc9d mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4890f2c mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf698060a set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02120e4c mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x079bb6d5 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08f05348 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b61db4f mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x115d6232 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x133eb4bc __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1679f8f9 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x173e5e9f mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17e98ec1 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x198ff777 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aae5b36 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82737c02 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87cf5f03 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x894fc7a1 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c13b90c mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93aa0189 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9922b17f mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a41d333 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d9cb552 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f2b725b mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1611eba mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf33baf2 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf6e0809 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1017f10 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1e9d12a mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd20aed0c mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9fe9246 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd15656d mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeca6268 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0cb8127 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2ff4b44 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6c96edf mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c5cbe7 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01dcc7e5 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x056fdeaf __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d49a6a mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06ca42c9 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07aeff68 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07b52ffa mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089f1089 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09c25c28 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a9b9944 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b5b1819 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d8fc3bd __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dc04cc4 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f5a8a8b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10750e57 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x107e2e24 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x121fa7ab mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12a93b25 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13518c58 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13ac40e1 mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x173dc893 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a06e5c8 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aee9ab1 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7c6a34 mlx5_fpga_mem_read EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d5e41a8 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213d10fb __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2143d9b4 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce1fb0f mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d16865c __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fc1b6f9 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x200269a7 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20ca221f __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22918e05 mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x244cea06 mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e9d119 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28be9560 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c5efb81 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e949180 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec3b27a __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x31a0118e __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32c5f17d mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32e60800 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3476f3a8 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37bfc676 mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b11932b mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dadd159 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed0861c mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f9c90e7 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x411390f5 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4563f98e __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45788546 mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46813d0d mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x471c9fb3 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x473c89e0 mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4851d154 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x486618d3 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x490d4da2 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5d761f mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e2f56f4 mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f2cf3e8 __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f7c8997 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50bccd0b mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50cb72a6 mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5152314e mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517195fe mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53078a78 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53331755 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55515fbb mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56e536f4 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5801f6fb mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58183433 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28900af0 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29034d7a mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ae3d43f mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc044ea mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d776ad5 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32d42b40 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33530990 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x348f60be mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x357dfe9d mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ac79e5a mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b77fea3 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c352c73 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c6c9e3d mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fca40b1 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x414292f4 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x416392af mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4494085a mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bdd620c mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf5e48b mlx5_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517fe15c mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x529e2b52 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52db3ee7 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5305a730 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5306f247 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x549b6cb8 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58d3607c mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a8044f4 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ed85c89 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6d0ce8 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe0e31d mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c997643 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d552c89 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e9f167f mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eee65d6 mlx5_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ef9d820 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f031329 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f84a0e7 mlx5_put_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x617296ef mlx5_fpga_sbu_conn_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6409c3c3 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66ca879e __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67a68e40 mlx5_eswitch_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d1f52e __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7491117b mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x750bd15a mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76a9fa10 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ffa8d3 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77651253 mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77c13dd7 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x789c3e8f mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79b3ea5e mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a13af89 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b2bfe1d mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80b56791 mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81f15d6e mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82c79d6e mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d01f41 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84721a38 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8495ca61 __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87d705b9 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64809f3d __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x656a20de mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66185e7c __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66ec524c mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x689de7f3 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ad29585 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b63b480 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b691d38 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cdc357b mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fa9a065 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x724b1385 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a32218 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72f455ef mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7348b873 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73652556 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7836bcb0 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a4004ba mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b244138 mlx5_msix_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c24ab7b mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cf9c7ce __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dbb0dbe mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e95d5cc __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7edb4a8e mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8080ca26 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81d2cfda mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83fd5d0c __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8462ceb4 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86edd56f mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e68171 mlx5_del_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d9ae027 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x909a4f22 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e5eccc mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929581a5 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93eceb31 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x943ec8ee mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94c8c95b mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94e1fd7d mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96078217 mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96d99b87 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a1f3ade mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a4fa390 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8aef1cd2 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f66b30b mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8faebde7 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ce61ac mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x923331ee mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92a1c607 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d53775 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x944777b3 mlx5_eq_destroy_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97b8fe0e mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97ec6f05 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9810da64 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b92515e mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c82e80d mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d36ddd0 __SCT__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dd38886 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f453102 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa054a421 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa10ff3dd mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa318ab6a mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa64e4f79 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa662901b __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e9e07d3 mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2c21eb2 mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa35e7147 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4cb6303 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa629f55a mlx5_core_create_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9a2d508 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9bcda49 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaae4689a mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88e7aa5 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9ccaab6 mlx5_core_destroy_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac86cf93 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac6d5404 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac7b696c __SCK__tp_func_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad1b2995 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf1ad071 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafe351cd mlx5_eq_get_eqe EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0e7cd70 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb20281d8 mlx5_debugfs_get_dev_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3827973 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb402319f __tracepoint_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb654aa88 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8c6a83f __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9a50886 mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba2a037f __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb56eb691 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7aa85e1 mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9319adb __SCK__tp_func_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdad87ea mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe5d3345 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc311976e mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3d76d9a mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4ce946b mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc666c8f0 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6c79aea mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7b17a3c mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc978b2e2 mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc987225c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc24caea mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0cbd385 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc17d62ba mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86defbe mlx5_core_modify_cq_moderation EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcafc32bc __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb47de7a __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xced58f20 __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf758c69 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf8e391c mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc4130d0 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd9428fe __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce3584fa mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd764311b mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8e737f0 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda4d2c73 mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda7519d8 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ca55ca __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b80780 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4cf0182 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5ed700d __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7d66129 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd834972f mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9c3fae9 mlx5_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb622108 __SCT__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbc542ed __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd072c76 mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddc0dc24 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5dc62b mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf08a20a mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf47f4bd mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfbc08aa __SCT__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe26ac7e8 mlx5_debugfs_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe390a237 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe40bfeb2 mlx5_core_modify_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe638442b __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6663acd mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9876a6b mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec1f07ff mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecefaf75 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf2862b mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0b1f238 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1358163 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf56c442e mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6dd6c20 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf92c02cc mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdc95468 mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe576916 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff540237 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe908c64d mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9c9fb76 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed0d9cc3 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeeca47ad mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb4f684 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0d675ba mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf10431d0 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf159a0d1 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1bdb987 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1ee95b4 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf26d2512 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf61e5102 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfed828fc mlx5_eswitch_add_send_to_vport_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x065ec851 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0c36d6e4 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy @@ -3041,21 +2976,25 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16673aec mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x180356ab mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x191c2287 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1e6dabb6 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b8eab94 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x264e1f54 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x299e2562 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x32de0205 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x36132fac mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39574818 mlxsw_core_port_netdev_link -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3c59c991 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x392f0e8c mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4229a5de mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x44f01b96 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec @@ -3065,57 +3004,54 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x54dda2f3 mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5dd4aef4 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6919e794 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7711ca1b mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x785f0b53 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x78c47928 mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x798b3e19 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7d4bc209 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7de4c903 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x869812ce mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x886e30e1 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9f692abd mlxsw_core_trap_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9fb08aeb mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa400a0f2 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb196e9ed mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbbc6a213 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbcb5bb18 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbf4cdd18 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc4559961 mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1bab622 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd65329b6 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip @@ -3123,1852 +3059,1885 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc5c95df mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeab0691 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf0455165 mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf6e7b209 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf0dd953e mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfbdc3e42 mlxsw_core_skb_transmit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfd08f5f7 mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0962eb mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5c739557 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa4ce516b mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8e50f350 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xeef2d7d9 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x020dcd8a ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02d6affd ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0498da28 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0aaff05b ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11e913be ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1276939c ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x13f1dec9 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x148f745f ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x154ae0ca ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f6d15f4 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x203f2f23 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2470a6ab ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2616738c ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b410cd4 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cb2ca78 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x481fca80 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xcaa36ae8 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x447b9c81 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x67a01aa9 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06d50bd9 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07906ce9 ocelot_pll5_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08791cd6 ocelot_wm_enc +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e9f4d49 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x104058a6 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14455bd6 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16a3d2bb ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bf87836 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1dc98a8a ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e6c5921 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20aa39ba ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20d9c05f ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22a5d031 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23af2332 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28e0d983 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c1069bb ocelot_sb_occ_max_clear EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f24b78d ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39303732 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x432fcba9 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x467e316c ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cc04443 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e168e7f ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e76bb10 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4efe96a2 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54bfc86e ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54d00bac ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x584da0ab ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a2f68ef ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5bc591db ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x620a32fe ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x669ab3dd ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6aa2c09b ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c83d2d9 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d8f51af ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ea4f29a ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74200186 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79e75b16 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a2228de ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a3ee519 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bc559a7 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bde39fc ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d0fda07 ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x82012700 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8583fe55 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x870ebedd ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c4e30d2 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cb8efcf ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9057ce58 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9211bf82 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92525072 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa025ef9f ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5883d36 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8920f42 ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae2d1620 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1f6f76e ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbafc1702 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1284d06 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5b0a425 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc69e32dd ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc92e15a3 ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbe1ac03 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf870593 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fbffa46 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x305af77e ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34f31b81 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3838a6fc ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42c5a2fe ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x448318de ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4595ed0f ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45fe507a ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49107d5b ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d94c8c0 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4dc052f7 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e75a30d ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50d51baa ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55e64e0d ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d71a0f4 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60ea0154 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce19e2a vsc7514_vcap_props +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74a20a83 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75cabddd ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7784479d ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x781342bd ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79b072cf ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7dbb7758 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5aec55 vsc7514_regfields +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f8cafd7 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8192dabb ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87541603 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8edbe1e5 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f76e7ac ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x900eee1e ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91c1254b ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e750478 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa070dda7 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7d88833 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8aa2b8a ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa0e8af3 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaba495f7 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb02ec0b9 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0fdd7fd ocelot_wm_dec +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb265502c ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2f078cb ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3a103cb ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb66887ae ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb902229f ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb90c5a78 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbde5ddc9 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc35b2d11 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8a8c557 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc820fc1 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0344032 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd044a08e ocelot_drain_cpu_queue EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd31ab8a8 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe036584b ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2059115 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3ee1b71 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe65e63c0 ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe67ee6ad ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xef9d506d ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7169fc4 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa6d40ef ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbecc7d1 ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc204d98 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc29c673 ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc7c9599 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x0ab2e1e0 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1ae7e750 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x305d5f07 qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x447db31c qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd43daa5a ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8fb5394 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc785cfc ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2a143be ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe30fc619 ocelot_wm_stat +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5f5983a ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe67c3499 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb409ec8 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeeac1d63 ocelot_reset +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf216907b ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2f97208 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf61f9109 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6b8e79c ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6dc84ea ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80fc88d vsc7514_regmap +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4a01dee9 qed_get_iscsi_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x69b486fc qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7e7426da qed_get_rdma_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xb0719e65 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xdf6be766 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0b1f622e wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1267c5eb wx_set_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x16a3e99e wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x16f1b65f wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2097504c wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x38c3e9e3 wx_clear_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3f2f73c0 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4438e9aa wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5b0f3280 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x62ab4d6d wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x763b16a4 wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x94352dde wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xad4fbe23 wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb6c449c3 wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb7d54817 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc17f9023 wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf4e1d9e8 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf7549e94 wx_mng_present -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0ff13d2e hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4248f42c hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5050b06b hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa00996da hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xed007f6e hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe105ab22 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x95762554 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xf1a6ca0d qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x112a53a3 wx_napi_disable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x14edb46f wx_free_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x152dcee7 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x16487db1 wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x208e8c77 wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x21fe785c wx_free_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x25d0e852 wx_init_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2a07cbcb wx_intr_enable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x34b502b0 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x38d803dd wx_clean_all_rx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x40fe2366 wx_disable_rx_queue +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x41bea3b6 wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3398bd wx_msix_clean_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b37959e wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6569c62a wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x761a9504 wx_vlan_rx_kill_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x780d1231 wx_setup_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7ac64fbf wx_start_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x873f47b8 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8c222691 wx_configure +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8dbb0e51 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8e994365 wx_set_features +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x927e587e wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x931ca63c wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x96aad36d wx_get_drvinfo +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9d1ea253 wx_irq_disable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9e0b21c2 wx_change_mtu +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa2590ad5 wx_set_mac +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa6a3d479 wx_xmit_frame +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb0761b77 wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb30bf1bf wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb760e647 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbb64f354 wx_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc6e9a017 wx_reset_interrupt_capability +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc828f99b wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc845bc9a wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcda3ff80 wx_setup_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd3b8d3dc wx_free_irq +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd52c99f9 wx_clear_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd5d1f8d2 wx_set_rx_mode +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe63f03a3 wx_clean_all_tx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe9297484 wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xeaa8e273 wx_misc_isb +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf3768552 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf3a1ab81 wx_flush_sw_mac_table +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf3b76d11 wx_configure_vectors +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf56ca5a0 wx_vlan_rx_add_vid +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2b9fb7f5 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x73e0b1a8 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7c216794 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x91ea5d35 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd38d134b hdlcdrv_arbitrate EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x62eb612a mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0x7e8fabde mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1b2ff839 free_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x60bf874a alloc_mdio_bitbang -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x85f42d14 mdiobb_read -EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xc0e4d99f mdiobb_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd4530fe4 cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd8a76232 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x9844e676 mscc_miim_setup -EXPORT_SYMBOL drivers/net/mii 0x3d329ca7 mii_nway_restart -EXPORT_SYMBOL drivers/net/mii 0x4f433211 mii_ethtool_sset -EXPORT_SYMBOL drivers/net/mii 0x602482ab generic_mii_ioctl -EXPORT_SYMBOL drivers/net/mii 0x6764340f mii_ethtool_set_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0x74964b3c mii_check_media -EXPORT_SYMBOL drivers/net/mii 0x85f4f8de mii_link_ok -EXPORT_SYMBOL drivers/net/mii 0x86eab5cf mii_check_gmii_support -EXPORT_SYMBOL drivers/net/mii 0x91c8df71 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL drivers/net/mii 0xb169c4a6 mii_check_link -EXPORT_SYMBOL drivers/net/mii 0xe0404df3 mii_ethtool_gset -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0cad3e7a lynx_pcs_destroy -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xe05a2613 lynx_get_mdio_device -EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xedcfc1fb lynx_pcs_create -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xb11466ba bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x236276b5 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3cb1af2e pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x5954a9f2 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa5b4716c pppox_unbind_sock +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x0722c23d mdiobb_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x075ebf82 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x1727d3ec mdiobb_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xad141478 mdiobb_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd8a379c1 mdiobb_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xdde99a9e free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x008b3947 cavium_mdiobus_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xb7fca4c2 cavium_mdiobus_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd1edcb8b cavium_mdiobus_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xefd9b2e0 cavium_mdiobus_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x28d71b7d mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x1400a9ad mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x394462e5 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x904f7f91 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x95900a64 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x9e3e9a00 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0xd7cf0010 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xd91dc7cc generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xec2ddbfb mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xf7da37f4 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xfde82b9f mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x4e02aa27 lynx_pcs_create_mdiodev +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x6d933508 lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0x5fd7d19a mtk_pcs_lynxi_create +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe9221a05 mtk_pcs_lynxi_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xbd8a7a26 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x104572df pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4f0975bd pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x620c9a40 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6866e2b1 pppox_ioctl EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xb45ce6a7 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x13d5c32b team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x52b0f501 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x78371ecc team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0x885c5316 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x8d120093 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x95230f72 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0xd0cb5cdd team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0xf64bc0db team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x16bdaf25 usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x378d0631 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x6a3540a8 usbnet_manage_power -EXPORT_SYMBOL drivers/net/wan/hdlc 0x205b3317 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4919ea7c alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x615ba830 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0x629cce9c hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b1e60cb detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x6c0d9fbb register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x7ab885ee hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0xac79a0b0 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc2f3aac3 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xf8f5be86 unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x04234f1b ath_key_delete +EXPORT_SYMBOL drivers/net/sungem_phy 0x590aae34 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2c569d65 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x3ed756ca team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x512f12d0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x54d1144f team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x589e674d team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x6f4dcf10 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x795926bd team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xfffcf0eb team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3db42a8f usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x4f866481 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x66f3e337 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x04359fc8 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0941d3e8 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0d7cd98a hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0eff71d0 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x24d794ff register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4297fb46 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x44bb7447 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa82a80a7 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdb7bc805 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xed6b9621 hdlc_ioctl EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b66f3ed ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0f187701 ath_hw_setbssidmask EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x14f5bc5b ath_hw_keysetmac -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37fc6d89 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x11ba45c2 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x288a5984 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2fa8d103 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37c41e29 ath_rxbuf_alloc EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4a7c67eb ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x61bb8aae ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b3506c6 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7ef5494f ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8cf5c7c9 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa00f339e ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x53286a8c ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x57df61e9 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60d44091 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x679cead6 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x77811832 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8138022c ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x858554ec ath_hw_get_listen_time EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc0013f92 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1785119 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbf046c4d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe100784c ath_hw_setbssidmask EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02785493 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x052aa1c7 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0682ae0d ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08915d3a ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x097eabbe ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d7ede06 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0edd95d8 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10b61d52 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x12e7d583 ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15d46220 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x179c41ac ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18339feb ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1bd52cf8 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d12b9a1 ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25240aa8 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27fd1fde ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x30158730 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35aff790 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38e72c2a ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41ad0dfe ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x431d0546 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x446f37ea ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45360fa4 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c3b0c64 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x567677eb ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a08dce5 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x61ab7dcc ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66259520 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70bcda6c ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x739bf40f ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x740e644d ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75869884 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78391dff ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d4a44a9 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80dc517f __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x827bfcac ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88fb2071 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8abd8c01 ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9489d24b ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x988013c1 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4edf3ed ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9771e47 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf2fab30 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb87240a3 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc290a1b5 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc368957c ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc797d558 ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca98d43e ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfccedff ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6ba5796 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc072a6d ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe15f083a ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe61c3dac ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe65c1f85 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe898ff8a ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee476ba2 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2f1303c ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x096e9f81 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x115c0dd2 ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x148b58fc ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f879d01 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20bfec05 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x21420c5a ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x229f75ed ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x23229411 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25981ccf ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x289231b5 ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2989f246 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2a36361c ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2c9a8da7 ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3556266f ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x38ea0a5d ath11k_pci_enable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x400f19a6 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x401d764e ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x47a21af8 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5747b498 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5895e7fb ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c491d85 ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5e8e7a26 ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f249721 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6794a386 ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x72a09a9d ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7e3c3761 ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8fe1ea7a ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9523d329 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9754c008 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x03463e4e ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08820afb ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ad4f106 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d0df250 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e4874f3 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11574005 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16876901 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x189fbc39 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b2d7cae ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b91c369 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d7fa7a6 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e39031a ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22b82153 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24c507d9 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bbbeae5 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d1cc7d5 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f258fed ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x336f0eec ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3747520e ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3e880a6e ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47e31754 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x486d9291 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d3387fe ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51eb9b8c ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c5dfab1 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f0e8d49 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x646ff45c ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76a51542 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77734f8b ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b21dd10 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ba64808 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7deaeddd ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x818908a7 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x867f44f4 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8750f515 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x941691a3 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa31ab533 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa616167a ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa71c61e4 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa783772a ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xadb96e25 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb344f532 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7574b7a ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbadcdeb9 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd82c3fd ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe4fc1c6 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc1706c5c ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc5436313 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce6eb5d7 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6814d4d ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda79c52c ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe327f21a ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeaf7ae5a ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeee7e8ab ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfac8d25d __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc471aac __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xff9ee406 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x060382c5 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0c240a84 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0e726cc0 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0ee3c35f ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1c0d889b ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x225b9f8d ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x243f56b8 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2458bd98 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2471e967 ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x28d06f29 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3873358e ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x412082e3 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x422d05da ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42962060 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x460b3a26 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x462855dc ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x523ff1f2 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b7960d1 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5ca33f80 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5d7cce53 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x617fd693 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x619dda33 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x653a5897 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x680dd0be ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8a150c17 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95157be1 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x98bfeddd ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9a179c78 ath11k_ce_per_engine_service EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa512f77a ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xadefcd7b ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb540ab8c ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc919b0c ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd45d09e1 ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4881a38 ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd8d74f60 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdcb39652 ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe0a54a1e ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe19410f2 ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe19548dc __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xefbc4656 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa15307a3 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa33e6dd1 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaadf19c4 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb8dfaded ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbb407932 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc3f3ec54 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc9b1417 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe80dde1d ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeef3918c ath11k_core_resume EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf7a5ed0e ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x085e9711 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x10f40b91 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0839c3e ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf1aea08a ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf39106f5 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf73bd7b8 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf7cf4dc4 __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ddd0cb7 ath6kl_hif_intr_bh_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ec4bfa3 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5095a8ae ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x56e59a94 ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6e88a458 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8db341d0 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3fa0950e ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x461b5a53 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x48249c3e ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x84442904 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8c86f01f 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 0xb26d6b58 ath6kl_cfg80211_suspend EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd49f2f72 ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd741c9d3 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5c0826d ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02eb30d9 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2ece9894 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x395f5141 ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b43308a ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x57a6ab4a ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x625e4514 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x843bfaf8 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85bbc710 ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x98d7b978 ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa467bd78 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7029945 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa878313b ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb03e1b75 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb9a1e164 ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba841414 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe23c8ba ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcdc2b130 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcf474a64 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf09f7217 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf4172362 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf5ab5898 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01443157 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x023dda3a ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x044e6fcb ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05a68476 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1133d23d ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a0aa030 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1fa308c1 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30ec7b89 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x344c51c9 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53e05589 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x556e9d18 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6be32b26 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x71eb745f ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7588f279 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a70b78c ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x87100f2c ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89f93c23 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x910ebcaf ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa1b3296b ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa9a14083 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab02e86c ath9k_cmn_spectral_deinit_debug EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd5b1ee26 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe8ee38d1 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xed40c32f ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf11001a7 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7f10038 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfbb7d500 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfc449324 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0075116a ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02c80ae7 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x077943f4 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a3c4243 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c228140 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cc15cf7 ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f074c73 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf05c8123 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfa5dc05f ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfaf25280 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x056bd151 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0595768f ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05e74514 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x060c3bf4 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06bbeeb1 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x089c5137 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c5b76ae ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c636043 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0de5a9e8 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ed9180a ath9k_hw_setmcastfilter EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12a6a92c ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x190ee666 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19e0aa54 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fd034dc ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21e73b7b ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x230103a1 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23217e93 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23e31605 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d16107 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x280287d3 ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x283fc603 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29a715cf ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d23e145 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2df1ba37 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e219cc8 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30441960 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35f081e8 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3643943e ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ea86ba ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39f56f0b ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3be43def ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bfb4add ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40c651b8 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43b8d6d2 ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47a96da3 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48578c02 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49d84874 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a0d9137 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b4f4f17 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ede9d0f ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f7831ce ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f8858b0 ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x502fb8ba ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50cb7052 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51547da4 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51e8e3f3 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57a47b5d ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ef40f78 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x602a9c7a ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62aeeeea ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x650f6713 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66194154 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66b1c515 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ac31402 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bf1220c ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72fdc238 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x758ccdb2 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7611771a ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77ce3dfa ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78e7787b ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79715c6d ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a7934bc ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b834761 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c6e81f8 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x823535c9 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x827cef18 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x865a1a81 ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87ad1670 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88e884ce ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cd4039e ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ffb09c9 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91c7185f ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x960522cc ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x997ce67c ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99fc2eb6 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1517d47 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2ea87d8 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8eb091c ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab8a33ad ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaecabe2b ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4a583e4 ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb56188ab ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9aed29d ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9cc7ef8 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbb491a2 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd037f71 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbded5043 ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe0e2ad8 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe1d8bde ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe9b8ea8 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1172249 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1e16a91 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5c0a972 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb3f542e ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0053162 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd232a2dd ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd67ad506 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd754aa52 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9531909 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdba14652 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdccf5eda ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde3b3791 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40996c1 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe40f8da2 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4d4677e ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7eaf2e8 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1fc082f ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf48b075a ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc485726 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe196172 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x00ff82a8 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xbac26bc6 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xed56c419 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x09fa7f91 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11adb594 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11469145 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x136dfba6 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16b3e42f ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a975e0c ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b4edbc5 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x217f077a ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2281d74f ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22aee2d7 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27661adc ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29ebc754 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fe53c50 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3073b85c ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3141ff79 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x337b50af ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33a2a5e5 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x367193ce ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a0166a9 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4131dfdf ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x427adc68 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43fd9ff5 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x445ce99c ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46bfaf80 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46c86939 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49cc3418 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b76e4eb ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c3c18c9 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c50cf0e ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e9faec1 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51fa7ac0 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52ecb221 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x534e2f3d ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x538cb8af ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x544d3f5f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x583c99e9 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x595030da ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b3682e0 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61a6f4ba ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61dfc87b ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61fb2aad ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62f6aa19 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69e2d9a8 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aa9a475 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e0a7cd8 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f0ed622 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f8f3b6c ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73bcb89c ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77ce4b2c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a443260 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f44f24c ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82683bfe ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85d887f7 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85e4998f ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d4cccc1 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f80850f ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x921835a1 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b148e2f ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bd7f90c ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bf1992f ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ce2c1dd ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0f0501b ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa33300f1 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa440c7df ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa509ffe0 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabc9d2fb ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb26d5a56 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb282239f ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4b5f576 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6e28d9d ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb96552e4 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbaca6b39 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb056967 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc55fc3e ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbea03bf9 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfd4b481 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc08049fb ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0efb198 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5d684e9 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6589e9d ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6c0a12b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce3f36de ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce806bf9 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf8ed408 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd13cc172 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd44801de ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4e021e9 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6586d3c ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd80a9ac6 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcb66d6a ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0651313 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2bd1217 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2dfb334 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5968d61 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebb5aa83 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedf62ecd ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf60cf8ce ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9875241 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe8d5b31 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x2888b3a0 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xb0deb2e3 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xf4431c17 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x02858cb4 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x05e36839 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0927cc39 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0bfb7d20 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1094478a brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1278db8b brcmu_pktq_flush EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x292ce331 brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4579d1ec brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5a6ab0ea brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5bfb7344 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x673f585e brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7acefeec brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8788e6c1 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2c95ddda brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3eccbd32 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4dbe142e brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x52e25007 brcmu_pkt_buf_free_skb EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa6f27499 brcmu_pktq_init -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd0d8fc79 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xad2e2fc0 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbb923d0c brcmu_pktq_pdeq_tail EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe01da812 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf716fcf9 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x3ce87117 init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xa1550a1b reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xf91fed25 stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0a720e22 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1054d864 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x11411ce6 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x23713ac2 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x238053b4 libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4ec8fb81 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4fb2357d libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6a33f1bf alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6efe34f4 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7460fc11 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8c6017bb libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe31c43a libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc2b58621 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc6553f10 libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde20df4b libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde916021 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe2cef903 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe63ef4e4 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec5510bb libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xef64e54c free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0557abea il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0561068d il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e6bee86 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f4608e0 il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f8a77bf il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10c2bdd5 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11b72118 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1988df0f il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1de8a58f il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2496c6b7 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x285cc864 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28b2c7e9 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29a692ad il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29cb15c1 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf492c599 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x09f5abd4 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x0a8e6845 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5a166b0f reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0e46efe9 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x43ac6868 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x47ded841 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5617c43e libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7a40ce59 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7db445a6 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x81f350c2 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8458fbf3 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x87a26f5b libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8ceb5598 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x90046814 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9991b6e1 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa00e937e libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xacca2900 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb0ce4be6 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe69c933e libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe8c48bc7 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xecfa3bb5 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf0233c2c libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6f4bddd libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05e8d7ff il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07e9bef0 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b592b09 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ba366ff il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d4a157a il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e455d72 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12bc6c32 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12bf44c5 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x154d311f il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17c5f179 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x187eaa14 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x195d132a il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19b26873 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b37ef20 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d13b1fc il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dfff733 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x206c3b97 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x273655b8 il_rx_queue_update_write_ptr EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3031e42c il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3230e492 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34bbe205 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c7f731e il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fbb4402 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x409bf304 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x334d320e il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34549ca2 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x370cf3c9 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x393c826f il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a312314 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a86e902 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e631a94 il_restore_stations EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42e63a0c il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x459e4ea5 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47fd0cb0 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4961440a il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49ec4f95 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a18cd8c il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4db28f9a _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dbcb8e9 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x548de4f9 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x586526c4 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c1171cb il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c7b532e il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x611a32ea il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62eafede il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63cb26ba il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x661ca37c il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69621a5a il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69915076 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c913987 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d529826 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ff7a998 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x701076e0 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7280b705 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7351caac il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73b19587 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b10631d il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7bd71a31 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c230696 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e9d2a8f il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f3862d0 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80661a2b il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86e81072 il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8881a762 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89eb5dcb il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89ec90b3 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90f9d9ef il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96e0262b il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x992e4384 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b0ef2c5 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b1939b0 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4540fb8e il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a89b508 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b34aaad il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4b9c380b il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x513bff0a il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52a4cdbf il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x532d85b4 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x557edc2d il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55b7a1d5 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x598400af il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59b8a368 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a141d5a il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69cf0062 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69efcf60 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b16d9a4 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c799c8a il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7032a320 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x74dd04ef il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x778e65c4 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a2f6990 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b65d0e3 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f204664 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8207a2eb il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8685e5d4 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8721a062 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x877e5a27 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88d2d1ed il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89dfd82c il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8db15bab il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f0a8344 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ac3bd11 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c288759 il_init_scan_params EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa21a0458 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2420574 il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2dce613 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa56e34ee il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa59b7106 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8650d3d il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8fa3694 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaba90459 il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1cfdcf2 il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4e14f73 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa299d098 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4e7b48b il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7cdf904 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa823dea7 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8b19b22 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab103faf il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac6b6a5c il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae77f509 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafbae16f il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb01a80fb il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb382eb44 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb4900683 il_wr_prph EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb68feff4 il_send_cmd_sync EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9da882a il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb27b3e4 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb2ad50f il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd178736 il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd47aaf1 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc40781b8 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7585137 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1e88468 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2dc5fe1 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd90bf185 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda7e0edb il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdaa4625f il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc36b541 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdebc3c98 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4c548b6 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe52369ed il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe61c9864 il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe71cbb91 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7a540ff il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed525524 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1c1e303 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1fd0a94 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2abf46a il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf647bd66 il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf6f457fd il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8244817 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb834702b il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb0a1a09 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc12878f3 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4d5ad18 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc535c5e8 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9d8f680 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca159985 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc16316c il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcca75617 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd41d8c4a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6d4fdd9 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6fe544f il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd751b428 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd79b3fd1 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd7f811b il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf32ec8b il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf664be5 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0029c65 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2d4748a il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf3f65b39 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf46103d8 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4c932b1 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5481e35 il_is_ht40_tx_allowed EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9d96bd5 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa513b81 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb9cdfe6 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x12e0599d iwl_trans_pcie_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x32b6ab58 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7c6f5dc il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb190c17 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe598738 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfea826b8 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17135df5 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x260bf27c __SCK__tp_func_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x453b61d2 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6e989f5f __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x8765f03d __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x88fe8b40 __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa53ad762 __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xbb01e695 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x57f55d63 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x632ce03c iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75ef5762 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1878e46 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9e396fb __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xda537cce __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf914e365 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b478f68 hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0fc6c923 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x14fba63c hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x15131b25 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x176a634e hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2bab8012 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2c81972e hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2dfb15f1 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x48525c36 hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x52238b10 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5f36950e hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x707e5223 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe2632b58 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5fc3224 __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfa720f15 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03be18bf hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b5a7908 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c924cd0 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0d26dc8e hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x213218cc hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x25709d68 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4b243618 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e1e0369 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6d62a177 hostap_info_init EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7873a0cf hostap_80211_ops EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9bfe1759 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa0efbad4 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xadb0d3b4 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb400924c hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8752fc04 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8953eff3 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9f286cc0 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa68e9a65 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8145734 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaba45f40 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb39f2a8c hostap_set_word EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbb4c94b6 hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbd074d9d hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc69cf2b8 hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd5c98796 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd6f92f06 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe9f8950f hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xef89acd7 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xef89da65 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbce23840 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd0fa329f hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd3b64f3a hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd40a26d6 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xde690182 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xed00eae0 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf16bc7b8 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf174c4f0 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf6e83ed5 prism2_update_comms_qual EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x08c07b4f orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1b26a1c1 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2f780d3a __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3a7a7a84 orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3bfe2b16 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x421ab491 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x44c3e51d orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x545a275c orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6ef0bf46 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6f17a547 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7732b8f2 free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x91e006bb orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa65b5a91 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x07ad9f10 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x103e2ffb orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x115c67ee orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x409fc5be orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x42b804d6 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x481305ba orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x495900e9 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6f80732b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7a971ef6 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9ccd51a8 orinoco_if_add EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdfd525d2 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xed5b7398 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc61accc4 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcfdaa419 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdf6cf5a4 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf03f2119 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffc0a8e5 __orinoco_ev_info EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xc83a979c mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd6e66624 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01255f2d rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x021a1152 rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04162619 rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04d4f00a rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1452eef0 _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15444585 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18a84547 rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19f79c71 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd58b0dd4 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xc66111aa rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01f10cd7 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x137d9571 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17a063fc rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e1089d6 _rtl92c_phy_rf_serial_read EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d9aa196 rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31d9b086 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32fcb55f rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39c442ac rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x431f1638 _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47e9a376 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d9fbe42 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5eb9734d rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65b654cb rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6feeb6a9 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72e95162 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73f0d2e7 rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74f0b993 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x788925cd rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8012851a rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81bff259 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x855e9daf _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8847610e rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88bc90dd rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d44a6fa _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e955d47 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92a6fa5a rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x946fe8ac rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cbdfd4a rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa49f841d _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab0cf80d rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc676cb8e rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb78d776 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc434712 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1ce2bac _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe61a12d7 rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe76eb929 rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xecbb4eee rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1382d14b rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x266bdd7f rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x638b9196 rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd3b3dd07 rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1c33723a rtl_usb_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x23f6f3df rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x766b1b87 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf11f4943 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0568d65e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x250afb4d rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29d2734c rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x310d2026 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x32221c8b rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x368a596a rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x448bdb64 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47156489 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4904ae35 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c3d3ee0 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58b3dbff rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ae9a945 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6054906f rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71619fe8 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72015f0f _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72ea0c47 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78c5e03a rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8269c14c rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91541c96 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x991e9146 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9986cf6f rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e2827e3 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa034228e rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae36c322 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb47fa3d8 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb7cc94a0 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb81c3bbf rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb844759 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc96fbbb _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4623559 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc808e776 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb19dbad rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf2404bb _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb2e7aaa rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xddc9a7a7 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe160d384 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xefec10f9 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7da1023 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5ed4189a rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7647e675 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9f35a5a2 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbf3113f9 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4692732a rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x89afa0d9 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdda298d6 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe7728ad1 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09951a8a rtl_send_smps_action EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b43ba17 rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0dc85abf rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14839010 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18587414 rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a2858bd rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1178c77c rtl_bb_delay EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fb6d845 rtl_efuse_shadow_map_update EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x404179bb rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x528a34dc rtlwifi_rate_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53dbef40 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3207c3c4 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a3cee2c rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b11a295 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d74ba1d rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f915cff efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4337342c rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x504f9d14 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5077a58c rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5771c8c5 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60e3a7f1 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6569db3b rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e9cd8c9 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70a0ffa9 rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8490cdb9 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57164e4b rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64a10945 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6854d9e6 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7469c5e6 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77269081 rtl_init_rfkill EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f8e1c84 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9126bfd9 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa30ca0eb rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6a7f0b1 rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8381d27 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb878c128 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc71d86bc rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbbffcb9 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1b98641 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd66e395b efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3fba797 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe88c566f efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8ab2d4a rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x925c3d5b rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95a2f4f5 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x985531b9 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x996d8979 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3e73392 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa49da5de rtl_init_sw_leds +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8aa7dd3 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1d5f153 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbe3fe3b rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd069135 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd048efe9 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfd25270 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebd109f9 rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6ba7de3 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x4f0b75d6 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xd2cb025b rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xa4eb0f64 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x4b29645a rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01788df2 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02a9dec6 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08a281d6 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a87a6ea rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0ba7a80e rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18c66951 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19ba119d rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1edea629 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f757169 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21e422fd rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22aea7d8 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x252c3549 rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e2f83f0 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2fd5fb60 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef135dde rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb208751 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe14fa46 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x7f3e6cb4 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xe2fe1b39 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x94de1606 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x7b1c7d38 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03f1502e rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x06719c5b rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1433c562 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1ce80fbc rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc2d072 rtw_tx_ac_to_hwq +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x213c0150 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2163015f rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x227d4420 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24711c38 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c78a774 rtw_coex_write_indirect_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3653f3ce rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3576bb0b rtw_phy_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3a040926 rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3bf53897 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3c638af3 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f7a779d rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42fe5913 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3900826e check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x399e6bba rtw_restore_reg EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4eb4076f rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45f7399b rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b05c58d rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4bfd17bb rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c403412 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4dba00cb rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x509d6ccc rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51519f0a rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51994910 rtw_phy_get_tx_power_index EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5345824c rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57489699 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x574b655f rtw_phy_cfg_agc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dba049d rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74b0b056 rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76c09cf7 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x787a3254 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ba30ee2 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d4c07f2 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x814e977e rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82768439 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x876c7093 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x899551d3 rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90f028ce rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x98bee6af check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x999c101c rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c2912e8 rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa630c8be rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa3f122b rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa45adb6 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xacfdd025 rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf774d52 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb1ff691a rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb66a3538 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb8afd6d8 rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc28719eb rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc9221250 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb20da2f rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0040519 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6a6113b rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda95f31b rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe13ba4b2 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6bd8de4 rtw_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecbdea83 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xed018213 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeda27a7b rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xee6ad14c rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeed1ed8d rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf17009f8 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfce32230 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5a2f9ef6 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5d841c93 rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x82cc0a96 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xab496bc1 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x7647bee8 rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xaebec9bc rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xf4d7ca65 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x83491895 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x18ec54fa rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0622cdba rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0660bfa1 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a6684d0 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0cff38e9 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0d1c8f7d rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x17a20990 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1b7dedfb rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1c5a9134 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d01adef rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x24e49dba rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2547b3bf rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2992aab9 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3099b3ef rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x399cbd8a rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x39f2e54f rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4106917b rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49d12759 rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49e9e3f5 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4ae243c1 rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4b821722 rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x513a3022 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x54460ac3 rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5cc37f0d rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ff06965 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66e1af3c rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f59aba7 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7428112b rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7cce73e9 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x81938a8a rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8371f228 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x85698b8a rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x86db03f4 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x92f90493 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9cf69a45 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9e75ef74 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9fa4b288 rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa447ba2e rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa7912841 rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb1b3164a rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3bd406d rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb63f4074 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba0c82c1 rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbfb6e44f rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc31bd7c0 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc65cd8d3 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc6d053f3 rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcf484ee2 rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd975ae91 rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdb29d08f rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a4221db rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ad72d0e rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5bd9d604 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5df76ce0 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6185f68b __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x682e984b rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b8539cb rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e1abb38 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74163cc1 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ea0dd70 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8273105f rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8bff6390 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ce74c1b rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0efe79e rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa13a5d45 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa65617cd rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa7d4d2e0 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8cb2912 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab358fbb rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb4cab41d rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb13a7f5 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb90a6e2 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc05589d9 rtw_tx_queue_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2d022bf rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc31abc0c rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb161811 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcebca8fa rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf6e7e14 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd07c5dfe rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd78ac93a rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd507fea rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe16fa3a4 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe33705d2 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4d48e2d rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe84009e7 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xef2fc12d rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf22154ec rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf4d09291 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa6056f4 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfcf1a868 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x50a94d77 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x60312e91 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7c765a83 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb31f51b4 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x0cec8397 rtw_sdio_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x77892f76 rtw_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x8b43c5c3 rtw_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xa06d105a rtw_sdio_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x156ade3c rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x3504e3e7 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0x1d499420 rtw8851b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xd71d2a1e rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0xa083f8ee rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x3b26b481 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04adef83 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06e77eda rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b8b63f6 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b98f01c rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e2cce86 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e73b077 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1554c71c rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1af62e4d rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1b650fad rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1bd63efe rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e6a8a0a rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x22dccdf5 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x26def549 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2caa3e53 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x315a774f rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34b74412 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x358c69b2 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x39557f92 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ea1ddd3 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3fda6eaf rtw89_encode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x607d44fd rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e4b1f34 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e827f98 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f84dc44 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7ecf9f3c rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x80daa758 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x87a2ed65 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8d47a6d3 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x914d9d72 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x932fece2 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x93a3194f rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac85705 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b526320 rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9f171c2c rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xab26cc20 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb0220d53 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb780d8d8 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb8c41606 rtw89_decode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb8589b1 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd13a3de rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbd357342 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe33ac4a rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0d5b653 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc4a2b6ce rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc5ec3d2a rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8799e0d rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95c3c8f rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcdd474b9 rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd45d16fd rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd66b68f6 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd6884121 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd8dc2f7e rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd9d910b6 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc9c3052 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe35dbcd6 rtw89_mac_cfg_ppdu_status EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe46bfdba rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe5aac348 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe618ebc2 rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe8f36160 rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xead64ef6 rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef6f981a rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9ca42c7 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa5485d5 rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb7948ac rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd56ce0f rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x235d2ff4 rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2cf7dd12 rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2f240a8c rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x557bf5d7 rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x60d856b4 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe48b663d rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe4bca010 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeadbe9cc rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf4dfb8b2 rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9684e6e rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf98c0b29 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb6eb1ac rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xffeff883 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x02cd97c4 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0b7e63b2 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0f2ed401 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x12c82b5c rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x255dc9aa rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x310363b3 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x315018c6 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x65c134ed rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6614872a rtw89_pci_enable_intr_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x91cf562e rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x91ec77c0 rtw89_pci_ltr_set_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa9ebad40 rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb08efcdc rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbb264630 rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdb783438 rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdfc338bd rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe3649205 rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xeafc87f3 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xad336aea rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc2622fb9 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe1ed6a0c rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf262196c rtw89_pci_disable_intr_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf7f5a879 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf941c2e6 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfc6a85a2 rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x01bbbf22 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1a476866 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4b782f1d wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb9411391 wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xd1e44c1e wlcore_tx_complete -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3730a145 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x69ba5e61 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x828b0e4e microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0xd09ecb39 microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x19aee153 nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5e4a2ec5 nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe36dc73c nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x57c243b6 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4f6dd062 pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x9f8b36ff pn544_hci_probe +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xde2cc468 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5f9f67c7 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa1c9ee42 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb2ccf86a wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xed47854e wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x74476317 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xcee8aef8 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x20d60eda microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xb1cba884 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7c12a0fe nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc3186981 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe8519a48 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x18981992 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xaacbdb48 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc77cf99e pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x16735e6a s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5137dc7f s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x866799e8 s3fwrn5_phy_power_ctrl -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x97c1f8f2 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9deaf592 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9e032bcb s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x94501d3c s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd4c72de1 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0291dec5 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0471ad80 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a14ffc2 ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a59c034 ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x21f6cbf3 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3b3998db st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3fa1a62b st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa00db45c st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa63efd28 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf0a1b468 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06923719 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x07435aef st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x13393f6e st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d846e57 st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x24995bb2 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x298bbfef st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2ec4e44d st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4d5adbd5 st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e41b820 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x518377ac st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69c6932c st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x75520ab5 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c3c519a st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x91afe235 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d8fb739 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc0d29d38 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xda1cd7fa st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeeaf86dc st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/ntb/ntb 0x0da6a146 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x229b1bcd ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x2506eb17 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x316ec6dc ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x375a3207 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x3efdee88 ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x4b53fc03 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x62139f26 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x68fdc09c ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x7c22b6e8 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xa32d52d9 ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xa5f85ac5 ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xbb6f9b42 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0xd602a521 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0xd71520ba ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0xdb6e9d12 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xdc85fddc ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xdf50f6df __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0xdfba60cc ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xf5d09285 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x8eae65a8 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xbb0c317b nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x05491ef4 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0x11102ad1 parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0x11edef6f parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0x1be064fa parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x203451f0 parport_claim -EXPORT_SYMBOL drivers/parport/parport 0x22153ea5 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x2ae3f4f1 parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x3c8095b9 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x466c3ec7 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x49c30ca1 parport_release +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x04c0456c ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x05f078ce ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x363a3e46 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5fdfc571 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7255e982 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xac95bfa7 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb3ab3e5d ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb98d16d4 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xceae765b st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfdac1f5e ndlc_close +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x024a9506 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0b8705af st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x20f756a0 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x229e528f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x366453b3 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36a42dfe st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3ce2241c st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x427f68cc st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a26f3e2 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7a99a116 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x832e33fe st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8e8f80cc st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc20cfb61 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd5cbadd7 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd890f23e st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe39bce5d st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeea85e5c st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1442fb0 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/ntb/ntb 0x0b9ef696 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x0c4e3652 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x0cded0f0 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x20e07826 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x2ae68a06 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x34c4a2c7 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x34e465d2 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x373fcba2 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x3a32c6c8 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x48d8c059 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x595dcb88 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x599c76ef ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x6dfed4f1 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x8fb25c90 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x97670ad6 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xb741f9a8 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xb9c09327 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xbd88e1b9 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xec62ab09 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xf476011a ntb_unregister_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x68eb49a2 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf10f73de nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0af52c12 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x0c0765aa parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x1290e1c1 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x12d8d185 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2509fc36 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x2aa79234 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x30512777 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x3194b81e parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x352b74ff parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x4c3feff4 parport_get_port EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x4d331a75 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0x53839669 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x557df273 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0x55ef8681 parport_write -EXPORT_SYMBOL drivers/parport/parport 0x58d8fb64 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0x5ca6454c parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x4f573df0 parport_remove_port EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x618c5475 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x693e44ab parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x6bd8146d parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x8393d630 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x8564ff5f parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x8d18ec32 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x923e1cbe parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x998be650 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xa5e265ea parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0xbf82cf89 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xcf3ea2a5 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xd12851cc parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0xd2e0426a parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xe81d4e9c parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xf44625ac parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport_pc 0x737ab48d parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xf5e34405 parport_pc_probe_port -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0136e499 pcmcia_write_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0bccb131 pcmcia_release_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0d00110a pcmcia_read_config_byte -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3bf41a32 pcmcia_loop_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x41bc967b pcmcia_enable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x42ccc443 pcmcia_disable_device -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5327cdab pcmcia_request_irq -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5d27d9da pcmcia_dev_present -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7053888a pcmcia_request_window -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x78da5a16 pcmcia_register_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7d6d4f36 pcmcia_map_mem_page -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x97ad5fec pcmcia_unregister_driver -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x98876b60 pcmcia_request_io -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaffc9bf5 pcmcia_loop_config +EXPORT_SYMBOL drivers/parport/parport 0x601ebb2a parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x69426dc2 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x6f01edd2 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x70fe661e parport_release +EXPORT_SYMBOL drivers/parport/parport 0x74ac6319 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x8b11dfca parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x9401d2c6 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x956903ba parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x9c3290e4 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x9f32df74 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa4bd7afe __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xa7e1eecd parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xbe6c5703 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xc0426bb4 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc4687e55 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xd1827652 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xe4cf88b4 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xe77229ca parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xe9ae462f parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xf7934607 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport_pc 0xb818ac07 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xc0f350bb parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0a608a02 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0ee8ef3d pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x197bced5 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x23c9bee8 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3fe54314 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4305388e pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x45dea291 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x572223a0 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6e4f9142 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9b6d7a64 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb67da27e pcmcia_request_irq EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcc043f6a pcmcia_fixup_iowidth -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xce64b82f pcmcia_get_tuple -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdf911cb3 pcmcia_get_mac_from_cis -EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xeba285bf pcmcia_fixup_vpp -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0371a7df pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0edce451 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc049d4b7 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xce9aa053 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xeb68cc88 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xef2541e1 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfc4cff77 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfd5ab79c pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xff026ccc pcmcia_read_config_byte EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3e8cb236 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x50605db1 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x84ff8896 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8666d192 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3be77bd1 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3fab7c89 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7a8a75bf pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x83c7fa05 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8ab12dc8 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8ce5c845 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb450f10f pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc03ea82c pcmcia_parse_uevents EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd1080cd6 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd2d788a4 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xeb9317dd pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd8149b28 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf2012123 pcmcia_get_socket_by_nr EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfde9345f pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x458ca92d pccard_static_ops -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9fd5eae1 pccard_nonstatic_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x73eb4379 cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xa6ed2754 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xab4b61fd cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xba9d4f28 cros_ec_register +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xd7d5b80f pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe572b2bd pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4a03021a cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x50833210 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6ed1d6c0 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7ebc71cd cros_ec_resume EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init EXPORT_SYMBOL drivers/platform/x86/dell/dcdbas 0xa75079d6 dcdbas_smi_request EXPORT_SYMBOL drivers/platform/x86/intel/intel_punit_ipc 0x3a0b563a intel_punit_ipc_simple_command EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command -EXPORT_SYMBOL drivers/platform/x86/wmi 0x97ac231e __wmi_driver_register -EXPORT_SYMBOL drivers/platform/x86/wmi 0x99c3630a wmi_driver_unregister -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x17aa4432 rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x75b1ef62 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0e403462 rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3dcfbce3 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3f7bf069 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x52661d28 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x645a18c3 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b83a6b0 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x72735992 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8c648283 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8dd47c2e rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8fa6ead6 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa6204920 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8048baa rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xadf82456 rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xafbc5367 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc225ade6 rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xca2d7422 rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcacb9464 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcdcd06f6 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe629ba23 rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x77e05662 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x8d0a33b1 ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/53c700 0x35c1ddac NCR_700_release +EXPORT_SYMBOL drivers/platform/x86/wmi 0xc607cc55 wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0xd27b4a54 __wmi_driver_register +EXPORT_SYMBOL drivers/rpmsg/qcom_glink 0xd7119b40 qcom_glink_native_rx +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x19446f6d rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xb5567475 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x07ba8774 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0a6347b4 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0f83bdb1 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x19c5915b rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x387e9aad rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4146ddf0 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4527daf1 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x63b6a41c rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x80aa5352 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x80c5e0ef rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x87dc98fe rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8e3687ae rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9e908c37 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa03de2cd rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdce2de61 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe38fb6e9 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe961ee58 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf580746c rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfaf0511a __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x7ce1d282 rpmsg_ns_register_device EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr -EXPORT_SYMBOL drivers/scsi/53c700 0x63fd91a2 NCR_700_detect -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x08ace63c scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4668f185 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/53c700 0x3ebe761a NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0xb09aeef4 NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3150c1c0 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x499f47cd scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x945a1349 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd542076a scsi_esp_template -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x057c2370 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0a0bef4c fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d8df9ab fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x395c23a0 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x57846db8 fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6ceed5c2 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x80143749 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9e62210b fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb84f9416 fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb96a6fce fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5e8725f fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x009430a3 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0362e0f6 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0416bcde fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x046f7f8a fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0889566a fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x095c8ba4 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f1d9255 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1801077a fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19616fa0 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a5d8b31 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c412482 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbc939990 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd8b4f961 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x05dfb7a8 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x23337d79 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2a2f877b fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x63ff8f10 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x66cc4c35 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fd7c6d2 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x82a617b9 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x884f5f68 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x92bea4bd fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x96a7420e fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xbdc7ecb8 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01ae157d fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0478035d fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x094fcb46 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c588c9b fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f66fdd7 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17a873a2 fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29babe76 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x311ab144 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x335badad fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34401399 fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35299dd6 _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a3e99cb fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bb6dc62 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ffde35b fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x423f8c46 fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4367aa2b libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x483b787c fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x494f5ea2 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b52052f fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ce0da4e fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ff0032b fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50fa3648 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57355110 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59f8e8c0 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e89388 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67fe5be8 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x680e989f fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75ce6812 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77f7dbf4 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a301836 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x279d7b0f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28db5cba fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a876eb1 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33a26622 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3896249b fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b4e1949 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x400eaea0 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42449e71 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x441dca87 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f71b001 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x513fe4a2 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x544e5a30 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57c2ef49 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b6836dd fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63db3653 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65c86f06 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68141178 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75f02cbc fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79fb9b65 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cf1bf5a fc_frame_crc_check EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ff2a1d6 fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80294e3b fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x802c97a5 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8063427c fc_seq_set_resp EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x816c721d fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81c14686 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85114ef5 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86b9f146 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8926c2a8 fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e6c041b fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fd38021 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9302ed18 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bf9ce75 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8465b45a fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87262813 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d025566 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8dbd98c8 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9767d563 fc_lport_config EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa946002b fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae127531 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb098c1fc fc_exch_mgr_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4342b20 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba07a5c5 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc30d3be7 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9506af6 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd003d4d fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd37d0320 fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4ccfac5 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xda87d1b1 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfeb5029 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb60fab44 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8af5aae fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc2809ff fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe4f1777 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1e80ad9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc43513de libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcbebac02 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd496764 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd243d074 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5253356 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8de89c5 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf15ec9d fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf733522 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe372ba78 fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa1041ef fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe8886bae fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf076c645 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3d1828d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf50dee7e fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf73ef0a1 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9813fdd fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9cbc21e fc_rport_recv_req EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfaac11f6 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x2d561fbc sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb3bedc6 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd1a3aa0 fc_exch_seq_send EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x84fb1f81 sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x98d1f2bd sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd0b850a9 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x29679d71 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6398bd0c sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7dbbcfba sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xafef465f sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcb29855c sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x1ba171aa mraid_mm_register_adp EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1e9a32ce qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24dc1aeb qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x262187bf qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4755c021 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4fde227c qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x568ea068 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5d79c332 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x74cf0d65 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8186da6b qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x882ae94f qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x955b14dd qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xec3fcee3 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0fd8239e qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x10f0f598 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x15e3c8f9 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x274459bd qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3f891e4b qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x481fb58c qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x53ca6c55 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5d527aa9 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x692fedca qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9f88869c qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xad653c6d qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbb19a7db qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd8c855f7 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x05260b1c qlogicfas408_disable_ints EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2e0d3d3c qlogicfas408_host_reset EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4c3ca231 qlogicfas408_disable_ints -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaed23a59 qlogicfas408_info -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xce3f154d qlogicfas408_abort -EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe2f65804 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6358d18b qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb1989ab0 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb53fed6a qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdd1a2e07 qlogicfas408_queuecommand EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup -EXPORT_SYMBOL drivers/scsi/raid_class 0x8f4cd82c raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xb5d76e34 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0xc6d3cf8f raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x09950d4a fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1865d682 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xfa79fe37 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/raid_class 0x0dd39acd raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xa2fbd137 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x10d2f9f1 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x17fc42db fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b253a33 fc_host_fpin_rcv EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5e71ff5b fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x758055f0 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7ce20dd2 fc_host_fpin_rcv -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x83cc469e fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8bd96ef9 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x964228e8 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa3add168 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaaaec4d0 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbce42145 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc31bd049 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4b2e948 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc57e9407 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcacd580c fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xced6e7be fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf84b24a6 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x094d1eaf sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x330e2fd7 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x476b3daa sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b4a0a56 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5615d94c sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56d89ca5 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x571019aa sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x577df067 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b103a17 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67614ae1 sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6c2cd3c9 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f6db4d9 sas_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ede9f85 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8083cc62 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8391ae71 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x879a4741 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab4d335a sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb46e275e scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba3a7923 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb8b19fd sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbca27aea sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc070e05e scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3c3eaac sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc404d8e4 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce37b41a sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdf4facd5 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8319050 sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9541cc0 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0c6be24 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48aa795d fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61a81db8 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6402d57c fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x75e3a5a5 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa41e5c28 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa66e36f0 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa6f81e7c fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb3c50b6b scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc1418da4 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd218e689 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd893a329 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdf714627 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xea028192 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfd3fa855 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x045e549b sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ab2b73d sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0bf5f1a3 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0dd4dab4 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ddfc03b sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12630892 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28cba69b sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2947b0f5 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2c0094bd scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3223964b sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f9194de sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50341f72 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x516cd828 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x652e483d sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6584f8b7 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6926c1da sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a57c4b9 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7dd55096 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c9edc85 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93de6114 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ef08ba6 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ff2023f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xacc82a72 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb597252 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf5dad18 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcda0336a sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd2b8482 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe89efc02 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf90bb265 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2798ab9b spi_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x47c0e53a spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbdafaa16 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd8456a92 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xebf411ad spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xef0f6e7a spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x32029967 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x392acd42 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6f86b3e1 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbc9ccdc2 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbda0034b spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf8e8c57c spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x24fd0c5e srp_reconnect_rport EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x795bc73a srp_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x84ac19a6 srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa44df303 srp_rport_put -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0d1a8527 qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1d14b44b qmi_send_request +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x82245ffa srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x830cdc93 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x98d561ea srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf7b5bdd6 srp_start_tl_fail_timers EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2c1e499c qmi_txn_wait EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5c66d9d4 qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5ee61ef9 qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5eef26ee qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x51a040be qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5cab2bc9 qmi_txn_cancel EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7f327dde qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa0431d47 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb13623c2 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc9e67652 qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfcd22421 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6b858779 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6e8bba91 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x86d4e40c qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x87cfb4fc qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa8b473d0 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc769a2d9 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdd357c57 qmi_add_server +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x102aab39 sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x379689dc sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x39f06354 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b04e0ac sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1e4f95fe sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x360508d8 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x365f33a3 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b061ae2 sdw_bus_exit_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e98f82a sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x40eaa51b sdw_clear_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x412dc6e5 sdw_show_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x48ca80f5 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x41d7d662 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x48e0e39e sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4c3781b2 sdw_update EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x50a0ea47 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5754d88c sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4e949cfe sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58512ab2 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x59a49738 sdw_nread EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f439a4e sdw_bus_prep_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7bed0961 sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7eb905a3 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7f63a91d sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fb0bd8e sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x85446ee6 sdw_compare_devid -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x86843274 sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x86c5c8ef sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x87677394 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8f1c6d5c sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8f867f9f sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x92fb3358 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x976ce332 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7a3a1d51 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7c721a6c sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x81c33bec sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x91dfe674 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x91f306e3 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x93db336f sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f204c9e sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9fc80997 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa178f324 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa30827f2 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa4e44fa7 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa532ef95 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa8f36416 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb2e955fc sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb3e23440 sdw_nwrite_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb8b7b83f sdw_bus_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe6e0669 sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcae62f68 sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd8534110 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc3bc7f8e sdw_nread_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf4af29ad sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdae4f722 sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x271208ff cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfdbbf955 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x08494e1e sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x18e4133c cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x31abb53e sdw_cdns_config_update EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x389d0d41 sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3ee2a925 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5a3bcf32 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x81ca4d18 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x82b3ac64 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8524552c cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8c964c1f sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa71259ea sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa71d979b cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb59228aa sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe8299e7d sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe9a63203 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xed7f1642 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf4ec19d0 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfa7fc16b sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfc505f70 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xc8334265 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x0d14c28c ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x0e13b113 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x0eb53e48 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x10a8617b ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x13075b15 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x2b309943 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x5362e998 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x69c61344 ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x715e841c ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x9cd5ffd9 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0xa8970acf ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0xbcfe3f5e ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xc0b4eae1 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xc1c2e058 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x417acd66 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4e4679dc sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x73292d61 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7bbc1860 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x897817e8 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9ecf2a54 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xba47503f sdw_cdns_config_update_set_wait +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xca0bcbd8 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcd6a8508 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xce942141 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd7194810 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf44da60e sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf4d16f7d cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf9d9adcb sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf9e881e7 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x00654b46 sdw_compute_params +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xfd6b8184 sdw_compute_slave_ports +EXPORT_SYMBOL drivers/ssb/ssb 0x1242f240 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x1495931d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x24027f17 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x29f53511 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x38fa7cc5 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x4877d336 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4b86623d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x72e2353f ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x79483fd2 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7a528ce3 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x836ac218 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x915be5ab ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x966d1a3c ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xa73588ef ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xac0ed7d2 ssb_pcihost_register EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xd200bb84 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0xd2614f1c ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xd9d536f0 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xdfb0ae0e ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xceb52f2a ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xd21844f8 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xdc0b7c96 ssb_bus_resume EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xee4f7ada ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0xf8c21fba __ssb_driver_register -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x08379fc6 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0db9504f fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2689ac5c fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x350f6156 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3623e0df fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3c7e340a fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x58826017 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a508518 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5eeb1293 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5f24d2cc fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6f52cabf fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70d8d94a fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x858a15ac fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa1a3c905 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3e7b637 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xad46c661 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaed78f36 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2fc6f5e fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc68993d8 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc97d3c0c fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb08def8 fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xed11cc9e fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf2fa7d26 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf309a6a5 fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf601710c fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x10300776 gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x15b28cd1 gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6b7db618 gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xec011ef1 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x623aa30e ade7854_probe -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05203951 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x080d37ff rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08616009 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b859a45 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1618142c rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1dfd0ac9 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e40eb2d rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e50a0ff rtllib_xmit +EXPORT_SYMBOL drivers/ssb/ssb 0xf81dca6b ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xfe5fce43 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0eb63b72 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d863609 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2194e272 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37851b31 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d74aea5 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4364a6cb fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44a184dc fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x62fa304b fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d97fd5d fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x704ece2b fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x799740d1 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f378691 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x847dd5ba fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e537dfb fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f4cbe6d fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa611d99b fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa9167163 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb02d2858 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbad90e71 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc945a1d4 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd29d11a1 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdaa72dc1 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc72cd59 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3240bc4 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf50b927f fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x54fdaa53 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x9ed11c78 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xd59c97b8 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x82088292 adt7316_probe +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01c27aa9 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04614081 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0adff8d6 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f21f308 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18e7615b rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ccee437 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x219759c3 rtllib_wx_get_power EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22da8bfa rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23551dd9 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2414993a rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a80e4fd rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f531776 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32f9f39f notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3573b2b9 rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x38879314 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3970ead8 rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44746d38 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5792da3d rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57ea0230 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5978fcb0 rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ecd1c0c rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6df7b354 rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6dff0fcd rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7373137f rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a880904 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7bc2c683 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82abb9d8 rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b2e6c6e rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x972a222b HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99cb6ba4 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa178e5c5 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa737c2ab rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa8ff0ab rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad76d702 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb51a2fcd dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbadf0dd8 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbbb0a772 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0a7fc9c rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcad4937d rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0195ab4 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd06182b9 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3dba042 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4b51a16 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe13875fb RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe5fdeaaf rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6791e6c rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea79284e rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9140350 rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a5339c4 ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0b733714 ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x122ec6aa ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2147799d HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x251f4ea2 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26d09cc6 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37ba8734 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x390955d2 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39ec63d9 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cf68c9d rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e39f55a rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fd30b0c rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x424fff88 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43ae1182 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45ae2f74 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53f5786e dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c56e715 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e77299a rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5ee2f0da notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fbb695c rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74499430 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x774a3c1b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x79a074e4 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a65794c rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82a83151 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x84c21efa rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8543ecae rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89688914 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b240574 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92424b58 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94b728de rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0506d09 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2c6040c rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2eb6ab1 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb481451a rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd0d713f rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf3cf7f8 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0afe8af rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb09322f rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd8d9cd6 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd56a19fe HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6823658 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3f96ccf rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe79885b9 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3c675cc rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf510fe44 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1067d1a9 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13ec23f7 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x14a7962a ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d125205 ieee80211_wx_set_auth EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x296fd80d ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a980b8d ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cda53c8 ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31e9519f ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32a9e3e3 ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32c4f7b6 ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3994ec3d ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a64334b ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42e25838 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x499f2313 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b3d6264 ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e6d4db5 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x500edf3c ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x504c3876 ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53bbebf6 ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x544ebaa8 ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56e8530a ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59fe6114 ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c0e87a5 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a669e8e ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c71e8d4 ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cbeaa71 ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fba0fce dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x573a9881 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57c9a906 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x643f42b4 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x650d2d48 ieee80211_get_beacon EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71a704ef ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72e7c1ec rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x730a7bee ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7671a6a2 ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7859f8d6 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bf54251 ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7d926065 ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88e4ffc9 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8cada43d ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91279a4e ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0a93fb7 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0184408 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0285c49 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb43a6a4f ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaaa00f2 ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6d2050a SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdb13bb3 ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xce22caea ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdded9a7c ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe160170d ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe19d798e ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ba0ff0a ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d1b8f4c is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73e71513 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x783d0e57 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78cc5521 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x831c8fb1 ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a5f7391 ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e325b5b ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92858bb5 ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9421ae87 ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97aeac77 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98b5294d ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9d849579 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa07a7da7 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa644a351 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa69c5fd1 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9bb8308 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7d3001c dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbacc46f6 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbaf373bf ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb3a89d8 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc328f73e ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8a8a44d SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc932fa96 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd51dbcd ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfc1d330 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd37603de ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd822d212 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda0d7acc ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb67ea42 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbaa8578 ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddba4259 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddf7280a to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf9f27d0 ieee80211_wx_set_rate EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe437354d ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4b05aa0 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6297db5 ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7a4c414 ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9df35cf dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb0e5b3c ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2322346 ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf57dda2a ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9048d5d ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb68de56 ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0124da0f iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01a1f01e iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x02629dcb iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x062ac33c iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ac424b0 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b75d278 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d98e42b iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2012e94e iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x393a4b66 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39f40cfa iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b750b82 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fb51321 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x482ec73b iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d940701 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51a778c4 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x59d2482d iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x681a2d02 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x728a5341 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75540e33 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c5b8026 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d61a9cb iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82550f20 iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85843016 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86343251 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86a40f50 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86b41767 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b6b9e2b iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a4b56d8 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b83f24e iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa13a9328 iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb72d953d iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb823f798 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0d947e7 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc60d9835 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd1f6c22 iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2de605d iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd512344c iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xddea8269 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1a01f65 iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe31a5190 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6d7b662 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe79348ad iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe862ee2c iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea322dd4 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe70f2620 ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7c06485 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea2f5350 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3206c3e ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfed25833 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff15b12e ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04862090 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b01bf6d iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b9219e1 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e335605 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27e392e0 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b589d6f iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33c5281b iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x361afac3 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3de6ff93 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47b8e3a7 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a4527c6 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fc7e97b iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x541df63f iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5573ae49 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6bcf7675 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x73cc98ff iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74543167 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cf739c7 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8029eba1 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8165bcc2 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8214fa00 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x84984c3b iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85eda506 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x881a0690 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cd0e573 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9baa64af iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f5f3229 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa4369ce iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab8df178 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba3310cc iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb0d949a iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc836c83b iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd48f52d iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8ffa1e0 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd97125de iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda9749f4 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde91a124 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdef70268 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8bbb5c1 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0eb7845 iscsit_process_text_cmd EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf55f2328 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x021a8d36 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x0638e35d sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x06bc8d41 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x07e52504 spc_parse_cdb +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf59f2162 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb2a3872 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe02e4a8 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff5fb1a3 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffddf961 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x01b8f0a9 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x05ab5e5a core_tpg_register EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0bca71f9 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x1190cfe4 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b80a9a4 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e9b51f0 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0eb4f089 target_cmd_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x15f64a17 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x166aa942 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x196d3309 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x19b385b2 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x1a1f2c6e target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x1a276feb sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x1aaf9db1 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x1fdd2bce core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x2005c80d spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x20d7d9d9 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x17d2d584 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x18e5ca53 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a8c0a36 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a99eb25 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x22467cb4 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x22d4a435 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x22f63b57 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x269c2c30 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x28492a25 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a687040 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bd5f9ac passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3350d87b core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x33873bf0 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x347d372e target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x36754a99 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x36fe5487 transport_alloc_session EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a3ab156 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x3d876d0f target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x422b0c98 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x48ba1693 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x4ce052dc transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x53e4a872 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x3df38c6e sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e48f36f sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x40a32d32 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4177373b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4620a887 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a454f31 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c555bcd sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x4eea70eb core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f744962 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x51df0c62 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5920533e target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5987b3a9 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x5adc7542 transport_kmap_data_sg EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c564939 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d63087f transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d89c8f2 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x5eed1139 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x5f2321a1 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x6689e831 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x69228f87 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x6c72fa0a transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x6cd9a8b0 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x6e0f6f7b target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x70bf56bc target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x73851e3d core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x813c4ff0 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x82692610 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x831378e8 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x85ec4dbf transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x86a7c889 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x87292cd9 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x87f59a26 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x885d6750 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x88db7b31 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f499a19 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x900ca679 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9904705d core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x9bab585c target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x9cfe72dd transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x9edd4f03 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa2e30938 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xa6072e94 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xace14003 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xad57cd1e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c34853c target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e9ba9c9 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6502aea3 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x68063612 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ccd68d9 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6dc5b07f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e86758e transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f6e201e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x728ffef6 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x757ce6f5 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7610a1e6 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x80c750fd transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x88b0246e transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x89cba209 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e3d9bf1 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ef146c8 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x9109e996 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a930428 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bcc4732 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bd4a9d7 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xa10e7d35 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d07bcb target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3067304 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xac0664f9 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xae67e8b7 transport_wait_for_tasks EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc96dae9 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0c01b71 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xc5ff4de5 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6a1ce32 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0xc98058fb target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xcca19425 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xccd9ca52 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1ba1f76 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0xd35158fe target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xd580b5ce target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xda682911 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xe45e7dc2 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0xe5eb7cf8 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xe67d744d transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6f12dac passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xe894fc24 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0xf281ff75 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3a355a0 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1c1abf1 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc550f986 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7f3a1cd target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd508e4f target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd64c96a0 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xda9f3dce target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf9953dd transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe397db36 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6e782ac target_show_dynamic_sessions EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5883654 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd44c449 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf535f683 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa9f595c target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdf3fa2a transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfea335c6 core_alua_check_nonop_delay EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x9103c585 acpi_parse_art EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x06d7d136 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2371ec01 ufshcd_shutdown -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x4d9fbbae ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x62e92592 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x633fc463 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7add7f5f ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xa31f8c9e ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xeae8cf86 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x6a704a93 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xd0325560 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x82aa20f8 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xdc9768de ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xb6aa4073 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xa65e9325 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3b7f9ec4 sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0be10aa9 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x115c84df usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x39fe9869 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c29a0e3 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x93b29406 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9cba29d2 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa1317f89 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa2ce99dd usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab275412 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf48c8998 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xff8eafd4 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9ae39581 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xfd0e5a61 usb_serial_resume -EXPORT_SYMBOL drivers/vdpa/vdpa 0x9b7898c4 vdpa_set_status -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x586d09df mdev_unregister_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x77716668 mdev_register_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xa28d0f3b mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcfa98bd9 mdev_unregister_driver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x225e6f4d ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3994b2f3 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x869b4685 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xaa5912d3 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb0b2440d ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xde162bb9 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x567f0ccd tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xbf70b70b tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x09995b21 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xcb91e736 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x86d7c209 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xdf81c9d4 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x4f73433b sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0387cf4c usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x301f13e2 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x43ab9a79 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7e01ec65 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8e5736df usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa3ed4e64 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcd270fbc usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe6531f69 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe6c89967 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe81da2da usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf4650712 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x102a0c03 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb671bef9 usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0xe460b49c vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x06d07a0c mdev_unregister_parent +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x35dd9146 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5a55c88d mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7d9e0907 mdev_register_parent EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift -EXPORT_SYMBOL drivers/vfio/vfio 0x2012c6ae vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0x51be3d4f vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x2bdbd0e2 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x4fa9b9d3 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xc0ccf8b4 vfio_pin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x62b9a058 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xc4505242 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vfio/vfio 0xe72475e6 vfio_pin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x0aeb2afe vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x6959469d vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x22535a6e vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x22f44e7d vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x31848eae vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x372fd6c2 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3a5d8ed7 vringh_getdesc_user EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x52bae5f4 vringh_complete_multi_user EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance -EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6bcdc931 vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x6bf1b1c2 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7eaceeaa vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x8f8840e8 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x932af7d7 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x964ca823 vringh_iov_push_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9a775e41 vringh_init_iotlb_va +EXPORT_SYMBOL drivers/vhost/vringh 0x9a81a3f6 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9bdd89ae vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x9f597502 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xacec70e7 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xb98c2548 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbb2391f3 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xbdb0df4e vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc33f4090 vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc467f54a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc5a7eb98 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xcc0cbfb9 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd8535ad6 vringh_init_kern EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x349ed4ef lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x8fc15634 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xc9b3109c devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xf06bc668 lcd_device_unregister -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0a6f2185 svga_settile +EXPORT_SYMBOL drivers/vhost/vringh 0xe08ccbed vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/video/backlight/lcd 0x17c3d84e lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7e680a10 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x897dd353 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9d409a79 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 0x45dd11af svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5656b0d4 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4b00d878 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x673f2c57 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8c97ac21 svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x90383d84 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8512fe03 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x95fde862 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa41a2c25 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa465b4d0 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc2a90bde svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xddfda4f0 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xe77b152a sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x38c5d139 sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xd3457dcb sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe697c6c5 svga_settile EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x52748227 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xaac4f738 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x048d16d9 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 0x2eb59e7c matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7803c75a g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xcccbcc33 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1bbadb7c DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2586a2fe matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbc2de83c matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf8927611 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe13b0530 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xc90b007c matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x18286620 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3715c7c0 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x39470e13 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x933ad997 matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x85997f4d matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xae0fd439 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xef4a1ed3 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x3b9a7b42 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd68e20ab matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe8509d8c matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x52313f3f DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc1c9b0b6 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdf4a2b7f matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf9b10c17 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x2a22553a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xc0c66234 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x18fe5686 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1e41d8eb matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7dacc7ae matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbbcefe33 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x1ae09d8b matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd6820636 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x11d8530c matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x44c68316 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7302ed38 matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x93c6e11b matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xbfd24836 matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc459e2c2 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x99a0cadc matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa27f0e6d matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcd81b5e8 matroxfb_vgaHWinit EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdc4f4a0c matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x04ef60a1 vbg_hgcm_connect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x0092de03 vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x21fe4672 vbg_hgcm_disconnect EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x260590c0 vbg_err +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x39a83b27 vbg_hgcm_connect EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x569b312f vbg_info EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x68f1cf1a vbg_err_ratelimited EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x70cdcbfd vbg_warn -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x975f5e4b vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x75af455f vbg_get_gdev EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xa026201f vbg_get_gdev -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xb757a8d3 vbg_hgcm_call -EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xd72b2fda vbg_put_gdev -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1e3575fe is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x34dcac55 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x9b1c86a1 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xfc2f1b73 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x23ca43ac w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa34a82b3 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7403fb80 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa4b8eb14 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/wire 0x18b20b93 w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0x891d713e w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xc18008d8 w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0xde3eac3f w1_remove_master_device +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xae954cc0 vbg_hgcm_call +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x19d0a1be is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7b7c30a8 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xce3d2ede virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xd0cf29ff virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x74b237a3 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb8e79779 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x54ca3e06 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xeb3d530e w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x29044888 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x380f8cee w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x458b120f w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc69611d2 w1_register_family EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport -EXPORT_SYMBOL fs/fscache/fscache 0x03d5cda7 __fscache_write_to_cache -EXPORT_SYMBOL fs/fscache/fscache 0x04acfc38 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x08267a48 fscache_resume_after_invalidation -EXPORT_SYMBOL fs/fscache/fscache 0x0a23e729 __SCK__tp_func_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x11081280 fscache_acquire_cache -EXPORT_SYMBOL fs/fscache/fscache 0x123e9ac3 __tracepoint_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x18333f55 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x0172017c __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x0578793c fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x058c501d __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x073dbcd6 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x0770a748 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x088e876d __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x09c714f1 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0a5cdbcc __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x16afed6f fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write -EXPORT_SYMBOL fs/fscache/fscache 0x1be44b9f fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1d147d75 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x2234ca69 __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x3220bc51 fscache_caching_failed -EXPORT_SYMBOL fs/fscache/fscache 0x32272e9a __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0x3ae49230 __tracepoint_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x4111dc33 __fscache_acquire_volume -EXPORT_SYMBOL fs/fscache/fscache 0x42fa4ca3 __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x26f49457 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x28253b7d fscache_dirty_folio EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space -EXPORT_SYMBOL fs/fscache/fscache 0x45fb3a7c fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x47c142a7 __tracepoint_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4c13a960 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4c17b91d __SCK__tp_func_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem EXPORT_SYMBOL fs/fscache/fscache 0x5954d7ac __SCT__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x5a998607 fscache_end_volume_access -EXPORT_SYMBOL fs/fscache/fscache 0x69d6320c fscache_put_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x6af30e28 fscache_cookie_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x6f8cf170 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x5b18bdcf __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6ac082bf fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x71550373 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x780550eb fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x899d7401 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7ccd52c2 __tracepoint_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x91bd1c35 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x97ca4a08 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x9a44734c fscache_wait_for_operation EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa692d21e __fscache_resize_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xa960465b fscache_end_cookie_access -EXPORT_SYMBOL fs/fscache/fscache 0xa9a8cca1 __fscache_acquire_cookie EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb16ace15 fscache_dirty_folio -EXPORT_SYMBOL fs/fscache/fscache 0xb93ca944 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xba7fc3ea __fscache_clear_page_bits -EXPORT_SYMBOL fs/fscache/fscache 0xbb4b6bce fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb624237c fscache_add_cache EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xc1a52ffb fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xc9fb5c8b fscache_withdraw_volume -EXPORT_SYMBOL fs/fscache/fscache 0xcce0623b fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc0e5834c fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xce411dbd __fscache_unuse_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xd9e65386 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd080b7c6 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd7663d77 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0xd8eacaa3 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdc040877 __fscache_relinquish_cookie EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xf26215c1 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xf7c62464 fscache_wait_for_operation -EXPORT_SYMBOL fs/netfs/netfs 0x55800b72 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x657698f4 netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0x6ddf3c2f netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0x9d3f55b9 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0xaf733411 netfs_stats_show +EXPORT_SYMBOL fs/fscache/fscache 0xe5f598d3 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe93a25d6 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xea68a5cc __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xec64eccd __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf2391552 __fscache_use_cookie +EXPORT_SYMBOL fs/netfs/netfs 0x1db88bac netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xb63ca1e4 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xc9b3bb25 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xe129933e netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xf744243b netfs_read_folio EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x22bec320 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x54f42909 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x75a4d4e0 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x89e2bb66 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xa91e494b qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xdf6c4ab5 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x1c9db050 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x36b4414a qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x4e7338ba qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x82066d33 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8bf01d5a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc3d249a8 qtree_delete_dquot EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -4991,19 +4960,18 @@ EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del +EXPORT_SYMBOL lib/lru_cache 0x2a260b1b lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x83601c8e lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0xa209469d lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset -EXPORT_SYMBOL lib/lru_cache 0xc2792c74 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock @@ -5044,1299 +5012,1326 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x003d6a57 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0x7d7cc39e lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xaf62dcaa lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xb8c7ff03 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xbe09e56a lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe8534e49 lowpan_nhc_del -EXPORT_SYMBOL net/802/p8022 0x26a685a2 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xf95d7e6c register_8022_client -EXPORT_SYMBOL net/802/psnap 0x0c596a6e register_snap_client -EXPORT_SYMBOL net/802/psnap 0x3e1c4f19 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x038dd030 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x09a19299 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x09dd54ff p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x0d94accc p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x0e93e7a7 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x12132a00 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x16a70a46 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x16cedb1b p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x25d017f7 p9_client_link +EXPORT_SYMBOL net/6lowpan/6lowpan 0x013a4e04 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x13d00099 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1a4af1ce lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc747c742 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xce87dde3 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe857b1db lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x5f3191ca unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x8ebde3f4 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x2395f58b register_snap_client +EXPORT_SYMBOL net/802/psnap 0x25418538 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0195551d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x01d13003 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x0c446a70 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x0d4a6104 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x0eb1175d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x15efd697 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x2a6c89f9 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x2abd8c83 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x2dc94591 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x2f5661a6 __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x38afd358 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3d4fc6a3 p9_show_client_options EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3edb08e2 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x3f529758 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x41809cf2 __SCK__tp_func_9p_fid_ref EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x439ae137 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x45643fbc p9_client_write EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x4c305a91 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x5261d995 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x64d92466 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x6d45008c v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0x6f2bf1cf p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x6fbc1f06 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x754a9cc6 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x4c72a901 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x54bcbcc4 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5d768cb8 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x6a5d395f p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6c370008 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x734b60bd v9fs_get_trans_by_name EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x76a75fb3 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x783dbac3 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7d347b05 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x84aafdfa p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x8ed88775 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x94f980a1 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x76db1e76 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x8a7eb801 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x8eedfe39 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x903d262c p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9a5fd3ff p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x9c88208e p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xa9ab85b1 __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xb11a2e7f v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xb2954cc0 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9844fe4b p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x9d5ff94b p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x9eac7be2 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa2bcead7 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xad58e50e p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0xb798a888 __SCT__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xbe5c6c7f p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0xc3156381 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc3f5c5dc p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xd2007117 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xca867bf1 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xcb94bf64 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xcdbbcdcb p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcf255552 p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd4e17def v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0xded3553e p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xe54eaaa2 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0xe579c2b8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xd39d4eff v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xdc3849c9 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdc8165fe p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xde62ad6b p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe11442b5 p9_client_getlock_dotl EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xecf43bb6 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0xf0d8ca27 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xf298bbf6 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xf5b862e1 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0xf78ef1ab do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0xf7c6f446 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xf8bfb539 do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0xfce81584 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xfe458999 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/appletalk/appletalk 0x0f0bada4 alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0x408f138e atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0x9b5ef440 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xf6af7487 aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x074f0808 deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x08a97fe2 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x109b7e65 vcc_process_recv_queue +EXPORT_SYMBOL net/9p/9pnet 0xe78f5e06 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xea3b732d __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xec96300f p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xedd3b802 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xf32fa8ff p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xfa6d3b4c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd7f568f p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xfe1df761 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xffcde1bb v9fs_get_default_trans +EXPORT_SYMBOL net/appletalk/appletalk 0x8b87ea7e aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x96556f90 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xcb5fabb9 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xe3deb687 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0af0c144 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash -EXPORT_SYMBOL net/atm/atm 0x371dd068 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x36be7027 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x3abf3e7a atm_dev_register EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x62c9307a atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x7e702895 vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x885c8ff4 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x8974404a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x5b8de45b atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x5fa9e1a0 atm_charge +EXPORT_SYMBOL net/atm/atm 0x748fbbe0 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x882f179b atm_dev_release_vccs EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa1d1bad8 atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xd37b4002 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xd9370d75 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xe69d56e5 vcc_insert_socket -EXPORT_SYMBOL net/atm/atm 0xed46031b atm_charge +EXPORT_SYMBOL net/atm/atm 0xcc739ecc register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xcdac07d9 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xd2a20de9 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xddb2a4e5 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xddcb7dec atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xe025113a atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0ea58eb9 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3057f3d8 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x816149ea ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x7d7fa5c0 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x812fa87d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8bb72821 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8be9aa1e ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xb6e6b07d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x9ccb91d4 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xb6770252 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc6e19874 ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0xc7c53f15 ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd955000d ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0xda084931 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0xe29a37f2 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/ax25/ax25 0xff9c2d58 ax25_find_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0392c913 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03554fe7 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x066d91ed bt_accept_enqueue EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x093d0ed9 __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c27b2c6 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c68e37a __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x13f0431c bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07ab4ff7 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07be8308 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b072a71 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1115f529 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1680af82 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d38f836 bt_sock_stream_recvmsg EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27f22bef l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0x282c173e bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x358ade11 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x359b6cf4 __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x46e8b021 hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0x49994942 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x53d10e84 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5baeb613 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e17483e hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7208b82a hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7621b096 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a043986 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a881b57 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x219013fc hci_devcd_complete +EXPORT_SYMBOL net/bluetooth/bluetooth 0x264fa393 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x306dec62 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33c0aacf l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3bee11f0 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5355f66f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5990da1a l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b073111 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x64ccc689 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x64e2360a l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ef03629 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f216461 hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0x738f0c71 l2cap_conn_put EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x87ed433b l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x893ad3e4 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8adc644e hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c9a2454 hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fd7ea0b hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x803930f0 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80902d93 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81388b02 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81593de2 hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x869d95db hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x86a47250 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ea7e164 hci_register_cb EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x93e58fa5 hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x942b7844 hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9734651c bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9aa9c1f8 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa75b1adf hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0xae75fa71 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1c71fbb hci_recv_frame -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5b00765 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf57d0b2 __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc74cca04 bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc771e143 bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc81d7b5c hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc90054a9 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xca667829 hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0e7b779 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9099b4d9 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92e33fe3 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ccd3fb5 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa36d67be hci_devcd_rx +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4e856cf bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa60137a1 hci_devcd_timeout +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa984983a hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb586e56 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc62680ce bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xccd58d82 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf85d33e hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd144179a hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd44a8dba hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5614964 hci_conn_switch_role EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xdccf6389 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd99c7c3c hci_devcd_append +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbf1d045 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc5bb7e0 hci_resume_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0c17e8b bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0d2ae8d bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3700305 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec04cd75 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xefe27ae3 hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf100f685 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf132a469 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf1d4e5a0 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf573c6e8 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf83ad34e bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbb04d32 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbd59bbb hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfe7b12eb bt_sock_wait_state -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x802499f3 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xab1a986d ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc065b706 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcb7a3d51 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xda0fe825 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xddf2abae ebt_register_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe282ec70 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7aaa007 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeca30350 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeebc6cfb bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef04c941 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf28bbe3d __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2ecf460 hci_devcd_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3c2f519 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6f20e4a bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf82c52b7 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfccb5506 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfeb72f3d hci_devcd_abort +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0584278c ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3e92857e ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x60b5bc40 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9a814eba ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd1b56a76 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf31c7595 ebt_register_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x21b78b5a 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 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x7cda4690 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6eb49d0d caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x8146893b cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x8dc126c0 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x94f54023 caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xc1f515ea caif_connect_client -EXPORT_SYMBOL net/caif/caif 0xd2a686c8 caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0xec7957e9 cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x1a688067 can_proto_register -EXPORT_SYMBOL net/can/can 0x1c3fd334 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x20fd3809 can_send -EXPORT_SYMBOL net/can/can 0xa6e87c84 can_rx_register -EXPORT_SYMBOL net/can/can 0xde7961b0 can_proto_unregister -EXPORT_SYMBOL net/can/can 0xe079a4a8 can_sock_destruct -EXPORT_SYMBOL net/ceph/libceph 0x018e15db ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x0199cd1c ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x01e59b25 ceph_msg_dump +EXPORT_SYMBOL net/caif/caif 0xca34e133 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x02710302 can_rx_register +EXPORT_SYMBOL net/can/can 0x56905354 can_proto_register +EXPORT_SYMBOL net/can/can 0x5d17b122 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x65afc690 can_send +EXPORT_SYMBOL net/can/can 0xa2967062 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xab623ff5 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00e00484 ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x07f99cc3 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x08939b3a ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x08a4db25 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x0fdbb2ae ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x119a096a osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x0c140305 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x0ed658cd osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x108bee62 ceph_con_send EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x13d74962 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x14e1f4c4 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x139f27b7 ceph_monc_blocklist_add EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x17400fcf osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x184f38af ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x1855488a ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x18dafe9f osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x1ae8cccf ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x1af3175e ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x1b1ea585 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x1b3fdc0a ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x2068d991 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x18841bf4 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x18a1e82c ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x19d6fd99 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x1a67150b ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x1bd56a4b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x1eef358b ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy -EXPORT_SYMBOL net/ceph/libceph 0x209ef5cc ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x217a9d1c ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x21b82b7a ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x23c14bba ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x2414e0a7 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x2626f7fa ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x27f0133d osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x281eb419 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x29cced8e ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x277e480f ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x2878e6d3 osd_req_op_extent_init EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2d0c090c ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x2e3c5d38 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x322cb74a osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x35f0ff1c ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x36228007 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x349adae0 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x3636e02b ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x37c43735 osd_req_op_init EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x39a72ecf osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x3afb0dd6 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x395a04e3 ceph_osdc_call EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3e4ed2e3 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0x40a4d6f7 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x40b175dc osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3cc706d9 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x3e30acec ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3f88459d ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x40157212 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x42351c48 ceph_msg_dump EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x46afb974 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x4822c902 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x489486ab ceph_cls_set_cookie -EXPORT_SYMBOL net/ceph/libceph 0x49728f7e ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x49b6e55e ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4c100596 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x4c3021e8 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x503c19b3 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x4de4cf5b ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x5299e163 ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0x55f8145c osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x5601d709 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x5656e48c osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x56f18ba3 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x570ccfdd ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x508e012c ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x526eae96 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x558204df ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x563e1595 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x56887b46 ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5840ea87 ceph_compare_options EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5c28a66c ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x624a7ab0 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x5d5206a1 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6243ea5e ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x62c44097 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x636fd031 ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x68a0a880 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x6980ec31 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x64c5f525 osd_req_op_extent_osd_iter +EXPORT_SYMBOL net/ceph/libceph 0x694a74d8 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x6a257058 osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6d630c03 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x6f0789ad ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x7251769e ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x753a5b70 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x7584eab1 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x7597c293 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x7e907282 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0x7f3ecfa2 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x6c7a4353 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x72cdfb57 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x77ebf76a ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x7a2397dc osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7be7b3ba ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7c38768b ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x7d0769cc ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x7f626fe4 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x80db70aa osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x83aff95a ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8d61a734 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x900be94a ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x88dd3683 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x896c2d2a osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x8c487114 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x8cc4de18 ceph_monc_got_map EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x977b3f7f ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x97b2ab13 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x9860f6da ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x93c0b5da ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x941616a7 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x95e6d034 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x985d08f3 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9a24d78a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x99977725 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x9af88f0d ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9cd2c8b0 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x9d6342c4 __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa2452e55 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xa04e11dc ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xa12ac1b8 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa1e49b3b ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa28229fe ceph_copy_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xaa1d6e07 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xaaf87ea2 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xab5f2dc6 ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xad2d03aa ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xa7708c7a ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xab0ea5e4 ceph_monc_open_session EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae9eccc7 ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb4238160 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xb43cc819 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0xb4ff7468 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xb16dde63 ceph_put_page_vector EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5aaf73e ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xb5d6c6ec ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xb6be38c0 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xb7142a01 ceph_con_close EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xb8c2cd40 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xba150f38 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xba6fc345 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xba8c7568 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xbc71900a ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xbce3ff6a ceph_copy_from_page_vector EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy -EXPORT_SYMBOL net/ceph/libceph 0xbde1a00f ceph_osdc_notify_ack EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xc0e0792c osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xc1cf9a39 ceph_parse_mon_ips -EXPORT_SYMBOL net/ceph/libceph 0xc25c8d9a ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xc26b17ff osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xc28ef741 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xbff18c2e ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc82e4146 ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcc520d1a ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0xccf9cd27 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0xd1531ebf ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xcabce8f0 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xcc09ac2e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xcc295bd0 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xcdd5c926 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xce2c0428 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xcf1e5ed0 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xcfb883a8 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xcff8b0aa ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd3a45387 ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xda199041 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xde2e0214 osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0xdf1c0ac1 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xd6792310 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xd9055b4d ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xdb311700 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xdba836c6 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xdd2f1c3f osd_req_op_cls_init EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe03e337d ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xe0588878 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe2fe0f01 __ceph_alloc_sparse_ext_map EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe3c202f4 ceph_osdc_clear_abort_err EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe90348c0 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xe91bd79a ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xebd0a355 ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xecf2f15d ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xeba9fc1e ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xedf5bf22 ceph_osdc_list_watchers EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee4988fe osd_req_op_extent_update EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xfaa00fb0 ceph_cls_lock_info -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x38dcbad1 dccp_syn_ack_timeout -EXPORT_SYMBOL net/dccp/dccp_ipv4 0xffd562b4 dccp_req_err -EXPORT_SYMBOL net/hsr/hsr 0x42fea525 is_hsr_master -EXPORT_SYMBOL net/hsr/hsr 0x8962fa5b hsr_get_version -EXPORT_SYMBOL net/ieee802154/ieee802154 0x27cc7b45 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x787b3060 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0xa78fbf90 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0xbdd97fa6 wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc074b4ae wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0xc73a11da wpan_phy_for_each +EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank +EXPORT_SYMBOL net/ceph/libceph 0xf3097cdf ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xf37748df ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xf765d872 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xf810b570 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xf9040fa8 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xfb7d0d1b ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xfbda6125 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xfe9f3caa ceph_open_session +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x486e8554 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6628194c dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x8901a2e1 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x98f5a745 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0db8a4a7 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1a3356ac wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5e1aadfe wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x88862cce wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa7e039d3 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbdbf4c7a wpan_phy_unregister EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xeea585e3 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x747e7bc5 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xcddb1c7e __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xfed0ab0d __gue_build_header -EXPORT_SYMBOL net/ipv4/gre 0xd469373f gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1eb42ff8 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5828d787 ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xee58fea4 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf53dbd46 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x55022c77 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7b4f849a arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xad20cbc8 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe0648c9e arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0b470724 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x33a808b6 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x75d2bb9c ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xbe344a31 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0xbc453948 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xe735fc41 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x6e5ddc58 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0188f965 ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1e1e98d4 ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5401bcfb ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x780c44e5 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x83fa4030 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x85b0b6c8 ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb7e3a47e ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc04f3665 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd51d5aa8 ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x38c5e649 ip6t_register_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7945147b ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9dc4ecf6 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xec5b5f9c ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/tunnel6 0x3cf21590 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/tunnel6 0x5035d53e xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xad031359 xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc6106552 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x00b8b12f lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0x0a5fd82e lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x64a567ed lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xb86d251a lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xc1d55a00 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xe271f1eb lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0xe975af1b lapb_register -EXPORT_SYMBOL net/lapb/lapb 0xf920f3eb lapb_unregister -EXPORT_SYMBOL net/llc/llc 0x17ce807d llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0x294a2d9c llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x29ffa5f0 llc_set_station_handler +EXPORT_SYMBOL net/ipv4/gre 0x8c95dac3 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x595ce703 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5fb0c02a ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x62d150bd ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbbb5e8bb ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf3ff1c5e ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x226cc9a0 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x50aa6c16 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6cc6c554 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa70bf65c arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x49f1da33 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x584c6b7c ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb35ae956 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe8fc03a3 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x5bb02dc2 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xb49a3354 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x01ee8f69 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x15b420f5 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x18192377 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x235b8e2a ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x42ead60e ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x84633611 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8879e583 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa4ed242f ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcfd08925 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf4ca7339 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3169984f ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6e44538d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x736a2098 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf43a28cc ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x3a4008ec xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x92db42e1 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4369bfbb xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf1bb7f72 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x08efc5ae lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x3f62cbea lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x459dbaf4 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x5d6f816d lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x75a1abd2 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xbbca27d2 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xd58a416a lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xfa619e70 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x028ad41f llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x1e0ff1c2 llc_sap_find EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack -EXPORT_SYMBOL net/llc/llc 0x3c3d355c llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x41a9917f llc_add_pack EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0xa94b970b llc_sap_close -EXPORT_SYMBOL net/llc/llc 0xaeee96aa llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xefc03dbc llc_sap_find -EXPORT_SYMBOL net/mac80211/mac80211 0x02374930 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x03a254c1 ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x04705df5 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x049c286f ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x052f7816 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x07e1dab5 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x104265aa ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x135ecd52 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x13d08fff ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x1416e89e ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0x155c3ca6 ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x1591f132 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x1722d835 ieee80211_wake_queues +EXPORT_SYMBOL net/llc/llc 0x7374319a llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xad820c1b llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xc1dc8e0b llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xe31386ee llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x00da4425 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x00f3c134 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x06254884 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x068c0413 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x06ceaba0 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0953d360 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0aa3e52d ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x0acfd931 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0b6af4e9 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x0ddd2b65 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x102d0317 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x124a46ba ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x14fa96ce ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x17c49ed3 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x18835314 __ieee80211_get_tx_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1acd33ed ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0x1bbd6d28 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x1be7ffd2 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1bb75017 ieee80211_beacon_loss EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1d2beb28 ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x26b34430 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x26c71ebb ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x2f053df6 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x312d341b ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0x340b8dbe ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0x3518eccc ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x35233b35 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x362b7dc9 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x38d0323a ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x38fc7b39 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1d05177f ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x1f40d438 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x24cf0886 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x29d1fd3d ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x2e845bac ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x2ea5bae0 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x2fb790b1 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x320553cb ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x35d576af ieee80211_alloc_hw_nm EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3a497759 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x3b2bf652 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0x3c4ff3f3 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x4034e3aa ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0x4174a291 ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x41d83e1c ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x477182ee ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x490c5023 rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x4b0a78cc ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x4de3d3af ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x4ff6c53f ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x51fee24f ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x52f475e6 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0x58485f23 ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0x588f9380 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x5b10c026 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x5ece157c __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x60aac8c2 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x630034fd ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0x6fe0bde7 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x7529b89f ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x7674bfd5 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x7a6f7cc2 ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x7d58ef3a ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x81d6459b ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x8450120b ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0x856d1834 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x89c2d649 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x8b05bed1 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0x8ceb5d6c ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x8d24837f ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x916b5264 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x91d41df8 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x391f8ac5 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x3c57086f ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x44377de1 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x46388f15 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x467a087c ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x4750cf24 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x47de3ed5 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x4b6a8085 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x4e3f81a5 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x5578e63e ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x55a8dce1 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x55c7f036 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x579d1794 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x582b2177 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x598b4d01 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x5c9d4034 ieee80211_beacon_get_template_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x5ecb453f ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x5efd987d ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x5fa42069 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x61b996a0 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x61d141dc ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x66220a39 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x6714497d ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x6acab0b6 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x6e8f701f ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x6ea57c4d ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6fe92921 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x704b2546 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7220fb2b ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7401ca0e ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x740bdf2f ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x75a6f384 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x77f5a2dd ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x78c39c65 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x79d36853 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7c10506a ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x81cc3216 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x82217d66 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x8962b027 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x8d2f6d6e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x8f0deae9 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x902cd38a ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x902ce420 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x9076900c ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x91ebc6e2 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9384d190 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x950b8a17 ieee80211_unreserve_tid EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99837dc6 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x9d88372c ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xa0aaa046 ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xa33840ef ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0xa76b6fff ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0xaa0959c1 ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xaa24f56e ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0xab1b8a50 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xab2e5bed ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0xad083c91 ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xad524588 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xadf7e97d ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x99fecf5e ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9b4b3f73 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9c405e3c ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa9d31e95 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xab09473b ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xacb4429c ieee80211_sta_ps_transition EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb2b5d9c9 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xb873271a ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xbdb9a2b1 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xbdc10803 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xc589c09a ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xc5943d84 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc728aecd ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xcbc21e74 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xcf935728 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xcfe8877e ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0xdc6a2ce9 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xddf358f9 ieee80211_sta_uapsd_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0xde48679f ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xe1065c1d ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0xe1d4d8be ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xe994da9d ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0xe99dbd19 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0xec772033 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xed43f300 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xedddd015 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xeef1d121 ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0xeefa4f2e ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xef9c900d ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xf21e72d0 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xf3202a08 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xf6786bfb ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf6a85009 ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xfa61fac7 __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xfb22795e ieee80211_sta_eosp -EXPORT_SYMBOL net/mac802154/mac802154 0x35da652e ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0x55ebcb0d ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x74f64791 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x7f3dee10 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0x8598daae ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0xb8e73fcf ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xdd08f5ed ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xe0a9d9fc ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0xe696df34 ieee802154_xmit_hw_error -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0950221c unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x127c04fe register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x30cebfe5 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x36b86a7e ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4289ead0 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55b4f31d ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b2361d8 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6eb09c5c ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x853b679e ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95159349 ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8c5b54d ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xacbbc940 register_ip_vs_app +EXPORT_SYMBOL net/mac80211/mac80211 0xaf625920 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb34de8bd ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xb574b1fa ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb80e67f5 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xbe137119 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xca14880d ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xcf250b44 ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0xd00b1cea ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xd3c5fdfd ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xd525a02d ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0xd55aa7b9 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd7b9bddc ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xd9249d8e ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xdf1af256 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xdf987944 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xe0405f8b ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe1959855 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xe2cfe69a ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xe489c367 ieee80211_refresh_tx_agg_session_timer +EXPORT_SYMBOL net/mac80211/mac80211 0xe549891f ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xe5a61bd9 ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xeaeaa326 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xee448bd0 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf77d2894 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf96c8825 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xfcaeb287 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac802154/mac802154 0x1847a58c ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x3e5c0b13 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x43c4a4d3 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x4f307e63 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x4faad301 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x73c483a2 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fd7945c ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x957405eb ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xb38c5330 ieee802154_xmit_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x01f0bae8 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0856b3c3 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x29df870c register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x325e226b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a727ed4 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4422c1c6 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4969e482 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4d23eb6b ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6321338c register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb55473b6 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb73599fa register_ip_vs_app EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee2b0b08 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0a84eec ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf0badab0 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xde1e0b40 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe0ffb10e ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xef279019 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfaf42a38 ip_vs_conn_out_get EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x712a68bc nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xb86c63e3 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x072547cc nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0x92017fe1 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xb2aceaf6 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xda419a96 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x39173c0d __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x697e4005 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x9295eebb nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdb84c6d5 nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2a7120a9 xt_register_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x362a9b58 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x159309a4 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x228dbaea xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2de8282d xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x79eaf3b5 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x7a1280c8 xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x86da7152 xt_unregister_match -EXPORT_SYMBOL net/netfilter/x_tables 0x9269097f xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x6c3952b4 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6e99fd4d xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x70f4b049 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x98da66fb xt_unregister_targets EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa69a0158 xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0xc3daa0a9 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb07746bb xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd258df22 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xe92ca4ee xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0xf5c0fc3d xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe85e0b8e xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x1612446f nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x1f0c40fd nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x2bba5249 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x40711eba nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x4105fb3f nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x434966c6 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x56cf1a2b nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x58197961 nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x5aedaae0 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x0ac34250 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x14b0af48 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x19f7537c nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1b63ad99 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x26c3ffeb nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x5da04434 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x67b0eb52 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x6a05c55d nfc_hci_disconnect_gate EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x91933118 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x93255437 nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xa487d153 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xd2465865 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xd479218c nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x75025cba nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x86d39aa6 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9a7f8fda nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9b96e375 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xabf2a0df nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xc0d3b9c5 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xcbdc523e nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xd007a50c nfc_hci_get_param EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xdfbd3cf6 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xe4194269 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xe84e1faa nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xf1ef1eac nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xf70456c3 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xfb409247 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0xfcf22a5d nfc_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x03e1c844 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x1de068da nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x245df0c4 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x2d6bda9d nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x365003b6 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x36d7d562 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x37f954db nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0x42d06829 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0x450be348 nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x462885f9 nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x4fa11785 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x545eee0b nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x62b4bf53 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x664aa771 nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x7d8acf2a nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x862e4de1 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x8a3d02ab nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xa26f61e6 nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xa8ef7dee nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0xb22d9d87 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/hci/hci 0xde67e045 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xe6ba4a05 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe7022c97 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xf8bf1596 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xfd457d9a nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x0caa1239 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x100104d2 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x14c597b1 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x2a0067dc nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x382aaf7d nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x3bbde1e9 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x3ccd0b99 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x4ba45bcb nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x56fb8a45 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x589f3231 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x5978c6bc nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x6b3f64d5 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7000ecac nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x746cfdc5 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x76c99754 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x8539f85a nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x87ff8f07 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x8f0cd918 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x8f1d99f1 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x924b72c2 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x931abc18 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xa19a7459 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa75351ba nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb211f977 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb588b31f nci_req_complete EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xbd39160a nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0xcb869ec5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0xd13aeb0d nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xd72869dc nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0xd9a3812b nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0xf0f4a095 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xf17164e6 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xf2754025 nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xffc49981 nci_recv_frame -EXPORT_SYMBOL net/nfc/nfc 0x07509414 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x20d0f7e6 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x282c63b4 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x40a4417e nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x48e6a4e3 nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x67a67840 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x6b2539f0 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x6fea06d2 nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0x84e14eea nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0x91016b3c nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x9604ca1b nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xa18a6b7a nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0xa81c1857 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xa97a4b50 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0xbc19880a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xc8268fe4 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0xc8853faf nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0xc94f97f8 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xd2b5fd23 nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0xd382c9f6 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xd408ff8c nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xd83db138 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xdc891b0d nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xe06c8c1e nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xf3e77312 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc_digital 0x2af3c7f2 nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x3d3ad37a nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x50c627d1 nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x8c632f98 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x3fa5ebd0 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x46a99f9e pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x4d042c2c pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0x56a11ac0 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x59e560a6 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0xd0993e02 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xf59f4a6f pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xfb62a244 pn_sock_get_port +EXPORT_SYMBOL net/nfc/nci/nci 0xc77ce416 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd25f6d30 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xdddc3a87 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xdf867c27 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nfc 0x1876f1cd nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x2e5498c0 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x3cac38cf nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x4112f4ac nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x5f29bcf2 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x6683ae48 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x715d5ff5 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x753c282c nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7542a2a0 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x78790ae2 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x7a6e8799 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x7c1892f6 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x810d0461 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x84efd16f nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x8cb38e4a nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x8e6de0f1 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x97f5f768 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xa1bfc9d5 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xa2ab8821 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xac1eab4a nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xb9bfcd3f nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xce2a3c6a __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xd7e7f974 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xd80eb9dc nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xeb7b64a9 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc_digital 0x0cc38643 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x13ba9514 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2666ab6b nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x8e141678 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x2168fa5b phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x4f021cac pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x5b283a93 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x5e7f1936 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x63d658d5 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x7584716e pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x77e8d266 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xee0df86a pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x15eb5456 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x191ecaae rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ecf558f rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x225d34e2 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x29f6d3a6 rxrpc_kernel_set_max_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x39029a67 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x4ba6f115 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5a56837b rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5e510586 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x680a59a1 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x89dea612 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8f4d5a37 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9ea9b1f9 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9fe706dd key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa2c46faf rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xb8e03eeb rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc36c7ec3 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc5abf18b rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc5bba97f rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcd4c8186 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xcfeb37ab rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe3c8cfdb rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf03d535f rxrpc_kernel_recv_data -EXPORT_SYMBOL net/sctp/sctp 0x9979ba74 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x0e4a534b __tracepoint_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x0fb0e032 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/rxrpc/rxrpc 0x499c85c1 rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x567626ed rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x57d0d31a rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x685bcf9b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x796f22bb rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x84308891 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9e738a70 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb5a7ce89 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbfb30167 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc099ffa3 rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc53a402 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xde32501d key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xebc6592c rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf42cc449 rxrpc_get_null_key +EXPORT_SYMBOL net/sctp/sctp 0xab332c75 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x08abe7fd __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x1e580f21 __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x3516cf47 __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x286060ab __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x29b3c73b __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x3ac4e1c7 __SCT__tp_func_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x3bcd3bb9 __SCT__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x441ab6bf __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x55dbb8a1 __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x5a6249b5 __tracepoint_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x613ed5b9 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x71ba2315 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x3f947f2f __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x444ad037 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x4a7015df __tracepoint_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x8ceb4eaa __tracepoint_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0xace340a1 __tracepoint_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0xe39fc858 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0xe6bdd655 __traceiter_smcr_link_down -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x59f4b85f gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xbced5167 gss_mech_put -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf8e1dc4b gss_mech_get -EXPORT_SYMBOL net/sunrpc/sunrpc 0xb33e698b xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xd13430a9 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0xfaa3a1d9 svc_pool_stats_open -EXPORT_SYMBOL net/tipc/tipc 0x78d9ac9c tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0x81dd0576 tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0xe8caeab2 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xf7b6fc4b tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tls/tls 0xf3d066f5 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x03cf2ada __cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x04f809a0 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/smc/smc 0x898a18e5 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x92c3d728 __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xacb48db1 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xc6ebcdd6 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xc8d1083e __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1624e111 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb65c1fbb gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xec5125f0 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x44e924a6 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbea3892f svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe4acf4d9 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x021b2647 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x117b7082 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x21095e12 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x94c9fa0e tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x1ccdcd2d tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0632357e cfg80211_del_sta_sinfo EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x091b2a8b cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0788697b cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x0a52a99b cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0aeab54e wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x0af3411b cfg80211_get_drvinfo EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x0ed2ed1f wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x0d1d6cba regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x0efce9c0 cfg80211_get_iftype_ext_capa EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x1696c050 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x181f95bd cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x1200e216 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x13c58e52 ieee80211_get_8023_tunnel_proto +EXPORT_SYMBOL net/wireless/cfg80211 0x1490f0c0 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x17e643d7 nl80211_send_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x197a4035 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x1b8df86e wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x1bf7af95 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x1b6d62c5 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1b82a85a cfg80211_valid_disable_subchannel_bitmap +EXPORT_SYMBOL net/wireless/cfg80211 0x1c4210eb cfg80211_bss_flush EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1dae9145 cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x20a8c5ca ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x226e044d cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x25929ecd cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1f4ed120 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x205c4809 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x248e3211 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x24f5a5ff cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number -EXPORT_SYMBOL net/wireless/cfg80211 0x2936d854 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x34ebe63b wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x35189599 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x289e3a66 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x2914257e cfg80211_links_removed +EXPORT_SYMBOL net/wireless/cfg80211 0x2c2b7a04 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x34445e89 cfg80211_sched_scan_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x384fab32 __cfg80211_alloc_reply_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x389f75eb cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x39bb9c09 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x3b7892a7 cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x3ca36921 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x3f0dc1d6 ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0x3fc92f0d cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x3849c5c3 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x3aca71a1 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x3ae8c017 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x3bb87a59 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd1db7b cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3c083269 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x3c744e95 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x3c86019a cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x3de3d471 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x41cabfc0 cfg80211_inform_bss_data EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x456e6a37 cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x4ae6fa83 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x4cf15bb7 cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x50e8ca1c cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0x51eb5db7 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x51fcefac cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x52507172 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x528abf81 cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x528e97e3 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x52a3b76f cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x54347d3e cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x4abed7d4 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x4bf495d2 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x4f266586 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x53321bc7 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x53b078e0 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x550862be cfg80211_assoc_failure EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x56dd9e52 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x57a2e172 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x587b138d cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x63aac886 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x6722c45d wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x68a50e46 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5a980382 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5c97f1b4 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5cd3a06f cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x5ce7fc9f cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x5dc4f9c5 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x5e6c1f5e cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x63fe9a03 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x64ef78f1 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x681083fa __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x68c358db cfg80211_connect_done EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header -EXPORT_SYMBOL net/wireless/cfg80211 0x6a68bef0 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x6a993ca4 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6a410ac8 regulatory_hint EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6e8edb6f ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0x7262f5d0 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0x72e10c77 ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x72f9d82e cfg80211_external_auth_request -EXPORT_SYMBOL net/wireless/cfg80211 0x73aecbbe cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x7567e531 cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0x76b34729 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x6d28c8a8 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x6df3a050 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x6df522ac cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem -EXPORT_SYMBOL net/wireless/cfg80211 0x7abd255e cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7b39e6ed cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x7b69acc9 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x7c26d2d6 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7aef7a78 cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7d2129fc wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7dcdf45f wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x7eb55da4 ieee80211_get_num_supported_channels EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f185c87 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x7f74c490 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x80b10b97 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x8220d06d cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0x8574c31f cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x8655a3d6 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x8747620e cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x89e40b00 cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0x8d39e071 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x80252fd7 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x8310fea3 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x8493449e cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x85de3f6f wiphy_delayed_work_timer +EXPORT_SYMBOL net/wireless/cfg80211 0x88058a68 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x8953ec53 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x8ca2cbdc cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x92750a54 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x9a22405a cfg80211_disconnected -EXPORT_SYMBOL net/wireless/cfg80211 0x9b4be8da ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x9d197450 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x8ff2c4ff cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x90ac6c80 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9246b462 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x96e5c600 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x98288252 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9c3f40e4 cfg80211_rx_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0xa26751aa cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0xa56bb80b cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xa761c65d cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xabf7c947 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0xac8b3e65 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xae669d21 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xb1b30705 cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0xb620c65c wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xbb54b619 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xbea38754 regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xc17f2001 cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0xc3995d19 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0xc3cb1d82 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x9e8dd665 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x9ebac27d wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9ff9d528 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xa2534bd5 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa3708519 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa9bd46eb cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xaa94688c cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xac8f1af3 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xad822e24 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xad95d4ab cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xaef0a4cc cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xb0ac4573 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xb0b1a918 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xb1167d2f cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb2540773 ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0xb4a268eb __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb5eb918e cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xb8b1926d cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xbabd3032 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xc30b2fba cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc3fb97ca ieee80211_get_response_rate EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc5419b0a regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xc70265b5 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc75db987 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xc8fcb389 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xc9b357fb cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcbf4c96e cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcc6436b8 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xcdc735f6 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0xce50ced3 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xcf461005 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xcfef297c cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0xd179e412 cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xd257aca7 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0xd3d38d37 cfg80211_bss_iter -EXPORT_SYMBOL net/wireless/cfg80211 0xd49f9715 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xced72a99 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xd175df63 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xd245fe63 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xd27881db __cfg80211_radar_event EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd85fccab cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xd6c87a05 cfg80211_defragment_element +EXPORT_SYMBOL net/wireless/cfg80211 0xd7fc414d cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xd8d7773c cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible -EXPORT_SYMBOL net/wireless/cfg80211 0xdb6c0de5 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xdb2a1b9c cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdb573c30 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdfacef9e cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xe0b29a69 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xef3824b7 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xe36e63f7 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xe523c26c cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe68b4d40 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xe6f5d159 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xee1f2fd7 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xf1b42044 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xf36452d5 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0xf3fe2676 ieee80211_is_valid_amsdu EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf41ba6ef cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xf4ec450b cfg80211_rx_control_port EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf93f408e cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0xfb543371 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xfe0d76ae cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0xfe8fb478 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/lib80211 0x26d10d40 lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x4fe9c21d lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x5dd8e39f lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x5e5d5a1a lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xd843089f lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xe2fcf253 lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0x29c2517f ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x5150ffbe snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xfb815b22 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/lib80211 0x3242aedb lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x424d086f lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7191f4ce lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x93b28a17 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd46654f4 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xe35067fb lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0xe601fcd3 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x77a6534a 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 0x23738926 snd_seq_dump_var_event 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 0x459c4192 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x35607148 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5b6f2ea0 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 0x95c1b78a snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x85cd59a8 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa6e19f8e snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xaea88ef5 snd_seq_kernel_client_enqueue EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xc9c114b0 snd_seq_kernel_client_enqueue -EXPORT_SYMBOL sound/core/seq/snd-seq 0xdd5ff809 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 0xf2d60b48 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x74769de9 snd_midi_process_event 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 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x454224b1 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x70758652 snd_midi_event_encode_byte EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x43e0c0e0 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x03023a07 snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x0b8002b5 snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x15d3622f snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x7ff8a21d snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x07aa9584 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x0b2ff1db snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x0d643de6 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x126bfc4f snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x132d17dc snd_device_new +EXPORT_SYMBOL sound/core/snd 0x180bfc2d 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 0x19329c8b snd_seq_root EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1deb6b39 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x2176bca4 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x2207d6ba snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x22a43f5b _snd_ctl_add_follower EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x27e9e302 snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x33f9ee26 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x2ae0afe4 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x2de19ad1 snd_ctl_new1 EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x37027f32 snd_ctl_rename -EXPORT_SYMBOL sound/core/snd 0x37a4b856 snd_card_new EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3995d129 snd_ctl_unregister_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x3b734baa snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0x45f4c590 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x3a10aece snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x3cf363a2 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x4012b9e2 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x404e8963 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x458707f0 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x46a785db snd_ctl_find_id EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x501428e4 snd_card_free -EXPORT_SYMBOL sound/core/snd 0x583df602 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x583f37fe _snd_ctl_add_follower -EXPORT_SYMBOL sound/core/snd 0x5ce8dff7 snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x628e4fbc snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x6663e63a snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x6f432e81 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x5d18ca1d snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x5daf4c54 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x5f5711fd snd_device_register +EXPORT_SYMBOL sound/core/snd 0x6281becb snd_card_free +EXPORT_SYMBOL sound/core/snd 0x641e9504 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x6beec927 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x6edfd074 snd_info_create_card_entry EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x72033735 snd_card_new EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x75efbe53 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0x7bc2b57a snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0x8293b0bb snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0x857ffb13 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x85feb799 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x730dd99d snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x7706607a snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x7e88cd99 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8623b252 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x8924700f snd_ctl_notify EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x99ba7e30 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x913d5970 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x95ced4f7 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x96dade53 snd_ctl_register_ioctl_compat EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa0a2358a snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0xac878912 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0xb01090ff snd_device_free -EXPORT_SYMBOL sound/core/snd 0xb0fe8514 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xa3179a52 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xa8a7fac2 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xacc00626 snd_register_device EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb3618ed1 snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xb38ebeaa snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xb9711d96 snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xbf5793a3 snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0xc4eea002 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0xc4f7c2d6 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xb49b51db snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xbb2a337c snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xc162a32f snd_jack_new EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc80b80fd snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xca6f936e snd_ctl_rename +EXPORT_SYMBOL sound/core/snd 0xca726e7c snd_info_create_module_entry EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcce88bb0 snd_component_add -EXPORT_SYMBOL sound/core/snd 0xd0c8c6fd snd_register_device -EXPORT_SYMBOL sound/core/snd 0xd45498ba snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0xd51baf82 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0xdbecc527 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0xe18470a5 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xe8efee38 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xf04344b4 snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xf3973074 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xf7c5e145 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0xfda50e18 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xff284ce7 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xccf46a2e snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xd87d71e6 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xdbb8df44 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xddcf19ef snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xeb9f78f9 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xf07db47c snd_card_register +EXPORT_SYMBOL sound/core/snd 0xf0a55321 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xf30963bb snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xf8dc4a1c snd_card_set_id EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x7b3ebb23 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xade04d9c snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0x3e631ccf snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x001c7a11 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-compress 0x433d5291 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0x6de526c9 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x990de590 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x006dcc51 snd_dma_alloc_pages_fallback EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x028cf012 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x03fd72a7 snd_pcm_hw_constraint_mask64 EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x07ed0977 snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x0a982173 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x09396e8b snd_pcm_hw_rule_add EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x13b4f019 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x1ab96b72 snd_sgbuf_get_page EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x1e14ab3f snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x295d9be5 snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0x2c3adf59 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0x35dc1948 snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x36a29fa1 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x1f5b4020 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x1f771378 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2dc2695f 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 0x38543c2f snd_pcm_hw_rule_add EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3cd61891 snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0x3e86f589 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x42ebd14b snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x43d10a3a snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x4480edbb snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x48718fe3 snd_pcm_set_sync EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x4fc8a26b snd_pcm_hw_constraint_ratnums 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 0x55483ee5 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x5c8270b4 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x52e8c175 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x552fbdd9 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x5715e5ae snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x58feec83 snd_pcm_set_managed_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x60de7063 snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x6290b957 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5edde620 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x6115377f snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x61fbb03f snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6352a394 snd_sgbuf_get_chunk_size EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x67649d38 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x675aa546 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x67ca5a11 snd_pcm_period_elapsed EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x6da43e50 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x6e002bc5 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6b57dd39 snd_pcm_hw_constraint_pow2 EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6f7db673 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x7915c97a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x710567e9 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x7580f169 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x75dee15e snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x7947a16d snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x7dc689b7 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x7ecd1a35 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x81002278 snd_pcm_hw_constraint_integer EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8747281f snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0x89534b30 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x8a2b667f snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x8c4be9c0 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x8f0b5d1f snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x9128739c snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x91f32268 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x8e2244d6 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x921c42b4 __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x94ef96e8 snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x97518075 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x98982b5d snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x98d2af4a snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xa15f56bf snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0xa2acad1a snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa49eb4f1 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x9e587548 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa1c5f200 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa47c928b snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xa5a06770 snd_pcm_stop EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa86b845e snd_pcm_lib_malloc_pages EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb37408de snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xb5e88449 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xadead4f0 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb7f8cfb6 snd_pcm_mmap_data EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xc00e0e58 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xc749e06d snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xc759cc0d snd_pcm_set_ops -EXPORT_SYMBOL sound/core/snd-pcm 0xcc2921c2 snd_pcm_lib_mmap_iomem -EXPORT_SYMBOL sound/core/snd-pcm 0xd4279625 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0xd77bd4ac snd_dma_alloc_dir_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xdff65117 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xbbe5b722 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc20e6458 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xc2bd1170 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xc3de0abb snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xd459ade6 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xd4a2f3a0 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdb175fec snd_dma_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xe6f08a90 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xe9096ab3 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0xed92d200 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0xf90a0f04 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xe7b39e65 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xfc906e56 snd_pcm_create_iec958_consumer EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-pcm 0xffffce11 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-rawmidi 0x14f6513b snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x19c2f0da snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x1e294bf5 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x219acde8 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x234282f8 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x24a55da7 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x272762cd snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0x343a33b8 snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x394e77ff snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7161bade snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0x77710e4c snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x80259602 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa2ba5818 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb267b1f5 snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbb6c0c21 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xc226eb1b snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd0a3a5a5 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd18ae857 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x17f871e4 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x26be14b1 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x330e24f6 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x417e1624 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4963b134 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4a4088e5 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x63377857 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x840a1189 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8500dd83 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8fc04027 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc3887c75 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc91bdb92 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xca3fb427 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdcf060d8 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9840315 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xed5cff07 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf562568d snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfd091fc3 snd_rawmidi_drain_input EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit -EXPORT_SYMBOL sound/core/snd-seq-device 0x1816c356 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x239534be snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-timer 0x0bbcb16e snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x11e1b04d snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x237a6542 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x408a2596 snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x42d6dac1 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x5341fbcf snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x58da31bb snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x64cf69fe snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x8cddb936 snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x8f117351 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x9c4eac0a snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xacd3e3af snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xcdd0a453 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0xdd51ba40 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xe3903d69 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x05ce0624 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x10433a50 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x15bb24da snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x3ffbd662 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x48a7c9ce snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x59a66784 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x8aea1556 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x8c6506f1 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xb5124359 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xcabad084 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xcef5e001 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe53b1e60 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xebba1997 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xef6cedd0 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xfcbc9a55 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 0xb5e49250 snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc8c6bec9 snd_mpu401_uart_new EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1b71b021 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1f2934fa snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x51e960bf snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x54347aec snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7d3fb4df snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xae9d7598 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb132bef5 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xba149904 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc8872059 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x050180bf snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x11066f46 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1b1bb333 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x709b9ad0 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x82607716 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9260166d snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x97162608 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa6c7ebef snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xba208e0a snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf9af5439 snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1bfeaf92 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 0x799bc41f snd_vx_dsp_load -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x814ffc36 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x903fe067 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9fca8548 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa78b288c snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xaf569281 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb8fd4fb1 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc3020222 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2b9b5c26 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x54c561a8 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6f068b73 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd0fb6fec snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd2a547df snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xddcbdb4c snd_vx_resume EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x089b4a6a fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11bf4e6b cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1dbae58b amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf2149ddf snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfce2f804 snd_vx_setup_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a406148 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x139337e2 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13f51282 iso_packets_buffer_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x217029dc amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x425b5344 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43ea5093 amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45e45b48 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47e0398d cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b1a406e avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x206a718d cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2795e536 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c226d4a fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37077092 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3f711b6a cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42779925 amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5fe8c8d5 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x612928c7 amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8bef5a2a fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d1af55c cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9017392d avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9530373f amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98b18dd6 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c4d8395 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1c0d448 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa76ceaaf fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa90a5156 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xada67a7b amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xadacf9fa snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3672e88 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd639c3c cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcff31e3e amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0b4471a amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe675c7d3 fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe7a61d73 cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf4564f58 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a4b12f3 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6414cc6a fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69008f84 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fa3960a cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x840199ef fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8460fc1d amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a82ad74 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d4389d4 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a747c53 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9cdadbf6 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa54f8b28 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabfd1c00 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc3a49e06 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7a924c7 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8949436 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd83a0eb9 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe24db774 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4e3825b fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2396376 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcfe5b32 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x070e9794 intel_nhlt_get_endpoint_blob EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type -EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x45474cd2 intel_nhlt_get_endpoint_blob EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb7b836b3 intel_nhlt_ssp_mclk_mask -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe5dfee39 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf5def415 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0bc61ba2 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0d432b03 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3b751b86 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x94709c7c snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbdfd8e35 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd332a362 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdb8898e9 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe3e22f5a snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x430ee3ed snd_ak4117_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x457ad575 snd_ak4117_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5f52235b snd_ak4117_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x67ad46f4 snd_ak4117_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x79ea3c2c snd_ak4117_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd20792af snd_ak4117_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x39a5b189 snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8068aaed snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe279927c snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf114ecfa snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x11ef87e5 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6834951f snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0ee28e4c snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x19d251a1 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2e841ab4 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4d8f9fe2 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7a5a6a03 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8c2b1c35 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x28db1864 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x5c8c1a1f snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x647b391b snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x69041c04 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xb1672ff3 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc087418d snd_i2c_sendbytes -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0b0b429e snd_sbdsp_command -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1925021c snd_sbdsp_create -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3df83011 snd_sbmixer_write -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x451e4b02 snd_sbdsp_reset -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x55ec58ed snd_sbmixer_suspend -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5e90e873 snd_sbmixer_read -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb6aeb7ee snd_sbmixer_new -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc0e97a62 snd_sbmixer_resume -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc4e879b0 snd_sbmixer_add_ctl -EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfa190efc snd_sbdsp_get_byte -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x09852b9e snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x10efd65e snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2cbc061e snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d387a75 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2d3984f5 snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3b79d743 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4449d9da snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x58d33705 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x636a98db snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x63f0b9b6 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7f808bf9 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb1ac8801 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb91cd24f snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xca787d56 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda564102 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdc365a50 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf32ea173 snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x8e2f0a90 hpi_send_recv -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0f0a33d0 snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2e5fe58e snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x72cffa48 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x773b04ae snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x92426b7b snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa1134fa1 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd1c406ff snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd4619f17 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xffbd82d9 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6af66f44 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xcb57615a snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd96ddea3 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0480cb47 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13a46e2f oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x26737187 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2d4f72b8 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x312a96d9 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x36828b85 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x52f4a3d0 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5a8c00c5 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6a5e72e9 oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d756db2 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d93a5f5 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x90806b59 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2a488a2 oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb606d8c3 oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xce56a202 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd0e851ed oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda7e4aa7 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc5b4872 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeedd5890 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa47c281 oxygen_write32 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x08fb0333 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9bd99040 snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbef5b38c snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcf3b614c snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe53cda19 snd_trident_start_voice +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2c892c84 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5f5542a2 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x22eef786 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x393735be snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7cc41bd8 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x93a8851e snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa474e722 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd2cf62d9 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd48be26e snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd54ff349 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x19928c1c snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5703369f snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x669bc6b5 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa0a98ae5 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc8c76612 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd375f00d snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x05ffe124 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x11d37a46 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5e487183 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xef25fd5c snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x47c8d4aa snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xcc44d07d snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0cd829c2 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x51eb1bf9 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5880f49e snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x61ba70fa snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb35ad03f snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbec3b80a snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-i2c 0x253e0f2a snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5e89efcb snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc09ea522 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdd5a752b snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe3ac0f39 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfa4617cd snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3b2acc1f snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x41d6732d snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x42a94295 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5f72d3ee snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9ed2b490 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbf684a54 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc09d4105 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd5794834 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdc88dc30 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe01a3821 snd_sbmixer_new +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x00a32e5a snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x044b69e7 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x098ff786 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12108d96 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1ce1e4ab snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1d477fe4 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x285f9a14 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a00a1cc snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40a527ee snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4aee955d snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4b2ebfdb snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6172af29 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7286eedd snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7ae4240d snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9bfbc13d snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad00734f snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf6034557 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xf21b6483 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x06f70ea2 snd_emu10k1_ptr_write_multiple +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2b21dab2 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2f3e212b snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x56156ab8 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x73eb6546 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x770532e1 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb1450f12 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc0febccf snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xef9da9cb snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf7ce63ef snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x140fa76a snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4a8010d7 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe3ab9eed snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x03d0ada7 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0d0491ac oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3910e2de oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5389df33 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x58860a3e oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7889640d oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x83c0bab1 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xac93ed29 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbd6f9114 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbdca2acd oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6dcc9e6 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xca0241db oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd3a051da oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd7d281b9 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe265959b oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe6271f5d oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeae6b68e oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf2142c62 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf4b3ca92 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfcbefa57 oxygen_read16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x46235174 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6eee38bd snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x71c48c3a snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x89bb488b snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe8996d53 snd_trident_free_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x8fafb4d5 snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xcbbf67b4 snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xd9ce37e8 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xf8d27351 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xbaf794a1 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x06d76276 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x9d4796fb pcm3060_probe +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x84261a56 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xc1ea0c62 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xce1b7362 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xc88f4d2c adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x014e6944 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x8eb7993c pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa233d676 pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x66c9eeb0 tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x9a6f0394 tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x109260d1 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x26ddefa2 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x56da92c5 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7da34d6d aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x972623ec aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x099b23cd tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x4f37e965 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0f251c02 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9156e19f aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xdf51b676 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xaa46f171 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xafab01db aic3x_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x5d44b808 wcd_dt_parse_mbhc_data -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x5ff42ffe wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x77b8abc7 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x83867b3a wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xc2f497fa wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xca86cb50 wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x07328144 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x292ce630 fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x4e1f5399 fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/snd-soc-core 0x96054e50 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x024c6251 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x064aca6a snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x13eacdcb snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x150c89ff sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17db3cee snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x19b34018 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1a03d30a snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x22987b0c sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x229f84db snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c9a61ea snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34cc054a snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x1c604066 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x27f78bc1 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xc9c28a65 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/snd-soc-core 0x1909d6dc snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x004f7757 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0226cf77 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x094be0cf snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ab0ad2b snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11d459f4 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x279fc9a3 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28d8e6ee snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a908506 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2ab2ce8c sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c626ab2 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30748cff sof_block_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x399425f4 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x39af2d41 snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3cb8255c sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d900e87 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3e772e47 sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40827d27 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x438fef90 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4496c34a sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f525ccd sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5cf25475 snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6019ccea snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x695169bc snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a1e4030 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ac9a363 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d3433fa sof_ipc4_set_pipeline_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70076dc0 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x75d3ba19 snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x78eacc5c sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x815405fb sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bd9e9e9 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8eba9bef snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90489534 sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9de8d668 sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5aa1799 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7077f31 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac445b01 sof_ipc_set_get_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac53f98d snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb39b23be snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb74fb48e snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc2a4793b sof_set_stream_data_offset -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3424f4c sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc3d16817 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc658817b sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb321931 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb7cc941 sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcf4579dc sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5a57231 sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5a98990 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd98eee03 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdc89caac sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xddb235c8 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xeb3d8dbf sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1291f10 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2b6bbfb sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc4b998b snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe47fc89 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x6f663022 snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x066e77fa sound_class -EXPORT_SYMBOL sound/soundcore 0x145a8779 register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0x1e40543d register_sound_special -EXPORT_SYMBOL sound/soundcore 0x35e4daac register_sound_dsp +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38c7f198 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a240ab3 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3af83633 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c07c833 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5733f4d2 sof_ipc3_do_rx_work +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x63fc3fea sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x686fb83e sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69524c40 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69b20297 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6de35ab1 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fc3bb27 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x71ae9a34 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x749444dd snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x75a233a2 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x794d7885 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7b706a2d snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d1e405e snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d87a084 sof_ipc4_set_pipeline_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e14075a sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86c06414 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86c0be08 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98ac8577 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x999d956d sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa064aac6 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa53502a3 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5ac4a6b snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad09222b snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb75b3999 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8cc8196 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbb49d361 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbce37158 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd4a410e snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd0b3aa23 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd57f7e85 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe27fa8d0 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe544ca2f snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe548b8e3 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xebf618d6 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef8c2f82 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef9a7500 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf298e590 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf5072022 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9dd365e snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa505c46 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfcb19f51 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe2efeec sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe429d43 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x82a91e0f snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x46d0b13e register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x60ff03e8 register_sound_special EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special -EXPORT_SYMBOL sound/soundcore 0xbb4f505d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xa6904e6a register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xb5497012 register_sound_dsp EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x33290115 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x3feadb3d snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4fa6a9fa snd_emux_free +EXPORT_SYMBOL sound/soundcore 0xcff792c7 sound_class +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5d607630 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 0x8269b17d snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb2a59795 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe22b0a2f snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7647a0c5 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb5f3c7d9 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbd397fbe snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd87e6b86 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xff8d7be8 snd_emux_free EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6347,5720 +6342,5799 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __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 0x80df2253 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x6f4d0bfa __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 0x00066a3c tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x0009c74c scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x0003e8fe dmam_pool_create EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x001af985 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x002d8c54 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x0067d1dc to_ndd -EXPORT_SYMBOL vmlinux 0x006bd573 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x006ed6e5 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0x0075152f generic_fadvise -EXPORT_SYMBOL vmlinux 0x009c4365 devm_release_resource -EXPORT_SYMBOL vmlinux 0x009e6e51 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x002c6c4f ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x00304909 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x003f7e33 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x0040912d ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x0044be59 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x0058a53a acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x006c2c29 skb_clone +EXPORT_SYMBOL vmlinux 0x007a5833 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x00863f5d lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x0086ed5f bio_copy_data +EXPORT_SYMBOL vmlinux 0x008c7c8f pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x009d16b6 __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode -EXPORT_SYMBOL vmlinux 0x00a8b37b scsi_block_requests EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00c377fa blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x00bc0c60 dup_iter EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e98c5b phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x00e11654 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x00e398ba netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x00e7d555 block_invalidate_folio EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010f410b phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0x0114eed5 sock_alloc EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x01286de8 simple_rmdir -EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x01470db9 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x01216126 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x014527b1 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01483876 sget -EXPORT_SYMBOL vmlinux 0x014a5fdc skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x01512913 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x01634f0f iget_failed +EXPORT_SYMBOL vmlinux 0x014e9cc0 uart_add_one_port EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x01703d57 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x016f4bef udp_set_csum +EXPORT_SYMBOL vmlinux 0x017508c4 block_write_full_page EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017b86bc ptp_find_pin -EXPORT_SYMBOL vmlinux 0x017bb47e dev_mc_init +EXPORT_SYMBOL vmlinux 0x017bb807 sock_set_mark EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x0193961b kernel_accept -EXPORT_SYMBOL vmlinux 0x01a3068f genphy_resume -EXPORT_SYMBOL vmlinux 0x01aa6f50 thread_group_exited +EXPORT_SYMBOL vmlinux 0x01a31a00 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x01b08b33 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c8a8e8 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x01d6a1c3 vmalloc_to_page EXPORT_SYMBOL vmlinux 0x01e61d6c __x86_indirect_call_thunk_r12 -EXPORT_SYMBOL vmlinux 0x01eb066a netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x0200f4f3 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x01e75e7a ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x01ff8077 is_nd_pfn EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x0219133d bd_abort_claiming EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x024b52cb vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0x0251d8d5 md_integrity_register -EXPORT_SYMBOL vmlinux 0x025b7375 dcb_getapp -EXPORT_SYMBOL vmlinux 0x025ecdff pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x024a5697 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0259d8b5 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x02636da9 dm_register_target EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x02886465 qdisc_offload_graft_helper -EXPORT_SYMBOL vmlinux 0x028f9892 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x029666db scsi_register_driver +EXPORT_SYMBOL vmlinux 0x0288ce03 __mdiobus_register EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a3efa7 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x029dd1c2 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x02ba1187 vm_zone_stat EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x02c7bc4e init_net -EXPORT_SYMBOL vmlinux 0x02ceab42 dev_lstats_read -EXPORT_SYMBOL vmlinux 0x02d6bd3f xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x02d99bdc __tracepoint_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x02ef4c16 fasync_helper -EXPORT_SYMBOL vmlinux 0x02f0875d sg_miter_next -EXPORT_SYMBOL vmlinux 0x0310304f setattr_prepare -EXPORT_SYMBOL vmlinux 0x032ad9d4 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x02cce8d1 phy_stop +EXPORT_SYMBOL vmlinux 0x02d5221b rtnl_notify +EXPORT_SYMBOL vmlinux 0x02de1259 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x02e0db9f __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x02e3db8d sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x02ea3095 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x02ec15ad param_get_int +EXPORT_SYMBOL vmlinux 0x02ec6751 dquot_initialize +EXPORT_SYMBOL vmlinux 0x03147df9 skb_ext_add +EXPORT_SYMBOL vmlinux 0x032a1557 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x032ec647 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x0334a42f rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0336fa2c flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x033acbd4 tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0x033b464c send_sig_info -EXPORT_SYMBOL vmlinux 0x03537ce5 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x03387b27 phy_get_pause +EXPORT_SYMBOL vmlinux 0x03455608 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x034beb7c cdrom_open +EXPORT_SYMBOL vmlinux 0x03561c68 retire_super +EXPORT_SYMBOL vmlinux 0x035d25ab memcg_kmem_online_key EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0362f9a8 __x86_indirect_thunk_r12 EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x036cd3bd __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x037d61bd clkdev_add -EXPORT_SYMBOL vmlinux 0x037d71fc seq_putc -EXPORT_SYMBOL vmlinux 0x037fcee4 __destroy_inode +EXPORT_SYMBOL vmlinux 0x037ff628 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0382ffa8 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x0390d7b3 ip6tun_encaps EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03ad4449 i2c_del_adapter -EXPORT_SYMBOL vmlinux 0x03b303d7 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x03b429fc __serio_register_port +EXPORT_SYMBOL vmlinux 0x03a01fa5 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03b8a1ac nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03c3da30 param_ops_charp -EXPORT_SYMBOL vmlinux 0x03c5731c mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x03f722cd n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x03bc48c1 sock_no_linger +EXPORT_SYMBOL vmlinux 0x03d68131 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x03e9ab76 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x03ee009e ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x03f07179 __bio_advance +EXPORT_SYMBOL vmlinux 0x03f9d7ce alloc_buffer_head EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0403b661 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0x040c5787 input_match_device_id +EXPORT_SYMBOL vmlinux 0x041c10ff __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x041d6f0b xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x042fac6f iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x04328dc3 try_to_free_buffers EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04446401 thread_group_exited +EXPORT_SYMBOL vmlinux 0x0445ca84 kobject_add EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x045f4cd4 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x046d8e8d xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x04507e0b mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x045a0136 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x0461f95d xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x04789d34 __nla_put_64bit EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0479b816 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x04adc2b8 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x04a7ff97 dev_addr_del +EXPORT_SYMBOL vmlinux 0x04b74936 setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x04bccf2e pci_setup_cardbus EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04cf6d97 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04e47e14 dev_trans_start EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04fc220a tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x05009866 pps_register_source EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x051322cd inode_init_always -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x0519f110 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05331974 agp_free_memory EXPORT_SYMBOL vmlinux 0x053671d4 amd_iommu_snp_en -EXPORT_SYMBOL vmlinux 0x053bfbfc trace_event_printf EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x05468b75 bio_uninit +EXPORT_SYMBOL vmlinux 0x055049a2 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x0558a5c7 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x0574827c rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x057839c0 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x0598734d filemap_get_folios_contig -EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x05cd852e dm_table_get_md -EXPORT_SYMBOL vmlinux 0x05ceb868 tcp_child_process -EXPORT_SYMBOL vmlinux 0x05f02d51 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x05f20b7b nla_reserve -EXPORT_SYMBOL vmlinux 0x0600f757 tty_write_room +EXPORT_SYMBOL vmlinux 0x05710760 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0575da12 zap_page_range_single +EXPORT_SYMBOL vmlinux 0x058803b4 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x05b7dc0a vme_irq_free +EXPORT_SYMBOL vmlinux 0x05c02e74 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x05d36d2f seq_vprintf +EXPORT_SYMBOL vmlinux 0x05e1119f xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x05e3aa4a pci_get_device +EXPORT_SYMBOL vmlinux 0x05ede955 platform_get_ethdev_address EXPORT_SYMBOL vmlinux 0x06052f8d __memmove EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner -EXPORT_SYMBOL vmlinux 0x061468ff ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x0612d446 uart_get_baud_rate EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x062b4a47 get_fs_type -EXPORT_SYMBOL vmlinux 0x062d304c inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x062a55c8 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063ec647 watchdog_unregister_governor -EXPORT_SYMBOL vmlinux 0x065f3e4c netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x06362434 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x06463b7e fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x0666488e folio_mark_dirty EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066f64e1 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x067e541a dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x0696f502 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x06992848 __bread_gfp +EXPORT_SYMBOL vmlinux 0x066c646b get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x06725faf _copy_from_iter EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 -EXPORT_SYMBOL vmlinux 0x06ab3568 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x06adad7b dma_unmap_resource EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06c3f824 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0x06c771b5 nd_device_notify -EXPORT_SYMBOL vmlinux 0x06cb6c4f bio_chain -EXPORT_SYMBOL vmlinux 0x06cf254a d_obtain_root EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06ef2bf3 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x07062302 __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x06dd2315 proc_remove +EXPORT_SYMBOL vmlinux 0x06ddd9eb kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x06e03b81 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x06fb9c35 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x06fda13d netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x0710f2a9 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x071978ec __fs_parse -EXPORT_SYMBOL vmlinux 0x071c11ee ihold +EXPORT_SYMBOL vmlinux 0x070c84a9 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x0725663c ptp_clock_index +EXPORT_SYMBOL vmlinux 0x072a9568 dev_mc_del EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x0736a855 block_dirty_folio -EXPORT_SYMBOL vmlinux 0x0744d91f inet6_add_offload EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x076e2701 __d_drop -EXPORT_SYMBOL vmlinux 0x07750acb xfrm_register_type -EXPORT_SYMBOL vmlinux 0x077cfd85 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x0780a7e2 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x079f7cbf tcp_read_sock -EXPORT_SYMBOL vmlinux 0x07a268fe tcp_sendpage -EXPORT_SYMBOL vmlinux 0x07a542ec nd_dax_probe +EXPORT_SYMBOL vmlinux 0x074fe63e ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x075e6546 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x07645306 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x076d8696 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x078f4db9 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x079af438 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x079fd048 crypto_sha3_update +EXPORT_SYMBOL vmlinux 0x07a79595 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07af5343 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x07b783a8 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x07b883c8 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x07c31a55 security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x07c91bb0 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x07b9b4af phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x07cc55d2 tcp_recv_skb EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07e030fd md_set_array_sectors -EXPORT_SYMBOL vmlinux 0x07e3f40c pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x07ecfcd2 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x07d37683 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0809fcab phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x080dece3 inet_del_protocol EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x0816365d inet_sendmsg -EXPORT_SYMBOL vmlinux 0x0823e9ce block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x08267cc3 md_bitmap_free -EXPORT_SYMBOL vmlinux 0x0826b590 elv_rb_add -EXPORT_SYMBOL vmlinux 0x0829ee94 pcim_iounmap_regions EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses -EXPORT_SYMBOL vmlinux 0x08336bb2 padata_do_serial -EXPORT_SYMBOL vmlinux 0x0833a072 filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x0833ad24 pps_lookup_dev EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x0852a43c agp_find_bridge -EXPORT_SYMBOL vmlinux 0x0867264b dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x08691503 ip_frag_init -EXPORT_SYMBOL vmlinux 0x08907d67 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x08b34eea d_mark_dontcache -EXPORT_SYMBOL vmlinux 0x08bd53d2 pci_free_irq -EXPORT_SYMBOL vmlinux 0x08f57122 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit +EXPORT_SYMBOL vmlinux 0x087223a8 skb_expand_head +EXPORT_SYMBOL vmlinux 0x089a9723 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x08a990fc remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x08b0da39 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x08be84e5 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x08d55638 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x090fb511 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x09133fe6 of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x094d45c3 agp_generic_insert_memory -EXPORT_SYMBOL vmlinux 0x0962078f zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x095b5775 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x096344c2 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x0966e107 __x86_indirect_call_thunk_r9 -EXPORT_SYMBOL vmlinux 0x096dfa00 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x096cd61c config_item_get EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x09799e03 device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x0981bced pci_set_master -EXPORT_SYMBOL vmlinux 0x098ac534 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x0976cdcf ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x099dd1e0 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x09a59eca free_netdev -EXPORT_SYMBOL vmlinux 0x09b03ea4 xfrm_input -EXPORT_SYMBOL vmlinux 0x09b9998d folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x0990d6e2 init_net +EXPORT_SYMBOL vmlinux 0x0991b5e1 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x09b7571b ata_print_version EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions -EXPORT_SYMBOL vmlinux 0x09d77d44 __skb_ext_del EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09e0edb2 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x09e3b2a9 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x09f11bdb xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x09eb1414 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x09ecb781 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x09f315cc set_pages_uc +EXPORT_SYMBOL vmlinux 0x0a0127c3 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a08ada2 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a19b956 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x0a125b8a may_umount +EXPORT_SYMBOL vmlinux 0x0a13a828 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x0a18422d flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a25a1c0 arp_send -EXPORT_SYMBOL vmlinux 0x0a2f54df input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x0a3914a4 amd_iommu_complete_ppr -EXPORT_SYMBOL vmlinux 0x0a4057cb bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x0a43ced2 find_vma -EXPORT_SYMBOL vmlinux 0x0a5f394b tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x0a650cfa input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0x0a679198 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x0a707ad4 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x0a34f5d0 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x0a34fa7e netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x0a36e8bd nd_btt_version +EXPORT_SYMBOL vmlinux 0x0a3ef768 pci_enable_device +EXPORT_SYMBOL vmlinux 0x0a4e4f07 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x0a623a55 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier -EXPORT_SYMBOL vmlinux 0x0a775351 pmem_should_map_pages EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0x0a851164 get_watch_queue +EXPORT_SYMBOL vmlinux 0x0a89c7dd devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x0a8d220f security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x0a9ba04f srso_untrain_ret EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa551c6 twl6040_power EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab24ecd ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x0ab9f222 km_state_notify +EXPORT_SYMBOL vmlinux 0x0aafd7a5 param_ops_string EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0adcf4f9 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x0affb012 md_bitmap_sync_with_cluster -EXPORT_SYMBOL vmlinux 0x0b0fea1e max8998_update_reg -EXPORT_SYMBOL vmlinux 0x0b13fc3e scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x0ad56028 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x0ae9dce8 sk_wait_data +EXPORT_SYMBOL vmlinux 0x0aedd9b0 _dev_alert +EXPORT_SYMBOL vmlinux 0x0afb186a dst_release +EXPORT_SYMBOL vmlinux 0x0b040c93 pci_bus_write_config_word EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b202e53 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b49e272 nf_log_unregister -EXPORT_SYMBOL vmlinux 0x0b50bcf8 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x0b5eff3e fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x0b362c78 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0b520062 dcb_setrewr +EXPORT_SYMBOL vmlinux 0x0b56460c read_cache_page EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b695557 __neigh_event_send EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b86755d phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x0b88bc3c __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x0b96acc8 skb_copy +EXPORT_SYMBOL vmlinux 0x0b9caa48 nf_log_unregister EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0bb258f1 tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x0bb2f61a md_register_thread +EXPORT_SYMBOL vmlinux 0x0ba48e27 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x0bab1a39 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x0bb5dd4a dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bcfab6a devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x0be45f3c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x0be7639e tcp_read_done +EXPORT_SYMBOL vmlinux 0x0bebfc03 tcf_idr_search EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0bfefb1b devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x0c21dcb1 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0x0c22d6cf tcp_filter +EXPORT_SYMBOL vmlinux 0x0c145bfb f_setown EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c276e13 tcf_em_register +EXPORT_SYMBOL vmlinux 0x0c2cdef4 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c47484a netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x0c4c32b8 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x0c3e9486 sk_common_release +EXPORT_SYMBOL vmlinux 0x0c463982 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x0c50d5dd tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x0c532b56 pnp_register_card_driver EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c61aabb tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x0c694a09 napi_enable EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c9cbf8a skb_expand_head -EXPORT_SYMBOL vmlinux 0x0ca74d98 pps_register_source -EXPORT_SYMBOL vmlinux 0x0cc0094b tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x0c6d66ff dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0ca162c2 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x0cb2843d get_tree_single EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cd0ed49 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x0cd40d19 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x0ccc4ace dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd7cc63 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x0cdba186 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x0cdc65b0 tcp_connect EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cf9645c eth_header -EXPORT_SYMBOL vmlinux 0x0cfcf5c7 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x0cfe3e72 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x0cdd6c69 config_item_put +EXPORT_SYMBOL vmlinux 0x0cee6b91 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x0cf4a8b9 fc_mount +EXPORT_SYMBOL vmlinux 0x0d03d8ce mmc_detect_change +EXPORT_SYMBOL vmlinux 0x0d049235 d_obtain_alias EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d0a8e13 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x0d22fffe xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0d31b929 input_unregister_handle EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d507070 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x0d50c731 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0d38b833 mark_page_accessed EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d788c83 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x0d855680 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0da6fb6a __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x0db384c3 key_unlink -EXPORT_SYMBOL vmlinux 0x0dcce5c3 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x0ddc9ab2 ps2_handle_ack -EXPORT_SYMBOL vmlinux 0x0de252b3 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x0deacc6c xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x0df990e3 __fput_sync -EXPORT_SYMBOL vmlinux 0x0e0310b2 tcp_close -EXPORT_SYMBOL vmlinux 0x0e0b24e9 genlmsg_put -EXPORT_SYMBOL vmlinux 0x0e0fb248 folio_alloc +EXPORT_SYMBOL vmlinux 0x0d72f1c6 phy_driver_register +EXPORT_SYMBOL vmlinux 0x0d837b00 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x0da37acd dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x0da716d5 poll_initwait +EXPORT_SYMBOL vmlinux 0x0daa98e8 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0db8f8e6 bio_endio +EXPORT_SYMBOL vmlinux 0x0deb72fc __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0decc61f fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x0df62980 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x0e0550bc dev_remove_offload EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e199525 xp_free EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node -EXPORT_SYMBOL vmlinux 0x0e357bcc inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x0e29f684 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x0e2e240e napi_gro_receive +EXPORT_SYMBOL vmlinux 0x0e3277cd vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x0e3f8873 phy_start_cable_test EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e5d72f0 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x0e6bde29 register_quota_format -EXPORT_SYMBOL vmlinux 0x0e76e7cf tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0x0e81a9fb __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x0e956674 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x0e9902c0 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x0e592f39 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x0e6387c0 i2c_find_device_by_fwnode +EXPORT_SYMBOL vmlinux 0x0e65ea94 phy_find_first +EXPORT_SYMBOL vmlinux 0x0e82aae4 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x0e8dbe6e uart_register_driver +EXPORT_SYMBOL vmlinux 0x0e8ef995 kernel_write +EXPORT_SYMBOL vmlinux 0x0e957ab6 agp_bind_memory EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0ea7e980 get_user_pages +EXPORT_SYMBOL vmlinux 0x0ead675d clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x0eb418a2 backlight_force_update EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ecafe4a param_set_int -EXPORT_SYMBOL vmlinux 0x0ee6ed50 seq_pad +EXPORT_SYMBOL vmlinux 0x0ee15632 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x0eeae72d finalize_exec +EXPORT_SYMBOL vmlinux 0x0f025c08 set_blocksize EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f134a0b __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x0f0a6959 noop_fsync EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f25d771 vme_irq_generate -EXPORT_SYMBOL vmlinux 0x0f28670e dev_load -EXPORT_SYMBOL vmlinux 0x0f30f582 block_invalidate_folio -EXPORT_SYMBOL vmlinux 0x0f36f806 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x0f1e1a1e skb_checksum +EXPORT_SYMBOL vmlinux 0x0f1edf4f netdev_err EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f66f2a6 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x0f6e833c mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x0f8016a5 skb_push +EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store +EXPORT_SYMBOL vmlinux 0x0f827abc ipv4_specific +EXPORT_SYMBOL vmlinux 0x0f852f4e netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9b6fb6 __seq_open_private -EXPORT_SYMBOL vmlinux 0x0fa8a732 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x0f92195e param_ops_ushort +EXPORT_SYMBOL vmlinux 0x0f9fe992 sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0x0fa4dc84 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fcbee15 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x0fd20dcd xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0fd7273c get_tree_nodev EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0fe53f2b inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x0ff15ed0 __napi_schedule -EXPORT_SYMBOL vmlinux 0x0ff2fa56 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x0fe182f8 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x0ff244fa kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x100c571b mark_page_accessed -EXPORT_SYMBOL vmlinux 0x10145cc8 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x10228132 neigh_xmit -EXPORT_SYMBOL vmlinux 0x102ae06b ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x100668d7 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x1008fc3a bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x100bddf8 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x100d791d scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x1015e50d mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x101d7ff5 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x102fb5e0 pci_enable_msi EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x104ad007 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x10384e25 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1046099b xfrm_input EXPORT_SYMBOL vmlinux 0x1057a279 bsearch -EXPORT_SYMBOL vmlinux 0x105b4f13 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x106202ec unregister_shrinker +EXPORT_SYMBOL vmlinux 0x105880ff fuse_mount_destroy EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107dd046 __x86_indirect_call_thunk_r8 EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1091efed bio_add_page -EXPORT_SYMBOL vmlinux 0x109e853e pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x10a19ef3 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x10bc133c mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x10cad96e fs_param_is_path -EXPORT_SYMBOL vmlinux 0x10d1216a fwnode_mdiobus_register_phy -EXPORT_SYMBOL vmlinux 0x10d8f435 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x10abd8e1 param_get_hexint +EXPORT_SYMBOL vmlinux 0x10cfd1e4 input_close_device EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x10ef72f4 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x10e70fa1 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x10ec2d13 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x10f83c50 param_get_ullong +EXPORT_SYMBOL vmlinux 0x10fd03ac blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x1101ec6b __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x11063770 write_cache_pages EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x11097c60 uart_resume_port -EXPORT_SYMBOL vmlinux 0x111c7f7c vga_put -EXPORT_SYMBOL vmlinux 0x1120c6af __folio_cancel_dirty -EXPORT_SYMBOL vmlinux 0x1127f9a4 netif_rx -EXPORT_SYMBOL vmlinux 0x112b8495 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x11442ce3 fget_raw -EXPORT_SYMBOL vmlinux 0x114b9263 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x11586998 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x115feded phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x1165af52 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0x1166b2aa netif_receive_skb +EXPORT_SYMBOL vmlinux 0x111a28fb __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x111ff0a4 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x11265fa2 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x112898ce xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0x112956c8 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x112ea092 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x115cc221 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x11636dc0 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x117039b2 phy_get_eee_err EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x117bcdce nf_log_unset -EXPORT_SYMBOL vmlinux 0x1195e71a tcf_qevent_destroy -EXPORT_SYMBOL vmlinux 0x11964919 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x119a203b kill_block_super -EXPORT_SYMBOL vmlinux 0x11bb99d3 nf_log_trace +EXPORT_SYMBOL vmlinux 0x118028c8 tcp_req_err +EXPORT_SYMBOL vmlinux 0x11894281 d_delete +EXPORT_SYMBOL vmlinux 0x1190ca05 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x119f9c63 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x11b29828 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x11c32412 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x11c96b9b devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x11de1d57 pci_save_state EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x12136410 pci_find_resource -EXPORT_SYMBOL vmlinux 0x1213a2ef netdev_state_change -EXPORT_SYMBOL vmlinux 0x121c614a fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x120b8ad0 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x122c3a7e _printk -EXPORT_SYMBOL vmlinux 0x123ac37c xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x12448542 netlink_unicast -EXPORT_SYMBOL vmlinux 0x1247daa1 task_lookup_next_fd_rcu -EXPORT_SYMBOL vmlinux 0x124913ec tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x122ece3b padata_free_shell +EXPORT_SYMBOL vmlinux 0x12355d70 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x124b94e8 ihold EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x125a8356 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x125203b8 input_set_keycode +EXPORT_SYMBOL vmlinux 0x126ce7d9 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x12813bf2 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x128decea kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x12a0402c migrate_folio -EXPORT_SYMBOL vmlinux 0x12b99b91 _dev_warn +EXPORT_SYMBOL vmlinux 0x1287a883 kill_pgrp +EXPORT_SYMBOL vmlinux 0x128a5159 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x128a8948 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x1290fcdc fb_io_read +EXPORT_SYMBOL vmlinux 0x12928f41 input_open_device +EXPORT_SYMBOL vmlinux 0x129f8148 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x12ab269e proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x12b7fae7 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x12c0bbde misc_deregister EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12f0adc1 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x12cf37b8 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x12e0421b component_match_add_typed +EXPORT_SYMBOL vmlinux 0x12ed71da page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x12f4b19d pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x13065f83 sock_create_lite EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x130ca5b8 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x130bf4b1 __ip_select_ident EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1315218b input_reset_device EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x1324e3e3 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x1325ffaa dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x131fc2d2 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x132d7b87 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x13369795 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x13437e74 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x134e3ec4 may_umount -EXPORT_SYMBOL vmlinux 0x1363448d security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x137473a6 peernet2id -EXPORT_SYMBOL vmlinux 0x137dc015 dma_resv_init -EXPORT_SYMBOL vmlinux 0x1383a572 page_get_link -EXPORT_SYMBOL vmlinux 0x13870d1c mmc_free_host EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package -EXPORT_SYMBOL vmlinux 0x139c7ca1 filemap_flush +EXPORT_SYMBOL vmlinux 0x1389fe0f textsearch_register EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13afd1a6 would_dump -EXPORT_SYMBOL vmlinux 0x13bcb487 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x13a868d7 finish_swait +EXPORT_SYMBOL vmlinux 0x13a9be8e fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x13bb4baf netdev_get_by_index EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user -EXPORT_SYMBOL vmlinux 0x13c4b595 give_up_console +EXPORT_SYMBOL vmlinux 0x13ce748d xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out -EXPORT_SYMBOL vmlinux 0x13de557f folio_write_one -EXPORT_SYMBOL vmlinux 0x13e0a018 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x13e461e5 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x13f2a545 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x13ef7b17 flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation -EXPORT_SYMBOL vmlinux 0x13f4994a fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x13fdd7d4 __netif_schedule EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14159b34 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x1445659d blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x145fc07d register_framebuffer +EXPORT_SYMBOL vmlinux 0x14351040 address_space_init_once +EXPORT_SYMBOL vmlinux 0x14547beb skb_splice_from_iter EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x1460c2e0 simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x1475a732 dma_ops -EXPORT_SYMBOL vmlinux 0x14782fdc scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x147afd93 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x14804af2 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x14a16d40 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x14648499 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x14751808 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x148a139d alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x14a18d70 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg -EXPORT_SYMBOL vmlinux 0x14bca201 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x14bf9b62 kill_pid EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cc69b8 seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0x14cf3992 request_firmware -EXPORT_SYMBOL vmlinux 0x14d19178 ata_std_end_eh EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14e3fff2 unix_detach_fds -EXPORT_SYMBOL vmlinux 0x14f97123 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x14fe0d02 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x14fefaa8 cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0x150b50e1 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x150e4749 phy_aneg_done -EXPORT_SYMBOL vmlinux 0x15156cea key_task_permission +EXPORT_SYMBOL vmlinux 0x14f10648 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x14f6ad1f tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x1500a6cd param_array_ops +EXPORT_SYMBOL vmlinux 0x1506ddc2 blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x153e8e1f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x152d5898 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x15351964 pci_select_bars +EXPORT_SYMBOL vmlinux 0x15360f38 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x1548a81f ipv6_select_ident EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x15497c50 serio_bus EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x155789c0 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x155817e3 scsi_done_direct -EXPORT_SYMBOL vmlinux 0x15587a20 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x156919f0 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x156f0647 freezing_slow_path -EXPORT_SYMBOL vmlinux 0x15773cf7 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x1577a9ef sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x158910fd mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x15ad95c9 serio_rescan +EXPORT_SYMBOL vmlinux 0x1556bb6a netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x156c31b7 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x156d1d44 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x15751c5f input_set_capability +EXPORT_SYMBOL vmlinux 0x15857dbc skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x15990749 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x159e9d8f __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x15abba78 generic_shutdown_super EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c57035 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15d966a3 sk_dst_check -EXPORT_SYMBOL vmlinux 0x15f2c7a9 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x15f402b0 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x15f5bb9c bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x162484dc __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x16030a0b icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x16184e5d update_region +EXPORT_SYMBOL vmlinux 0x1619420b iget_failed +EXPORT_SYMBOL vmlinux 0x16278f01 i8042_remove_filter EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1636f887 blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0x163fdfbb simple_write_begin -EXPORT_SYMBOL vmlinux 0x164d8bbe xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x16776217 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x1677cae6 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x1635cf10 dump_skip_to +EXPORT_SYMBOL vmlinux 0x1648fa6a notify_change +EXPORT_SYMBOL vmlinux 0x1667c34d folio_set_bh +EXPORT_SYMBOL vmlinux 0x1668c166 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0x16742ace vga_switcheroo_lock_ddc EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x167d288d configfs_depend_item EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 -EXPORT_SYMBOL vmlinux 0x16819a1b ip6_frag_init -EXPORT_SYMBOL vmlinux 0x168b084c __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x168bdfcd devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x168670f4 km_query +EXPORT_SYMBOL vmlinux 0x168c30c8 sys_imageblit +EXPORT_SYMBOL vmlinux 0x16930b6b pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169c9a93 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x16a0c365 fs_param_is_string EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16aec733 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x16b5b873 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x16c66cb8 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x16cb38f4 rtnl_create_link EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16db573a rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init -EXPORT_SYMBOL vmlinux 0x16e0f31c key_alloc -EXPORT_SYMBOL vmlinux 0x16e124b2 readahead_expand +EXPORT_SYMBOL vmlinux 0x16da70d6 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16ff46ea fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x1703def7 pci_release_region +EXPORT_SYMBOL vmlinux 0x16fc6e9d sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x17085bcf scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x1725beba flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0x1736c04d nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x17444da0 do_splice_direct -EXPORT_SYMBOL vmlinux 0x1747d4f3 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x174880a4 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x1756b440 security_path_mknod -EXPORT_SYMBOL vmlinux 0x1758207c devm_clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x17587b0d pci_get_class +EXPORT_SYMBOL vmlinux 0x17397ae1 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x1747ab6f eth_type_trans EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock -EXPORT_SYMBOL vmlinux 0x175f3cf5 register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0x1766e71a blk_pre_runtime_resume -EXPORT_SYMBOL vmlinux 0x176a7ddb __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x1781aa8d tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x17b670ea netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x1767f88f jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x176c34f2 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x177a82c3 entry_untrain_ret +EXPORT_SYMBOL vmlinux 0x1780784e __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x1798aa3d __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x17a9cd63 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event -EXPORT_SYMBOL vmlinux 0x17ead8c6 kobject_set_name +EXPORT_SYMBOL vmlinux 0x17d01bf9 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x17d64422 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x17e09ebf skb_checksum_help +EXPORT_SYMBOL vmlinux 0x17e18b95 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x17e50087 flow_rule_match_cvlan EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f3ca86 kobject_put EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x17fad531 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x181177cb unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x17fe23c1 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x180395ef bmap +EXPORT_SYMBOL vmlinux 0x1814ac11 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x1819a3f5 register_sysctl EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x184c5f17 get_thermal_instance -EXPORT_SYMBOL vmlinux 0x1859e58a alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x185d46d5 clear_user_rep_good -EXPORT_SYMBOL vmlinux 0x185feaa3 fb_set_var -EXPORT_SYMBOL vmlinux 0x18680ec3 devm_iounmap +EXPORT_SYMBOL vmlinux 0x184a3488 __ps2_command +EXPORT_SYMBOL vmlinux 0x187d0c8b sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x188445bb fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18a3aca8 set_pages_uc -EXPORT_SYMBOL vmlinux 0x18a45322 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x189fb9fe pci_dev_get +EXPORT_SYMBOL vmlinux 0x18a6e8f4 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe -EXPORT_SYMBOL vmlinux 0x18b8f619 unload_nls -EXPORT_SYMBOL vmlinux 0x18c43a0a iov_iter_init -EXPORT_SYMBOL vmlinux 0x18c74ad5 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x18d1303e serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x18d34eb2 seq_open +EXPORT_SYMBOL vmlinux 0x18cbc38a devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x18d978e3 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x18dfe43d sock_no_accept EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f868ab reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x18f8125d pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x18fd2c2d __x86_indirect_call_thunk_r13 -EXPORT_SYMBOL vmlinux 0x190af8d1 pci_rebar_get_possible_sizes -EXPORT_SYMBOL vmlinux 0x191faba9 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x192261a7 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x18fdbc3f scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x190787ba set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x19147726 cad_pid +EXPORT_SYMBOL vmlinux 0x1925be2b pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x192c595e ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x193f181e acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x1950991c dev_addr_mod EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x1954e68f tty_register_device +EXPORT_SYMBOL vmlinux 0x1956a6cc registered_fb +EXPORT_SYMBOL vmlinux 0x1965f17f devm_ioport_map +EXPORT_SYMBOL vmlinux 0x197d5b60 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x197da641 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x197edfc5 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198bad8d devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19b1ec00 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x199f8863 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x19ae29d3 mount_single +EXPORT_SYMBOL vmlinux 0x19b11318 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19bd4a79 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x19c84e26 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x19ce94f3 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x19dc6dfe devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x1a18ff12 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x1a2a3b13 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x1a2ba62d qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0x1a3feca5 __free_pages +EXPORT_SYMBOL vmlinux 0x19f0d3c4 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x1a0ccdd0 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x1a1111c5 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x1a17a1fa setup_arg_pages +EXPORT_SYMBOL vmlinux 0x1a1becbc blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x1a211dbb fb_validate_mode +EXPORT_SYMBOL vmlinux 0x1a301d84 ndisc_send_skb EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a52afdd component_match_add_typed -EXPORT_SYMBOL vmlinux 0x1a5fed0e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x1a461120 skb_dump +EXPORT_SYMBOL vmlinux 0x1a49045e mmc_start_request +EXPORT_SYMBOL vmlinux 0x1a5a01dc xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x1a5d7ccc sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a7179c3 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1a99dff1 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x1a89719c __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1ab9077d __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ac81cda touch_buffer -EXPORT_SYMBOL vmlinux 0x1ac96cd1 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x1aca0226 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x1afce163 ethtool_notify +EXPORT_SYMBOL vmlinux 0x1ad7f36e __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x1aded12b pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b1a11cd block_commit_write -EXPORT_SYMBOL vmlinux 0x1b238eb4 locks_init_lock -EXPORT_SYMBOL vmlinux 0x1b23f88c param_ops_uint -EXPORT_SYMBOL vmlinux 0x1b2d6720 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x1b3b1ad8 devm_request_resource -EXPORT_SYMBOL vmlinux 0x1b3d69f1 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x1b3eef6b devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x1b422c9b udp_sendmsg -EXPORT_SYMBOL vmlinux 0x1b46a11e bprm_change_interp +EXPORT_SYMBOL vmlinux 0x1b0cdd33 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x1b163dba __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x1b177657 inet_frag_find +EXPORT_SYMBOL vmlinux 0x1b231563 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x1b2c419f free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x1b3d7a08 follow_pfn +EXPORT_SYMBOL vmlinux 0x1b3fee75 alloc_fddidev EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton -EXPORT_SYMBOL vmlinux 0x1b668890 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b82fae4 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested -EXPORT_SYMBOL vmlinux 0x1ba44d2d dev_get_by_napi_id EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node -EXPORT_SYMBOL vmlinux 0x1bacfc5a __sock_cmsg_send EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bd157cd set_trace_device +EXPORT_SYMBOL vmlinux 0x1bb8b73a pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x1bc5fa84 mdio_device_remove EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bf9d223 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x1bfbbe61 lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x1c0abe6d acpi_register_debugger -EXPORT_SYMBOL vmlinux 0x1c400c9a netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x1bfe3d5c simple_empty +EXPORT_SYMBOL vmlinux 0x1c065b37 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0x1c12489a seq_bprintf +EXPORT_SYMBOL vmlinux 0x1c34f132 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c6a26ba blk_put_queue +EXPORT_SYMBOL vmlinux 0x1c8b692e filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1c972c35 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x1ca2d7a2 pci_request_irq EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1ca54696 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x1cb0bfd8 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cc3260c netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x1cc5b954 user_path_create -EXPORT_SYMBOL vmlinux 0x1cc83fd1 lookup_one_len -EXPORT_SYMBOL vmlinux 0x1ccda6a1 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node -EXPORT_SYMBOL vmlinux 0x1cee93a1 d_splice_alias -EXPORT_SYMBOL vmlinux 0x1cefd5d3 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x1d046f05 scsi_print_command +EXPORT_SYMBOL vmlinux 0x1ce6e022 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x1cf20085 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x1cf2d5f4 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x1cffa5ae dcb_getrewr_prio_pcp_mask_map EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d16b711 cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask -EXPORT_SYMBOL vmlinux 0x1d1a8c01 blk_mq_start_hw_queue EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d44920d __dquot_free_space -EXPORT_SYMBOL vmlinux 0x1d463dbb bpf_link_put -EXPORT_SYMBOL vmlinux 0x1d704870 xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x1d85c778 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x1d89eac7 inet6_bind -EXPORT_SYMBOL vmlinux 0x1d90135a skb_checksum_help +EXPORT_SYMBOL vmlinux 0x1d7dda38 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x1d828b85 md_reload_sb +EXPORT_SYMBOL vmlinux 0x1d8a2feb register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1d989a9e block_truncate_page -EXPORT_SYMBOL vmlinux 0x1da0f148 tty_unlock -EXPORT_SYMBOL vmlinux 0x1db33b7b configfs_register_group -EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1d996570 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x1dab968b icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x1db75248 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x1dbb993c xattr_full_name EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dcf101c pci_claim_resource -EXPORT_SYMBOL vmlinux 0x1dd51398 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd60972 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x1de2d5c7 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x1de0eb83 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x1dfbfedb clk_hw_get_clk -EXPORT_SYMBOL vmlinux 0x1e071963 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x1de83e3b tcp_prot +EXPORT_SYMBOL vmlinux 0x1dec3347 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x1dfd7e44 seq_escape_mem EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x1e0c7ae9 scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e3a1239 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x1e46bab7 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x1e54741b skb_queue_tail +EXPORT_SYMBOL vmlinux 0x1e12f738 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x1e2e11f9 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x1e32ebef tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x1e408551 unregister_netdev +EXPORT_SYMBOL vmlinux 0x1e57d6c2 sk_net_capable +EXPORT_SYMBOL vmlinux 0x1e57f08b inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x1e582391 inet6_offloads EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e79f83f nonseekable_open -EXPORT_SYMBOL vmlinux 0x1e7beaa8 dput +EXPORT_SYMBOL vmlinux 0x1e70de78 dquot_alloc +EXPORT_SYMBOL vmlinux 0x1e7c166a tcp_check_req +EXPORT_SYMBOL vmlinux 0x1e832d35 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x1e957f86 simple_dir_operations EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea8e8a1 blkdev_put -EXPORT_SYMBOL vmlinux 0x1eb784fd __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x1ea0dabd qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x1eb50546 path_get EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x1ebadade pipe_unlock -EXPORT_SYMBOL vmlinux 0x1ec2bb65 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x1ed3ec77 serio_unregister_port EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1f00b297 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x1f1821ae efi -EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string -EXPORT_SYMBOL vmlinux 0x1f4976a1 sk_stream_error +EXPORT_SYMBOL vmlinux 0x1efe3a89 is_subdir +EXPORT_SYMBOL vmlinux 0x1f158159 __do_once_done EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f5a2a64 tcp_req_err -EXPORT_SYMBOL vmlinux 0x1f69a5bd ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x1f83fe5a t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x1f976a59 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0x1faeec47 release_sock +EXPORT_SYMBOL vmlinux 0x1f5f2111 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x1f6285f2 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x1f7164f7 irq_set_chip +EXPORT_SYMBOL vmlinux 0x1f7a40ff fb_set_var +EXPORT_SYMBOL vmlinux 0x1f9b0415 i2c_get_match_data +EXPORT_SYMBOL vmlinux 0x1faf096d tcp_parse_options EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fc42891 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x1fc1109e proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1fcf44ed nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd2f29d napi_gro_frags -EXPORT_SYMBOL vmlinux 0x1fe2be5e d_set_fallthru +EXPORT_SYMBOL vmlinux 0x1fd0dea6 __skb_pad +EXPORT_SYMBOL vmlinux 0x1fdcf0d0 __folio_start_writeback EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x200dd345 ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0x201848f0 skb_queue_head -EXPORT_SYMBOL vmlinux 0x201e3e3a pci_scan_bus -EXPORT_SYMBOL vmlinux 0x2023c54d d_invalidate -EXPORT_SYMBOL vmlinux 0x2026fa05 dev_uc_del -EXPORT_SYMBOL vmlinux 0x202c8afe __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x20489636 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x205ebf00 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x20680570 tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x20768d0c user_revoke -EXPORT_SYMBOL vmlinux 0x20819f3b netpoll_print_options -EXPORT_SYMBOL vmlinux 0x2088c80a config_item_init_type_name -EXPORT_SYMBOL vmlinux 0x209183f9 default_llseek -EXPORT_SYMBOL vmlinux 0x209cadff param_get_charp +EXPORT_SYMBOL vmlinux 0x205e4130 dentry_create +EXPORT_SYMBOL vmlinux 0x205f28d8 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x2065f620 scsi_add_device +EXPORT_SYMBOL vmlinux 0x206d184a linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x2096fcbd tcp_splice_read EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b0fc14 bio_put +EXPORT_SYMBOL vmlinux 0x20aa6c43 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x20ad6b83 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x20b9f27d jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20cca82a pnp_possible_config -EXPORT_SYMBOL vmlinux 0x20d2c9bd tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x20d5aeb3 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x20d1723c generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x20d52d02 rt_dst_clone EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20dde75d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x20e842d3 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x21173909 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x2118957b free_task -EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x21395fa8 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x21283b78 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x21338dd7 vga_switcheroo_get_client_state EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x21556699 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x2149877c agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x215b7db8 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x215ecfb6 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x216d6aa3 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x2173a5b8 user_path_at_empty EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21bce680 md_handle_request +EXPORT_SYMBOL vmlinux 0x219dfbba touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x21a494fd i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x21ab3dca tls_server_hello_x509 +EXPORT_SYMBOL vmlinux 0x21bc8ba3 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21dc9d8c xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x21c88a2c igrab +EXPORT_SYMBOL vmlinux 0x21ce5d43 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e47e4b phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x21eca5a8 acpi_bus_register_driver EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21f7964b tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x21fed743 proc_create_single_data -EXPORT_SYMBOL vmlinux 0x22226aa1 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x2227d91c mmc_release_host -EXPORT_SYMBOL vmlinux 0x222d72ed phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x2211071c tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x2212dc91 unregister_qdisc EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x224925e8 dma_fence_describe -EXPORT_SYMBOL vmlinux 0x226d514f xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x22727027 backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x2272a78f fs_lookup_param -EXPORT_SYMBOL vmlinux 0x2279c69a __find_get_block -EXPORT_SYMBOL vmlinux 0x22856b2d __vfs_getxattr -EXPORT_SYMBOL vmlinux 0x22885dbe sock_no_sendpage_locked -EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all +EXPORT_SYMBOL vmlinux 0x2242fc99 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x2246cc7d disk_stack_limits +EXPORT_SYMBOL vmlinux 0x226acf1a mount_bdev +EXPORT_SYMBOL vmlinux 0x226b09eb bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x226df3b0 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x228418fa do_clone_file_range +EXPORT_SYMBOL vmlinux 0x22ac3cf9 ps2_drain EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bdd702 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x22c8eaa2 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x22c7b2ad skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x22d2718f tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x22d2fdb4 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x22d3c71a fb_find_mode EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier -EXPORT_SYMBOL vmlinux 0x22e3bf0e ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x22fe2140 vfs_rename -EXPORT_SYMBOL vmlinux 0x2320b9c1 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x2326704c dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x2326f918 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x2328001c sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x233aa46c mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x233aed1d inode_nohighmem -EXPORT_SYMBOL vmlinux 0x2342b15e genphy_read_status -EXPORT_SYMBOL vmlinux 0x23507cd5 netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0x236467c3 vma_set_file +EXPORT_SYMBOL vmlinux 0x22e6e4fb __scsi_add_device +EXPORT_SYMBOL vmlinux 0x22fd725d fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x230fdced unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x2319c9b9 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x231cff43 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x23279dd0 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x232c4f23 block_read_full_folio +EXPORT_SYMBOL vmlinux 0x234ba1a9 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x236ed190 dcb_setapp +EXPORT_SYMBOL vmlinux 0x237467b9 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x239a719f flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0x23a087e0 __bio_advance -EXPORT_SYMBOL vmlinux 0x23a174fe inet_stream_connect -EXPORT_SYMBOL vmlinux 0x23b092c8 fd_install -EXPORT_SYMBOL vmlinux 0x23b09485 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x23939213 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x239bdc57 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x23b1c8ff __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23bae739 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23c66e74 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23dc7f6c hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x23ff3e55 md_done_sync -EXPORT_SYMBOL vmlinux 0x24002982 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x2421aead md_update_sb -EXPORT_SYMBOL vmlinux 0x242496ce nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x242ec727 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0x2434e37a jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x2450feb5 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x2451e354 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x240c9446 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x2417c52f sys_fillrect +EXPORT_SYMBOL vmlinux 0x2427ba44 readahead_expand +EXPORT_SYMBOL vmlinux 0x2427caf9 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x243fdf12 iterate_fd +EXPORT_SYMBOL vmlinux 0x2441845c tty_kref_put +EXPORT_SYMBOL vmlinux 0x24527690 dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x245eb8fb flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x24611e6f blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x246e679e kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x2472aaea inc_node_page_state -EXPORT_SYMBOL vmlinux 0x247e258a kernel_getpeername +EXPORT_SYMBOL vmlinux 0x245c1651 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x2460dbf3 agp_backend_release +EXPORT_SYMBOL vmlinux 0x24790372 sget EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2495a9e4 scsi_device_get -EXPORT_SYMBOL vmlinux 0x24971fc5 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x2485f959 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x249a0977 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x24a11e17 cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds +EXPORT_SYMBOL vmlinux 0x24bde5d4 kobject_set_name +EXPORT_SYMBOL vmlinux 0x24c2b83a pci_assign_resource +EXPORT_SYMBOL vmlinux 0x24d068b2 tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24d81891 netdev_notice -EXPORT_SYMBOL vmlinux 0x24e10858 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x252664ed console_stop -EXPORT_SYMBOL vmlinux 0x2538e759 sock_release -EXPORT_SYMBOL vmlinux 0x254cd4b4 pipe_lock -EXPORT_SYMBOL vmlinux 0x25562d08 fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x2510dd21 i2c_find_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x252a7003 seq_lseek +EXPORT_SYMBOL vmlinux 0x25321eef prepare_creds +EXPORT_SYMBOL vmlinux 0x253577c9 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x2538bd27 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x253f20c8 seq_printf +EXPORT_SYMBOL vmlinux 0x253fc582 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x2557684e vmap +EXPORT_SYMBOL vmlinux 0x255f7c66 md_handle_request EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25832158 zpool_register_driver EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258c57cc scsi_block_requests EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x258eaf3a mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x25935b86 netif_carrier_off EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x25a43179 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x25b53936 genphy_loopback -EXPORT_SYMBOL vmlinux 0x25c535d6 simple_empty +EXPORT_SYMBOL vmlinux 0x259a75f5 unregister_key_type +EXPORT_SYMBOL vmlinux 0x25a62dda vfs_setpos +EXPORT_SYMBOL vmlinux 0x25ae4458 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x25afd50e get_unmapped_area +EXPORT_SYMBOL vmlinux 0x25cfd6d6 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x25d7a2e7 scm_detach_fds EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr -EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x25e5911f d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x25df957d dcache_readdir EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25fe45f3 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x261dd11d key_revoke +EXPORT_SYMBOL vmlinux 0x25edccfe i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x25f47b1f __register_chrdev +EXPORT_SYMBOL vmlinux 0x26060d14 set_groups +EXPORT_SYMBOL vmlinux 0x2608cb10 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x261fcc31 fb_class +EXPORT_SYMBOL vmlinux 0x26241a07 sock_pfree +EXPORT_SYMBOL vmlinux 0x262ed89a sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263ec61a tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x265557fd param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x2648b0de remap_pfn_range +EXPORT_SYMBOL vmlinux 0x265986bf qdisc_reset +EXPORT_SYMBOL vmlinux 0x266ce89d seq_putc +EXPORT_SYMBOL vmlinux 0x267a4a27 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x268152de netdev_pick_tx EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc -EXPORT_SYMBOL vmlinux 0x2688f441 sock_init_data EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x268a488a flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0x268ad052 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x2695128c skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x269a4c71 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x269fa751 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x26c292a7 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x26939647 dev_kfree_skb_any_reason +EXPORT_SYMBOL vmlinux 0x269e2ab5 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x26b29ae8 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26efe0ac __neigh_event_send +EXPORT_SYMBOL vmlinux 0x26e902f8 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x26ea5bc7 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x26f945ed unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x270b39d0 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x2714363b inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x2725eb98 rw_verify_area +EXPORT_SYMBOL vmlinux 0x27205d4c __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2742db97 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x273e984c d_add EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x274ba1c4 free_buffer_head +EXPORT_SYMBOL vmlinux 0x274c7310 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x27561ae7 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x2759448b file_remove_privs EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check -EXPORT_SYMBOL vmlinux 0x27607a9f nf_ct_attach -EXPORT_SYMBOL vmlinux 0x276f5a48 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x276fd3a5 uart_resume_port +EXPORT_SYMBOL vmlinux 0x27726ff3 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x277e947e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x27774ef0 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278d439e tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0x27a73cbb __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27ef9c31 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x280269af km_policy_expired -EXPORT_SYMBOL vmlinux 0x2813bcba xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x27e043eb phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x27e552e1 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x27eae1bb sk_free +EXPORT_SYMBOL vmlinux 0x2801a22f proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x283d0d7c __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x28407b8b simple_statfs +EXPORT_SYMBOL vmlinux 0x28339bf7 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x2840abc7 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x2847119d inet6_ioctl +EXPORT_SYMBOL vmlinux 0x284ba24b register_framebuffer EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 -EXPORT_SYMBOL vmlinux 0x286823ec generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x286c9ad9 from_kprojid +EXPORT_SYMBOL vmlinux 0x28500e13 proc_douintvec +EXPORT_SYMBOL vmlinux 0x285e734e bio_init_clone EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x2888e214 __scsi_execute -EXPORT_SYMBOL vmlinux 0x289771bb commit_creds -EXPORT_SYMBOL vmlinux 0x289cbbe0 param_get_ulong -EXPORT_SYMBOL vmlinux 0x289ec5c8 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x28c99da3 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x28d23385 netdev_emerg -EXPORT_SYMBOL vmlinux 0x28dab5d3 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x28dc86d4 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x287f4a68 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x288c882e generic_listxattr +EXPORT_SYMBOL vmlinux 0x28c088cc genlmsg_put +EXPORT_SYMBOL vmlinux 0x28c612dc nd_device_notify +EXPORT_SYMBOL vmlinux 0x28d6b688 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x2907f64d pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x290bf4b5 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x28ff790f find_vma_intersection +EXPORT_SYMBOL vmlinux 0x2909c947 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x2909db87 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x2915ad2d mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x29198b27 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x291cfa70 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x291dfd67 folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x292c32e4 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x293bd1e6 filp_close -EXPORT_SYMBOL vmlinux 0x294e3acc lease_modify +EXPORT_SYMBOL vmlinux 0x2936b4e2 netdev_alert +EXPORT_SYMBOL vmlinux 0x29579ffb netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x29591bd8 xfrm_policy_bysel_ctx EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x2989487b nla_append +EXPORT_SYMBOL vmlinux 0x296e80e9 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x296ea58d phy_resume +EXPORT_SYMBOL vmlinux 0x296edb39 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x297445b6 __free_pages +EXPORT_SYMBOL vmlinux 0x29781620 param_get_charp +EXPORT_SYMBOL vmlinux 0x297e5194 nd_pfn_validate EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type -EXPORT_SYMBOL vmlinux 0x29b737ea simple_transaction_release -EXPORT_SYMBOL vmlinux 0x29bc12a8 __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x29caac27 ps2_drain -EXPORT_SYMBOL vmlinux 0x29db8183 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x29dcf282 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x29ddb1ff pm860x_set_bits EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f3703d dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x2a001fdd i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x29ec532e scmd_printk +EXPORT_SYMBOL vmlinux 0x29ed87fb agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x29f1621a inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x29f8a5a4 request_key_tag +EXPORT_SYMBOL vmlinux 0x2a008be4 arp_tbl +EXPORT_SYMBOL vmlinux 0x2a1d784f jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x2a299f09 scsi_partsize EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a34cf15 simple_link -EXPORT_SYMBOL vmlinux 0x2a531310 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x2a63ae74 qdisc_reset -EXPORT_SYMBOL vmlinux 0x2a69a3f0 skb_ext_add +EXPORT_SYMBOL vmlinux 0x2a3371aa __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x2a3bff01 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x2a458fca device_match_acpi_handle EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x2a7597dc buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x2a820ade cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x2a84c820 xfrm_policy_hash_rebuild EXPORT_SYMBOL vmlinux 0x2a85b203 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0x2a8a6ab0 devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9895b7 set_page_writeback EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9b50b7 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa8a8aa tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2abf38ef netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x2abd39d1 __bforget +EXPORT_SYMBOL vmlinux 0x2ac75816 devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0x2acb4eaf __x86_indirect_call_thunk_r11 -EXPORT_SYMBOL vmlinux 0x2ad28027 generic_set_encrypted_ci_d_ops -EXPORT_SYMBOL vmlinux 0x2af3f21d scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x2afeb122 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x2b28c4da inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x2b41b77a skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x2ade36af dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x2aedb18f thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x2aee6360 alloc_pages +EXPORT_SYMBOL vmlinux 0x2b04e002 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x2b06cdc9 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x2b2c1d07 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x2b3707d5 tcf_exts_init_ex +EXPORT_SYMBOL vmlinux 0x2b4bcf68 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x2b505c13 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x2b76253f security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x2b79dd2c sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x2b89d15b unpin_user_page +EXPORT_SYMBOL vmlinux 0x2b77315f page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x2b884e4f tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x2b958c99 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x2b9808c6 rio_query_mport EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba932df del_gendisk +EXPORT_SYMBOL vmlinux 0x2badbcaf ppp_input EXPORT_SYMBOL vmlinux 0x2bae204e mt_find +EXPORT_SYMBOL vmlinux 0x2bb209d9 ping_prot EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock EXPORT_SYMBOL vmlinux 0x2bb7c05d __x86_indirect_call_thunk_rsi -EXPORT_SYMBOL vmlinux 0x2bd12c84 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x2bbdfb4d blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x2bbe57c5 wait_for_key_construction EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2be281a7 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0x2bfa42b4 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x2c0ca365 __register_nls -EXPORT_SYMBOL vmlinux 0x2c14bf0f acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x2c1bf8b8 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x2bd80d29 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x2bed2a2b rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x2c03dd6d __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x2c03e1d1 kill_block_super +EXPORT_SYMBOL vmlinux 0x2c0d2738 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x2c178e1a dquot_disable +EXPORT_SYMBOL vmlinux 0x2c1ff5f4 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c4db1a1 bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0x2c510326 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x2c33f093 pcim_iounmap EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c58f5a7 path_has_submounts -EXPORT_SYMBOL vmlinux 0x2c620e67 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7814bf __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x2c796feb ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x2c593717 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x2c603a3d tty_unregister_device +EXPORT_SYMBOL vmlinux 0x2c65216f scsi_remove_target +EXPORT_SYMBOL vmlinux 0x2c6e2e5b __find_get_block +EXPORT_SYMBOL vmlinux 0x2c72fc32 proc_mkdir EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8310f2 sock_no_accept -EXPORT_SYMBOL vmlinux 0x2c9a1b4e __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2c96835f __folio_lock +EXPORT_SYMBOL vmlinux 0x2c96d045 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x2cb54a61 vga_get +EXPORT_SYMBOL vmlinux 0x2cbab619 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x2cca43bd __remove_inode_hash EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2ce3bd94 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x2cdb3d1c mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x2cdba320 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0x2cdbf916 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x2ce0c7bb scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x2cea01ee dev_printk_emit EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table -EXPORT_SYMBOL vmlinux 0x2cf14065 xsk_get_pool_from_qid EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2d02fb99 mount_single +EXPORT_SYMBOL vmlinux 0x2cfac492 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d2d67e7 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x2d1856ad ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x2d18c77c xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d342d3b md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x2d37638a put_fs_context EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3e5088 bdi_put EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d5cd77a remap_pfn_range -EXPORT_SYMBOL vmlinux 0x2d61671a register_qdisc -EXPORT_SYMBOL vmlinux 0x2d690c3a convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x2d88466f inet6_getname -EXPORT_SYMBOL vmlinux 0x2d8e7de9 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x2d5240e6 phy_start +EXPORT_SYMBOL vmlinux 0x2d530d7c inode_io_list_del +EXPORT_SYMBOL vmlinux 0x2d55bc3a con_copy_unimap +EXPORT_SYMBOL vmlinux 0x2d61b4bc clk_get +EXPORT_SYMBOL vmlinux 0x2d8fe6ba genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2dac52c1 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x2db1c6bc folio_mapping -EXPORT_SYMBOL vmlinux 0x2db1cefb take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x2da08256 set_trace_device +EXPORT_SYMBOL vmlinux 0x2da97535 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x2daad451 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x2dc4dd40 udplite_prot EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd7c0f3 dev_get_stats EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2dee6428 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2de42fd4 setattr_prepare +EXPORT_SYMBOL vmlinux 0x2de776ff configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x2dec1b45 mdiobus_c45_read EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e0e7035 pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0x2e1b77c1 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2e0a637d acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x2e16ab8a __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat -EXPORT_SYMBOL vmlinux 0x2e2c8b3b vm_mmap +EXPORT_SYMBOL vmlinux 0x2e2da06f dm_table_get_size +EXPORT_SYMBOL vmlinux 0x2e3688f7 neigh_for_each +EXPORT_SYMBOL vmlinux 0x2e3a0f63 netif_skb_features EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e3cd9ea fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e460476 phy_write_paged -EXPORT_SYMBOL vmlinux 0x2e4775d3 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x2e5e6cd5 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2e4433be mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x2e49f384 tcp_time_wait EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put -EXPORT_SYMBOL vmlinux 0x2e804b6b set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x2e8433d2 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x2e886ca9 dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x2e9da022 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x2eb5739b mmc_add_host +EXPORT_SYMBOL vmlinux 0x2e6eef20 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x2e7bf8a4 sock_release +EXPORT_SYMBOL vmlinux 0x2e8bb558 phy_device_remove +EXPORT_SYMBOL vmlinux 0x2e94e407 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x2ea35283 __lock_buffer +EXPORT_SYMBOL vmlinux 0x2ea395e1 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x2ead8674 __folio_batch_release +EXPORT_SYMBOL vmlinux 0x2eae1887 param_get_short +EXPORT_SYMBOL vmlinux 0x2eb1cd1b vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x2eb9fd81 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x2ec42f68 input_allocate_device EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ecaec8d elv_rb_find -EXPORT_SYMBOL vmlinux 0x2ed8938a jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x2edb78cd seq_open_private -EXPORT_SYMBOL vmlinux 0x2edc1a3b clk_add_alias -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2ee600a4 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x2ec9e4f4 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x2eec26c1 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x2ef03729 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x2f02d13c filemap_check_errors EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f0929df tty_port_init -EXPORT_SYMBOL vmlinux 0x2f1d20ca rproc_report_crash EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f351ce3 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f4bfd1f sg_miter_start -EXPORT_SYMBOL vmlinux 0x2f5ba773 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x2f6212b6 dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0x2f73ab71 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x2f5899bc blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f799e6d i2c_put_adapter -EXPORT_SYMBOL vmlinux 0x2f9ada96 tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x2fa82d6b dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0x2fb6a730 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x2fb76fc2 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x2fb99e58 setup_new_exec -EXPORT_SYMBOL vmlinux 0x2fc9b19d dcache_dir_close -EXPORT_SYMBOL vmlinux 0x2fcbbc00 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x2f77e2fa security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x2f97a907 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x2fb15b87 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x2fcb5c5b __brelse EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fee7258 neigh_for_each -EXPORT_SYMBOL vmlinux 0x2ff8983e find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x30053a47 pci_match_id +EXPORT_SYMBOL vmlinux 0x2ff1fb15 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x2ff59853 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x3011f350 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x30296b97 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x302b7a49 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x303c503e tcp_make_synack -EXPORT_SYMBOL vmlinux 0x304917b6 neigh_update -EXPORT_SYMBOL vmlinux 0x3053311f folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x302501aa phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x304ffa08 sock_wake_async +EXPORT_SYMBOL vmlinux 0x3059e7b7 locks_free_lock +EXPORT_SYMBOL vmlinux 0x305a68b4 inet_release EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi -EXPORT_SYMBOL vmlinux 0x3076816c devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x307aaac9 tcp_check_req -EXPORT_SYMBOL vmlinux 0x30861a8d pci_fixup_device -EXPORT_SYMBOL vmlinux 0x3090c3c5 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x3060084c kthread_bind +EXPORT_SYMBOL vmlinux 0x30638dd7 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x308d096a vlan_vid_del EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309ec0a6 security_sctp_assoc_established EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30a890da tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x30ac0ebe sk_capable EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30f1eacc simple_rename -EXPORT_SYMBOL vmlinux 0x30ff4467 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x30ff9e70 __f_setown +EXPORT_SYMBOL vmlinux 0x30be282e from_kgid +EXPORT_SYMBOL vmlinux 0x30ef3ea5 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x30f0cf1d udp_gro_receive +EXPORT_SYMBOL vmlinux 0x30f950be devm_register_netdev +EXPORT_SYMBOL vmlinux 0x310028de send_sig +EXPORT_SYMBOL vmlinux 0x31212b9b tty_vhangup EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x312985cc read_cache_page +EXPORT_SYMBOL vmlinux 0x312c9f3f uart_remove_one_port EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x3141e9a4 iput -EXPORT_SYMBOL vmlinux 0x314b08d9 rt6_lookup EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x316160b1 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x3167badb napi_build_skb -EXPORT_SYMBOL vmlinux 0x316ca652 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x317c5279 agp_create_memory -EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x31a62ef3 config_group_init -EXPORT_SYMBOL vmlinux 0x31c3657a add_to_pipe -EXPORT_SYMBOL vmlinux 0x31c8cc0a genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x31ecdebc mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x31ef14b2 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x31efac21 blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0x31f5d920 dst_release -EXPORT_SYMBOL vmlinux 0x31fc33ee vfs_get_tree -EXPORT_SYMBOL vmlinux 0x32028db2 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x3206200c __register_chrdev -EXPORT_SYMBOL vmlinux 0x321081ec crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x315a2bf5 asm_load_gs_index +EXPORT_SYMBOL vmlinux 0x316d1034 dqput +EXPORT_SYMBOL vmlinux 0x317c2efc netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x319d47c8 lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0x31d0538e tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x31d1ec30 processors +EXPORT_SYMBOL vmlinux 0x31d40628 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x31de50f3 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x31df5ee9 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x31f1497e pci_get_domain_bus_and_slot EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3216b133 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset -EXPORT_SYMBOL vmlinux 0x3226e24c bdi_unregister -EXPORT_SYMBOL vmlinux 0x323bf528 vga_switcheroo_get_client_state -EXPORT_SYMBOL vmlinux 0x323c2639 device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x323d1832 phy_device_free -EXPORT_SYMBOL vmlinux 0x3241a6b5 vme_slot_num -EXPORT_SYMBOL vmlinux 0x324cc1a3 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x32571331 param_ops_long -EXPORT_SYMBOL vmlinux 0x325be5b5 ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x325dffab eth_header_parse +EXPORT_SYMBOL vmlinux 0x3228a9c3 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x322917f2 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x322a63c5 netdev_warn +EXPORT_SYMBOL vmlinux 0x324741bc mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x324a69d9 tcp_mtu_to_mss EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop +EXPORT_SYMBOL vmlinux 0x32782883 mount_nodev EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x32929d88 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x32aa8adf rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x32abc29d netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x32b31e32 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x328d50fe configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x328f32d8 scsi_device_put +EXPORT_SYMBOL vmlinux 0x32ab1ca8 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x32c33315 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x32cdcb44 page_pool_destroy EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d47d84 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x32dc87b9 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x32d0644c cdev_init +EXPORT_SYMBOL vmlinux 0x32dd66f9 inc_node_page_state EXPORT_SYMBOL vmlinux 0x32de75a8 __x86_indirect_call_thunk_rdi +EXPORT_SYMBOL vmlinux 0x32e338cd register_mii_timestamper EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e781e0 dm_kobject_release EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32ecc21a phy_register_fixup -EXPORT_SYMBOL vmlinux 0x33037215 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x33048a31 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x33089ad5 __lock_buffer -EXPORT_SYMBOL vmlinux 0x33150ce5 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x331c0b0e __put_devmap_managed_page_refs -EXPORT_SYMBOL vmlinux 0x33244146 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x331eeca0 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x3348791a pskb_extract -EXPORT_SYMBOL vmlinux 0x336451f2 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x3325d66c d_move +EXPORT_SYMBOL vmlinux 0x333bfca1 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x333d777f dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x334cfa94 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x335f7d0e tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x336026ad dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x338e296e remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x339110b4 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x33a0b114 to_nd_btt -EXPORT_SYMBOL vmlinux 0x33a75a18 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0x33b034a1 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x33810aca mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x338632e8 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x339831b2 inet_frags_fini EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page EXPORT_SYMBOL vmlinux 0x33d07fee __x86_indirect_call_thunk_r10 +EXPORT_SYMBOL vmlinux 0x33d0e84f pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x33d79626 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x33dee5aa discard_new_inode +EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f511c9 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x33f90951 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x3410698c iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x34360167 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x3405bf3a padata_free +EXPORT_SYMBOL vmlinux 0x3408c6db seq_pad +EXPORT_SYMBOL vmlinux 0x340f46fc param_ops_bool +EXPORT_SYMBOL vmlinux 0x34194c33 peernet2id +EXPORT_SYMBOL vmlinux 0x343aa1c4 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x343b4e47 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x34426eab d_prune_aliases -EXPORT_SYMBOL vmlinux 0x3458700a set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x3472737b mark_info_dirty -EXPORT_SYMBOL vmlinux 0x3475bb92 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x347c8d9b cfb_imageblit -EXPORT_SYMBOL vmlinux 0x347d4120 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x347655ba blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x347be039 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x348c6aa5 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349ec1a6 nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34b04931 dev_get_mac_address -EXPORT_SYMBOL vmlinux 0x34c0f8d2 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x34a4413b mr_mfc_find_parent EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait -EXPORT_SYMBOL vmlinux 0x350ef46d skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x351701d6 flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x3530449f unregister_md_personality -EXPORT_SYMBOL vmlinux 0x3537b538 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x351dcf48 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x351ea55c vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x352894cd __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x354afc9f kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3589bdf0 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x3592403d misc_register -EXPORT_SYMBOL vmlinux 0x3593f5b8 input_inject_event -EXPORT_SYMBOL vmlinux 0x35966a80 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x35774c3f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x35963413 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35b56dd7 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x35e2c8d0 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x35ee0cf3 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x35a8ed2e vfs_get_link +EXPORT_SYMBOL vmlinux 0x35ad98f9 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x35c9dce8 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x35cd4290 __sock_i_ino +EXPORT_SYMBOL vmlinux 0x35ed93c2 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x35ef8a2c fb_set_cmap +EXPORT_SYMBOL vmlinux 0x35ff5c6b sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x36038449 get_task_cred EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3617198e pci_choose_state -EXPORT_SYMBOL vmlinux 0x3619d01d locks_copy_lock -EXPORT_SYMBOL vmlinux 0x3619e2d1 scsi_partsize -EXPORT_SYMBOL vmlinux 0x362ac19a dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x362ea2f7 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x3612f619 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x3615d673 neigh_xmit +EXPORT_SYMBOL vmlinux 0x3619e7bd ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x361f4c0a kobject_del +EXPORT_SYMBOL vmlinux 0x3620ee40 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x3625e70e simple_link EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x364c511d phy_validate_pause EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x36763bd8 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x367c946d truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x3686ab19 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x368a0869 nla_put_64bit -EXPORT_SYMBOL vmlinux 0x368ab757 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x36a2cf37 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init +EXPORT_SYMBOL vmlinux 0x36853bb3 devm_clk_get +EXPORT_SYMBOL vmlinux 0x3696bc8a single_open +EXPORT_SYMBOL vmlinux 0x36ad127c dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36baf3a9 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x36d182b7 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x36d7ec55 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x36dae268 arp_create +EXPORT_SYMBOL vmlinux 0x36c50e85 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x370b7555 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x370c53bf nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x371a82de wake_up_process +EXPORT_SYMBOL vmlinux 0x371dc9ad dma_resv_replace_fences EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x372ffd80 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x3733a276 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x373ad86b dma_async_device_register EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x378679cb pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x379dbd6f nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x37a1b77b md_write_inc -EXPORT_SYMBOL vmlinux 0x37a22833 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x37a55c28 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x3795eaca setup_new_exec +EXPORT_SYMBOL vmlinux 0x3795f1ac key_move +EXPORT_SYMBOL vmlinux 0x379812f0 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x37a6416a sg_miter_stop +EXPORT_SYMBOL vmlinux 0x37b1025b serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x37b3dead netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bd1ef6 ip_check_defrag EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c1ef4c framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x37c482ae dump_skip +EXPORT_SYMBOL vmlinux 0x37d2db8e unregister_filesystem EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f7fe6f lease_get_mtime -EXPORT_SYMBOL vmlinux 0x37fe25cd pci_dev_get +EXPORT_SYMBOL vmlinux 0x37e3fadc vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x37e92440 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x37f1dd62 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x37f7e133 eth_header +EXPORT_SYMBOL vmlinux 0x38007a82 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x3805fe54 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x386cea58 reuseport_alloc -EXPORT_SYMBOL vmlinux 0x386d4d9c kern_path -EXPORT_SYMBOL vmlinux 0x387503db mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x387cefcb dev_mc_add -EXPORT_SYMBOL vmlinux 0x38823e04 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x3856ddf2 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x3882ae1e ww_mutex_trylock EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388e860c netpoll_send_skb EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389a3bdf fput +EXPORT_SYMBOL vmlinux 0x38a20e60 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x38a4f3c3 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a85d84 __post_watch_notification EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38ad84d4 dev_driver_string -EXPORT_SYMBOL vmlinux 0x38b1954c scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x38aab936 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x38b2ed91 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x38b71110 pci_remove_bus EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38ffb8d9 try_module_get EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x39107e8a vme_master_request +EXPORT_SYMBOL vmlinux 0x39084031 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x391599da mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x3923a536 page_cache_next_miss EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x392dd0d0 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x392eaa7d tcp_read_done -EXPORT_SYMBOL vmlinux 0x39384ae7 scsi_print_result +EXPORT_SYMBOL vmlinux 0x392f24ec folio_mark_accessed EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x393fef52 inet_listen EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3948d486 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x3948e36a rproc_get_by_child EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x395c54ba i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x3986015c devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x39912500 devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3996f565 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x3962bdff skb_eth_pop EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399bacd9 simple_fill_super EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x39bcab0e neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x39c1555c ppp_channel_index EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x39cdc099 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x39cf7897 ioc_lookup_icq EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39e2b669 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x39dd0325 tcp_md5_do_del EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr -EXPORT_SYMBOL vmlinux 0x39fd5672 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x39f0d987 __quota_error EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 -EXPORT_SYMBOL vmlinux 0x3a18ec8d ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x3a0ad110 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x3a1c78f3 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x3a2138d3 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x3a24e01b phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x3a3de95d netif_set_tso_max_segs -EXPORT_SYMBOL vmlinux 0x3a40e031 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x3a46ebe6 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a8a7fd1 edac_mc_find -EXPORT_SYMBOL vmlinux 0x3a95d777 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x3aa47c55 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x3a5fb5f0 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x3a78bdca md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x3a79cb08 vme_bus_num +EXPORT_SYMBOL vmlinux 0x3a7ef2dc handshake_genl_put +EXPORT_SYMBOL vmlinux 0x3a8d148f vme_lm_request +EXPORT_SYMBOL vmlinux 0x3a9fc600 dst_discard_out +EXPORT_SYMBOL vmlinux 0x3aab8795 max8998_bulk_write EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3abb79af inet_rcv_saddr_equal -EXPORT_SYMBOL vmlinux 0x3abe2f1c amd_iommu_domain_enable_v2 -EXPORT_SYMBOL vmlinux 0x3ac9713b drop_nlink +EXPORT_SYMBOL vmlinux 0x3ab90eed kern_path EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x3acbde35 pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ade482a flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3ae9792e devm_clk_get -EXPORT_SYMBOL vmlinux 0x3af67ce4 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x3ae36fef blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x3aeb1cfc napi_gro_frags +EXPORT_SYMBOL vmlinux 0x3af10bec scsi_execute_cmd +EXPORT_SYMBOL vmlinux 0x3af2f3d1 sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0x3afc3f25 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x3afec53b sock_no_connect +EXPORT_SYMBOL vmlinux 0x3afed12d key_type_keyring EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b00da82 d_alloc EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b2eadfd tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x3b3179d0 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3b04b0d3 invalidate_disk +EXPORT_SYMBOL vmlinux 0x3b13590d jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x3b1f1bdb nf_setsockopt +EXPORT_SYMBOL vmlinux 0x3b24e9c3 tcp_filter EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b3b7073 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3b423410 __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x3b42a8f7 scsi_set_medium_removal EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b64fbf9 phy_loopback EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b7af66f dev_activate +EXPORT_SYMBOL vmlinux 0x3b718880 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x3b79f331 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x3b80f727 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x3b8b3ea6 devm_input_allocate_device EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3bb5872c jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x3bb96897 input_open_device -EXPORT_SYMBOL vmlinux 0x3bcd8898 inet_del_offload -EXPORT_SYMBOL vmlinux 0x3bd27e9c __SetPageMovable -EXPORT_SYMBOL vmlinux 0x3bd3519d invalidate_disk -EXPORT_SYMBOL vmlinux 0x3bd6ebd7 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0x3bdba221 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x3bebe073 __quota_error -EXPORT_SYMBOL vmlinux 0x3bf12a45 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x3bfdea54 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x3c062b17 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x3b9ca57f phy_drivers_register +EXPORT_SYMBOL vmlinux 0x3ba0a6ca unregister_cdrom +EXPORT_SYMBOL vmlinux 0x3ba2e41f tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x3ba694cf mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x3bb1b6f4 sock_wfree +EXPORT_SYMBOL vmlinux 0x3bb4480b pci_iomap +EXPORT_SYMBOL vmlinux 0x3bbc2acb pv_ops +EXPORT_SYMBOL vmlinux 0x3be37b16 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x3bee8a65 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c22cfff __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x3c239a40 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x3c36b4bc phy_find_first +EXPORT_SYMBOL vmlinux 0x3c20d786 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x3c22fb6b __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x3c3cc010 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map -EXPORT_SYMBOL vmlinux 0x3c447eba phy_device_remove -EXPORT_SYMBOL vmlinux 0x3c4d8011 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x3c519394 devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0x3c542916 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x3c8ed0d5 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x3c9024a8 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x3c9b1152 vfs_setpos -EXPORT_SYMBOL vmlinux 0x3ca5c0bb capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x3c43a755 param_set_invbool +EXPORT_SYMBOL vmlinux 0x3c7fffad read_cache_folio +EXPORT_SYMBOL vmlinux 0x3c97b76b dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x3cac1d80 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3cb14b23 register_filesystem EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cbaffcf __folio_put EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3cd2059d request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x3cd37e73 km_new_mapping +EXPORT_SYMBOL vmlinux 0x3cbf1fed dev_kfree_skb_irq_reason +EXPORT_SYMBOL vmlinux 0x3cc17fa0 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x3cc37535 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x3cd517f1 kill_pid +EXPORT_SYMBOL vmlinux 0x3cd7d530 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ced01bd simple_dir_operations -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d04c78b ___pskb_trim +EXPORT_SYMBOL vmlinux 0x3d191f4a pcie_capability_clear_and_set_word_locked EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d214120 dm_table_event -EXPORT_SYMBOL vmlinux 0x3d2733db fb_show_logo -EXPORT_SYMBOL vmlinux 0x3d345014 eisa_driver_unregister -EXPORT_SYMBOL vmlinux 0x3d5146f8 begin_new_exec -EXPORT_SYMBOL vmlinux 0x3d53074b mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x3d688808 param_set_long -EXPORT_SYMBOL vmlinux 0x3d6daad2 page_readlink -EXPORT_SYMBOL vmlinux 0x3d747464 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x3d7e611c input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x3d8d3586 fget -EXPORT_SYMBOL vmlinux 0x3d90a730 __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x3d97ac52 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x3d980c7f md_bitmap_start_sync -EXPORT_SYMBOL vmlinux 0x3d99c682 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x3d2f9ddd user_revoke +EXPORT_SYMBOL vmlinux 0x3d4e9d34 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x3d66c15e neigh_connected_output +EXPORT_SYMBOL vmlinux 0x3d7bac46 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x3d8281d2 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x3da092b8 dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start -EXPORT_SYMBOL vmlinux 0x3da9b138 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x3daae96c dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x3dabd08e i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3db7c990 jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dc64929 __netdev_alloc_skb EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dd96fbb tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x3dfa52d6 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x3ddf616c mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e26d2a1 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x3e31a9b8 notify_change -EXPORT_SYMBOL vmlinux 0x3e38f203 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x3e3a74bb bio_reset +EXPORT_SYMBOL vmlinux 0x3e0ad88e input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x3e1e61a3 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x3e34c15c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x3e36a81c reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e4188aa md_flush_request -EXPORT_SYMBOL vmlinux 0x3e452156 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0x3e4beba8 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x3e4d5479 mdio_device_reset -EXPORT_SYMBOL vmlinux 0x3e4f47ff devm_ioremap -EXPORT_SYMBOL vmlinux 0x3e663ff7 put_cmsg -EXPORT_SYMBOL vmlinux 0x3e849788 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x3e8b5237 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x3e952992 __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x3e95e832 __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x3e960430 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x3e9e5cbb bdev_check_media_change -EXPORT_SYMBOL vmlinux 0x3ea1bebd __mdiobus_register -EXPORT_SYMBOL vmlinux 0x3ecb1f41 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x3e3c9dcc dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3e4f4298 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x3e61fcf9 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x3e642c2b register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3e68df42 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x3e89a2e1 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x3e89d919 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x3e8ccade sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x3e9767ef phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x3ea2aa4a dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3ea72a1c vif_device_init EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ed0c4e9 jbd2_journal_finish_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x3ed91660 I_BDEV -EXPORT_SYMBOL vmlinux 0x3ee60443 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x3eef5ace platform_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x3ef984e5 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x3ee96c22 rproc_free +EXPORT_SYMBOL vmlinux 0x3eebd193 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x3eef4210 tty_port_close +EXPORT_SYMBOL vmlinux 0x3ef68405 may_setattr +EXPORT_SYMBOL vmlinux 0x3ef69adf __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x3efa7af1 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f03e348 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x3f0b71d2 proto_register EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f169c1e bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x3f1af4eb mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x3f296ced nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f3c89c8 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x3f4539cf unlock_rename EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f58f263 vc_resize -EXPORT_SYMBOL vmlinux 0x3f606289 __folio_start_writeback -EXPORT_SYMBOL vmlinux 0x3f642193 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x3f6708f6 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x3f68578d iov_iter_advance -EXPORT_SYMBOL vmlinux 0x3f6f39ea dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x3f775236 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x3f8383fe dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x3f6a64e0 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x3f6f099c filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x3f759473 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x3f86a72b inode_init_once EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fb10db3 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3f9061eb security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x3fb3288c pci_fixup_device +EXPORT_SYMBOL vmlinux 0x3fb64103 inode_init_owner +EXPORT_SYMBOL vmlinux 0x3fb6c8ac iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x3fbd8698 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x3fbf0a5e mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc0186e mmc_retune_timer_stop -EXPORT_SYMBOL vmlinux 0x3fc39948 cfb_fillrect -EXPORT_SYMBOL vmlinux 0x3fc9487a unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region -EXPORT_SYMBOL vmlinux 0x3fdc8ccf netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x3fe020f4 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3ff43da5 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x3ffa475a generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0x40146265 simple_open -EXPORT_SYMBOL vmlinux 0x4020c452 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x404de4ed unlock_buffer +EXPORT_SYMBOL vmlinux 0x3ff07027 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x3ff3262d __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x400147a0 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x4009e806 ipv4_mtu +EXPORT_SYMBOL vmlinux 0x40185f4f eth_header_parse +EXPORT_SYMBOL vmlinux 0x401ae51c sock_init_data +EXPORT_SYMBOL vmlinux 0x401eef5a blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x401f9a3b neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x40436248 __dynamic_dev_dbg EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x4089a7fd phy_connect +EXPORT_SYMBOL vmlinux 0x405ef874 vfs_readlink +EXPORT_SYMBOL vmlinux 0x4061b4b2 sock_create_kern +EXPORT_SYMBOL vmlinux 0x406d92d2 dev_load +EXPORT_SYMBOL vmlinux 0x40765afe con_is_visible +EXPORT_SYMBOL vmlinux 0x407da0dc param_ops_uint EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409bb7e9 udp_lib_get_port EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40adca4d dquot_quota_on -EXPORT_SYMBOL vmlinux 0x40aed616 tty_port_hangup EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo -EXPORT_SYMBOL vmlinux 0x40cbeac4 import_iovec +EXPORT_SYMBOL vmlinux 0x40ca5f2d ptp_clock_register EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40df6edc genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x40e09289 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x40ee201f register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x40f1f759 dma_set_mask -EXPORT_SYMBOL vmlinux 0x40f349f3 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x40e21b67 __sock_create +EXPORT_SYMBOL vmlinux 0x40ea6660 __netif_rx EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x41247399 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x41290888 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x40fc7bd0 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x4120718c scsi_remove_device +EXPORT_SYMBOL vmlinux 0x412b095e dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x4136d567 register_filesystem -EXPORT_SYMBOL vmlinux 0x41381d9f ip_getsockopt -EXPORT_SYMBOL vmlinux 0x4139e3f5 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x413de78b mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x41362917 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x41367ce1 security_sk_clone EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user -EXPORT_SYMBOL vmlinux 0x415fd0e5 twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x41672898 sock_enable_timestamps -EXPORT_SYMBOL vmlinux 0x41854f2d audit_log_start +EXPORT_SYMBOL vmlinux 0x417c1cd5 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0x417fdcd7 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x417fece2 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x4188ce72 generic_read_dir EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x4198b100 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0x41a13796 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x418b17bd napi_consume_skb +EXPORT_SYMBOL vmlinux 0x4198a2fe jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41bb024f tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x41e7ce28 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x41a8f9b7 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x41a9bf00 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x41b1a1b8 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x41c60ba7 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x41d54ede xfrm_register_type +EXPORT_SYMBOL vmlinux 0x41de6397 netif_rx +EXPORT_SYMBOL vmlinux 0x41e0b611 setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x41e1c831 path_is_under EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f15fdc udp_skb_destructor -EXPORT_SYMBOL vmlinux 0x41fc9d3e kernel_write -EXPORT_SYMBOL vmlinux 0x41fcf141 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x4220c122 pci_map_rom -EXPORT_SYMBOL vmlinux 0x4221fbd0 kill_anon_super -EXPORT_SYMBOL vmlinux 0x42272c7b vfs_mknod -EXPORT_SYMBOL vmlinux 0x4231aa80 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x42137e5e vme_master_mmap +EXPORT_SYMBOL vmlinux 0x42150844 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4228083e cont_write_begin +EXPORT_SYMBOL vmlinux 0x422d9b74 param_set_ullong +EXPORT_SYMBOL vmlinux 0x4231d3f8 elv_rb_add +EXPORT_SYMBOL vmlinux 0x4238afe2 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x423d461f pci_irq_vector +EXPORT_SYMBOL vmlinux 0x42473e66 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x42560269 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x42530b7c dst_destroy +EXPORT_SYMBOL vmlinux 0x4253ed1c input_alloc_absinfo EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4268ccce dquot_resume -EXPORT_SYMBOL vmlinux 0x4269a11e release_pages -EXPORT_SYMBOL vmlinux 0x4274c7c6 get_user_pages_remote -EXPORT_SYMBOL vmlinux 0x427a14d1 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x4284779d kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0x42a0db51 phy_driver_register -EXPORT_SYMBOL vmlinux 0x42af4154 vfs_unlink +EXPORT_SYMBOL vmlinux 0x425b2bba pcie_capability_clear_and_set_word_unlocked +EXPORT_SYMBOL vmlinux 0x425f7397 seq_dentry +EXPORT_SYMBOL vmlinux 0x426d2b73 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x426ef1cc genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x427b0766 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x42a3c569 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x42aa7531 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x42b40f16 inet6_release +EXPORT_SYMBOL vmlinux 0x42bb5bde ipv6_setsockopt EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42d6f12c iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x42ded009 get_cached_acl -EXPORT_SYMBOL vmlinux 0x42e06886 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x42ca7506 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x42cd612e tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x42d75c26 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x42e0f24b xp_alloc +EXPORT_SYMBOL vmlinux 0x42e406af tcp_seq_start +EXPORT_SYMBOL vmlinux 0x42eac349 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42fbcabe flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431ac1fe set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x43245857 tcp_poll +EXPORT_SYMBOL vmlinux 0x4307c8e5 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x432bd877 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x432eb103 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x43361c86 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x4339eb02 elv_rb_del EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x434aa6be flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x433cb0e5 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x43402610 wake_up_process +EXPORT_SYMBOL vmlinux 0x43463e34 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x436a0969 folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x436c86ce dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437a8c91 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x4384633e register_md_cluster_operations EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x43921727 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x4395989e tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x439718b5 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x439b7feb fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x43863e49 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x438f61ee tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x43a2297e pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x43b945ac napi_build_skb EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43d03868 vfs_llseek EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43f16198 __skb_pad +EXPORT_SYMBOL vmlinux 0x43d4561e tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x43e05b84 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x43e5fc18 elv_rb_del +EXPORT_SYMBOL vmlinux 0x43e77162 inet_frags_init +EXPORT_SYMBOL vmlinux 0x43f0358e lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x43f9232a mmc_alloc_host EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember -EXPORT_SYMBOL vmlinux 0x44303838 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x43fcae1b dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x440e1343 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x441283ad pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x441df04f genl_register_family +EXPORT_SYMBOL vmlinux 0x44359500 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x4436bc93 inet6_add_offload EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x4445c670 dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44623137 dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x4473d4c2 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x44714939 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x447aa40a dma_map_resource +EXPORT_SYMBOL vmlinux 0x4482aea1 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x44874917 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x448d02f0 max8998_bulk_read EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x4496c444 flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44af34ca napi_complete_done -EXPORT_SYMBOL vmlinux 0x44bc1819 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x44dad936 tty_port_close -EXPORT_SYMBOL vmlinux 0x44dfadb7 dump_align +EXPORT_SYMBOL vmlinux 0x44b8af26 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44ed4fdb dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x44f77c93 mntget +EXPORT_SYMBOL vmlinux 0x44eb8c51 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x44ff46b4 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450639ab sg_last EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle -EXPORT_SYMBOL vmlinux 0x450a950e pneigh_lookup +EXPORT_SYMBOL vmlinux 0x45106ef0 __blk_mq_alloc_disk EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453211ff skb_mac_gso_segment EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x454f2746 find_vma_intersection EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455ea0b0 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x456cae27 napi_disable +EXPORT_SYMBOL vmlinux 0x45674d00 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x456e4598 pci_scan_slot EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45816d5c blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x45afa6e8 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x45b83ed3 register_console -EXPORT_SYMBOL vmlinux 0x45c001ed pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x458ac57e tcp_seq_next +EXPORT_SYMBOL vmlinux 0x45a7a1c7 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x45bff97e tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x45c6fdda sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x45d0edb6 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map -EXPORT_SYMBOL vmlinux 0x45d62767 done_path_create -EXPORT_SYMBOL vmlinux 0x45e6e996 bio_split_to_limits EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 -EXPORT_SYMBOL vmlinux 0x460b5053 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x45eca1ed eth_gro_receive +EXPORT_SYMBOL vmlinux 0x45f0d2d2 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x45f76273 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x45fc19d2 retbleed_untrain_ret EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x4612d87c has_capability_noaudit -EXPORT_SYMBOL vmlinux 0x461641d4 proc_create -EXPORT_SYMBOL vmlinux 0x461d10cc phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x462d9a61 km_query -EXPORT_SYMBOL vmlinux 0x4633d056 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x46426dee __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x463b9baf md_wakeup_thread EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header -EXPORT_SYMBOL vmlinux 0x465053a3 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x46565c69 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x464e23a1 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x4650f56c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x46572cf9 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size EXPORT_SYMBOL vmlinux 0x466c14a7 __delay -EXPORT_SYMBOL vmlinux 0x466d59b9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x467ac428 dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4689dfa3 i8042_remove_filter -EXPORT_SYMBOL vmlinux 0x468ef892 component_match_add_release EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46a6d820 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x46a5aa93 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x46ab96d8 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46c4d0d2 inet_release -EXPORT_SYMBOL vmlinux 0x46c74680 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x46c69a14 pci_unmap_rom EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval -EXPORT_SYMBOL vmlinux 0x46e4b21e qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x46d14a90 seq_file_path EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x471a1c22 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x473b2658 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x47160b25 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x4723dca2 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x473348aa bdi_register EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu -EXPORT_SYMBOL vmlinux 0x475e1a55 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x475fe1cd sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x476b3f4d netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x476bff91 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0x476c1179 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x476d0e32 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x474ab249 end_page_writeback +EXPORT_SYMBOL vmlinux 0x4759173b mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x4763b366 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x47657e0b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x4766a378 gro_cells_init EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4783a797 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x478ef588 dev_mc_del -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x4796b6fc phy_attach_direct -EXPORT_SYMBOL vmlinux 0x479f93a3 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x47973dcd rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x47a66615 icmp6_send +EXPORT_SYMBOL vmlinux 0x47b143ac pipe_unlock +EXPORT_SYMBOL vmlinux 0x47b8e2b8 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x47c1cee1 fs_param_is_bool EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c71cc6 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d5a9d8 single_release EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47ecca01 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x47f20875 input_get_timestamp -EXPORT_SYMBOL vmlinux 0x47f56938 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x4807ed65 devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x480a918e sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x47f2d367 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x480facbe neigh_update EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x48171240 param_set_copystring EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x4819f6c0 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x48260d46 mdio_device_register -EXPORT_SYMBOL vmlinux 0x4826eab7 module_put +EXPORT_SYMBOL vmlinux 0x48234268 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x48248dce pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482b88a8 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x48388772 submit_bh EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config -EXPORT_SYMBOL vmlinux 0x484a9b47 __block_write_begin -EXPORT_SYMBOL vmlinux 0x484dd013 devm_memremap EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485adfe2 fb_get_mode EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x4866e44d uart_suspend_port +EXPORT_SYMBOL vmlinux 0x486d716c __alloc_skb +EXPORT_SYMBOL vmlinux 0x4871ebd4 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x4880caa4 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x4887968c xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x489685b6 dev_uc_add EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48aac818 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x48ae4e37 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x48af8d39 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x48b22bb3 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier -EXPORT_SYMBOL vmlinux 0x48f000d9 iov_iter_get_pages_alloc2 -EXPORT_SYMBOL vmlinux 0x48f100bb devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x48d70514 mmc_add_host +EXPORT_SYMBOL vmlinux 0x48e46a9b max8998_update_reg EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range -EXPORT_SYMBOL vmlinux 0x490095b0 mfd_add_devices EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x491db36c __neigh_create -EXPORT_SYMBOL vmlinux 0x49292ae0 sock_rfree -EXPORT_SYMBOL vmlinux 0x493a7f17 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x49479b7f phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x4949fe06 seq_read_iter +EXPORT_SYMBOL vmlinux 0x4909a790 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x491c43dc file_open_root EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x49504c4f kill_anon_super +EXPORT_SYMBOL vmlinux 0x4952d93c filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x496f173c __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x498ee940 inet_sendpage -EXPORT_SYMBOL vmlinux 0x499afd73 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x497d2b6f devfreq_update_target +EXPORT_SYMBOL vmlinux 0x497f3b83 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x49887319 key_validate +EXPORT_SYMBOL vmlinux 0x499ee22b inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a7988e phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x49a904c7 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x49adea5d __mdiobus_write +EXPORT_SYMBOL vmlinux 0x49ae73ac bpf_map_get EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49df7fac inet_recvmsg -EXPORT_SYMBOL vmlinux 0x49e467ef netlink_capable -EXPORT_SYMBOL vmlinux 0x49ef2050 security_sctp_assoc_established -EXPORT_SYMBOL vmlinux 0x49f67671 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x49fa3b0e __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x49c07227 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x49c37c8d get_cached_acl +EXPORT_SYMBOL vmlinux 0x49c9b74b amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x49cec428 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x49db5f5d pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x49e0dd5f clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x49e97418 vfs_fsync +EXPORT_SYMBOL vmlinux 0x49f3bf46 kmalloc_trace +EXPORT_SYMBOL vmlinux 0x49fd2625 devm_memremap +EXPORT_SYMBOL vmlinux 0x4a01a101 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x4a118fe4 pps_unregister_source EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a3c0a02 genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x4a3d70f1 sock_from_file -EXPORT_SYMBOL vmlinux 0x4a42221c sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x4a3db820 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 -EXPORT_SYMBOL vmlinux 0x4a50ff29 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x4a51b8d9 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x4a57823f param_set_byte +EXPORT_SYMBOL vmlinux 0x4a5828c4 security_path_rename +EXPORT_SYMBOL vmlinux 0x4a58329d vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x4a5eae51 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x4a7e4ebc set_disk_ro EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a9d3350 seq_file_path -EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x4ad07351 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x4ad23401 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x4ad7367e phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x4ae676e7 __phy_resume +EXPORT_SYMBOL vmlinux 0x4a991a4d pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x4aab3691 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x4ac921a0 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x4ad2728e __neigh_create +EXPORT_SYMBOL vmlinux 0x4adfda4b arp_xmit +EXPORT_SYMBOL vmlinux 0x4ae0ab9c nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aed4faf xfrm_dst_ifdown EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure -EXPORT_SYMBOL vmlinux 0x4b0af19c security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x4b0b306a dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x4b1865d9 pci_find_capability -EXPORT_SYMBOL vmlinux 0x4b2d834b __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x4b36d622 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x4b381aa7 sync_blockdev -EXPORT_SYMBOL vmlinux 0x4b38487b kernel_listen +EXPORT_SYMBOL vmlinux 0x4b0b3edb skb_queue_purge +EXPORT_SYMBOL vmlinux 0x4b19dddd dquot_drop +EXPORT_SYMBOL vmlinux 0x4b243008 init_special_inode +EXPORT_SYMBOL vmlinux 0x4b2d01a2 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x4b3a9bef kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b4a879a set_blocksize -EXPORT_SYMBOL vmlinux 0x4b4eeec1 phy_init_eee +EXPORT_SYMBOL vmlinux 0x4b4f898b nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x4b557708 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x4b5684cc param_set_int EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 -EXPORT_SYMBOL vmlinux 0x4b6ad550 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x4b63c815 pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b729021 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x4b890e87 tcf_exts_validate -EXPORT_SYMBOL vmlinux 0x4b94be56 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x4bb78760 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x4bc1e028 pci_clear_master +EXPORT_SYMBOL vmlinux 0x4b8fcaf7 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x4b93d83c xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x4b97e999 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x4b9eb73b dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x4ba584d2 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x4baea030 d_find_alias +EXPORT_SYMBOL vmlinux 0x4bb0998a sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x4bb118cf devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x4bc9999b __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bdbd691 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x4be1e34e kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name -EXPORT_SYMBOL vmlinux 0x4bfb18ca kill_litter_super +EXPORT_SYMBOL vmlinux 0x4bfe416f genphy_loopback +EXPORT_SYMBOL vmlinux 0x4c0277fb dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x4c02cb6f tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c10d3c7 param_set_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x4c112c13 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x4c13e8f0 slab_build_skb -EXPORT_SYMBOL vmlinux 0x4c143919 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x4c1aab2f config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x4c1497b5 component_match_add_release EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 -EXPORT_SYMBOL vmlinux 0x4c3eb031 textsearch_unregister EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c5344a1 pv_ops -EXPORT_SYMBOL vmlinux 0x4c6aa8c6 tcf_em_register -EXPORT_SYMBOL vmlinux 0x4c78b11a dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x4c57bb39 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x4c68f8fb fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x4c84285a locks_delete_block +EXPORT_SYMBOL vmlinux 0x4c88f6f2 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4c9ea442 d_make_root -EXPORT_SYMBOL vmlinux 0x4cc8cdc3 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x4ccdda4f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x4cb0d028 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x4cc1c443 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x4cda9cd5 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x4cdd0ef4 config_item_put -EXPORT_SYMBOL vmlinux 0x4cfbebee kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x4d18aec5 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x4d02da2e ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x4d065318 i2c_get_adapter_by_fwnode EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d347697 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x4d372c86 __do_once_done -EXPORT_SYMBOL vmlinux 0x4d542beb acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0x4d58d6a7 make_bad_inode -EXPORT_SYMBOL vmlinux 0x4d826137 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x4d345f27 sock_alloc +EXPORT_SYMBOL vmlinux 0x4d360864 serio_open +EXPORT_SYMBOL vmlinux 0x4d5afa6c xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x4d5efb43 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x4d690ff7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x4d75c108 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x4d908097 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x4d924f20 memremap EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da7bfad netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x4daf96c4 input_get_keycode -EXPORT_SYMBOL vmlinux 0x4dbe2257 __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4dcb878d mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dbb2339 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x4dc4f93c mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x4dce082b register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x4dd0b3b3 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x4dd95689 handshake_req_submit EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df6ab4f backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e003882 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x4e0c5892 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x4e194f9f tty_port_destroy +EXPORT_SYMBOL vmlinux 0x4e07daa6 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4e13fe79 netdev_info EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e2add23 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x4e29d4d0 register_quota_format EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e40e1c7 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e3ec815 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e56d10f blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7de0c8 keyring_search -EXPORT_SYMBOL vmlinux 0x4e93994f vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x4e718986 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x4e73361e crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x4e9437ca drop_nlink +EXPORT_SYMBOL vmlinux 0x4e9713f3 lease_get_mtime EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset -EXPORT_SYMBOL vmlinux 0x4ea38d29 filemap_dirty_folio EXPORT_SYMBOL vmlinux 0x4ea78bab __x86_indirect_call_thunk_r15 EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb3b0c7 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x4eb79a1a inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x4eb86abc jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x4ec187d5 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x4ec436c0 skb_clone -EXPORT_SYMBOL vmlinux 0x4ec4a70f pnp_device_detach +EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x4eb65145 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x4ec41bb4 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x4ec49c40 folio_create_empty_buffers EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ef4100a pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x4ef43c52 pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x4f06ff3c unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x4f112593 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x4ef4e165 tcf_classify +EXPORT_SYMBOL vmlinux 0x4f01a4a1 pci_pme_active EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1ff4f1 fd_install EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f38e4f7 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x4f504af1 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f58472a single_release EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 -EXPORT_SYMBOL vmlinux 0x4f740294 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x4f81ecc6 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x4f82d229 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x4f83961d phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0x4f917a9b vme_slave_request -EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x4f9a2d89 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x4fc60196 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x4f798ca5 key_revoke +EXPORT_SYMBOL vmlinux 0x4f7a306d bioset_init +EXPORT_SYMBOL vmlinux 0x4fa6ee40 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x4fb2f16a scsi_scan_host +EXPORT_SYMBOL vmlinux 0x4fc89c98 tty_do_resize EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command -EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid -EXPORT_SYMBOL vmlinux 0x4fea34c2 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x4ffaa8b1 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0x4ffb377b __nla_put +EXPORT_SYMBOL vmlinux 0x4ffc7d55 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x500d8599 clk_get -EXPORT_SYMBOL vmlinux 0x500e1436 sock_sendmsg EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5040c559 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x5046174b config_item_set_name -EXPORT_SYMBOL vmlinux 0x504909fd fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0x5050ae66 vfs_create +EXPORT_SYMBOL vmlinux 0x5028bcf3 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x502f5001 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x503da70b mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x5041238f generic_fadvise +EXPORT_SYMBOL vmlinux 0x504830c6 build_skb +EXPORT_SYMBOL vmlinux 0x5056a1ea copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0x505a9c29 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x505b14a8 inet6_del_offload EXPORT_SYMBOL vmlinux 0x50624917 sha1_init -EXPORT_SYMBOL vmlinux 0x506d4e7a nf_setsockopt EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x50775b42 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x507a7cc2 netif_tx_wake_queue EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x5093182c copy_page_from_iter EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x50980887 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x509cad2d tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x509ed667 mroute6_is_socket EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50b209c4 md_bitmap_unplug EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x50bade0b nd_btt_probe EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50d64f63 dev_open EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del -EXPORT_SYMBOL vmlinux 0x50f5c6b2 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x50eaa16d padata_alloc +EXPORT_SYMBOL vmlinux 0x50eed630 ps2_end_command EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr -EXPORT_SYMBOL vmlinux 0x50fc12ed amd_iommu_domain_set_gcr3 -EXPORT_SYMBOL vmlinux 0x5102679d mdiobus_unregister EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5110a0c3 seq_path -EXPORT_SYMBOL vmlinux 0x51284e32 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x5102d2fb d_genocide +EXPORT_SYMBOL vmlinux 0x51142c54 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x511fd9e3 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x5136f640 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec -EXPORT_SYMBOL vmlinux 0x51478164 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x513e1c14 param_set_uint +EXPORT_SYMBOL vmlinux 0x51454833 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x51662dea dump_emit -EXPORT_SYMBOL vmlinux 0x51a007fa mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x5169ac7c page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x516e1de8 pci_release_regions +EXPORT_SYMBOL vmlinux 0x51798001 __invalidate_device EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x51a7b7ce __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x51bd1934 flow_rule_match_l2tpv3 +EXPORT_SYMBOL vmlinux 0x51c73d5e dev_addr_add EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d3a449 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x51d59b1a ip_defrag +EXPORT_SYMBOL vmlinux 0x51db3d03 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x51e21dd0 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x51eb02ef read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x51ed76a3 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 -EXPORT_SYMBOL vmlinux 0x51f399f4 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x51f99e1e pci_free_irq_vectors -EXPORT_SYMBOL vmlinux 0x5221e48e complete_request_key -EXPORT_SYMBOL vmlinux 0x5229d371 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x52378800 input_set_keycode -EXPORT_SYMBOL vmlinux 0x5244222b PageMovable -EXPORT_SYMBOL vmlinux 0x524afa19 folio_migrate_flags -EXPORT_SYMBOL vmlinux 0x52500bc7 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x5259decd vme_irq_free -EXPORT_SYMBOL vmlinux 0x5265d016 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x520b4b52 vlan_for_each +EXPORT_SYMBOL vmlinux 0x520e97c4 proc_dostring +EXPORT_SYMBOL vmlinux 0x5210cc21 sock_i_ino +EXPORT_SYMBOL vmlinux 0x5231ff87 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x526130df posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x526e4ad2 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x527c9824 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x528e1c8a audit_log EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a6c680 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x52ac02b9 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x52af6218 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x52b884fc __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0x52c703c1 param_set_copystring +EXPORT_SYMBOL vmlinux 0x529b1636 devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52da5b5c ip_defrag -EXPORT_SYMBOL vmlinux 0x52df1976 retire_super -EXPORT_SYMBOL vmlinux 0x52eb403f kernel_getsockname +EXPORT_SYMBOL vmlinux 0x52eb6d54 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x52ec1b68 migrate_vma_pages EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52fb90c0 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x52f1d013 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530f7996 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x530f38ea mmc_run_bkops EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x531305ab pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x53178480 folio_unlock EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5322663e acpi_get_handle +EXPORT_SYMBOL vmlinux 0x532fcbe4 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x53317aff phy_suspend EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533fdd1e netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x5348b97b fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0x5354de00 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x534cf6a1 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off -EXPORT_SYMBOL vmlinux 0x53636a2e _dev_emerg -EXPORT_SYMBOL vmlinux 0x536b1b6d inet_add_offload -EXPORT_SYMBOL vmlinux 0x536d5b1c posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x537033d3 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x537e5d15 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x538df0c8 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x53963dd1 pci_iomap +EXPORT_SYMBOL vmlinux 0x53589348 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x53680756 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x538c5372 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x53959208 phy_connect_direct EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53a84850 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x53b65091 fb_validate_mode EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53d51ecf uart_add_one_port -EXPORT_SYMBOL vmlinux 0x53d6f9c4 tcf_classify -EXPORT_SYMBOL vmlinux 0x53d94b12 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0x53e0ba76 eth_header_cache -EXPORT_SYMBOL vmlinux 0x54049f1d pcim_iomap -EXPORT_SYMBOL vmlinux 0x541367a2 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x53d4e36e blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x53dd89e4 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x53ed64bf __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x5400ba15 dquot_commit +EXPORT_SYMBOL vmlinux 0x54064a34 scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x542c47e8 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x54390f26 phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5444d0f1 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x545b943e input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x5469d9f3 inode_update_time -EXPORT_SYMBOL vmlinux 0x546fc71a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x544ed7a6 security_sb_remount +EXPORT_SYMBOL vmlinux 0x545e34c3 load_nls +EXPORT_SYMBOL vmlinux 0x5471a19b ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x54727b1c param_set_charp +EXPORT_SYMBOL vmlinux 0x5474a562 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable -EXPORT_SYMBOL vmlinux 0x5492f946 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x549b1b50 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x549f3fbf ip6_dst_check -EXPORT_SYMBOL vmlinux 0x54a81cf8 crypto_kdf108_ctr_generate -EXPORT_SYMBOL vmlinux 0x54aea203 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x548142a9 generic_perform_write +EXPORT_SYMBOL vmlinux 0x5481707b configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x549fabee empty_aops EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54bb41ef sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x54c33fec scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x54ce46ce fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0x54d84803 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x54b7cafd flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x54c1f792 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x54c87fdd dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x54d025a7 nf_log_packet EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x54e7584b agp_unbind_memory EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit -EXPORT_SYMBOL vmlinux 0x5508ad2b flow_rule_match_pppoe -EXPORT_SYMBOL vmlinux 0x5509ce87 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x550d90e7 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x5516b106 __devm_release_region +EXPORT_SYMBOL vmlinux 0x551a50e8 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5526265e dquot_resume +EXPORT_SYMBOL vmlinux 0x552d275e ipv6_push_frag_opts EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 -EXPORT_SYMBOL vmlinux 0x5543769d ppp_register_compressor EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x5556365b pid_task EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x55701d1a __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x558636a5 audit_log_start EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x5596180f inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x55bd25d2 padata_do_parallel -EXPORT_SYMBOL vmlinux 0x55d3b245 pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0x55db4cf7 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x55931cd3 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x55bfbd61 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x55cb3ca5 pci_bus_type EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55f6161d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x55f7e7a7 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x5609aaff twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x561d5f4f dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x5631c9b4 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x5601be3f md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x560bfaf1 scsi_device_get EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user -EXPORT_SYMBOL vmlinux 0x56427014 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x563a8bf5 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x563e0e92 mmc_erase EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564a2f85 devm_backlight_device_register EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5654275c __seq_open_private +EXPORT_SYMBOL vmlinux 0x565caca8 abort_creds +EXPORT_SYMBOL vmlinux 0x56620e5b sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x567ebbd6 vm_mmap EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568513ed scmd_printk -EXPORT_SYMBOL vmlinux 0x568baa62 fqdir_init -EXPORT_SYMBOL vmlinux 0x5699528f pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x5699af3e con_is_bound -EXPORT_SYMBOL vmlinux 0x56a4113a free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x56bb698d register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x56a00f67 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x56b0de37 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x56b35e5a scsi_remove_host +EXPORT_SYMBOL vmlinux 0x56c152c6 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56d69d95 agp_generic_remove_memory -EXPORT_SYMBOL vmlinux 0x56deba8b amd_iommu_domain_clear_gcr3 -EXPORT_SYMBOL vmlinux 0x56e4fa6a scsi_remove_target -EXPORT_SYMBOL vmlinux 0x5700d28c buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x5743a5ec pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x57487125 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x56d5da47 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x572d61ba unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x573f2162 give_up_console +EXPORT_SYMBOL vmlinux 0x57407207 scsi_register_driver EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x574ef639 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0x5750dfb4 blk_rq_map_user_io -EXPORT_SYMBOL vmlinux 0x5751b861 vga_switcheroo_lock_ddc -EXPORT_SYMBOL vmlinux 0x5754a05e pin_user_pages EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57590cf5 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x57607d2d jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x5763a1c0 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x576567f8 putname +EXPORT_SYMBOL vmlinux 0x57689789 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x57693acd phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x5775fd8e amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x57864df5 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x5789b4d8 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x578b664f ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x578d3c75 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57ab42f8 simple_rename EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write EXPORT_SYMBOL vmlinux 0x57bcbaea __x86_indirect_call_thunk_r14 -EXPORT_SYMBOL vmlinux 0x57d11873 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x57c8cf1d sock_create EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize -EXPORT_SYMBOL vmlinux 0x57f72f36 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x57fdce86 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x580c562f ppp_dev_name +EXPORT_SYMBOL vmlinux 0x580ddddd security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x580e3d99 __neigh_for_each_release EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58282891 _dev_notice EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb -EXPORT_SYMBOL vmlinux 0x58377c02 scsi_done EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x58545a81 follow_pfn +EXPORT_SYMBOL vmlinux 0x5849f541 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x5850b716 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x585cdd4d sync_blockdev +EXPORT_SYMBOL vmlinux 0x58610f10 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x586c690f set_posix_acl EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587d0a97 mipi_dsi_set_maximum_return_packet_size EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x58806784 vme_init_bridge -EXPORT_SYMBOL vmlinux 0x5894457b agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x58860f08 md_bitmap_free EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x589c5bc6 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x58a475ca truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x589e20e1 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x589f4bab rw_verify_area +EXPORT_SYMBOL vmlinux 0x58a78409 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info -EXPORT_SYMBOL vmlinux 0x58addd56 start_tty EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58c1f808 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0x58d48b05 pci_iounmap -EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58bfccb4 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x58d57713 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x58dec8fb proc_create_data EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58edf5c6 blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x5906fc7f eth_mac_addr -EXPORT_SYMBOL vmlinux 0x590793ec __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x590f9230 mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x59107390 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x58e53d36 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x58e81c3e xfrm_state_update +EXPORT_SYMBOL vmlinux 0x59028fd5 block_commit_write +EXPORT_SYMBOL vmlinux 0x59138fb9 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x591cee56 drop_super +EXPORT_SYMBOL vmlinux 0x59292d5b blkdev_put +EXPORT_SYMBOL vmlinux 0x592a928f mmc_can_discard +EXPORT_SYMBOL vmlinux 0x593a4427 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x593ca070 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x59412f24 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x59428240 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x594b7456 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596742e2 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x5973edf9 md_write_end -EXPORT_SYMBOL vmlinux 0x59785f58 sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x598eba0e passthru_features_check -EXPORT_SYMBOL vmlinux 0x5991ecc2 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x5954d48f shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x5968dc6d proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5969f992 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59b9f0d5 jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0x59c1fd03 d_find_alias -EXPORT_SYMBOL vmlinux 0x59d90103 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x59f56dfe genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x59f8fabb unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x59fab358 make_kprojid -EXPORT_SYMBOL vmlinux 0x5a07e290 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x59d72481 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x59de7fb1 fb_pan_display +EXPORT_SYMBOL vmlinux 0x59ec0a82 napi_disable +EXPORT_SYMBOL vmlinux 0x59f86ead pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x5a019a7a phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x5a02f63b __pci_register_driver +EXPORT_SYMBOL vmlinux 0x5a0ab2cd generic_update_time EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0b7fd9 shmem_aops +EXPORT_SYMBOL vmlinux 0x5a0ec716 tty_hangup +EXPORT_SYMBOL vmlinux 0x5a20ed32 d_set_d_op +EXPORT_SYMBOL vmlinux 0x5a27167b elevator_alloc EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a405a02 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x5a3500cb bio_alloc_clone EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a4d9ba6 sock_queue_rcv_skb_reason EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask -EXPORT_SYMBOL vmlinux 0x5a71a6d1 tcp_md5_key_copy -EXPORT_SYMBOL vmlinux 0x5a8060fc security_sk_clone +EXPORT_SYMBOL vmlinux 0x5a7b1bdb fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x5a90220e rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a94b69b pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5abf4bd2 has_capability -EXPORT_SYMBOL vmlinux 0x5acbce84 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5aa56c93 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x5aa90ab6 seq_release_private +EXPORT_SYMBOL vmlinux 0x5aaa6aad xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x5ac01b95 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x5aca89bb mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x5ad564de tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x5adace84 copy_splice_read EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5aebe6ef __netif_napi_del -EXPORT_SYMBOL vmlinux 0x5afd76b4 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x5b03f898 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x5b0505d3 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x5b0abcec pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x5b22c50a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5ae1f82f pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x5affe503 scsi_host_busy EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b3580b2 ip_options_compile -EXPORT_SYMBOL vmlinux 0x5b3a72a9 sget_fc +EXPORT_SYMBOL vmlinux 0x5b34d9ab sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b47a319 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x5b5670a6 __brelse +EXPORT_SYMBOL vmlinux 0x5b46fa94 mpage_readahead +EXPORT_SYMBOL vmlinux 0x5b4813dd hid_bpf_ops +EXPORT_SYMBOL vmlinux 0x5b52c25a sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5de63b __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x5b640895 netdev_name_in_use EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b6a1284 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x5b7bcd69 insert_inode_locked EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk -EXPORT_SYMBOL vmlinux 0x5b871b5c inet6_release -EXPORT_SYMBOL vmlinux 0x5baa784a skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x5bcd8e8e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x5b89ff64 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x5bbe8654 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x5bc8b6db cfb_fillrect +EXPORT_SYMBOL vmlinux 0x5bc8bf57 acpi_notifier_call_chain EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x5bcfdd12 ppp_register_net_channel EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb3c38 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5beac8a0 bio_copy_data -EXPORT_SYMBOL vmlinux 0x5c08b8fc max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x5c1260e7 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x5bf66bc6 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c27cef5 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x5c2bcb21 phy_device_register -EXPORT_SYMBOL vmlinux 0x5c3c49a8 pci_request_irq +EXPORT_SYMBOL vmlinux 0x5c35ca4f ipmr_rule_default EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c3e1e5b fwnode_iomap -EXPORT_SYMBOL vmlinux 0x5c50d424 kset_register -EXPORT_SYMBOL vmlinux 0x5c6d8c3f pci_restore_state -EXPORT_SYMBOL vmlinux 0x5c73a476 sockopt_release_sock -EXPORT_SYMBOL vmlinux 0x5c88fc08 wireless_spy_update -EXPORT_SYMBOL vmlinux 0x5c9fa963 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x5cb21de8 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x5cb61c29 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0x5cba9b4c dev_add_pack -EXPORT_SYMBOL vmlinux 0x5cd14a3a deactivate_super -EXPORT_SYMBOL vmlinux 0x5cd1d6c7 dentry_open +EXPORT_SYMBOL vmlinux 0x5c48d9d5 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x5c4e9334 __break_lease +EXPORT_SYMBOL vmlinux 0x5c97b0c7 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x5cad3c23 pci_find_resource +EXPORT_SYMBOL vmlinux 0x5caea11a bio_chain +EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x5cd715a9 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x5ce0a65d nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x5ced6673 alloc_fcdev EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf9e89c blk_execute_rq EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x5d06f8b8 xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0x5d294dbf xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x5d2b4acb blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x5d2bb4d9 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x5d436214 current_in_userns +EXPORT_SYMBOL vmlinux 0x5d032e36 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x5d0821d3 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x5d0a291f input_event +EXPORT_SYMBOL vmlinux 0x5d133bce simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x5d35a1d2 tcf_block_get EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d5721fc flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x5d598d0d __scm_send -EXPORT_SYMBOL vmlinux 0x5d66db9e mmc_can_erase -EXPORT_SYMBOL vmlinux 0x5d76b6b8 reuseport_has_conns_set -EXPORT_SYMBOL vmlinux 0x5d7aafe7 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x5d826e29 genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0x5d9880ab processors -EXPORT_SYMBOL vmlinux 0x5d99ddb7 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0x5da5b3ce elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x5dc31e71 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x5deb4277 dst_init -EXPORT_SYMBOL vmlinux 0x5df757e9 regset_get -EXPORT_SYMBOL vmlinux 0x5e012710 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x5d5b72bb ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x5d6b9e4a d_drop +EXPORT_SYMBOL vmlinux 0x5d7ed06b i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x5da935bd eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x5dc6038c devm_ioremap +EXPORT_SYMBOL vmlinux 0x5e02c78b tcp_read_skb +EXPORT_SYMBOL vmlinux 0x5e066a3b misc_register EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e071451 nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e265f83 set_cached_acl -EXPORT_SYMBOL vmlinux 0x5e2b5791 sock_create +EXPORT_SYMBOL vmlinux 0x5e1e5ae2 param_set_ushort +EXPORT_SYMBOL vmlinux 0x5e24957c blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue -EXPORT_SYMBOL vmlinux 0x5e367963 del_gendisk EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e37c5ba iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x5e48e243 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x5e64f675 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x5e847444 iterate_fd +EXPORT_SYMBOL vmlinux 0x5e382c98 fb_get_mode +EXPORT_SYMBOL vmlinux 0x5e453dd3 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x5e4652e7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5e504103 phy_loopback +EXPORT_SYMBOL vmlinux 0x5e52d39f generic_ro_fops +EXPORT_SYMBOL vmlinux 0x5e61b883 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x5e698551 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x5e753937 __register_nls +EXPORT_SYMBOL vmlinux 0x5e77a2a4 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x5e7c7a14 skb_coalesce_rx_frag EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8734c5 security_path_unlink -EXPORT_SYMBOL vmlinux 0x5e92d336 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask -EXPORT_SYMBOL vmlinux 0x5e962d86 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x5e978534 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5eb36daa mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x5eb83f6c vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x5ea93e6b eth_commit_mac_addr_change EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecc06ae rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x5ecfc4e7 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed85b7a input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edce74a bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x5ede33dc scsi_device_put -EXPORT_SYMBOL vmlinux 0x5ee21a89 register_mii_timestamper -EXPORT_SYMBOL vmlinux 0x5eedef34 param_set_ushort +EXPORT_SYMBOL vmlinux 0x5ef3b9f3 param_get_invbool EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f41e22b input_register_handle EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f56757c phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0x5f5845e2 udp_seq_stop -EXPORT_SYMBOL vmlinux 0x5f588c91 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x5f5c4ede dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x5f665878 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f6d04f1 dump_page EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f9552e2 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x5f99074b unix_get_socket EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5f9f91bf blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0x5fbe331f jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x5fbc4553 pcim_iomap +EXPORT_SYMBOL vmlinux 0x5fbc668f __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc71331 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fd4e046 dev_uc_add -EXPORT_SYMBOL vmlinux 0x5fd6c42b pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x5fcabf6a d_invalidate EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x5fed1512 setattr_copy -EXPORT_SYMBOL vmlinux 0x5ff6b7e3 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x6001f1f8 agp_bind_memory EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen -EXPORT_SYMBOL vmlinux 0x60077f36 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x60085bdf pci_biosrom_size EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit -EXPORT_SYMBOL vmlinux 0x600c21f1 block_write_full_page EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6033466f __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603ee7ad textsearch_find_continuous -EXPORT_SYMBOL vmlinux 0x604b848b eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x60523039 set_binfmt -EXPORT_SYMBOL vmlinux 0x60562c4c __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x604bea26 dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x606d77b2 dev_close +EXPORT_SYMBOL vmlinux 0x605898a1 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x605be5ec tcp_ioctl +EXPORT_SYMBOL vmlinux 0x60621bc9 inet6_protos +EXPORT_SYMBOL vmlinux 0x6063736f remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x606a5fc2 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x607e39f8 locks_init_lock +EXPORT_SYMBOL vmlinux 0x608614ea __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609d5a68 generic_file_mmap EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL vmlinux 0x60a9c461 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x60b099c0 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60c2a21d fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x60c59c4b configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x60af4f61 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x60bbb124 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x60c79f63 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x60ca1c98 __check_sticky EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60e72868 page_pool_put_defragged_page -EXPORT_SYMBOL vmlinux 0x60ec9774 phy_attached_print +EXPORT_SYMBOL vmlinux 0x60ee29b0 netlink_set_err +EXPORT_SYMBOL vmlinux 0x60f46631 input_copy_abs +EXPORT_SYMBOL vmlinux 0x60f549e9 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x60f9f4e9 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x61032243 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address EXPORT_SYMBOL vmlinux 0x610756b8 __x86_indirect_call_thunk_rdx -EXPORT_SYMBOL vmlinux 0x610bd20f intel_gmch_probe -EXPORT_SYMBOL vmlinux 0x6122bc80 send_sig -EXPORT_SYMBOL vmlinux 0x61231a8f sock_wmalloc +EXPORT_SYMBOL vmlinux 0x6109d712 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x6115ea16 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x6117b119 migrate_folio +EXPORT_SYMBOL vmlinux 0x6120d071 inet_getname +EXPORT_SYMBOL vmlinux 0x61228961 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x612fc62c cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x6130e7ef mr_table_dump -EXPORT_SYMBOL vmlinux 0x613376c4 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x613270b1 acpi_bus_unregister_driver EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x614aaa11 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x614e2a04 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x6158dcd9 dquot_transfer EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x617b9907 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x6178d48e reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6180eab7 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618c6d62 kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0x618c7b10 skb_trim +EXPORT_SYMBOL vmlinux 0x618bcd35 fget_raw +EXPORT_SYMBOL vmlinux 0x619371e9 sockopt_release_sock EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv -EXPORT_SYMBOL vmlinux 0x61a6aa4e pci_write_config_dword -EXPORT_SYMBOL vmlinux 0x61a82f31 unregister_console -EXPORT_SYMBOL vmlinux 0x61a88f46 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x61b29fac bio_free_pages +EXPORT_SYMBOL vmlinux 0x61b1160c skb_queue_head EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61b8f4e9 crypto_sha256_update -EXPORT_SYMBOL vmlinux 0x61c2d400 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x61cf6d42 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x61d017c2 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x61d72334 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x61e05684 vm_map_ram +EXPORT_SYMBOL vmlinux 0x61b843f0 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x61c77750 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x61cbec46 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x61d24533 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x62137363 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x61f35bb4 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x61f656bf flow_rule_match_tcp EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621da208 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x62175a43 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x6217aebb simple_nosetlease EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x62276bb7 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x624c7657 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x624e6256 filp_open -EXPORT_SYMBOL vmlinux 0x625b48d1 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x62600d03 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x62329462 simple_getattr +EXPORT_SYMBOL vmlinux 0x6235d848 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x623c4785 dquot_get_state EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range -EXPORT_SYMBOL vmlinux 0x62773928 netdev_has_any_upper_dev -EXPORT_SYMBOL vmlinux 0x62846e19 input_flush_device +EXPORT_SYMBOL vmlinux 0x628361c1 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x62ab6e0d pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x62b11661 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0x62bed888 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x62d621a1 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x628c0f8f dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x62a7286b param_get_string +EXPORT_SYMBOL vmlinux 0x62ce7b3b page_symlink EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62ffdc7e __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x63007b1d submit_bio EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x63239187 kiocb_set_cancel_fn -EXPORT_SYMBOL vmlinux 0x63511318 security_unix_may_send EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x63644231 is_bad_inode -EXPORT_SYMBOL vmlinux 0x636ba752 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x6375d9b0 pci_map_biosrom EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx -EXPORT_SYMBOL vmlinux 0x63861dcc netif_skb_features -EXPORT_SYMBOL vmlinux 0x63987c48 textsearch_register -EXPORT_SYMBOL vmlinux 0x639f18c6 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x639e75cd I_BDEV +EXPORT_SYMBOL vmlinux 0x63a046b4 dcb_getrewr_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b259f9 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x63d34f77 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x63a81d5f mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x63d36163 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x63d4dc96 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0x63fb2d7c gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x64001b50 do_SAK +EXPORT_SYMBOL vmlinux 0x64085995 mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x6417519d dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x64145bcf from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x64204136 vme_init_bridge EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x6439f65c i2c_clients_command +EXPORT_SYMBOL vmlinux 0x642ec1f9 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x6430fdf6 phy_attached_info +EXPORT_SYMBOL vmlinux 0x64313881 tty_port_init +EXPORT_SYMBOL vmlinux 0x64436ae0 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x6448403d __x86_indirect_call_thunk_rcx +EXPORT_SYMBOL vmlinux 0x644e53bf ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x645ed1e9 devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x6488d2ed inet_stream_ops +EXPORT_SYMBOL vmlinux 0x648280f2 dm_get_device +EXPORT_SYMBOL vmlinux 0x6482ce4e md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x648c0cab rproc_del +EXPORT_SYMBOL vmlinux 0x648c2e12 fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x648fbf8f nlmsg_notify -EXPORT_SYMBOL vmlinux 0x649f5132 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x64a3002b tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c6db88 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x64cd6b14 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x64d25df6 request_key_tag -EXPORT_SYMBOL vmlinux 0x64da7bbc jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x64e4b094 vme_dma_request -EXPORT_SYMBOL vmlinux 0x64e87769 alloc_fcdev -EXPORT_SYMBOL vmlinux 0x64e8ee30 ip6_dst_alloc -EXPORT_SYMBOL vmlinux 0x64ef7e51 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x64c53b71 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x64c58601 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x64d11af1 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x64ee3ac9 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x64f6429e nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651866b6 skb_pull_data +EXPORT_SYMBOL vmlinux 0x651948c5 finish_open EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x652d267b scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x653cdf74 tty_do_resize -EXPORT_SYMBOL vmlinux 0x653dc307 input_register_handler EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6543ad3a t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x6547fb88 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x65543040 netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0x65577b36 cros_ec_check_result -EXPORT_SYMBOL vmlinux 0x6561ef3f scm_fp_dup +EXPORT_SYMBOL vmlinux 0x655a9b4d unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x655b66c4 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x656a483e phy_start_aneg EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x657357fb is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x658a2a0a __x86_indirect_call_thunk_rbx +EXPORT_SYMBOL vmlinux 0x658ae82f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x658be0b3 __tty_alloc_driver EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a8e0b2 add_to_page_cache_lru -EXPORT_SYMBOL vmlinux 0x65b4d0fe sock_kmalloc +EXPORT_SYMBOL vmlinux 0x65b0e595 md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65bcd48f register_qdisc EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x65d6233a fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier -EXPORT_SYMBOL vmlinux 0x65da2692 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end EXPORT_SYMBOL vmlinux 0x65df35ca __put_user_nocheck_2 EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65ee84b3 generic_permission -EXPORT_SYMBOL vmlinux 0x65f545d5 generic_file_open -EXPORT_SYMBOL vmlinux 0x66054aba skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x6605c4dc serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x66119af2 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x661567af udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x6615c7e4 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x661a7b31 phy_disconnect +EXPORT_SYMBOL vmlinux 0x65eea4be arp_send +EXPORT_SYMBOL vmlinux 0x65ef6d0f inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x65fb03b9 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x6603f32b to_nd_pfn +EXPORT_SYMBOL vmlinux 0x660a4a66 inet_del_offload EXPORT_SYMBOL vmlinux 0x6626afca down EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6635a470 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x6636c4c7 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x663ccbe2 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x66453ad9 nla_reserve EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666c14c0 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x6670ecb8 t10_pi_type1_ip EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x668a6503 unlock_new_inode EXPORT_SYMBOL vmlinux 0x668b19a1 down_read EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args +EXPORT_SYMBOL vmlinux 0x66ae9727 vme_slot_num EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66affb8a input_allocate_device -EXPORT_SYMBOL vmlinux 0x66b076b8 file_open_root +EXPORT_SYMBOL vmlinux 0x66b1d662 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x66b39cad padata_do_serial EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx -EXPORT_SYMBOL vmlinux 0x66e17076 bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0x66fe2802 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x66df19ae bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit +EXPORT_SYMBOL vmlinux 0x6707797e mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x670cbd70 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx -EXPORT_SYMBOL vmlinux 0x6718a9bd mdiobus_read +EXPORT_SYMBOL vmlinux 0x6713a8d2 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x671b9fe0 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 -EXPORT_SYMBOL vmlinux 0x6732ae59 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x6737058f pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x673a945a blk_finish_plug -EXPORT_SYMBOL vmlinux 0x673b87bd agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x672d9c45 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x6737cf1b get_user_pages_unlocked EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges -EXPORT_SYMBOL vmlinux 0x67466adc mount_subtree EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674ef75d rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x67506a29 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x6754ddfe textsearch_destroy -EXPORT_SYMBOL vmlinux 0x6778f562 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x677ffd0f mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x6759f5c7 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x676a1593 vga_con +EXPORT_SYMBOL vmlinux 0x677c7c18 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x677fd6d1 bdi_unregister EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x6792d790 nf_hook_slow EXPORT_SYMBOL vmlinux 0x6797d568 intel_gmch_gtt_get -EXPORT_SYMBOL vmlinux 0x67a5e738 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x67af7f6f rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b5e919 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read EXPORT_SYMBOL vmlinux 0x67cc9453 __x86_indirect_call_thunk_rax -EXPORT_SYMBOL vmlinux 0x67d1b872 __ip_options_compile -EXPORT_SYMBOL vmlinux 0x67fbfc0f __getblk_gfp -EXPORT_SYMBOL vmlinux 0x67fd5da1 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x68006483 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x683b4576 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x684afe41 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x67e39999 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x67e76243 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x67f95e30 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x6822d558 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x682e591f sg_miter_skip +EXPORT_SYMBOL vmlinux 0x6843b14e phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x68596c1b blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x68658a1b mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x686d8910 dma_find_channel -EXPORT_SYMBOL vmlinux 0x687b065c folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x687119ec __tracepoint_read_msr EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x687dfc59 inet_accept -EXPORT_SYMBOL vmlinux 0x6893df87 netdev_warn -EXPORT_SYMBOL vmlinux 0x6894d62c gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x68adbbae register_key_type -EXPORT_SYMBOL vmlinux 0x68b1c8a0 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x68b2e319 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x68c23cfb unregister_qdisc -EXPORT_SYMBOL vmlinux 0x68c4e23d submit_bio -EXPORT_SYMBOL vmlinux 0x68d352bd pci_get_slot -EXPORT_SYMBOL vmlinux 0x68d43fd0 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x68d70cec inet_shutdown -EXPORT_SYMBOL vmlinux 0x68e154f6 key_put -EXPORT_SYMBOL vmlinux 0x68eb7188 fb_set_cmap -EXPORT_SYMBOL vmlinux 0x68f3687e netlink_broadcast +EXPORT_SYMBOL vmlinux 0x689067dd dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x68a12ab8 rep_movs_alternative +EXPORT_SYMBOL vmlinux 0x68af3c43 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x68bd3cb4 keyring_clear +EXPORT_SYMBOL vmlinux 0x68d9620a migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x68ea8c14 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x68f3d59c param_ops_charp EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x69198bf5 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x691e7563 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x69372f55 skb_dump -EXPORT_SYMBOL vmlinux 0x693fb3da generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x6948564c __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0x6964b449 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x69094b61 param_ops_long +EXPORT_SYMBOL vmlinux 0x69120ccc skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696df14c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x696e5a0e ip6_output EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988b7e5 vme_register_bridge EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x699657bf bio_integrity_prep -EXPORT_SYMBOL vmlinux 0x699d3065 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x69aabdf7 scsi_add_device EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy -EXPORT_SYMBOL vmlinux 0x69b25051 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0x69b4bf59 fb_class -EXPORT_SYMBOL vmlinux 0x69c9069d netdev_err +EXPORT_SYMBOL vmlinux 0x69d5d554 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x69d666ba fwnode_irq_get EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69e5559d sk_common_release +EXPORT_SYMBOL vmlinux 0x69fe611b pci_disable_msi EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a186ab4 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x6a1cbe29 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a48c276 update_region -EXPORT_SYMBOL vmlinux 0x6a5c7e67 skb_copy_header +EXPORT_SYMBOL vmlinux 0x6a16f561 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x6a297767 __register_binfmt +EXPORT_SYMBOL vmlinux 0x6a49026f pci_read_config_word +EXPORT_SYMBOL vmlinux 0x6a497f09 input_free_device +EXPORT_SYMBOL vmlinux 0x6a5b6ebd vfs_create_mount EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a76c17a sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x6a957ffb put_ipc_ns -EXPORT_SYMBOL vmlinux 0x6aaf19d1 agp_copy_info -EXPORT_SYMBOL vmlinux 0x6ab8264b pci_disable_msix -EXPORT_SYMBOL vmlinux 0x6ac0439b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6a806f18 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x6a8d72c5 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x6a959012 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x6a9eb5b8 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x6a9edfd4 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x6aa8fed9 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x6aaa6ace tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x6abaf228 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x6ad1eb10 generic_buffers_fsync +EXPORT_SYMBOL vmlinux 0x6ad9ffa2 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6aeaff67 register_cdrom EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af27695 serio_open -EXPORT_SYMBOL vmlinux 0x6b0e2ebf xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x6af980a9 from_kprojid EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user -EXPORT_SYMBOL vmlinux 0x6b222f05 flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x6b1d749a __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b4b9688 __folio_put +EXPORT_SYMBOL vmlinux 0x6b30c032 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x6b39db08 path_put +EXPORT_SYMBOL vmlinux 0x6b5182f4 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret -EXPORT_SYMBOL vmlinux 0x6b7a5b16 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x6b627328 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x6b80d61b dm_table_event EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b981fd1 km_policy_expired +EXPORT_SYMBOL vmlinux 0x6ba7958e mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x6bce52b4 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6bc5d944 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible -EXPORT_SYMBOL vmlinux 0x6bdc44c4 ps2_command EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bfb3988 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x6c0fedad uart_match_port -EXPORT_SYMBOL vmlinux 0x6c17f4bc sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x6be960ee skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x6bf0c014 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x6bf87016 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x6bfa704b generic_fillattr +EXPORT_SYMBOL vmlinux 0x6bfadef2 tty_write_room +EXPORT_SYMBOL vmlinux 0x6bff5116 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x6c129a44 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c53c0a7 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x6c58a7c1 lookup_one +EXPORT_SYMBOL vmlinux 0x6c343814 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x6c52ee0e ip_local_deliver +EXPORT_SYMBOL vmlinux 0x6c551244 vfs_mknod +EXPORT_SYMBOL vmlinux 0x6c566983 simple_transaction_release EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c6cb18c tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x6c710263 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x6c7dc6f0 xp_alloc -EXPORT_SYMBOL vmlinux 0x6c8284fd configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x6c909d0b bd_abort_claiming -EXPORT_SYMBOL vmlinux 0x6c94dca5 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x6ca288e1 agp_generic_destroy_pages -EXPORT_SYMBOL vmlinux 0x6cade895 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x6c67ee66 sg_miter_start +EXPORT_SYMBOL vmlinux 0x6c6ab77a sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x6c6bbe49 tso_build_data +EXPORT_SYMBOL vmlinux 0x6c8fb365 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x6c940de9 handshake_req_private +EXPORT_SYMBOL vmlinux 0x6c9d850f mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x6c9d9190 configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep -EXPORT_SYMBOL vmlinux 0x6cd6e28a pci_disable_device -EXPORT_SYMBOL vmlinux 0x6cde055c skb_tx_error -EXPORT_SYMBOL vmlinux 0x6ce47936 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x6cccaefb bdi_put +EXPORT_SYMBOL vmlinux 0x6cf390f0 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d18d3d3 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x6d256cbd d_set_d_op -EXPORT_SYMBOL vmlinux 0x6d28ba49 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x6d1b3262 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 -EXPORT_SYMBOL vmlinux 0x6d3a4213 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x6d530fc0 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x6d43e4bb pskb_extract +EXPORT_SYMBOL vmlinux 0x6d44b2a8 sock_no_listen +EXPORT_SYMBOL vmlinux 0x6d58a4d9 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5b503e param_get_ulong +EXPORT_SYMBOL vmlinux 0x6d5f47c7 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged EXPORT_SYMBOL vmlinux 0x6d5fb4a5 __x86_indirect_jump_thunk_rsp -EXPORT_SYMBOL vmlinux 0x6d7b2e81 tty_name +EXPORT_SYMBOL vmlinux 0x6d717ee5 ps2_init +EXPORT_SYMBOL vmlinux 0x6d7bca31 vma_set_file EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d8e1971 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6da04fa9 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x6db7bc2b __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6d809398 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x6d9603f8 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x6da954aa param_get_bool EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dc03a8b mipi_dsi_compression_mode EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc9f3fc netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x6dcb519e kfree_skb_reason EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6df04f27 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x6ddfd09c unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6de99ee7 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x6deac688 blk_start_plug EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6df31390 intel_gmch_gtt_clear_range -EXPORT_SYMBOL vmlinux 0x6e06e0d7 mmc_put_card -EXPORT_SYMBOL vmlinux 0x6e0e41be mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x6e3c1c14 security_d_instantiate -EXPORT_SYMBOL vmlinux 0x6e46c858 cdev_add +EXPORT_SYMBOL vmlinux 0x6df956d2 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6e145aaf clocksource_unregister +EXPORT_SYMBOL vmlinux 0x6e302ccf __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x6e32fe52 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x6e3dd3ee eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x6e3fba53 xp_dma_map +EXPORT_SYMBOL vmlinux 0x6e457bf7 skb_append +EXPORT_SYMBOL vmlinux 0x6e55da12 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x6e5928ab of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6a5b78 param_ops_int EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e842514 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x6e8a15ee vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x6e74a7f8 mpage_writepages +EXPORT_SYMBOL vmlinux 0x6e87dac8 xfrm_find_acq EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eb266ee kill_fasync -EXPORT_SYMBOL vmlinux 0x6eb4fccf __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x6ee5966f ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x6ecc6571 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6f0c7eec _dev_printk -EXPORT_SYMBOL vmlinux 0x6f0da49c __filemap_get_folio -EXPORT_SYMBOL vmlinux 0x6f101a98 rtc_add_group +EXPORT_SYMBOL vmlinux 0x6ef5b67c netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x6efb3f8b skb_seq_read +EXPORT_SYMBOL vmlinux 0x6f04f556 dquot_acquire +EXPORT_SYMBOL vmlinux 0x6f13b184 blk_mq_unique_tag EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f3db334 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x6f2510fe d_rehash +EXPORT_SYMBOL vmlinux 0x6f3efbf7 sk_alloc EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f41c263 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x6f485454 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove +EXPORT_SYMBOL vmlinux 0x6f42ed20 folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r -EXPORT_SYMBOL vmlinux 0x6f4de72a padata_alloc -EXPORT_SYMBOL vmlinux 0x6f511eac param_ops_bool +EXPORT_SYMBOL vmlinux 0x6f55f6e6 phy_device_create EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f673493 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x6f8e8236 set_anon_super +EXPORT_SYMBOL vmlinux 0x6f76e763 vc_resize +EXPORT_SYMBOL vmlinux 0x6f7793a5 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x6f8c6e3f scsi_is_host_device EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f95044e pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x6fa79ac3 vfs_getattr EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fc441e1 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6fbef58e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x6fc1d2a0 folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fe24aea inet6_del_offload -EXPORT_SYMBOL vmlinux 0x6ff1026c udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x6ff19169 __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x6ff1f0fc fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x6ff988f5 pci_clear_master EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x70026898 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x700f5785 param_set_invbool +EXPORT_SYMBOL vmlinux 0x700c6c17 key_create +EXPORT_SYMBOL vmlinux 0x70120fbf kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x701d0a4e follow_down +EXPORT_SYMBOL vmlinux 0x7021819e init_pseudo EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x7024b537 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x7024d037 sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7038aac0 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x703b58f4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x702ed85d seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x703e4954 mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock -EXPORT_SYMBOL vmlinux 0x7042fb9b iterate_supers_type -EXPORT_SYMBOL vmlinux 0x7047009c nf_log_set EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma -EXPORT_SYMBOL vmlinux 0x706ba595 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x70738d82 path_is_under -EXPORT_SYMBOL vmlinux 0x7097fe25 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x706715cf xsk_tx_release +EXPORT_SYMBOL vmlinux 0x70ab4a88 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70ba2f3d d_drop +EXPORT_SYMBOL vmlinux 0x70bad697 tcf_register_action EXPORT_SYMBOL vmlinux 0x70bb7de2 __x86_indirect_jump_thunk_rbp -EXPORT_SYMBOL vmlinux 0x70c112ca proc_set_user -EXPORT_SYMBOL vmlinux 0x70f8bc45 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0x710056ac abort -EXPORT_SYMBOL vmlinux 0x710b53cb eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x712204a5 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x7128a112 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x70c5cb4d phy_attach_direct +EXPORT_SYMBOL vmlinux 0x70da70ab neigh_seq_start +EXPORT_SYMBOL vmlinux 0x70daa11e dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x70ddbcc6 simple_setattr +EXPORT_SYMBOL vmlinux 0x70e9d52a pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x70efe66c mdiobus_write +EXPORT_SYMBOL vmlinux 0x7106361f unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x7109140a pci_get_subsys +EXPORT_SYMBOL vmlinux 0x711c7917 d_alloc_parallel EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x713c3634 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x713a113e device_get_mac_address +EXPORT_SYMBOL vmlinux 0x7154e29a vga_put +EXPORT_SYMBOL vmlinux 0x7155bcf8 sync_file_get_fence EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7176ba07 set_nlink -EXPORT_SYMBOL vmlinux 0x717d68ce dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0x7184d78d uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x71759be9 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x718398b6 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x71989bda __SetPageMovable EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b7d28f key_payload_reserve -EXPORT_SYMBOL vmlinux 0x71b7e95a tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x71bf4184 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x71c50ee6 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x71df4f6b ip6_output -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71eb0e55 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x7205de0b tty_check_change +EXPORT_SYMBOL vmlinux 0x71a9cfa6 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x71bcd5e0 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x71c392d8 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x71fb6892 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x71ffb0d9 devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7241f0b7 alloc_pages -EXPORT_SYMBOL vmlinux 0x724b0928 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0x7254e9a9 dma_free_attrs -EXPORT_SYMBOL vmlinux 0x7263e455 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x72130ae2 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x723e7796 rproc_boot +EXPORT_SYMBOL vmlinux 0x7242d5aa cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x72494920 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x7257bad8 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x7267e25d inet_add_offload EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x729ca4ec dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x72ab1709 rproc_boot -EXPORT_SYMBOL vmlinux 0x72ad5a04 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x729776de gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x729d7a18 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72bbf801 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x72d6b64f blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x72cc696d padata_alloc_shell EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72e8b275 pps_lookup_dev EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f1367c max8925_reg_write EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72fdc2cb udp_seq_start +EXPORT_SYMBOL vmlinux 0x72fcf56d dev_close +EXPORT_SYMBOL vmlinux 0x73102d7a vfs_get_tree +EXPORT_SYMBOL vmlinux 0x7313f3a7 clk_add_alias EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x7317a835 page_pool_update_nid EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x73344228 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x7343b3e1 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x734d2fe7 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x73332b56 vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7366c5be kern_unmount_array +EXPORT_SYMBOL vmlinux 0x737c3d69 sock_register EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73863169 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x73902e4c sock_register -EXPORT_SYMBOL vmlinux 0x739c4fc1 devm_aperture_acquire_for_platform_device -EXPORT_SYMBOL vmlinux 0x739d5d56 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x738cc0fd show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x739cdae6 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x739df3aa km_state_expired EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73c8aab4 _dev_alert -EXPORT_SYMBOL vmlinux 0x73d3bf6a d_instantiate_new +EXPORT_SYMBOL vmlinux 0x73b5e1ee freezing_slow_path +EXPORT_SYMBOL vmlinux 0x73cd0f6f console_start +EXPORT_SYMBOL vmlinux 0x73dac48c xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x73f7163e dcb_setapp -EXPORT_SYMBOL vmlinux 0x73f969a2 folio_add_lru -EXPORT_SYMBOL vmlinux 0x73fd42e2 vif_device_init +EXPORT_SYMBOL vmlinux 0x73e118fa pmem_sector_size +EXPORT_SYMBOL vmlinux 0x73e182a9 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x73fabce5 pin_user_pages +EXPORT_SYMBOL vmlinux 0x74033187 _dev_printk EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x740d328d pci_pme_active -EXPORT_SYMBOL vmlinux 0x740eb062 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x740cfa36 iov_iter_discard EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus -EXPORT_SYMBOL vmlinux 0x7413dceb bio_init_clone -EXPORT_SYMBOL vmlinux 0x742503fa xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x741adf5a remove_arg_zero +EXPORT_SYMBOL vmlinux 0x741e99e3 set_create_files_as EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x74315e0b dec_node_page_state -EXPORT_SYMBOL vmlinux 0x743c22b4 jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x744bd12d skb_pull_data +EXPORT_SYMBOL vmlinux 0x742d5e64 module_put +EXPORT_SYMBOL vmlinux 0x743ff4af _dev_info +EXPORT_SYMBOL vmlinux 0x7442232d sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x744c22fa nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x7454b029 agp_free_memory -EXPORT_SYMBOL vmlinux 0x7465b4c5 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x746db806 locks_delete_block +EXPORT_SYMBOL vmlinux 0x74652874 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x747a48a4 d_instantiate EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x74a0229c ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x74a24f58 nf_log_register +EXPORT_SYMBOL vmlinux 0x749ef58d generic_delete_inode +EXPORT_SYMBOL vmlinux 0x74ae8e19 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x74b2291c dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74be5e5f __scm_send EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c30323 fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x74d5fafd vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x74c3ba53 tty_register_driver +EXPORT_SYMBOL vmlinux 0x74d42956 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x74da064a set_security_override +EXPORT_SYMBOL vmlinux 0x74dd9e0b dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74eadf12 clear_nlink -EXPORT_SYMBOL vmlinux 0x74ebe5f2 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x74fca720 mr_rtm_dumproute -EXPORT_SYMBOL vmlinux 0x751c3b7c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x74f537d8 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x7507f34b pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x751ef950 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x7520d3d2 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x7525b623 vme_irq_request +EXPORT_SYMBOL vmlinux 0x752aaec3 sk_mc_loop EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x7535aeff tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753b8ab6 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x754f3714 block_write_begin EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x757006a7 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x7564873d skb_eth_push +EXPORT_SYMBOL vmlinux 0x756ff586 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x75710120 vm_event_states -EXPORT_SYMBOL vmlinux 0x7579dda8 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x757bf448 console_start +EXPORT_SYMBOL vmlinux 0x75729d37 dev_uc_sync_multiple EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x7590c32f gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock -EXPORT_SYMBOL vmlinux 0x75951d6a device_get_mac_address -EXPORT_SYMBOL vmlinux 0x75a30b78 read_cache_folio -EXPORT_SYMBOL vmlinux 0x75a40df4 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x75ac9452 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x759f5e7f neigh_destroy +EXPORT_SYMBOL vmlinux 0x75a1daba devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x75a7f273 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75c05028 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x75cc466c mmc_free_host EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75d5c732 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0x75db1f24 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x75f9a9c7 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x75d5ced3 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x75e16aaa pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x75eadde0 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x7609686b set_pages_wb EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x761690c6 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x761e290e jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x7622322b kset_unregister EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x76366416 linkwatch_fire_event EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7658110d netlink_net_capable +EXPORT_SYMBOL vmlinux 0x7651e4d3 xfrm_policy_register_afinfo EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x7670e2b4 logfc -EXPORT_SYMBOL vmlinux 0x7675511d blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x766b79b9 deactivate_super EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x76894af0 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x768ee329 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x769eff00 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76b2dba7 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x76ad461a security_d_instantiate +EXPORT_SYMBOL vmlinux 0x76c3affa begin_new_exec +EXPORT_SYMBOL vmlinux 0x76cc5cde sock_efree +EXPORT_SYMBOL vmlinux 0x76ccd7d7 default_llseek EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x76f32040 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier -EXPORT_SYMBOL vmlinux 0x771d55da seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x771ef4b5 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x772352a1 param_get_uint -EXPORT_SYMBOL vmlinux 0x77268b8e stop_tty -EXPORT_SYMBOL vmlinux 0x772ab913 put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x773502b6 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x77084810 netdev_features_change +EXPORT_SYMBOL vmlinux 0x7711bd66 user_path_create +EXPORT_SYMBOL vmlinux 0x77135333 netdev_update_features +EXPORT_SYMBOL vmlinux 0x773257fe ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77451886 sock_no_ioctl EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77550861 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x7770b742 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x778bd156 proc_symlink -EXPORT_SYMBOL vmlinux 0x77965311 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x77aea28a agp_generic_alloc_user -EXPORT_SYMBOL vmlinux 0x77b0a91f alloc_fddidev -EXPORT_SYMBOL vmlinux 0x77b0e1d7 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x7749b9af input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x7756178f brioctl_set +EXPORT_SYMBOL vmlinux 0x77694470 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x776b8720 dev_mc_init +EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 +EXPORT_SYMBOL vmlinux 0x77707369 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x777e829f kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x7790a51a security_sock_graft +EXPORT_SYMBOL vmlinux 0x779bcb2d d_alloc_name +EXPORT_SYMBOL vmlinux 0x779d75d7 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x77b14d87 phy_init_hw EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77bd6069 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x77d10e71 ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x77e58322 tcp_read_skb +EXPORT_SYMBOL vmlinux 0x77c44fd2 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x77c4d5df mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0x77c5f325 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x77ce9b87 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x77d6b264 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x77e56c2d param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77f15d34 dquot_alloc -EXPORT_SYMBOL vmlinux 0x77f89cbc cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x77f109c1 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x77f2f276 iterate_dir +EXPORT_SYMBOL vmlinux 0x77f5f004 set_pages_array_wc EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780b1ef9 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x780c22b9 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x78161f39 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x782f2828 d_path EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x784c4ebe vm_insert_pages -EXPORT_SYMBOL vmlinux 0x7887068d kthread_create_on_cpu -EXPORT_SYMBOL vmlinux 0x789f951b __mdiobus_read -EXPORT_SYMBOL vmlinux 0x78a1155b nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x78599c25 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x786c177f fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x786e595b crypto_sha3_init +EXPORT_SYMBOL vmlinux 0x789bdfd4 tty_driver_kref_put EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78ae5764 generic_setlease +EXPORT_SYMBOL vmlinux 0x78aff17d ptp_clock_event EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78c65f43 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x78ca2a8e jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x78caaf55 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x78bb27e7 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x78d5752c reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x78da2b10 mmc_request_done EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x7910f65b eisa_bus_type -EXPORT_SYMBOL vmlinux 0x79142d97 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0x7917156e io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x79188392 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x79224be9 ilookup -EXPORT_SYMBOL vmlinux 0x792a6972 write_cache_pages -EXPORT_SYMBOL vmlinux 0x79387119 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x794bbed1 load_nls -EXPORT_SYMBOL vmlinux 0x7957e08b nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0x7984cf15 locks_free_lock +EXPORT_SYMBOL vmlinux 0x78f738b6 i2c_transfer +EXPORT_SYMBOL vmlinux 0x78fbfdef __ip_options_compile +EXPORT_SYMBOL vmlinux 0x79134bb1 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7925a5c2 page_pool_create +EXPORT_SYMBOL vmlinux 0x792641c5 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x793cf0a1 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x793d8b98 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x7941c4ce inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x7944f454 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x7952ca3b scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x79577285 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x7959f5d6 mount_subtree +EXPORT_SYMBOL vmlinux 0x79627494 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x79786bbf kernel_getsockname EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x79895a1f inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x799e0706 __bh_read +EXPORT_SYMBOL vmlinux 0x79892bc4 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x798a4814 ethtool_aggregate_phy_stats EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79c14193 agp_collect_device_status EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79e4cbe8 override_creds +EXPORT_SYMBOL vmlinux 0x79ee4640 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x79f290dd iget_locked EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2feeb8 phy_ethtool_get_wol EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a3aea4b mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x7a3f76a3 ip6_mtu -EXPORT_SYMBOL vmlinux 0x7a44604a inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7a346f2f scsi_register_interface +EXPORT_SYMBOL vmlinux 0x7a4fa587 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a56e583 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x7a6dc401 param_get_byte +EXPORT_SYMBOL vmlinux 0x7a72a3ff proc_create_single_data +EXPORT_SYMBOL vmlinux 0x7a77af2e nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write -EXPORT_SYMBOL vmlinux 0x7a9433bf vlan_ioctl_set EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b10a2 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x7a9fde14 dquot_free_inode EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa2a48a pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x7ab4bd09 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x7abb8d35 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x7abfcc42 sock_efree -EXPORT_SYMBOL vmlinux 0x7aca5161 task_work_add +EXPORT_SYMBOL vmlinux 0x7aa86847 get_phy_device +EXPORT_SYMBOL vmlinux 0x7ac10a48 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x7aca8b9f klp_sched_try_switch_key +EXPORT_SYMBOL vmlinux 0x7acc153c mmc_command_done +EXPORT_SYMBOL vmlinux 0x7acd906e pnp_start_dev EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt -EXPORT_SYMBOL vmlinux 0x7ad89da3 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae726e5 amd_iommu_domain_direct_map -EXPORT_SYMBOL vmlinux 0x7ae8c149 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x7af27bda ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x7afa8903 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x7afcdc4d user_path_at_empty -EXPORT_SYMBOL vmlinux 0x7afcef48 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x7af4145f agp_collect_device_status EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b01a0da generic_setlease -EXPORT_SYMBOL vmlinux 0x7b06b99d vmf_insert_mixed_mkwrite -EXPORT_SYMBOL vmlinux 0x7b0ce1bd set_posix_acl EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store +EXPORT_SYMBOL vmlinux 0x7b2cccf2 seq_puts EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b38bb74 build_skb -EXPORT_SYMBOL vmlinux 0x7b40a61c rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem -EXPORT_SYMBOL vmlinux 0x7b4dd204 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x7b5155c8 proc_mkdir -EXPORT_SYMBOL vmlinux 0x7b52b93a __icmp_send +EXPORT_SYMBOL vmlinux 0x7b54f270 posix_acl_valid EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5fba53 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x7b71487e fs_param_is_string +EXPORT_SYMBOL vmlinux 0x7b66dd1a redraw_screen +EXPORT_SYMBOL vmlinux 0x7b6bacee sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b89309a tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x7b936aee pagevec_lookup_range_tag -EXPORT_SYMBOL vmlinux 0x7b9620e0 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x7ba7b6bc pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x7b831f8b __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7b89b64f inc_nlink +EXPORT_SYMBOL vmlinux 0x7b8a7465 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x7b8ef51c __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x7ba17fad proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x7bae3ef2 sk_error_report EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bd74b6d __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x7bd84d3f mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x7bffbd14 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x7bdfb1f4 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x7bf98491 _dev_emerg +EXPORT_SYMBOL vmlinux 0x7c0cd469 backlight_device_unregister EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c20578d vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x7c1e4ba1 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x7c26a3c5 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0x7c2d03a6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x7c3bc25a cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x7c411456 param_ops_ullong EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c47cfa0 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0x7c4b5fe4 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x7c64acaa vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x7c66aaf1 vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0x7c7dce9d netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x7ca3c51b agp_enable -EXPORT_SYMBOL vmlinux 0x7cb9915e phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x7cc020a0 freeze_super -EXPORT_SYMBOL vmlinux 0x7cc28c89 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x7cc409a2 generic_writepages +EXPORT_SYMBOL vmlinux 0x7c47f4e9 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x7c4aaa2e __scm_destroy +EXPORT_SYMBOL vmlinux 0x7c55fff6 skb_find_text +EXPORT_SYMBOL vmlinux 0x7c5af898 set_capacity +EXPORT_SYMBOL vmlinux 0x7c693ff7 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7c6c37d3 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x7c71e10f bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7c783dc4 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x7c890d89 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x7c9fcb35 get_watch_queue +EXPORT_SYMBOL vmlinux 0x7cbe0cd2 drop_reasons_by_subsys +EXPORT_SYMBOL vmlinux 0x7cbed7e5 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x7cbfb2b1 ps2_command +EXPORT_SYMBOL vmlinux 0x7cc18181 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7ccf7add iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7cdc7116 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x7cdf315d alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7cea3110 bio_endio EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf45f89 skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d03bd67 generic_file_open +EXPORT_SYMBOL vmlinux 0x7d0637d0 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x7d08368e simple_lookup EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d3518ef netif_device_detach -EXPORT_SYMBOL vmlinux 0x7d3ba661 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x7d4333cc vfs_symlink -EXPORT_SYMBOL vmlinux 0x7d43b3ae km_policy_notify EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit -EXPORT_SYMBOL vmlinux 0x7d56655f sched_autogroup_detach -EXPORT_SYMBOL vmlinux 0x7d5cc931 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x7d4de0b4 con_is_bound +EXPORT_SYMBOL vmlinux 0x7d510fdf reuseport_alloc EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d601419 get_tree_keyed EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio -EXPORT_SYMBOL vmlinux 0x7d65b3cb nf_log_packet +EXPORT_SYMBOL vmlinux 0x7d65d049 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x7d6e0c74 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x7d6f3c14 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d8ba956 empty_aops -EXPORT_SYMBOL vmlinux 0x7d93cefd phy_start_aneg -EXPORT_SYMBOL vmlinux 0x7d981fe6 netdev_info -EXPORT_SYMBOL vmlinux 0x7daa4098 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x7dad9fc4 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7d8fac6f netif_carrier_on +EXPORT_SYMBOL vmlinux 0x7d933a62 rproc_alloc +EXPORT_SYMBOL vmlinux 0x7da3ebf6 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7da4c462 wireless_send_event EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dba04f1 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x7dc0adfc locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7db7e372 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x7db98b2f _dev_crit +EXPORT_SYMBOL vmlinux 0x7dc5270b __dquot_transfer EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7df2cabb prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x7e015201 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x7e0799c4 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0x7e1efd3c param_set_uint -EXPORT_SYMBOL vmlinux 0x7e2c12e7 agp_put_bridge -EXPORT_SYMBOL vmlinux 0x7e308b8f scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x7e30a961 param_array_ops +EXPORT_SYMBOL vmlinux 0x7e24bbd1 genphy_read_lpa EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e35e92e mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0x7e4792df skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x7e47e94a proc_set_user +EXPORT_SYMBOL vmlinux 0x7e558068 dev_set_alias EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e5f9fd1 reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0x7e606bb6 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x7e70948e devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x7e73cf60 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu -EXPORT_SYMBOL vmlinux 0x7e95b6de mmc_register_driver -EXPORT_SYMBOL vmlinux 0x7ebfc7d3 pci_release_regions -EXPORT_SYMBOL vmlinux 0x7ec06d82 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x7ed01442 agp_generic_destroy_page -EXPORT_SYMBOL vmlinux 0x7eeaacf3 sk_wait_data -EXPORT_SYMBOL vmlinux 0x7ef156fa skb_eth_push -EXPORT_SYMBOL vmlinux 0x7ef3a902 sock_no_connect +EXPORT_SYMBOL vmlinux 0x7e925e43 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x7ea71544 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x7eaad3f6 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x7eb2bb93 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7ec36409 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x7ec9ebb6 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x7ee0bd3b security_path_mkdir EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x7f01f883 __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f045ac4 phy_attach +EXPORT_SYMBOL vmlinux 0x7f0990d2 param_set_ulong +EXPORT_SYMBOL vmlinux 0x7f126171 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x7f1c12a5 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f252555 sk_error_report -EXPORT_SYMBOL vmlinux 0x7f268a21 update_devfreq -EXPORT_SYMBOL vmlinux 0x7f493258 path_get +EXPORT_SYMBOL vmlinux 0x7f325c4e no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x7f35a8cf param_get_long +EXPORT_SYMBOL vmlinux 0x7f50e121 xp_can_alloc EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f669ff9 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x7f73a797 mdio_device_create -EXPORT_SYMBOL vmlinux 0x7f7ea044 __bh_read_batch EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f868696 fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x7f891e34 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x7f89d08d jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x7faa19ba try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7f8cdd74 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7f9401fe cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x7fb529f0 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7fde1fbc acpi_walk_resource_buffer EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fe462e6 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x7ffe1b4d skb_dequeue -EXPORT_SYMBOL vmlinux 0x7fff83f6 seq_printf -EXPORT_SYMBOL vmlinux 0x80196e8c fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x80389ebf blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7feaaa33 is_bad_inode +EXPORT_SYMBOL vmlinux 0x7feed7d0 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x80001497 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x80005076 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x800f425b input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x80246de8 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x8025102e config_group_find_item EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x80568c65 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x80621da6 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x80704cf8 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock -EXPORT_SYMBOL vmlinux 0x80767056 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x80849dc5 vfs_getattr -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80c10b34 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x80c8ea6f phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x80b6ef81 ipmi_platform_add EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80ccb967 param_ops_byte EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80e48e3f finish_open +EXPORT_SYMBOL vmlinux 0x80dda348 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer -EXPORT_SYMBOL vmlinux 0x80e8ac0a pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x80ffdc00 bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0x8110a287 get_agp_version +EXPORT_SYMBOL vmlinux 0x80e86dca generic_file_llseek +EXPORT_SYMBOL vmlinux 0x80fef5d4 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81172764 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x813ba117 genl_register_family +EXPORT_SYMBOL vmlinux 0x8125ab9f dev_disable_lro +EXPORT_SYMBOL vmlinux 0x813d139f module_refcount +EXPORT_SYMBOL vmlinux 0x81491054 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x814da621 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x8154da71 pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x8171486c filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x819c0c59 fqdir_exit -EXPORT_SYMBOL vmlinux 0x819dbcbc fs_bio_set +EXPORT_SYMBOL vmlinux 0x819682c8 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq -EXPORT_SYMBOL vmlinux 0x81b40da5 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x81adc39f folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev -EXPORT_SYMBOL vmlinux 0x81d511e9 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x81d8f955 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x81cf7af5 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x81d6c28b acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x81da154b dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81e758ce nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x8204259b vma_alloc_folio -EXPORT_SYMBOL vmlinux 0x82287535 filemap_fault +EXPORT_SYMBOL vmlinux 0x8202b5b9 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x82203a34 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x8228568c tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x822c5a09 rproc_detach +EXPORT_SYMBOL vmlinux 0x822e8f0e tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x823538ce rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked -EXPORT_SYMBOL vmlinux 0x823d4d48 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x8242bef1 vme_dma_request EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x8275e159 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x82799693 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x8282c764 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x828ac626 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x829a4c8e _dev_info -EXPORT_SYMBOL vmlinux 0x829d03b9 fault_in_iov_iter_readable -EXPORT_SYMBOL vmlinux 0x82afc0c2 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x826ccd72 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x827625b5 dev_driver_string +EXPORT_SYMBOL vmlinux 0x827bc568 lock_rename_child +EXPORT_SYMBOL vmlinux 0x827f3725 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x828d099a pci_disable_device +EXPORT_SYMBOL vmlinux 0x82955c17 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x82a63583 security_path_mknod +EXPORT_SYMBOL vmlinux 0x82bc2719 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x82c06083 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x82c1dc4d inet_recvmsg +EXPORT_SYMBOL vmlinux 0x82c3416a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x82c535e7 kernel_bind EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82dae786 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x82df8a7c qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x8308cdc8 proc_set_size -EXPORT_SYMBOL vmlinux 0x830c219f __devm_request_region -EXPORT_SYMBOL vmlinux 0x8310333d scsi_dma_map -EXPORT_SYMBOL vmlinux 0x83158565 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x83336b03 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x83401d0e generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x82f0b74c ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x82fcfccc km_state_notify +EXPORT_SYMBOL vmlinux 0x83081706 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x831c9323 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x8328e1a6 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x8342fcea cdev_del +EXPORT_SYMBOL vmlinux 0x83558539 tty_check_change EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override -EXPORT_SYMBOL vmlinux 0x838ca9d0 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x835c0338 devm_clk_put +EXPORT_SYMBOL vmlinux 0x8363d882 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x83802812 __bread_gfp +EXPORT_SYMBOL vmlinux 0x838c52c9 d_lookup EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838e4192 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0x839133c8 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x83b4178b __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x83cec6be blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x83d4a7ca vmf_insert_mixed_prot -EXPORT_SYMBOL vmlinux 0x83db4189 genphy_suspend -EXPORT_SYMBOL vmlinux 0x83dfc91f __traceiter_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x83e09465 generic_listxattr -EXPORT_SYMBOL vmlinux 0x83f12ab6 mmc_erase -EXPORT_SYMBOL vmlinux 0x83f8cbd1 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x83f9c4e2 tcp_seq_start -EXPORT_SYMBOL vmlinux 0x8406c989 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x840aee85 max8925_set_bits -EXPORT_SYMBOL vmlinux 0x84109f17 padata_free +EXPORT_SYMBOL vmlinux 0x83a4b984 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x83b144b3 netif_device_attach +EXPORT_SYMBOL vmlinux 0x83b7e3e9 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x83ef9e92 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x83f8ceb0 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x83fdea3c vfs_create EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 -EXPORT_SYMBOL vmlinux 0x843c2657 finish_no_open -EXPORT_SYMBOL vmlinux 0x84464f2c mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x844a49e0 fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x844eac82 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x845f7121 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x8471abb4 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x842f477b inode_insert5 +EXPORT_SYMBOL vmlinux 0x8432ef63 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x844511ed iptun_encaps +EXPORT_SYMBOL vmlinux 0x845e223c netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x84708e54 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after -EXPORT_SYMBOL vmlinux 0x847d62c4 folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0x847e8802 param_set_ulong EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x84856b58 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x849535b7 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x849ec962 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84a66a9c param_ops_short -EXPORT_SYMBOL vmlinux 0x84a7a483 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x84b57000 inode_permission -EXPORT_SYMBOL vmlinux 0x84b70671 configfs_unregister_default_group -EXPORT_SYMBOL vmlinux 0x84bb7f65 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x84c0e43d devfreq_add_device -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84c365a6 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x84d7944e mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0x84e7ad95 uart_register_driver -EXPORT_SYMBOL vmlinux 0x84e8aa8b blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x84f43c2d mntput -EXPORT_SYMBOL vmlinux 0x850e1d5d tcp_peek_len +EXPORT_SYMBOL vmlinux 0x84b3b3fc skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x84baf325 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x84ebecb0 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x84ff8aac scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x84fff756 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x850783d6 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x850dc1ef blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x85146153 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x85203131 xfrm_init_replay EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user -EXPORT_SYMBOL vmlinux 0x8523cce7 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x8546b03c jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x854e946c vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0x85563288 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x855ce4cf simple_pin_fs +EXPORT_SYMBOL vmlinux 0x8529b8c1 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x852f6460 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x853f3fdc tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel +EXPORT_SYMBOL vmlinux 0x854e766c blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x8556d410 i8042_install_filter EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x856893fa _dev_crit -EXPORT_SYMBOL vmlinux 0x85748e0e fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x8579ed5b filemap_check_errors -EXPORT_SYMBOL vmlinux 0x8581b6d0 inet_select_addr +EXPORT_SYMBOL vmlinux 0x8568fc2d max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x85800ed9 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x85a36a11 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x85af7893 udp_prot -EXPORT_SYMBOL vmlinux 0x85afe0d0 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x859488c8 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85cb0864 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x85d13901 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x85d89a83 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x85da7cec __register_binfmt +EXPORT_SYMBOL vmlinux 0x85c52144 kmalloc_node_trace EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e382ac ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x85e489e9 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x86261530 key_validate +EXPORT_SYMBOL vmlinux 0x85f4f245 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x85f596a4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x86219e01 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node -EXPORT_SYMBOL vmlinux 0x86363480 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x86394a93 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x864ca867 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x865a3c70 __acpi_mdiobus_register EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x866c9764 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x86811432 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x86751489 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x867c618c vga_switcheroo_init_domain_pm_ops EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86a95090 new_inode -EXPORT_SYMBOL vmlinux 0x86aa749c blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x86ab0abd napi_get_frags -EXPORT_SYMBOL vmlinux 0x86b4f719 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x86aff4cd posix_test_lock EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read -EXPORT_SYMBOL vmlinux 0x86c98363 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x86f71314 xfrm_lookup EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x870e5e15 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x871798da sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x8718bbb7 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x871b8fdb pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x871eeb20 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x8733db35 __inet_hash -EXPORT_SYMBOL vmlinux 0x874e5e3c vfs_create_mount +EXPORT_SYMBOL vmlinux 0x87335a8d mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x87592cdd xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8764ac8c in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 -EXPORT_SYMBOL vmlinux 0x87786610 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x877e73e2 pfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0x877e9a9f ipv6_sock_mc_drop EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x8783794c gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x8796d59c input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x8781567a acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x878d43cd ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x87977121 __acpi_mdiobus_register EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87a8a76f mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x87b83c0e i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x87cffc26 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x87f37f31 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x8800ab17 vfs_ioctl -EXPORT_SYMBOL vmlinux 0x8804405b page_pool_create +EXPORT_SYMBOL vmlinux 0x87c8c92f dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x87c95dff __nla_put +EXPORT_SYMBOL vmlinux 0x87ce6c49 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x87fe5160 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x88077699 tcp_make_synack EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit EXPORT_SYMBOL vmlinux 0x8823ef75 intel_gmch_gtt_insert_page -EXPORT_SYMBOL vmlinux 0x882e07a0 netdev_printk -EXPORT_SYMBOL vmlinux 0x8830a868 ip_output -EXPORT_SYMBOL vmlinux 0x88380d22 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x8841a909 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x88488d89 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x8853e1a8 ps2_end_command -EXPORT_SYMBOL vmlinux 0x88654c21 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0x8868b1ab tty_port_put -EXPORT_SYMBOL vmlinux 0x886bf408 file_update_time +EXPORT_SYMBOL vmlinux 0x885fb827 dev_uc_del +EXPORT_SYMBOL vmlinux 0x8869ae74 md_bitmap_unplug_async EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x8895603e input_set_timestamp +EXPORT_SYMBOL vmlinux 0x8899aa05 agp_bridge EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x88aafd71 console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0x88c9b135 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x88cd78ce dm_kobject_release +EXPORT_SYMBOL vmlinux 0x88a2eaac pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x88a3dfba tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x88cf7eaa freeze_bdev +EXPORT_SYMBOL vmlinux 0x88d420d3 configfs_register_default_group EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88dc2576 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0x88dc8a5b netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x88dbb873 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88f94ce1 make_kgid +EXPORT_SYMBOL vmlinux 0x88e3ff43 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x890a24af mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x8911fa82 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x891957d9 slab_build_skb EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order +EXPORT_SYMBOL vmlinux 0x891e2069 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x89248395 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x894004c0 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x894111bb sock_sendmsg EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x8955372a blk_put_queue -EXPORT_SYMBOL vmlinux 0x89567eac dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x895a8654 simple_getattr -EXPORT_SYMBOL vmlinux 0x8966a6d1 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x8967d876 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x89906a21 dev_addr_add +EXPORT_SYMBOL vmlinux 0x8947edb4 input_inject_event +EXPORT_SYMBOL vmlinux 0x894e61f4 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x894f0593 sock_no_bind +EXPORT_SYMBOL vmlinux 0x897a7a5f devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x89853a17 dev_add_offload +EXPORT_SYMBOL vmlinux 0x89867386 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x899b2c26 vm_map_pages -EXPORT_SYMBOL vmlinux 0x89b2bd4f d_add -EXPORT_SYMBOL vmlinux 0x89c14491 dqput -EXPORT_SYMBOL vmlinux 0x8a24c318 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x8a29f1b0 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x8a35622c __nla_reserve +EXPORT_SYMBOL vmlinux 0x899cdeda inet_offloads +EXPORT_SYMBOL vmlinux 0x89c5b47b dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x89ca12b0 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x89df4e76 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x89ebd730 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x8a0ae079 unload_nls EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask -EXPORT_SYMBOL vmlinux 0x8a35d635 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x8a39e085 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x8a4123e2 xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4e5512 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x8a4ec26d pci_release_region +EXPORT_SYMBOL vmlinux 0x8a531f23 dec_node_page_state EXPORT_SYMBOL vmlinux 0x8a54670a __x86_indirect_jump_thunk_r14 -EXPORT_SYMBOL vmlinux 0x8a62e883 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0x8a6884a9 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8a5e5e25 devm_request_resource +EXPORT_SYMBOL vmlinux 0x8a5eff0f filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a7bb68a sock_set_sndtimeo EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a8631b5 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x8a833583 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x8a8e1fdb i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x8a966e5d rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa78d87 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x8aab00da kobject_del +EXPORT_SYMBOL vmlinux 0x8aaecd60 __put_cred +EXPORT_SYMBOL vmlinux 0x8aaf23ce input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x8ab6c364 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ac45c93 vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x8ae71649 rproc_put -EXPORT_SYMBOL vmlinux 0x8af751e6 freeze_bdev -EXPORT_SYMBOL vmlinux 0x8afda705 iget_locked -EXPORT_SYMBOL vmlinux 0x8afe4c9b sock_set_mark +EXPORT_SYMBOL vmlinux 0x8ad68011 bio_init +EXPORT_SYMBOL vmlinux 0x8aef79ed tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0x8af126ad scm_fp_dup +EXPORT_SYMBOL vmlinux 0x8af56197 nonseekable_open EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b08e25f __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x8b0f148b twl6040_reg_write -EXPORT_SYMBOL vmlinux 0x8b2c69df xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x8b318200 genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x8b4b8e65 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x8b28e098 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x8b2a2ee7 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0x8b2aa725 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x8b320638 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x8b379e6e dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x8b5ae952 netpoll_print_options EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6785d0 ip_frag_init +EXPORT_SYMBOL vmlinux 0x8b6fbb14 do_splice_direct EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b8067d8 kobject_add EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b95ea81 sb_min_blocksize EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bb2d910 set_disk_ro -EXPORT_SYMBOL vmlinux 0x8bb66885 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x8b9e6f76 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x8ba1a277 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x8bab5750 send_sig_info +EXPORT_SYMBOL vmlinux 0x8bbe06fb netdev_state_change +EXPORT_SYMBOL vmlinux 0x8bbf4dea unregister_md_personality +EXPORT_SYMBOL vmlinux 0x8bccc6c8 km_report EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be89c86 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x8bed4049 bio_split -EXPORT_SYMBOL vmlinux 0x8c0cbeef sock_wake_async -EXPORT_SYMBOL vmlinux 0x8c0f9caf agp_generic_create_gatt_table -EXPORT_SYMBOL vmlinux 0x8c1001e3 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0x8c258b0d dquot_release +EXPORT_SYMBOL vmlinux 0x8be808af jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x8c1ac389 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c3a30c3 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x8c3eb8ec sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x8c4086f8 d_add_ci -EXPORT_SYMBOL vmlinux 0x8c574e9c kernel_connect -EXPORT_SYMBOL vmlinux 0x8c76d598 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x8c38f6b9 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x8c545d24 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x8c56333a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x8c62437a audit_log +EXPORT_SYMBOL vmlinux 0x8c671ad7 seq_path +EXPORT_SYMBOL vmlinux 0x8c6d7e20 xfrm_state_walk_done EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c945cfd md_reap_sync_thread -EXPORT_SYMBOL vmlinux 0x8c9cb2dc fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x8c95f7e2 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x8c9ac92b thaw_bdev EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca3f582 fiemap_prep +EXPORT_SYMBOL vmlinux 0x8ca3979c param_ops_hexint EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb7c803 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x8cc379ce __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x8cbafaf1 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x8cc0482f inet_dev_addr_type EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep -EXPORT_SYMBOL vmlinux 0x8ccd1f05 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cf1224c inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x8ce16975 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x8ce6ab59 filemap_splice_read +EXPORT_SYMBOL vmlinux 0x8ceee477 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x8cf303e1 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x8d1ddb11 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit -EXPORT_SYMBOL vmlinux 0x8d3f90e8 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x8d49dff1 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x8d5502b1 nd_device_register +EXPORT_SYMBOL vmlinux 0x8d3b535a bio_split EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x8d62b6d0 nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 -EXPORT_SYMBOL vmlinux 0x8d6d5a85 napi_gro_flush EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x8d7c4573 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x8d7df663 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x8d7ec919 nf_getsockopt -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8dafaf22 hdmi_avi_infoframe_pack EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x8dc2e2b4 stream_open -EXPORT_SYMBOL vmlinux 0x8dd1e4c7 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x8dc36b42 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de04bb8 kobject_init EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8def3763 filemap_fault EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8dfad893 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x8e0da8e1 generic_error_remove_page EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e1e0475 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e2a2c24 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0x8e3de232 mr_table_alloc EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e49a6af rproc_alloc -EXPORT_SYMBOL vmlinux 0x8e6b7518 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x8e805d72 discard_new_inode -EXPORT_SYMBOL vmlinux 0x8e835a1d tty_vhangup -EXPORT_SYMBOL vmlinux 0x8e910d85 icmp6_send +EXPORT_SYMBOL vmlinux 0x8e4ba5e8 dcb_getrewr +EXPORT_SYMBOL vmlinux 0x8e50a5de kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x8e60161f netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x8e666c1e __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x8e8672e1 kmalloc_caches EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8eadcdb1 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x8e96a3c2 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x8ea1e843 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x8eaeef64 page_readlink EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler -EXPORT_SYMBOL vmlinux 0x8eb5c0d9 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0x8eb9cbfb __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x8ec41ff1 pci_request_regions EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8edaa97c make_kuid -EXPORT_SYMBOL vmlinux 0x8eeea2aa d_find_any_alias -EXPORT_SYMBOL vmlinux 0x8ef029ae __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x8ed905e5 mr_table_dump +EXPORT_SYMBOL vmlinux 0x8edbeb9d register_console +EXPORT_SYMBOL vmlinux 0x8ee6f3e8 genphy_suspend +EXPORT_SYMBOL vmlinux 0x8eef33b3 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x8ef39e13 to_ndd +EXPORT_SYMBOL vmlinux 0x8efe0450 pci_get_class EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f18e0d5 tty_port_open -EXPORT_SYMBOL vmlinux 0x8f2066ac __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8f1d0d15 dentry_path_raw EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x8f2e5be8 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x8f4020e6 sk_net_capable -EXPORT_SYMBOL vmlinux 0x8f409929 mount_bdev -EXPORT_SYMBOL vmlinux 0x8f4f88aa sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x8f4fbbb5 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0x8f6209c9 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x8f676397 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x8f681ded vfs_mkdir -EXPORT_SYMBOL vmlinux 0x8f807b2f put_disk +EXPORT_SYMBOL vmlinux 0x8f29e65c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x8f4b8b88 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x8f5d402d netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x8f68cf5a alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f879e8a __udp_disconnect +EXPORT_SYMBOL vmlinux 0x8f8a1414 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x8f963bbb gro_cells_receive EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode -EXPORT_SYMBOL vmlinux 0x8f9aeade netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fafef2e flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0x8fb1eec6 init_pseudo -EXPORT_SYMBOL vmlinux 0x8fbd150b locks_remove_posix -EXPORT_SYMBOL vmlinux 0x8fcc8f37 inet_frag_find -EXPORT_SYMBOL vmlinux 0x8fcd2158 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds -EXPORT_SYMBOL vmlinux 0x8fec6411 do_SAK +EXPORT_SYMBOL vmlinux 0x8fb6b843 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x8fc85800 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x8fe8e5d2 pskb_expand_head EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ff8e43b crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x8fffd555 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x901e043b config_group_find_item -EXPORT_SYMBOL vmlinux 0x9022d64b jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x9027195c devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x900aa09a generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x90134c56 __destroy_inode EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9051398e cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x9043965b netdev_printk EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x9078e118 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x90955b36 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0x9095af8a devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x90a24b7a input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x90b0b1d4 security_binder_transfer_file -EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90bd3a3d fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0x90f9aca3 ipv6_dev_find -EXPORT_SYMBOL vmlinux 0x9103005d pci_enable_device +EXPORT_SYMBOL vmlinux 0x9060e3a5 tcp_poll +EXPORT_SYMBOL vmlinux 0x906829f0 fqdir_init +EXPORT_SYMBOL vmlinux 0x906e7509 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x907793e1 uart_match_port +EXPORT_SYMBOL vmlinux 0x908a874f sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x9092defd proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x909ec77e remove_proc_entry +EXPORT_SYMBOL vmlinux 0x90a2b5db xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x90a97776 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x90aa6e25 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x90ca02ad inet_sk_get_local_port_range +EXPORT_SYMBOL vmlinux 0x90d05de4 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x90f3a469 genphy_c45_eee_is_active +EXPORT_SYMBOL vmlinux 0x910de6e7 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x911eb218 ps2_cmd_aborted -EXPORT_SYMBOL vmlinux 0x9138b346 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x913f2c3f cfb_copyarea +EXPORT_SYMBOL vmlinux 0x9141c600 node_data +EXPORT_SYMBOL vmlinux 0x914893f1 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x914aa5d2 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x91502352 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x915fe5fc scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x916ff403 import_iovec EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x918fcc9d tty_register_driver -EXPORT_SYMBOL vmlinux 0x919a7abd migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x918b9ed4 seq_read_iter EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91afdb3f param_set_bint -EXPORT_SYMBOL vmlinux 0x91b9638a file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x91cc8e1e pnp_register_driver +EXPORT_SYMBOL vmlinux 0x91b15be4 set_anon_super +EXPORT_SYMBOL vmlinux 0x91b7bd29 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x91d57d16 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x91d641eb dm_put_device +EXPORT_SYMBOL vmlinux 0x91e9d943 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x91f845da inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x91fa5d87 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x920c5238 phy_suspend -EXPORT_SYMBOL vmlinux 0x9227dcb7 seq_puts +EXPORT_SYMBOL vmlinux 0x91fc4980 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x9204bbc3 put_watch_queue +EXPORT_SYMBOL vmlinux 0x9205ac39 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x921719f3 call_fib_notifiers EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9231c875 skb_unlink EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x925e7e11 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x9271729f ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool EXPORT_SYMBOL vmlinux 0x92897e3d default_idle -EXPORT_SYMBOL vmlinux 0x928bdf04 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92934b79 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x92962f67 param_get_long +EXPORT_SYMBOL vmlinux 0x92978709 dump_skip +EXPORT_SYMBOL vmlinux 0x929878b2 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x92a30856 blk_rq_init +EXPORT_SYMBOL vmlinux 0x92a35bab clear_nlink +EXPORT_SYMBOL vmlinux 0x92a40976 __fput_sync EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name -EXPORT_SYMBOL vmlinux 0x92c19e81 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x92bdeb4e param_ops_bint EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92e36ce1 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x92dd4ba1 ppp_input_error EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92e8d00e mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x92eaa676 skb_add_rx_frag EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f1c15a fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x92eedd98 scsi_done_direct EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x9306ffa0 pci_save_state -EXPORT_SYMBOL vmlinux 0x9316d5d2 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x932b7ae7 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x93308a8f netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x933a83fc d_tmpfile -EXPORT_SYMBOL vmlinux 0x934d16c3 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x930bba92 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x930be505 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x93157405 fsync_bdev +EXPORT_SYMBOL vmlinux 0x93162225 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x932b83c7 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x9333a265 cdrom_get_last_written EXPORT_SYMBOL vmlinux 0x934f564b __x86_indirect_jump_thunk_r15 -EXPORT_SYMBOL vmlinux 0x935216ea tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x9354aefd ram_aops +EXPORT_SYMBOL vmlinux 0x935c2bb9 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9378939a __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x937e0560 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x937a4708 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x937f0899 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x938ae609 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x9397bf30 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93a93051 set_page_dirty EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93bf5f3d kmem_cache_size -EXPORT_SYMBOL vmlinux 0x93d2668e xp_dma_map +EXPORT_SYMBOL vmlinux 0x93b63e61 config_item_set_name +EXPORT_SYMBOL vmlinux 0x93b8fb87 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93da2e0a agp_alloc_page_array -EXPORT_SYMBOL vmlinux 0x93e00d29 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x93e53aeb pci_resize_resource -EXPORT_SYMBOL vmlinux 0x93f700e4 legacy_pic -EXPORT_SYMBOL vmlinux 0x941bd03e devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x941dfbc7 netdev_change_features +EXPORT_SYMBOL vmlinux 0x93dd2360 md_register_thread +EXPORT_SYMBOL vmlinux 0x93e165e3 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x93ffbe39 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x940720f3 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x941d91ba xsk_set_tx_need_wakeup EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942ac71b d_make_root +EXPORT_SYMBOL vmlinux 0x943083fb rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x94362ea6 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x9436ca2d pci_find_capability EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x944ee0a4 get_tree_nodev -EXPORT_SYMBOL vmlinux 0x945c2efb xsk_tx_release -EXPORT_SYMBOL vmlinux 0x946ba611 genphy_update_link -EXPORT_SYMBOL vmlinux 0x946bff7d pci_iomap_range -EXPORT_SYMBOL vmlinux 0x9475fe8b genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x945c8c72 pci_map_rom +EXPORT_SYMBOL vmlinux 0x945cb2eb netdev_emerg +EXPORT_SYMBOL vmlinux 0x946dcf91 folio_wait_bit EXPORT_SYMBOL vmlinux 0x9493fc86 node_states EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a5c41d netdev_alert -EXPORT_SYMBOL vmlinux 0x94a74cea dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c1165b noop_llseek +EXPORT_SYMBOL vmlinux 0x94bf5008 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x94fb2309 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x94fc3975 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x950058f8 __module_get EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x95128c36 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x951f1874 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x9520a086 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x9533aedf vlan_for_each +EXPORT_SYMBOL vmlinux 0x950b0eb2 mr_dump +EXPORT_SYMBOL vmlinux 0x950e6eab posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x95238e13 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x95443b20 register_key_type EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955bd61f vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0x956d20f1 single_open_size -EXPORT_SYMBOL vmlinux 0x956e02f8 keyring_clear -EXPORT_SYMBOL vmlinux 0x9573165d scsi_scan_target -EXPORT_SYMBOL vmlinux 0x957382cb inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x95749a54 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x957c9ebf neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x95a07a62 simple_statfs EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95a725f1 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x95a8bcf2 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x95c9be38 param_set_ullong -EXPORT_SYMBOL vmlinux 0x95ce290d mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x95f7c370 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x9606d339 kernel_bind -EXPORT_SYMBOL vmlinux 0x9616755e vfs_tmpfile_open -EXPORT_SYMBOL vmlinux 0x961e8ec9 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x95bda289 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x95efd25b tty_unlock EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x9629b552 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x962b0caa fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x9639d654 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x963ed3f6 md_error -EXPORT_SYMBOL vmlinux 0x9645f04b mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x965361d5 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x96706350 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x967df83e vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x962fc515 __napi_schedule +EXPORT_SYMBOL vmlinux 0x96331832 twl6040_power +EXPORT_SYMBOL vmlinux 0x964a1e0c input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x9666f15b dcb_delrewr +EXPORT_SYMBOL vmlinux 0x9667387f xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x967a1727 invalidate_bdev EXPORT_SYMBOL vmlinux 0x96848186 scnprintf -EXPORT_SYMBOL vmlinux 0x96a2d63b bio_init -EXPORT_SYMBOL vmlinux 0x96a512fa iov_iter_npages -EXPORT_SYMBOL vmlinux 0x96abc627 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x9689f135 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x96968b74 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x9697246f pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x96992fec pci_dev_put +EXPORT_SYMBOL vmlinux 0x96a8d542 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x96b1e60a pci_biosrom_size EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c4b570 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96d7fa6e mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x96d3cc79 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x96dabeeb vme_new_dma_list EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96e91aad set_create_files_as EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x97291db9 arp_tbl -EXPORT_SYMBOL vmlinux 0x973da98a ps2_handle_response +EXPORT_SYMBOL vmlinux 0x97049164 __traceiter_kmem_cache_free EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x9744e51e cdev_device_del -EXPORT_SYMBOL vmlinux 0x974d0bd6 param_set_charp +EXPORT_SYMBOL vmlinux 0x9743e62a phy_disconnect +EXPORT_SYMBOL vmlinux 0x97449872 unregister_console +EXPORT_SYMBOL vmlinux 0x974acab8 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x9752fae9 pci_set_master +EXPORT_SYMBOL vmlinux 0x97579af7 param_set_hexint +EXPORT_SYMBOL vmlinux 0x975a23c8 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x97635d33 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat -EXPORT_SYMBOL vmlinux 0x97a30368 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x9786929b __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x97879bcb gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x978b202d jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x9793535e dev_addr_mod +EXPORT_SYMBOL vmlinux 0x979af9cf scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a78119 fuse_mount_destroy EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b66ae4 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97ddf039 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x98100f3a ptp_clock_register -EXPORT_SYMBOL vmlinux 0x9812a6f0 try_module_get -EXPORT_SYMBOL vmlinux 0x98133ba7 __alloc_pages -EXPORT_SYMBOL vmlinux 0x98191483 skb_unlink +EXPORT_SYMBOL vmlinux 0x97c40a0a pci_choose_state +EXPORT_SYMBOL vmlinux 0x97d6da36 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x97d8156e hmm_range_fault +EXPORT_SYMBOL vmlinux 0x97f8eba6 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x98041912 lookup_one +EXPORT_SYMBOL vmlinux 0x98048979 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x981256bc qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x981ec4e4 phy_write_paged EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x98392d94 seq_release EXPORT_SYMBOL vmlinux 0x984d9c39 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x98555a05 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x9856150c phy_read_mmd EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x9867a8fe devm_of_iomap -EXPORT_SYMBOL vmlinux 0x98687d96 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0x986e70fb jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x98906ada end_page_writeback -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x98c7014e mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x989c9b9c input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x98ae7e07 get_fs_type +EXPORT_SYMBOL vmlinux 0x98ba7866 pnp_release_card_device EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cd9879 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x98c8b858 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x98cb878e proc_dobool +EXPORT_SYMBOL vmlinux 0x98e3280a crypto_kdf108_setkey EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f16dcc udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x98f9848a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x98e51e7b __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x98f16e3b pnp_is_active +EXPORT_SYMBOL vmlinux 0x98ffc9cd ether_setup +EXPORT_SYMBOL vmlinux 0x9903b9d3 put_cmsg EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq -EXPORT_SYMBOL vmlinux 0x990b6f51 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x990c63a5 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x991e75c2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x9925a1f4 napi_get_frags EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994c6624 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x993f7656 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x99416835 pps_event +EXPORT_SYMBOL vmlinux 0x99432168 input_get_keycode EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99668821 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x9966c298 generic_read_dir -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x9984634c skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x9987551c xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x998a150d iptun_encaps -EXPORT_SYMBOL vmlinux 0x99965352 qdisc_warn_nonwc -EXPORT_SYMBOL vmlinux 0x99972e34 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x99569750 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x9961d795 bio_free_pages +EXPORT_SYMBOL vmlinux 0x9978a875 vme_slave_request +EXPORT_SYMBOL vmlinux 0x9979945d devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x997bf58f block_truncate_page +EXPORT_SYMBOL vmlinux 0x9980551f fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x998943fa netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x998ee9aa netlink_capable +EXPORT_SYMBOL vmlinux 0x99955e8f input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x999683bd jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99bb7e01 touch_atime -EXPORT_SYMBOL vmlinux 0x99c1b42f unregister_cdrom +EXPORT_SYMBOL vmlinux 0x99a88b4b netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x99cad753 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99eb10a8 blk_start_plug +EXPORT_SYMBOL vmlinux 0x99e9323a devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x99ee8b1c devm_of_iomap EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x99f794c8 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a068e20 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a1a6f84 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x9a04dc74 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a267c3d crypto_sha3_final EXPORT_SYMBOL vmlinux 0x9a2c088f irq_stat -EXPORT_SYMBOL vmlinux 0x9a2c4d43 eisa_driver_register -EXPORT_SYMBOL vmlinux 0x9a377060 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x9a39ee14 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x9a57700d nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a7e661b inode_to_bdi -EXPORT_SYMBOL vmlinux 0x9a8ce88f netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x9aa1f38b jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x9aad6b33 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x9aae9671 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x9a6ef0df i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x9a79e8e4 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x9a84e9f2 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9a98cecb scsi_device_resume +EXPORT_SYMBOL vmlinux 0x9a992f75 xp_set_rxq_info EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired -EXPORT_SYMBOL vmlinux 0x9ae181b4 sock_i_uid EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae7c8e0 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x9aee411a device_add_disk -EXPORT_SYMBOL vmlinux 0x9af57420 udp_pre_connect -EXPORT_SYMBOL vmlinux 0x9b2023a3 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9b0a57ce get_tree_bdev +EXPORT_SYMBOL vmlinux 0x9b15eedf sock_recvmsg EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b25fd48 posix_lock_file +EXPORT_SYMBOL vmlinux 0x9b2932e8 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x9b2e1b98 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b388d9d __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x9b39bab2 dst_alloc +EXPORT_SYMBOL vmlinux 0x9b41dd19 passthru_features_check +EXPORT_SYMBOL vmlinux 0x9b46ed09 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4bed08 neigh_lookup -EXPORT_SYMBOL vmlinux 0x9b676f43 rio_query_mport -EXPORT_SYMBOL vmlinux 0x9b68b76d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x9b62fe8b skb_copy_header +EXPORT_SYMBOL vmlinux 0x9b6d5cda kmem_cache_create +EXPORT_SYMBOL vmlinux 0x9b715f44 dev_uc_init EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b8a1d2c mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0x9ba14dae __sk_receive_skb -EXPORT_SYMBOL vmlinux 0x9ba27be3 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x9baabdcc inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x9b739b09 md_check_recovery +EXPORT_SYMBOL vmlinux 0x9b8c3235 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x9b94f1ed napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x9bb44046 sock_set_keepalive EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be -EXPORT_SYMBOL vmlinux 0x9bce161a register_netdevice -EXPORT_SYMBOL vmlinux 0x9bd159cf get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x9bf22593 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x9bfe4413 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x9bb5f120 set_bh_page +EXPORT_SYMBOL vmlinux 0x9bc081a3 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x9bd014f6 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9bd01b86 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x9bd7fe82 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x9bddacdb t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c1c4fb8 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x9c3ec565 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x9c598efc udp_seq_next +EXPORT_SYMBOL vmlinux 0x9c3cf179 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x9c4698d1 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x9c4ca4e2 __napi_schedule_irqoff EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x9c8270b2 devm_free_irq EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c923183 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0x9c98d4b2 skb_checksum +EXPORT_SYMBOL vmlinux 0x9c996d84 devm_aperture_acquire_for_platform_device EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user -EXPORT_SYMBOL vmlinux 0x9c9b08e9 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x9ca370a3 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x9ca4bf4b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x9ca4391a cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base -EXPORT_SYMBOL vmlinux 0x9ccd4877 secpath_set EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cd311dd tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x9cd8db23 acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x9cdeb5f0 filemap_dirty_folio EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x9cf944b4 seq_write -EXPORT_SYMBOL vmlinux 0x9cfd3864 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x9cff236e __icmp_send EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x9d0a8f53 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x9d0d10c1 ether_setup EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x9d29e805 write_inode_now EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2c3b9c phy_get_pause EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d2f781d unregister_key_type +EXPORT_SYMBOL vmlinux 0x9d3c7bb4 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x9d453f62 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x9d4ba633 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x9d5e1148 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d71ac38 netpoll_setup +EXPORT_SYMBOL vmlinux 0x9d7b8da9 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x9d82c9e8 __tracepoint_write_msr EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9da0eecd vfs_mkobj -EXPORT_SYMBOL vmlinux 0x9da1189b __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x9da8a8fc vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x9dad961f sock_pfree -EXPORT_SYMBOL vmlinux 0x9dd3e733 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x9da3c91e agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x9da9934a serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x9db25934 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x9db55598 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x9dcb7ff7 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9de0b6ce sock_no_linger -EXPORT_SYMBOL vmlinux 0x9deba5b3 seq_release_private -EXPORT_SYMBOL vmlinux 0x9df349cb neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x9dfb03db kernel_sendpage -EXPORT_SYMBOL vmlinux 0x9e00df24 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x9e019171 phy_stop +EXPORT_SYMBOL vmlinux 0x9df68b39 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits +EXPORT_SYMBOL vmlinux 0x9e0699cc tcf_exts_dump EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e1d2f21 tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e299d0a hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x9e2ae32a fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x9e37239f devm_devfreq_add_device -EXPORT_SYMBOL vmlinux 0x9e4b9f83 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x9e2ec768 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x9e3189a4 netdev_crit +EXPORT_SYMBOL vmlinux 0x9e3e9217 dev_lstats_read EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e515ff3 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x9e5e0fa9 __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e681343 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x9e682fbf devm_memunmap EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x9e69a846 pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x9e7a9224 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9e6f1997 seq_open +EXPORT_SYMBOL vmlinux 0x9e773038 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e7e4ebc clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x9e900036 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x9e833cc1 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x9e8b50c6 dev_activate EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea1acbd devm_memunmap -EXPORT_SYMBOL vmlinux 0x9eabe96d tcp_v4_connect EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eadd80c simple_open EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ed12330 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x9ec73824 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x9ecb58c6 folio_end_writeback EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee6bef6 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x9ee8b0b9 seq_dentry +EXPORT_SYMBOL vmlinux 0x9ed99b53 framebuffer_release EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9ef6ce9b vfs_iter_write -EXPORT_SYMBOL vmlinux 0x9f1b76ad unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x9f31efbc cad_pid +EXPORT_SYMBOL vmlinux 0x9f0ed5dd blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x9f26f482 register_netdevice +EXPORT_SYMBOL vmlinux 0x9f37915e bioset_exit +EXPORT_SYMBOL vmlinux 0x9f3aa235 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x9f41875f sock_wmalloc EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4aeab1 neigh_table_clear EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f5fc5c0 clear_inode -EXPORT_SYMBOL vmlinux 0x9f62ae4a __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x9f699378 vlan_vid_add -EXPORT_SYMBOL vmlinux 0x9f8ee195 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x9f61e84f bpf_link_put EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f99d196 __kfree_skb -EXPORT_SYMBOL vmlinux 0x9fa5fbcf skb_store_bits +EXPORT_SYMBOL vmlinux 0x9f99ea11 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fab46e6 import_single_range -EXPORT_SYMBOL vmlinux 0x9fb1c712 super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fdef342 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x9fe446f9 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x9fe5bdec __serio_register_driver +EXPORT_SYMBOL vmlinux 0x9feb0820 skb_pull +EXPORT_SYMBOL vmlinux 0x9feb673a mr_mfc_seq_next EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9ff04359 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x9ff2ee56 mmc_remove_host EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01a0fcf blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa028ef2c backlight_force_update +EXPORT_SYMBOL vmlinux 0xa024ae4f dev_mc_sync +EXPORT_SYMBOL vmlinux 0xa029f961 md_set_array_sectors EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa0334345 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa03b16fb get_vm_area +EXPORT_SYMBOL vmlinux 0xa0400e3b dma_resv_init EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa049e4cd jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0xa04eb7d1 pci_set_mwi -EXPORT_SYMBOL vmlinux 0xa0531107 bpf_map_get +EXPORT_SYMBOL vmlinux 0xa057953f md_error EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa07525b5 kmem_cache_size EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07b8c9f __skb_checksum EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08d7989 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0a02654 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa098e7e7 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xa0a936e5 vfs_get_fsid EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0bd6194 param_get_invbool -EXPORT_SYMBOL vmlinux 0xa0c0e909 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xa0c47212 ps2_init EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check -EXPORT_SYMBOL vmlinux 0xa0ee3fff free_cgroup_ns EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa13006be end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xa1348bb3 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0xa164090e qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0xa16e2142 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xa1857830 d_alloc -EXPORT_SYMBOL vmlinux 0xa187f249 dquot_acquire -EXPORT_SYMBOL vmlinux 0xa18f5667 tcp_prot -EXPORT_SYMBOL vmlinux 0xa19e8ae2 mipi_dsi_dcs_set_column_address -EXPORT_SYMBOL vmlinux 0xa1aec8ec __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xa1b57e47 param_get_string +EXPORT_SYMBOL vmlinux 0xa11def68 inet_shutdown +EXPORT_SYMBOL vmlinux 0xa13d541c file_modified +EXPORT_SYMBOL vmlinux 0xa13f27af rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xa167b00c netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xa169750a jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xa16d4c9b pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xa18a40f7 tty_port_open +EXPORT_SYMBOL vmlinux 0xa19b34f0 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xa1a2a4dc agp_find_bridge EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters -EXPORT_SYMBOL vmlinux 0xa1cde353 fb_pan_display -EXPORT_SYMBOL vmlinux 0xa1cf831b udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0xa1d08b35 mdiobus_write -EXPORT_SYMBOL vmlinux 0xa1fe44e9 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xa2011483 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xa1e51b25 complete_request_key +EXPORT_SYMBOL vmlinux 0xa1e75eaf vfs_rmdir +EXPORT_SYMBOL vmlinux 0xa1f00322 inode_set_flags +EXPORT_SYMBOL vmlinux 0xa1f9dbb1 unregister_fib_notifier EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa212f2d5 sock_no_bind EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2447cd7 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xa24f1ea0 bio_alloc_clone EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module -EXPORT_SYMBOL vmlinux 0xa253b300 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xa2578f18 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xa25cf415 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa26489a1 phy_ethtool_set_wol -EXPORT_SYMBOL vmlinux 0xa2846604 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xa26f9cc4 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xa285f7a3 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa29d70bf tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0xa2aebec9 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0xa2de4bde zap_page_range -EXPORT_SYMBOL vmlinux 0xa30bb170 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xa34acb9a param_ops_ullong +EXPORT_SYMBOL vmlinux 0xa29a7635 dquot_operations +EXPORT_SYMBOL vmlinux 0xa2a406dd sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xa2a5d927 genphy_update_link +EXPORT_SYMBOL vmlinux 0xa2a96c2b __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0xa2b192f7 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xa2bc4218 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xa2c350f5 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa2da7b43 vme_register_driver +EXPORT_SYMBOL vmlinux 0xa2fd84f9 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa307e569 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xa317c661 serio_interrupt +EXPORT_SYMBOL vmlinux 0xa320b1e5 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xa32d4eb2 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xa333b90e jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xa354cc28 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xa36ea702 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xa3769c3c task_work_add +EXPORT_SYMBOL vmlinux 0xa38311f1 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xa388dbaa start_tty EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa39e58de agp_put_bridge +EXPORT_SYMBOL vmlinux 0xa3a44427 config_group_init EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3dd18d5 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa3d622aa proto_unregister +EXPORT_SYMBOL vmlinux 0xa3d7869a cdev_device_del EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger -EXPORT_SYMBOL vmlinux 0xa3e581a6 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xa3ed79a7 __folio_alloc -EXPORT_SYMBOL vmlinux 0xa3eef34c cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xa3fb5c1f vfs_link +EXPORT_SYMBOL vmlinux 0xa3f7ca32 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xa3f87084 follow_up EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40b9f15 tls_handshake_cancel EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io -EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid -EXPORT_SYMBOL vmlinux 0xa464860e sock_create_kern -EXPORT_SYMBOL vmlinux 0xa47fb42e module_layout -EXPORT_SYMBOL vmlinux 0xa4846972 vfs_rmdir -EXPORT_SYMBOL vmlinux 0xa4aff69b blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xa4b3bc0e netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xa4293b4e agp_enable +EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa441e3d8 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xa4421c6d netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xa466c1a7 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xa47c78b8 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xa49f1360 vga_switcheroo_client_probe_defer EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep -EXPORT_SYMBOL vmlinux 0xa4bfdc5b phy_detach -EXPORT_SYMBOL vmlinux 0xa4c95534 simple_setattr -EXPORT_SYMBOL vmlinux 0xa4cbccad cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xa4bc6bcb sock_rfree +EXPORT_SYMBOL vmlinux 0xa4cf87fb netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4f9059f pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0xa505d5e6 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xa5028b47 tcp_mmap EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa508d492 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0xa5121484 pci_bus_type +EXPORT_SYMBOL vmlinux 0xa50ccc34 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xa523819e qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa52da68e __skb_checksum -EXPORT_SYMBOL vmlinux 0xa54099bf dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0xa5449608 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa5446e31 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa55b5ccc scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xa55b67e6 vga_switcheroo_fini_domain_pm_ops -EXPORT_SYMBOL vmlinux 0xa5626d96 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xa5682762 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xa570b483 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xa55a43fb nla_put +EXPORT_SYMBOL vmlinux 0xa5656144 make_kgid +EXPORT_SYMBOL vmlinux 0xa56e8844 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xa57ba666 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xa5810b24 devm_release_resource +EXPORT_SYMBOL vmlinux 0xa58869f1 agp_alloc_bridge EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5a49b2b dm_get_device -EXPORT_SYMBOL vmlinux 0xa5a4d791 folio_mark_accessed -EXPORT_SYMBOL vmlinux 0xa5cc0e7f truncate_pagecache -EXPORT_SYMBOL vmlinux 0xa5db8899 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xa59ba74f dev_get_by_index +EXPORT_SYMBOL vmlinux 0xa59dd3dc pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xa5ad65f0 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xa5cf64c9 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xa5d8c870 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0xa5faf2d1 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0xa605a3f6 skb_append -EXPORT_SYMBOL vmlinux 0xa617c263 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xa5f2e10f remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xa60513a7 __d_drop EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa63bcba4 misc_deregister -EXPORT_SYMBOL vmlinux 0xa63fbca7 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xa629a8ce scsi_print_command +EXPORT_SYMBOL vmlinux 0xa6301140 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa6457c89 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa654c2de clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0xa65c4f9b tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0xa65d95f7 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xa664a1d4 agp_generic_alloc_by_type -EXPORT_SYMBOL vmlinux 0xa6747aba create_empty_buffers -EXPORT_SYMBOL vmlinux 0xa678e5df skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xa67a6303 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xa652cefd phy_error +EXPORT_SYMBOL vmlinux 0xa6658919 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa68f2842 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xa69427fb kernel_read -EXPORT_SYMBOL vmlinux 0xa6948b7d pci_request_region -EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa6a12f41 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0xa6a6cdcb ip6_frag_next -EXPORT_SYMBOL vmlinux 0xa6ae0ac6 _dev_err -EXPORT_SYMBOL vmlinux 0xa6bb6029 dev_deactivate -EXPORT_SYMBOL vmlinux 0xa6d83996 xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0xa6d8e9ae mdio_device_remove -EXPORT_SYMBOL vmlinux 0xa6e91183 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0xa6fef005 file_path -EXPORT_SYMBOL vmlinux 0xa7078ae4 from_kgid +EXPORT_SYMBOL vmlinux 0xa6aebac0 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xa6c0b899 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa6d772ef __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa6df4cea add_to_pipe +EXPORT_SYMBOL vmlinux 0xa6eaa461 current_in_userns +EXPORT_SYMBOL vmlinux 0xa6fc4a82 ethtool_aggregate_pause_stats +EXPORT_SYMBOL vmlinux 0xa70a4abd phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xa70b27e5 ilookup5 EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa710248d devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xa71bd96a ww_mutex_unlock EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa7444a4b pneigh_enqueue EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa76cd607 poll_freewait +EXPORT_SYMBOL vmlinux 0xa768fa96 import_single_range EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa789fd41 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xa79bb42a dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xa7bb1651 udp_set_csum +EXPORT_SYMBOL vmlinux 0xa7c9c707 __block_write_begin +EXPORT_SYMBOL vmlinux 0xa7cbb00b irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xa7cfe9ed tcp_close +EXPORT_SYMBOL vmlinux 0xa7d0a6b5 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7edafdf inet_ioctl +EXPORT_SYMBOL vmlinux 0xa7da3fa5 pci_scan_bus EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa7f9e9ba md_write_start +EXPORT_SYMBOL vmlinux 0xa7f0cc2d can_nice +EXPORT_SYMBOL vmlinux 0xa7f2c81c devm_clk_get_optional EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa81836e7 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xa8265302 mntput +EXPORT_SYMBOL vmlinux 0xa82f53f2 dquot_destroy +EXPORT_SYMBOL vmlinux 0xa82ff87a blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0xa8425ab0 flush_signals EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa843e01c dev_getbyhwaddr_rcu EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa8506460 km_new_mapping +EXPORT_SYMBOL vmlinux 0xa8513ec6 pci_bus_set_ops EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa855ad79 dm_put_device EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85ebba5 kern_unmount -EXPORT_SYMBOL vmlinux 0xa867d0ce skb_copy +EXPORT_SYMBOL vmlinux 0xa85a66bc skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xa85c8a69 datagram_poll +EXPORT_SYMBOL vmlinux 0xa86169b0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xa863dab8 __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa87322c8 request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xa8789e93 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0xa87a59c0 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0xa87e4998 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0xa87f67e6 simple_transaction_get -EXPORT_SYMBOL vmlinux 0xa88589ad tcp_init_sock +EXPORT_SYMBOL vmlinux 0xa88fb408 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa8c31971 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xa8a7faaa input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xa8ae42ce udp_seq_start +EXPORT_SYMBOL vmlinux 0xa8c3e9fc inet_add_protocol +EXPORT_SYMBOL vmlinux 0xa8c44d84 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8e1b2e7 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xa8ceedca revert_creds +EXPORT_SYMBOL vmlinux 0xa8d19961 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xa8d3fb40 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8f0e37b request_firmware_nowait EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa8f9b904 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa903a031 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xa9083556 generic_write_end EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90fe060 cdev_alloc +EXPORT_SYMBOL vmlinux 0xa914143a generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa9193835 dm_register_target -EXPORT_SYMBOL vmlinux 0xa91cf36a pcim_enable_device -EXPORT_SYMBOL vmlinux 0xa91ecd9d nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0xa92ebae6 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa9237a81 genphy_read_status +EXPORT_SYMBOL vmlinux 0xa927d661 touch_buffer +EXPORT_SYMBOL vmlinux 0xa930f22f jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa941dbb3 put_disk EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa95a1823 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xa9558a55 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xa961b182 eth_mac_addr EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96b3af9 flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xa96dbe69 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9778e57 pnp_unregister_driver EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa9ae111a __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xa9b26fa6 netdev_sk_get_lowest_dev -EXPORT_SYMBOL vmlinux 0xa9be7309 param_get_ullong EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks -EXPORT_SYMBOL vmlinux 0xa9d28a9b phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xa9fa1839 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xa9d5f9b0 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xa9d87ee3 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xa9ef3fb6 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xa9f7b6fd agp_generic_enable +EXPORT_SYMBOL vmlinux 0xa9fcbbf0 udp_ioctl EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0226ac sock_setsockopt EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf -EXPORT_SYMBOL vmlinux 0xaa140074 input_register_device EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2544e1 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xaa2cf7a3 input_register_handle +EXPORT_SYMBOL vmlinux 0xaa283b2d create_empty_buffers +EXPORT_SYMBOL vmlinux 0xaa309bcd __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa35be3a d_alloc_anon -EXPORT_SYMBOL vmlinux 0xaa5a5128 cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0xaa6b39b1 is_nd_btt +EXPORT_SYMBOL vmlinux 0xaa5cde2b max8925_set_bits EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa78475c default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xaa880ce9 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xaa7b123c tcf_exts_change +EXPORT_SYMBOL vmlinux 0xaa7bf8a8 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xaa876917 phy_set_sym_pause EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any -EXPORT_SYMBOL vmlinux 0xaa9dfc04 folio_end_writeback -EXPORT_SYMBOL vmlinux 0xaa9e0867 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xaa988082 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xaa9c832b arp_create EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic -EXPORT_SYMBOL vmlinux 0xaab6ddb0 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xaab777c6 device_add_disk +EXPORT_SYMBOL vmlinux 0xaab7fa50 __breadahead +EXPORT_SYMBOL vmlinux 0xaabfef4f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xaacadb31 tty_lock +EXPORT_SYMBOL vmlinux 0xaacbaca2 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xaacf03c1 dma_fence_signal EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadedc0c __sk_dst_check +EXPORT_SYMBOL vmlinux 0xaae1fdef skb_tx_error EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab0082fe sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0xab089260 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0xab26c96c __devm_release_region +EXPORT_SYMBOL vmlinux 0xab0c81a7 clear_inode +EXPORT_SYMBOL vmlinux 0xab13644e md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xab1a8afd netif_receive_skb_core EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3be5fb jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab63700f vmap EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab651713 netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab6f95ac __ps2_command -EXPORT_SYMBOL vmlinux 0xab7595e2 seq_read EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7cb0f3 sk_free -EXPORT_SYMBOL vmlinux 0xab836c16 security_sb_remount -EXPORT_SYMBOL vmlinux 0xab916e83 phy_start -EXPORT_SYMBOL vmlinux 0xab925245 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xabb0e29a d_delete -EXPORT_SYMBOL vmlinux 0xabb17852 security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0xabb189d3 ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0xabb42425 set_groups -EXPORT_SYMBOL vmlinux 0xabb467e9 mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0xabc6debe get_tree_single +EXPORT_SYMBOL vmlinux 0xab8076ae disk_check_media_change +EXPORT_SYMBOL vmlinux 0xab8a9f06 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xab938aba invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xabae4983 mdiobus_read +EXPORT_SYMBOL vmlinux 0xabb5a90c config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xabbfa196 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0xabde2339 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xabed09bd vfs_ioctl EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabfab517 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0xac00feab phy_attach -EXPORT_SYMBOL vmlinux 0xac01e782 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xabf53b48 rep_stos_alternative +EXPORT_SYMBOL vmlinux 0xabf931c9 vfs_rename +EXPORT_SYMBOL vmlinux 0xac16d626 vme_master_request EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac200fff pnp_is_active EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac34b90f neigh_app_ns -EXPORT_SYMBOL vmlinux 0xac37c698 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xac3facf3 md_done_sync +EXPORT_SYMBOL vmlinux 0xac4ee648 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac5f4d85 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xac5fc32d pnp_device_attach EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac874cfb kthread_bind -EXPORT_SYMBOL vmlinux 0xac87e7e4 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0xac89fcd8 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xaca9ee90 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xac80e542 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xac887c0a blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xac8e2aca flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xac942b3a devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xac980b4d cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xac9ef32d logfc +EXPORT_SYMBOL vmlinux 0xac9fa5b5 iput EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb98488 noop_fsync +EXPORT_SYMBOL vmlinux 0xacb445ea debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xacb5568f sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xacb9cab9 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xace08d4b netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0xace8a8f2 fb_set_suspend EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacf7168e jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0xacf8bed6 sk_alloc -EXPORT_SYMBOL vmlinux 0xacfc74ed dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xad02ce76 framebuffer_release +EXPORT_SYMBOL vmlinux 0xacf81453 dma_set_mask +EXPORT_SYMBOL vmlinux 0xacfcdabb devm_iounmap EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad081980 poll_freewait EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode -EXPORT_SYMBOL vmlinux 0xad326375 phy_set_max_speed -EXPORT_SYMBOL vmlinux 0xad48fc6e unregister_filesystem EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid EXPORT_SYMBOL vmlinux 0xad53a002 __x86_indirect_call_thunk_rbp -EXPORT_SYMBOL vmlinux 0xad56b6a3 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xad64148e inet_accept EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0xad6be5ea xfrm_state_update EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad81d055 param_get_int +EXPORT_SYMBOL vmlinux 0xad738142 tcp_inbound_md5_hash EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadaabc58 tcp_get_md5sig_pool EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb83f30 submit_bio_wait -EXPORT_SYMBOL vmlinux 0xadbe47e0 xen_alloc_ballooned_pages EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc799ee inet_dgram_connect EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd20494 netdev_features_change -EXPORT_SYMBOL vmlinux 0xadfc2cfe __break_lease +EXPORT_SYMBOL vmlinux 0xadd34cb3 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xadf05701 done_path_create EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae061352 max8998_bulk_read -EXPORT_SYMBOL vmlinux 0xae10d7e0 bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xae1651f3 mmc_hw_reset EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae2c124e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xae2fe2c4 inode_update_time EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae316dbb path_put -EXPORT_SYMBOL vmlinux 0xae345302 pci_enable_ptm -EXPORT_SYMBOL vmlinux 0xae35efab dst_destroy -EXPORT_SYMBOL vmlinux 0xae4a77c5 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0xae4d7a94 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae62f2ee mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae7639be i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xae6efff2 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xae7dc3c7 register_md_personality +EXPORT_SYMBOL vmlinux 0xae8bb8cd scsi_print_result +EXPORT_SYMBOL vmlinux 0xae9b9f9a rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xae9bb5b8 ipv4_dst_check EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeadedaa pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec51b7a tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xaeccca15 rt_dst_clone -EXPORT_SYMBOL vmlinux 0xaed99d51 kobject_get -EXPORT_SYMBOL vmlinux 0xaef5ba83 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xaef6add6 unlock_page -EXPORT_SYMBOL vmlinux 0xaf0108b9 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0xaf1e954b ata_print_version +EXPORT_SYMBOL vmlinux 0xaebe3566 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xaec66fe9 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xaecde1db flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xaee129b6 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xaee493b3 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xaee91aae iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xaeff747c udp6_csum_init +EXPORT_SYMBOL vmlinux 0xaf031da2 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xaf19dd45 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xaf1f9709 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xaf232f0d phy_support_sym_pause EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw -EXPORT_SYMBOL vmlinux 0xaf3a4ee4 pci_enable_device_io EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf5d3769 serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0xaf70d233 amd_iommu_device_info -EXPORT_SYMBOL vmlinux 0xaf8a8a53 mpage_writepages -EXPORT_SYMBOL vmlinux 0xaf8cd367 posix_test_lock -EXPORT_SYMBOL vmlinux 0xaf8d6e11 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xaf90c3d3 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0xaf95a556 __nla_put_64bit -EXPORT_SYMBOL vmlinux 0xaf95dcb8 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xaf7566a5 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xaf843ef0 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xaf9326c6 __mdiobus_read +EXPORT_SYMBOL vmlinux 0xaf937505 mdio_device_reset +EXPORT_SYMBOL vmlinux 0xaf956c47 xfrm_init_replay EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit -EXPORT_SYMBOL vmlinux 0xafaa8190 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xafaaa8d2 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xafb63ce6 phy_print_status EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafb9f5bd mmc_release_host +EXPORT_SYMBOL vmlinux 0xafbc31c5 unix_detach_fds EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error -EXPORT_SYMBOL vmlinux 0xafd21e44 proc_create_data EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp -EXPORT_SYMBOL vmlinux 0xafefc938 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xb019c8c2 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xafea18d2 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xaffc92bf blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xb00ec2ef dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xb01b4b1d nd_device_register EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb028a8ba fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xb01cb959 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc -EXPORT_SYMBOL vmlinux 0xb03c9521 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0xb03fb6e4 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xb0373b4c file_path +EXPORT_SYMBOL vmlinux 0xb04533f2 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb050419f pci_release_resource +EXPORT_SYMBOL vmlinux 0xb052bff1 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xb0699ac1 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xb076a2a5 nd_btt_version -EXPORT_SYMBOL vmlinux 0xb07ed83a i2c_transfer -EXPORT_SYMBOL vmlinux 0xb08fb573 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0xb0955d6c pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb069244d ip_options_compile +EXPORT_SYMBOL vmlinux 0xb0695461 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xb076f8fa inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xb0971e93 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xb097f13f blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xb09b64dd starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb09fc41f mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0b1340d tso_build_data -EXPORT_SYMBOL vmlinux 0xb0b51522 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb0a140c7 unlock_buffer EXPORT_SYMBOL vmlinux 0xb0b76945 __x86_indirect_call_thunk_rsp EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0c83fb8 vme_register_driver -EXPORT_SYMBOL vmlinux 0xb0ce18fa __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0xb0d45976 tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e602eb memmove -EXPORT_SYMBOL vmlinux 0xb0e9516f dma_resv_iter_next_unlocked -EXPORT_SYMBOL vmlinux 0xb0ff997c blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0xb1104dd2 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xb0ecb264 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xb111dbb1 shmem_aops +EXPORT_SYMBOL vmlinux 0xb11d4122 dma_resv_iter_next_unlocked EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb125a25e tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0xb13d9f36 devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xb1425fd2 init_special_inode +EXPORT_SYMBOL vmlinux 0xb135355e rtc_add_group +EXPORT_SYMBOL vmlinux 0xb136bf48 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xb1407e4b netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xb141061f i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14d823c genphy_c37_read_status EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb16a2d2c inet_bind -EXPORT_SYMBOL vmlinux 0xb16fada6 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0xb177900c phy_print_status -EXPORT_SYMBOL vmlinux 0xb17df8dc blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xb17ece26 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xb1931554 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xb1591cff blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xb15d2255 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xb16958a5 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xb17e7e98 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xb17f38ed ethtool_aggregate_rmon_stats +EXPORT_SYMBOL vmlinux 0xb1823ee4 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xb18cff74 fwnode_get_mac_address EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb19cf99f netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xb19fc6b6 inet_bind +EXPORT_SYMBOL vmlinux 0xb1a1b48b md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1e28d8d rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xb1e3ef80 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xb1e7441e jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xb1ef2d50 cred_fscmp +EXPORT_SYMBOL vmlinux 0xb1f61104 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xb2041a9d dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0xb2282c11 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xb221cf71 vme_bus_type +EXPORT_SYMBOL vmlinux 0xb22bf300 agp_generic_type_to_mask_type EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user EXPORT_SYMBOL vmlinux 0xb2338d81 __x86_indirect_thunk_rsp -EXPORT_SYMBOL vmlinux 0xb240ae92 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0xb2463ff3 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0xb252eecb mark_buffer_write_io_error EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb29b4e5c pm860x_reg_write -EXPORT_SYMBOL vmlinux 0xb2af9b85 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xb2675f27 skb_condense +EXPORT_SYMBOL vmlinux 0xb26cfd15 netif_device_detach +EXPORT_SYMBOL vmlinux 0xb281d4c6 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xb28a537f simple_fill_super +EXPORT_SYMBOL vmlinux 0xb2a9cf10 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xb2abc39d set_nlink +EXPORT_SYMBOL vmlinux 0xb2add26f mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xb2b86914 release_sock EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2c22007 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xb2c8ab0f vga_switcheroo_client_probe_defer -EXPORT_SYMBOL vmlinux 0xb2c96b32 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xb2d12a86 blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0xb2d8c3e3 remove_arg_zero -EXPORT_SYMBOL vmlinux 0xb2e05dff __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb2cb36ba param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xb2e790f7 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 -EXPORT_SYMBOL vmlinux 0xb2fe5ec4 rproc_detach +EXPORT_SYMBOL vmlinux 0xb2fd63fd eisa_bus_type EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb3096cef pci_get_device EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31c35c8 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xb313f987 sget_fc +EXPORT_SYMBOL vmlinux 0xb321e0f1 mdio_device_register +EXPORT_SYMBOL vmlinux 0xb32201be dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xb3248714 is_nd_btt EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb326c74c module_layout +EXPORT_SYMBOL vmlinux 0xb3278fc1 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit -EXPORT_SYMBOL vmlinux 0xb32ed74d kthread_create_worker -EXPORT_SYMBOL vmlinux 0xb361c533 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xb331e6cd phy_read_paged +EXPORT_SYMBOL vmlinux 0xb34e3d7a dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xb352e4fb __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xb35710fe dentry_open +EXPORT_SYMBOL vmlinux 0xb35e782f sk_ns_capable +EXPORT_SYMBOL vmlinux 0xb361af33 tcp_disconnect EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb369fae8 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xb37ffa33 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xb36d804c twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xb37b38a6 path_has_submounts +EXPORT_SYMBOL vmlinux 0xb383df0b filemap_alloc_folio EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert -EXPORT_SYMBOL vmlinux 0xb39c65d2 datagram_poll EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3b70e6c pci_enable_wake +EXPORT_SYMBOL vmlinux 0xb3c2140a inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d38ce7 pmem_sector_size -EXPORT_SYMBOL vmlinux 0xb3e3106a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xb3eff514 mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f2296d __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table -EXPORT_SYMBOL vmlinux 0xb3fb1ba8 lock_rename +EXPORT_SYMBOL vmlinux 0xb3ffa18c seq_write EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb41cb95e mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xb414438b _dev_notice EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb439c873 __netif_schedule +EXPORT_SYMBOL vmlinux 0xb4270634 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xb432fb40 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xb4349b0e inet6_bind +EXPORT_SYMBOL vmlinux 0xb439ba5d __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb43d461f security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xb43fcd14 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xb45429b8 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb45db140 rtc_add_groups -EXPORT_SYMBOL vmlinux 0xb4623fb2 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0xb464256f xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0xb467f741 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xb46f264f ilookup5 +EXPORT_SYMBOL vmlinux 0xb473b592 nf_log_trace EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0xb4878fb0 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xb485c592 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xb4863f29 blk_finish_plug EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4951a28 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xb4bc9404 lock_sock_nested -EXPORT_SYMBOL vmlinux 0xb4cbf5f1 agp_backend_release -EXPORT_SYMBOL vmlinux 0xb4f13075 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xb4f6972d scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xb4ff8e23 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0xb52d8821 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0xb52fc578 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xb4a0b699 input_match_device_id +EXPORT_SYMBOL vmlinux 0xb4e3a3b1 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb4ef0467 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xb4fc70bc from_kuid +EXPORT_SYMBOL vmlinux 0xb5052e86 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xb534fdc1 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xb53d6b6a dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb54be08b acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xb584ca96 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xb58710a2 dquot_commit -EXPORT_SYMBOL vmlinux 0xb5874b52 is_acpi_device_node -EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0xb594c147 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xb558b8ef mmc_put_card +EXPORT_SYMBOL vmlinux 0xb55bcfb1 pci_iounmap +EXPORT_SYMBOL vmlinux 0xb560ac7c generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xb5617fbd udp_poll +EXPORT_SYMBOL vmlinux 0xb56dd09e input_grab_device +EXPORT_SYMBOL vmlinux 0xb5759012 pci_request_region +EXPORT_SYMBOL vmlinux 0xb5857448 md_write_start EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined -EXPORT_SYMBOL vmlinux 0xb5ad6ac8 ps2_begin_command EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5ba6a63 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0xb5d727f1 f_setown -EXPORT_SYMBOL vmlinux 0xb5e1f249 dm_io +EXPORT_SYMBOL vmlinux 0xb5c66a17 ps2_interrupt EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5eaf6f6 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0xb5fbc48f __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xb612d328 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xb5f866e1 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xb5faa4f0 dst_alloc +EXPORT_SYMBOL vmlinux 0xb611a00c xfrm_state_free +EXPORT_SYMBOL vmlinux 0xb6156a44 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xb617a141 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xb618e9d4 __skb_recv_udp EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb6217255 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xb6296500 km_policy_notify +EXPORT_SYMBOL vmlinux 0xb62fe6bd sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xb633db04 __phy_resume EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb64f2920 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0xb65186a5 generic_perform_write +EXPORT_SYMBOL vmlinux 0xb6377ade vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xb63e224c kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xb641b86a security_inode_notifysecctx EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb6581f9d netif_carrier_on -EXPORT_SYMBOL vmlinux 0xb658f424 dquot_disable +EXPORT_SYMBOL vmlinux 0xb654ef9d vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xb66ae3e4 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xb66c8ed5 mmc_gpio_set_cd_irq EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67ce2df security_path_unlink EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a64683 mmc_request_done +EXPORT_SYMBOL vmlinux 0xb69db7e2 kernel_listen EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b2b11d pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xb6aff735 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xb6c11446 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6d117f4 __dquot_transfer -EXPORT_SYMBOL vmlinux 0xb6d68904 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb6cf350c security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xb6d1b484 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xb6d8e29c ip6_dst_check +EXPORT_SYMBOL vmlinux 0xb6da6f4a __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xb6dc4ef4 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6ee8f91 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0xb6f913fa tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb70bc394 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0xb70e438b pci_select_bars -EXPORT_SYMBOL vmlinux 0xb70fded9 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0xb713d9a0 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xb702955c console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xb709063d locks_remove_posix EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb7189dd7 con_set_default_unimap EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb7232c9c pneigh_enqueue -EXPORT_SYMBOL vmlinux 0xb725fbcc devm_gen_pool_create EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb7429853 dentry_path_raw -EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds -EXPORT_SYMBOL vmlinux 0xb758dbb1 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xb73aed7d truncate_setsize +EXPORT_SYMBOL vmlinux 0xb741fe41 phy_device_free EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xb75f3f70 configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xb7714d2e blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0xb789a3c6 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xb7676d2d sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xb7747789 cdev_add EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb78e8c83 elevator_alloc -EXPORT_SYMBOL vmlinux 0xb78f1c24 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0xb7928c52 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0xb79e2e5c genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0xb79e5ca5 from_kuid -EXPORT_SYMBOL vmlinux 0xb7b2992a mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xb78e1400 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xb79bab98 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xb79c312b skb_queue_tail +EXPORT_SYMBOL vmlinux 0xb79efc5e devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xb7ae8688 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xb7b0cca7 cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7da7aed i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xb7c840e4 load_nls_default +EXPORT_SYMBOL vmlinux 0xb7d145e3 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xb80b3a63 noop_qdisc EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb8314d0c __block_write_full_page -EXPORT_SYMBOL vmlinux 0xb84bb98d rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xb85001f0 nd_integrity_init -EXPORT_SYMBOL vmlinux 0xb8571003 bdi_register +EXPORT_SYMBOL vmlinux 0xb80c4d75 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xb8144419 nf_log_set +EXPORT_SYMBOL vmlinux 0xb8244e60 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xb8372c31 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0xb85253fc kthread_associate_blkcg EXPORT_SYMBOL vmlinux 0xb862f7ea __x86_indirect_jump_thunk_rbx EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89e9417 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xb89f2e0c blk_integrity_register +EXPORT_SYMBOL vmlinux 0xb89c3b6b param_ops_ulong +EXPORT_SYMBOL vmlinux 0xb8aa76c8 folio_wait_private_2 EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8b513a8 eth_type_trans -EXPORT_SYMBOL vmlinux 0xb8b75353 sock_set_priority -EXPORT_SYMBOL vmlinux 0xb8b808f0 hmm_range_fault -EXPORT_SYMBOL vmlinux 0xb8bdfbcb dev_addr_del -EXPORT_SYMBOL vmlinux 0xb8bf5302 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0xb8ccb9c9 file_remove_privs -EXPORT_SYMBOL vmlinux 0xb8ced9ab unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xb8d479fd no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xb8def146 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0xb8e58e28 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xb8b0985a amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xb8c58228 __netif_napi_del EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb903c829 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90d2b01 d_obtain_root EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9193a1a __breadahead EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb9213edd folio_add_lru +EXPORT_SYMBOL vmlinux 0xb93abd3e free_task EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb946cf08 make_kprojid EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb94cc1c3 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xb952a43d make_kuid +EXPORT_SYMBOL vmlinux 0xb9575109 eth_header_cache +EXPORT_SYMBOL vmlinux 0xb95cd75a scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xb95d7679 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb9606386 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb976b590 vme_register_error_handler EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0xb9884f77 skb_find_text -EXPORT_SYMBOL vmlinux 0xb9940e0d phy_attached_info +EXPORT_SYMBOL vmlinux 0xb9825984 __klp_sched_try_switch +EXPORT_SYMBOL vmlinux 0xb98e8afd mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xb9929f35 trace_event_printf +EXPORT_SYMBOL vmlinux 0xb9a09367 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xb9a09ddd __x86_indirect_jump_thunk_rcx +EXPORT_SYMBOL vmlinux 0xb9aeffdb ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9bd4c53 tty_devnum -EXPORT_SYMBOL vmlinux 0xb9bf730c fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xb9c4b2aa is_nd_pfn +EXPORT_SYMBOL vmlinux 0xb9cfd84f vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xb9db8ce2 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba0b3233 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0xba0ea279 cdev_device_add +EXPORT_SYMBOL vmlinux 0xba00daa2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0xba01ac9e mr_table_alloc +EXPORT_SYMBOL vmlinux 0xba0cd560 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xba0f24d6 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba1ded41 consume_skb +EXPORT_SYMBOL vmlinux 0xba11a3cd gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0xba2449b3 __x86_indirect_jump_thunk_rax -EXPORT_SYMBOL vmlinux 0xba3a0e97 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xba2ff2da tso_start +EXPORT_SYMBOL vmlinux 0xba43fadb convert_art_to_tsc EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba6eac26 fb_prepare_logo -EXPORT_SYMBOL vmlinux 0xba7b02ff vga_con +EXPORT_SYMBOL vmlinux 0xba6f290c truncate_pagecache +EXPORT_SYMBOL vmlinux 0xba77b168 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xba791372 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xba8595be netpoll_parse_options EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0xbaba4e93 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xbabf1b5d mdio_device_create +EXPORT_SYMBOL vmlinux 0xbac02ed9 dump_emit EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbad15ddb ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xbade6d19 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0xbae5a6b8 register_md_personality -EXPORT_SYMBOL vmlinux 0xbaec0009 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xbacbded2 iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0xbaf50292 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xbaf950c3 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xbaf9d45c fixed_size_llseek EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbb0195b3 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xbb03e0c5 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xbb049dd6 nlmsg_notify EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb08e59b tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xbb0a7d2f amd_iommu_domain_clear_gcr3 EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb17d813 may_umount_tree EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger -EXPORT_SYMBOL vmlinux 0xbb20514d dev_mc_sync -EXPORT_SYMBOL vmlinux 0xbb23d0cf md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb31db7a dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0xbb37d85b crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xbb4a2fb1 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xbb43f75e cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xbb4772ba inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0xbb6273ec dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0xbb6a92d2 pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xbb710ca7 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xbb7924cd tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xbb53f1de genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xbb704cab devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags -EXPORT_SYMBOL vmlinux 0xbb93e9e2 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xbb9e8438 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbba04342 tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0xbbabbda7 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0xbbc3966e generic_key_instantiate -EXPORT_SYMBOL vmlinux 0xbbc8fc19 xattr_full_name -EXPORT_SYMBOL vmlinux 0xbbcdf3ef generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0xbbd1fde9 tso_start -EXPORT_SYMBOL vmlinux 0xbbe100ca mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xbbec7dd5 vme_bus_type -EXPORT_SYMBOL vmlinux 0xbc00f313 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xbbb22dae vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xbbb28e1b devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0xbbd969ed __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xbbda18c4 dma_fence_free +EXPORT_SYMBOL vmlinux 0xbbdafb55 kern_path_create EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc3a194f phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0xbc3bfe22 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0xbc60308d fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xbc6d1dc4 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xbc73959b inetdev_by_index -EXPORT_SYMBOL vmlinux 0xbc78a930 generic_file_fsync -EXPORT_SYMBOL vmlinux 0xbc87be6e tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xbc97db5a mdio_device_free -EXPORT_SYMBOL vmlinux 0xbc9ee1a0 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0xbca8f420 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xbc40ec3c devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xbc5c2895 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xbc6d8684 kobject_get +EXPORT_SYMBOL vmlinux 0xbc8d9a9e dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xbc9c40cd agp_generic_insert_memory EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcab8800 sock_wfree +EXPORT_SYMBOL vmlinux 0xbcae0b04 mini_qdisc_pair_init EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key -EXPORT_SYMBOL vmlinux 0xbcb682c9 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0xbcc14413 d_genocide -EXPORT_SYMBOL vmlinux 0xbcc1c92e genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xbcc32dc7 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xbccd679e ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0xbccfbc68 fddi_type_trans -EXPORT_SYMBOL vmlinux 0xbccff655 param_get_ushort EXPORT_SYMBOL vmlinux 0xbcef8b58 __x86_indirect_jump_thunk_rdx -EXPORT_SYMBOL vmlinux 0xbd1dac4c inode_io_list_del +EXPORT_SYMBOL vmlinux 0xbcf3ca47 init_task +EXPORT_SYMBOL vmlinux 0xbd00375c mmc_remove_host +EXPORT_SYMBOL vmlinux 0xbd163da1 __folio_alloc +EXPORT_SYMBOL vmlinux 0xbd25d1f0 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xbd2661d4 mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0xbd35431a clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi -EXPORT_SYMBOL vmlinux 0xbd433b85 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xbd3bfd9e dst_release_immediate +EXPORT_SYMBOL vmlinux 0xbd3e1a41 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xbd44889a simple_transaction_read EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd4e8d49 security_inode_setsecctx -EXPORT_SYMBOL vmlinux 0xbd663255 inet_frags_init +EXPORT_SYMBOL vmlinux 0xbd4b199a vfs_link +EXPORT_SYMBOL vmlinux 0xbd4b3101 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0xbd5c67a1 elv_rb_former_request EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd745bf5 vga_client_register -EXPORT_SYMBOL vmlinux 0xbd79412b pm860x_set_bits -EXPORT_SYMBOL vmlinux 0xbd812eb8 netdev_update_features -EXPORT_SYMBOL vmlinux 0xbd8d764b skb_copy_expand -EXPORT_SYMBOL vmlinux 0xbd8f3fdb simple_get_link -EXPORT_SYMBOL vmlinux 0xbd992843 finalize_exec -EXPORT_SYMBOL vmlinux 0xbd99b9cd pps_event -EXPORT_SYMBOL vmlinux 0xbd9e6d0d dev_uc_flush -EXPORT_SYMBOL vmlinux 0xbdae96ff scsi_mode_sense -EXPORT_SYMBOL vmlinux 0xbdc47ed6 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xbd68ab76 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xbda1905d dev_set_threaded +EXPORT_SYMBOL vmlinux 0xbdb6cbee configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xbdc23e7e sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xbddb8e6e tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xbdec201b xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xbdfa8e14 configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ -EXPORT_SYMBOL vmlinux 0xbe003148 padata_alloc_shell EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0xbe06483d cdev_init -EXPORT_SYMBOL vmlinux 0xbe0c6e8d iov_iter_bvec -EXPORT_SYMBOL vmlinux 0xbe147561 mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xbe21fd88 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp -EXPORT_SYMBOL vmlinux 0xbe26a2fe flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xbe2db53f iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0xbe39e2a7 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xbe05fe79 touch_atime +EXPORT_SYMBOL vmlinux 0xbe0bf683 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xbe144437 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xbe2fb3b6 filemap_flush +EXPORT_SYMBOL vmlinux 0xbe31e90c jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4c1bac __mdiobus_c45_write EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe51d6b3 scsi_remove_host EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5ba994 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xbe663006 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe768cd3 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xbe7af97d submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xbe81102a param_set_short -EXPORT_SYMBOL vmlinux 0xbea6eb53 ipv4_mtu -EXPORT_SYMBOL vmlinux 0xbeb4988d insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xbeb6727c sync_filesystem -EXPORT_SYMBOL vmlinux 0xbeb6dde2 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0xbec04cf5 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0xbecab81f clear_user_erms +EXPORT_SYMBOL vmlinux 0xbe70ec0c generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xbe7910ee __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xbe7920cf nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xbe89eebb skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xbe93bdb8 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xbea0c81b flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xbead7fdc __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xbeb8c816 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xbecf3734 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbed005d3 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xbee34c3e __i2c_transfer +EXPORT_SYMBOL vmlinux 0xbee44036 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xbeedbbe2 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbf12505b dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0xbf14dc8e devm_rproc_add +EXPORT_SYMBOL vmlinux 0xbf21e8cd jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0xbf328269 md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0xbf4fbc82 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xbf365add lease_modify +EXPORT_SYMBOL vmlinux 0xbf45078d cdev_device_add +EXPORT_SYMBOL vmlinux 0xbf49a4f9 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xbf4a0487 forget_all_cached_acls EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf62a0fb inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0xbf66bafd jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xbf955944 inet_addr_type -EXPORT_SYMBOL vmlinux 0xbf999c7a xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xbf99a80b inode_add_bytes -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbfad36a8 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xbf76180c mmc_retune_release +EXPORT_SYMBOL vmlinux 0xbf7b287f scsi_host_get EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb4415d devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xbfb47d94 __bh_read EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep -EXPORT_SYMBOL vmlinux 0xbfd2ad4f seq_vprintf -EXPORT_SYMBOL vmlinux 0xbfd91461 inet_getname -EXPORT_SYMBOL vmlinux 0xbfe6d4c8 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xbfe9c870 init_task -EXPORT_SYMBOL vmlinux 0xbff4d2b7 thaw_super +EXPORT_SYMBOL vmlinux 0xbfcee021 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xbff0b0b6 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xbffbdf85 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xc00052ae input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc049c4b0 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xc04cbba0 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0xc04e9d7b devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xc05f7b4c page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xc03b8ca2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xc04af624 kern_unmount +EXPORT_SYMBOL vmlinux 0xc053ca77 generic_permission +EXPORT_SYMBOL vmlinux 0xc05ec5cb eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc0853089 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xc0a78b88 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xc0b2c999 security_sock_graft -EXPORT_SYMBOL vmlinux 0xc0bcbf4f nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0xc0d82984 sock_alloc_file -EXPORT_SYMBOL vmlinux 0xc0dcbce5 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xc08c9b50 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xc08e76b9 xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0xc09a715f pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xc0c9e5f6 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xc0d7d8ec mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xc0e90a4f ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xc0ea47b6 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc0fc2f9a noop_llseek EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1133e2d jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0xc116c832 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xc10e18ca pci_set_power_state +EXPORT_SYMBOL vmlinux 0xc116dcb9 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc12de1c2 ndisc_ns_create -EXPORT_SYMBOL vmlinux 0xc133c57f mmc_can_discard EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc1617310 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xc1660f39 set_pages_wb +EXPORT_SYMBOL vmlinux 0xc166b007 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xc1685cf6 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc16f2001 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xc16f70d2 phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xc18e7360 vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0xc190a798 noop_qdisc -EXPORT_SYMBOL vmlinux 0xc19644a2 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xc19a6e9f phy_device_create -EXPORT_SYMBOL vmlinux 0xc19d853f rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xc1a968f4 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xc1acafc1 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1725b1e close_fd_get_file +EXPORT_SYMBOL vmlinux 0xc1756ae1 backlight_device_register +EXPORT_SYMBOL vmlinux 0xc17c9834 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xc19dfbe9 key_task_permission +EXPORT_SYMBOL vmlinux 0xc1a7d0c9 unpin_user_page +EXPORT_SYMBOL vmlinux 0xc1ae7a20 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc1af0d5c __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xc1b8955a super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xc1cb419c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xc1ccf248 thaw_super EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget -EXPORT_SYMBOL vmlinux 0xc1dd23ad xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xc1eadc19 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xc1f927a6 km_state_expired -EXPORT_SYMBOL vmlinux 0xc1fb99eb flow_rule_match_control -EXPORT_SYMBOL vmlinux 0xc203926f max8925_reg_write -EXPORT_SYMBOL vmlinux 0xc20c824b kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xc2117f1f ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xc2276a7d serio_reconnect -EXPORT_SYMBOL vmlinux 0xc22dda2b vme_register_bridge +EXPORT_SYMBOL vmlinux 0xc1ddd074 input_flush_device +EXPORT_SYMBOL vmlinux 0xc1dff02e zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc1e156a0 lookup_one_len +EXPORT_SYMBOL vmlinux 0xc1f54b3f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc1ff7ac8 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xc20040f1 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xc201262e tcf_qevent_handle EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xc23b153e inet6_protos +EXPORT_SYMBOL vmlinux 0xc234eb66 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0xc23d632c inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24e6fc9 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xc2579dc0 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xc264b21a get_user_pages +EXPORT_SYMBOL vmlinux 0xc26689a5 mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xc272e8e9 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc2799364 mdiobus_free +EXPORT_SYMBOL vmlinux 0xc284f671 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29d7240 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xc2a805f5 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xc2ab537f is_free_buddy_page -EXPORT_SYMBOL vmlinux 0xc2b5d6cb agp_bridge -EXPORT_SYMBOL vmlinux 0xc2be54ca scsi_host_busy +EXPORT_SYMBOL vmlinux 0xc2a25067 pci_free_irq +EXPORT_SYMBOL vmlinux 0xc2a56a2a inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xc2ae3b41 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xc2b8d503 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xc2cedbee param_get_hexint -EXPORT_SYMBOL vmlinux 0xc2d0155e folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xc2d1e9ae __lock_sock_fast EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2e9a45d gro_cells_receive -EXPORT_SYMBOL vmlinux 0xc2ee7706 agp_allocate_memory -EXPORT_SYMBOL vmlinux 0xc30283f6 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xc2ea4a88 __alloc_pages +EXPORT_SYMBOL vmlinux 0xc2fc363f udp_seq_ops +EXPORT_SYMBOL vmlinux 0xc2fe4c1c simple_write_begin EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc306b210 con_set_default_unimap EXPORT_SYMBOL vmlinux 0xc310b981 strnstr -EXPORT_SYMBOL vmlinux 0xc315e7c0 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0xc3169f7d blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xc31da254 netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc321514d reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xc3248bb5 igrab +EXPORT_SYMBOL vmlinux 0xc3204b6f __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xc32285bd xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xc327ffe1 dev_trans_start +EXPORT_SYMBOL vmlinux 0xc32c67ce file_ns_capable EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc32d88ae dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xc3514d7c nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0xc35ba6d0 kill_pgrp -EXPORT_SYMBOL vmlinux 0xc362ca84 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0xc36cf783 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xc32e58ee ip6_mtu +EXPORT_SYMBOL vmlinux 0xc347b7eb dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xc355e637 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc35d3fbb fiemap_prep EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc -EXPORT_SYMBOL vmlinux 0xc37f6a27 rproc_add EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc39474cb i2c_register_driver -EXPORT_SYMBOL vmlinux 0xc39e723d vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xc39edd8a sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xc3a9ce61 dev_add_offload +EXPORT_SYMBOL vmlinux 0xc3a12ea5 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xc3a5d7b9 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xc3a6b9b4 netlink_unicast EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3bcb05b may_umount_tree -EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0xc3d4542e ip_route_me_harder -EXPORT_SYMBOL vmlinux 0xc3e2133f configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xc3ec4e0d dst_discard_out +EXPORT_SYMBOL vmlinux 0xc3e91ce2 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xc3f78aaf netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc3fa3105 d_exact_alias EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc419d5a5 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0xc41f43e0 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0xc3ff62cf devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xc40e7bb6 simple_unlink EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42a08b0 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc44bfa9a ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xc4519c6d input_set_capability +EXPORT_SYMBOL vmlinux 0xc438ec37 balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc4554f29 __dynamic_ibdev_dbg EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc49dabf4 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xc47b76aa bio_reset +EXPORT_SYMBOL vmlinux 0xc47dadc5 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xc4a210d6 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xc4ab1786 nf_log_register EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4b85c10 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0xc4bb7c5b __sock_create -EXPORT_SYMBOL vmlinux 0xc4bec2eb sock_no_getname -EXPORT_SYMBOL vmlinux 0xc50f0670 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xc4c7548d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xc4e5cae3 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xc4e7fee8 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xc4f8666c ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc510bcb3 rproc_put EXPORT_SYMBOL vmlinux 0xc515f1cd __x86_indirect_jump_thunk_r13 +EXPORT_SYMBOL vmlinux 0xc51cbbcc kernel_accept EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc529d0ac devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xc538c0ff napi_gro_flush +EXPORT_SYMBOL vmlinux 0xc54fd6cc block_write_end EXPORT_SYMBOL vmlinux 0xc558530d profile_pc EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc57e88c1 __SCK__tp_func_write_msr -EXPORT_SYMBOL vmlinux 0xc585c3e3 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xc58367d1 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xc5863b90 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc58d8017 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc5940958 agp_generic_alloc_page EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc59dd841 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0xc5a6d594 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c5f1a6 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xc5ca9ab7 eth_validate_addr EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5e7f9fd scsi_host_get -EXPORT_SYMBOL vmlinux 0xc5f8b87b kmalloc_caches +EXPORT_SYMBOL vmlinux 0xc5eeb54c phy_device_register EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc6171928 dev_change_flags -EXPORT_SYMBOL vmlinux 0xc618bd9d dquot_file_open -EXPORT_SYMBOL vmlinux 0xc61995e4 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0xc61afdc5 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0xc61c0e74 iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xc6126264 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xc616c142 get_user_pages_remote EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63bf5bf blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0xc6553023 drop_super_exclusive EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number -EXPORT_SYMBOL vmlinux 0xc6637d82 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc68fb2a4 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc66fefd1 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xc68ccaac find_inode_nowait EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc -EXPORT_SYMBOL vmlinux 0xc698ad73 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xc6b90218 current_time EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6eb6950 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc6edd83d bdi_alloc EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc7030a0b __invalidate_device +EXPORT_SYMBOL vmlinux 0xc6f58585 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xc703375d pid_task +EXPORT_SYMBOL vmlinux 0xc7047507 dquot_quota_on EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc713fc53 mmc_get_card +EXPORT_SYMBOL vmlinux 0xc71089cc tty_port_close_start +EXPORT_SYMBOL vmlinux 0xc71a9d07 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xc71b4f27 scsi_is_target_device EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc721c7fd vme_lm_request -EXPORT_SYMBOL vmlinux 0xc73acd9a ipmi_platform_add -EXPORT_SYMBOL vmlinux 0xc7651202 input_event -EXPORT_SYMBOL vmlinux 0xc766eeb0 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0xc77f5527 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc74c23e0 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xc74facf6 fwnode_iomap +EXPORT_SYMBOL vmlinux 0xc75691b4 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc75d036a mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xc761531a unregister_nls +EXPORT_SYMBOL vmlinux 0xc765a921 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xc76fb806 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xc77dbf44 consume_skb EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc788360f redraw_screen -EXPORT_SYMBOL vmlinux 0xc7911a46 simple_release_fs -EXPORT_SYMBOL vmlinux 0xc7941ac8 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0xc79b1483 devfreq_update_target -EXPORT_SYMBOL vmlinux 0xc7a0d31c acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xc7a26b68 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xc7975de0 trace_seq_acquire EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0xc7bd2ce4 phy_init_eee EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c6a4ca mode_strip_sgid -EXPORT_SYMBOL vmlinux 0xc7e58fc6 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xc7fc0869 devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xc8084256 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xc7c7ea76 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xc7cb4e2e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xc7e3a8f9 dev_mc_add +EXPORT_SYMBOL vmlinux 0xc7e77f22 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xc7ea726f set_user_nice +EXPORT_SYMBOL vmlinux 0xc7eeb0c0 inet6_getname +EXPORT_SYMBOL vmlinux 0xc7fc5260 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xc7fdb5be pci_get_slot EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc81ce677 i2c_smbus_write_word_data -EXPORT_SYMBOL vmlinux 0xc8358cf8 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0xc8363db2 mod_node_page_state EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc83a5bdb do_clone_file_range +EXPORT_SYMBOL vmlinux 0xc84206a7 ip6_xmit EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84ab0a3 setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xc85086f0 mpage_read_folio -EXPORT_SYMBOL vmlinux 0xc8625497 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xc856ae2e dns_query +EXPORT_SYMBOL vmlinux 0xc856c7ec dquot_quota_off EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc877bcfe unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc87d60be ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88a2da9 sock_recvmsg EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc893bf3f devm_rproc_add EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b4f85f dma_resv_add_fence EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table -EXPORT_SYMBOL vmlinux 0xc8c8bec7 inode_init_once -EXPORT_SYMBOL vmlinux 0xc8c94d6b mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0xc8d6e2fd dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xc8cbf751 tlbstate_untag_mask +EXPORT_SYMBOL vmlinux 0xc8cc70a1 udp_seq_next EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e0cc4b padata_set_cpumask -EXPORT_SYMBOL vmlinux 0xc8f1e7ee phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xc8fe1d79 mdio_find_bus -EXPORT_SYMBOL vmlinux 0xc90250ab ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xc914eb9e qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0xc92cb59f __module_get +EXPORT_SYMBOL vmlinux 0xc905fd98 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xc911c329 folio_unlock +EXPORT_SYMBOL vmlinux 0xc921f4a5 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xc93489a9 twl6040_reg_write EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9599319 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xc93f93b0 inode_permission +EXPORT_SYMBOL vmlinux 0xc943284a d_tmpfile +EXPORT_SYMBOL vmlinux 0xc945eead vc_cons +EXPORT_SYMBOL vmlinux 0xc9488fd2 release_pages EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc982ba48 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xc997bf68 mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xc99a0a3c fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xc982533c flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xc98f23d3 simple_rmdir +EXPORT_SYMBOL vmlinux 0xc9946880 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9ad6ac5 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xc9a1c8a4 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xc9b48f48 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xc9c147c7 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc9c20200 vm_map_ram +EXPORT_SYMBOL vmlinux 0xc9d23e73 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xc9daf143 ip_output EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0xc9e3b31e param_ops_bint EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0xca030071 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xc9fe1498 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xca00f453 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xca0d753f netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit -EXPORT_SYMBOL vmlinux 0xca17ec32 fsync_bdev +EXPORT_SYMBOL vmlinux 0xca19ba43 fqdir_exit +EXPORT_SYMBOL vmlinux 0xca19c411 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca358830 tcp_conn_request -EXPORT_SYMBOL vmlinux 0xca397605 keyring_alloc +EXPORT_SYMBOL vmlinux 0xca30724d block_dirty_folio +EXPORT_SYMBOL vmlinux 0xca420241 fb_io_write EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca6052fc sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xca63051c scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0xca72d000 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xca858b7e filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xca701db3 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xca7f468d backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcab464f3 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xca9e017f key_link +EXPORT_SYMBOL vmlinux 0xcac3b790 tls_client_hello_x509 EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcaefa27b forget_cached_acl -EXPORT_SYMBOL vmlinux 0xcaf077e8 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xcaf44c72 set_page_writeback -EXPORT_SYMBOL vmlinux 0xcb00756f ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xcad2a81b param_set_bool +EXPORT_SYMBOL vmlinux 0xcaee66b3 pcie_set_mps EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb02d85f netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xcb164015 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xcb24f747 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xcb114e06 serio_rescan +EXPORT_SYMBOL vmlinux 0xcb1266be nf_log_unset +EXPORT_SYMBOL vmlinux 0xcb1bdb5c eisa_driver_unregister EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb498287 d_lookup -EXPORT_SYMBOL vmlinux 0xcb53cf95 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xcb451c86 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb73c1a1 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xcb99455b mmc_retune_release -EXPORT_SYMBOL vmlinux 0xcba2db6c pcim_pin_device -EXPORT_SYMBOL vmlinux 0xcbb610ae page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xcb8e2eae vfs_iter_write +EXPORT_SYMBOL vmlinux 0xcba6f20c kernel_connect +EXPORT_SYMBOL vmlinux 0xcbb0e414 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xcbbc9f27 fb_pgprotect EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc590ed get_phy_device EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbfa22c6 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xcbe30fba aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xcbf094af folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xcbf74c81 fs_param_is_blob EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcc113c1f to_nd_pfn +EXPORT_SYMBOL vmlinux 0xcc0d8a36 simple_release_fs EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc2439a6 secpath_set EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xcc302ac8 handshake_req_alloc EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc36b8b6 nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xcc350dcc dev_deactivate EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup -EXPORT_SYMBOL vmlinux 0xcc3f88fe ip_frag_next +EXPORT_SYMBOL vmlinux 0xcc3f4be0 key_unlink EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0xcc4b2940 devm_pci_remap_cfg_resource EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5771db __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq -EXPORT_SYMBOL vmlinux 0xcc5c9a15 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc5f16a5 input_unregister_device -EXPORT_SYMBOL vmlinux 0xcc70da49 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0xcc87014d neigh_direct_output -EXPORT_SYMBOL vmlinux 0xcc9b4817 get_task_cred +EXPORT_SYMBOL vmlinux 0xcc85f9d6 edac_mc_find EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcca80a96 ppp_input_error -EXPORT_SYMBOL vmlinux 0xccc9f754 proto_unregister -EXPORT_SYMBOL vmlinux 0xccd820ca skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xcca7b5a8 make_bad_inode +EXPORT_SYMBOL vmlinux 0xcca7eab4 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xccaefe91 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xccaf0650 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xccaf994e dma_fence_set_deadline +EXPORT_SYMBOL vmlinux 0xccbe334c add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0xcce12870 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xccf2b4c8 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xccf45377 pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd031222 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0xcd207cdc phy_modify_paged +EXPORT_SYMBOL vmlinux 0xcd12a649 vfs_fsync_range EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd378bca i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0xcd56fe17 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xcd613492 mmc_command_done -EXPORT_SYMBOL vmlinux 0xcd6a239a ipv4_dst_check -EXPORT_SYMBOL vmlinux 0xcd7cfb67 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xcd4beba6 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xcd5634b1 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xcd7a3528 handshake_req_cancel +EXPORT_SYMBOL vmlinux 0xcd84bc3d dev_set_promiscuity EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcdab7e4a skb_push +EXPORT_SYMBOL vmlinux 0xcd995e95 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xcdb2412e xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xcdbc2c78 mntget EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcddccb79 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xcdcb212f legacy_pic EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcded62b1 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0xce05ccc0 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0xce164df3 __cgroup_bpf_run_filter_sk -EXPORT_SYMBOL vmlinux 0xce235207 param_set_bool +EXPORT_SYMBOL vmlinux 0xcdee74b1 neigh_table_init +EXPORT_SYMBOL vmlinux 0xcdf4b383 pipe_lock EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce29f9d3 nf_reinject -EXPORT_SYMBOL vmlinux 0xce338993 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xce38155d __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xce2e5d1b tty_name +EXPORT_SYMBOL vmlinux 0xce3a8993 freeze_super EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce4ee975 dev_get_flags -EXPORT_SYMBOL vmlinux 0xce53afee gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xce547cb9 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xce56ed7b security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce644f1f pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xce6510d6 dev_uc_sync -EXPORT_SYMBOL vmlinux 0xce668b6b netdev_crit +EXPORT_SYMBOL vmlinux 0xce5f007d fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xce66cee7 cdrom_release EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy -EXPORT_SYMBOL vmlinux 0xce7345aa netdev_next_lower_dev_rcu EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7dfe3c flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0xce7ede44 is_nd_dax EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce80ab1a dquot_drop -EXPORT_SYMBOL vmlinux 0xce98e18f ___pskb_trim +EXPORT_SYMBOL vmlinux 0xce81801e devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu -EXPORT_SYMBOL vmlinux 0xcea3838c netlink_set_err +EXPORT_SYMBOL vmlinux 0xcea54204 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xcea7a729 lock_rename EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceafebee dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xcecb8756 to_nd_btt +EXPORT_SYMBOL vmlinux 0xceccdaa3 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xced29c4b xfrm_dev_policy_flush -EXPORT_SYMBOL vmlinux 0xceeb399c pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0xceebdfbe __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf2215ad kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xcf1001f2 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xcf227ff6 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xcf25092a mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2a893b vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xcf2af657 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcf2beeae xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcf378efb sock_no_getname EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf4b15ce file_modified -EXPORT_SYMBOL vmlinux 0xcf4d6b98 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf5906b0 da903x_query_status -EXPORT_SYMBOL vmlinux 0xcf5f386a skb_seq_read -EXPORT_SYMBOL vmlinux 0xcf6a9789 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xcf8face8 get_inode_acl +EXPORT_SYMBOL vmlinux 0xcf5fe559 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xcf6231a8 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xcf70649b __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xcf838ea8 udp_read_skb +EXPORT_SYMBOL vmlinux 0xcf8799cc __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xcf963b28 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfa9ea42 param_get_short -EXPORT_SYMBOL vmlinux 0xcfb24178 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xcfc10683 pci_write_config_byte -EXPORT_SYMBOL vmlinux 0xcfc2dd4a dma_map_resource +EXPORT_SYMBOL vmlinux 0xcfc33136 textsearch_prepare EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfdda481 input_release_device -EXPORT_SYMBOL vmlinux 0xcfe7b3b9 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xcfe99735 phy_drivers_register -EXPORT_SYMBOL vmlinux 0xcff41b06 dquot_initialize -EXPORT_SYMBOL vmlinux 0xcff5e79c inode_get_bytes -EXPORT_SYMBOL vmlinux 0xd00eff67 kern_path_create -EXPORT_SYMBOL vmlinux 0xd0104d8e register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xcfda9f26 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xcfdecd8f md_update_sb +EXPORT_SYMBOL vmlinux 0xcfe01b5e kobject_init +EXPORT_SYMBOL vmlinux 0xcfeb429c _dev_err +EXPORT_SYMBOL vmlinux 0xd0189e16 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xd01edcd9 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xd027bf06 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd02e794d sg_miter_next +EXPORT_SYMBOL vmlinux 0xd0443435 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd048aa9a flow_rule_match_enc_keyid EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd057e56b jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xd05cad33 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0xd062cd33 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd0590670 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xd05e519b is_acpi_data_node EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06bcc0d phy_error -EXPORT_SYMBOL vmlinux 0xd06cc0f8 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xd06e7045 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xd066e225 vm_map_pages +EXPORT_SYMBOL vmlinux 0xd0683653 input_reset_device +EXPORT_SYMBOL vmlinux 0xd06fd62e folio_alloc EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0786283 skb_pull -EXPORT_SYMBOL vmlinux 0xd07dbafe dev_get_stats -EXPORT_SYMBOL vmlinux 0xd0800e07 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd080172a mfd_add_devices EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd099c692 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xd09561ce bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xd09ee849 regset_get_alloc +EXPORT_SYMBOL vmlinux 0xd0a78001 security_sock_rcv_skb EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0bb49f6 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xd0c2fa6a __pagevec_release -EXPORT_SYMBOL vmlinux 0xd0cd584f inode_insert5 -EXPORT_SYMBOL vmlinux 0xd0db06cf __SCK__tp_func_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xd0eb47af blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xd0c59c46 tcf_block_put +EXPORT_SYMBOL vmlinux 0xd0d48511 dquot_release EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk -EXPORT_SYMBOL vmlinux 0xd0f2a77c __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xd0f4aa51 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key -EXPORT_SYMBOL vmlinux 0xd11db1a9 devm_clk_put -EXPORT_SYMBOL vmlinux 0xd11ea346 vfs_readlink +EXPORT_SYMBOL vmlinux 0xd0ff87c2 md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd139e948 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0xd141d5f7 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xd15418d2 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xd1595e1e dump_skip_to -EXPORT_SYMBOL vmlinux 0xd159decc page_symlink -EXPORT_SYMBOL vmlinux 0xd17d8394 no_seek_end_llseek -EXPORT_SYMBOL vmlinux 0xd17dc23a neigh_seq_start -EXPORT_SYMBOL vmlinux 0xd1911b9e rtnl_create_link +EXPORT_SYMBOL vmlinux 0xd136aaee simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xd137d37b splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xd13b0025 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xd14fd05a tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd16671b6 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xd1775a7a io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xd186ac72 configfs_register_group +EXPORT_SYMBOL vmlinux 0xd18b9790 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xd194bb15 __xfrm_init_state EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1a20152 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0xd1ad9084 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0xd1b5230f blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xd1c3196c input_close_device -EXPORT_SYMBOL vmlinux 0xd1ce4da6 fb_blank +EXPORT_SYMBOL vmlinux 0xd19972e5 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xd199da0f dma_find_channel +EXPORT_SYMBOL vmlinux 0xd1a09dfe seq_read +EXPORT_SYMBOL vmlinux 0xd1ce1bf9 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xd1cf6e49 proc_create +EXPORT_SYMBOL vmlinux 0xd1d6e0b7 boot_cpu_data EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1dd64f9 devm_register_reboot_notifier -EXPORT_SYMBOL vmlinux 0xd1e11161 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0xd1e6864a filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xd1ee01a3 follow_down_one +EXPORT_SYMBOL vmlinux 0xd1f093e3 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xd1f3bd78 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd200b659 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xd219541d seq_release +EXPORT_SYMBOL vmlinux 0xd21a9817 iunique +EXPORT_SYMBOL vmlinux 0xd21ae0c7 genphy_write_mmd_unsupported EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd22a438b devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xd224fb9b fs_bio_set +EXPORT_SYMBOL vmlinux 0xd22b64f0 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked -EXPORT_SYMBOL vmlinux 0xd24dc4c7 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2634eb7 irq_set_chip -EXPORT_SYMBOL vmlinux 0xd2640918 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xd25ed994 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xd2646a7c dma_fence_describe EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd2902ed1 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0xd2a0524e __put_user_ns -EXPORT_SYMBOL vmlinux 0xd2ac994d inet_put_port +EXPORT_SYMBOL vmlinux 0xd282b6bd flush_signals +EXPORT_SYMBOL vmlinux 0xd2878f82 would_dump +EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 -EXPORT_SYMBOL vmlinux 0xd2bff4da dst_dev_put -EXPORT_SYMBOL vmlinux 0xd2c2ebe4 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xd2d163c2 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0xd2e1ee5a simple_unlink EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2ed167c tty_port_close_end -EXPORT_SYMBOL vmlinux 0xd306b58d pci_release_resource -EXPORT_SYMBOL vmlinux 0xd31eafb6 gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0xd32adefd lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xd2f7b946 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xd31a8675 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xd32f5af7 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xd3338399 vfs_symlink EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xd347bd5f phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd33dd121 bio_add_page +EXPORT_SYMBOL vmlinux 0xd352e7a6 fifo_set_limit EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd3675187 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xd367a6af skb_dequeue EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd376a8f0 pci_write_config_word -EXPORT_SYMBOL vmlinux 0xd377236f padata_free_shell -EXPORT_SYMBOL vmlinux 0xd3777558 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xd383db43 mdiobus_free EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask -EXPORT_SYMBOL vmlinux 0xd38dc035 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xd38e102c fget EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd396fee1 udp_ioctl -EXPORT_SYMBOL vmlinux 0xd3ac34c7 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xd3b092d3 __cgroup_bpf_run_filter_sock_addr -EXPORT_SYMBOL vmlinux 0xd3ce844c d_alloc_name -EXPORT_SYMBOL vmlinux 0xd3d92f18 request_key_rcu -EXPORT_SYMBOL vmlinux 0xd3db0512 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xd3f51ed3 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xd3bb402a inet_ioctl +EXPORT_SYMBOL vmlinux 0xd3e389df pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xd3f74fb1 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xd3fa642a filp_open EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd420a67e tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xd445a9fb flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0xd4594460 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xd41a9009 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xd426ec80 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xd42aab22 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xd4424c71 pcpu_hot +EXPORT_SYMBOL vmlinux 0xd4429055 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xd446249a vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xd4596078 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd45e0494 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xd46a06f6 convert_art_ns_to_tsc -EXPORT_SYMBOL vmlinux 0xd46b8a9d register_netdev -EXPORT_SYMBOL vmlinux 0xd46eb050 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xd4789b8f sock_kfree_s +EXPORT_SYMBOL vmlinux 0xd4633cce phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xd4755281 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xd479f5d4 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xd47b33e9 mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0xd4820e34 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48a6563 vfs_statfs +EXPORT_SYMBOL vmlinux 0xd48a9f15 softnet_data +EXPORT_SYMBOL vmlinux 0xd4aabd95 bio_add_folio +EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0xd4b5c763 __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cfa5ce invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4e48ab2 __check_sticky -EXPORT_SYMBOL vmlinux 0xd51aa7e9 cdev_del -EXPORT_SYMBOL vmlinux 0xd51ac79d fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0xd51d3eb6 netif_device_attach -EXPORT_SYMBOL vmlinux 0xd51ee005 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xd4ec7d63 eisa_driver_register +EXPORT_SYMBOL vmlinux 0xd4f1ec41 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xd5260d98 zpool_register_driver EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52de008 udp_gro_complete -EXPORT_SYMBOL vmlinux 0xd52f4cc9 phy_support_sym_pause EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd535f95d clk_bulk_get -EXPORT_SYMBOL vmlinux 0xd54c4bc4 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0xd55b07ea inode_set_flags -EXPORT_SYMBOL vmlinux 0xd55be080 pci_dev_driver -EXPORT_SYMBOL vmlinux 0xd567bef1 tty_kref_put -EXPORT_SYMBOL vmlinux 0xd594e8f7 to_nd_dax -EXPORT_SYMBOL vmlinux 0xd5a0dc9d t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xd5a40869 param_ops_string -EXPORT_SYMBOL vmlinux 0xd5a579c6 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xd543e0d5 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xd574857e devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xd59c919b drop_super_exclusive EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5cc9119 rtnl_notify -EXPORT_SYMBOL vmlinux 0xd5da51f5 bioset_exit -EXPORT_SYMBOL vmlinux 0xd5eb95f1 netpoll_setup +EXPORT_SYMBOL vmlinux 0xd5c2c748 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xd5cdd5c7 devm_pci_remap_iospace EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait -EXPORT_SYMBOL vmlinux 0xd601179f dqget EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd6077fb2 agp_generic_alloc_page -EXPORT_SYMBOL vmlinux 0xd61a3123 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xd61bccac d_move +EXPORT_SYMBOL vmlinux 0xd6098193 vga_client_register +EXPORT_SYMBOL vmlinux 0xd6150dd0 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xd61a01ba stop_tty EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd64b43bb dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0xd66014fe d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xd64abff0 block_write_begin +EXPORT_SYMBOL vmlinux 0xd658a679 proc_symlink +EXPORT_SYMBOL vmlinux 0xd65ca7c8 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd676d650 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xd67c9667 io_uring_destruct_scm +EXPORT_SYMBOL vmlinux 0xd67ede66 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xd6824076 uart_update_timeout EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd698fea0 pcpu_hot -EXPORT_SYMBOL vmlinux 0xd69d5de7 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xd68ebb9a dcache_dir_open +EXPORT_SYMBOL vmlinux 0xd6941457 netdev_set_sb_channel EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6cc6b92 md_cluster_ops -EXPORT_SYMBOL vmlinux 0xd6d307e3 __scm_destroy -EXPORT_SYMBOL vmlinux 0xd6da43c2 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xd6ccf1ef mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xd6da969f open_exec EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash -EXPORT_SYMBOL vmlinux 0xd6eb3f21 vc_cons EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6fca40e wireless_send_event +EXPORT_SYMBOL vmlinux 0xd6f5dfef set_pages_array_wb EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7002fd1 serio_bus +EXPORT_SYMBOL vmlinux 0xd709a787 tty_port_raise_dtr_rts EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd71dd279 __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0xd7292349 iget5_locked +EXPORT_SYMBOL vmlinux 0xd712f907 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xd7198317 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xd7259680 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xd7356c1c ns_capable_setid EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd7439276 dma_unmap_resource EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7487702 __do_once_sleepable_done -EXPORT_SYMBOL vmlinux 0xd752dc53 sock_edemux -EXPORT_SYMBOL vmlinux 0xd75e2789 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xd7694209 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xd76cc8b7 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd76d99d9 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xd77cd76d __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd77f03d8 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xd7813409 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7bbeb54 phy_resume -EXPORT_SYMBOL vmlinux 0xd7ca15e7 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xd7cbc758 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xd79d736b dm_io +EXPORT_SYMBOL vmlinux 0xd7c2ecbb netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xd7c3f15e inet_addr_type EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d51733 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0xd7decc9c scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0xd7e4eb5e vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xd7e1b6cd page_pool_unlink_napi EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e86d25 __alloc_skb +EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd80f1ad3 sk_mc_loop -EXPORT_SYMBOL vmlinux 0xd8289618 thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0xd82f9dd1 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xd7fed3a9 __devm_request_region +EXPORT_SYMBOL vmlinux 0xd80194fc scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd80c35f2 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xd81907cd dst_init +EXPORT_SYMBOL vmlinux 0xd820e7dd param_get_byte EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xd8406268 security_inet_conn_request EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0xd8510c42 phy_init_hw -EXPORT_SYMBOL vmlinux 0xd85f51b3 module_refcount -EXPORT_SYMBOL vmlinux 0xd862a4f1 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xd84d4b61 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xd85042d8 ethtool_aggregate_mac_stats +EXPORT_SYMBOL vmlinux 0xd85622ec param_set_byte +EXPORT_SYMBOL vmlinux 0xd85ddcb7 vme_unregister_bridge EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8c02984 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0xd8d891d6 key_link +EXPORT_SYMBOL vmlinux 0xd8c06fd7 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xd8c0bc33 __kfree_skb EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8eb4cfe mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xd8efa189 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xd8f7d923 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xd8fda019 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xd90ad745 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xd8f7878c udp_seq_stop +EXPORT_SYMBOL vmlinux 0xd900a814 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd921afc2 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xd922e3dd netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xd924a4a7 inet_listen EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9324172 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xd932ed7b xp_dma_sync_for_device_slow EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc -EXPORT_SYMBOL vmlinux 0xd93ee62e ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xd936b199 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd9526a13 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0xd96dc9db pci_enable_wake +EXPORT_SYMBOL vmlinux 0xd951153f mmc_register_driver EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu -EXPORT_SYMBOL vmlinux 0xd974f853 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xd97454d6 cdrom_mode_select EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd993de59 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0xd9a47822 param_get_bool EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9ac08b6 ip6tun_encaps EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9bed5a5 configfs_unregister_group EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9e0b87e put_fs_context -EXPORT_SYMBOL vmlinux 0xd9e32bb3 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xd9e700ec seq_bprintf -EXPORT_SYMBOL vmlinux 0xd9f5cab6 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0xd9f98b90 vga_switcheroo_register_audio_client -EXPORT_SYMBOL vmlinux 0xd9fcd004 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xda13e2fb devfreq_add_governor EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs -EXPORT_SYMBOL vmlinux 0xda2ded02 ppp_register_channel -EXPORT_SYMBOL vmlinux 0xda306171 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0xda3c9b46 load_nls_default EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda446a47 unlock_new_inode -EXPORT_SYMBOL vmlinux 0xda55d4fc page_pool_destroy -EXPORT_SYMBOL vmlinux 0xda5df9d5 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xda6988e2 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0xda6df324 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xda6ed400 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xda7e855d blk_get_queue -EXPORT_SYMBOL vmlinux 0xda8bae3b register_shrinker -EXPORT_SYMBOL vmlinux 0xda99bc63 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0xdac07931 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xda4ca25e lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xda653389 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xda791b82 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xda7b9e47 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xda7deef1 ram_aops +EXPORT_SYMBOL vmlinux 0xda8f80e2 to_nd_dax +EXPORT_SYMBOL vmlinux 0xdaa300f5 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xdaabd1e7 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xdab8880a filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac9ffcb ethtool_notify EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdaeb3197 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xdaf49b12 qdisc_put -EXPORT_SYMBOL vmlinux 0xdb0eea67 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xdaef9a6a scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xdb015290 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xdb02fd83 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0xdb269554 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xdb28709f mfd_cell_enable -EXPORT_SYMBOL vmlinux 0xdb2e06a5 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xdb1edee6 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0xdb378f42 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xdb5a520d ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xdb5ce53c __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xdb6418ff dma_ops EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb77dc84 backlight_device_register -EXPORT_SYMBOL vmlinux 0xdb92e137 param_ops_byte +EXPORT_SYMBOL vmlinux 0xdb7740b5 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size -EXPORT_SYMBOL vmlinux 0xdb963ab4 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xdb975892 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xdba32f22 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xdbb1347e dma_sync_wait +EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbc8f0c8 proc_remove EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0xdbdafcd3 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xdbd992cc rproc_add EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe5a1fe fifo_set_limit -EXPORT_SYMBOL vmlinux 0xdbe99c5b ptp_clock_index -EXPORT_SYMBOL vmlinux 0xdbed94e6 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xdc02dc24 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xdbe6d752 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xdbfae85f put_ipc_ns +EXPORT_SYMBOL vmlinux 0xdbfc7866 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xdbfdb4f4 param_get_uint EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc0ec08c __x86_indirect_jump_thunk_r12 EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc1c270a pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0xdc397169 filemap_get_folios -EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge -EXPORT_SYMBOL vmlinux 0xdc43d485 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xdc16cd37 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xdc27a84a register_netdev EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4db454 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc55bc75 da903x_query_status +EXPORT_SYMBOL vmlinux 0xdc55ca39 qdisc_put EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0xdc67b5c3 flow_block_cb_setup_simple -EXPORT_SYMBOL vmlinux 0xdc7f20e5 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0xdca46d67 folio_migrate_copy -EXPORT_SYMBOL vmlinux 0xdcae9b08 dup_iter -EXPORT_SYMBOL vmlinux 0xdcb1c43a pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xdcb69e92 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xdc5d3d6e __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xdc61ed20 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xdc913217 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xdc94f17f ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xdca140f5 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xdca3696a dump_align +EXPORT_SYMBOL vmlinux 0xdca3e204 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xdcb61086 setattr_copy +EXPORT_SYMBOL vmlinux 0xdcb86bfe netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcc6b4a3 simple_lookup +EXPORT_SYMBOL vmlinux 0xdcc1b154 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xdcc98973 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xdcdb774d netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdce0cb54 __folio_lock -EXPORT_SYMBOL vmlinux 0xdceeb5c8 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0xdcef1af9 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0xdcf17619 brioctl_set -EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdcdc8f18 netdev_notice +EXPORT_SYMBOL vmlinux 0xdcdd25a9 register_shrinker +EXPORT_SYMBOL vmlinux 0xdce073e0 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xdcedcff7 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd1c3995 inet_csk_delete_keepalive_timer EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd329afc kmem_cache_create +EXPORT_SYMBOL vmlinux 0xdd2ceab1 sync_filesystem +EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd751c05 find_inode_rcu -EXPORT_SYMBOL vmlinux 0xdd75d95e unpin_user_pages -EXPORT_SYMBOL vmlinux 0xdd77d382 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xdd785af4 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd66ac95 dev_add_pack +EXPORT_SYMBOL vmlinux 0xdd748ee1 __nlmsg_put EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd8e2511 inet_frags_fini -EXPORT_SYMBOL vmlinux 0xdd8e95dc arp_xmit -EXPORT_SYMBOL vmlinux 0xdda3d387 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0xddaa2156 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddb8f23a pci_request_regions -EXPORT_SYMBOL vmlinux 0xddba59f3 vlan_vid_del -EXPORT_SYMBOL vmlinux 0xddc06824 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xddaee15b sock_from_file +EXPORT_SYMBOL vmlinux 0xddc0006b qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xddcb09c3 submit_bio_noacct EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit -EXPORT_SYMBOL vmlinux 0xddcf0b13 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0xddee1a3f dcache_readdir +EXPORT_SYMBOL vmlinux 0xddd3a887 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xdddba8c1 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xdddda5e7 flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddf8d5d8 tty_devnum EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2b8fa0 input_setup_polling -EXPORT_SYMBOL vmlinux 0xde33bd35 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0xde411b4c generic_write_checks -EXPORT_SYMBOL vmlinux 0xde452a36 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0xde4774e2 from_kuid_munged -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde2bc3cf ilookup +EXPORT_SYMBOL vmlinux 0xde2e1e2b free_buffer_head +EXPORT_SYMBOL vmlinux 0xde41a151 agp_generic_alloc_user EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde56af72 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0xde7c90c7 current_time +EXPORT_SYMBOL vmlinux 0xde501c1a ptp_find_pin +EXPORT_SYMBOL vmlinux 0xde5b935f key_put +EXPORT_SYMBOL vmlinux 0xde69f3d5 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap -EXPORT_SYMBOL vmlinux 0xde884dd5 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xde8f6134 inet6_offloads -EXPORT_SYMBOL vmlinux 0xde92afea set_user_nice +EXPORT_SYMBOL vmlinux 0xde8e5d57 dev_open EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9c730f __nla_reserve +EXPORT_SYMBOL vmlinux 0xdea79498 fasync_helper +EXPORT_SYMBOL vmlinux 0xdea93f8a vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xdeb99119 dma_fence_init +EXPORT_SYMBOL vmlinux 0xdec1c14b get_thermal_instance +EXPORT_SYMBOL vmlinux 0xdec5d016 agp_generic_free_by_type EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdee4ac01 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xdee9f62c pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xdef72ad7 seg6_hmac_net_exit EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xdf156a30 vfs_fsync -EXPORT_SYMBOL vmlinux 0xdf16284a max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xdf17bea4 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0xdf1da04c cont_write_begin -EXPORT_SYMBOL vmlinux 0xdf20ac83 input_unregister_handle -EXPORT_SYMBOL vmlinux 0xdf22c5fb ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xdf22fc7e pm8606_osc_enable EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2a417d blk_dump_rq_flags EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3bbc13 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xdf3c21c1 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xdf40f91a devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xdf48ce6b kernel_param_lock EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf888280 kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0xdf8aa5c7 cdrom_open +EXPORT_SYMBOL vmlinux 0xdf5621fc vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xdf59b669 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xdf6b82de regset_get +EXPORT_SYMBOL vmlinux 0xdf823449 single_open_size +EXPORT_SYMBOL vmlinux 0xdf8734e6 kset_register +EXPORT_SYMBOL vmlinux 0xdf8bda7e __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xdf8c223c page_pool_put_page_bulk EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0xdf972327 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdfba5776 __bforget +EXPORT_SYMBOL vmlinux 0xdfa5f94d security_cred_getsecid EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream -EXPORT_SYMBOL vmlinux 0xdfc1e7d8 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xdfc3b9b9 pagecache_isize_extended EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfcf3ae6 inode_init_owner EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdff08887 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xdff2a772 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xdfdce324 cpu_info +EXPORT_SYMBOL vmlinux 0xdfe9eeb8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xdff1bd3d console_stop +EXPORT_SYMBOL vmlinux 0xdff8c22c jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffa0e12 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xdffce9cc sync_inode_metadata EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 -EXPORT_SYMBOL vmlinux 0xe02a9cce unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe0135649 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xe0233c88 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xe0239cb2 phy_register_fixup EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe02e3026 __insert_inode_hash EXPORT_SYMBOL vmlinux 0xe033cb29 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe03de887 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xe03a0c61 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xe03bad0c tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe057c15f blk_sync_queue -EXPORT_SYMBOL vmlinux 0xe067903b skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xe06ee8ba xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0xe07d5d5b cfb_copyarea +EXPORT_SYMBOL vmlinux 0xe0684b55 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xe074bbc0 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister EXPORT_SYMBOL vmlinux 0xe07ef363 intel_gmch_gtt_insert_sg_entries EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe083ccfc md_check_recovery -EXPORT_SYMBOL vmlinux 0xe0860ecc tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0xe08f2dcb secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0a25cd4 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xe0b0b9d0 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b86780 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xe0b9e3b9 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xe0ef4397 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xe0f59fef rproc_del -EXPORT_SYMBOL vmlinux 0xe0f5c33e inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xe1023779 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xe10daed3 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xe0c1b51c get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xe0cec8cc serio_close +EXPORT_SYMBOL vmlinux 0xe0e51234 inet_put_port +EXPORT_SYMBOL vmlinux 0xe0ed8d34 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe0eec9c0 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xe10d9d3b elv_rb_find +EXPORT_SYMBOL vmlinux 0xe1115774 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe118701c vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xe137d348 phy_attached_print EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13b9741 netif_schedule_queue EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe15951ca iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0xe15ac602 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xe16529f8 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xe17d8779 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0xe19536fe mmc_start_request -EXPORT_SYMBOL vmlinux 0xe1a6fc62 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xe1b7d294 may_setattr -EXPORT_SYMBOL vmlinux 0xe1bcb305 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xe17568e3 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0xe17cc903 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe19321ae pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xe193c6c3 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0xe19c5867 keyring_search +EXPORT_SYMBOL vmlinux 0xe1b56101 mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr -EXPORT_SYMBOL vmlinux 0xe1c52799 skb_condense -EXPORT_SYMBOL vmlinux 0xe1d202f9 netlink_ack -EXPORT_SYMBOL vmlinux 0xe1d38a8f ipv4_specific +EXPORT_SYMBOL vmlinux 0xe1c66b7c xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xe1d18007 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe1d4bbb7 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe2006135 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xe2105081 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xe1f611c5 netlink_ack +EXPORT_SYMBOL vmlinux 0xe2011818 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xe204a713 get_agp_version +EXPORT_SYMBOL vmlinux 0xe212e358 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xe21348ef d_add_ci EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe21f2db5 unlock_rename -EXPORT_SYMBOL vmlinux 0xe241cba7 mroute6_is_socket -EXPORT_SYMBOL vmlinux 0xe246a04d truncate_setsize -EXPORT_SYMBOL vmlinux 0xe250b8e3 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xe2549b97 scsi_target_resume -EXPORT_SYMBOL vmlinux 0xe2675e43 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0xe26d671d registered_fb -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe276c3de __sk_dst_check -EXPORT_SYMBOL vmlinux 0xe284c356 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xe28f480a seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xe22e06c2 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xe22e5d61 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xe250ea14 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe255c03f xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xe26da199 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe28a7332 page_mapping EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up -EXPORT_SYMBOL vmlinux 0xe29bbc14 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xe2bb2f25 devfreq_monitor_resume -EXPORT_SYMBOL vmlinux 0xe2bcbbcb dquot_get_state -EXPORT_SYMBOL vmlinux 0xe2bdd3ab mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xe2cd7ed2 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xe29997c8 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xe2bbfa56 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xe2bbfe46 serio_reconnect +EXPORT_SYMBOL vmlinux 0xe2c82691 eth_prepare_mac_addr_change EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2d892c5 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xe2da891d free_netdev +EXPORT_SYMBOL vmlinux 0xe2de6669 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr -EXPORT_SYMBOL vmlinux 0xe2f79853 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0xe2f7af00 page_mapping -EXPORT_SYMBOL vmlinux 0xe30d0d2d devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0xe3112885 can_nice +EXPORT_SYMBOL vmlinux 0xe2f71ace dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xe3132b85 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xe31b9301 intel_gmch_gtt_flush -EXPORT_SYMBOL vmlinux 0xe3246217 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0xe3274a39 tcp_connect +EXPORT_SYMBOL vmlinux 0xe3201260 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xe321211c md_flush_request EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe3557d4e dquot_operations -EXPORT_SYMBOL vmlinux 0xe37779ef mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xe394ce01 sock_create_lite -EXPORT_SYMBOL vmlinux 0xe3997dc8 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xe32c8fee flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xe330ad29 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xe33c6fd6 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe352b524 fb_show_logo +EXPORT_SYMBOL vmlinux 0xe37ac969 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xe3800636 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xe3847d87 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xe392bb00 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xe399191c neigh_table_clear EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3ab898e gro_cells_init EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3bc6068 open_with_fake_path -EXPORT_SYMBOL vmlinux 0xe3d3e458 vfs_statfs +EXPORT_SYMBOL vmlinux 0xe3c36f76 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xe3ccd913 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xe3d109ae skb_store_bits EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3df8319 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xe3e0d29b tcf_exts_validate EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3fb32c3 netdev_adjacent_change_abort -EXPORT_SYMBOL vmlinux 0xe3fe3774 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xe3ef11df rtc_add_groups +EXPORT_SYMBOL vmlinux 0xe3f417a8 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xe3f92a69 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xe3faf198 __put_user_ns EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe406b4f5 param_get_ushort EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0xe40b953d __dev_get_by_index EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe41284bb proto_register -EXPORT_SYMBOL vmlinux 0xe4145569 key_type_keyring -EXPORT_SYMBOL vmlinux 0xe4198fbf pci_alloc_irq_vectors +EXPORT_SYMBOL vmlinux 0xe40f5726 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xe4114519 phy_attached_info_irq EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be -EXPORT_SYMBOL vmlinux 0xe4202302 vmf_insert_pfn -EXPORT_SYMBOL vmlinux 0xe43234ac folio_wait_bit -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe43b469b agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xe420a84b devm_free_irq +EXPORT_SYMBOL vmlinux 0xe4214834 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe42cc336 find_vma +EXPORT_SYMBOL vmlinux 0xe447603b scsi_done +EXPORT_SYMBOL vmlinux 0xe44b3e14 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe461fecf devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe46fc77a xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0xe48902bf pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0xe4b2d6a5 inet_offloads +EXPORT_SYMBOL vmlinux 0xe470d02a dst_dev_put +EXPORT_SYMBOL vmlinux 0xe4856ad1 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xe49601af netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xe4a5e161 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xe4a96453 set_cached_acl EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4bd6ea3 mdio_driver_register -EXPORT_SYMBOL vmlinux 0xe4c486ed kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xe4ca4aa0 input_register_device EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe4ffb648 cpu_info -EXPORT_SYMBOL vmlinux 0xe50c82bf eth_gro_receive -EXPORT_SYMBOL vmlinux 0xe511edda generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xe51bafb4 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xe4df958c pci_write_config_word +EXPORT_SYMBOL vmlinux 0xe4e2fc81 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xe4e37157 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xe4ee031f rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xe511cf35 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xe517331b convert_art_ns_to_tsc EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe5460e43 security_task_getsecid_obj -EXPORT_SYMBOL vmlinux 0xe5531f5d jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0xe56943d0 kset_unregister +EXPORT_SYMBOL vmlinux 0xe5387337 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xe5443f45 filemap_get_folios_tag +EXPORT_SYMBOL vmlinux 0xe5557271 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xe5672892 filp_close +EXPORT_SYMBOL vmlinux 0xe5760269 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe58ce4d1 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a4a486 flow_rule_match_ip -EXPORT_SYMBOL vmlinux 0xe5b49373 xfrm_init_state -EXPORT_SYMBOL vmlinux 0xe5b5376e __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xe59634a3 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xe5991380 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xe5a22c55 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xe5a5ac67 inode_query_iversion +EXPORT_SYMBOL vmlinux 0xe5c16d62 page_pool_release_page EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e5573b ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xe5f372ff __d_lookup_unhash_wake -EXPORT_SYMBOL vmlinux 0xe60c5e33 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0xe60f6607 d_exact_alias -EXPORT_SYMBOL vmlinux 0xe61391a1 file_ns_capable -EXPORT_SYMBOL vmlinux 0xe614dc4d ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xe62a533c _copy_to_iter -EXPORT_SYMBOL vmlinux 0xe62ccb16 dev_disable_lro -EXPORT_SYMBOL vmlinux 0xe63140b2 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0xe63275b0 tcp_time_wait -EXPORT_SYMBOL vmlinux 0xe635ea5f is_subdir +EXPORT_SYMBOL vmlinux 0xe5c863eb tcp_init_sock +EXPORT_SYMBOL vmlinux 0xe5cee291 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xe5d12d4f unlock_page +EXPORT_SYMBOL vmlinux 0xe5d3368a bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xe5f70f88 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe600137a kobject_put +EXPORT_SYMBOL vmlinux 0xe613df67 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xe61b912a security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xe62d7a21 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xe64144ad pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xe64e418e ip_getsockopt EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe65d75e3 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xe669e7fa netdev_pick_tx -EXPORT_SYMBOL vmlinux 0xe67a4b5a tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xe6588284 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe65a96d0 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock -EXPORT_SYMBOL vmlinux 0xe6af19a3 iterate_dir -EXPORT_SYMBOL vmlinux 0xe6c716c1 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xe692e92c d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xe694bcb7 sk_dst_check +EXPORT_SYMBOL vmlinux 0xe69e0d76 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe6a08bf2 udp_prot +EXPORT_SYMBOL vmlinux 0xe6a217a6 devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xe6b5d648 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xe6b7ec8d devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6d852ed md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0xe6dfed7a fc_mount -EXPORT_SYMBOL vmlinux 0xe6e58f14 thaw_bdev -EXPORT_SYMBOL vmlinux 0xe6ea355d agp_backend_acquire -EXPORT_SYMBOL vmlinux 0xe6f9681f bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe6f3509d set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe71a1af4 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xe720f831 xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe726be27 ip6_xmit -EXPORT_SYMBOL vmlinux 0xe72b3df4 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0xe752e7e3 km_report -EXPORT_SYMBOL vmlinux 0xe76d58af xsk_tx_peek_desc -EXPORT_SYMBOL vmlinux 0xe77f9a09 udp_read_skb +EXPORT_SYMBOL vmlinux 0xe740b5dc __dquot_free_space +EXPORT_SYMBOL vmlinux 0xe7437e8b inet_protos +EXPORT_SYMBOL vmlinux 0xe7480f4c tcp_child_process +EXPORT_SYMBOL vmlinux 0xe752240c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xe7770e3d neigh_ifdown EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xe7878a41 folio_account_redirty -EXPORT_SYMBOL vmlinux 0xe795be9d insert_inode_locked EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a066dc mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xe7a08b57 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xe7aa2b06 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0xe7b45573 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0xe7c008fc flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0xe7cd2e08 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xe7b78488 param_set_bint EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds -EXPORT_SYMBOL vmlinux 0xe8071c50 finish_swait +EXPORT_SYMBOL vmlinux 0xe7d6351f dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xe7dbfa05 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xe7e1bf1b skb_split +EXPORT_SYMBOL vmlinux 0xe7e7d44d block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xe7e91ce2 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xe7faf5f3 kill_fasync +EXPORT_SYMBOL vmlinux 0xe80f6432 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xe8159646 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe8331122 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0xe8350076 genphy_check_and_restart_aneg -EXPORT_SYMBOL vmlinux 0xe83d3058 handle_edge_irq -EXPORT_SYMBOL vmlinux 0xe8573e93 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xe82bfa7d reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xe836dbae netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xe8493660 nla_append EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe862a261 inet_protos -EXPORT_SYMBOL vmlinux 0xe8829499 tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0xe8c2c051 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xe8c830f4 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe868fd8d vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xe86c375e inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xe89abcbe twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xe89fa417 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xe8a8dec2 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xe8b1242a pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe8b8ffa7 vfs_unlink EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8f2f829 dev_remove_pack -EXPORT_SYMBOL vmlinux 0xe8f5c2f3 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xe8d6b6fb genl_notify +EXPORT_SYMBOL vmlinux 0xe8f8740e sock_edemux +EXPORT_SYMBOL vmlinux 0xe8fb307d unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0xe8fdb111 dquot_destroy EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe90b3fe7 unregister_nls -EXPORT_SYMBOL vmlinux 0xe90edf83 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0xe91350ee napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xe90b88fa write_inode_now EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92a6ecc pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xe91dd82d xfrm_lookup +EXPORT_SYMBOL vmlinux 0xe92b14eb param_set_short +EXPORT_SYMBOL vmlinux 0xe9390532 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xe93f4979 seq_open_private +EXPORT_SYMBOL vmlinux 0xe94354eb inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe94e9a88 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xe950e474 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe953eaaf devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xe964d7b8 dev_set_alias -EXPORT_SYMBOL vmlinux 0xe98e7132 i2c_verify_adapter -EXPORT_SYMBOL vmlinux 0xe9a59cfd iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0xe955a224 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xe95db836 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xe9702dd2 inode_init_always +EXPORT_SYMBOL vmlinux 0xe98e953a scsi_host_put +EXPORT_SYMBOL vmlinux 0xe99e3c9b udp_lib_rehash EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9aa62d7 pci_read_config_dword EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b1518e skb_put -EXPORT_SYMBOL vmlinux 0xe9b853e3 inc_nlink -EXPORT_SYMBOL vmlinux 0xe9cf74b6 seq_lseek EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f1a8a9 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xe9f334a4 sock_set_keepalive EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fd1382 phy_config_aneg EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea017b2c xp_dma_unmap -EXPORT_SYMBOL vmlinux 0xea01c245 dget_parent -EXPORT_SYMBOL vmlinux 0xea0ac542 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xea1f29ce cdev_alloc -EXPORT_SYMBOL vmlinux 0xea293a00 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0xea339c4f serio_close +EXPORT_SYMBOL vmlinux 0xea03b0a6 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0xea0bf59a noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xea3a23cc pci_read_vpd_any EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea60a723 bmap -EXPORT_SYMBOL vmlinux 0xea635591 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xea3d65d2 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xea49a0f0 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xea5c635a sock_set_priority +EXPORT_SYMBOL vmlinux 0xea61e97f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xea65148e __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xea6e4cdd skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea9611ad vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0xeaa8907a rproc_shutdown +EXPORT_SYMBOL vmlinux 0xea72ea05 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options +EXPORT_SYMBOL vmlinux 0xea8609ea ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xea8a1d1c rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xeaa17221 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xeab1735a get_vm_area EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac506c0 udplite_prot -EXPORT_SYMBOL vmlinux 0xeac81dc3 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xeadf2f0d vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xeabe7b4b sock_i_uid EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeae4f8ce netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xeae5c413 __netif_rx -EXPORT_SYMBOL vmlinux 0xeaef9127 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb020632 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xeb027bb3 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xeb0212ac finish_no_open EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb24b5ac inode_dio_wait EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb410476 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xeb3830e3 __fs_parse +EXPORT_SYMBOL vmlinux 0xeb3b0062 register_cdrom EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb4c0ffd bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0xeb590f51 generic_file_mmap -EXPORT_SYMBOL vmlinux 0xeb6bbafb mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xeb537e3e kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xeb571869 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xeb6f9c0b pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xeb704d2a generic_write_checks EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb872a0c pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xeb8842f4 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xeb860627 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xeb8c2aeb tcp_shutdown EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebab3263 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0xebb233ad input_unregister_handler -EXPORT_SYMBOL vmlinux 0xebb36c88 key_move -EXPORT_SYMBOL vmlinux 0xebb7d703 input_grab_device -EXPORT_SYMBOL vmlinux 0xebbe6ff0 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xebeafc90 dev_uc_init -EXPORT_SYMBOL vmlinux 0xebfee2aa phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xec0b5edf vfs_get_link -EXPORT_SYMBOL vmlinux 0xec182d20 md_reload_sb -EXPORT_SYMBOL vmlinux 0xec28320f mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xeba68af1 key_alloc +EXPORT_SYMBOL vmlinux 0xebbdc413 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xebcfe456 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xebe3ea0b phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xec0202f0 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xec155e25 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xec25aa4e request_key_rcu EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0xec403f29 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xec2c60e0 new_inode +EXPORT_SYMBOL vmlinux 0xec47364a pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4fc615 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0xec566524 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0xec5da511 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xec64049d fput -EXPORT_SYMBOL vmlinux 0xec78cc1c blk_rq_init -EXPORT_SYMBOL vmlinux 0xec790dd4 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xec531c28 tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0xec550656 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xec5ed186 netdev_get_by_name +EXPORT_SYMBOL vmlinux 0xec71e66f filemap_release_folio +EXPORT_SYMBOL vmlinux 0xec78c05a dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xec918a03 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xec9cd48d md_write_inc +EXPORT_SYMBOL vmlinux 0xeca918c3 ppp_register_channel EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy -EXPORT_SYMBOL vmlinux 0xecb5c823 d_obtain_alias -EXPORT_SYMBOL vmlinux 0xecbede2d block_write_end +EXPORT_SYMBOL vmlinux 0xecad9118 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xecaf1a72 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xecc05de5 __getblk_gfp EXPORT_SYMBOL vmlinux 0xecc7c868 __x86_indirect_jump_thunk_r9 -EXPORT_SYMBOL vmlinux 0xeccc3252 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0xecd31811 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xecd87d67 set_capacity -EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0xece0b592 nd_device_unregister -EXPORT_SYMBOL vmlinux 0xece0cfe3 udp6_set_csum EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xece951b2 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed028690 seq_hex_dump -EXPORT_SYMBOL vmlinux 0xed2bef4b jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0xed3318ae tcf_action_exec +EXPORT_SYMBOL vmlinux 0xed130698 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xed1f5a1a set_anon_super_fc EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set -EXPORT_SYMBOL vmlinux 0xed43ea6d input_copy_abs -EXPORT_SYMBOL vmlinux 0xed4967ee xen_free_ballooned_pages -EXPORT_SYMBOL vmlinux 0xed4ce6f9 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed6303d0 netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed755087 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xed7d7df0 cdev_set_parent -EXPORT_SYMBOL vmlinux 0xed9633f5 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xed7624e5 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xed779c37 phy_connect +EXPORT_SYMBOL vmlinux 0xed963202 netif_tx_lock +EXPORT_SYMBOL vmlinux 0xeda041d4 get_inode_acl +EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xedb368be __serio_register_port EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc824db pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0xedc8b799 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0xedcd33a2 genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0xedd0fdea blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xedc818c3 tty_port_put +EXPORT_SYMBOL vmlinux 0xedc90db5 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xeddd2a48 security_path_rename -EXPORT_SYMBOL vmlinux 0xede1af1d tcf_register_action -EXPORT_SYMBOL vmlinux 0xedeae989 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xee07db76 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0xee181ab4 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xee0bbb38 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xee1afa99 simple_get_link +EXPORT_SYMBOL vmlinux 0xee1e33ff udp_gro_complete +EXPORT_SYMBOL vmlinux 0xee236821 fb_blank EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee2efcbc cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0xee31691c blk_queue_io_min EXPORT_SYMBOL vmlinux 0xee38a20e __x86_indirect_jump_thunk_r10 -EXPORT_SYMBOL vmlinux 0xee3fce24 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0xee51e450 sk_capable -EXPORT_SYMBOL vmlinux 0xee569cea dentry_create +EXPORT_SYMBOL vmlinux 0xee47909f bio_uninit +EXPORT_SYMBOL vmlinux 0xee48afbf pci_resize_resource +EXPORT_SYMBOL vmlinux 0xee5318f8 phy_detach EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee75947a __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0xee7be226 follow_down_one +EXPORT_SYMBOL vmlinux 0xee67ca34 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee86993e xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xee872228 tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8c9f77 napi_enable EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee92f5a6 pnp_device_attach -EXPORT_SYMBOL vmlinux 0xee988cc2 vga_get -EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state -EXPORT_SYMBOL vmlinux 0xee9c16c7 param_ops_int -EXPORT_SYMBOL vmlinux 0xee9f8e53 neigh_destroy -EXPORT_SYMBOL vmlinux 0xeea526e9 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xee9270d1 devfreq_update_status EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeac6450 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0xeec3f4a6 posix_lock_file -EXPORT_SYMBOL vmlinux 0xeed95ab5 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xeedee7e9 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0xeee94039 put_watch_queue -EXPORT_SYMBOL vmlinux 0xeefd1b02 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0xef172992 vfs_llseek -EXPORT_SYMBOL vmlinux 0xef19f594 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xef2dd645 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xeeb4ed61 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xeee05fcb sys_copyarea +EXPORT_SYMBOL vmlinux 0xeee2b320 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xef1c00ae unix_get_socket +EXPORT_SYMBOL vmlinux 0xef1c6e4f bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xef20cdbe seg6_push_hmac EXPORT_SYMBOL vmlinux 0xef36a848 __x86_indirect_jump_thunk_rdi -EXPORT_SYMBOL vmlinux 0xef469e7e sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0xef50a09e dquot_free_inode -EXPORT_SYMBOL vmlinux 0xef5a3d08 pci_find_bus -EXPORT_SYMBOL vmlinux 0xef74fed0 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0xef7d91e3 tcf_block_put -EXPORT_SYMBOL vmlinux 0xef8735b6 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xef394702 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xef4d7a61 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xef711dbd ip_frag_next +EXPORT_SYMBOL vmlinux 0xef7b82d5 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xef857387 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xef966530 param_ops_short +EXPORT_SYMBOL vmlinux 0xef9a7a5f acpi_dev_get_next_match_dev EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override -EXPORT_SYMBOL vmlinux 0xef9e40a1 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xefa2b298 dma_pool_create EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefca6784 kthread_stop +EXPORT_SYMBOL vmlinux 0xefb618c1 dump_page +EXPORT_SYMBOL vmlinux 0xefbdf42d blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xefc2f1bd __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xefca0240 generic_key_instantiate EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd3d14c follow_up +EXPORT_SYMBOL vmlinux 0xefdac69b udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xefde7463 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xefe18d57 inet_addr_type_table EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full -EXPORT_SYMBOL vmlinux 0xeffa1559 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xefef5dd5 neigh_resolve_output EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf0045f03 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0xf00e2c6a mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0xf013eee4 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf0031dd7 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xf02aa7a5 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf033dbb3 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xf0485d9b vm_insert_page +EXPORT_SYMBOL vmlinux 0xf039adfa generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf041539f tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf04aa35f set_binfmt +EXPORT_SYMBOL vmlinux 0xf056445d pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf06ce094 d_path -EXPORT_SYMBOL vmlinux 0xf0729a37 dquot_get_next_id -EXPORT_SYMBOL vmlinux 0xf0739eea mount_nodev +EXPORT_SYMBOL vmlinux 0xf06209a1 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0xf0874748 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0xf08d900c alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf0910ebc nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0b1cf1c ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xf0bcfebb jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xf0bff04b pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0xf0c2b475 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0xf0c34e97 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xf0c3d63b udp6_csum_init -EXPORT_SYMBOL vmlinux 0xf0cfb726 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0xf0e52e56 clear_user_original -EXPORT_SYMBOL vmlinux 0xf0eb3965 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xf0abdbb3 vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0xf0b5c3b1 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xf0b82aea __inet_hash +EXPORT_SYMBOL vmlinux 0xf0b9a4b9 commit_creds +EXPORT_SYMBOL vmlinux 0xf0bed729 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf0cfb397 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xf0d68171 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xf0de3f47 dcb_getapp +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf10004a6 update_devfreq +EXPORT_SYMBOL vmlinux 0xf10247fb pci_match_id +EXPORT_SYMBOL vmlinux 0xf109d727 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf162c508 param_set_hexint -EXPORT_SYMBOL vmlinux 0xf168f742 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xf172b664 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xf1295d80 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xf12aacdb __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf12d54ec mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xf14cd487 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xf177cfc6 genphy_c45_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0xf186a58f bdi_alloc -EXPORT_SYMBOL vmlinux 0xf1877266 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xf18d3482 bio_put EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf1ae4ea9 neigh_parms_release -EXPORT_SYMBOL vmlinux 0xf1c0c1d6 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf1a9ef3d __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xf1bc4f54 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xf1d15474 keyring_alloc EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dc43f9 udp_disconnect EXPORT_SYMBOL vmlinux 0xf1e046cc panic EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun -EXPORT_SYMBOL vmlinux 0xf1f162d5 neigh_table_init +EXPORT_SYMBOL vmlinux 0xf1f153dc ppp_dev_name EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf2207f86 phy_read_paged +EXPORT_SYMBOL vmlinux 0xf2195ae3 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xf2357ebe set_page_dirty +EXPORT_SYMBOL vmlinux 0xf2394d0b blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf259c4b6 disk_stack_limits -EXPORT_SYMBOL vmlinux 0xf26016f0 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xf26165ab __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xf257e42f _copy_to_iter EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx -EXPORT_SYMBOL vmlinux 0xf263d46e proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xf27223e6 napi_consume_skb -EXPORT_SYMBOL vmlinux 0xf274ad24 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xf27d969f __skb_get_hash EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0xf2b2886d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xf2aca98d pci_pme_capable +EXPORT_SYMBOL vmlinux 0xf2b1720d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xf2b67a40 find_inode_rcu EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xf2c33d72 iunique +EXPORT_SYMBOL vmlinux 0xf2bdbf71 blk_get_queue +EXPORT_SYMBOL vmlinux 0xf2be37cc __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2db3b57 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xf2c507da d_splice_alias +EXPORT_SYMBOL vmlinux 0xf2d3424c neigh_lookup +EXPORT_SYMBOL vmlinux 0xf2d89efa stream_open EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2e9c057 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xf2ea0789 sock_bind_add EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fedd97 mdio_driver_register EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf31e0e84 generic_write_end -EXPORT_SYMBOL vmlinux 0xf324bbd4 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xf32a6e80 xp_free -EXPORT_SYMBOL vmlinux 0xf3354270 mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0xf33ba540 phy_start_cable_test_tdr -EXPORT_SYMBOL vmlinux 0xf33c26f4 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xf3169391 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf351ef18 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xf35282b0 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xf34757a6 mipi_dsi_dcs_set_pixel_format EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf35f97aa i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf356a864 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xf3611cb8 __mod_node_page_state EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange +EXPORT_SYMBOL vmlinux 0xf3663037 skb_put +EXPORT_SYMBOL vmlinux 0xf36d3511 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf380f269 iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf397a3a3 fb_find_mode -EXPORT_SYMBOL vmlinux 0xf3a1419b blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xf39b7be2 genphy_resume +EXPORT_SYMBOL vmlinux 0xf39d8781 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3bb5e4a show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0xf3d03772 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xf3b91da9 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xf3c3cd3e ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3e27e30 nla_put -EXPORT_SYMBOL vmlinux 0xf3e8ab02 mpage_readahead -EXPORT_SYMBOL vmlinux 0xf3f67269 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xf40382a3 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0xf4066904 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xf4110582 ip_do_fragment -EXPORT_SYMBOL vmlinux 0xf423a576 mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0xf4300141 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xf432983b sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0xf4356417 tty_lock +EXPORT_SYMBOL vmlinux 0xf3e46856 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xf3e58196 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xf3f139bb sk_stream_error +EXPORT_SYMBOL vmlinux 0xf3fc1c60 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xf41d365e page_get_link +EXPORT_SYMBOL vmlinux 0xf4241d04 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xf437cd2c rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf43d3c55 simple_transaction_set -EXPORT_SYMBOL vmlinux 0xf4465d0e netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xf4478562 filemap_range_has_page EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44afd5f __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xf45ed69c __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf44d497a dma_pool_create +EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid +EXPORT_SYMBOL vmlinux 0xf46ca592 padata_set_cpumask EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf47bce88 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xf484a6cb skb_split -EXPORT_SYMBOL vmlinux 0xf48fccbb unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf4a46f28 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf47771e6 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xf4918719 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xf49b5090 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf4b58be3 pci_dev_put EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4bdef92 bioset_init -EXPORT_SYMBOL vmlinux 0xf4beb44a tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xf4cbe080 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xf4cf85dd xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e07bc9 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xf4ebbd46 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xf4ecc667 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xf4ed1dd5 fs_param_is_u64 EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5201901 param_ops_invbool -EXPORT_SYMBOL vmlinux 0xf537962e ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xf5146f4b pci_scan_root_bus EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf55d02ea uart_suspend_port -EXPORT_SYMBOL vmlinux 0xf56896f6 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0xf572f052 touchscreen_report_pos -EXPORT_SYMBOL vmlinux 0xf577e16e aperture_remove_conflicting_pci_devices -EXPORT_SYMBOL vmlinux 0xf57807e2 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xf5568691 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xf55ae5fa __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xf58a2213 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xf58e1cd7 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xf593d455 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xf59c7f9c pldmfw_op_pci_match_record EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc -EXPORT_SYMBOL vmlinux 0xf5a73079 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xf5b00aab boot_cpu_data -EXPORT_SYMBOL vmlinux 0xf5b5ae08 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xf5ba49ad dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf5a8dba5 kthread_stop +EXPORT_SYMBOL vmlinux 0xf5d21dad nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xf5d8528e dquot_transfer EXPORT_SYMBOL vmlinux 0xf5dcf929 __x86_indirect_jump_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf5e162ac tty_hangup +EXPORT_SYMBOL vmlinux 0xf5e67af4 mdiobus_c45_read_nested EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf603f7a8 skb_ensure_writable EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0xf60cecc0 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0xf60d0679 sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xf61ba36e cdrom_release -EXPORT_SYMBOL vmlinux 0xf61fe368 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0xf6330ed2 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xf63901ad phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xf625a340 dput +EXPORT_SYMBOL vmlinux 0xf6282bb9 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xf6380a4e __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf64c8957 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0xf6505240 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0xf65e6e88 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0xf65f1dbd __x86_indirect_jump_thunk_rsi -EXPORT_SYMBOL vmlinux 0xf66451df twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xf6615577 key_invalidate EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf66d712f send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xf681ee6d set_bh_page +EXPORT_SYMBOL vmlinux 0xf6701562 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xf67a3ee2 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6b56d74 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xf6c036c0 serio_interrupt -EXPORT_SYMBOL vmlinux 0xf6e83c14 dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xf6eb78b6 address_space_init_once +EXPORT_SYMBOL vmlinux 0xf6936608 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xf6a247a5 wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0xf6a6d07d pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf6b4680f pci_restore_state +EXPORT_SYMBOL vmlinux 0xf6bb7d0b dquot_file_open +EXPORT_SYMBOL vmlinux 0xf6c49935 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xf6d2074a __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f3c2c9 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xf6ebee55 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free -EXPORT_SYMBOL vmlinux 0xf6fabbec rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0xf6fc1b0a dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xf6fc8383 inode_to_bdi EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7091cc0 rproc_coredump_add_custom_segment -EXPORT_SYMBOL vmlinux 0xf70ea815 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xf71270d6 config_item_get -EXPORT_SYMBOL vmlinux 0xf715bd03 phy_config_aneg -EXPORT_SYMBOL vmlinux 0xf71e48a3 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf701b0ac _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xf703a1db input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xf709fbfd xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xf7136bb7 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xf71ba2ac param_set_long +EXPORT_SYMBOL vmlinux 0xf71cbfc8 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xf722c677 blk_integrity_register EXPORT_SYMBOL vmlinux 0xf723934f __x86_indirect_jump_thunk_r11 -EXPORT_SYMBOL vmlinux 0xf7264016 inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0xf7265a59 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0xf7336d1c blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0xf73487e5 key_invalidate EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73eab0a con_is_visible -EXPORT_SYMBOL vmlinux 0xf7584ac5 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0xf758f4f8 mq_change_real_num_tx -EXPORT_SYMBOL vmlinux 0xf792eb8c i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xf798722f tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xf75b0db6 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf77387ff __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xf773f99b devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf77512b4 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xf776fe3b __f_setown +EXPORT_SYMBOL vmlinux 0xf779f975 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xf783b549 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xf785e1bc xfrm4_rcv EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0xf7a4fbb7 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0xf7b7ade8 page_pool_release_page -EXPORT_SYMBOL vmlinux 0xf7b81c1c inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xf7b2786e pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xf7b28cbe sk_reset_timer +EXPORT_SYMBOL vmlinux 0xf7c825f2 mmc_get_card EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0xf7d46db4 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xf7d5c323 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xf7d947f8 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7e53787 rproc_free +EXPORT_SYMBOL vmlinux 0xf7e05d70 agp_create_memory +EXPORT_SYMBOL vmlinux 0xf7e2c6ae kill_litter_super +EXPORT_SYMBOL vmlinux 0xf7e967f2 skb_headers_offset_update EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7f5915a skb_clone_sk +EXPORT_SYMBOL vmlinux 0xf808d70b __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xf80be44e rdmsr_safe_on_cpu EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf81f8b9b netif_tx_lock -EXPORT_SYMBOL vmlinux 0xf8226e76 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xf81f05a7 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xf824f102 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xf82a7671 genphy_c45_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf847a4b6 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf83005b6 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xf8316d79 request_firmware +EXPORT_SYMBOL vmlinux 0xf83da714 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xf846cbc7 md_write_end EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable -EXPORT_SYMBOL vmlinux 0xf875333b qdisc_class_hash_grow -EXPORT_SYMBOL vmlinux 0xf886e257 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0xf89c640b unregister_netdev -EXPORT_SYMBOL vmlinux 0xf8ac21b3 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xf86e9f76 dget_parent +EXPORT_SYMBOL vmlinux 0xf87b519e mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xf885dd01 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xf88ecec4 kvmemdup +EXPORT_SYMBOL vmlinux 0xf8a862fc md_integrity_register +EXPORT_SYMBOL vmlinux 0xf8b3893c pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xf8b71365 kernel_read +EXPORT_SYMBOL vmlinux 0xf8bab4fb fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xf8c44b9c vme_dma_list_add EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8de9049 __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0xf8ea4906 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xf8d6e9f4 napi_complete_done +EXPORT_SYMBOL vmlinux 0xf8e7dfc7 _dev_warn EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8fab34a genl_notify +EXPORT_SYMBOL vmlinux 0xf904a60f input_release_device EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf91763de i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xf931db2b ip_setsockopt -EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0xf93bc6b9 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xf93f7441 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xf920a701 jbd2_journal_load EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf9574909 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xf95ee4a2 filemap_release_folio -EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf94536c2 proc_dointvec +EXPORT_SYMBOL vmlinux 0xf9463b35 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf9526201 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xf96c3233 xfrm_user_policy EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf972f6d2 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0xf986936d blk_execute_rq -EXPORT_SYMBOL vmlinux 0xf9997798 sync_file_create +EXPORT_SYMBOL vmlinux 0xf97e3623 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xf983f31c input_setup_polling +EXPORT_SYMBOL vmlinux 0xf9877b62 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xf98ebe98 crypto_sha256_update EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep -EXPORT_SYMBOL vmlinux 0xf9b1d8e7 xfrm6_rcv EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c1aa0d __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xf9c53ddf __insert_inode_hash EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9d2737a nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xf9d84167 security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xf9ebe5b8 vme_irq_request +EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9e07f75 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xf9ead8a9 sk_ioctl EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa0db868 nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0xfa12592f fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xfa0b22a4 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xfa17c1b4 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xfa1e2e93 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa40f737 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xfa485f76 mr_dump +EXPORT_SYMBOL vmlinux 0xfa4726cd __block_write_full_folio EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa4e40ce __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xfa575c43 single_open +EXPORT_SYMBOL vmlinux 0xfa4e3f16 fifo_create_dflt EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6383fd open_exec -EXPORT_SYMBOL vmlinux 0xfa6950d2 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0xfa7df5ea submit_bh +EXPORT_SYMBOL vmlinux 0xfa66288c i2c_verify_client +EXPORT_SYMBOL vmlinux 0xfa70407a pci_find_bus +EXPORT_SYMBOL vmlinux 0xfa7f5caf netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0xfa8e00c9 pcim_pin_device EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaafc35e tcp_mmap -EXPORT_SYMBOL vmlinux 0xfab878a7 sk_reset_timer -EXPORT_SYMBOL vmlinux 0xfac14cb3 sock_no_listen -EXPORT_SYMBOL vmlinux 0xfac6333a dev_mc_flush +EXPORT_SYMBOL vmlinux 0xfaacf5ff generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xfaadb081 dev_change_flags +EXPORT_SYMBOL vmlinux 0xfab72305 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xfab7d7a0 udp_disconnect +EXPORT_SYMBOL vmlinux 0xfabb9554 inet_register_protosw EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfac8955c poll_initwait -EXPORT_SYMBOL vmlinux 0xfacb67bd zero_fill_bio -EXPORT_SYMBOL vmlinux 0xfacb7926 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0xfad148ac node_data -EXPORT_SYMBOL vmlinux 0xfaddc633 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0xfadfc586 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0xfaf5ee56 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xfb05d7fd max8925_reg_read -EXPORT_SYMBOL vmlinux 0xfb06fc7f tcp_disconnect -EXPORT_SYMBOL vmlinux 0xfb0dfb0b register_fib_notifier -EXPORT_SYMBOL vmlinux 0xfb28b066 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xfacd2f03 proc_set_size +EXPORT_SYMBOL vmlinux 0xfadeee9d sync_file_create +EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xfaede017 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xfaeef5ab filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0xfb0c4c1d fddi_type_trans EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb377869 mdio_device_free EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb449994 softnet_data +EXPORT_SYMBOL vmlinux 0xfb4704a8 inode_maybe_inc_iversion EXPORT_SYMBOL vmlinux 0xfb578fc5 memset EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb899594 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xfb933140 generic_delete_inode -EXPORT_SYMBOL vmlinux 0xfb961aaa build_skb_around -EXPORT_SYMBOL vmlinux 0xfb9fe723 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xfb7c5fae gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xfb86647a md_unregister_thread +EXPORT_SYMBOL vmlinux 0xfb8d9b66 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xfb957ba3 folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbc12730 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xfbc4dbd9 tcp_rcv_established EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbca8da1 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xfbd24166 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xfbd3307f ns_capable EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfc024aec tcf_block_get -EXPORT_SYMBOL vmlinux 0xfc11459c trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xfc1af922 skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xfc1cb964 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xfbfdb4f1 folio_mapping +EXPORT_SYMBOL vmlinux 0xfc03267d tty_register_device +EXPORT_SYMBOL vmlinux 0xfc0fd966 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xfc166002 input_register_handler +EXPORT_SYMBOL vmlinux 0xfc18a527 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xfc1bc93c vfs_mkobj +EXPORT_SYMBOL vmlinux 0xfc1f562d xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xfc220090 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xfc280f7d has_capability EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc33e36f skb_trim EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc39fb67 rt6_lookup EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc51143d agp_generic_enable -EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xfc7c21d1 __SCK__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0xfc8211a7 generic_fillattr -EXPORT_SYMBOL vmlinux 0xfca177d1 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xfc618856 dev_get_flags +EXPORT_SYMBOL vmlinux 0xfc6bfc8b sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xfc6eb907 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xfc7025b2 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xfc80d230 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xfc92b2d9 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xfcb65901 input_unregister_device +EXPORT_SYMBOL vmlinux 0xfccc3934 pci_enable_link_state +EXPORT_SYMBOL vmlinux 0xfcd0986c pci_request_selected_regions EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd5ee2d sock_i_ino -EXPORT_SYMBOL vmlinux 0xfcdab212 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xfcdbd343 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcfbfbe6 ping_prot -EXPORT_SYMBOL vmlinux 0xfd028779 tty_port_close_start -EXPORT_SYMBOL vmlinux 0xfd08976e mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0xfd285e13 tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0xfd2fb92a tcp_seq_stop -EXPORT_SYMBOL vmlinux 0xfd380982 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0xfd3bb8d3 vme_bus_num -EXPORT_SYMBOL vmlinux 0xfd692ca0 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0xfd846c26 vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xfd8c88b3 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xfd8c8e53 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xfcfada86 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xfd259faa kernel_tmpfile_open +EXPORT_SYMBOL vmlinux 0xfd60fe59 agp_copy_info +EXPORT_SYMBOL vmlinux 0xfd648920 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xfd6fe174 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xfd870caa __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xfd8d1743 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xfd8d1794 __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfda0ad9b cdev_set_parent +EXPORT_SYMBOL vmlinux 0xfda67c94 __tracepoint_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xfda9a3f1 intel_gmch_enable_gtt -EXPORT_SYMBOL vmlinux 0xfdaf81fc __mdiobus_write +EXPORT_SYMBOL vmlinux 0xfdb4682c i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdd26389 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xfdd31a27 genphy_setup_forced EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource -EXPORT_SYMBOL vmlinux 0xfde03c40 dns_query +EXPORT_SYMBOL vmlinux 0xfdd6faa0 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xfddeb056 efi +EXPORT_SYMBOL vmlinux 0xfde42ed9 __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe00159c genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe02f663 folio_wait_private_2 -EXPORT_SYMBOL vmlinux 0xfe048a41 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe05deaf pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xfe07c3fa iov_iter_init EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe3e9bfb blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xfe480588 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xfe215b97 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0xfe3c8d38 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe685099 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xfe73eb72 generic_update_time -EXPORT_SYMBOL vmlinux 0xfe797d83 sock_bind_add +EXPORT_SYMBOL vmlinux 0xfe696661 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xfe71ae99 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xfe7a685b jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xfe7cac8d dqget +EXPORT_SYMBOL vmlinux 0xfe85d7e1 nf_reinject +EXPORT_SYMBOL vmlinux 0xfe8a6b2d build_skb_around EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe989cbd devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0xfe9c6434 d_rehash -EXPORT_SYMBOL vmlinux 0xfe9dc960 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xfe97ad0e generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeb161ea blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xfec888cf mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0xfed39b10 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xfea635dd netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xfeb202e5 file_update_time +EXPORT_SYMBOL vmlinux 0xfeb7a0e0 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xfeba203e jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xfebcb7f9 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xfed73186 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfeea5e22 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xfee43d7d inet_select_addr +EXPORT_SYMBOL vmlinux 0xfeea58f2 srso_alias_untrain_ret EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeeda4dc xen_alloc_unpopulated_pages EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff0e5395 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xff02aec3 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xff19c3ff clk_bulk_get EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff32c403 pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0xff359668 udp_poll +EXPORT_SYMBOL vmlinux 0xff28757b netdev_change_features +EXPORT_SYMBOL vmlinux 0xff347968 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xff43e658 iget5_locked EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xff5acbfb scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xff6347b7 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xff630c1b d_instantiate EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6ae336 input_free_device -EXPORT_SYMBOL vmlinux 0xff6bfaa0 drop_super -EXPORT_SYMBOL vmlinux 0xff726daf inode_dio_wait -EXPORT_SYMBOL vmlinux 0xff7babfe con_copy_unimap -EXPORT_SYMBOL vmlinux 0xff831972 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xff8665c2 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xff7e3314 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xff863b62 vm_insert_page EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff87e413 scsi_host_put -EXPORT_SYMBOL vmlinux 0xff8d75b5 agp_alloc_bridge -EXPORT_SYMBOL vmlinux 0xff981a3c follow_down -EXPORT_SYMBOL vmlinux 0xffa48ce8 ppp_input -EXPORT_SYMBOL vmlinux 0xffa5b85c __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff9c6d19 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0xffb1e93d jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xffb509ff call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffb9706f uart_update_timeout +EXPORT_SYMBOL vmlinux 0xffc08245 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream -EXPORT_SYMBOL vmlinux 0xffc8397d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xffc4f3fd task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire -EXPORT_SYMBOL vmlinux 0xffe3f844 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xffd1df3b is_nd_dax +EXPORT_SYMBOL vmlinux 0xffe9c7ff dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfffb0adf prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xfffea3a5 xfrm4_rcv +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0x6790ca30 aria_aesni_avx_gfni_decrypt_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0x78ac3a58 aria_aesni_avx_decrypt_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0xa29489b9 aria_aesni_avx_encrypt_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0xa297f1e6 aria_aesni_avx_gfni_ctr_crypt_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0xb24a6f4f aria_aesni_avx_ctr_crypt_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0xbda879d1 aria_aesni_avx_gfni_encrypt_16way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx2-x86_64 0x4e91f572 aria_aesni_avx2_gfni_decrypt_32way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx2-x86_64 0x720be3e2 aria_aesni_avx2_decrypt_32way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx2-x86_64 0x8f7b6257 aria_aesni_avx2_ctr_crypt_32way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx2-x86_64 0x94a94693 aria_aesni_avx2_gfni_encrypt_32way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx2-x86_64 0xa8335003 aria_aesni_avx2_encrypt_32way +EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx2-x86_64 0xf90ca741 aria_aesni_avx2_gfni_ctr_crypt_32way EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x2c8b5dbf camellia_ecb_enc_16way EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x339c33c5 camellia_cbc_dec_16way EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-aesni-avx-x86_64 0x8b44ee75 camellia_ecb_dec_16way @@ -12073,456 +12147,457 @@ EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x194b2841 serpent_ecb_enc_8way_avx EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x38800636 serpent_cbc_dec_8way_avx EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x4140192a serpent_ecb_dec_8way_avx -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x71c60d1b sm4_avx_cbc_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x84a9c3ca sm4_avx_ecb_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xa03a853a sm4_avx_cfb_decrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xa2157339 sm4_cbc_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xa69e14f0 sm4_avx_ctr_crypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb1b7810a sm4_avx_ecb_encrypt -EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xf73c2f72 sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x28b2885a sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x29c4193d sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x3890c58a sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x829b7a60 sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x92f67c46 sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xee3c9cc2 sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xfc637237 sm4_avx_cbc_decrypt EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ec1ca2 kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02102937 kvm_vcpu_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0519cbf1 hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0050c5ed gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01fa8fd7 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x021e9afc kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02b9c359 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02eab0e2 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02fcb86a kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x044a694b kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0492c448 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0519c0b8 __tracepoint_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05bec96b __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05765c7c kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x060e80aa kvm_apic_write_nodecode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x074d0e71 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07da6aeb __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x099f2277 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x074379f7 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07ff23db kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0818f516 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x092ba54c kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09fce92e __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a24fcbf kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b28656a kvm_put_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bb5d03a __traceiter_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d6c9b47 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e005d9f __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f9a5c84 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11348ff0 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ef49af4 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f26ac89 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f8ea98b kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fd6fcea kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x103edf2a kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10a500cb kvm_release_page_clean EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11b8f476 kvm_post_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12209cac kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x137612dc __SCK__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13c2bf31 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1214d7a9 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x122db672 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1290adb2 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1405a501 kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14bb37f2 kvm_destroy_vcpus -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14d2b609 kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1516a16f __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1448d3dc kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15289d5d kvm_slot_page_track_add_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15bc0451 kvm_require_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16983137 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x169bb518 kvm_lapic_expired_hv_timer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17386d76 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x168ad023 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17a83181 __SCK__tp_func_kvm_apicv_accept_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x190eccca __SCK__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b38f4f8 __SCK__tp_func_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b7be022 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cd9bd6f kvm_service_local_tlb_flush_requests -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cebadac kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cf9713a kvm_gpc_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18127af8 __kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18212685 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a2c42b8 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a5c0be4 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a5ee1d7 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a9dbf70 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ae74c1e kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ba8170e __tracepoint_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b139a __SCT__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d78e274 __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1da1bd2c __tracepoint_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e4aa520 kvm_emulate_instruction_from_buffer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ee72da7 mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x203bb7e5 kvm_apic_match_dest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20610ad3 kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21a581e7 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20996fd1 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20c2901b __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21172fec __tracepoint_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24834c42 kvm_msr_allowed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24e3e624 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23723f56 kvm_cpu_has_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25cbb9e6 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x260bd839 kvm_mmu_free_guest_mode_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27857521 __SCK__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28fafebd gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x298d6f48 kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a0504f9 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2affb392 kvm_emulate_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b637ece __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d453093 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x286600cd __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ae3f555 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c27c1be __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c753fa1 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2cc7cd7e __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d5442b0 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x303903f0 kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x307a64c6 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30f8f221 kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31163258 kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x313bbace kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33b7cd6c kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33e14c3e kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x346114c8 kvm_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x356b9535 kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x363308b3 x86_decode_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x374610d9 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3811516e kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38209be8 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f0c8413 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f7a26a1 kvm_x86_vendor_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f86cdf1 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30c102a5 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e0d087 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36e14be4 __tracepoint_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38c8f0fd kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x390ba33b kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3988e13a kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39a5ce6e kvm_page_track_unregister_notifier EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a9d524c kvm_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b445932 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ceed42d kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d37039c gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d5586ec kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b66b504 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bd81b7b kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d1d1913 handle_fastpath_set_msr_irqoff EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3db461e1 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dc296b1 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e21ceaf kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e5aa050 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ea67b75 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ed7036a kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f1168db gfn_to_page_many_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x403084d8 __SCK__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41a6f15b kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41eb66f4 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42404dca kvm_arch_register_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4415b6e4 __tracepoint_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44538931 __SCK__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4570ad32 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ffde60e kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4091690f kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4244df92 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43b3b451 kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4692fdfb kvm_mmu_gva_to_gpa_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4707ea14 kvm_handle_memory_failure EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48288c43 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x473fb5a9 __tracepoint_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48f1bd26 __SCK__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x492b79a3 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4895253a kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48eb2c63 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49a5c47a vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49b98537 kvm_cpuid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4aebab88 kvm_mmu_free_guest_mode_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cd5a696 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4db276cf kvm_find_cpuid_entry_index +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b9623c8 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c4c1b09 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cc0d712 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d196d77 kvm_requeue_exception EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e71e480 __tracepoint_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ea798c9 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4eecf077 __SCK__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51ccfd5c kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5376c5bf kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4fed2cb8 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x505088f3 kvm_lapic_readable_reg_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5143fe3c kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x519920f3 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51b0678e __tracepoint_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x539d57de kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5495f35a gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55023da8 kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55067ac8 __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55a0e466 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x563f1da9 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x565074bb kvm_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57dcbcff __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55666b6f gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56470f8d kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56a15bfd __tracepoint_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b1889cb kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bb68067 kvm_mmu_free_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf7cde0 kvm_mmu_set_ept_masks EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c11e105 __traceiter_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c2e13b9 kvm_gpc_deactivate -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c379032 mark_page_dirty_in_slot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c8d0081 kvm_vcpu_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d3fbbf8 kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e0718bd kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f0472be kvm_valid_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb014c8 kvm_cpu_has_injectable_intr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60a24818 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x615773ee __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x615d5a2a kvm_gpc_deactivate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62e92cf4 kvm_init_mmu EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63252dbd kvm_mmu_gva_to_gpa_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x656bf7ab kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63f99af7 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x659af908 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65e80ceb kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66480375 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66aa6142 kvm_mmu_invalidate_addr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66bf7d88 kvm_get_apic_mode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x684f0158 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x685354cc kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68592033 kvm_get_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x687b78fc kvm_x86_vendor_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68df3909 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68fc89e8 __SCK__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69091c82 kvm_emulate_mwait -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69104aea kvm_release_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a51ddb7 kvm_vcpu_unmap EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bb5db20 kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc792a4 kvm_caps EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ccacac4 __tracepoint_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6dad47f5 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6de3f919 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ee1be62 kvm_set_cr3 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x706a2fef kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e6e8b8a kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6eacc021 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f1c9981 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f71e749 kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6faf7f6f gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x719f8794 kvm_prepare_emulation_failure_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72d9e2b3 kvm_queue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7307aadc kvm_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73db54c1 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7189bfbc kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74890f3f __tracepoint_kvm_vmgexit_msr_protocol_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74910627 __traceiter_kvm_nested_vmenter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7510a39a __traceiter_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7605e27f __SCK__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7767fe29 __SCK__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x759875e3 kvm_vcpu_map EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x789078cc __tracepoint_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x791d31db __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7958f8fa kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7994a033 kvm_set_or_clear_apicv_inhibit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79b92906 __SCK__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79ff7c2b kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78d18ea5 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78e409a8 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x796d2b79 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a2a0407 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a38ccd1 __kvm_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3a0f8c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa874d4 kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7acb132f kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b6bfc26 kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c0fefa9 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c662801 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bc18fd4 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ca6ef8e __tracepoint_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d5eac3e kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d98419f __SCK__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ccc45bc kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d39c676 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7df72865 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e018bb5 kvm_sev_es_mmio_read EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f51547e __traceiter_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fa01efe kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x810bd8fb __SCK__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8136dcce kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81a73b08 kvm_queue_exception_p -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81e6b1af kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81e6eabd __tracepoint_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8366c3a2 kvm_apic_update_ppr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83b3ee58 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84b9589a kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85d0ae7b __kvm_is_valid_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86495254 __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8752573e kvm_load_guest_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x897de98a __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89e17c7f __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a3a8ad5 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a6c9ff3 kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a709959 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8073f7cb kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80aa737a kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80bd47c0 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81e84036 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81f7417a __SCK__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82dfd8c4 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86a523aa __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86e9fb5a kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x877a311f kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87c47086 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88702c8d kvm_lapic_expired_hv_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8db9c842 kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e21bbf3 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c13aeb5 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f0cd16e __SCK__tp_func_kvm_nested_vmenter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f3a890e __traceiter_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f5c4cc2 vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x908ef8e8 kvm_gpc_refresh -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90c1492c __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f9ac679 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x910e990e __tracepoint_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93014eca kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x913d04b2 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x925bb391 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92bf1453 kvm_task_switch EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x943d8a71 __SCK__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9543976b kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9611bbb0 __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99f877de kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a45137d kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x948ef3c4 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94dca539 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x953fbee4 hv_flush_remote_tlbs_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9541a847 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x960e1aa1 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96909f4e __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98eec833 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99316720 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9baf0922 kvm_gpc_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c95049b __kvm_prepare_emulation_failure_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d24affe kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9da75cad kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ddf0444 __tracepoint_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9de88ea7 kvm_inject_realmode_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fbc6def load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0af281b kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa10e2ad9 kvm_destroy_vcpus EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1d8890d kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa38cf7ab kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3075fdb kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4dce4a0 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa532a3b8 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5695ff9 kvm_get_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6184e23 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa643febe mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa664ab6f kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6663f7a kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa677a67f kvm_arch_has_assigned_device EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6ebd879 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa772fd59 __SCK__tp_func_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9490186 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab39a947 kvm_gpc_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab9057a1 __tracepoint_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaec448b0 kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0cf7329 gfn_to_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb15f1fac kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa892d02e __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8c6f5ff __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab3171ae __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabaad9cc kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad3d6876 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadb318d7 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae30c8f7 kvm_alloc_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaedf92bf kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb06e33c4 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2cac788 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb324ed66 kvm_emulate_invd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4847ec7 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6c46b29 kvm_gfn_to_hva_cache_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6df9bc4 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb71a2990 __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb73ae648 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb37ddc0b vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb456d5d1 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb45f08ce kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5490177 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5508c01 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb56c3bbc kvm_inject_emulated_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb84d5d61 kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb934e2b3 __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb93caab0 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb963ba49 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9993c46 __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9d5222c __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba455b8c kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba7dda70 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb34c2e8 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb6d998f kvm_mmu_gva_to_gpa_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe3ac0a3 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf8eb7c9 kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0651ee7 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbec95019 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbecebecc __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf4fc24d __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc02c88bb kvm_emulate_rdmsr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0908729 kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc117446b __SCK__tp_func_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2633c9b kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc35f8e63 kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4be7602 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0ee6fff __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0f8b76f kvm_find_cpuid_entry_index +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1ec1206 __tracepoint_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4ae852b __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc59469b7 kvm_get_kvm_safe EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fc4205 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc61b7feb kvm_vcpu_deliver_sipi_vector EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fe55ac __traceiter_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc8a7df1b kvm_arch_start_assignment EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9ccb660 kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9dd72a0 __SCK__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb41482a kvm_sev_es_string_io -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd3d8f4c __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdb24575 kvm_page_track_register_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce2f1122 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcad58771 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbbbe56b __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce2b4b7d __tracepoint_kvm_nested_intr_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce5be7b0 kvm_vcpu_map -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce6cedfd kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce8917db kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfb6aaf6 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd02702da hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd065d1aa __kvm_is_valid_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0d56024 kvm_handle_invalid_op -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1ea1663 __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd31f405e __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3f07c5c kvm_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd43c8c18 kvm_handle_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd457ba6e kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd471e10a kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0c1650b kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd115ca72 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3c7f6c5 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd475c188 kvm_pmu_cap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5310146 kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd60d3801 kvm_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6ae14c3 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6eb9dea kvm_wait_lapic_expire -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd725850f __tracepoint_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd75008c0 handle_fastpath_set_msr_irqoff -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd79c2519 kvm_set_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7d08cd7 kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd857bc99 hv_remote_flush_tlb_with_range -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb344438 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd51c3edb kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5a1df77 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6fff72a __tracepoint_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd75d4bb7 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7aaaeb9 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7f562a0 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8d30510 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd90fda16 kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd98e97bc kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda681946 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb0b8b13 kvm_is_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde737080 kvm_sev_es_mmio_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9740e3 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc76801e __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcb51ece __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd612f3e kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde8065c1 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfc37ef3 kvm_cpuid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe41f70fb hv_track_root_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4a013d0 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5081aef kvm_update_dr7 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6835df4 kvm_init_shadow_ept_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6b1c1fe file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7f9d63f kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe804d367 kvm_mmu_invlpg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8597652 __tracepoint_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8a0faac kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2e90bc6 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe562e282 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5c49549 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe667f849 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe79318ee kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe857c47e __SCK__tp_func_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9c27b7c kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea0080ad __SCK__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9a0299b kvm_gpc_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecb68c7f __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xede3833b kvm_apic_send_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee80d950 kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee90da9c __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecaa610c kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecdc9341 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed9f4621 kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeda84bab __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee788215 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee862451 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeeb78ddf __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeedea3f0 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeee837a0 file_is_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef75e577 kvm_slot_page_track_remove_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf123af19 kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1800e95 __tracepoint_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1abfd6f kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2574737 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf180beb6 __tracepoint_kvm_nested_vmexit_inject EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2efca88 kvm_prepare_emulation_failure_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf34c2c92 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf360cb48 kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf508ccd0 kvm_post_set_cr4 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf518833c __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf393a0c6 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf493c6ba __tracepoint_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf6e0f1c8 kvm_vcpu_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf744e8c9 __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7a65882 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8338ff6 kvm_emulate_halt_noskip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf878bec2 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8fc532c kvm_x86_vendor_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf930a381 __tracepoint_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9379ba4 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf98e75d4 __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9af30e4 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5ba73af kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf69f0962 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf81a9eb0 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf88a37d4 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8e24dff __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa6ea410 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa972153 kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbea6dc3 kvm_task_switch -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfee36aad kvm_vcpu_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfee84c41 __traceiter_kvm_page_fault -EXPORT_SYMBOL_GPL crypto/af_alg 0x02f60b2d af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x0e7dc7bb af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x18e8fbeb af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x2379d932 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x409f4175 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0x482a825e af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x587c671d af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0x8168235f af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xa8620f01 af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0xb04e2471 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0xb1aa1a22 af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xc5f621b4 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xd3a7b44f af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0xee93c3cf af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0xf07608ce af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0xf47dfd01 af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0xff4fb7d5 af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xffdd85e0 af_alg_release_parent +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfccb62c2 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd14ad09 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd2dccd1 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe97d489 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe98d8f6 hv_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfeb00498 kvm_gpc_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfec8202a kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff02792a __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffa5b070 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL crypto/af_alg 0x0156f6ed af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x3c874ff5 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x4856d58c af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x51eb76b8 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x62778d0a af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x634264a9 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x71394466 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7b23303e af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x89a5f596 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xb9042573 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xcf12c48f af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd1d66f6c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xead3cf62 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xf1b21014 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xfa1c0892 af_alg_free_resources EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt -EXPORT_SYMBOL_GPL crypto/aria_generic 0x5f2ff26c aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xe50e4976 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x3814935e async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x58a9fbf4 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x91226204 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xbd0ebfc7 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x22a1ea31 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x271b4d86 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcfe989a1 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf769b146 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x370e4011 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8c295f32 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9af4ba75 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe57c1094 async_xor_val +EXPORT_SYMBOL_GPL crypto/aria_generic 0xeef61bc3 aria_set_key +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x30595199 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x2f17d5ae async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6565a470 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x721292ef async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xc3b037b0 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5b112a8f __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x905517c0 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb0dfb3e5 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcf52ca00 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x64ea60e6 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb1989a25 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xeaf44e66 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf0156762 async_xor EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0xb09f4679 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xdd5a01e5 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xa266b87d cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xd8be4e6e cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x8357ef55 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0xe88bf73f cast6_setkey EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x32511f80 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x3aac0c50 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x3d363259 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x450165a6 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x4ef7fb36 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x6ae12632 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x89302759 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x9c2abc6f cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xa7220c45 cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xaccc9591 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xd8d581d0 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xe3df5265 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xf57b9f6b cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1e59573a crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x321a18fa crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x37965f80 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3f9d4520 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4520686b crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x453981fc crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x877229ec crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x93c46638 crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa714c59f crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb3c61442 crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbbeb443e crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc7945ff2 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd0b7110c crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdc5bc024 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdfb7209a crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x1449e5be cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x1f484bcd cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x2c10cb41 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x32ffc520 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x43ad171e cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x59601fd2 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x72d885ae cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7ec614c8 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8569c541 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xbb0b631a cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd2de2388 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd5a85984 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf153fc7b cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0485d8e2 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3d699066 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x45e25627 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4e9e10aa crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5b939100 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x603fdcf0 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6046ee3d crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x775c462f crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaa877e9a crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb45e3451 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb9dfbdf1 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xba8f5c83 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc478d6ed crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdee9916a crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf92d451f crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x06477359 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x2cf9930e simd_register_skciphers_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create -EXPORT_SYMBOL_GPL crypto/crypto_simd 0x6771b823 simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7618491e simd_unregister_aeads EXPORT_SYMBOL_GPL crypto/crypto_simd 0x851c747c simd_aead_create EXPORT_SYMBOL_GPL crypto/crypto_simd 0x88638552 simd_skcipher_create_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xb358ee44 simd_unregister_skciphers EXPORT_SYMBOL_GPL crypto/crypto_simd 0xbfd26f15 simd_aead_free -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcc493672 simd_register_aeads_compat -EXPORT_SYMBOL_GPL crypto/crypto_simd 0xcfb71b07 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0xd09d2695 simd_register_aeads_compat EXPORT_SYMBOL_GPL crypto/crypto_simd 0xefe73979 simd_skcipher_free EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len @@ -12530,23 +12605,24 @@ EXPORT_SYMBOL_GPL crypto/polyval-generic 0x1936413e polyval_mul_non4k EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x658c63d0 serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd27d77ce serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm2_generic 0x812d4078 sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL crypto/twofish_common 0x11d90ddb twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x926a4df7 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x181e6b76 acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x45eee539 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3dafc48f acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x427a06f5 __acpi_nvdimm_notify EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4a8f77d1 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5e9fa656 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa7a4080e acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5b6b862e acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc9f409bb acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd7c37129 __acpi_nfit_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register @@ -12554,50 +12630,52 @@ EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x4f6c2360 acpi_smbus_read EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x96eb492d acpi_smbus_write -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x123580aa ahci_host_activate -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x22d0b622 ahci_save_initial_config -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x27bd4fa4 ahci_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x40265c64 ahci_print_info -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x44ec1ad4 ahci_do_softreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x45cc6d60 ahci_stop_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49521776 ahci_shost_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5dba7082 ahci_set_em_messages -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x65818bc5 ahci_kick_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6acac03b ahci_port_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7d03f78e ahci_handle_port_intr -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x82d2162b ahci_dev_classify -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8722454f ahci_reset_em -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x893c9e98 ahci_start_fis_rx -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8e9ec3ca ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x96af5551 ahci_check_ready -EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9f8d2e45 ahci_start_engine -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xabc24803 ahci_error_handler -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc2dbca67 ahci_qc_issue -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xce74abe8 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcf0ede4e ahci_sdev_groups -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd80c0fd ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0614651e ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0e1280a9 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1440d24d ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2cb39b64 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x42db601a ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4507f8cb ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x46667513 ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5627b1d5 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x56c7c8bc ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5c015294 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5ca2f355 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x711c2d29 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ce1fa16 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x84d4c70a ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa611fb93 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa928122b ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbf325b61 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc187d67b ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcd7e5442 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd905444f ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd914294e ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe0da0513 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe4f21dca ahci_start_fis_rx EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf7798b86 ahci_do_hardreset -EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfa418535 ahci_init_controller -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x162aece8 ahci_platform_suspend_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x24ca6691 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2bfa6e03 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4ab41353 ahci_platform_resume_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4c5c44dc ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4fc26e6e ahci_platform_ops -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x59444e9e ahci_platform_enable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6b6d8125 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6fa8a5f8 ahci_platform_get_resources -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8dde7467 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96999ea6 ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa7cb7764 ahci_platform_find_clk -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xaa8b1ad9 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbff7bbdc ahci_platform_enable_clks -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd2270162 ahci_platform_init_host -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdfd3d805 ahci_platform_suspend -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe434890b ahci_platform_resume -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xea8a4bae ahci_platform_shutdown -EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xeba87145 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xec89d3f4 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x084819ad ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x099c5ec9 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x16e4ea6b ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2eb27fe3 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3eb8cf3a ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4c092106 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x86b57959 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x930de8c3 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x996ca9bd ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9a04756b ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa4dff95a ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa538774f ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb2751e96 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb7fd0194 ahci_platform_find_clk +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc3e11acd ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc8063516 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd14653b4 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd698970c ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xefe7fadd ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x04337988 pata_parport_register_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x352aae75 pata_parport_unregister_driver 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 @@ -12631,262 +12709,231 @@ 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/auxdisplay/line-display 0x2eb7a09c linedisp_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xd89c38a5 linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xa1230e2c __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x6f829c61 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x94dc1763 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x274874ca __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xcb7a8c4b __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x2d30c85b __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x87cec14f __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xcbe40c08 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe06720b6 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x92e13345 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xfcf71b6f __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0d73a501 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4148dbda __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7c98716f __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xeb337c51 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x94b88f9b __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xfb5fcc86 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16b66738 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x26e6a2ae bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29a4dc2b bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3114b35f __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x336b822c bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c230e36 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x43bb1b29 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4ce4490c bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52b2598d bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x61da001f bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x630b31ae bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6bfa0235 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6ce87864 bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70239f22 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ffb9779 bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9099ad2c bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9786d880 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9987b9e3 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a0aa4e3 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb50b0f76 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5635eb7 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8c06c1e bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf0a11e0c bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfeac12b7 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x64187f40 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x700d8b2b btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x78e7411b btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa18ef6b7 btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb3d5f948 btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb461e30f btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb5bae7e9 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd75bb10d btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x153b687d btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1d44d85b btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b00aecb btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x463179aa btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x62578bd7 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x636506f4 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7096d804 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x95ce7e63 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa5d9b175 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc13f71d0 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc632d89f btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc6d59daf btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc7d7d9f0 btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xce2261a4 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd58bc60f btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd9594ad6 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfa2bb692 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x057ae0b8 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0695ab1b btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0d2b7ec3 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3c166786 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5a04603d btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8da01d87 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x96ade187 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbfdd1cf7 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc6e03d8c btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd55c3593 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xde4cbacb btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x17b5e964 btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xaecc98c3 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xc34fa4e2 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x131e117b qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4352e812 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4cafe615 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x93a72b00 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe3c2f709 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x43a91469 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x61de8620 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9144b36d btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x271d6016 linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xf5b96849 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x92011ec7 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x606dd1b8 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x9c058ba2 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x9c8dcdff __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xf34c95a7 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x09dff686 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x6a253405 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x72ca0f29 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xdefef04d __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x5b860ccf __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7e9d21a3 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x440afaa7 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4b143e7c __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6fc7aed8 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x71fa4191 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x1742d117 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x5d56ee52 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0da77cd8 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0de2cd74 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x152ac6f3 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1966a27d bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2d986a83 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x46b6cbb9 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x515fae69 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x53c4d4e0 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6850f005 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c5122b8 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6ebb9af7 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ec94385 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8985d2f7 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaf332c00 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca2287e5 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd52c4643 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda187e9e bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb43f9dc bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf5518e9 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe18d3487 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe542dc80 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe6f02f6d bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf16349c1 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf94d55e1 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x36cbd505 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6f98ae57 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8756b842 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8904cd00 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcb92ae61 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd4119ae3 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe8c6c476 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf428be56 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0fb17ce7 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1d45e2d2 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x239b02bc btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3536be1c btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x62aae69d btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7207f3a9 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xab074da6 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xad06b8c8 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb1fb6777 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc38e2e7f btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc3cf1688 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcf1457bd btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd083abd5 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd16eaa68 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd1a0ce45 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf096d0b5 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf37bea3a btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x16243caa btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x29925b6c btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4b030eed btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5ebf596a btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6c9c4865 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6ec440f8 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8603dd25 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xafbad0c2 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xba66f754 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd7fb1196 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe9d4d8a9 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x1878da7e btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x73a1f832 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xf33a2f94 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x08c62033 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1ce327da qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8cdfc153 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb57bb741 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbb1b2391 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x23121d94 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x524d2503 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x87b94f4a btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9fdc4219 btrtl_setup_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcea8bf53 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd530f95f btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xd6b0ee92 btrtl_shutdown_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x34ffd4c9 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x620f2e5d hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe2987f88 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xec5cb46f hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x1573dc21 mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x45033e72 mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7b15a7e8 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8941c51c mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xa57e83a0 mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xacbd9a8c mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xdd7094dc __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xec144d64 mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x018b040b mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05138e1e mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0799d921 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0c24964d mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0f2a7dfc mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x11901c0b mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x160e8f4f mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x206aa388 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x26db61cd mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x29ea7ba0 mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x30c8e357 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3569e8f0 mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x455cc65d mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4bef0915 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4cb3e071 mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4e1851ab mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x55992ff1 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x584fcdcf mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5a28a735 mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7f1589ae mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x807f1e81 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x85d51fe9 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x864d0c88 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa88f03a mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb0b0635a mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb22c5261 mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbd046195 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xccb9dcb1 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd51e2d94 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe822cb4e mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf43b9e08 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03a44967 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x03b40980 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0581735c comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x094aff78 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb71fa0a5 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe349907c btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2d9b40d4 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4c7d0228 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x54b80152 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb714676f h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0ee12699 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2f91f4d2 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5cd045de mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x76121a2c mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x94b8ee6e __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xa074cde8 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xa38f15d5 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xca62a4f9 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x053707d0 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05cab2ec mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x08dadcab mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x12df5b3a mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d6673b5 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2e53766f mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x44345ad6 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x505b57a4 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x57f96b39 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5db6de08 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5e2ad9ba mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x77b9837e mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8b7db016 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8c99a469 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8c9a20bc mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa1e9d20b mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa444992b mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa9b65711 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaac03c23 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xab6b4e29 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xae04c9ab mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xba1d161b mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbd76e6c5 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbecbcd55 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcdc652a2 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xceef691d mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xddfebfdc mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdf51a1e2 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe1db415e mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xedd56d45 mhi_queue_buf EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x20e5252a comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1320b9b9 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1901b06b comedi_alloc_subdevices EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2a4d3e76 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e5a2ce3 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e31a85d comedi_readback_insn_read EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2fb2acd7 comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3a133a58 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2fc397ac comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31c21fbb comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3b64af67 comedi_buf_write_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x497c9c8f __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f1bd902 comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f4a3ba3 comedi_buf_write_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6817c3b5 comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x683e92bc comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x697a0e93 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x562a7bdf comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x57976fe2 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5b57865e comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5bb2038e comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5cabec0e comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5cfc60a9 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5edb8f32 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x67cdb51d comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6bcf1a89 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x76076da5 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7acd6193 comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x830513db comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8de8b7d1 comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b1ce5ab comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9ec8fa8c comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa660e0dd comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa78d8529 comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb337c630 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb48dccaf comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x811bba60 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8f215231 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x90fe0463 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9562c771 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9b646555 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9cba061f comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaeede7f7 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xafb1e1d5 comedi_buf_read_alloc EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb9cf41b comedi_auto_config EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc256adeb comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcb5bfd89 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcbcb94cc comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcc8ea8db comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcebfdacf comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbf01d848 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc2e1b18c comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc3e0810e comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc4f56b21 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc6811446 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc88a7c2f comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd09b53d6 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd219884e comedi_alloc_spriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdea3ba26 comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9086a4c comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9a96927 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf04f44cf comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf47c29ae comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfb4c7852 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfd1d6db1 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0f26a2a9 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2e4d7439 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4086b6ec comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8a957559 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x900162c3 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa6b9938e comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe9925d6e comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf0e42afa comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2fadbaf9 comedi_pcmcia_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x31cc5e48 comedi_pcmcia_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x6b2cdf3b comedi_pcmcia_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x795157d9 comedi_pcmcia_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x94881336 comedi_to_pcmcia_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xd54abf02 comedi_pcmcia_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xde47bdb7 comedi_pcmcia_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x020343d9 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x555dede7 comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6b722391 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x985d0880 comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb2694f9d comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xe3915dbf comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x08e2fca4 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdd82e73d comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe658264d comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfeb82c9c comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3d5c5dc0 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x567ce2b3 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x649ebbd5 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x79fd3e92 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x92f1b540 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb0ce2985 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd9bec8cc comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfa99a601 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x4b90f72b comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x52739203 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x743f9d12 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x7cbec151 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x87739bc7 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xc0b69627 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xc709439e comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x13a24036 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x696f9f91 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6a59f597 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9bf4cd18 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa014e203 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa66becd0 comedi_usb_auto_config EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x1f063ea3 amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x8a78b042 amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x94bdc558 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0b95348b comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1093632f comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x19e6970a comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1bace8fe comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x33ced7c6 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4d21a2ab comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5bdb4f0a comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5e80dad4 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7ab24991 comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7cc6b57d comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe6b78f6a comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe840061b comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xeede76ff comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x642baecc subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x893f5681 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa0f7db9f subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x15df8bd8 comedi_isadma_free -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xb15a6358 comedi_isadma_poll -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xd44d1fa6 comedi_isadma_alloc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x9ff13332 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0ef6ebc0 mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x101dde32 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x104364d3 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1a8c2524 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x48c1c599 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6a396c90 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6e63093e mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7749374a mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa8e77ee3 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb3111deb mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb4112db8 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc7c530a3 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcb01e1d9 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdbc96d2f mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdc1e85cd mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xff02d671 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x264a0bb6 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xd8675bc2 labpc_common_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x45009187 labpc_setup_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x8ee596fb labpc_drain_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xe307eaaa labpc_free_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf2f1399d labpc_init_dma_chan -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xf9873815 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x7ad2134d addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xf20c50c8 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x3fbf0525 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x49de715c subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x9d8a21bd subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x17df104a mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2062836c mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2e6fbed2 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x42cb97a9 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4598979b mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4629d37e mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5232e217 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb9083616 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbcb57d9c mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd2e2ce7f mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd5cc11a0 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd89f1417 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe2ac07a6 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe88cdf6a mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xea055273 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf6595520 mite_buf_change EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12897,888 +12944,893 @@ EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x02824d58 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0c1b1a28 ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1b69b247 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1fde6d0f ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x40a45402 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x61554d67 ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x63a7822a ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8481cefb ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x875c7d63 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x939e4fc6 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc1acb690 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xccf3b9d5 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcdff7c8d ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcf554d57 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xebc6f2df ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfd494b8a ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x34b575ee ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x535e7d45 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5f923103 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6a3d4311 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdd3690ce ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe4dc5b00 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1ed894a0 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3290aec6 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x51c8d9fe comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x610fd30a comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb016fb6a comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd57f0feb comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe796bc14 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x172c4e92 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x27036e7b ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3a50ea4a ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3c91c371 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x51b0790f ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x52895ec9 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x582c3a39 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x774be287 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8a1a8b01 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x936875a9 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9c5c1c13 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb3252fd0 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xba144852 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd5d7b152 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd94552bd ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf87db940 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x100377b1 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x24108b9c ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x264891a2 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x3e23a0f6 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6555045d ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x75e2469c ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x243de009 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x26a8a1e6 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x589ec377 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x766fa913 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa35c7a55 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa98b4162 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdbf7ede9 comedi_get_n_channels 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 0x114237c6 ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x2e6a6147 psp_copy_user_blob EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8289ecc8 sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x6ea40704 psp_ring_platform_doorbell EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x98a356de psp_send_platform_access_msg +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xa5b72c9a sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xbf36eb1a ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x020b9e92 adf_init_admin_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0c934537 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d3adb5f adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x12287fa8 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b1635b4 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c26e391 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1fd1ebdd adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x25d0ef74 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b1408ad adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3059d990 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x33669b48 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34dfbdc9 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3fe8425a adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x41eee73c adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x423705ef adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44742c61 adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x44e52826 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4934c178 adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4954b721 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x49a91cf8 adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4ca1bfbb adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x59f42ea4 adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5ced7c34 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x60bab7ea adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6442f8dc adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6463cb74 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69b13bc7 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c9cdab0 adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7535d810 adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79e6c8a4 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d0c748e adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7e926e58 adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x81df8c14 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x838883cb adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84695176 adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x88a3f4e4 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x94a8f356 adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ac1bfc3 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9b19bf74 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9b35e1af adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa07d5918 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa64e6663 adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0a8bd4b adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3d49f4a adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb562517a adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb70256be adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0da48c7 adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc947ab0b adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcbf5764f adf_vf_isr_resource_alloc -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 0xcc9268e6 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xccced745 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcd3cee5b adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd31bd0b1 adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd87a8287 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe652b639 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe79b08ca adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea029f7a adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea147d8b adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeecd243a adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xef2ba969 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0xeab47c58 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x018b659a adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0a872684 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0c560f2a adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0c7e769c adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0d43c53c adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0d921a4e adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x115ab649 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x13eeb7cc adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x15f3fd8b adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1897dd7a adf_dbgfs_exit +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1c927afe adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x1e196e72 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2013abea adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x20ca13df adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x24fe3713 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2b3721eb adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2f25b03e adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x36e203ca adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e081909 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4220b83f adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x46f8f6a7 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4760d085 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x56c2e5af adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5ac988de adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5ffae07f adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x64ad9949 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7095f844 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x70ed77cf adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7289ca75 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7518dc5c adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x756c46ae adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x78875f6d adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x806d54e4 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x833162b5 adf_dbgfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x978e8847 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9be83f0a adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9e42ad03 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa2e46190 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa529ffec adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa7292779 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbd77fb92 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc13eca7b adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc56eb603 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc6743bec adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc1dd720 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xce247482 adf_dev_restart +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd481ec2d adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd812b07d adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xde36903a adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe50155c0 adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe9723d88 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xed83f1f0 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf20d9a72 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf6ffd2e5 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfb93d2e6 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfd0a2193 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfe259299 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfe43e111 adf_exit_arb EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0x168a094d dca_remove_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x456e4612 unregister_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0x4afc9f16 dca3_get_tag -EXPORT_SYMBOL_GPL drivers/dca/dca 0x534b773b dca_add_requester -EXPORT_SYMBOL_GPL drivers/dca/dca 0x8f2eb175 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x0ea2d7c0 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x23f2f05c dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x27a11045 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x90e62d0c register_dca_provider EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify -EXPORT_SYMBOL_GPL drivers/dca/dca 0xbccce367 free_dca_provider -EXPORT_SYMBOL_GPL drivers/dca/dca 0xd6250faa register_dca_provider -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x2bed00b1 dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x385a9e04 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x077256b2 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1dfe341f idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5f2409f3 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x63ac7c69 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x84395e72 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb05e4ed0 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb6328ca1 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb87aa70c idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc8853aba dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x663a01c5 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x7d86ade0 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dca/dca 0xcf1820de alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xf87e5837 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0xfcba51f6 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x4bb1f9fa dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x6a1d3912 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x03f84bf8 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x10ad8f44 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x336dda28 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x441ee174 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x59a71718 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7da96e2f idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbfffece4 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd8711957 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe9c437c3 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x2e302801 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xe245eed1 hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0be1a4d8 amd_unregister_ecc_decoder EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x1d34e996 pp_msgs EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x8592d892 amd_register_ecc_decoder -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x7e1083b1 fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xad55543d __fw_send_request +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xb5f6d6ff fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xf03a6389 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x00f0f385 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0ca035d7 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x18924c4f dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x18d6d7a4 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2642206c dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a3ca259 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x325e7017 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3ddc4119 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3f1b82df dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x44f6b52a dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x476783f6 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5ef94088 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6f8d16ec dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x774aa0f0 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x84212a8b __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8dc858aa dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9c4bf031 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xab2bc9ca dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xadc4740b dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb81f6b3d dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xde5f1513 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe1c85e36 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf65b1bf3 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x04c1a864 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xdc7e12e9 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x05f8a18d dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x06982d5e dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0ec07fa8 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x193ab16d dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1b2298ac dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2a4f6595 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x399ce4b2 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x47cef797 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4bd8155a dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x516dff1a __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x538d5f85 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5d6bee61 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5f3dbb70 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6c5c7784 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x75a42690 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7e13403b dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x86554311 dfh_find_param +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x885acb57 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9652cfad dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb97c6969 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc1a0f198 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb2bde79 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd3d7bfbe dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeccdf658 dfl_fpga_port_ops_put EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0fb03cac fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1bbf5329 fpga_bridge_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x314c95f6 fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5faa0273 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x60119e50 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x6eb111bc fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xac873e02 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb7a20296 fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x18644dea fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2e39678f fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x31972f6f fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3c812cc8 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7c71862e fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7cb92951 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8951b2b3 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa9675d03 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xaa5b453b devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc435c2fe fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd5487cd3 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd74978f1 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf065684a fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1acf714b fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3f0b8469 fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x66675b66 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x754167e9 fpga_region_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x77a0eedf fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x26d9129e gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x39f06bae gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x51318477 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8a364097 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe5423679 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x246b12c4 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x827b8f7d gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9ab0e571 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf81a2357 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xfcead062 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x378b2014 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x405c9558 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x500407e7 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5c65df6a fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x630f11d4 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x78fedcb3 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9b836ca7 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe3c42286 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xfab9876d fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x101512d8 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2857f727 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2c29089b fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x389abeca fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a660224 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x80e4bb6f devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x81ddbc39 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x959738ff fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa182de65 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc017d93d fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcba3fad9 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf9aae1f8 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfb64b188 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x01c58fe7 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2ac93f0c fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb1089f61 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xbcaf7e42 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xcd286fed fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x392807fb gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4be0d6dd gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x50718e4b gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x589535b4 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9aaf3ea8 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3d318979 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x817ad6fb gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x91e84400 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc569c2eb gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdc8acbd1 gnss_serial_allocate EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x245b65f4 __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x573bd110 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x186fa18a analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x25f4c705 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x445da4f3 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xee158a69 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x7a75fb7b devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xeeef0ba9 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x0a6ce4d5 analogix_dp_stop_crc EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x58f898c0 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5cf4dbae analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9852608a analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbd75cb7f analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbf577432 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc9711781 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x503f9f3f drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x01a8e4c0 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x02f362e4 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0d201384 drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x490a734e drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x641032f1 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5fe82a46 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x70b43aac analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x9dd1e561 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa3916eb1 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb6486e5d analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc62281cb analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf600ac46 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x1f168c69 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x16e41748 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27255f41 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x310b3dd9 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4cbb5352 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x59f3a4a7 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x60b3df58 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6101439d drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x615c43d3 drm_bridge_hpd_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71149658 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74190387 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x708ab6ba drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x80c36427 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8541f3ec drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x903f2c16 drm_bridge_hpd_notify EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb5072e95 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcdc2810a drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe2085b94 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf42b6724 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf6efbd8a accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf96134f6 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc709f7a3 drmm_kstrdup EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0176e19d drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x071d885b drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x28075144 drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x2d969c04 drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3525b257 drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4ea4c22a drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5735fe90 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x81527cec drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x948fa56a drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x956a40d9 drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb07f5217 drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xdb3e7617 drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0a177cd4 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1cd97de3 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x294d07b6 drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4e817d99 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x61df380b drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x64a6ec49 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9495afe3 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc35b7c01 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe9275e5b drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xff38e915 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x4132d710 drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb3465525 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb4fe2989 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe942173b drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe94e9ce2 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xec78ecbd drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xfcdfd01f drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xfee80423 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0975105b drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0d268903 drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x23238dc7 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x299fcb0f drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x30d8ae9a drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4f22d389 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x69906151 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x80c79e03 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x9a34ddce drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xaf4a1ecb drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xd2e1129c drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf450cb9e drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x08383812 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x268d7280 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x35f95d15 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4249c391 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4b717383 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6249117c drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc0f84e72 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd343a58b drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x07415e06 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x1b679ca1 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x60883212 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x720847e9 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fc1de59 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa4aa4ebf drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbf35ea95 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe399e559 drm_gem_shmem_prime_import_sg_table 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/solomon/ssd130x 0x561bae13 ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x970472e2 ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xdd73d3fe ssd130x_probe -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06a4865d gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06c492ed gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0c0d3f45 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0db80014 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0e1cf0bb gb_operation_get_payload_size_max -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0eeccb63 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x4a980e64 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xb3bdb1d9 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xe2c37e38 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x03476506 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04e202fe gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0585f9e6 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0ad10a4e __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0ad79e3b greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b3f8dca __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0d66fbe1 gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11fb06a2 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13f25b35 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14e42fa5 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11a7b568 __traceiter_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1801e925 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x216e26a5 __SCK__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25902090 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d189a70 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3293b4f8 gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32f6b220 greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x33ad2457 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x470801f6 gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ade50d8 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b7fdede gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50f55c89 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x534283fd gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5398d02d __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x54433ba3 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x571ce383 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62ed4cd7 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65e21022 __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6a66002e __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6e84403e __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7114f343 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x73929d8d gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1948f633 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ef7137c gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x243fece7 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x25da2353 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x34b84d18 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3df8b336 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ac79167 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e9f16fd gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x573d0145 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5abe85a4 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b8e00be greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5eee08e6 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x665d2379 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x709eed81 gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79f90786 gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b4dc9c4 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x88003624 __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8821352c __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ea7c528 gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b5b0de8 __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9fdba5fe gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa368776a gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa92c04ce gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaa6b92f3 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79e4a37d gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8c8fdada gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b75ba3d gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa210ff61 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2ac9f4e gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9f81148 __SCK__tp_func_gb_hd_del EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb2253fd1 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3f11bde gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb867763e gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb13509f0 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3778e47 gb_connection_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd07653fc gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5daf863 gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd8427b22 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb4ddb02 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdfab36a8 __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe15ef608 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfec75b3 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc14a9f68 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc71b067a gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca5682af gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcd6100a0 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd2afd562 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3294e93 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3d20de4 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4efe68f __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5610dca gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5a415d8 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd9cc8fd2 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdc561639 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf932cc9 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe175c5bb gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4a772df __SCK__tp_func_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed374b38 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf85bd8c8 gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf8a89a79 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfaa64552 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfbd97034 __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd71b6fd __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0390fb1d hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x048ecf80 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b838fe9 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d7ea9a6 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x12ad518d hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x18319307 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe78de63e __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeaf35cac gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed159be0 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee1940ad __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee1b9db9 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf256fc2c __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa0526e3 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa90fc68 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb5ebddc gb_connection_disable +EXPORT_SYMBOL_GPL drivers/hid/hid 0x008451f6 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03f05149 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0431b6f4 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07fcab08 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x091eea91 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x095c6bed __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0dc54970 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f019fa3 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11df954d hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14bc1079 __hid_register_driver EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a43605a hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f36d72d hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x22e31268 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x282e04ca hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bdae06e hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b7f5078 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e0e6705 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x483ea584 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4aa7e83e hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b26dd77 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x583e1ee8 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c32e19b hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x609dbc05 hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ed215a0 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x757fb6bf hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7769e098 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x778ad8ee hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x78639b86 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1cc6d851 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ecf1c5c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x31451911 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b70543f hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c0049a7 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3eee6e72 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x467e6151 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x49af2608 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50a52ae0 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a71475e hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5cefedb0 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ec3c042 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64f4fac3 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a56d9f2 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b2a98e9 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fa969d4 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75f0972f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c6216c1 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x81159114 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86c831c9 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a6d6b14 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a8aa8ab hid_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x921e9019 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x932dfbbe hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x967da141 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a03c449 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x9d7722d2 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9bb2fa5 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf950018 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb649bf2c hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb5a3d67 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3cfd700 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc64f392c hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc759f11b hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcc01bf95 hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd874527 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd023fa87 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0d2e2cf hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd16bd3e0 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd50214fd hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xdfe01eeb hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe2c0cde5 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe65db236 hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0xea797e17 hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2d5d074 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4282d03 hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7ce40c5 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf97f3841 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94a7772b hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa23bca9d hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3c490d9 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4beaa53 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5ae871e hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5d4c3c7 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7469ed5 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5f259a1 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc21304e hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc290921 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc49a4ad5 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb7999ae hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0342f33 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0e01783 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2b3703d hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3297884 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe715af9a hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7aab38b hid_hw_close EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x6c3d7b88 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x042e8dbc roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x220b0c0b roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x48c10cde roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8100d668 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x82e880b5 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfe1b8d88 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x20a58baf sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4403a123 sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5b42864e sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x779fdf8b hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8bd056cc sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9a52ca80 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc304bb82 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd33a8601 sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf6041225 sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x4e14d6c1 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xd73a0c6a vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x2d99efc1 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3125ca30 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x49a08cbc i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4ffea130 i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xce1e1dc0 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0xe1c7212e ishtp_wait_resume -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x0d6f538a surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x53c7f5e5 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd80be77a surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xe18f2341 uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xcbf5d584 usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd0a0a334 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0745e4d8 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1105e709 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x20019a1e hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x35ef085c hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x9cb6a102 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0e4fd1e5 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x16f2dcb9 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2c19d622 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x98614784 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc4723099 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc6f7de45 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3747db4f sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6c09aa58 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x70af7eef sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x83bb6e3e sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9246b395 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9a098751 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa3f9765d sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb671bfc7 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdddac4e7 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x020a0790 vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x8154351a vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0eed25cf i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3e79c651 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd901be8e i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf946a36c i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0x88af43ba ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x9d7443c0 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xa41e88db surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xfb7ee327 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xdc0aa601 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf1158712 hid_is_usb +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x11583388 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x14d2eb8e hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1feaa4ed hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x408d4c75 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x41041235 hsi_claim_port EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x55c3790b hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x618e47af hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x66bef6d6 hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7cd998d0 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c367d3f hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb21411e3 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb818f65a hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbff35239 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc476f967 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6559387 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe613bc9a hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf01d63ee hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf9b57ee4 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x10334889 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x12a0cd3b vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1596439e vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x16da2a52 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2098fa6b vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x222cf494 vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x254dce63 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31d78f0a vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5cef6699 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f7289e2 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x65209373 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x814abdfe hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86dd6fce hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8b369dea hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9268b9c4 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x98064068 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9894aa7b hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9c499f6d hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb844a402 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb87e8038 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x039fcd61 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1163ab23 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x12b372c4 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1fdea5d7 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x316bc0bd hv_pkt_iter_first EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x323b6858 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3884194d vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3adac1e5 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3c70bb62 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x414f5001 __vmbus_driver_register EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x50cdf977 __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x53b7e0ce vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5bdb4f03 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x609f7018 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x62a1c177 __hv_pkt_iter_next EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7ec81d83 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7f0a97cb vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x87f77021 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9c66f37d hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9f3830c9 vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa37bc0a9 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa50a87c9 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xae02afbf vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb32803c6 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb9476d5c hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd0bf9e50 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd78c20ea vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc8fa996 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe6fc0397 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf258482e hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfe585cf4 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc5e2ec33 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x679bc4e6 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x69b9e8d4 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a141257 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x72b0df52 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8034c250 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x829b7dae vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x929fa587 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa8c1ce3b hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb43b12d3 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb8632760 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbdb77a60 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc23e6fb6 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcc4c471d vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd2eb231e vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd863e842 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb26ecaf vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe224a104 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeb302fe8 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfcf5ebf5 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd01498b1 adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x5e770bdb nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x9bda5d12 nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc3255722 nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc6f897b2 nct6775_show_alarm -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xec4272e1 nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xfac75ca3 nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x54f9d7fe occ_setup -EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x9558a3bd occ_shutdown -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2e068e0e intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x747f382d intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x76ceefe2 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x964b8ff0 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaed649e5 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb5e7f15c intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc9753fd9 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcf6c8ba4 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfa15323e intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3f1cf26a intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9cdc5deb intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc590a560 intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x05e80034 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0beae029 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x10e6d282 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x29ddfa7e stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x36688927 to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x591ffa3d stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x846e79d2 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd850bbf2 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe43c0127 stm_source_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x0a5bfc34 amd_mp2_unregister_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x96693c58 amd_mp2_register_cb -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb9662745 amd_mp2_rw -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xbc3e556a amd_mp2_process_event -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd30b6ace amd_mp2_bus_enable_set -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd7a14e83 amd_mp2_rw_timeout -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd864f882 amd_mp2_find_device -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xbe875637 i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xe17dea23 nforce2_smbus -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x20b1c101 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x462fa2c2 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7b8f258c i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd4091b69 i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x20101d81 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xede189b4 i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x074360b8 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0e02b87d i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x17bcfd49 i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x259f3658 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x30bab7fe i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x51060d64 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6555c4fc i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x688ebded i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x738dfba7 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x1c643bc4 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x2459a4f1 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xcb94ccf4 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xd7f14d32 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xda56df45 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xfbbc08c6 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0x752a119e occ_shutdown +EXPORT_SYMBOL_GPL drivers/hwmon/occ/occ-hwmon-common 0xdd6410c7 occ_setup +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0ac309c0 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2a6c7bfc intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x31425abe intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x478cd708 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4d71b142 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x63c76158 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6b40f9ce intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6ca5231e intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x81c4cc6a intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x21b414ae intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x24e6ce0a intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xce07d351 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2c150cab stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x437541cf stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x74f9bfa7 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7bfe18e2 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7f4f4e18 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaa3c2f88 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xceed69e3 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe2208cda stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfdd967e6 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x2180169c amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x2f68e423 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x3ebd26b7 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa16e3f01 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb9d9ee63 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xba686fd0 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xff577831 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xf63efcec i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x6c5ec47c nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x20528a0c i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x31d4ed9e i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4feb4864 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x53112495 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x89e5f0b6 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb6317423 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x167cbcda i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x17a5e4ca i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1f4a221a i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x23c3e5e0 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2b29dcb4 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x34d3c702 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3e6689ae i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4151eaff i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x46dea4e6 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4d97b4cd i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x51e9ddb6 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x51f5915d i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x588909f9 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73be6dd6 i3c_device_match_id EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8aafdfcf i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x94e0ca19 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa16769f9 i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3e400a2 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb70487d0 i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc0c02933 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcdd9808d i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3ac178c i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd45f8c94 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe5f8e6ed i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe736514e i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe7e68ed4 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xec04f393 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf6631e0e i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf80f8f2c i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfafa0cb5 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xffffdb70 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x0a32ca26 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x1cf144af iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x856df70f i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb8190978 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc7c30eb3 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcfc69e60 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd1173a33 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd549e225 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd7e4c5ca i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xde6067d8 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeb4532d8 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xeddbec8f i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xef0abfc0 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0xc5b5673f dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0xcf9bd56e dw_i3c_common_probe +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x035f5b0f 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 0x4ae40e2e iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x3ada3356 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 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3fbc605f iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4707f9f5 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x515ab3b3 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5265b794 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5a2cbcb5 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5c6fb8b8 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x81e3d6d7 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xaf54811c iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc4d1fb90 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdd85090b iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xef93fb20 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf8efd449 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xb32e63be devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x28880318 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa6df4703 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3457ff3c iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x36f27df6 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3ffaf4c9 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5f596d86 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x66c7dee2 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x77d0143e iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x83b6a750 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9b2de529 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa23897f1 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa6009d49 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb5d7bb4b iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe0e927b3 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xfe94c0e6 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x95c95e18 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x55d8bf33 devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x09b3f29c devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xe23474ff devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0dee68e6 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x10487e75 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1ae6dea2 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2cfc778f cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x49af62dc cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7e56e581 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8febeeb4 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x96c04539 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd8df5645 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xe6ecc59f devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xf3bd7d37 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x03c2f8dc cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1fd5f227 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x31bb7aa2 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x41727038 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5cf33dee cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x61f56242 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6a0bfcc3 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6faa797f cros_ec_sensors_core_init EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xab86a576 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc6dbbc3d cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd4e81430 cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x88f20942 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa032ef57 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xfc7736f0 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x13c94c42 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02445523 iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0788b9a7 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13328215 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x137bdfe8 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13c713c0 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b30a66f fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20988380 iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x251753e2 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd7c696cf cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xda33d1f7 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xeadb74dd cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x03d0f523 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb854015b bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe85c66d7 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x9c31dbf5 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0772ac17 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c0587c2 iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11f69bf6 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18458a1e iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x195f07b1 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1c88ac64 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d4407c0 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x219423a6 iio_update_buffers EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x284cfbfa iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a9fa510 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ad140e7 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b0a68ef iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x34a81f95 iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x355ba7a8 iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3907d77e devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x394275af iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e337368 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ebae3b2 iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42c2f7d7 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48947288 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48bf76f0 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b18ef97 iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4bf80270 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29493b89 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d708b80 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e85373c iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f0eb95d iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f3e4fc7 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33c9e896 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x370e49ba devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x381e69ec iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x393a3221 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48b5db1b iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d251af2 devm_iio_device_alloc EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x567aef7f iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x571d4bd3 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5de9ed1a iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x604a7459 iio_device_claim_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x756692e9 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7d206660 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x81796380 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84a13e2b iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ab000fd iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9643ef8a iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x965d47de iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9915f908 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a793569 iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b6fbad8 iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1d8a080 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa927cbba iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad285f74 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb80cdd6e iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcb04456 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbed90201 iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd1eb1c88 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5db488c iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd65c5d5f iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc906b5c iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xddbc6de7 iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe200030e devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe45bc988 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7cd0656 devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7ed4920 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xedcbf1e3 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf91e1e21 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x51cadeb3 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x560c2ae6 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58fe75e2 iio_validate_own_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c9b1ead __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x639c7f82 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6b1bf7aa iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f518a96 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72ae09f7 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x76c8f9b7 fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c1b070b iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x86a213e6 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x878fc913 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c467795 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92178fae iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9542617d iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x974906cd iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99e6ff26 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9c202938 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa40ffe7e __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa73435c1 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5bd6ba3 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5ca6d55 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7b727dc devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb8c40ec1 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6ed2ebd iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd4c7b9f7 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfabc611 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5352f1b iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7936307 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8da8fcd devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe92b031b iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe98bb85e iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0be64da iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf10d377a iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8bf5719 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff1c62cf iio_read_channel_processed_scale EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x049e6d41 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x05c7aeb9 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x385d0109 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5fb1d63c rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6dff6524 rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x90dc790d rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9cf5f055 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa03f87d3 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa138c252 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbc8a6b09 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe067fd2b rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeae19914 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x77d0a101 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x0799cb90 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xa689196e adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x03916127 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2c6075c4 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2f40964a rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x357b0038 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x45a29576 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x521ba135 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5d74bd25 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5e9a9ed7 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x69f398b5 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7249498e rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7ed7847c rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd84dc855 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xf2d4a32f input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x59ba2a44 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x848ac71b adxl34x_pm +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xb3f5deb0 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x139c1ab2 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x160b887a rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x44b16089 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5055a47b __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x533970a3 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5b655a9f rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6fda1e31 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x71b0cd0a rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x98841066 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa9b3b30d rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc7bd44ee rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe76ba2fa rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf4866c05 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x06ea7dba cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1d520beb cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb2fd87c8 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x04c106d1 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xb8ec5f1c cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4575b1a6 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xed68ae0b cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x48828ee0 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x795ee984 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc969ae06 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xded719df tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07c21bfa wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1aeeade4 wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1fdb7335 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x272e2088 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x28e1b798 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x626d57f9 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7d54911d wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x816c2824 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x81b2bd91 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xced80dd9 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe44bb706 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf9f5aa5c wm9705_codec -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x09c325ff ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2917226a ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x29465c9b ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3d018f9a ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5710bada ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5a3ff2a4 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x85968ec1 ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa883af55 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd4f4c729 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x25e83e2d devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3e3721be led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4fca0068 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6f28b1c1 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x70a5aba6 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc6df4855 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd9c2f9e4 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xef99b130 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x18dad0ea led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x3c484326 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x52b597b8 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x67104398 led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd623a759 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x56eb20fb rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5b9ee61e rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x60d6cc14 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x72963646 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x86081ed1 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x885f8580 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x983f27a6 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa273917a rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa9a41e06 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb7b0e8ed __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc97f3314 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf9b41f13 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfaae78c1 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa0cad0b9 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbe649440 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd766b78e cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5fb8e50d cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xcc5eecfd cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x292ee8fe cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb581d64e cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x608f2348 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x650dd3cb tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8286530e tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd66f5c94 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0e2e02e5 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3e386e03 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x61e7f9b5 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x66783960 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70501a03 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7377d9f5 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8d043488 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x915f8990 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9f264a21 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc284027b wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdf3a1f21 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf4631c97 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0978cb0d ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0ccc3f6d ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x103dab57 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x25895ccb ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x40635a57 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8a629a72 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc81abff5 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcc16463b ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfdef94e8 ipack_device_del +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x45943115 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5035d73f devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5bbfeb2c led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa87019fa led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb8b9e5d3 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc6261ca8 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc929badb led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdd950e75 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x821600cb devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8d628010 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xed2e065a led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf222461e led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xfa778b78 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/simple/simatic-ipc-leds-gpio-core 0x530319a9 simatic_ipc_leds_gpio_remove +EXPORT_SYMBOL_GPL drivers/leds/simple/simatic-ipc-leds-gpio-core 0xf4cb7e04 simatic_ipc_leds_gpio_probe EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get 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/md/bcache/bcache 0x021300e4 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02757bd1 __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04069fe4 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07048716 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a497a56 __traceiter_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x12368e01 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1753c101 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02d17bc3 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05545033 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ef655c7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1284ef61 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x130aa15c __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1351053d __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x136441d6 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16669463 __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1988c430 __SCK__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1a2f95e5 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x195c39e7 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19ae294d __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1a94a2cb __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b9563fb __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1e3c59d2 __SCK__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1ea2f6e9 __traceiter_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x20753cb7 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25274245 __SCK__tp_func_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25f070af __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x264a094a __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28866154 __SCK__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ac644a2 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2bd8b866 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x30adca8a __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x323e3b8d __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x33de5ae5 __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x34147728 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32aa1fe2 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x367dc9fe __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36a06e0c __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37b06442 __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3943cbbb __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3b8004b7 __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dd1d0de __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3fff3e10 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3bfcf752 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f35502a __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4067090b __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43b4a33c __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4cc0c028 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d09ef4c __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4eb6a07f __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x553e0a7e __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5622b6b2 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x573eaa1a __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x471da949 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x472aaa68 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d1b5def __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d8f9d2e __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e94a30a __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f368e2f __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58589231 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59298793 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59531e4c __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x608698bc __traceiter_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x61454da7 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6236119e __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x62b1d194 __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x657dccc4 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6595d892 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x671262da __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67b65ea2 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x680faa2f __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a0ee006 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b3f538a __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d2ec341 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d619582 __traceiter_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71864f47 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69c3768f __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a65967a __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71e371f0 __tracepoint_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76a62156 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7671bcaf __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a91d764 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b0f79df __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b1630b4 __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cc1b500 __SCK__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7e59f20c __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7ae10c8f __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7af391bc __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c688354 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7e7074ca __SCK__tp_func_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f33035a __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f38fd7e __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x800ec131 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x814c6c48 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83f84f49 __traceiter_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x860dc733 __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x878988a9 __tracepoint_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x89a50ce9 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90e2e8a6 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x891f39eb __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ca27c0a __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e8d7149 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8eac5b1e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90f3b08b __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94a0a0ff __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x950fd670 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x951b8b3c __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x99249b51 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x992ece5b __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c719d98 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cbcf007 __SCK__tp_func_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e8d6d72 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f38c427 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f2f280e __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5633b78 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5a3a462 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xacc652e7 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xacc6e41d __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaca9f240 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf3c2be4 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb30a9898 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae07916f __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae881893 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaee07efc __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1ddc464 __SCK__tp_func_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5cbdea2 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7353714 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9108a59 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb977ead1 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc41e309d __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4f5e84c __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb86d7f11 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba9a70d5 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb8793d9 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbdb414b5 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe23e10e __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe2b2fa8 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc04849d8 __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0610f4a __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4d5caf8 __SCK__tp_func_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8a79999 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc9a99e1c __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcccdb19e __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd66fc2a __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf8009ad __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcffb9120 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1e104a5 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd27b31d9 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd299e2da __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2d72dff __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd3940bc6 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6ca41bc __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd747f295 __SCK__tp_func_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda90ba77 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd824a353 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc81925f __SCK__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xddb04575 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdee85f22 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdfb09b17 __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xebf5b456 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd97b266 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdef91cca __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe28182cb __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2b1466e __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe398489f __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe4511e2f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe74ea4d7 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0b8948d __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf146519e __tracepoint_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf4ead642 __SCK__tp_func_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7488006 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf97d337b __SCK__tp_func_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x04b707ce dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x08cda331 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0f8ed074 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfdd5c862 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x09aa956c dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1c46f46a dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1f22d7c7 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2536296e dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x28269135 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 0x5303b114 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x45172044 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4e2f78a5 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a75ed60 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e8f0f68 dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6f1552ae dm_cell_unlock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7090c33e dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6f4207bb dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x75be1523 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x77e8f027 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x79bb15e7 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x91ca7290 dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa003423c dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x828e2cc1 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9ff3ed1e dm_bio_prison_free_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 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 0xc24bccd7 dm_bio_prison_free_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc956bd32 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcfc88b5c dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd6ab31e7 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcb1ed3b8 dm_cell_lock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xddbbda7d dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xded3d524 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe0a19a26 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xea7ce964 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf044ba48 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf61771d9 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 0x23c30545 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x656100cc dm_bufio_client_reset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6cdb2d56 dm_bufio_prefetch @@ -13789,12 +13841,10 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x91f00abc dm_bufio_set_minimum_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd79ca1b7 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data @@ -13809,34 +13859,34 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4becb830 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x50b3c64c dm_cache_policy_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5dafac9f dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5f802f7d dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65eea825 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x6b31f429 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xdbea9833 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0f44ec41 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7734dfe9 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2aef22ce dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9d4d7e7c 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 0x0e66c68f dm_region_hash_create -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1c25ba0c dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1ec520b3 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x2dc7a081 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 0x3b3f9f4d dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5049018f dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5a021adc dm_rh_mark_nosync EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 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 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa033f3f2 dm_rh_delay 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 0xb7085c1f dm_rh_mark_nosync 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 0xf826f032 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf0f49db5 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf2fd3979 dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size 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 @@ -13877,6 +13927,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bfa88c8 dm_bitset_cursor_begin EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c600395 dm_btree_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6fac2256 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x703aa099 dm_block_manager_reset 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 0x7612cd9c dm_bm_block_size EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create @@ -13885,7 +13936,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b6b3af5 dm_bm_read_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x836693c5 dm_disk_bitset_init EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87419c51 dm_array_cursor_skip -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87b20645 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x87c934be dm_tm_inc EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x88295b96 dm_tm_unlock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x8e057e61 dm_array_cursor_end @@ -13893,6 +13943,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x91baa32f dm_btree_find_highest_key EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9290e07a dm_tm_read_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x932a6ffc dm_tm_shadow_block +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x93bb8ef1 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x94daa188 dm_bitset_cursor_next 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 0x9718cffa dm_sm_disk_open @@ -13913,57 +13964,74 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xedf5036f dm_bitset_flush EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0cfedc2e cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0fa0a4af cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x14136299 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x26bc5232 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x36bdf353 cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x45373a91 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x49d5e0f2 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x658e14e9 cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x728a8046 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7c30fd82 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7df9eb6f cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9c2f6519 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x08917af4 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x13715310 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x258f4f26 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x495bb59c cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x57d8c890 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5821117a cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6218ed2f cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x64d8f1cf cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x65d2f996 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7dd34f35 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7e41de07 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7e593d43 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8f4cf571 cec_transmit_msg EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa7a60253 cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa7cbcfba cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa60823f8 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xabc9f24b cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xac400456 cec_queue_pin_5v_event EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb506228f cec_notifier_parse_hdmi_phandle EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcb2e1ac5 cec_notifier_conn_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcd21b478 cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd34c4a3b cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd728a76b cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf89a0b75 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc68b9653 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc82f6b78 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xcead4e30 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf9b1bb24 cec_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13e6aa47 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x013f0eb3 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x11e0a663 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x237b75b1 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x40e86364 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa362729d saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xabe7da59 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xae1172e5 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb8a5dae4 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe811cc94 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xec0ad5ef saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x51647505 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5aaf9ff3 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x609166c1 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6785c767 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8682ea8c saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1b643100 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34670e5e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x224911b6 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x25841763 smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3fb1cec6 smscore_register_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4a7b712a sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x51bcef0b smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x59d804d3 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c11b1bf smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x70f2afd0 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4707f024 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4ea26519 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x553fd1b3 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5b9b4a75 smscore_register_client EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9cd40e47 smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9f6bd7fa smscore_putbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xac8618ba smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ec4a959 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa15d17e7 sms_board_setup EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc73260b5 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcd89820b sms_board_power -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcee9bd5d sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdeb4506c sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea2963b5 smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf4da9e45 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfc7b7ad4 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc31a2cd8 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd2a02215 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xda449e90 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdc584aac sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdd286565 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe1bfe5c7 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf0ccc6ab smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/uvc 0x08c5db3e uvc_format_by_guid EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane @@ -13981,306 +14049,429 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x219fdc81 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21a2103a __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23bbd8e9 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x014e08c0 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0bb352a7 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c369ae0 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1b2845de vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x226d1210 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2ae91f08 __SCK__tp_func_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b5551d5 __SCT__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x304d60a6 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3868f7d6 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x391a2d0b vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3d1a7c3c vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bfddc30 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c906015 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3a4e276a vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c7d3fa7 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x44510dd3 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46d2cfac vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4a237caa vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bfbb92a vb2_queue_error EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ed3fb1b __SCT__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5071e061 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50b3c963 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5175f604 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x54336def __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6355b06c vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6dca4932 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e205e33 vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e6a0d8d vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x725fead2 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7446577e vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x766580eb __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d3882a3 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x86ac8af5 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x87a94112 vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x88e1ae16 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x920fafa1 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa1613761 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2e58ba5 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa7cd25ad vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa909be76 __SCK__tp_func_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb185e52a __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbb3efb07 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbb56ce9f vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc1df23db vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x535c3f60 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5c6547b6 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5d460821 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x63991224 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x67099787 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a8005e3 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e163919 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d96a649 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x82fdda3d vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x95c2621d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96a33a0d vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa16b0b4e vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0763049 vb2_core_queue_release EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe4e3db30 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe4fca5c1 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe68cb772 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe7f3852f __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x985a58c1 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xca2f36af vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x6b719a0e vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xbf7a73d7 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0375f0ec vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x10d85c0e vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x22e18f7f vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x29830643 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3985705c vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x405985fc _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x40a383be vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x43320fe1 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47d73d7d vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6760b594 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6e14b99d vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6f1ab9d7 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79cf7d85 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x88b69aea vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x914eb6b4 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x966397ba vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x991862b5 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d133d4a vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa7df2d70 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab0764b0 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb8ec9edd vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbc98081f vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbec4f1f2 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc0e918fc vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb6a7898 vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcd3c0e36 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcee4d10e vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd490caf5 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd497a4bb vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd634e6eb vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeb6d6d53 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf4919d24 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7bb6499 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfdf0bbbc vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x9e0e26a0 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x51c6c09d dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7ec21939 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcf23a5dd dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x72991554 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x21810ce4 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xc0d7bef8 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x3610e8f6 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x5300dd0b stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xeb21a955 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x04c00451 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x7a6fd4ba aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x48bf3105 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0e52aa4b max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3f5a87d5 max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3fb5a728 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5842abb8 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x791c0d8f max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x878a0319 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa0396e42 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb27b161d max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb90f6fe3 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbdf704a9 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc05a4d57 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe5524791 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe901c1f3 max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x04eae85f media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x084472b1 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0a48a92f media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e8a05d5 media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x159faab2 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21f864b6 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26b5723c media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31652346 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b1b5479 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3fb944f7 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x415a2281 media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x46fbeb58 media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c76fa54 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x50cb91a7 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x58c382d2 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6521034a media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67c5daba media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x684374bf media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x69194c79 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6ab125ec media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c0ea050 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d849670 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x72c4b808 __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76fb5a4d __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7ec46d82 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7f4d8211 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x887ed0e1 media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8bcee259 media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8bd8de85 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x91f2f7ad media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa0fb5510 __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1fdfb15 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa4d1929e media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb328c0a4 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb334329a media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb354d599 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7da9c77 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8148121 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc0da4837 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc1796945 media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc2573a53 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc311ddbb media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc42cbc59 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca4a346c media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xca585fdb media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdcc5350f media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdd5a7231 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc9d7c1ee vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcd2f34cd vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd3da89fc vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd4da5670 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8ff2d52 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdc5d812b __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0de039d __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe7c74421 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf39ec370 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf4503f81 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf49567be vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf568d924 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x429a6bcc vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xbdbd326c vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xfea20fea vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x545fa229 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x057097ee vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d8deee4 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x13ab7fad vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x174f7d5f vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18d9278d vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x193b6033 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a676181 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32caa4eb vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x418a8bc9 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x46cc9add vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x556c0c63 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x678be2e5 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6856b647 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6c83ebc4 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74794c0f vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7485e8fb vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x764b26ef vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x794f4eb0 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x86a4e5fe vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x86b68e3d vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x88fdef59 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa8e71c3e vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa940972b vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa99087f9 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb3e45511 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb57309ca vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc5f31a05 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcf381a52 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd53a34d3 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdb819aef vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdb8b2cd7 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe925cca5 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2efd2c3 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb6a572c vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x39fcd354 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x236c5e3a dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x28f04d07 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x4df53140 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x95e69cde as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xe10423ea ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x21b3fe29 atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x5677a3aa au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xf9413192 bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x42bd99e6 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0xe0b971c0 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xe6b30e49 cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x44ecf706 cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xc8d64227 cx24116_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x0dc38a4e cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x82986783 cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0x2871dbb8 cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0xdfc91731 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x61fe79a3 cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xeeb98671 cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x3699b12f cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x6dac4779 dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x5bb7f075 dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xca693816 dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xfd41efde dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x11ac3fb6 dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0xb34d7f50 dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0x0c9a1120 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x6f4cdc23 dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x1bf4593e dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xd8658347 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x5325b94f drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0x2dab51ab drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x28ce09aa ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xc2a75b66 dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x79db1ab2 ec100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x5396e95d gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x2fa9f525 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x7b8c4e84 helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x6487d4a2 horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x2df893ed isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x2256dd7e isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x6ad2cead isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0xed442b38 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0xd8891d0f ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x47dbd64e l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x241fd99b lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xd440ee24 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0xbc6dff65 lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x3090ca2f lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x658e6548 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x67a03866 lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x9efc1f3f lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0xb81a2750 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0xf05fdd8c lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x22ce7e8a m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0xc0cddd9b m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xca88d80e mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x3fce3bcc mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x83cf42a8 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0xf526e4c7 mt352_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x7f2bcb7d mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x8acfc0a2 nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0xdbb118b1 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x7c430874 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0x030103d9 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x775c79f4 s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x0b44e717 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x21acfbf7 s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x8546ab88 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0xc895a694 s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0xe1f42c10 si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x3332e2a9 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x592098b9 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0xdc2c4901 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x7eead3c9 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x3aa61b3a stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x20de0be4 stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0xa3416a43 stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x20f477ed stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x53802488 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x873c91ca stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x8dfd8754 stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x351fdaad stv090x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x3999920f stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0xae084f22 stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x73ee4bd2 stv6110x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xab3cc011 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x2bfa6d20 tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xc7e7e818 tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0xf244bdb5 tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x02e6ff41 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0xf685291b tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x37006c8e tda10086_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x0b1a3d77 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x9d063950 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x5dcc4137 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x949b6a57 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x79424f81 tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0xdf71cb87 ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x7a16bc64 tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x00b6589b ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x7715c5ae ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xb71eca29 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x9896172e zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x40e08bb2 zl10353_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xd9b9a319 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x9af7a5ab ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1d6bde9b max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x40c2d306 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x718d00c8 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7600eea3 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7cbbdffc max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x84557f75 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa7512570 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb1b97e55 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb4e99e27 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb9f78c56 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc1eac596 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd0ef7dd1 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe5ab86f5 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10b3db84 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1245dc0a media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x178defbc media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1aca915a media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b410fc4 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x209d719b media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x28e12141 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43874b68 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43ca12fc media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x468c4e50 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x46a2d046 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4801d684 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x54927834 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56e7dde2 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57b1d9a2 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b4f7227 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65dd67e0 media_pipeline_entity_iter_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6afba5a2 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76af2028 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77543546 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x785a1121 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x78fd66db __media_pipeline_pad_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x840057f9 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x85355fc5 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8cbf7298 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8fee4463 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9462bc82 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x967c0db0 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a3c581b media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9b41e2a5 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9cfca733 media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d21b71d media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f10d8b7 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa24b1b94 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa39ef71e media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9946be7 __media_pipeline_entity_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb2842950 media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb728982e media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7efb4d9 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb9ad11ae media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc2367da media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc01331f9 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc1ccb4dc __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc2fb8f98 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc678d39e media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd06e1198 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd16a7a83 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd3575639 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd429690d media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6223f88 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc5aadec __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0240de1 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe4400d34 media_graph_walk_init EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeb1e255c media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xebf5125b media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef410a51 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef7c088c media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf1a044c4 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5ffb6e1 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7172968 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x49f321e9 cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x190f8827 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19873028 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5329166f mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5422c069 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5bcf7206 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x60264902 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x608cbf27 mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x73dc7fcd mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9c05d23e mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa00c4399 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8629eb2 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaea07d51 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xce154c7c mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd59a2505 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7ecfda7 mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xec05c6a3 mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xee731e01 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef3b89a3 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf06a6dda mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04b38a33 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0542d73e saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x36bb8552 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54d52f94 saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5790958b saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x58cab8b0 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5da392c7 saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x69f207b5 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x833c5373 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x83d2d1c8 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x89944e84 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ed2878c saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x911b24c3 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x939177a6 saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x98de0fe2 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa837c9f3 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc4dfc1c1 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd303a88c saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf98cb1bc saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x3ac7b89d mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8742962c mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8c1d6a5b mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x90d152dc mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xaacde2cb mccic_resume -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc8f7446a radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xf159ac2c radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x50461a67 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8d6e24d1 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x91538ba2 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9c695bc1 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbd75fb65 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x05df162d rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x15d2f844 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f7c7413 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe6e9b466 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe8bc369a media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xea676ea6 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7ec1dc5 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff46990f media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x03a09fc3 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x7878ee85 dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc6f5c8c5 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xf82e53a7 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1009e5f9 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x38534fa7 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x42b2d1ff mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4b803019 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4febc39a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51974660 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x52cc0fe6 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x62da38c1 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6bf43c6b mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x83d16ec4 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8aa6f947 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8e0b7737 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9549645a mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa41e09f1 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc266a255 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd1e95154 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd582a2d7 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb4c0b1b mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeba2dc29 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0a013d24 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x20894bd6 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x30dd5d20 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x30de9a66 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41656bbf saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x515d2de5 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8132478d saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81d02ee4 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x877c4642 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8e5c348d saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa573465a saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xae2b0b31 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb0492619 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4c9af7c saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc8a56e7e saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xda66f051 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe0954308 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee4f0c96 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfc1a3b75 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5a9497d0 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5db8b659 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x89f24275 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8a851479 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc8f481a0 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfc9dd0e3 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfdbff547 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x13b13c6c mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x377ee5bb mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x4893c9da mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x84f636bb mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xb69a3e7f mccic_resume +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x10bc1b47 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9f01df4c radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2babed08 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa82fb8ab si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb5e45cd2 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc4946839 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc749feaa si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x09942834 rc_unregister_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f581950 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39358345 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4fe424e2 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5499e9f7 ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5b86d6f7 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5ba7c610 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6313dccd rc_g_keycode_from_table -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6df745c1 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7395f336 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7bf9c162 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7daea453 devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8a5837b1 ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d7b5113 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9e854db9 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb0842f42 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3574fbe7 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3e585d21 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4428dd07 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4e3906e7 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4e653eb1 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4f1a349b ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6803a509 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6b3b7099 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76933b39 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x78a928ec rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa21a601d rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaaca14a6 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb44c9716 ir_raw_event_handle EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc519d4c5 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdeff6932 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0b50186 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfb15b37e rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x69f1956b mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x4e32832a microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x03ba71e9 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe4bb9e5f r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x637e022f tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xfa158721 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x24420280 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xbf651905 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x10495e0f tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x36a858c0 tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6ed785ca tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4ad684b0 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xaccf9991 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xca4706b7 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0xcb319213 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x4ad3e37b fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x21101d05 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x2baa2178 max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x86353376 mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x178fbbdc mt2060_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x2f05faa5 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xee4990ca microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x9840da75 mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0x6d67e138 mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xe690fa7f mxl5005s_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb5f4ff3b mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x40cd2448 qt1010_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x97b9b48e r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x430162e3 tda18218_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x52504cf9 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x4409905f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x68519933 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xce79c321 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x5054374b tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x76b53184 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x9eca682c tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0acbedf4 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x54478b54 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x84d3bc1e simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0x723d1d0a xc2028_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x489fba92 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0xb93b1be3 xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04a76646 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x064b5d88 cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4d1d734f is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x602dadb5 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6e3bc7db cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75cbb4f4 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c9c2a08 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8b44ba8a cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x907db43c cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x94fd8a69 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9abc6441 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa37646b4 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa653f8db cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae311d91 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc09401d1 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9a76a18 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcac1c6aa cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe21e718a cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe935bf31 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf5b1be1f cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x22c1d129 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x35c545a5 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0e60461a em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x12dc5458 em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15e93e88 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x22581483 em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3191139a em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x325a5b7d em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x45de0a4b em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x548f1ca9 em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x580cea1a em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ac0da8e em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x693e777c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0cbfb31a is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e2c68a2 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0ec33849 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4610a13d cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4769e17d cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4d3689b8 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x56c36ea2 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x58b3bebd cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x629b2f63 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8272ca1f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8e17db7e cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9767de2e cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9859b8a1 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c85648e cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa04fb3a6 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa15b3c15 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa1cd4cad cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd20222ae cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd5b63909 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd6987d10 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xe9a2fecd mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x82c6c951 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0d97fffd em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x224cfeeb em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2988ab8c em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e0eb260 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x347fd5fb em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x384e0981 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4bb950f8 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70fb1d3b em28xx_read_reg EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7ca6896a em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e7d10a7 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x77442787 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x780fbb22 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7c1d315f em28xx_audio_analog_set EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x83ec4a82 em28xx_write_regs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b4e0796 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3585e52 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3665ce4 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf102a16 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd3c36847 em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x088b1682 v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1c321e0d __v4l2_async_nf_add_i2c -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x36550829 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x956de04d __v4l2_async_nf_add_fwnode -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xec992029 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9c34989c em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa9cea736 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9b7aeeb em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbbb6c3c7 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdcd52e30 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf7ffcaf em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x037a400e __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8e082ce4 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa18bf4b2 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xadc1f70d __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc3e66d9f __v4l2_async_nf_add_fwnode_remote EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x1b4af4a6 v4l2_hdmi_rx_colorimetry EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap @@ -14288,410 +14479,425 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa22fbfeb v4l2_hdmi_rx_colorimetry EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6ef45dc9 v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8ac39034 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa6b650e8 v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3a856710 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4710cc26 v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5d54eb4b v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8d31ce0a v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa86d855a v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf597343d v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x17f0956c v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x23db7a4b v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3ca03123 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x51c9e57d v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5d435c12 v4l2_fwnode_connector_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8c5b51f3 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8e79ed4a v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x9218cf33 v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xadeb36d7 v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xda13b0e5 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf37f3423 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xffa4aa8d v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05b13ade v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0741c675 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0aeddd3e v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e538c56 v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1a40efcc v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ae2b493 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1bfaf7c1 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24e2f06a v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a8e0a78 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2bbf3f18 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ffde21d v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32d65b03 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3944769c v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39ef1fd2 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e88ffff v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x497802f7 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e3116c1 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58b5194b v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x58ed071b v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61c25152 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x61fe8271 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c4f3735 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6dbc85d8 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x624f1648 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6cff0bb1 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x86a8b86d v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x969a6b62 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb0890878 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x055126ba v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x057e5484 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x05dc2977 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x109c02b8 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x10e91aa0 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x16240590 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x174a6a49 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24759acf v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x249c1434 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25004246 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e02c42a v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f4d95ec v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3dd34d90 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x429ff6f2 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f492278 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x50d2c6d0 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56ce7013 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cd36d03 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64e9dd28 v4l2_m2m_ioctl_encoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73f505ca v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x74fc7fec v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b590cbc v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e8c0417 v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88d5b929 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x95d22d70 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa71b4d91 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb084b779 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1b2822e v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1b72c84 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb65486d7 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x77714d75 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c39bf60 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x83dcec88 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x83ee362e v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x856a1206 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90e3710c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x95b66fb8 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96159fa9 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9aa13966 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9aae877c v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9bc06abb v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa96e3a01 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xac4c8090 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb4751d12 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb68121e5 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbed242c6 v4l2_m2m_try_schedule EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcff4e7c2 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1a8d8e8 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd346f6dc v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4b98374 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe32176c3 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe437d7b7 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2f5490a v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd94463cf v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd97a60c1 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2f148be v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe53ab591 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe7f03931 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0e42440 v4l2_m2m_last_buf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6af3d85 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbf5e522 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe09edcf v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe18f14a v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0eb90440 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x11a79d19 videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1e3b4f95 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ec6a52d __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f5e9392 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26365353 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4f0772a8 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50a9980c videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57635516 videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5e582a78 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73c57f28 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7411866e videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82069525 videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8be994b4 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a4d63df videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9d30d695 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa212eb0b videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xab8f7729 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb56d6a48 videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc74e8564 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0c9287d videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2714024 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2b1baac videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf02e9f0f videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3f99e5bf videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf830aec8 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff034fd3 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x09cca6d5 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0c2c1f25 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c553a9b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d1216fe __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4fcec9d6 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50ebb2d7 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x636a6049 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6952716b videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a8a0b0f videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6d613dbc videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x706db851 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7829eacb videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x807b91ee videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85e3a301 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8c5abb11 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9cdf098 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaf4561e1 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb6e3c44 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf5803be videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc523bc7 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0e00b4c videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe5a40598 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf651c785 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfbbfa23e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x30cf9f03 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x4a018a76 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 0x6bca421b videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa43dd069 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf44c9de9 videobuf_queue_sg_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x632586bb videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x691ad994 videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc347aade videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03daec92 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04240483 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07ba58f4 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09025cf7 __tracepoint_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x092452a1 v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10ead6aa video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x175a03cf v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ba6624e __video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1c29a6b2 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1cc056a8 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2020334a v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20639617 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20e0676c __SCK__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25f7f81d v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a27ee96 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x332727f8 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3549f5c5 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4908c356 __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d688492 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e03844e v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6a96165d videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa207e231 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09b1dbb4 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c1598e1 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14ceb86e v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17307f0b v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x195d2ddf v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a5631c2 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ad2d928 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f0cf11c v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20d9b76a v4l2_subdev_s_stream_helper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x211dd0ba __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x239d4ab9 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x292a7c61 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b3ea225 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e58dc94 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e9d3d66 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33c8289a video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38a255b8 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c174f6e __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3eefcdfb v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4566ed82 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4894cd55 v4l2_subdev_state_xlate_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e6ea7a8 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f9088f7 v4l2_device_unregister EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52b4c3b4 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x544fb07d __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x59084cea __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a5fb433 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f75dc5b v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x600fecbf __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6349dcc6 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x653c3c54 video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cff4bac __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51198e2e __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x540d5f6d __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54de9e19 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54ea0b7d v4l2_subdev_set_routing_with_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x558fbab2 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ee409c3 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x61da6128 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x636ad808 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65d7839c v4l2_subdev_state_get_opposite_stream_format +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66dd82ba v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6fa6db1a v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80283237 v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x832246dc v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88565e80 v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d1d5f32 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e4acdcd v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x998cc5c1 __v4l2_subdev_state_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d15b00c v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71cb9894 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b6ee763 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ba10ea3 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c94fd5d v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f0d6159 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83950e85 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8774879f v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c243c3e video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e1a3f53 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8eb0a687 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x982f301a __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b4af70a v4l2_i2c_subdev_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa09f3f8d v4l2_subdev_disable_streams EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa28a9a9c v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4555ecd __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa63741bd v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7049b5e v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa71d487f v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9175548 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac33a58a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2750515 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6aafaf5 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa75e904b v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2cd8b v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb1d0366b v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3bf257d __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb44fa883 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb75f7ad5 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbd6b00fc v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe9f911f v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc01541eb video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2f37d6b v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc60fc492 __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6efce60 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc85ba9b6 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae153e14 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3dd8d6 __v4l2_subdev_next_active_route +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaef8e2e5 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xafd07325 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaff12bc7 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb45086f2 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb56c4265 v4l2_subdev_routing_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5a337db v4l2_subdev_state_get_stream_compose +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6f62e45 video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7e3b0d5 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8119b5a __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe4dcbf4 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5719476 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6b1af65 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc86897a7 v4l2_subdev_state_get_stream_format EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb013e21 v4l2_fh_open EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xccf9056c v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce0d59f9 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcec901f1 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1ff8892 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd2bb5d55 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xceda68b4 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754c8f v4l2_subdev_routing_find_opposite_end +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4b01496 __v4l2_subdev_state_alloc EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbf06754 v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdce979b3 v4l2_mc_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde8af359 v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdede02f4 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0c685e7 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9540db4 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdae9ef0f v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd2ca423 v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd957571 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde6e37d9 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe175e22f v4l2_i2c_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4dd6d4c v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5009f49 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe75918a2 video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9b0e2cd v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee441eab v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee9465be v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf24fe762 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5595cc5 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe56ace0e v4l2_subdev_has_pad_interdep +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5fb0533 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7d5128f __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe890f74d v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9d9657f v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed6c9ccf v4l2_subdev_state_get_stream_crop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xede4b757 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeffa42a8 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf07c70d2 __video_device_pipeline_stop EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a81e81 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2ba1c03 v4l2_subdev_set_routing +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3318a79 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4bc6e05 v4l2_event_pending EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa31c947 v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcfe82cc v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff4cb211 v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4b11df05 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc705e815 pm80x_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8b8b712 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc5ee766 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd209dd3 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x21788a1f pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x6bcc7885 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x833b6521 pm80x_init EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe73048be pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x031f04f4 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x045da342 wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x15e70b17 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4571ce54 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4765620e wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x54de01f2 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5a6c2482 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x74f51576 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8808a387 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8cb435f2 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xabc4e0c7 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xba363633 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbd2c2b68 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc32aba77 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc9ffb255 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcfa79e1b arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe6f4fbeb arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf90ef77f wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x76afb237 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x77339e54 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3fc97982 da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5cad873a da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5efab05e da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x70890def da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa2b45fb0 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd7b4710c da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe259a2fd da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x44fc50b4 intel_lpss_resume -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x58361873 intel_lpss_probe -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x60354389 intel_lpss_remove -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x96ef1f89 intel_lpss_suspend -EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xd7c71372 intel_lpss_prepare -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x5c91b063 intel_pmc_gcr_update -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x8a0f6a99 intel_pmc_s0ix_counter_read -EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xa238dfb2 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02b2fecf cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x05096e78 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1949d8fa wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1ada42c7 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x212eb6f8 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3501187e wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39419a43 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4631af34 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5d65f1c8 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x652da262 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x80bef0df wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x837c432b cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8de0f8c8 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaa902dfd wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xacd2865e arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbb62fb09 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc783677d arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcf2fdf62 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3fee6a6 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdddf1dd8 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xde909a48 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdfbe649b wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe3eae8bb arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf85a3a45 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x2d5ab850 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7717947f atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7c245a7f da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94cdc3c0 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa8819f6b da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xae29bcaf da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb8e0b974 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd2189648 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf1ca80c6 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3ae45361 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x8dffa686 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x964593b3 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xb3139d23 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xe09dada0 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x87572b25 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x941b554e intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xc2edfd19 intel_pmc_gcr_update EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0fd0de64 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x21d83b0a kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x78b6518e kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbb4a74ab kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xca91d816 kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe30bea89 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xebd4d4ff kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf938aa70 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1a6cd481 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4857f319 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5c59030e lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x30a388a4 lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x454f83be lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x48ffa45a lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5d2184ee lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x74a6ea75 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7cfe8ad4 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x878e0748 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x10999929 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x88592e98 lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa139c921 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0781f83f cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x078c247f cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x246a8e7b kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x28d9586b kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3f240919 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x688bcf20 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x903c617e kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9c926eb6 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb3911adb kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xccdaa0a2 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x764e26cd lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x78e951f3 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd672278d lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x02d6d608 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x693e093f lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x90c7804a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc04c8b30 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xea927986 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf26b56d4 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfc8e3a84 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4a93d49f lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xaebc87cd lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc98661bd lp3943_update_bits EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1aa70f0a cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1aaad34a cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1e8bbf4a cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2859d174 madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2a7dc6de cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d2614f7 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2d2bc8b7 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35d88e2e madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35f36347 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35febf07 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x44b4e533 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x44b93973 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x59921206 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x599fce46 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x640829a8 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e1309fb cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6e1ed5bb cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76c67e4b cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x76cba20b cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x839abd55 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e774fff cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e7a93bf cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x909d21f3 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd4252f3 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd4f8eb3 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd63b341e cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x190577ab cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1908abeb cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a306aa7 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5a3db6e7 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8d02d9a3 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8dd5375e cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8dd8eb1e cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8ed0e67c cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x90f3c06b cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x90fe1c2b cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa2815b13 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa28c8753 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaf62fcd9 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xba542ca3 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xba59f0e3 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbc78dfda cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc52e6867 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcee02a52 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xceedf612 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd3c6dd67 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd3cb0127 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd8702de2 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe1b4461f cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe1b99a5f cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe455999b madera_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3be00167 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb54ac109 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc299064d mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc4032dda mc13xxx_adc_do_conversion -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe7ff7f41 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf5f08a29 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1a84af40 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4956b6e0 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x65516fca pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x683e486d pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9f3db128 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbb40610c pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbe887657 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc8fe40a3 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe25b751b pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe4df1dec pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf65fe688 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf8c6b479 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x085b1dfe pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2cf56bf7 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x219d1911 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2afb7fd7 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7800ed81 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbe0d5f9c pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xde19be64 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xed8a1e65 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf96131af cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf96cedef cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x631d8bce mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa1dc5b30 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb3d3ae58 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbc3fc6b6 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcfa0de32 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe1661010 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1bdd0b95 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4814c48b pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x49827e6d pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x49c2ffb7 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4bbffc2d pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6582bc2c pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8ce55399 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x98f013aa pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbbf42ab8 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbe8821f5 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd1fc08ad pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe3446730 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8ba3b4a0 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe130c89f pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x41fb841e pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x976cf683 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb1a2a36d pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb5851857 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc827d50f pcf50633_gpio_get EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xde8a0388 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xe9d59c5c devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01681f5a si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x01f7202a si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02ad35c7 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x113d32c5 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14e25623 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x19c84dcc si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b1675bb si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1fa11694 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x208af6ad si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24521570 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3583391a si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3be45ebf si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fcc3053 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59c0db6b si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6bb5c49f si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6df2eeb3 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7bbe8920 si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86e81378 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a40fc57 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa333c778 si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa824893e si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb58408f6 si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7a9a081 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbdbdbe4e si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc14b451d si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccae48d8 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdcebbf8c si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd56aa12 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3be1e16 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeacaa2f5 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef8b489b si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7c9c82e si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfbcdcaa8 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfef2a8db si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x02b2275d sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0aa9634d sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x43e66783 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6e3eecf7 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfe1de5fb sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x119d147f am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x79b52fa6 am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7b07d2f6 am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc7da1a3b am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xd24866df ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3d0e0edf alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3fd64db2 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x487fb40e alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5e1cc6f9 alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x88b84f2d alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x97b6f895 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc6b0bd35 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0862cda2 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0c22bcfd rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1409414e rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15af9d46 rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2b11f24c rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x412cc841 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5225cb44 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5fc4d675 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x827032e7 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x86b85d8f rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8737a28a rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xae0c04f9 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbb571342 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbc778311 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc9353cf7 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd04e5b5f rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd279c78c rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdf0ad9bc rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe09675a9 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeaaa0660 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed26d26d rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf4912dcd rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfab6e4db rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc64e254 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x011663cc rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x04e8f071 rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x05339689 rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x109682d2 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1fcc76f9 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3d31a7ea rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5061d544 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x724f2b7e rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8e2fe777 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa2eacb32 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb74c6595 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc076ab0f rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe5a87b85 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x37f81a26 cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6e525dda cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa37df383 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe261d4a4 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0287755a si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d5f5dd8 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0eac6f95 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x19d3874e si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x19f945e2 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2332a0c1 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x294f7c80 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2de017c2 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36ad37f5 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b58820a si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43d34161 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46a20426 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46e06c40 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b2c1ef5 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b767197 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x563df592 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61b7bda3 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x61d0b5d4 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x707f3e87 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x88adcd26 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x940fc64f si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e46a71e si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3d855d8 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6eb3509 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc15877da si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6a35339 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd8442a3a si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeac7e864 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed360d59 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee669d56 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2939f61 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf66861f1 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf726020a si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7474ec5 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2da166e1 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x46dbece8 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x85ffb8aa sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x896cebb9 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9b44663f sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x330b1c70 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x472b8c0c am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x75f728b8 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa72d6721 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x6ea5e31b tps6594_device_init +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x8499fea7 tps6594_is_volatile_reg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x23888dd5 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x353ebe37 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3e485286 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5777e23b alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x67881317 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf3b64866 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf55b536b alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x01adbaf9 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x11deab7e rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x227a7d28 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x26461652 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3450347f rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3da4834b rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x408bbf46 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x49758bde rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x52847e8a rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x53b61dd2 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x54fa35b5 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x59a5747c rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x69058f53 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x71398e88 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x76692a26 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x81484c7a rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x87f1d87a rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9149eda8 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9b51544f rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb19415a6 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc94f91c2 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd4abea45 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xda077d7c rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe00f3539 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x073bce38 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0a2d97e1 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2b17fd15 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3aa92b40 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5124a38e rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5c10b187 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9093d54d rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa50b23f2 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xac10c719 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb0620793 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbc76fcbf rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbe5f2ca9 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc74a2fb2 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x13c4a0de cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x485e5d6a cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8ee46428 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb7595384 cb710_set_irq_handler EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14705,64 +14911,64 @@ EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0f85750c enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x35defe1c enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x60314d77 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x80b23d52 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9d7162d3 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcf8c7b24 enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xda03e50e enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf5644ca6 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x058ce562 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x05acca5f lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x12c51b95 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x757ea8db lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x858354fa lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9da70bfb lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc8725c34 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf06fafb6 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x043dc586 mei_irq_read_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x06473923 mei_hbm_pg_resume -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x06d1df9f mei_cldev_driver_unregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0782a2ee mei_device_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x117c4844 mei_cldev_recv_nonblock -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1226cb9f mei_cldev_recv_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x223ff669 mei_cl_all_disconnect -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x23431c02 mei_cldev_dma_unmap -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x25e2d1ab mei_cldev_register_notif_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2dc540fe mei_cldev_send -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3a8fc707 mei_stop -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3c7507a4 mei_start -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3f6f5cf7 mei_cldev_recv_nonblock_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x44e6ca6b mei_restart -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4e4bc8f4 mei_cldev_enabled -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x51515e48 mei_reset -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x55a012ce mei_cldev_register_rx_cb -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5e6ac38b mei_cldev_send_vtag -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6651bcbf mei_cldev_dma_map -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6a7aa646 mei_irq_write_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x71166cba __mei_cldev_driver_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7492e212 mei_cldev_enable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76808260 mei_write_is_idle -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ee03ee0 mei_cldev_uuid -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x881c12b4 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x14892485 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1a0363cb enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x21702381 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5cd7d653 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x63e91640 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x88e87046 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbc69b957 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xea9a8126 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4f519187 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x50224b5e lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x73253c40 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7e3aacb1 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8231d3cf lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbb0a5d34 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcb1f1c7e lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfff17f12 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0afdec76 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0c5c0f2b mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x11c5bb20 mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1447e934 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x17c2d9ef mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x18a6b4ab mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1960145b mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1f0fc792 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x215fbc7a mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2823cdbd mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x31e39c02 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3efa687c mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x63afd27a mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x699f676a mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7a075308 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7fbbbbd3 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8dbb7ae8 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x902ccfd8 mei_cldev_enabled EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x986c2e38 mei_irq_compl_handler -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9a456376 mei_cldev_recv -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa968ab38 mei_deregister -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaaa94766 mei_cldev_disable -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaeec0722 mei_cancel_work -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc2915bab mei_cldev_set_drvdata -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc917b6a0 mei_register -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd33865b4 mei_cldev_send_gsc_command -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd78e6b13 mei_cldev_ver -EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe664db7d mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa4785823 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb2763f4f mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc64c18d8 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd4af9542 mei_cldev_send_gsc_command +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd57e79ad mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd5fb0983 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdcadf44f mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdf38eb25 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8368a49 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe9424a7c mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe9bc842f mei_cl_all_disconnect +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xebad6efc mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xec9b4816 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf21ec6c4 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf5bc8ea5 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfd0996c8 mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfea17ff2 mei_cldev_set_drvdata EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x051f202c mei_me_polling_thread -EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x31261776 mei_me_dev_init -EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x4e086a89 mei_me_get_cfg EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x922c6ae5 mei_me_irq_quick_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xc334c8ed mei_me_dev_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xc75b3d26 mei_me_get_cfg EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xd0eef98f mei_me_irq_thread_handler -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xd780aa1a devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xeb4dfdfe devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x5b8bb699 gru_get_next_message EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x8dc51bdd gru_create_message_queue EXPORT_SYMBOL_GPL drivers/misc/sgi-gru/gru 0x9c7283a1 gru_copy_gpa @@ -14784,1736 +14990,1867 @@ EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xead4f7fe xp_max_npartitions EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xed1d3813 xp_socket_pa EXPORT_SYMBOL_GPL drivers/misc/sgi-xp/xp 0xf3b47f67 xp_partition_id -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x3a8dd3bd st_unregister -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x9d3ddcb4 st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0d53b752 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x51040b74 uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xc57becf9 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x675e2442 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xecca78ec st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7eff4b64 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa747b4d9 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xb4bfbfcf uacce_register EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0ef16014 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4d09d9c6 vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x694caa9a vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8cdb48eb vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xa39877cc vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xd9b50f99 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0164049c sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0d4c575c __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f15c75e sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18a1e945 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x225760a5 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24a9b428 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2cf405a9 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2e70ecd8 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x32a2c911 sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38ee7ede sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3cd8ca98 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x404e9112 sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41b3c125 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x44526755 sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46fa9737 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4829dd84 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4834b283 sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4bda8417 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5634b2cb sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b6bd88b sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5db36df9 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5db58524 sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a7baa53 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d0a1858 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x745fb2af sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7a9d631e sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ed32f5a sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x813a76f6 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8dd666d3 sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8df00398 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8eef9abf sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x91c650ad sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4af4d92 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb0029940 sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb44c020e sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdef746d1 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe71f610b sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe776291a sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe7fcd294 __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf30b6dfa sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf39c2396 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfa17c45a sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3fec1fed sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x51071d22 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x65fa7a7b sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x725ef991 sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8959bae0 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc538e511 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xca7b06b4 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xce8781c6 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf4aa1ac6 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/most/most_core 0x444904a1 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x51763c0f most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x524592ed most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x75aabc17 most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7b1f6ce1 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7f3631bc most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x9fde5386 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbbbf98b7 most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xc7c2d706 channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xce14b4a6 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd4ab1b21 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd804edc2 most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf2095252 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf33bfde7 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2d74414e cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd06a64d8 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xef434130 cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3c0739aa cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb1acbdfc cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcffef62c cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5e3990ab cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3395d17f cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x71b8d2fa cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9460fe98 cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x4064a74b hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xdb291897 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1243e2c6 mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14038f0a mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1578d7f5 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20f356d2 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2275fd57 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2504f0af __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25092954 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x278c2d0a mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30bacabb mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x313b96ec mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3630a6cc mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39709ca5 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3fac2197 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4aea7572 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0b743b5d sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1258fe4a sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x187f42e8 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b757fac sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21aa07ac sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x226a0eb3 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2277146b sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x247e1fa5 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29c29629 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x33f4f148 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d60f441 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3da28903 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x45a9a65f __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x495b8400 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x49f5efc6 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x55683f23 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x60c08ad2 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6464e5bb sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6974fcb6 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6ab5cdf2 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7018bb97 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81e5aee5 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x85a22037 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x861fe31c sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86539862 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89900841 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8a80c8a1 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8fbdb4e9 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x966a155b sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c6bd650 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d21d4ae sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1fa5657 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xacc6687a sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaf3a3f9a sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1c5fa69 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1842ac8 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc2968a83 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd3c70797 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4e890a5 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd765acfc sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xddcff388 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0d51db1 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x260bf6ab sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x506598f5 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x65e14990 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7275d49d sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x74ff09f4 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8707c7e5 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9d4f438a sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb52e5885 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf583cf55 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/most/most_core 0x061ace03 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1c59a732 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4f6857e4 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x511ef3b1 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x73224a96 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x74d8a854 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x83adf7b8 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x90e2d229 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9fa8f9f4 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa067d1f3 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd2273949 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdae70a31 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xdc05f7d0 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf1becaee most_get_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3dbcacd4 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc0a28942 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xff8bacaa cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2ccfd430 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa1645066 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdf361bb6 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4ef17d31 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8c488220 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb558c2be cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xeb0e72eb cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x731eac8f hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xac2f9e0a hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x029efa31 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08a5ae5f mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x090000c0 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f977b10 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x11f2a53c mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x142b9231 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1977df04 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1aa98c93 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25fdd00e mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2cd3fa05 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f84ef28 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x359082b2 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x382adc4b get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e3eac5b __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e542d7d mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40f8da0f mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42b3776d mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x466cf80f deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fef52df mtd_block_isbad EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5745d350 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x597306c0 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5acfb490 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x61b3b410 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64b23bb9 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x656c1db7 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67faadfb mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d5b9a74 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e50a4b5 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c6de05d mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82867871 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84afdfca deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88cee971 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f24ec7f unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b3ec830 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c59c8af mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa4d16fb7 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa62ce6f4 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf3c1a52 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf530a3d mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1e4bdcb put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2d981eb mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a6b592b mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ca2eb5f put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e78cb5f mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x696357cb mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6f2ef10f get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7483bf1c mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b4a4fbf __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84c12a8a mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85d3d4c5 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8ee130bc mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90125c32 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9213ce35 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9bcb2f43 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d234886 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e13c540 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e6d49b9 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa22d2ebf mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7756afd mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac5b762b register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb40c4253 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb69c0994 mtd_point EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb96cf39f mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcb1e3b4 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd3a5817 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbe2d7058 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5a73a69 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca519136 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd9ee501 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1808d32 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5a7c830 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9285a5b of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9aa2021 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde8fadf2 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe03ba5c0 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xec2c43a5 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf19dd7a0 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8c4f9b4 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa12a445 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe69fae9 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x161212a0 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x985990e1 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9e897f2b add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa1551ca9 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa961b01b del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0066e0f0 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x026edfe2 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x15fbb09d mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x21aa834f nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2a4e74b4 mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2f7391d8 nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x32e03148 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x441aa798 nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x51b4dda0 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x70128d1a nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7702e634 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x772109d6 nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84ee8d9a nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8a26516e nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8a9f8b28 mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x99490bce nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa988830b nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc966efe2 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc9a7b060 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcae59edd nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xce7ce9a5 nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd14069d2 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd32add0b nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe0d6b053 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfcc1d502 mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x99acec6b onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xdfc29713 onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x5b360d1b denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb9303b76 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc026bb83 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc4957c12 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc64b1021 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc894873f mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce73d8a4 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd45cd411 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe028720f mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe39de11f get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf23b923c mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf266fb11 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf70bcbb4 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf83523fd mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfeef8920 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x631e4339 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa1099c42 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xab0f6412 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb3f3b2c6 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf84718c8 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x00d8031c nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x04235362 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x11bbc01c nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x12479e50 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x149b18a3 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1836127a mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2888e989 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2c75c4b7 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4087dc5f nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x41798780 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x47e70160 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x700ca274 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x89d22d65 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8b5386bc nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8cec8792 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x91a63e04 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9584a4bc mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa3b27488 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc0d52a9b nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd64ebcd3 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe4a94735 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe8262d81 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf2dc4e6a nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf3618cf6 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf7fa1300 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x055e1deb onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xa9bbe12f onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x5e0271f2 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x00aab6f1 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x028edaf6 nand_deselect_target EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x148cf0c3 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x170fb969 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x174cdfa9 nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1f677319 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2a14d528 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x148ea73c nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x227949f9 nand_ecc_choose_conf EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x30255443 nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x43a08584 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x492566c7 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3e5323b0 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4840a331 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5032b9bc nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x51bb16cc nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x523e5161 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5521782f nand_soft_waitrdy EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x57d5b42d nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x583e4d22 nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5c072318 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6fbe2c7e nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x73915af5 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x76d0dedb nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79862f56 nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x874acfaa nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x89152d62 nand_wait_ready -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8a7e2519 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8e7a5835 nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xca9eaa13 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5c48cf11 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6f81b0f5 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79c30f31 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8aecb514 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8f235546 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x92a2d500 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa0847f67 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa380eaa9 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa9649c52 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xad3b9d4b nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb7cdac18 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc9a22387 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcadf8af2 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd18fbe1f nand_change_read_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd7edfe00 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdacc3389 nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf89033a1 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa1103e9 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x173e8aae sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x1e44747f spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x21ea081e spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2ce1cac0 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xe20955be sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x118137e9 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x07c6eddd ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x28cb4d4c ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2c7a310d ubi_leb_erase EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x47e1701d ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ec0ae26 ubi_leb_change EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x689d0940 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7b2ea0ca ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6bcb46ac ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x711ba822 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x84ed1e33 ubi_open_volume_nm EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9069560c ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb6278cd1 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb9f79fe7 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca4643e5 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcd173ab8 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcfe00407 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe0f1d2cd ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8dcaa88d ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9e1383da ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f2ef1c2 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaafbfad1 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb10fd308 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbeefdbd4 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc6fc8708 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd9ba274b ubi_leb_read EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf930d0fa ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfac61211 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x090d6c76 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x019ff52b mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a2e14d0 mux_control_put EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x11a54a22 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1494e9f0 devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x511accd1 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5463540f devm_mux_state_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x61328a42 mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x654c51ca mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x717b0363 devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x79dd335d mux_control_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7a180921 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x131d9f01 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3e82cd59 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x419940e2 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4a0fb1b4 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5f3b4f9f mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6c6dca75 mux_control_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7ec936d1 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8772c18c mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8a5bc8d7 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xcd7913a0 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x87835012 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8dd1d096 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9a706d02 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xab82483f devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd3aecda9 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf59c97de mux_chip_free EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x017b82c5 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf09c91a9 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6c47bf61 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8ece82af register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb4fcfdaa free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xddeecf49 unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xed50802c c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf1b09bda c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1535d8d4 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7e9b1f2d alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8a6ef7e4 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe70c3417 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x001d055b can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x033aca71 can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a94060d register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0ad1d37f can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3454c908 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x939782ab arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x05b7edec c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3d1814cf c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5125341b register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbbcc432f unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc62294aa free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe6615ba0 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x17d1fc08 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x39ad4d23 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x73356ef1 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd1ba1937 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x068042b5 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0dd39f66 can_rx_offload_threaded_irq_finish EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x116c4867 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x118111c3 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x206d8ee6 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x28c1565e alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2eec6ae8 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2fad7f83 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30c126f7 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3b4d89e6 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x50254add can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54cc3645 can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x55182408 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x57cc440c safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19d3bcf9 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1de77d78 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1e66ec6f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1f156488 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x21098a31 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2dbc8915 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3706fa91 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x39d3030a safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f01f254 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45b30efa can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x56bd7779 alloc_can_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b03a561 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x839e6619 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8e80f38b can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9268746e unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x95c7e156 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96ce4b74 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9bf5a3b7 can_rx_offload_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa1dc7140 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab16a22b can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb57ce1c5 can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb83cbfde open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc070419a can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc41fa9bd alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe26ea107 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe8f5d38e can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x610d647f can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c4047ec can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6cc3ad4f can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f6ca812 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x71c13fa3 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8bf6c684 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8cf40069 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8da8a241 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x917ba77e alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa9501ef9 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbabc9926 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcd0e0e4c close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcd86d20e can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe532e762 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe6049223 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xec1ab61c can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xeeed130c register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0c7cee2 can_rx_offload_irq_offload_fifo EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1436d5b6 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x14fec118 m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x195c8561 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2016754b m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5b46992f m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x753a41c2 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xeb748512 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfbf6784c m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x10becb46 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2fc355fb m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x427d28c8 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa97cc900 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xb1b4cec3 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc86abb26 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdebecc59 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe681311b m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x269b46f2 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x37f2da85 free_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9c2cd94b alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xba33c541 unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcea451b0 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf3581da6 free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x0f7c11d1 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x3a7702a2 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x738c0237 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x07acea25 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x391ce0ca rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4bc854ed rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5b9e7a3c rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5bd7ba70 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa61edffd rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa74dd542 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xaffcc669 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbe7a5ff1 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd7525ca6 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdc4dfd9e rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe212eec6 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x01d4ce09 fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x01d7c68e fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x2b80119f fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x49cac18a fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x737cb67b fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x81d0f728 fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa4731819 fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xaea89b26 fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc9065bdf fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe2b5c638 fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe3fea0dd fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x32eea07c i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa6b43ccd i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x2b20af72 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb388d667 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xbde6d83e ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe8ac06b5 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf64e8ad1 ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07f31a1b mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08167630 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0861801f mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0937f1c3 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce1869d mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e7d6875 mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14410c5b mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x159ba7ef mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x179f7d93 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19f85505 mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b712ae5 mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fa1b400 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20063090 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x226f0459 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x227a3db0 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27150a7b mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ce71588 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e86e2e7 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f5a33ab mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fe19fb0 mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x320104cd mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3265ff64 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3281deb2 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38abad66 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38af8b23 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39a60a46 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d73d0af mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dc37e1d mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3deb1048 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x409d2af4 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429df683 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x496ae64b mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cc444b5 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d35f40f mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50cffd8b mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x539f87e8 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e77c866 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64249ad9 mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c85e45 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6584e0cc mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x662a15cc mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x695297a5 mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cafaa59 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fcf1c2a mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd36957 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734a9aa7 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x734e172b mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75d31a3f mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77798177 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77beae53 mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77c9702a mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x785d9559 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78835607 mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7963e707 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x850e957e mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8710735d mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x878805ee mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d558fc7 mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9195114c mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94377f3d mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99ba5ec3 mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c04d394 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d3b1c52 mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e31dba0 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f218278 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fbb9b82 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa30e6f6a mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4c728a6 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6095051 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab00d9e4 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba653a3 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf6a29e mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac6a4ccc mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac7e70b4 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf544548 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf8ffe62 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3a668a7 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4562761 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb557834a __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb692f069 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6f36364 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7cc8080 mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb81039a4 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9cfe091 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba38f6c4 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbba81863 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd2643c3 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb60fc6 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf2ee771 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfdded71 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9686ede mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc32ce2 mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfbee09b mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2f8ca0c mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3b41cbb mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd47ea081 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4f5539c mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd70f135b mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7b66948 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9f0918b mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdab44a59 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdba8847f mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc34f033 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd22fb22 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde983eae mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1758ecb mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe20141df mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe38d1bda mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5db85ff mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6531cb7 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe84a88bf mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb3ff23d mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb74b05c mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb7d447d mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf06b0752 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1718699 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3c4e594 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf67953c7 mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6be7d16 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc0b479d mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff160acc mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00b4a2a3 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a8f16a mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0354f4ad mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03da3876 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc5622984 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfde48a8a unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xe0f1eef6 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0xecc4aaf5 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x4492f44b mt7530_probe_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x7813e32b mt7530_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x93a2919f mt753x_table +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xdae2b29d mt7530_remove_common +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x3fd194d5 felix_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x95dc62f2 felix_port_to_netdev +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x9bdf4f64 felix_netdev_to_port +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xec0f976b rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x10893f9e rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x118973fd rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4c801511 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4e8bd5db rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x58dc503d rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5f08338e rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6ee17b67 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x82c3e3a6 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa69f7596 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb62501f2 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd01f2453 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xea36cb62 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x37325aa9 pdsc_get_pf_struct +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x45b87b4f pdsc_register_notify +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x81e4273a pds_client_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x9096171b pds_client_adminq_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x9266b9a4 pds_client_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xc45181c0 pdsc_adminq_post +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xce714617 pdsc_unregister_notify +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x001ad907 octeon_setup_output_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x02a04078 octeon_free_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x04a5a538 octeon_delete_droq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x04ef7c01 lio_get_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x084e4565 cn23xx_fw_loaded +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0bf65971 octeon_alloc_soft_command_resp +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0d1da937 lio_enable_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0df646f0 octnet_send_nic_data_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0fc1dd04 cn23xx_octeon_pfvf_handshake +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19074748 setup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19cb4e69 liquidio_link_ctrl_cmd_completion +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1b68252a lio_wait_for_instr_fetch +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1ffc98bd octeon_mem_access_ok +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x241a2a6c lio_fetch_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x28d159eb lio_delete_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2c1ef97b liquidio_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2d36b252 octeon_droq_check_hw_for_pkts +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x343ffe35 octeon_register_reqtype_free_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x35f1ffaa octeon_setup_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x35f44678 octeon_write_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x362106cd octeon_delete_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x37e42ba2 octeon_get_rx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4960a3c5 octeon_setup_interrupt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4ce07d03 octeon_read_device_mem64 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x55434881 lio_setup_cn68xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5c6bf74a octeon_allocate_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x67ef0465 octeon_init_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x68116416 lio_wait_for_clean_oq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x68c78ea2 octeon_delete_instr_queue +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6b6521ce cleanup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d0d28ef octeon_init_device_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7284b0ed lio_process_ordered_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7487c2ca octeon_allocate_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x760c4062 lio_pci_writeq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7c918f10 cn23xx_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7cc701fd octeon_get_conf +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7e9fffff octeon_prepare_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x808dd414 octeon_read_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x87faaef8 octeon_pci_read_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x89b323b5 liquidio_get_fec +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8aa7c626 cn23xx_vf_ask_pf_to_do_flr +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8ed5d578 octeon_get_tx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x901d556c octeon_setup_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x943649d1 octeon_free_sc_done_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x965d16b1 octeon_delete_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9a2c0e84 liquidio_set_feature +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9b413e83 octeon_free_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa0e936f2 lio_pci_readq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa482cc73 octeon_setup_instr_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xaae991a4 octeon_register_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xab433018 octeon_free_device_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb2d5a4f0 octnet_send_nic_ctrl_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb5011ecd cn23xx_tell_vf_its_macaddr_changed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb6c873cd liquidio_change_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb956f24f octeon_send_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbc35851b octeon_unregister_droq_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbec8d6b0 octeon_register_dispatch_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc193715d octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6abc5b1 octeon_core_drv_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc76b947c octeon_set_io_queues_off +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcab193bc octeon_alloc_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcf374669 lio_process_iq_request_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd1843674 octeon_deregister_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe0142d36 octeon_send_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe1c0934e lio_setup_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe577192c lio_setup_cn66xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe669088e cn23xx_setup_octeon_vf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec29fc3d octeon_free_sc_zombie_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec7f00a5 lio_get_state_string +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xefa98c81 octeon_droq_process_packets +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xeff8d11b octeon_wait_for_ddr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf04da0cb liquidio_setup_io_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf298957a liquidio_get_speed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf6c66326 octeon_pci_write_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf846d373 setup_cn23xx_octeon_pf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xff61ed64 octeon_ring_doorbell_locked +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0a01b03b fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x107dacb2 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3951a649 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4bc1e19b fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4c93e040 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x502bb515 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x64b4092d fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x720a3916 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc4fe08c0 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe2573ff4 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xfd39c94b fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x0c90bbe0 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x227c4040 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x25297da3 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xad9ecd2b ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xadfcfd13 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb92fe598 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe440de90 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00151507 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011147c0 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0191bc84 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x072a5954 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08e13b96 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cfedf41 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e7a0875 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11a8d84c mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x121e4017 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18a7434f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bbaffd2 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ffcf667 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x209fbd32 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x240ecb02 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2531705b mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x286826f0 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b710f74 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2db4ff3f mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3344a0ef mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x336cfadc mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34516636 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x347724dc mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35164485 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38e5be09 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41d1d54d mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4504d3cc mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e31e64c mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ed85ad1 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53ac8cd6 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53f662a1 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x590c8825 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e659c5c mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ed2e06b mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eed1d68 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x617fbca9 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61e87dee mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c2fae6 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x645825ac mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x670938d5 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67350949 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x683488ef mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69e3d256 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ac3357e mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c5622ec mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c6bbadd mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cddb324 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cf58b7e mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x712a1ed1 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72910dbc mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7370e4c5 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x777d56f7 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78d30cfd mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c46d2fa mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7dd626e1 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ee7b126 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80bc8b9d mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x833cc077 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x841b8080 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84a5d0ee mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x867452e7 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87ed209d mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x889a37d7 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88da8633 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8edcbe52 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8efccab9 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x910585c4 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91eb6bfd mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x928f004b mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x952914d4 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ca271de mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e215795 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ef088b2 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f227128 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa6cfb6 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3781393 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a2d73a mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7df6b71 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9fdfc98 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaacbe149 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab85725b mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad575482 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf6dccb6 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb01765be mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2d266e7 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb48e17fd mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9b8ec7c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2354a7 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd9be25d mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbea3aedd mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf9f5f81 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0e5edc7 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2fb6199 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc96c4dc1 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca28ae2f mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb1b1485 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdbb514f mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcea4be37 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf82d98c mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0727a33 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2d717d8 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd43fc87e __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4cd87b6 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4de1006 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6d798a5 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7123ab7 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd941c7aa mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9c9bef9 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde63e154 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf0d7455 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2edeef2 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe647b1e1 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6b74812 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe76d5f1e mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec362622 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeee561b mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2cd1a6f mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2ec0fd2 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf43ec283 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b0999f mlx4_put_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6c37fce mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf94884d5 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd49b892 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04009b10 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05c391e0 mlx5_query_port_tc_bw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x091be5b9 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x095c3756 mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a6d07d7 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b24f252 mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cd303bc mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ede334a mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f3c11ef mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x182e72af mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x202ffa76 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24049fbf mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b79bd12 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2df6c853 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39d1c294 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b04f319 mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b4a36f1 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ddbf8da mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45cba832 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4778a0e4 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x499cd743 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cf55245 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5893fa mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54e6570f mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cb9b5db mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6298edc7 mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63e43b3d mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x643c93aa mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6444b8bb mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65f764b5 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x695025af mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a59c23b mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aeb8e04 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ea59f42 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71100476 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7326022a mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x768c57da mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77177cd5 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da5dbec mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07f7cd11 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a467ffc mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b389438 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0db5cdcf mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dbbb857 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14639a30 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2169fede mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x282d9962 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d989081 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dc61132 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34966b1d mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3738a598 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c7627ce mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4086d086 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42b29202 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x439d0350 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43e0ca40 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46215cbb mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x495c993a mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x497c49dc mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50907b34 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x573c8db7 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a7f02ab mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60a657ed mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61ce20d0 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63bb7c89 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x640d81b9 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd7f8d7 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d9cb313 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fcf3d1f mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7014016d mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75d71c14 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x761bfd7e mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e9c0e03 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd1dd67 mlx5_query_module_eeprom EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x851c9ed7 mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85ca1fbb mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x880345a7 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c680f36 mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a4e36c6 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d0d4246 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6b7ce8d mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac8a1249 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae48db9f mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3feb69b mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc5537ee mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfdce183 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc21290c3 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2314f87 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc52d1e09 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfeea2fd mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcff04e2c mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd63bfeba mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd733f7ef mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd69dcee mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9379dfb mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf189fdb9 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1ffef21 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdbf8345 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe26ab9b mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff606be8 mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0918a918 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x12ec5393 ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4e6b94fa ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf6c956aa ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc64f9b84 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82503c9e mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84b2c854 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b4a98e6 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90c10a00 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x956b2c8c mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3868e2a mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5cfe935 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae058a35 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb42849cf mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb70ce04b mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf71a8c7 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc97c2eb2 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb6f32c8 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb7a7bd1 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdac3f18f mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc82beb3 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd493e1b mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6675bd3 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe68a293f mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe88968d9 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe904ecd6 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea88979c mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf184a70c mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6462dd0 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf93046c7 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfab7dd12 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb792ff2 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdc39d18 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe21bdd6 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff5384dc mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x8d46c078 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x992de40e ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc8fbf83f ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xead97ae0 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x88240446 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x073cc2e9 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fab9329 ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12bf4b2c ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20bd3e01 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21bd762a ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22d20d0e ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27d29270 ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3502460d ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39005366 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a234d7c ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44c37180 __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x45dd41d6 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ad50643 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c405cd9 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e6f32f0 ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x532e5303 ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80bc836a ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89e6468e ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8fb4d1ca ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ff2ef2b __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ac29dfb ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa02ce4a7 ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8b75464 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xabf3f44f ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3a5abb5 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd63a723 ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf4f921b ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc015a614 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc327aadc ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc508c3b6 __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6c43792 ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd95400e0 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb1baf67 ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe406f6a8 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecf8bc36 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8c02f21 ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9e949af ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfee72411 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0999a4fe stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0b3e8d8e stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3ad750b3 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00d858a0 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10dbde3a ocelot_mm_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x17a83373 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d59d5fd ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c1d16d8 ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2de7fe70 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e1272d0 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x37bddb5d __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x435c14ff ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4847d880 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x52d75549 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b218582 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6045dd71 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68e02284 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6dd643c7 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74570b89 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7606338d ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85924a12 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x888140d1 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89dde91d ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a70a133 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8cadb62f ocelot_port_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a5621b5 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b0815d2 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b778b90 ocelot_port_get_mm_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8012d78 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9e32ab2 ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa4949ed ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb17a0632 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5766086 ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6dc0e6f ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xba144f05 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe894b90 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbab1653 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd10f1612 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3c9d06b ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd629c788 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd663ae64 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda311bb4 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe760e1a6 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1b6ec67 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf38c9771 ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf54509ab ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd201923 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd70b3a2 ocelot_port_configure_serdes +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x03ee42d2 stmmac_bus_clks_config EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x68a2b3cd stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x72b1f00b stmmac_dvr_probe EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc8bce804 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xec2b0794 stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x03ae4eb1 stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4bc35f30 stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x76ce63d1 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x94421426 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf54a978e stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x09146774 w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2ff094ee w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7a8ec531 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x94cf8352 w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0xe5299683 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x302f54a3 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6b2b8b44 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7b598773 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x884962fe ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xce93c46b ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macsec 0x013f0c61 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x10aeaf61 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x19e96307 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc926996b macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe1548b08 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xd9be8131 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x4aceb58b net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xab6f1de5 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x01760552 alt_tse_pcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x17a76922 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x44e16ab9 xpcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x46273e53 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x47a38139 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6d8ffa3f xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd32a59fe xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x21602887 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27c09a42 bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x280a587c __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x310dd7af __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31659153 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3d945264 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3df0b5b9 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4661a3e6 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51172e8f bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57a6ed01 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58ab1982 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x58cffe5f bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5fa9c818 __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b904268 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ed5ae49 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72791584 bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x77ba9a53 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x85edc04e bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c87b0b5 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x957bfe36 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa82a4d1a bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa84dfd0f bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac2e200e bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6f4e60b bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbbe693db bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2c36c30 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5075178 bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc9549cd7 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd850f9bc bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe18e5af2 bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6c25868 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf29a678a bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf752e3dc bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfa5ceddd bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x3b3d1469 bcm_ptp_probe -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x8bfdde91 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x99f60f85 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa9536ef3 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xad5f8afa stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbfbf5cd8 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x145c66e3 devm_stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1a449a4e stmmac_pltfr_exit +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x21b9cb66 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2d8867e4 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3dc1d7df stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4de966e7 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4e49e666 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x65609865 stmmac_pltfr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6cb41c5a stmmac_pltfr_remove_no_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7b118ae1 devm_stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8f784f93 stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x131f0f50 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1fffe30b w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x55d79686 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf5d967dc w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x298d1c5f geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x330479f3 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5b40a3fb ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x5c495c13 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8ca1838d ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb280e187 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0xb5b756fa macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x51bb874b macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x73143a0c macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa637a013 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc0d20a4c macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x1e4f707f mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xd2afa954 devm_mdio_regmap_register +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-lynx 0x6adddba6 lynx_pcs_create_fwnode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x08859528 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x330ebce7 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4badcf8c xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x76009c93 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x87c91a52 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b430bc5 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xdc4a1791 xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04240202 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c535686 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x112b0d74 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x165423be bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x193f9aaf bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x228ca53b bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28b2a679 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x291125b6 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31482c20 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x330eb21a bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x358be0eb __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3e17d133 bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3f625556 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3fb9c158 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c8ef015 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b4be274 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5bda544a bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61eabeea bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x658196c7 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ab89abe bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7183254d bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72cd6a9c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74875d29 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x880e6be6 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x94471791 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b82a8c6 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8f5f15e __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9ab45cd bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaab36f64 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb2c1e58a __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb798d4c4 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0a84d95 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd1b183cb bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe3de7627 bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xefe8d676 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0242b6f __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfcd522c5 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x7f913212 bcm_ptp_config_init EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xefbcdbb6 bcm_ptp_probe EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0a32e570 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x157c3f16 phylink_generic_validate EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x19310c11 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x29b20601 phylink_mii_c22_pcs_config EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f3a174a phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x37c04a96 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3abe6fe5 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x40a56deb phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4278d56a phylink_expects_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x536f87ae phylink_generic_validate EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5fa280c2 phylink_connect_phy EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x64a1a5ce phylink_decode_usxgmii_word EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x66e8b5b0 phylink_caps_to_linkmodes EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x859b1ff6 phylink_validate_mask_caps -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8cd7424f phylink_create EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x94299178 phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9616a255 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x97b10dc4 phylink_mii_c22_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb300931c phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x9b652b6e phylink_resolve_c73 +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa16449b4 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb1b3f6ed phylink_mii_c22_pcs_decode_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xca193274 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd1a305db phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd22202b2 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd654390d phylink_of_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd903f419 phylink_get_capabilities EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdda4e648 phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf351062f phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf7cae865 phylink_mii_c45_pcs_get_state EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam -EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf926a606 phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL drivers/net/tap 0x710eda0f tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xaec3286a tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0xaff026ee tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0xb8ca8ecd tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xc6067d3b tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xf4adef21 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xf6a3ca58 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xf8e909a7 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0xfcfe9b59 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0774061d usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0ed8e8ae usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3e03c021 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9b7b3874 usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xccad8379 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf0ef07a1 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfd6d08b3 usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x16dc798d cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x22f9821f cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x412224ad cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6a6c698a cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x74d3d483 cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa2c7d11d cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaf70fa64 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc8fc6f6f cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xca2d1582 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe6f21de2 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea62a3a1 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x1f7aa4a4 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x04a086af rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5d634a73 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6e4a53c4 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x933539f0 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x999eb63a rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa7d2e27e rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01913d7b usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09884e99 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11ec9edc usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1845da64 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x208d95e7 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2171e18f usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3278346a usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37b288db usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42b46d13 usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x481cc670 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b1cf072 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55222cc8 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x608cda23 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6374b600 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65dcf3bb usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7074ff5d usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9072670a usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9557015c usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97f3dcfb usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ec9c270 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6b224f4 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa6b9da10 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa97ffbfa usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9b750c0 usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xace3a1f7 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca2184a1 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccccdb19 usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd73578a usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce185c31 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef0c9cba usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf060c131 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf26b81d8 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfeab7ad3 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfecf18b5 usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x2c371be9 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7d9bf3e8 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9cd2c2a5 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd67d43db vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xcc063850 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x10e21265 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48021040 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x784a286e il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e934cb3 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0217a69 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x2dca3eb9 smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x5df1408a smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x63324d82 lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x6f663813 smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x992a6f2f smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xd3ae7c96 smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xf0486246 smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/tap 0x092ce043 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x13bb2e98 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x321ffd8b tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x4ba0f531 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x6c0fc04d tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x7261bde1 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x95d06a38 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x9e2c00b4 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xeab51f23 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3493d5cb usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3a0b9fab usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5d309936 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6b74ec0d usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x931c7d37 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdc80961d usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe198670f usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x111f1dd9 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1d8b27a1 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2cc8115c cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x36f6eb5d cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4661d57b cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x62efa8c3 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x97bb3075 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc0732825 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc77d1e95 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xefdd37ac cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf06f9e81 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xf824452c rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x08b8bbd1 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x08f50472 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2d271ca1 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5be0ff8d rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xafbeb6f1 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfec8e2bb rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04fe51c2 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c2183b4 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17be0892 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17c1f267 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x23c24183 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3aac0b2e usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3af06c12 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41b4311d usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x471e5e96 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49abe3f5 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4b283fcd usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d4fcd08 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54859fa6 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x603cbe2e usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6059b460 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6118a200 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66620247 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c1429d3 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84353f81 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93466b16 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97003bca usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9849c5f4 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9eab8736 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb141ee6f usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb7e10cde usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb81c5784 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbd0d9d2 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd8545d2 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8de07c7 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe7a0b13e usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9f6ada4 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeeed7652 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf2f6bbef usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf718dffe usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x1a0fda68 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x1c7da69a vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x588e6a2c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xae7507cd vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x2c762085 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16e28858 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68933629 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc32bca64 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7fea037 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdb60ded1 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13863121 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443a0ac3 iwl_fw_lookup_notif_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0eca8d74 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1210a89e p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x37e34072 p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x75e73d03 p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7d26bec3 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd18f675d p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd7006596 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe2280434 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe98bf452 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x11c51329 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x19ca73ae __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x252306d9 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x25c7bf4b lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x39b6ba5a lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56fecad8 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x60313e05 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x765df3cb lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x85d63169 lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x90a7e353 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x95115b19 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x99da595a lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xaad948bb lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc5abe633 lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcf1234c8 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd60876ca lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x25c86b6c p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2f62f850 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x415e88f3 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x841f6b83 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb83aec46 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xcdef7609 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd007d71e p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd70f9049 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xddaf3a1b p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x01e3f517 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2886765b lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x359b4dbd lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4773a075 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5018f9b3 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x66381696 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x730fb32b lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x78c1b0fe lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7be049da lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x80d752d1 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x824e04ca lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa9baa8b0 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd901dcbe lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe5f3fa4a __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe6ea860c lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xea1e89a8 lbs_remove_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x05178289 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x1c67a24e lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x31db1f06 lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x615fec5d lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x67c390a9 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6c27a184 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x72b0e587 lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7a7c9e14 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x238f4223 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x32183084 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5b36bdd8 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x624177ce lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9359ba6c lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaf9f2ca9 lbtf_bcn_sent EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x04020fb7 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x08452e79 mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0b930353 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0e085c50 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0eafaa15 mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e9c3cb8 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f57d4f1 mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f5adf95 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x24b7a810 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d5081da mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2d95589e mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3e35a9a5 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x469a6c94 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f254ef9 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56be5184 mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5f0493db mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6a1f56f8 mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x80069191 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x81ba54e6 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa16a8990 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcfff1597 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd8cc529b lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xfad39bfc __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x06fd94da mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x15c993bb mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x23224cc6 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3a1b51c3 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47ae18fd mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47e29f0f mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4abd52be mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4bb271b8 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x51576947 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55f80c17 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a933f47 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e9f2696 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x68c01f64 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7540afa5 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x78faa339 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8a1073bc mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9cd4a3f7 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9f8cb108 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa17abdb mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbcd004f7 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc4618cc0 mwifiex_disable_auto_ds EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdd6c7d69 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe5b20d48 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xeac2019d mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0199fba2 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x062ea358 mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07ad622b __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09cb4711 __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x116ca0fb mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe9548ca5 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3f9659b mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfcfe406c mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x059f4826 mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0674dee2 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07f1574c mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08e211c0 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b7f5a9d mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e092613 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e8c454e mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f578a74 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x127f7e5d mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x132a9dc1 mt76_sta_state EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a480f7e mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x181ebdc4 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bb60304 __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f133261 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1fdb3359 mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27278334 mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a755bd2 mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dd51567 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30ab38c7 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32b089e3 __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32ea42a0 mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34e6ae9f __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35baa3c1 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38a29e58 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39933509 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3be979b2 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fc7748c __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40d43726 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41503222 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x438aff9d mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x469462a5 mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e392e93 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x53c67582 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5427d5c2 mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b001558 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x62747f89 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68929c96 __SCK__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ac31d36 mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b735fbc mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c98cf4f mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7004336f mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x709683de mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7171f9a1 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x765d35ed mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79df4868 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a196a01 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f658f59 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x819c432c mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8923c62f mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a9d7f5a mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b78aef8 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9150dab0 mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9537e0cc mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99b1c27e mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99fc8b9d mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b376110 __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa480f859 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xabf48037 mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xac336684 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb101cf7d mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1c137d4 mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3cb292f mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4d86845 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6cac8fa mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26bdb734 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x278300b3 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2852191c mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a337af1 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bed29d9 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d13c393 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3064f1b3 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30ab5a55 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3314690b __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37b5e626 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38e0ca0b __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38ebc57a __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39342a50 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39f3989b mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d845263 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e5b0f06 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e65776c mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fe351c6 mt76_dma_wed_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x420582fb mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x492c78f1 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e4f3c42 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ffc4f13 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x52eaea0c mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5cc10422 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f5929ac __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x603af437 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6182576e mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x699cad95 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d3a4107 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7132b957 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x724c74f8 mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7422c37b mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74270bec mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x766d9890 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78638de9 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ad07c21 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ffe541c mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82d6416b mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82da5250 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x84a808d6 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89533e89 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x897bf2a3 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x91dc3f68 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x942365a5 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9478f613 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94f36e57 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c6bf9e8 mt76_ethtool_page_pool_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ce234f3 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa049db91 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6c537e0 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaed01fbd mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xafd9be92 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1512fd5 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb42547c1 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb813a5d4 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9e95163 __mt76_mcu_msg_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb9b6cd3 mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc239e99c mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc23cac32 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc658fa43 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc28d5df mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbdd58642 mt76_create_page_pool +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc16ab8a2 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2e692a4 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc37601b8 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5ec4d10 mt76_sta_pre_rcu_remove EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc72ef08d mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc79daf86 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9d8299a mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc9f869e6 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd496f780 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd52c97e2 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd75c5781 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8164a64 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8def46f mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda05cde3 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda0f5b7b mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb783266 mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde091def mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf860575 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf9e40a8 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6789f7c __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce2b0e5b mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcf187689 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfc9ac7e mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda1acc7e mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde90a3d0 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf1d6209 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf4246b3 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe21273a7 mt76_tx_status_unlock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebd17cd3 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec4c09c7 mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeea5bd08 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefb019bd mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefec715b mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0659f8c mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5bb1db3 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8583af2 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa4704bf mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfaa29de5 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfbad0d3e __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff09b074 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0161cb43 __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x098acfea mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c24c71a mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e86eb16 mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0fb6c0b2 mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16ddc14e mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18a6244c mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26c4400e mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33cd2f51 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x340bd23c mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34b5ca69 mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36e01563 mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3746a921 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3810b727 mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b183939 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x415ed0ce mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x42adb4b9 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45d9b57e mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46dd7b29 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4806be2a mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b12259e mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b23d58c mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f870957 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x517b3b70 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5224754a mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55cf8ca3 mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x56efbf94 mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a54e6e6 mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5cae04e6 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5dfb6f4a mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5e1ca059 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60116f2f mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x656cab98 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6fd33386 mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72aaf57a mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x734da2a6 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78c3f244 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x87e6887d mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88cc434d mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ea4e8a2 mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9085a06d mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5aa0855 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe81d593b mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed8b7b0a mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1091cf0 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf84e80fa mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf974d18c __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfe559b0a __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff9569cf mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x020dd40d mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x084e1dd4 mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x08baa9b1 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a25337f mt76_connac_gen_ppe_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b046b8b mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d6304fa mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x108e04f9 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x111043d8 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x16f92e41 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17153e2c mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1be7eee5 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cdf9293 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2578f3e6 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29b54039 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d2ae8f4 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2db400f1 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3522a6cd mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x374900ba mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x37b1b9e0 mt76_connac_get_eht_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x385e0d06 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3d60a4dd mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3efb4ceb mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f2bed41 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f999bba mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44033633 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x445183e2 mt76_connac_get_phy_mode_ext +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45432f16 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45f10ff2 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4854a2d8 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x487a2a56 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c6654ab mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x570cf54a mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x67792e55 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6916af11 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74189172 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76c3881d mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x774cfe0c mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79b8bbb7 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x83056d69 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85b3ab13 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86b98492 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88388992 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8bca65a1 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8be21a05 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f80105e mt76_connac_mcu_add_nested_tlv EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x941bafa2 mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x991e6f8a mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9deca316 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ffa9bea mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa75719b6 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa1d5054 mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xadb08658 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xafd7f9f5 mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3b0fd33 mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb63f3077 mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbba40e26 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbcd7fdbe mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3f6be96 mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc5372e56 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7add4b5 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca2117f2 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc7952ea mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xceb4d2cb mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2e1217b mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd34bc552 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd498c91d mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd5f4f5d4 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd756b80d mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc30cede mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd4b0435 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe047ac1d mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe3fcf9e3 mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7da9108 mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xedf5009c mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeecc1445 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf4d96177 mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff3b505d mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff6b462b mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0c0eaaa2 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x478a1585 mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6064f0cd mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x63893fd1 mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x78f97683 mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x810d4bfb mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9adcd6b3 mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9b9c4141 mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xabe41288 mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb4cef03d mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbbad2f42 mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc8f98abb mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcfff0bec mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe21fd4a0 mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xef534a45 mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xfdef4d28 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3ed60bbd __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x42cdff9d ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x54da7b91 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5ef2f14b mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7dcce87e ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x832346c7 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d8b0aa2 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb35d0902 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb6cda96b mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbee8969c mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xcb811c68 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe7c47d33 __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe930ce5f mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeb0be45e mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x09abe72e mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x11d869ca mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x19ab1240 mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ebadd1b mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ebc1577 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2243d9df mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x27f019ac mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2aae53fc mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x37e31686 mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3983441a mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3bdbbb39 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3d13078c mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3eaefd99 mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4a72e28e mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x70091501 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7551f724 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7ee61164 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x80695b91 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa082b35a mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa3748af1 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbe7c2c51 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc4fc4729 mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc606e3f5 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcadcab68 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdab28e14 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb02b3d6 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xed041d16 mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4801d8d mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x353693ca mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x911ee295 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x92e78b2a mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x94e5abff mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x95776bbf mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x980f62ef mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa40d2d10 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5b5bc5c mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae505f6f mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaea1bc68 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf6eaca3 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb1a23350 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3d57e9b mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xba5323b3 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7f7d131 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb514bc7 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9d076df mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xddefc334 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdef70314 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0286141 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe06ec3ba mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe23f916d mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7c0727c __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe83ffad7 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8b6fa13 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeb88a200 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xec370b96 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeda7e070 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf47d28be mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf47e9b62 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5a40f84 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfac44fc1 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbe89098 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x00b0639c mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0c58f71c mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1205fb7f mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x14a35092 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2757b203 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x505cf157 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x82dce7c1 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8e7edeac mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa043e6b8 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa5ed82ab mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa60a2804 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xae8f228e mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb7c8bc19 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcefb3cd7 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe7afd2c7 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe929cfcd mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2a197f37 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3bad441e mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x455c1a60 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4b4a1e31 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x640020e9 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6c3099df mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7d2bde8f __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x88b269ef ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x908f5b68 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x956abe6c mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa6f2b07b mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbe066599 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe95a6e46 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf4f9eb97 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05c65f7b mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x15ac8045 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x187459dd mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2b4d75bb mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x30b0c9b3 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3239f680 mt7615_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4b770c54 mt7615_led_set_brightness +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x61ce5dff mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x65f958ca mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6a99db8e mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6bc6a8b1 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x71403269 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x74de8c7b mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x775a52c7 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8901adb6 mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ad8c06f mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c99cd12 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x93462133 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa3ec0af7 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa8394a8c mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaf2b682c mt7615_led_set_blink +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcc0f8d63 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd06f2d9c __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd409f880 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd9dd8911 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdbb1b3ce mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe679ca4c mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe81e2d93 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf222ddd1 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfe1a782e mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x2b447e8a mt7615_dma_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x8b151f84 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa85d5667 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xa8f25346 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xcce6ef02 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x115e4cea mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2257f506 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4047779e mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x65071085 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7b328c75 mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd9d66673 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xee1aa354 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00ea9acd mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x013ca531 mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x034def4a mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x06c3e43a mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x070bc74b mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x078e6970 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x106a2dcb mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x12c74574 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17d12510 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19f20b77 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2084a2ea mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2298d435 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25e703b8 mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2905a8b7 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a2b74ec mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ae151fc mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x323395aa mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x37587f7e mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39cea9bb mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42277456 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43bcef54 mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4edaffad mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53852a22 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5546437b mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b958852 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x19a21039 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3dc8e820 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xecc549df mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xecc9e619 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0e6d9bd7 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x52c942ad mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x97c86b8d mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x99f2c3fd mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb38379fb mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xd9654344 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xefe45b6f mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00747202 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09295f2d mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d53b243 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b8fb4e2 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1eeb557c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f19373d mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22b2be75 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23c707c1 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24de928b mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35071f4d mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c890da2 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c9cae12 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40233fdc mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4042ab24 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45380f45 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x458ce3fe mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48708808 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48d3f073 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4945100f mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c4e0833 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4de5468c mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e8a6154 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4ea1191b mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56721631 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57c9b2c3 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59c2510b mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a66a0bf mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5aa0549b mt76x02_tx EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5df557cc mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f99f37e mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62c67234 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6793a1aa mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x697856b3 mt76x02_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6ebdd76e mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f849b64 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62ade36b mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c522b7f mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e8e9307 mt76x02_dma_disable EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79865071 mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8037d111 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85e87b55 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ae18a44 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e918177 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9000145d mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8092d249 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80a8417f mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x854bce3e mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85bda172 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x862ce57a mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e25e792 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x90eb5f0c mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91167569 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x916f4d76 mt76x02_tx_set_txpwr_auto EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99a41329 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a90f14e mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa22dbf6c mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4b91e85 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5eb4026 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x957510a3 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa0120277 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1e13cfa mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa22e7812 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaae79e22 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac23666d mt76x02_reconfig_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae9c816e mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaed0e2bb mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4cec08d mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb57fef03 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbcfb6862 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd597fae mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc576258b mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8bf6836 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca95ebb9 mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd2468711 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8b80686 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd99caf92 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd9cf3b19 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdcacdbcd mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xddb9fe54 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde02832b mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe2ebf37a mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe401422f mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb8c9e7f mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef00687e mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0b29337 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf14ac4b8 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfc223377 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x00a80f9e mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x28313349 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x46e63e06 mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b0d4589 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b2ef90b mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5b447a27 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd9e06a13 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xda67bdc1 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x085b3f27 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x08c414d3 mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0ce3cf98 mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x143f5701 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2c4d4702 mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2fc244b9 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4e421d4a mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4f0485d1 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x50ef4439 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7a9f6803 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7c6bccb4 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8286d06e mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x86234c81 mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x92ed9ec6 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaa0d7010 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbae328d6 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbeb2084c mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbfab6f9e mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xde621822 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfe476f41 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x04671c03 mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0a9e94c8 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1061307b mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x164d0bc0 __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1665e0ba mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x21b32af8 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x225a75b7 mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3e8ea731 mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x447dedc0 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6a0b9df9 mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x71beb591 mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7aa2fbf9 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8c124273 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x98656056 mt7921_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9987a60a mt7921_check_offload_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbc569291 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbe27b258 mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbf11e5b6 mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcbdb06c0 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd1ebb7c5 mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdaf5d513 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe01bdf7a mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe3b2c6bb mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe4fd97c9 mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0d9b7203 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x761b8a80 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8a0c70f6 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa7efdc50 wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb3a7eaa5 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc92863fb host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf03ae78e chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1013010f qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1f099bc8 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb0ae0a7e mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb2c89679 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8737958 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbc96d291 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd00c24d mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc7c0e93 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce703e6c mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd158b6c8 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd24f1249 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4d22bcd mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd62597a2 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd76149c0 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdbee59ea mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde8685cc mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe51d1a6c mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe809b481 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee8a9372 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xefb21e76 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdf6be06 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff54b3ea mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x38155234 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x70c5e915 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9d25ad77 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9dff687e mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xad6c56b4 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb4532911 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd6ad8af4 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd74256c3 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2d877b2e mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3fa07f1e mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4ab96ace mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4fefd444 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x52a06ba0 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x53708f74 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x75e3e6aa mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7afe2829 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9f2aeb39 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcc06099d mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcea87496 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd5e481b6 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xddd0f120 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe69cefa5 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xedaf2a83 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf35621e9 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfb5cda5e mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfb88edd9 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfbd260ea mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfe378bba mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x00a50958 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x029bb343 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x15181584 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x15d30a4c mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x268f7ab9 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x275aebc6 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2bec479f mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x356c9f2b mt7921_get_mac80211_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x45fa09f3 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4836429e mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4aeeb14e mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6f671a48 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6fd6cfc2 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7867ac27 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x78fe841c mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7f10bccc mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8c98b582 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb4ec2ffb mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd7d4e2c0 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe0c012ab mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf5fb997c mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf6e2960b mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfa4a305e mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0133193d wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0b55498d chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1ba4a525 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x407eea32 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x52a3d314 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7770d08a wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc53ac482 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x07889827 qtnf_core_attach EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x33ca7a5b qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x665b3571 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9aa6b7b9 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa76f871a qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06458ce1 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ce51c3e rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22437a9c rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d098bd7 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2d17fa52 rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2de68346 rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33b4c2ba rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x360719b8 rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37d96773 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x388214d8 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3bf0d6c0 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c0eabb6 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e3b0cfa rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x466b8855 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4e9b90c7 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x573fe5fa rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d181ce7 rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f6368b1 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x609ff5b0 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x661391a6 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6851325c rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6baa1a38 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d7eeb18 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x72e13995 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7781601a rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84e9f40d rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a18b080 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a73c68b rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x979b6d65 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5949d2d rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xace13528 rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf589313 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3434f98 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7e93b8a rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9c77982 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc12f1e7c rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc26e2101 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc3e1e592 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca1b2b84 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1127b8e rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1ec552c rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb15cf69 rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf21fdaf4 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7d22db4 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0329df34 rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x16122413 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x3778494f qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9bfb5d6a qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa6e1c328 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbeab8454 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcb229ed4 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x056bddaa rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1747844c rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e720be2 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x213a4a12 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x345176cb rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3589c2f2 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x398d25e2 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39d5364b rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4208186a rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4287bef6 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59b67871 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63914729 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6864c505 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b7c19d1 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b8b9f9b rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x74ba2552 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x828a274a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x84430a84 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8650ff16 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x88059f78 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89d13789 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9276f086 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x98a7f087 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b7e9be7 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad7ca770 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb36987da rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3b02eef rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba39171c rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbf867ab9 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1bfd7ec rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc332747e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc6669910 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc6bfd9ba rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd25040ef rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd43545ee rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe113ff8f rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe379d4d3 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8d40df8 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe9083b76 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xee267b61 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf323b6f2 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3b476fa rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf46d916d rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf60e5d01 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x16095ed3 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1bbabc04 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2587197e rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x37e38956 rt2800mmio_kick_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x46e0a8bd rt2800mmio_get_entry_state EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5b2a9e1b rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5b479b52 rt2800mmio_get_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6490c4a5 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x767e1e66 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x906e5dbf rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x72f690f0 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7e1a4cdd rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x999421c1 rt2800mmio_probe_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa8b1e8c2 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xccae4360 rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd254cf17 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xda4d3901 rt2800mmio_init_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe03595ee rt2800mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe1193989 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe479b956 rt2800mmio_get_dma_done -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf557527d rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0401f0e3 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06750997 rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b1c0644 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b5b1793 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18b35a6e rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x19247ef3 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1b290a36 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ed85470 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21c58cd9 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24ea57c6 rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x284ecf99 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f496217 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3bac9e66 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e1de6a0 rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e4a92d6 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51ce47e8 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58baf257 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5cb3a0b1 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5cfe65e6 rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x649735f7 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73a714ff rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78fe585a rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b69bb0b rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85746774 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89c6f87b rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ada5266 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c610c37 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x972adf11 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa06de95f rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa52484d3 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa89c0056 rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb6ec033 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbe6051fe rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1f82db5 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4c4961d rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc936dc90 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb345db0 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd2f28fb8 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4306ab1 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe8e7ec12 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec20235d rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf42fd170 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf5e43e2d rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf887e784 rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa44716c rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfad78079 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xffd3128d rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x01dc4fb6 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x065e4d4e rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5ff11ee6 rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbe6b9213 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd5dbd60d rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4325ce98 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x56dbaa41 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xef118eeb rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03021dac rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x07d6b8d1 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0d2b8a8c rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1de60a7d rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x266bbd97 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x309b75c9 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x31e0bbf3 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x59d94408 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x808ec53b rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8826e40e rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb53ca618 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbf6ea27d rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc0781e4d rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc8d90f14 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd4a9f332 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf796578b rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3de9e69b rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x782e64bf dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaf31a35d dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb76d78a2 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d2d0180 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x10ceea82 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3d848f1b rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa446e900 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa9b4223b rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaed8eeab rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb8095821 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc84d3748 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd8c29a73 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe0622fa5 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe72164d9 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfac300fa rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x089da263 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x09bc0dea rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0aecfda2 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0c653e65 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10be1550 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14ce789e rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14eabacc rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x197ce6ce rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d8c5bed rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23d20fe1 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x26a66d85 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x27bf262b rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x34799dac rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35905aa6 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x35987743 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ff359df rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41b8d10b rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4984a661 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e190d58 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55184380 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5bd65bce rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5cd85532 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x62867479 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65049aea rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6dbfa0d7 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ffbadd2 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7484e3ee rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x758d03e8 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e4a578c rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fa76eaa rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8272f95b rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9cc135e6 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa6399035 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xab3fe042 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xabd011cd rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbb8ba0b5 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd0705d53 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd691751a rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd99847db rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf1115cf rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf7a4152 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe108570c rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe17282d7 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe3354dab rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0170c91 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf16145cf rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfd71d44d rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1bca2dd4 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2f7f497d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x96eeacbe rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc6d8b9bc rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xef5d8563 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x30d2fce1 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x4c526520 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x60d1eaff rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x080f7646 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1973c221 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2c046fdc rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x412efec0 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x538406b8 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x62d146f5 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6510c0dc rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6d116c0d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x79cb274f rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x81c8e28e rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x81d9f31a rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa20241e6 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd445c6b4 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdcafdd9d rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf6a38d20 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfbefd206 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x069a90b8 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbee4c225 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf243a240 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfeb79867 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x05320bd7 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x254f18c0 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25a7b740 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x28d21eb4 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x39363548 rtl8723_fw_free_to_go EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4366a8d6 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x54a3c68e rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a84924b rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ea2ca19 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8101cbb0 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x844eec3d rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x86ff5fbe rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8ba68726 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x506dc8fb rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5222dd6f rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x56527d87 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6c9d6e52 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6ffcfecf rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ec21b98 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8498b6cd rtl8723_phy_path_adda_on EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9018182c rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9272bd20 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x965e080d rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x96db2c57 rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d7a7627 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fb5bb30 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa14c0027 rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb6d08dde rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb8eee961 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbb547ca5 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda3e2c1b rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeecbc8ca rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd366bb9 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd6262f0 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02aaac59 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07475cad rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a1bbf06 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x15c74373 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21d8ba98 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x221263cd rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27b320e0 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8f5b1c0d rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x97bcb302 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x98a60291 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9b9ce52e rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d725383 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd72ded8 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd34147cf rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe7eb5206 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xef122292 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1af3fb6 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf434437c rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfa07bdae rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfc26acf6 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07c569c5 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11294734 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16e29f24 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x194d732b rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b3012af rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x214ab2e6 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26afc501 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2759f7c7 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x27abb01c rtl_beacon_statistic EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ad61235 rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53b78b8c rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5b00d57a rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5dbc7f30 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e4e31df rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60709e7a rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6bf9379a rtl_efuse_ops_init EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x736d174d rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73d55dd4 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x765b13cf rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97384855 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7878bd1c rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8058ed8f rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90ce494d rtl_tx_report_handler EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa138e5d3 rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1f145f0 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab9a05fa rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1326e34 rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9e3590f rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd008623d rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe047d960 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe3b447d6 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe69358be rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf82d7323 rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf98022d0 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0d198f02 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa679c256 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadeee651 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb921633e rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbfef4328 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9264858 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfe033d5 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd65b22a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8167b15 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfa864eaa rtl_swlps_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x46628379 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x92e2b23f rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc880f08e rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1d692eff rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1f043509 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6596910b rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb8edc015 rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe9a64955 rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x136217e6 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x1d9d90f9 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x99c81b62 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xaaa36016 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4d26e04d wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5bf1a4a5 wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xec3fc35a wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x025ba63e wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdd9e89aa rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x3d4c7fca cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x713521c5 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9ea58dff cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9ee593d1 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9c826857 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xabcaafcf wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xce76b30f wl1251_init_ieee80211 EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x141640e4 wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b66a3f5 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d97213e wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09cb4867 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x131a4425 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x138c0ea6 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b3ae7da wl1271_debugfs_update_stats EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x311706a3 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x353e8d98 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x373eeb5f wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4dbcfde5 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5151804e wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56833381 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59c70973 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a03e31b wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5a1f62a1 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b139109 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b9b853d wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x607e1113 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61f91598 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x64e110f7 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x695cf9f0 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6fd03f99 wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x706dfea5 wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70c19dce wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71ac4ea0 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76039322 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f4d9272 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x84918a29 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d65a9e8 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3793f7d9 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ca2dca2 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43076729 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44e19e22 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46698730 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4956a609 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e7c77b2 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ea3f954 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x512c19ca wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x594b3b7b wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ecd2a9e wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x641f0002 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f180697 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7211a8ed wlcore_event_soft_gemini_sense EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a6b550b wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8bafe4d9 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x901e5dfe wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90c68b5b wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b66475d wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7a27632 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8b5033c wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa94e2d5 wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb426520f wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc576bdfb wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd180dbe3 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd84b30db wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2e31828 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe49bb6e7 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecc6b7a7 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xececde70 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb6e8704 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x566a3ed0 nfc_mei_phy_free -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x6440f817 nfc_mei_phy_alloc -EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x9c06891b mei_phy_ops -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1ce80450 nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5498eb51 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6a06748c nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x816912db nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x12b368ac pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1cf1f7ce pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2f70d9ab pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2fca323e pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x95457837 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaa907845 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85982782 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93645f9f wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x973e8bf9 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d47f3a6 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9782091 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1c1bd89 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb205e2be wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2eba89b wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5ccdea4 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc297df4c wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc2e02f60 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc5cdac1b wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc85bcbf4 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc92290c3 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccf77ff2 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfea9026 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda7739d8 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2815f5d wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe53b8833 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf301d723 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf331bf34 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3937a0d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9960eaf wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd2c9f61 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x29dadda6 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x563dc034 wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x86b3761e wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x934da2d1 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x9c939c87 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xeae59c24 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x218dfad3 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7e52e0aa mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xd83c61d4 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x653fb8ca nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x70d1a361 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8dca4711 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xabcaac3e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x259e8a1c pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3b83d275 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5e25d94e pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x63d63661 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6cbe40e5 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcf5b9484 pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdfa2d09f pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x91040612 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa797f730 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa7fa8b66 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xad0fb980 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb14f2a24 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc83b9b62 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcc6b1a66 st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdab1c14c st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0df6fdde st95hf_spi_recv_response -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x2913e647 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xd195e444 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xeda97d20 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2edf4e9d st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x64a7a089 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x66d15d87 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaad34d72 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb26af8c9 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb29f84e2 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc953599b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf02c3719 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5b4b4a31 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9a9c31aa st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xfba4ed6f st95hf_spi_recv_echo_res 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 0x81fa3327 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 0xc662890c ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc82cdfc8 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xdae6fe99 ntb_transport_register_client -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe835263c 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/nvdimm/nd_virtio 0x71dfa0a9 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd41789f8 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xfc626e61 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xac44ecfa virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd51e2959 async_pmem_flush EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x3fdcfb94 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9cf0bd0f nvme_auth_gen_privkey -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc7d743b5 nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xefbe9c20 nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xfcaed33b nvme_auth_gen_shared_secret -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03904edd nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0b9492a1 nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f602fbb nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0fdd2381 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x15c4a8fe nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17b5b429 nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ad465b4 nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b06901a nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2197d9e2 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2de9dd7e nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3253bd4a nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x329f120b nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x359cb77f nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3648c0e6 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xffbfda7a nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07aaaccd nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x086b57fb nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x12960319 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x169d35aa nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fe6c75f nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2627806e nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d881e53 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e300f24 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ea0714d nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x331b8b81 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x361cb586 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b1e775d nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bd24a1d nvme_start_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d8a361e nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e7edf35 nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4366f5de nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41f36008 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45c7cdd6 nvme_get_features EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x498b3be6 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f4e939b nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x61c34624 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49745e0f nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b63a516 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50d82e08 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x510531ba nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5896c82b nvme_auth_init_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69bd5ebb nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c3b73d0 nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6ca53f04 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f08e82a nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f3b5b00 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76930895 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79d50be3 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a8afb90 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c4dcac4 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x695635db __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a8fdb7e nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b6d0337 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72fbde7d nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x762ef764 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78411e52 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ae8cd28 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80d1a474 nvme_complete_async_event EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8288e51b nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84b80cd4 nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x855a5234 nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c0ef24c nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c41952b nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91266000 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98d9b739 nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9939eaec __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fa05850 nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa300dbe4 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5f9ff57 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaae44d51 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab89ccb3 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad84d6f5 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf2f7162 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf9413fc nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb5c8003d nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc2c1deb4 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xccc45411 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8161e93d __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85ccc08c nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8875f3ed nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x890261da nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8dc744e5 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e5e3e33 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9230d659 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x987d2e30 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99327668 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa2bac24b nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3082b92 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5f5f405 nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa812e11d nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1c13874 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd007429 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4e9e6a9 nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc682d9fe nvme_uninit_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58cff2e nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcd5b0a4 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf280993 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe899aca5 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xedb34547 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xedda9830 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf0ddf42e nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8e329e5 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1b4908f3 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7d0a73ae nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x88d7d1a6 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9a155421 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc5f5bd6d nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd7150699 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe3aa3cff nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe50930ab nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf66d5466 nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf768fd54 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc425ae4 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc753125 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe62e1b04 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe63eac01 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6499389 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6d4c650 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9f57704 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb3f1a37 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec58ec90 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2c1ba8d nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa2e76d7 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0d1e88c7 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0df5fc15 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x186080e3 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e328d22 nvmf_set_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2a9accf7 nvmf_map_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x31cb7e07 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x48dadfa5 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5e41f0ec nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbaa9c85f nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc81d608d nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd0a1f8e7 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd8af66e nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xff07afba nvmf_reg_write32 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d9efac5 nvme_fc_register_localport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x21e609f7 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x5fc82a49 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcc8a2d78 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x081e324b nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x100d105b nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x14ff900a nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3411352f nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x011d4e85 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0dbb02e0 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x325d1744 nvmet_sq_init EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4cb080e4 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6e6db0f4 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x70a8bf12 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8e9219b2 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa8c2c725 nvmet_req_free_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdafcdd4b nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf0679fd9 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6dbef3a2 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85d96d18 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa0aef642 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb051a782 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb48a08c4 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe3acc700 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe5046b34 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xefda3154 nvmet_ctrl_fatal_error EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x19a35c78 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xf285e0c7 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xb3bac473 switchtec_class -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xbe2ba9ce mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xdf0d6af2 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xef76ce1d mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x60b00a8d cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xd06f438e cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x8045e953 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x0eec86b5 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9978a9f8 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xa9030d17 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x10ef83b8 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xda8b4e25 cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x112134ec wilco_ec_set_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x244a94d8 wilco_ec_mailbox EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property -EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x400f4d47 wilco_ec_mailbox EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x06e1730c ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11116536 __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11622e6a ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x150883f1 ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x288dce1f ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2a60025f ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x44085e35 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x468fceed ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x48b52b8d ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x495cbb49 ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4b622966 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4e1ec23e ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5528befe __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x60906978 __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6216a958 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x74f14c6d ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x765b8423 ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x78af968c ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8052466c ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x894a11d0 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x93c7181e ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9f374ee2 ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9fdbe3c8 ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa8170979 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0f1a7464 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12875638 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1457cca1 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x183553cc ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1b97af2a ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2b9258ae ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x380742dc ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3fe44d16 __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x488460db ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4b5d277a ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x50f6c59a ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x53a2287e ssam_request_do_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5ea3de5c __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6901b27c ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6c6fbba5 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x793df429 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x867c7281 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x88a94cb4 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8bc41645 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9a4bf82c ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa36505c2 ssam_request_do_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa50d2d0c __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa7eb9a82 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xad38d8b4 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb01991d5 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb262d3f1 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbc1900ef ssam_client_bind EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc6319299 ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc63e5b61 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcfde79aa ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe11e9022 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xea5ece8a ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf1ed9060 ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf4b0a816 ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfac65aa5 ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x3eddb02d san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdb852e9d ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xddd16f9a ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdea14d46 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf1d30b7e ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf809ce64 ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x8fbcd0e7 san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister EXPORT_SYMBOL_GPL drivers/platform/x86/amd/amd_hsmp 0xdfd927ba hsmp_send_message +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x261fe964 asus_wmi_register_driver EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x89c090a7 asus_wmi_register_driver -EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xaf8b8b75 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x717412aa asus_wmi_unregister_driver EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xd9146b52 dcdbas_smi_free EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xf1a06655 dcdbas_smi_alloc EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x0aac09d3 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x174ac8e0 dell_smbios_register_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb1676130 dell_smbios_register_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc2871e79 dell_smbios_error EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xd6c6b12d dell_laptop_unregister_notifier -EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xf84ccf29 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xdcf41c5f dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xf4a4155f dell_smbios_unregister_device EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi 0x9d4b709e dell_privacy_has_mic_mute EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x8eef8246 dell_wmi_get_hotfix EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0x9559234e dell_wmi_get_interface_version EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa167d064 dell_wmi_get_size EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-wmi-descriptor 0xa3dcfa65 dell_wmi_get_descriptor_valid -EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0x12c024ba fw_attributes_class_get +EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xdf8ccb6f fw_attributes_class_get EXPORT_SYMBOL_GPL drivers/platform/x86/firmware_attributes_class 0xe609be46 fw_attributes_class_put EXPORT_SYMBOL_GPL drivers/platform/x86/intel/intel_punit_ipc 0x8ee9455e intel_punit_ipc_command -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x7cff9e47 intel_pmt_dev_create -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x9355cb79 intel_pmt_dev_destroy -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xf75bf69d intel_pmt_is_early_client_hw -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x0246b73c isst_if_cdev_register EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req -EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x17120600 isst_if_get_pci_dev EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x75385fb0 isst_if_get_pci_dev EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xaac59fc4 isst_if_cdev_register EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity @@ -16536,1014 +16873,1030 @@ 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/wmi 0x065b4695 wmi_get_acpi_device_uid -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x114dd8b1 wmidev_evaluate_method EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x17b0f8ca wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x31b9a032 wmidev_block_query EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x7b552965 wmidev_evaluate_method EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb173a6cf wmidev_instance_count EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd5bf6c16 wmi_instance_count EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xddf222a2 set_required_buffer_size EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf215bba8 wmidev_block_query -EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf6ab3efc set_required_buffer_size -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xeb36a519 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xef8535c8 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xf772601c bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x105ff9e8 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x64a419ca pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb6e5d544 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x6e552ec7 rapl_add_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x8e9f9eb7 rapl_remove_package -EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xd840b4b1 rapl_find_package_domain -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x22c1caa4 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc8250bec mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf6e04103 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1f870307 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x34936064 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x39515718 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x793a3c9e wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7ba0d34e wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf36ed21d wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x7c1761b1 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x225674c4 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x83208768 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xa613604d bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x13750b48 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7e1e67ad pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xbfe24fbe pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x086fdf62 rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x6e0b8e6b rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xac4eb329 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x44cd4695 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x55f009be mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8dd5ac69 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x074ceda9 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3169cee0 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3e156b2d wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6ab44130 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x870964ba wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xafae119f wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x094c3947 wm8400_register_regulator EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x6c8fc95e qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x1f2529f0 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01ea8b14 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a4a470b cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ff4b6aa cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1143b4f3 cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f49a5f1 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24065fb2 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e5a7dd3 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f865aeb cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30570ad9 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d7acc4c cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40145582 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4664f657 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5618ba11 cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f000cdf cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6575b55f cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67127749 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x673273c4 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68e61292 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6956333d cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c8c8d00 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f182065 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70fd9768 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71725e14 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x795eed74 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b56dedb cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7cbd3b13 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ed0f96b cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x5ae103a4 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x019971a0 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x068bc14b cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x080a9748 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e6e3569 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10a6f252 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b718327 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1b72e287 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bee9dbf cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e3cb15f cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2245a3a5 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23322868 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27d026c5 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fffb77a cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30d23a16 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x31340814 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x331a09cd cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33ff3f92 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47286660 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x518b6ab1 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55393b39 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x625b6de6 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x667fe7cc cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x668fa145 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x739e03b3 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75e9ae90 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76cd5dae cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d6b5b64 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 0x7fe89450 cxgbi_device_find_by_lldev EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x832e5f1d cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x96a503fd cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa60bd9dd cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaea7ffc4 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xafd01a15 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5af1b2b cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe270d7c cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc113a188 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc546c093 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd14017b4 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4321b4e cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeec82c53 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x836bd4e9 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x840d9b23 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84ba7ffd cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8590382c cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87911569 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bea93d6 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0598e81 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2055fc0 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc34c27cd cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7f0bd1a cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5935b42 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6c7ec37 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8841005 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9ef1b18 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9ac2f51 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea5f3481 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec842418 cxgbi_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf591d34f cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf82d1f21 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe74137d cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff185353 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x096fb3bd fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1a9b6d42 fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3bb96358 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4203d76b fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4c851f28 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5182a044 fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66f0e96d fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x713e0c8e fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x87b206a1 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x93ec3ba5 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0aa93019 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1671e4a5 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x17020a9c fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x181f50ce fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1f095fd0 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x376e7a4d fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x50355a3d __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f81f948 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b9fe21b fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a5b04c9 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8f0ac0b5 fcoe_check_wait_queue EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc07c84d8 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc39bd331 fcoe_fcf_device_delete EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcb0e710a fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc8626680 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd22ec31c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd5795ce5 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1ea0dc3 fcoe_get_paged_crc_eof EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf767dc64 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf8d822c6 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfc381ac1 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfce95073 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x0ba1b05a fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x70fcaeef fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0225ba63 iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6302507e iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x654cd497 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6be93a16 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7cf1551f iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb2732826 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb9df91fe iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b449075 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07aa56d2 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x0c372bf8 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x5e96daa8 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1141307e iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x265f95f7 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2a9a3437 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2ef32267 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6603e3d1 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb8adba2e iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xcc598f06 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x5b5d4b09 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x015372b8 iscsi_itt_to_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14ef2d20 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x182f4911 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19985523 iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ce7bfd8 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ecde582 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a61e0ac iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d7c99ee iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d8a1647 iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3036d310 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x351a6b1b iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3708715b iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a41b23e iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b81c819 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20e7ae12 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x212f9117 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21341215 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x240aff70 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2627b452 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ffaed58 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31fd1453 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33a60b58 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x373b38ab iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bae6056 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bb27edd iscsi_host_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ed91c17 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41d243be iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44fc53f8 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b0cf22c iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69b0dc60 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d71b7bb iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fe6b006 iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x708be305 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x73622d79 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77286f49 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89236cfe __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b972e9b iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43c3d11b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4970542f iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4993da27 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x52b01819 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57b36a54 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b213fc7 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x68220f2f iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fe60f6f iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79e40be6 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x807deb89 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8abeb8bf iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8afcd747 iscsi_session_failure EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e1e1a54 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e7c3b4a iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92ae72e9 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9531d388 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x959e2ada iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad2f6cc6 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaea2cf05 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf93d91e iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5124500 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdd256ec iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2687857 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3d45750 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7c3dde3 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8fde67b iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda98f961 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb8d2965 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc9bf4d1 iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xddc76d87 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf69ae08 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe226d7d6 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe49fcc58 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91ae002f iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x921fe854 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98523d6e iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ccb8998 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa0f047be iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac01dfb5 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0fd03fa iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4a5ded2 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb87879b0 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf27e7f4 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfec1572 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2da76e0 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb1d1aec iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcd55d20 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6006be7 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9c5ed09 iscsi_itt_to_ctask EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedb80a25 iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x176b83da iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ced7270 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x250fc031 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3d001bb1 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x513f276d iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x565df809 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d46075b iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x697b81ff iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70d278c6 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8818a512 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8a7d2975 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x980f4dd2 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcfedeea9 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd428dc80 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xddfb80f9 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2f0d249 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeb44e3a1 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0756d6c9 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18069da1 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c56b71d sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d61c80b dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x285a647c sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30480444 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x332609a9 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x33d1ff4f sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3646b829 sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36bf2fbd sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x38ed08ea sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d46ae37 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f309c04 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47a44429 sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48306a97 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x565d6f18 smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58ed85c6 sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x61afb484 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d8bc125 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6efdf358 sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x766b726a sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79b8c1a8 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e263e82 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f17364d sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fe6b5f0 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5d10103 sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb54eb22f sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba8dd264 sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc8ecbceb sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0ecb942 sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd146d7c6 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2d53ba7 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdfcbf66d sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe507e62e sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4ba3d68 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb631c45 sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x73baaaa8 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x026456ba __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04e4182a iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e80b491 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13292374 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb7ba25d iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed629749 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0e255c0 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf17accf1 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf582023d iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7f6021c iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe64a5fb iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff822f87 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x092af4dc iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ea7bc1e iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x192a8a55 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1f0a44ba iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21bf4969 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2e2c584c iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3f4a045b iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53b85e3c iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x83934944 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d8787b6 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x92f22893 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x96b93043 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd6ec4712 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe2db2a80 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee2e6034 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0dfe571 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfa3752ff iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x07b8b7a9 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fade8ab sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13cac8e7 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13ce6c69 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2489533d sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2554b35c sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x26dd30fc sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x38642f66 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39424288 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4217e140 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x495ffd6b sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4aa6f10e sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58edcaa3 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6774a6c1 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x684925fe smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b69240b sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x773f12a9 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7960a3cd sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84cdfefe sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a6a0138 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e5aa24b sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c4a2412 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1d29519 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9512618 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb7fb4672 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbcb99b61 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf3044b6 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc081c01f sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd1e2dab2 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd75dacc sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdef2d139 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf014622 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2852aaf sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef20387c dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf06626ef sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf986b7b3 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xeccf8c96 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x036882a1 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0675562a iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07d7b553 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0825101a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08730c3b __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x105eff74 iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x186d054c iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1aaba961 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fda0578 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x238f378f iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25055df7 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ace769d iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2eff7531 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3179f670 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39678d24 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d0ff7b7 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4594a1d3 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45df6956 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x489ffcbf iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51810e66 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fc800c3 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x279d59f5 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d127ddc iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x306d1d04 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31b3c1f7 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37752e93 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x390b5b16 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42e9eb26 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4caacdff iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x503a523c __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50a6613b iscsi_find_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a7b54fa iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x608827bd iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x613da1eb iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6943b3f5 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59177200 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e162881 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x610ae57f __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x680632dd iscsi_create_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ac6f68f iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6b771cf7 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d21151b iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d9edf53 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ead68a4 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7135a9c4 iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7578a95a __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e70c755 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6decf27e iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f6dad16 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x730c48f0 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x742d5069 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74b3a2d3 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d2be55a iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84202733 __SCK__tp_func_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8adc0671 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fd218ed __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94955da9 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c9173ce __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0d60603 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa24689df __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6a6598f __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87f93355 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8cf4597c iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e5e70c1 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b357bdf iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b8baa3f iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ca6d0c2 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fb02a61 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa720dbd2 iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8e6de29 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac76bf76 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb909a2c3 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae7cd27b iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1ab30b9 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb232c24c iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb618ce85 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb77a3b39 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb83b4db6 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb0ca69b __traceiter_iscsi_dbg_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2439ec2 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5d07378 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8870df1 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc20db21 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce02f9e6 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcedf07ce iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd14c4b66 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd323cffa iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5550026 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd85351ed iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdb90b491 __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdd7b38ed iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc43ae3c4 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4648f60 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5d9356a iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc81767d9 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce18c93d __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcda215a iscsi_destroy_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2d1d786 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3b49947 __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed5d4d1e iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef4e42fe iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1df1066 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeca7b415 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef0a02f6 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef8119d2 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeff14c38 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0365e4e iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3dc565f iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3f42098 iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf838d20a iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6b822d75 sas_enable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x83bff4be sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd8fa8441 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfd6ae483 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf944c9f1 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe820c20 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6951dc42 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x93be8b8d sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc836a8bb sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcec6897c 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 0x664b4d26 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 0xaa382010 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 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1f01a4d2 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x203ac920 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x706ac897 srp_release_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9c64d589 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa48b6041 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa9ddffd8 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x04a924e4 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x09fb173b siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7a7237b7 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8f32bd3a siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xab569ac8 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xec39f6e5 siox_device_synced -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x20dacad8 slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e4e9dfe slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30f36084 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3eecee40 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4193531f slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42616314 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x462b54ff slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x47e51c16 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x488b7b4d slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x523b4ba8 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x63e2e3d1 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7914aa20 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7d0da09e of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7d4eff38 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x957dd67c slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96135ee6 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9bdf5e8e slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa61f2235 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad8decaf slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb057b542 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbfd573ea slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcb47f769 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd3d57d62 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xde672128 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xef2a4d6a slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc8179d7 slim_read -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1d69c05e sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x5756f7ce __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xc64bf09d sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x74a6ae0d sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x738f05a6 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4d2d93ac srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x75513dd7 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa3223c83 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb19dd124 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcd7cbad6 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf35d51cf srp_release_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x101f6e0a siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x554c5875 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x91393352 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x98997e3f siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc476c6dd siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe48fd098 siox_device_synced +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x11f51b2e slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1961daa0 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30953ea0 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x49a092a1 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6277fb76 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6315318e slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x64e62f09 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7922f347 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x798ba05d slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x798c6def slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7eb5af4b slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x815b9803 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x92ee4fc5 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x96ed5fd9 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9b9ac8f0 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb1f53753 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc41ecdbf slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc47f159a slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc657b54e __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc6cc4185 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcd8e56fb slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcfd0e309 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf00285de slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf0892b23 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf3be1869 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfb303809 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1b1c925d sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x8f39e23d sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb95e4224 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xb66b7ae1 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x48a38080 altera_spi_init_host EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x39f5fff3 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x41d425ef spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4d683230 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd403cd55 spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe9572fb3 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xff9b4832 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2b784c03 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x302db350 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcb6e9244 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x04b8ae4f spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f700917 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2e1a79a1 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fecea4c spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x33309585 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41b16743 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55d9eed0 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8cb49059 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8e28d0b3 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x91578708 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9d1faf01 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa2c30634 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4744d1b spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa66076bd spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb9e3d2f8 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc77f238a spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc820514c spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd62d9c3b spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdf862d67 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd30b6c3e ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xad120469 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xde1faa7b fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe47ed99d fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf32dbe09 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x074c0377 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x107c115f gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x383cd933 gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5e62b791 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x60e0e0a3 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8d86b1d3 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x908b05b4 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x990495fb gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa6825986 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaf06d1e6 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb304e6e1 gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe1869bea gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xea2a5207 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x13b6d672 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x23224a7e gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2862b355 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4aec0f93 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6acade8c gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x81d4a333 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x84cfc3a6 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9172b95f gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa54e8927 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaa725d76 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc26d3bda gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc3bc189b gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd633f3a9 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x17c236aa spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3d4a754c spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4bdea236 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x905bda4e spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9a436bfa spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb680f901 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7b3a609b spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x998c15ea spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xec16ba3a spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x08c2cec5 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x148210a1 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x21142294 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x23e35fdb spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x24dd6171 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x451bf0c1 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x485314ce spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b2d6bfe spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d92fc01 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72e642d4 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7429a1df spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7857303f spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x881b56db spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8c8107e0 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab796751 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbcba1ac3 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdf7a072f spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe9df691b __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf7569f36 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x9ac59df6 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x21141a23 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2adca23b fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x499eadd6 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7cfe41f9 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x07616369 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x265ffc23 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x266cc3a6 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4dc84f91 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x52abcd49 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6cc5ef5e gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7054e387 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x72ae0a66 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x88a561b5 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x923808cc gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe301ed82 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeccdb9af gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xffb9135b gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x298112ae gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4a12b6cf gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4ed7db98 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x557ac79f gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x58f35434 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x68499d90 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x86c09d29 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa43db8b7 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xae9dc8d3 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc928724c gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc9cb01e5 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe9825b39 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf985ae39 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x193115ae gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xa8b12900 gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xcc99a642 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x344d3beb gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x42d295a0 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6663eddb gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x74b01e07 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x6b5e3b31 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1acdd83e target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x962511b8 target_submit -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9e10c890 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd7509cd0 target_init_cmd -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0316a427 tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x07080813 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x08eb4841 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x09fe4d7d tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0a0e3c68 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0x177aea56 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x1f777e31 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x261b6d82 tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x384ef7df tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x4077478b teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x44a1c97b tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x479153a5 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5ee3ffc8 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7241220e tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0x82959499 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xc3b77c65 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x35420d18 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe2358c2b gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6247c935 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6b25626a gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xa3868cd3 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x559d9269 sp8870_attach +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b9b3376 target_stop_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4b671818 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d24150b target_free_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6fb7645d target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x85631f4d target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb4489234 target_wait_for_cmds +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc65e34a6 target_alloc_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe7ae36ac target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x14ec1fa7 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2770cc17 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3b6a538e tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3eb0a81c tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4c08fe38 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4c581fa2 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5f3b9be5 tee_device_alloc EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9e327484 tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb404c4ff tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcb2822d6 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd389d7ea tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe2f5443c tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe8288f1c tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf40ce62b tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x2d221752 int340x_thermal_zone_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x4f9f6108 int340x_thermal_read_trips -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xc48e6b94 int340x_thermal_zone_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x47a56b00 proc_thermal_mmio_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x54338c38 proc_thermal_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x56430169 proc_thermal_suspend -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xad81bf5e proc_thermal_resume -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb1f88deb proc_thermal_mmio_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xf4a9c599 proc_thermal_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x0c1fcb9a proc_thermal_mbox_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x8cfbc1a4 proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8d880eb9 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9051dc22 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9196a98f tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9be293a2 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa0f1cf3b tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb16b7e62 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb24ecb08 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb72dc140 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc137d22f tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc2c846b2 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc8ca8684 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xdeb149fd tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf1cba718 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf32375a7 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf981c669 teedev_close_context +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x3eb45cf2 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x457f2f58 int340x_thermal_update_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x8974c2d5 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x4aa6adb3 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x4d8ce666 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x5ba2d0cd proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x710fe400 proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x882c9443 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xe026bd02 proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x75190129 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x7690bb4d proc_thermal_mbox_add EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x098e82d4 proc_thermal_rapl_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0xce211ca4 proc_thermal_rapl_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x50268d27 proc_thermal_rfim_add -EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xb772a451 proc_thermal_rfim_remove -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x61dc461b intel_soc_dts_iosf_init -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x85498d6c intel_soc_dts_iosf_add_read_only_critical_trip -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xba7b6401 intel_soc_dts_iosf_interrupt_handler -EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xc607bb1f intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x17070140 proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x12b0b45b proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xe40ebd4c proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x0af1c8b1 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x0c9184da intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x2876c639 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x3b453586 intel_soc_dts_iosf_add_read_only_critical_trip EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x02b08d51 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x04e927c9 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ec8fb05 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1d9c16c1 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x335e3442 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x066696ac tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1debb046 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x288794a4 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2bd5f300 tb_xdomain_enable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x450ff663 tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x476c44ac tb_xdomain_release_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5c28c633 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x52ec4bba tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x52ece48b tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x53253a6f tb_ring_poll EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x63c68e4e tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x61e37b46 tb_xdomain_find_by_route EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x668a8a40 tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x71df5c4f tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7212ca01 tb_ring_free EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x792610b2 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7f17b164 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fd54488 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x83b33638 tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8fd100b7 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9037cb1f tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9e8957ba tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9f80b67a tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8d9ca9b6 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x93848bc8 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9445aa6d tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9ccaff1e tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa02c7b05 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa1cabff0 tb_unregister_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf225afc tb_ring_free -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf963d46 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa85442ee tb_ring_alloc_rx EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb8fb9958 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbf87e69d tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xca5bc6d3 tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xda50a1ef tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe46e99d5 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcb46243f __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdb2cb29c tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe0cc0d63 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8397c99 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf15c5f08 tb_xdomain_request EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfdc8d951 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x01712f02 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0b543d32 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2fea293c ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x308ef751 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x34e23b60 ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x37b006e3 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x41c423e9 ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x432fd254 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x52f5fb12 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5636e127 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6731c430 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6ae9429f ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6fdfd421 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0ddaf9df ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x11f4df2d ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x143e2480 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x185717d1 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x191ef39f ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1dd66d15 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c12bf18 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c3a7c34 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2e2eec61 ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3117a4a2 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3c48f722 ufshcd_mcq_poll_cqe_lock +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3d2d1ec2 ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x414c7d2a ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4478d3b0 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x468411c7 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4db0f4ee ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x58efa603 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6f2ee2f4 ufshcd_init EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8b4a0e36 ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9468ce30 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa7104ad3 ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbc3c4ac1 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc036e980 ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcb594b03 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xda7fa56c ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdaea8b9a ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xde464885 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe37ece4a ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xee2debaf ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf00a293f ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x263dbb5b ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x391c8ec4 ufshcd_populate_vreg -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x5153713d ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8431fa51 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8bea5def ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9ce2c988 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9d612a8e ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb24fbccc ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbe3dea86 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc3e76d60 ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xce8ebcac ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd4012d2b ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd928f63e ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdae83b4e ufshcd_mcq_config_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe67b2b68 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf07056f8 ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfe10d552 ufshcd_mcq_enable_esi EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x661c452e ufshcd_pltfrm_init EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/uio/uio 0x0a09d53e uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0x5d046242 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x6e406541 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xcb15e579 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x085df358 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x66b369a4 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x25ea89b7 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6fdc44c8 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7535f199 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x95129c0b cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xab78953b cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb8002ce6 cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb9957431 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe11751e5 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf58c7fe6 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2b8ede11 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3faf1c65 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x41fbd8ef ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xffc2435b hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0b838bed __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1d644db3 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7a0e40ee ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x93252122 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe20bb074 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe364b551 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x177108fa u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1dc532b1 u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x23845af0 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2c9ec20f u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x489f8f91 u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x50aea9f0 u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7a165cf6 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x80e91995 u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x98478296 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9a88d2dc u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9df2f613 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdc5a2302 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdcacde49 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdce01270 u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf5898e22 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x079003b9 gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1641c1a8 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x236a11b7 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x47fd61f5 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5c17d938 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7f8fdaf8 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xcfc9fa77 ufshcd_populate_vreg +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0c61e4ef uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xca2a08b5 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdd2cbb0e uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe2d83568 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1feb463a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xcd3b4193 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1a64caa0 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x73ee357d cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x93785255 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa4360fec cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa8fecd36 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xaa5cd4d9 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcc3e4aa9 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe02d81fd cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xec14583a cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0499b407 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4e085797 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x847ff3e8 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd8d7ed70 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x11ae0470 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x637372c6 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6c269f7b ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x951336e5 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbb648781 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xffd4caa8 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0aadc1b0 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1e33923d u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x64747c52 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x648af8b1 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6ed81be7 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7c33371a u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fd2d4f7 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x993da08b u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9cecc767 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa330b577 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb03c6aa3 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb1a80990 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb75c6a27 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbcb253a4 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xcc78a4a9 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01605c45 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x03fb156b gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x26f58c81 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2788c2f2 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4dcc8358 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62d8fae1 gether_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7a0093e1 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fa7babd gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x831ecb1b 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 0x95aa4711 gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e7354b6 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa5f924a9 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaabad14d gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2a326f4 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc34ee3aa gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcbd7d92b gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7331e83 gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe3796982 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf41846f1 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8aaea5e9 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1d38dcf gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xac690378 gether_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbe0a262f gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd1026e87 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd313fa34 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd8d8d9d4 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe807cde4 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfbf2a05c gether_get_qmult EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x48aaebb8 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x34ebb0f9 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6a1bfd55 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb16680ac gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x92c66a5e gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbb167751 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd7bc14c8 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf8f47081 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4ca67800 ffs_name_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x838cd123 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf0b66986 ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0041658d fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf04bbe79 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 0x18f65c73 fsg_show_inquiry_string 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 0x2849df14 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28c267ba fsg_show_ro EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x394a6372 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 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3efbd8cb fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x40d8b948 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 0x4d3e3808 fsg_store_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4e0f49a8 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4bbcb47b fsg_show_file 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 0x56f1c2c7 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5747d037 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x63c70b52 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 0x6ef1fc7c 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 0x82b4c4b5 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x850f828e fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x85183296 fsg_show_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x935ca4f2 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 0x9a0221c7 fsg_common_free_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9be220e7 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa1e5675b fsg_store_inquiry_string 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 0xa5ee6936 fsg_store_cdrom 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 0xa99e4141 fsg_show_nofua EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb20aa55b fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xac71f340 fsg_common_remove_lun EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address 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 0xc356c938 fsg_common_remove_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xccf4531a fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcda1cad5 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcf1e24ce fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd02b4769 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc5c4ea6b fsg_lun_close EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc919128 fsg_show_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe909553d fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xea8d0296 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe07c2f68 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 0xf5c26d97 fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0f58bdc3 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2d3b18d0 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3a526603 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c18e308 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7d29b148 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8748bee8 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f6c1127 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x98a0318b rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9c0ecad8 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xac287219 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xad702086 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xba345a17 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc07f37fe rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcd1722d3 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdf5c10e9 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0107dfec usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x054568c5 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xffe03cff fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0071616f rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1de41ebe rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4753a8cf rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c2e8a9c rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6e97b389 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x857a2ae9 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8fa06d30 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb77577c0 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xba4f9232 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbb90b573 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbb9520e8 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc8692b20 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdec54b8d rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe0a1807d rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfeaeeffa rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00f17f33 usb_get_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19d3b12b usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1f261c60 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25ed904d config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f1a5a58 usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17186b51 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x232aef32 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2415361a usb_put_function_instance EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2ab8740c usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c6c53fa usb_composite_probe EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30c1e290 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x33fbe965 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x367c2174 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x377a59ae usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35f59909 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x38fa5119 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x41f7d129 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42661857 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43716ab4 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46004cfe config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x49c05adf usb_put_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c69fe4e config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4fdb8909 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50ae5e7b usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c6cd60c usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5dfe7658 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x60ef4a91 usb_function_register EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7802124b usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x982b126e usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ee73796 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9f27bbf6 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa1fcfe92 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8d8e903 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb10f3fd1 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb6067c42 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb6655ebf usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb83a7881 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcee749b9 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71d00c5a usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c87eb6f usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f31aed3 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x876ad3f3 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x881c3d13 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x95a974de usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9a0e7cc usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce859913 usb_composite_unregister EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd509d572 usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd630e7d0 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe23e3196 usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe44ae9ac usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4ea42f3 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe932cf86 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeda383b6 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd4bec321 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xda114e57 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe18c58c1 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2053d21 usb_otg_descriptor_alloc EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfad69ff0 unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfee94514 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x146efc16 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2a8967a4 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5afabdb usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfc79156d unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x10b30e01 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x14f75b62 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3257703a empty_req_queue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8bbd62c4 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8ee668d2 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9f9e5096 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa944687c empty_req_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb3ebfe58 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbdf21556 udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd16dcd6f udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x6db5af24 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7265afdb udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7a888229 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xa6558e56 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbcc56985 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xcc80b5e6 udc_enable_dev_setup_interrupts EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0bca8791 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x128637cf usb_gadget_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1be33124 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x03f9da00 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x06176bcd usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1a39ee5f usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2434a329 usb_gadget_ep_match_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x373f1b2d usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x309e05a6 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x36628bed usb_gadget_udc_reset EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4c862bde usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4caead09 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4278f34c usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4657ae38 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48096a80 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x499a2402 usb_gadget_check_config EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5005dadb usb_gadget_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5205b41f usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5964cba7 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5af07f6d usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a68786c usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x773dfbb7 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5c113954 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6c82bb8f usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6e8af98f usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x76bae827 usb_gadget_set_remote_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x84633372 usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a2cea1e usb_gadget_ep_match_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x949726c1 usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95e19672 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x987ab914 usb_gadget_set_state -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xabcb2f8b usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9502b3f3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa057824c usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa321516d usb_gadget_vbus_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb245bfaa usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb963418b usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb44417db usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb5132be1 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb6217741 usb_gadget_vbus_draw EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc12236fe usb_gadget_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc4d882ca usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8398d20 usb_gadget_unmap_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcffbde35 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd16db2a8 usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd476bcb1 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd829fae6 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9b4305b gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf245c68d usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf341b107 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf54dc1f7 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf5f6b634 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x9772b220 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x5dc24ac8 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x665067f2 ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x03217a33 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x09b5deb3 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0e073a78 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2356404f usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a6d7905 usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x647d0322 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x671acf7f usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe6d7cfbd usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe71001a2 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcf2f5b6b usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd1774056 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc027d99 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdd0ebfb1 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe476115e usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9b6a9e4 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec986200 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x90f7b2ca renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x83e9c5d3 xhci_plat_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x8b687480 xhci_plat_remove +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xa288538f xhci_plat_pm_ops +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xbb986306 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xfc9c341c ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1f07a8f6 musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5b7e9a1b musb_set_host -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5cb79fd5 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3c0534cd musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4a96deb1 musb_get_mode EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x69758860 musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8a8d8921 musb_interrupt -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8db05549 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa166feab musb_set_host EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd4ea61b8 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xaf487b40 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe5124fa2 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x52b0cf3f usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5603906d usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5f7ca86e usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5f926d79 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf0f86da9 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x8d975dfa isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x2a292aa3 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x002b041a usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16165184 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1910c02d usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x225e7da6 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2c559928 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x322cb944 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c2454de usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x530ccfd9 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x57326fe2 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x646c6598 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6536dae9 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x65cd4c6d usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b5fd07c usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7ed7e16a usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x945e60c9 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9d133989 usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa5a58776 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb59a623f usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6302882 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd07a03ec usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2cdead0b dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x5fcdb758 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x008069e3 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1aea19c0 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x4e335051 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5bbb35c6 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf250d5d3 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xab4e276d isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xf11bb8cd usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x138984bb usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30d8ae5b usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x42f10710 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4535cc11 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x463ab579 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x48f6b4d4 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x50cec239 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x644a865a usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x67c814a3 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b119817 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x99e7fb98 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb24a603c usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb373d7f0 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5a629fb usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc9e55a98 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd57fce58 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd945ca68 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xee04416d usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf4ab2ed1 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc21cc33 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x23fc1d54 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x3a6d57b6 dp_altmode_probe EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x82a9a9d6 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x96eef241 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb3372641 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xd3cf1ecd tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xd680581d tcpm_port_clean +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xda86a83d tcpm_port_is_toggling EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x01ae35a7 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x029428bd __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11672b83 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x121c4313 usb_power_delivery_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x16b87194 typec_retimer_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x19e955dc typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d35a72c typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f8129fd fwnode_typec_retimer_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20a40f37 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x23277c47 usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x267e1dbd typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x014e38f1 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x06b19f76 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0d8e6868 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x126b2031 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x144065c1 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b810e9b typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d5890ad usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2056d7d2 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2057e134 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a0172e3 typec_altmode_enter EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x302d8baf typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x385077f5 typec_retimer_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3b00acbe typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d797553 typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3dc2020c typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e946781 typec_retimer_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41fabe5d typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x437ab127 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x43e652f4 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4719bec5 typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4af5918b typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4eb1d404 typec_partner_usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f1a8af5 typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57185ad3 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59361c2e typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5940f57e typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b071e22 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6328d834 typec_mux_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67f15215 typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x695c6468 usb_power_delivery_unregister_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b273cef typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f05ee29 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30c5df87 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46a04c59 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46b06de3 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47226f70 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4b31c148 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4efbccb8 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f29d064 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x503f3437 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x509dcd31 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5204cd97 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x52bf15e1 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6ae9bd8a fwnode_typec_mux_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6c29b656 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d5f9eb7 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f1df0bf typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x709ce1a6 typec_set_pwr_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x73727963 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x750e3c56 usb_power_delivery_unlink_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x773b514d typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e79f5a7 usb_power_delivery_link_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8606d20c typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6ca9d2fd typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x70400f57 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x73ef7a06 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7938cbde typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79ecb396 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7da5d1db typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7da76372 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e0d5a82 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8560842b typec_unregister_partner EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86c4223e typec_partner_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a9f4fee typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ac601d6 typec_port_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e75ce4a typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e3616f5 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8eb92f04 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ecf4d0e typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8fd03e33 typec_altmode_exit EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b46adb6 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9256358d typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96afbf07 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x97a1a078 typec_mux_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7c6a19c typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xae44a91c typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb222b9c6 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5fcf37a typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb8375837 typec_retimer_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9f16673 typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfa5b8b3 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc2c3248a typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xccc5e3d1 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa506e2ad typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6c4321f typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7ab8b31 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xab46c8a8 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb02d641a usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb52dc5df typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb86436ea typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb90af580 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc0a2a6d7 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc969a25a typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xca5304e5 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcd066413 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcd1f0eb0 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcfb31b03 typec_cable_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd54c5039 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd58da283 typec_retimer_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdabf3f4c typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdadbc366 usb_power_delivery_register_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb42001b typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd5d0e93 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xddac5cec typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe0b3e940 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe186756a typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe40ed672 typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe93483e2 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd36dd1c3 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5198bd8 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd704248a typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd86de6f3 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdcbd8938 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdda538fb typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe22527a9 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe4b2bc99 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe667fd1c typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe935dfdd typec_port_set_usb_power_delivery EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec8eb639 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef87ba87 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xecb03320 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf0857cec typec_get_fw_cap EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf16628df typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa326404 typec_retimer_put EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfdc93f17 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe0ec5b7 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x10eda1f2 ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5d286f8e ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6338314c ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x714bc00f ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x735800c4 ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8856fff2 ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd3c30e70 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf3271154 ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf8dbc678 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x059ed387 usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c45e2a7 usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1eff2f2b usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1faba13e usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2b465429 usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x44c042a0 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4ea33222 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x529efb0a usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x722867cd usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe26c2ad usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe9f458a typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xff211eb1 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1aea5b3c ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1afcbf32 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2187b9b6 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2378366e ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x30fc542a ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb61e2760 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe1b2c556 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe40c51bb ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe95eeebe ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1364350d usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x13eb4374 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1a789365 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x38abed88 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x53d70c6b usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5bb13b01 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6ed6a9e6 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x72c59030 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x73a87c69 usbip_recv_xbuff EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb41dbcb8 usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc7e1dcc0 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8aada6ce usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa2106a4d usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcb457df8 usbip_dump_urb EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe63920ed usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeca01d03 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x16546a4b _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3104c12c vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x39360807 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4da1e0dd vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x586e395a __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x61093bdb vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7f508cd8 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8eb4ce41 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa798b4dd vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc0f9839c vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc39ed5cd vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xa81e4fa4 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x841bde5c mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x152f0ed8 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2f9fc0e8 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3d0dd39c vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4ad73494 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfea9b7a9 usbip_event_add +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x01814c21 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x19ba92ea vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2a5e061a __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2c8e5c62 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3eae04de vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4caa635a vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x53d5bdcf _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x77042be6 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xaba3afa3 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc8715603 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe8dbdf7b vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x40247bee vdpasim_create +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x662051ad vdpasim_schedule_work +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x9f30310a mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x02f885b7 vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x20feb66b vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2ba272e0 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x36e111ed vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3a2f132e vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3fe05096 vfio_pci_core_finish_enable EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x57dca9b1 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x765059ce vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a01a250 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7d049835 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x88c3fde3 vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8cd2a45c vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x93ed0950 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9bc8c877 vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xac97cadf vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xce7ffe80 vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd78e843a vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xda36a080 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe6e5ac13 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf6b6dacd vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf890e452 vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1e9c3949 vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1eca183f vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x361c12fe vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x42200176 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x57ee02b8 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x725e33dc vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x748e389d vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x77cf46f5 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8896412c vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x994c044d vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9b96c0b9 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa0452068 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa196de09 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa5cd7b26 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xca76e4a1 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe255f25d vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf7c262aa vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x08a3cfa8 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0bc37699 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1f3694f4 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x38c6c3e1 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3dde32a3 vfio_file_has_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4a9a1df9 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4ac3c8af vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x536105f7 vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x547cceac vfio_iommufd_physical_unbind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x65ba61b9 vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6f658f51 vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x61010b1a vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x68f6ef6f vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x705f3ddf vfio_iommufd_physical_bind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8467312b vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x89b96aab vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e934016 vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9017971b vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x972e9f64 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa3114474 vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xaf4f0e60 vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdae94a33 _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe281a3d3 vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xeb1ddc15 vfio_virqfd_enable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfdb666ce vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02516083 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x033f9534 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03dd03e3 vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03fee970 vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04c7fdaf vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07195802 vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09c5e2d7 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f8274e0 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x101a6f54 vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11a1c2ce vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ad290c9 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23e0ad64 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37581d04 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e5522f8 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42ec5114 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x569b87a5 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5cd15500 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6105d84b vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b89ff2e vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6dc23b08 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x772a2790 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a71478c vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f25caca vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a12bb6d vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b154604 vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e2a71a0 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5c06029 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8191a3a0 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x856801ef vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8859592c vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88be1ae7 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8ca7ad84 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xabe0df1e vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbd096bf5 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc324433a vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc80a8406 vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd5796051 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe39f565f vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe960108f vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfc836eeb vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x062b0994 vhost_vq_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10fda6af vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11f147ac vhost_worker_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12e47c5c vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x179ce5a3 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e13db80 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22972fc0 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a152249 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2e588cff vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f976530 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x326f01cf vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32f79b4e vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a2992fd vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3fb2568b vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x409ad287 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51876dce vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59cad2b7 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63497bdf vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b56ac1a vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d5c24f9 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76c4775d vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b1148e3 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d9d1c02 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x802aa1de vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8435d11e vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87897d69 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97be4051 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4af51b7 vhost_dev_reset_owner EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa9ca35d1 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa87f83e vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaed5d387 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb18244b4 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3ed9a7c vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5454fa7 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc8a1ab6 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4cf37fd vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdef1253e vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1248b66 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1ec3361 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf569dc14 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa8c097a vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb230814e vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4a9e9f7 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8128adf vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba85658c vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbfc8e02 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc87b82e vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2d2ad7d vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3477b0d vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca0ce26d vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xce41b6c4 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda81813b vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe444cfdb vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef3cc1e6 vhost_add_used EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff0d2dce vhost_log_access_ok EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first @@ -17554,428 +17907,429 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -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 0x13687bcb ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x223f548a ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x31f6b40d ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7b3f4802 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xce7c73ab ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd446e313 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf10c3660 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x71cb2a80 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x22ff10ab fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xbf0ff419 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x62877808 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x658daec8 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x20ef8f72 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x27b56deb ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x83d0a0a8 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xab64f613 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbaee2f42 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc9d0d681 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe3efd88d ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xaf4eaed7 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x20b87e7b sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x362b7f47 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 0x30cc9311 viafb_request_dma EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x908bda50 viafb_find_i2c_adapter EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d 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 0xcbb9d310 viafb_find_i2c_adapter EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xce990048 viafb_dma_copy_out_sg -EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x03f440ab w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1a95179a w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0x1c5b5e8e w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x229b3b28 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x577705f8 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x078d35de w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0bba24b3 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x37d8e11f w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x457a1699 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x57fcbf3a w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x62599915 w1_touch_block EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x68b065ff w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x770dc2d0 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7920cef4 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9286d90e w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa266387f w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0xeaf5d33c w1_read_block -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0e02abb4 xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x2e14189b xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4d721e02 xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc77fe9c2 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf90cd79f xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x4a7a0c01 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x65cef342 xen_privcmd_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x431052df dlm_posix_unlock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x70f6ebc7 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x868b741b w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xabfb4710 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcc8434bf w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd189decd w1_touch_bit +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x145f8e99 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1d73093a xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x42dfcf80 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x568a3b16 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc34fcb59 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xaac633e2 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xe47d547e xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x28450715 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7d97b516 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9cc8d87b dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc2f37b82 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe286d321 dlm_posix_get -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x038a3226 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x08ceecdc nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1cdf37c9 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2e3a7406 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3ef186bf nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6580e0f1 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x01c35c62 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x167aa7cf nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3b0f2675 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7df27f08 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96e42e1f nlmsvc_unlock_all_by_sb EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd49250ea nlmsvc_ops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x016e34c5 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc76907ed lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe1ac3ad2 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe38b0f44 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/netfs/netfs 0xec19a09f netfs_extract_user_iter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00d0ad93 nfs_write_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0312a877 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03d205f7 nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x067cacdb nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x083ddf1d nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08ca200a nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b22b0d5 __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b78dcb0 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8de39a register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e15d817 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e223fe2 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1011b70d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0817652f nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a506142 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0bfc426f nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d2f54ea nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1100dc38 __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x140d6123 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15fd0658 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1730a74b nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18ac19ea nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1980fa17 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bf991b1 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d83c5d4 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ed86966 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1110930f nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11712aad nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x134b6844 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1585ca22 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1af14e47 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b364e2f nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bd272c9 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e21d342 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f230eb8 nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238f3189 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26003502 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x262d4ce2 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e74cc2 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x234a99af __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2432ed60 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24ba2663 nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26bad358 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28dd0398 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b55e0d6 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b6c3b89 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d43fe0d nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f011e91 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f7aa542 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fe511d4 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30d47fa2 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33605f5b nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3378d3fe __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x341f146f nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275b0087 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x294b4cb5 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29c1ac8e nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2af2fc92 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e295917 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2efdde18 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f423fe6 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb154e3 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30b3f898 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33775de5 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3417a6b7 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x350c7a98 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3584f15e nfs_alloc_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37261742 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d90c7c nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39a75c54 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38958b25 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x395ca8bd nfs_client_for_each_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bda406c nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a698be0 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ae7d05c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c2975ba nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d28977d nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3da7a270 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e149d5d __SCK__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fc3d86a nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x400de66e nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40734167 nfs_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x417776c7 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41f68271 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42833e82 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43d837c1 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47a3efd0 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bc52481 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4be364e8 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb495a3 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44f2af18 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x456cf7f6 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47d677ab nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49622835 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49a7d0c2 nfs_file_splice_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4df29daf nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4df617fe nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e821501 nfs_show_options EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51f957dc nfs_access_get_cached -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51fdd022 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52cd3220 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5365c6bc nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54af2e91 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x557fc3f2 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56385bff nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57932249 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52ce1e8a nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5873132a nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5aaacf46 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af78239 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61a609ed nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61da6815 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x641b1f5d nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x686ebe8c nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x697753da nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ab3a2dc __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d929bc4 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x705c429c nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76387946 nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77911ce1 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77eda62e __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79380648 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7970836d nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79bc8aae nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79c5e2de nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c6d6fed nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81b9af46 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x822a149b get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x824b6c58 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83544770 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83a4aefb nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x849928a7 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b650201 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c2d7d50 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x624ce590 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6313bbf3 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67391908 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68731434 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c809176 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d62f4d2 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6db7bd34 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e05afd9 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71fd5db4 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7292b380 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73685364 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74f1e499 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x769154f3 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76c6fa8a nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76fc764c nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a54d9d8 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dc195ea nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e91fcda nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eff4fb1 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ddd303 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d05407 nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8598a892 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x892cf146 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x893f6f09 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8961e0c6 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a7a6085 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c38f3a8 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ddff644 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e14f134 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fe9ceb7 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87c47512 nfs_read_alloc_scratch +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87f735e3 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89acb982 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a886774 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b639b2e nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8df06f4a nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f3b3dd1 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f41e193 nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90c7f2b2 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x917adfe5 nfs_refresh_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93f34a08 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x973dd52e nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9812b5af nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x920a5a9d nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9484f9cf nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95020883 nfs_sysfs_link_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96e837ec nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98ea3d50 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b470cf8 nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e48acb3 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f3d77d4 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f5d35f5 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa244c268 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2b2348a nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa34687b7 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa349575b nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6fae275 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa88af2b7 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8c176fd nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f91a885 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3cf65b9 nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa42f2f45 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6d94258 nfs_file_llseek EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa934b17f nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa980d091 register_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadeb0318 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1b8439f nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb21ab9e3 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb44e05c4 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6efa889 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8dc3f88 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97c09e7 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbed9f9e9 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbee0d310 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a6c0af nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc34e37df __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae8c32bd nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0bf7df4 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2907ec3 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb56039a5 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb730b2e6 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb77838bd nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c64c38 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb96999fd __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbb5e977 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbccd1d7a nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcec43ab __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd0e087e nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1f4476d nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3ad86dd nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc455f2ea nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc67a622d nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8c877b1 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb173cf9 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdb3a010 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdcd7303 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3627f12 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd63038c0 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6d4e0bd nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7179767 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd778e347 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd92e9dd0 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9db484f nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca0383eb nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca7cba69 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb059855 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfc95882 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd106448b nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd11dc34a nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2390943 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3f1a9f9 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd79dabce nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde233b49 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d90384 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe192be5d nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3bd164d nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe429d73b nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7bd21a1 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7d6f578 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeae85311 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedcc09a9 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4b5c8e4 nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf618b09a nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf77a3525 __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf836f98e nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf862e42d nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa13584d nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa85a19a nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfae32553 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde2bd3f6 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdef1f159 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf8f8b70 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfccc79d unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe015e5be nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe185b51e __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1c31aac nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe33f5d4f nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe413723b nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4e63567 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe573f6a3 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe61660ce nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe65c7ddd nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe73d5797 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea37f705 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed31753d nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef6c6057 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef85274d nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef9c3ea0 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf47ea627 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf55dadee nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6d03004 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9105e70 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa14d68c nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaee3058 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb394fec nfs_pageio_reset_read_mds EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc84617a nfs_pageio_resend EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff790eda nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa638d893 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00331474 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01db3985 __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04f5486b __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfede635e nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x21f8f418 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03e9feeb pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07da2650 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x083f042b __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e9b6f76 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10f70d49 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13cc8148 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c8baae4 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff24649 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x114e279d nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1285d7dc pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1839626a nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x186093f7 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18746ba0 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20275085 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x232c934e pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23e9949c __SCK__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29b16355 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20dea6e7 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2471bba0 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad704a __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a4595af __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b4135fd __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b947edf nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x363bf845 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x379d0044 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37f4e691 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b5b3d35 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d7b1acf pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dc69ced pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x417be667 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41a83857 pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46377d1a __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b40ebe1 __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dbfd036 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50cbfbf9 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x529f2cc4 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56728d62 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58492291 __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ad2bf6c pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b019a2d pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c676c39 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c86511d pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cf4d164 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d48242d __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bcd4b03 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e2eeb84 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3039cbf8 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32458b95 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32cf7b9f nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37559443 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39bc9138 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ac8d0cd nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f72c8c9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4284e6a1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x433cfd22 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x435717bf __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44283cd9 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x460e39a4 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48453a64 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x485183c6 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c9f8795 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cac08cb __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e25713b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f598557 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ff0525a __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5175fe84 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5181b263 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5240d89c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53f2d0f6 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5488abb2 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x549855c9 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55a7c9d0 __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x581f0cff pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a24b1bb nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dc226cf __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x604300fa pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x626b0609 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61d8a0af pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62de010e __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6767de85 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6768d68d pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68e34487 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6416359d nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a8e6808 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a7bd32d __tracepoint_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b7d04ea nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e0822d7 nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e989187 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x700287f0 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78d04551 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e03dc40 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6adcdbb2 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d5a7adf pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f363b08 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70a98eae pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x710e3e9a pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71af581c __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73ffc5e0 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7811fb85 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78b040c2 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a48021d __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b6973b7 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e1a19a8 pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86004b4e nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8813f2a1 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a7a7bc9 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c3d1c56 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d48f510 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x923fa342 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e6ba7b pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8343059a __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8378dc44 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86998163 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e31314b pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f543c17 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94f11e4c nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x965b38d0 pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9727cc4c nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97344eb9 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9776367c __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa3eb00 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bb6dd6f __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa22e892d __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa24835ca __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa51857a1 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6644b93 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab4f4362 pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabb2bea3 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9de27b05 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa05bb2f9 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2c39615 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4fb11bc __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa52e8a50 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa68d3158 __tracepoint_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafe2774a nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0d818f5 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1728eb5 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7f148c1 pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9dd8f57 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9eb6f2e __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba3e1506 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcd1cde8 __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeafb277 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb20d491e pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb253bb7f nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4876aa6 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb499e82f __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc76f65a pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe0ea83e nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5ad63f8 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc739c683 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9d7b37b pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb64600f pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7cbe274 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc89cf791 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc94174ff pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd260a84 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0c46e86 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3500f60 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3afd415 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4210d94 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5cb0556 nfs4_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6801587 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd7e3e5b7 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8b86545 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8e70838 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd0af843 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce6f8f70 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf33a6b2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd21ee475 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3a531f5 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd63be4d2 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6de1ebf __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd83d59ba nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd87a1377 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8a33bb1 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9dc460e pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdadb4c7e pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdae0d5bd nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb20aad1 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde07529d pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1423ca1 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1611b43 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4520b32 __SCK__tp_func_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe481fe9c pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8bbb7be __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe97e8d05 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9c6a6e5 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe720dc54 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe75c2eef pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeacc9911 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb8bf9d4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed9c9ba7 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef676614 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefe70f0b pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf29412f1 pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3a6e771 pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf426bf02 __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4d8ec53 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6f4330e pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3e3a75c __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5002c22 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5667e82 __tracepoint_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa4d2666 __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb2992b0 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc17261c nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff5ac120 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x196b72b4 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b8092e3 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8f53c730 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9523e816 opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x4108368d nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x529cfa47 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd190251e nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xddfc0323 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xbf4f8faf nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x275ff387 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3ce7eaa4 o2nm_node_put +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x47634fd7 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x53f43adc locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x79c243d4 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8e624fbe nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdbac0fa6 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf8becc49 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x7c24efac nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x191d8674 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 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5da48a0d o2hb_register_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7388a106 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x721f22a3 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x845083a2 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa8fd921f o2nm_get_node_by_ip EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb0a955d4 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbc4c677a o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe2063500 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe28c0c9d o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe72a7e95 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/cluster/ocfs2_nodemanager 0xf767cc96 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x41f62d76 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4484022c dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x70523f5b dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0001bad2 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x22718fe3 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x36fd7c46 dlmlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xce3bc5e0 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd10e792c dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x92edae44 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9d21302d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc795dda6 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/dlm/ocfs2_dlm 0xff9e12ff dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x66cf27fc ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x55a835a4 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89733dea ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8a1df366 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8fc4bb7b ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc24f7c02 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9ff44dc ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x39f0dea8 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfad6738d ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x1e9f3322 unregister_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xfe14135a register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x02524884 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x22df6234 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xb43fb7a6 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xc2776541 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xdc113316 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0xdef1096d cifs_md4_update EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode @@ -17992,8 +18346,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4b45fb6e poly1305_init_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x7f376d08 poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0xfa617389 poly1305_update_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x14245589 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x98eaa4db notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x09118761 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0f883b24 notifier_err_inject_dir EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 raid6_call @@ -18004,1075 +18358,1084 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x3c4dda51 lowpan_header_compress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8d291e90 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/802/garp 0x0f188d66 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0xb056bdb8 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xb65ad1e4 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0xbf35e065 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xef4e9f1a garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xfa23fe1e garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x3ed4858d mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0x5ca02734 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x6e37ef4c mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x7845a685 mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xeb72eb39 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0xebdba104 mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/stp 0xc6d842a0 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xf7dd0b0c stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x83f937fb p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x90804ebb p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x6767c36e lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x76ae4a85 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x232e2ea1 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x648b34cc garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x6eaba39b garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x809f538b garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x882a389d garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x91067bbe garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x0344bcb2 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x737864e1 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x874e08cf mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x8adb5e2c mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xd9b50d6e mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xe344fed8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x0d03e1b7 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xb9bd3aeb stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x387546fc p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9ea25b9c 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 0x0e183cfa ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x78c1a26a 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 0x05b84aff bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x19199d61 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x268052d2 l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x26b982b4 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x69074bba l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x758298e6 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x81a28b01 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8bcc1039 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb4df51fb l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x025f58fb hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x021e541f br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x078df9e7 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x19ec1f6c br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1d30bdd2 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x206f5cec br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f3c7e38 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x533b4d52 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x58491239 br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x58fab65f br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x62d63ef7 br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x671f64ba nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x79e7773c br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7a33742b br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x8743e7c3 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa0369a8b br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa767bafb br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb3c29791 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8bc8378 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc56f4582 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcbd99440 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xccacce93 br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd7b63bc8 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0xeb332543 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf182b29b br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa5fbec3 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/core/failover 0x04ae2f41 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x3876e60e failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xdc42bf89 failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05f2d0e2 dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0x082d62db dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a73267b dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x112f2977 dccp_insert_option +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1d53767e l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3756e599 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x39577d49 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5eff844d l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x71e13f03 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcead5fc3 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd82eeae8 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdf6280a7 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7bf2eae l2cap_chan_put +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0afb94b8 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0bbbc7c5 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0f889f8d nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1013f806 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x159d2ca5 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x276cc55f br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2cd32d9b br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x34ed7427 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4e576bde br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52548797 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x573a6002 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6259b427 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6538e38e br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x701db297 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x79a5677a br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8e7246c0 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x91b295af br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97126f8d br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb302e2c6 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb9dc4a46 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc170f616 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd0acce96 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2296e87 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xda73bc3d br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf72365a1 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1693b146 dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1cbe8b96 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x219d1b1b dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2283e031 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x32693491 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c401674 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x40459786 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0x42769680 dccp_init_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x47198086 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20faa19f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c2ab18e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e8ba3af dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38781f42 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3cda6513 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e7be468 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4362f7c1 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x43f2ca7c dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45ad5b6b dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47c31237 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48bc9657 dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53132420 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x53b9af5d dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x542fab2f dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0x57ffee62 dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x58526683 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x542594ba inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x546bd5f3 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5697af0f dccp_poll EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d71aee1 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0x631e5069 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6385bae2 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x66ef7726 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x67c38ed6 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x742b2666 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b8c1015 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0x92a8b181 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x93ae5b41 dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc33ae2b5 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc788b80 dccp_rcv_established -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6ef4d95 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c327c8e dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e32514a dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac737f80 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad7ec447 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaef223c5 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0dbf658 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1062ef1 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb86c45a5 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc88eec6 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2c2b312 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd65cbc42 dccp_ctl_make_reset EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf6534a9 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xef822f90 dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf568e480 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf9e12455 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1ac9ca39 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x47f596ec dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5cc7a931 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd7ff79d3 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe2cb8cc1 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf5795eab dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0a5c34f4 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbe4b941 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee29f69c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4ec72d4 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb4bd1fd dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xffc3644a dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x23d1d56e dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4c149395 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6be582c1 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x74dbf5f3 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x808d4b08 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf065c44a dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x02d84c37 dsa_register_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2ceaf1c5 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1416773d dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x179c3203 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1810e35f dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d4186f6 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x242cbe58 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2adf3501 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a50a2ef dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c1b004d dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3f102f7d dsa_tag_8021q_bridge_leave EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x42bd27e7 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x42dabac3 dsa_switch_shutdown EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49b9cd1e dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x49ca9f79 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c20ae39 dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6194d29a dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6acc4796 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x79873a38 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7aac69fb dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7ad2f716 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8249b35e dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x86a8ce13 dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8f98f9e5 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93edc74e dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7de9a779 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8216b0d7 dsa_tag_8021q_bridge_join EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7be6900 dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb8d95d5c dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa0d45c5a dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa89048c0 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8d42069 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xab16aa42 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb46fc619 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb52d8065 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb7f244be dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbbc4dd7e dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbcb09eef dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe60c7ba dsa_port_from_netdev EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb62c1d8 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcbcacb89 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc5f82759 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcdf1ac5e dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf9ead67 dsa_tag_8021q_standalone_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd430110a dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7237dd5 dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd7328db5 dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8132bfc dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xda0562f3 dsa_devlink_port_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xda53c5f6 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdb2bbc82 dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe17ad4ed dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe68c36d6 dsa_switch_resume -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xee0203a4 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf03ef5d6 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd52128a6 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd984e29e dsa_tag_8021q_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf8747819 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf617db5a dsa_tag_8021q_find_port_by_vbid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x03b36e50 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x12d53ae9 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x04021e27 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x099d3eb1 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1a6883ae ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x64ca3e51 nl802154_scan_started +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7a26ad73 nl802154_beaconing_done EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb1023846 ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xda46ae5a nl802154_scan_event -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xeedf572a ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ife/ife 0x5c3fd6b9 ife_decode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xaa3ee6b9 nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xab230c7f ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xac96165c ieee802154_mac_cmd_pl_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb810b0a3 ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf0e8df9a nl802154_scan_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf5d64541 ieee802154_mac_cmd_push +EXPORT_SYMBOL_GPL net/ife/ife 0x5a2855b6 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xbff65fed ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x77faad4f ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x805ee217 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa1892fe8 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe272bc05 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x20625b03 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xf61534bc gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x44c4e442 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4837ecae inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4f2ba00d inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x61fb13c6 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x78545532 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9c732168 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbb4ec73b inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0cdcce9 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd895a2c4 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x5994ffae gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ea20724 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20a4660b ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4019d79e ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x43690608 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4acb27e3 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5bf5f9ea ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6c0611cb ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x716008a2 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x73b3ec97 ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x842196d3 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8c7ea205 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbf973ced ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc28b3643 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc3fe4f69 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd60b1073 ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe8ef305d ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1a04d43 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x77c46d5d arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb7fb9ce8 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x52b74cfb nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xf471b779 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x0963c236 nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3dea87d9 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x47b3ad05 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4cd0ccf6 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5a04a6c0 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x81a56842 nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xda0a78b8 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf6434831 nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x61e24091 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x06211c61 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3e663bc6 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4466fe40 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x0f1768e7 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6a5db3db nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x12643c8b tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1d34635c tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7af2b61d tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8dbd0e92 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfb8ce7b1 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x02ef384c udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3e96820d udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x50615a99 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c328f09 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8c8ff983 udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9a2b9d89 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9ebb1fa7 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdf669457 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8b3be1b9 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x91a734cb esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfecaae0b esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xda06b9e8 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xebd00a60 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf3a1c60f ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc569262d udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xffaada86 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xfa275d6a ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x11ec6e87 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1d0958d5 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x615f3485 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x17b0a9d9 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x33dde0b3 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x503b37d4 nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7a242c68 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7afd90c2 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc7921076 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfa0ac32b nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfc6bbf27 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xe685e1f8 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x09dc18c1 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1df45fd1 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe7c55003 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x35101c28 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9a67e563 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x06939075 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0c2e864c l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x10d04325 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x181c119c l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1dc7c994 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21421d33 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2238f0f0 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x733b0505 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74a32576 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ba738f7 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7f72e3b1 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x930dc1fa l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x98192c0c l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa48c9b9b l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xafe953cb l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb898c85a l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8f53d31 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbba23217 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbdb355d7 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf06bbe2c l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf0ad345a l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xe02e81c5 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0442ad63 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x65afe23b esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7bc38b53 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3f7c6325 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xb7611ac8 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x13eff439 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x22431556 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x50a6da20 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x56359c30 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5eaa2df6 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6469f0b0 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7ec9139d inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdbe935fe inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xeb4d5866 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x840476e7 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x10bda648 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3048f772 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x34659f48 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x375aae18 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d7bd2e4 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6ebed5b1 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x71a202f2 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84610b64 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x94ab3c61 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9934a498 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0accb87 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc334a2ec ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd654a62f ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe11d31f2 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe16371f5 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe6cfb2ec ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xee65815d ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x6add86ef arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa11ed967 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x4e63e9dc nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe1014660 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x1163f7a8 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0ee02eba nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x114037db nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x20051aa0 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x55e06e8a nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7beb27dc nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xbd22b99a nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc28f7c29 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x5a16fe54 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x2c0b66e3 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4f709341 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe453123e nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xaf72f252 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xdfe575eb nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x52ae7af2 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5eb2f021 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb97cc44c tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xba3bba9c tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcaddccb5 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x456e4ce8 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x48e35435 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa6f5796f udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc750b3f9 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd54d72a9 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd920ea5e setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe6ab39fc udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfd2c983b udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4a8dbbea esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x63ae0ab8 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x8b11ed90 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x50e0f43d ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5a98f3bf ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x74c2fd2c ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x27f3d07f udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb3203af3 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x8678f75c ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x626bd1d8 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7215b05f nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xea3ab237 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x518a1fa0 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1899048a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x25c42c6e nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x35c6d937 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x82833160 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb49c9424 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd9e1eae4 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xec0ea914 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xdd715f3d nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x085ff53a nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x44da0bbd nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9b6f58df nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa9f2074f nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc1e1f01a nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14d992b6 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e080e92 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x20822f87 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x56d73254 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e981f17 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f03be3c l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7078f09f l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x70931162 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82d0ca6a l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d618a74 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa228b284 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb11d1b1c l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8f990ce l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0dd3c5e l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd23995a l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8cdeda3 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe39c2f08 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe59ca719 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5ec9c92 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe7663ffe l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xead4990e l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x367dc78b l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2135fe3d l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x35e7d437 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1602597d ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e153b93 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x15fbbb7f ieee80211_color_change_finish EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x17fb2ce0 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1bd97db9 ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1d3b0cc3 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b7ba161 ieee80211_remain_on_channel_expired EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21a8201d ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28bf5b5b ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b17ecef ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2e29e5d6 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44782f2f ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x551aaf01 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56fd0ded ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x64a288bb ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7313f1fc wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f06bf61 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91b3ceac ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b049dce ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4039eb3a ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5ac4802f ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6658417a ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6cc858c3 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x742f1787 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x79bbe1f3 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x83b87ced ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x885256ce wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9413671d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9446ae17 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x960983bd ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x989fd9da ieee80211_request_smps EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb0894c7c ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb33d66e0 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5970a9a ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc6b1f51a ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad224e14 ieee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xadd537d5 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb1a8b19c ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb3227bfc ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xba0780d2 ieee80211_resume_disconnect EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xda157851 ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde74500d ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe0a12eb4 ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd1b64d64 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd6db4916 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe18d7e29 ieee80211_iterate_active_interfaces_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xef433a04 ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf90f12fe ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9e48a99 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4bcabff8 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4ea956bf nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x73e7a460 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1e16ba55 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x25126a86 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6d39053c mpls_output_possible EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xca29cf0c mpls_dev_mtu -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd621ed31 mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x100d1eb7 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x109b5930 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd4961a9f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf85717a1 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1a1b1e2d ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1abaeed7 ip_set_put_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3409b497 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x34ac91b9 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2d718465 ip_set_name_byindex EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3fd91036 ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x409c20ec ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4fe2ac93 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x657b8e89 ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68ded5b5 ip_set_init_comment -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6bbe3aac ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6ef5522a ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e255070 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x520d59d5 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x562e5a48 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76765327 ip_set_put_flags EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7f061573 ip_set_add EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c85bcde ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8714b4b6 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x878ffb70 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x89530e02 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8daf823d ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8f4587ec ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x98293209 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 0xb8887d91 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb8fb082f ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc67f51ac ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd430b541 ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdfdfba9a ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe9fa1d50 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8c93b91 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa9e498e4 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb7e0f72e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbe3d3c45 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc2f402f6 ip_set_get_ip6_port EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x101ea9fe register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x25e6aacd ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2f645f7b ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd7f6e823 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x454dac21 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x53260723 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7c0496e3 nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x860c5958 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc57bb38f nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa588cce ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x44df15e0 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6ada3ab1 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x91c67d87 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa527737b unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x07357837 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x14f09b25 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3ebd6830 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4276ac25 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9df96bf6 nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x017640fd nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09f554b7 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x006c030f nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01a694c0 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01b19ffb nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x054925f6 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x057f0272 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0662701b nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0aacc241 nf_conntrack_eventmask_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bdb679e nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d29ab7a nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0df3f32e nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f7ca401 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x110db89e nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1326787f nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14612b2c nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16407f14 nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18998652 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x197f8514 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19caff77 nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a172a9d nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cae0bb2 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e4a5416 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f0c7e5a nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2578ca30 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dee857e nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed5e22f nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f06b8e0 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12b11779 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18601e67 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b36b3ce __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e61d568 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ebb2a5f __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fa3291e nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2348282b nf_connlabels_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ac21593 nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31012f1a nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33e28552 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x365a46e6 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3708d1bd __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3849b18a nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3930bd92 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c05359c nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e075b41 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4497b3ec nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x481b1f45 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bd3402e nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d2f8f51 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50e5f580 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x558a1f06 nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65a88aa6 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x668735a7 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31a76086 nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35451532 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x397e0874 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x399ccc15 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b1e5900 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b2eb7e8 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c837308 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x452187f7 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bbc074f nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dff288b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5790d7dc nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x599eaa1b nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b58de9d __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61180cd9 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64286493 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67547a09 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x691e338f nf_conntrack_find_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d237ae2 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dc08fad nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f77abb5 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x753f7c68 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78c22417 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78efcec1 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b77318f nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ef85152 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8115684a nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8813fd1b nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8adb3668 nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b391c9a nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c7b0e22 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6aa4b7ae nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ea0496d nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x730794b7 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76b8c065 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7709d318 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7caac447 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8080ee6f nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x808f6f64 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x874a77f1 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c059efb nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c4735ec nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d3915b3 nf_ct_helper_expectfn_find_by_symbol EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x943e4209 nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x959e74bc nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9783c599 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a65eaf6 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92e28c99 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9582c855 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97c74ad9 nf_ct_ecache_ext_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c0ddf2a nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c1a12bd nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2769694 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5f2ed59 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8256753 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9da6c443 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e2034f8 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ea899a2 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa60ad116 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa66cc04b nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad7e0522 nf_conntrack_helper_try_module_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf908b7c nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafc5a4a5 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2cfb111 nf_ct_delete EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7a2cb30 nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb90db283 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba2286cc nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbeeee3d2 __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc00e0460 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb681419b nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb697805b nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb96d774a nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc7e70bf nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbcd4f6fe nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd9b5343 nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc27aeeef nf_l4proto_log_invalid EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc63ac3d1 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccff8414 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0439efa nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd101fa9c nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3d5f32c nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4a9aaf4 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4da63a9 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc60180a2 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc871058f nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcba902b2 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd74c073 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce3d9285 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcecf7be4 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2b7cdbc nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2e0f16c nf_ct_unexpect_related EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6aca262 nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8f77eec nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdad56339 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd70badf3 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8888afe nf_ct_helper_log EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbde5414 __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc4da135 __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3d5bdcd nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7ae6d53 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8560c43 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec4d87b1 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcf699c3 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe16b5533 nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe23c94dc nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4444cee nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe74dd90c nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8ea30fc __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebe427c0 nf_conntrack_in EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf052e1cd nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24f3880 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedee7038 nf_ct_seqadj_init EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6c31806 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa0d1d53 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xc6917908 nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb51c18fc nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x779fefec nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5cd33045 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xef21d5c5 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xc515619c nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0a72a905 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0915ede4 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8b3d8bd5 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb766af15 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5514a73 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe8a64f9e ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xef2b413d ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf1dbfac9 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x036720fa nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4f54f86c nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x301fb47a nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa9e48b46 nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe0946b2d nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0ea26aed nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3c37ab7f nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5af91298 nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7380a26e nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8d70bf4f flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8f7136f1 nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9801db63 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa014dcfb flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa2eaa5bf nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc064a13e flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc9bc4a18 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce65958e flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd096cea6 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe7593a11 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeeabb83c nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf94f6b67 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfcc17556 flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x20220dd6 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2bd07c9f nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x31d1e39d nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x385433ef nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf91e35ad nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfab401a9 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd588a22 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0cd81aba nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x677e6ce1 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xa7ce255b nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x85b147cc get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8bcf40d3 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf40a742f nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x417bf1f4 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x07c5ea1c ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x90d6d53a ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaf4a1429 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb4ff7b69 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe1210393 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe6e4a01d ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf3c6db00 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x32e978ec nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xe6d1a035 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x45445f78 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7f3f33b1 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xd8de15b9 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0cccc088 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x12658132 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x241d31f3 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x30975fa8 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x492b92bf nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7671ca87 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7d28a105 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x885d118a flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x91551226 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9a6a930e nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9ea6a9db flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb928a6bb flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbaa85a42 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc3c1b5f5 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xde136ce0 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe47f8953 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf117ee1d flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x28e1ed7d nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2948c43d nf_nat_ipv6_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x46a4f6ef nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5d282d34 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6159c509 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71e955ba nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x751206ff nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x94571588 nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa1884efc nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb6c1540d nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xba0c5123 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc152d1ad nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc267814c nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x52c51c77 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6d986dbb nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7b2b9ac3 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x85691e37 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x86330c74 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9340b349 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9c5ea4da nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9d6ff05e nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa93ad377 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaf1e74b6 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbb164c6e nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbb6f07ed nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc70ea398 nf_nat_inet_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed4dedaa nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xed7596a2 nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf0022510 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0846c1d4 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1033abc3 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x17031039 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7bd220b nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe7c3fcca nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf847a27a nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0e29dd66 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1bdcb59e synproxy_send_client_synack_ipv6 EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4069c99b synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5d138444 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x81e9bb96 nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x84e129a7 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb2862d8f ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc91b0f6d synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f344dc6 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x535cbde8 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x86989007 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x88860780 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8cba1af5 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9845ad59 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x999b9720 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc6a45bb8 synproxy_send_client_synack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcbf92feb nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdf5c5bb5 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08408bd5 nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c6a5613 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0d9a726e nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11dbc678 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21cb0975 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26e59b00 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ab84ceb nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x313f12f6 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xda20790f synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00c79e46 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03e42efa nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0848ec5f nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x09c75784 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a3b6d95 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1043e89f nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15508adf nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17761cb1 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1924db0b nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20c4fc2f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x27aba8c7 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x303841ac __nft_release_basechain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e6a7dfa nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3acacbd6 nft_chain_validate_dependency EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41e19a59 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43c9a752 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x486cabf5 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bb9c3f9 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4befa31e nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48a508d6 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b5c7675 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cd0aa94 nft_register_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57372450 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57913a39 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a1d66a0 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6208a68a nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66e56443 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69755891 nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x766d6f4a nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f424d1c nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x861996cb nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x895f8db3 nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b6b9376 nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d621cc6 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9992dde4 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad3dedeb nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb89893ed nft_set_do_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb82a37e nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd143af4d nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4d796ee nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd82ef57d nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd8cfceb3 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5382b401 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b573fc0 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61ae2a97 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x65070e94 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e8dcc0b nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7693720c nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76c1c2b0 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d0d8178 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d201f0c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8979ee10 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8cd32209 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x953872da nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98d9e3f1 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa235a403 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xadf55660 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae3be660 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb08ec4da nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb2b672e6 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb707a861 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb78b4b66 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc264bb51 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4031560 nft_ct_get_fast_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc724adda nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc14f267 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd682ed7f nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd8476432 nf_tables_bind_set EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xded119a9 nft_meta_get_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe39532be nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe82024fb __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe89b64df nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec516826 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf34c8ae0 nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8d62362 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc658a59 nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd67e744 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0abbf3fb nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1d12a9a9 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5472ee0 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xea3ec245 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed84fe5b nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf0223a4c __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x03ba379e nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0dbc4bd7 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4a7022f2 nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9192154e nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xabcbe9c0 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7ccfd9dd nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8c652c18 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xad3a512b nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb47ad12f nfnetlink_subsys_unregister EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf156c9d9 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf686f170 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfc42903b nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x08d7595c nfnl_acct_update -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4f73b5ed nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9218ab7f nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x40050f8a nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb11991f6 nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0ff0f61f nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2fb706a7 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf093f43a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2f0df8d9 nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2b2a3ecf nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x44408c32 nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x50cdc5a6 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xec43a506 nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfda2506f nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x181e67e3 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x562bbe37 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x0a5a3ce7 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fe78c9a nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x98709756 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb189c295 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xdaed881a nft_fib_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x46f9e48e nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa1fc4a23 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc59c3481 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc049a285 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd2e87130 nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x003ba23e xt_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x17fd2dcf xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x222ef7c9 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2a84a325 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x47cc86b7 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57d2d3df xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5ea48d16 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f6153e2 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x628c0b40 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x686f7e77 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ada0050 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c1c76a3 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c64eda9 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1bf28e9d xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20c550f8 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3fca1fbf xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x44b02ff4 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x612435ba xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6f6c6864 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7838d346 xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ec3d5f2 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f1d2c29 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fe1e2d9 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8856c490 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x90d09a83 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x990ed4ed xt_check_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99599a6e xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a064c49 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8902ed36 xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa102817f xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9f2b8f14 xt_request_find_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7e9e657 xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb287f25f xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbab0c970 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaef3d42f xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb9c80b3d xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbcb2f888 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbf7b63cb xt_compat_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc46e7d12 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xca2dcc33 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc01ab46 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd75ee09 xt_replace_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb6dce83 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe5fcde5a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf33e7372 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x44501039 xt_rateest_put -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4526458c xt_rateest_lookup -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x283ebb9a nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7ec7d70b nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xfeb62ae0 nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1e2a8df8 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xbc48c7a1 nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xde04f0f6 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nsh/nsh 0x3423885a nsh_push -EXPORT_SYMBOL_GPL net/nsh/nsh 0x5209a412 nsh_pop -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x03900cd8 ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x32dfcc51 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5e1de236 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x80d10952 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe360e8d3 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe933ba32 ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/psample/psample 0xb55b8c46 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0xc7c8c8f5 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xc9f293dc psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xfad4218c psample_sample_packet -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x09d0611e qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x1cadacba qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x739e865a qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc3f7ec6 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb030b6ec xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe57c3f7d xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x33585c9f nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa3f15d5d nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbb1fb579 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x94a06c66 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd196744e nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xda1213ff nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x33ab2051 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x9cff8158 nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x61a54bd8 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6c6ed6c5 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x70125426 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb643eefa ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb7beb47d ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe349f60a ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x2b2f9029 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xbb6e85ab psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xe1ef2ca0 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xea45cc59 psample_group_get EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xb68de558 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc6471199 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf81ffd6f qrtr_endpoint_register EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x02445dfc rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x0850ebe3 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x0c5586da rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0x1431a315 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x1bdaf5a1 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x0ad197d8 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x1ea9c567 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x27386628 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x27b334d9 rds_send_xmit EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x2b58459f rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x2ce0b7e4 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0x2fb8a06d rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x360791ae rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x340543de rds_info_deregister_func EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3c7937f7 rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x4485f103 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x41d4665d rds_info_register_func EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x49a5d764 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x546db784 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x4866a058 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x571ecd28 rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5e5b223b rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x7535f97f rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x7bcacfa7 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x5fd08ee0 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x62b272de rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6a3b6927 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x6a921dad rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x6efed66c rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x7df85ef1 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x837613a9 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x838b804f rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x96587e55 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x93098120 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x93bc4b63 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x9862e7ca rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x993f4f62 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9b4a1696 rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0x9f768669 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xa3403473 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xbcb1e6a6 rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0xbe51e974 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xa4b63855 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xa510723a rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xbf6e2167 rds_conn_create EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xc615ceda rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xc8ec3e46 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xd2762ae4 rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0xda997409 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xed95d0af rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xf8f249ce rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xfc6ed1a8 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xccbaf60d rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xe04246d3 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf052a460 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xfa590215 rds_inc_path_init +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x44b5c025 mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xdc012078 mqprio_qopt_reconstruct EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc2446d6a pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0xdd495da1 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0xa189487c sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xbf633133 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0xc306f8fe sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xfa8f4dd3 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/smc/smc 0x070e0d35 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0x1749ff40 smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x36345f43 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x97e71dce smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x9877e953 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xa1944be3 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xad31dfda smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xafcdd99f smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0xc7c68a5d smc_unhash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xc8cdbcc4 smcd_alloc_dev -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x14d37935 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x17d83b1e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xad9b2367 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xf9aefe50 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x16f8ba5d taprio_offload_get +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x6a6b1c12 taprio_offload_free +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2a7c8cdf sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2e10022c sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3bc1f628 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xcaa5c3e1 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x10b837ac smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x2749040b smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x6201ea1e smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xda5a7586 smc_hash_sk +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3044d520 gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4831dd62 svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x77c7b89b gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x96f21b7b svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbab83244 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbec29fe5 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a6eca9 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01dd9f45 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02744f56 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03036757 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04714ecc xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04efdfb1 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0551ff22 sunrpc_destroy_cache_detail 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 0x073e02f4 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07686850 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e968119 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x121cb36a xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1374de07 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1377ddda svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13c893ca rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e29429 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x140509f6 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14073006 rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15604204 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x157029cc xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16018cc1 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a9e9944 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ceb7b34 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d12159b rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d929976 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0680c3ef unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06ec66e7 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x075eefb1 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x076a2e1f xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09c9646e rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b2c1bcb sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b789f5e xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0beb4d87 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c982a85 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d250991 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f7eece4 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1017ed6d rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1139a36d xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d15105 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1533e2bf rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15c240de auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15fb009a xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b9048f rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183b70f6 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1946c4c5 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19546a44 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x197f93ed rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19cb8803 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c640299 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c6fa162 cache_seq_start_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21979668 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26559389 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27889099 cache_seq_start_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28110cb6 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x286f153e xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e9caf24 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ef1982b xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa23bf0 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d1df30 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226e35ea svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226f5086 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22716715 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22e1da09 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ea7e3f xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23be715f rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2430d022 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24d1bca4 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x251a241f rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25626f8d rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26f4f1b3 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27248854 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f4b2d4 xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29f6c5b2 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a2cc23c rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6482e7 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b748b7c gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b7b3848 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d05730e rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dae43d0 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e41c3ea xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e943a0e svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fec293b unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314c6fc4 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d57fead svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f53d1e3 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x303bd5a7 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x304bd60f rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30cb75af sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x313d74d2 rpc_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33114a25 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x324ed91a rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3416fe95 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3494d121 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349f0a66 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34afd86b rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c85833 rpc_shutdown_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3642cbfb rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37684595 rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x383d140f xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x384a8de7 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35697e03 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3599f298 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35bf1c05 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ae035d rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b29582 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3afb0d13 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d1281c1 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ebe5f53 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3efb7849 svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f483757 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a700944 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e40f2db xdr_terminate_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x403c3c0f xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d26ab5 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4136a100 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42684d97 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435dda13 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4371ed7f xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45fc33d4 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x473762de xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x485de249 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a08e734 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a18ca66 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a5e01a6 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a7c62f5 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a87e3a2 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4af9d0ed cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3faf650e svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43cc39da rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44219279 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4466f978 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f6caae xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46155ee2 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47d286c9 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e8c823 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x491355f9 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4920f9c2 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49526893 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49908834 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49dce456 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4acf1a98 rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d167ff8 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b24c955 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d9825c9 rpc_queue_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e7b471c svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ed8d214 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50227707 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50915bcf xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e2041a svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51196bd7 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52acb7b7 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f13e08c svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51a369d1 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5317efca rpcauth_unwrap_resp_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x534502eb rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x543118e8 svc_xprt_destroy_all EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55899936 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x565ecb26 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x589ca903 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59099d47 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x592d1ddb rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x595055ea svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59a4c108 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5827ce04 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59e19751 xdr_stream_zero EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5affaf6f rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6d4575 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c436a90 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e4ae86c rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed265cf xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f57f1d7 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x607a812a rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d84c9ce rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dadb68a rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e4e710a svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec95235 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f7943d5 rpc_call_start EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60ada1b5 sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60bdb5ba rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x663e2f50 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b87b47 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x636ad9e4 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x642c8406 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6564442e rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65ba1f0c rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ff26ae svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67040ad0 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68f71396 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a254c68 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ce843ff auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d4191e6 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d70704d svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fa88e01 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fd02bce rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b296c0 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6761a784 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67c89f41 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68cc2ed7 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a312695 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dc0311c svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e485312 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b136fb svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f21d6e svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x714e3025 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7181efc4 sunrpc_cache_unregister_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ff95ee xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x733b7bbe rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74211f9a rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7477ad01 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75993ea5 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d281ec rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76fda0f8 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d5f37c7 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7271e246 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72d0a518 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73465920 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74c1cb8d xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7691837d svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78816619 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78bc8941 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b1fb119 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b224c9c svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c2cafc5 xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e71971f rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f4a5eb5 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fc96583 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8287ce80 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82db5ff3 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8365a1ad xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8400356b svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84cc6d1d rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85bfac9f rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x875e502f xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9ee281 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9102f1ab svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9186fd5c rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x920d06f9 xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9223f5e8 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x925c6b58 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x931001f5 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94a42847 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9520286b rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95c61df0 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e0953cb rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1c5123 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f0424f6 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f5dcc1b rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ff47fd6 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x816ccc8f svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81a05906 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81e3fe57 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8434b853 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8623c4de rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88ce4e4d xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88dca730 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x890d2191 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89ba0148 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b1a68a5 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b400ebc xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b79f65b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ceaa4ce xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e5288ea rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3fe8df svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa8c605 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x908c8ca0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90a657df xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x927ee7cb rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92bab492 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92d165f8 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9390c727 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x947200f3 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94e9fd41 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94fd99cf rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x956e6705 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95e5e315 xprt_reconnect_backoff EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96733fea xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9700f0cf rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9713cd3b xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9759d33b rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97ce40a6 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x992140a9 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97bfb6be xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b3bd0f xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99839a34 sunrpc_cache_update EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b54ddd7 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b55f3d1 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e537f07 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee5fff1 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fec3a91 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2562360 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2a3bb00 svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2cd9fae put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60ba6de rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa61469ce xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa643e99f xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa652c9f7 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa70edc0d xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa713abfd svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab81d041 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabe95beb rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7a71d1 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd4a694 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeb2a5ef rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf297db7 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a513af0 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aec5b24 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0902be rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d373fcf xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d8f0631 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f08d71d svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b18bd1 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d28ca3 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa23e4b0d xdr_stream_decode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa28b49c3 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2c305c4 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2db734b xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31638ee rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa50597a4 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76bf85a cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa823c3a0 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabb8f654 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac797671 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8df347 xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0f9b729 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1fd9cbe xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3114841 xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4a20919 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b06f67 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4beec05 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf62da17 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc2d1e4 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1154834 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4e8dff9 xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb76bc119 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb95ccf06 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba46fa4f cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba7dc651 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba895b7f svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba8ac8cf rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc170372 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd70f65b rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd9fc76d rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe5d6456 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec0846b rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf56591d rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5445b2f xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6bd414d put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e5fedf rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb93bb6f4 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8bca49 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8f1179 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf42f80 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd4761c5 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf4f7322 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf695db9 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf76134e auth_domain_find EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfc530b8 svc_xprt_close EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2c13c8f xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc302e832 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4c73c1e rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc52c7aaf rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc730d58a rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc75faa83 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7ebbb51 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12f7457 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5ddf827 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e58bc0 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc71207fb read_bytes_from_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9116897 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca3d41e9 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcac341bf xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcad18e9f xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb091a21 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbbc65bf svc_encode_result_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdb03ca6 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc98154ad svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb2a3d11 xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc5d6330 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcccb44c8 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccf0b41c svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce200a95 xdr_stream_decode_string EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6802ff rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee6145c cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1bc1d1c rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd224d8d1 sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd25987ad rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2cb8833 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd51aeb21 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d76aef rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5fd5528 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9c9d4b2 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbbd8a4b svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfd6ba9f rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0632413 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1391663 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1c1aa20 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2508b65 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3479e8c xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd38bbcad rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6ded712 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd71c5d40 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d366d4 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e1e11f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ebe7fd svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc95a49 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc01c5d8 xprt_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdda2a267 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeeb2b95 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe235f66b svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25162ce sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c794d3 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe46d9370 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeb39b48 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdec35e08 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdedf0f3a sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe14dcf3e cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2603eab cache_purge EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6bb732b rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe73666b0 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe886bd20 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e5e4fb rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f4744b rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe965f3cd rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d3e2c5 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8996395 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a8e89b xprt_register_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9893645 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeaf32c7e svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb2c481e rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb70cefa rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb84de15 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebe8c57c xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xece72d05 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed7fe753 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec3128e5 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecaf56e1 rpc_clnt_xprt_switch_remove_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee26afaf sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee537538 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee7fbd70 xdr_init_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf05d3c5e xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf092efda rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf37ccaf3 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf46e803a rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4700d80 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4fc2f39 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf52e30b2 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf597dc03 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6935db8 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d3f23b svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8c8aaf7 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa272028 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbece182 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe424e85 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe72afed rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff0865e8 svc_auth_register -EXPORT_SYMBOL_GPL net/tls/tls 0x9548ae27 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0xbb3c4ffd tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xcd21b712 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xfbd8ab23 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50c52b1 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf65b9e59 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf72bee88 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7724653 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78e3f3d rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c866ca rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8d9b827 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f122a2 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa9f61e3 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfafbf84a xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc4c18a8 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1293da rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfde633dd rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe08525b rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe667686 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff6225a0 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/tls/tls 0x074d2ce0 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x2e3ebe96 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x565a3691 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xeefe8073 tls_device_sk_destruct EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20934c01 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27bddb09 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2ff9e66f virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a2dc2e9 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f766efd virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x448e9cab virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52a41cd7 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6746d781 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6b48a499 virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fcdd912 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87820f68 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x89c43007 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91352ecf virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9142cf1c virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x96705d5f virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1dde28c virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb931eacf virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9edf62f virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xba7356df virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x11e0250e virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13ba34d2 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14247501 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20491002 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x225b3ec6 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e0235b7 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32cc3b80 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b81711b virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f93889f virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46d75734 virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x471535b4 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4790b5a0 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47c01dc2 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47fa07df virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x584c5a04 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a65abcb virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d03f0b0 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x81d08c0a virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x979190c4 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98898c23 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c053350 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa228d055 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa527b15d virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8ca0b04 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac01c510 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb559b6b6 virtio_transport_deliver_tap_pkt EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbd57c00d virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1d88efd virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd300cf25 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7e594f1 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe0d84271 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe64be8c5 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe98be24c virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9f3f904 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb43636d virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xebbab492 virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee6afe02 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7341034 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8e8463c virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf908e69f virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb79ea8a virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03669831 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xccc750de virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf012465 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6b25633 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd7cb05d virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdfa9a051 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeba9bcc8 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecfe7dc3 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6c65cb4 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf87affa8 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00b2a067 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x124b315c vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x16762334 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x23310bd2 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x245d9cf7 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x26bb7d00 vsock_deliver_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x33e2c9e2 vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x41ee6c4d vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x502bacf6 vsock_deliver_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5fe9ad0d vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x65fe14f0 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x69462e37 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d5087a4 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8295caca vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x87cb89d8 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f9b3e8f vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6d9a4a1c vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6e0838ff vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76aa3edb vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7723ae08 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x78c9696f vsock_dgram_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x82be9fd8 vsock_core_register EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x97ea5767 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x984a7b28 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x93bc31da vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x98296ce7 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a074f9d vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa20a9898 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa4e9aefa vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa0e45f93 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6718ad0 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb403e8f3 vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbf504ec6 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbea3aac4 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc51ed679 vsock_remove_sock EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd99c68c vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xce95a401 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcefb0e28 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda50f357 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe872b8e1 vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec07208d vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe1a86fe7 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe87b807a vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec05e6c8 vsock_remove_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x024c6360 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3c312419 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x43da59ac cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x55613001 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5aa30329 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5efe4081 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6a33b02f cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb26bcc5f cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5ce7b12 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb7d7a92f cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc97e96d8 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe0aae769 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeb658ace cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee1ed653 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf45ff258 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf51617e3 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0e3f0cc1 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x16e7897e cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1fccd108 wiphy_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x374b348b cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f627513 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x62ca61fa cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x681232b6 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x82e1c410 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8ead8c11 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb1dce3c4 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb342a2c3 wiphy_delayed_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb5c32e05 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb7cbff87 wiphy_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbd8e7308 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc807e40e cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9d4a549 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd1561b9f wiphy_delayed_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe258e12a cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea9df89d cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf292ac77 cfg80211_wext_giwretry EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -19085,531 +19448,567 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x39ada3f9 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x45c4a3bb ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8724c4d6 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdbec527b ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x01decd68 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x04c65490 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x37280ecd ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc25af281 ipcomp_output EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0xaf400f48 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0x7014d9b8 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x84b0b3f0 snd_seq_kernel_client_get EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xca71fb4e snd_seq_kernel_client_put +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xcbf9166f snd_seq_system_broadcast EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd 0x1806dcc6 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x1ad19c84 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x1b458cee snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x23eed8ec snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0x2b99cb9b snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x3555a4e3 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x489f1b50 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf0c8f9fa snd_seq_expand_var_event_at +EXPORT_SYMBOL_GPL sound/core/snd 0x084dbdd9 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x0b6ded9e snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x31a10048 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x31f4e47b snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x37837f6a snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x3f1776bd snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x3f7779e6 snd_card_ref EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x718fd0c4 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x8091b565 snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x9314c36f snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xa5b7e9ee snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xbbc36470 snd_devm_request_dma -EXPORT_SYMBOL_GPL sound/core/snd 0xc7e766f1 snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xccbfbd96 snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0xd02a8e04 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0xd90df29a snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xeb3e7355 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0xef0e518a snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0xf2cacdb1 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x65a7df9d snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x69c7a4b6 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xa673a985 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xb95baeb7 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xcb28b9d9 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0xd083cf40 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xe0c5d8b2 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xe73b002f snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xe7e1fd91 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xebb44b2e snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xef0152f7 snd_ctl_add_vmaster_hook EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x500d4464 snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xecd8c450 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd 0xfebf6053 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x9870ea0c snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf636a291 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04be4394 snd_pcm_stream_unlock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1d01f951 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x20f39516 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3f12f2a1 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4665823c snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5135b43e snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5a8689ed snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0af832ee snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x160b2d07 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3131508a snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4ffa3a26 _snd_pcm_stream_lock_irqsave EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5ecb1590 snd_pcm_stop_xrun EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6a255962 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6f52b03c snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x72f58538 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x69088c02 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6e06be42 snd_pcm_stream_unlock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa55e0447 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa6ce206a snd_pcm_add_chmap_ctls EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb4e5a7ab _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb9421772 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xea35b616 snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf3ce0806 snd_pcm_fill_iec958_consumer -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfc53f341 snd_dma_buffer_sync -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0c77c109 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x10cb0135 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x257bf1bf snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x480448a8 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4d21247b snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x67482f95 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x72f93203 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x83d12188 snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9018a1d2 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x942cf19f snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd368239c snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe55ac6aa snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x1a465dd6 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xee4eda61 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x04930b60 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0b6faf26 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x283489d1 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x32b95a6f amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8d4a33a0 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x91cf7632 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa4d241d4 amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa2d1ad9 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xac90956e amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaed98529 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb0d9dc86 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdf40f51b amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe15a6c0f amdtp_domain_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x03678853 snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ffb4233 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27ca676e snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2a2fe131 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x326184c9 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3bbebe1d snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x480ca5cd snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x51f42876 snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6010793f snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x61bbb5f8 snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x65dfdfb4 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6d6cbdc6 snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7283b219 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f70eded snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x817291bd snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8e2870bc snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8f576cec snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x94ae519c snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9b36c71e snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa8e4ad30 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xabe2d69b snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xae394a11 snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb9882752 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc4589b70 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc80da4d3 snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xce557287 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xce59ce2a snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe19ea828 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe8e6ddef snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf89fdb4b snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf91e7252 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02e84e2a snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05fde63c snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b788e99 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c1389fc snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c3df20b snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e720f9c snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f308ee8 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fe11c72 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x113723d3 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16944a32 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19917218 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b348298 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c28137b snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20eff739 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x246e04c0 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2545d08d snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x282c36b9 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cbdc775 snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e6d48a1 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e9832a3 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x331413ad snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3497cafc snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b62ec95 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b9561aa snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb8078775 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc585f9c8 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xed42c59c snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfb47b76a snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x048e8adc snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x06e8ae64 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1d28a8e8 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2bda5109 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x41a15e59 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5b35bc91 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5ff3160b snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x92d829c0 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb8d08ff3 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbb3c6542 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc9029bf3 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd210f47e snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x84859cc7 snd_rawmidi_init +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xbdd263a8 snd_rawmidi_free +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x1e80f7ea snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xc4ce7849 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x3bd96561 snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x48850ab4 snd_ump_receive_ump_val +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x53ab3162 snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x57554559 snd_ump_receive +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5b39d06f snd_ump_convert_from_ump +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x6b68417d snd_ump_endpoint_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xaf30fafb snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd6609c0a snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xeb6726f5 snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x299fbc4e amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x383465f1 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x40bc0138 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x472d526f amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x688c3864 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7192421e amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x735f12ca amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x738c2b34 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9174979d amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa849e4bb amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdaecb3d5 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdb231e40 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xea7db208 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x00e0e7f9 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0f015b7f snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0fd1182a snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1d2f312e snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c52692b snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3568e61e snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38328feb snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e18341d snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4382aba1 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x47ff87ba snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c400ae6 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6a045b64 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x72d8cd2d snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7322caf0 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x785ec51a snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x80e50dcb snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x82f71bdb snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x88658f4f snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x886d2cf1 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x93e472de snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9ed5aaa6 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa5121175 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb3942e63 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbd0e6c1f snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc2627e20 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd092ab41 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe2786520 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf3180aa2 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf348040c snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf873ae6d snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf877c535 snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04dbe56e snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x078419da snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e3195bb snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f21b5cd snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f590af4 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f958147 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10e8507a snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12df1084 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x141d8bf6 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1719626d snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17bb05ff snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a2a1cf7 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1cb2c990 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x202c5f3c snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2276d04a snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22b29fcb snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x248a5ed9 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30b18741 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3454ce85 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34863676 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35322295 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36458c42 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37fdbd42 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b97e09a snd_hdac_stream_assign EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x417f4713 snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x471bc8f8 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48094e5c snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x484f49bd snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48d621f5 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a6a823e snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bec6156 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d875143 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e5e25ee snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41d83ec6 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48bfb6c9 snd_hdac_device_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d0b50fe snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x519f182e snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54251481 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54e4fa6d snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x567553ac snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57bc777b snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x515bd7ab snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x515faace snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52186dfa snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x526a66e1 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x570060aa snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x585940fe snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ac8d596 snd_hdac_read EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e526fd5 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x631e1905 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x646e0ffe snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64d8d9bd snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x659a3ecd snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66983124 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cb43d74 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ea9c176 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64c7bea9 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x675b47ea snd_hdac_display_power EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b4702b2 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x762bf51f snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77625b81 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x692c7e33 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c8ab68d snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d48eaad snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6de706d1 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x741d6cad snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x765b5d2b snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7796a744 snd_hdac_power_down EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79418d18 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a4d0611 snd_hdac_i915_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cf55abf snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7def1870 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ec7067c snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eeec07b snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86271691 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86a4534f snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ac8bb15 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ba14646 snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e7ee5fc snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f6b5295 snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x938a56e5 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cb76dbf snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x827406cd snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x834c0aa4 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84cd11a4 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85c816ee snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86b9f5a5 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89fed41a snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b50f9e1 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9955db49 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x996a8cb2 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a61485c snd_hdac_stream_set_spib EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b26f13f snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d91613a snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa52c16b6 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7a205b6 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaab0028a snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac8d090f snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf73e723 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaff09442 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4b80407 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c70c574 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa076c484 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa23c7855 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa25f0548 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2f364f8 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4bc6938 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5f554c1 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa64f3dc4 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9e722ab snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab58fd36 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8566f92 snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb970eed8 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb4a7210 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc0a5b14 snd_hdac_get_stream EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc061ea3e snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc179da2c snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc90c5e2d snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1e10f08 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4f23ebb snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd776f649 snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7dae121 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd87bb61b snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8e16632 snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9f159d6 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda09c25f snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdae19d83 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb9b7784 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdde7d174 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde693569 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe155fa5c snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4501cee snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1153598 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc23bd94b snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4a1e9f3 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4be8185 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6e110a1 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf9bf0aa snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd474436c snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4ca3d9f snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5eb730c snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9f5d5f9 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf89ab20 snd_hdac_codec_link_down EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea448c9c snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb7c54e9 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0ad3fc3 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf19a2d75 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf25e8358 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2d39db5 snd_hdac_i915_set_bclk -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5a46cde snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbd06ca9 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xffaab166 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x02203b86 intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x11714632 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe67a5658 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7966d70 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7ff428f snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb3c903d snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed01ad9e snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed9cd1b2 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeea79a79 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2b3beaa snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4e9c77c snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5408dfa snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6af8242 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff19e347 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x209b6afa intel_nhlt_init EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8a3b1f66 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb2296543 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4b059c99 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x586c0888 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5eca9ea1 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6b0c8554 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf6a3ad09 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf8054e40 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x023c3ac3 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0640b0d2 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x92c27a88 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xae61e1ae intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xbfb851c3 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4c480b0d snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x57e633cf snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9fba81db snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb19642d0 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc5bb397e snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc7ff00d2 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00376cfd snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00af8fb7 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x031b72c8 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x031dc46f snd_hda_codec_parse_pcms 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 0x08020014 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08473fee snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09d1337c query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0aab82c3 snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0afd401c __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e673196 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ebce2ca snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ff207a0 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11cb7e1c snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1394f913 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15fa7241 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19996139 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19bd8adb snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b407d24 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d61a9b9 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x204d974d azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21521eb9 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21f77026 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2209e072 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x243fd005 snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25e1a33c snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2619dde0 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x264b3329 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26b08b2a snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2846926e azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x291fbbb2 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a86ae71 snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d2fbe26 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e73f1f3 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ece39ac __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32e77603 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33dada5d hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34af06d3 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06cb4139 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x072c6c03 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0820be78 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x085a4362 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c0be5b8 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ca27fce snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0efd5dcd snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14803517 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16966a2f snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19729e0f snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1aaae02c snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1db150f9 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21481669 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21c597bc snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x237e5f23 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24ea3809 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x262f7d6d snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b8511ae snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c4858d9 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e68676c azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f399942 query_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c455d98 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d219732 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f530077 snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41460a53 snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x418e657f snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4236d5aa snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x428e85a8 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42e0389d snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43c214fd snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x444c1fea snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45598764 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x455acf1a snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47373633 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47546f99 snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x488555e9 snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dd289ce snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ffe07bd snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x534eb61b snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53a8f951 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x541b4b9b snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x584dd2ad snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59026639 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5992d83e snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bb3a1cb azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c9c53a8 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d93ee21 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ed1dc24 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fe6d44e snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61f26700 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66eda0c8 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9dd091 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c746177 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d37a638 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7142dda2 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x777e3c11 azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x796f16f4 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b72e95b snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d88a60e snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7debe64a azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e69d3e3 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x803173ec snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80a0a118 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x870f8f42 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88c25673 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c4199bd azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e3e4a87 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95da924f snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9847ee82 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99ddc623 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9db66589 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6f8eaaa snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa82ac8b snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaaebbb3 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf30f8b5 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1a0e9d2 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb74ba9c5 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb78b6d8c snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb79ecd02 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7eaded6 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8b9f7fc snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba21790c snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc371bb4 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdca8bc9 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbedaf259 hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc03fd0e8 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc40b7ac7 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5b9aeb2 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc77c3ad9 snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9c21d06 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcca7b89a snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce16e2db snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd22c4228 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2cbdcaf snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6e6c095 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9d30406 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdda9fc2a snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdecc9d30 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf6e816a snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf976964 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39e2ee1d snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b318c1b snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b5ac0c6 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ccb717b snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e574690 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e99f6f1 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f086536 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4139d0d5 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41b5ab5d snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4516ee4f snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47eee4c8 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49949003 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cb43821 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fc38eae snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x504b9503 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52431a3f azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52557c99 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58358abd hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59b3cd38 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b7dd8df snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d1cd214 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x606d4667 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63559825 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x639f0a6f snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6713ea59 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x684db88f azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d215d37 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dc0e8ba snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x704e579e snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x728fd61f snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d57e99 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73dfdb0f snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74b34568 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76295207 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x786fcb96 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x789bf1f4 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79ffdc0f _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ec74060 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x805166c9 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86d37a47 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bda0c31 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e13c33c snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9187616f snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93721d5d snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x951b371e snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x987b4abf snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98898b4f snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99454b88 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99bc7c60 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a6257eb snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9abd431f snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b041776 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b28d845 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c017804 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c12a6b1 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cff850a snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d05f7b2 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9de02d9b snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9de6b804 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9df57d76 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dfcee4c snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e99b9fb snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f8ed739 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fca92f2 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa19b7955 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3cc4e2d snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa491225a snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5232416 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa76a44ff snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa84e4a10 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8e7560b __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae47d65a snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae4beec9 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae8577ca snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0fd784b snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1e2e53d snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2d3108b snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb46622dc azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8581f61 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb4cbcef snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe5d6b21 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc349b80a snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6a2158d snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc864a81a snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfe90560 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0eea896 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1fbde4b snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4528ec6 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd92a59ef snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9f7c75f snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb32ad86 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc3ab472 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdff4a0ff snd_hda_codec_amp_update EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe11fdaf9 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1b028a7 snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe76586d8 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7fad008 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecf21235 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe30af19c snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea6422ae snd_hda_codec_device_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef31c8d8 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef421cff snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeffd0425 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2db4332 snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf656537b snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf86e6d3f snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf10242b1 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1da3c75 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf238f0a7 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2e73eca snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3e77625 snd_hda_codec_unregister EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb6c546b azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfccdada9 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd2dfdc4 snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf27137 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10a7ca7d snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10d637f7 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x12eed7e2 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15e371f6 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x209a051d snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x21c5cd6d snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22338474 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28014606 snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x36f05506 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5bec7dda snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x60784fea snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x69d40b35 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8fa6ca6 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfaae1026 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb88c7c9 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe161446 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0fa40503 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x16e1e28c snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a68577a snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x231490ea snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x337f201f snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x385ccaca snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5c114e3c snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6c4eff9c snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6d39762f 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 0x7800db7d snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x82ee6ee7 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x855cf336 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x85f3a50e 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 0xabfd825a snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba27870a snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbcc392ac snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc67aa5bb snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xce79d94b snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd16c948e snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd7679ccf snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xefab86c1 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf663d1b3 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x894fa37d snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x99a36a70 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb65d56e3 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba5e7f2b snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe9146ce snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc416d785 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd116a819 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde6012b0 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/soc/amd/acp/snd-acp-mach 0xb04ce168 acp_quirk_table EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x255c0b63 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x3c44c22b adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xf161342e adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x382829c7 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x489adc66 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x67a3cbe2 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7cf67ff5 adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7d018de1 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x96af67ca adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xabb44b86 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb835fd03 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc474f493 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfaeb5bef adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x4f9c67d2 adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x04150403 arizona_init_spk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0450d019 arizona_init_common -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x07ab3de4 arizona_jack_codec_dev_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1253a826 arizona_simple_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1d572f9a arizona_isrc_fsh -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x26213af4 arizona_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3018b3cd arizona_dvfs_down -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x344521d2 arizona_dvfs_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3a700ffc arizona_init_spk_irqs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x423fee3f arizona_set_fll_refclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4419571f arizona_ng_hold -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x44dc0d33 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xf9140012 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x26c50507 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x39cfc4ff adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0317f0f7 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0e0bb45d adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1d315763 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4e613d3c adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5f333161 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x64dc6558 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7c1f23ba adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa1f57fec adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc819f649 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcdb86e89 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x65c8e962 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x019c5798 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x06deca34 arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x072344fd arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x14fb80d6 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x209792d7 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x310d3eae arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3183dd21 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x36cb5e60 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x39593027 arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3a37c247 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3c9403b2 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x40bd4e93 arizona_isrc_fsl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4140f317 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x458038aa arizona_jack_set_jack EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x48e7f3d4 arizona_hp_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x507aef0a arizona_jack_codec_dev_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5682e7fc arizona_init_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x589602ef arizona_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5cc9e348 arizona_lhpf3_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x61ec4304 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4eb84eaa arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x50ac95e1 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x52ff370e arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5dd8961b arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x63029383 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x64f371c7 arizona_lhpf4_mode EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6b754511 arizona_of_get_audio_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6bb4f0b6 arizona_set_fll -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6f29e8da arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x6fe8f677 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x70f2b8c0 arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x71b4d963 arizona_init_spk_irqs EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x79e97061 arizona_jack_set_jack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7dea9dca arizona_init_mono -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7e7ee6b7 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7ecce4fc arizona_dvfs_sysclk_ev EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f798aac arizona_set_fll EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x804eb6ef arizona_init_gpio -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x86c66d8c arizona_isrc_fsl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x885ebacd arizona_out_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x911f76a1 arizona_out_vd_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x996eddc6 arizona_lhpf4_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9a0816e6 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8732ba5b arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x89c09e78 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8fb73099 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9370c94a arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x93a20837 arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9f11adff arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa1544f49 arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa15a1103 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa64a1235 arizona_init_vol_limit EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xac6ac7dd arizona_anc_input_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xada0c3b1 arizona_in_dmic_osr -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xaee8076f arizona_init_dvfs -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbc625a36 arizona_lhpf_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbcdd5f16 arizona_in_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbf56964f arizona_clk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc5255c78 arizona_anc_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc896bdb7 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab97a235 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb6d96d3f arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb941a132 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbe3d2488 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3a4f8ef arizona_in_dmic_osr EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c789b2 arizona_anc_ng_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcb56f261 arizona_lhpf1_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xcc644e31 arizona_init_dai -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdadb622f arizona_set_output_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdd0a3ed6 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd626bb5e arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd8e003bf arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd97e36ce arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdafc5fff arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdb2c0c85 arizona_isrc_fsh EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdfe804b8 arizona_sample_rate_val -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe81c3c03 arizona_dvfs_sysclk_ev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xeecce5af arizona_eq_coeff_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf0c81761 arizona_out_vi_ramp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf51efa1e arizona_adsp2_rate_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfabee8fc arizona_lhpf2_mode -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfca739f6 arizona_output_anc_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfda63369 arizona_in_hpf_cut_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3ef6eb75 cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc864e35b cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xe8af6bc0 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0ac65e76 cs35l41_configure_cs_dsp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0afac732 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4249486a cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x585fbf24 cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5874eba2 cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa98b08fb cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xae7fb820 cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdc3d2f89 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdd03fd08 cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdf6f9a33 cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf41c4eb5 cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf55123af cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf95587c8 cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xed24d46a cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf546c45f cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x28458631 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4d907a34 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9c397469 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbb581344 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc58ef13c cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe125da6d arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe15c4d13 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe6e5db9b arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xeaca2405 arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf664d925 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xfd41de0c arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x168d6d5a aw88395_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1c151a83 aw88395_dev_get_prof_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x270e1ab1 aw88395_dev_start +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x2d8e7487 aw88395_dev_stop +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x3634ae01 aw88395_dev_fw_update +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x8a14a408 aw88395_dev_set_volume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x8d907d1b aw88395_dev_set_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xbaaddf99 aw88395_dev_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xbddeab96 aw88395_dev_get_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xbfc8d7cc aw88395_dev_get_profile_count +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd2f0d702 aw88395_dev_mute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf003cdb1 aw88395_dev_get_prof_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xc1a02a3b aw88395_dev_load_acf_check +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xd76a1280 aw88395_dev_cfg_load +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb268f947 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xcae1149c cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xed2c1e07 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x389e86c7 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x42ca521d cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4542e436 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4ceab4de cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7b11c9e6 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7f7ab7bc cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x864d23a2 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x929e5936 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa3af3068 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa44efce9 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xbd8cb47b cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xbf030adb cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc92fb163 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xcf2b13f1 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd219512d cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe92ff6ad cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x0ceda56d cs35l56_system_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x5c2b9864 cs35l56_system_resume_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x7273aa8c cs35l56_system_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xc166e2f3 cs35l56_system_resume_early +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xde44535c cs35l56_system_suspend_late +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xed7cc9cc cs35l56_system_suspend_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xcb2a875b cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xec12c10e cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1be6b7b1 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1ffc5251 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x5fb34550 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xba434c53 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcedf3512 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1a55a45e cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x33a9090d cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa7c97a6d cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc1b57909 cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf088cf4b cs42xx8_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x61a6c1d2 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7de62853 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x0e4e2640 hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x2aa9f736 soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xbaacb9db snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x6853bcf3 snd_soc_hdac_hda_get_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x5f03feb7 hdac_hdmi_jack_port_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0xce71dbad hdac_hdmi_jack_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5155cfd5 lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x818758ad lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x6bc5f4fc max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0dedaee1 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x593d5dd0 soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6de36d69 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x976c0b08 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x20f8c612 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x29ea661f mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x630a2a1e mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd311d4e1 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x25e22ec2 nau8821_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x31f6acaf nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd4fc9513 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2268d0ef es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x65ee255b es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x2c4585fd hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x77b3bbd6 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xbb66092a soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0xa44e309e snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x33373eea hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x8d9e307d hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x9708441a lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xec0fdc69 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xbbf91f88 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0398675d soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x22712253 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x9bb65918 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd8ea4f6f soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x1bbbb76e mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x6ad28dc3 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x6e92e37c mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf8fbea29 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x7a4bef4d nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7e3b52cc nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xee922fcc nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1884b649 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa388f338 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xd353d957 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1f341a61 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xd2c09c06 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x0774f2a3 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xf1dd9b8b pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x69b56307 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa19be9ec pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb45246cb pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe16b9346 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1564973e pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x76489b52 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x76d45723 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf92a6dac pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xc9a47626 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x167f8699 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x86820867 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa5cddd35 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x8132a44f pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x85f625d3 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7f3ccf47 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x84b1d49b pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x0f078fe4 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7f78f340 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x99c13b9d pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xacde7c7c pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8a903f3f pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe1e8b9a4 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf511711b pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf64a3a4e pcm512x_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x8d7fa148 rl6231_get_pre_div @@ -19621,7922 +20020,8207 @@ -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1230c99c rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1f6c840d rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2da4dd8f rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4134c908 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x570e9be4 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcdf47ab6 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x5c4bace7 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x81ce5b0d rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xf6fd252a rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x8f686d78 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x130bbee0 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x1d7bf406 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x27541ea9 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x35daa35b rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x48db62ec rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x520ab0e7 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x532449b9 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x87ffc483 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x72795f08 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xad0409af rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x17b5346b rt5670_jack_suspend EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x530934e9 rt5670_jack_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x5b3f602b rt5670_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x82e11593 rt5670_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xabeb245b rt5670_jack_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xa35457ad rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x46d42970 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xae0d5ffb rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xd21429a4 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xff241b2a rt5677_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x00128dd9 rt5682_readable_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x178c140b rt5682_aif1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2bf43a48 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59823510 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0e678f75 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1f416f5e rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x206ddf21 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2c76d12e rt5682_calibrate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6e75451f rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x786cbc02 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8faca967 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9f88bec0 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa4994f0a rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa9479fb8 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7f082b10 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8ad2b4a0 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x9f3b45b1 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa1a74ccf rt5682_readable_register EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfcbbaf08 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x43e8afb6 rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x088723f9 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0b4d4012 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3ee518d3 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7109628f sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb7af5ce5 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xb223e909 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x79a47465 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x43129a31 src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x4dc1ca7f src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x561526cf ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9ad75d8e ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x86998734 aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xbe8469b4 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd7b12e70 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbccc1383 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbe63f478 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xcb5a6422 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x8bc55d37 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8584f75a devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8f7570f6 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcc4bd16f sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd4a0d750 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd79e4e1e sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x7fa79c63 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xc1f18caa devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xdd14241f src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xfc21c1c5 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x04d1e3a0 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x32ee5a62 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x082ba451 tasdevice_amp_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x0dda19c5 tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x17e8664d tasdevice_dev_update_bits +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x32171e02 tasdevice_amp_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x609bad14 tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x7139b283 tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x83c82e29 tasdevice_digital_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x89974aa4 tasdevice_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x8fd60c4a tasdevice_dev_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xaa861fcb tasdevice_dev_bulk_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb9f4947a tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xbd0693ee tas2781_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xca837ea6 tascodec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd60d28da tasdevice_dsp_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf7b46b01 tasdevice_dev_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5f260d1d aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x76912c68 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x88d306b3 ts3a227e_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x252cc19e wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x3a5155b9 wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x51d159f0 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9b44757b wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe45c85ee wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x09f8d14e wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0b240c83 wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x16ae5cc0 wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2755a15f wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2b0d2d45 wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x35c22357 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ab30016 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x04723512 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2dd58fe5 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x828927f1 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcb0db574 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfd10a105 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x034b8a5d wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x113d56d3 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1c868266 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1f998b52 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x244b635b wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2d2afeda wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3c8c361c wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x468d5c97 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4a4a32d1 wm_adsp2_set_dspclk EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x597ded6d wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5da7d385 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x63718baa wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x641b9e88 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x645ec7fb wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x664b0f83 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x68efff3e wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8082bf7a wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x85191eea wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8916783b wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xae154a55 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb3cfcbcb wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb89c9af9 wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcd418ec0 wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd0f96a2b wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd2675b42 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x70e3b122 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7738d13c wm_adsp_power_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7ad1e98d wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7b3a5f8f wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x99333089 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9e85b9d2 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa021a028 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa1d700b3 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb9ae064d wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcd533c54 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1267cdc wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd5234bab wm_adsp1_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe4504954 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe998fa5a wm_adsp_read_ctl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xec5733ed wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xee0e8edc wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x150c5452 wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x3e4424a7 wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2d472ff9 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7dd8542d wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb9710260 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe87add2b wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xa2c10b3e wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x1461af68 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x21607039 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xedd5f36e wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf198c61b wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf272cc13 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x28e7dbb0 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xf0ff3f52 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5dce9f78 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9e59a295 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbd39e6e9 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xedbed10a wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xbc75477c wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x08e8d6c5 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x59bf608c fsl_asrc_component 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/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0e8e1334 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0f7391de asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0fa97df8 asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1bc8ed5a asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x28d77759 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x460960c9 asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5a9acf4b asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x63424704 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x76d849f2 asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x885908cf asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9935ec60 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa262a000 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcc7c97bb asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd5fe3b71 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe18c3721 asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe2ae67c8 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe490c889 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe4c30f57 asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeade55a1 asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb63cad5 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xec072891 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfde6ab49 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x3b4a8752 sst_unregister_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xa312021c sst_register_dsp -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4dcd048a intel_sst_pm -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x60231b6c sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x064f794b asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x25041644 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x291701ae asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3529a455 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3ccae8e0 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4347c86d asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4fbf8889 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x558721a5 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x577adab5 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5ef160f9 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x679d20b6 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6f8cfb5e asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7aaf2483 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x840cf22e asoc_graph_parse_dai +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x84e500f1 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x91e4ad01 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbbb425f4 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbc07693a asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbdb78665 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc4ba58d5 asoc_simple_init_aux_jacks +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd6e2540f asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe3dd64d7 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe4e56758 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf9bbab5e asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x3edcd59f sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0xe4571c99 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1ddd7862 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x3f21b406 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6295be56 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6f32a303 sst_configure_runtime_pm EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x709cd25f relocate_imr_addr_mrfld -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x8a9e2591 sst_alloc_drv_context -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x9fccd8f6 sst_context_init -EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xf692eb41 sst_configure_runtime_pm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x13430765 snd_soc_acpi_intel_adl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a04997c snd_soc_acpi_intel_cml_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x333bbde2 snd_soc_acpi_intel_tgl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x34a14f4e snd_soc_acpi_intel_broadwell_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x39069f30 snd_soc_acpi_intel_hda_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3de1ba3b snd_soc_acpi_intel_cnl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3e10d45b snd_soc_acpi_intel_cherrytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x40dfb2c1 snd_soc_acpi_intel_cfl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x462d8968 snd_soc_acpi_intel_cml_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4a86b49d snd_soc_acpi_intel_icl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5a5565e1 snd_soc_acpi_intel_adl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5c652038 snd_soc_acpi_intel_glk_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x607c51aa snd_soc_acpi_intel_mtl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x659eb785 snd_soc_acpi_intel_rpl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x70949de6 snd_soc_acpi_intel_ehl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x745f1210 snd_soc_acpi_intel_cfl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7e9d4e97 snd_soc_acpi_intel_baytrail_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8431430a snd_soc_acpi_intel_cnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8a37e27f snd_soc_acpi_intel_bxt_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8d98c309 snd_soc_acpi_intel_mtl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbd17d594 snd_soc_acpi_intel_jsl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbf57de0a snd_soc_acpi_intel_icl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc484b592 snd_soc_acpi_intel_rpl_sdw_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc503df5c snd_soc_acpi_intel_kbl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd974c666 snd_soc_acpi_intel_tgl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xe9390761 snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xdb709b95 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x04498d6d snd_soc_acpi_intel_cherrytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x069f1d9b snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x099591ce snd_soc_acpi_intel_cfl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x128f931b snd_soc_acpi_intel_cml_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1bc80d02 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1f8b7bc7 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x24b8f919 snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x279fe63f snd_soc_acpi_intel_adl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3be70ab6 snd_soc_acpi_intel_cml_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4854b8a6 snd_soc_acpi_intel_cfl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4ef13e3c snd_soc_acpi_intel_tgl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x4f0d1f4d snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x53dff7bf snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x54ee2a5f snd_soc_acpi_intel_glk_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5fab088f snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x68f75bcd snd_soc_acpi_intel_mtl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x6d15bde2 snd_soc_acpi_intel_rpl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x80ce5ca1 snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x82bce818 snd_soc_acpi_intel_bxt_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb59cdff3 snd_soc_acpi_intel_jsl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xb94e364c snd_soc_acpi_intel_rpl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbba8c1a1 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd1ffcc01 snd_soc_acpi_intel_tgl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd6a085ca snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd85bc852 snd_soc_acpi_intel_lnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xf05240d7 snd_soc_acpi_intel_mtl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfa9a5df7 snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfdc5143c snd_soc_acpi_intel_lnl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x26296b72 sst_dsp_inbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3f39e918 sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x63c8db8d sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67aba2f6 sst_dsp_outbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b26f0e7 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1f59a05c sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2f375ba7 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x71c594fa sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x75218a04 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8470afb3 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8755039d sst_dsp_shim_update_bits EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb800ef81 sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb99886fe sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc3e76693 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9e6190bd sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xac381219 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb7a33874 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbccf9e30 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbf53dd73 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd6baa20a sst_dsp_outbox_read EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdf84a105 sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe1faa0bf sst_dsp_outbox_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe4fbffa2 sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe946d315 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe82ac7e4 sst_dsp_shim_read_unlocked EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfd52e5e3 sst_dsp_register_poll -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xff7b5230 sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x13ea4658 sst_ipc_tx_message_nowait -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x48f955ee sst_ipc_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x5c15b02d sst_ipc_reply_find_msg -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x98612d80 sst_ipc_fini -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc1e0efc4 sst_ipc_tx_message_nopm -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd3fe1df9 sst_ipc_tx_msg_reply_complete -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd585c655 sst_ipc_tx_message_wait -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x040df04d bxt_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x076b0eff skl_ipc_init_instance -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x10be634b skl_dsp_sleep -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x208423a8 skl_ipc_restore_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x269891a7 skl_ipc_get_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x30dc6301 cnl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x316f32a9 skl_ipc_save_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x42637157 skl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4acecd33 bxt_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4b083943 skl_ipc_set_large_config -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4ffe09db cnl_sst_init_fw -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x50324722 skl_ipc_delete_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x579f8215 skl_get_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x57ad5445 skl_ipc_unload_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x596a1939 skl_ipc_set_d0ix -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5d1bef3c cnl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6242fc8e skl_clear_module_cnt -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6a1e6541 skl_sst_ipc_load_library -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x70bc70d1 skl_ipc_create_pipeline -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x73d25247 skl_ipc_set_dx -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x783ecb70 skl_get_pvt_instance_id_map -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x83beeffa skl_dsp_get_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa05edf8c skl_ipc_load_modules -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa77ad106 skl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xaba6a57a skl_put_pvt_id -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc8db55da skl_dsp_set_dma_control -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xca08fcb0 bxt_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcbab67f9 skl_dsp_free -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd2891457 skl_dsp_put_core -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe0496987 cnl_sst_dsp_cleanup -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xec43977e skl_ipc_set_pipeline_state -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xed23193a skl_sst_dsp_init -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf4092f0f is_skl_dsp_running -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfd65eab5 skl_dsp_wake -EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfe79c197 skl_ipc_bind_unbind -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf4fb1e10 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x3178b956 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x49bda0bf sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x66ec722e sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x89f6c914 sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xb6206221 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc2dbf063 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xfe1719d6 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x01fc9cbf is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0645afd3 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x09df6635 skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0b214c48 skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x102d10bd skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1a8e2570 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1aedf19f skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2018d6c3 cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x231fa297 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x253b64b4 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x27e10dfa skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2f61de1b skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x328f6ab7 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x5fe53969 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x69ddb07f skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6cf9bf66 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6e48a5f6 cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x7720c016 bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x81a0d062 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x82794f3f bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8a9e9755 skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8efa980e skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x95a3eb58 skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9619d8b7 skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9659f890 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9a4f49b9 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9bafc569 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x9e5409a0 bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa02fcded skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb63ded82 skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xbd6d2686 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc74ccbd1 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xcf78083c cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd443bb2a cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf1bb3bbc skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x2ad85b63 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x48c4d20c snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0090d045 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x011190a0 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x011fad5a snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03294980 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x056e786f snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x059aad63 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06022e80 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0627174c snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x066aa44c snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x077bf501 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e8b16f snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0aa9af13 dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0af2e745 snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b102611 snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0beea26e snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c5b6ec5 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f3576b2 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f490b55 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f5fd3e5 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f6e6971 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x120307ef snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13684749 snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13a5427a snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x141ecb10 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1582e70d snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19745fe5 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a6a1f86 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c670953 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e4fabaa snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f023cbb snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fa06e6e snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ff8fbf0 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2016c5b1 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20263050 dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x205eeccf snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2066616a snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211a0d8d snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x224237ce snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2284ba91 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x229bab21 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x006aa562 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x009c92c8 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00ff20ad snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02408d5d snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02a83e13 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03209fd4 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04ba5e2a snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x053e9698 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x072a25f0 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x085a8e34 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x086c9ab6 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a117de8 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8227ce snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cc78995 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cc99181 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dd5283e snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dee44a6 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0df5ca55 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fa3e062 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1029430e snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10744e47 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10db6c45 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11adccd5 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12330673 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13467f40 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1582b861 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15fe3f3e snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1656f1d4 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1760b51c snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17fd7ae4 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19914271 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b6d35bf snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d0c32c7 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e385698 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e947613 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x224acd7c snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23abd9ed snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2430bd6f snd_soc_dapm_free_widget EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x291c82d1 snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cfb46a8 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30f01346 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31cf1f84 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31f22f17 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x337e49f7 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33eabd1d snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x345eeeb1 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3467b463 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36666516 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37a99346 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39431a68 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a261adf snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3adbd93e snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bb782bf snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4135826c snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41bb260d snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44b536eb snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452dc584 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a5bade8 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bf6ae6f snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c6cc647 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eada09f snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25c6afe0 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272b3964 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27e9477e snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29a85bab snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a5e4a30 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b3c9e83 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b8583ac snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d68a731 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dea449b snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2df20644 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fd88e26 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3032076f snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32417d89 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x339984fe snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34039563 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34ae1852 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35063850 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35e1c27c snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x361a1673 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36fa9eeb snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38f20e39 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a6bfcb9 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b152272 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cb648f9 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d8b41cb snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4004aaac snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x403f274a snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4093a7e4 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x416b5e32 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x448c17c9 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47314ebe snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47a116de snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4817cb26 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48f7602c snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49491e17 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x496b938c snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cb69685 snd_soc_get_dai_id EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51496c5e snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51b2bd0a snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53530d79 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x540f3711 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x547032f7 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f56088 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55168efc snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x559240f1 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5699ea21 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x577b0e24 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5782a52d snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5980bf2c snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c7151f9 snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cdd0a03 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d13aa62 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d2eb608 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d99db93 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eb4d3a4 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eecb151 snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f5b3ba7 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fd814c8 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x608661b8 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6167b826 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x619b3dd9 snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62e044c9 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6885eaae snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a1f35aa snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cd183b1 snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cfd44a9 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e29a52d snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e5d67b7 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eb156d8 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x712aeb3d snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x742ab161 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7575ac3d snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x798b1e17 snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ad28ce1 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7beeb19d snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d10cd89 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7de5db52 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e28b3f9 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52aecbf5 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54da3773 snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55b13a9d snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57e6116a devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x591a6423 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59dccadc snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a888e4c snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ab3ab98 widget_in_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b937f7d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bbfb5dd snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e11ecd6 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f0969b2 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6302df76 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63bfceef snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63d25d20 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66285caf snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x664beb32 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68781a03 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6892621b snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68a9e6da snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a6a3b3d snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bc02c61 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e1622d2 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e2fe995 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f06b983 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f89228f snd_soc_get_stream_cpu +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7103bdbe snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721390a0 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x746aead9 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77b36b37 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77b393d3 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77c4929f snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78ea9917 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x794642a2 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a28b7fb snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a4bfc00 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a885e85 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e1535e0 dapm_regulator_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f1dd0be snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8050550d snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x813809f9 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83a08545 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x847b04c5 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85011c76 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85368980 snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85b234a9 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85ca6d68 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85d712de snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85ecac2b snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x883d53d7 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a286571 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8af5595e snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d92e6c1 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e632cf8 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eb7d9f4 snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f4f435b snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f8d6f02 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91cead81 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9276a68e snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e61564 snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9320e77e snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x933c0530 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97bc002b dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9884d713 snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x991f075c snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99bb783f snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b723c7d snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bc473b4 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c53cc23 snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c83aea5 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dd13e25 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e31fd7b snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eb57b61 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0cdfb48 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0e52ad7 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa14175db snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2069f42 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa72ab3c0 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa757423b snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7f17fbd snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaae6b59c snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacd0859d snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xada3e45c snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf0d68af snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb65e4fba dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6914bb7 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7c4d97c snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7d6a0c3 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb80d1640 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9702498 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9c5c617 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb997519 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbd89a97 snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbce58d73 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdd1a7cc snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeffb5dd snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80f309d1 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x811d5822 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x825af432 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8269bb1e snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82cee1ec snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8343710f snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8462fb58 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x857d79e4 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f24cea snd_soc_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x866c36b2 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86f68bfa snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x878b35ee snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8939a7e7 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89a3e7a0 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8be64143 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cbef98e snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e567abc snd_soc_component_get_jack_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ec96322 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f1d56b6 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ff1b734 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90119a78 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x902248d0 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x904608ba snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91f8896c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x927162b1 snd_soc_component_notify_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94660ce7 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96f1a4c2 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x997539e3 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a552e32 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c2be3e0 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c2d2c3b snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cb31c69 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d54e788 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d9648f9 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e8feac5 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9febc8d6 asoc_dummy_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2a1f3b8 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa35cabbd snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4d9818d snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa529caff snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa57fec4c snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6ae0c37 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7170987 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8b9133c snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa958e5fa snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa14ec05 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa9c4ac1 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa9c9c66 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xace8ef9c snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacf65a1f snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb19b64c3 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb20d1a18 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb242e22b snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2a3c395 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3620881 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb46574cb snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5cae48d snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb69f892d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6b5e221 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb981c220 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb1663a7 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcdfc886 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe1879a0 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0152c2f snd_soc_info_volsw_range EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc474b0da snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc542f32d snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6c635a0 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f72308 snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc807789d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4886b83 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc48bbaec snd_soc_new_ac97_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8cedd29 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9d1ef24 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9f7fe2c snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcaa55603 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc2fdc42 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce0c94db snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce53fafe snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce6f3864 snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1fbac78 snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd274a645 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd36cc30b snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3cac70b snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3e7bc04 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd48fffbd snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd54d4f93 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd57e5b01 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5efcda3 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6093741 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd71cbe1c snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd88db9a9 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdab20fdf snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb665b36 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddb4e35a snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde53b02e snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeeff288 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdef8f1eb snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf78384d snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe11b37ca snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe59fef77 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7666760 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8c4fda4 snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9ac385d snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaa0bf3a soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc95fe7c1 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbd6a3f6 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccaa5bbc snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf1c5167 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfdc2223 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd037fa91 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0daeb2e snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd12d55a7 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd162dc65 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd386e664 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e2f93d snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5ed010f snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd82d53a9 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd286417 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddee32fb snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf6acae4 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe154653b snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1d7869c snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe211ece8 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2869e9d snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d0ea57 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe30ad452 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4634823 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe48345b0 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe576ed07 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe82b0834 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8f5e947 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9a6db58 snd_soc_component_async_complete EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebfa9bc6 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed58bc5e snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedf02672 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee718389 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf01d349c snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0878412 snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1113a3d snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4563dc7 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4a0b5f1 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf56de112 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf57c1860 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf71d5fcd snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebb3fd14 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee25a9e5 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef64843c snd_soc_of_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefe4b467 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf298d175 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3e51bfd snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf508df84 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf66fed67 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8a4429d snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8ccdf26 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8d7f85f snd_soc_get_volsw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc7a1136 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1fa9e245 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x5532b2a7 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8d5b1561 snd_sof_debugfs_add_region_item_iomem -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc50982a5 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf3b3e605 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa512da4 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe750c91 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfff0f576 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x329a35bc snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x69f226dc snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8535bcbe snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x92f590b4 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd2afc93d snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x02bf6ebd 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 0x24343720 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x40572308 line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x41217a9d line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e3538a5 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x614662dc line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x705d634e line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x74c914bf line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8036680e line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8bcad683 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9477b953 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x97009ccd line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9bb0b7ea line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb42c7309 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc6d35c36 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe22fe632 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf3f097b8 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2f3017c2 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3d7508e5 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4a180f99 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4b3b610c line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x550b21de line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6047cccc line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x683aba9f line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x84f15560 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ba5eed2 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9e9d26fa line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xab92b547 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xad416298 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb70ff3e7 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc21b2a7f line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfb119b15 line6_resume 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 0x0003cab5 blk_crypto_intersect_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x001702ec vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x00025e68 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x00115e10 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x002f28e9 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0027b8d4 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0046f339 device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005bd46f alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x005d6735 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x0063fba0 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x008429b2 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x006cf7f5 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x007927c4 rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0087daec gnttab_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x00918c31 iov_iter_is_aligned -EXPORT_SYMBOL_GPL vmlinux 0x009bd97e fpu_alloc_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x00a262a1 __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x00a2be33 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00af4f5b skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x00c6b67c acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x00861af2 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x00ae49c3 hid_bpf_disconnect_device +EXPORT_SYMBOL_GPL vmlinux 0x00b7dcce fat_fill_super EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator -EXPORT_SYMBOL_GPL vmlinux 0x00ead0c9 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x00f59c1d blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x00fca035 usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x01078148 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x01134660 tcp_plb_check_rehash -EXPORT_SYMBOL_GPL vmlinux 0x012bee21 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x00df0eb1 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x00f3b907 debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0x00fd6408 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x01198384 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x0133a4a4 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x013aaffe da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x01434660 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x014cdb8b user_update -EXPORT_SYMBOL_GPL vmlinux 0x0153767a dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x01544a5d dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0x01609d24 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x0174eefb __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x017c6f5b sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x012e7f37 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x0131443f __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0151e412 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x01567830 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x01699bbe devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x016b42cf dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x016eb8a7 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x017922ce pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x01797721 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x018997ae led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01afaede sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x01b39bf6 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x01a20dfe spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x01be695d vring_create_virtqueue EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x01c35a15 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x01ca357e __devm_clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x01dcc18e register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x01c849ad hid_bpf_device_init +EXPORT_SYMBOL_GPL vmlinux 0x01d958eb power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e229e2 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x01e6e82c pcie_flr EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x01fc61bb acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x0204713f uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x01f132e2 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x01f42daa sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x01ff6e72 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x0201a7f0 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x0204d57d irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x02228e06 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x022b2fb8 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x022f94a4 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x0207ebce i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x022259e3 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x0237b541 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023d3413 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x023dbbc2 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x02400614 spi_mem_poll_status EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0x024c8563 __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x025ddc53 edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x0263cfbf __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x026e2c3a __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x02736c61 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x0284bb7c pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x02b3b91b virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02528244 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x02603c3e rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x02666a51 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x027dc8a8 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x0298e1de sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x0299c1c6 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02b2aabe i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x02b44ece fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x02c4f81e crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02cabfaf xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x02e58db3 acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x02e7c73d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x02c969f5 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x02e3df94 udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x02e67fc6 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x030065d1 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x03026509 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x03042ff6 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x03050a3b regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x030f65e9 init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03316710 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033c9d7a unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x03468480 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x036b0769 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03473809 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features +EXPORT_SYMBOL_GPL vmlinux 0x0360b278 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x036cb73d tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x03736686 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x0372fb2c ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x03774c3e __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x037d992f __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x03902093 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x03a34030 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x03b1b1b8 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x03b43ed3 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x039ed7a5 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x03a7dda5 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0x03c98dd0 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x03c64cd2 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03f357f3 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x03d924c2 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x03df5e63 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x03fe4345 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x03fe4f70 bio_trim EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0408c251 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x0409d1b2 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x04186894 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x042c9325 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x0447b0fa md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x0453126f __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x0454fe4c dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0404222c usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0405dfb4 __tracepoint_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0x040c214f __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x042280bc tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x042dc542 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x0436be58 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x043ab831 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x043f1cc3 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x044196c1 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0446fd4a irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0457a466 regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x048474c5 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x046ff7cc __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x04767311 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x0478d566 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048b81a8 edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x048cc51f __tracepoint_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x04930818 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x0492cd0f pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x049306bb __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0499e0c7 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a18e60 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0x04af674c mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x04b4721e acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x04bef00f simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x04a5d12b shash_no_setkey +EXPORT_SYMBOL_GPL vmlinux 0x04ad7cff thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x04c429e0 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c77a5e __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04cc27da crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0x04d650b9 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x04cd2078 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e3d321 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x04e85e1d md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0x04eb77e8 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x04fad9fd icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x04fcaf18 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x04fd6af6 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x050b8c76 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x04f2f771 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x050543ac __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x0510f69b devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x0514c146 ip6_route_output_flags_noref EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x0528770f devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052e8820 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x053503c4 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x05427bc1 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x054b9900 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt EXPORT_SYMBOL_GPL vmlinux 0x0557bedb pwm_lpss_bxt_info -EXPORT_SYMBOL_GPL vmlinux 0x055bfafa kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x056b7136 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x05729375 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x05869aee usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x0576ff5a nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x05785cb4 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05788d69 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0583bc0b irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x0585aa91 register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058de5b6 fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x058fd253 fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x05982645 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0x0599d079 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05d28cae fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x05d430fc dw_pcie_write_dbi -EXPORT_SYMBOL_GPL vmlinux 0x05d9bde5 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0x05e89dba __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x05f3d1ad devlink_port_linecard_set -EXPORT_SYMBOL_GPL vmlinux 0x05fd0f55 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x060a0459 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x05ac0559 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x05adcb2a __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x05afc9f8 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x05b2d18c virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x05b6b255 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x05be855f mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x05c6e174 vcap_tc_flower_handler_ethaddr_usage +EXPORT_SYMBOL_GPL vmlinux 0x05c9e842 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0x05e37af7 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x05e8d054 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x05fccf82 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x0601e896 fb_deferred_io_open EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x061e2126 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x0638e04f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x063dc274 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x064191ee kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0x064ab20f __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x064b59a6 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065019a7 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x065e1ec4 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0671e158 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x0675c8cc __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x06870090 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x0687452c bio_blkcg_css -EXPORT_SYMBOL_GPL vmlinux 0x0697ecfc nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x0699785a usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x06aa6752 ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x06afc0fe pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x06b1981a bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x064e6c46 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x066d7a96 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x066eeb33 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x066ffd47 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x06a63894 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x06aecfd1 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x06cbd6ad ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x06f8a6f2 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x070ed34c pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x071bb311 pinctrl_remove_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x071d72d2 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x06df02c1 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x06f40090 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x06fa8ecd crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x06fb9e42 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x0702f1dc devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x071aeb42 usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x072b36dd rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x07475a3d gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0x073d13bf dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074e98c5 __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field -EXPORT_SYMBOL_GPL vmlinux 0x074fa774 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x0755abc1 __srcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x075b4259 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x0758c6b6 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x0763f4dd pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x0771c65c securityfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x07745108 tps6586x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0779585e scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x078a8b8c device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x076c8523 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x0779c0fd devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x0782ff8f __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x079bf131 devlink_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07b64d81 hyperv_stop_tsc_emulation +EXPORT_SYMBOL_GPL vmlinux 0x07b7517b put_device EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07c8e338 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x07c927ce __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x07ef5a56 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x07f665a6 devm_regulator_bulk_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x08018830 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x07c92638 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x07e1a2a1 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x07ec220e backing_file_real_path +EXPORT_SYMBOL_GPL vmlinux 0x07fed016 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x080925dd __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081b0cc9 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x082077f1 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0x08323ee3 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x0832d425 nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x08402ede acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x084ee192 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x0853b252 mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x08691375 phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x086fbe0e kiocb_modified -EXPORT_SYMBOL_GPL vmlinux 0x08754168 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x08284d4b fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x0831ed20 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x08364ee2 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x08481c6a access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x085d510e __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x086facc1 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x0872a191 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x0874a1c7 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x088c2101 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x08940b88 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x0887ba56 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x0894205c netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x089f1519 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x08af0f97 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x08b2ddb8 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x08b66c44 wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create -EXPORT_SYMBOL_GPL vmlinux 0x08c69d4f devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x08acaa77 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x08b5a906 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x08b990fe mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08ddfde2 blk_crypto_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x08f7a8be subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x08d371c2 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x08d7bc3b trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x08e09361 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x08e2b333 cppc_set_auto_sel +EXPORT_SYMBOL_GPL vmlinux 0x08f5246b usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x09049df2 kobj_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x090d2467 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x091d192a crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x09081e3e noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x0922066c vcap_keyset_name -EXPORT_SYMBOL_GPL vmlinux 0x0922161c crypto_type_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x0923aee9 ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0x0925493f clear_page_orig EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x0949c791 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x0964407a blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x093815d3 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x093ac6c0 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x094875bd sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x094981da component_add_typed EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base -EXPORT_SYMBOL_GPL vmlinux 0x096f0977 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x09719f76 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x096a9805 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x096bfa61 blk_crypto_has_capabilities EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x0994bdd5 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x097c023e dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x09849edb irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0989fc62 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x099a6db3 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x09a34b4e devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x09a52c28 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x09a7bd41 crypto_alloc_acomp EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09f0d896 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x09f85b17 inverse_translate -EXPORT_SYMBOL_GPL vmlinux 0x09f8809e component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x09fcd7d4 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x0a10e0a9 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x0a1a7d26 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x0a1c2f21 sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x0a468e6c put_device +EXPORT_SYMBOL_GPL vmlinux 0x09ba7670 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x09d0e544 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x09e6923f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x09e8d6af of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x09f0e961 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x09f26be7 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x09f46309 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x09fbbd18 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x09fe14a6 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x0a135d34 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x0a1d5745 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x0a3078c4 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x0a421914 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a45412d edac_device_handle_ue_count EXPORT_SYMBOL_GPL vmlinux 0x0a47553f tdx_kvm_hypercall -EXPORT_SYMBOL_GPL vmlinux 0x0a47b810 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x0a4a3a3f serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x0a4e6e0a nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a531aac hsu_dma_do_irq -EXPORT_SYMBOL_GPL vmlinux 0x0a5b2260 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0x0a743840 nvmem_cell_read_u32 -EXPORT_SYMBOL_GPL vmlinux 0x0a753f8b do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x0a78a949 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x0a67248d ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x0a89088e wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x0aa0ace2 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x0a8894f4 mas_find_range_rev +EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x0a920390 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0a9a41ce ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0aa706dc crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x0aba7ffc rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has -EXPORT_SYMBOL_GPL vmlinux 0x0ac6078a pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x0ac86cb9 vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x0acfb421 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0ac60ff1 device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address -EXPORT_SYMBOL_GPL vmlinux 0x0ad6491a xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x0adc725a dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0x0b03c969 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x0b04d53d dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x0ad906f6 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x0adcc820 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b1d86b3 bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x0b282a59 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x0b0ffcb6 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b1c26f0 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3557c8 gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x0b35f15d dax_remap_file_range_prep -EXPORT_SYMBOL_GPL vmlinux 0x0b395d0c sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x0b4cc43e devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x0b521adb __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0b3b163f regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b582c18 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x0b63bd30 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b60d821 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b6c96de pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x0b6ec3a7 xenbus_setup_ring -EXPORT_SYMBOL_GPL vmlinux 0x0b705a41 mmu_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b769c0e bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x0b88c3da __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x0b8be7de nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x0b73dc1f acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x0b7ed0c4 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0ba6d4f6 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0b976c45 __SCK__tp_func_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x0b99219d dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x0bbc6a4a pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bbea5e3 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x0bbdda3a perf_report_aux_output_id EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -EXPORT_SYMBOL_GPL vmlinux 0x0bc184ce pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x0bca5a25 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x0bd04017 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x0bf3b09a crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x0bfaf3a9 filemap_migrate_folio -EXPORT_SYMBOL_GPL vmlinux 0x0c02d5e1 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x0c262406 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x0bda6b70 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x0be3584b vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x0be42f3f pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x0be75d8d pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0c0d30a9 tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c31c35c fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c3b2193 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x0c419eb3 phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x0c5a8c74 iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x0c650823 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x0c70ca17 dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x0c71341d sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x0c754507 kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c35879a led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x0c3d169f pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x0c3ffc66 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c43271d mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x0c45985e pci_p2pdma_enable_store +EXPORT_SYMBOL_GPL vmlinux 0x0c560b80 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x0c67979b fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x0c6e11a4 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x0c728a19 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x0c85c9fd devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0c82d832 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0c830caf register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x0c84fbb8 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c861936 pci_p2pdma_distance_many EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0ca24c49 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x0cb867da dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x0cb9cee3 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0c984a32 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cab439a pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x0cbd39cb max8997_write_reg EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cbe55ed crypto_grab_kpp EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0ce3261d dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0x0cebe752 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x0cec1138 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x0ce2c94f pci_epc_bme_notify EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list -EXPORT_SYMBOL_GPL vmlinux 0x0d06c572 ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d085b00 __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d0a7d57 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x0d0ee372 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x0d3987b7 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x0d23e6bd get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x0d26d582 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0d270eac __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0d358e21 umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d57b3fa inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x0d58daae register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0d542809 ata_sff_hsm_move EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d66ccda regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0d5dfa25 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x0d666bc1 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d77760a pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x0d89de55 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0d8a0b5d hte_push_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x0da7b213 regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x0daa2dab __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x0db3276b sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x0dc20caa ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x0d6dea5c dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x0d7d99f2 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0d97c221 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x0d9b4ba5 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x0da095c5 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x0dd93569 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dede0bc dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x0deff64f ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x0df12ab6 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x0dea68e1 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0df84179 dev_pm_opp_set_opp EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e07b05d usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e143303 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0e1c5743 serdev_device_break_ctl EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x0e260158 net_selftest -EXPORT_SYMBOL_GPL vmlinux 0x0e353da4 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x0e389100 blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0x0e3b21a9 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0e4cfee5 __devm_intel_scu_ipc_register -EXPORT_SYMBOL_GPL vmlinux 0x0e55b027 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0e224235 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x0e3dd026 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0e42e231 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x0e53ca24 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e6a21cd usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e71b0c6 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x0e8c9016 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0e8fb468 vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x0e911cb0 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x0e95b0af pci_p2pdma_enable_store -EXPORT_SYMBOL_GPL vmlinux 0x0ea07a4c __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x0ea52301 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x0e6e9379 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x0e7cbcec spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x0e96cfd8 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x0e96d3b6 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x0e9fdded synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x0ea059cd crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eb0b24a device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ebf6625 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0eac7ec5 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x0eb162b7 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x0ebd02bd pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ec26abd xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x0eccdb93 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x0ec51428 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ecdadc8 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0ecf8f0f irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ed7fb13 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0ed41b84 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x0ed63de9 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x0eee0b9a devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x0eeedf15 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0f08521e PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x0ef7e152 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x0efd190c __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused -EXPORT_SYMBOL_GPL vmlinux 0x0f0b8ce9 pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1bfdb2 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x0f1a0515 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0f20a869 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f46e1c8 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x0f4c997a spi_async -EXPORT_SYMBOL_GPL vmlinux 0x0f4cd3aa tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x0f576698 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f422012 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f512744 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f5a5047 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0f7718bb sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f8dcbb8 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0x0f8e1cd6 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x0f801382 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0f866184 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x0f8f10f1 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x0f9a80e4 hsu_dma_remove EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype -EXPORT_SYMBOL_GPL vmlinux 0x0fb53718 icc_disable -EXPORT_SYMBOL_GPL vmlinux 0x0fb89e0a kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0fad5088 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x0fad9868 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd13848 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd71099 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x0fe378a2 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x0fe58987 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x0fee0fb7 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x0ff21751 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x0fe2f064 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x0fed5b52 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af87 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x100ea9b7 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x1011ab92 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x10205225 pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0x102175eb pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x101960ab pinctrl_dev_get_name EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names -EXPORT_SYMBOL_GPL vmlinux 0x1044d55c folio_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x104aa10d fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x104c76a6 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x105c5d59 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x10727ef7 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0x1084a78e elv_register -EXPORT_SYMBOL_GPL vmlinux 0x1085b77b power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x10455bc7 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x105127c3 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x1063b505 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1073b35a dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x107f801e phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1089326a ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x108b45a6 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x1094ea31 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x109d20ac crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x10a850b9 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x10a68502 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10ca017e crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x10d90f2a handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x10bc1626 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x10c09b4c bus_register +EXPORT_SYMBOL_GPL vmlinux 0x10c94fcd kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x10cbc8d5 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x10d7be3c virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10dc3f9e tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x10dcf395 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x10dd5fe7 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb -EXPORT_SYMBOL_GPL vmlinux 0x10de806a cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x10e0a040 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x10e02caf rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x10ec2423 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f0effb blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x10fe3820 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x1102c487 devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x111da821 i2c_client_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1130eed2 fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x113c589d nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0x114d894c wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x11522f6f rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x110147f5 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x1101f0be find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1106cd34 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x111c4257 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x11336ac9 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x1134ae5e task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x11485c2f icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x11564993 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x119c73c1 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x11cbcd55 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x11d87a5e sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x116490c9 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x11655275 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x116c01db badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x11971c7f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x11973560 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x119d02c4 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x119dd5e4 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x11a50e3a modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x11b1fe60 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x11bac933 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x11bc358a phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x11cba8c3 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x11d302ad genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x11d4513e __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x11daa92d vfs_set_acl EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11f16bce __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x11fed10e crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x12027081 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x11f3f0c7 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x11fe5b37 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x12032428 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12044a5c tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x121af74b nvmem_cell_read_variable_le_u32 EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x122ca3d4 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x1225209d vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x122f3f91 vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x12355a0e pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x1238786c filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0x1241e21d pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x12529436 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x12565e38 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x125f6b33 blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x1266bc71 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x123646b0 xdp_set_features_flag +EXPORT_SYMBOL_GPL vmlinux 0x12376fdf __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x123b3713 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x1261425b thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x126fedec register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1276d887 gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x127f1a29 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0x12b78472 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x12b852aa tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x12d88ef1 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x129983de inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x129e8b44 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x129fd643 devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x12a1ee3f rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x12a69ac4 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x12bef1c0 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock -EXPORT_SYMBOL_GPL vmlinux 0x12ddd1bb blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0x12df8e5e ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12e41353 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x130bc394 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x130cf5a6 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x1318485c devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x12f23752 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x1306dd13 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x1319ac86 vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131e9eea __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x13288e6a trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x132b4cca mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x13381295 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x13381eba unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x134a68ec irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x134c1e44 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x134c62f3 fwnode_device_is_available -EXPORT_SYMBOL_GPL vmlinux 0x134f7b03 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x13535273 da9052_adc_read_temp -EXPORT_SYMBOL_GPL vmlinux 0x1358c856 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x13591dce ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x134c3b9f serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x13578521 pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x135ee5ef ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x1378fe74 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x1380d09a devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x1385dafe __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x137d0c1e relay_close +EXPORT_SYMBOL_GPL vmlinux 0x13803d14 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1392a0c1 thermal_zone_device_id EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x13a753dc dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0x13a8f6a5 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x13ad017c fpu_swap_kvm_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x13aedf9f switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0x13b31ae2 pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x13b7c6ab pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x13c2b053 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13a990c8 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x13b9e193 acpi_dev_resource_interrupt EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d80336 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x13e04b7d dw_pcie_find_capability EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f81486 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fd346d udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x1407110f __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14237b49 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x14343104 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x1440958c sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0x144aa5a8 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x143884c1 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x14484204 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x144fc2a0 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x1459b19a acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x1461a64b regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev +EXPORT_SYMBOL_GPL vmlinux 0x1468c2a5 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x1475d603 xstate_get_guest_group_perm -EXPORT_SYMBOL_GPL vmlinux 0x1478e52f dma_opt_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x147ce440 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x1482e7a3 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x14b215d4 fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x14dd4833 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x148c61f1 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x148eb7ce dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x14a30fe6 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x14af5198 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x14bbf864 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x14c60a5a bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x14c6bbf6 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x14c9f83d pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x14d3547f __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14d6726b sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x14dd9f1d unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x14e8e7c1 led_sysfs_enable EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14f18320 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x14f71538 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x15050870 nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0x150e846a power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x150ff00a devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x151fde27 clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x1531bb1f gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x1517bfc7 au_platform_setup +EXPORT_SYMBOL_GPL vmlinux 0x151ca764 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x152f0522 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x15340f2a sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x1542690e __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x1549703d kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155516d1 gpiochip_line_is_persistent -EXPORT_SYMBOL_GPL vmlinux 0x1555d8c5 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x1558b22e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x155f1ece vcap_tc_flower_handler_portnum_usage +EXPORT_SYMBOL_GPL vmlinux 0x15654ce9 pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x157b7319 __irq_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x157fc9bf mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x157eb7be ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x15a126ab phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x15a136a9 vcap_find_keystream_keysets -EXPORT_SYMBOL_GPL vmlinux 0x15a6578c dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x159ee9b6 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b1b040 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x15b3135d ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x15b518d4 da903x_read EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave -EXPORT_SYMBOL_GPL vmlinux 0x15e5ab9d irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x15bf6fc5 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x15e26109 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x15e6f667 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x15e7140b __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f404bb set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x15f5175b device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0x15fb9cba netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x160a2b2b devm_kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x161cc4bd fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x16255150 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x1632beef cpufreq_freq_transition_begin -EXPORT_SYMBOL_GPL vmlinux 0x163cd55d __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x15f78f44 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x15fa9a8b rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x15fb3df0 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x16018b4a __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x1610f0dd ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x16141bee fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x16184bbb fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x1633f220 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x1645f2a7 power_supply_class -EXPORT_SYMBOL_GPL vmlinux 0x16494eae regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x1650f8a7 disk_alloc_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x165acf4d perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x1652fbbc dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x166482a8 hid_bpf_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x16664fd3 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0x16674eb7 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x1666beeb regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x1667684d sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x166b7362 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x1672546a dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x167605c5 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x1686c5f3 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x168055b2 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x1681c9b7 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x1684ae53 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x169461cc usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x1694c1ce pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0x16962a77 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0x16a409b2 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x16abbc92 ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x16b6e95d tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x16bbab56 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x169b453f regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x169fc244 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x16a67497 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x16bf12f8 register_fprobe_ips +EXPORT_SYMBOL_GPL vmlinux 0x16cb6a90 radix_tree_preloads +EXPORT_SYMBOL_GPL vmlinux 0x16d32fe8 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16e15807 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x16e613e5 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x16ef67b6 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16fe99c1 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x170a9384 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x17009ebb pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x17202f68 ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1729ce88 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x172b89b0 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x172cdbfd devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x1735d623 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x173a7d8b regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x17144951 kthread_cancel_delayed_work_sync EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts -EXPORT_SYMBOL_GPL vmlinux 0x17452526 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x175c9a42 pci_epc_unmap_addr -EXPORT_SYMBOL_GPL vmlinux 0x175e11e4 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x17504c60 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x175427e6 rt288x_setup EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x176307ff __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x1762da95 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x1764846a blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x1768c761 acpi_device_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x17730a32 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x1776ec49 irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x179a173a usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x177c6097 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x1781d8b3 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x17893be2 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x17939249 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17b0bbe3 dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x17c10b0f gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x17ca2abb platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x17cb4b1c scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x17d7c6f0 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x17de2811 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x17c92b11 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x17ca4ec7 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e8d2b1 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x17edebb1 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18210aea crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x182c97c9 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x182c2574 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x182c4bc7 devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x183999ec cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x1833f39b ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x18363eea debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x18579b99 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x184ad2dc ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1856651d skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x187854ec xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x187dbc79 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x18857d28 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x189b0176 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x187075f4 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x187261da rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x18793027 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x187a069d get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x187b5f2a wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x187c8185 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x188dc856 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x18903de8 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x189a5dcc ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x18a9aba9 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x18b1a2b3 lp8788_read_multi_bytes EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x18bb0995 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x18c9abdc rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x18b7bad5 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x18c0dc56 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x18e1fb75 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18e7132b pinctrl_enable EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fe6bb8 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x190a9c3c task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x19227afc battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0x1927f7fa tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x192df278 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x19389855 bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x193cd13f blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x18fb978c clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x1902f33f blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x19143412 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x191f8ec9 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x193282ae acpi_dev_resource_ext_address_space EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state -EXPORT_SYMBOL_GPL vmlinux 0x19535b6b __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x193f479d iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x1945550d device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1949462c tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1959ea58 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x1967ea2e iov_iter_get_pages_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19683483 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x196ed759 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x1977334d platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x197d9ab1 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x19790c26 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x19882643 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1993073c ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19be7008 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19c8f9b3 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x19ce3e6c platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x19db5a9c virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x19dc9fd7 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x19dfc0e8 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc -EXPORT_SYMBOL_GPL vmlinux 0x19ea4861 xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x19ea9866 cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x1a0064e3 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x1a01a8ab __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1a0949a1 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a20165a rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x1a28db53 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x1a2c0aef xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x1a3e7fcf shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x1a44468d iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x1a45e019 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x1a466460 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1a4ae57c nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1a4b4ef5 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x1a57efd1 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x1a5de819 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x1a5e0ae4 virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a6ca10d iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x1a7d40e5 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x1a7fc948 ftrace_free_filter EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x1a90e399 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x1aac8d98 devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1aadc4b1 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x1ab53c9e phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x1ab9a74c md_stop -EXPORT_SYMBOL_GPL vmlinux 0x1abadf65 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x1ac018d2 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x1ac3a3d9 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0x1ac88c43 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x1acc4478 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1a891e74 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1a91ebbe i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x1a955675 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x1ac02def crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad9cd5e acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x1af16cdb acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1adac090 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afba113 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x1afcaaf8 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x1afaa2fd proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0x1b05d457 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b06b35c dev_pm_opp_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x1b09b6c0 vp_legacy_get_status -EXPORT_SYMBOL_GPL vmlinux 0x1b343ce3 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x1b408d8f wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x1b45fda0 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x1b4af3f3 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x1b11e0ce io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1b2dccee extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x1b3b4b81 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x1b3fe0dc xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x1b5c3e11 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x1b5c5804 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b6a9873 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x1b7d6880 bdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0x1b82777c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x1b62ceb0 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1b68ef39 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x1b6c0961 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x1b811fc1 blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b92f74e i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x1b9493d1 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x1b9a805e debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid -EXPORT_SYMBOL_GPL vmlinux 0x1ba53b0c fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x1ba5dfcc device_register -EXPORT_SYMBOL_GPL vmlinux 0x1bb222dd blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x1ba5db0a crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1bbc11bf devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split -EXPORT_SYMBOL_GPL vmlinux 0x1be508bd vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x1beb54ad dev_pm_qos_hide_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x1c12b1a8 fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x1c16102d cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0x1c1c242d irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x1c206a67 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c28a72d bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x1c2f9a5c crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1bd30dd7 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x1bd5ed9c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x1c0c18c6 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1c0de9cc vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1c0fb819 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x1c1e9d3c _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x1c2b319a crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x1c2d879b __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x1c3abbd7 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5dfc23 wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c674a9a fat_detach -EXPORT_SYMBOL_GPL vmlinux 0x1c70ad51 edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c77c66f phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x1c7c67ab gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x1c7d973f crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c819c63 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x1c865dad thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x1c88347f of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0x1c977da1 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x1c95886d regulator_put EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x1cb2bf1e debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1ca9c77a vfs_remove_acl EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc09c6c devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x1cc0a734 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x1cc82bc0 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x1cc9ff9e tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1ce64428 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x1cea75e3 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d0452cf of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d14afe6 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x1d167eab device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1d18d473 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d1d8daa ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2546aa switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x1d2fb5c4 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x1d31a3a2 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1d412b31 intel_pinctrl_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x1d4194db devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x1d475404 thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x1d5d250f device_create -EXPORT_SYMBOL_GPL vmlinux 0x1d614dda public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x1d642a25 isa_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x1d708adf pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x1d78773a usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x1d86824d uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x1d2e6ffb sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x1d2f4d2f debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1d3a5187 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x1d6a7749 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x1d7604de crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x1d839178 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x1d91d3ce of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d997297 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x1da2bbdb ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x1da935c5 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1db061bc acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x1db95dce __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x1da1604e pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1db22acc regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1db5cb5a rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x1dcc1f1e thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1dd3185a to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x1dd7427a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x1ddd4b4c bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x1df3eb51 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm -EXPORT_SYMBOL_GPL vmlinux 0x1dfa7522 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x1e028fe5 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e0acff6 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x1e175c2d serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x1e18a304 crypto_stats_akcipher_verify -EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0x1e2ceb85 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x1e34a52d mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x1e230a62 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x1e2e6430 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x1e3460a0 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x1e3817a3 sched_numa_hop_mask EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range -EXPORT_SYMBOL_GPL vmlinux 0x1e3e2f0a usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e4ef35f skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x1e4e18cc rio_unregister_scan EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e54d762 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id -EXPORT_SYMBOL_GPL vmlinux 0x1e620553 ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x1e781792 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x1e5b9985 xenbus_frontend_closed EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7e92d9 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x1e8c329e fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x1e8f6195 disk_set_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1e9bfb61 devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1eb8f458 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x1eacd5cc __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x1eb49882 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x1eb526dd eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebb2fae regmap_might_sleep EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec10bb4 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x1ec8b079 __SCK__tp_func_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1ecd49d8 ptdump_walk_pgd_level_debugfs EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1eeb0254 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr +EXPORT_SYMBOL_GPL vmlinux 0x1eee9385 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1f1e1c25 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1f2084c3 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1ef96a31 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x1f1798ed devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1f1a191c vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x1f2b1a3f public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x1f355ad6 component_add +EXPORT_SYMBOL_GPL vmlinux 0x1f35abfa __devm_intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f38a8db irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x1f3fe38b ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1f3e14b1 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1f422149 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f4bfa08 __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x1f518b5b dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 -EXPORT_SYMBOL_GPL vmlinux 0x1f61bb16 tcp_plb_update_state_upon_rto -EXPORT_SYMBOL_GPL vmlinux 0x1f6574d2 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x1f7e9394 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x1f5de809 iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x1f6256d6 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x1f63ee60 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1f656b57 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x1f6cd584 efivar_reserved_space +EXPORT_SYMBOL_GPL vmlinux 0x1f76e586 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f800aa9 blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f856da7 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x1f86d3fe rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f89fc71 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x1f8f4c2d nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x1fa0fbe3 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x1fa120fd xdp_features_clear_redirect_target EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb177ca wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x1fd5475e bind_interdomain_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x1fd6fba3 tcp_bpf_sendmsg_redir -EXPORT_SYMBOL_GPL vmlinux 0x1fd90985 security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x1fd9e572 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x1fa29a6e hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x1fa48995 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x1fcf3362 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x1fe447e2 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fe90223 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x2007282d __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x20082f2d raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x1fe8e5a6 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x1ff50228 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200b9463 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x200fad41 __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x2011fb0d cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x20270ec1 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x202c1ca7 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x202d91a6 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x202d91a6 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x203d2905 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2049accb get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x206221d3 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x205b9984 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x205f3580 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2067df0e crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x2068e2fe driver_find +EXPORT_SYMBOL_GPL vmlinux 0x2070571d __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x2081cf48 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x208222f6 acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr -EXPORT_SYMBOL_GPL vmlinux 0x208eea6b badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x20940fed __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x209102ba xenbus_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x209d85cd tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x20a0520b mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x20a3bb4f fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x209bf509 xhci_get_ep_ctx EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20be508f devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x20c392be device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x20d6659f irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x20d922c9 i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0x20eb8ad0 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x20eec2a4 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0x20f55a7b tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x210ac30e dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x20ac123f for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x20ac17d5 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x20b9dc98 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x20c7f3ea serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x20ed203a pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x20f6de57 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x20f78975 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x20fb618f dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21003da9 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x210ece1c devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x2113f64f pm_runtime_force_suspend EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x2141a3d0 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x215948d4 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x215b0f3a devm_pwm_lpss_probe -EXPORT_SYMBOL_GPL vmlinux 0x2160c673 acpi_quirk_skip_i2c_client_enumeration -EXPORT_SYMBOL_GPL vmlinux 0x216ae063 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x21349920 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x213b032a __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x215315ba usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x215dc495 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2164ab6d fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x2165fe0a __phy_modify EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x217b0c85 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0x219da513 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x21a4ab45 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2181d9d0 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x218515de devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21abc083 gpiod_set_config -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21acb0a7 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x21baf70f blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x21bcb067 acpi_device_fix_up_power_extended -EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x21caaec7 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x21aeebed xen_xenbus_fops EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21ce6a06 watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0x21d19319 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x21ecfd6a dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0x21f89b25 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x21fe2e9e pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x2207d311 regmap_field_read -EXPORT_SYMBOL_GPL vmlinux 0x220c4139 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x221e9214 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x22457fc4 pm_genpd_init -EXPORT_SYMBOL_GPL vmlinux 0x224a6f6e __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x226e1245 user_read -EXPORT_SYMBOL_GPL vmlinux 0x22726bfc __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x2288dc0f devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x22895158 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x21d8a7b3 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x21e1053f gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x21e1168e iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x21e3e93c __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x21e67920 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x21f473b0 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x21f6db69 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x220082de pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x221b0660 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x22310137 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2231466e devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x223c56c2 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x224ec9ec dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x2253c35b fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2264109c __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2267e3bb i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x227b42fd fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x2291ebf0 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x229781ca dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock -EXPORT_SYMBOL_GPL vmlinux 0x22ad89bb ata_bmdma_stop -EXPORT_SYMBOL_GPL vmlinux 0x22c5afbe usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x22c7fc26 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x22936740 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x229723c0 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x22a33f2f ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x22aef11d virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x22b49203 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x22bacc24 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e0fdb5 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0x22e7a9a5 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22ec6d26 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x230bbb19 acpi_find_child_by_adr -EXPORT_SYMBOL_GPL vmlinux 0x230f69b8 xen_xlate_unmap_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x231a7528 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x233a2bd4 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x22fd4c03 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x22fedb1e fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x230ce57c palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x230e63d1 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x2316d84a devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x2319b020 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x2325b97d thermal_zone_device EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x23585f93 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0x237dfdce dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x234d982d regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x234ef820 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x235b48cc xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x236ac27e __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x23937701 scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239e7fd4 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x239ff1ae vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x23a3af72 platform_device_add_resources EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep -EXPORT_SYMBOL_GPL vmlinux 0x23c3c54d kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x23ca1e6f devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x23d3fcaf acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x23dfd6ca fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x23e87cb6 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x23ed9968 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x23f100bb pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x23f58621 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x240ad150 acpi_dev_state_d0 -EXPORT_SYMBOL_GPL vmlinux 0x240b2b1f ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x2412568b devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x24168e3b __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x23c67fa9 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x23ca0613 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x23cb1f3a dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x23e12f23 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x23f7f88d sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x23fae4c0 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x24067024 net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0x2414ac4d vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x2439d288 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x24241893 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x242be13f sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record -EXPORT_SYMBOL_GPL vmlinux 0x244dc3f3 __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x245472df kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x2462ec2c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x245333e1 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x2454665d from_vfsuid +EXPORT_SYMBOL_GPL vmlinux 0x245e1c3b tty_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x24697a13 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x2473655f led_trigger_register_simple -EXPORT_SYMBOL_GPL vmlinux 0x2478d63a virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x24795d30 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x248376c4 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x247aaf4c iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x247d094e rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x247f59a8 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x24a0568a usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x24949bea input_ff_create EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24c17b80 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x24c8bf64 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x24b4008f walk_hmem_resources +EXPORT_SYMBOL_GPL vmlinux 0x24bafb06 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x24d181c7 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e13b44 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x24e7b981 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x24e9aae1 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x24e826b0 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list -EXPORT_SYMBOL_GPL vmlinux 0x24f06f12 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f538bf __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x24f7e554 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2504c53a ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2508ec33 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x25090ddd sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x2511231d rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x25078d7a __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x250bffdb elv_register +EXPORT_SYMBOL_GPL vmlinux 0x25115f51 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x251e8a7a md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x252f2940 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25471987 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x25608a4c blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x257272a9 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x257e82d1 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x253c9778 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x2546c23e skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x25672766 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x257da671 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x25842ac5 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x258a4035 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x258e9fd3 mctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25a63fcc blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x25a69847 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x25a6afea sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x25a6e707 mptcp_diag_fill_info -EXPORT_SYMBOL_GPL vmlinux 0x25a76b34 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x25b20e6b devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x25b57f95 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x25947f4a pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x259a5a86 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x25a7a1e0 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x25aae5a6 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x25b1f0b1 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x25b22c6d regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25be6f06 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25d23743 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr -EXPORT_SYMBOL_GPL vmlinux 0x25fea537 debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0x26090eca ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x261b8dba umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x261cfd98 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0x262229f0 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info -EXPORT_SYMBOL_GPL vmlinux 0x262a9976 hv_vp_assist_page -EXPORT_SYMBOL_GPL vmlinux 0x2648991a devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x2651ad69 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2633d532 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x2651642a kthread_park EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x26553893 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0x265ad49e mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265c8771 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x2660f2ef rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x2667efb3 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x26681679 usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2678cb3d xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26800edb uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x26827a02 bpf_trace_run9 -EXPORT_SYMBOL_GPL vmlinux 0x2691a004 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x2692af39 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x26940cc8 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x26a7d2c7 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x2681468f uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2689a448 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x268b2665 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x269cd6ee fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x26a0abc0 __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x26a7a5d3 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26b54596 scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x26bba527 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x26c6cfd1 bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any -EXPORT_SYMBOL_GPL vmlinux 0x26d32503 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x26d5ffc4 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x26d9b86c pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x26d9d197 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x26de184f pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x26e77fae netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26eea0bc driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x26efc4f6 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x26f9d188 mnt_idmap_owner -EXPORT_SYMBOL_GPL vmlinux 0x26faa5ae rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0x26ff47fb sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x27066ff4 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x2736867a to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x26f3b3e6 pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x26fc7812 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x270408aa gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x270725fe crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x273e1002 fpu_sync_guest_vmexit_xfd_state -EXPORT_SYMBOL_GPL vmlinux 0x27442623 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x274affa4 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x276f09f7 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x274c8f96 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x27701ab6 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277a67f2 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x279a73d7 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x27b20494 pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0x27b68984 vp_legacy_set_status -EXPORT_SYMBOL_GPL vmlinux 0x27bc442b __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x27c701a3 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x27826dc5 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x2787bf2f acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2795fc9d vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x27a5784e device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x27a8f472 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x27ae745a irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x27bd1b3d devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x27bfff92 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27c50e96 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x27c82890 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x27d14f9b ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x27d8f65d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x27df3105 hv_alloc_hyperv_zeroed_page +EXPORT_SYMBOL_GPL vmlinux 0x27e2896c scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x27f3a5d3 __pm_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa5366 gnttab_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x2811ad4a __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x27fcb5c3 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x2805f249 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281e39bd tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x28264ee5 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x281cc8df dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282d529c __tracepoint_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2845c179 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x28490160 of_phandle_args_to_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x2853f43f crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x285cc066 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x285f2878 rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x2863c5c4 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x2842afef hv_get_non_nested_register EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x28657e7d xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x28659872 nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x287647fe devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x287f72a2 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x28754d4b ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x288c515e gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x28916736 tpm_chip_bootstrap +EXPORT_SYMBOL_GPL vmlinux 0x28a75e20 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x28ba7904 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x28bdf11b spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0x28be7284 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x28dfb043 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x28da0765 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0x28e8670d fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x28ed99c8 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x29077dc1 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x291665d6 devl_params_register EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29187923 regmap_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x29235829 spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x29312565 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0x29315727 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2934cd58 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x2937ab5e kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x2961fd22 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x296b8c86 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0x29736c75 i2c_dw_probe_master -EXPORT_SYMBOL_GPL vmlinux 0x297772e0 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x298bb8e0 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x29a53a29 perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x29b3c6d5 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x29b6d041 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x29c05e1e iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x29c9f4b8 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x29e5ba72 __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x29e82e84 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x2951c26e devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x295d5ec5 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x29685781 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x2991dea0 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x299b2559 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x299b7d84 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x29a2052f dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x29a47677 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x29a81545 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x29bd4dd6 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x29d45648 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x29e75c0c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x29eae5ea device_match_name EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f153f6 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x29fe2628 rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x2a00430a pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x2a039b93 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x29f10bfc fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x29fb6e4a vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x29fdb96c __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x2a0055df vcap_tc_flower_handler_ipv4_usage +EXPORT_SYMBOL_GPL vmlinux 0x2a25da0e devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a2e3d72 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a547d8c debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x2a5ba0c6 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x2a302ca6 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x2a3050db uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x2a30865f extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2a3de806 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x2a50aed0 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2a5d0a7a pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x2a5d757c subsys_interface_register EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a703406 strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x2a7240ca ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x2a8cdcb7 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x2a70f366 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x2a859610 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x2a928856 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2aa45b36 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x2aad35a9 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x2aaa36cd pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x2aad3d1d pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ab35ebb devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x2ac09086 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x2ac98a3c devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x2adfa8ce od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x2ae3f195 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x2b0077a5 ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0x2b08fbb0 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2ac34c3b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x2acba8b1 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x2ae1d569 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2af48826 make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b1c6d4b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x2b1c9463 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2b24a198 bus_sort_breadthfirst EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x2b3beb12 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x2b3f2b94 devm_pci_epc_destroy EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b522ee1 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x2b5e6948 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2b53f902 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x2b60a989 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b60f7a6 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear -EXPORT_SYMBOL_GPL vmlinux 0x2b67d3fe sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b7028f4 pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0x2b726679 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x2b762dd9 hv_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x2b7fd78e ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x2b81db19 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x2b8f4bdf ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x2b7e1fea component_compare_of EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba3a209 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x2bd10e13 regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0x2bd652ae __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2b9ab90b clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x2bb53278 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2bb77ee9 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x2bbd0838 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x2bbf49b8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x2bc6ec73 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x2bcff508 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs -EXPORT_SYMBOL_GPL vmlinux 0x2bd982de dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x2bdd7a66 fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2bf8b38e wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x2bfae472 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x2c1b0e46 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x2be316cd __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x2bfc1253 __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x2bfd03cb soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x2c139a02 acpi_dma_configure_id EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c23f7ed pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4184a2 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x2c4ffb61 PageHeadHuge -EXPORT_SYMBOL_GPL vmlinux 0x2c5540f5 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x2c5c279b devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x2c5ca327 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2c32429b ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x2c50394a regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x2c571bf1 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x2c5977b8 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2c5c2274 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x2c60104a sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c6752b0 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0x2c74969d blkcg_get_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c818dd3 iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c858369 irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0x2c85b0e9 __traceiter_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x2c8d58ad device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x2c8d5d75 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x2c84a11d led_set_brightness_sync EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types -EXPORT_SYMBOL_GPL vmlinux 0x2ca3a534 clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x2ca89fe7 snp_issue_guest_request -EXPORT_SYMBOL_GPL vmlinux 0x2cbd8679 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x2cc79ebc regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2cf23505 ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x2cfb2ed7 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x2c9d248e class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2c9eba95 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x2caadd57 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x2cac7b89 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0x2cf3990a wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d1740f6 __class_register EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1d29a6 devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d42cd0e bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d4dc483 thermal_zone_device_enable -EXPORT_SYMBOL_GPL vmlinux 0x2d5abbe3 klp_enable_patch EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d65e375 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x2d6a66ba fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2d7f9967 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x2d86d9e0 __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x2da331d0 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2daa5940 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x2da76b0f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2dae1860 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2db32c0e dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x2db949f6 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x2dffb06e dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x2dc5b2c3 dispatch_hid_bpf_device_event +EXPORT_SYMBOL_GPL vmlinux 0x2dd09403 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2de01ca9 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x2de4b3be relay_switch_subbuf EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e128c85 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0x2e1dc6b2 crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2c6618 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e318f51 __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x2e37e1a0 spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x2e4b7ac3 devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x2e4f6618 usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0x2e5c3221 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2e6717c8 irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0x2e681180 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x2e65b188 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x2e6e277a acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing +EXPORT_SYMBOL_GPL vmlinux 0x2e79fb49 gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x2e85e2ef debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2e7b62bd regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2e8343e3 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x2e8b31ed mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x2e902e28 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2eb3c266 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x2eb5eb35 edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0x2eb9afff blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x2ea4aa9b pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x2eb0e88a sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x2eb31c04 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x2eb98f6a locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x2ebe140c regmap_write EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec9f351 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2ec8a27d device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array +EXPORT_SYMBOL_GPL vmlinux 0x2ecd7369 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7732b devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ee9f575 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x2eec763a tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x2eef8be8 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2f0305f9 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2eedb267 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f1e5682 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x2f218c68 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2f227190 sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x2f2c1226 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x2f192347 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2f1ce840 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f2c55dc regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f376b64 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x2f46f412 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x2f44bb00 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2f458f19 devl_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f50de85 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2f5ebcc4 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x2f602903 of_css EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f6bdaed kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x2f733592 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x2f91a07f sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x2fa4e328 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x2fa66f32 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x2f71d5f3 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x2f80f357 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x2f82e133 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f91b575 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x2f93b0f8 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f9d9c49 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2f9ddd99 thermal_zone_device_priv EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc97d5d fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x2fd782b3 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x2fef6370 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x3006fc24 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x3010ff82 blkcg_print_blkgs -EXPORT_SYMBOL_GPL vmlinux 0x301713b4 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x302c5740 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x303aafa9 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x303bde84 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x3055a0ac crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x2fce9e59 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x2fdf09d9 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x2fe6f32b metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x2ffedb6b hv_free_hyperv_page +EXPORT_SYMBOL_GPL vmlinux 0x300f66fd usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features +EXPORT_SYMBOL_GPL vmlinux 0x3018871e ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x301b713a pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x30319a2d init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3031a44f dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x305363ab acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3058e566 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x305f7228 platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3075a7e1 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x3079bcaf devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0x3084f23d percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x3096a82d tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0x3099fab6 pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0x309d9d12 blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0x30ac7cbf crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x30c1051a led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x30692911 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x3069c072 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x308b3631 failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30a4f544 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x30a60c5f pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x30b08804 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x30b3131d of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x30c22958 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x30d966f5 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x30da0dc7 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30f95417 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x3100d237 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x30e7dc23 acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x310a608c bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3106cc89 ata_sff_exec_command EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x31142267 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x3115f99e nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x3116aad3 acpi_subsys_poweroff EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x312368e8 __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x3124c574 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x3135e9fa fpu_copy_guest_fpstate_to_uabi -EXPORT_SYMBOL_GPL vmlinux 0x3139012d tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x3139c4d6 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x31526ffc raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x31557eb5 acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0x315e29f8 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3139f862 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x314f3bc4 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x3151bacc devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3153377f dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x315adb27 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x31650ab7 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x31819ea1 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x3183412c pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x31905756 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x319ac570 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x31a25d17 rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31c57ee9 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x31b73b89 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x31bb7fea ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x31d47e58 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e19fdf bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0x31f8b91b fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x320f4618 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x32111eb4 fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x3218b2cb i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x321c8724 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x3223c47e iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x31e9074b key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x31fc3470 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x321bce5f xhci_drop_endpoint EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x3231e93b set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x3258230a ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3231c59c acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x3243deb9 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x32461e17 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x324d5fe6 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x324eca61 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x32731867 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x326eaee9 debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x327c8248 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x327a2cab rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x327e92d2 pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x328e532e devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x329b1d06 icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0x32a8f4f9 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x32a92acf gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x329d4b02 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x32a04a85 switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32adc732 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x32b6e145 tpm2_flush_context EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec -EXPORT_SYMBOL_GPL vmlinux 0x32c38760 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x32bdd4e0 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c7745b lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x32c9b798 cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x32cca846 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32c83346 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x32cbd40d crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x32cbe1db call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x32ce5275 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x32dbf877 irq_domain_remove_sim EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate -EXPORT_SYMBOL_GPL vmlinux 0x32f9fab4 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x32f0e37c pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x32f3f159 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x330219f0 device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x331e3bbb raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x331f7a87 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x33274614 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x332c5832 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x333b934a __tracepoint_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x33406b15 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x33518fef tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x3352823d cppc_get_auto_sel_caps +EXPORT_SYMBOL_GPL vmlinux 0x335a613c mas_next_range EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size -EXPORT_SYMBOL_GPL vmlinux 0x33645285 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x33696f94 pinctrl_utils_add_map_configs -EXPORT_SYMBOL_GPL vmlinux 0x336c740a clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x3379d2a2 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x337cd942 finish_rcuwait -EXPORT_SYMBOL_GPL vmlinux 0x337eaec3 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x33b42b2d rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x336aafda tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x338f2f3d pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x339d2187 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x33a25156 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x33b406b1 xdp_features_set_redirect_target EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery -EXPORT_SYMBOL_GPL vmlinux 0x33c45608 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x33cadc45 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x33caf554 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x33d88894 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x33e19045 nf_queue -EXPORT_SYMBOL_GPL vmlinux 0x33e98c87 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x33fc3bdf devlink_port_region_create -EXPORT_SYMBOL_GPL vmlinux 0x3401ab31 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x340584eb srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x340da571 devm_regulator_bulk_get_enable -EXPORT_SYMBOL_GPL vmlinux 0x34108f81 driver_set_override -EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x341a9925 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x3421ddba __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0x342416e9 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x342ccc9f pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x33c97e5a cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x33d11730 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x33d153ff pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x33d3e39e param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x33df4cc8 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x33f27d2e gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x33fa2a08 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x340c2838 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x340cbac8 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x34108c18 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x341286d2 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x3427c761 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x342abf33 register_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x3438f860 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x343ee7a3 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x343fead7 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash -EXPORT_SYMBOL_GPL vmlinux 0x34424c2d dev_pm_opp_get_freq EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344ab563 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x344d0d29 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x344d395d hsu_dma_probe EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x34527d04 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x3454e410 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x345ca02f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x34556a49 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x3469e00d kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x3481f241 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x347fc49c folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x3489812f bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x34901d57 dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x34a22df5 hypervisor_kobj -EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x34bca67d sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x34c8afff regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x34d15b2d vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x34d8155a usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x349302c2 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x34a0eaea vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x34b29292 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x34b3baa1 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x34d82de0 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x34db62bd fpu_enable_guest_xfd_features EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34e7be91 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x34df3dfc unregister_kretprobes EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34ec564f trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0x34fbde0d fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x34f94502 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x34fa98f8 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x3519e629 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x351e5c59 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x3526589c fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3510f0f8 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3516b0e3 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x3520840f shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x35256031 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x352773aa unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x352a8271 iopf_queue_flush_dev EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current -EXPORT_SYMBOL_GPL vmlinux 0x352d0f41 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x35390797 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x354b0411 device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x354e3719 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x352f8604 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x3532a71c fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x3533336a ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x35387bd2 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x3538a939 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x3547c71b vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x355ea0f9 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3562e9a3 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table -EXPORT_SYMBOL_GPL vmlinux 0x35666f1e ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x35666fc5 led_blink_set_nosleep EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x3578ae5a __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x357b71e3 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x35838c92 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x35823122 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3586aca9 dm_disk EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359a4176 regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x35a7a202 _copy_mc_to_iter -EXPORT_SYMBOL_GPL vmlinux 0x35b1c4b0 iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x35b41812 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x35b9167c devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x35a25054 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x35aa04e1 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x35bdc8a7 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x35ca7fd2 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x35cfde87 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35e0b8f0 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x360ac1ad devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x35d4119c intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x35d523ab gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x35d84d0c add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x35d94dcc tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x35f55c19 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x35f8a27b __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x35f94061 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x35fbc976 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x35fd6327 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35ff31d2 inet6_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node -EXPORT_SYMBOL_GPL vmlinux 0x361740b5 tty_buffer_request_room EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x362d191f handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x363074f2 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x363c8519 sbitmap_queue_show -EXPORT_SYMBOL_GPL vmlinux 0x36648b7d gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x36381bc0 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x3640cf75 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x3649c66c devl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x365079b2 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x36530f78 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x365a5bf8 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x365bff8d dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x366f3bdf pwm_lpss_tng_info -EXPORT_SYMBOL_GPL vmlinux 0x367a21c2 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x367becc9 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x36813d68 ping_err EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x36986be1 hv_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x36a7f67b usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x36a85b48 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x36a28cdf virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x36ab1a1e irq_setup_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36afa897 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled -EXPORT_SYMBOL_GPL vmlinux 0x36c7d19f rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x36db5ecc acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x3704bdee rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3711f00c crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x37136b2c nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36cc80b7 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x36f8a232 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x37024305 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x371ce8a8 xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x37452ed3 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x37490b49 usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x375bce6c crypto_inst_setname -EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield -EXPORT_SYMBOL_GPL vmlinux 0x376bacef __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0x37743c20 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x37620dcf usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x376e5e5d gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x378ea550 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x378f9a40 static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37bace91 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x37a1b25d ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x37a9c2bd devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x37bbd001 rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c61dbd unregister_ftrace_direct_multi -EXPORT_SYMBOL_GPL vmlinux 0x37df81f3 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x37f28b39 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x37c70ec5 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x37caa45b badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x37cb4b6a __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x37e0b4d9 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x37e2b672 genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0x37ebfcab relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x380125ef fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x3807d8d0 xdp_return_frame EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x38129508 to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x38150ff0 __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x381ee553 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x3813651c bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x38190c65 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x38200299 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x3834ef4c __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x383278ce fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x38347302 hwspin_lock_request EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x38381a5e led_trigger_blink_oneshot -EXPORT_SYMBOL_GPL vmlinux 0x384687f1 strp_init -EXPORT_SYMBOL_GPL vmlinux 0x384f32fa pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x383a580b md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x384877a5 register_fprobe_syms +EXPORT_SYMBOL_GPL vmlinux 0x3854fba4 acpi_dma_request_slave_chan_by_index EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386b8187 dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x386b821a apei_get_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x387a65f8 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x38943eb6 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x387d04c4 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x388264ea amd_clear_divider +EXPORT_SYMBOL_GPL vmlinux 0x38874bf1 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x389af1fc device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x38a2fbcd gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38b4d5ea dbs_update EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38c64c0e dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x38cf842c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x38d4f7f9 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x38d9ecc4 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0x38ed47e3 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x3910bf25 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0x391e55bf sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x39306f17 tpm_chip_register -EXPORT_SYMBOL_GPL vmlinux 0x39334da8 crypto_stats_akcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x3952fbd2 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x390158ee __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x3903b11e fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3909b802 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x391e0519 blk_rq_poll +EXPORT_SYMBOL_GPL vmlinux 0x39433cb8 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x395a87cc ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x3970abb8 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x3982c506 fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0x3984072b regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x39970fdc devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x399a5393 devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout -EXPORT_SYMBOL_GPL vmlinux 0x39a92c9b platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x396b653c rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x397e7fb7 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x3991e197 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x3996e295 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x39a1fd56 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b507d7 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39bb0c8d spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x39bf59a9 init_node_memory_type EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39db071f virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x39dddb12 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x39e64ac1 iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0x39eca82d pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0x39ee25d0 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x39f48801 crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x39fd7da1 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x3a05b8ec kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x3a12ecb6 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x39ea7d62 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x39f63440 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x39fa477b ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3a191eeb pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0x3a1b1a35 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a24d84c dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x3a28a48b fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3a3f7996 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x3a41108b __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x3a4d97d1 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x3a258764 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x3a43f3f1 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x3a477d8d nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3a493ce5 tcp_leave_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a666c98 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x3a719805 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x3a760e4f exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3a569c40 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x3a5ebcef tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x3a7bfc27 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn -EXPORT_SYMBOL_GPL vmlinux 0x3a85a297 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x3a7e3e0c __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3a826b75 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x3a897880 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9d7d5f ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x3a9e15c2 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x3aa2b032 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3aac5545 dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x3ab27c4d kpp_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3abaae82 regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3abafffe led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x3a9c473f devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3a9e8610 acpi_remove_cmos_rtc_space_handler +EXPORT_SYMBOL_GPL vmlinux 0x3aacc054 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x3aafb0d3 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3ab63ef1 __tracepoint_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location +EXPORT_SYMBOL_GPL vmlinux 0x3ac11c9a pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3acc2981 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3ac6a026 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad4c0d9 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3adc30ee ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x3ad8f69e scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3af7c9db clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x3b090bbb tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x3b1e17f5 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x3b1f675d espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x3b38da5e sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x3b3a3d97 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x3b3a5312 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop +EXPORT_SYMBOL_GPL vmlinux 0x3b0d1ed7 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3b221ee6 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x3b2a437a find_vpid EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b71107b led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x3b717098 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0x3b794b63 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x3b6cf99d debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3b7707c4 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +EXPORT_SYMBOL_GPL vmlinux 0x3b7e58ea pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9b935b xhci_stop EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x3bbb174a ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x3bc3aeda regmap_get_raw_write_max -EXPORT_SYMBOL_GPL vmlinux 0x3bc883c5 nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x3bcb74ea lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x3ba0fa34 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x3bb26b08 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3bb75102 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x3bd15091 gnttab_page_cache_put EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be1f56b input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x3be8f352 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x3be910eb key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x3bf0a178 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x3bf1576c kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg -EXPORT_SYMBOL_GPL vmlinux 0x3c0f54c0 sync_blockdev_nowait -EXPORT_SYMBOL_GPL vmlinux 0x3c13beaa fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x3c141cb4 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x3c14aa30 security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x3c196adf set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c22a1ca simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x3c246a57 gpiod_is_active_low -EXPORT_SYMBOL_GPL vmlinux 0x3c2fdec1 spi_write_then_read -EXPORT_SYMBOL_GPL vmlinux 0x3c43b013 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x3c46e5c7 devm_spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x3c471826 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c55c1a8 da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x3c5c19f7 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3c1d4046 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x3c3c75ab regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x3c3eed9a screen_pos EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c623093 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3c624d89 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c7b5854 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x3c7684cd l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x3c8165de usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3c95f83f iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x3caa1f26 vp_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x3caa8e9f tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3cad7b9c devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x3c893558 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x3c8cf9a5 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3c931e2e pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x3c96be97 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x3c9bfbd1 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x3cb095aa bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0x3cb505cf dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x3cc25c74 sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3ccc0c06 dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3ce3973e is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x3cec71f6 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x3cf5de10 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x3d041bca devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3d061f6f ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0x3d0691f1 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x3d10ce39 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x3d13a72d debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3d1e0cdc __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3ce708d3 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x3cec866b __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x3cf634bb gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3cfeedcd __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x3d1972a0 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x3d2c2ef4 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3d2e4f68 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d40e0aa intel_pinctrl_get_soc_data EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5ae6b0 phy_modify -EXPORT_SYMBOL_GPL vmlinux 0x3d79c212 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x3d5e3e31 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x3d6b1e46 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x3d6c3ffd fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x3d71c16f handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x3d7691f5 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3d7c6860 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x3d85f906 ping_hash EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d8c0ffc nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3d9effbf blk_mq_quiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0x3da50b2e pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x3da5c41e fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3db2045a mmput -EXPORT_SYMBOL_GPL vmlinux 0x3ddaa0aa virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x3de37237 md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x3de437b0 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x3db6327f md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3db9aa2e vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x3dbadd98 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x3dbb8f7d debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x3dc0a3ee crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x3dc71c99 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x3dd05998 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x3ddb4388 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df395a1 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log -EXPORT_SYMBOL_GPL vmlinux 0x3dfa434f nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3e06db26 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e0ad828 sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x3e0dbbd8 irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x3e17d43f call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x3e2fffc6 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x3e107d08 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e1939a1 netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0x3e1a10c5 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e49fb86 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0x3e557d8a __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0x3e606136 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0x3e60bbe4 __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x3e63fbcc pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x3e6a75c1 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x3e53d690 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x3e5b9ea7 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3e613288 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x3e6544d0 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e67577c vcap_alloc_rule EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e75c33d pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule -EXPORT_SYMBOL_GPL vmlinux 0x3e7afc9a device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x3e8c0228 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3e870769 __of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms +EXPORT_SYMBOL_GPL vmlinux 0x3e9168e6 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x3e931a19 io_uring_cmd_do_in_task_lazy +EXPORT_SYMBOL_GPL vmlinux 0x3e9423b4 __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3eab770b crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x3ebcf5f4 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x3ec652ab ata_common_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type -EXPORT_SYMBOL_GPL vmlinux 0x3ecff330 acpi_get_first_physical_node -EXPORT_SYMBOL_GPL vmlinux 0x3ed2f70d da903x_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put -EXPORT_SYMBOL_GPL vmlinux 0x3edf3d7c event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0x3ee4c928 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3eeeb890 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x3ef016ec dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3f07ce5f zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0x3f0c42d9 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x3f1fa9d6 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x3f31f06c devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3ef40a1e __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f37d564 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f4b4fba hsu_dma_probe -EXPORT_SYMBOL_GPL vmlinux 0x3f6171ce spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f6df840 virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x3f7356ae tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x3f79f373 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x3f63c179 skb_segment EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f95185f phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0x3faa611d regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3f8ffccc subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f947f7e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x3fa03b41 pci_try_reset_function EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fbdd413 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x3fcba62f receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x3fe3e80f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x3fae8613 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x3fbd1788 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x3fbd7dae devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fc99913 devm_clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x3fed0ded regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3feb6570 vchan_tx_desc_free EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x400662f9 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4009b9df uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40013ea1 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x40017308 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400b1ae1 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x4015f820 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4022acbf fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x402f9df5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x40373ba8 dev_pm_domain_detach EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x405867fe iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x406304f4 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x4047dcd5 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x4063b9e9 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406713e2 srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406ddb53 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x406e9481 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4079f519 usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4089cb68 split_page +EXPORT_SYMBOL_GPL vmlinux 0x40876513 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x408989a4 tcp_sendmsg_locked EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409a4f3a pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x409cbdc3 iommu_report_device_fault EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all -EXPORT_SYMBOL_GPL vmlinux 0x40a303d7 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x40b9ac9b __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x40c01b09 usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x40cab158 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x40ccb4a8 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x40d1e2d7 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x40d61714 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x40e23c39 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x40e5f1fb genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x40a5564e amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x40ae42ea irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x40d88f9c regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x40effdcb acpi_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f6386e gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4104d381 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x4108ea6c ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0x411ce031 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x410a2058 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x410aaac1 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x410c1156 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x411228ac __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x411cefd8 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413767ac dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0x413aca17 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x4140a61f xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x4149707a __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4159b5e3 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x415cb3b8 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x4174c986 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0x41762eb4 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x417f7474 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x41550592 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x4156fb85 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x415840aa device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x416a5d5f xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x416c4f9d crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x417284d5 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x41746ca8 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x41747d24 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x419ad72b crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4183efe5 devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x419489fa dm_path_uevent EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41ad643d debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x41afbd77 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x41b5acd2 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x419f4414 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x41a00a96 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x41a3e403 devl_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x41b250bf dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x41b5fb7e wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c597cb nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x41cd345d ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x41d5928f to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0x41d65f10 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41c494b4 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x41c8eb33 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x41daab50 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41ee5a32 devm_hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0x41f82a42 __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x41f9911a serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x41fcc3ce device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x420c319e blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x422bf7b5 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x421108d5 __tracepoint_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4239118e start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x423e93c7 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x4242e007 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x42486f12 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x424caca6 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4249b9f8 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x4253ff99 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags -EXPORT_SYMBOL_GPL vmlinux 0x42637d97 pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x42675c82 acpi_subsys_complete -EXPORT_SYMBOL_GPL vmlinux 0x427b05b8 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x4278a655 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x427d8a7f gnttab_unmap_refs_async EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42912a0d dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x42954f74 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x428534f1 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x42974a45 ftrace_set_filter_ips EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42a1d4c5 dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x42b42ce0 nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x42b86829 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x42bd63fc user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x42bde365 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42bb7461 acpi_fetch_acpi_dev EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42dde227 __SCK__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x42e7a33e device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x42e7e900 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x42ea6549 dev_pm_opp_enable -EXPORT_SYMBOL_GPL vmlinux 0x42f20993 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x42ccae5f devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x42df8938 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x42e67744 crypto_sig_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x42e732cb vcap_rule_add_key_u128 EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43069db9 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x4307ecbf pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x430dc837 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x430feca3 regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0x431da027 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x43219ffb dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x432a0975 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component -EXPORT_SYMBOL_GPL vmlinux 0x43590508 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x4313a47e blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x43333014 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x43472c96 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x4349a50b set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x434a4821 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x4358fdc2 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x435d5200 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x43609fc2 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x4371f2e1 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x437ee16f sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x4396dc09 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x439fd8c5 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x438de55c msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x4391d770 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x439d172f disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x43a2b419 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x43a440fa __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x43a962ee pci_p2pdma_add_resource EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b90566 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x43ab929e firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0x43b47ba9 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x43b99fd2 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x43bf4706 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x43c34545 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43d3941b crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x43e3c550 virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0x43e8444c devm_thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x43ea4e80 gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43fd0b67 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43f951ab cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x441b7bce __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x44204473 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x44030de3 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4406b3fe start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x441d23d6 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x4427a4fc transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x442fd350 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x44427fd0 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x444ba8b9 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x4458bddb dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0x445c577f inet_bhash2_update_saddr -EXPORT_SYMBOL_GPL vmlinux 0x4460a302 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x442fe241 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0x44622860 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop +EXPORT_SYMBOL_GPL vmlinux 0x44741339 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x4475dcaf hv_nested +EXPORT_SYMBOL_GPL vmlinux 0x4476a11c pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x4479ccb1 xenbus_read_otherend_details EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x4484d9a6 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x44a33c40 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x44a7a650 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x448bb4a3 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x4497ee09 devm_acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44cbdff5 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x44bc85ac virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44dffaa1 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x44d49f2c dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44f87523 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x44e4e53c crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x44e85d6a ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x44fb9ed5 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x44fbcef6 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x44fcf04d bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507c576 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x45081c66 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x45126189 dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x451dadf4 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x45208976 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x4522a454 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x45213c25 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x4522d463 dma_resv_set_deadline EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x453e7e4b device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state -EXPORT_SYMBOL_GPL vmlinux 0x45460fe0 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x45360202 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x453da07b iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x453dbd54 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x45453a5b da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x454d0d21 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x45502db3 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4550766e fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4552b518 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x4553e038 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x4554a903 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x4559ea1c ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x45629206 acpi_device_fix_up_power EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x459df8bb irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x459e5d55 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x459b27c6 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0x45a9d4c4 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x45bea102 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x45cf2119 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x45d0f3db led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45a74ee9 devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x45bae3fd mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x45cde8c7 nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page -EXPORT_SYMBOL_GPL vmlinux 0x45d4864c genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0x45e99049 device_del -EXPORT_SYMBOL_GPL vmlinux 0x45fa966a power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get +EXPORT_SYMBOL_GPL vmlinux 0x45efff3c get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x45f0266b irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x45f4325b pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x45feed1a cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x4603d08d pm_clk_add EXPORT_SYMBOL_GPL vmlinux 0x46047827 __SCT__tp_func_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x460a0c13 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x461d7406 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x46227a4c xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x4617870c crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0x4618477c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x461a6d02 pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x462814ea crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x4638e3ca nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x463cd098 usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0x4656f6f0 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x465d7171 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x4663eb0b regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x46823e75 ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x4687e8fa device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x46392ae9 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x4649f5a7 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x465d5481 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x465f2c15 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x46600aae devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x4679821e bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x46817557 __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4690b035 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x46980123 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x4698388f watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x46a32292 skb_mpls_pop EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page -EXPORT_SYMBOL_GPL vmlinux 0x46aaab78 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x46ddd07d pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x46e93a11 __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x470ee495 gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x470f6098 nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x472090fc kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x46a85c97 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x46ac6757 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x46ad6172 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x46b042b7 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x46c61de3 acpi_install_cmos_rtc_space_handler +EXPORT_SYMBOL_GPL vmlinux 0x46e14bbc ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4704a5a1 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x47144d40 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x472da3f2 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4726ba80 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x47273b9e regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x472c11f0 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x472c19d4 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x473258b9 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x473ddf86 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x474c39e3 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x476b2bbb sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x4777cf2b xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x4777d85d md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x477a90c7 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x477bba81 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x47837d61 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478adb71 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x479269c2 rcu_read_unlock_trace_special EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x47a8f110 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x47a4b6ec iomap_bmap EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47b1ace8 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x47cc33a4 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x47bef4de crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x47cf62fe devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d4706a get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x47d81026 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x47d99dd6 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47dac283 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47debdaf nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x47e163b8 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x47e640b2 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x47e66fea device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x47f354d3 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480b39db iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x480b4fe1 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x48105bba __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x4806ec73 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x480c3f42 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482dfad8 pci_p2pmem_publish -EXPORT_SYMBOL_GPL vmlinux 0x482fad89 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x484ae398 check_move_unevictable_pages -EXPORT_SYMBOL_GPL vmlinux 0x486bbfda ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x483f1682 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x484dbe2a register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4864adae devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x486af86a debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x488eb754 component_del +EXPORT_SYMBOL_GPL vmlinux 0x4876c52f sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x487a450b usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x488c26c1 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x48977fbe sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4897c852 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x4899d260 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x489bc519 cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a89920 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x48ce431b __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x48d3add1 xfrm_audit_state_notfound_simple -EXPORT_SYMBOL_GPL vmlinux 0x48d56b2b modify_ftrace_direct_multi_nolock -EXPORT_SYMBOL_GPL vmlinux 0x48dd88b9 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x48a65cf7 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x48afc1b2 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x48b2b9a6 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x48c27f0f skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x48d463fb __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x48d4c1c2 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x48d7d839 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x48e080b1 x86_virt_spec_ctrl -EXPORT_SYMBOL_GPL vmlinux 0x48f1af9e i2c_acpi_waive_d0_probe -EXPORT_SYMBOL_GPL vmlinux 0x48fce3a9 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x49029e9d devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x490503e1 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x49055bf2 __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x4923c4e7 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x490aae47 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x491c1da6 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x492e026c pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0x492f47ec platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x4932af5f pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0x493398c2 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x492f1b9b crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4932e00d ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x49562b4c init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x4957b9bd input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x49535e82 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x495900c6 devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x495ea9c1 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x495fe486 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49679193 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49698c23 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x497dd1ef rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x498d0e86 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x4962768e fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x496f7e2f devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x4972244c anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x497bb7ef ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x497f8881 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x4984d616 thermal_zone_device_type EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49a5238b ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x49ac80cb nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x49cac4d3 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x499580aa crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x499782e4 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x499f7cdc xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x49aa31ed aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x49ac4fa5 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x49b9184e vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49db2076 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x49db5919 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x49d143bc device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x49d5d508 class_interface_register EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49ee4eac usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x49eeef7e clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0x49effba2 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x49fd41d1 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0x4a0bda28 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x4a0d29f7 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x49f21d21 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x49f821b9 device_del +EXPORT_SYMBOL_GPL vmlinux 0x49fe78f6 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x4a0fc806 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a183ff1 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x4a1dcc7c devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x4a207c60 dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x4a2e6bac pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x4a34ea93 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x4a37b087 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a5e69b4 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x4a667bf2 usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x4a66de6e gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x4a73a5cc hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x4a8a5c8b regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x4a92580a sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0x4aa0d870 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x4abd6622 skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0x4af4a4ac crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x4afb35e9 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x4b0226b5 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x4b0a5f80 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x4b2498af dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x4a43b6af fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x4a49e087 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x4a4e72cf usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x4a58d3f8 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x4a609f79 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x4a61f476 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x4a69100e __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4a6fcbc6 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x4a71b52b __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x4a753511 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x4aa2c0f9 devl_register +EXPORT_SYMBOL_GPL vmlinux 0x4aa6d4f5 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4ab7e797 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x4ac0580e uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x4ac6cdd8 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4adae604 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x4aee9c27 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x4af91af8 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x4b18168c iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x4b1bf375 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x4b2a4250 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b2bbc53 devm_of_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x4b31071d ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0x4b332df8 hv_get_tsc_pfn -EXPORT_SYMBOL_GPL vmlinux 0x4b3b0754 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x4b3f590b __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x4b4b67b5 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x4b4cb718 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x4b33bf7a devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4b34a0c1 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4b3aa9a3 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x4b3f0060 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x4b49919c crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4b51210d devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4b555bc3 tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b57ae85 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b636133 tcp_reno_ssthresh EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b7871e5 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4b88e033 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4bacee66 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x4bbc4fd6 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x4bc1eeec i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x4bc4f12f dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x4bc73963 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4b99e9b2 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x4baef0f4 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4bc78e80 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcc3b96 __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x4bcd9245 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x4bcff457 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x4bd19da2 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x4bd2ce66 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4be5b819 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x4be92f30 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x4bea9b56 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x4bf4dc17 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x4bf58d19 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4bf6e454 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x4c060078 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x4c0aa1c0 led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x4c249f47 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x4c242b41 sata_pmp_qc_defer_cmd_switch EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c453f1e governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4c53a363 shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c564539 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4c5b9de9 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x4c5f348e acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x4c68fd2e device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping -EXPORT_SYMBOL_GPL vmlinux 0x4c7fca03 iommu_sva_find -EXPORT_SYMBOL_GPL vmlinux 0x4c8298ff balloon_page_list_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x4c88914d icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x4c78277e clockevent_delta2ns EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c9a5adb ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x4c9c5abe cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4c9a49d7 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4cab2916 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x4ca9b3fe devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cc88f0c disk_set_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x4cd18b0e __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x4cdca403 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x4cddf46b tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x4ce2cb20 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x4ce61e4b pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4cec9d4b blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x4cf43615 extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x4cf8f009 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4cdc1d22 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x4ce38db4 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x4cee7653 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4cf0a661 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x4cf0c453 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4cfb5e49 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d023f3c usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x4d0cfaf0 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x4d11d4ed wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4d1de44c devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x4d26bd22 extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0x4d42f070 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x4d479102 usb_cache_string -EXPORT_SYMBOL_GPL vmlinux 0x4d51942c gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x4d390f88 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x4d6ca085 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4da0dcb5 __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x4da34644 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x4daa6e3d devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x4dac3f2b usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4d77786a fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x4d8411b5 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d8dd80e serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x4d92f32f rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4d9710ea folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x4d988e19 failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d9bea0a vcap_tc_flower_handler_ip_usage +EXPORT_SYMBOL_GPL vmlinux 0x4d9d3d6e xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4dad7990 genphy_c45_read_eee_abilities EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db18657 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x4dba4a3a __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x4dd9f85e tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x4de060ea led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x4db3e456 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x4dc7aa1b vcap_set_tc_exterr EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4deea626 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x4deeafb3 blk_mq_end_request_batch -EXPORT_SYMBOL_GPL vmlinux 0x4dfb5c06 vcap_del_rule -EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4de49d40 tcp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x4de832fa fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x4de8e993 pci_find_doe_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x4ded9450 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x4dedcd4a virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x4df37297 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4df89a22 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x4e009c06 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e0464bc genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x4e144a54 __SCT__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e2f275d ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x4e431997 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4e2b0f04 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x4e30a01c sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x4e3dc47b regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x4e44fdbb usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x4e494acc attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x4e4afcd8 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e4fcad9 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x4e5721ae __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x4e5a6aea blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x4e621744 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x4e505a3c regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x4e528294 __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x4e601a5b debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e6611bb attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x4e68b768 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x4e707249 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x4e7d1741 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop +EXPORT_SYMBOL_GPL vmlinux 0x4e7fc7c0 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x4e92e221 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x4e9a5995 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x4ea8a8e2 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x4eac268c pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4ebc7958 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x4ecddc52 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x4eb5870c pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x4eb82b18 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4ec3bf57 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x4ec5ae49 vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ecf23ca __sock_recv_cmsgs -EXPORT_SYMBOL_GPL vmlinux 0x4ef564cb led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x4ed7f060 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x4ee48fc2 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x4eed2d4e crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x4eeee747 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x4ef29ec5 dev_pm_opp_get_power EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efb3346 icc_put EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f0a2cc5 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x4f0f145f __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x4f0f2521 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x4f24809f sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x4f00676e get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x4f0141e6 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f10415a sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f1c545b crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x4f1cdd61 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x4f20d33f ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update -EXPORT_SYMBOL_GPL vmlinux 0x4f2c18e8 devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f2f460b power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x4f3f265a crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x4f49dd25 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4f4d8be0 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x4f4f6003 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4f5d65e9 extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x4f6311c6 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x4f674f03 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4f68685a irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4f46aad8 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4f4b321b led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x4f53e44a fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4f56dafb fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x4f638d55 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f661059 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x4f661c4d gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4f664758 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x4f6d896b gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f788788 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init -EXPORT_SYMBOL_GPL vmlinux 0x4f8e5982 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x4f9f5ecb __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4fa5aeb0 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x4f8b7369 vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0x4f9a1e55 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4faf82c4 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fd98a89 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x4fb79842 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x4fbc1f67 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x4fbefc4c __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4fbf21ab dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4fc99cad crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4fd39017 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdd83c8 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4feb95e1 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x500312d9 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x5005f127 __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x4feaea21 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x4ff24af2 usb_get_status EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x500fd82f pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x501e24bc sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x50235552 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x503740da debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x503ef723 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5061e33f __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x506d6f07 devm_platform_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x507cacba kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x508b3459 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x502d6582 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x505787eb usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x505a17d2 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x505d2266 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x50725b15 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x508380e4 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x508b976b rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x508df4c6 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50924296 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x50993d25 vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x50a0d019 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0x50aa9cfa pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50b9e299 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert -EXPORT_SYMBOL_GPL vmlinux 0x50e3c614 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x50e0c299 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50edc1fc edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x50f0f55d dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510e2e97 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x5115a2ee lwtunnel_get_encap_size -EXPORT_SYMBOL_GPL vmlinux 0x511cae5a __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x51305fa7 intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x50ff58d6 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x51081a7d gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x51185f7a thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x5142814a irq_domain_translate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x514612f7 scsi_template_proc_dir -EXPORT_SYMBOL_GPL vmlinux 0x515d349e efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x517fb0d1 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x51428c32 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x51574991 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x517e52f7 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5188928c fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq -EXPORT_SYMBOL_GPL vmlinux 0x518c72c8 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x518f0f4c transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x51917468 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x5191de46 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x5194ad0e iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x518e4d10 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x518f01ae usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x5192e23d usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x51991c1a __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x519be736 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x51a16d61 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51afa0f6 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0x51ce0a6e tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51d795a5 badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x51e381f8 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0x521343b6 pci_msix_can_alloc_dyn -EXPORT_SYMBOL_GPL vmlinux 0x52239175 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x51ba8194 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x51bee190 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x51c534da scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x51d9122f sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x51df7e97 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x51e913b5 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x521ffc76 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x52213722 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x5237cd39 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x52395c33 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x522d99e9 make_vfsuid +EXPORT_SYMBOL_GPL vmlinux 0x5237f270 iommu_device_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x52462557 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x524f3e01 __percpu_down_read EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x526e6853 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0x52778e68 usb_create_shared_hcd -EXPORT_SYMBOL_GPL vmlinux 0x527ceadd ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x52887094 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x52a8e24d ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x52678e7f seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x528cfdd6 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x52a89f0c msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52c0b14c platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x52c0e9b5 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x52c1917a __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x52bfb9b8 crypto_akcipher_sync_prep +EXPORT_SYMBOL_GPL vmlinux 0x52c15790 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52c71bf6 ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x52ca4407 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x52cd690f __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x52d1b49b pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x52d3f8cd ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x52d53791 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x52c36953 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put -EXPORT_SYMBOL_GPL vmlinux 0x52da3b25 sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x52fbe612 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0x53066f42 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x5324417d regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x5327dc33 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x52efb1ec nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x52f19bbb devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x530a7ae1 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x530a9cce iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x530fbdd3 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x5315bbf3 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x531d94d4 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x53261f62 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x532b5f44 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x532f1e52 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x53303633 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x53312dd1 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x533de20e get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x53410fca class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x534bd185 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x534d6454 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5330f6b7 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x533f8765 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x53652392 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x5373a003 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x5382062a __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x53849b22 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0x538542bd shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x5389c314 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x5388b1a0 amd_get_dr_addr_mask EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x539932b0 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x539c0608 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x539ceb4f regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53b282f4 generic_handle_domain_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x53b946b0 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x53a156b7 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x53a7b66e rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x53ae540a xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53d5852c md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x53c57dd3 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53dd1151 bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0x53de405c uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x53e23f82 __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0x53e9c72a regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x53fe854f spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x5407a747 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x53de2f6d spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x53e03584 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x53e18463 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x53e59cb1 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x53e5b459 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x53f0d30e fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x540d3902 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x541b58bc __SCK__tp_func_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54388a32 nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x543ebf92 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x543fa063 devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0x54462fcd vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x545ddb1b rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x543e8a2f spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x5440ca1c devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x54436a5d l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5462caee gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x54702768 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5465429c percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x5486ac60 edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54b7a1cb mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x54bc0558 gpiod_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x54ca9a13 genphy_c45_fast_retrain -EXPORT_SYMBOL_GPL vmlinux 0x54d254d1 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x54e29c84 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x54edeb7b dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x550a2fe1 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x54b16b05 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x54b519cf devl_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x54c09b23 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x54df3624 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x54f01d1e debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x54f0ae03 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x54f3d2e7 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x54f74f6a fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x54fa21ed gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x54fdebd9 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x55036eb1 thermal_zone_get_num_trips EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x5510f382 inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0x5512825d gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0x5522a214 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x552d7c24 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x5510a93b __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x551b1716 __tracepoint_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput -EXPORT_SYMBOL_GPL vmlinux 0x5535c27d follow_pte EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data -EXPORT_SYMBOL_GPL vmlinux 0x5540113c __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x553b8b19 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x55462474 fpu_copy_uabi_to_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0x5562defd __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x556a8f52 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x556ad716 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x554626cd __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x555a5e28 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x5570bf5a __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x557187d4 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x55743c86 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x55a0f07d tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x55b2b413 dev_pm_opp_config_clks_simple -EXPORT_SYMBOL_GPL vmlinux 0x55c5bcb8 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x557966ff of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x5586d09c dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x55a1ff28 __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x55b24dd5 crypto_clone_shash EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper -EXPORT_SYMBOL_GPL vmlinux 0x55c797f4 cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x55d39a07 crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0x55da5a7a i2c_new_client_device -EXPORT_SYMBOL_GPL vmlinux 0x55ec2c66 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x55ccf0ef inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0x55cd739b sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x55cf42dd dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x55d6468e ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x55dbdf1a sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x55dfcf18 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55fa5b49 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x560d3613 fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x5612cab2 register_fprobe_syms -EXPORT_SYMBOL_GPL vmlinux 0x5613136c phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits -EXPORT_SYMBOL_GPL vmlinux 0x56174dc0 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x561a5691 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x561f0fb6 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x5624f826 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x56294b89 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56337c58 usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5649f760 usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0x566bbe00 vcap_keyfield_name -EXPORT_SYMBOL_GPL vmlinux 0x566f49a0 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x5679aa37 relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x567bbd10 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x564f3a45 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x56563d1d misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x5675a73b __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x56780a05 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x568f5cbe pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x5692863f extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x569f76f2 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x56a1f1fa phy_create -EXPORT_SYMBOL_GPL vmlinux 0x56a87deb dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x56aefae1 acpi_get_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0x56b4c8e7 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x56ca2cd3 dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0x56ca583f led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x56e390f6 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x56ea37c5 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x56afd673 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x56c4af01 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x56c80894 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x56dc1402 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x56faa02d nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5703544f devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x570e721a __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x5714e110 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x571e487e bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x571e8bda vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0x571f8848 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x572d782a pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x572d8abc __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x57326ab9 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x5703b552 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x571bad35 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x57286d74 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x572c5c1b usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x573496bf crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x57650f4a device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x577145dd clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x57476529 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x57515d3b tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x575afc28 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x576a4dbc hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x576bf9c9 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x576f6f8c class_compat_create_link EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x577e3334 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x577de28e xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5780a2f5 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x57839e6b pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x57861a5c gds_ucode_mitigated +EXPORT_SYMBOL_GPL vmlinux 0x57882277 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x578ebf4d blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x5798babd acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x5799d886 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a4b45e virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x57bc9459 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x57c18678 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x57c23231 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x57cbf387 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x57b88982 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x57cb9c95 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x57cc16b3 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x57cfbc2d blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x57cfee22 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d5471f pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase -EXPORT_SYMBOL_GPL vmlinux 0x57eba810 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x57df67ce wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x57e94da7 pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57faca51 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x5803e3b1 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0x581e8cff mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x57fa4e3a ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x5808ba4f devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x580ed761 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x5815a77b __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x581eada8 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x58232d78 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id -EXPORT_SYMBOL_GPL vmlinux 0x582876f3 tty_port_register_device_attr_serdev EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x584fd8a6 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x5856ad37 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x585a68b7 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x5867bae5 mptcp_subflow_init_cookie_req -EXPORT_SYMBOL_GPL vmlinux 0x586bd76b blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x583435c9 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x583aa9a3 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x585821e5 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x5867432b adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x586a5cd0 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x586b3ba9 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x586daf75 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x58712ef9 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587be8ed __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x5885ae3f platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x589b2e67 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0x58b28daf blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x58c1cad5 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x58d57fb9 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x589362ac pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x58a2fcaa __SCT__tp_func_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x58a5ca8d switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x58b39ff3 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x58b9282f dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x58c61f31 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x58cd4490 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e1c1fb phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x58ea6f02 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x58eb1b36 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x58efc3f4 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x58f4962e irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0x58fa45ed __tracepoint_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x5921802d dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x5924b399 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x592e7523 pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0x5948d311 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x58e5020b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x58eb7e43 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x58f80916 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x5906d9b3 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x5911b138 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x592339d1 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x592924b8 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x5932e363 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x5949bc4b alloc_memory_type EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x596eb950 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0x598405cd devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x595a9ddb register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5963c54d dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x5975aa86 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59a1748f crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x59b02936 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b7a784 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c4b01e crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x59c5bdb1 skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x59d3b4b5 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x59d60e54 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x59d11fbd fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x59d94371 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x59e58cc0 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x59e688b6 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str +EXPORT_SYMBOL_GPL vmlinux 0x59f13cc5 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x59faddfa vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x59fc6442 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x5a0d63c3 ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0x5a0e6487 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x5a058909 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x5a128008 xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x5a320ac6 pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x5a3fbdab task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x5a29ef06 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x5a2f3611 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x5a33c527 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x5a3d4937 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x5a48b521 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4f90a2 pci_ims_alloc_irq -EXPORT_SYMBOL_GPL vmlinux 0x5a55bdae __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a5e4105 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x5a647dcf crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x5a549889 driver_register EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a731882 ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x5a78f02f __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x5a709649 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x5a79b4a8 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a7c31d3 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x5a81fe79 gpiochip_free_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x5a8b5dae acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x5a831321 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5a943a6c __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a959c1d ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aaf90c5 __xdp_rxq_info_reg -EXPORT_SYMBOL_GPL vmlinux 0x5ab01be9 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x5aa7e106 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5aa95a0d __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab9dab4 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x5acecc02 led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x5adcf8e8 pci_p2pdma_enable_show -EXPORT_SYMBOL_GPL vmlinux 0x5ae2a9a9 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x5ae64bf7 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x5af26444 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x5b053619 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x5b053e7c tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5b171f49 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x5ac50b37 nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0x5ac98b0d ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x5acb63e9 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x5ad23929 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x5ad28181 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ad34e24 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x5ad66cb8 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5ad6a5f2 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x5ad79bf1 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ae87af8 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x5aea78a9 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x5b11b9fa ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x5b15377d blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b3051d1 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x5b530ac0 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x5b666c02 ata_ncq_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b6b158b skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0x5b71c118 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x5b762809 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x5b775373 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x5b84f166 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5b2db853 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x5b3ac8f6 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5b3bf119 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5b49311d xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5b63710a set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x5b6ef413 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x5b87d8a4 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x5b8de299 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5b916039 devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b9fb90a max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x5ba55b4d usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5ba8fa91 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bb31427 __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x5bc25dd2 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x5bbdc84a fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x5bc55a2c badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x5bc63adc irq_chip_mask_parent EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x5bcfc92f xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd996b0 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdfdec4 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x5be0d621 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x5bf02972 blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x5bf3ff96 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x5c068ba4 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x5bf1598c call_hid_bpf_rdesc_fixup +EXPORT_SYMBOL_GPL vmlinux 0x5bf5164f ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5c02f3d0 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str -EXPORT_SYMBOL_GPL vmlinux 0x5c07b10c usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0x5c082a82 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x5c0b5170 ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x5c195aee phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0x5c295905 acpi_fetch_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c167c4f regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x5c18b283 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5c1afc67 vmf_insert_pfn_pud +EXPORT_SYMBOL_GPL vmlinux 0x5c1c6b8e edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x5c1d947b adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x5c2c5ae9 __crypto_alloc_tfmgfp EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec -EXPORT_SYMBOL_GPL vmlinux 0x5c426092 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x5c4a3d88 devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0x5c4e6b31 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x5c59a8b4 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x5c334bc1 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x5c3408c4 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x5c377ad1 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x5c402341 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x5c48be39 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5dc759 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x5c6d364a sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x5c6f9dd6 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x5c73c172 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x5c75c68d edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x5c7eb668 usb_control_msg_recv -EXPORT_SYMBOL_GPL vmlinux 0x5c82e269 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x5ca73e1e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x5c5da2a3 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x5c648a51 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x5c67262f debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x5c6d39b1 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x5c77af9a cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x5c9e896d dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x5ca4c2ee sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cbab7a7 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5cd47e7f scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0x5ce0e01d spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x5cebd0ac led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x5cd2cfb8 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x5cdd6425 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x5cead98f __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x5ceb79dc inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf2c412 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x5cf6a31c power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x5cf95452 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x5d0113e0 x86_pred_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5d0eb570 __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d1b85a3 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x5d22a13f __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x5d27dd41 regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d5232d2 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x5d82b5a1 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x5d2e9204 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x5d377b2b snp_issue_guest_request +EXPORT_SYMBOL_GPL vmlinux 0x5d4febec dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x5d61354a crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x5d61e7fe init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x5d7705fb mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x5d7aac87 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x5d7e039e sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq -EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db250b1 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5da955ae ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x5dab53cb clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x5dad702d dev_coredumpv EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x5dc16c41 phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5dc1d2e8 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x5dde8f3e extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5df1280b tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x5e03f3c6 ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x5e0d7326 crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0x5e1354d7 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x5dbe82dc rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x5dc9bb48 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x5dd86fa2 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x5df496da xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x5dfb17e1 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x5dfe8390 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5e025e4b __tracepoint_console +EXPORT_SYMBOL_GPL vmlinux 0x5e0e44b5 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5e0fbc75 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x5e1528f7 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e1ca7c9 genphy_c45_pma_baset1_read_master_slave -EXPORT_SYMBOL_GPL vmlinux 0x5e506cff nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e1eb7ba dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x5e4431d0 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x5e4d2336 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5e504b7d device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5e3024 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x5e5fa993 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x5e600393 folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0x5e70cd4d dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x5e7876b4 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x5e628375 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x5e67524e __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5e74301c icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x5e7520ae proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x5e777dfc thermal_acpi_active_trip_temp EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7d249d tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x5e7a5134 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5e7bb517 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x5e7f1780 ohci_setup EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e9bff19 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5ea31e3a iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x5eadd717 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x5e8728ee attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x5e9576a3 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x5e967c81 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5ea7fe2b xen_find_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5ed8480d __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x5ed8780f dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x5ed89e9d filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x5ee22ed8 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x5eaf6db6 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5eb43d89 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x5ebe0b3c folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x5ecbd692 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5ecf355c compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5ee56989 phy_put -EXPORT_SYMBOL_GPL vmlinux 0x5eecb22f register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x5eefec95 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x5ef7147c usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x5f1d828b cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5ef175e6 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x5eff1a45 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5f0c6d2d serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f2e9e13 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x5f3b1a5c lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x5f4e1380 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x5f53edca device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0x5f5d39f7 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x5f5d4573 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x5f41fb21 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x5f44f672 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5f5ef8cb devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f73e6ba iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x5f78f302 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x5f794b70 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x5f8902ca hte_ts_get -EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x5f915353 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x5f994247 xfrm_register_translator -EXPORT_SYMBOL_GPL vmlinux 0x5fa242bf inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x5fa25b3a bio_poll -EXPORT_SYMBOL_GPL vmlinux 0x5fa61d48 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5f790628 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x5f7e68f5 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5f8604b6 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x5f922dc6 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5f9e6a01 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x5fa2f47f driver_create_file EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fae28c3 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x5fc274ba led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0x5fc9db90 ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x5fd0a112 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x5fab8169 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x5fb8d170 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x5fd26c47 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5fd274c5 extcon_get_property_capability EXPORT_SYMBOL_GPL vmlinux 0x5fdf7b32 smca_get_bank_type EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x5fe1d985 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x5fe71088 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x5fe8100d tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5ff7f38e fpu_update_guest_xfd +EXPORT_SYMBOL_GPL vmlinux 0x5ffbdb8c generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x6007793d fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60113f4d iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x601171df folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0x601871d3 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x60196b41 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x6027f74b __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x602dcabb dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x603044fb serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x601527a7 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x60245576 ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0x60300fa4 blkcg_punt_bio_submit EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x604ce5f8 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x6054b294 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x60605856 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x604f793d __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x6052a097 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x605420a2 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x605ea6a5 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x606779ef phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x606a9148 fscrypt_prepare_lookup_partial EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x606fbbac ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x607807eb ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x607f5541 crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0x608c7432 intel_cpu_collect_info +EXPORT_SYMBOL_GPL vmlinux 0x608cd72e bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x60963967 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x6097451c sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x609d62ab blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a44ac7 rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x60a7fbeb ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x60a72351 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60b4a99b usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0x60b6c82d mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x60c5fd5c virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0x60cb7a80 genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0x60cffca7 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x60d2e7d1 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x60d3ee4d xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x60e7f9c0 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x60b86c98 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x60c15edd icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x60c616d3 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60c7a051 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x60d26dba noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x60dc3a0b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x60eb6c0e relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x60f9ff8c xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0x6101c4a1 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x61110e36 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x60f4bcfa fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x61104e16 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x611f88a3 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x6127bbd4 __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612b01f4 devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x61390daa blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x613adfaa scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x61536f26 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x61648b8c nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x617730bf srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x617dfa80 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x617e4790 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x6134ebaf debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x613d1f8a usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x613f66c3 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6151a830 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x61547d2a synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x615e0215 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x61614ee5 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x61639b5c sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x616df050 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x616faffe msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x617a76de devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618a3af6 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x618b8c77 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x618cdc64 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x6195ca4e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6184de44 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x619375dd ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource -EXPORT_SYMBOL_GPL vmlinux 0x61a270e5 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x61a3de85 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x61a7b512 pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0x61a7cc7f pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x61ac19c7 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x61a27b50 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x61a8da43 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x61aff4d1 fat_attach EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x61b559a6 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x61b5abcf usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x61c79326 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x61eb5af0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x61d16517 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x61d23e0e gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x61d826c3 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x61eb1149 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x61f0d7c6 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x61f1644b mas_find_range EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x62028d43 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 -EXPORT_SYMBOL_GPL vmlinux 0x6210c533 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x62279166 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x61f9eefe shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x61fdf23f iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x6200112b led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x6202ba02 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x62046e5a lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x622108c1 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x622bf38e nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6230aaa8 fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0x6235b165 devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x623c36e8 da903x_reads EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x62479a4b cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x6246f5c6 iomap_finish_ioends EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x62595dd7 call_switchdev_blocking_notifiers EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x626da4d2 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x62789cea unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x627f9c86 gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x6289c1da regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x629a02b9 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x62ab226b spi_get_device_match_data -EXPORT_SYMBOL_GPL vmlinux 0x62acc90e badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x625ce2e5 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x62795ea9 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x6291987c __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6291ee17 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0x62a1d205 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x62a60de9 pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bc26f3 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x62bf79df pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0x62d38fdc regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x62db259e virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x62dd3bd8 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x62ea501c node_to_amd_nb -EXPORT_SYMBOL_GPL vmlinux 0x62f6408d dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x62f7bca4 sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0x62f86e0c int_active_memcg -EXPORT_SYMBOL_GPL vmlinux 0x62f8740b clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x62bda6e7 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x62bf1f93 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x62d93f12 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x62e67e85 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x62e84d95 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x62f6dc39 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x62ff8f8e regulator_list_voltage_pickable_linear_range EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x6307b6e5 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x630f9b3e xfrm_put_translator EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63177138 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x6330146f devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x631b36e3 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x632523ed devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63302946 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x6336e57a devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model -EXPORT_SYMBOL_GPL vmlinux 0x63422b94 clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x63745bad pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x63745e77 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x637bcadd ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0x637ca0a9 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x63650d72 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x636751b8 hv_set_non_nested_register +EXPORT_SYMBOL_GPL vmlinux 0x636c2eae irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x637e8a98 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x637f8ea9 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x639fa238 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x63b3f971 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x63b5d993 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x63bdea59 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x638c75fe uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x6390cc88 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x63a3a4ae skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x63aedfb0 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x63babe2c md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x63c07b59 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63d76ec8 vcap_enable_lookups -EXPORT_SYMBOL_GPL vmlinux 0x63daa879 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x63deb5d7 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x63ce305e wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x63d61ec8 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63eca9ae dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x63ed6190 tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x6403fa76 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x64177460 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x641a1d02 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x641cf424 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x642f26d7 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x64372ed0 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x64469982 vcap_get_rule -EXPORT_SYMBOL_GPL vmlinux 0x644dee32 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x64540eb8 of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0x647fc1d9 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x64887f9b ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x648c6331 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x63ecb0a6 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x63f9b397 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x640f2dd5 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x641da353 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x6425c1d2 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x642e2b2e xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x6445503d devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6447bb30 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x64511756 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x6456d570 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x6463b4df vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6482df95 dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x648f579f devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x649658ce device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x649d5a58 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64a5d6f2 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter -EXPORT_SYMBOL_GPL vmlinux 0x64a9c9e2 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x64b2d705 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x64b9605f spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0x64bdbe54 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x64d38ad8 icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0x64aaa8bd device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0x64b2dabb __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x64b4e99e pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x64bcbb53 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x64c3d46b fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x64c7ef7a devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x64cb79c2 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x64d5cc01 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64ea2349 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64fc0fe3 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6501b467 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x64f7eeeb clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650be973 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x651061e7 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x651873df tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x651d04b0 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x65134f9c __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x65180e8b unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x651872cd blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x651b3023 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x651df507 swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0x65273ef3 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x65212f17 blk_mq_free_request EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup -EXPORT_SYMBOL_GPL vmlinux 0x652dec1e debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x653d7e05 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x65414b0e clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x654f15a5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x6535e3d7 tpm_chip_stop EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x65537c50 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0x65572e7c usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0x65597d1c acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x655e7c89 __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x65652c07 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x656c1d8e mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x65530b9d iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x65540875 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x655e24cf pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x65614cbc cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x65622e84 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6562f174 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x6565514b __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x656b462c xen_xlate_unmap_gfn_range EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x659345b4 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x65a33b0f ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x65acede2 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65b29265 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x65b3e2e0 gnttab_unmap_refs EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65de440e __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x65e3bee6 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x65e93f18 devm_regulator_bulk_get_const -EXPORT_SYMBOL_GPL vmlinux 0x65efb8d6 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0x6609c6b8 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x660c4262 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x65db02b4 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x65e91997 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x65f6ed9e crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x65ff72d5 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0x6607a6e2 gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x66180997 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x661bcd5c pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6619d264 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x661c3009 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x66207190 __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663707b8 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x6639fbb7 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x663b82b4 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x66506171 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0x665503f2 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0x665d3fdb iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x663fdcce nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x66402ea8 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x664f74d4 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666018de led_put +EXPORT_SYMBOL_GPL vmlinux 0x666b501e dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x6672681e inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6688579a trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x668f4886 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x66969d76 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x66b5fd7f perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66bd97bd device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x66c49175 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x66cc5839 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66eb9bf3 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x66fe6417 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x670a719d dw_pcie_ep_raise_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices -EXPORT_SYMBOL_GPL vmlinux 0x670efda4 pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x6720b21d device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6723813a xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x6730e1cd list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x670bedf0 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x6712bdad pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x67222739 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6729d33c phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x67370427 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x673f0d6c gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x67575125 __traceiter_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x6762fa1a xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x676941e5 regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x676ae3d7 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x677d4ccd dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6765e669 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x6772fb6a regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x67751b07 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x677c69f1 make_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x679a45ef __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x679fe4e5 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x67a440cc device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x67ac8af7 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x67bac80f __traceiter_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x67bb276e rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0x67c14eec xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67d59d53 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x67d9cf8a clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dc8e2c max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x67dcc9f8 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x67e5d1f1 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x67ed2b03 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x6814b166 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x681cb299 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x681cd8fb spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0x681dbe56 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x67de489c devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x67dfd810 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x67fca922 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x680547c0 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x680cde1c usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6822f40b __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68330b70 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x68377973 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x683e1293 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x683e7cf0 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x68529f1d cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x686e40ba regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x687f95f4 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x688cc42b devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x68949543 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689a941a scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x689c597a of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68a04bdc pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x68b28ea3 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x68b4ee05 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x68ce5809 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x68d1d917 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x68d256bd tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x68df7359 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x68f4a861 ata_scsi_slave_config -EXPORT_SYMBOL_GPL vmlinux 0x68f667d3 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x68fe323e devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x68b3e869 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x68b907a4 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x68c31372 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x68cb3c3d regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x68def494 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6900686f vcap_find_actionfield +EXPORT_SYMBOL_GPL vmlinux 0x69030415 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x691f6868 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x6928651d pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x693741e2 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x69396b04 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x6943792b gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x69459cf1 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x694bd654 iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6950cf59 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x695f70cc synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x69138506 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x691940dc devm_led_get +EXPORT_SYMBOL_GPL vmlinux 0x6926a0c9 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0x69293136 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x692f5765 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x69395da9 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x693faeff iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x69432900 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x695776c5 seq_buf_do_printk EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696856b7 __SCK__tp_func_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x69786f16 memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x697f3cce pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x6988b10b pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x698e7935 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x699405cc gpiochip_line_is_irq -EXPORT_SYMBOL_GPL vmlinux 0x699e5ad4 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x69b4e9be skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x69c03194 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x69c13e63 rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x69c39ade gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x69cbcbcd list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x698d1a63 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x698f4a2b ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x698fd785 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0x69b79998 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x69ba6c0f edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x69c55bef iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr EXPORT_SYMBOL_GPL vmlinux 0x69d5b810 pwm_lpss_bsw_info +EXPORT_SYMBOL_GPL vmlinux 0x69dfc4b8 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x69e02862 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69f04b5b nvdimm_region_delete -EXPORT_SYMBOL_GPL vmlinux 0x69f329c8 d_same_name -EXPORT_SYMBOL_GPL vmlinux 0x69f36c7b create_signature +EXPORT_SYMBOL_GPL vmlinux 0x6a055e9e __pm_runtime_use_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0edbbd sdio_writeb_readb EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a1a3ead blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x6a3f3417 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0x6a41fcf5 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6a2aa553 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6a2b6ab1 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x6a3050f7 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a3428db devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue -EXPORT_SYMBOL_GPL vmlinux 0x6a42483a edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x6a42b69a tpm_send EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a589b99 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x6a588534 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x6a64a861 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6a6ed95d ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8b24e3 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x6a9752d7 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa73383 iptunnel_metadata_reply EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6aadb4b6 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6ac4e02b dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x6ad4cea3 acpi_dev_gpio_irq_wake_get_by -EXPORT_SYMBOL_GPL vmlinux 0x6ad96a9c intel_pinctrl_get_soc_data -EXPORT_SYMBOL_GPL vmlinux 0x6add99b2 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x6af811bc iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x6afcd375 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x6b0c2255 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x6ab3d870 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x6ac301d4 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x6ad21a8c devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x6ae4a6d8 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6aefb3b8 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x6afce9dc __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x6afeafac vfs_splice_read EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read -EXPORT_SYMBOL_GPL vmlinux 0x6b1923d6 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x6b20e4fd gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x6b0f4a14 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x6b11b9d5 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x6b2579ae sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2c7954 platform_msi_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6b38e3f2 xdp_return_buff EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down -EXPORT_SYMBOL_GPL vmlinux 0x6b42b69a edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x6b5317ba ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x6b5ab395 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x6b649c43 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x6b49976c __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x6b5448c3 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x6b5b1744 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x6b5c5ab0 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6b5fc972 extcon_get_extcon_dev EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b7d9379 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x6b8120d2 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6b869941 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x6b96c471 folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x6ba25237 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6b82c4a3 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x6b9f232e __skb_get_hash_symmetric EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba544c4 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6bad535e switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x6baee5d6 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6bb41c5d acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6bb49d5a dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bbe7e6f mctp_register_netdev EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init -EXPORT_SYMBOL_GPL vmlinux 0x6bceb606 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x6bd164e8 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd6389e __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x6bdcf422 usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be970d6 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x6bfb6314 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x6c035d69 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x6c0c781a vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0x6c0ecad3 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x6c021ad0 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x6c12cba5 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c24aba7 devm_add_action EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x6c3d3aaa skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x6c3dcfee inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c45cf3e dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4f35ab uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c50698a fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5d20ce devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x6c605a32 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c6a4e2c iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x6c759fda thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6c75c005 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x6c79932b rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x6c79d3c9 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work -EXPORT_SYMBOL_GPL vmlinux 0x6c8ae54b regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x6c921d48 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x6c9a5014 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x6c9b8247 crypto_stats_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x6c9e1e2f serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x6c8be3b6 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x6c8d2b1d tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cafb63b skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x6cb057d5 phy_validate -EXPORT_SYMBOL_GPL vmlinux 0x6cb156fd rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x6cbd0973 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6cbea8b4 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x6cc8de6e regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x6cd07d80 xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x6cd9e957 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0x6cd9f6f4 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x6ce8a524 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x6ceaefef pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x6d006065 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x6d019046 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x6ca94b4e pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6cba7a78 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x6cc913da fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x6ccf2480 scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0x6ccfd679 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x6cd0c1e5 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x6ce90882 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x6cf556d4 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x6cfab41a xen_hvm_evtchn_do_upcall EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d105ea4 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x6d27138f inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x6d29c79b ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x6d110ae1 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time +EXPORT_SYMBOL_GPL vmlinux 0x6d217aaf usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x6d28243e fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x6d2abeda tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x6d2d25c1 __ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d4db1d6 vcap_keyfieldset -EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x6d58f965 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x6d6e60eb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x6d34a5bd ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x6d4e13d8 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x6d4e74d7 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x6d58a658 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x6d664c7f usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6d68ce18 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7586e8 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7e5d28 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d7e7dca ipv6_proxy_select_ident EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d7f96c6 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6d8277b8 icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x6d94f0bf __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0x6d974689 tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x6db8a8e5 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x6d80971b led_get +EXPORT_SYMBOL_GPL vmlinux 0x6d9be281 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x6d9eb7af pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x6da9ca52 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x6db24bd1 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x6db9e7d6 irqd_cfg EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc88d30 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x6dc89c4c generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x6dcd5fb4 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6df0eb72 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0x6dfa2583 vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x6e115511 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e19ba1d class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x6e286290 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6dd6b0d9 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x6ddf62e3 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x6dfe57b8 split_page +EXPORT_SYMBOL_GPL vmlinux 0x6e065790 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6e18092f virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x6e228416 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6e32dbdb bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e353c85 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x6e3e3b1e ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x6e4d2307 crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x6e6ed4df fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x6e4455e2 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x6e4c1a00 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x6e55048c pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x6e656e5a do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x6e727afd __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x6e738578 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x6e74b8f0 shmem_read_folio_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6e76371d i2c_acpi_waive_d0_probe 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 0x6e914514 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x6ea6afdc usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x6eac696c __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ecc0f0c irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0x6ed34765 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x6edad165 wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0x6ef42744 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x6ec27539 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x6ec7f8eb phy_package_leave EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6efdca9b devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x6efef166 __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f2d3516 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x6f5e1428 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f1860b9 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x6f196c97 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6f1ff31f alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f2224ab devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x6f2bb41a __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x6f2ecc53 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x6f34bc42 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x6f34c3a0 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f3c8074 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6f3d8ecf regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x6f413b91 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6f4f4ad6 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x6f58d1c1 inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x6f5bd207 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x6f618e9f uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x6f6619f9 thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f6c63dd gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0x6f6fc1fa simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6f6d7b8c gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x6f7382c3 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x6f7b7abd pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f7edb9f xfrm_get_translator -EXPORT_SYMBOL_GPL vmlinux 0x6f837ae6 firmware_upload_register -EXPORT_SYMBOL_GPL vmlinux 0x6f850096 unregister_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x6f944b8a virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x6f9708a0 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0x6f98dd90 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f8bbf17 em_pd_get EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x6fa6096d ata_dev_set_feature -EXPORT_SYMBOL_GPL vmlinux 0x6fba1ae8 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x6fc38605 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x6fa6c7cf clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fa7fe22 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x6fb54f89 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x6fc1b41d crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x6fcb9b38 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fd3a6eb p2sb_bar +EXPORT_SYMBOL_GPL vmlinux 0x6fd28596 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x6fea74c4 virtio_require_restricted_mem_acc EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff6a154 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0x6ff94e59 regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev +EXPORT_SYMBOL_GPL vmlinux 0x6ffe1fe9 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x70027800 pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700fdcd9 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x7011aa06 usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x703596d8 vp_modern_set_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x7041bede devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x7044f2f1 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x704e4c2b dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x70137371 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x70152d4b buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x7020694d pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x7059ae3d usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x707648a3 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x707d9631 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x70915e9c inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x709490b7 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x709f93b3 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x70aba48c inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x70bb238a usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x707536e8 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x707a506b __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x7088aa56 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x70b962ed xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x70c23545 icc_provider_register EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated -EXPORT_SYMBOL_GPL vmlinux 0x70c5ef43 perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d196a1 ata_noop_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x70f7eea9 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x70df7a02 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x70e6f69e edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x70f315f4 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x70f992b1 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x70ffa89b serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0x710b7459 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x71009b99 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x7101be25 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x710a9d71 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7119a81c iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x711feb27 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x71207451 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x7122460c usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x7128f6c5 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x712a298d dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x713c7a8c fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x713efb0d devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x714abc29 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7152c82e __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x7156add9 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x7158a8e0 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716b9534 acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x71747ebc icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x71806fa6 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71850e04 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x7184fe83 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71894d9c to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x71941c0d of_led_get EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71a16f97 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x71b4bf93 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x71abd5a4 unregister_fprobe +EXPORT_SYMBOL_GPL vmlinux 0x71ad8ba1 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71b9648a pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x71ba03c4 vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c73ec9 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x71ef66c3 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x71f31067 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x721073be spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x7234b4a2 ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x7240d51e get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x72463669 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x7246aea7 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x724ed241 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x71cf21ef genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x71de09fe devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x71e37abf nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x7210cc5c devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x72160f74 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7217e572 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x721dea6c regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x72498d05 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x725284d7 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x7274d140 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x727003ef pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x7270f290 switchdev_handle_port_obj_add_foreign EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x727c31f8 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x729086d4 rtc_class_open -EXPORT_SYMBOL_GPL vmlinux 0x729d1f2d kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0x729f9f70 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x72a27960 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x728cf171 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x729b47ee __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x72abe9c9 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72bfc4ef edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x72ccbd95 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x72d1cf07 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x72b2d653 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x72d23e42 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d72011 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x72e613a2 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x72e8450b acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x72ee65e1 led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x72ee7633 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x72ef1cd9 kill_device -EXPORT_SYMBOL_GPL vmlinux 0x72f4765d i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7302e2da __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x7314a148 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72d9d87f devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73046d58 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x730a37ff pci_doe +EXPORT_SYMBOL_GPL vmlinux 0x730adaec rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x7312067f acpi_subsys_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL_GPL vmlinux 0x732706cb xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7326ebdb net_failover_destroy EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x733ad88d scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x733c82c8 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x73347409 class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0x73349eaa mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x7346b5aa kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x73479fec device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x73692edc alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x73807e83 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7356b0c1 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x7372b559 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x737b5243 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x737d5acc ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738c6b43 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x73904664 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x739c89d7 xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73aa1fe0 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x73b0d145 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x73b498bd fixed_phy_register_with_gpiod EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c8845b dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x73c8b397 xfrm_local_error EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73dc4fa4 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x73eb7164 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x73edaaab vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x73fb58ab i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x74018592 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0x74023089 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x740299c9 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x740ed589 device_set_node -EXPORT_SYMBOL_GPL vmlinux 0x7414aaeb proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x74155867 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x73d9f31d fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x73f675fe dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7410467f irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x741ad190 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7420e42b __rio_local_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x74326a54 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x743b7ae0 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x743db2e5 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x743f3916 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x74391583 dax_add_host EXPORT_SYMBOL_GPL vmlinux 0x7444e1a3 gnttab_batch_copy EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744de527 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x7446bd40 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x7451e8c8 crypto_sig_verify EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x74596c9c spi_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x745e4b9b posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x746b15a6 virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0x7497610d bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x745f813d regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7465bfb7 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x748a8e5b spi_split_transfers_maxwords +EXPORT_SYMBOL_GPL vmlinux 0x748b3b90 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x748d6b54 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x748d6ba4 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x749374cc __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0x74938f53 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x7494a222 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x749af7ac irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x74a88f0c wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x74ab8381 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x74b1c408 mmput +EXPORT_SYMBOL_GPL vmlinux 0x74b3f75c pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b6cedd badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x74b8cd4e regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74c5a8c4 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block +EXPORT_SYMBOL_GPL vmlinux 0x74c2bf24 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74ce14c7 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x74c96546 dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74dff6c4 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x74ddea92 devm_regulator_bulk_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x7509f205 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x74f0494e device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x74f2370f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x74f4e097 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x75092a2b pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751be28f spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7537c2dc crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x753b41cf __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x753bf8ba gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x75447e35 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x7547a249 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x7560d707 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x755f7add irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x756499f8 pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x757c8466 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75abaf39 usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x75b2796d usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x75c46351 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x75e0d887 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key +EXPORT_SYMBOL_GPL vmlinux 0x75aa3461 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x75cba165 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x75d2e629 tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0x75dfffa3 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x75e96aa1 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75ee3240 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x75f8a639 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x7604881e rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x76190acd sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x761ab0c6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75eabc9c dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x75fadcef acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x7604f729 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x761b5007 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x76313815 device_find_any_child -EXPORT_SYMBOL_GPL vmlinux 0x76373fb9 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x7647ba5f __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x76270365 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x7631a226 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x76334752 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x7636098a blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x7648dee0 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x7650e162 i2c_acpi_new_device_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7651843c blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x765c6817 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x765cbb63 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7660fad1 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x767c5b15 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x767ff504 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x766d8c49 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x767c1f59 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x767c6e61 dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76873367 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7681fbd9 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x76844887 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x7687227b dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x768e0957 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7697ddd6 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76a3808a device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x76a493ae power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x76abbde3 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x76ad83f1 __virtqueue_unbreak -EXPORT_SYMBOL_GPL vmlinux 0x76b05b6d __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x76b330c0 reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x76c6d4a5 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x76cc9657 iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76a66bca ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x76b87a3d usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x76c4674f fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x76c68f19 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x76c6e311 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76dc031e asm_exc_nmi_noist -EXPORT_SYMBOL_GPL vmlinux 0x76e21324 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x76e358b5 devm_intel_scu_ipc_dev_get EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76ead277 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x76ea8eec dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x76ec32b1 priv_to_devlink EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f1829e xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0x76fb28cd __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76f46742 devm_pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x76fca1db devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x771122ab fsverity_verify_blocks EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771b2e32 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x771ab291 ata_sas_port_init EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x77239b85 iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x772ae52d __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x773255bb xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0x774905de devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0x774a5ca3 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x772ec956 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x77389754 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x774f857f pci_user_write_config_byte EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776551dc perf_msr_probe -EXPORT_SYMBOL_GPL vmlinux 0x776815c5 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x776ae2e2 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x776cec6b xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x777a43c9 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x7789b05b genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x778b16d0 __SCK__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x778b4127 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x778b9249 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x775b7730 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x775f0eb2 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x77610ba2 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7770c4bb ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x777990e5 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x777e6836 xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x779afac4 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x77ac2341 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x77a8f56c crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77b2fd85 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x77c9ce39 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x77d324bd ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0x77d73330 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x77e4bc67 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x77c44577 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x77e129c1 regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77ed7b54 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x77ff03e2 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x77ff886a pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x77fa4b64 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x7800431a inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7802cece ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x78175771 sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x7817c5a7 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x7813250d power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x78199a20 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x7825a835 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x782a4312 led_trigger_remove EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x78556999 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x785a37c6 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x784aa5d3 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x7873c6fc edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x785b0b2a ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x78687bd0 crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0x786908eb xenbus_dev_cancel EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x787f36b3 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x788b18fa bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x78916fab __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x7897ac89 xfrm_put_translator -EXPORT_SYMBOL_GPL vmlinux 0x789a5331 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x789ade07 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a072c5 pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x78b0ae8b rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x78a5fbdb sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x78ad4747 __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78bbc458 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x78ca3def __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78e6eb39 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0x78e9a1b5 battery_hook_unregister -EXPORT_SYMBOL_GPL vmlinux 0x78f146ef extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0x78f93793 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x78e0c503 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x78e6e3ce xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x78eed5a3 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x7916343c __SCT__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x7920f133 hrtimer_sleeper_start_expires -EXPORT_SYMBOL_GPL vmlinux 0x7927fd0d get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x7935d862 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x792a99e2 folio_alloc_buffers +EXPORT_SYMBOL_GPL vmlinux 0x793ac193 __SCT__tp_func_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7944071e pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x794eebc4 extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x79578941 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x795fda8d blk_mq_rdma_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x7977d576 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x79672208 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7987945b ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss -EXPORT_SYMBOL_GPL vmlinux 0x79ab1859 gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x79b18dd9 xdp_rxq_info_unused -EXPORT_SYMBOL_GPL vmlinux 0x79b430e3 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x79b89154 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x79ab83ac lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x79ba448e clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79c1e81d pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x79cbcde5 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x79c2dfca gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x79c3caf9 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x79c667d1 device_unregister EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x79ddde45 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x79dccec9 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ea3d1f trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x79efd45e device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x79f00ec3 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a00fe54 raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x7a212359 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x7a2a33b9 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x7a344512 dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x7a35301c gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0x7a3860e1 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x79f9e1e8 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7a2062b5 fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a3f5730 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x7a479c84 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x7a53fd37 sk_psock_init -EXPORT_SYMBOL_GPL vmlinux 0x7a5df6ec scsi_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0x7a63cd12 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x7a572f68 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7a580e05 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a6aae7d rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x7a6c38b0 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x7a6f8a3e devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0x7a70175b phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a77edc7 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7a7674d9 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7a7e2fbf rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a84f66a trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x7a834880 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x7a90e312 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7a93a0c4 acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa5cf6b vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x7ac5990c usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x7aa198d9 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x7aaaa176 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x7ac1254b local_clock +EXPORT_SYMBOL_GPL vmlinux 0x7ac5450b __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag -EXPORT_SYMBOL_GPL vmlinux 0x7ad0f2b3 platform_bus EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings -EXPORT_SYMBOL_GPL vmlinux 0x7ae111b4 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x7aeef7b7 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x7ada8b02 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b12ef1a find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x7b21c38a tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x7b504ccd rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b19d4c4 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x7b35ce82 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7b367ffc tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7b378da1 sdev_evt_send_simple EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5b1794 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x7b67ad4b ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x7b6ef72f scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b78bc15 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x7b7c23de of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7b74edfa hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval -EXPORT_SYMBOL_GPL vmlinux 0x7b8ec35b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x7b90c74e vcap_get_rule_count_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7b952834 devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x7b95fb27 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7ba0be85 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7ba521f2 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7ba83cd1 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7bac5fe4 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb1965f ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x7bc62dfd fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x7bca4914 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x7be132f1 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x7bf93b2c mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0x7c02faff usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x7c045424 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x7c0f995f ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x7c1e3198 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x7c1ea267 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0x7bb5addc ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x7bbda362 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7bc42ab3 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x7bd9051c pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7bde0636 events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x7bf1b1dd fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x7bf75459 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x7bfae0ed platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x7c186a0a kernel_kobj EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt -EXPORT_SYMBOL_GPL vmlinux 0x7c233d54 __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2fc4d9 blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x7c354cd3 tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0x7c37886b led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x7c327495 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x7c398094 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x7c3a5728 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c4f4a4e fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c704c22 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x7c4f700a vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x7c57a830 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x7c58f48c perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x7c610bcd mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x7c653008 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x7c65e06f skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7c806564 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x7c93f4ce usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cafc26a blk_crypto_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb5c653 devm_clk_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc6d9ce xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x7cc45241 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7cc84d98 from_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd33ce4 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7ce444db dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x7cdcb327 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7cdef5dd serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ceebcd3 blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x7cf2136a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7cfb7f52 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0178f4 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x7d0d13e4 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d108c2f security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d20e2fb fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x7d35cca6 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d1e92c4 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x7d2263d2 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x7d24d8c1 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x7d48a446 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d57a424 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d61364c wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x7d712a86 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x7d72f2c8 devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7d7ffc57 component_add -EXPORT_SYMBOL_GPL vmlinux 0x7d88e79c __traceiter_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x7d8af28d gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x7d91411b sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d9bd857 acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0x7dd747a5 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x7dd780e8 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x7d76cb09 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x7d936df3 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x7dafddc8 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x7db19743 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x7dd43d94 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x7dd4414b of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddddbb0 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7de1897f devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x7de2878e irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array -EXPORT_SYMBOL_GPL vmlinux 0x7de539e8 dax_recovery_write EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x7de775e6 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7dee7dc2 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7e10dc9d elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e1f5613 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e2d3b5a driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x7e374988 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x7df9baa7 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x7dfd9de9 __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x7e19a31e pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7e1da733 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e3b4745 rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0x7e3fe5de tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x7e484fde usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x7e49aa60 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7e5a7760 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x7e4a7c16 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7e582eab genphy_c45_baset1_read_status EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type -EXPORT_SYMBOL_GPL vmlinux 0x7e601dc2 dma_free_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6e1bba blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0x7e6e2c1e kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x7e6504e4 bus_get_dev_root +EXPORT_SYMBOL_GPL vmlinux 0x7e72a001 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7e7792ef netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e9b9982 msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eabe017 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x7eb74e42 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec28a8a spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ec09110 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x7ede61f8 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x7f1fc49e dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0x7f27b852 bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x7f650f76 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x7f68a519 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7ef3d971 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x7f074cd7 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7f174dbd __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x7f3d5828 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7f4441f5 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x7f52dc5a find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x7f6c6760 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f93e047 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x7f96822d net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7f875269 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x7f8839d6 i2c_acpi_get_i2c_resource EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7fa8793e fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fac9f3c apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x7fd27cb9 mdiobus_modify -EXPORT_SYMBOL_GPL vmlinux 0x7fecb3db devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x7fee2358 blk_stat_disable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x7ff2ef0a pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x800bead5 reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x800ee2ce cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x802b0a6c pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x803a5354 pci_dev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x803e2fdb disk_set_zoned -EXPORT_SYMBOL_GPL vmlinux 0x8046099e gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x7fb7d443 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x7fc67b4b fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x800553e1 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x800714d1 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x800e8e88 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x801257d5 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x8014a510 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x8021d936 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x80230c91 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x80452de8 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x8045eee1 __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x8046712e divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x805df56c acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x8064ee51 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8068ceed vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x807612b5 rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807aa385 srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x80899702 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x80879ac5 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808ec135 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x8092f8e8 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x80959be3 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x8095fc8b genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x809bcba3 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x809e7ea2 usb_set_wireless_status EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80a0d158 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x80a558f4 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x80ac623a fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x80ae64e9 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x80af6a0d splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x80b0e378 __inet_lookup_established EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c6b03e serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80dc5e60 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x80de83d3 netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x8102cc0b regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x80eed519 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x81051037 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x81117259 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num -EXPORT_SYMBOL_GPL vmlinux 0x81261c49 gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x814fa485 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x8150ed3d __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x812d3bb5 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x813b771b wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x81423a2f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x8148823d dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815c9bfb sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8163096d page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x8167df6f dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x816928ae mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817e2f1e regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x81890be9 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x818c5eaa devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x818c9289 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x8193d39c __tracepoint_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81a54c2b dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x81ab3f66 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x81ab772c i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x81cd8c25 icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free -EXPORT_SYMBOL_GPL vmlinux 0x81de4650 register_ftrace_direct_multi -EXPORT_SYMBOL_GPL vmlinux 0x81df2e21 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x81b0421d ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x81b36a65 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x81c4fe01 isa_register_driver EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81f82f4e regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x81fc66b3 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x8200584f vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x82018978 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x82022c39 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x82047fbf handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x821bfc37 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x821a3e78 xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x82329298 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x8236faea __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x8226fac8 crypto_ahash_final EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x823f595d ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x8241ea39 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x826d2b3a tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x8276336a iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x824bf56b driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x82666aab pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x8271c6c1 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x827bfe34 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x827e9cea balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x8290b176 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x82b76432 __SCK__tp_func_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x82c4d7ef regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x82965d66 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x829c11cb regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x829f9253 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x82bd18b6 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x82bd7c78 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82f7be43 crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x8307da47 __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x8318bde7 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x83235c0c da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x8323ef50 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8337e92e sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x8336007c serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x835519d4 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8367f64c bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x8375314e debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x837ceb1a dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0x83a53747 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x83b85734 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0x83b90a68 balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0x83cc8068 __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x83ccd14e hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x83d2a0aa devl_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0x83d447b9 dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x83e1030b __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x83e1e513 l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x83ec97cd xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x83f4b4f0 blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x8405ad1d dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x837776fa nvmem_layout_unregister +EXPORT_SYMBOL_GPL vmlinux 0x837a1205 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x8382dbb8 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8385c52c klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x83878af4 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x83912daa __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x83afb903 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x83b4b5f7 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x83b669d2 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x83d41234 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x83d58c48 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x83e319de devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x83e4a451 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x83e6d873 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x84006f32 devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x841d1f87 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x841e2279 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x84151ab9 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x8415d439 zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x841ffe1b usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x84315bb5 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x843753f3 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x8437ca37 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8448b21c __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x844c6247 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x8442d1b3 rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845b3ade pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x84763d44 msi_domain_first_desc -EXPORT_SYMBOL_GPL vmlinux 0x848735d9 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x8487d77f phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x8490d01d mctp_register_netdev -EXPORT_SYMBOL_GPL vmlinux 0x84adbcc3 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x84666e80 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x847e9c46 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x8482e5aa irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x848828ed virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x849a3ada trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84b44d93 clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x84b912b5 gnttab_dma_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x84b93899 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x84dd9ede devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x84b9fd24 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x84d1ee23 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x84f98b55 destroy_memory_type +EXPORT_SYMBOL_GPL vmlinux 0x84fe77ed irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x85068990 relay_open EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x85111806 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x85230aec led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0x852ce7e1 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x853538e8 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x85382fef dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x853cb83e ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x8551ba7b fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x85329672 fpu_swap_kvm_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x8535249a ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x8537d14c devres_release EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x85563733 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x855fa0ed fpu_update_guest_xfd -EXPORT_SYMBOL_GPL vmlinux 0x8566c85f usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x856ffa63 serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x856e95ca cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x85827441 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x85876194 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x858790b0 __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder -EXPORT_SYMBOL_GPL vmlinux 0x858f57b4 lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x85a468c5 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x85a70b7c bio_add_zone_append_page -EXPORT_SYMBOL_GPL vmlinux 0x85acd7bd rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x8591d9db rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x85952f10 devl_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x859708b2 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x859a197f mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x85a5b0ea inet_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x85a898d4 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85bd7442 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices -EXPORT_SYMBOL_GPL vmlinux 0x85d33bbb tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq -EXPORT_SYMBOL_GPL vmlinux 0x85da97b5 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x85d949c0 dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x8601250f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x85efabfb usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x85f4e487 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x85ff36cd sock_prot_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal -EXPORT_SYMBOL_GPL vmlinux 0x861b055c powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x8627c5b1 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8622e6a3 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x8636b7e8 xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x863e81f2 __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x863f1fd2 input_class -EXPORT_SYMBOL_GPL vmlinux 0x86431e30 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x864dbf69 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x8654fd6d fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x863acf52 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x8650d167 net_selftest EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8668c9f9 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x86697eae skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868e2f18 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8695d49e __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x86ab473f uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x86ab6bb7 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x868aa537 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x868ff580 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x86975164 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x86a913fa irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86c34561 __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86ca756d __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x86db5b51 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x86e80f7a ata_eh_read_sense_success_ncq_log EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x86f6cfa9 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x871037ee pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x871c1587 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x87149de2 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8716bedc __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x871bd6d7 auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x87308b65 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x8735d876 dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x873f0312 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x8748cb77 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87360237 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x873ad796 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8760d6e7 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x876a9e61 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x878f2efe fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x8797529b mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0x8798306c pci_free_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x8798b63f init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x87a78655 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0x87c17df7 mbox_chan_received_data -EXPORT_SYMBOL_GPL vmlinux 0x87d223f1 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x87c0416d device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x87d2e182 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature -EXPORT_SYMBOL_GPL vmlinux 0x87ea6b4f sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0x87f011e4 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x87e9a084 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x88066bec pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x8813461c md_allow_write -EXPORT_SYMBOL_GPL vmlinux 0x881766c5 __SCK__tp_func_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x881a9620 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x881f0a65 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x88204a52 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x883768d7 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0x88419a35 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0x8846a21d rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x87f59f1b device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x87fcdc69 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x87fd97f0 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x8816d138 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x881f56ad finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x88391fa9 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x883e307e phy_power_off EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8864f253 regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x8878f885 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x8882398c __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8891ee17 ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x889d84ce pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x88aa6e8e regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88720b0c xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x88833cf4 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x8883919b devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x88947272 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x889547c9 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x88a00054 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x88a2a855 usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88aefca4 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88b7e01e bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x88b4f5d7 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x88b5862d unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x88c943b4 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x88cc4ced security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x88d0b67f fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x88d3d93e gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x88eb7783 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x88fc1cc0 fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x88fcd3ed do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x88d8ad1d clk_hw_determine_rate_no_reparent +EXPORT_SYMBOL_GPL vmlinux 0x88daffc8 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x88ea8561 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x88eb50d9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x88ec8d08 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x890689eb perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x890d4cf9 virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x89135d3f __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8920fbbd netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8929afe1 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x8928cd67 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x892e3fd7 scsi_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x893eea01 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x89453c83 make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89522dd4 crypto_stats_decompress -EXPORT_SYMBOL_GPL vmlinux 0x89773ddc intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x8949bc6f debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8954913e usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8954ed7d platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x895dbd45 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x89649e11 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x896b1751 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x896c87a4 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x896cdad2 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x899ddb8e gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x89b448cb pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x89af06f4 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x89b37850 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x89b821b2 blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89d34e63 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x89bf246d fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x89d857d9 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x89dbcebf modify_ftrace_direct_nolock EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e442b8 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x89eb5f5d raw_v6_match -EXPORT_SYMBOL_GPL vmlinux 0x8a0aa214 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x8a12ccde tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x8a19047a spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x8a1b1dc5 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x8a28cda6 ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x8a39a9ee blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x89f54136 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x89ff6621 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x8a01b445 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x8a0d5198 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8a3968c7 dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a4234ff component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x8a433b52 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a461116 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP -EXPORT_SYMBOL_GPL vmlinux 0x8a5f6602 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x8a5c1029 __SCT__tp_func_xhci_dbg_init EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a798b73 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x8a7bcd38 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a7fed66 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8a835f19 skb_to_sgvec_nomark EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a84777d device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x8a89c245 dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot -EXPORT_SYMBOL_GPL vmlinux 0x8a9a3b60 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x8a9a7f8e regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0x8aa7da64 __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x8aab94a2 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x8a8e80d7 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x8aa91c9d fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x8aae1f60 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8ab015bd debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8ab3381f device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8ab5350f devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abb50c4 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8ac2f7eb blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x8ace60f6 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x8ad5a0c0 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x8ac39638 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ac6ea05 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list -EXPORT_SYMBOL_GPL vmlinux 0x8ad62a53 regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x8af063fb relay_flush -EXPORT_SYMBOL_GPL vmlinux 0x8af968c8 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x8b0ae20c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8adec087 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x8afacba3 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x8b0cb0ea tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x8b143456 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b15e6e9 regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8b296ff5 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x8b323c88 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0x8b35ece1 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x8b412554 crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc +EXPORT_SYMBOL_GPL vmlinux 0x8b430ed6 pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x8b4a1768 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x8b5340fc ftrace_free_filter -EXPORT_SYMBOL_GPL vmlinux 0x8b592c38 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x8b5ef5ad usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0x8b7251c8 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x8b68e8c5 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x8b69a71f devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8b7fb506 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x8b857095 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8b878b3e hte_push_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x8b909a55 nfs42_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8b9a1228 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x8b9ba8fc mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0x8b9e489a devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x8bccde3a dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x8bd4e7a4 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x8be0fc7d register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x8bbc2fe3 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x8bbe4b92 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8bd57224 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8bed44a2 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x8bee12a2 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x8bf64de9 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x8c03c9d3 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0666bb vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x8c0b7427 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c138094 devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x8c191cb0 sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x8c193c31 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x8c2140eb devm_gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x8c2ec113 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x8c275721 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8c2aaf40 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs -EXPORT_SYMBOL_GPL vmlinux 0x8c364e2d pci_doe_submit_task -EXPORT_SYMBOL_GPL vmlinux 0x8c3a960f scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0x8c3ea070 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x8c4232b6 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x8c3756bd sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x8c38d768 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x8c45c332 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c4a3c1e watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c720e5b crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c76f1b7 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x8c80bca3 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8c7d86dc user_update +EXPORT_SYMBOL_GPL vmlinux 0x8c80057e dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x8c837e4e devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c8dbcf5 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8c98ac7c rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x8c8d2374 dma_fence_unwrap_first EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb -EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x8c9b6dd6 __fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x8c9e363a sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext -EXPORT_SYMBOL_GPL vmlinux 0x8cacd7a1 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x8cb51b5b tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0x8cd29fa2 rio_mport_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8ce3041a __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x8ce98709 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x8d029d92 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x8d185a60 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x8ca69604 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x8cbd1731 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x8cbd262e tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8cd90c83 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8cdaa689 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x8ce0ee03 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x8ce4a5f2 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x8cf13d2d put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x8cf2c309 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x8cf83bf1 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x8d0bd3f3 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x8d0ef533 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8d1c8134 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x8d1f14b5 udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2f6d31 input_class EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d62a300 fscrypt_limit_io_blocks -EXPORT_SYMBOL_GPL vmlinux 0x8d721c4c devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x8d63b291 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d6afee1 devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d839389 xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x8d8431f9 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0x8d8d1e35 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d815167 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x8d8fd930 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8dac2f98 component_compare_dev -EXPORT_SYMBOL_GPL vmlinux 0x8dadcbbe vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x8db1c7ee gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x8dd17c28 devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8de302eb crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8e01bc72 ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x8e1500d7 crypto_stats_get -EXPORT_SYMBOL_GPL vmlinux 0x8e2619b2 __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0x8e326092 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x8e39754c tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x8dd4a113 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x8dd87e4b __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x8df1ff91 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x8df87cb9 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x8df9bc61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x8e15152b mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x8e1f4638 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x8e22d1bd tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x8e3ade50 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e54afbf vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x8e6779dd pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count -EXPORT_SYMBOL_GPL vmlinux 0x8e6cc6a4 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x8e6ef5c2 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e7276e5 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x8e73eb04 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8e7bf1a6 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x8e8ffe97 xenbus_free_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x8e90b295 max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x8e96d193 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x8e9656a3 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page +EXPORT_SYMBOL_GPL vmlinux 0x8e9ffaa2 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8ec55986 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x8ed1b786 nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x8ed52099 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x8ed76fb0 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x8eea1109 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8ecac1c6 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x8ecbff1e xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x8ed52d56 vcap_tc_flower_handler_arp_usage +EXPORT_SYMBOL_GPL vmlinux 0x8edfe051 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x8ee586e9 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x8eec8461 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8eecaf37 tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef278d4 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x8efe2ab4 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x8f045a7d sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x8f0005ca rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start +EXPORT_SYMBOL_GPL vmlinux 0x8f05048b of_pwm_single_xlate EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches -EXPORT_SYMBOL_GPL vmlinux 0x8f1823d4 __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x8f2da423 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f15c4a1 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8f164dfc dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x8f1d0612 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x8f1ec1c1 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f2495c2 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints -EXPORT_SYMBOL_GPL vmlinux 0x8f334374 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x8f36a264 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x8f395869 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x8f3e0c75 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0x8f4bf0bb dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x8f322c11 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x8f38b12d vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x8f39d817 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x8f420c10 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x8f4447c7 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x8f4bae56 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x8f51775b debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x8f561f3b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f58a39a acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f5dbcf6 pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0x8f622bd4 icc_provider_init EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f776bd4 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7a292c usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f8eab2d pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x8f910fde bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x8f927140 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x8f92853a __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x8f9a0727 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x8fa79353 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fb24dd6 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fb0493e skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8fb319dd virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fcef02d devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x8fcf9b68 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x8fd357e8 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8fddae2e __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x8fe0af11 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8febcefb mnt_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8fca0669 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x8fd7bf22 skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x8ff847c3 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x8ffd8c28 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x90186090 bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x9019674a virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8fff75a4 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x900291c4 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9023ff61 genphy_c45_aneg_done EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear -EXPORT_SYMBOL_GPL vmlinux 0x9029afb4 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x902aaedd scsi_dh_activate EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x9042bda1 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x905205fe fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x90532212 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x906fe163 pci_epc_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x907a6aaa subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9049d380 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x905e6cfa tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x9061f8b6 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x906e313f devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms -EXPORT_SYMBOL_GPL vmlinux 0x9098677e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9088d026 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x90899361 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x909a8ce0 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x909cbb83 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x90a45161 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x90a6b019 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90c5c7b8 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x90bf0954 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x90c48b64 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x90c63782 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d1707b PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x90d8c180 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify -EXPORT_SYMBOL_GPL vmlinux 0x90ebfedb serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x90e30dd5 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x90fd4efa perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91077b61 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x910c1fde blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x911a2f13 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x912ee69c mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x910c07fe wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x911c9f18 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x9124f0a1 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x912ae653 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x913814b8 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x9142ed52 platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x9151c355 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x9159dade mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x915a32ae regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x913f4546 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x914573ad ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x914aaa3b gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9178868e debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x917bc1cc ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x9189df5d fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91a2aacf scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x91a36e0c synth_event_trace_start -EXPORT_SYMBOL_GPL vmlinux 0x91ab8b48 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x91aca439 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x91983c25 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x919926dc cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any +EXPORT_SYMBOL_GPL vmlinux 0x91c59e7e xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c85596 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91ca5d30 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x91d4bc1b page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x91d859a1 xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91f4f79b vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0x920b6c36 pci_p2pmem_free_sgl -EXPORT_SYMBOL_GPL vmlinux 0x920b9d5d dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x91f40047 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x91f99de9 cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x920efe9c debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x921ca274 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x922b367c nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x9236eb89 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x92384854 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x923cc4f6 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x92225560 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9241f8b2 ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x924cbfe9 sk_msg_alloc -EXPORT_SYMBOL_GPL vmlinux 0x924f948d pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0x9254ff7d udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x92640583 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x9289e53b ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x925579e0 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x92570a64 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x92717586 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x92727674 vcap_tc_flower_handler_cvlan_usage EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92b659e2 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x92ac22b9 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92b91ffb bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x92badb9d xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x92cc3b56 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x92c0ca38 extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0x92cf74aa vcap_admin_rule_count EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92db5d15 sbitmap_show EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92dfc30a vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92fec977 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x9304ff58 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x930cdc52 platform_get_mem_or_io -EXPORT_SYMBOL_GPL vmlinux 0x9316e318 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x92ef6b99 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x9301fd2e inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x93074591 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x93199177 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x932a7299 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x932df843 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x933a73dd vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x93366e5f securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x933cf298 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9345a2d8 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x934c4f40 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x93450e42 cpuidle_get_driver EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x93620545 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0x9364c216 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x9377470c vcap_addr_keysets -EXPORT_SYMBOL_GPL vmlinux 0x93896844 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x938c6a91 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x93925645 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x9394fa8b pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x935f3c5c balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x935f4610 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p +EXPORT_SYMBOL_GPL vmlinux 0x936234eb usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x9372c6bb led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x93903141 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x93a7c65d da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d3dc50 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x93d7e50a unix_inq_len EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x93e6405e skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x93e32a06 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x93eb9c83 ethnl_cable_test_free EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x9403be24 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x940a7a7b __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x9410f59d __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x940914fa usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x9413cf1a serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x9415b289 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x9418ea78 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9429b382 serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x942cbbb0 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x942897ad perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x942ae12c set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x943229e1 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x944f018d bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x945060ee hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x9453d4c8 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x945ae378 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x946ecf95 acpi_quirk_skip_serdev_enumeration -EXPORT_SYMBOL_GPL vmlinux 0x947784c0 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x9471b718 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x9473ff75 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x94754188 acpi_device_fix_up_power_extended EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible -EXPORT_SYMBOL_GPL vmlinux 0x94888f4b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x947c6849 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x947e7a74 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x9489835b mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x948e0e2b dma_get_required_mask EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create -EXPORT_SYMBOL_GPL vmlinux 0x949e2101 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94b54a3b spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x94bfc3a1 nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0x94d2c56f thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x94e5e89d pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x94e69123 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x94ecf9a4 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x949fe2c8 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x94b416e8 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94bb6284 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x94beb775 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x94cc6e19 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x94e0ae50 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f39268 iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0x94f85df7 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x94f04a06 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x94f1d610 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x94f60596 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x94f8358a __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950ae429 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x950c56e3 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0x9510f6c5 power_supply_charge_behaviour_show -EXPORT_SYMBOL_GPL vmlinux 0x951686e1 __devm_clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x9517a7bb pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x9505ef5b fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x9508d9e2 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x95099f0a dm_suspended EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951b342e __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x95226cda usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x9525f106 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x953bfdd6 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x951a835f rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x95277d4e __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x952fdae6 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9548c52f bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x954d8862 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x95540c1c __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x954dbdb4 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955b3fca sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0x95636de9 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0x95669cfe wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x9565620b pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x9569b0ff pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x957202b7 usb_get_urb -EXPORT_SYMBOL_GPL vmlinux 0x95766028 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple +EXPORT_SYMBOL_GPL vmlinux 0x9572a84b acpi_dev_get_memory_resources +EXPORT_SYMBOL_GPL vmlinux 0x95742632 pm_generic_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x959389ac devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x95927bc4 md_account_bio EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x9594ae5e rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x95a1ce7e irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x95b07423 nfct_btf_struct_access -EXPORT_SYMBOL_GPL vmlinux 0x95b50e98 io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0x95b5aef0 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x9599a6e2 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x95a95797 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x95ba7670 nf_ip6_check_hbh_len EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95ca6b4a irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x95e8e809 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x95ed239e tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x95c4deb0 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x95c5d34d hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x95dd11e3 pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x9604aa5e __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x95fdb34e rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x960c6777 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x961073ce led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x9621433d dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x9615fdd4 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x961ef98d cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962329e9 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x962c19b7 pwm_put EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9652ab2c rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x96532fd9 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x96318d3e clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x96341900 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x963deb04 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x963fa671 __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x964931d8 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x964f1948 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x964fb792 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x966878ef devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x96699020 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x9692fddb acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0x9698b782 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9678594b acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0x967edd10 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x96923c89 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x969abcec fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x96a66a15 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x96ac0ba5 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x96c738e4 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x96d04729 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x96d1492e uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x96d93b11 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x96ae842c debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x96c3989b devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x96db0e05 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971a0f5f __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x971c6576 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x971d0f36 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x972317e9 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x9724c993 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x972b5f81 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x972c8d76 cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x9731fafa dw_pcie_ep_raise_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x974380e0 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x97478b8c sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x9748f6b7 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x974b53d9 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x9720c3bf devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9721780d device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x97345221 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x973fb2b9 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x974948ae mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x974bff4e ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9761cc31 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9769d810 usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x976a7e81 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x977bb449 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9784716e crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x97869f21 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x978873c8 devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x979b1679 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x97a63b90 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x97a853e6 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x97bf2527 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x977e0eaf bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x9782132d bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x978a54d8 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x9791d156 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x97aab287 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x97c7cfc3 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x97d58d99 tty_find_polling_driver EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97f0fdb0 ata_port_freeze -EXPORT_SYMBOL_GPL vmlinux 0x97fc4134 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x98119b3c dm_put -EXPORT_SYMBOL_GPL vmlinux 0x981d1a8a usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0x982e84ad fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x97e43734 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97ed3ae6 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x98096b5b scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x980a80da phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x98158d24 devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x9835498a perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec -EXPORT_SYMBOL_GPL vmlinux 0x983c8ca0 usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x9840fa1b rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x984836ab spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x984c264b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x98441d30 tcp_done EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x985f7e65 pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x985ffb5f clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x98720490 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x986a3e82 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x98738196 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987bfb0e __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x9886e82a validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size -EXPORT_SYMBOL_GPL vmlinux 0x988d6ed5 crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98959b6a noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x98a63be6 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x98adcc49 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x98b9a3e9 mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x98bf8c50 dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x98d17467 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x9893ee51 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x98a7a495 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x98ac1549 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x98b13f0e devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x98b21fec platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x98b37816 reset_control_get_count EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98ef979c __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping -EXPORT_SYMBOL_GPL vmlinux 0x98fecad1 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x99069e7b usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0x99168dbe fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0x991e701c devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x991ead15 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x992a68be acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x99026e08 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9924a031 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x992892cc lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9929834f fuse_mount_remove EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x993a0d17 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x993f5e6d power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x99414b56 kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x994337cc ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x995b1c6b device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x9947fd5e regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9953acdb pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x99570ccd sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995e5e8c fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x995e8f31 devl_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996ba54b bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x99712aea access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0x9987024f usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x99753c56 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x999b3fcb relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x999f483b xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x9992da97 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99a2b724 led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x99a4d33b gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x99b160f7 rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x99bf569d iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0x99bf952f acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x99c855dc device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x99cee2f6 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x99e42072 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x99e8f6a0 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x99ef6fb9 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x99be1acd sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x99c7018c gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x99e5f783 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x99ede9cc of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f05de3 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x99f11981 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f78320 vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0x99f97e10 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x9a035c72 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x9a054eb6 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x99f4734a acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9a0643d9 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1ea309 iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x9a1eede1 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x9a1ed1df fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining EXPORT_SYMBOL_GPL vmlinux 0x9a2851ef __SCT__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x9a328185 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x9a353caf __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9a440c43 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x9a4894fe devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x9a4f66db da903x_write EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a681254 regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x9a77773e adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9a84a802 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9a88c363 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x9a9cf4da da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x9aa3be45 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9a6be5a4 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9a7641ac __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9a8aa39b __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x9a8d9f81 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x9ac09a06 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x9aaf8739 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x9ab32a09 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x9ab7f8d5 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x9abae6b8 ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac99303 vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x9acc4488 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find -EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x9ad1495a dma_get_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x9ad55b99 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x9ada7dc5 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x9addfa21 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x9ae96f25 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x9adb60fa device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x9add9ec6 pci_set_host_bridge_release EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9aeb7cf0 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x9aeba527 device_move +EXPORT_SYMBOL_GPL vmlinux 0x9aec65f1 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9aed652c fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x9af29e00 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9b042ee2 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9b1657d7 netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9b2a89ce kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x9b3b1537 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0x9b3bb859 regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x9b472da0 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x9b049923 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x9b107a00 thermal_acpi_critical_trip_temp +EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9b234891 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x9b3841f2 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x9b489bc6 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x9b4a96dd kill_device EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b57f622 __io_uring_cmd_do_in_task EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring -EXPORT_SYMBOL_GPL vmlinux 0x9b65ca3a pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b66d4e3 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x9b695805 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b768201 modify_ftrace_direct_multi -EXPORT_SYMBOL_GPL vmlinux 0x9b8811bb sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x9b87e36e devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9b89bbf9 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9aebed usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0x9b9d6ba5 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg -EXPORT_SYMBOL_GPL vmlinux 0x9bbee2a9 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x9bc847c2 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x9bd43697 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9bcdf86f crypto_alg_extsize EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc -EXPORT_SYMBOL_GPL vmlinux 0x9be13af7 inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be94265 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf45023 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0x9bf7f350 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x9bf9099e fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0x9c109269 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x9c20e5c4 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x9c2a0811 blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x9c3142ce sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x9c4f9072 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x9c55ea7e sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x9c5feb96 cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x9c6d81ec platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x9bf36e60 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9bf3da7b phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x9bf7ea7f virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9bfd25c9 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x9bfe0264 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x9c0446ea xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9c07ada9 __fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x9c251102 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9c2a09d8 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x9c3a614b i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x9c3c01ae gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x9c431459 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x9c445ed6 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x9c55dfd1 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c7d7d29 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c83ca20 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9c879cf7 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x9c93e9ae clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid +EXPORT_SYMBOL_GPL vmlinux 0x9c9ecced syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x9c9ecd5d thermal_acpi_hot_trip_temp EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location -EXPORT_SYMBOL_GPL vmlinux 0x9cadf8f3 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0x9cb1a0e3 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x9cbc30cc device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x9cbe96ed regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cc9b4fe tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x9cce1079 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x9cd3fa59 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cdae7e9 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x9cda72c5 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals -EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ce2140b regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ce5b3d9 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x9cde2fbe power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x9ce06fa0 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9ce0adcb tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x9ce12e9f devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x9cf1b357 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cf921a9 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x9d0543a5 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x9d093949 ata_std_error_handler EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d105029 dma_get_merge_boundary EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow -EXPORT_SYMBOL_GPL vmlinux 0x9d2d22ff xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x9d146be9 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x9d2d3f5b pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x9d3369ad __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x9d3930e7 dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0x9d3be392 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x9d3e0d54 fuse_fill_super_common EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode -EXPORT_SYMBOL_GPL vmlinux 0x9d5e5550 pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x9d6539aa lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x9d66a35b dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x9d715b00 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x9d72f143 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x9d73d12a usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x9d776cd7 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x9d7a4ca8 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x9d4b9de1 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x9d52f0ac nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x9d5ce3ed devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d72ea94 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x9d734739 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x9d7374b7 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x9d7907bf gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x9d86ae40 lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d8e9a8a mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x9d9d9d42 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9db3c175 preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9dba0158 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x9dc62872 amd_iommu_is_attach_deferred -EXPORT_SYMBOL_GPL vmlinux 0x9dc9d7b8 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9dd28a27 tpm2_get_tpm_pt -EXPORT_SYMBOL_GPL vmlinux 0x9dea031a __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9d9ad1d5 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9d9e2e4c pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x9da0da3e balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x9da61737 folio_test_hugetlb +EXPORT_SYMBOL_GPL vmlinux 0x9dc595b2 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x9dcdb81c device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x9dd21878 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x9dd75672 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x9de433e6 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x9e13335b nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0x9e1669a8 kernfs_find_and_get_ns EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e27605a report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x9e2d47c8 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x9e2fd8ee iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x9e3118fd nvdimm_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x9e453576 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9e25a6a5 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x9e303cf4 platform_irq_count EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e602b42 __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x9e647cf8 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x9e7928c6 devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x9e7d375e fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0x9e8cb4a9 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x9e908a2e dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x9e93acc7 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x9e975352 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x9e991278 skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x9e9c009e mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x9e52f37e vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9e5d27a4 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x9e6500a3 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x9e6b97aa crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9e708378 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x9e78e038 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x9e82a76f netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x9e8e1ad8 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9eb252e3 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x9ebec153 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0x9ecf6b8b device_move +EXPORT_SYMBOL_GPL vmlinux 0x9ecd971e blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9ed63373 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x9ee50603 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x9edaf64b percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x9edc9086 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x9ede7317 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eee01c2 wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x9f01c3a1 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9ef61f0a ethtool_set_ethtool_phy_ops EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f45901b regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9f09daf2 crypto_clone_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9f19ea21 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x9f1eda9f clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x9f2b17d9 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x9f390d55 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x9f479218 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f659f84 io_uring_cmd_done -EXPORT_SYMBOL_GPL vmlinux 0x9f66cae6 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x9f6dc1a6 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x9f890f1c irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x9f90d1a5 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x9f617215 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9f68b804 devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x9f85b6b9 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x9f9673fb sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x9fa1476f find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9faa2737 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x9fb0688c ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x9fb1c088 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9fa72e9e get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x9fbc303f anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc02f97 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x9fc34f7b mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x9fce7b9a proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd3d4d0 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9fd71f07 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x9fdfe781 phy_configure EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff1afa7 pci_find_dvsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x9ff1cf5c regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9ff386de crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xa0041fd1 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0xa00c4457 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0xa01276cd pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xa01361b1 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xa0088296 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xa01755b8 acpi_device_update_power EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa0240085 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0xa0390634 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0xa03d93f5 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xa02991a6 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa02ed53b regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0435d69 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05f9eed clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xa068e5f4 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xa07462af pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0xa07f0a0c acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xa07fe46f bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xa063f0d6 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa088fd1e regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0xa0a1a3a8 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0xa0a78ab9 rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0xa0aa035c wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0xa0b255ea ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xa082be53 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xa0839d13 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa0881fb5 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xa098115b __SCT__tp_func_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xa09e7a25 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xa0c9a754 fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0xa0cbb4f9 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xa0c8e0c4 backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0xa0cb1b92 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xa0d90fe5 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xa0dc2716 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa0e31fb2 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xa0ee2b9e pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xa0efc4f7 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa0f773a3 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xa0fced1d i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa107bee0 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa1183b10 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0xa118684c tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa11921a8 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa1416ac1 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0xa11adf5a of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa13313c6 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa13412a0 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xa15142d9 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15b8de5 decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xa181ab53 trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0xa182ae94 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1853e4c gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xa1b0c991 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xa15f196a tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa1617e38 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa1725f36 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xa17420ab mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xa17cc8d2 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xa18b3488 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xa18d5992 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xa1a2cde2 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xa1b8a8ce pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xa1bedf83 sdio_writew EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xa1c586d6 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xa1d51f40 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xa1cbc870 lwtunnel_state_alloc EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1e429a8 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xa1e7feec dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xa1fa66a5 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0xa201f953 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xa1db5b4b tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xa1ef170d class_register +EXPORT_SYMBOL_GPL vmlinux 0xa1f36c56 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xa1f5af8d iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xa1fdd0f3 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2118afc usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xa21e0630 serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa223dccc regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xa22ec608 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xa2498b54 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa24e8685 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0xa24e89c5 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0xa265d29b perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0xa25cb9e5 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa265dad3 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xa268327e power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa26c5e5c dev_pm_opp_config_clks_simple EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa26da899 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xa27cf1b9 regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa28999fe devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xa28c5ff8 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xa2922aad irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xa2940432 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xa2a879c5 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2ad7bd1 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xa274f4b0 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xa2830e43 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xa2924b97 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xa294ef54 kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn -EXPORT_SYMBOL_GPL vmlinux 0xa2b31509 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xa2b3f53a edac_pci_handle_pe EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2d93a03 vcap_keyfield_name +EXPORT_SYMBOL_GPL vmlinux 0xa2d9b94e kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xa2dba009 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xa2e11909 i2c_dw_configure_master EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e4e56d clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xa2f10106 iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xa2f5e3eb inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xa2f7023b static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa30b669c kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0xa326a742 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0xa336ef51 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xa34dfee1 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xa36327a4 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa31558b9 node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0xa31b1c6a sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa3319c3a bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3343fd6 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa339f653 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xa33a5500 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa33d22b0 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xa33ee918 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xa34629e6 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xa353f839 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa36275f9 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa372ae7a __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa379e963 virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xa37b4cb9 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0xa37b7483 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa37b5203 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a8e25 devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa3920403 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xa38bbaad __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa3965c24 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xa3977df5 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa39dc85b fscrypt_parse_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3aceeb8 pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0xa3b3dfd8 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xa3a23c68 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xa3a36c73 cppc_set_perf EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c10a45 mmput_async -EXPORT_SYMBOL_GPL vmlinux 0xa3c915a0 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xa3e48380 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xa3d8b2a6 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xa3df811f virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xa3ee127b devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0xa3f0e4cd phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa3f31565 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0xa3f95ed8 pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40c6500 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41281e3 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0xa41371e0 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xa419935b __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xa43dc77f usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xa447a82f __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xa418ac6b devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xa41cfcd2 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xa41d8252 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xa42af52d iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa42e569a mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa42fd392 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xa4352e2e virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xa4408b87 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xa442083b devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0xa44623b4 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44e5609 __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa4568b16 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xa45b28f5 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print -EXPORT_SYMBOL_GPL vmlinux 0xa45fdfcf da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa4617d9b ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xa469e4ad xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0xa46ba57c balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0xa46e7a85 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xa46f734f pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0xa47c02ae edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xa4695291 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa474f4a5 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa4875935 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0xa48a5e9e pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0xa49e7963 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa48fc8c5 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xa495893b cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b61eab usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa4b2f278 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xa4b39c3b _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xa4bf2e41 cppc_set_epp_perf EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4d681d9 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0xa4d8cb61 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xa4e38332 gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0xa4e7f4b5 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0xa4ee6130 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xa4fa8b17 ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xa50ac712 i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xa52511f9 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xa5292c71 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0xa5312494 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xa4c1c29f dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xa4e4b8b1 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xa4e73574 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xa4fd6c14 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xa50888fd gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa50a91bb trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa51c8161 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa53d4fec da903x_write -EXPORT_SYMBOL_GPL vmlinux 0xa549dbce fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xa5363689 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa55f141f regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xa5660194 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xa56be546 pinctrl_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xa56c6753 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xa54e4d85 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5519cb1 hid_bpf_connect_device +EXPORT_SYMBOL_GPL vmlinux 0xa5695fb5 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xa57345b1 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xa574efa4 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa5751ad9 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xa5713826 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0xa5a7163c __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xa5b3cf5c dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa58f8dfa __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xa5b2cb42 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5c5cbec __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5d996eb irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xa5e7ae0e kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xa5ea22cb tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xa5decbac exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5fe975e pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xa60c2688 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xa617a76a udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 -EXPORT_SYMBOL_GPL vmlinux 0xa657c50e tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0xa6594f4b vp_legacy_set_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xa66cf7f4 pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0xa68023dc fscrypt_fname_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xa683b18e acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xa68c939a fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0xa68d1800 cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0xa69f2c52 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa5fcda80 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa601459b debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xa609c469 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa60e2b7a pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa61c1163 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa627f074 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa62bfc66 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xa63bd6e9 mmc_prepare_busy_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa65fe57c dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa6680748 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xa66ef0ba __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa6765602 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa6776767 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xa6785ea5 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xa68285fc nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa68eccf4 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xa69c0bd0 hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0xa69fdf52 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name -EXPORT_SYMBOL_GPL vmlinux 0xa6a44c54 input_ff_create EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk -EXPORT_SYMBOL_GPL vmlinux 0xa6b06e27 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end -EXPORT_SYMBOL_GPL vmlinux 0xa6b89e6c gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0xa6baa3e6 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xa6d40efd sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0xa6e0996d pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xa6b3e750 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa6c4319e sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xa6c4ff44 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa6cb9f33 cdrom_multisession EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f43494 gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0xa6f46cc9 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xa6f89ec4 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xa6ffeff9 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xa6e1c240 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa6e72021 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xa6f58470 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6f82d03 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xa6f9c17c dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xa7032678 crypto_akcipher_sync_encrypt EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa71079d0 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain -EXPORT_SYMBOL_GPL vmlinux 0xa716283a irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0xa71c10fa ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa7138857 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xa71634bd usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xa72139a9 max8997_update_reg EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0xa72f36b3 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xa7241959 pkcs7_supply_detached_data +EXPORT_SYMBOL_GPL vmlinux 0xa727a75c driver_set_override EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa741bcf8 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xa754c6b8 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0xa7569074 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xa75e7b3e netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0xa77853fb bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xa787ac11 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xa79db4fd udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0xa7c5b59e vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xa7cf6997 pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0xa7d14376 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0xa7d49225 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0xa7d91248 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xa7e429f7 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0xa7e89d39 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0xa7f22fb4 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0xa80f8285 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xa8111821 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xa8239258 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xa8239868 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xa8298ece kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0xa82dc19b blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xa82e2b39 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xa83c9940 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0xa84320d9 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa7547136 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xa75a6661 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xa77abbce pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xa78dfdd9 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xa7976d61 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa7b97b74 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa7c28b7c xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa7c83645 pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0xa7ccea0c fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xa7cfacf5 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xa7d0f487 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa7e13dac regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7eaf744 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xa7ee7a11 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xa8102319 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa82e37d2 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xa84ca051 account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa866ec46 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xa87f0726 xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xa880d413 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xa85bbe00 __SCT__tp_func_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xa869595c serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xa86ba710 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xa89385ac blk_req_needs_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a0f60d vcap_del_rules EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8b5abdf pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0xa8b7f673 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xa8aabe4c serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic -EXPORT_SYMBOL_GPL vmlinux 0xa8ce029c tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0xa8d25c48 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xa8d7a886 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0xa8dad776 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa8e1f540 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0xa8e226f5 gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa8f1d657 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa8c96284 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xa8cc5125 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xa8d3e16c sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xa8ef354c tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xa8f6655a fuse_dev_free EXPORT_SYMBOL_GPL vmlinux 0xa9017069 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xa9092f6e dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xa90a8cf9 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xa9050a8d dax_remove_host EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit -EXPORT_SYMBOL_GPL vmlinux 0xa9230518 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0xa926b80b ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xa92836a2 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xa9306486 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa917b59f blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa91f8113 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa93c6271 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xa9419d74 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xa94c6d81 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa936ee6e vcap_select_min_rule_keyset +EXPORT_SYMBOL_GPL vmlinux 0xa93ab243 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xa93f90fa ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xa944d0fd irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xa9526b3a irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa95ccb1f usb_hcd_poll_rh_status -EXPORT_SYMBOL_GPL vmlinux 0xa95d8872 iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xa96330da irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xa967d4cc ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa962e9ad crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xa967e1c9 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xa96c7001 xen_unregister_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa97031b7 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0xa9754247 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xa991ec49 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa97cdfde regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa9850cf7 register_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xa989859b genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xa98c6fa4 nop_posix_acl_access +EXPORT_SYMBOL_GPL vmlinux 0xa995d555 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xa99b1875 __virtio_unbreak_device EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9c231de ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0xa9c47056 edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xa9ce81ef dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0xa9d750d3 blk_crypto_profile_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa9dc1d6a clk_hw_get_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xa9e8ac46 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xa9e9673f sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xa9ec98ff i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xa9f4fe9d regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xaa0106b1 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0xaa01c50e sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xaa10de17 __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xaa343aa4 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xa9bb5b32 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xa9c0f254 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xa9c37a6f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xaa04ba28 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xaa1b43ad genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xaa32d56f pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xaa380417 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xaa393cc6 mas_preallocate +EXPORT_SYMBOL_GPL vmlinux 0xaa440ce8 __virtqueue_unbreak EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa6a8e0b xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xaa72b882 ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xaa819f7c skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xaa6d633e user_read +EXPORT_SYMBOL_GPL vmlinux 0xaa771521 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades -EXPORT_SYMBOL_GPL vmlinux 0xaaa4c4d8 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xaa8e2427 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xaaa38f42 fsverity_get_digest EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0xaaca1d79 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xaad40160 __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0xaad8f448 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xaaf2596d vcap_lookup_rule_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0xab060795 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xab1566c8 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xaabc2d96 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xaac88b0e spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xaac99afe power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xaad8aac2 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xab0bd631 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xab0da23b transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab173e26 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xab1bc9ca perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab21a7c5 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xab2e03d0 phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xab41db31 __SCK__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xab43d63d invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xab6014ab devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xab64d319 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0xab6b42e7 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xab79516c devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0xab8aa243 cros_ec_cmd -EXPORT_SYMBOL_GPL vmlinux 0xab8b3411 msi_unlock_descs -EXPORT_SYMBOL_GPL vmlinux 0xaba51616 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xab3083b4 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xab30ab4f regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xab348c88 class_create +EXPORT_SYMBOL_GPL vmlinux 0xab35b57b __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xab377c6a devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xab3d4194 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xab3dc063 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xab44c4fd pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xab4aa427 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xab595673 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xaba13b92 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xabb19dbd gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xabb207ed spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xabbf6876 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xabb81303 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0xabd21cf5 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xabd7b7fa __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xabd97cbf handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xabe7ea26 ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0xabea68c7 usb_unlocked_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xabef6964 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep +EXPORT_SYMBOL_GPL vmlinux 0xabca14fa bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xabd2257d lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xac069a20 dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xac36b561 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xac525c0d wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xac527505 mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0xac635ef9 devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xac812d02 regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0xac87d01c power_supply_put_battery_info -EXPORT_SYMBOL_GPL vmlinux 0xac88a8ac mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xac954d68 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xaca0e51d devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xacab681e fscrypt_add_test_dummy_key -EXPORT_SYMBOL_GPL vmlinux 0xacacbd44 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xabf5b9db sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xabfc2a57 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xac56db8a driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xac58179b rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xac5a6bf8 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xac5e904e xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xac82acc0 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xac8d51a4 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xaca1c2cc tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xacaab013 irq_domain_free_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc2be46 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacca5e41 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xacde507d alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0xace8f2b0 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0xacf71cbc blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xad00cc34 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0xad0adf06 __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xad205b2b scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xacffb5fd uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xad137335 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xad156d4f sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xad1dbf67 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xad20161e ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad44e005 pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad4ea895 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xad4fcf7c srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0xad54be33 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xad56b1f7 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad641dfc vfs_get_acl EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad65d0de xfrm_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xad71f604 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xad7ad854 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xad769a4a devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xad8d50db perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xad9929c3 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada921ab __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xadbe4883 __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xadb912cc sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xadbed7be put_pid +EXPORT_SYMBOL_GPL vmlinux 0xadc501bc sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xadcdee4e crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xadefaf35 regmap_might_sleep -EXPORT_SYMBOL_GPL vmlinux 0xadf36f8d netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xadffc0ae fat_detach EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae0c9c99 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae12d7f1 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xae1feb86 clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xae230250 housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0xae238c58 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0xae279e5c raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0xae2c66fc class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xae28c16a skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3aab82 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0xae53281a pci_p2pmem_virt_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xae53b9dd wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xae572714 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xae60893c pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae8df8bf shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaeacace9 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0xaeae4d79 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xaeb3ff1a disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xaecb77a1 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xaed36e0d skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0xaed9c477 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0xaeeb339c dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0xaef0b7f6 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xaeb19506 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xaec3c2fc __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaecbad8a pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xaed97527 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xaeef3c13 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xaeefc802 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xaefc683a acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xaf04d892 mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 -EXPORT_SYMBOL_GPL vmlinux 0xaf09018d da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0xaf0a7dae devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xaf08c6fb regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf0fdc8e sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf1aa472 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xaf1c962b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf2d2eba do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf4adb63 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0xaf5c3688 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xaf6777db crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xaf428325 modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xaf493935 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xaf4dc3d6 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xaf4f1acb tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xaf519bcb __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xaf69c246 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf81ea0a usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0xaf848ae2 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf8c65e6 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xafb07499 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xafb5ffdb udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xafc3c4e9 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xaf878288 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xaf96d220 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xafa002ca is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xafc251e4 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xafcd1cb1 vcap_chain_id_to_lookup EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafde4d67 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0xaff2559d noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xafe89b8f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xafef345a usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xaff9912a vring_create_virtqueue_dma +EXPORT_SYMBOL_GPL vmlinux 0xaffe4710 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xb00713e9 __tracepoint_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb03c0841 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xb042897b event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xb04695f8 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0xb05a5772 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xb02af2d4 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb02c5777 acpi_quirk_skip_serdev_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xb040f429 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xb04451f2 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xb04bd3b6 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xb05c39e2 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb0609888 devm_bitmap_zalloc EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xb06ec77b iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb078155f irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xb08234b6 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0xb090c6c6 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xb0917518 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xb0951de2 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0xb09fcb00 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb08b50de irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xb0989082 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xb0996b8d sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e79032 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb0e7ab1f __traceiter_console EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f44dda bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xb1021823 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xb10b13d6 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xb0ecd58a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb0edda6b __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb0ff47d4 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xb10163ba rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb116aa79 ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0xb11cc43b __SCT__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb125d4d9 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xb134e3ea find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xb16284b6 led_put +EXPORT_SYMBOL_GPL vmlinux 0xb124fb16 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xb12c6f93 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb133516c tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xb1360987 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xb13837ce vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0xb138d68b vcap_tc_flower_handler_ipv6_usage +EXPORT_SYMBOL_GPL vmlinux 0xb13e1800 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xb14c06ac led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb14f0c24 clk_hw_forward_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xb15f7136 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb174fe17 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xb17b9167 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xb1888083 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xb18cb4e7 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0xb19fed0b pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0xb1a950c1 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb1aa99e2 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb170f888 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xb1764578 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xb17b03e6 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb1809631 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xb188cc71 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb19c6d4b pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xb19cf7b3 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb1a07346 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xb1ab3fea __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xb1b62f9d __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb1b7499e __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1bf4bc0 dw_pcie_ep_reset_bar -EXPORT_SYMBOL_GPL vmlinux 0xb1cc278f usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0xb1cf12eb usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xb1dbb554 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xb1dfecea power_supply_battery_info_properties_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1e551a3 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xb1ee8a94 usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb1efea23 led_blink_set_oneshot -EXPORT_SYMBOL_GPL vmlinux 0xb1f5bd2b devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0xb1f965af wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb1fd810b tpm1_getcap EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb2046523 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb20d01c6 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xb20da6d0 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xb2149561 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xb2160402 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb225a37c misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb2410472 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xb24f5d20 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xb240bcc6 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb256be16 efivar_is_available +EXPORT_SYMBOL_GPL vmlinux 0xb2601ea3 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb271a8fb pci_p2pdma_distance_many -EXPORT_SYMBOL_GPL vmlinux 0xb2787ad5 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xb2751637 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xb27abf96 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb2840191 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall -EXPORT_SYMBOL_GPL vmlinux 0xb2865bbb usb_hcd_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xb28be2e8 blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0xb28e1df6 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb2891e06 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xb28a4121 skb_pull_rcsum EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2981151 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xb2b29adb blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb2bcefe4 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xb2bedce8 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb2a20a24 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xb2b0373b xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xb2bcb12d devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c58803 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xb2d89a0e pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb31b06f0 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xb320410a devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb3182e53 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init -EXPORT_SYMBOL_GPL vmlinux 0xb3637aef uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xb37434f5 component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0xb37b4b69 ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0xb38c0960 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xb39235b2 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb39c8112 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0xb3a1dda2 __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xb3ddb43f kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xb3f00046 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb33622dd ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xb34735f9 __tracepoint_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xb3483619 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xb36b9111 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xb377de2e sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb37b3901 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xb38a56fb gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xb391f76f ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xb39665cc kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xb3a27521 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xb3acc7eb clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xb3be5213 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xb3c92706 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xb3e0baf9 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xb3e1efe3 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xb3f3a860 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xb3fcc3f0 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xb4054e16 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xb4306455 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0xb434061d trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0xb439afc0 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb400bda1 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xb4096d8d component_del +EXPORT_SYMBOL_GPL vmlinux 0xb411fe8f tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xb4165b90 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xb41aa434 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb420fe4f create_signature +EXPORT_SYMBOL_GPL vmlinux 0xb42ae782 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb43da8ba device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb45222b6 devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xb46200d2 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb488f958 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xb48e35bd __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb46db92e acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xb47bfd7f __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xb4802421 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xb486cfa1 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register -EXPORT_SYMBOL_GPL vmlinux 0xb49342ac crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xb4a650ed regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb4b4dc3f cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4b997c7 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xb4c1955f ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0xb4c548cd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xb4d50d98 usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0xb4d8fb38 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xb4bd265b vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xb4d488ee pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xb4d4cf15 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xb4dbebb8 pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f500c2 irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50784f4 raw_abort EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb5149a43 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xb50e1578 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xb51b9246 vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52090ed crypto_alloc_sig EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb52158c9 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xb52d2b64 phy_save_page -EXPORT_SYMBOL_GPL vmlinux 0xb52e061e posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xb5386fe6 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb53ea3e6 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0xb53f47d7 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xb54f1b79 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xb5273cd1 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xb5440be9 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xb555fea4 dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0xb55b25b3 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0xb55d5d6d spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xb5580865 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xb55e9f1a pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb56dc6a6 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0xb5701801 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xb58b9046 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xb5a0c466 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xb562627c pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xb56d9db2 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb57b44e6 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xb5861c63 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb59e4433 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb5a82409 regmap_mmio_detach_clk EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5b0ab98 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xb5db08a5 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xb5e1d35a __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0xb5fc1525 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xb61a1021 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xb61ffe9a dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xb6202794 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5b2b108 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb5b4fc51 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xb5b58c63 __SCK__tp_func_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0xb5e8b410 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xb5fe2575 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xb600ddb1 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xb6098f45 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb615c3ac devm_regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb62e0dff scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xb6293ac1 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xb62c014a bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb63587cb __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0xb63b8487 crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb6415ce7 register_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0xb652f3fe crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xb64a7211 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb6500e3f crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb6591330 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0xb65d5b16 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0xb66936c3 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xb66f9c30 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb6714499 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb677c585 regcache_sync EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb6881448 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xb67dd786 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb68c6601 transport_remove_device EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb6b5888a rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xb69ea526 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb6a1f298 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb6b6b38d iommu_iova_to_phys EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst -EXPORT_SYMBOL_GPL vmlinux 0xb6d6e394 hsu_dma_remove -EXPORT_SYMBOL_GPL vmlinux 0xb6d8a817 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xb6da6c55 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xb6dfc0ea iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xb6e2f1f9 spi_mem_dirmap_write EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6e7b062 skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb6f13a14 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xb7060d5a mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0xb712e930 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0xb71d7c7b fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb6f547eb devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb6fa76ad regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb71d182f blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xb72d0807 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb7391fbb __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0xb7470577 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb74c53d9 security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb74d91a2 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb74176f8 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xb74329f0 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb7486809 da9052_adc_manual_read EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init -EXPORT_SYMBOL_GPL vmlinux 0xb7591656 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0xb75cff5f fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xb7638304 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xb7793473 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0xb7796a53 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xb7839a40 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xb75ff6a7 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xb763b239 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb7959025 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xb798d1f3 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb79e0794 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b18064 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0xb7c1d77d ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb7af1da3 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xb7b4cc9d sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xb7b53d3f bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7c7094e devlink_port_attrs_pci_pf_set -EXPORT_SYMBOL_GPL vmlinux 0xb7c83606 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time -EXPORT_SYMBOL_GPL vmlinux 0xb7e1f5ea inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xb7e39358 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xb7e97b33 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xb7f49f73 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0xb7f8dad5 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb7dbd39e extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xb7e5f9bf __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb7f4a57c crypto_alloc_base EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb7fddc5c acpi_dev_ready_for_enumeration -EXPORT_SYMBOL_GPL vmlinux 0xb80f88a9 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0xb8101456 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xb82721b8 blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb8364d1f __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb83ce47d genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb8321416 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb841228c usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xb8478750 __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0xb858c02b scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xb8748c7b regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb878516f generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xb85b4022 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xb8686b0d unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb8773eb7 devl_linecard_create EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87b61ed regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb883d1d9 devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8908ae1 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xb892ce22 bus_find_device EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a4d9da shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0xb8ab68df intel_microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0xb8b0618c iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0xb8c3a806 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xb8c76422 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xb8caa33f usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xb8b8ec8d acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xb8be56b6 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8e7c161 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xb8ce468c clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xb8d8cc97 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xb8e29104 subsys_virtual_register EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8f3b5b2 ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0xb8fb7c98 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xb8f40ccd crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xb8f6e296 __nvmem_layout_register +EXPORT_SYMBOL_GPL vmlinux 0xb8fc3647 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xb90e0b76 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xb911c05a devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable -EXPORT_SYMBOL_GPL vmlinux 0xb932f646 folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xb9345f47 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xb935283e sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xb915ce29 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xb91bb39c device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xb91f1fc2 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xb929f305 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xb939b1a0 rio_add_net EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb95542c1 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb972c76c trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0xb97ca0e3 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xb98193f5 tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98b0601 pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0xb9996bdd register_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xb995b4f8 skb_mpls_push EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xb9a5df71 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0xb9a7c1ae tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xb9abeaba rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xb9b67dab edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xb9a2a087 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xb9a6f60f debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb9ace70f dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bef884 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9cd89d9 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xb9c6d054 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xb9cff8b5 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e4efb2 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb9f6d9c2 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xba0196d4 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9d52ed8 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xb9ea612f intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0xb9ef5a92 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xba120844 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xba1212fe cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0xba1adfb0 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xba0381de gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xba03ad0a pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xba094957 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xba1f7605 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xba20537a dm_device_name EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba34d675 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xba3aeaa6 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0xba3c82a0 fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0xba533c95 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xba568fca irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0xba6f9e04 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xba310dd8 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xba34c58f fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xba493c86 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xba539d15 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0xba5625e9 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xba57ee99 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xba5ad8da irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xba63039d strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap -EXPORT_SYMBOL_GPL vmlinux 0xba858fd6 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xba913a40 device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0xba941e58 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xba97763c tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xbaa397fc crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbaca34e7 irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbac796b3 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xbac800df list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xbadc80b2 arch_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbade3523 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xbaf1ae65 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xbaf29b7e __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf90873 rio_add_device EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafaf0cb __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xbb006021 __tracepoint_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register -EXPORT_SYMBOL_GPL vmlinux 0xbb05daf7 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xbb07bf91 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbb04407c devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbb069313 pci_iov_get_pf_drvdata EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks -EXPORT_SYMBOL_GPL vmlinux 0xbb0afabd ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb238b5b ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xbb0b7413 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xbb1468b1 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xbb1875fa hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbb1ca175 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xbb25c70e ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xbb3020fd tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xbb35ef87 mtrr_state EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb44ba80 nf_queue_nf_hook_drop -EXPORT_SYMBOL_GPL vmlinux 0xbb5006e9 cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xbb551c38 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xbb44e9e4 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xbb451eaa rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbb50c207 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbb51e191 __unwind_start EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb5ca605 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xbb5e5569 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb690fc7 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb78795a wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0xbb7eb789 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0xbb80c54c relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0xbb8763ed dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb9b6c6a call_srcu -EXPORT_SYMBOL_GPL vmlinux 0xbb9ed13a crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xbb731fcc regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbb9d257a sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xbbaaab23 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xbbace938 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xbbb1b8ad __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbdb78cc dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xbbe279e7 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xbbd82c93 gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbe6d7dc do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0xbbe99cc1 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xbbf12b12 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0xbbfafed4 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbc149457 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0xbc15b1f5 __class_create -EXPORT_SYMBOL_GPL vmlinux 0xbc197de9 syscon_regmap_lookup_by_phandle_args -EXPORT_SYMBOL_GPL vmlinux 0xbc1e8289 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0xbc2b9d01 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbbe97659 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xbbf295d5 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xbbf7f0a1 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xbc055956 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xbc0d679e iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xbc14c22b wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc35b3ba usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xbc31aedd unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xbc37fd8b __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc4768b3 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xbc4276f3 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xbc484cd2 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xbc495666 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc5c8e34 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xbc5dc8ba blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbc635472 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xbc613fb3 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc791b7b pci_epc_stop -EXPORT_SYMBOL_GPL vmlinux 0xbc7c277d fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xbc7cd717 ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0xbc95d82b srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbcaad4d0 devm_led_trigger_register EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcd25f52 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xbcd84267 ftrace_set_filter_ips EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name EXPORT_SYMBOL_GPL vmlinux 0xbce12556 clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbceaeeab _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xbceb4745 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xbceeea89 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf23196 icc_get -EXPORT_SYMBOL_GPL vmlinux 0xbcf905fe fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xbcfac756 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xbd01193e sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xbcfaaec3 metadata_dst_alloc EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd2a8be7 alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0xbd34f55e dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xbd07443a perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xbd0acaec devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xbd0cdf8a scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xbd195c03 __SCK__tp_func_console +EXPORT_SYMBOL_GPL vmlinux 0xbd2991ae reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbd310fd3 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd42897b dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xbd4a4536 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbd4f91db usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0xbd699674 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xbd6f30c6 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbd418856 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbd4e5348 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xbd609aac rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xbd64613b spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xbd678291 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd7ac86f anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0xbd7d4cf9 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0xbd88fff3 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xbd8b6a6d regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xbd9db25d clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbda047da kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbdab643e vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xbdabd3b3 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa -EXPORT_SYMBOL_GPL vmlinux 0xbdb85ff6 fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0xbdbc439e unregister_kretprobe -EXPORT_SYMBOL_GPL vmlinux 0xbdc377fb ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbdc55c63 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xbdb5fbfe regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xbdbbad04 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbddb402a hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xbe11ded7 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xbe2c0ea7 isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xbe4f0914 cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xbe59aabe cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbdf8bf64 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xbdfcf044 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xbdfdf052 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbe057737 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xbe0d0971 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbe1b457a regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xbe2449a1 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xbe2cb122 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xbe2d545e devl_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xbe3e5263 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbe41fa81 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe4a6c9e iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xbe4c411a usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xbe52c040 tty_buffer_unlock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries -EXPORT_SYMBOL_GPL vmlinux 0xbe67436e firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0xbe677295 fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe70a148 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw EXPORT_SYMBOL_GPL vmlinux 0xbe748b1f intel_find_matching_signature -EXPORT_SYMBOL_GPL vmlinux 0xbe76bd31 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0xbe7d1f53 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xbe79bc4f pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xbe82be94 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xbe93d0b8 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xbe9595f0 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xbe988a30 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0xbe9e240e iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeaa2521 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xbeb1bc61 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xbebfd4df crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xbec0c798 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0xbec35e47 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbea7c289 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xbec3f920 bus_create_file EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbed7568d serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xbef1a646 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xbef2a87b md_do_sync -EXPORT_SYMBOL_GPL vmlinux 0xbef9588f device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xbed24927 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbeebe273 crypto_sig_set_pubkey +EXPORT_SYMBOL_GPL vmlinux 0xbefd1bcc fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0910ef __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf0db585 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xbf1d4376 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xbf1f5674 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbf1cb4fb perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0xbf24979f of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xbf287da2 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf2ed646 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xbf41414b sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xbf4508e0 uart_console_write EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf5a15a6 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xbf5d5ae4 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xbf6017b5 register_btf_fmodret_id_set -EXPORT_SYMBOL_GPL vmlinux 0xbf6ee6b6 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0xbf6f5c53 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xbf779b24 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xbf77fcba ata_sas_tport_delete -EXPORT_SYMBOL_GPL vmlinux 0xbf7978e7 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf933ce3 tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xbf9d476f iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xbfa2d405 genphy_c45_pma_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbfa5785d sata_link_resume -EXPORT_SYMBOL_GPL vmlinux 0xbfb44e42 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xbfb4b139 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xbf4805a7 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbf485db3 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xbf4880e9 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xbf4baf3e events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xbf6d7bc7 __folio_lock_killable EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfd11be6 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0xbfd47f4b xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbfc47478 sysfs_remove_link_from_group EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe6878f devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff161d5 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xbff8cd76 regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xbfff9fc9 devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0xc0064050 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc0070278 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xc02f994d max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0xc02f9cfb mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xc039703d pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xc039e34b irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xc03aaeb9 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xc03c3ac8 pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc06206f5 ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0xc06951bf kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xc06bd056 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xc06c844c srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xc0855927 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xc088ff23 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xbff1e963 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xbff3e519 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xbfff280e crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc000b96d wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc0022486 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc009a093 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xc00dc09e bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xc010d253 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xc02c3d1f devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc05fbc94 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc061f90c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc074d8c0 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc07b80aa nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xc0875f7a devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xc08ae499 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc08c410d pci_p2pmem_virt_to_bus EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc09938bd ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xc0a303bd __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0xc0aa63b4 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0c33b7c crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xc0c36090 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xc0c39d77 scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xc0c7f366 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc0bc5f25 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xc0c3ab13 pm_runtime_no_callbacks EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e09ecf of_pse_control_get -EXPORT_SYMBOL_GPL vmlinux 0xc0ead2fb tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xc0e046f2 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xc0e27f8e crypto_unregister_ahashes EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fd68ab rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc111162f gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xc13c6974 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xc1530ef8 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xc154bb0f vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0xc16f285e mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xc10c070f usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc117a77f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc11aa87a crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xc1288028 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xc1320af3 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc137aa27 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xc1577bd9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xc15a8621 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xc167f217 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded -EXPORT_SYMBOL_GPL vmlinux 0xc17c9e03 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc17e0045 rio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc181c869 crypto_stats_akcipher_sign -EXPORT_SYMBOL_GPL vmlinux 0xc18498af __auxiliary_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xc1a5c644 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xc1b7975e irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0xc1c05ad5 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xc190eeb6 md_start +EXPORT_SYMBOL_GPL vmlinux 0xc192dd9a sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xc193fc72 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc1a52327 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc1a682be pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xc1b335da netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xc1bc742a peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc1cc3074 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc1e69770 blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1f989cf usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0xc1fbf25b debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xc1f7e77f __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc2147534 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc21f9fc2 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xc22297a9 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0xc2250f92 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc204008a __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xc20d5aaa regulator_register EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0xc22c5330 sata_lpm_ignore_phy_events -EXPORT_SYMBOL_GPL vmlinux 0xc22d499d xenbus_alloc_evtchn EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc23a7b6b pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xc2530d4f __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xc253c85d ima_file_check EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25c1f4e __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc2606ee7 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0xc264a175 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc273ee31 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0xc2837e0b power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xc2772ad7 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xc27aee45 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc27cb2f3 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc2950bbf misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a60d5e blkg_conf_init EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2acc986 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xc2ad8d0b devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xc2b8a93e rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xc2bf6bc5 input_ff_event EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2dc47f1 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xc2c4b254 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xc2c830a0 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0xc2ca651d ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e5b5d5 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0xc2f55645 uprobe_register_refctr EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc30f212a addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0xc328fb0c hsu_dma_get_status -EXPORT_SYMBOL_GPL vmlinux 0xc334fb29 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3004ade msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0xc31084d5 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xc313c32f thermal_cooling_device_update +EXPORT_SYMBOL_GPL vmlinux 0xc31769cc strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xc328e60c __SCK__tp_func_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xc32fdb0d __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xc3386b89 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc33ca570 fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3424e07 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xc342d689 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0xc3434070 iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0xc34c9a7e devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc34cc929 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xc34f8a30 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xc35e09f7 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc3652942 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37a8bbd ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc384ba29 clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc38f6dfa pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xc3948481 strp_done EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc3bda8cf debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xc3be773d dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0xc39b457b tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xc39e4892 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xc39f28fd kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc3a7ca39 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc3b0823c edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c997b4 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0xc3dda1be skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc3ea0f31 serdev_controller_add EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f1b6d3 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xc3faaadb __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xc3fc2ee8 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xc4008d55 xen_have_vector_callback -EXPORT_SYMBOL_GPL vmlinux 0xc40b06ef ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc403123f spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xc40910ef dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xc40df8d1 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc413f38b replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0xc41a8113 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xc42069fa vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xc4210077 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42bb9f3 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc437c1b6 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc428ce33 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xc42a6a82 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xc430820d param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc4454c8e platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc4461313 __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc45fb8c3 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc466a3a4 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xc46fb354 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xc46a65bb file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xc486709b irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xc49c415a __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0xc49d2460 usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xc49dc6e0 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xc4a229ff is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xc4a23c28 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0xc4846520 debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4ad273e serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xc4bb5da9 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0xc4bbc7a4 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xc4c235c6 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0xc4c8ba1d crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc4ab7c04 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc4b421c4 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc4bef59d pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc4c5191f vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4d5e0e8 acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4d935d9 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xc4db0e45 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc4e7fe6e cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc50226ab sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xc5006349 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xc502a68d register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0xc51475e4 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xc530f040 __xenmem_reservation_va_mapping_reset -EXPORT_SYMBOL_GPL vmlinux 0xc537d8d2 xdp_do_redirect -EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc514237a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc51d93d4 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc52277a5 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xc52ece8b powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xc52f8202 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xc5326d70 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc545bf49 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc548f2fe l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xc550496d gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc55ed06c thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56e598d power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xc56bc793 tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc577419f devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57dc598 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xc57a0e37 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc58556cb trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58e8f70 __devm_add_action EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5b7a7de regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xc5bd085f devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xc5bdc78c bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xc5e6da9a irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xc5fa2a87 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0xc601908d i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc5a60a81 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xc5aad560 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xc5e1bdb5 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xc5e4a2af reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5efe9f8 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xc5f34aa6 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc5f3aa13 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc5fa5d1a vp_modern_queue_address EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xc605f3bd inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xc60b4ecd sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xc60ce586 __SCK__tp_func_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc61aae72 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc61f6184 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xc61f9b63 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc62bef31 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xc63ef646 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xc64ecd27 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xc6292875 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xc62cc05a acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc631e4e2 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xc63eea6c led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xc6411b5c fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xc6522143 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc658958d pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0xc65bb7d9 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66ca75a devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xc66daccb usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xc6745e2d sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc680821c serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted -EXPORT_SYMBOL_GPL vmlinux 0xc68b2cc7 pci_cfg_access_unlock EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a3c9b6 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xc6b29ac2 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xc6ce28d7 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0xc6ce9c46 genphy_c45_pma_baset1_setup_master_slave -EXPORT_SYMBOL_GPL vmlinux 0xc6dbcb3c device_attach +EXPORT_SYMBOL_GPL vmlinux 0xc6c78d2e __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc6ce52dc regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6f1148b fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xc6f88e10 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xc6e84a16 mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0xc6fad95e __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc707a7e5 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0xc7112913 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xc71d40b0 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc753da51 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xc76585cd power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xc70c8e3c blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xc71bb27a anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xc74c07ce cppc_get_epp_perf +EXPORT_SYMBOL_GPL vmlinux 0xc74db05c component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7611678 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc77ba504 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc790e130 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc78dc8da extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc7970c62 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xc7988db1 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xc79cfc9f wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7b1f9ae dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7cdac03 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xc7d324b8 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xc7c94e54 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xc7d6ab96 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc7de238d sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc7e2cbae rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0xc7e6063d xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7f1e3c6 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7f4252c blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xc7f6031f ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xc7e89755 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc7fa5fb0 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xc80b3bc1 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8122094 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec -EXPORT_SYMBOL_GPL vmlinux 0xc8173f5a spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc81d9ca4 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8302622 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xc82fecca ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83da129 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xc854a615 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xc83e5426 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xc851b2cf wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85b2a56 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xc8652900 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xc865f256 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xc865d920 usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0xc87e4e9e regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0xc8a1fadd ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xc8a5b06f __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xc8a83cb3 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xc8acdeaa check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0xc8b8fdf0 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc89a66a3 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xc8a946a7 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc8b35744 devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8c4ae4c nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8d6f7e8 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e2e303 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xc8ee3c84 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xc8eed202 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xc9027ef6 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc8e3cf26 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8ea7aa3 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xc8f0722c ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xc900fd94 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc9054127 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc905b0ef scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xc90e776d iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xc90f3179 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xc9175f62 ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc9297067 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0xc9216a82 recalibrate_cpu_khz EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9400d9e dm_audit_log_ti -EXPORT_SYMBOL_GPL vmlinux 0xc953676f page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xc940d567 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xc941425e kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xc94bc0df blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xc9551aa7 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95ccf37 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc96242da srcu_init_notifier_head EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc977f83d dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc98a5e76 bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0xc99668d8 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xc996fe20 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc985c717 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xc99da118 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc99f5319 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xc9b687b1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xc9b09f14 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xc9bec4dc spi_transfer_cs_change_delay_exec EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9dec089 hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0xc9e47209 klp_get_state -EXPORT_SYMBOL_GPL vmlinux 0xc9e8651a devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc9d49a98 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f20fa3 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xc9f2d8b0 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xc9f4bbb5 __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xc9fdbe45 pwm_lpss_byt_info -EXPORT_SYMBOL_GPL vmlinux 0xca0086f9 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xca0ea3dc xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0xca11ae03 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xca054841 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xca06f970 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xca12fbc1 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops -EXPORT_SYMBOL_GPL vmlinux 0xca473368 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xca47f8b8 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xca4b370d usb_store_new_id EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName +EXPORT_SYMBOL_GPL vmlinux 0xca5f74f7 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xca610b23 mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca82d150 __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xca8e79fc verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xca88b967 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xca8fd0f2 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca9508fa __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xca9a48fd inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xca9a9293 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xca9bf9e6 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0xcab1881f ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcaaa5874 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xcab492ec cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xcabb6f55 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xcabd0942 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcabff803 sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0xcac3423d regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xcad895e9 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0xcaef5df6 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xcae0dd3c pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xcaea4311 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xcaedb124 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcaf0271f hv_get_register EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaf7bee0 unregister_fprobe -EXPORT_SYMBOL_GPL vmlinux 0xcafc3674 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0xcb1bfc0f serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xcaf5897f hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2f89c4 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xcb470aaf dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0xcb51f56c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xcb35ed11 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xcb3dbe35 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb5caa7b vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0xcb6da414 __clk_mux_determine_rate_closest -EXPORT_SYMBOL_GPL vmlinux 0xcb7c82cb iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xcb7efa9d rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0xcb82b6f4 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xcb85ce90 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xcb5fa9ec __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcb72a07f bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xcb74add8 vcap_chain_offset EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xcbb10d6e devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xcbabd73b xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xcbaf181d nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0xcbcb2985 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0xcbd2a680 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0xcbda361f rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xcbc29a0e spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcbc86b4c __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xcbc9e1cd acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xcbdd6962 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbf96b12 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xcbfd43fd pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xcc171eea dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc00fd1f crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xcc0976cb generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xcc1acfc6 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc2ba4c6 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xcc303c43 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc381e76 rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc4364a9 blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xcc50f90e fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xcc735ff9 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xcc7607c7 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xcc79f152 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xcc7bb7cd firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xcc7ef54c __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xcc8a6cf6 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xcc41d5c4 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xcc45567e blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xcc5275c3 acpi_match_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0xcc55784d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xcc624bd4 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xcc692edc pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xcc6f75d8 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xcc82e847 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xcc88a74c rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xcc903fa1 __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc986e91 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xcc9ae25d vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccad8d1c perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0xccc190c5 wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xccc9fe31 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0xcccbc2d6 pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce58c8e lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0xccedec47 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xccdc7dce bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xcce213f5 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xcce4fbbc ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xccecbb47 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd020eae ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0xcd1e7762 genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0xcd214e84 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xccfae72c ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xcd010ef8 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xcd08c9f4 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xcd098a3f __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd204a1c pci_generic_config_read32 EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd267daf gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xcd2a3ecb driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xcd399aef events_hybrid_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xcd4aa629 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xcd43f8ff __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xcd504ecb switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xcd5101b9 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xcd5aaa91 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xcd5b6c6f __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xcd637979 fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd7c1fdc clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xcd7e3330 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return -EXPORT_SYMBOL_GPL vmlinux 0xcd87576e led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xcd8e35a9 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd9487df vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd98d325 serdev_controller_alloc EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda8499f fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xcdadc6b3 dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdc76021 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xcdb84219 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xcdbf3d80 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xcdc3acdd regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xcdc5df5a iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd3d587 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xcdde844d cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0xcde02c14 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xcdd2f246 usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde701c4 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xcdeeabb3 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xce058d30 tcp_done EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce0b9299 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0xce204c32 thermal_zone_get_temp -EXPORT_SYMBOL_GPL vmlinux 0xce25a471 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xce298d51 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xce2d0a50 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xce33bdd6 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xce37c61c wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xce4e320a acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xce543415 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0xce57f131 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xce15cc8e proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xce1a1e59 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xce25ada6 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xce370b5b tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xce38718e devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce65705d irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7cfa8c acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0xce7ed0fa msi_lock_descs -EXPORT_SYMBOL_GPL vmlinux 0xce85f269 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0xce868d9b sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0xce9c8aa3 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xce9dbaee request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0xce9eddc2 dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0xceae38b3 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xce73d3ff serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xce7e734b dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xce978ea6 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xce9c2f40 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xce9ecfe1 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xceae9c58 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb46eeb verify_signature EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu -EXPORT_SYMBOL_GPL vmlinux 0xced49c57 phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0xcec7988a skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee56260 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xcee9c15b dax_inode EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xcf1587c5 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0xcf2467a2 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xcf06b2f6 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xcf07b05d nvmem_layout_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xcf0fcf1a device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xcf4ba593 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xcf4db5f0 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xcf743f83 __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xcf87dba6 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xcf8b9b51 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xcf933f9c genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0xcfa46eac irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xcfa73708 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xcfa9a30a dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xcf35629e __traceiter_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xcf3d9141 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xcf43c08a __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xcf4e4a24 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xcf4fc865 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcf66275e virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xcf6b658e crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xcf748643 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xcf78ec68 fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0xcf8cf1d1 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xcf9123c6 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xcf91dcc0 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xcf99ba8d clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xcfa0c5cc wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcfab9998 irq_domain_alloc_irqs_parent EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc5c7e3 acpi_gpiochip_request_interrupts EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfcac39a get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xcfd1ec9c wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfeb0745 blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0xcfedc716 sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xcff65009 rcu_trc_cmpxchg_need_qs -EXPORT_SYMBOL_GPL vmlinux 0xcffbde04 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xcffe4ff6 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0xd013702d iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xcfdff4a3 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xd00eed80 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0xd017d08b driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0xd01d8ea2 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xd026ba1c pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0xd030a233 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xd017dcd2 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd02d3cda tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd0532b3c pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd0651513 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd04a6e94 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd05d18c0 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd0702380 serdev_device_write -EXPORT_SYMBOL_GPL vmlinux 0xd07031ad init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xd082df3b mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xd0735e2d ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xd086b4f0 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd08f52fc is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xd092c9c3 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xd0990b14 irq_domain_update_bus_token EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0aef3b1 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xd0af245d do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xd0b5bdff crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xd0baf6f8 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xd0a9e894 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xd0abcd73 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xd0c01719 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0ce7db8 device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xd0e820a2 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xd0ecc4e7 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd0e2a33d dm_put +EXPORT_SYMBOL_GPL vmlinux 0xd0e44eb7 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd0fa61db con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0fe15d0 crypto_stats_rng_generate -EXPORT_SYMBOL_GPL vmlinux 0xd107fe85 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xd10e2e08 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xd1138570 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xd1347ba2 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xd137d526 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xd0fe7c33 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xd10b51e0 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xd11bab18 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd13121b1 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xd134bc61 pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next -EXPORT_SYMBOL_GPL vmlinux 0xd14572ad usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd13e060c fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0xd13f5771 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd14528a8 devres_close_group EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd160523a ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0xd163779a crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xd1863c22 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd1882856 serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0xd1883342 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xd19df825 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0xd1aae3df blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xd1c2a0f3 switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd15ccb08 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0xd15d30f4 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd162de8f device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd17d441c gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xd1a86d03 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd1bb925b dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd1bd35e8 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0xd1c57d18 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xd1c59b2d device_add_software_node EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1cda723 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xd1d64b33 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xd1e846ec dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd1d4d96e pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd1da3137 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd1e8ca4a iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1eadaa4 dev_pm_genpd_synced_poweroff EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f3cef5 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0xd2011f56 trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xd2046140 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0xd209f0b5 usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xd20abc6b devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd200256c pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xd2034f53 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xd20fe97e ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain -EXPORT_SYMBOL_GPL vmlinux 0xd2225253 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xd222873e regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd23fef30 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0xd244c5bf __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xd246fb5b __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0xd248ccf2 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xd21bfb6f __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd2265595 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0xd22f5035 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd240c320 sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd256fba4 ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd263ac97 devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0xd2653879 acpi_get_and_request_gpiod EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2748b03 scsi_flush_work EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xd27e79e2 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd2896b8b devl_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2a8013f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xd29f9286 mbox_bind_client +EXPORT_SYMBOL_GPL vmlinux 0xd2a0b2d5 usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2bb4fac crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xd2bc0a11 __SCK__tp_func_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xd2d0d902 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0xd2d1a0dd compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd2ba442e mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xd2c67398 pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2e7192c vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xd2e62288 __traceiter_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xd2e86839 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xd302621b divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xd30377d8 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xd308c72f iov_iter_extract_pages +EXPORT_SYMBOL_GPL vmlinux 0xd30de944 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31f76f7 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd33abca6 iommu_device_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xd33ffee6 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0xd34af77a genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xd35483ec ata_sas_port_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd3613eba regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0xd3644026 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xd326300f thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0xd34d2cfb regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36906d2 devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0xd3741fb3 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0xd37463a1 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xd37a84fb usb_hcd_is_primary_hcd -EXPORT_SYMBOL_GPL vmlinux 0xd389d7a3 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xd38a7b0f fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xd38b24d1 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0xd38b9f5a ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0xd395d151 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xd3832037 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xd3901d33 acpi_dev_resource_address_space EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a92c33 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0xd3b0eb10 crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0xd3b32233 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0xd3ddc351 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd3a6c852 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd3bc2f70 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd3d46911 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd3e85f45 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd3e94020 pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd4005dd3 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd3eff7ed icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd3fa402f l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3fe6ea5 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404c57d __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd406888a blkg_conf_exit +EXPORT_SYMBOL_GPL vmlinux 0xd4129190 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xd416cfec perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0xd41f5c66 unwind_get_return_address EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count -EXPORT_SYMBOL_GPL vmlinux 0xd42862ce fwnode_usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd435695d pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xd435d622 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd457b4af fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xd4594a8b agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd44cc702 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xd44d6063 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd45a90d2 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0xd4670eb8 acpi_unregister_lps0_dev EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd476e7a2 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xd47f5f59 trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xd48a89a7 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xd49557a5 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xd4a32bdf devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0xd4a47704 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0xd4aecac5 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xd4afaa93 phy_set_media -EXPORT_SYMBOL_GPL vmlinux 0xd4b05d39 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xd47914fc tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd48a9773 drop_reasons_register_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd49e7ccb gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd4b0f585 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c75d11 __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0xd4d15e94 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xd4e1870d xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xd4d04d87 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xd4d0ed9f dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xd4df5e83 pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value -EXPORT_SYMBOL_GPL vmlinux 0xd4f0335c of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xd4f474f4 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xd4eb07cc acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xd4f18410 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd51b8813 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0xd51d6041 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xd4f91e06 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd4fa3415 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xd51d134d kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd530f633 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd538bcd9 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd57257fa pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0xd572b6e2 i2c_acpi_new_device_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xd58a4435 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xd58db576 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xd5978e99 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xd5980f11 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd55d4836 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xd5767b08 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xd57a9914 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd57f7f30 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd5a0c077 smp_ops -EXPORT_SYMBOL_GPL vmlinux 0xd5a2b792 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0xd5b6dc8b sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd5d5965f devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xd5d81418 ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xd5e252d5 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xd5e283fe sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0xd5ea6042 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xd59abcc8 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xd59b2b2d xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd5a5d732 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5a61a34 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xd5ab371c ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xd5b02baa rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd5b99363 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xd5c83d60 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xd5cbb8fe __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xd5e3cc89 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xd5e530df usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd5ec8ab7 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xd5f15bf0 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xd5f77448 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xd606ea1e irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xd60729fb espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xd61e00de rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xd62b4d8b wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xd62da201 pci_ims_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xd637b959 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd5f48a1b crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0xd5f71af5 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd6026eca dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xd61e0c93 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd658d486 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd6592a45 dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xd65be21d nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0xd663c21d extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd6501b61 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd6588884 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd65ea023 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xd6601330 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xd6649bb0 clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xd66ff92a smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6769d48 md_run -EXPORT_SYMBOL_GPL vmlinux 0xd678a24f ata_sff_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xd6858c7f ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xd68d3b74 platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xd69a7544 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd6865a21 thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0xd68711b0 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd6874fee mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xd687e7b0 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd69006f7 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd698f6b8 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xd6aaa6f9 __traceiter_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xd6b3cac2 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0xd6b4b910 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0xd6d18cc7 driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd6d7f506 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0xd6da6c67 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xd6ddaf11 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd6b79793 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xd6d686f7 xen_remap_vma_range EXPORT_SYMBOL_GPL vmlinux 0xd6df01f7 perf_get_hw_event_config -EXPORT_SYMBOL_GPL vmlinux 0xd6df75dd __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0xd6e0decf vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xd6e1102a devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xd6e7c715 devm_intel_scu_ipc_dev_get EXPORT_SYMBOL_GPL vmlinux 0xd6ed25f0 acpi_register_lps0_dev -EXPORT_SYMBOL_GPL vmlinux 0xd6f5e720 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0xd6fac579 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xd6fac771 nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xd6fcdafc uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xd6ee04fe acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xd6f3c1c1 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries -EXPORT_SYMBOL_GPL vmlinux 0xd7135406 replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0xd7187186 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xd72004ba power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xd700dcf5 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0xd705e179 rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7327e70 component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0xd7474ba0 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd75510f8 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd73631b8 get_device +EXPORT_SYMBOL_GPL vmlinux 0xd73ef7db __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd7421de2 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xd7493cdb vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd76476dc of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd79e7f75 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0xd79fc71a mbox_send_message -EXPORT_SYMBOL_GPL vmlinux 0xd7a0ed5d dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xd7a61914 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xd78a25b0 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xd78c1ea1 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xd78c267c badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xd79675a8 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xd79f33e2 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xd7a0800c bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xd7a7a324 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xd7b6f08d srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0xd7c3b34d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xd7b21543 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xd7b265c4 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xd7b9b83e dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd7bb4e03 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd7c185be tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xd7c33a07 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7e0f116 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xd7e1f5eb usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xd7ea97e1 clk_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xd7f05e77 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xd7fd7955 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xd7fda3c2 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0xd814816f device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xd81ec073 vcap_is_next_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd8381e1f __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0xd84262d3 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xd849098a phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xd7f76083 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xd800ba9f __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xd804cc1a kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd809f485 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xd81e1fcd dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xd820b201 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xd82d4de5 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xd83d3ba3 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd86c393c inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0xd8736674 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd87fa90a acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd85b6878 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd865cf0a acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xd87539da perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xd877bb04 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xd87cb8eb dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xd895487c iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0xd8a445b4 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0xd8ada48e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xd88850be gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd894f4e8 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xd89cc0e3 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd89ce8d0 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xd8a061da __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd8ae707a perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xd8b07bb6 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xd8bdc812 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd8bf1b77 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xd8bff181 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd8c1663e regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd8c595f4 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8d959a1 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd8f606a0 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0xd8d86302 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xd8d8759d vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90aa554 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xd90eda18 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xd8fd1db6 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xd8fd4e15 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xd9087fb5 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd910c81d aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xd9125221 blk_update_request EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd922c270 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xd922fc95 pm_generic_freeze_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd92d6be3 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xd92bc594 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd937263b pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xd93728b1 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0xd93a32b0 acpi_data_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xd95f9e4a sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd933bd90 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xd943d739 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xd95ee1d0 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd97b3999 iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xd98b7b20 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xd98c674f ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9945b58 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo -EXPORT_SYMBOL_GPL vmlinux 0xd99bceda blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xd9a5aec0 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0xd9adbf5c gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xd9afdc7a debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xd9b2b814 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0xd9b3ac52 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xd9b8a11a phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0xd9cc9ca8 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xd9d31a73 ncsi_unregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xd9da0785 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd9a41e2d __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd9a68ad2 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd9b0debb __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xd9bb2c13 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd9cb0851 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd9d0007d devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xd9dac089 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9ef16ca input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0xd9f84fa5 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xd9fc5d8b inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0xda1a2fc6 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xda12fdaf firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xda190019 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda2034be fat_attach EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda36505a fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0xda3924fd mmu_interval_notifier_insert -EXPORT_SYMBOL_GPL vmlinux 0xda4cf57f zone_device_page_init -EXPORT_SYMBOL_GPL vmlinux 0xda597cc3 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda45f931 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xda5406ec cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xda57d107 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xda6c8aac md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda87b907 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda94cd1a usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xda996678 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xda9dc7b3 unwind_next_frame EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa2272e usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdaa139dc tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdaa2f226 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xdaa8014e device_rename +EXPORT_SYMBOL_GPL vmlinux 0xdaad0ea5 md_run +EXPORT_SYMBOL_GPL vmlinux 0xdaae3610 acpi_dev_get_next_consumer_dev EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdac27a03 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xdad108c2 usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xdad6e9c4 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xdaed42a5 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb0d08c7 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xdb157b80 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xdad2fe9d nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xdad67e5f ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xdad79186 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdaf454ac usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xdb04b804 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xdb05d7b8 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xdb15dbc9 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page -EXPORT_SYMBOL_GPL vmlinux 0xdb21e321 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xdb20e371 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xdb4c03ff dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb4d06bc bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdb4e2c68 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xdb60c969 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xdb62b571 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb67e466 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0xdb6eaab6 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset -EXPORT_SYMBOL_GPL vmlinux 0xdb736ddd dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xdb64ddbf pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xdb77607b perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb990b95 iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll -EXPORT_SYMBOL_GPL vmlinux 0xdbbc3b9c dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xdbb20f5a icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xdbb4fde6 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xdbc34c02 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbc758b7 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xdbca9a18 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbd0f54d rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbdda5a0 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xdbee7425 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xdbe39235 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbf7fbd4 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdbff6666 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc0266f0 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc068483 da9052_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc15607b crypto_alloc_kpp -EXPORT_SYMBOL_GPL vmlinux 0xdc238ad0 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0xdc422d26 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdc080c55 __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xdc295194 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xdc3e203b ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xdc434752 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc560621 ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0xdc58272c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xdc618993 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xdc62e045 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc666955 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6c492d sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xdc6d6108 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xdc71648e regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc780f55 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc8816fd gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0xdc8bda66 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xdc88b627 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca61652 devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0xdca8fbe5 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0xdcd837a4 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdcd95132 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xdcddc3bc devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xdcaab948 intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdcb32c7c skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xdcb46d3d vcap_is_last_chain +EXPORT_SYMBOL_GPL vmlinux 0xdcbd24c5 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xdcbf4928 xhci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xdcc2b176 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xdccbd14f acpi_spi_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err +EXPORT_SYMBOL_GPL vmlinux 0xdcf1ea92 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xdd04d02c __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd1a26dd sfp_register_socket -EXPORT_SYMBOL_GPL vmlinux 0xdd2e2c6f devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0xdd343994 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xdd42a1a7 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0xdd469258 debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xdd54eb2e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xdd305445 devm_regulator_register EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd7ba752 xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xdd8489e9 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0xdd94de79 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xdd6f2349 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdd6fb3e4 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd992b3f gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh -EXPORT_SYMBOL_GPL vmlinux 0xddae7e15 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xdd9f30eb dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc04b5d dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0xddc78c37 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xddcaf354 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0xdde3822c __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdde58102 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xddcac622 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0xdddb3ec3 crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0xdde6b0c6 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xddf01eab xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde19d9b4 msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xde20744d icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xde2a152f vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xde21cee9 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xde29fb68 pci_alloc_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde31da59 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xde367612 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xde39c6b8 clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0xde4a629e lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0xde4d6abf phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xde4e62dd tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xde457d2c __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xde4b796c __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0xde515453 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xde5574cf x509_load_certificate_list +EXPORT_SYMBOL_GPL vmlinux 0xde660705 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde8436fc tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0xde95aa0e icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xde7534e8 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xde9236a9 platform_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea4699c tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdeba4323 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdebfa5ce regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xdec63cce nfs_ssc_client_tbl -EXPORT_SYMBOL_GPL vmlinux 0xded442b4 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0xded89fcb gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xded912c6 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0xdeddf397 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xdeb49d29 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xdebe0262 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xdec4734a irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xded6c04e of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xdef22fd0 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xdef92c3c tty_port_install EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf028052 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xdf0234bd ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xdf077759 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdf08fcbc switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f36df locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync +EXPORT_SYMBOL_GPL vmlinux 0xdf248a27 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2851d4 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdf2bf0de irq_chip_set_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack -EXPORT_SYMBOL_GPL vmlinux 0xdf382ed4 virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0xdf38d4f0 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf4d687b __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xdf52cd08 sdio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xdf5bca18 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf6703e7 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties +EXPORT_SYMBOL_GPL vmlinux 0xdf59a71c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xdf60cac9 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xdf6e2454 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xdf76dae1 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xdf7fb7e3 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdf936ceb ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0xdf9563a7 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0xdf95b394 mmu_interval_read_begin -EXPORT_SYMBOL_GPL vmlinux 0xdf9ee163 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xdfa85862 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdfbe7650 vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0xdfc59999 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xdfb8787b blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xdfca7da3 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd2167a gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0xdfeb8fda cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xdff96671 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0xdff9ae10 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe00f1396 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xe014d926 devlink_dpipe_entry_ctx_append -EXPORT_SYMBOL_GPL vmlinux 0xe01adbd4 usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe01fdaa6 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xdfe0f6d1 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xdff55e52 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xdfff83bb extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe009f0cf dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xe00c4682 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xe01a7c54 group_cpus_evenly +EXPORT_SYMBOL_GPL vmlinux 0xe01c5c6d __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe036f307 fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xe03deec5 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0xe0565138 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0xe05a8805 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xe05e04a9 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe0520307 usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe0604bdd iommu_sva_alloc_pasid -EXPORT_SYMBOL_GPL vmlinux 0xe0802603 blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0xe0809212 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0xe0809805 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0xe081bcd9 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe068a14d pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xe06eca24 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xe07b5741 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xe0820442 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xe082da68 __fscrypt_prepare_rename EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved -EXPORT_SYMBOL_GPL vmlinux 0xe0a45e7e fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xe0a8abe6 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0xe0ae87e1 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xe0b0d9dc dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xe0af7212 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b3d253 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xe0ba9de9 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0cc29aa tty_port_install EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute -EXPORT_SYMBOL_GPL vmlinux 0xe0de061f devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xe0d400e5 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xe0e6ef02 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0xe0eb48e4 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xe0efb080 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xe0f1b704 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0xe1055c71 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xe1084ce9 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xe0e7b995 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xe0eda6af uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xe0f628cb power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xe1023b23 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xe105343b fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe11085b7 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xe11c35b9 scsi_dh_set_params -EXPORT_SYMBOL_GPL vmlinux 0xe13e3110 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xe144262b register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe1467560 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xe14e9b46 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xe1536971 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0xe15da5af devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xe167fefd fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0xe18271d8 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xe19378dd sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe115bc68 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe1377ea7 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe16ac47f da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe16b1690 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe16ca0ee pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xe1712628 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe18c3cff fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xe1a52fe3 wp_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1a9c0d8 vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xe1aef618 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xe1b391e7 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xe1ba9ec9 smp_ops EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1beb6ff vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1c8d7a8 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xe1ce6455 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0xe1defd76 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0xe1e1f61f pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xe1eea27b iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0xe1f0eea8 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xe1f30273 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe208c5cb crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0xe2116661 pcim_doe_create_mb -EXPORT_SYMBOL_GPL vmlinux 0xe2177199 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xe2272dde devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe22a57f2 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xe22b78bd spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0xe2324d24 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xe1c947c1 device_add +EXPORT_SYMBOL_GPL vmlinux 0xe1ca809d device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xe1e9079f mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xe1fcac5c sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xe206ba93 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xe21416e4 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xe22ad149 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xe2300f01 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe236a17e apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0xe2418c26 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe23a170b led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xe23b1aae phy_pm_runtime_get EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe26cd3fb raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe267d7e7 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0xe2753a89 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xe2897c56 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xe292f9c0 genphy_c45_plca_set_cfg EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0xe2a5b7b1 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0xe2af4480 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0xe2b2fccd ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xe2a059da platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe2b2865b irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c7dd38 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe2c3edfb __list_lru_init EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2d7ac00 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0xe2e09003 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xe2e4506c pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2cf9af2 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe31288e5 dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xe31909e1 hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0xe32bd7b9 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xe3326bd7 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe34352b7 get_device -EXPORT_SYMBOL_GPL vmlinux 0xe348378c br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xe34e6ac8 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0xe34f8802 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0xe3638538 blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0xe36848ba crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xe36f4052 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xe378b7ff thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xe2f5fb16 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xe32eace5 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xe332dc98 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe338d95b serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xe35451e0 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xe3591276 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe35ec49b irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xe37acd18 vcap_tc_flower_handler_tcp_usage +EXPORT_SYMBOL_GPL vmlinux 0xe3819e75 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xe382c581 dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0xe3895d97 folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0xe391918a blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0xe3940678 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xe39117a3 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3924b62 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xe395b245 pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe39d2ce3 pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b752ca bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe3baad35 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c8498d __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3cdf1ce kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xe3da43ab component_release_of -EXPORT_SYMBOL_GPL vmlinux 0xe3de6e97 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e52798 battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast -EXPORT_SYMBOL_GPL vmlinux 0xe3e8e19b sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3f4050c is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe3f6d0e4 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xe40a7da2 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe411edad ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0xe41bb192 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0xe41d868a regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe40bbf22 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xe41b1a3e vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe428a0f2 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe42809f5 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xe42d0f1c devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xe42e3f99 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe434ab46 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0xe44ec428 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe4327880 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xe436e90c __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xe439d182 mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe43b36ba devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe441c0fd dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xe4686b8e ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xe46d73fb register_fprobe_ips -EXPORT_SYMBOL_GPL vmlinux 0xe46ec8c7 buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0xe473df94 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe47860e9 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe4798d7b __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe4835bd7 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0xe4889d1a iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0xe49027d9 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xe48af6d5 usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4984a37 acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0xe4a13dad cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0xe4a76648 irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xe4ad1456 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4a3fe02 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b7b77a nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4bc39db pinctrl_add_gpio_ranges EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c94bde __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xe4cd82ca vcap_rule_iter +EXPORT_SYMBOL_GPL vmlinux 0xe4c82157 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe4d022ff of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe4d98be4 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4f36e6b vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xe506c48f pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0xe50af769 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xe5175704 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0xe51e680f get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xe533c6a5 __traceiter_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xe538ca8e __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xe53f60fc acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe546786c led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xe5573477 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0xe5618604 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xe4ebb4d6 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xe4f2edb1 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f55199 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xe4f66271 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xe50388b3 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe51ddb9f xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xe531234a pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe53d846a d_same_name +EXPORT_SYMBOL_GPL vmlinux 0xe54ac14a device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xe55769b0 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xe55f5199 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe55f98e7 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5781a2a fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe57d2048 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xe582cd85 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xe58741d8 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xe587fe50 __tracepoint_ipi_send_cpumask EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5892724 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xe58c63f5 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe593951d fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xe59ad475 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0xe59fd932 cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe5af9e3d ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0xe5b4ce4f screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe5b36496 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c93bcc fuse_send_init EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5d076fc pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0xe5da1a34 firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xe5ddee56 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0xe5e7e75e scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xe5d13a0f irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xe5d3b280 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xe5d68d55 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xe5df94bf rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xe5e05ddf devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe5e8dbff rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe5f6c80c iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xe5f7ffaa phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe60e9555 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0xe6132a09 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe62308bb edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xe62358a4 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6322b8d register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0xe66157d0 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xe674aa8f __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xe683841e crypto_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xe6a20090 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xe6a39a70 strp_process -EXPORT_SYMBOL_GPL vmlinux 0xe6aec2e4 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log -EXPORT_SYMBOL_GPL vmlinux 0xe6bf3fb4 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xe6e128a1 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe658854e device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe6628f05 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xe676202f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xe67e98ed mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xe6875ac5 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xe688fe81 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xe68b0718 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xe6b7198f pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xe6c415e9 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xe6cecf27 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6d871d4 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6edf7eb regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0xe6f057c0 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xe6f3faae of_led_get EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe6f7e593 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6ffc61b usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe70333c1 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xe70221d7 cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0xe70740f8 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xe70e7835 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xe716c515 phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe7256a42 vp_legacy_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xe7336463 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0xe733f68c ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xe7383c82 dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xe742df5a class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe72ea210 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xe7465f43 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xe74b4411 dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe768901c pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76dab64 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xe770d607 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask -EXPORT_SYMBOL_GPL vmlinux 0xe7824272 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe781bc9f ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe793f8b5 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0xe7993f81 class_interface_register EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get -EXPORT_SYMBOL_GPL vmlinux 0xe7b4a3d2 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xe7a7cf56 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xe7a8fb75 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 -EXPORT_SYMBOL_GPL vmlinux 0xe7ccabb8 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xe7cd5e54 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xe7c71a0f sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe7d416ea mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7e8c19c find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xe7eec3a2 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xe8012e87 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0xe8142abe sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7e55916 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xe7f8a95a devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xe80167a6 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xe8035e7c acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0xe8091c2d sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xe809c2bd lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xe811cbd2 xen_register_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81a527e __traceiter_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xe829af54 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xe82b2fdc pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xe8376b2f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xe81b7213 failover_register EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation -EXPORT_SYMBOL_GPL vmlinux 0xe8466457 devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8539421 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xe85befd3 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xe85f90f9 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xe8607819 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xe8522d38 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0xe852668e irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xe85f8e3e blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xe862a861 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe8710850 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xe87e1b4b sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe89ed387 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0xe8ae9a04 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0xe8b5e85e powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xe864e68f device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe86ed5e4 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xe8979afb mas_prev_range +EXPORT_SYMBOL_GPL vmlinux 0xe898bfb0 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xe8a4d7c6 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe8a649d0 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add +EXPORT_SYMBOL_GPL vmlinux 0xe8b5d72b fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c37a1b ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xe8cfd8b1 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xe8d18451 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8ea794a i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xe90c8bc1 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xe8f7ae3e __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe905a241 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xe908e6c8 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe90a0453 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xe91121bf devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe913dbe7 percpu_is_read_locked -EXPORT_SYMBOL_GPL vmlinux 0xe91a6712 serdev_device_set_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xe921d647 clk_hw_init_rate_request -EXPORT_SYMBOL_GPL vmlinux 0xe92470f2 devm_clk_hw_register_fixed_factor_index -EXPORT_SYMBOL_GPL vmlinux 0xe92a1e26 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0xe9365400 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xe9377c5a crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xe936b50b is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe963ecdd relay_close -EXPORT_SYMBOL_GPL vmlinux 0xe96ec5ac blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xe9851db2 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xe9947dff crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xe997dd48 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0xe99e39ba class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xe94aa1ea blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xe987f41f __thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0xe98a3227 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe98c8274 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xe9b283c3 usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xe9c599a2 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xe9cc0f0e max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xe9c0cb02 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9cfb952 fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9dbd422 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe9eddd1e gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xe9f0ec63 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe9ea415d ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe9f26980 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe9f3505f scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea076e01 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0xea08d7c7 serial8250_read_char EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea22534e serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xea325f75 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xea312c8c serdev_acpi_get_uart_resource EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea3d0630 usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0xea3e8d8a __dev_fwnode_const -EXPORT_SYMBOL_GPL vmlinux 0xea4621fe subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0xea5bc66f debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0xea5c56da gpiod_get_direction -EXPORT_SYMBOL_GPL vmlinux 0xea8bbe33 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0xeab46e2e iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0xeac805ef ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xeacdb2f0 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xea414556 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xea466b60 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xea525d32 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0xea585d43 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0xea5a186a extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xea6388fe usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xea65b2e0 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xea69d7d7 asm_exc_nmi_kvm_vmx +EXPORT_SYMBOL_GPL vmlinux 0xea6a9d34 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xea6caeb2 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xea76038e acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xea79b572 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea8919e4 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xeaa8d9a8 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0xeac0074e device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae5fc66 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xeae8a5a6 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xeaec6ae6 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xeaedcc70 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL vmlinux 0xeafa4b40 iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xeb06c05c register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0xeb0e43e7 vp_legacy_set_features -EXPORT_SYMBOL_GPL vmlinux 0xeb149fdc pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xeb1b0511 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xeb23d462 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xeb25aea6 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0xeb3963e0 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0xeb3b8ee1 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0xeb423167 usb_string -EXPORT_SYMBOL_GPL vmlinux 0xeb4c6bdd device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xeb5b8e76 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0xeb67518a crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xeb78512b __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0xeb7d2739 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xeb080053 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb12f4aa bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xeb20016a sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xeb2777b8 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xeb43202d usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xeb4a4842 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xeb507c14 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xeb52f746 __SCT__tp_func_console +EXPORT_SYMBOL_GPL vmlinux 0xeb531d3b rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xeb5da109 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xeb6fad10 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices -EXPORT_SYMBOL_GPL vmlinux 0xeb840847 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xeb881373 device_register +EXPORT_SYMBOL_GPL vmlinux 0xeb918e5e __fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xeba78298 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xebac97f9 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0xebb1f830 acpi_quirk_skip_gpio_event_handlers -EXPORT_SYMBOL_GPL vmlinux 0xebb63b9e ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0xebb7a150 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xebbb2af4 devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xebcc8184 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xebccbf23 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xebd0f01a usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xebd2c398 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebd5d0bc crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xebd9a432 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xebdb3ab4 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xebff1cba xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xec08fa11 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xec28584e n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xec32207d device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xec33d48d clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0xec3c4fef tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xec3f6d73 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0xec42a492 pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xec47f813 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xebe3209b validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xebe35189 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xebe74879 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xec119d22 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xec27d1e2 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xec2fa87c scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xec3653c7 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xec55efea spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec6c9465 extcon_get_property EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state -EXPORT_SYMBOL_GPL vmlinux 0xec8ecf03 icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0xec9c3756 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0xec9c9e70 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xec7947cd proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xec87d8c0 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xec8fe179 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xec9d0f09 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xec9de8b7 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xecab6c70 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xecb3a438 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecc38dbf device_add -EXPORT_SYMBOL_GPL vmlinux 0xecccd7c2 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xeccd340b iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0xecd063cd iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xeccc06ec nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xecce5d8b dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xecd591e4 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecfded30 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xed0d0be8 usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0xed252222 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xed2c0c75 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xecf2818a serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xed0459df cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xed0e201d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xed12f574 devl_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xed1c3a96 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xed23eef4 rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed2f31bb device_initialize -EXPORT_SYMBOL_GPL vmlinux 0xed32093c perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xed3316a9 device_property_present EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed408956 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xed46135c dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0xed511b35 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xed6b0c79 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xed6d7b0f nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0xed72c102 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xed7a2b96 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xed7e14f1 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xed812fb5 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0xed815a4a fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xed3b7785 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xed3f341c devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xed43d3d9 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0xed4d5e6a pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xed64d915 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xed84cd9d crypto_sig_set_privkey EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed9e1c42 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0xed9e44a9 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0xeda4de96 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xeda52c51 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xedaf685d gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xedbd62ac bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd28ad5 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xeddc3f1a gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xede3d706 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xed9ba5dd tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xeda1cd13 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xedacfd69 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xedc425e6 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xedc45e67 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xedc77106 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xedd1feee cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xedd31aa1 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeddbc39f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xedde9bb8 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xede96218 spi_add_device EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedef8f47 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0xedf04ae9 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xee014552 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xee0e6408 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xee0fc537 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xedec60b0 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xededc604 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xee0a9f77 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee2f57c5 dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee395217 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xee48783f phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0xee504839 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xee3f32dc tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xee41cd9b crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xee42947a devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xee4e43ba devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee7d540a ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0xee847388 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0xee91a0e5 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xeea49f4b led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xee77e6be gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0xeea76283 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xeeae95a3 intel_pinctrl_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xeeb08fb5 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xeeb15ce6 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0xeec528bd __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xeec5ce28 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0xeeccb87e irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0xeed24c98 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0xeedc1c39 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xeed23f10 is_dock_device EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0xeee3bb46 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xeee3d204 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xeede7613 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent -EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeee8f92f md_stop +EXPORT_SYMBOL_GPL vmlinux 0xeeedd22f regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xeefae747 __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xeefdb276 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xef0eaa94 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0xef184372 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xef064ff4 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xef158071 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request -EXPORT_SYMBOL_GPL vmlinux 0xef24f865 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef30cb0f fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xef33e16a devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef390a64 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xef391794 xfrm_bpf_md_dst +EXPORT_SYMBOL_GPL vmlinux 0xef40a367 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef474c71 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xef4f65b7 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xef4d76c5 led_classdev_suspend EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef60055a input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef750a53 __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0xef790201 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule +EXPORT_SYMBOL_GPL vmlinux 0xef92e824 serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xefa29c03 __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xef97c081 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xef9bddfc fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xef9d4a1a dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb2e6ce devm_regulator_get_enable -EXPORT_SYMBOL_GPL vmlinux 0xefe925f9 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xefa6cf6c relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xefa98057 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xefabc85c serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xefaf5756 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xefb66190 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xefd4d497 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xefdbfb29 rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefeb658f genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xf025112f __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xf03897c2 ip_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0xf03e6347 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xf000ba5c regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xf000f8e4 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xf012a4fa devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xf02bde5f devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf02d27ba syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf03cca91 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xf042f977 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf043c215 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf0451ea8 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0xf04e022f bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06c2c5e md_start -EXPORT_SYMBOL_GPL vmlinux 0xf07a09a9 switchdev_handle_fdb_event_to_device -EXPORT_SYMBOL_GPL vmlinux 0xf07cfff3 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf082c9e3 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xf071c8e0 devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0xf0790a7e fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xf07fcd54 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf083c6bc bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf08bf77b shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf096f823 __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xf09a5216 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xf09aefd8 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf0a91e52 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xf0c238d9 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xf0d1d3d8 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xf0d27d6c phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0xf0d4d340 agp_remove_bridge -EXPORT_SYMBOL_GPL vmlinux 0xf0f78800 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xf0c9b177 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf0d3ac74 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xf0dfc80c netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf0e19581 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xf0eb9cd5 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf0f4021f xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xf0fd0b61 x86_perf_get_lbr -EXPORT_SYMBOL_GPL vmlinux 0xf100887b devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf108235a crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf108745d led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf10dcb91 adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xf123b4ed dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0xf125d3bf skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xf131e5ce sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf149a491 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0xf14fca8c exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0xf1553ef4 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xf167d13d pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0xf171fb0a devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xf1824c36 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xf108d294 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate +EXPORT_SYMBOL_GPL vmlinux 0xf12f7e1a dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xf13aa8e6 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf147f4c7 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xf14a8b58 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf1624b90 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xf165c906 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf175d9d5 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xf17c2a63 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xf184aa48 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1854766 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf1a06b73 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xf1c67ca5 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xf194eb96 pci_intx EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags -EXPORT_SYMBOL_GPL vmlinux 0xf1d02798 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf1d6e377 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xf1da90bc regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf1df7c84 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xf1ec0c85 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0xf1f425c0 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0xf1ff73fd ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xf207c21f fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xf208e3f8 cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0xf214b4d6 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0xf2032ab3 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xf203387c trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf21f90c6 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0xf2309918 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xf2319326 tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0xf25bbe05 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0xf262c6f2 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf226e290 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xf237a3b3 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xf24fab22 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf251c947 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xf252ad63 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf2711fc8 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf28a235b clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2a235c8 fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xf2aa8ee2 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xf29b96cb devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf29ece6f skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xf2a01638 irq_set_chained_handler_and_data EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b343f1 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf2c1d20d pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xf2c41de2 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xf2e73dd6 inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xf2e99a72 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xf2f40128 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xf2d3536b mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf2f44331 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xf2fb3282 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xf2fb5af2 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info -EXPORT_SYMBOL_GPL vmlinux 0xf319cd4d usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31b7631 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf330bd0c sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf335537d iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xf33c2f36 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf340af06 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xf3425112 hte_ts_get EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf35a459f put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0xf35b2298 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xf35f46f8 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xf3684071 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf3558a5d usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xf3589884 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xf3607d70 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xf36149f2 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf374c54d strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37e8b42 __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf38bf5cd crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0xf39de1ec xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xf382910e alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xf38c1d7e devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xf395616e i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3a193fb wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xf3a56bd3 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xf3b1f180 tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs -EXPORT_SYMBOL_GPL vmlinux 0xf3b4f465 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3bda514 __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0xf3c79938 dw_pcie_link_up -EXPORT_SYMBOL_GPL vmlinux 0xf3cb246c device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3ccc182 devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0xf3d140f1 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xf3e5c18f skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0xf3eb8a0c __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xf4093094 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0xf41134df dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xf4113f97 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0xf426e0b5 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0xf431b0ec nf_route -EXPORT_SYMBOL_GPL vmlinux 0xf4485e88 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0xf45910d7 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xf4593a60 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0xf45b0450 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xf3cab17d cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xf3f35744 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xf40523c1 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xf4303973 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xf4347103 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf43ab567 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xf43af1c2 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xf441e673 device_create +EXPORT_SYMBOL_GPL vmlinux 0xf44ba3cc gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xf44df5eb __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xf456e302 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xf458cbe5 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46ae26c follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xf46e913e xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47ce240 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0xf47cea59 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4810701 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0xf483c153 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0xf48f7b89 sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0xf49508df cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xf4aece86 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf485b74a adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf4887699 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xf4890915 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xf49e0f16 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xf4a0e07c crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4bcc9df regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xf4c5c2c0 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0xf4c89967 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xf4c0a81b usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xf4c481c7 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xf4c9620c ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d8cbb8 rio_request_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system -EXPORT_SYMBOL_GPL vmlinux 0xf4ec39d3 __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xf4f0c5dd __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xf50c0725 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xf5371b8b crypto_stats_init -EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0xf547dbaa pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xf50f5015 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf515895d irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xf5350f3c devres_find +EXPORT_SYMBOL_GPL vmlinux 0xf53fe1b2 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xf542d968 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf544151a __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf54b088c bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf54e946f gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xf54c09da __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xf54fa0b0 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf558b57e rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xf55f437e sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xf59f5afa irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf55e1dca gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xf5863f0b dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xf5878cc7 fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0xf5a02dd3 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range -EXPORT_SYMBOL_GPL vmlinux 0xf5a48f20 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0xf5a5b098 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xf5a652b8 iomap_file_buffered_write_punch_delalloc EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a78291 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xf5b4a16c ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xf5b6195e pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xf5c586b9 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xf5d5213e blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf5d6651b inet_send_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf5db55fc dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xf5e32a3a gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0xf5ea1ab9 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf5aca61d blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xf5b52d5c hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xf5b7fd3e __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xf5b8d10f filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0xf5b99a33 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf5d5aa0e spi_sync EXPORT_SYMBOL_GPL vmlinux 0xf5f214b9 thermal_clear_package_intr_status EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf5f6b4f6 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0xf5ff2d1b dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0xf61d244e devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xf63c0d23 fpu_enable_guest_xfd_features -EXPORT_SYMBOL_GPL vmlinux 0xf649cca8 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf604f534 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xf6063f22 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xf61176f3 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xf6132089 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf615ddf9 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xf62571d3 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xf62c5af6 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf63f003a acpi_gpio_get_io_resource EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64f41de tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf6512dca dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xf6526908 gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0xf662aeb9 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xf66388bd gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xf650d1b6 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf65322c4 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf673b8b8 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0xf6799cb3 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0xf69c734b ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xf69cf663 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf6735373 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf676a9fc of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xf67d2b24 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xf683a3d3 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xf69e2c5a __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6be1bd7 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf6a50036 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xf6b2a01e __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c86dce __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6ca3f8b serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xf6cabfd8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf6db8ec0 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6fb9adc __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xf707a3fd x86_platform -EXPORT_SYMBOL_GPL vmlinux 0xf7113098 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0xf71c549f devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf6eef732 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf711f4dc __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xf712c386 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf71e9141 component_unbind_all EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72f4d21 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0xf73d5007 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0xf74467f8 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf72a7805 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf73eb6de pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xf73eba9e device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0xf7494dd8 acpi_storage_d3 EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74ac337 bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74ca2e5 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf7559e36 of_css -EXPORT_SYMBOL_GPL vmlinux 0xf76217d4 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0xf765be3e dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf76414b3 direct_write_fallback +EXPORT_SYMBOL_GPL vmlinux 0xf765b4e5 dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data -EXPORT_SYMBOL_GPL vmlinux 0xf772ec71 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xf7735777 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xf774a83e inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xf77db297 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf77bff87 sbitmap_queue_show EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7857111 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf78de709 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0xf7a76ae3 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf7914474 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf79c7bcd irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xf79e908d adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xf7a49045 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xf7a82900 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init -EXPORT_SYMBOL_GPL vmlinux 0xf7b1e61c extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7ec58ce blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0xf7f8893f usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0xf7fbdf32 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xf7c7b208 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xf7cda565 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7cfc128 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xf7fae124 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xf8063013 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf80cc5f7 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xf8159f2b rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xf817ced3 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf81c26e6 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf81ee9f5 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xf8231c8a badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0xf8253576 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xf825d45e tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf832bafb extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0xf8437d9a fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xf8513da7 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xf8345e39 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0xf83aac84 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xf840ea85 blkcg_root_css EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xf87bf03c rio_unmap_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xf87c5900 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xf856a967 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf857367c __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xf85af929 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xf85ea443 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xf866a783 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xf86cdf96 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xf8776ebb da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf87a696b pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xf87dd816 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf884cd26 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xf887671f vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xf88d609b metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xf8942c06 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xf8a0571e kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0xf8ba94cd __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xf8bb9fab sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xf8a2b062 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xf8a6e350 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xf8a8bdd2 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xf8a933fc crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xf8bc0beb clear_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xf8df7bce gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xf8ce4119 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf8d68e4e __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xf8d7c745 vcap_lookup_rule_by_cookie EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr -EXPORT_SYMBOL_GPL vmlinux 0xf9048729 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xf92a7782 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xf93de774 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0xf94b0aec serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xf903b9cf tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xf9072204 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xf90f01e7 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xf9101c9b __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf92f49e4 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xf949990f pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95500d5 vcap_enable_lookups EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf967a17d netdev_sw_irq_coalesce_default_on -EXPORT_SYMBOL_GPL vmlinux 0xf9998f5b bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xf97de8f3 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xf98e724c regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xf99cee25 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9b53a8f fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0xf9b5cc8c generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xf9cc4298 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xf9dc1953 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xf9fc622b __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0xfa13fe98 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xfa146301 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf9d3cb34 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xf9d82bb1 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xf9e91ce8 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf9ea3f7a bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xf9ef9569 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xf9f12a22 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xfa0c9826 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0xfa266bd7 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0xfa224b96 ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule -EXPORT_SYMBOL_GPL vmlinux 0xfa3fbfd0 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xfa38870a clk_register EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa4f3ddc fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xfa4fa497 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfa56b695 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xfa57d7a9 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa6a2c54 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xfa713873 xenbus_watch_path -EXPORT_SYMBOL_GPL vmlinux 0xfa79a274 fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0xfa840577 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0xfa8ea827 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0xfa991309 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xfaabaf77 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xfa66f705 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xfa79bbda balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa7b36c4 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xfa98c92d of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xfaa54b29 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfaa9b711 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab52fab hv_set_register EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfacb1866 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0xfad9976e pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0xfab5d35d cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xfab77f16 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xfab869c1 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xfac0ca11 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xfad8f9d9 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfaec8b61 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xfb095d3a inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0xfb1939f1 edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xfb1a5705 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xfb200735 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xfadea21c p2sb_bar +EXPORT_SYMBOL_GPL vmlinux 0xfaea5bb0 acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xfaec800b ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xfafcdd02 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xfb07f680 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xfb190a86 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xfb1df559 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xfb2f9f3a __netif_set_xps_queue EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb34ae1c device_iommu_capable -EXPORT_SYMBOL_GPL vmlinux 0xfb3f07ca devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xfb42b55c acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xfb4842b3 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xfb5084f0 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xfb5d3bed usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfb35890a x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xfb3aa750 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xfb4cd197 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xfb4f2c42 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb615193 iommu_map_atomic EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb712ebc xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xfb764e57 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0xfb8e2af3 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfbae1afe sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0xfbbbd836 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xfb746b1a iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0xfb74e910 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfb830233 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfb834677 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xfb89717a device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xfb9e80d6 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xfb9fc975 vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xfbb59fdb platform_get_mem_or_io EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbdc7f2f scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xfbf85add phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xfbcc63b8 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xfbcf9cfa devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xfbd31a2d fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xfbd50a00 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfbdc9a64 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfbde4e1b tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xfbdfadd6 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc00e022 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc131423 xfrm_unregister_translator -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc0f5c40 decrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc412055 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0xfc6863bf rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xfc82994c acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xfc892240 free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0xfc8bcae2 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xfc497b40 devl_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc4df8cb genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xfc4e5fc0 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfc5957a9 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xfc792ee2 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xfc82f8e5 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xfc98c8dc xen_percpu_upcall -EXPORT_SYMBOL_GPL vmlinux 0xfcb40219 __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xfc9fabe6 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfca03181 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xfca77270 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xfcadfcea __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xfcbf384f __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc04718 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc45eb0 skb_morph EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xfcde5907 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0xfce4daa5 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xfceebf9d ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xfcda4e5a xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xfcde9b66 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xfce18b20 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xfce7da2b crypto_akcipher_sync_decrypt EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfd014e7b devlink_net -EXPORT_SYMBOL_GPL vmlinux 0xfd12afa0 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0xfd1cc37c vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xfd3f999d devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xfd4d7fc0 rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xfd629222 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0xfd69eb2c transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xfd00e738 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xfd07189b lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd07a94a ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfd182bc6 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xfd22630a debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xfd232780 pci_epc_linkdown +EXPORT_SYMBOL_GPL vmlinux 0xfd4eb4cb phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xfd54b86a devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable -EXPORT_SYMBOL_GPL vmlinux 0xfd73a908 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xfd741ac5 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xfd756bfc devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd8a1d43 __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xfd9e9067 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xfda05c30 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd9da548 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xfd9df1ef ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc21065 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xfdcbcf26 ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xfdcee763 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0xfdd42ae1 iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xfdd68b36 sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xfddc4dc4 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0xfde093ec pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xfde208ce wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xfdbf31c8 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xfdc62d6e kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xfdd6d4fd fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe08bce5 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xfe02c037 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfe089412 vp_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe1780d8 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe1ed648 devm_device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0xfe202707 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xfe1dffda relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xfe28961e usb_acpi_port_lpm_incapable EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3df53c debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xfe3cd3a2 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xfe3ded48 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xfe3ef2e0 uart_set_options EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe618642 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0xfe67307b phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xfe6a85c9 acpi_bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xfe71e205 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xfe5a122c pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xfe5f53d1 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xfe693f02 srcu_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xfe7355ef cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xfe869a4a devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xfe8b890e blk_crypto_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free -EXPORT_SYMBOL_GPL vmlinux 0xfea416b8 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xfeae9c74 wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xfebbd2e1 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xfec8b8d1 pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xfecbd0b1 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfec994b7 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xfec9f628 genphy_c45_fast_retrain EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed41ef4 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0xfedbeaab irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0xfee61160 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xfed1edc3 acpi_quirk_skip_i2c_client_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xfee3a74c pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfee69cba blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xfeea35d0 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfeeb4c1f gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfeec3489 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfefc0a0f dsa_stubs +EXPORT_SYMBOL_GPL vmlinux 0xff052117 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xff059ae5 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0bfef9 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xff089412 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xff0f657c acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff30b1cf _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xff332db8 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff34b0a9 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xff370732 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff4ecbaa nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xff5dba7d ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0xff626853 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xff6caf22 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xff795490 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xff537417 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xff6e45e1 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff7fc364 anon_transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff8b8adc devlink_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable -EXPORT_SYMBOL_GPL vmlinux 0xff8eaaed usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0xff92b723 ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xff9ab5fc usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xff90f32a debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa0f372 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xffa69730 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffb3adf1 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0xffbdb210 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xffddb157 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xffe1e36d __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xfff70e56 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xffccc3d3 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0xffd33469 thermal_acpi_passive_trip_temp +EXPORT_SYMBOL_GPL vmlinux 0xffea3dfc perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xffeec10f __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xfff776d2 pm_clk_add FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +FW_CS_DSP EXPORT_SYMBOL_GPL 0x080d524d cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x08f7acd4 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1051abb5 cs_dsp_run drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x1deabad4 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x21a93546 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x27670512 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x30a1c442 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x3165fc97 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x346f277b cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x3c645165 cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x3e0c9924 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x4beddbcc cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x4d6c1600 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1863a834 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1be0fb46 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x22bcf159 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x295a10b3 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3121f1c0 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3e9a9a39 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4ad7919a cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4ae27be0 cs_dsp_remove drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x59f3edaa cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x5f61698c cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x526947f7 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5bade5ac cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x66c57483 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x684120c7 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7af2a5ba cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x80c1b5c2 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x99208ea9 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6fefe834 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x72cceace cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x822a6352 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x96f9185c cs_dsp_stop drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xa66009b7 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xaba1e0cb cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xaa28fbd5 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xbae0a717 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xc8709a8f cs_dsp_run drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xd210f8b1 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xdaf76860 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xdb84363a cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xde5f1080 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfde4aeb5 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0x5e486199 hwmon_device_register_for_thermal vmlinux -I8255 EXPORT_SYMBOL_GPL 0x1ef35449 i8255_mode0_output drivers/gpio/gpio-i8255 -I8255 EXPORT_SYMBOL_GPL 0x77c830ef i8255_state_init drivers/gpio/gpio-i8255 -I8255 EXPORT_SYMBOL_GPL 0x7fe2aa71 i8255_direction_input drivers/gpio/gpio-i8255 -I8255 EXPORT_SYMBOL_GPL 0xa62b7b4d i8255_set drivers/gpio/gpio-i8255 -I8255 EXPORT_SYMBOL_GPL 0xb7712fc5 i8255_direction_output drivers/gpio/gpio-i8255 -I8255 EXPORT_SYMBOL_GPL 0xd0600412 i8255_get_direction drivers/gpio/gpio-i8255 -I8255 EXPORT_SYMBOL_GPL 0xd5e79ff5 i8255_get drivers/gpio/gpio-i8255 -I8255 EXPORT_SYMBOL_GPL 0xf2519b77 i8255_set_multiple drivers/gpio/gpio-i8255 -I8255 EXPORT_SYMBOL_GPL 0xffed47ff i8255_get_multiple drivers/gpio/gpio-i8255 -I915_GVT EXPORT_SYMBOL_GPL 0x07cb0d18 i915_gem_object_init drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x0d36e885 i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x10887040 __intel_context_do_pin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x1501dacb i915_request_wait drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x16d532f3 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x299d36ae i915_reserve_fence drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x2cf8219d _i915_vma_move_to_active drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x34f4c80d intel_gvt_set_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x3596f46d i915_unreserve_fence drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x393d2523 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x397fc9c2 __px_dma drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x41be0ff1 __intel_context_do_unpin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x48b2b4db i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x4bab1ba9 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x4c8e3bdb intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x55eeb0cd intel_gvt_clear_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x753df463 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x768c0ee1 __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x789ad323 i915_ppgtt_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x78fc9189 i915_gem_prime_export drivers/gpu/drm/i915/i915 +FW_CS_DSP EXPORT_SYMBOL_GPL 0xcb3530cf cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xdf993b17 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xe2ec8815 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xe6270135 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +GPIO_TANGIER EXPORT_SYMBOL_GPL 0x12d92138 tng_gpio_suspend drivers/gpio/gpio-tangier +GPIO_TANGIER EXPORT_SYMBOL_GPL 0x3353630f devm_tng_gpio_probe drivers/gpio/gpio-tangier +GPIO_TANGIER EXPORT_SYMBOL_GPL 0x4c7a1f3d tng_gpio_resume drivers/gpio/gpio-tangier +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xe5502ef3 hwmon_device_register_for_thermal vmlinux +I8255 EXPORT_SYMBOL_GPL 0xbec2b21d devm_i8255_regmap_register drivers/gpio/gpio-i8255 +I915_GVT EXPORT_SYMBOL_GPL 0x0234ce57 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x09b252e3 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x09e15ceb shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0a6fd06b i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x11d1c2c8 i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1e39a280 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2080216c __intel_context_do_pin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2c60bd4b __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2d9c5908 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x38b91c5b i915_fence_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x3ac2bf37 __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x3ce56341 i915_request_wait drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x3f5fe15f i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x42e954b4 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4b07b7d0 intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4cceeae7 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x515e7f0e i915_request_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x55bf94ef i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7bf92e6e intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7e15f7ea i915_gem_prime_export drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x890fc889 i915_vm_release drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x9dcfe545 i915_gem_object_alloc drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xa9433f38 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xa9bbdd91 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xb32daf21 shmem_unpin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xc6456493 __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xc8bd9186 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xd03c2ee4 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xd11ba01f i915_request_add drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xd385ce31 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xee442a04 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xf2f88e4d shmem_pin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xf41438ec intel_ring_begin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xf8d0fab6 i915_request_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xf9f76701 intel_runtime_pm_get drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xfa638690 intel_context_create drivers/gpu/drm/i915/i915 -IDXD EXPORT_SYMBOL_GPL 0x5d9a6993 dsa_bus_type drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x77a38315 idxd_dmaengine_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xb617e896 idxd_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xbd2e521d idxd_driver_unregister drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0xd6b6a00a idxd_user_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0xe22f6696 __idxd_driver_register drivers/dma/idxd/idxd_bus -IIO_AD5592R EXPORT_SYMBOL_GPL 0x5144873a ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0x71ab0de5 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x6cd297c6 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0xac2cfc17 ad5686_remove drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x20e12b80 ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0x78abe136 ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x2dbb1972 ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0xb9897aa2 ad7606_probe drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x70bf4016 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0x8c9180ac __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x41a8e9dc __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5292152b adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8aed65ad __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8c7120c3 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa2af517c __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xadbf6a10 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbad12640 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc0f313be devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc1a727ab adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd57a0948 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xc5958760 __adis_reset drivers/iio/imu/adis_lib -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x63d2b1f5 adxl31x_chip_info drivers/iio/accel/adxl313_core +I915_GVT EXPORT_SYMBOL_GPL 0x8f75876a intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x911a4fde intel_gvt_set_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x93428ca1 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x962f9890 shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x9f8a5dd2 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xa0535078 intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc59fbf12 __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc5c6455c i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xcb9bcd0c __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xcf561720 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd8f3b1d7 i915_ppgtt_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdb242eac i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdbc59721 i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdbd10728 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xeaaf2d8d i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xfef9bd5b intel_context_create drivers/gpu/drm/i915/i915 +IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x60b2e814 idle_inject_register vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x85c2b7eb idle_inject_stop vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x95e93783 idle_inject_set_latency vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0xa66c1ea7 idle_inject_register_full vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0xc18575af idle_inject_set_duration vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux +IDXD EXPORT_SYMBOL_GPL 0x6a43be64 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x9c58b579 __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xdf5d7340 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xe2e69563 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xe5e7d50e dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xf496c182 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IIO_AD5592R EXPORT_SYMBOL_GPL 0x18e49a85 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xfe0ef28f ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x20f64b97 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x9dd13384 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0xb6e0f30e ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xceb0bfe7 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x2b0ad2e5 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xfc624bb7 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0xc9522b23 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xe1c3d7b1 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x18be4eda __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x25a00113 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x29f32a5a __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x418601e4 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4de5f818 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x56c36187 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x79c6c861 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9577b922 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbdc9568c __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf577e129 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xe4b43c82 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x276e2669 adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x75f0d4ad adxl31x_chip_info drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core -IIO_ADXL313 EXPORT_SYMBOL_GPL 0xb70c47c3 adxl313_core_probe drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core -IIO_ADXL355 EXPORT_SYMBOL_GPL 0x02d6d6db adxl355_core_probe drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x87fcdbd5 adxl355_core_probe drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL367 EXPORT_SYMBOL_GPL 0xccdf7054 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x5f5004f3 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0xe8e88300 adxl372_probe drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x01a1a018 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1ace4069 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x352dbe6b ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x68375f91 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6feb1d58 ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xaa7aa540 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbd8f2692 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbef4e196 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xdd7606fb ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xeba6b822 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0x76909d7f bma400_probe drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0xd0506653 bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x1145f5dd bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x3bfb923d bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xdf1ccca2 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xed8365c0 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x584f47bd bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x787d5679 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xbe354c8f bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xcd917364 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0x673190de bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0x7af065ee bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x2688bb0f bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x94455dcc bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xbd4032ea bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xee1b2d22 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x83ba80f6 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xfa75a300 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x21494cfd adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x3020c442 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x124e5188 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x3175a871 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x376a3cde ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x63d2225e ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x695c97ee ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7cfc5a42 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8bcbdfce ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x987acb19 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb47e4721 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe6fa85de ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x5b5fcf2d bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xd8206619 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x04f65743 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x52846a77 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x82392fe5 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x901af13e bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x02f3f981 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x73e2bbad bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x9cc3444e bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xfe959878 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x50fea474 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x80a44dbd bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x0f5d09bd bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x4172558d bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x5fd40240 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xe563c4b4 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL_GPL 0x3150f02a bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x1a58064b bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf0dedb29 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf1573bf5 bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf50ab0aa bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x77f2a230 bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0xe0f5bfac bno055_probe drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x28d33968 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xc8168d6c fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xef6a9fdc fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x056e5588 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x05b9ab1b fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x1e53360d fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa7b0c14d fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_HID EXPORT_SYMBOL 0x24feeccf hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x49b80ab5 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x50dbc9b3 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x7791d951 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_BMI160 EXPORT_SYMBOL 0xf4f9ec98 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x65956d95 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x15c22434 bmp580_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x1bbe98b1 bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x1e6af332 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x2147c7fb bmp280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x24dce73f bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x448a6d3b bmp580_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x56a2e63f bme280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x5d26e220 bmp180_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xbc48268d bmp380_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xf4ec2e50 bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x2a371ba3 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xd47dad86 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x524e798b fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x60efe722 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xc9f76eda fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x721d575e fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x9264263c fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xce6f1958 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xd0c3c39b fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x00947ce6 devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x094bee02 iio_gts_avail_scales_for_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x296bb0cd iio_gts_all_avail_scales drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x4ed89402 iio_gts_find_sel_by_gain drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x53000dc5 iio_gts_find_gain_by_sel drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x54a7bad7 iio_gts_get_min_gain drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x5f338fa0 iio_gts_find_new_gain_sel_by_old_gain_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xa3374797 iio_gts_get_scale drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xaf5aaa85 iio_find_closest_gain_low drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc061498b iio_gts_avail_times drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc25ccf30 iio_gts_find_new_gain_by_old_gain_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd7e29768 iio_gts_find_gain_sel_for_scale_using_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf42af90f iio_gts_total_gain_to_scale drivers/iio/industrialio-gts-helper +IIO_HID EXPORT_SYMBOL 0x122c3c8a hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x22f90161 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x2bf8ce0b hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2d91c42a hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2e79a6dc hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x34015d0d hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3ab9f53c hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x42c1d7a9 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x44bd01e1 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6b0ac2cb hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x8ed6d0b8 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xabf1d566 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xac388c35 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xb4decb4e hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xb8543adb hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd4d28010 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xe5085686 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xeaf228fb hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x222a8dc4 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2a9662be hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3adb66e1 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x66642c21 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0x2f3fe7fa hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x650c9ca1 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x83688c90 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x1a1d8723 hts221_probe drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0x5bc64f9a hts221_pm_ops drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x20da37cb inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x5febe36e inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xee2b9c73 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x9af67a43 kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0xc0c2da69 kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x61b4970b kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x655e6626 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xdab684e1 kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x466a0691 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0xed7efb62 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x01bbe271 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_HID EXPORT_SYMBOL 0xdbe70e16 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xecf9031d hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x12e59e8b hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x21b12ffb hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xaae34fb3 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xb1263a58 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x12378c47 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x383540f4 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xe4b125b8 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x93d649a8 hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xbcb56400 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x5808e113 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xb4687c69 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xf43b8d73 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x2a6f22f7 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x6572787c kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x2e4c7725 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x744f2bf4 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x91f1c963 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x4fb3f29b st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xcd61ecb4 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2b0e5418 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x39971fa1 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2fe2567f ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x341542d7 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x38b11d1f ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x453f67de ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x49205528 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x72d7940b ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x9c2e93d5 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xcd22db33 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xeaf34724 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x4328cbdd mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x9e37400d mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xd8de8c7d mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x11f3ea36 mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x2811b18d mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x3d447720 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x5dfb32e3 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb64906cf ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc14115b6 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc849ae98 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xde90adfe ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe9bc39e8 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x13c30fb0 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x84ae0d06 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x94ad8b13 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x20b47cc6 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x3c60ece1 mma9551_write_config_word drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x45cb0343 mma9551_app_reset drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x4904a14c mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x6030c058 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x69277576 mma9551_read_status_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x7324d091 mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x7882236e mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x7e8e5d51 mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x97e30689 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb230f15e mma9551_read_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb669c715 mma9551_update_config_bits drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xbc98f716 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4469f70a mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4a1acabe mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x50652ecc mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x67833d01 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x82d8a5d0 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa8bf50d8 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xaf357347 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb66d8050 mma9551_read_config_words drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xdc797706 mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xe23b3224 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MPL115 EXPORT_SYMBOL 0x79f45107 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 -IIO_MPL115 EXPORT_SYMBOL_GPL 0xb437578a mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x402efb76 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x6d531729 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0xc69aee82 ms5611_remove drivers/iio/pressure/ms5611_core -IIO_MS5611 EXPORT_SYMBOL 0xebb1dca9 ms5611_probe drivers/iio/pressure/ms5611_core -IIO_RESCALE EXPORT_SYMBOL_GPL 0xc9333391 rescale_process_offset drivers/iio/afe/iio-rescale -IIO_RESCALE EXPORT_SYMBOL_GPL 0xe9f5b7e2 rescale_process_scale drivers/iio/afe/iio-rescale +IIO_MMA9551 EXPORT_SYMBOL 0xc0338d73 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xcaec84f7 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd506c43d mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xecc9e468 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf56c37b3 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf7cb020b mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0xb9ebe5f3 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x188bb384 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x4516bccc inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x7849eaed inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x381b1b54 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x0f97d7d8 rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x9af5fe33 rescale_process_offset drivers/iio/afe/iio-rescale IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core -IIO_RM3100 EXPORT_SYMBOL_GPL 0x413cd6cf rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x59f50645 rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0xabc98bb5 scd30_probe drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0xdc1f367d scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0xb46b6140 sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x3b1c12cb ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x433a3d48 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x5a81bb30 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x7d95ea85 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x9d8f109d ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xabc51d02 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xc316277c ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xda4b4245 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio -IIO_ST_SENSORS EXPORT_SYMBOL 0x03f1c89c st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x05c52807 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_SCD30 EXPORT_SYMBOL 0x1719ab73 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x7bee632e scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xe36ae731 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x0f710c96 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x450a9727 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4d59eee8 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x71652343 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x82dad0e0 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xd5df7584 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe0308340 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xf4a736ae ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x02dbcfbe st_magn_get_settings drivers/iio/magnetometer/st_magn IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x27853b33 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0x278b0dcc st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x39ea9037 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x575b3292 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0x64cbeb79 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x6a2265bf st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x6c26acb6 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0x76a5baec st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x7a016d3c st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x7e40ff84 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x8d6b8b0e st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0x95098366 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x9b6c6de3 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x9db2729b st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa86adbad st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xaf747e2a st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb2850ccd st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xb2e81e9e st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb4e12683 st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xbe581acf st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xc65b4e4f st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xd4902294 st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xf7abeced st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xfdd26717 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x84881e2e st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0x3e86c1e3 st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0x64b0b988 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x319a92f7 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x39844675 zpa2326_remove drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5192d6c9 zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x57e1f6eb zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6c9489e5 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9a110edf zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x5ca90405 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INT340X_THERMAL EXPORT_SYMBOL_GPL 0x8b432632 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox -INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x21329bc0 uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common -INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x8c6c49f2 uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +IIO_ST_SENSORS EXPORT_SYMBOL 0x0c6ebf67 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1024c920 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1243547c st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x1b319b2e st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x2612dc0c st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x275d2564 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x395f3b76 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x478b848b st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x485e5dbb st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4f7d7782 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x616f3681 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x69e7ad9b st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6bbe02c8 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7aef7a92 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x932f041f st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xa15c1a0c st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa23ba5d2 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xba5453d2 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xbc30799c st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xc1a9e2d8 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc2dd6681 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xce6eee14 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe7571432 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xed016a2a st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf12cfaea st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xd38ea710 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x4d0d9a05 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xe0e01ce1 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x013049b4 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x16a72311 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x2d46e8f6 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x47dcff9a zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7801e375 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf7d2d719 zpa2326_probe drivers/iio/pressure/zpa2326 +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xd952145c processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xda8f2408 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INTEL_IPU_BRIDGE EXPORT_SYMBOL_GPL 0xaa29a30a ipu_bridge_init drivers/media/pci/intel/ipu-bridge +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x1f399b2a m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x878ea9cf m10bmc_dev_init drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xa5d52e0a m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xd67d193f m10bmc_sys_read drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xfa73137f m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core +INTEL_PMT EXPORT_SYMBOL_GPL 0x026fd59e intel_pmt_dev_create drivers/platform/x86/intel/pmt/pmt_class +INTEL_PMT EXPORT_SYMBOL_GPL 0x155379c1 intel_pmt_dev_destroy drivers/platform/x86/intel/pmt/pmt_class +INTEL_PMT EXPORT_SYMBOL_GPL 0x7ecbfabf intel_pmt_is_early_client_hw drivers/platform/x86/intel/pmt/pmt_class +INTEL_TCC EXPORT_SYMBOL_GPL 0x1936331f intel_tcc_set_offset vmlinux +INTEL_TCC EXPORT_SYMBOL_GPL 0x8c32aa7b intel_tcc_get_offset vmlinux +INTEL_TCC EXPORT_SYMBOL_GPL 0xa1186518 intel_tcc_get_tjmax vmlinux +INTEL_TCC EXPORT_SYMBOL_GPL 0xcb0091dd intel_tcc_get_temp vmlinux +INTEL_TPMI EXPORT_SYMBOL_GPL 0x193f03cd tpmi_get_resource_count drivers/platform/x86/intel/intel_vsec_tpmi +INTEL_TPMI EXPORT_SYMBOL_GPL 0x44709934 tpmi_get_platform_data drivers/platform/x86/intel/intel_vsec_tpmi +INTEL_TPMI EXPORT_SYMBOL_GPL 0x4b7daf99 tpmi_get_resource_at_index drivers/platform/x86/intel/intel_vsec_tpmi +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x10c88f12 tpmi_sst_dev_remove drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x45083054 tpmi_sst_init drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x81b27427 tpmi_sst_dev_add drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x914f5550 tpmi_sst_dev_resume drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0x98bbc7d5 tpmi_sst_exit drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_TPMI_SST EXPORT_SYMBOL_GPL 0xbb04f8c0 tpmi_sst_dev_suspend drivers/platform/x86/intel/speed_select_if/isst_tpmi_core +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x2992ffc3 uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xb3b982f2 uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xbf3d935d uncore_freq_common_exit drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common -INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xf97b412b uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common -IOMMUFD EXPORT_SYMBOL_GPL 0x00cbdbbe iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x066a53f3 iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x06a22a6c iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x44188f45 iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x53be2087 iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x6c5017c1 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x835c239a iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xd7509fae iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xf81730b9 iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x54eb60ac iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x007f9f06 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x00fbf6f5 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0296862c iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x03b475d9 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x05a2c0c0 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x094b445a iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0cd2b18f iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x12b5e2b4 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xd844ca15 uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_VSEC EXPORT_SYMBOL_GPL 0x34bc5639 intel_vsec_add_aux drivers/platform/x86/intel/intel_vsec +IOMMUFD EXPORT_SYMBOL_GPL 0x15cd7c84 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x264aa70e iommufd_access_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2d59064c iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2e2e43b7 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x44bea531 iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x471dc0ff iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4bb8fb96 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x7974d7b4 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xa4c11846 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xa931519d iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xc832821b iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xcd0ca6f6 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xfad49369 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x21d841e8 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xa42aa15a iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xa6d58374 iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x01dc9b19 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x025bf108 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x031a8159 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0648fb36 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x09dc7cab iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0def58e0 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0f17e699 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x132247ee iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1971fb8c iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x23e5954c iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2527e0a8 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1d9597fe iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x20480b61 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x250c4480 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2d0f8884 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x32234cb1 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x345ea4ff iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x28bea6d9 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x32e3b9d2 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3a1a625b iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3facb747 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x46cd5332 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x487959fc iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3fe5ce03 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45bc5c43 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4acbe25f iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4d946ad5 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4f9f317b iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x53ec920f iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x560bf095 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x56e0a512 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x575e4e48 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4b1a8799 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5083e1af iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x55c87fd8 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x568a4982 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x58a71dbd iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5934655b iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x59461807 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5a93853d iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5b092637 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c23a2d3 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x62f93688 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x635c3f22 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6712ddd2 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6a31a4e5 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6e0b4eee iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5eea7e86 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5f9884b5 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x62ed580c iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72fbc358 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7320b24a iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x75173b7e iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7ba6e9d7 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7e4de5f4 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7e7b46f8 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7ec9f1cf iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7b186f33 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7d73a3b9 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x811f5c2f iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8158742c iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8405ccd1 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x85ff35b2 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x86686ea2 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84e6a197 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84efc74b iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x88312f17 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8e8cdaad iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8fa76d71 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8a0ff169 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8dfb974d iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8ea1409e iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x90576afb iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x92381932 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x981a0946 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x990d9d9a iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x99676c3d iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9e0799fd iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa3785dc2 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa5479a39 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa559c4da iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa6e4d00f iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb1ccef31 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9350e37a iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x94f91304 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9c088bf7 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9d830089 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9e2d64f0 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa172bed5 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa37f0441 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa70c9988 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa8297efd iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xac83b78c iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaf9e7bd6 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb548d8a8 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb6d2dae2 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb7a15714 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb564ee1a iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb900b88d iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb99897de iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xba09183b iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb8fcaefe iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbee78f1b iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc65669c9 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcb4d8f56 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbb3c23e2 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbfd7d685 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc0963a67 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc318f3a3 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc393d9c9 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc414a069 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc419825a iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc638cb5e iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc6808a0a iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcb999ec9 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcf905120 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd002e923 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd1fbd160 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd604e75e iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd6c66868 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd6c89868 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd933db32 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd8fcb8e1 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd91b01ea iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdd0b2242 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xded65e7c iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe2793431 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe354d91f iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe578d5a7 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe7f264de iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe9d9d01a iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xee46086a iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf0ef0b69 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf1e99589 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf31c24b4 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf5ded71c iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf8776f47 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xebeb22e7 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf6d0e379 iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf7c0dbc3 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf8792046 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfb9cab1f iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfff27129 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x842ed430 ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xc47953ca ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x0c539f6b chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x21ef5421 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x278bcbe5 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x39e6fcf4 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x63267ec0 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6a4871e5 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x77e1aab4 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa0ede562 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xb7bf1fb2 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbb986c4c mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc4d56040 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd0926bc5 mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd980efef mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe986ce3f mcb_bus_get drivers/mcb/mcb +LTC2497 EXPORT_SYMBOL 0x53759bd8 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xd3e4b62e ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x10e0a22e mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2723db13 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2c6bb10c mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2deec184 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x313d5f2b chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3ea2c7df mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6d792b12 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x769b2c51 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x77a6fde8 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd2d51be0 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd3623e5a mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd6b78154 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdc33f2a9 mcb_alloc_bus drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x071a1942 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x776a2969 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0xead996e5 ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NET_MANA EXPORT_SYMBOL 0x057c988f mana_create_wq_obj drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0x2e2dceb8 mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0x7459e26c mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0x970d2c01 mana_uncfg_vport drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0xa9369701 mana_cfg_vport drivers/net/ethernet/microsoft/mana/mana -NET_MANA EXPORT_SYMBOL 0xcf5422ad mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x036f1f97 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x40d9336b nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7448c484 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8607bdc0 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9e71f1e7 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcfdfb82d nvme_find_get_ns drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x1ec549dd peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2879a780 peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2f6447af peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x381b873a peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x3d2bce79 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x47a73c38 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4e438815 peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x53931c92 peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5dc40a80 peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5f6a5269 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5f98f413 peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5facecd9 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6f4ca53b peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x707c749c peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x7104297d peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8615609d peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8b73fd41 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xa7c20719 peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xaef81e8c peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb6903e81 peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xba5ada76 peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc04123cd peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc448f4dd peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc942b428 peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd198c76d devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdba587d5 peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdeecf780 peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe8c916fb peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xedf95dd1 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI_CPU EXPORT_SYMBOL_GPL 0x1977da15 peci_temp_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x52ce0529 peci_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x71060bac peci_mmio_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x8dce170a peci_pcs_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x96a23588 peci_ep_pci_local_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x1c54e887 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2c20250b pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2ef7f25b pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3986fe54 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x4c2f3cea pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5358c9cb pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7c289b71 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x7ced6a9f pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x8454f226 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x92e66284 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x98dce9c1 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9d8c7ff2 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xa7085ff5 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xaa1c0721 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xaec8abf5 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc207bbd0 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc33436ce pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc61181a4 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfee47678 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x32e8d4dd sx_common_read_proximity drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x66796cfb sx_common_read_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x6aca34d2 sx_common_probe drivers/iio/proximity/sx_common +MCB EXPORT_SYMBOL_GPL 0xef19c3b9 mcb_request_mem drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x236af733 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x687c8d5e ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xde35b664 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NET_MANA EXPORT_SYMBOL 0x09948448 mana_uncfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x289bf5e5 mana_create_wq_obj drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x339e1528 mana_cfg_vport drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x75e26706 mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0x9dc2c706 mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana +NET_MANA EXPORT_SYMBOL 0xab3abda8 mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x06ebe7cb nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0e597347 nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x20865368 nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3814f3db nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3dc42dc4 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xeac99ced nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf57e0fe9 nvme_put_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x00240a16 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1110db13 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x21448f38 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x21d99eb7 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2a729025 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3c64b832 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3eb338c5 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x46284c92 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6245cc65 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x688f4afa peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6e3edffe devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8f11feb9 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x90d5b9f0 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa6b31b39 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa7dae3f7 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb30c4a40 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb7f7b968 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbb2a0859 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbc6443a8 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbdf6a1e4 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdd5611b6 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdffa92af peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe0a2d27c peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe538ceac peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xef391ad6 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf35f4a34 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf4f6fa35 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfd7246fb peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xffc0e528 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x5f6a3b10 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x67328b59 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xabf89d12 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xe713a1c2 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xf45bf465 peci_pcs_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x07ef82e7 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0c3c5627 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0fa764ae pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2841621c pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x494df2a0 pmbus_unlock drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4bfc129e pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x518cebed pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x74fc6cea pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7b8f50a6 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7cfb0f26 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8ec44435 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x903a34cd pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9ea6d146 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xadd98cf8 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaf02d155 pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xafb16b78 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbd8521cb pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xca94a372 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcd06b275 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd4430931 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf220a395 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x16968281 sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x214f1910 sx_common_get_raw_register_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x63db99f8 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7e654ba0 sx_common_write_event_config drivers/iio/proximity/sx_common SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xb85e3fc3 sx_common_write_event_config drivers/iio/proximity/sx_common -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x0014ec9d hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x18069430 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xbc6971fa sx_common_read_proximity drivers/iio/proximity/sx_common +SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x4b911c81 serial8250_pci_setup_port vmlinux SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x8bbaee8f hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xd53cfe43 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x24fb1980 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x6547aabc cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x6d9743e8 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x7aa96648 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x8138201f hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x82c37ce4 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xd432d592 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x5a5c09cc cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xd3765985 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xed1bffad cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x02c7d277 acp_platform_register sound/soc/amd/acp/snd-acp-pcm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x61712d77 acp_machine_select sound/soc/amd/acp/snd-acp-pcm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x6bcf87fa acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x778947d7 asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x9eadfbda asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s -SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xd62fb6e5 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm -SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xcf679b0b acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach -SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xebe3ac81 acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x78fca6ae cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xa8029b03 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xdf34b99d cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xac70c448 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xe736aed5 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xef480504 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x45dd833f cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x48c1faff cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x497af2e0 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4a60cd95 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x905d4096 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb05e05a0 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb392615f cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x010b3702 acp_platform_register sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x0888fa8a asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x1a485dc3 asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xcc41ab82 acp_machine_select sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xdb72a7f4 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xe2b4858f acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x42adcad4 acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x6e2e512c acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x51c620c9 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x678cfa7f cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xb0c04f0b cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xbffc7cf8 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc57a2145 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xfcc4bdb4 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x05482545 cs35l56_irq sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x5fc97f80 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x6ec2c180 cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x7ea78c6f cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x86313b26 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x97be6f73 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xb53f40d9 cs35l56_init sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xcf5a59b9 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x05c2529e cs35l56_tx_input_values sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x312c0e0f cs35l56_dsp1_regions sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x36beb6cf cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x64e759e4 cs35l56_tx_input_texts sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x6bfb0b06 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x88762c92 cs35l56_get_bclk_freq_id sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xa4953f75 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcd5438ad cs35l56_fill_supply_names sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xddae0dd9 cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0fa10983 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x28d5f6b8 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2b703900 cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x4c8baa9f cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x68828b07 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x95f14c6a cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xabf93609 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xac282d2a cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae4be5c4 cs42l42_irq_thread sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc820347b cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd3db241b cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xd3dee6f6 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf116a338 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x105590b3 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common -SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x0230f497 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common -SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x2c4c087a cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x000026ff max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x04617984 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1908303c max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x597eda54 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x69652913 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x69cf8a19 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x771b604a max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa17953c9 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xb76ba7f9 max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xc7d9cfa5 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd3cbe4dd max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe56e2d9e max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xf464c39e max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x489b8c5d sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x4c05b6b1 sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x583fed93 sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x6cf88c5f sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x6eb828d4 sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xaaf8190a sof_rt1019p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xaf5e1668 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xead4b2ba sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x24cb3c0b sof_acpi_pm sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x6ce3acb5 sof_acpi_probe sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xb0274876 sof_acpi_remove sound/soc/sof/snd-sof-acpi -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x07bd328d acp_set_stream_data_offset sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x109159b7 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x1af6da08 acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x2099d456 acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x261ce88a acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc9b305aa cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe6673d22 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xea0e40ac cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf9e9dee4 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xfe83d97f cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xfed30ccf cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0xdb16f3f7 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x1ab03ce6 cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0xd23df8e2 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x10276966 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x2302b9d0 max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x274ba53e max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x295d7ef0 max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x39f32f0a max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x6488afbb max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x6e2ba172 max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x6f348efb max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x81bb6959 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x9de568f0 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe0246989 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe733fdaf max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xe9998ca5 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x040d0a90 sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x11bcca82 sof_rt1019p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x2e530206 sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x410a1a42 sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x84983fcd sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x8b3b1afb sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x9bb2dfc5 sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xd63ecb6b sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x13549c81 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x90fcad41 sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xe41bbd7d sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x04f2ac3d acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x0c68669e acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x0d50edea acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x16375af1 amd_sof_acp_resume sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x25df24d7 acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x27d48078 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x35fb27dd acp_sof_ipc_irq_thread sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x37f0d089 sof_renoir_ops sound/soc/sof/amd/snd-sof-amd-renoir -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x465cf2f9 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x4801c7b0 sof_acp_common_ops sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5051436f acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x666c58d0 amd_sof_acp_suspend sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x78adb241 acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7a2f88f1 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7da6256a acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x968bf88a amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x96c2de7d acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa624d500 acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa713f8b9 sof_rembrandt_ops sound/soc/sof/amd/snd-sof-amd-rembrandt -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb724ee53 acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb7dd1483 acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb9264630 acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb9ae453b acp_sof_ipc_get_window_offset sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xbf3dec63 acp_dai_probe sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xbf606ed0 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc92da26f amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xda7115cd amd_sof_acp_resume sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xde4e8a4c acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe41b14b6 acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xfd2d8b1f acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x0f3da3da sof_client_register_fw_state_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x2e2ee2fe sof_client_ipc_tx_message sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x325efdd8 sof_suspend_clients sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x36167fc9 sof_client_ipc4_find_module sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4a5b37fa sof_client_get_fw_version sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x705fa588 sof_resume_clients sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x96c90527 sof_client_core_module_put sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa42aee62 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xb8ae1008 sof_client_get_dma_dev sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xb8f0e160 sof_client_core_module_get sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xbcada6a1 sof_client_dev_unregister sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xcdeb8890 sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd2c43e2e sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd3bc377e sof_client_dev_register sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xeee09835 sof_client_get_fw_state sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf3c40b3a sof_client_get_debugfs_root sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf64130a9 sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf8cb3326 sof_client_ipc_set_get_data sound/soc/sof/snd-sof -SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfcc7316b sof_client_get_ipc_type sound/soc/sof/snd-sof -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x211255c3 hda_codec_stop_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x330c1986 hda_codec_rirb_status_clear sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x3c8d2226 hda_codec_resume_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x48947ac2 hda_codec_check_rirb_status sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x55e3fa36 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x57c311b9 hda_codec_suspend_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x6e6c119c hda_codec_device_remove sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x70a35573 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x71d2beee hda_codec_init_cmd_io sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x968f27b3 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xe41a935b hda_codec_set_codec_wakeup sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xf55e3909 hda_codec_check_for_state_change sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xfcb0eb69 hda_codec_detect_mask sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x456430e5 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x641a0a65 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xc16d38ac hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x020d234f atom_dai sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x22e97781 atom_run sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x254f62cc atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x3adc03af acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x44e2f369 acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x51580e6f acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x56649347 acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x679964bf amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x73b234da sof_rembrandt_ops sound/soc/sof/amd/snd-sof-amd-rembrandt +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x842d1d75 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x8726dcc4 amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x9c6e569e sof_acp_common_ops sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x9cfa55de acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xacef506a acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb78e70f7 acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xbbbf863b acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xbbde68b9 sof_renoir_ops sound/soc/sof/amd/snd-sof-amd-renoir +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xbc268299 acp_pcm_pointer sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc3a602bf acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xcc0ec6f7 acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xdb9625b8 acp_sof_ipc_get_window_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe073a415 acp_set_stream_data_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe31d496e amd_sof_acp_suspend sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xee2459c2 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xfeab5c5b acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x08aa31bc sof_client_get_fw_state sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x0bd45631 sof_suspend_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x208c7e15 sof_client_register_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x3290fe9b sof_client_core_module_put sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x46cd6c99 sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4d05a29a sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x5733f8c1 sof_client_get_dma_dev sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x7db19f73 sof_client_get_debugfs_root sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x8f46062e sof_client_ipc_rx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x8f8d5676 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x93bec85d sof_client_get_fw_version sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa1a0f878 sof_client_dev_unregister sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xb401e62a sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xcdfa9a41 sof_client_ipc4_find_module sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xdf2fe6ca sof_client_get_ipc_type sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe3cd7b51 sof_client_core_module_get sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf2e7ac24 sof_client_ipc_tx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfa0691ff sof_client_ipc_set_get_data sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfb46327e sof_resume_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfef0d034 sof_client_dev_register sound/soc/sof/snd-sof +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x0f8efae1 hda_codec_detect_mask sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x1356a79e hda_codec_resume_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x147b6b76 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x22695b41 hda_codec_rirb_status_clear sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x5775aa3b hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x6a171246 hda_codec_check_rirb_status sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x7cf39624 hda_codec_check_for_state_change sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0x8ea47f79 hda_codec_suspend_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xbd09a886 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xc190d9a9 hda_codec_set_codec_wakeup sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xe0e83479 hda_codec_init_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xe28cada7 hda_codec_device_remove sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL_GPL 0xf3e25db2 hda_codec_stop_cmd_io sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x2132d8fb hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0x3cc005ae hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL_GPL 0xc77e2597 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x00666f2c hdac_bus_eml_enable_offload sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x12d49b13 hdac_bus_eml_get_mutex sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x195c495c hdac_bus_eml_sdw_set_lsdiid sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x27ec6830 hdac_bus_eml_set_syncprd_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x377eb315 hdac_bus_eml_sdw_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x37a1bf2d hdac_bus_eml_get_count sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x394c40f0 hdac_bus_eml_enable_interrupt sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x3eb6d555 hdac_bus_eml_check_cmdsync_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x47b94e81 hdac_bus_eml_power_up sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x516dded7 hdac_bus_eml_sync_go_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x54b0028a hdac_bus_eml_sdw_check_cmdsync_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x74cb4b32 hdac_bus_eml_sdw_sync_go_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x76f0bdbe hdac_bus_eml_sdw_wait_syncpu_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x7c05e5f6 hdac_bus_eml_sdw_set_syncprd_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x84422d67 hdac_bus_eml_ssp_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x887e1336 hda_bus_ml_put_all sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x9208ba34 hda_bus_ml_reset_losidv sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0x9813628b hdac_bus_eml_sdw_map_stream_ch sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xa4cce8d1 hda_bus_ml_resume sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xa7e4308a hda_bus_ml_suspend sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xa7e78a59 hdac_bus_eml_power_down sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xad108ff9 hdac_bus_eml_wait_syncpu_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xb3835794 hdac_bus_eml_sdw_sync_arm_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xba9d6739 hdac_bus_eml_check_interrupt sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xcaf3a3be hdac_bus_eml_dmic_get_hlink sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xcd39f21e hdac_bus_eml_sdw_power_down_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xcdce58c4 hda_bus_ml_free sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xcec36431 hdac_bus_eml_power_down_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xd49ee049 hdac_bus_eml_sync_arm_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xdeb320fb hdac_bus_eml_sdw_power_up_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xf3b86c8d hda_bus_ml_init sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_HDA_MLINK EXPORT_SYMBOL 0xfa5e47b5 hdac_bus_eml_power_up_unlocked sound/soc/sof/intel/snd-sof-intel-hda-mlink +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x0e44d5df atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x2ad37067 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x3503e0b1 atom_irq_thread sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x5b80a28b atom_dump sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x94f63ff8 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb7585e33 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc7be6845 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xde75a477 atom_reset sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe66ad024 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x40979f3c atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x56a862db atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x85ce4c19 atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x8a7c00f6 atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x8b2abda6 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x8c5298ff atom_dump sound/soc/sof/intel/snd-sof-intel-atom SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x003622eb hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x034c36f3 sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1c6db9ac jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1dd07972 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2ba06a0a sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2ca78739 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3ffdfd02 sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x41108048 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x443500cc icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4a350bd6 mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4eb521ba skl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x504577db sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x55c4266d tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7ea1d4ee apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x86e8a9f0 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x89092e42 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9d4f92a6 sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xa9741adf sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xba851a36 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbfe31d68 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xcdf45a66 sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xda796793 hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xed4be31c sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf0e6e41d tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x1f8b21f1 sof_pci_probe sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x2b1f0346 sof_pci_shutdown sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x550347e5 sof_pci_remove sound/soc/sof/snd-sof-pci -SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xcdfc48ed sof_pci_pm sound/soc/sof/snd-sof-pci -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xa5a5d948 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL EXPORT_SYMBOL 0xc46e65c9 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x3f410190 sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x7b91cb48 sdw_intel_startup drivers/soundwire/soundwire-intel +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xf740795b atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x03ce87b9 adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x072b919e icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0f9fcf35 sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x16dab73f tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x2f07677a sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3cf66793 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3dbf45bc apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x453d3e37 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x56d14d07 sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x5d301566 sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x65a89da3 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x751e2a68 sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x75c0ca54 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x822a0c1f hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8981ce7e sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x8b5f234a sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9a21add4 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xaad4fa9c sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb6510a63 sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc75c9430 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xca17bf10 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xee785fdf mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf115b085 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf6a509a8 skl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x75cbbd0d sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x79c61449 sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xf1d33511 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xf8b49eef sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x6acabb89 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x09351149 tasdevice_prmg_calibdata_load sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1a949c7c tasdevice_select_cfg_blk sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1ab9b7d9 tasdevice_select_tuningprm_cfg sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x23c94cc6 tasdevice_tuning_switch sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x2c2d92de tasdevice_config_info_remove sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x40ec23ee tasdevice_calbin_remove sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x957998f4 tas2781_load_calibration sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xa7d17083 tasdevice_rca_parser sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfa72134b tasdevice_dsp_parser sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfe3a6722 tasdevice_prmg_load sound/soc/codecs/snd-soc-tas2781-fmwlib +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x33d49c81 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0xa02c6847 sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x7687f8c3 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x7a0ef3df sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x7d32d637 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x93aa497e sdw_intel_exit drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xdf4daba4 sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xfc868261 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2eb0841f dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x349469b6 dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x51c449aa dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x77277f0c dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8857397c dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xaf312630 dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb35efd67 dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xbf16e782 dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd0b75612 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2e8d0591 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x3a5b722f dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4065e9d6 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4eefa0ee dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5c206eb7 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x69039b7f dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x70727319 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8954446a dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc1d8a518 dw_spi_add_host drivers/spi/spi-dw TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9d8a8803 efi_embedded_fw_list vmlinux TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9dd8d0e2 efi_embedded_fw_checked vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x03711a9c usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x12e964f0 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x16a098a1 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0e8fbd2a usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x19972660 usb_stor_reset_resume drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x22745848 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2e5b7ae3 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x41eeb45d usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4bd98411 usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x4fa44b5f usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6004f336 usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x685c0c74 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x72c5a914 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x77a5eafb usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7d7137d4 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x804fc292 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8a4add0f usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x91aefa19 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x973903f5 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xa4bf251b usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xadc373e5 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xbc5e3765 usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc9d23b67 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe4558354 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf54326cf usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfa0c1c2d usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x31599587 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x50c0eefb usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x564119d4 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x56b730c3 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x56d88a44 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5de43dd9 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x65547ba4 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6a78b304 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7530e4fa fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x76ac74d9 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7f992174 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x82c13e54 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8c7429de usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8f4c74fa usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa90f7553 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaa307c5b usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbbd7b228 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcfa2f643 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd12c61e5 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd6a8df3c usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe35fca49 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe69f4054 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.compiler linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.compiler --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.compiler +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.compiler @@ -1 +1 @@ -GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 +GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.modules linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.modules --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.modules +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.modules @@ -12,10 +12,12 @@ 8021q 8139cp 8139too +8250_dfl 8250_dw 8250_exar 8250_lpss 8250_men_mcb +8250_pci1xxxx 8250_pericom 8255 8255_pci @@ -53,6 +55,7 @@ abp060mg ac97_bus acard-ahci +acbel-fsg032 acecad acenic acer-wireless @@ -165,7 +168,6 @@ ad799x ad8366 ad8801 -ad9389b ad9523 ad9832 ad9834 @@ -186,9 +188,6 @@ addi_apci_3501 addi_apci_3xxx addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi adf4350 adf4371 adf4377 @@ -216,8 +215,6 @@ adl_pci6208 adl_pci7x3x adl_pci8164 -adl_pci9111 -adl_pci9118 adm1025 adm1026 adm1029 @@ -239,7 +236,6 @@ adp5589-keys adp8860_bl adp8870_bl -adq12b adrf6780 ads7828 ads7846 @@ -266,12 +262,10 @@ adv7511-v4l2 adv7604 adv7842 -adv_pci1710 adv_pci1720 adv_pci1723 adv_pci1724 adv_pci1760 -adv_pci_dio adv_swbutton advansys advantech_ec_wdt @@ -316,8 +310,6 @@ aic79xx aic7xxx aic94xx -aio_aio12_8 -aio_iiro_16 aiptek aircable airo @@ -368,16 +360,10 @@ amd_sfh amdgpu amdtee +amdxcp amilo-rfkill amlogic-gxl-crypto -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 amplc_pci236 amplc_pci263 ams-iaq-core @@ -421,6 +407,8 @@ arcnet arcxcnn_bl aria-aesni-avx-x86_64 +aria-aesni-avx2-x86_64 +aria-gfni-avx512-x86_64 aria_generic arizona arizona-haptics @@ -478,6 +466,7 @@ ath11k ath11k_ahb ath11k_pci +ath12k ath3k ath5k ath6kl_core @@ -645,6 +634,7 @@ bpa-rs600 bpa10x bpck +bpck6 bpfilter bpqether bq2415x_charger @@ -683,6 +673,7 @@ btmtk btmtksdio btmtkuart +btnxpuart btqca btrfs btrsi @@ -692,9 +683,13 @@ btusb bu21013_ts bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch c2port-duramar2150 c67x00 -c6xdigio c_can c_can_pci c_can_platform @@ -734,11 +729,8 @@ cavium_ptp cb710 cb710-mmc -cb_das16_cs -cb_pcidas cb_pcidas64 cb_pcidda -cb_pcimdas cb_pcimdda cc10001_adc cc2520 @@ -763,6 +755,7 @@ cdns-csi2tx cdns-pltfrm cdns-usb-common +cdns2-udc-pci cdns3 cdns3-pci-wrap cdnsp-udc-pci @@ -798,6 +791,7 @@ chromeos_privacy_screen chromeos_pstore chromeos_tbmc +chv3-i2s ci_hdrc ci_hdrc_msm ci_hdrc_pci @@ -832,8 +826,6 @@ cls_fw cls_matchall cls_route -cls_rsvp -cls_rsvp6 cls_u32 cm109 cm32181 @@ -841,8 +833,6 @@ cm3323 cm3605 cm36651 -cm4000_cs -cm4040_cs cma3000_d0x cma3000_d0x_i2c cmac @@ -859,10 +849,8 @@ com90io com90xx comedi -comedi_8254 comedi_8255 comedi_bond -comedi_isadma comedi_parport comedi_pci comedi_pcmcia @@ -896,6 +884,7 @@ crct10dif-pclmul cros-ec-cec cros-ec-sensorhub +cros-ec-typec cros_ec cros_ec_accel_legacy cros_ec_baro @@ -914,7 +903,7 @@ cros_ec_sensors_core cros_ec_spi cros_ec_sysfs -cros_ec_typec +cros_ec_uart cros_hps_i2c cros_kbd_led_backlight cros_peripheral_charger @@ -987,6 +976,7 @@ cxl_mem cxl_pci cxl_pmem +cxl_pmu cxl_port cy8ctma140 cy8ctmg110_ts @@ -1035,18 +1025,9 @@ da9150-gpadc da9210-regulator da9211-regulator -dac02 daqboard2000 -das08 -das08_cs -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 davicom +dax_cxl dax_hmem dax_pmem db9 @@ -1149,7 +1130,6 @@ dme1737 dmfe dmi-sysfs -dmm32at dmx3191d dnet dp83640 @@ -1173,6 +1153,7 @@ drm_kms_helper drm_mipi_dbi drm_shmem_helper +drm_suballoc_helper drm_ttm_helper drm_vram_helper drm_xen_front @@ -1185,7 +1166,6 @@ ds1621 ds1682 ds1803 -ds1wm ds2482 ds2490 ds2760_battery @@ -1200,12 +1180,6 @@ dst dst_ca dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x dt3000 dt3155 dt9812 @@ -1217,6 +1191,7 @@ dvb-bt8xx dvb-core dvb-pll +dvb-ttpci dvb-ttusb-budget dvb-usb dvb-usb-a800 @@ -1428,7 +1403,7 @@ f81232 f81534 f81601 -failover +f81604 fakelb fam15h_power fan53555 @@ -1462,7 +1437,6 @@ fb_ssd1351 fb_st7735r fb_st7789v -fb_sys_fops fb_tinylcd fb_tls8204 fb_uc1611 @@ -1494,7 +1468,6 @@ fit3 fixed fjes -fl512 floppy fm10k fm801-gp @@ -1519,7 +1492,6 @@ fsl_linflexuart fsl_lpuart fsp-3y -ftdi-elan ftdi_sio ftl ftrace-direct @@ -1639,8 +1611,10 @@ gpio-da9055 gpio-dln2 gpio-dwapb +gpio-elkhartlake gpio-exar gpio-f7188x +gpio-fxl6408 gpio-gpio-mm gpio-i8255 gpio-ich @@ -1668,11 +1642,14 @@ gpio-pcie-idio-24 gpio-pisosr gpio-rdc321x +gpio-regmap gpio-regulator +gpio-sbu-mux gpio-sch gpio-sch311x gpio-sim gpio-siox +gpio-tangier gpio-tpic2810 gpio-tps65086 gpio-tps65912 @@ -1680,7 +1657,6 @@ gpio-tqmx86 gpio-twl4030 gpio-twl6040 -gpio-ucb1400 gpio-vibra gpio-viperboard gpio-virtio @@ -1796,6 +1772,8 @@ hecubafb helene hellcreek_sw +hexium_gemini +hexium_orion hfcmulti hfcpci hfcsusb @@ -1834,6 +1812,7 @@ hid-elecom hid-elo hid-emsff +hid-evision hid-ezkey hid-ft260 hid-gaff @@ -1873,6 +1852,7 @@ hid-multitouch hid-nti hid-ntrig +hid-nvidia-shield hid-ortek hid-penmount hid-petalynx @@ -1961,6 +1941,7 @@ hostap_pci hostap_plx hp-wmi +hp-wmi-sensors hp03 hp206c hp_accel @@ -1974,7 +1955,6 @@ hso hsr ht16k33 -htc-pasic3 hts221 hts221_i2c hts221_spi @@ -2020,6 +2000,7 @@ i2c-gpio i2c-hid i2c-hid-acpi +i2c-hid-of i2c-i801 i2c-isch i2c-ismt @@ -2095,7 +2076,6 @@ ibmpex ice ichxrom -icp icp10100 icp_multi icplus @@ -2129,7 +2109,6 @@ igen6_edac igorplugusb iguanair -ii_pci20kc iio-mux iio-rescale iio-trig-hrtimer @@ -2164,6 +2143,7 @@ imx258 imx274 imx290 +imx296 imx319 imx355 ina209 @@ -2176,6 +2156,7 @@ industrialio-buffer-dma industrialio-buffer-dmaengine industrialio-configfs +industrialio-gts-helper industrialio-hw-consumer industrialio-sw-device industrialio-sw-trigger @@ -2203,15 +2184,18 @@ intel-lpss intel-lpss-acpi intel-lpss-pci -intel-m10-bmc +intel-m10-bmc-core intel-m10-bmc-hwmon +intel-m10-bmc-pmci intel-m10-bmc-sec-update +intel-m10-bmc-spi intel-qep intel-rng intel-rst intel-smartconnect intel-uncore-frequency intel-uncore-frequency-common +intel-uncore-frequency-tpmi intel-vbtn intel-wmi-sbl-fw-update intel-wmi-thunderbolt @@ -2221,13 +2205,13 @@ intel_atomisp2_pm intel_bxt_pmic_thermal intel_bxtwc_tmu +intel_bytcrc_pwrsrc intel_chtdc_ti_pwrbtn intel_chtwc_int33fe intel_crystal_cove_charger intel_ifs intel_int0002_vgpio intel_ips -intel_menlow intel_mrfld_adc intel_mrfld_pwrbtn intel_oaktrail @@ -2240,6 +2224,7 @@ intel_quark_i2c_gpio intel_rapl_common intel_rapl_msr +intel_rapl_tpmi intel_sar intel_scu_ipcutil intel_scu_pltdrv @@ -2263,8 +2248,10 @@ intel_th_pci intel_th_pti intel_th_sth +intel_vpu intel_vr_nor intel_vsec +intel_vsec_tpmi intelfb interact interrupt-cnt @@ -2359,7 +2346,6 @@ ipoctal ipr ips -ipt_CLUSTERIP ipt_ECN ipt_REJECT ipt_SYNPROXY @@ -2370,6 +2356,7 @@ iptable_nat iptable_raw iptable_security +ipu-bridge ipu3-cio2 ipu3-imgu ipvlan @@ -2436,6 +2423,8 @@ isst_if_mbox_msr isst_if_mbox_pci isst_if_mmio +isst_tpmi +isst_tpmi_core it87 it8712f_wdt it87_wdt @@ -2456,7 +2445,6 @@ iwlmvm iwlwifi ix2505v -ixgb ixgbe ixgbevf janz-cmodio @@ -2514,6 +2502,7 @@ ksz_switch ktd253-backlight ktti +ktz8866 kvaser_pci kvaser_pciefd kvaser_usb @@ -2562,8 +2551,11 @@ leds-adp5520 leds-apu leds-as3645a +leds-aw200xx +leds-bd2606mvv leds-bd2802 leds-blinkm +leds-cht-wcove leds-da903x leds-da9052 leds-dac124s085 @@ -2587,6 +2579,8 @@ leds-mlxcpld leds-mlxreg leds-mt6323 +leds-mt6370-flash +leds-mt6370-rgb leds-nic78bx leds-pca9532 leds-pca955x @@ -2608,7 +2602,6 @@ ledtrig-backlight ledtrig-camera ledtrig-default-on -ledtrig-gpio ledtrig-heartbeat ledtrig-netdev ledtrig-oneshot @@ -2618,7 +2611,8 @@ ledtrig-tty ledtrig-usbport legousbtower -lenovo-yogabook-wmi +lenovo-ymc +lenovo-yogabook lg-laptop lg-vl600 lg2160 @@ -2663,6 +2657,7 @@ lineage-pem linear liquidio +liquidio-core liquidio_vf lis3lv02d lis3lv02d_i2c @@ -2768,7 +2763,6 @@ lz4hc_compress m2m-deinterlace m52790 -m5mols m62332 m88ds3103 m88rs2000 @@ -2857,6 +2851,7 @@ max1721x_battery max197 max20086-regulator +max20411-regulator max20730 max20751 max2165 @@ -2870,6 +2865,7 @@ max31760 max31785 max31790 +max31827 max31856 max31865 max3420_udc @@ -2881,6 +2877,7 @@ max5432 max5481 max5487 +max5522 max5821 max63xx_wdt max6620 @@ -2890,6 +2887,9 @@ max6697 max6875 max7359_keypad +max77541 +max77541-adc +max77541-regulator max77693-haptic max77693-regulator max77693_charger @@ -2930,6 +2930,7 @@ mc13xxx-regulator-core mc13xxx-spi mc3230 +mc34vr500 mc44s803 mcam-core mcb @@ -2972,8 +2973,8 @@ mdio-i2c mdio-mscc-miim mdio-mvusb +mdio-regmap mdio-thunder -me4000 me_daq mediatek-ge megaraid @@ -2984,6 +2985,7 @@ mei-gsc mei-me mei-txe +mei_gsc_proxy mei_hdcp mei_phy mei_pxp @@ -3015,6 +3017,7 @@ microchip microchip-spi microchip_t1 +microchip_t1s microread microread_i2c microread_mei @@ -3024,7 +3027,6 @@ mip6 mipi-i3c-hci mite -mk712 mkiss ml86v7667 mlx-platform @@ -3082,7 +3084,6 @@ mp2975 mp5023 mp8859 -mpc624 mpi3mr mpl115 mpl115_i2c @@ -3092,7 +3093,9 @@ mpls_iptunnel mpls_router mpoa +mpq7932 mpr121_touchkey +mprls0025pa mpt3sas mptbase mptcp_diag @@ -3114,11 +3117,14 @@ ms_sensors_i2c msa311 mscc +mscc_felix_dsa_lib +mscc_ocelot_ext mscc_ocelot_switch_lib mscc_seville msdos mse102x msg2638 +msi-ec msi-laptop msi-wmi msi001 @@ -3153,6 +3159,8 @@ mt6397 mt6397-regulator mt7530 +mt7530-mdio +mt7530-mmio mt76 mt76-connac-lib mt76-sdio @@ -3179,10 +3187,8 @@ mt7921u mt7996e mt9m001 -mt9m032 mt9m111 mt9p031 -mt9t001 mt9t112 mt9v011 mt9v032 @@ -3202,7 +3208,6 @@ mtk_t7xx mtouch multipath -multiq3 musb_hdrc mux-adg792a mux-adgs1408 @@ -3221,6 +3226,7 @@ mwifiex_sdio mwifiex_usb mwl8k +mxb mxc4005 mxc6255 mxic_nand @@ -3249,10 +3255,12 @@ natsemi nau7802 navman +nb7vpq904m nbd nci nci_spi nci_uart +ncn26000 nct6683 nct6775 nct6775-core @@ -3267,7 +3275,6 @@ net1080 net2272 net2280 -net_failover netconsole netdevsim netfs @@ -3398,17 +3405,8 @@ 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 @@ -3466,10 +3464,10 @@ nls_utf8 nmclan_cs noa1305 -noon010pc30 nosy notifier-error-inject nouveau +novatek-nvt-ts nozomi npcm750-pwm-fan ns558 @@ -3511,6 +3509,7 @@ nvram nvsw-sn2201 nxp-c45-tja11xx +nxp-cbtx nxp-nci nxp-nci_i2c nxp-tja11xx @@ -3541,10 +3540,12 @@ on20 on26 onenand +onie-tlv opa_vnic opencores-kbd openvswitch opt3001 +opt4001 opticon option or51132 @@ -3558,6 +3559,7 @@ orinoco_usb oti6858 otm3225a +ov01a10 ov02a10 ov08d10 ov08x40 @@ -3582,6 +3584,7 @@ ov772x ov7740 ov8856 +ov8858 ov8865 ov9640 ov9650 @@ -3604,14 +3607,14 @@ panasonic-laptop pandora_bl panel +panel-auo-a030jtn01 panel-mipi-dbi +panel-orisetech-ota5601a panel-raspberrypi-touchscreen panel-widechips-ws2401 -paride parkbd parman parport -parport_ax88796 parport_cs parport_pc parport_serial @@ -3642,6 +3645,7 @@ pata_oldpiix pata_opti pata_optidma +pata_parport pata_pcmcia pata_pdc2027x pata_pdc202xx_old @@ -3664,7 +3668,6 @@ pcap_keys pcap_ts pcbc -pcd pcengines-apuv2 pcf50633 pcf50633-adc @@ -3677,6 +3680,7 @@ pcf8591 pch_udc pci +pci-epf-mhi pci-epf-ntb pci-epf-vntb pci-hyperv @@ -3685,40 +3689,27 @@ 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 -pcs-altera-tse pcs-lynx +pcs-mtk-lynxi pcs_xpcs pcspkr pcwd_pci pcwd_usb -pd pd6729 -pda_power pdc_adma +pds_core +pds_vdpa peak_pci peak_pciefd peak_pcmcia peak_usb -peaq-wmi peci peci-cpu peci-cputemp @@ -3726,10 +3717,8 @@ pegasus pegasus_notetaker penmount -pf pfr_telemetry pfr_update -pg phantom phonet phram @@ -3856,9 +3845,9 @@ pstore_blk pstore_zone psxpad-spi -pt ptdma ptp_clockmatrix +ptp_dfl_tod ptp_idt82p33 ptp_ines ptp_kvm @@ -3892,6 +3881,7 @@ pxe1610 pxrc q54sj108a2 +qaic qat_4xxx qat_c3xxx qat_c3xxxvf @@ -3957,7 +3947,6 @@ r8152 r8153_ecm r8169 -r8188eu r8192e_pci r8192u_usb r820t @@ -3966,6 +3955,7 @@ r8723bs r8a66597-hcd r8a66597-udc +raa215300 radeon radeonfb radio-keene @@ -4019,6 +4009,7 @@ rc-avertv-303 rc-azurewave-ad-tu700 rc-beelink-gs1 +rc-beelink-mxiii rc-behold rc-behold-columbus rc-budget-ci-old @@ -4035,6 +4026,7 @@ rc-dm1105-nec rc-dntv-live-dvb-t rc-dntv-live-dvbt-pro +rc-dreambox rc-dtt200u rc-dvbsky rc-dvico-mce @@ -4195,6 +4187,8 @@ rndis_wlan rockchip rocker +rohm-bu27008 +rohm-bu27034 rohm_bu21023 romfs rose @@ -4225,16 +4219,19 @@ rt2x00pci rt2x00usb rt4801-regulator +rt4803 rt4831 rt4831-backlight rt4831-regulator rt5033 rt5033-regulator rt5033_battery +rt5033_charger rt5120 rt5120-pwrkey rt5120-regulator rt5190a-regulator +rt5739 rt5759-regulator rt6160-regulator rt6190-regulator @@ -4242,6 +4239,8 @@ rt6245-regulator rt73usb rt9455_charger +rt9467-charger +rt9471 rtc-88pm80x rtc-88pm860x rtc-ab-b5ze-s3 @@ -4322,14 +4321,10 @@ rtc-stk17ta8 rtc-tps6586x rtc-tps65910 -rtc-v3020 rtc-wilco-ec rtc-wm831x rtc-wm8350 rtc-x1205 -rtd520 -rti800 -rti802 rtl2830 rtl2832 rtl2832_sdr @@ -4373,19 +4368,26 @@ rtsx_usb_sdmmc rtw88_8723d rtw88_8723de +rtw88_8723ds rtw88_8723du rtw88_8821c rtw88_8821ce +rtw88_8821cs rtw88_8821cu rtw88_8822b rtw88_8822be +rtw88_8822bs rtw88_8822bu rtw88_8822c rtw88_8822ce +rtw88_8822cs rtw88_8822cu rtw88_core rtw88_pci +rtw88_sdio rtw88_usb +rtw89_8851b +rtw89_8851be rtw89_8852a rtw89_8852ae rtw89_8852b @@ -4405,7 +4407,6 @@ s3fwrn5 s3fwrn5_i2c s3fwrn82_uart -s526 s5c73m3 s5h1409 s5h1411 @@ -4413,7 +4414,6 @@ s5h1432 s5k5baf s5k6a3 -s5k6aa s626 s6sy761 s921 @@ -4427,6 +4427,8 @@ saa7134-dvb saa7134-empress saa7134-go7007 +saa7146 +saa7146_vv saa7164 saa717x saa7185 @@ -4480,14 +4482,11 @@ sch5627 sch5636 sch56xx-common -sch_atm sch_cake -sch_cbq sch_cbs sch_choke sch_codel sch_drr -sch_dsmark sch_etf sch_ets sch_fq @@ -4499,6 +4498,7 @@ sch_htb sch_ingress sch_mqprio +sch_mqprio_lib sch_multiq sch_netem sch_pie @@ -4512,7 +4512,6 @@ sch_taprio sch_tbf sch_teql -scr24x_cs scsi_debug scsi_dh_alua scsi_dh_emc @@ -4559,10 +4558,7 @@ sgp40 sha1-ssse3 sha256-ssse3 -sha3_generic -sha512-ssse3 shark2 -shiftfs sht15 sht21 sht3x @@ -4586,7 +4582,9 @@ sim710 simatic-ipc simatic-ipc-leds -simatic-ipc-leds-gpio +simatic-ipc-leds-gpio-apollolake +simatic-ipc-leds-gpio-core +simatic-ipc-leds-gpio-f7188x simatic-ipc-wdt simple-mfd-i2c simpledrm @@ -4613,6 +4611,7 @@ sky81452 sky81452-backlight sky81452-regulator +sl28vpd sl811-hcd sl811_cs slcan @@ -4798,6 +4797,7 @@ snd-pci-acp6x snd-pcm snd-pcm-dmaengine +snd-pcmtest snd-pcsp snd-pcxhr snd-pdaudiocf @@ -4817,6 +4817,7 @@ snd-seq-midi snd-seq-midi-emul snd-seq-midi-event +snd-seq-ump-client snd-seq-virmidi snd-serial-u16550 snd-skl_nau88l25_max98357a @@ -4872,10 +4873,13 @@ snd-soc-avs-rt5682 snd-soc-avs-ssm4567 snd-soc-aw8738 +snd-soc-aw88395 +snd-soc-aw88395-lib snd-soc-bd28623 snd-soc-bdw-rt286 snd-soc-bt-sco snd-soc-catpt +snd-soc-chv3-codec snd-soc-cml_rt1011_rt5682 snd-soc-core snd-soc-cros-ec-codec @@ -4891,7 +4895,11 @@ snd-soc-cs35l45 snd-soc-cs35l45-i2c snd-soc-cs35l45-spi -snd-soc-cs35l45-tables +snd-soc-cs35l56 +snd-soc-cs35l56-i2c +snd-soc-cs35l56-sdw +snd-soc-cs35l56-shared +snd-soc-cs35l56-spi snd-soc-cs4234 snd-soc-cs4265 snd-soc-cs4270 @@ -4900,6 +4908,7 @@ snd-soc-cs4271-spi snd-soc-cs42l42 snd-soc-cs42l42-i2c +snd-soc-cs42l42-sdw snd-soc-cs42l51 snd-soc-cs42l51-i2c snd-soc-cs42l52 @@ -4943,6 +4952,7 @@ snd-soc-hdmi-codec snd-soc-hsw-rt5640 snd-soc-ics43432 +snd-soc-idt821034 snd-soc-imx-audmux snd-soc-inno-rk3036 snd-soc-intel-hda-dsp-common @@ -4963,9 +4973,11 @@ snd-soc-max98088 snd-soc-max98090 snd-soc-max98357a +snd-soc-max98363 snd-soc-max98373 snd-soc-max98373-i2c snd-soc-max98373-sdw +snd-soc-max98388 snd-soc-max98390 snd-soc-max98396 snd-soc-max98504 @@ -5004,6 +5016,7 @@ snd-soc-pcm512x snd-soc-pcm512x-i2c snd-soc-pcm512x-spi +snd-soc-peb2466 snd-soc-rk3328 snd-soc-rl6231 snd-soc-rl6347a @@ -5038,8 +5051,11 @@ snd-soc-rt700 snd-soc-rt711 snd-soc-rt711-sdca +snd-soc-rt712-sdca +snd-soc-rt712-sdca-dmic snd-soc-rt715 snd-soc-rt715-sdca +snd-soc-rt722-sdca snd-soc-rt9120 snd-soc-sdw-mockup snd-soc-sgtl5000 @@ -5056,6 +5072,7 @@ snd-soc-skl_hda_dsp snd-soc-skl_nau88l25_ssm4567 snd-soc-skl_rt286 +snd-soc-sma1303 snd-soc-sof-sdw snd-soc-sof-ssp-amp snd-soc-sof_cs42l42 @@ -5101,6 +5118,9 @@ snd-soc-tas2764 snd-soc-tas2770 snd-soc-tas2780 +snd-soc-tas2781-comlib +snd-soc-tas2781-fmwlib +snd-soc-tas2781-i2c snd-soc-tas5086 snd-soc-tas571x snd-soc-tas5720 @@ -5163,6 +5183,7 @@ snd-soc-wm8985 snd-soc-wsa881x snd-soc-wsa883x +snd-soc-wsa884x snd-soc-xlnx-formatter-pcm snd-soc-xlnx-i2s snd-soc-xlnx-spdif @@ -5178,6 +5199,7 @@ snd-sof-intel-atom snd-sof-intel-hda snd-sof-intel-hda-common +snd-sof-intel-hda-mlink snd-sof-pci snd-sof-pci-intel-apl snd-sof-pci-intel-cnl @@ -5193,6 +5215,7 @@ snd-timer snd-trident snd-ua101 +snd-ump snd-usb-6fire snd-usb-audio snd-usb-caiaq @@ -5215,6 +5238,7 @@ snd-vxpocket snd-ymfpci snd_xen_front +snet_vdpa snic snps_udc_core soc_button_array @@ -5226,6 +5250,7 @@ sony-btf-mpx sony-laptop soundcore +soundwire-amd soundwire-bus soundwire-cadence soundwire-generic-allocation @@ -5233,6 +5258,7 @@ soundwire-qcom sp2 sp5100_tco +sp8870 sp887x spaceball spaceorb @@ -5263,12 +5289,10 @@ spi-mux spi-mxic spi-nor -spi-nxp-fspi spi-oc-tiny spi-pci1xxxx spi-pxa2xx-pci spi-pxa2xx-platform -spi-rockchip spi-sc18is602 spi-sifive spi-slave-system-control @@ -5285,7 +5309,6 @@ sps30 sps30_i2c sps30_serial -sr030pc30 sr9700 sr9800 srf04 @@ -5423,11 +5446,7 @@ symbolserial synaptics_i2c synaptics_usb -synclink_cs synclink_gt -syscopyarea -sysfillrect -sysimgblt system76_acpi sysv t5403 @@ -5457,7 +5476,6 @@ target_core_user tc-dwc-g210 tc-dwc-g210-pci -tc-dwc-g210-pltfrm tc358743 tc358746 tc654 @@ -5469,6 +5487,7 @@ tcm_fc tcm_loop tcm_qla2xxx +tcm_remote tcm_usb_gadget tcp_bbr tcp_bic @@ -5507,6 +5526,7 @@ tda18271 tda18271c2dd tda1997x +tda38640 tda665x tda7432 tda8083 @@ -5549,7 +5569,7 @@ thunder_bgx thunder_xcv thunderbolt -thunderbolt-net +thunderbolt_net ti-adc081c ti-adc0832 ti-adc084s021 @@ -5558,8 +5578,10 @@ ti-adc128s052 ti-adc161s626 ti-ads1015 +ti-ads1100 ti-ads124s08 ti-ads131e08 +ti-ads7924 ti-ads7950 ti-ads8344 ti-ads8688 @@ -5567,6 +5589,7 @@ ti-dac5571 ti-dac7311 ti-dac7612 +ti-lmp92064 ti-lmu ti-tlc4541 ti-tsc2046 @@ -5585,6 +5608,7 @@ tls tlv320aic23b tm2-touchkey +tmag5273 tmdc tmp006 tmp007 @@ -5641,6 +5665,11 @@ tps6586x-regulator tps65910-regulator tps65912-regulator +tps6594-core +tps6594-esm +tps6594-i2c +tps6594-pfsm +tps6594-spi tps6598x tps68470-regulator tqmx86 @@ -5718,7 +5747,6 @@ typec_nvidia typec_ucsi typhoon -u132-hcd uPD60620 u_audio u_ether @@ -5731,8 +5759,6 @@ ublk_drv ubuntu-host ucan -ucb1400_core -ucb1400_ts ucd9000 ucd9200 ucsi_acpi @@ -5844,6 +5870,7 @@ uss720 uv_mmtimer uv_sysfs +uvc uvcvideo uvesafb v4l2-async @@ -5901,7 +5928,6 @@ video-i2c videobuf-core videobuf-dma-sg -videobuf-vmalloc videobuf2-common videobuf2-dma-contig videobuf2-dma-sg @@ -5917,13 +5943,11 @@ virt_wifi virtio-gpu virtio-rng -virtio_blk virtio_bt virtio_crypto virtio_dma_buf virtio_input virtio_mem -virtio_net virtio_pmem virtio_rpmsg_bus virtio_snd @@ -5965,7 +5989,6 @@ vpx3220 vrf vringh -vs6624 vsock vsock_diag vsock_loopback @@ -6081,12 +6104,15 @@ wmi wmi-bmof wp512 +wpcm450-soc wusb3801 +wwan wwan_hwsim x25 x38_edac x86-android-tablets x86_pkg_temp_thermal +x9250 x_tables xbox_remote xc2028 @@ -6094,6 +6120,7 @@ xc5000 xcbc xctr +xdma xdpe12284 xdpe152c4 xen-blkback @@ -6236,8 +6263,6 @@ yurex z3fold zaurus -zavl -zcommon zd1201 zd1211rw zd1301 @@ -6252,8 +6277,6 @@ zl10039 zl10353 zl6100 -zlua -znvpair zonefs zopt2201 zpa2326 @@ -6265,2 +6287,0 @@ -zunicode -zzstd diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.modules.builtin linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.modules.builtin --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.modules.builtin +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/amd64/oracle.modules.builtin @@ -2,34 +2,29 @@ 8250_base 8250_mid 8250_pci -88pm860x +8250_rt288x ac acpi-cpufreq acpi_dbg acpi_mdio -acpiphp aead aes_generic af_packet agpgart akcipher amd64-agp -amd_pstate asiliantfb asn1_decoder asn1_encoder -asymmetric_keys ata_generic ata_piix atkbd backlight battery bcm84881 -binfmt_elf binfmt_script bitrev bsg -btree button cbc cdrom @@ -38,7 +33,6 @@ cfbimgblt charger-manager cn -compat_binfmt_elf configfs cpufreq_conservative cpufreq_ondemand @@ -64,11 +58,6 @@ cryptomgr ctr cts -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 da9063 dax deflate @@ -95,16 +84,16 @@ exportfs ext4 extcon-core -ezx-pcap +failover fan fat fb +fb_sys_fops fbdev fddi firmware_class fixed_phy font -freq_table fuse fwnode_mdio gcm @@ -122,16 +111,15 @@ gpio-generic grant-dma-ops hed +hid_bpf hmac hsu_dma hwmon -hwspinlock_core i2c-core i2c-designware-core i2c-designware-platform i2c-dev i8042 -icc-core imsttfb input-core intel-agp @@ -139,9 +127,6 @@ intel-uncore intel_pmc_core intel_pmc_core_pltdrv -intel_pstate -intel_soc_pmic_crc -ioasid iosf_mbi iova ipv6 @@ -153,8 +138,6 @@ led-class libaes libata -libblake2s -libblake2s-x86_64 libcryptoutils libnvdimm libphy @@ -163,7 +146,6 @@ libsha256 linear_ranges loop -lp8788 lz4_decompress lzo lzo-rle @@ -173,7 +155,6 @@ max310x max77693 mbcache -mctp md-mod md5 mdio_devres @@ -182,32 +163,21 @@ mousedev mpi mq-deadline -mt6323-poweroff n_null nd_e820 -nfs_ssc +net_failover nls_base nls_cp437 -nvmem_core ohci-hcd ohci-pci ohci-platform oid_registry -packing palmas pata_sis pcc-cpufreq -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core -pinctrl-amd pinctrl-cherryview pinctrl-intel pkcs7_message -pldmfw -power_supply -powercap_sys powernow-k8 ppp_generic pps_core @@ -221,13 +191,9 @@ pwm-lpss-platform rapidio rational -reactor_panic -reactor_printk regmap-i2c regmap-mmio regmap-spi -remoteproc -restart-poweroff rfkill rng rng-core @@ -241,20 +207,24 @@ selftests seqiv serdev -serial_core +serial_base serial_mctrl_gpio serio sg sha1_generic sha256_generic +sha3_generic +sha512-ssse3 sha512_generic -shpchp +sig skcipher slhc speedstep-centrino squashfs sr_mod -system_heap +syscopyarea +sysfillrect +sysimgblt t10-pi tcp_cubic thermal @@ -262,21 +232,15 @@ tpm_crb tpm_tis tpm_tis_core -tps65086-restart -tps6586x tps65912-core tps65912-i2c tps65912-spi trusted ttyprintk tun -twl4030-audio -twl6040 ucs2_string -udmabuf uhci-hcd uinput -unicode unix usb-common usbcore @@ -289,8 +253,10 @@ virtio virtio-iommu virtio_balloon +virtio_blk virtio_console virtio_mmio +virtio_net virtio_pci virtio_pci_legacy_dev virtio_pci_modern_dev @@ -298,9 +264,7 @@ virtio_scsi vivaldi-fmap vmgenid -watch_queue watchdog -wwan x509_key_parser xen-acpi-processor xen-blkfront @@ -317,6 +281,4 @@ -zpool zsmalloc zstd_common zstd_compress zstd_decompress -zswap reverted: --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/ignore +++ linux-oracle-6.5-6.5.0.orig/debian.oracle-6.5/abi/arm64/ignore @@ -1 +0,0 @@ -1 reverted: --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/ignore.modules +++ linux-oracle-6.5-6.5.0.orig/debian.oracle-6.5/abi/arm64/ignore.modules @@ -1 +0,0 @@ -1 reverted: --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/ignore.retpoline +++ linux-oracle-6.5-6.5.0.orig/debian.oracle-6.5/abi/arm64/ignore.retpoline @@ -1 +0,0 @@ -1 diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle @@ -1,121 +1,145 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x852ed8e3 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0x92b58d75 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x028c1238 counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x09ad2fa6 counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x3b89ddb7 counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x606fab06 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xe384b48d devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xea15136b counter_put drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xeab654a6 counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xf4270dfa counter_priv drivers/counter/counter -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x051ca947 otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x0dca3884 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x200a50b6 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x33180ee0 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x356ec917 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3d2c240d otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3f99990e otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x522624e2 otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5678d562 otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5d8951f6 otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x65d873d2 otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7cbe70e3 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa7c6b678 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb8615834 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf596d554 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf8c1b7dc otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xfa22ce3d cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x27d333d8 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x531c638e crypto_cipher_decrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x87890e11 crypto_cipher_setkey vmlinux +BRCMFMAC EXPORT_SYMBOL_GPL 0x337c791e brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x8b4ae7a4 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x069f5d32 devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x071b5136 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x4cc5e070 counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x64ead69a counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7e7cf6b6 counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x8a626be3 counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x99744351 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xa868f3bc counter_alloc drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x02e1df4a otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x23964a18 otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x2c80be1c otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x31c2b7c7 otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x59886f87 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x5f76e788 otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x69257e2f otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x77840cb6 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xbf4d0edb otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd501d809 otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xdaf0d3b8 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xdc144ebd cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xde232a23 otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe1cc351c otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xea5592fc otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xf5c9d915 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xfd07b3fa otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x8bdc1bed crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb4473568 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xd6a76ec6 crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x006fbd2b cxl_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x01437f08 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x01439616 cxl_internal_send_cmd drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x0713d589 cxl_rcrb_to_component drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0c455792 to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0dbe50d1 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x15a5ea12 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1b003b3d is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1c99150d devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x20919607 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x229b0dee cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x27590f97 set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2bc89db1 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2d3f870e clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x319ec1fa is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0655000f cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0d8de4b0 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x106d75b6 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x149bd918 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x14a6170a cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x16d4b79c cxl_set_timestamp drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x187cd56c cxl_map_pmu_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1a40de6a cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x22388950 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23376871 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23535d31 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23a33795 cxl_memdev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2692e609 cxl_clear_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x27649bb9 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2793d504 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3381e28b is_endpoint_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x37e5eab9 cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x38fecd8b cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3f29ed6e cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x44cdf3b6 cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x47de837f is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x48ff086e cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x499b3233 is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x49d36aab cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x509f3881 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x529a6857 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x53f3f5c9 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5b9fc4b7 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3ba187b8 to_cxl_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3f01a307 cxl_poison_state_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x46e762da devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4c9ad798 cxl_mem_get_event_records drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4d1f422b devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x50037306 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5395f865 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x569b6d25 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5745fbb0 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x579aedc0 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5aca7312 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5e799ea0 cxl_add_to_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x624bbed1 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x63b140da cxl_pci_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x64103267 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6a3dbc13 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6aec66b6 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6c743e7d to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ce1f19c is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6d1f7bc6 set_exclusive_cxl_commands drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x779a11a9 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x78529a13 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x798e23a9 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7adb7fe4 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c3f76ed to_cxl_dax_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7db844a0 is_cxl_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x82d50411 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x847ecee3 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x81bd6369 cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x82e7a1b9 to_cxl_decoder drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x85cc8c16 cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8f7d2b59 cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x91c2e436 cxl_endpoint_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x92033477 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x93921b3f read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x866ea2fe cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x876ac96c cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8d17de74 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8f288ad1 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9141c607 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x93a0806c cxl_inject_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9709b4e6 cxl_root_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x987715cb cxl_debugfs_create_dir drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9d492859 cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9f6dff5e cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa26e9db2 cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa2804aaf cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa410e4b4 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa6f1d52f is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa824197f cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xab0763d3 find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xad2ec0b0 to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb9c1d332 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb9c51f77 to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xba477766 is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc3881056 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xccd4725d to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcd9de946 to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd1a64ebc cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd44594c7 devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdd6cb77e cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe23b5f54 cxl_dev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe66e04ff to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe6e9968a devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe8319187 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xec514e02 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xef9af505 devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf0888710 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf95581c1 cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfbac673e devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfdb043fd cxl_port_to_pci_bus drivers/cxl/core/cxl_core -DMA_BUF EXPORT_SYMBOL_GPL 0x001210b3 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x093839f3 dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x1ae6d600 dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x1f16d8f0 dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x23ab74a0 dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x29fb9f7e dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x3595550f dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x39bf1932 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x3aba1647 dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x43db851a dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x7ae8ddfa dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x869ebf4f dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x872f181e dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9a2641bc dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xa0ce728f dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbc15ee71 dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc2c7d920 dma_buf_unmap_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xcb5661f8 dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xe77161cd dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xee4d6f59 dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xf04595a1 dma_buf_map_attachment_unlocked vmlinux +CXL EXPORT_SYMBOL_GPL 0x9c8b0d58 is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9c8d3744 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9d083039 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa40e7783 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa45b258d devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa4cff17c cxl_mem_sanitize drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb2162121 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb4a94f9b devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbf9d2897 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc0c16704 cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc9de4e73 cxl_find_regblock_instance drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcb5fb8dc devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd6b6d356 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd9e6f08a devm_cxl_dpa_reserve drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdbcad59c cxl_cor_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdfcfa3e4 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe1e31292 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe3473192 cxl_mem_get_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe35f5d1a to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe5fee110 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xec28ec74 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf09835c7 devm_cxl_pmu_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf291300e cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf436a4a1 cxl_trigger_poison_list drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf7f72279 cxl_setup_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfc317c11 cxl_count_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfcc7c69a devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe1da23b to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe2e9b2c cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xff116a68 is_cxl_region drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x01fea7ce dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0bfa1841 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0f6e1dfd dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3181b297 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x35924ffe dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3b1eee02 dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3b7184ce dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x552b05bb dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5bebc8c4 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8aab3c53 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x92b9e425 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa17376da dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa17ee609 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb0affe59 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbf3522af dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc7362fc8 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd377daa6 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd624f53c dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xed5a971b dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf2f90af2 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfdff226d dma_buf_vunmap vmlinux DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux @@ -123,9 +147,10 @@ EFIVAR EXPORT_SYMBOL_GPL 0x5a3c9dbb efivar_get_variable vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xa336852c efivar_get_next_variable vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock vmlinux +EFIVAR EXPORT_SYMBOL_GPL 0xee5240dc efivar_query_variable_info vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x1c00e635 ce_aes_setkey EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xf37ca3eb ce_aes_setkey EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xb8c706a6 neon_aes_ctr_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt @@ -138,7 +163,6 @@ EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0x6ddf27bc poly1305_update_arch EXPORT_SYMBOL arch/arm64/crypto/poly1305-neon 0xf39f5240 poly1305_final_arch EXPORT_SYMBOL arch/arm64/crypto/sha256-arm64 0xb455924d sha256_block_data_order -EXPORT_SYMBOL arch/arm64/crypto/sha512-arm64 0x6402c8df sha512_block_data_order EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0x0fca045b sm4_ce_expand_key EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0x7155f33f sm4_ce_cbc_enc EXPORT_SYMBOL arch/arm64/crypto/sm4-ce 0xe609a0d5 sm4_ce_crypt_block @@ -165,60 +189,40 @@ EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x16b7fc5f crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x1a86f1df crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x20e7d0dc crypto_nhpoly1305_final_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x4435edda crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x7ac0d1aa crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x7ca6a938 crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/sha3_generic 0xabd678cf crypto_sha3_init -EXPORT_SYMBOL crypto/sha3_generic 0xc93f8e5c crypto_sha3_final -EXPORT_SYMBOL crypto/sha3_generic 0xe7b0b4b4 crypto_sha3_update -EXPORT_SYMBOL crypto/sm2_generic 0xbe477bca sm2_compute_z_digest +EXPORT_SYMBOL crypto/nhpoly1305 0x2560e71d crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x7b1bb1bd crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x8ab129c7 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x8f909791 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x9fb8d5b5 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xf333071e crypto_nhpoly1305_update_helper EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x103735ba acpi_video_report_nolcd -EXPORT_SYMBOL drivers/acpi/video 0x15c048b5 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0x27ddaaea acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight -EXPORT_SYMBOL drivers/acpi/video 0x59804f6b acpi_video_get_edid EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses EXPORT_SYMBOL drivers/acpi/video 0x7de7bf50 __acpi_video_get_backlight_type EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/atm/suni 0x1e08eecf suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x61277356 bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x7749c2dc bcma_core_dma_translation +EXPORT_SYMBOL drivers/acpi/video 0xc812b187 acpi_video_get_levels +EXPORT_SYMBOL drivers/atm/suni 0x4d703b04 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x251c0d9c bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xc4588803 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 0x04d960b8 pi_init -EXPORT_SYMBOL drivers/block/paride/paride 0x1bdc5121 pi_write_block -EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver -EXPORT_SYMBOL drivers/block/paride/paride 0x4288ae5d pi_disconnect -EXPORT_SYMBOL drivers/block/paride/paride 0x4b08c28c paride_register -EXPORT_SYMBOL drivers/block/paride/paride 0x500ce9fc paride_unregister -EXPORT_SYMBOL drivers/block/paride/paride 0x766a28b1 pi_release -EXPORT_SYMBOL drivers/block/paride/paride 0x9a096d81 pi_do_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xa64f8735 pi_write_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver -EXPORT_SYMBOL drivers/block/paride/paride 0xb9c99cb4 pi_schedule_claimed -EXPORT_SYMBOL drivers/block/paride/paride 0xdeec6862 pi_read_block -EXPORT_SYMBOL drivers/block/paride/paride 0xfc58c00f pi_read_regr -EXPORT_SYMBOL drivers/block/paride/paride 0xfcde5454 pi_connect -EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa27e077a btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0xf345a9b5 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xe31dd74e mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xf759ddd9 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x0156e672 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x06b7d61f mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0f758285 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x09e49083 ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x47657573 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str @@ -226,8 +230,10 @@ EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x94447b66 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x95762171 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa072123c ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9e630f9c ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd @@ -237,54 +243,53 @@ EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf388b18b ipmi_destroy_user EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf753d13f ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x01fae108 kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0485a25f kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0fe6a262 kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1601484c kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x2d550003 kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x87923103 kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x8d042daa kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa16b8280 kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa6687e67 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xad611924 kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb9f78328 kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xca396858 kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdebf8fce kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x56ece3d7 st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8dc3adf6 st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc408e385 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd1178e97 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x4c9b1af9 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa38373a1 xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xbb9606b9 xillybus_find_inode -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1207e84a xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1d37d888 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x001e4cfd kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x04d497ee kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x34027e6d kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x48e6b97e kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x6f62360b kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x75c02703 kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x94123314 kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x9d412b63 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa9353b3f kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xabd2f168 kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xaf9ffdb4 kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xd0736b12 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xea0849ee kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3fc76ac3 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x797c646a st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x937b5213 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd9e29798 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xb519435a xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe2f854cd xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xf1ad151c xillybus_find_inode EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd8d2aa6d xillybus_endpoint_discovery -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5816750a atmel_i2c_enqueue +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x303c957b xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x93c53b20 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa63eca14 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x4d26cb3a atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb049cc3d atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x87c7eb04 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x9d075eda atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xed569939 atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/caam/caam 0x0e3ee15f caam_drv_ctx_init EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested -EXPORT_SYMBOL drivers/crypto/caam/caam 0x1941003e caam_drv_ctx_rel -EXPORT_SYMBOL drivers/crypto/caam/caam 0x219bf7f8 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0x3744c42b caam_drv_ctx_update EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free +EXPORT_SYMBOL drivers/crypto/caam/caam 0x6cb283bc caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0x746036ab caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xb89965ad caam_qi_enqueue EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xd68e6306 caam_qi_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2fa79963 caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5b483817 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7ed19c26 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb7e4266b gen_split_key -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbb9e623e caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1cac1f6e gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9aac0b0a caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xb24e8928 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbe02a8b5 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xcfae2b44 split_key_done EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly @@ -303,686 +308,709 @@ EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash -EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x249eb8cd dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x29fdaa77 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0xcf3dee37 dpaa2_caam_enqueue EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz EXPORT_SYMBOL drivers/crypto/caam/error 0x60dbc82a caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0x6522ff22 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x7681fdef xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x02825cbe fw_card_initialize +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x81dfc795 xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x9605d1dc xdma_get_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xbb2924f6 xdma_enable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x70c0a73a xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0aa7186a fw_iso_context_start EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x19070e2a fw_iso_buffer_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x335ff85f fw_iso_resource_manage -EXPORT_SYMBOL drivers/firewire/firewire-core 0x34b4b4d4 fw_send_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x34c7dffc fw_iso_context_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x40f125fd fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d36a851 fw_core_remove_card -EXPORT_SYMBOL drivers/firewire/firewire-core 0x5712c0b4 fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a93ea82 fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c613678 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4676871b fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5a0dd0c8 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x617dc532 fw_core_handle_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7c71926d fw_core_handle_request -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f63c83f fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x831e1b80 fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x83b8eacc fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6fa82b82 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x78884943 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x794206f2 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x80b12073 fw_iso_context_destroy EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x93ccc83e fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a303199 fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c4ce6a4 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa55e2b0d fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8865b945 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x89961952 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ba2a8c1 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ae91052 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9d347075 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa221060d fw_core_handle_response EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb220ec8f fw_iso_context_queue_flush -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc30d9a6d fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8df7dbe fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5c60f99 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb8a5b74c fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcac3cf01 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcbb0df1c fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd677d7fb fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe220a724 fw_core_remove_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xe919523e fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0xead13fdf fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xee203987 fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf007ba2c fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9ac4aec fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfcd96572 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xecd4df6d fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xee21776b fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf69de1aa fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfedb849b fw_iso_context_queue EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xaee2e3dd imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xe29a4ac4 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xfddb25e6 imx_dsp_request_channel -EXPORT_SYMBOL drivers/fpga/dfl 0x18b0dad3 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0x920df79c dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0xb88d15ad sysconfig_probe +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x4d287c07 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x759cb2c4 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xbe8d181e imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x99ad23a7 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0xfdfb215b dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0xdb87d3e5 sysconfig_probe +EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0ea5d74b amdgpu_xcp_drv_release +EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0xd32d1d0a amdgpu_xcp_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02624d60 drm_dp_vsc_sdp_log -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05a317cb drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05fe3dff drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08ac58a5 drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b487a6f drm_dp_read_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15003f87 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x028bff8c drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02cbddc2 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x03f25501 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x04595b27 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x056c76f7 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b3a7543 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0c6ac890 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f1fc889 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1184d38d drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11ca4fed drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14626b88 drm_edp_backlight_set_level EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1675d883 drm_scdc_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x17fc8fe6 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x189f87da drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19ac6900 drm_dp_read_dpcd_caps EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1c08238a drm_dp_atomic_find_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x200de204 drm_dp_read_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x22dde8ee drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d15d47d drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e251534 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f37d21d drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f86af7e drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x217ec69b drm_dp_mst_get_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26686a59 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24ada755 drm_dsc_set_rc_buf_thresh +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x256ad7fe drm_dp_dual_mode_max_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28f9bebf drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29fbe227 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a0055fd drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2b98584f drm_dp_mst_topology_mgr_resume -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2db7552a drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x271ed394 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2be4ba37 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2de10d96 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e4b34e3 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ea10936 drm_dp_mst_atomic_enable_dsc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x305c2cad drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x31481fc9 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x328f398d drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x344be7fd drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3457c5b0 drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x35dd5a0c drm_dp_read_lttpr_phy_caps EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3eb53980 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4026cc50 drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41b8283f drm_hdmi_avi_infoframe_bars -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43d561a5 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44316759 drm_dp_mst_atomic_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44a7e978 drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e6056b5 drm_dp_mst_atomic_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3effa745 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3f1ec87d drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3f91db37 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40005d38 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40124791 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44c0a361 drm_scdc_set_scrambling EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4848db33 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4dc9811f drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e35e313 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x50c79617 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51baf3ab drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49c449aa drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4df30e77 drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4f47989e drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5259399d drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5385261a drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53fc5540 drm_dp_mst_connector_late_register EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5461a84a drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59d66cef drm_dp_pcon_pps_default EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a55c6fc drm_dp_lttpr_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b9e5677 drm_hdcp_update_content_protection -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5eadc9ae drm_dp_get_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6065b516 drm_dp_pcon_is_frl_ready -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61723fed drm_dp_dpcd_probe -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61f2ef99 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e3c4b64 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x615539d5 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6268aad0 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627ba04b drm_dsc_set_const_params EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63aa68c7 drm_hdmi_infoframe_set_hdr_metadata EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64d090a8 drm_dp_remove_payload -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64dc77d9 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64eb265e drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6504216b drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65137909 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x685d8ccd drm_dp_set_subconnector_property EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69512da6 drm_dp_cec_set_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6afd2f66 drm_dp_mst_update_slots EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b8f42e1 drm_edp_backlight_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6ef497e0 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f35044f drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f92a525 drm_dp_mst_atomic_check EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75af45b6 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x761ad34b drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74eca1e4 drm_dp_pcon_reset_frl_config EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x78f346c5 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79e82d29 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79f03c99 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f97d2f0 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8461dc2a drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85703f63 drm_lspcon_get_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8604bde9 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7889151e drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79008c7e drm_dsc_setup_rc_params +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7ca61755 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d87f2d7 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f848190 drm_dp_mst_hpd_irq_handle_event +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8403d5d6 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85e6e8d3 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8aa7becf drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8c7edf02 drm_dp_mst_add_affected_dsc_crtcs EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d4bca4b drm_hdmi_avi_infoframe_colorimetry EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8de39785 drm_dp_mst_topology_mgr_destroy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f498e1b drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x912c9343 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x916c94d4 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e8eb313 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8eebec29 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f62611f drm_edp_backlight_disable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92e06363 drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9e5f9ef3 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9ef06474 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95883bb4 drm_dsc_initial_scale_value +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x976fd854 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9937a050 drm_atomic_get_new_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d96c92f drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9ed3a259 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa07675ab drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa19b38e5 drm_scdc_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa32da118 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6f1c461 drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa8247fe6 drm_dp_add_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa9dc899d drm_dp_mst_connector_early_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xab9e78d2 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xac9f54c3 drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa21815b8 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2ad241a drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2ce502f drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5088151 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa64c82d1 drm_dp_remove_payload +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa871716e drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa8b92caa drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa8cf744b drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaa63a555 drm_dp_add_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xac9e3a67 drm_dp_pcon_pps_override_buf EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb1256acc drm_dp_mst_root_conn_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2d181f0 drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2e63051 drm_dp_mst_hpd_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb36211dd drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3de768b drm_dp_pcon_pps_default -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4572ea5 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb6a7020e drm_dp_mst_add_affected_dsc_crtcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb78a8bae drm_dp_atomic_release_time_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8833021 drm_atomic_get_old_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb9ec9a7d drm_dp_set_phy_test_pattern -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbd6f57a4 drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf2b8c0b drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2a0e30c drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb70ba4bc drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb79732f8 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7e363e1 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7f0534d drm_dp_mst_hpd_irq_send_new_request +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbae9dc36 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbeb39d06 drm_dp_dpcd_read_link_status EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc034070d drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc14a1935 drm_dp_pcon_hdmi_link_active -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc1941661 drm_dp_downstream_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc49b3747 drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5a80b83 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc0f5075e drm_edp_backlight_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc6d3c2ee drm_hdmi_avi_infoframe_content_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc72cdd3b drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc6965173 drm_dp_read_clock_recovery_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8040cb3 drm_dp_aux_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca75c8bb drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb310559 drm_dp_mst_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc4a2184 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xca597aaa drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcced4247 drm_dp_mst_root_conn_atomic_check EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce8466a1 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcfc30f52 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0e95456 drm_dsc_get_bpp_int +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd2375cd4 drm_panel_dp_aux_backlight EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5cf8f9c drm_dp_128b132b_read_aux_rd_interval -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd7646354 drm_atomic_get_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd782d3f3 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde5eb3cf drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe081fa88 drm_edp_backlight_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1ab985a drm_dp_mst_topology_mgr_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe361fa70 drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe3c742a7 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4a00e07 drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd7f2fc28 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd9047719 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb0d4e8d drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdcb06eb0 drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdded1003 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde2ab49d drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe17d0426 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2468a48 drm_dsc_flatness_det_thresh +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4db027b drm_lspcon_set_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5b49e27 drm_dp_remote_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe8bc9f96 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb59946d drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeba9598d drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xec3f1efe drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe764c467 drm_dp_mst_edid_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe89070a0 drm_lspcon_get_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0f2aff8 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf126d270 drm_scdc_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf3dcdc5d drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf48cec60 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedff33dc drm_atomic_get_mst_payload_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0649128 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf1996b5b drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf2c3af06 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf31f064f drm_dp_pcon_is_frl_ready EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa32acd2 drm_panel_dp_aux_backlight -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfaad7ac0 drm_dp_mst_topology_state_funcs EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc96507c drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb67e4a1 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc67d3de drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc769b8f drm_scdc_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/drm 0x01370e52 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0139eadd drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x014610cc drm_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x015476cc drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0243e8c7 drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0247f6a9 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x000a6574 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x001deee2 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x011b00f5 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x027cb792 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0285f5ce drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x032e4e69 drm_encoder_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x043e3438 drm_privacy_screen_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ae7e78 drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0509f3c6 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x051ad90c drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x061a422d drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0661cbdd drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07a385a2 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e75bb6 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f854c3 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x076e777a drm_connector_attach_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x085a617c drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a2bec04 drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5fe5e6 __drm_dev_dbg EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a773c65 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a9edd17 drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abe4eaf drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b042537 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7b4dfa drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7e5e28 drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cabc0a7 drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d7e35e2 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d96a9f3 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abe24a3 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0be610c8 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c38ca6e drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7b9384 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cd03217 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d78cce8 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d8c4a0d drm_crtc_send_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e2a111e drm_connector_set_path_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ef1ad17 drm_writeback_signal_completion EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f97bfaf drm_is_current_master EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1023f22c drm_analog_tv_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x103202c2 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x106caaf2 drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x109779d2 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10b59ec5 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1182a2ce drm_gem_lru_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1266147a drm_mode_create_dvi_i_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1362c07f drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x147805ac of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14928d54 drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c1e16d drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19339b1e drm_connector_oob_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x197fabfd drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x19f58f94 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10e82ae9 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x114aa9bd drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12deb0c6 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a11bef drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1428037e drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1517c18f drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x159fcde5 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b56274 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d34edd drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x171b458a drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x173556a1 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x174f609e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17773020 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e9d22c drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x184579ba drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x185d4559 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x189f3287 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194cfdb0 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a362731 drm_atomic_get_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a58ce85 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b80c33a drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ba91af8 drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d7ee2e4 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eb6d848 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x206c60c2 drm_privacy_screen_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x213eb31c drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x21581b3a drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c63b9ed drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e6f8c6d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eae7018 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f3f462a drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20657e18 drm_gem_prime_import_dev EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x219cc585 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2244c861 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x228610f5 drmm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x231ca29b drm_client_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2382252b of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ba1855 drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f746e9 of_drm_find_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x248b09c6 drmm_mutex_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2492aa37 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2249474c drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x225e720d drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22a96fa6 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x233f682c drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2351b14b drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23a39033 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23aa758f drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24004e7b drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x243af27b drm_sysfs_connector_status_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cb7390 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a38056 drm_send_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25249334 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a77cfa drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25343eda drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2594c90b drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25b7968c drm_connector_init_with_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d09444 drm_panel_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ffea72 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2654994e drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26b69506 drm_hdmi_vendor_infoframe_from_display_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x283d7721 drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x285fcbda drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x280cba98 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28412da8 drm_gtf_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28cfe316 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29df38ea drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29edbb87 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ee0c80 drm_atomic_add_affected_connectors EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a1864a1 drm_plane_force_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a340827 drm_crtc_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a7b94bd drm_set_preferred_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aea75f8 drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b55375c drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2de934 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6e1352 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d510506 drm_event_cancel_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d7c3920 drm_crtc_vblank_waitqueue -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e547f84 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a97bbf6 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2baef28d drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d627c59 drm_gem_vunmap_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed40e60 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f024bdb drm_connector_list_iter_next EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8e7731 drm_atomic_get_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb691b4 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0x307a21b1 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x30eb4ffe drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31af5681 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30648626 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x316870a8 drm_atomic_set_crtc_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e61901 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3215fd00 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3271f450 drm_connector_list_iter_begin EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b94337 drm_privacy_screen_set_sw_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x333795e9 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x338ea6aa drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33c9625b drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x353f9908 drm_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35409265 drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e89252 drm_syncobj_replace_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36802812 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e42458 drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3763da50 drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37778814 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x380ebed0 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ce3fe9 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34265b1f drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346ff3d6 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3522d889 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e07d0c drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376e6f6d drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x378c5871 drm_atomic_check_only EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e79574 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38fc94e3 drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x393367f4 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x386dc96f drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38d8047e drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38f0e96a drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39148645 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3954b5d6 drm_gem_free_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a84ca41 drm_atomic_normalize_zpos EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3af38657 drm_mode_prune_invalid EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b682980 drm_connector_list_iter_end EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c44e581 drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c90b914 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca163d3 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cac3d5a drm_client_dev_hotplug EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0dd304 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e45fe53 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3edafb8f drm_client_modeset_commit_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fc734f0 drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e2c309 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f41fe3f drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f99bb45 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb1f780 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x409ab354 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a04fda drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40ad0217 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x412827b6 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4155ca15 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41779a38 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x417dc309 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41eb5a6c drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41eece48 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x439c40d9 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43bbf2f6 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f75976 drm_atomic_get_new_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4455a720 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44786bbd drm_mode_create_dvi_i_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44b2ec63 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44f8ef97 drm_connector_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x459b668d drm_mode_object_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45df4407 drm_mode_config_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x468b7412 drm_gem_object_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f740b2 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45e5647f drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x468900b5 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46f30f0e drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x473b73ad drm_gem_lru_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a8d482 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bf276e drm_privacy_screen_get_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e89b87 drmm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4954d866 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a07e3a6 drm_set_preferred_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a3e9900 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab3c621 drm_connector_set_tile_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4acade23 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5a7153 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a51f50a drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aae4d9a drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b0fea75 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7d213e drm_connector_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c707437 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ccacf36 drm_master_internal_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9eba6f drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b996cac drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bcc0d1e drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d7832b7 drm_gem_put_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e5ea6e0 drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e8b2c2f drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ecfb400 drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f09e61e drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8d574a drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x502af9e7 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3cad39 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ee21a8a drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4efc347a drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa57270 drm_connector_unregister EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50d322d6 drm_writeback_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x518797c0 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51ddd4e5 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51f0d7f3 drm_open EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53171ebd drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53a47740 drm_connector_list_iter_end -EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c5ab47 drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x54231b2f drm_object_property_get_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5452ba9a drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5477e993 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5232924b drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5298c184 drm_gem_lru_move_tail_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53cd7554 drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5439a9a9 drm_connector_attach_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5666cb54 drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5666d5e8 drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e5515a drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57291ca5 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x560e7372 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56125722 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5691ca84 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5707f39f drm_modeset_acquire_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown -EXPORT_SYMBOL drivers/gpu/drm/drm 0x577598db drm_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c48730 drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f756fa drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ff5d70 drm_modeset_lock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59017c16 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57e59642 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5891a357 drm_show_memory_stats EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x594227d7 drm_gem_map_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5abfa648 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e882b93 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eae67cc drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5957308c drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59cd0444 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a1fd033 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a24415f drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a5677a8 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a67e209 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a8fcfc8 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5abd43b4 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af471d4 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc440ed drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc5db85 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dc1521a drm_mode_create_tv_properties_legacy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ed1402c drm_gem_prime_import EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6052d13d drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c621e5 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6176713c drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x617b91c1 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0x629cf813 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6340dc1a drm_edid_override_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x63527271 drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x646ada8f __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f7398a drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64fecda6 drm_mode_create_dp_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6513c23b drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9cf0b8 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb387ce drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fd421d5 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x604c52be drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ebcbfe drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62408fec drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x634b469f drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x651ec4f7 drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x65dccc54 drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x662ef650 drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67ebf4a7 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x686588a5 drm_property_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e67d17 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6582bb3b drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682c9bca drm_client_modeset_dpms EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6955331c drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x69690dd9 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x694c5d6d drm_bridge_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a3959df drm_display_mode_from_cea_vic EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ae9e15d drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cc3fa2f drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcde2fe drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e11a0cd drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e2ad888 drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f49fdad __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x709ef969 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x714f2df9 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7239e31c drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x733eea4f drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74139be1 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x74669520 drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6afc22b6 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b35ab76 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd2e2ad drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cfff062 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d12b689 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d19ae2e drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e01621d __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e9b99c5 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fa7c9d1 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7156ca98 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x728e9895 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7311424b drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7374dfcf drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74a7ffce drm_display_mode_from_cea_vic EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75318487 drm_get_edid_switcheroo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7577cdc4 drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c085d7 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78bcb8f2 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x79443768 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75534480 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76dbf182 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x786f1b7b drm_crtc_arm_vblank_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a37d33b drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d53076 drm_gem_private_object_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a085bcc drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a3fd003 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a951a43 drm_plane_force_disable EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b57f249 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd374c6 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c491916 drm_vblank_work_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc0287e drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7db7adfc drm_client_framebuffer_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6ac4ec drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e6546ba drm_modeset_lock_all_ctx EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f9bb30f drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7faeb526 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x801a0d12 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x807817fc drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81676d69 drm_object_attach_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a433dc drm_property_create_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81edffcd drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee17f79 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f20261d drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80d4793f drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x816f27ad drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81afcfcd drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f75ae1 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8205c757 drm_plane_create_zpos_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82253708 drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c4115b drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c99c1d devm_aperture_acquire_from_firmware -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85346a04 drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8534b204 drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8686e8e8 __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86aff120 drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86ba3aef drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8982d320 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89fc1bab drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b973c8a drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ba66264 drm_privacy_screen_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ba918ed drm_framebuffer_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8beed5dd drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c0d5756 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c35d2cf drm_mode_is_420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cbfdbd6 drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d67d3f6 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x821cb4c3 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x821e126e drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8287b958 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83ac4d6e drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840e5704 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84632836 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8463eb25 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85db1932 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x866ef02a drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86de1b04 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8719b4ee drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x883a65f0 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x889c924a drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b5a2aa drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c35d6f drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8934d1a7 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3ae270 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a62e9ca drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c028d12 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c507091 drm_mode_object_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e60fb24 __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef4d132 drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f1b1d17 drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90240b19 __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ddf872 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9171c262 drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x91e65648 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92345f70 drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0x924fb8c8 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c11cfe drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9323a29c drm_atomic_state_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93474bdf drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93bd5a76 drm_gem_dmabuf_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x93fb8566 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9439d81b drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b3e3ef drm_prime_pages_to_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x960b2627 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e5b18b drm_gem_prime_import_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0x973bf1c9 drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x97853f76 drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9793e512 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8daee259 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dc81fda drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8df69234 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f71ceae drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d80ad0 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92526ef1 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x927be917 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f18cd7 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957e656d drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95bf53cc drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95cc2ab6 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96254a47 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a475d0 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96d5b443 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x976c3261 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9784e53a drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x979492de __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d40857 drm_gem_create_mmap_offset EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9886e157 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98d2f2bf drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a14a203 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a89de43 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a913849 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad64d4a drm_edid_read_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bbb8675 drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c3122b8 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c34e987 devm_drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9caec25b __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9baecfac drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bccefdd drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cde0bf7 drm_gem_object_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cfad68b drm_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d8c8d6d drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f7fbed2 drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fc18c56 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0844c07 drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c6e244 drmm_mode_config_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c7c1cb drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa13ceea9 drm_connector_attach_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa168e745 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9db790a2 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9df88bec drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e1e78b7 drm_gem_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ec739fe drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef30947 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f5bdb90 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ca80c2 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa141d575 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1a501d1 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1e21edd drm_connector_attach_max_bpc_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2648dc8 drm_gtf_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31968fd drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29bd767 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3035bf2 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa334ce02 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3891161 drm_dev_printk EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e9a200 drm_print_regset32 -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa44b7a55 drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa493e163 drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ca6dff drm_connector_attach_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5daa6ba drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fa0744 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa643f429 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e50b1f drm_privacy_screen_unregister_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7044fd9 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa74de4fc drm_atomic_bridge_chain_pre_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a93525 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7cae332 drm_plane_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9114c80 drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa924c49b drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4685be8 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4817769 drm_show_fdinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa481e6b0 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b7e8cc drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d571d6 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8187a0a __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa888403f drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8c1a57a drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9176500 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9455a8a drm_panel_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9880871 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa98d3eca drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9f70cb7 drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa5a78ba drm_atomic_add_affected_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac73c09 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad13590 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab8bc531 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xabd8b34a drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7bf806 drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca0eef6 drm_privacy_screen_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca39358 drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacacd5fb drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacc5605a drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa966ebc9 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa5cd1f1 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa8739f drm_modeset_backoff EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xadadc880 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad51edf3 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadaf21f1 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadd15e6b drm_clflush_pages EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec92d92 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaedccc1e drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafcf0fa8 drm_put_dev -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06413c6 drm_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06429a7 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaebe1c5d drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafae5b93 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafbbe6b5 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafd31f6c drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafdb3108 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafec6a94 drm_edid_read_ddc EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ee1ee9 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2127d3d drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb159062f drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1cd929b drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1fe6b7f drm_gem_unmap_dma_buf EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2d0e9bd drm_connector_attach_max_bpc_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b175da drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3d662fe drm_master_internal_acquire EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb408ba70 drm_dev_set_unique -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb58d9f8d drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4607fde drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb577c031 drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb59a1010 drm_crtc_from_index EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb645d1f7 drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6bcf3cd drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6efdfc0 __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb762b9bc drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7780431 drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8837c93 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb774c31b drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87e9847 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a17a86 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e42b32 drm_framebuffer_remove EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb8eb09b drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2e384c drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd95e601 __drmm_add_action -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdac567a drm_display_info_set_bus_formats -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe64e3e8 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf628bbc drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0228eeb drm_privacy_screen_call_notifier_chain -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1032de4 drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1fbe8eb drm_crtc_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d0283d drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2da2324 drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc30a81bb drm_mode_parse_command_line_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5c2b2ff drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b85356 drm_modeset_acquire_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6ec64d8 drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc744c9f0 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9f17476 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba145940 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3e6230 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaa20c93 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad48a29 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb07a593 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5b4d99 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb837d01 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc17f0b2 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2b632c drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd448100 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff60432 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc010261e drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04e6f46 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18ed283 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2861b61 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2a7b993 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2bd1144 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc330b61b drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4c3eb07 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d30903 drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56f98bd drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f732d6 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc69b8567 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a94548 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc780cc3a drm_prime_sg_to_page_array EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc79c0178 drm_mode_validate_ycbcr420 EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca2aeb1a drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcab756a4 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad82fde drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2d5a51 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc1cccfb drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc31380e drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccbca9dc drm_vblank_work_schedule -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccfbca9e drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7dcd036 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc92371ac of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9460193 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9479698 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9527b56 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9d48eb2 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9eeb430 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8613b6 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaa6d12a drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca13155 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccad2d8d drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb75675 drm_atomic_state_default_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc33683 drm_master_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce2cdf75 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd039c6e6 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce81a111 drm_atomic_get_new_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce97a0b5 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xced1996f drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceff2eed drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0f6082 drm_edid_connector_add_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd03e108e drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05ed6e9 __drmm_mutex_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a0a5b9 drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2407d22 drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3cd4da3 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd44a3cc5 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd58e6c3a drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd248bc2b drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2674dc1 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ab8956 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd525203c drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c18682 drm_property_replace_blob EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d57003 drm_crtc_vblank_count_and_time EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8076f4a drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd86f9251 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e70686 drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f78324 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda37f110 drm_bridge_attach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab04895 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d4c70a drm_crtc_vblank_on EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbab6556 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbfe6ba7 drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc96814b drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeccdd2c drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd71fcd6 drm_plane_enable_fb_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb0da44 drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe08a382d drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2623492 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b7037f drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d313b5 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdffe6108 drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0026d6e drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02d5da9 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1cdb6aa drm_compat_ioctl EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36b4fb1 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe38eaf81 drm_mode_prune_invalid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e8f58e drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4f2513a drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe52281e7 drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5366922 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3f9580f drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5dd2132 __drm_atomic_helper_set_config EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ad9ed3 drm_modeset_lock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e9f4f8 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe88e1ddb drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe63f9904 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6745c08 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe711b201 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe74ced43 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7e2a5ef __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe89c42d4 drm_atomic_state_default_release EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8d2d689 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe955eae3 drm_state_dump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe959f1bd drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeacad6cf drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeacbb9b1 drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb2d5660 drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb777a4a drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8c9809 drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeca1e8d5 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0xecea139c drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6de87e drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea702697 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeab78c39 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb14aa8f drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4cd69f drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebb42108 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xede3ef44 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee8c6eda drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef0f2570 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef320cf1 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf01077c8 drm_object_property_set_value EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0967ebe drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf095dc96 drm_get_tv_mode_from_name EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1483ceb drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b50154 drm_modeset_lock_single_interruptible EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d1b0eb drm_gem_map_detach -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2d454ea drmm_kmalloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf34a778b drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf37f5ead drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e59d56 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f4108b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27a995f drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2a94920 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf391a9bb drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b928e6 drm_read EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ee80d2 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5030ae3 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6592df1 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69ee022 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6dc5c00 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf745c853 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf779013d drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf47b6fbf drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf51eceda drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52595dc drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf57f26e1 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf682c3fb drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6df6405 drm_property_create_signed_range EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89485fc drmm_kfree -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e2521e drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8eb0245 drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9278603 drm_panel_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2e3e17 drm_get_edid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb84c6cc drm_panel_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb8a09cc drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc6d83c3 drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd42375e drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd9c92e8 drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe2219ca drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d63d5c drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa8481a7 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa97fdb6 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb2e83da drm_crtc_next_vblank_start +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb5755c6 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb8ee94f drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc8934d drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbcc0bd4 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbea0dea drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcbb1294 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd464e8d drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe51640a drm_atomic_get_new_connector_for_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfedb6bd3 drm_panel_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xffac1def drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffd6927c drm_mode_create_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy @@ -992,434 +1020,449 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x2e67b5d0 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xc02f1b8e drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0241bdd3 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x027757ac drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0447deef drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05703ec1 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06560685 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07b6c321 drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07f84d4c drm_fb_helper_cfb_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08290490 drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08360bfe __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a83edcb drm_gem_simple_kms_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad568ed drm_gem_fb_begin_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c990a2b drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ce61898 drm_helper_crtc_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d0a037a drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f68b64a drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0faed28f drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1111e714 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11892d16 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x12129207 drm_fbdev_dma_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x4382d308 drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x6160fabb drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x009d106c drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01371e5c drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f39dae drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x043863c6 drm_fb_xrgb8888_to_rgba5551 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x048651c5 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04bf010b drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x065d9fdd drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07029f83 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x073e2bae drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x084c77bd drm_fb_xrgb8888_to_xrgb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0976d983 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0acdf65b drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ae0c812 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d201eea drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d32ceaf drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb4f9ca drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x115a9ede drm_atomic_helper_check_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x138af70c drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13af3a9c drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143f5f78 __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1663330a drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b1a926 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1723a012 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18f1fd85 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x197fcc6c drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19fb27c9 drm_bridge_is_panel -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a75a787 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b0685f1 drm_fb_helper_sys_read -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cdca12c drm_fb_helper_cfb_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d2b2df7 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f854c6f drm_helper_move_panel_connectors_to_head -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x205fb136 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12a182b5 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12a18cfb drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13efe93c drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14d125de drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14e44c7d drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14eb2c27 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17d224d2 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x183a6c89 drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c2608da drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c696814 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d696f7c drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dfb9c46 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ec64d6e devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2159f753 drm_fb_helper_restore_fbdev_mode_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x222c0a37 drm_fb_helper_sys_fillrect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22ed18cb drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23e44ae1 drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x263c8011 drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f765a5 drm_fb_helper_cfb_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28e02d05 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a87064e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x230e42e7 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25ab3b19 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x261d398f drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x274d696f drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2894f537 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28c17dd0 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29dcf060 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ba67760 drm_atomic_helper_commit_duplicated_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d66b8f2 drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3048ef09 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x330c40fd drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33330061 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35aff7be drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35b4d2e6 drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379a57a4 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a28a9bb drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b37b751 __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cad0c2a drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d8d3604 drmm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eca2bca drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4413a6b1 drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x454cc454 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46660e03 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e95d75 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x491eab7e drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a2c2fff drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a5b3bb5 drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b4315fc drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b54bc98 drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bbc8714 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c298d24 drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d0e158e drm_fb_helper_sys_write -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d33b52e drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ff7d6ee drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f0c61e5 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x363e2698 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38501c95 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a508903 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3abd479a drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bbf224c drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c13522f __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c3b709b drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dfef892 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ec9fcdf drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f60204e drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42e45970 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x434b64b2 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x439dbb18 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43dc3998 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44e71b91 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45a17164 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45d4651a drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x482adf69 drm_connector_helper_tv_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a045b3f drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a92f921 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b47b154 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b92efb6 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b95f6fa drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f4bfb2b drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f67c956 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x506ac154 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5099b05d drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x509f5396 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x527cf2a8 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52b5cf17 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x534311c7 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x552274a4 drm_self_refresh_helper_alter_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55561218 drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x581e8f71 drm_gem_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5872fc2e drm_atomic_helper_check_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58d9e539 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3d8635 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55a75205 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56131950 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5996cdac drm_atomic_helper_damage_merged EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cb6cc0e devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cdecd4a drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dea9af6 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e08d5c0 drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f26f2ac drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6028d52d drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60aaeea2 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62fa2c5e drm_self_refresh_helper_alter_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6347c718 drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6360c78a drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6389e008 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6392aaa6 devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ac1905 drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64d8fb85 drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65b45e45 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66dc62fa drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x674964b3 drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68bdb0dd drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7a9250 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b08c35c drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aab23a7 drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e759e8c drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ec02ddd drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x601dfdfb drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6024797d drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6135734b drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x621204e2 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62923f9a drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64a8e62b __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64ff3f4f drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6607bf3e drmm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x663b79b8 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67c563a3 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6979956f drm_fb_blit EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bd9fa1f drm_fb_helper_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c8f9571 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d685150 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bc24cd4 drm_fb_helper_set_suspend_unlocked EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6faf4479 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x707517c3 drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71127076 __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7149cf43 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71572144 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72797273 drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75d36b14 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ec3539 drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x783bf339 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78bb0aea drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b5b66d1 drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c2680b3 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ea6cbfa drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f05c4e8 drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f16cc61 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8054d33d drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82bb7285 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83af929a drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83f9f1e1 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ebd6e01 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x740a0e9f drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x745f4ef7 drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76278349 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cd9aed4 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eeaaa0a drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fe933c8 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x810654b1 drm_atomic_helper_connector_tv_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x856194b4 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85cd16e9 drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x868e04e9 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84cfc5dc drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85265008 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x853e32b5 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86a7d322 drm_atomic_helper_check_planes EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x884223f6 drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88863c32 drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a351c1e drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ba1a98b drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c96d018 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dcbbeb1 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ea8db2a drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f76869e drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f7e0051 drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91c1ae3c __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a65c7fb drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b66e5ee drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bfe7ff9 drm_fb_helper_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c89945b drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d1ffd48 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f123cb9 drm_fb_helper_set_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930602f7 drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930dbceb drm_fb_helper_cfb_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93c1d5eb drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94aafdab drm_plane_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9565c3a4 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95da0b02 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96855ef7 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9202cbb1 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92a6617a drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94d932b6 drm_fb_xrgb8888_to_rgb332 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d497cc7 drm_atomic_helper_check_plane_damage -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ddfd134 __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0646f00 drm_fb_helper_sys_imageblit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0a89bca drm_fb_helper_sys_copyarea -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0edd048 __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa217d27e drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa37ed6f6 drm_fb_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa49f3701 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4f7bea8 drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6d2ef1a drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa845191e __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8849eb2 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaac5213e drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xada17a7e drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a598fe1 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b1188c4 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cc980ed drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa253f640 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa270a586 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa278ee71 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa367e15d drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4493d2f drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c3d64a drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5d695cf drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa653578f drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa91be2af drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9db989a __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac8db25f drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacc06e89 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadaa5cf7 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae853288 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaea420a4 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb009ccc0 __drm_atomic_helper_crtc_state_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0d784f8 drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2b003db drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3702e23 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6404cf0 drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb67c7e73 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb19f5033 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2960554 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb437ac69 drm_kms_helper_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8f76d72 drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8faab44 drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb92533e6 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9abdecf drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb6f1f2c __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd867c06 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc04435b0 drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2032d40 drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3286297 drm_atomic_helper_update_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc344da4a drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6beda17 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6cee405 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7e3ad2c drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcbfa5cc drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe5caddd drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc04647f2 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc11cee81 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ddbc41 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc22074a2 drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3dfd6e5 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc415a5d9 drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc510c31a drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5326994 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc540dbea __drm_atomic_helper_plane_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc863c7fe drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5b7bde drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6be4abc drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6d5a342 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca6ac93e drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcab939a8 drm_fb_helper_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbc0caff drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcca28227 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea83949 drm_atomic_helper_bridge_propagate_bus_fmt -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xced17df2 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc78bff0 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccd6c112 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce05b5c9 drm_fb_helper_damage_area +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceb5d863 drmm_panel_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd146960b drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3623423 drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd457852b drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd53330c1 drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd58453c7 drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda438620 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb2dcf9b drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc639c11 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd84fa03 drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfb343a4 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe26d69e8 drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8a85a0c drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8aac50e drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9983c63 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9984090 drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9b7a0c3 drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d8c918 drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeeb1b6c drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0f76b55 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2eaf2d8 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4d6fba0 drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7792fc1 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa01e0a3 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbbf635b drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc54fb40 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd10d8ec drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd4bcb5f drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff8af171 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffd6ced0 drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0df23cd8 mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2b6bd4af mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4836ed85 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4bd53bc5 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x504197a7 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x64bdb8f3 mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x707bac86 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7499c463 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7620d79a mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x85590158 mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa6b24dd2 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb911e840 mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbacd18ca mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbae8ffa9 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe98b6a94 mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf147ac01 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf2a0e8c8 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfb3e6268 mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0c1641b0 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2a2fe82f drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2f0cf868 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3eaa2937 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x8d592ef9 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x97b247b0 drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc79788aa drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xce98e57a drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdec6c3cb drm_gem_shmem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xee6bd3e1 drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x530106ac drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9159579d drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc72010da drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd7ac1f66 drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xdc0e575f drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x027b885b drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x12a24275 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x150370f3 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1a5d71ff drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x30380978 drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5de18e3b drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6391b848 drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x69c11f98 drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6aa33e45 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x74d5a216 drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8137f991 drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9914d932 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaded6648 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb565c6ca drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf065ce6a drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf578e2c1 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x39530035 rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0cfdfdd1 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1b07292b drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x247569a3 drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x27804488 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x38f185ca drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x40c9a771 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4cc67fc7 drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5ad65585 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7aa1523b drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa351865e drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa94e6830 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xab4a3f8b drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb2825f40 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xba1d0237 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbc624e85 drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc2556880 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc948705d drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcab5b681 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcba968b6 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd637b0c0 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd789b27a drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe7edfd44 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf80fe032 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfe676f09 drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x106d459e sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3f26adce sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x4329d07c sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x54a3390c sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd19220f0 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2c74f3e drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3c2fa10 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd54fa253 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd565d94a __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd631c6a1 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd69674b6 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd77c47cd drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9da42dc drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc130fb7 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdca8cbc7 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd803ee9 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe03fbfe6 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1c6a925 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1e6d23e drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2a08fa7 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe375ea0b drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5178418 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe64a5628 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe67f10b3 drm_fb_xrgb8888_to_xrgb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7365d5c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe85839bf drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea0611c9 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaa015cc drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb042134 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb23f582 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec44e333 drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec7676d3 drm_fb_xrgb8888_to_argb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed4bab37 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed64f350 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04bb44b drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2308177 drm_kms_helper_poll_reschedule +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3443658 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3a2bc53 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf420c35c drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4bd8e85 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4f52ae1 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf527e2bb drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5fde68d drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaa2a3c6 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaf3292e drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc35b35a drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc6de6cf drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcaa52c8 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x046cb11b mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0773224d mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0b906ccb mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x15f1e7aa mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x332af71c mipi_dbi_pipe_end_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x37205ab6 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x37cca397 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3a272795 mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x49a28ed7 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4c3ecc85 mipi_dbi_pipe_begin_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x540490d5 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x65145952 mipi_dbi_pipe_reset_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x65401328 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6a91aaeb mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7d115662 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8e1ad64c mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9ca904a7 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb0737601 mipi_dbi_pipe_duplicate_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc444b832 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcf6873b9 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd6dfc4e3 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdc9551b6 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf0e6f2ee mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x07a44477 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x15e5f13a drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x31cc37cb drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x320eba6d drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x42b8169b drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7071b714 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x73faae65 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7b464f53 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa47702a6 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa81eed4c drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x048a510f drm_suballoc_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x0bad1988 drm_suballoc_new +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x8debd4c9 drm_suballoc_free +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xcfea1bec drm_suballoc_dump_debug_info +EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xdd9c3522 drm_suballoc_manager_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x09131f5a drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x812f7b95 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9cc7b17a drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd78d001d drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xde0f2b9e drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x108fb628 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x29c0e578 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2af08fd7 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3aacb4c5 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3db4957f drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3e65cca3 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3ee66a7f drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x539410a5 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6d1b1420 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x806cc545 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb8fc677a drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb9f8d76a drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xba125624 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xba7f5639 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xccff2027 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd2d20a82 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xeebdc279 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02786443 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d102cc3 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e8809be drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x19c1b9d6 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x19f5b1e6 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1df98a29 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1fe687b3 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x212d362f drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2453a717 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x32abf0bd drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x38d3d11e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x38e63410 drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x533abb9d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x585d017b drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5f0037f5 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7456ec91 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8aac11bb drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa0470d96 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa83d2a68 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xab5e8ef2 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbe69337f drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1fc16ac drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd5c98958 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdb9a0df2 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf6d15b5b drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfab3ebe3 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x0a3f1291 sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x4ea952b9 sun4i_tcon_enable_vblank EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa2829485 sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xbc1c6d4a sun4i_lvds_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x144945d3 sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x29034736 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x799cfd35 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xa89c757a sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe4ec0416 sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xf6febfa7 sun4i_lvds_init EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0492e715 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0546a980 ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07db1974 ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x086e43ab ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0919faf4 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09bc09e5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x4f1f23fc sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xdc32e71f sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01c79b75 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0406f2ff ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05eb1023 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bee67d0 ttm_bo_put EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c6a3740 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1161f5fb ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1378a6e0 ttm_bo_vm_fault EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f84a776 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fc3c782 ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22377d31 ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22f09b99 ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25f34537 ttm_io_prot -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x289a1614 ttm_bo_unlock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3054f67b ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x313e9b1f ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37224c91 ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37b6ae37 ttm_bo_lock_delayed_workqueue -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47e88ee5 ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x491f46a4 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f85dbc3 ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x556f80b4 ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a19f411 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x671651e0 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6aea9bc1 ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c34b6c1 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ec7d43f ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70018a88 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7187a059 ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f81dc7f ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82e7782d ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83e8c96d ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a2763c ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x89b39680 ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9434730b ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d7f3bf0 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa20b9988 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa255eff0 ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3234f99 ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3bb9a5d ttm_bo_mem_space -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb50e1a9f ttm_resource_compat -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb59ca059 ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd9f7392 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2667239 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0ae82 ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc789e312 ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc84a7723 ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcb7f3b17 ttm_bo_wait -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcdc93ecc ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd18d38a9 ttm_global_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd28c0dd4 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd308162f ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4c62b4a ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9e9fd06 ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdab5bfb3 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdac55484 ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb0ea982 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebd1cc5f ttm_sg_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeccfe335 ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xece19fb0 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8c07792 ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8db60b3 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1c57364f host1x_driver_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1e55e56a host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x25b3ec51 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3a18221b host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3b78db6f host1x_channel_stop -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x46b4e125 host1x_client_unregister -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4920e133 host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4a7843bc host1x_bo_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4c29f9a1 host1x_syncpt_incr -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x203a32a1 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x262e3219 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2eca037b ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34030c3d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x354bf251 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3615c06e ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x488ee6c0 ttm_bo_wait_ctx +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x496f4cea ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x515b4778 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x580bd122 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a37a725 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cd22a8d ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d2e3754 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60c0ac26 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x632d5997 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x666ab06e ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68156cab ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69ca6821 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c40e71e ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f7ef127 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x743ba794 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77039e09 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fcd8956 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82464af1 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x879591e1 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8953d6d6 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b471f18 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c064d00 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x966ea673 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b7167b6 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa08cb780 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae059a0b ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaea5358c ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4cb7a3b ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb54a34ce ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe962d59 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0d5e9b8 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2dc16b8 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3cb4892 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc405850e ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9ccdbde ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc286839 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd14b2569 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda8f267e ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdff2d24d ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6a55cde ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeaadce8d ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa12bc69 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc9c202 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfefcf854 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffda1b70 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0362afc9 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0b79df93 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x187b4bb8 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x27bb468c host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x288ef56f __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2ab10197 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x37e65de1 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x40640b09 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x450790f3 host1x_syncpt_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6bfcbf73 host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x70569877 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x550b14a9 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5b2231d4 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5c8f1afb __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x632cb4d3 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6640a4ea host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x69df10fa host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6a17bacb host1x_syncpt_get_by_id EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x77289f44 host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x803c1954 __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x855f6c4e __host1x_client_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x93d2f3f8 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x907610ae host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x933005d1 host1x_syncpt_get_base EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x951e8464 host1x_bo_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9763421c tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9a9587a3 host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9cc46c11 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa597d639 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x96faf0cf host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9e8512c8 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9f042942 host1x_fence_cancel +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa67c9ae7 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa6b0c44f host1x_job_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa96a61e0 host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xac8ceabb host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaf89124d host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb91c630a host1x_syncpt_read_min -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbafbb112 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa765b579 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaa98c613 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xae60fe33 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb08c3f16 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbb17013f host1x_channel_request EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbdda8c5d host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbf4ea22c host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc2803e16 host1x_syncpt_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc46199b2 host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc64969e8 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcd5c959c host1x_job_add_gather -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd0667ddb host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd2d9904a host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd57098e3 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe13531b7 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe3c7a5eb host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe4915e49 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe998e5d6 host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xefd1f655 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf198d69a host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf81923a1 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc1b07066 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc884eca2 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd8b4a0b1 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdcf0483f host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdef3b5a2 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe09291f8 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe323e7ba host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe3af5967 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xeade2c39 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf01749f8 host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf39ce004 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf6a6c884 host1x_syncpt_read_min EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/hid/hid 0xa7d12070 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9d83d9f3 vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9dbe2f49 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdbacb280 vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hwmon/adt7x10 0x05c856b5 adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfc68d445 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfe4ee6e8 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xffa8b110 host1x_bo_pin +EXPORT_SYMBOL drivers/hid/hid 0xafd305f4 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x77565a2d vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x82d3f546 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf98443ba vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x2d2c734b adt7x10_dev_pm_ops EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0x7ee9d5dd ltc2947_pm_ops +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0xf2389a6a ltc2947_pm_ops EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x421b4236 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb3c765e4 sch56xx_watchdog_register -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x241fc271 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x78e79baf i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb9d0ef3d i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa3655d66 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xebc22ee5 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x335fb8ef amd756_smbus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2422f8f9 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4cfac09b i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xedb05408 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1ea6671c i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x5211af06 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x8e27ce4f amd756_smbus EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1429,1143 +1472,1025 @@ EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xa5fc2b23 iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb7c43ca7 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x90130ba3 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xce8472fe iio_kfifo_free -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x2d1a45d5 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x028e4517 iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x1612cfb0 iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x1ac2416d iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x1d9fe7b3 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x27f37603 __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x28be37c9 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x70624340 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdb5c4f0f iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x14230bc4 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x96e149bb iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xbca11f59 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x0ff0ba4f __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x11208f3d iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x208a6613 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x2b868712 iio_device_set_clock EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x31788530 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0x473e100a iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0x4808cc96 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x506b93d8 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0x646ab00a iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x6db6cb06 iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0x88334118 iio_device_set_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xa786db12 __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbe337488 iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0xd1a9bde0 iio_device_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0xd587f94d iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0xdbb80d2c iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x359cc43f iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x38dd3144 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x4756553d iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5679e5a4 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x5bcbfa22 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x616aea9a iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x6e85bf29 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x7f105ba8 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xa2db1108 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xa97abade iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xb643b638 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xb7f0bad0 iio_trigger_poll_nested +EXPORT_SYMBOL drivers/iio/industrialio 0xcb428892 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xcce0bde0 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xd3df14df iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdb60e219 iio_trigger_poll EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe1eced34 iio_trigger_poll_chained -EXPORT_SYMBOL drivers/iio/industrialio 0xe9314757 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio 0xf0a661d9 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0xf17fe4e2 iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x66f5b6da iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x2d85b21d iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8246eae7 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb662feca iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc554a134 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x180b8e7e iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x284d5a5d iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc194d184 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf95b5693 iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2b89b387 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x470faf0a iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xadf8daf9 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2513628e ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x283ba2e4 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x308f2cac ib_cm_notify +EXPORT_SYMBOL drivers/iio/industrialio 0xeac6ce64 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xf0f915e3 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xcefae5aa iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x190d66fe iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5e0841de iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xa032e6ee iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xad5f6575 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x07c5bd4b iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x3a4b29c9 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xb859010d iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xcd7336e8 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4202ef5f iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdd811993 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xdd94562a bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/trigger/stm32-lptimer-trigger 0xad3b8961 is_stm32_lptim_trigger +EXPORT_SYMBOL drivers/iio/trigger/stm32-timer-trigger 0x09ba684b is_stm32_timer_trigger +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12e22916 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18418df6 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1cc9b277 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d4ec92f ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x485acba1 ib_send_cm_dreq EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x86c704de ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a0e232f ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ad4dd32 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8af41a40 ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8b905c41 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa4051bb5 ib_cm_insert_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb7fac756 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd51c864c ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xea44eeb5 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf27cba50 ib_send_cm_drep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf5e3986e ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfdcc2a9d ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6bb84168 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6ce26b4c ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f0af15c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80f41078 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x89f62cdc ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xafc04305 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc668768e ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xda77c100 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe9b58cf4 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf2d3935d ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x002b3644 rdma_query_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x013cccc0 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04a2bfc7 ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04a98dfd ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x033b126e ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03621297 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03dc07fd ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x045170a7 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0487a92f ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05bcd88a rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0644ac47 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06892419 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07eaaf25 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09b73f7e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c116e82 _ib_alloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d27a73b ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ca33425 ib_sg_to_pages EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dfbcbff ib_reg_user_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2e86aa ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f389ab9 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x119b4ddd ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x119f57b9 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1286a296 ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x147d1667 rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x186a15dd rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d8622e3 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10152980 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13904ae9 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15fc8787 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x167aa675 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x185acdf2 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1990683e rdma_restrack_parent_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bf9cf7a rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ffc8d1c ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x201d16a3 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20a60958 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bbc7e4e rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20e0f7cb rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20ef9c70 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x215cd185 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22cf5351 rdma_nl_put_driver_u64 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2570555a rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28083ed0 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2adb359e rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba1a537 ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ba72e92 rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2beb21e9 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ded6d74 rdma_destroy_ah_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e2784bd rdma_put_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e5ab80b ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e648279 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x246e7927 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25a8af39 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28bf54e0 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28d631e4 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29eabdde ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d1bce4d ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d47ba8b ib_device_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32152093 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32d6c4e4 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x339c72c6 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34ae4351 ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f9eb8c rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36be7316 rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3704dc6c ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39112b15 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a950548 rdma_create_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3adff27d rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3faae1a2 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x323eaed8 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x378b5eb2 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x388fdbd7 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39702788 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39b4757c ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b9a2cc4 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc0c147 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bcc50c4 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3db82074 rdma_user_mmap_entry_remove EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ff5afd1 ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40920536 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x422971f9 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x424a0f5c ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40257b59 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40a80fc8 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40f7d3d1 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41a31fa2 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4338fc0f rdma_nl_stat_hwcounter_entry EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44f1214c ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4570301e rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x444de109 ibnl_put_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4697ad82 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47d5818b ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f5d9ec ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af89d57 ib_device_get_by_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b0d1b0a rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bb6e703 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a367061 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d346e75 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4df6beea ib_drain_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f87dad3 rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5024cfd4 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50b41736 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51507f5e ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51f997de rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x503918e6 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51d4fdaa rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5246f41e ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53a194c9 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5520d530 ibdev_warn EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55cdcec9 rdma_restrack_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57cbc45b ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58510d59 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5870ae89 ib_mr_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5974cb5b ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5975e0f2 rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7b6a0b ib_modify_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e383e6d ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59706291 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5998f05e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a01b817 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ce39ecd rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d7bc666 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eb3b0c9 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f8d3b93 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60061c4e ib_sa_get_mcmember_rec EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61997157 ib_alloc_mr_integrity EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x642bc832 ib_register_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x670b57cc rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68122b13 ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x684388af ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a73466c rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61e6eedf rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61ec3291 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62a5ebdf ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62fbe05e ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63539e75 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6442ead0 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x670a300a ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x678a5b70 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a4af3a ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69d72c02 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b2d3de8 ib_set_vf_guid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b987fd1 rdma_roce_rescan_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bcb1ce0 ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ce9015d ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d8d107c ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dd63923 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f26c486 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c7cce9e ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d02560f ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d0ec52e rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f1882cc rdma_move_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f739863 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x701a3b55 rdma_user_mmap_entry_insert_range EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70cb3a9a rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71b990be ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x723c6948 rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7246811f ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72def0ca ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72e2394e rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70a685de rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70d1b562 rdma_rw_ctx_destroy EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74ce8966 ibdev_warn EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7671a3bb ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7686e05b ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76efdc7e ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77271719 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77c7b6c3 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7828ad41 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x786e98fb rdma_link_register EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78b1ed70 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b22e079 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b788f5c __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b8e6dfc rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d987748 ib_query_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81eff265 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x822dc901 rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x868d62c6 rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86ec6ac5 ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8720ae2c ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8be520b8 rdma_restrack_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f215857 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90193e7b ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x797a18ae rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79fb43b6 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a75898a ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aeecf32 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b88d243 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cca86a4 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e891847 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82877b48 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83d3b3e1 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x849282cd ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x869de17c __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x893563c1 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8980c829 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89db54af ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a0dde17 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a3cdbd9 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cd0ac7b rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ea833fc ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90d84f19 rdma_nl_unicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92b7f210 rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99004b69 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99559db6 ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a0ca34b ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a6796f3 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c146ce9 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cefd82b ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f6a56e8 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fc1e2ef ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1553a1a ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x928d4606 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x939ed8f0 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x955f64fc ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98f635fa ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99a9f8ad rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99eb1f01 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9be141c5 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cb4a97f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f9850bf rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa08ebab1 rdma_query_gid_table EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4ab9349 ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4cd23e1 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa510f4f9 rdma_resolve_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa56206c4 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa634f0a1 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f243ed ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9a2f14d ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab010e20 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa447b2a0 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa45ffdb4 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4fd2576 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5fbab85 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6b99090 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6da64ee rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa70ce65e rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7323b77 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa94bad0d ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9e2c1fe rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa4a4a43 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaccfd51d ib_port_sysfs_get_ibdev_kobj EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd6b808 rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb09d1c44 ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb220cc02 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3558d70 _ib_alloc_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb382f926 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf246b9b ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0e228e4 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3082abf ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb428688b rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4abfdb8 ib_drain_sq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb56e652f rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5fedcd8 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6b39b40 ib_modify_qp_with_udata EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7e89bb5 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8504a37 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb977e610 ib_destroy_cq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbada329c ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb279c23 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb777714 ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbce858c5 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcefe402 ib_resize_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe5b5e3d ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0118ff0 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0aa1991 ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0f3b96b ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3f6aabf rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4b6f16b rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4f58c98 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5280c69 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc739ca00 ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8354296 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb90f69a6 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba423bfb ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec22f37 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1a657dc ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2a18038 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3026693 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4a9e2f4 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8615e09 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8631c2b ib_rdmacg_try_charge EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca702d9e rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccab7cc9 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdf5cb93 ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce373a49 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcee02a06 ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd010c27c ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc97a57e4 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcce4b801 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdaa36cc ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce56cb89 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce826949 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf92b4b0 ib_create_wq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd15db5d1 ib_init_ah_attr_from_path EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd238a273 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2fa9279 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3688989 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd40cd94a ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5c4955a ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4be1890 ib_dma_virt_map_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd73a7c60 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd74dc832 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd75c18b6 rdma_query_gid_table -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7bcdc54 ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9aa056c ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9e55024 rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9fc18c7 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c78021 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6df84f7 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9df5bcd ib_register_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdab8dc6c rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb4808c7 ib_open_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc9dd2cb ib_get_vf_stats -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcd92cc0 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd2d023d ib_destroy_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdedf96ff ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0cc76a8 ib_unregister_device_and_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1cc0686 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe35b9082 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3bc1d8b ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe57f59eb rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc024fe7 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde23a8de ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfa32247 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe33b80fb ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe489de69 rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7003d66 rdma_nl_unicast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7ee8342 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe84dc1be rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe875b762 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9007620 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe931f71c rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9656a22 rdma_roce_rescan_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea7559b8 ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee87caeb rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef7e833e ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf01f9731 rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf38cbb73 rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3cb67d8 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf43a5287 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea86432e ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb1e7e5c ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec1f53b5 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed075786 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee5a6838 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee8a3feb ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefdac35d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1407101 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf358e7ce ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf39a0576 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf485acfe ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4b6cc60 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4bf7b7b ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf58bc6e4 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5d4d084 rdma_dev_access_netns EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7bc34e5 rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf844ab35 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8515880 rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf87e3f17 ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8f1638d ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9acd0a9 __ib_alloc_cq_any -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa15e678 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdfed898 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfefe7d85 rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff45d840 rdma_move_grh_sgid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x121a0bc3 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1619a1a2 ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18b38cdb ib_umem_stop_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a415c45 ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1bcb5f10 ib_umem_get_peer -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2d61f0b1 ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3493d351 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf87cddc9 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa8097c5 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa9b42b8 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb47d5c3 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc0ff353 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd97f244 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07b4de79 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15a463c6 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16035dea ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x252f363e ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25e1fdef ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2638f42d ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x28f9a770 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3684a5cc uverbs_uobject_fd_release EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x390d90c0 ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3b52c6bd ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x402441d4 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x41aff838 flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53feb779 uverbs_copy_to_struct_or_zero -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5db2a06d ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6edb39bd ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e71dfb0 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x46799953 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5958c661 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x60acb3ed ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d63370b ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ed8da4b uverbs_copy_to EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f0d2ed0 _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96fb4786 ib_umem_activate_invalidation_notifier -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa1862ac4 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa33c49fe ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa395b785 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9c2dc40 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacaa97f5 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb63389e3 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbfacdead uverbs_idr_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2810855 ib_register_peer_memory_client -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc2fe233b ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc361524d uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc840be74 _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc97b8ea2 ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd2353250 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd535c529 ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd69e748c uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc5147a7 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe2aa2863 uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xea700e68 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xec44a332 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf90b81f1 uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfba42217 ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x044cdf2f iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x29f5fa7e iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48df5d62 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6bc5dfb6 iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x70636a3b iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8058f1ae iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbb7a4398 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xce5ffb09 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x757d58ab ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x808888e5 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8f560e5a uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x91e66767 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94ff59bf ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa4d0d912 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa58a6ed7 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbfaa086e uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc7326f6d ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1b37a1d ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd1d3d4a0 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdc95ac12 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdce440f3 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe15d672d _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe6d18b8a uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeffe5522 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4d49323 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf88daa79 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf8dd1dd7 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2b4a0c53 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7af9b7b1 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7ef8ae17 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa69302aa iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xaa7baa32 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcaee6ef0 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe070d739 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe1d46456 iw_destroy_cm_id EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03d975bf rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0508e749 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09b966af rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b313396 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x187eedd1 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a2fad9c rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a998fff rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26debbc9 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b9909de rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35bf2e9e rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x386d8f98 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x38c9d3e4 rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4fd655a4 rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f6d0f55 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f7ccb56 rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78d58923 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7b9a0f46 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88024267 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x01859d0a rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04b95194 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09332c7c rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x09671c38 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1aa64095 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1ff3b754 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3654a847 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f08a5b8 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a5db01e rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50a25620 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x60e148ec rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x666baf15 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6822c140 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7546ad54 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x819ea56c rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x857b7612 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87e43de2 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b0c511f rdma_lock_handler EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96e58256 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cde855c rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fb10acd __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa52b429 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb0280e36 rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb3893add rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbeee7192 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc0995edf rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd717e53b rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdea586a3 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdea93670 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe08cae2d rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe913b676 rdma_read_gids -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec3163d1 rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeec0390e rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf439134a rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x26bdfe5f rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x27b05b39 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5edb2dc2 rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x8e67637c rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x927f72be rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa209b3c4 rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf7dee108 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x964fbed5 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x979e24e7 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9979c61f rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e5d36c6 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa7301ad8 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe3a568c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc597b93d rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9691316 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdbaa595b rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe150e584 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xecd60c8f rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4deedfa rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf64c3194 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6f756e9 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfa5cd022 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc1d8afc rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1266ff65 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x60539b5e rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7e513434 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x965c5e3e rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xdd62fe0c rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xebe16feb rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf5cbaf59 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0ab5e138 rtrs_rdma_dev_pd_init EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8639a95c rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5c8156de rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x637d9250 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x65e1d029 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8bbc72bf rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe4ce1965 rtrs_rdma_dev_pd_init -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe650a66e rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0acdfef4 rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4fc162bf rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x65aa3044 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9e5ff8b4 rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa609ef63 rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe433e46a rtrs_srv_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x11af1830 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x158d1d15 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0x234058a6 __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x2921dcee gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x840e817e gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x896ca433 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0x8ed300e5 __gameport_register_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xab8ecd3c gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0xfb168f13 gameport_unregister_port -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x75b64e63 iforce_send_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xd7e92e95 iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe5452f34 iforce_process_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xe1e0b153 matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x37ce22ce ad714x_enable -EXPORT_SYMBOL drivers/input/misc/ad714x 0x7b27eb55 ad714x_disable -EXPORT_SYMBOL drivers/input/misc/ad714x 0xda0c9256 ad714x_probe -EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x0aee4a4b cma3000_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x09d06768 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x38f57027 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4aef6422 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x63af1ed6 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb38659a6 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf28254f2 rtrs_srv_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x156dd7ff gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x25d79124 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3822283a gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4ffc0f17 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6e419832 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x88920bf1 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x96beafa8 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe6cff434 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfc5f0d8a gameport_stop_polling +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x1e684544 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x46fce5bc iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x83e7ece1 iforce_send_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xb798564a matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc5955346 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xcc9ba71a ad714x_pm 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 0xc69f0be2 cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xad501c64 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x48939339 sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x4c1d12fd sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0x68ca268f sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/sparse-keymap 0xb5e2f0b2 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xdb7308cd sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x60e01097 ad7879_probe -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xde501850 ad7879_pm_ops -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x20ebad29 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xd75f475d qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x098198e5 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x22ae4af2 detach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2499f329 capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x39572c38 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x990f902e attach_capi_ctr +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xbb7acae3 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0eccc9d6 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x24e0c113 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x95ad8bf1 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa41057d7 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbbd94b06 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x29029a86 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb9ca0099 ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x2449e22f qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x99324ad2 qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0c521818 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2f3f5493 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4c5c917e detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9ca40c91 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe77b560c capi_ctr_down EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x1f5507d1 mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x3f65dd3a mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x96b5393c mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaf1fe664 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4c578b98 mISDNisar_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xba0aa496 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9b7b2dc9 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa3bf1439 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xadaa5760 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd449fe80 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1635e42e mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xa1c583f7 mISDNisar_init EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06437997 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1aba0c3d recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x072ee716 dchannel_senddata EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x265d81b2 recv_Bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3415114c mISDN_unregister_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x45103a50 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3cae294c recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3f979f60 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43b25c7b bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4c48b4bc mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x520ffb01 queue_ch_frame EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6383ba20 create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e748193 mISDNDevName4ch -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x782ca7d8 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7e718839 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f491d40 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fe9bba7 recv_Echannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8b6b0158 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b89f4f7 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6b295bd7 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7549bcc8 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f8ac917 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x95ada50e recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a92e0b6 create_l1 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9e915cf2 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa985f583 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb0dd3352 mISDN_register_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8a26e7d recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9df473fc get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbfcc4882 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce1559cb get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc515a969 mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd2ef1f8b queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd411a2ae get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4c3efc5 mISDN_clear_bchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7dedc12 mISDN_register_Bprotocol -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdebce62d recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe0840086 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd53a12a7 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd92fca26 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdb56beac mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdc76d5c6 recv_Echannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb11ea55 mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf815bd12 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa4d9f58 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfc424ba4 recv_Dchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x266735c2 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x3201094e ti_lmu_common_get_ramp_params EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x5ddc72e1 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x58194f10 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xa12ce200 cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x3fd5dbb7 omap_mbox_request_channel -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xde79c653 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xfca92d18 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/md/dm-log 0x4741a30e dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-log 0x798659e2 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0xc786bb44 dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xd6e86e7e dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x018018d2 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x0bacfc47 dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4b334807 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x5810b291 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0x59814f14 dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0x74a02546 dm_snap_cow -EXPORT_SYMBOL drivers/md/raid456 0x6c633fb3 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0x918ccda4 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0190c4c7 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0476555a flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3b658861 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5ff117bf flexcop_eeprom_check_mac_addr -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x80f02e92 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8b643673 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9c9d287a flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9f9ae3d9 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab1bfdf4 flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xae514ab1 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd870c41c flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdbedb7d3 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf6a15835 flexcop_dump_reg +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x089c3176 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x76b064ca omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xb6d40e18 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xcdd83901 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range +EXPORT_SYMBOL drivers/md/dm-log 0x1f635548 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x2461778c dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x6b8f8177 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xd4c190e0 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3ddeeb48 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb6d15b26 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbcc5c29f dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc4394c04 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe22818f3 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf6737818 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x32a6d51d r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x9a97df5a raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x11611503 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4467cc60 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x54556a1b flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x65e59d4e flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x83be0fd1 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x84c866d8 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa6dba25c flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xafffdbf4 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb4c98466 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb8813061 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd2ad0735 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdc501116 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf76c31df flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/cx2341x 0x02d504f0 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x21712cbb cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x259aaac5 cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x32f1202c cx2341x_ext_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x6293d9bb cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b5cc43e cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6ebde8df cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xba9a46ef cx2341x_handler_set_50hz -EXPORT_SYMBOL drivers/media/common/cx2341x 0xbd70a750 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cx2341x 0xf6987347 cx2341x_handler_setup -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x5bcdb329 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x21e1a265 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x9975d556 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x958aeb44 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x60885470 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x9bff92d3 tveeprom_read EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x5ac1b4a6 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x50fa171d vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc82c9162 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xf507ac58 vb2_verify_memory_type -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1aa118fd vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3c8e3bc2 vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x8fefc95b vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd72b867c vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe73877c3 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe7a15fd1 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x12ecacb7 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x173d4c81 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1f7edc46 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2a4ebfdf vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2b054871 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xcc9cb55a vb2_dvb_unregister_bus EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x68d97977 vb2_querybuf -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x02052877 dvb_register_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xadcfbf5f vb2_querybuf EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x189897b3 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d92c24f dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13777c43 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x26b8996e dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2875083d dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2e9f78cf dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1cf205ec dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34c77a54 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4c1fa264 dvb_ca_en50221_camready_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4c69876d dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42365cde dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x51405345 dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e2caeb6 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x68bc24cc dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69ed39c7 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6d597951 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7a32a40c dvb_generic_open -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x844439ee dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e26c20f dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6fe99b19 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8029770a dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c5d648c dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x907ffe1f dvb_unregister_frontend EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e61c60e dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9b086dc9 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1b1cdef dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2c31bc5 dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8d4b6fc dvb_ca_en50221_camready_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb6f727e8 dvb_unregister_device -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba1c4bdf dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1590343 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbe021eec dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1043ff9 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc32b457a dvb_frontend_reinitialise EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc7a71a30 dvb_device_get -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb605da9 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd909e814 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5c0fe2c dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5f0729f dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc75015e1 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc833ad95 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcaafe29c dvb_ca_en50221_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe22d2797 dvb_dmxdev_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea0299df dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe2eee84a dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7de0a8b dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf0b86228 dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xdcbe0f44 ascot2e_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xb6f79d28 atbm8830_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0a1445d4 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x32e8de5d au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6869a9fc au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6c4ed455 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8039dafd au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x836c6b68 au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe0dcca4d au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xeb56858a au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf09ca500 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc1baaf85 au8522_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x07aefb25 bcm3510_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xcc01db56 cx22700_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xd3bfc183 cx22702_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xd7119139 cx24110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x27e6187f cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6e334581 cx24113_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb2435e0e cx24116_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x1a28a6c0 cx24120_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x4cd77b1e cx24123_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xba479dc3 cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x51c80368 cxd2820r_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x57110cd7 cxd2841er_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5d220d9c cxd2841er_attach_t_c -EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x1fcbdf05 cxd2880_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x08c25bb6 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4c7788c0 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8fa942b8 dib0070_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9a6aaabb dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfedc3259 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0c314c7b dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1550d074 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x401b5806 dib0090_fw_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x467338c8 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x57668390 dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6743c19c dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x70bb600d dib0090_register -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x732c8cb3 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x798829ce dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x996be05f dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbb09a88b dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc3960e7c dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd2091c8e dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xea3e39ef dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xef8b6ef7 dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x82e0dba3 dib3000mb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x091caed8 dib3000mc_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6b3ce237 dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa2c930da dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc57b2f66 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcfb91a8e dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd2a644e8 dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x19777be8 dib7000m_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa6df8d9c dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc0937d0a dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc2bc40c3 dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x102b422a dib7000p_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xc6014fa8 dib8000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0b5c88f6 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x12ed93e8 dib9000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2ca4fac9 dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x68eb0bbf dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8de746d5 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x936b945f dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b02a987 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa0961572 dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa0c79a3a dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb07d964f dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd03ee9c9 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xebfcb679 dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xec043a37 dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x218b69bc dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x568491a7 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5f4dc18c dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x61da5e2f dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd8c92a80 dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x063dc5ae drx39xxj_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x1ae2203a drxd_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x6be79681 drxk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xc30c744b ds3000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x08bed1ca dvb_pll_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x6ee0c5e1 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xc52ee189 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xde1beb2f dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x2274ae15 ec100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x6771e41a helene_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xdcdecd91 helene_attach_s -EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x632c654f horus3a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x2c7b9e3e isl6405_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x503c51ec isl6421_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xb6f7069a isl6423_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x2085ee86 itd1000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x2fbe1292 ix2505v_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xc10a242a l64781_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0d8e5cb4 lg2160_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x83ceb481 lgdt3305_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x359b6adb lgdt3306a_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xba6ce6ef lgdt330x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x95f9c7da lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x77b24f8c lgs8gxx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xbeb16d22 lnbh25_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x6fb2201a lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x530b2a10 lnbp21_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7c38a001 lnbh24_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x1fef4865 lnbp22_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x18738386 m88ds3103_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x9646311d m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x81cf3e03 m88rs2000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xfa93f735 mb86a16_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x1cde7321 mb86a20s_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x0a1486ee mt312_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x1244eb1d mt352_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x94562c53 nxt200x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xcc9601cb nxt6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x76e55c8f or51132_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x09688b4f or51211_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x48bff681 s5h1409_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xd485216f s5h1411_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0877b1ee s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8a828a07 s5h1420_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xda340cb3 s5h1432_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x3e1e8f18 s921_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xdd540d09 si21xx_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf4aa16bf sp887x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x506ebb1c stb0899_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x5f2b7777 stb6000_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x0ffe670b stb6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x97a9f542 stv0288_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xf922d28c stv0297_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xc0a715f6 stv0299_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5fcf2524 stv0367ter_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6f3f3b1e stv0367ddb_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xdefddf49 stv0367cab_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x5594bd7c stv0900_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xc3103b87 stv090x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x66ecc599 stv6110_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x62711711 stv6110x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x569ff907 tda10021_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x11038a69 tda10023_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x28b7b2c6 tda10048_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1958d851 tda10045_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x22d5c725 tda10046_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xd2e724a3 tda10086_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x27aff121 tda665x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xa3002f10 tda8083_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xb8fe01f1 tda8261_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x6266bf4b tda826x_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe97c1713 ts2020_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xcde74793 tua6100_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xdf15c699 ves1820_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x09614866 ves1x93_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x57005aee zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xaeb2a472 zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xfb2a46e8 zl10036_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x5c2a5b22 zl10039_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xfbf59a17 zl10353_attach -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0ccd8daa flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1b1984cf flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcd2eac1a flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe617ba37 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe82c9e54 flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xecae5feb flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf4f56ad7 flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0ea7c134 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x200eb31a bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x69e7d08c bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6ac07b2a bt878_device_control +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x291fb5f1 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2bf09518 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2d13b3a5 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x790db785 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x86cb310c au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x92369c1e au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x93ea9118 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb30dae52 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xec3e1ffd au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4d730298 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf7a8ffd0 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0b364b05 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x73ceb6e8 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8da7c17e dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf68ecae1 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x01c9b818 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x18c1ed69 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1a7b4480 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1f95cd55 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x33180edd dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3a220553 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3fc2a1b6 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6bef0e94 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6ebdaefe dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb99da79a dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd6dd2982 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfa40bf70 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xff2ac5ea dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x39f56650 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3db0f1bc dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x83ba94a9 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9575f78f dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe1c74919 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2d159bc8 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x81890be9 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x818c7e05 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x10d43aff dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x18abd30f dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3aef5d53 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x41cf0115 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5007c5f0 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x587d51d3 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5d00cff9 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6067865b dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b5178b3 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb709da45 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xedbd9955 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xef29836e dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7ab20ae6 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x836c3bd9 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x85962f2b dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd6419031 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xdbea7e7a dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3c3286e2 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7ba3efb3 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x97fca28a dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xe7115d9b lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xcf8ead12 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x54172249 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe047124b s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x72ec4ab2 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xe40b5d58 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x02e23371 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x488a604c flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4b8bb145 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4c0b6005 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x58e767ae flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8ccfb371 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe9396653 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x31d48394 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x736c1ab7 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x928a4ec2 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xabf31de4 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 0x687aedcc bttv_sub_register -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x69f275c6 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2af48d67 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x682363a4 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x83642bf3 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 0xbfba2f81 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x276b991f dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x12c3fa53 dst_pio_disable EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x70c7e42b dst_comm_init -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x77dca14b dst_attach -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7cd834f3 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8ab30f3f rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8c144db5 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9e38fc06 dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb947ce54 read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd53a4ba3 write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x4ebf8e06 dst_ca_attach -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1396e8b1 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x27c57855 cx18_ext_init -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x297414ec cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x516111bf dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5a00a25c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8c06de92 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa141c670 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd5d156af dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd8017a64 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfc684cbe rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x11abf077 cx18_stop_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x79f7e8e3 cx18_claim_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb9f10ec1 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5146b2b5 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5861fdbe cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7505a057 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xede6b58d cx18_start_v4l2_encode_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc 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 0x20739a1d cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x287d5c80 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x093e597c cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x179b58d9 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1ed05601 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x33849c54 cx25821_risc_databuffer_audio EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x48d0a718 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5baf4238 cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8b82762f cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc06e83b6 cx25821_sram_channel_dump_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd36873c7 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa9546ca9 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbf7763d4 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdb837a15 cx25821_dev_unregister EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x126825c9 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf6f54bb1 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x48786d9b cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x93d12bf0 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb2843b90 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdc36d7d9 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x09bb56bb cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x57d4e80b cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x907c92bc cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9fbe109d cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbdb4e643 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcbd4007f cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdf646b44 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x05740ad2 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x11b6a023 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x171f9b0e cx88_get_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38a8b3d3 cx88_core_irq -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4151d951 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e4f9f62 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x50b3c364 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x563d5383 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xba81dae3 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc4c16c7f vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0534c9c2 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2becaa20 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5ef54e12 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xaacf5288 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x19ae43f1 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2bda93c9 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x34b6f2f1 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x99870ae7 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xac1ccf14 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb9e5cbf8 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xee7836c2 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0bc62bed cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0c5ef444 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3697852f cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x52a9ba4c cx88_set_stereo EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5ff902f7 cx88_get_stereo EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6165a89b cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x856b4f7c cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87d0d3e5 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63379283 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67e4b60f cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6c6f176f cx88_set_tvaudio EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa34d6e37 cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf4f859d cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbd787d81 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc26d85a8 cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc7431ba8 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd6947ea1 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdfbbd810 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf34093b1 cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xff41b297 cx88_core_put -EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x5afb5a89 ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07409a93 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0ee546b9 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x91024e57 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x91d85981 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa897269b cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbec93e36 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc048ca6a cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc194a499 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcaa2806b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd158d5d1 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdeb369d6 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe77629d0 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xeb6cfd01 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf7de6e3a cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x003b360b ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x01171afb ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0c69d8ac ivtv_udma_unmap EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1819c6aa ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x37ccf2dd ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f2dd9ca ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41706314 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x51b7ab87 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x533b6126 ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6fd81666 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8059657f ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1ad0886 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9578919 ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb45467e7 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc0828982 ivtv_vapi_result -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcc72784b ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xeaa32c3c ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf8acaa1b ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x23bd20ad ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36500798 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x49da9f40 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4dfa2980 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6169ad0e ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x616d62fd ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66d0b1ca ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x69178b64 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71c5c8f1 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8fb1919e ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x98325f2d ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe57f168a ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe8b17a09 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfa09004e ivtv_udma_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 0x1d796dc1 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4a9bcd68 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2c2d38db saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x349fa199 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x36faae29 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x53fb71a6 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5d2475d8 saa7134_ts_unregister EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x76a466b7 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7c158ba7 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8769c14b saa7134_set_gpio -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8bc25422 saa7134_ts_register EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x91a485ff saa_dsp_writel -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa302e590 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaec0fee0 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc12191ca saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf6032125 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9295be1d saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93dedc6d saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb4db132a saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc0cba6fc saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xccaad692 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd208e247 saa7134_pgtable_build EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x5b60df97 snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0x678be15d snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x87376ef1 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbc1e41d3 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xbec02774 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0xc9064315 snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd078bee4 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x10b32365 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x47c22e9b snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x66fc9f99 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x776c8fa5 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa18b3875 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc0c726d6 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf997c6bb snd_tea575x_exit EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode -EXPORT_SYMBOL drivers/media/rc/rc-core 0x1c64b98a ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2e1b6459 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0x6ab55376 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc5e00cdb ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/tuners/fc0011 0x04073592 fc0011_attach -EXPORT_SYMBOL drivers/media/tuners/fc0012 0x2bb356ec fc0012_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0x01409bd3 fc0013_attach -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa837df86 fc0013_rc_cal_add -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe16841a8 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/max2165 0xf63ff655 max2165_attach -EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xb7e59708 mc44s803_attach -EXPORT_SYMBOL drivers/media/tuners/mt2060 0xc936f056 mt2060_attach -EXPORT_SYMBOL drivers/media/tuners/mt2131 0xd4aa625e mt2131_attach -EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc6bb44c6 mt2266_attach -EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x55d06fc0 mxl5005s_attach -EXPORT_SYMBOL drivers/media/tuners/qt1010 0x6bad17c2 qt1010_attach -EXPORT_SYMBOL drivers/media/tuners/tda18218 0x23c70aeb tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8c811993 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc860c861 fc0013_rc_cal_add EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/tuners/xc2028 0x11ea2d75 xc2028_attach -EXPORT_SYMBOL drivers/media/tuners/xc4000 0x5ea39884 xc4000_attach -EXPORT_SYMBOL drivers/media/tuners/xc5000 0xdfdcafc0 xc5000_attach -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x234d0ee2 cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x43c51f56 cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0c8c4500 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x15e883fa dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x41464b77 dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6b33311a dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8ea4b0fd dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xcbd151cd dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd996407e dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdb273f49 dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdce759d1 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7aed38af dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x472ecf62 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xada5ea5a cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x058ea76b dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x094583bd dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x21afd8c1 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x458b20de dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5750c4de dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x689ce49b dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x70e19232 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc4a95311 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf53580ea dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x398f1e9e dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x56c18443 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6a96ea0c dvb_usb_nec_rc_key_to_event EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9e5e5c12 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa3fadc3f usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb3f24983 dvb_usb_device_exit -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb6fb41c1 dvb_usb_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf3518f96 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb9b66855 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbe5e4695 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf1ba7861 dvb_usb_device_exit EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x7cb9d3d9 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x3944703f 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 0x47e0170e dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x56265c6d dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6dc1afba dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x08359509 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0bb071d4 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3281fbb1 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x45f85068 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4e762664 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8ac7e0eb dibusb2_0_power_ctrl EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9c4824a2 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbd945783 dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc1947c23 dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdb53812d dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf7d5de30 dibusb_i2c_algo -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf9114bdd dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd74f0dba dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd831abfa dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6cfd1c5b em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd3a27c75 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f2254a2 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f75c943 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x41e0559c go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8d4d6055 go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9320e8fa go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9ce78a1a go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa9cc4c84 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb82b53c0 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff9ab05f go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x33a2860d gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x346fba5d gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5a673c44 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5ae192de gspca_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x62ffeeb1 gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x777cdd07 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb74fee7e dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbb30ec15 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc7affbe7 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x32a9e346 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb8a0a73c dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6b23fe22 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xfb51b88a em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x163e35ba go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3312379f go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3d07d0cf go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3d35bd52 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x587e37c2 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5a5e048a go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6269dfaf go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x71e5d3b0 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x774ad7be go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x19ed4a04 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2cd22e38 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x48d248b0 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5ecb0911 gspca_coarse_grained_expo_autogain EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb7c0b5de gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd1abc805 gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x030f4c75 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x28c84dbf ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0cdac9e7 v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x20c51171 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x628ee174 v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x65955138 v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x87c61dc1 v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8fda073a v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa9f83d94 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbcce98ab gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc9744014 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfeb109cd gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x535b1fb2 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x789c1e78 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0e49541f v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x419fc9b4 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x68b01dee v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb208b00d v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb43245d8 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbea148b4 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3a308ea5 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 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x557d9fb3 v4l2_m2m_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x842a0baf v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb0ff55c7 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc6e8a2db v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8d79b142 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9bb7e95b v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdfbeb1a2 v4l2_m2m_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00bb2668 v4l2_ctrl_notify -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x041e83bb video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x038d29ee v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0429fc57 v4l2_querymenu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x098e9bdd v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x118a2d90 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b962869 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c0162d8 v4l2_s_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x150c5524 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14b382e1 v4l2_ctrl_type_op_log EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a947be7 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cb4d83c __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16d9bb7b v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16de4c27 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x178a6993 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1eedc1c1 v4l2_ctrl_new_std_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24a9a899 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26f1e58e v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d6bc4c8 v4l2_ctrl_sub_ev_ops -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2d8262b3 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x250d0249 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26e6f5d6 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ea906ee v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3040373b v4l2_query_ext_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31738f4e v4l2_g_ctrl EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33478395 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3512160b v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ac1fefc v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ad42d48 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33ba3acb v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ff98bf v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39f3b461 video_device_release_empty EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bca12a8 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b86cd9a v4l2_ctrl_fill EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f7e234c v4l2_ctrl_poll -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43181419 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x438be0c6 v4l2_ctrl_radio_filter -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e487b8b v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58505523 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a191b81 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c00a577 v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x614e90a0 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62b94a01 __v4l2_ctrl_modify_range -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69829f91 v4l2_ctrl_type_op_equal -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e75b614 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f2bdb44 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fa15043 v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a097450 v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e81749f v4l2_ctrl_add_handler -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ecc57d4 v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7edaafb1 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7efe0046 v4l2_ctrl_new_custom -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80bdc399 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b1e73f6 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c8fcd2e video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53c1a502 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5ad90069 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c6a0274 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61b13c60 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x641c75fa v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66b07218 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a369c82 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a967fdd __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6abfcb13 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ae0bc37 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7749b867 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a90ec53 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c05b919 v4l2_ctrl_find EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x831e4931 __v4l2_ctrl_s_ctrl_string EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d531594 v4l2_ctrl_handler_init_class -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x921c7e95 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9921749e v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7bf90aa __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaca5340f v4l2_ctrl_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaedb4ae0 v4l2_ctrl_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb435e33c v4l2_try_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb64c7974 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e9385d5 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9423b4cf v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x968598a1 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1341cfe v4l2_ctrl_type_op_equal +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2c2e017 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa30ccf62 __v4l2_ctrl_modify_dimensions +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac43048f __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb22c3d32 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5cfe616 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb709c25e v4l2_ctrl_type_op_init 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 0xbf23062c v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc0e63b71 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd23cbaf v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf67d0d4 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc612ad77 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7d81aaf __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8243042 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca3652be v4l2_subdev_call_wrappers EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1a2bdcb video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3947999 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd723d677 video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd82934f3 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd37179b1 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd52ee067 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7830803 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd893cb9c v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc9a91ff video_device_alloc EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe65379b1 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe80272d6 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef37d9e1 v4l2_ctrl_new_custom EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4d7be2d v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4305647 v4l2_subdev_init EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf51bc669 v4l2_ctrl_handler_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9371b13 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa58f373 v4l2_ctrl_type_op_validate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9ed16e5 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfcc9cac3 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfedbf7a5 v4l2_ctrl_poll EXPORT_SYMBOL drivers/memory/omap-gpmc 0x389acf0c gpmc_configure EXPORT_SYMBOL drivers/memory/omap-gpmc 0x4f89c9de gpmc_cs_free EXPORT_SYMBOL drivers/memory/omap-gpmc 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x6bca895e rpcif_dirmap_read -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x8c58c136 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb2c5f7c7 rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc06ef461 rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xf55b0000 rpcif_hw_init -EXPORT_SYMBOL drivers/memstick/core/memstick 0x06bfca91 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x16b72d2e memstick_detect_change +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x69ea46e1 rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x888c6bbd rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x9089a95a rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xace3e98f rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xfed13c77 rpcif_sw_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x135593fc memstick_resume_host EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x43992403 memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4c276104 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x512d3e3b memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x58867ecd memstick_register_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5aac45d9 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x8167bbe4 memstick_alloc_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x86c7a1a2 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x9961b2b9 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb8bd1cc2 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xc3e22606 memstick_add_host -EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x009adaaf mpt_put_msg_frame_hi_pri -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x065c453f mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13ec6cc1 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x233ce360 mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28bcebc2 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28f24cfd mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35ebcfeb mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x41611692 mpt_suspend +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3870936f memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3a4c5195 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3c888300 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x47f1876d memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x90c2129a memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9453ac5a memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb5254e68 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd6c6c3f memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc27d1ab1 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd03cec59 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe5fa4faf memstick_next_req +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x105ba8cd mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13190186 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13f2988f mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1801eeab mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2407c522 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2df4a43a mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x330fc8ab mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x351ededa mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40da4533 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x433d6fc0 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43ee41d3 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4779ed7c mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a492ee6 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4cba8470 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f7a17c8 mpt_get_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x52f38fc1 mpt_free_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x538f76dd mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e0224f7 mpt_send_handshake_request EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67a0fd68 mpt_device_driver_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74967e8b mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6eddf521 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7286b27f mpt_HardResetHandler EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78b622ed mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7940c088 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cf34e72 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9378d29f mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94df0157 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x96af1cff mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x836e4224 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x946a6ccc mpt_raid_phys_disk_get_num_paths EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d042716 mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9e93e905 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0a60cae mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa121cb8c mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb432630d mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc576bf27 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc020cfe mpt_put_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd68bafb9 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcbd4621b mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xce0396a0 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd049e28 mpt_verify_adapter EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf97c8a6 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe24259ca mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe55d5eac mpt_raid_phys_disk_pg1 EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf2d361f2 mpt_findImVolumes -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4f4614f mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01d63024 mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0ac74c72 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x133ecd61 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16442fc2 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1761da12 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1fcc75ef mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2eeca4c1 mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3d789738 mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5289c6c0 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x53fbc37d mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a9d69b9 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x77a3c743 mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a4ffc86 mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x86ba252b mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x92427bdc mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94d19243 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa384cc42 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7ef944c mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab34f84a mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc1446a4 mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc450be18 mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcabfa551 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd8fba45c mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdfe708c1 mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2aa9230 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf340684e mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7bb3f9f mptscsih_slave_destroy -EXPORT_SYMBOL drivers/mfd/axp20x 0x0fb07909 axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0x42a8cd1b axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/axp20x 0x8a2f5736 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/dln2 0x02d3273b dln2_transfer -EXPORT_SYMBOL drivers/mfd/dln2 0x7b163afd dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0xe0ffd224 dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x914b3846 pasic3_read_register -EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xb940a252 pasic3_write_register -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x00873187 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x41134b30 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x63ad4061 mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x71fda706 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e6b742c mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x83d5a6b4 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9c629c2e mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd3872be8 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdc73dc02 mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe15fb4ca mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe78d728e mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x6455e900 qcom_pmic_get +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea159c7d mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf2339981 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf2ffd597 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb250e95 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x019aa53a mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10815db4 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x144b4a39 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16eee3c9 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23f88523 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3465ceaa mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c47c2c0 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ebb900a mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5139580e mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a261f34 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c80fa10 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6c32aeac mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x85c0bcc8 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8606d356 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90cbd44e mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9301cbc6 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x957e9ea3 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaab501ee mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbda8910c mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf3c6b58 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd3353006 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4dc29f0 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd79cd6ec mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1138368 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec8ba7c1 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf667302f mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf9a341fa mptscsih_slave_configure +EXPORT_SYMBOL drivers/mfd/axp20x 0x30f423fd axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x6ff4bddf axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xa37e85af axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x68b91f69 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x74c9fbd5 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xc4a9a4e3 dln2_transfer +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2fa9c5b1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x32ed9ba2 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x34b90bf0 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4338eed7 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x56a07287 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5971fab9 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9c10ab22 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe8e7b707 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xedc8eb32 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf15f56cc mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfcede872 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0xbe6acab6 qcom_pmic_get EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd520f912 qcom_rpm_write EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 @@ -2575,215 +2500,218 @@ 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 0x1760b2d1 wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x8802b0fc wm8958_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x9d2d7388 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0xba380b65 wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xd45c29a6 wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xe12ad312 wm8994_irq_init -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6801db5c ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x80d5e5b9 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x06e0cf91 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x19ac2ef2 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x34da7408 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x5b2d2356 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xabb87625 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xbadd8ddf wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x14f23d4b ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7178ef48 ad_dpot_probe EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x01bc1307 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0x8b6cd732 c2port_device_unregister -EXPORT_SYMBOL drivers/misc/tifm_core 0x0e973d90 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/c2port/core 0x3f8d8160 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x689e5b80 c2port_device_register EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x261658b8 tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x31dc9c73 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x379f2800 tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x4085ea9b tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0x5317b564 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x65e9722a tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0xa117f0c7 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xaaeb492d tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0xb527d8bc tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xd3e887e4 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xff17bc77 tifm_alloc_device -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x00f512f3 cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5201e157 cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb3fa1050 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xb6809ab6 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0xfc02cc92 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x61e0c36f dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x750dd051 dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x86073744 dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xa680459a dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xa640d820 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe68ac5e4 mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x29acfc7c cfi_send_gen_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x53312d99 cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7e67586f cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8ad1a8a9 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb2d7e912 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb63f727a cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb6c83721 cfi_fixup +EXPORT_SYMBOL drivers/misc/tifm_core 0x12c19997 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x3b5ffa7c tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x4108eb0c tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x4a6f3b66 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x4d3c2c9a tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7daab555 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9d6db338 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xb375f779 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xb3f59ff3 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xba5e08cb tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xe1e14983 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xed87639f tifm_free_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0ab16e8c cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x3c560b6e cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4f295839 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x599a4b12 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xae7072af cqhci_init +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x18fddea6 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x70ab3930 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x74d44b8d dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd17bc436 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x7c3697df mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf61c727d mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x21560c65 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x322d6eab cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3396f109 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x33e78776 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x69577913 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa6bcc273 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbddad924 cfi_build_cmd EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0c43f66e do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x8421d41c map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc37e20f7 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe28329f4 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x46f43514 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x9ed2a804 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xca0d4eca simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x02445ddf mtd_concat_destroy -EXPORT_SYMBOL drivers/mtd/mtd 0xccb6d7fe mtd_concat_create +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa1dcd8d7 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbd3dc0d8 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xeac39b89 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf7304db1 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xd31ab149 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x79e725bd lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x4806a663 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x13429560 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x714518e3 mtd_concat_create EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x19b450f9 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xac5991e7 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x08329cb8 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0c3b51a6 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x108fb41b nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x161fecd6 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2b322baf nand_ecc_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x351d3968 nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x504be607 nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7167f5da nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x774c47f8 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8bcc710f nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x99490a0d nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9dd685d8 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9f447a5e nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9fcfe1d2 nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa8b20136 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xba413844 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc1c7df29 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc79a5aef nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc93ffd71 nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe1fda07c nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x066c28fd nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0f9d8919 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x12b2cb30 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x17d1d160 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x19f6a0c6 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x31b6fbd4 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4136ad4f nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x583042dc nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5f576973 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x71d92d7b nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9126a494 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x91f174ee nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9ca36927 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa39210d9 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa4060023 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xaddb1bf5 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc91402a7 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd89127e6 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe5481f73 nand_ecc_sw_hamming_get_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf754babb nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xfb908c93 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xee33051b of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xef25f0a8 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf52ad000 nand_ecc_sw_hamming_correct EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x12ca9bff onenand_addr -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x6541f486 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x2a8ff4e5 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x361bd599 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x41127f83 flexonenand_region EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x9430e131 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1693f6ee rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2ec0f26c rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x37ad70b4 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3d80ee0a nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3dcadb8f rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x445a3205 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x45d4f906 nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x51cc2549 nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x57100af1 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5f6ba562 rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x69d941b7 nand_create_bbt -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7682511c nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7f8434dd nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8521c73f rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8e578ef9 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x496fe9c0 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xb37fd083 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0f313bd9 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1148d553 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x20f6ebc3 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x22a95605 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3265f0ab nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x39f3bd53 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x437aad26 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x548fa196 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x60f1a3ab nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6c4059c6 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x72315b13 nand_scan_with_ids EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xadba57b2 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf22f4482 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x2aca5cbc elm_decode_bch_error_page -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x323f00b0 elm_config -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x27152feb arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x30d6b0a9 arcnet_unregister_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3f3275ae arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x44041bbe arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x569fafe8 arcnet_send_packet +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa3369c34 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xad82ba90 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xae546576 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc3445dcb nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xce19b228 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe05eaab0 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x033098be elm_decode_bch_error_page +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xb35ac13f elm_config +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x09f55bb6 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x12e95dd4 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x36f2d650 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3999df62 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5548445c arcnet_open EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa8dd3435 arc_bcast_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb5a8b638 alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbae69002 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4fd767f arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc9c9e851 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd0cb3cf3 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6605bf32 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7b108cfe arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x991aa682 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9e083370 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcf50d29e arc_raw_proto EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x020c5f84 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fb3571d com20020_check -EXPORT_SYMBOL drivers/net/arcnet/com20020 0xad716b45 com20020_found -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x34547c79 ctucan_suspend -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x6b7dcd28 ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7b79aa9d ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x40394b59 can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x79195204 can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0066b5f8 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x04bc85d5 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07c0aaff b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0e70f318 b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23da099d b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29a6e96e b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2ad59ccb b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2d185d7f b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x359e3ae8 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x39ece88e b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a683023 b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e3ca69f b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51f4d5f9 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x531cda7d b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54940705 b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54eef93c b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6ce616c9 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6df6d6df b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x912c8db1 b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9458f125 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96e77e66 b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa1f39b57 b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbfb5649d b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0eea8bf b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc9f3926f b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6254dc1 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd665f5b5 b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdcf4e25a b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe5367f48 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe5ab184e b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeb4869d6 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xedc32986 b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef513525 b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf2608a8f b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf4d61f88 b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf68c5189 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf69181a7 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf9ad969b b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x26c6a57a b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x99b694d3 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc34fea4d b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf7ed9a6e b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x62b4fe6e lan9303_probe -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x92e8a7d6 lan9303_remove +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfb508c4f arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5036641b com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6cbb4473 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd66cd151 com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x06f6ffd1 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xe5ebc044 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf12e8181 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x6a18a733 can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0xa633089b can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x016abdc4 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07f3f0ce b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d05f8db b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d59314b b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x15cc91dd b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16243efd b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1787edb0 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1da52b89 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2fe9af5f b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d41ccd7 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x51715b48 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x54d0d9a7 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5d6770bd b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69b610fb b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6db61d69 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8618f866 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8713d07b b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x880f8409 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8b6308b2 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x915bfe69 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x91727508 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e237997 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9f6a4c68 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa2d4f085 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaa2d0065 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaddaf1f2 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc2d584e6 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc359f876 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc756dfea b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc76241e2 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcc0357f7 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xce9e08f3 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdecddaee b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe26b893d b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed002763 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xef629a04 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf44ae150 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf48123a6 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x06fbf6e7 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x49a35394 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa464a398 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcb42cc1d b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x55d4b100 lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf00a49e2 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x9b7023b7 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xcb8a1e24 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xedab27e2 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3a068a7a vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x457ee6a0 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf3266c9e lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xfd64f924 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x28c108d7 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x3516247f ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xafacc103 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x16c5542b vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x9155f103 vsc73xx_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfda1b951 vsc73xx_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x67c1dff9 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x773cea28 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xfccb5f0c vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x1ccc2c43 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5dd4daa1 xrs700x_switch_register EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x99e777b8 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x941c8aad xrs700x_switch_alloc EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xbf67fff0 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xc92c4c12 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0f2c1b7a ei_open EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x11ed672f __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2c000e95 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x31ec6a98 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3d5246cf ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4cf995e8 ei_close -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x89337255 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8eff37b4 ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb138e919 ei_set_multicast_list -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe67ca4b0 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf1bc977d NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x41588559 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6014a6fc ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6e1f224c __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x777243e7 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x818b8d30 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa094fe7a ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb21fe6d9 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xce853fae ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd75a69e6 ei_get_stats EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xb368ec47 bnxt_ulp_probe -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x33e65744 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x02ce73db bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x750703c6 bnxt_register_async_events +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x78ea6a28 bnxt_register_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xb891953c bnxt_unregister_dev EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x10d3c9e2 cavium_ptp_put -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x311b642b cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x93d0b652 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x61d58fda cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xaa5fcc38 cavium_ptp_get EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count @@ -2801,386 +2729,392 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b63564b cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x183ac963 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x25a63750 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b9b68cc cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4282a525 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x59b7da29 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5b4c4fbd cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x65b14586 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6749d45c cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7dfb53f5 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8d3fdc26 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x96b5c8dc t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaa66081f t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbc51e901 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe0486b56 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfa87ad6a cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x066feda8 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x23102e73 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2be7902a cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2feed16f cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x32bf4409 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3a4f03c1 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3ff72b8c cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x63f9fd32 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x652733b3 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6b5e80fb t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x960c900a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x983ccbb9 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99324af9 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9fccd5a t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce4e0b5a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe318272f dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0e5a545 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c95e48e cxgb4_smt_alloc_switching EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x115757dd cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x166946a2 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1fabeb92 cxgb4_crypto_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24c880c5 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x272cd807 cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x27e0191f cxgb4_clip_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3475519c cxgb4_l2t_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x387f4bf6 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x392b32e8 cxgb4_read_tpte -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40ef00ce cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44f92b36 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5089248d cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13fe1e04 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2406d260 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25284a21 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x280b4cac cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c917e6c cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c3b2d77 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3eb6d565 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41411a27 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4428993f cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4502ec2a cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x474bdda1 cxgb4_port_e2cchan EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x510cbdae cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x518e65a2 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5495624c cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ec2094e cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7383bd71 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77382fa6 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c354e77 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7df24889 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8197db98 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x832e85d6 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ab3e27f cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c615dab cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9204f946 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9653938b cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99cffdb3 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1eee9d4 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2bce0f5 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa7062528 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x540bf1e3 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56a86496 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62312ad7 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6313ee78 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x633b7f62 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6510ba70 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x683ccff3 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a01b8ae cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6cfec432 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x708537d5 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x721dc4d8 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7aa82cc5 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7e7d6ee0 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9c67426d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa1c8f19c cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4ed8a46 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa88bb2f2 cxgb4_create_server EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1fd252b cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb54f5598 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7b01e52 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb408f51 cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc7d4fa1 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc4cb82fa cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd1cc545e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaaa8eaa2 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc1fedd33 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc55243b8 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6e679e4 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc94a2f03 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc96aa446 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd34f1ade cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd4a7b5b2 cxgb4_flush_eq_cache EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7b04e2b cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd87f0493 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd90ef625 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdca38ec7 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4592114 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf037bf8c cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf33b9bc5 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4764e83 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd7b4e412 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5af4f3d cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7165d3a cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec680144 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf068bcb9 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf243b135 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf25b6e65 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfef4bd52 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffe0517d cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x05a5f594 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1919e5b9 cxgbi_ppm_ppod_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2ec3e705 cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x399da3db cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3a137419 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9b8025b6 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb3e74872 cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc3b071ae cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xff6c956a cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7be8b445 vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fdd5fd1 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8bc8b2ca vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9576aeda vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd394a46f vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xec91653b vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x19914485 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x2588b193 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6b261402 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb9303fc1 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdb8c5b3e cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xecc38607 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x47948e0a vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4cec94fb vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x64e7bdb4 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7f54c54c vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x98e6accd enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xba2169ce vnic_dev_register EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xca8f28e4 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x72d98bc0 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xaddeb8d2 be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x48772757 dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x8ac2de8b enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x01568e93 fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x0e491e0a fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x64d2b3f0 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x66c19e2a fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x43af9a48 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4be37821 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4db13eb7 hnae_ae_unregister -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x95d773fe hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xa9541a65 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xee556024 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x3fa7bc8b fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x418ba4e9 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x55519c5c fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xee16bf2f fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1ce6d13d hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x465505d2 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x95e940a4 hnae_get_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xca49f19f hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xc4da40b3 hnae_ae_unregister EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x4d89a14a hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x22ba2e43 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x595acaa1 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8966e67f hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x8c1438c1 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x9c9ba9fc hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcd3be350 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xddb4726d hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf79389a5 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x5100d962 iavf_register_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x84c8cbd5 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe8d81366 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x02ca1c52 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1e84e710 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x508d4867 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x515c902e hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x78d37d80 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x812f1610 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xad56a23b hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xae861906 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcf26b967 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x07b92111 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x72a5dc01 iavf_unregister_client EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0c750ba3 otx2_mbox_check_rsp_msgs -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1e5a0ed5 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0917c4a4 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x24ec38de __tracepoint_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x28216f0a otx2_mbox_get_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x431a251c otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x49286d3c __tracepoint_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4b643da5 otx2_mbox_wait_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4d90631b __tracepoint_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3ab52dbb otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x419e8baa __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5aa41558 otx2_mbox_regions_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6ddbf965 __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x86f366ce otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x88e1a370 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x696ecc8f otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x868ca75a otx2_mbox_busy_poll_for_rsp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9115328e otx2_mbox_msg_send -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa35c5ffd __traceiter_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa3a96eb9 otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbfb71ed5 otx2_mbox_get_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc196bc11 __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc21e8509 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9243385b __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa729aff8 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xab39702b otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb03fdb75 otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc619ea5d __tracepoint_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc704095c __tracepoint_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcc3694aa otx2_mbox_destroy EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe328a43b otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf9c0146a otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfa67fa38 otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0504442a otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x08ed8608 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x17786d63 otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x179c8c67 otx2_txschq_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x196c7a78 otx2_init_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1b27d514 otx2_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x255a8fac otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x273110f5 otx2_config_hwtstamp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x299b5c2f mbox_handler_nix_txsch_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2bd3d2d9 otx2_handle_ntuple_tc_features -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2fb45324 otx2_nix_config_bp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x300490af cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x359e07e1 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x41563dc6 otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x46243bcb otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5d87c37d otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5decae6e otx2_setup_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x720c1b18 otx2_ioctl -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x76621f4a otx2_config_pause_frm -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7f21eb2c otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x83e591b8 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84a05bab otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x94ae3f2f mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x95d8f2e9 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9a8e1e27 mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa1534230 mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xada2a410 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb4830f2b otx2_shutdown_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb512862f otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbe3f74f6 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc9331335 otx2_smq_flush -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcf5a2645 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdf09c31e otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf5f8af1f otx2_mbox_up_handler_mcs_intr_notify -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfec0e2cb otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x2b4188a8 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x44bf6e08 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c40c1e2 mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ebca374 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x144843b1 mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15155dd1 mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b071206 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dc7756b mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f71b453 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x211ff46a mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2990dc43 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3632bb8a mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36719e3c mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d168d43 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51266a23 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f652053 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62c1bdb6 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e96b196 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7038bf73 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74e86e88 mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b696a06 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7de3a5e2 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xd2298f15 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe4dfa14e otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xefb50eea __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf12f35af otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x15510b9a mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x16752da0 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x16f95635 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2226cc60 otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x245dc25f otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x26defc5a otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x32095466 otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4902e263 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4ec0893a otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x55f65ee9 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5e087edc otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6ba29b48 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7080fd42 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x70e3ece4 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x79f02329 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x806c3fd6 otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84e15aec otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x878fb669 otx2_txschq_free_one +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x96704d30 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9d26ad7a otx2_select_queue +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb07fd2b6 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb2f85c5c otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb689efa1 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb9a08245 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbb7bc89e otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc768e202 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc8b58e09 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xca9690a9 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd0bd63f2 otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd7db1052 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe66a29f7 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xed975b3e otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xef32e860 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf630e5d6 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfad6d8a6 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfba2ff0a otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x2f3768e5 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x58514097 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0262e417 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0411c4f8 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0611bf49 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09dccaee mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ddb2f94 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fc88f16 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10f3d90e mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x147c0794 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16c9e050 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a0d6f2d mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2077a3bd mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2553bd6f mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x303892c2 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3069da97 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f3d3230 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4641f5d1 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49fa684d mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62622e5b mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6390e983 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6733aad7 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75c2ff2d mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78451d20 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f20c5d6 mlx4_get_is_vlan_offload_disabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8072e0c7 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82511368 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x831bc64f mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85e727b9 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a301aa3 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c63e670 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90d00a03 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a6b0e98 mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa273d881 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa29485ed mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa86f1ae mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf578d0c mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d9a1e7 mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcf7d7fe mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca3c0501 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3b9ed22 mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde32489b mlx4_eq_get_irq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf942c1f mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe04641c8 mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe597db2c mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec56da77 mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef01e69f mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf80b3d2f mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd2b868a mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00bae707 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01740b2a mlx5_fpga_mem_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01797bf6 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07015565 mlx5_cmd_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09d25e13 mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ef238f8 mlx5_rl_remove_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x102b5012 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1258f2b3 mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12e96061 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13d565c7 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1696203a mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18358cf1 mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18585e11 mlx5_lag_get_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1911ed28 mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19f7ad89 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81b2db89 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa167a0dc mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1f4adf7 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad06e87f mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad1db165 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad2ae1f4 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1aef823 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbca6ef26 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfaeb71a mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca6c0338 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce29504c mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd98f3460 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcd071e7 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd4e939d mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde163f23 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde476b0a mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe519ba92 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5a2df81 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0d56df5 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf267bc96 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf85cdb9d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0233507f mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0316e040 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0608752c mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089f1089 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10824f6b mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1097b100 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11dccd2e mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12135c1c __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14a12d65 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19af18ba mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19cb3ded mlx5_fpga_mem_read EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e167038 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e38486c __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ee8f575 mlx5_add_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e3e5772 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ecf0d27 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f453cbb mlx5_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ff60c26 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x200269a7 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20d9f450 mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d0d456a mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d922654 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f2a1c62 mlx5_fc_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3110c668 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x316bc5e5 mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3184d5bf mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3278fa44 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2acae5f0 mlx5_msix_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bb32689 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ff952c2 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30d419db mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x319aa6ef mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33f76021 mlx5_cmd_out_err EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34c223b3 mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3712fd82 mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a2b56b0 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b0101a0 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b4dddc2 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e5feeba mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41158a4b mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41b7e2fe mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45a098fa mlx5_core_create_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4be27f3a mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x354abd18 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x364c3b54 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36cbe7c6 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a565cc1 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff9052f mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41f41ee9 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43659a96 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4371e389 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44cde6f3 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b52e00 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x461ff0ac mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48162d06 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a19e302 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b7604ba mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4be19c39 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f130e21 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fb7d748 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5011c1a2 mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50f3d0e6 mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ba69b0 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55370940 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d62e046 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4de19b5e mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e972349 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f96b421 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x500285d8 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5282ce97 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52be4119 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x552c5739 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x554ef3b1 mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x573f3bde __traceiter_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5758a377 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x575f3c03 mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5959537c mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0295bf mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c5fe499 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56cfd7be mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x571c4ec4 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a581a91 mlx5_rsc_dump_next EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e81e425 mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ef9728e mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e5106e4 mlx5_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6482eeea __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x657daf32 mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x682971f0 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68cb7220 mlx5_core_modify_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x694f2865 mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa4d307 mlx5_core_destroy_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e406e86 mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eb0bf85 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ecaef91 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x623873c2 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63f80e17 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x640e1f87 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6487442d mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64b0f72f mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6643e81b mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6804834f mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd5a182 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dd20fb6 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eb5b35c mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fde1bac mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7225e575 mlx5_fs_remove_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x736fcbb5 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74ff7243 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ba4b9c mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x775168fe mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a002f9 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x737c4ead mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73fc1d8e __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75c38076 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7704072e mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7825da61 mlx5_lag_query_cong_counters EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bca1526 mlx5_eq_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d5ffe09 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7df19565 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ed65e4d mlx5_cmd_exec_polling -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81963e56 mlx5_core_query_vendor_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x824cef0d mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8558da80 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x866d973c mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86ec96ef mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87073bcc mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x872e7c67 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b731b46 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b7a1adf mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bdf4517 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x812cb9ef mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8362370f mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e68171 mlx5_del_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88a07ce2 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8932742d mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c96852b mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9073d364 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88fb9e18 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bf23780 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dc2e2fc mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x921842f2 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x926f9449 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93101674 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9357d365 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95703c80 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96542304 mlx5_get_fdb_sub_ns EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c01a5b9 mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d3900c5 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x980cd838 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98f9aa79 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a0e98c2 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cc1377f mlx5_eq_update_ci EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f8eec8e mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa02c7f85 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa22a62fd mlx5_cmd_destroy_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa37d7111 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa585a034 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7bcab60 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f8af7e8 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa01ba7a8 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a44d16 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1c3f6f5 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2066062 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2f3947e mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa32de932 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3ce3bcf mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4d5f4a0 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa778af61 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa77f707c mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7a80eb1 mlx5_eq_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8c35f06 mlx5_mpfs_add_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa90bf00f mlx5_fpga_sbu_conn_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacaad974 mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf29f0a9 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0851a9c mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb102735f mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafa27eb1 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb12e461b mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb170a92c mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb35b7b6d mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72cffaf __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7992870 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb830351e mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb976d282 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3932c8b mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb89ec30d mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8a1930f mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb475e47 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcda28e5 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfd20f05 mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2e35e6a mlx5_debugfs_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc72b521b mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc782ca02 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8737e10 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc89e61bb mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9d39401 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca060c7f mlx5_core_destroy_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbb22627 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbaec072f mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb07ebdf __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3388360 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3ea91c0 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7078cd5 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7c06503 mlx5_core_create_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd65b35d mlx5_eq_disable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdfd12cd __traceiter_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce9afb7f mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf9435a7 mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd015bba4 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccded986 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf03a204 mlx5_core_alloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd13f3728 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f2dfdf mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd310aa22 mlx5_lag_get_roce_netdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd34ec2a6 mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd54d3163 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb4e004b mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb6c397b mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf21417 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde85f81d mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde9842b9 mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe13239d2 mlx5_eswitch_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0c5b812 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd39d97f9 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5f38d5b mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6d66a3d mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd886bdf8 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9341213 mlx5_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd967f0f9 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdae8aa4d __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc34f5c8 mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd8262eb mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd82eaf0 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde159a24 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde2bbe65 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1a1f3af mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2812c99 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3034e2f mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe31828eb mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5283a18 mlx5_fpga_sbu_conn_sendmsg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7a90a18 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe831fe69 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe67a8da0 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6c30df3 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7b29f0f mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea7397ed mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee558894 mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef6bba54 mlx5_nic_vport_disable_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b0433d __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1f0cc55 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf215938f mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7e3b555 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec55ac6e mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf06725b6 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1bb7dde mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2706757 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf299fedc mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52e1946 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f6e8c9 mlx5_fpga_sbu_conn_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8dc75c9 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa08c5c9 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfde0cc85 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff6d0c8e mlx5_packet_reformat_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap @@ -3188,27 +3122,28 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x13f3b759 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x12d3b73e mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16673aec mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x209e9716 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x299e2562 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x29d15dec mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x347c6d63 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x34fc4123 mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3783532c mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3a122586 mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3bffa6e6 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43fda4c4 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4770e137 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police @@ -3216,59 +3151,58 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5254fa16 mlxsw_env_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x612b931a mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6b92095a mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7c7121fe mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x826a1dd1 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x85c5595b mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8d162e85 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8e557b76 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x93081a7b mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x92c087df mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x937e35ca mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x99e58662 mlxsw_core_skb_transmit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9e41f494 mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9fffcc07 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa527cd30 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7aa4151 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xafc61cd8 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb56b7e69 mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9bd91a4 mlxsw_env_reset_module -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb75a82c0 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb9cd6d2b mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbaf56bc5 mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbd39a61a mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc72c41cd mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd0cada5f mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcd1775c2 mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1bab622 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd66e6084 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip @@ -3276,1221 +3210,1261 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc5c95df mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeab0691 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf0d3a447 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf1ad064c mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf8687efd mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5bd48990 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xd152d1c5 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x3a6ddcf3 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x860d0d7c mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00de1c54 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03204e07 ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03bcdaac ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x049bd7ef ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05390c25 ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bf414ad ocelot_init_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1142631e ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x167a2563 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x172daf89 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18febbd8 ocelot_ptp_gettime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2206ee43 ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x235e3311 ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x250367ff ocelot_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26d130c8 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2766e374 ocelot_drain_cpu_queue -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x286aff1b ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b56b4d3 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e02b99c ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x22f0c82c mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xafa4f1f8 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8bda1406 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9543f2b6 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02caebb3 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x044089e7 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08791cd6 ocelot_wm_enc +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d07410e ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d274bb2 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x126ff7bd ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x18821e58 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a494513 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23c6e8b3 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24f44791 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x255fd7b2 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25e5165f ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a1682be ocelot_sb_pool_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f53d8dd ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fb641b0 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33246416 ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34b6e54c ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3762b9b9 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38652fce ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3906fbfd ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fb42333 ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x406e9c23 ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4245f980 ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43aebe9b ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4992e586 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x540285a7 ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55130c8c ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67d30f48 ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70aed8dd ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71048f88 ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x718df217 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x744bd65e ocelot_sb_occ_tc_port_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8312406a ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x838970e3 ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d40531e ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9032deef ocelot_vcap_filter_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90ca2f33 ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93ab1c44 ocelot_init_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x945d22a7 ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9890f46f ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9fe81690 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2701292 ocelot_fdb_dump -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3523c88 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7f6bca1 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad50baf7 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf9d15fa ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6c79028 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb85ab0bf ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb86da1cb ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc1fe713 ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc939f68f ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f635d53 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x305fb91a ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34aacbec ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x360d2f64 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39a238d7 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3db2e8e8 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e5ab802 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40421aa9 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4151308d ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x435c4bcf ocelot_reset +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4489fa0e ocelot_pll5_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x451d5df1 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46595e04 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47e22b1f ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b4ee554 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4d03d3de ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50bcdfe7 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x545cc475 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56ca10f7 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56e0b0ae ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b110925 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c612278 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ff3b734 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x616c7dc5 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61f73c1e ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63c1a147 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x657c7893 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65e17b93 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x665ed589 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67844c9e ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68e72f34 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce19e2a vsc7514_vcap_props +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fb08454 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x754a4a73 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75eb3428 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x797869e9 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5aec55 vsc7514_regfields +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80373400 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x851ff51b ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86d6dc20 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x896f0ded ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ae5bdd3 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c909925 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d6dc1e7 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e756706 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90f139cd ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x932c7980 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9b65df6f ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa740576a ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8a4df11 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xadaf3150 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0fdd7fd ocelot_wm_dec +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba4c0af ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdcadedc ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4357a1c ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5a58fad ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc631ebc6 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd1ff0ff ocelot_mact_lookup EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd211085d ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd96444df ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdd056cd6 ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdda6598c ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf24b0b4 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf9f8dcb ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe0bbd69f ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe389f38b ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3ab2c12 ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7cd4e5e ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe85493f5 ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed76756a ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4f26438 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7839765 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc7dab06 ocelot_port_pre_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdfa46e7 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfeaa56c3 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff0c87c4 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd37ddefa ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd942359e ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbb955c5 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde39acb8 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1a20ef3 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe30fc619 ocelot_wm_stat +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe87c7228 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb3ace7f ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf44bcbd3 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf5e82a90 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80fc88d vsc7514_regmap +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x05047933 qed_get_eth_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5be9e214 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x5c2a5746 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x746f9cff qed_get_iscsi_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xcf90c819 qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe7a0049f qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xef8ad21a qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x92b06668 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xd9e61de0 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x035028ff wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1b20cdcb wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2bff7754 wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4c51f302 wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4d669639 wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x500b0bb9 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x67e590d0 wx_clear_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6aad4551 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6c1aedd6 wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbb0c0675 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd5725cec wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd743dea4 wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdfcd0c7b wx_set_rar -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe4160ee3 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xea4fcaca wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xeaa549c8 wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xef9ccb42 wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfd9545b5 wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0ee8c81c hdlcdrv_receiver -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x12782276 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7218de51 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdaaba88b hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xeae991c9 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfbbd0f95 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x4ea73221 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xa7dc8325 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x09b149b3 wx_reset_interrupt_capability +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0d367786 wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0ffdc26e wx_free_irq +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x16bd552b wx_intr_enable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1b226af3 wx_start_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1e88e8b5 wx_set_mac +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x29ece31f wx_vlan_rx_add_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2a503e0e wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2e6b032a wx_napi_disable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3114e4ed wx_configure +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x344c0a10 wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x371bcc4e wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x408d8921 wx_free_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4532ff12 wx_init_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3398bd wx_msix_clean_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4cc09d54 wx_clean_all_rx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x54aa305a wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5a86948b wx_setup_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5d88ba24 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5e5a1cca wx_set_rx_mode +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6abf0993 wx_misc_isb +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6f02ced1 wx_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x717afb9d wx_get_drvinfo +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x76bdbb5e wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7ab9725f wx_clear_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7bfecd8b wx_irq_disable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7d522f80 wx_mng_present +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8659e4c9 wx_xmit_frame +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x872ae72e wx_setup_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8d025812 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8fb55b40 wx_set_features +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9e2ff362 wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa76fcea1 wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaf940edd wx_free_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb608d473 wx_clean_all_tx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb914436e wx_vlan_rx_kill_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc3db55e7 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc45d95ce wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd964a94f wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd9f5d9c6 wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xde59b14f wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdf020767 wx_configure_vectors +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdf4224d3 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe01d9e50 wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe043b3aa wx_flush_sw_mac_table +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xea7198bf wx_change_mtu +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xf52a7c7a wx_disable_rx_queue +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4a0aeae6 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x89236867 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa5c29990 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc986ab6a hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd8688cc5 hdlcdrv_register EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x62eb612a mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok -EXPORT_SYMBOL drivers/net/mdio 0x7e8fabde mdio45_ethtool_ksettings_get_npage EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x0e780f70 cavium_mdiobus_read -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x2da21fed cavium_mdiobus_write -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x371c70c6 mscc_miim_setup -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x12249369 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x319c0347 xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3c8e0f83 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3e43465e xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xeeebbf0f xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x852c05e6 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x0fca328a pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x3b70a099 pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x72ba1735 register_pppox_proto -EXPORT_SYMBOL drivers/net/ppp/pppox 0xd70c1364 pppox_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x04c7385d cavium_mdiobus_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x1b85a6ad cavium_mdiobus_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x49d4c7be cavium_mdiobus_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xd0d8925f cavium_mdiobus_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x741a2ebb mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xa2068d40 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xb3df9909 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd01d8f56 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xd1530d28 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xda499033 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0x3c758995 mtk_pcs_lynxi_create +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe9221a05 mtk_pcs_lynxi_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x27b19c70 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x30421c68 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x99d23c4d pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xcfbb6b44 register_pppox_proto EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0x1811b23a sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x345ff5f4 team_mode_unregister -EXPORT_SYMBOL drivers/net/team/team 0x54e23e8f team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x599405c2 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0x7db942ba team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0x80945d4a team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0x851b1d4b team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x8c1b448d team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xac9feb90 team_modeop_port_enter -EXPORT_SYMBOL drivers/net/usb/usbnet 0x0a184e8e usbnet_link_change -EXPORT_SYMBOL drivers/net/usb/usbnet 0x3be33f17 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x3fdf4d54 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/wan/hdlc 0x1b603354 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x20f9fbd0 unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0x2b20ee6b hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x43e5767d alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0x4e71007a hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x9bf791e6 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xb518be83 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0xc8773bee unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xce98f0d9 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xeea176ea hdlc_close +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfb2e66ce pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0xfb9f1547 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x608d95ca team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xa8819f41 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xb024b8be team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xc2be9206 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xd133dea2 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd5eabfdb team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xdf5c6ac3 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xf4996af3 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x510012da usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5a387ffb usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6fa50bf1 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2d7c30b3 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x43def53f hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x73c45ad1 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7acdbbfe attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7bdd268e detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9ce024b0 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbc651780 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd533778f hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf2d663f0 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf94149fe hdlc_open EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x18d303bd ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x24289a91 ath_hw_setbssidmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ff276cc ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1c802054 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x37e6b6f5 ath_regd_init EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x51deb48d ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x64199f73 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b9c9a98 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x73ea84cf dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7bd84fe3 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8dd42a89 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x530b6285 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5f8914a7 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x668392b6 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76b45542 ath_hw_keysetmac EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb2f82421 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb04da4a1 ath_hw_get_listen_time EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd43514d7 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdc020731 ath_key_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfc228bed ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc7299826 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdd15a8bc dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xee200e05 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf0b72e5c ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf5d228fd ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfd124328 ath_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0330e240 ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x056623de ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0aa7271a ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ea86c42 ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1413af55 ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x15bbc152 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1d94762c ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22c678f7 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25b38e4c ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x263526db ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26497a03 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x281a92be ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28ce6b58 ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b429f55 __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36496098 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3aae4951 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3cce42bc ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ebc0c33 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f85c008 ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x41a00508 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x457f41d8 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4d8259cc ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52e2300b ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58137463 ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5907464a ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5d085d97 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x634689f7 ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x635d3820 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72345c62 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72e4a776 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8058e3d1 ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87870bbf ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8953086d ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89ebc577 ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c187248 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90a2895f ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9394e816 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8a527b5 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb47e6aa4 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbfeabed3 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc0ceb0ba ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2167d13 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc35308d3 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc48f224 ath10k_core_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd759bf0d ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9f2e812 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe091f9e2 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe38e361c ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5b393f0 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6adaad8 ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe95c6b8f ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9d9f670 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed83f7cd ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf372bf3f ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf563bdf9 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf79312b0 ath10k_ce_revoke_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0a7973c6 ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b402a74 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x25ec8ecb ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2da6f1da ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x30ac4f55 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x32778e7d ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ed8184a ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x43e96551 ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x493aa5c7 ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4a249572 ath11k_pcic_register_pci_ops -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4de34d64 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x516d7a64 ath11k_pci_enable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5b66d6e6 ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6af2876c ath11k_pcic_read32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b221d52 ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b2de73b ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71512919 ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7892d2ec ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x79a3492e ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7edcc56d ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fb8bf32 ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8b999064 ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8dc00680 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93ac983c ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x95e9c6f7 ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x97c97e4f ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x993250fd ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0192ad1b ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x02b95572 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04540428 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0bc4ceb1 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d0fb22d ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e87a5f5 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13722878 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x196c22b6 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ab83e97 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1fbf9802 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27f0175c ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x313e8baa ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x31ce48c2 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c597902 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3eedf9bb ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x466688b2 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49867338 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6049b363 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6256066d ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6a366db2 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cd8e5a0 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6deedadb ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x77ce6b0d ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x782d9bfc ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89d45aad ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8c2d4dad ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9036d7ac ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x91cd223d ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x93fcf823 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x988ed10d ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa05ca196 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0f59cce ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa20eb9fc ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac54b769 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3706ade ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb87b9d6c ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba52a857 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc6a7309 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc77dddb ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc68965d7 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb86b147 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc20d178 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc2e25af ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd45ee4a5 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5766a64 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd58017d3 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd83ab5db ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb8f303e ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc550147 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe43df26d ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe57cd15f __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5d9735e ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee6ad876 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf26497eb ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf33d8337 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf95f734b ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf9a1c143 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x050c2454 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0589fe22 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0dae0eb8 __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0e2b18a3 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x141cdc1a ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x189580fc ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x22243be5 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x271419f7 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x284376cc ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2d01ab56 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2f37ccf4 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x310c3724 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3d4fc19e ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3e1ff861 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4354b2b5 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x45f24aa7 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4c482718 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x75f9edcd ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7edd2bba ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x81f661f7 ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8fbe0c5d ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x912c6572 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9606df6f ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x988ba54b ath11k_pcic_init_msi_config EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xae4bd1e2 ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xba6f56c9 ath11k_ce_cleanup_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbe666200 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbe802e64 ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbf83e462 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbfbacea3 ath11k_pcic_ext_irq_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc96b9c4 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4053e56 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd79a168d ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdd1fc4a2 ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xde7b1726 ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xea56003a ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf00e9780 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa3f39480 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xad9372cb ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xae7e3e12 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb0aa4618 ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb3cba71d ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbbaf9aa3 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbf78ab25 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc0d20370 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc8d6a0c7 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc95ccedb ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc9d7dd9d ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd010b3bd ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd1b4b974 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdcfc7d2c ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe047bf5a ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe1d32a6b ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xec217299 ath11k_hal_srng_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfea1acd9 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf85b4752 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0d6f979c ath6kl_core_tx_complete EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27e733d4 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x196ca092 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33141b4d ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x37a83864 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80220730 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8401a9e4 ath6kl_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x842c2c3a ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x88284bfd ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x62ca0e02 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x668fd459 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x75e294bb 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 0x93be21b2 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa03de439 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb6847ec7 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x95d0fbb8 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb3bad0d8 ath6kl_hif_intr_bh_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd3a286ca ath6kl_cfg80211_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfec9eb58 ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x01712166 ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0220512a ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13b133af ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x243b8519 ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d20adc4 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3241e556 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x34a0a75f ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d88347c ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44157aaf ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x56428468 ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d8ee2fc ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x78228bcd ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e14cf89 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a2a2019 ath9k_cmn_debug_modal_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6da7aaa ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc1a5dc41 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcffb9fb2 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd378a40e ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdb089f45 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdcfab301 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b0ed14e ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0d213918 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12e3cbde ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x171d6088 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a0aa030 ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1bc8dbc5 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f4e7b32 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x28aeceb1 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3072ad56 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x47d92f72 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x556cd645 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x85c3ed8b ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ba98b5e ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8e4e0a10 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa6c7bdae ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb3b5c25b ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbc3ab693 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5c9a742 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 0xd7fbbba7 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe64325c7 ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeb06386a ath9k_cmn_reload_chainmask -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf254b62f ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4c65911 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7a8f36f ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x010de78d ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03a875dd ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0919ae54 ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09a14e8b ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c08ea78 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0da235ab ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e694979 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd4ed21a4 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb516cce ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xec8dd414 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xed2f4a26 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf5d3f52b ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xffdc9507 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0232c8f5 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x030e5942 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06254075 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c858a61 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e1b4c93 ath9k_hw_disable EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x112a0193 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1189cd92 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17c4cd86 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18f96980 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x193e94a0 ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d1db248 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1deba4c9 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21972acb ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x284cfa1b ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a1effd3 ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2af36452 ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bbc63e5 ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3059a344 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3410e770 ath9k_hw_ani_monitor -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37a1783f ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37f42133 ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bce93f5 ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d37e8b0 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e3eaf9f ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ebe7758 ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f70259e ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40c3e123 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40facddb ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x488ab3de ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ed94aa0 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eefc609 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f053f92 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x512f3d3e ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5319f197 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57b90496 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e62a71c ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61734953 ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64e252f4 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x658f3023 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f5e0e93 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71925e06 ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7533e716 ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x800847eb ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81d8c2c3 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83cbb557 ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x842d87b8 ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8563c040 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x864e0002 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86acbae4 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8745a23a ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89cdea41 ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c467160 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c6ac35c ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dd7133c ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e6e63b3 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x908e407d ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91e9f7d2 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93cf3a35 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x940ac35b ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94f37b8f ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96af734c ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9af05202 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa32ba6c3 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3fd2657 ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4158e82 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa555c48f ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa809793b ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8e0be72 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa98fedcf ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac1201eb ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf49b4df ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb21cc109 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb23e09b1 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb39cd6d7 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7f3ca89 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9e9a026 ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba2639eb ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbab4b4a4 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbad1142d ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb3ecf83 ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcbc0fe3 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc66047a0 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1a88008 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1af328c ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd204eb1c ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4fca577 ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5a2c5f4 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd931d0fa ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9ea416a ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcde1290 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf44cff2 ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf7613d4 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe034c87e ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe530eb95 ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe88b1509 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe994f961 ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9f4cd37 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec58fab6 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeef92c0c ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2a0b432 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2ca4810 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3256eba ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6d683bb ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfec5c2a5 ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfec7b826 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x26589454 init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x813fba23 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x96ce86cb atmel_open -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0b4ab058 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x115cd740 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12e5d56b ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19c00f15 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a4df2b9 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ab19281 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b61c0b1 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bf8f550 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x231b8a1d ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23decda4 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x249bd7bf ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25d396ed ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x291cf2b7 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b3e4fcf ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d6b515f ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2da38a72 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e039fe0 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30f267cc ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x350d875e ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36a894f7 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bb3567b ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d0d91e1 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e5b4e7a ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42d98a4a ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b9e2e59 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bdca9cf ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4be09d8e ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ea17edc ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50bfca16 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5341213c ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x553397a8 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55ab7c20 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x572b897b ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59dce32b ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ddf4ca8 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e8d2e77 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f88f029 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6081e1ff ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x617bbb3c ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x668bde5c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a3b40b2 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7048fdcc ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70ddce46 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x724435c2 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x730aca6b ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75e2a888 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e137d4f ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7eb8eb61 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x814112aa ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x832409e8 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84151242 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84169b47 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x885f65c5 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a399d99 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8aa3459d ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ac90e30 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c047a5b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x900e0233 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93449fed ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9633eb3e ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96a79d3f ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x989d36b5 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a2a8f7d ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d6fc46d ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dc3f720 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa05733b5 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa460c69a ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4db513d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6a9c85a ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa87a1ed5 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8a08546 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabb1d8fb ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac5ff8a2 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb07ff3e5 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4676ef3 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6e7ebd6 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7c63a83 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbae0a5c9 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc2d8224 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe126f1e ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf32fb6b ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc110c1b5 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc96b3401 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbba3e8a ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcbf3b729 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc976d99 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccaa1c10 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce23e219 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1bb3e35 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4cbb3f5 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbd6c396 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe09e3baf ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2008aa9 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe20f0170 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8516180 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe938351e ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef65f31d ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf75a3464 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8476f62 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb7c74f9 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd26f098 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfec8ce11 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffc1013d ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x99483eab init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd45947f3 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xdef49049 stop_atmel_card EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x22478628 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2ff7f287 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3d899ea7 brcmu_pktq_mlen -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x46f206e9 brcmu_pktq_mdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5361c6f7 brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x565686f8 brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x61ddb757 brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x848ad0ce brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x305016a8 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x52bd2def brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x770d9a49 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7bb13ea2 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x800ae3bc brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x84848aff brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x914a7acb brcmu_pktq_pdeq_match EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa51f7eb8 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbfe16f41 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcf8337ea brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xacfb377c brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc596d1a0 brcmu_pktq_pdeq_tail EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd639c683 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x063f29c6 libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0bf02f42 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x15babac0 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1eed159c libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2c840738 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2fdfb6e7 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x41035be5 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x48b1afd4 libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4c20fb2e libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x50144c29 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x506ff2c3 libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x57436119 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x78c1e2cb libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a3f5d7f libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9fd8b08f libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xab594590 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc233d66c libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc4051dc3 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdcec7863 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec4db681 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x026e6e31 il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02d8c268 il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x049ad92a il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06342da6 il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x07f4bb73 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f9ba3a6 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x113da67b il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18733926 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1883e04d il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a0ba34f il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1aa3b596 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1dc05702 il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x22d127c7 il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27e7914b il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a28d1fc il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6999d10 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd98a204b brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe6b0379c brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfeaff73a brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x0fa4964d stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x38605c05 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xa0ed02e4 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0171401b libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0d8a173c libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1cdbfdd5 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x21242ff0 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x38fda269 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x449fe432 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x54afd519 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x62fa954b libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6f18adb8 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x702238db libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x777a33dc libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaba7f340 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb20684bf libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc0eae3b6 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc619f453 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc97fac16 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcab19af5 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd0e08e46 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd38057f9 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf198dcc2 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04f94711 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ac46127 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d10e05b il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d932ef4 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fad88db il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x141403f9 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14ae3d79 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b3cd1e2 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f7e91c3 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x207c44a2 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23c467cb il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25571aea il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2781308c il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28d81430 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b8fa303 il_mac_bss_info_changed EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ccbe693 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f805174 il_tx_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3065fe04 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30a18709 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x365fb129 il_init_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38383691 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39292ce0 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b779d03 il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cc93a05 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x40a7031c il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32a3210b il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32c3d099 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33ae7506 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x388d10de il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x390f8152 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f302740 il_setup_watchdog EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43532548 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46a45fc2 il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47434b1d il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47c3b9df il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x495395c9 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4cc18545 il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50f72873 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5387e909 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ce9d45e il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5debaf7d il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x639b6568 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x649bae90 il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64dbf832 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65c8fadf il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69a5e815 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69e6c1a7 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ad93e77 il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b819e7a il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d1d628f il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dc3be6c il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6eb73589 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x796a6161 il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c347a9e il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d761b0b il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x810a254c il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83469d4f il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83ace824 il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87728cc4 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87fede36 il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88b90d39 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x896b63c3 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a0ab843 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ab02873 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8af3f647 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b7d748d il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x909c80da il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x966f0a5e il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x974e6fda il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x996c0f88 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c2dfb18 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x417dab7a il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42165769 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42220561 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42d2fe72 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45247010 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x465203ba il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d0878c9 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4d6ce55c il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5149a31e il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x522c70e1 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5327a01f il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x552bd096 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56b76ec3 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x585c9fc2 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58740e4d il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58f6d633 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59794614 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5bf47c73 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cf545e8 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60a46689 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62b72493 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62c83aa0 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x668920f6 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68bdda68 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c8b7b62 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d4b6317 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x740ece8d il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77ec9881 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x78bc4030 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79a0c361 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82fd45ac il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x843ff787 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85227999 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8acb9d21 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8edf93f1 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x90441d06 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91091351 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9257745d il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93fe29cf il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97e71c43 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a585da7 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b5743e0 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b92ea20 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c2f1407 il_send_cmd_pdu EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f967375 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa33bbbee il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa73006e2 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8408505 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9ebf15a il_clear_ucode_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa9b3b14 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae0b1355 il_get_free_ucode_key_idx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae627a41 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae80cdc4 il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb198981c il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2b8f1ea il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3c64bf6 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2dcabfa il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa36570d8 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4e86310 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa6b05c0f il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa75b787e il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7b56e32 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa97aa4cb il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacef8205 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb655090c il_dbgfs_unregister EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7ac5f71 il_eeprom_init EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb91b3cbe il_hdl_spectrum_measurement -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbf61d90 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfb4777a il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1336773 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc873c9f0 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xccba343e il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd990957 il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1389e16 il_mac_change_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda62387d il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddaa0e4c il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde4cbddd il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdeea4e28 il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf599320 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe4cca0b6 il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8910c4c il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xefaf331d il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0fdfc3b il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf535fda8 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8c9bb8e il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdeab3d8 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbedf6c07 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1ab047e il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2147edb il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc22a290b il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4eb556a il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc55b1b6b il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca8b6d91 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc2bd05b il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc5201b6 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9440f2f il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1cc5135 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2b688ee il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8e3f70e il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb1b157a il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeb23bf1b il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeece8fdd il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef7a18bd _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf646ad71 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf66b3663 il_get_single_channel_number EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf78ad835 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb80314b il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfd3ea65f il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x03c94965 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1353884c __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x24458ec7 iwl_trans_pcie_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf86ac56c il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb7f40f6 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0fa4d950 __tracepoint_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5306a401 __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xca321240 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9828a56a __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb396913a __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb944f757 iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc6af5a5a __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x01cf238e hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x08741ff8 hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x094d7abe hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x173f6675 hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1af144bf hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1fd8f9f3 hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x398e516a hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4a12b38e hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x50a537a7 hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x50d401bf hostap_add_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5c53391c hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x70fbf81b hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf88157bc __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c36359d hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x113ada95 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x13979ee3 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2d137cf1 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x30bd3b63 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x31428822 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4b6dc372 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4bf9eb23 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4c12f826 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5881f813 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67c8206a hostap_master_start_xmit EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7bf7c9c7 hostap_info_process -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7c061735 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7eab9def hostap_set_encryption EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9ee74514 hostap_set_hostapd -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa2102514 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa3d18036 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa62a5be2 hostap_80211_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa8b1f3b9 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ee5b34e hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90699a7a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x93c6a85b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x93f9c9b1 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9b33ee81 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa0e48efe hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xae22bd6b hostap_80211_ops EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xba26b4a2 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3716201 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xce231fae hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd802211f hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdae16b28 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf62fa338 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb8304f8b hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc71e12f5 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe02039e4 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe3606ae6 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xedad9f3d hostap_set_roaming EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x462d9ba2 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x552bee29 orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6ec23715 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x74d67637 orinoco_down -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x84c951ec alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x92828dbe __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x99319e5f orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x99b0846f orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfdb0a92e prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x06cd3dd9 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x16144462 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2ea766b5 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2f4279d4 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x36bdfcbf free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x40f2b55b __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x48192683 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f2bef95 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x828f5c8d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa284f9b6 orinoco_process_xmit_skb EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcf733ee1 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcfab4bed orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd26e8210 orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf5af92f2 orinoco_set_multicast_list -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf8eb3036 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfc2021de free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xfda71376 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xaba306c4 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb7654373 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xce3761d2 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf85cb7a2 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf99b9f1e orinoco_open EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x06dcfa79 mt76_wcid_key_setup EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xf779aa14 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00f13678 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0660c2e8 rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ba9408e rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18206b67 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x4c596c03 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xcbfad632 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x093949db rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21ac243e _rtl92c_phy_init_bb_rf_register_definition EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ab61c3f rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4548c6d5 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47351f7c _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e1b228b _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x519f50d2 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55788bdb rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x564b736e rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6082f55b _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61b3330d rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62cb41b2 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x66edfdde rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69a1817a rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a9c726c rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fa23f1e rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fed433e rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f4e93c9 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90607891 rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x943fd41d _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x974cce12 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97b39f5f rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9fa09c56 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa08157c rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaba3726b rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb38cdcbe rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4a84ab5 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb59fef2 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc9c3910 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2eda555 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdbd4df5f rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4b497e4 rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5b92032 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf14bef9a _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1bc1c74 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf52486ca _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf751e1e0 rtl92c_set_fw_rsvdpagepkt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf76a68cf rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe2ce5fb rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1dc12bfa rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7d06a3eb rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8ec6dda0 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa02721cf rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5141a178 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x59ce53e9 rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6dec8b63 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8cea7192 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29cdc8fd rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x375f3729 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3bf9e6a8 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e1893c2 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f83b935 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42dfb5a7 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x450a35b0 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x582679a1 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d8464d4 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6099a391 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6a141099 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e0a9eef _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ee19d4e rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x728279db rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x792441f0 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ac770d4 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7ade2006 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7dbb4fd5 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fd91c0c rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80942759 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d6ca8a9 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa135d971 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa27f47aa _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa35c44cb rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa78f326 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad125307 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad2b366d rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2c83385 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3e6ca40 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc706182 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbfede601 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc02e4fc5 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc0538fdb rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2956c8e _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe719f391 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf2a2b175 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4cc53a2 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf57facfb rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff04782b rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x36119df2 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7994a9bc rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9abc39b3 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcc35d933 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2310ed7b rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5d674479 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa772dc6e rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd9c3df1a rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05568bf5 rtl_cam_reset_all_entry EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10f698b4 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10f7ade9 rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x197ab5dc rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f859cb1 rtl_hal_pwrseqcmdparsing EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2246a726 rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2317197a rtl_c2hcmd_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28a9ce25 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28aebbdb rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20b5e6aa rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24a517a5 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ef5f186 rtl_dm_diginit EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x341b0abe rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x391a8b68 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x32913b5a rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x339a2b02 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x427a7afc rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49f714fe rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d2dcb4d rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5998a7af rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5faf9fc2 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6503e384 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71be646c rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d3e8938 efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8219e006 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59c48cd5 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ce22ad3 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5cee4d47 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6646bb64 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7500472d rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80715fb1 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8134ffe2 rtl_get_tcb_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x909be15c efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2384323 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3014f3f rtl_cam_add_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba6df9a2 rtl_cam_delete_one_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2aafd75 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc92835bc rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcba49f15 rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfb7dd0c efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd9b9e51c rtl_cam_get_free_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda1d002b rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe254c01c rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe30be33a rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8c4a026 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe923482a rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x934c40d9 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94eb6ad5 rtl_init_sw_leds +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ff85a26 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9f3f70a rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaeb0ac81 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb34456ab rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6dec82c rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba8e1f4f rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd0b50ac rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbfe8f76d rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3e645a1 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeafd47a1 rtl_ps_enable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc7c9a02 rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x57739b00 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xcab3ec8d rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xbc93e1b2 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x53518a8c rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00c6b2c5 rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0134a85d rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01cf5523 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01d4b368 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0596de1f rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x076aec38 rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0927e9d9 rtw_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0a722712 rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f570440 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x141a0f89 rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x20c12a77 check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x258c5a6b rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b05a4a7 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1b5bb96 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd1c5510 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x09db3c4e rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x941b4bc3 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xe23b46fc rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x0df92dc2 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0337f0cd rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x19dacdeb rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1ac289b9 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1d2ad3de rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc2d072 rtw_tx_ac_to_hwq +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x217e85ce rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22e8293e rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x280733b7 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ae3a09c rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2bd5ab2b rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x336bb77e rtw_bf_set_gid_table EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38d6118a rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3dbee927 rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4375fc3b rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37c7c5de rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3940428f rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x39ac7389 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3efab3c2 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f099a70 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4275e987 rtw_set_channel_mac EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45094010 rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45aedff7 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x495bd9d1 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x498735b5 rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b21ad2c rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b99cad5 rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50171fbb rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x45696591 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x458aaaac rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4b6ebe8a rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4e8d2ff8 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4fff82ed rtw_tx_write_data_h2c_get EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x52d46ab0 rtw_phy_cfg_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5bc38299 rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5d7ee7c0 rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e5b8d1f rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x62532359 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64a2704f rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x678c8b0f rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e70cc18 rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x738396e6 rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76f03ebd rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8801e72c rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x930ff301 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97e511f2 rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x980f31be rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9915e472 rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b05f207 rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b2bbd9f rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0e8f811 rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0e90e5e rtw_restore_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa226f7fe rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa40d72eb rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa432fde0 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4541192 rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb55f02fe rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb57aed66 rtw_coex_write_scbd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7af6b51 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbbaf42ae rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf121d31 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcabcf022 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xccfbd6e0 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1095e61 rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9a6b21b rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdcc56c8f rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde9761a4 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe46da0a6 rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf3c8e959 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf8a71c72 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x72b008b5 rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xdfc677fb rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xedd67675 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf286341f rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x2d70e9f1 rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x6ebf9b8a rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x79329a68 rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x0eac4898 rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x950904f7 rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x003ebdf2 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x060a8cc9 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b2a5c56 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e59eb99 __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x160b7157 rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x228eed5c rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x264db878 rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x286f95ff rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x305f71b0 rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x33ac2225 rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34b802cf rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x386b8166 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ae3f548 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3c092840 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x403c9d84 rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x406a10d7 rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x42639070 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4688d898 rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a75afb4 rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x50908faf rtw89_mac_stop_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5aef0486 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5f112224 rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61a2ea03 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64cc227d rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x64f2c0f1 rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6bcccbbb rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e780d5b rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x742f0891 rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x747b0094 rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75a1744d rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x782ccfce rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7b6bbece rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7d7ee0d5 rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x87befc6a rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8819516f rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8f6bfb97 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x99c537fd rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b3c1a2e rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9b9d0724 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c9da515 rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa5d4fb38 rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa91de1c3 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb76f8e9f rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb9c74e3 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbc28de80 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc616a84a rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc8689363 rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xceff251b rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd222eae8 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd356d2b4 rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd424bced rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd6138aee rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd8781989 rtw89_core_fill_txdesc_fwcmd_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdb511351 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xde4c1955 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f89b240 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fefa497 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ff40a3c rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82071a42 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x885679fe rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8fa4149d rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x92b3147b rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x96d9e777 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9daf698c rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f210149 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa145b6a4 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1b23442 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3191503 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa71fe67a rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa865e94c rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa9f507e4 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac2cd91b rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaec95c85 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf7131a8 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb33f8109 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb551c99a rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbaff7e5f rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc93f8fb rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbfd96212 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc506f557 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc560443e rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5955b62 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc66e5be6 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xccbec12c rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd08b66b9 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd856dff9 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7c3d00e rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf02c57d2 rtw_tx_queue_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf390dfab rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf441f1f5 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf693828b rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf879dbe1 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf995bb5a rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb3d07c6 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xff399b77 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x08d5bd46 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5639d00b rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x608e212e rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xbd4e67cb rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x016d4362 rtw_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xaa3ba392 rtw_sdio_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xd1623249 rtw_sdio_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xe1294b27 rtw_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x003e7119 rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xcd6af934 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0xdeb03986 rtw8851b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x14e487b8 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x637a5548 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xf8df1927 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0117a0a8 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x05d6da36 rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x095de19f rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c50d020 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x129a2cab rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x18a947a5 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1afc1ad0 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1bd69fc7 rtw89_btc_set_policy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x22d7bf1a rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2463ff39 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x287688b0 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x30695a17 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34663371 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3496ea09 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x36726770 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x397c36c2 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a2413e8 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3baab491 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4365eed2 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a094622 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x50a049e3 rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x587765f0 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5a9b0d71 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5d21895a rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x604dcbe0 rtw89_decode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x63e8f2bd rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66c6b94d rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b0da551 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f4640ad rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f4a952d rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x78d496d5 rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7be6bbfd rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7d1d54be rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x85782bf4 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8d2d1754 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91744999 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x92e51f63 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac85705 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa2218c44 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa58ce1db rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaf10eabd rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb0303a5b rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb22d4dbd rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb350677c rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbed56d1e rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbfbb0208 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc575cd1c rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcaffc6fe rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd08d1c67 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd17d8505 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd346569c rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd8a6ca92 rtw89_encode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd8f09aa1 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdc90392a rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe1a52de9 rtw89_chip_info_setup EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe567023c rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef533884 rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf926bd27 rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfe3cf0aa rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xff9edec8 rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x09e9404a rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0ccd2fc4 rtw89_pci_recognize_intrs -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x545b5179 rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x557678c6 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeb301f4a rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeedfed35 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xefbe761f rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xefddd702 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeff0da3c rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf6869246 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf6df4a5b rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf8789203 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x18369e57 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x28a2a98b rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x28cae5d7 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x39d67b47 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x602ac6bd rtw89_pci_disable_intr EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7cd8838d rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8b2aa24b rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8ff43c63 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x78eee77f rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8c26260e rtw89_pci_recognize_intrs EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa971ef62 rtw89_pci_ltr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc8954df7 rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcc521916 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcda7d69b rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdbbece60 rtw89_pci_fill_txaddr_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdd33f2e3 rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xded9887d rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe817fdf8 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbd1166ed rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc2a96b20 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd4b7c82f rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdcbf2d4d rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xde594056 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe2197a2e rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xec9f13bf rtw89_pci_recognize_intrs_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x7a9617c3 rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdbae27c2 wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdbe1dfe7 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe8235773 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xed9446eb wl1271_free_tx_id -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc025eb53 fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc1555c4d fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x17548242 microread_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x8f439518 microread_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x12bcc5af nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2bde8bed nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x59738e6d nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x152c87d6 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x213391aa pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x944bbab9 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1fba3fa5 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfc611d87 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x1315484f rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6086a7a8 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xaa0f3035 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb55e94ef wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe5d4f6b6 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x36bb124a fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4a7d3c7e fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x60880f12 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xc9a9a77a microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x532d412e nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa25fc14d nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xab977aee nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xdbcb5510 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x6a7870b7 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf1a50b8e pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x12a9369d s3fwrn5_probe EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc9b1ba9a s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xd0c000e4 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe9a4b09b s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x80da814f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdb65fee9 s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0a9872fe ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x120ad9bf ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x54d1f837 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x57269b50 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5c0b9595 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6695197c st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x71c4aeb1 ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6b4573b ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcabbb975 st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe372009d st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x01c330ab st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x094db498 st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0abb958f st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1c217147 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3cb04064 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x59754bbe st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x624f3725 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x625f3d74 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7cbb2f49 st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x841efc15 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa18db29c st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb2485c53 st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd03d43fb st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe1d9c580 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe331b2c4 st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf1fed553 st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf2eb3a04 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfa4f78de st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/ntb/ntb 0x08a887c7 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x0cb07af9 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x199cfd7b ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0x1bb31746 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0x1e30bb69 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x24370ba1 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x2f417a50 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0x575d7ba0 ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0x5afe8b5f ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0x60302312 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0x695f88d1 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x72c54edd ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0x7ba41565 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x7bbfbf1e ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x83af3376 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x8782ff35 __ntb_register_client -EXPORT_SYMBOL drivers/ntb/ntb 0x9306297d ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0xa371179c ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xdee476b0 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xffa33472 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x6fe6d918 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe46601b4 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/parport/parport 0x06311435 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x1cf8fb86 parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0x286f4595 parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x37b03818 parport_unregister_driver -EXPORT_SYMBOL drivers/parport/parport 0x3cb34ec0 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x470bd472 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xfb2c38ec s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3894e8a9 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6c2d1971 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7b03d6f1 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87a73066 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9530f3ce ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9541fb2a ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa7291a1a ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb74b0510 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb9d5c808 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbdf7610a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09b7139a st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x10a9dcf2 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x280f0fa1 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x34208b88 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x44d78be9 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e1d8409 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4e5407dd st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x583fe75a st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x60174fbe st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7161c09b st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x86800323 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8fde6343 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9e97fd73 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbf4e997e st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd93b941f st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7098730 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe729195a st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf16cb2d5 st21nfca_se_init +EXPORT_SYMBOL drivers/ntb/ntb 0x00a1888e ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x211296e7 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x34a66f9f ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x39a1acc4 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5378bdea ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x554cee6b ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x75f1f48f ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x76ba200d ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7c9ce7e7 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x7e4f1368 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7f54d631 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x8b846e57 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x8cc11017 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x96730c1c ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb0781287 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc2712583 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xc2aa6f13 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xcd510c1c ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xceeb7ffb ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xe0628907 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x2eddfd24 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x56c436ee nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x014253d1 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x08914eb5 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x17686d80 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x1a26857a parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x1bd5fe1d parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x1dd2fe73 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x22045ccd parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x25da05cc parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x289140a2 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x365bc46a parport_read +EXPORT_SYMBOL drivers/parport/parport 0x380aca37 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x41fbc811 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x48ffad91 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x4ccdc9ae parport_ieee1284_epp_read_addr EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x520e5c96 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x531a6b65 parport_register_port -EXPORT_SYMBOL drivers/parport/parport 0x5cc584a2 parport_ieee1284_ecp_read_data EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x61077eac parport_release -EXPORT_SYMBOL drivers/parport/parport 0x8269a1d9 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0x82dcf65f parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0x9117b3e1 __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x99b0517f parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x9a2f58da parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0xa0bd35e7 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xaa971a93 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0xaeec29a4 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0xb41100f8 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xb7941358 parport_write -EXPORT_SYMBOL drivers/parport/parport 0xbbbfd81c parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0xbc7451e7 parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xc06838ed parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xc1085280 parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xc73b2af9 parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xc99633c0 parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xd01e44de parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xd706acc0 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0xd88a9138 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0xdf729e3b parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0xf8ef17e2 parport_find_number -EXPORT_SYMBOL drivers/parport/parport_pc 0x53a9ffd1 parport_pc_unregister_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xfaf372a1 parport_pc_probe_port -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x94435123 iproc_pcie_remove -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x9e4bef37 iproc_pcie_setup -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0fdb69aa pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x15e8d09e pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1950076f pcmcia_reset_card +EXPORT_SYMBOL drivers/parport/parport 0x5e71f34b parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x629eb88d parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x63d00bcd parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x71f5a37e parport_release +EXPORT_SYMBOL drivers/parport/parport 0x7b3d0139 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xac188d82 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xaea04736 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xb0b1ceaf parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb5800fd1 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xbbe4bfa0 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xc78d346e parport_write +EXPORT_SYMBOL drivers/parport/parport 0xca7d7a1a parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xccdd175b parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xef49b4e5 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xf1d42f93 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xfb1c9111 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xfe2d506f parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x5cf24a7a parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x99c30f91 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x90338205 iproc_pcie_remove +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xd049a285 iproc_pcie_setup +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1654ae2c pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x19591f2a pcmcia_get_socket_by_nr EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3bb387bb pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x40b94b65 pcmcia_parse_events -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x67765437 pccard_register_pcmcia -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x708cde53 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x813aa04f pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf2da44e pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x859fcfcb pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9cf64674 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa2e043d1 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb534c340 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbe9ea5c8 pcmcia_reset_card EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd28dbdb3 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe0415a78 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xea66e39b pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xef8aed40 pcmcia_put_socket EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x66c6ed9b pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x44c1f956 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x66335e7c cros_ec_unregister -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xcc4ea772 cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xea1d8fe0 cros_ec_resume +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x64888a8b pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x6ed09e56 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x803c6d0a cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x93892c89 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xded3980d cros_ec_suspend EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xced6640d rohm_regulator_set_dvs_levels -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xa8d1b629 qcom_smd_register_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x0b45b836 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x41715ed6 rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x036eacc7 rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x11e92797 rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1c798390 rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x25d72996 rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x51b4f764 rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5385278e rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5463ac1d unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x556fa9ac rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5a714215 rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5d92e43b rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x76d84d7c rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x95cf4f88 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbca5eefb rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdfb19f45 rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe75a0ff9 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xed5a8636 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf0c6b3d4 rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf79f3cb8 rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfb460533 __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x92c76132 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x2818cf5e ds1685_rtc_poweroff -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x415441fc scsi_esp_template +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xd0ba95bd rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_glink 0xd7119b40 qcom_glink_native_rx +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xadc8e61f qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xd754e1cb qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x731e91c2 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xd74780e9 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x034beed0 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0588b293 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1dd3d947 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2f840f67 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x32e9bfaf rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3341e0b2 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37f5df28 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4ccf3ff6 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x62fca5b2 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b635c5f rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x735a3c3a rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8398c1fc rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9201bc3a rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaa2ae5d5 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb99e3310 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc0415370 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdead0916 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfa6ccf85 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfd2452f1 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x758f0b11 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x027647ee scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3c2bc2c8 scsi_esp_unregister EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a362c5f scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x97d89017 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xda985946 scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x06752f8e fcoe_ctlr_init -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x21d2047e fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x449c0e77 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4bc3c00c fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x572a9da7 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a3b8ebe fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a5250c5 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x80027354 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd5f925c3 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe35e711f fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf566a537 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00606930 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x016cb1db fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01fe54c3 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ae8ec2c fc_queuecommand -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b9e4a73 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12abb7d1 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12bf4126 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1defb8e0 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e009163 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9024f4c9 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa0df4155 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f2f1bb5 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x23625bc7 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x25a1ed94 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x34ccf7c9 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a33782d fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7bb7dc2f fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7cc0d7c1 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8810b4f8 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8ee1311d fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x90fde7a9 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xff2cf3a1 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0072234d fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00943a79 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cc88144 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f9a2f15 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x135a51e6 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1880d98b fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x198aaff9 fc_lport_iterate EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2597a872 fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a30d441 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c599d39 fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3150ea03 fc_lport_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b688e36 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ca7c9db fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fafb8a5 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40433f4c fc_disc_config -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a3a3ea6 fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x569dd730 fc_frame_alloc_fill -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58eb3313 fc_get_host_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a8cc8aa fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66062c12 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dbb6a84 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e31fea1 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76d57ed8 fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x772a3410 fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7858b0e3 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c198d2b fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ee350a7 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x256b0b6b fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26d23d42 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b0f21c8 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cb8ae74 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43e84dfd fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x477959b8 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c4e2525 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fd74d1e fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fe94064 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54bbffaf fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5721db1d fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x599a5067 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f6d72ec fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63f87f97 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68542e81 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c639e3c fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e0cce2e fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e393064 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e829faa fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x725fa7f3 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74104e34 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75aeac03 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77a58c22 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77b93533 fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fcf7da0 fc_fill_reply_hdr EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b8e1934 fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b0ce134 fc_eh_abort -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b328760 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c88ac43 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bf0b9f2 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93261a71 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x933196c6 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98ea7bec fc_vport_id_lookup EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d940fb0 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e29564d fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b7ac88 fc_rport_recv_req EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa40133bd fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4583814 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa695321a fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2469f5f fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa402e4cf fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad4302bc fc_rport_login EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb63aab14 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9ab3023 fc_lport_bsg_request -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb23abc9 fc_eh_device_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbbfa9564 fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbe360e9a fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc031aba5 fc_slave_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc078c09f fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc15a6794 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccf1bb7f fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3cd82c3 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd776e3ca fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde48d91c fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb68c1121 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb85e3bb3 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb904843e fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbaa5f6fd fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc13b1f6 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1c00b97 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc532e663 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5d3c86f fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc95c64e1 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb34db88 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcfb3644f fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe470329c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5c9e2e0 _fc_frame_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe870b1d4 fc_exch_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe88016e8 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb1aea5c fc_rport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebae667f _fc_frame_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed5a1907 fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8a1285d fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf05a90ec fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf121d277 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf34611f9 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5c48847 fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd663c5b fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe6f0ebf fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1a84e54b sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1e999490 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdf278a4 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1680c88d sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3fde6db6 sas_prep_resume_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x75bd5c68 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd7539aef sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x778d1a8d mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9dfa0b5b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xad3a4d62 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x3f25350a mraid_mm_register_adp EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x025ca9ee qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0a0e20eb qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x35dd5cbc qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3bc266df qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x60a85505 qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78fb0151 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8c01a885 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d599803 qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa20889a4 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbf29532a qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd16e507f qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe81c902b qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/raid_class 0x0e42942e raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x554ce43d raid_class_attach -EXPORT_SYMBOL drivers/scsi/raid_class 0xdb5a3f75 raid_component_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1acc1f46 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1af24fa5 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1b82f665 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1d12f555 fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x20a8c8ef fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x04331cf0 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x068350a7 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x24d1a2f1 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x42b6de7f qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x87420eb0 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9bda34a6 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9da9fa3d qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa718459d qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaf20ab24 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd3151ddc qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xda1e8fb2 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfd5d1496 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/raid_class 0x397b9388 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xc87299a5 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1e3acacf fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1edf4834 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x24afb0b2 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x24e30f70 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3168e553 fc_vport_create EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f103238 fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x40dd602d fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x431f7875 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x55484382 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6a08a3c7 fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6d0de3ea fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7c6d7698 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a48ba9a fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa19bcd54 fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa3a1afe fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbcb015e fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd7964da7 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a18554b scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f30987e sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x111f537f scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x117dba88 sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b208c9c sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d6950dc sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36716173 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36a14b54 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a6c5293 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5303d5c6 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x539b53b9 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60e8fe67 sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x614a6abe sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ac07e15 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d923205 sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6df444c0 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x70cd3e49 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x763f6029 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ea3b2e4 sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81029f2b sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c2ef957 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9bb66f69 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3fc3621 sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7262c0d sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8d371dd sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd137880 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2dbedc7 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9c349f6 sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa16a612 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4438052c fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5191d066 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x68f8bfc3 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6e1a1f89 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x760b33dc fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7effa1df fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa8c6f2bc fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd933e3e scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc50e31b2 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc96321d9 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcee918ef fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe22608e7 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0050eb8f sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x078a2fc2 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x145e1760 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x23eecbfc sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2478aab1 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2bfda79d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f2be032 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3cb03d5e sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x40a9b67a scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66dcbe04 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6a66727b sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b9d8c33 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73f11513 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x794aa184 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85f23e69 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8924345c scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9360522e sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7ebb5b4 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2258be0 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb39efec9 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb264bc7 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc47de7d7 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc88f1bd3 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5582d21 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd71ef460 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe3e118cc sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe740dc70 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf34830fd sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfe47e24c scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x27494df3 spi_display_xfer_agreement EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x48c1674f spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6286b13e spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x77a35b96 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x801f9df0 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe8b3430b spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3eaab1ab srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x38e6dd1e spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x495da766 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xac4ffba1 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd9a0fabb spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x17e9cff7 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2b1f2234 srp_timed_out EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x47a31c2c srp_rport_get -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc169289c srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd3227dde srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf5c72832 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x66f5523d srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7951fbf3 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf194cc72 srp_reconnect_rport EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x21e76a68 dpaa2_io_get_adaptive_coalescing EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2bc276ca dpaa2_io_update_net_dim @@ -4504,629 +4478,621 @@ EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x07564e82 cmdq_pkt_assign EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x081d1a1a cmdq_pkt_write_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f3ed632 cmdq_pkt_jump -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x2e1830d2 cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f6fab3f cmdq_pkt_write_s_mask_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3fc19424 cmdq_pkt_write EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x45dae4fc cmdq_pkt_poll -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x556fb253 cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x52c9f18d cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x578699c0 cmdq_pkt_finalize EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x58cdc788 cmdq_pkt_poll_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5a123a5e cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bfd584c cmdq_pkt_set_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6b715b2c cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8aa532b3 cmdq_pkt_write_s_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8ab965b5 cmdq_pkt_wfe EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9194f23f cmdq_pkt_flush_async -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa0a3f2c1 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa40c93c8 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa4560378 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd529f27b cmdq_pkt_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdf8340fe cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xedb6ec5a cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf47de8d5 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc9a7d2a4 of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xcf38e548 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x15ff51da geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1ea807f6 geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2891189c geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x467098c6 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x52217f1b geni_se_config_packing -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5dbafc77 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7db1a0fe geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x845a32f0 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x849a027c geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8f18386a geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x967aa314 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb552038c geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbf4c40b5 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc14f0861 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd176f005 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd58e2bac geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xee7b3c23 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x005bce81 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x09afec52 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x30e72048 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x328e215b geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x36ccfe30 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x485b1516 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4a73672a geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4dff9bda geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x55a14dcc geni_se_tx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x56fa59a2 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5bb05372 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5c31fcfe geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8496f725 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9d7468b2 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9fffa467 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xafb16915 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcccd6fab geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xeb25d0ff geni_se_rx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf1c992df geni_se_init EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x73c997fa qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x1c54e41b qmi_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x26d3df2d qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x27515be7 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xb0167eef qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0812793a qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0d75e8c1 qmi_handle_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x40c5fcbd qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x33b374fd qmi_send_response EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4ef1cc1d qmi_txn_wait EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x674ffe4e qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb00055cf qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcca54638 qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf1fe1ae4 qmi_add_server -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf5f2580f qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x64406083 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x80cc86c8 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x94915a4f qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc00b4060 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xdc540228 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xeb9c47ae qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfb17dc07 qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b 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 0x9979b76e qcom_smem_virt_to_phys -EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x61e9bc90 qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x04cb3468 sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0a07be1e sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x11bdd233 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0xf85b96b9 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0d4733ba sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x18c95bd4 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x18f0bd72 sdw_stream_remove_master EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2bb628ab sdw_handle_slave_status -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x371217e6 sdw_nwrite -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3837199a sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1ea40fa7 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1fa73aa0 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x23899b5b sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x271f0715 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3128cbe7 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x346ce963 sdw_nread EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e338029 sdw_write_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5279ad4b sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5cb4911e sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5b644f88 sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x63ee8d28 sdw_bus_exit_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7182efb2 sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x743cd288 sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7579c26c sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x76c55947 sdw_bus_master_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x77f9c38a sdw_stream_add_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ac59116 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8d242ea4 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x94b1b47a sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x999450bd sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x99ac564a sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c607168 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x74e625b8 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7506ec34 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8db2a74b sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c89b000 sdw_bus_master_delete EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1273f69 sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb236965d sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb83b8792 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa683cc6f sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xac4e3c41 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1f22814 sdw_compare_devid EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbe6365a3 sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc6cd8e09 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd0c20986 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2f78a8a sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcbc7928d sdw_nread_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd2f9ab48 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd374e59e sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd39181e2 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd9a517f0 sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe0e29df0 sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe7e694b9 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdc7d05db sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdcff95ee sdw_nwrite_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf2768b8e sdw_clear_slave_status EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x16fe3919 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2d39fd58 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xff95e1dd sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0de6fd51 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2cedbe15 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x30b2794d sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x30c544e5 cdns_read_ping_status EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3a351c25 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x44eba87b sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7b9a72dd sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x864f88fc sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa69fb376 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa8512688 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb4001228 cdns_reset_page_addr -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xba50eb54 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xbcff18ca sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd8039086 sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xda507c4a cdns_read_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdcc7e69a sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe0cba8c4 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe0ff6f07 sdw_cdns_pdi_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf2b3f651 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x6155a543 sdw_compute_params -EXPORT_SYMBOL drivers/ssb/ssb 0x06bbe141 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0x0df50c8b ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x0e14c222 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x2742a913 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x3a99e121 ssb_device_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x5779cc0f ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x59dc0cd4 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0x5adf8d3b ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0x626638f1 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x654bd35d ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0x72f512a7 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x73f603a1 ssb_bus_resume -EXPORT_SYMBOL drivers/ssb/ssb 0x7ba40874 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0x86ec0e8d ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x8caf6a98 ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x91dffdbc ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0xa0ef3df9 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xafd60a6e ssb_set_devtypedata +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3c7f680a sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x52b69250 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5d47e3d8 sdw_cdns_config_update_set_wait +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6ca946e8 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7be0aa0d cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x894d092e sdw_cdns_config_update +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9a79e2d3 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xac1a56fa sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xcc48da53 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd94295eb sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe6f2b516 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xee6d54c1 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xef6e87fd cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf0e083a8 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x43a5acf8 sdw_compute_slave_ports +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xc2b01ae1 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x0a69ee0b ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1ba3ef10 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x38ceb3fd ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x60414997 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6f6595d9 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x78a856c1 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x7c5af794 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7f80f0c0 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x8d70e00c ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xb637e99e ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xba8054b1 ssb_driver_unregister EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base -EXPORT_SYMBOL drivers/ssb/ssb 0xce29f9eb __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcf4a9ddc ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xda6c2fdc ssb_bus_resume EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xf24648ca ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x16fb31e0 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3041d369 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x35f4fc9b fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4122349b fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47739f54 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e18a6c5 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x52060e0a fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x589d8f5e fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x59e9660f fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b939daf fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65be76f4 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68b3e5d1 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x807f5e9d fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f3a373f fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90d20581 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa143abec fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa4467103 fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb64dec6a fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbd87fcb1 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc72aced5 fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc7fc05c9 fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd212c5fd fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda5f439e fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdaee92c0 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf61f8f4b fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x67f455af gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x8691c13f gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xb90d626c gbaudio_register_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf15ec582 adt7316_probe -EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdb52a269 ade7854_probe -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xa21da4da nvec_write_async -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xbcef1281 nvec_write_sync -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01a8a4d4 rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01f95fcc rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x033ffdbc rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0aea087c rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b854d93 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f7f59db rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10ab128c rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18a1e336 rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1904c16b rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ecf3bbf rtllib_get_beacon +EXPORT_SYMBOL drivers/ssb/ssb 0xe0a9deaf ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xe11a130c ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xe7dbf10c ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xea79c35d ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xecfb5bab ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xefff4f56 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xf74e1ddf ssb_clockspeed +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x02bfc62d fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0988c3af fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0cd83a54 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1e01c873 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x21a78063 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x40a34094 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x448da5e0 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x470e29bb fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d2512bf fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a16fab0 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65c05124 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6c9070a8 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x81413ecf fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83397954 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x862b249b fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8d033740 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x973e3cc4 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbba11d23 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc5e5bca fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca0fbed8 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf3c17dc fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe26ffa71 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf6a59512 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf762c1cc fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfbd7b05d fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x03b5c32f gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5dd4b590 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xcb0f8dce gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x8624347e adt7316_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x1cf95c4c nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x3c45bea9 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x063785ac rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1748066f rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1933790d rtllib_rx EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b72f688 rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e45ed85 rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x369d68c1 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x43bd4786 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4577301b rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4cd32c75 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d847a3a RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53c8ca95 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56c50cbb rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5b0db487 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68b81461 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cc6b2d7 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70699fda rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7312f980 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7729afe6 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7abd2a67 rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7efc5a26 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86ebe0e9 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8a65f34e rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94188358 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e102950 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0df7465 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa726362b rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xade8d0b7 rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaea429a0 rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3295b94 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb477347e rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb59ef69f rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb7752d19 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbd30e9a7 rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe7e8ad1 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2878865 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4e72762 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde153cd3 rtllib_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe64a0036 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb04889f rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7a16854 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf8970d15 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf9d66459 rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x030a5079 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a2b011b ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d4f7f45 ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1196c3f5 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2b1a4b27 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ef43c58 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x309b2a57 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x316a0b7f rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35ab4dc8 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37cdc4d0 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cae6bf6 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4296226d free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x501f0e11 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55cef531 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58b49e1d rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59f83d1e rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f066d5d rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x644c421a rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b660210 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ccf5cf5 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6df917b3 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x708d9600 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71350a86 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82f870b9 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8674f47c rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86c98b3a rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x967a9130 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0d5529d rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa36510d6 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa928f5b6 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac138b58 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1903257 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb37cd97a notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5821579 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb809073d rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8780dc4 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf1e691b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf35a017 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcccc8bd8 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6553ed0 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9ac39ca rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd2070ee HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1f8926a rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe38d75d7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe74c3360 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xed1a5cc7 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2974ba5 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf3c58783 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf62bf0fc rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf666bbc6 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0374b27c rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03fb642e ieee80211_disassociate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08f59c79 ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c808d73 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e1b3ded ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16bfdb4f ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e32908a ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e696263 ieee80211_rx EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2510621a ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2605f341 ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2706d5e1 ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36bcde99 ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4749f3e2 ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x498b6e0c ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d7e864c ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5458b1fd ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5720a48a is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x602fa144 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65c4aa0d ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2cb86777 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e23d7e9 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38d59c7b ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4594bf13 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47fb1a40 ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4aa1cc1c HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4bd503aa ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d96cb97 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x578d37cf ieee80211_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e80a18e ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60f84db2 ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61090a48 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63beabc6 ieee80211_stop_send_beacons EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6714116f ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x684212f1 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a722aa0 ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75639ab6 dot11d_reset -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76490b4d ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c7c5bd6 ieee80211_wx_set_mlme -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ce4cd2a ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7eb59de7 HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ed6f3b8 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x822c463f ieee80211_softmac_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84b408cb ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8640a3d0 ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x868da0af ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88980af3 ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x903fe253 ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa65a423a to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabfd53b4 ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb131933f dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf48feed ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfbff724 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2ca1261 ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc39e91e2 ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6a4a8b7 ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7ed6249 ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc98732dc ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd41a556c ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd460c309 ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7e86c26 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67e9b646 ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6bede9ae ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6fba2b0e ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72494d96 ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7504b165 ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76ea33fc ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f45833f ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8915a154 ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f27f7b5 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ffc77ad ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94df4674 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97a42390 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97d40bf5 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x981ab659 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98a837b0 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fe5cb43 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa06e0144 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8e5ede9 ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa58d9e8 ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xba95fc19 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc34c957f dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3660a04 ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8d3edc8 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8f47807 ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd13494b ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf572557 ieee80211_rx_mgt EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe371e1a8 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6dad5df ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6f02e62 ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe902d11e ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0426c9e ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf329fe14 ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf413930f ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8d97fa0 ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa90e990 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff72ac52 ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x2d4c8ed4 vchiq_connect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x3c67248a vchiq_use_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x438b3631 vchiq_get_peer_version -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x4b1d1e8b vchiq_queue_kernel_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x58f5a859 vchiq_bulk_receive -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x683e5f57 vchiq_shutdown -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x735d5b7c vchiq_release_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x750a4eaf vchiq_get_service_userdata -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x7bcfd309 vchiq_bulk_transmit -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xad1e52ff vchiq_open_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb848719a vchiq_msg_queue_push +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed93c344 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0f94a36 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf35ee000 ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9a0a711 ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9e329c7 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff8a5a9c ieee80211_wx_get_rts +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x09e52289 vchiq_use_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x0c3bd513 vchiq_bulk_transmit +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x11f38fa6 vchiq_close_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x4fde0cb1 vchiq_msg_queue_push +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6a3e3620 vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6c3e3ee8 vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x7278a32c vchiq_shutdown +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x896e106e vchiq_get_peer_version +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb6660414 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb9e96a71 vchiq_release_message EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbca0c1c0 vchiq_add_connected_callback -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc43f3fdc vchiq_msg_hold -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc9263f01 vchiq_release_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe703148d vchiq_initialise -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xeae64bc6 vchiq_close_service -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d54adc8 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x403b2b11 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42408f61 iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4512cb37 iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45545b7d iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45f4b07f iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e4a4535 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52383e74 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5259ec66 iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52742a70 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x537ad124 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x540eb9db iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d39401f iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f4fc61d iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x608b37e1 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67fa2e63 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a057c1b iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6abc013b iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b1e2be9 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8038c3ea iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f50b3d0 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x919543e0 iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93848169 iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f70ba60 iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa20548d0 iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa59fb121 iscsit_build_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0225420 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb071bdc9 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2444671 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb548a996 iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb73ff36b iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce2e2d67 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1989f0e __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4f68e43 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3a6bcce iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3a8aea1 iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3da6789 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe46cc318 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeaa92083 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf084fd4d iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf33218c0 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xcf71d249 vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xdb2de710 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xdbffbfc4 vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe0434784 vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe3932977 vchiq_open_service +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01008cc4 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04ad4768 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x06d27519 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0826d120 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e7fc598 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x126565e6 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12e2289f iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14a0c824 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16035eb1 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a9d98e5 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1cda1244 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x209243ed iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x26026e51 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28af158d iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39c97311 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c0e8555 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4024666b iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ab87689 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50006452 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5783be4a iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57b6f80a iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5840b250 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67214206 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69fa804d iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e450f24 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7a70cbfb iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b85755f iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c2cd709 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e15fea2 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x961145bd iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b38c88f iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9f7dd092 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xadb4a20f iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xafdabd7a iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0c752f3 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb46226dd iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf633fd3 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc785e3be iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd26ee995 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2b0c0ed iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda614f4d iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdac30aee iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfdd1d55 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef8849a9 iscsit_unregister_transport EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5dc7d64 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf80e73d5 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc819e0e iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfced7472 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/target_core_mod 0x06e12e40 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x076670c1 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6de52f2 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x012fda76 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x01bb24d1 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x03b9b6c4 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x05770756 target_depend_item EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d0f7f00 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x0d67c5ed spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x10e038b9 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x11d796b6 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x12a192f9 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x12fc195d transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f3f1f7f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f5e1676 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f87879f __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fbfb818 transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x1739d961 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x189191ca transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x1a283a9a __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x1c3e47e1 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x22d1e25a core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x289beb9a target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x29af3e51 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x29dce7c8 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a2514a5 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a3f8597 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x2c922bc9 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x2e239ee9 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x305df13d core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x3115e7cb transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x32034c26 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x3562cd40 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x15909a72 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a4cc658 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c0d3ff4 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x22d870b5 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x247853f0 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x2486efd9 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2637e777 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x26b67bbc target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a88c5b8 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d038a2f spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3350d87b core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x366c10f0 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x37c9d467 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x37e5b948 transport_wait_for_tasks EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x441b7eea transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x48586924 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x4c715f98 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x4d9b3bc9 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x51ca7dd3 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x533d48a1 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x533d6956 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x59eedfec target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x5bbdb869 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4082d717 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x41ec2bf9 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x43bf2702 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x52553f9d spc_emulate_inquiry_std EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c0a159b target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d0fcf29 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6572fc13 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x65b595df transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x703eed41 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x74fdb474 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x75812e1c target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x75a108f1 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x76945ae6 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x76bcb744 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x7a567353 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7b03a1e8 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x80e7afbd target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x8744759e target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x87df55ce sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x89981dc3 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x8b1e245a target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x923e4f86 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x942fad51 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x9f1c515a sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0xa44c4593 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xaee7bc2d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cfdf193 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f3251d4 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6112d724 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x61e489a6 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x62449adc passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x67516ddf core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x6bf5b1d9 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x71757802 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7894937e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ba49b5c target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bc056ea target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e968140 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fbbae8d transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x81179c77 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x81444733 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a717757 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x933e8eb3 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x94ff8eb8 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x954f4de6 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e0b4308 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e20700d target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1f576d9 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xa705935b core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa97e2f0f transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaaa73996 sbc_get_device_type EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb33eec45 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xb39ec92f spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0xb813f850 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc6e93ae1 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xc910f5d9 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xcae778a4 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xcda01670 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xd15f7a7e target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0xd26f174f target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd4e30ad4 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0xda412497 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xde5a4e93 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xe42a28e1 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xf1ebc720 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xf2ca5aea transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5dd7abd core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf11d4bd target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf191fc1 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf20b412 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc113fac1 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xc219a0fa core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8afc610 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbe54451 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc587f05 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd0da81e target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdf07863 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9d73a89 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xda1ec6ce transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdab8cbb7 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf2ae587 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2c01002 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5f17a65 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xec9d51b3 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xee4d27da target_remove_session EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf483c87b target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xfbedc09f sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xfc382ecf core_tmr_alloc_req -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2409a5a8 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x33712371 ufshcd_map_desc_id_to_length -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x58bea865 ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5e4be7b8 ufshcd_shutdown -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5f1990ff ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6e317ef5 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x85c7b7c9 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xbfc0b401 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x27a73e5f tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x6ad5e07b tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x49249832 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x6188d601 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x43038bd5 usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x67c25ec2 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7962eb0b sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2ce62143 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2d34e033 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2edf2fcd usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x39edf294 usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x61a9ac69 usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x61cfdb4b usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x997169d2 usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa36e0cf4 usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa70b0ad6 usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc497ecdc usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd29354c5 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usbserial 0x19625020 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xfa5b7b79 usb_serial_resume -EXPORT_SYMBOL drivers/vdpa/vdpa 0xa0a6b2b5 vdpa_set_status -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x33a5f361 mdev_unregister_parent -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x779c2c7d mdev_unregister_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xca30e40a mdev_register_driver -EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xebf9dbd5 mdev_register_parent -EXPORT_SYMBOL drivers/vfio/vfio 0x03413c4f vfio_unpin_pages +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7e73e64 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xfabdd359 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfba59dd5 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x023f5942 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x24a7adf7 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x42f5f045 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7ff7e576 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xd81113bb ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe18a63c9 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x15e129d0 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x79cf6e63 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xa1f283f6 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xfa0296bb ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x61eaaffa usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xcb4fff89 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x58ffaded sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3edc757c usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x527b58b4 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6ff27e50 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7444907a usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7d65a0cc usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7dfcb2e4 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb1e375ba usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb8e6e1ba usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xba0e1e5f usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf2684ad8 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf341555d usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1d83bfb7 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7944cdef usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x52510950 vdpa_set_status EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x5daf7c20 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x93892869 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0xa9698730 vfio_unpin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xc9bf8afa vfio_pin_pages -EXPORT_SYMBOL drivers/vhost/vhost 0x94e85d47 vhost_chr_write_iter -EXPORT_SYMBOL drivers/vhost/vhost 0xc217e2d3 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vringh 0x0c46f5fb vringh_iov_pull_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x18f3ddc2 vringh_iov_push_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x19c24590 vringh_notify_disable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x1fe50c1a vringh_abandon_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2890c460 vringh_getdesc_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x2d2babc9 vringh_complete_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x3684d8af vringh_complete_iotlb +EXPORT_SYMBOL drivers/vfio/vfio 0xd5f83fd8 vfio_pin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x061e9498 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x1f34a67e vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vringh 0x22535a6e vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x22f44e7d vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x31848eae vringh_notify_enable_user +EXPORT_SYMBOL drivers/vhost/vringh 0x372fd6c2 vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x3a5d8ed7 vringh_getdesc_user EXPORT_SYMBOL drivers/vhost/vringh 0x3b304ebb vringh_iov_push_user -EXPORT_SYMBOL drivers/vhost/vringh 0x3ee1955e vringh_init_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x4311cd91 vringh_iov_pull_user -EXPORT_SYMBOL drivers/vhost/vringh 0x4504adc9 vringh_abandon_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0x5bd469c0 vringh_getdesc_user -EXPORT_SYMBOL drivers/vhost/vringh 0x5f586ca2 vringh_init_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x61e3831b vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x52bae5f4 vringh_complete_multi_user EXPORT_SYMBOL drivers/vhost/vringh 0x660779c8 vringh_kiov_advance -EXPORT_SYMBOL drivers/vhost/vringh 0x6a693a25 vringh_need_notify_user -EXPORT_SYMBOL drivers/vhost/vringh 0x90e93e3c vringh_complete_multi_user +EXPORT_SYMBOL drivers/vhost/vringh 0x6bcdc931 vringh_complete_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x6bf1b1c2 vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7eaceeaa vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x8f8840e8 vringh_notify_enable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x932af7d7 vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x964ca823 vringh_iov_push_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x97fa07e9 vringh_iov_push_kern -EXPORT_SYMBOL drivers/vhost/vringh 0x9b30452e vringh_complete_user -EXPORT_SYMBOL drivers/vhost/vringh 0xa7ce8bd6 vringh_notify_disable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xa8efaeb9 vringh_set_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xc0bb1581 vringh_need_notify_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xc87491c8 vringh_notify_enable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xd465f463 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9a775e41 vringh_init_iotlb_va +EXPORT_SYMBOL drivers/vhost/vringh 0x9a81a3f6 vringh_need_notify_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x9bdd89ae vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x9f597502 vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xacec70e7 vringh_need_notify_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xb98c2548 vringh_getdesc_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xbb2391f3 vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xbdb0df4e vringh_set_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc33f4090 vringh_iov_pull_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0xc467f54a vringh_abandon_kern +EXPORT_SYMBOL drivers/vhost/vringh 0xc5a7eb98 vringh_notify_disable_user +EXPORT_SYMBOL drivers/vhost/vringh 0xcc0cbfb9 vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0xd8535ad6 vringh_init_kern EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xe4c21196 vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/vhost/vringh 0xeb2ec139 vringh_notify_enable_kern -EXPORT_SYMBOL drivers/vhost/vringh 0xf1e32cc0 vringh_init_user -EXPORT_SYMBOL drivers/vhost/vringh 0xf8605294 vringh_notify_enable_user -EXPORT_SYMBOL drivers/vhost/vringh 0xf9d0dd07 vringh_abandon_user -EXPORT_SYMBOL drivers/video/backlight/lcd 0x91adbfb8 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0x9dc8bedc lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xbe73cce4 lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xeff81c51 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1681a62e svga_tilecursor +EXPORT_SYMBOL drivers/vhost/vringh 0xe08ccbed vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/video/backlight/lcd 0x11004727 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x29e10f97 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xaefa2dff lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcf001a93 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x028e6214 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x03eece88 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 0x3f221131 svga_get_tilemax -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x45d07a22 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2c91f1c1 svga_get_caps EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ed486ad svga_get_caps -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x588b1b38 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5077b271 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x552bfe09 svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x970297d6 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd995efeb svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdb292d34 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xde28473f svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xc9076f41 sys_copyarea -EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x4b83febc sys_fillrect -EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x2abfafec sys_imageblit EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach -EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x1e7230c5 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x1f2bf704 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 0x6a976185 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xff4ca496 mac_find_mode -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5f89950e g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6f1efea1 matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x913a39d7 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2d37bac6 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x653edd55 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x989f4b36 matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe98d4652 matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x3bcebfb3 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x4c9f3b9d matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x106aa84f matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1990bf15 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb0d52ce9 matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xde0a69ce matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x3eabf88f matroxfb_g450_shutdown -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x70b49aef matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x23ee315e matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0dbefec1 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb3a9d63c g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb8a89988 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1b0a81b9 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3989ac55 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x94d1d456 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd8f2f16e matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xfc64930c matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xee22b8c2 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6a444152 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8745eaba matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9e577229 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa8f7c274 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x86ad7322 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xca69b919 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x23c60961 matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x45aacde4 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x31a1852b matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5e62b07e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x714df7fe matroxfb_vgaHWinit EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd1d1088a matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdb85b94d matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf475431d matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd8607487 matroxfb_vgaHWrestore EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x2a25052a virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x73453508 virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xadcd7fe3 is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb03c3d65 virtio_dma_buf_attach -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x21f37075 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7a39b7f2 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x38c95855 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xa8c74e7a w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x0b1095df w1_add_master_device -EXPORT_SYMBOL drivers/w1/wire 0xe5bf70c0 w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0xe76ec9c8 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xec040b08 w1_unregister_family -EXPORT_SYMBOL fs/fscache/fscache 0x0be8f82b fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0x0f074104 fscache_end_cookie_access -EXPORT_SYMBOL fs/fscache/fscache 0x102f8629 fscache_withdraw_cookie +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0de9c945 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3453a018 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x735a0e45 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xedb4143f virtio_dma_buf_attach +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x28bb7342 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x36b99945 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x4a9541c3 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xcf6c3e86 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x3e353772 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x43e8ed70 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x7c7379e0 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xb9b3aa83 w1_register_family EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write -EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x1e1fd7cf fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x2261af23 __fscache_acquire_cookie EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x2ec47c51 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x2a619807 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2b389369 __tracepoint_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x36fbf478 __fscache_write_to_cache -EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x32ae97a9 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x365e6c2a fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x3f041bbd __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3fa21ba2 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x41789dac fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4deaff62 fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem -EXPORT_SYMBOL fs/fscache/fscache 0x5669c19f fscache_cookie_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0x6c5e41e7 __tracepoint_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x6ef10b19 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x78ae5499 __fscache_relinquish_volume -EXPORT_SYMBOL fs/fscache/fscache 0x7b1a46d5 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x71fb0e58 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x74cd89a4 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x77e19a42 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x7c9de6f3 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7ec1e91f fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x85e56a0a fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x8bc76da5 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8bc99004 fscache_dirty_folio EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters -EXPORT_SYMBOL fs/fscache/fscache 0x8f3fce73 fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x94e967f5 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x91f793db fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x933b5b31 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x96f937e9 __fscache_begin_read_operation EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa0d379ec __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xad65457e __fscache_resize_cookie EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xb4ee812e __fscache_use_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xb7432cc0 fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xbc131033 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb177982b fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb79e51ea __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbb0d3e8e __fscache_relinquish_volume EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xbedfe603 fscache_relinquish_cache -EXPORT_SYMBOL fs/fscache/fscache 0xcc7522ec fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xbe383e8b fscache_put_cookie EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space -EXPORT_SYMBOL fs/fscache/fscache 0xcde0a2c3 __fscache_clear_page_bits -EXPORT_SYMBOL fs/fscache/fscache 0xd0e627ce fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xd57a6514 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xd9598fc2 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xd986a0c7 __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xdfaec961 __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xe1e3ac36 fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0xe5f0b947 fscache_resume_after_invalidation -EXPORT_SYMBOL fs/fscache/fscache 0xf4a5fd97 __fscache_acquire_volume -EXPORT_SYMBOL fs/fscache/fscache 0xf63da124 fscache_acquire_cache -EXPORT_SYMBOL fs/fscache/fscache 0xf7462cb8 __fscache_unuse_cookie -EXPORT_SYMBOL fs/netfs/netfs 0x5d1d9c01 netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x90c00580 netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0xaadd91e6 netfs_write_begin -EXPORT_SYMBOL fs/netfs/netfs 0xac413fcb netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0xf1bd69f4 netfs_stats_show +EXPORT_SYMBOL fs/fscache/fscache 0xe324baa0 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xe85dd951 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf1f931bd fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfe48a47f fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xffc72614 fscache_withdraw_volume +EXPORT_SYMBOL fs/netfs/netfs 0x1efa9621 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x49b37f8d netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x5d346947 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x83136140 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xbe919f95 netfs_stats_show EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x0a4629f9 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x52694277 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x76acb3e9 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xb3d3d01d qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0xc6ab9c44 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0xdca35788 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x0b8122fe qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x434aa4fd qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdb936ff1 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe3e60894 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xe5c3f315 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xf39bbc40 qtree_release_dquot EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -5146,21 +5112,20 @@ EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey -EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del -EXPORT_SYMBOL lib/lru_cache 0x28428934 lc_seq_dump_details -EXPORT_SYMBOL lib/lru_cache 0x66b46c23 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x9d4b8771 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset EXPORT_SYMBOL lib/lru_cache 0xc4d8d7a4 lc_find EXPORT_SYMBOL lib/lru_cache 0xdbdee578 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xea0e1a43 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xf0e20f9b lc_try_lock EXPORT_SYMBOL lib/lru_cache 0xfba16232 lc_get_cumulative EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default @@ -5199,1287 +5164,1314 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x14062758 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x161591f4 lowpan_unregister_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0xa26632e2 lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0xac4ac442 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xe2f6ef44 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf5becf5e lowpan_nhc_add -EXPORT_SYMBOL net/802/p8022 0x2785d945 unregister_8022_client -EXPORT_SYMBOL net/802/p8022 0xeb2e9052 register_8022_client -EXPORT_SYMBOL net/802/psnap 0x58174de6 register_snap_client -EXPORT_SYMBOL net/802/psnap 0xf1d602df unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x04da76cc p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x09318dd6 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x0a9d05af p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x19368f92 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0x2806b6de p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x29313500 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x2a808d7c p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x2e70f4bb __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x3274ca6f p9_client_lock_dotl +EXPORT_SYMBOL net/6lowpan/6lowpan 0x22a4fdd5 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x24499da5 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2661689b lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x699248b6 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x719a11e6 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa046b3e6 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x40c129ad unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x43c418d7 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x0fbd8e7e register_snap_client +EXPORT_SYMBOL net/802/psnap 0x5b306cf6 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0188c853 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x0888e368 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0a5abe35 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0de0a03d __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x150ad0ce p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x1d5f378c p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x21b20ed0 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x28462a3d p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x2e095042 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x302299eb p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x342b8615 do_trace_9p_fid_get EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e85a461 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x411bb4e1 v9fs_get_trans_by_name EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x423c5e45 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x42b9780f p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x4308e4c7 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x45ecc4fc p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x49d79405 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x48c7501a p9_req_put EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x4f4a8d52 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x54fd3816 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x557fa8a7 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x5af86721 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x5be5b3f1 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x5e8d0106 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x60ce04eb v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x6d0409b7 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x7337094f p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x74ccc966 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x4c50e982 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x58e5ec8e v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x68744a41 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x6b15e892 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x6d753c91 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x6de9bff5 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6fa46a83 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x70606278 p9_client_attach EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x78893cb3 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x7e2e8f75 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x8417b37e p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x8dc22d79 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x8f2d1157 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x901fcec7 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x93653532 p9_client_read_once EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9b95efea __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xa0c554a1 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0xa0d66366 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xa237d8a4 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0xa321dd2e p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xa9d2c7b3 do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0xb430371e p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x9d935c4a p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa1a2b33c p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xa2c9f1d6 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xab4c17b2 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xac2507e3 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xb19c486d v9fs_get_default_trans EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xbbea6ec7 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xbd50eecb do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0xbe27f9c3 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0xbe376f66 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xbf0939a7 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xc398752e p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd056d548 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xd08944f6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd30022d5 p9_client_setattr EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xd3f529cb p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xdd532f3d p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xda02b950 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xdc81788b p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xdcf83358 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xdf77ee5c p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xe1022a61 p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe62d398d p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xef27e813 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0xf85a2831 p9_client_rename -EXPORT_SYMBOL net/appletalk/appletalk 0x005e1f72 atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0x5741a04b atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xd6a560be alloc_ltalkdev -EXPORT_SYMBOL net/appletalk/appletalk 0xe726c8cc aarp_send_ddp -EXPORT_SYMBOL net/atm/atm 0x01899c88 atm_init_aal5 -EXPORT_SYMBOL net/atm/atm 0x029c8805 atm_alloc_charge -EXPORT_SYMBOL net/atm/atm 0x03b98e33 atm_dev_lookup -EXPORT_SYMBOL net/atm/atm 0x148d07de vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0x291710d6 vcc_insert_socket +EXPORT_SYMBOL net/9p/9pnet 0xe88fa573 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xee437897 __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xf2549a94 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf7b4d52a p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf91c66b5 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xfd7e2b24 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xffc4b448 p9_client_statfs +EXPORT_SYMBOL net/appletalk/appletalk 0x107a7665 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x1a662e78 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x8186fb90 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x91e6943f alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x0e43f767 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x0ec2f6c3 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x11d23b31 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x1dadbd69 atm_dev_signal_change EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4185131a atm_dev_deregister EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x97a391e2 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x9cf69119 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x5ac55500 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x69ff903c atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x7da40129 atm_charge +EXPORT_SYMBOL net/atm/atm 0x9b508cb6 vcc_release_async EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa319c166 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xa4d9ce39 atm_dev_register EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xbf699b01 atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0xda5a3264 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0xf19b3c6f vcc_release_async -EXPORT_SYMBOL net/atm/atm 0xf3f8ffe1 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xb8d9863b deregister_atm_ioctl EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xf7d5df80 atm_dev_register -EXPORT_SYMBOL net/atm/atm 0xfce71ef0 atm_charge -EXPORT_SYMBOL net/ax25/ax25 0x14098c4b ax25_linkfail_register +EXPORT_SYMBOL net/atm/atm 0xfd1a4d3f atm_dev_lookup +EXPORT_SYMBOL net/ax25/ax25 0x102a0dab ax25_header_ops EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x2492ddd7 ax25_linkfail_release -EXPORT_SYMBOL net/ax25/ax25 0x410a6005 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x2636a2c0 ax25_linkfail_release EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x46eb184e ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x67b471db ax25_listen_release -EXPORT_SYMBOL net/ax25/ax25 0x79acb0c6 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x85250806 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x88569458 ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0x95547b5d ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x9115cf30 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x91932ffa ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp -EXPORT_SYMBOL net/ax25/ax25 0xc45a1ec2 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc8b622a1 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc95d4a69 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid -EXPORT_SYMBOL net/bluetooth/bluetooth 0x02baa631 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0259f4a3 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03489987 hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0687b84b hci_unregister_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x07ca4058 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x07dd7fb0 hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ac3bb25 __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d7a815a hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fa6caeb hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x12df8827 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x086d248b bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x096fe526 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09d77d61 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d5c5689 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1266adbb hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x15661e0c hci_devcd_complete +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f6dd3ab hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f9a1aa4 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fa6e97d hci_alloc_dev_priv EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2605cd6d hci_register_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x299a172a bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4aeca79a hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cea026e bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x509c5bb7 bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x51fafe76 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57da8292 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0x59ebd252 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a87b6af hci_conn_switch_role -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bb66a00 hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e792107 hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67fd61b0 bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d5101a9 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x74a07332 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28333dc6 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a21a5e5 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ce601bc bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e4ce944 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3860a00a l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x397ec560 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3dc66dd0 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f31931b bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4377a469 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x452c9735 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x460328f2 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x461238d8 hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b712615 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bd2f074 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f9eefde hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55b639cd l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x561a9ea7 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bfa7df4 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x647e1d7a bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6de493e1 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70f5c5d8 hci_devcd_append EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7af2f385 hci_recv_frame EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e18d0df bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f05fd02 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x80c1dd03 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c7c418c bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fc06259 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x811e8628 hci_devcd_abort +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81224e6f hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8cfae0e7 hci_get_route EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9117c839 l2cap_register_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x99b67915 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a71bff8 __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bbd4036 bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d211882 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d88c4cc bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e53d59a __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa020e42b __hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8288737 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0xad932d95 bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf155204 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb19471f4 hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb20ba653 l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0xba160018 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0d96a0e __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2fcb016 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x90d21fac __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c187a76 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa01ec5ce hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa36d67be hci_devcd_rx +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa60137a1 hci_devcd_timeout +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa86957df bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9b89f67 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xafbb1890 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7b8ab8e __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb81ba5df hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8d5753d hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba983744 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbac49484 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbb68baa bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc34fd63b l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3ee2049 hci_devcd_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd00dcaf7 hci_cmd_sync_queue EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3132237 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb2e44c2 bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec190501 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xec8536de bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0xef4ce86e hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0023154 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5873666 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf58f4e0e hci_mgmt_chan_register -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1b54ed64 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1cd5c43b ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2bbdbaeb ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x59c8544b ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6892df0d ebt_unregister_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x91959c3b ebt_unregister_template +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe546faf0 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6158b79 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe884b8ca hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe9c2a701 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf170c737 hci_conn_security +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x27f5b5f6 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5d50160b ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x85466c4d ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd7e77a59 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdef69220 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf06d75a7 ebt_unregister_template 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 0x34a5307f caif_disconnect_client EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3df5d406 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x7bd01b47 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state -EXPORT_SYMBOL net/caif/caif 0x8978ca50 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x8af66238 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x956d9c0f caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/caif/caif 0xd0056773 get_cfcnfg -EXPORT_SYMBOL net/caif/caif 0xd2f710ae cfcnfg_add_phy_layer -EXPORT_SYMBOL net/can/can 0x03e4dab0 can_send -EXPORT_SYMBOL net/can/can 0x0f012cd0 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x3c9a405c can_sock_destruct -EXPORT_SYMBOL net/can/can 0x76cc6fef can_proto_unregister -EXPORT_SYMBOL net/can/can 0xa9bd445b can_proto_register -EXPORT_SYMBOL net/can/can 0xe487b6b1 can_rx_register -EXPORT_SYMBOL net/ceph/libceph 0x02f95a0a ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x044b0aac osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/caif/caif 0xd5f5cb71 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xfbd1826f cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x431a36e7 can_proto_register +EXPORT_SYMBOL net/can/can 0x65123eeb can_rx_unregister +EXPORT_SYMBOL net/can/can 0xcbba3ed0 can_rx_register +EXPORT_SYMBOL net/can/can 0xd982413c can_sock_destruct +EXPORT_SYMBOL net/can/can 0xe20aca36 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xf2b16379 can_send EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x078caad0 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x0a98d6d5 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x0aa558b7 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x0acc3a5b ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x0b36f5b2 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x0b71584d osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x0ce3f8dd ceph_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x0d076b41 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x0f28351a ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x0f485903 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x05345a33 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x0c3bcabc osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0d658c82 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x0e2f55e4 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0fe89c32 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x11d50247 ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x1529ce59 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0x153deece ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x1548a97a ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0x15eb71c0 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x13b236d5 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x1520910b ceph_wait_for_latest_osdmap EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary -EXPORT_SYMBOL net/ceph/libceph 0x17f02f14 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x1d8b73b2 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0x1e8d1e05 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x18f72b3b ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x1a867eb2 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x1c53bc56 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x1e5bc0e7 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x1f49c930 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x2086e89c ceph_release_page_vector EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x2a222a0e ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x217247ec ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x2419163c ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x29b955df ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2c6acc8c ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0x30cd729e ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x3122cf04 ceph_osdc_alloc_messages -EXPORT_SYMBOL net/ceph/libceph 0x338534f4 ceph_cls_lock -EXPORT_SYMBOL net/ceph/libceph 0x33f396a1 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2aa719f3 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x2c80b756 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x2f205899 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x2f9f42bb ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x3057607f ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x32f6ee18 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x33d7f6ac ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x34b982f4 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x34f2ed7c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x36dc45bc ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x3726e7e4 ceph_client_addr EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d0a252e ceph_osdc_flush_notifies EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x4256115b ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x44c530ff ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x461dd110 ceph_auth_handle_svc_reply_more EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x4733a5e9 osd_req_op_xattr_init -EXPORT_SYMBOL net/ceph/libceph 0x476f029c ceph_auth_handle_bad_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x47ec16e9 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x48673bd3 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x4906fa76 ceph_osdc_notify_ack -EXPORT_SYMBOL net/ceph/libceph 0x497fc38a ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x49cef6a8 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x49e613dc ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x4acdcca6 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x4a182fbf ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x4aea5b81 ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4cad40cf ceph_monc_got_map -EXPORT_SYMBOL net/ceph/libceph 0x4e40fea7 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x4bca902e ceph_osdc_get_request EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x51318a16 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x5348622f ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0x5469f28d osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x56f42b2c ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x515e61b5 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x54a4b437 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x562945ab osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x56a670ad osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x57740ea3 ceph_osdc_abort_requests EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x582e9652 ceph_cls_break_lock -EXPORT_SYMBOL net/ceph/libceph 0x5964d465 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5f0a1cb7 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0x60e19ea7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x5c331bfb ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x62191578 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x66501cde __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x64b9f5f5 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x6554f2c5 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x674af0eb osd_req_op_cls_request_data_pages EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6aea2dcd ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x7419e1ea ceph_auth_handle_svc_reply_done -EXPORT_SYMBOL net/ceph/libceph 0x78e48ed1 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x7b1260d1 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6b44f3ba ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x6cc6331e ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x6df97f3c osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x74fac0a5 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x750e077a osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x760a7d23 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7936ff2b ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x7b50c76b ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x7bf012a2 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x7e44187b ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x7f17c482 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x8176fc5b ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x81f9ceae ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x830aab43 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x84254396 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x844f524b ceph_msg_data_add_bio EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8b6af481 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x8ff840e6 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x921cddb3 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x86fe9ece ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x8c45bf8b ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x904c37d0 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x909aa7b1 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x910245f2 osd_req_op_extent_osd_data EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x9366f776 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x93694a90 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x954ba121 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x964c7f74 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9a626921 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x990fdb9b ceph_cls_unlock EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9eac5ee3 ceph_osdc_notify EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa08df436 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0xa1adf1da ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xa1c0e451 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xa2dad5c3 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa2eec899 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xa6006740 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa9a33951 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xad2389e7 ceph_parse_mon_ips EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xae42fb79 ceph_con_keepalive EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xb02c887d ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xb2d8076e ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0xb2ebd101 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xb2faf8f2 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xb3ef510c ceph_osdc_alloc_request EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xbc471ada osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0xbe59aeec ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0xbec1d538 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xbf6f8419 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0xc12573a0 ceph_osdc_list_watchers -EXPORT_SYMBOL net/ceph/libceph 0xc13e5565 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc06e3fcc ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xc2b05b9b ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc3a60d85 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xc40760ed ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xc792d262 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xc9e0aaec ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xc4bd9208 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xc5d25a15 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xc62d3bd4 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xc6cd5a2e __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0xc9aeb6a4 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcd205067 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0xcdb6cafa ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xce0f7e2e ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xcaee8f70 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xcb32da2f osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xcec80202 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xd08cec82 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd0e13073 ceph_monc_get_version_async EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xd4ecb5e9 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0xd59571cc ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0xd6b2a9b2 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0xdbf6a33e ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xdcb74583 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xdd8e8d79 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0xdeeef4e6 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0xdf05dd04 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0xdf635c06 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xd71a01bb ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xdc4e6b47 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xdc630f21 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xdcbe9722 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xdccf633a osd_req_op_extent_osd_iter +EXPORT_SYMBOL net/ceph/libceph 0xdcdb6b7d ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe26ade36 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe27f810e ceph_monc_renew_subs EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe460af97 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xe4710eb5 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0xe55707d6 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xe5a6296f ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xe694c341 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xe7459515 ceph_copy_user_to_page_vector EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe910dc51 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0xeae6a7e6 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xe7fa36b0 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xed33bc71 osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0xf0f92670 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0xf68d2ef9 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xf77a671c osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xf8d5a973 osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0xf9135b99 ceph_cls_lock_info -EXPORT_SYMBOL net/ceph/libceph 0xf91a6f9a ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xf9aceaa8 ceph_zero_page_vector_range -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3ba05ef1 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6d52f5a8 dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x6e63fcb5 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0xc30fb4bc is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0fd486b6 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x12b24921 wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0x513cb35c wpan_phy_find -EXPORT_SYMBOL net/ieee802154/ieee802154 0x68de6799 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0x79f67acf wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x8a502e7f wpan_phy_free -EXPORT_SYMBOL net/ipv4/fou 0x11455423 __fou_build_header +EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank +EXPORT_SYMBOL net/ceph/libceph 0xf5d0f8cc ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xf9922f47 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xfcf64d92 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xff9bd26b ceph_msg_data_add_pages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x0b2e7d38 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1dec5cb6 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x45996d69 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xc31053fc is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x05be8bb0 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0cc635d7 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x29730e7b wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb7d175fb wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc7ddbe46 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xcd8c0179 wpan_phy_for_each EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0x8fef0dc6 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x2d116f23 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x8520126c __gue_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x8bf1aa8b gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2b079df9 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x712e1cdc ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc044a536 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd27b23b1 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x037f5d96 arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x242c4617 arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6cd0c64a arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xae5e7e75 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4cccc571 ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc1bf237f ipt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd911e304 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xda7c9d2b ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/tunnel4 0x9f90ce66 xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xb159b085 xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0x13517085 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x15b1c86d ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1616de6b ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1be36bfa ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6c5888ef ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6ce28e2a ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7dd483ed ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x826681b4 ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd37f32e3 ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf820e1d9 ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x88d39b7c ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb5a18274 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xbbf0069c ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe7b1aaed ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x40195f8d xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0x41f40ee5 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x2a125ce4 xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x4d4c98bb xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/lapb/lapb 0x03ffa23b lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0x0da93620 lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0x1af02411 lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x3ee16cf0 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x70df343c lapb_data_received -EXPORT_SYMBOL net/lapb/lapb 0xa80f417b lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xc1fd70ac lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0xfe447bd6 lapb_unregister -EXPORT_SYMBOL net/llc/llc 0x053fb5bc llc_sap_open -EXPORT_SYMBOL net/llc/llc 0x1cfb8e94 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/ipv4/gre 0x98d9bd67 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1c20aa69 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2aa80172 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x830f397a ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x89ee66d1 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xda21ef10 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1bcc4c5c arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6cc41a9d arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7258d3ad arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x815dab3c arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7a467d22 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7e7a5af7 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xba505132 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe406965f ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x2bb5408e xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x5bcd7027 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xf976d41f udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x68840b3e ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6afbaff9 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8c5b7400 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9ae0feca ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xab453eb7 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb34c610c ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcb6d742d ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdc77b1d5 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe9e32f0e ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8878a071 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x99bc5174 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe935dc5b ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf643af25 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x17422651 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xa36316d6 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x0798e618 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x77343968 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x37527187 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x3fe2266b lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x533d533c lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x9b90424d lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xb43227bb lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xd3c47edc lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xe4b1cf68 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xfc37513c lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x2580dfce llc_build_and_send_ui_pkt EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3e7b4232 llc_set_station_handler EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list -EXPORT_SYMBOL net/llc/llc 0x6de65579 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0x6ecef122 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x8be3c427 llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xa7aab49b llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0xd1e6786d llc_add_pack -EXPORT_SYMBOL net/mac80211/mac80211 0x01e698a4 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x020baa58 ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x07a80de4 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x09981025 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x0a97e017 ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x0ae0e946 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x0c16e8cf ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x0c5c4322 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x0cbbb1af ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x0e46c0ed ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0x10279d08 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x19aa1a13 ieee80211_reserve_tid +EXPORT_SYMBOL net/llc/llc 0x7ba8e04c llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x97b81b26 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xab08b9b1 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xb949c9f5 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xfe56aa08 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x01d0c789 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x0808c6b6 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x097054b9 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x09bcb70f ieee80211_refresh_tx_agg_session_timer +EXPORT_SYMBOL net/mac80211/mac80211 0x0ac88d2c ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x0b028091 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x0f774abe ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x12337ba3 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x12fac750 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x154b3130 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x1959fbe3 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x196f57b9 ieee80211_beacon_update_cntdwn EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1c213d60 ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x1caa0f0b ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x1a91b8b4 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x1c20a551 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x1ce2afa3 ieee80211_scan_completed EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x1d6e9d7e ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x1db0b74f ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x1f697adb ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x2607d6a0 ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x28c0bef8 ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x29a8b3f4 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0x2d6667c4 ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0x2e9e100d ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x3038c95d ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x315fe25c ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x330f9fdb ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x346fdc37 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x3483194d ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x384c9b0b ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x21367b84 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x2601d9a7 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x261c83a3 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x2dadb273 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x2dd12d72 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2efd575a ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x35a2a1d0 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3883b088 ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x391e83e1 rate_control_set_rates EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3c7556c0 ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0x3cd159f4 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x40a7e2fa ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x460c5268 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x460dfdd8 ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x46cd48b8 ieee80211_rate_control_register -EXPORT_SYMBOL net/mac80211/mac80211 0x4934d0b6 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4998f71c rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x49c9393a ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x5519c34c ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x5daf533c ieee80211_beacon_cntdwn_is_complete -EXPORT_SYMBOL net/mac80211/mac80211 0x5dd4ef9f ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x604e4117 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x61b6b25b ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0x6210e852 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0x63a0b01a ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x63ac9808 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x6552d989 ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x6b8e1228 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x709ed34f ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x7a3347f5 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7a73b02e ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0x7b962611 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7ecffa06 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0x7f1b71f9 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x7f7e2c97 ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x842716c9 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x84eb2e0a ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x86901edc ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x8c2ed9f1 ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x8dece85d ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0x8e06a39e __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x8eff606e ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x95528c7f ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3b1c69bc ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x3d18a39c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x3f84dd3b ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x43aa6c04 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x48d99a35 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x532b9bcc __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5337d510 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x539d0aab ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x54d60927 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x559ccca1 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x567ff649 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x56c493fe ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x57236452 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x578279fc ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x58979f3f ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5ca9668e ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x5e66befc ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x5f77ed59 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x606ef8b4 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x62f0e08b ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x65bdc1ad ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x65df14bf ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x6a6d6f8f __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6b016c1a ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x709d413e ieee80211_beacon_get_template_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x71f2d114 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7466f073 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x7a1a25e6 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7a34fc5b ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x7d24301e ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x86ada7c7 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x888022d9 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x897f7dec ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x8b1c8c4b ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x8fa7beae ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x8fc3a596 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9061cdfe ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x93404917 ieee80211_start_tx_ba_session EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x98978e0d ieee80211_report_wowlan_wakeup EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99d68a2f ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9c050cba ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x9cb75332 ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x9d7b9764 ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xa1c60352 ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0xa76b4b5d ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0xa98da351 ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0xaa8741d8 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x9a570411 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x9e7f69d3 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xa0dd61e7 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xa3b4ce72 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xa45f7e0b ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xa6cc6b73 ieee80211_next_txq EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xaf497fd6 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xb01c9ad1 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0xb1fac501 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0xb2531103 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xb2e24014 ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac80211/mac80211 0xb90a2105 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xbe1152c9 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc1bcac0f ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0xc482a896 ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0xc6c1702d ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xc729ee18 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0xcb58ec4a ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0xcd531548 ieee80211_txq_airtime_check -EXPORT_SYMBOL net/mac80211/mac80211 0xce23474e ieee80211_tx_status_8023 -EXPORT_SYMBOL net/mac80211/mac80211 0xd0768291 ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xd28b5e5a ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xd805dbc6 ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xdb63cc3c ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xe55bead6 ieee80211_txq_get_depth -EXPORT_SYMBOL net/mac80211/mac80211 0xebfc4b82 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xed0a07f1 ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0xf0ac6f39 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf30aa641 ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xf3b0b828 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xf4b1a1b0 ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xf52e4ea4 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0xf6072d79 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xf61fa661 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xf7abeb9f ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xfd384d8b ieee80211_report_low_ack -EXPORT_SYMBOL net/mac802154/mac802154 0x159b2e0f ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x159bde30 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x25d552d6 ieee802154_xmit_error -EXPORT_SYMBOL net/mac802154/mac802154 0x2ef4f2fa ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x58965be6 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x5a93c82c ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0xbb1cfc56 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xefc5d93a ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0xfc404a65 ieee802154_free_hw -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2de4220f ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2f84fb8a ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d0cd8bf unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6b40f580 ip_vs_proto_data_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9770fdb1 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa92c240f ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae385c6c ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb1449b19 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbd339dee register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd03b496e ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd1526a11 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd233dd43 ip_vs_conn_put +EXPORT_SYMBOL net/mac80211/mac80211 0xaed4889a ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xb03bf0c1 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb0e90925 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xb2afc754 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xb3a6077c __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb41a5777 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb9dc061e ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb9fc8fa8 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xbaf3e4a8 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xbb512a7a ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xbb89c53f ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xc130b415 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xc2f414aa ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xc586ceae ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xc6ad57d5 __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc9415109 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xd036b624 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd1b8199a ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xd29673a6 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd7cc3d38 ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0xdb6b1a96 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdd918940 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xdef2cce2 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xe224f1ea ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xe25a8c47 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xe5f1044c ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xe636a16e ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xe7d60320 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xeabf6e9d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xeb848729 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xf21604a6 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xf613af2c ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf8f0a024 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xfab08513 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xfdf682e4 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xffc5f121 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac802154/mac802154 0x31f803d9 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x4b36701a ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x76585483 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7c539b3d ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x844f22d5 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9cdd7c83 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xc5c6673d ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xcda85414 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0xceb427b4 ieee802154_register_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x00adbe9b ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x083b2c21 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6587a517 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x67963518 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c10eeba register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6c813cfb ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6cc7e7b8 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7133798a ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x91ef5db0 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x98f7c19f register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc22c3687 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcc28172f ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd4cc4934 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd4f1c86c unregister_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdcd8e2c6 register_ip_vs_app_inc -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf9bf8450 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfab5bf5c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xda83f445 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3a3130cf nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy -EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5a6140b0 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x2ccf73d9 nf_nat_mangle_udp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xcba75837 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xf1742573 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0xf6f39c3f nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x6a8f21b8 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x6b9a9390 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x9a2ace53 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe2197eea __nf_nat_mangle_tcp_packet EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy -EXPORT_SYMBOL net/netfilter/x_tables 0x0c5ae821 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x24df8f81 xt_register_target -EXPORT_SYMBOL net/netfilter/x_tables 0x2d22a7d1 xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x2de8c023 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0f3e5529 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x1574c491 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2ca65fb0 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x2e9edd36 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x39a2dc6e xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name -EXPORT_SYMBOL net/netfilter/x_tables 0x48141e18 xt_unregister_target EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x58bf36de xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x6223dc9e xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8622f9c5 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xaf27f56d xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xaa26ceca xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xae39dd66 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xbb0659fc xt_find_table EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd4c5f384 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xdf282fd4 xt_register_match EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0xfec7a0d6 xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x0523d066 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x0d6913f0 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x2d79c3ac nfc_hci_free_device -EXPORT_SYMBOL net/nfc/hci/hci 0x3d76c283 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x40fe02c8 nfc_llc_start -EXPORT_SYMBOL net/nfc/hci/hci 0x45848c94 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0x4c6225de nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x7169fdd9 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x01e21182 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x0c9e28c6 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x208b23d1 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3003e109 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4a61a7d7 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x585b8dd3 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x6755f499 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x6ab582c9 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6e88f06c nfc_hci_get_param EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x8711ea7d nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0x8c90c728 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x93a17fc2 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0x9806aea4 nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xa062d3b8 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0xa3bc4691 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0xab69fb78 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0xae96cc9f nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0xc2d10718 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0xd092cccb nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x7df0a548 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9ddb3354 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xa248faab nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xa4086836 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb565a0b7 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xbb4203c2 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbfda8c0c nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc770c4bc nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xc9e7faca nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xcd291c34 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xcfe9a12c nfc_hci_recv_frame EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xde776793 nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0xef817f00 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0xfea72e42 nfc_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x0208206a nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x03606efe nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x07c47bda nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x19665c0c nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x1fed2401 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x2088dc5c nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x3ca825f6 nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x500aba6a nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x5185ed35 nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x5b000b94 nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x5faf850b nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x63c37dad nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x6a776465 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0x6ad2eb9b nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0x6bd87e09 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x6e0153fb nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x78ecc370 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0x8f2db50a nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x93ac87d0 nci_core_conn_close -EXPORT_SYMBOL net/nfc/nci/nci 0x99436e9d nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0xa0a2739d nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0xa82d2bd6 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/hci/hci 0xe4cbf1c5 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/nci/nci 0x0daf7d39 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1ef2c9d4 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x245b56dc nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x49e59578 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x4c5d8159 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x5916c3fd nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5d8364be nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6f91f5e4 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x77f94804 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x8daa901e nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x99d7b969 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xa0c3e2aa nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa3b2745d nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xaf81b5ff nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb83b213e nci_core_reset EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc4c2834a nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0xc7813217 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0xcd8d3e75 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xdf83b32c nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xf7247d33 nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0xfb0704be nci_core_conn_create -EXPORT_SYMBOL net/nfc/nci/nci 0xfb15e982 nci_req_complete -EXPORT_SYMBOL net/nfc/nfc 0x00679c1b nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0x09cad088 nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x0f773581 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x19950b94 nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x21d0c9a1 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x3ecfc95c nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x441f29c6 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x4c838fdd nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x50fae9f6 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0x5633cebe nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc 0x5abd10e2 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x6a79f70b nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0x6c81e9bd nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x95de9134 nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x95fb5651 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x9910a614 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0xa7deb060 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xbbb55edc nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xc81511e5 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xc9981f46 nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xca20dab4 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xd6cae5b4 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0xe3bc8ffb nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0xeb7dccda nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xf331f1b4 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc_digital 0x2df377eb nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x2f79ab5f nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xad185592 nfc_digital_unregister_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xd3bb57d5 nfc_digital_free_device -EXPORT_SYMBOL net/phonet/phonet 0x13cfb117 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0x1f004bfb pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0x3d727892 phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x54b00eac phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x70ce7e10 pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0x7a952902 pn_skb_send -EXPORT_SYMBOL net/phonet/phonet 0xdbb8ad02 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xfd273cee phonet_proto_register -EXPORT_SYMBOL net/rxrpc/rxrpc 0x08aa1060 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x2262af5e rxrpc_get_server_data_key +EXPORT_SYMBOL net/nfc/nci/nci 0xbff1f8a3 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xc2dd72fd nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xcc8a6159 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd1950217 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xd305a818 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd48253d6 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xdae1f9ba nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe078bec5 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xe5bbb7e8 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xf2229c96 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xf813714c nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xf8d3620d nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xfa98a56a nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xff0e15b1 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nfc 0x23ac26b4 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x2e6f0aae nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x31fe4eb0 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x352d09eb nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x365273e5 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x437f0b91 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x52979aba nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x59191726 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5ef4b9ce nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x611f2000 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x7f3c34ff nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x8f651028 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x954a1155 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x99fd6166 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x9c7993e8 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xb52ecc36 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xb6b1e5df nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xd27e51e2 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xe229a68d nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xe5361d48 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xe8dff3c7 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xed8a3b45 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xefee3bec nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xf5bc9eae nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xffcdde41 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x2bc2f2da nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x6cb8dd02 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb25829aa nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe38e4243 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x149613a7 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x576c82f8 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x5e99dcfe pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x64c5933a pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x6d7c2242 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x7380cc2c phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x9abb39cb pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xf1765e11 phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0a9e20bd key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1c846b01 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2d07a332 rxrpc_kernel_recv_data EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3259aa33 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3842e781 rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a1c116f rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x45daeade rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8154f3f6 rxrpc_kernel_send_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8493fb9e rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8ab1e929 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0x9b25026a key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc420ba65 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd71adaa5 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xda3d1076 rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdd1050ec rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdde710f2 rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe1fddb99 rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0xf53fffc4 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xfcc334db rxrpc_kernel_end_call -EXPORT_SYMBOL net/sctp/sctp 0xbf733dfd sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3a3bc8fc rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3b1c1223 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x42415c26 rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x49b3c597 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5417785c rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x63edbfeb rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x753d30e3 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7e5d2089 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8bb9f6b0 rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x98c8e202 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb0bb90bc rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb40b5978 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbb06510c rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcf68ede3 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc77dce8 rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfc7b8a37 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/sctp/sctp 0x8fa8973d sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x13b4bcf5 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x23d05157 __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x51630a56 __traceiter_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x56067b6b __traceiter_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x768ad859 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x83163422 __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x6668fbb7 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x76da5303 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xa053541c __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xd24addfc __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xde22ab3c __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xf47b4ee2 __tracepoint_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4706c14b gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcc5af315 gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdd7a61a6 gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x3fbaf2dd svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x4195dd7e xdr_truncate_encode -EXPORT_SYMBOL net/sunrpc/sunrpc 0xbd00ba83 xdr_restrict_buflen -EXPORT_SYMBOL net/tipc/tipc 0x28b6f56f tipc_dump_start -EXPORT_SYMBOL net/tipc/tipc 0x48623e2b tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0x73180c2d tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xc8df5f26 tipc_nl_sk_walk -EXPORT_SYMBOL net/tls/tls 0xeb4c9744 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x0063c88d freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0x03b87283 cfg80211_stop_iface +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x25db7ecb gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7d161390 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdc1e6e13 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x91059b10 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd29b595d svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd316ed4b xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x9003c867 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x923dc42c tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x95ffb7bd tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xea700e97 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x284ea8a2 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x00a2b552 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x00e55227 cfg80211_ibss_joined EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x08392dbc cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0x097f3367 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x07f9bffc ieee80211_is_valid_amsdu +EXPORT_SYMBOL net/wireless/cfg80211 0x0a03afdf cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x0b9c7a8f regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x0c9e8264 cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width -EXPORT_SYMBOL net/wireless/cfg80211 0x0de80a48 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0x11132b6a cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x0d330a4b nl80211_send_chandef EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile -EXPORT_SYMBOL net/wireless/cfg80211 0x12056811 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x127ac50c cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x16e4136e cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x13c58e52 ieee80211_get_8023_tunnel_proto +EXPORT_SYMBOL net/wireless/cfg80211 0x1657e5a5 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x16c16658 cfg80211_control_port_tx_status EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x18f34797 cfg80211_rx_assoc_resp -EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x1c5eacf7 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x194cfc1b wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x1a167c38 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1b82a85a cfg80211_valid_disable_subchannel_bitmap EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1cf23886 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0x1d7ba34c cfg80211_conn_failed -EXPORT_SYMBOL net/wireless/cfg80211 0x1f15c23c cfg80211_check_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x205cfd7e cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x225fc0b4 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x24689c63 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x24f8c345 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x253058c6 __cfg80211_send_event_skb EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number -EXPORT_SYMBOL net/wireless/cfg80211 0x28ffe39f cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x2c2ebff5 cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x2fab721a cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x333bc19e cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x27e8e9f2 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x28bc7869 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x28cc58ab cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x2a2a8b7f cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x2e5607c8 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2ec1cd21 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x2fb5ed6b ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3230e462 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x32d66975 cfg80211_ref_bss EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x3c94fab6 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x3f29b7f0 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x36d1223d ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x3a93d764 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3aca71a1 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x3afccc6a cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x3c744e95 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x3c86019a cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x3c9fb62d regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x3ce37550 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x41fdfe5e cfg80211_michael_mic_failure EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x45da9eab cfg80211_reg_can_beacon_relax -EXPORT_SYMBOL net/wireless/cfg80211 0x46531efe cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate -EXPORT_SYMBOL net/wireless/cfg80211 0x47194786 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0x47522381 wiphy_unregister -EXPORT_SYMBOL net/wireless/cfg80211 0x495ada83 regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate -EXPORT_SYMBOL net/wireless/cfg80211 0x510a34bc cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x5221097e cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x43c6579a cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x461280da wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x4abed7d4 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x4dc46032 ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0x4e592f92 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x4f186dc2 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x50a99430 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x555c519f cfg80211_reg_can_beacon_relax EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x565d829e __cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x59f71366 wiphy_rfkill_set_hw_state_reason -EXPORT_SYMBOL net/wireless/cfg80211 0x5bafa793 wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0x600debce cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0x67414fb1 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x678ae8b1 cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x67b4da13 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x58508bb0 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5b167fb1 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x5ba53c5c __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5ce63561 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x5f859c0f cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5fb724e7 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x669e6750 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6754fe74 cfg80211_probe_status EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b60eaf4 cfg80211_bss_flush EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6d4c55fd cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x6ef7299e cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0x6f63d96a cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x7109b3eb cfg80211_reg_can_beacon -EXPORT_SYMBOL net/wireless/cfg80211 0x71325a28 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x734519f1 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x73d2309c cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x7486aacb wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x76e5700a cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x776e9d35 cfg80211_get_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x783378b1 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x7839fe09 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6ca0813d cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x6e3ac867 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7046e323 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x716d8ae8 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7191e0d2 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7537ec9b cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7633b9f0 cfg80211_ch_switch_notify EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7a6dbdeb cfg80211_ch_switch_started_notify EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next -EXPORT_SYMBOL net/wireless/cfg80211 0x7b887d74 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7bc71495 cfg80211_cac_event EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7dfa3801 cfg80211_crit_proto_stopped EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f8d9ad0 cfg80211_sched_scan_results -EXPORT_SYMBOL net/wireless/cfg80211 0x81eb590a cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x82e33860 cfg80211_nan_match -EXPORT_SYMBOL net/wireless/cfg80211 0x84c889b8 cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0x8634debe cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0x8834f51d cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x8ef63a74 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x8f3eb106 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x85de3f6f wiphy_delayed_work_timer +EXPORT_SYMBOL net/wireless/cfg80211 0x85f94a96 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x86816bce cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x8839b9b0 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x897a7155 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x89ddcd71 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x8ed4f5cf cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x8f65fe33 cfg80211_cqm_txe_notify EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x9057c351 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x909eaf65 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x910f76b3 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x928be06f ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x947f3bc3 cfg80211_ft_event -EXPORT_SYMBOL net/wireless/cfg80211 0x95e8dc8e wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x99ffdcb5 cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x9a26b820 cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0x9ac37448 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x927427c8 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x92cc14e4 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x95e857d0 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x9798d76f cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x99c8a3fb ieee80211_amsdu_to_8023s EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9f67883d cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0x9fba02bc cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0xa0867936 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xa1ae8df8 cfg80211_michael_mic_failure -EXPORT_SYMBOL net/wireless/cfg80211 0xa278774e regulatory_hint -EXPORT_SYMBOL net/wireless/cfg80211 0xa4ab1cfb wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0xb0bdb8e2 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0xb6c3d369 cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0xb7a8def6 cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xb9944544 cfg80211_bss_flush -EXPORT_SYMBOL net/wireless/cfg80211 0xbd038bbd ieee80211_data_to_8023_exthdr -EXPORT_SYMBOL net/wireless/cfg80211 0xc443657b __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9e9d341d cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xa388cb39 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0xa4514d8e cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa4cc0380 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa585c781 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xa5d3d86a wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xa7851a20 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa85b5976 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xb0c9a362 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xb3547c0a cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xb4617bbf cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xb530f2dc cfg80211_links_removed +EXPORT_SYMBOL net/wireless/cfg80211 0xb61b80fa cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb73716d1 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xbb45ed5c cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xc36efc76 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xc3fb97ca ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0xc485807e cfg80211_cqm_beacon_loss_notify EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc7a429a2 cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xc91e9adb cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xca1f2bb3 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc563c7aa cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xc685cfe3 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xc80950d1 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xcc14ddd6 cfg80211_report_obss_beacon_khz EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcd82d166 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0xcda8b1fc cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0xce9f0921 cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xd14c84b9 regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xd28491b5 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xce533836 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xd23148f8 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xd4abec02 cfg80211_reg_can_beacon EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0xd8379561 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xd6c87a05 cfg80211_defragment_element +EXPORT_SYMBOL net/wireless/cfg80211 0xd7343137 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xd900b61b cfg80211_port_authorized EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xe2e4c729 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xe80f8b9f regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xe84382e2 cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xe8c615e9 cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xe93ed896 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0xeac5ad77 wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0xef7f78cf get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xf0d5a1c3 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdcefef01 cfg80211_assoc_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xe425576d cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe4cbac4e cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0xe4ecfd94 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe60d28b3 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xea157f80 regulatory_hint EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf48918aa ieee80211_get_num_supported_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xf4d2817b cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xf41a9a9e cfg80211_iter_combinations EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf99f8bf9 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0xfb78324b ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xfc0ed0be cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/lib80211 0x2c5ebfc3 lib80211_unregister_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6301922c lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0x6b139ebf lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0x7d5160ec lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0x98271447 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xe0a6ddf5 lib80211_register_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0xd68f836b ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xa16527e7 snd_mixer_oss_ioctl_card -EXPORT_SYMBOL sound/core/seq/snd-seq 0x0a471119 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL net/wireless/cfg80211 0xf5a53320 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xf7a7b913 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xf944af79 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xfa3ef79a freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xfaaeed95 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xffd12ee4 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/lib80211 0x2acd1e3c lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x7834643f lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa977e029 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xaa16a2f3 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe4b49ab6 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf3602d5c lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x67fb0a84 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xd03662f6 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x0d82504c 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 0x23738926 snd_seq_dump_var_event 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 0x45de7b6c snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0x6225005d 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 0x85cd59a8 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa6e19f8e snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event -EXPORT_SYMBOL sound/core/seq/snd-seq 0xfac18b6b snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xbade8504 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc649ffc0 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcae9199c snd_seq_create_kernel_client EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x74769de9 snd_midi_process_event 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 0xf912f0c8 snd_midi_process_event -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x734e4fba snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x454224b1 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x70758652 snd_midi_event_encode_byte EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7a3e0db5 snd_midi_event_no_status EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x8150b379 snd_midi_event_reset_encode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode -EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd70dbf6 snd_midi_event_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x6553d415 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x000bb4c3 snd_ctl_remove -EXPORT_SYMBOL sound/core/snd 0x0b721bdc _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xfc42ccc2 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x023609bd snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x03acb13b snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0beaf32a snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x16d7bcb9 snd_ctl_rename EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1aeb02da snd_jack_new -EXPORT_SYMBOL sound/core/snd 0x1fdedd05 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x1aa915ef snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x1b33c2e4 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x236368be snd_ctl_unregister_ioctl EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x277428c4 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x32802076 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x25730539 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x280a7f47 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x2ae2fff4 snd_ctl_add EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x34349fdc snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x38073d0f snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x3882a112 snd_card_file_remove EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x40220a06 snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x43e0c698 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x3aac6724 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x3bb65299 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x3bc8111f snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x3dc3b79b snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x3fa00610 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x467499a1 snd_ctl_replace EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4c95a0c4 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x4d842807 snd_card_register -EXPORT_SYMBOL sound/core/snd 0x50af3256 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x546cf576 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x5efbeb5a snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0x5f01152a snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x6268305f snd_card_new -EXPORT_SYMBOL sound/core/snd 0x6c1f7595 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x4e560b18 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x4ee2e106 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x6553b5eb snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x68af586f snd_device_new +EXPORT_SYMBOL sound/core/snd 0x6b74b07d snd_card_free EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x74753cea snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x780bc75e snd_device_register -EXPORT_SYMBOL sound/core/snd 0x8135adb8 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0x829d20a3 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x877e8e7c snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x878c6d09 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x882eb250 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x8d53d2f2 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x79ccb158 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x7e322e5e snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x823e24bb snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x825ef0c2 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x83ca0563 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x84d087c0 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x857f6529 snd_ctl_remove_id EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register -EXPORT_SYMBOL sound/core/snd 0x8ef747c1 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x8e64a68d snd_register_device EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x927df8b1 snd_ctl_rename -EXPORT_SYMBOL sound/core/snd 0x92e8ab6a snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0x99b47420 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x92f1e67b snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x97c9cf86 snd_jack_add_new_kctl EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str -EXPORT_SYMBOL sound/core/snd 0xa3ab703f snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0xa3e16fb2 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0xa5ff1b0c snd_pci_quirk_lookup -EXPORT_SYMBOL sound/core/snd 0xaec2d348 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xa1262aa2 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xaae1dd01 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xaf6adb6e snd_ctl_register_ioctl EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb9c08283 snd_jack_add_new_kctl -EXPORT_SYMBOL sound/core/snd 0xba4db9af snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xbbce77c5 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xbc0ef6cf snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0xbca0b221 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xbe46c747 snd_register_device -EXPORT_SYMBOL sound/core/snd 0xbf64ff24 snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0xc2d3aa0f snd_ctl_boolean_stereo_info EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc6e81ef8 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xc72b4aaa snd_ctl_rename_id EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xcd5f70c7 snd_seq_root -EXPORT_SYMBOL sound/core/snd 0xcdc7d35c snd_card_set_id -EXPORT_SYMBOL sound/core/snd 0xd07579b4 snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0xd360ab91 snd_jack_set_key -EXPORT_SYMBOL sound/core/snd 0xd6c6e82c snd_jack_report -EXPORT_SYMBOL sound/core/snd 0xeaf9f796 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xf413c358 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xfda7aa80 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0xfe92d962 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd22bc9b6 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xd3540274 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd9868a9b snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xe869e727 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xe906d9e9 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xeb41bcb5 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xf06bde6f snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xf41bfa53 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xf8165620 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xfcce6485 snd_jack_set_key EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0x8d87ce84 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xcbd84f70 snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xaeddc8a7 snd_hwdep_new -EXPORT_SYMBOL sound/core/snd-pcm 0x0087f1fe snd_dma_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x00b44185 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-compress 0x269f2605 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0x694eefe8 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xdee96a55 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x019e7e9a snd_pcm_hw_refine 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 0x0a7b9fc3 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0x0aba66fc snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x09ab3108 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x09c2b031 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x10b6c747 snd_sgbuf_get_addr EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x16c0af58 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x12aad616 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x12d962c1 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x15af8ec6 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x175ffb52 snd_pcm_lib_free_pages EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x2383ed4f snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0x26803380 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x2a944adf snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x297d8b7c snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x29e7d57a snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2d2a2c58 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x3052a790 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x33016c9f snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x36e88840 snd_pcm_mmap_data EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x3807f1ca __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x3f621147 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0x40fbf901 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x44fd5a54 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x4593d126 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x468d4204 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x4c5d9082 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x435d5311 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x44d399d1 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 0x501b3634 snd_pcm_mmap_data EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x5071fc5b snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x51610bc7 snd_pcm_release_substream EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value -EXPORT_SYMBOL sound/core/snd-pcm 0x5cc111ed snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x577aacdf snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x5a3c13a6 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x5b3ec1df snd_pcm_suspend_all EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence -EXPORT_SYMBOL sound/core/snd-pcm 0x5eb6bb02 snd_pcm_hw_constraint_list EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 -EXPORT_SYMBOL sound/core/snd-pcm 0x6520231f snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x6895bf50 snd_dma_alloc_dir_pages EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates -EXPORT_SYMBOL sound/core/snd-pcm 0x6b0e6a4c snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x6c4a3ad1 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x6d74af3a snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x6dc763b5 snd_pcm_set_managed_buffer_all EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x77594e53 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0x820a0544 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x70225f09 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x7b7946fc snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x7cc9e66f snd_pcm_hw_constraint_integer EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x8414f683 snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x850a930f snd_dma_alloc_pages_fallback -EXPORT_SYMBOL sound/core/snd-pcm 0x85314eb9 snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0x9045dec0 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8bb6e58b snd_dma_alloc_dir_pages EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0x94114284 snd_pcm_hw_constraint_ranges -EXPORT_SYMBOL sound/core/snd-pcm 0x94c65d11 snd_sgbuf_get_page -EXPORT_SYMBOL sound/core/snd-pcm 0x9516ad28 snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0x9dcc5d4c snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x9de837d3 snd_pcm_lib_free_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xa370b644 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x98926bd5 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x9d31bbaf snd_pcm_hw_constraint_step EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned -EXPORT_SYMBOL sound/core/snd-pcm 0xa95c8da4 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xa777245b snd_pcm_set_managed_buffer EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum -EXPORT_SYMBOL sound/core/snd-pcm 0xb2e209bc snd_pcm_hw_rule_noresample -EXPORT_SYMBOL sound/core/snd-pcm 0xb4bde5a0 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xad223128 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0xb2ef7f81 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xb56bf26f snd_pcm_kernel_ioctl EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xbbc2c32b snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0xbf4febd3 snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xbfe6d0ef snd_pcm_lib_free_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xc8a2d505 snd_pcm_lib_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xcbcee692 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xde3b4731 snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0xde8ca74b snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xdfda7c45 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe21ff22c snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xbdc5d27a snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xbf1fa413 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xc5284070 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xc899bdab snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xcf3942c8 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xe096cfa7 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xe213ca4f snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xe4e1e667 snd_pcm_period_elapsed EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xecd31d6a snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xef50528a snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xea3c1b0b snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xec3cba6f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xf24752f6 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xf63bba84 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xf95587b3 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xfa37a65e snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xfd247257 snd_pcm_hw_constraint_ratnums EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0afa9c9a snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0x29fccbe2 snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x346cff47 snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x39ac16f3 snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0x3d8e7ea9 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0x48cc4706 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x52de7770 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x57b9e85c snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x663f9e1e snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7bc05a97 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0x836ca2c5 snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5676dd8 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xca890b14 snd_rawmidi_transmit -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd3eb8a87 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xe29cc715 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf4c4a49d snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0xf6e36c1c snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0xfef159d7 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e69a3dc snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x12752bba snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1376c61f snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c34a13d snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2ae2f832 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x315e4818 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x42a60c90 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4f2c0cfb snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x726d5345 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa5675b5e snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa7ecd032 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaca5e464 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd573b870 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdadaa14d snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdbedcc75 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe1061180 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf1d91190 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfba73235 snd_rawmidi_set_ops EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x61fc02de snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0xfe23caec snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x0e883f39 snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0x104f3953 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0x505698ba snd_timer_pause -EXPORT_SYMBOL sound/core/snd-timer 0x6354526d snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0x78235601 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0x78f595bd snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x83d3b276 snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0x84baba73 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0x99b9703b snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x9cac54e0 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0xb414a39d snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0xc00f0dba snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0xdc36396e snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0xe87e7d9a snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0xedabf15a snd_timer_global_new -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x63f1765a snd_mpu401_uart_new +EXPORT_SYMBOL sound/core/snd-timer 0x1748b68a snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x2224d9d2 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x2a965e53 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x3595da6e snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x459eaf8e snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x55dccb5a snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x8817becd snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x88e15d7d snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xbb290ce1 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xcd110d39 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xd4cf6581 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xed36e492 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xf89c089d snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xfcc4f9c1 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xfdd9db4d snd_timer_global_free +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x2f152079 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 0x27c6358b snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x392a3cb1 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4abba0f2 snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x98daddc9 snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa93ba90c snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaff97977 snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcedb1b67 snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe158025d snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf1d447c0 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x10620953 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x10d5ae67 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x19bae3d0 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x48f7f924 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x552cdb00 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x652f5f5e snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7667d292 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8049101c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8c998a47 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa398e2ae snd_opl3_create EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x32f7435e snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x46c29385 snd_vx_dsp_boot -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5a395ab5 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5cf40605 snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x657be741 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb84fa763 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe656fb43 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x267d488a snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x44273933 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x46c8fbe2 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x55a34abf snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6b4a3dbd snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x91c88d6b snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x95969efc snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb7f08ed8 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe89bece0 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 0xf66050cf snd_vx_create -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x00ff39ea cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0740a18f amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08c51d12 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b4e478d fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x10be7950 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x14e23235 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bd86f13 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e03c281 cmp_connection_establish EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x316d1004 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35b8f189 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36bcce33 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41bee9f5 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4aeb5716 avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b6b5fbf fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20535794 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x228cbe4a fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a801539 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30420bd6 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x359155cf iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c5b90e5 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3f139922 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x43dc5a01 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x446ae81f avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47cf1b01 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4db64e16 amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x549eadfd cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5991a639 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f9e4619 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x608140ff amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x71d01cbb fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x725e3863 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7382acea amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f6a4814 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9792acf4 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9dbed4fe fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa0332dbb amdtp_stream_pcm_abort -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa52ef697 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad11507e cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad9f1c7e cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb10b0dcf cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5b417c1 avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed1d162f amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xedd5f72a amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfbdb7495 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6f00595e amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x70e7ca73 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7afcf69c fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d380df3 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94c9dc9b avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x96dbbc7d fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbb5ef7b4 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbfbac3ab amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc2a4b8fe cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6d82d73 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcfeb3a58 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbf10907 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4186a46 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf574d698 amdtp_stream_update EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb7b836b3 intel_nhlt_ssp_mclk_mask -EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xe2111917 intel_nhlt_get_endpoint_blob -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x921ddf52 snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xaee77ea2 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x07e4267a snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x106b86e3 snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1b9a0841 snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1fc8249c snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x30c610e3 snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6e7e1005 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc7f6aea1 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xec4b6844 snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6b453c4b snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7bbd0710 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x82e16c68 snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x986c7dab snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x25af1c18 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xaee1400d snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x02ebc5bf snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1dd458d2 snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2802fedc snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5592c0ab snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9988db4b snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xebc68c82 snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x054820bf snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x335e34e0 snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x73a316c6 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0xad6f2d96 snd_i2c_device_free -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc7a6224b snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xc8659e70 snd_i2c_readbytes -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0e608504 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12434d6a snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x18e596bb snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x33a77a16 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5daaf5b9 snd_ac97_update -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6851259e snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x688532d8 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a42dc63 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x82a84af9 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb866b6ce snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf99a4d4 snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc093cefd snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc626eb35 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcc08f672 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe13980f4 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe89da7b9 snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xed69e6b3 snd_ac97_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x05ff97d9 snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x086e4fab snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1b791489 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2922da28 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3740bf26 snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69acaaab snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe2ecee50 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe81106a0 snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf85c6835 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1bdb724c snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7e6f6918 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe64354f3 snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0510c23c oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0aa68755 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x10b5596b oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x10bfc850 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c02c872 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1dbe2319 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ab0ea90 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33862550 oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3861ac4b oxygen_write16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4309a436 oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5592d072 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x57d86db4 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x846948dd oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xae6230a5 oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb79e87d1 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9845b53 oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc8d8063c oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xddaae644 oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xebbf5e63 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef5234f3 oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1ad4acbc snd_trident_write_voice_regs -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x627e60f0 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7306698c snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9b9e2cca snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa1349046 snd_trident_stop_voice +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xdd936d93 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x298467b0 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xd09d38c0 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x060abf24 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x100f26f1 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3d653cbd snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4d03b633 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6ac24515 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa83c3343 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbe1f2a0e snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc4dc538d snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x361e31b8 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8fbfd25d snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa89258ed snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf6b8d9d3 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x62753f4f snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xacc6fd8a snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x05abf0ac snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x22431a59 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x23a2fcf8 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3ff15683 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x90480787 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfa3ac180 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x33d79920 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x530864f3 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7299b207 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x809ab8c0 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8a55d2d0 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbb72161d snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b999616 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1f0d5eab snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3f7ad3bf snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x521f211e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x608ba1f3 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x761127c7 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x79ea587c snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8622e210 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x866f99b3 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x878f6ec6 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8924b35c snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8b35a86d snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8e820f8e snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa0b7ebb2 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbc11660e snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf680eeb snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf6636143 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1f6d394c snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x34339ccc snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x39165cfd snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4c55a6cb snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7b174ff4 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x954fe394 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xafecec4a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc822feca snd_emu10k1_ptr_write_multiple +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf896cf10 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xffe5ea00 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x044921cf snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x363e8fde snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xbfce8d6c snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ccd9d57 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x35a624ac oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4275a852 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64919804 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x66abf341 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6da8d97a oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8f91acbf oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x953a6d22 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa36ee09a oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb16bae3f oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb6953c1f oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb8cc2fa3 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0d02695 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc575437d oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6a2eed7 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6c97a46 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd39a5574 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdcab82f3 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe643029d oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf00c8533 oxygen_read32 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x446f9df0 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4b677f20 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4c4ec59f snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc9e03f02 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe38c03fb snd_trident_alloc_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x1c3d55b8 snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x5b128b8d snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xdb6e2078 snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xd41053b5 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x537efc39 wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x92ff90c0 pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xf920d665 pcm3060_probe +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x259132b1 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x8cd7b485 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x94382665 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x0538565f adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x33807741 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x22091738 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xaca3af11 pcm3060_probe EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x42afa1bf tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe1881c2e tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x11e78ea1 aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x536b0097 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x58181e40 aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x99cc00e0 aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xa5c87eae aic3x_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x14f29335 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6c806745 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xf6cac849 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7e2281e6 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd3b6626f aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xef86eb56 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x156cb4e5 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xa11abe77 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x260b15cc wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x63409646 wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x878cd0b6 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd4a64faa wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x0d788520 fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x5b84abd6 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xd0949625 fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x6705b1a2 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xbc2636d2 mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x37b557d0 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x5ea762d5 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/snd-soc-core 0x3380e256 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x719f1875 imx8_enable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xddc3f509 imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xe2be1959 imx8_parse_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xfc122a78 imx8_disable_clocks -EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xe0316434 mtk_adsp_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d2a3e8d snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11e91ad1 sof_compressed_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x141d408b sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x188314b6 sof_set_stream_data_offset -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x191c64b4 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23a691e2 snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x282bd2e5 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x29d28970 snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a71d236 snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x304e4f49 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xed065054 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x5e514f53 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x9c3e3876 fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xcf8c6223 fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x647b1ce8 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xef036fc8 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xda92df59 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xe4d335b2 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0xd2694556 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x0a0303e9 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x12a2bdbf imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x78f733f6 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xd535112b imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xfdfc728d mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x02b57020 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x09b326a6 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0cbd1df1 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f8b75fc sof_ipc3_do_rx_work +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x163f3c25 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2586e12c snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x269fb2e7 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2814ee3b snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x305a3626 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34850df9 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x365ec0f1 snd_sof_dsp_update_bits_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38d3e7ba snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a563a75 snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3baacbda sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3e1e7fe5 snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x413156c3 sof_ipc_set_get_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4657bd4e snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x46b9a0cb sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x473d8088 snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4cd8620f sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x50b593ac snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5dc6c3d9 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x693ca2c6 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c115a94 snd_sof_dsp_only_d0i3_compatible_stream_active -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6da50f7b sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x79247b40 sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8f9110b0 snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90e3700b snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94cad746 snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96c5d71d snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96e97b64 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x972cf191 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa28abcc9 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa4c07171 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa52e5721 sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa83cd4eb snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab961a1b sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xafcb7926 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb09218aa sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb225d307 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbba64e4b sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc6c8499a snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcca5e591 sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xccc52a5d snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd09a277a snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd1d820f2 sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6489467 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd832bba5 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9f9b87f sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdac461fa sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb971187 snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdbf597e4 snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdfec7275 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6c4d77d sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec46d793 sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0f4685a snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9119c29 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa1d2f5b sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x5282c845 sof_of_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x908cf287 sof_of_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x98337804 sof_of_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xfe219b50 sof_of_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xab0aae83 snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x3009f1c0 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x6c655750 register_sound_special -EXPORT_SYMBOL sound/soundcore 0x75aa0072 sound_class +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a7c8821 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x40e8203f sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45fa7f37 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x46a996fe sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4751dfad snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f8c3e32 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x500fa984 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x50edfe27 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5a7905eb snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5c3a7861 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6073d887 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x620868d5 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x65417b43 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x69b4d464 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f43627f sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fd4e6e6 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x73954e6f sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7670bc9d sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a34c5d5 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ae478fb sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d9264a2 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ec9673a snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8537ef82 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x884128a3 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8965f583 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8be43a79 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8cf348ae sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x907b8b64 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9711c505 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa4191ee5 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa864ad5 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa9afaf4 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf151d29 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf9ce6cd sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1793372 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xba3519c4 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc271a9f3 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4818a9f snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcb6b2f8c snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda810f92 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb2719a7 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb69af48 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xde0fe2a6 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe158898e sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe499486c snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5cdc066 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfceeae8e sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x311431d4 sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x3322c1d6 sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x34b15ad4 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x7775192c sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xd440c6f9 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x1c3b358e register_sound_special +EXPORT_SYMBOL sound/soundcore 0x38181826 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x667c1132 sound_class EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x80764418 register_sound_dsp EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa502179c register_sound_mixer EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xd491c41c register_sound_mixer -EXPORT_SYMBOL sound/soundcore 0xebd9a9c3 register_sound_dsp -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x035b69e8 snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x04bb6697 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5ff9ba63 snd_emux_free -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x643890dd snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x03ff3773 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0f907fd0 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 0xa71486c0 snd_emux_unlock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xeb7b07f2 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x97cf9b27 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd7371938 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe4d2b822 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe5a78583 snd_emux_lock_voice EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6489,5778 +6481,5845 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x46685084 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x3eee0a5b __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 0x00009054 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x000b7960 write_inode_now -EXPORT_SYMBOL vmlinux 0x0013e7c9 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x00008035 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x000113dd mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x001c5b9c put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0x001c7aa7 nvdimm_check_and_set_ro -EXPORT_SYMBOL vmlinux 0x00288682 vfs_mknod -EXPORT_SYMBOL vmlinux 0x00325b31 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x00454518 kthread_stop -EXPORT_SYMBOL vmlinux 0x00563e9d vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x00594ac2 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x00616d6d tcp_sock_set_keepintvl -EXPORT_SYMBOL vmlinux 0x006c2b87 bio_init_clone -EXPORT_SYMBOL vmlinux 0x0071350f d_instantiate -EXPORT_SYMBOL vmlinux 0x008430ea seq_path +EXPORT_SYMBOL vmlinux 0x001e83cd skb_unlink +EXPORT_SYMBOL vmlinux 0x002135d6 __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x0048a118 security_sock_graft +EXPORT_SYMBOL vmlinux 0x00554879 input_set_keycode +EXPORT_SYMBOL vmlinux 0x005b0bf0 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x007135cc dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x007b86ae unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x00b05e19 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00ca7dc6 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x00cb85b5 mpage_writepages +EXPORT_SYMBOL vmlinux 0x00bc1eb1 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x00c757f2 sock_create_kern +EXPORT_SYMBOL vmlinux 0x00cb43e9 audit_log +EXPORT_SYMBOL vmlinux 0x00d64f68 sock_i_ino EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00da87af tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0x00f1f291 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x00fa0c04 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x00ffeb88 page_pool_create EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x0112b81f submit_bio EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x011a4cb2 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x0117bd62 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x01252507 netpoll_setup EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read -EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x013fb04f __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x015f9900 empty_aops +EXPORT_SYMBOL vmlinux 0x0159bc53 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x016a8fd5 init_task +EXPORT_SYMBOL vmlinux 0x016cea86 folio_end_writeback EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01755ca0 pskb_extract EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device -EXPORT_SYMBOL vmlinux 0x017a0f25 padata_free -EXPORT_SYMBOL vmlinux 0x017c1f09 dquot_alloc EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x01825a2c devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x01ab44b1 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x0196caf6 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x0196d169 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0x019ca335 security_sb_remount +EXPORT_SYMBOL vmlinux 0x01a17703 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x01a7698f pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x01af744c devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x01b3699e pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01c4dfa8 phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x01d2bfe8 bdi_alloc +EXPORT_SYMBOL vmlinux 0x01c69cb8 input_allocate_device +EXPORT_SYMBOL vmlinux 0x01d74b0a tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x01d77057 param_get_ullong EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe -EXPORT_SYMBOL vmlinux 0x01ed6e8f skb_ext_add +EXPORT_SYMBOL vmlinux 0x01f2278a pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x01fe6cc5 cookie_ecn_ok EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x022a46cc pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x022e65a4 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x023fba47 submit_bh +EXPORT_SYMBOL vmlinux 0x02426c29 genl_notify EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x0260539b blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x0263d599 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x02735866 bpf_map_get EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0278f52f truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x027a818c find_inode_rcu -EXPORT_SYMBOL vmlinux 0x0282fe41 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x0279415f skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02a5700f skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x02bac5a5 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x02986521 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x02b0a704 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x02b380df generic_block_bmap +EXPORT_SYMBOL vmlinux 0x02bdf35d tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02ca5f46 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x02cdb3e4 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x02e7e37f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x02d63d9a follow_down +EXPORT_SYMBOL vmlinux 0x02dfa66a inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x0303538c ethtool_aggregate_rmon_stats +EXPORT_SYMBOL vmlinux 0x03059e1e component_match_add_release +EXPORT_SYMBOL vmlinux 0x03084aef tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x03245f3d max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x0328a692 dcb_delrewr +EXPORT_SYMBOL vmlinux 0x032bb849 unix_destruct_scm EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x0340fef0 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x03366487 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x034019d5 kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror +EXPORT_SYMBOL vmlinux 0x034ebdd1 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x035d25ab memcg_kmem_online_key EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x0372326e phy_write_paged EXPORT_SYMBOL vmlinux 0x037a0cba kfree EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x0386f420 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x038b3eea block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x038cf9ef to_nd_pfn EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x039e97ad fsync_bdev +EXPORT_SYMBOL vmlinux 0x03a67b5b netpoll_send_udp EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03bb5e3e xp_dma_sync_for_device_slow -EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x03bf4d83 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x03ccbfd6 kernel_read -EXPORT_SYMBOL vmlinux 0x03d5a0b2 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x03c0cd69 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x03cc9a51 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x03d9ce59 softnet_data +EXPORT_SYMBOL vmlinux 0x03da6b25 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x03f194e0 register_console +EXPORT_SYMBOL vmlinux 0x03f2a368 neigh_update EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x03ff1610 skb_copy_header -EXPORT_SYMBOL vmlinux 0x03ff5c38 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x040533b1 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x042af432 touch_atime -EXPORT_SYMBOL vmlinux 0x042ef8a3 lookup_one_len -EXPORT_SYMBOL vmlinux 0x0438d7b8 mr_table_dump +EXPORT_SYMBOL vmlinux 0x041fcae4 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x042bd618 init_special_inode EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x0443ce24 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0446f9b9 tcp_filter EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x044f1668 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x0456ea1f serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x0457f035 tcf_block_put -EXPORT_SYMBOL vmlinux 0x045dc9fe vfs_ioctl +EXPORT_SYMBOL vmlinux 0x0461ef0f eth_type_trans +EXPORT_SYMBOL vmlinux 0x0462a2de pci_dev_put EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x046e4885 to_ndd EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0482f027 tty_lock EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x049b3dbc blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x049fc4b9 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x04a35d66 tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x04cc962b nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x049081fa tty_port_close +EXPORT_SYMBOL vmlinux 0x04915ee7 proto_register +EXPORT_SYMBOL vmlinux 0x04916515 console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x0495b088 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x04af000a vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x04c19ea5 input_register_handle +EXPORT_SYMBOL vmlinux 0x04cfd955 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x04d13d16 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x04e858c6 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x04d53d65 sk_wait_data EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04f447af cdev_set_parent EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x05138b2d flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x05181675 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x053dc153 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x052ff1f3 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x052ff6b4 netdev_reset_tc EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0555ba3c _dev_crit +EXPORT_SYMBOL vmlinux 0x0557fd1a dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 -EXPORT_SYMBOL vmlinux 0x055fb3c4 rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x05621d13 sock_wfree EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x05666378 acpi_device_hid EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x058259e5 __find_get_block -EXPORT_SYMBOL vmlinux 0x0585cd17 tcp_ld_RTO_revert -EXPORT_SYMBOL vmlinux 0x058909bf mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x058a0e85 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit -EXPORT_SYMBOL vmlinux 0x059fc910 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x05bba317 vme_unregister_driver -EXPORT_SYMBOL vmlinux 0x05e7ef55 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x05ef6002 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x058ed231 import_single_range +EXPORT_SYMBOL vmlinux 0x0597f947 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x05a22a77 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x05a6e811 km_policy_notify +EXPORT_SYMBOL vmlinux 0x05a9d0a7 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x05b6c0cc blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x05c0bbf7 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x05c8a099 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x05d29ba6 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x05dc3da9 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x05f47659 free_netdev EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner EXPORT_SYMBOL vmlinux 0x061651be strcat -EXPORT_SYMBOL vmlinux 0x06198d9b mmc_release_host -EXPORT_SYMBOL vmlinux 0x061d77f0 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x061fe0dd bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x0623afb7 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x062513ee inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x062b39c3 __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x064e095e tso_build_data -EXPORT_SYMBOL vmlinux 0x065bef5f security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0x06637494 sock_create_lite -EXPORT_SYMBOL vmlinux 0x06679e2a blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x0667faf2 d_invalidate +EXPORT_SYMBOL vmlinux 0x065dedc2 dev_trans_start EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x06912484 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x06ae1fa2 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x06b12e0e qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x066e59bc dump_page +EXPORT_SYMBOL vmlinux 0x0673fbdf mmc_can_trim +EXPORT_SYMBOL vmlinux 0x0681e3cc dquot_destroy +EXPORT_SYMBOL vmlinux 0x068ac37e __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x069e9c93 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x06bba53d framebuffer_alloc EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06bf9ad4 __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0x06cba95d inet_put_port +EXPORT_SYMBOL vmlinux 0x06cd0134 touch_buffer EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d56d61 __register_binfmt -EXPORT_SYMBOL vmlinux 0x06e1ae14 of_translate_address -EXPORT_SYMBOL vmlinux 0x07082f74 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x06d5156d netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x06e24bc9 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x0709fd3b nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x070c6c4e param_get_bool EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x071cc881 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x072daf63 dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x072e6509 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x07167c13 md_integrity_register +EXPORT_SYMBOL vmlinux 0x071c2e6a serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x07229c36 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x07269f2c irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x0729a3e7 vfs_statfs EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x074042e7 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x074507f2 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x073d74db skb_queue_purge EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x07539743 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x075d8ff4 of_graph_get_remote_port_parent -EXPORT_SYMBOL vmlinux 0x077c7d4a blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x07682acf blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x077f0b0e register_key_type EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x0790cf78 setattr_copy +EXPORT_SYMBOL vmlinux 0x0788f06f buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x0792f85e mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x079eb023 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07b536e5 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x07b6bf72 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x07bab664 read_cache_page +EXPORT_SYMBOL vmlinux 0x07bb6535 unregister_qdisc EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07cf12c3 tcp_read_done -EXPORT_SYMBOL vmlinux 0x07d39600 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x07d0499a vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x07d33c5b iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x07da8d04 mmc_erase EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace -EXPORT_SYMBOL vmlinux 0x07f6ce6d devm_arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x07f8f6c6 dec_node_page_state -EXPORT_SYMBOL vmlinux 0x07fb0cb6 flush_dcache_folio EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL vmlinux 0x0813b6e7 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x080cd979 passthru_features_check +EXPORT_SYMBOL vmlinux 0x080dd8ef of_chosen +EXPORT_SYMBOL vmlinux 0x0810d409 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x0812c5bf xfrm_dev_policy_flush +EXPORT_SYMBOL vmlinux 0x0814ab81 inet_recvmsg EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x08165bdc blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x0823f0fd mmc_gpio_get_ro -EXPORT_SYMBOL vmlinux 0x082971f3 d_drop +EXPORT_SYMBOL vmlinux 0x0825813d mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082c78bb blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x08342a7d phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes -EXPORT_SYMBOL vmlinux 0x083a0a1b param_ops_uint EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084ac62b sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x084bc8b0 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0x085730e1 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x087d56b5 ptp_clock_event -EXPORT_SYMBOL vmlinux 0x08920fd8 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x08ce9637 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x08d66ab3 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x0841044d copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x085a79eb folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit +EXPORT_SYMBOL vmlinux 0x0876b868 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x08dc36d5 is_nd_btt EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08e84fc4 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x08f30e23 thread_group_exited -EXPORT_SYMBOL vmlinux 0x08f71dd9 reuseport_add_sock -EXPORT_SYMBOL vmlinux 0x08f72235 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x09138663 rproc_da_to_va -EXPORT_SYMBOL vmlinux 0x092703a9 sock_register -EXPORT_SYMBOL vmlinux 0x092bb112 pci_read_config_word -EXPORT_SYMBOL vmlinux 0x092d858d xfrm_lookup +EXPORT_SYMBOL vmlinux 0x08e3a874 ihold +EXPORT_SYMBOL vmlinux 0x08f4bf3f inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x09012efe param_get_charp +EXPORT_SYMBOL vmlinux 0x0906386e dev_deactivate +EXPORT_SYMBOL vmlinux 0x0917fee3 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x09188ea1 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x092c4984 kobject_del EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x09331ecb posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x0936f2f9 key_revoke EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x09644207 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x09680096 param_set_invbool -EXPORT_SYMBOL vmlinux 0x09692743 set_blocksize -EXPORT_SYMBOL vmlinux 0x09735727 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x09444139 napi_gro_receive EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes -EXPORT_SYMBOL vmlinux 0x09784f6c pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x097f181d mmc_retune_pause EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09918445 phy_mii_ioctl -EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0x09a271e7 neigh_for_each -EXPORT_SYMBOL vmlinux 0x09a4a339 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x09b13b33 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x09b998d5 of_match_device -EXPORT_SYMBOL vmlinux 0x09bfdd98 ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0x09c07ce5 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x09c15763 sock_set_keepalive -EXPORT_SYMBOL vmlinux 0x09ce4250 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x09d17e8d iov_iter_discard +EXPORT_SYMBOL vmlinux 0x09b2ad48 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09ec96de input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x09ef5de7 phy_attach +EXPORT_SYMBOL vmlinux 0x09f13f1a of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x09f707be trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a04326b bio_uninit -EXPORT_SYMBOL vmlinux 0x0a052a5c slab_build_skb EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a1dc04b give_up_console +EXPORT_SYMBOL vmlinux 0x0a1c22fa filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a3b0c54 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x0a3f0d43 netif_tx_lock -EXPORT_SYMBOL vmlinux 0x0a443dcf neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0a26e0dd netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x0a285bd1 con_is_bound +EXPORT_SYMBOL vmlinux 0x0a4c5814 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x0a5f28b3 can_nice +EXPORT_SYMBOL vmlinux 0x0a60a4da sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx -EXPORT_SYMBOL vmlinux 0x0a85cb1b md_handle_request -EXPORT_SYMBOL vmlinux 0x0a889b1b xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x0a8fcba3 folio_end_writeback -EXPORT_SYMBOL vmlinux 0x0a91b2a9 node_data -EXPORT_SYMBOL vmlinux 0x0aa23890 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x0a8571cb xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x0aa1e377 rproc_shutdown EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa9b5c4 nf_log_trace +EXPORT_SYMBOL vmlinux 0x0aabc5d4 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab74c84 dma_resv_fini -EXPORT_SYMBOL vmlinux 0x0ac2a970 twl6040_set_bits -EXPORT_SYMBOL vmlinux 0x0ac8710a netdev_set_sb_channel -EXPORT_SYMBOL vmlinux 0x0aca3a1f iov_iter_npages -EXPORT_SYMBOL vmlinux 0x0acbba10 keyring_clear +EXPORT_SYMBOL vmlinux 0x0aba8154 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x0acd59e8 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0acec8c3 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae4b58e vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x0aef10d9 dump_emit -EXPORT_SYMBOL vmlinux 0x0af9924f kern_unmount_array -EXPORT_SYMBOL vmlinux 0x0b11f53f cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x0b19ecba sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x0ae11cd2 devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x0aef51c9 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x0b04241d fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x0b077ff5 sunxi_sram_claim EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x0b208aed __phy_resume -EXPORT_SYMBOL vmlinux 0x0b220bac unregister_binfmt -EXPORT_SYMBOL vmlinux 0x0b23809b kset_register EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk -EXPORT_SYMBOL vmlinux 0x0b2e1249 seq_open_private -EXPORT_SYMBOL vmlinux 0x0b399658 jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x0b4f46e7 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x0b54dda8 pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x0b5a06fa input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x0b637467 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x0b439730 of_get_property EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b840b79 udpv6_sendmsg -EXPORT_SYMBOL vmlinux 0x0b90c2f2 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x0b84a464 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x0b88976f pci_clear_master +EXPORT_SYMBOL vmlinux 0x0b8de6b8 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x0b9b164b mmc_cqe_post_req EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba128ed pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x0baab146 __check_sticky -EXPORT_SYMBOL vmlinux 0x0baf675a pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x0bb8a8c9 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x0bac3f02 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x0bae7d7b get_fs_type +EXPORT_SYMBOL vmlinux 0x0bb5dd4a dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0bb8b8d4 __fs_parse +EXPORT_SYMBOL vmlinux 0x0bc3ec04 cfb_copyarea EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc6fd28 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x0bc9f75c __alloc_skb EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0be4c9cf set_cached_acl -EXPORT_SYMBOL vmlinux 0x0be4cc47 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x0be8cacf devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0be59f7b param_ops_charp +EXPORT_SYMBOL vmlinux 0x0beb640b __xfrm_route_forward EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf4b8a3 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0bfe463c scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x0c224bb5 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x0c043741 crypto_sha3_final +EXPORT_SYMBOL vmlinux 0x0c09c757 open_exec +EXPORT_SYMBOL vmlinux 0x0c105bff set_anon_super_fc EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c35cd9f dev_uc_sync -EXPORT_SYMBOL vmlinux 0x0c4ccc2b inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x0c31dd89 bioset_exit +EXPORT_SYMBOL vmlinux 0x0c333aa3 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c57841f __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x0c61b3f6 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x0c592d99 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x0c5a10d1 copy_highpage +EXPORT_SYMBOL vmlinux 0x0c5ef86b tcf_exts_validate EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c6da707 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x0c8a034d unload_nls -EXPORT_SYMBOL vmlinux 0x0c97757d dev_close -EXPORT_SYMBOL vmlinux 0x0c997bbc simple_getattr -EXPORT_SYMBOL vmlinux 0x0cad3e7a lynx_pcs_destroy -EXPORT_SYMBOL vmlinux 0x0cb0988b flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x0ca34784 folio_unlock EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0cbb9d7a bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x0cc203b4 tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd133f4 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cdf2216 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x0cfcbfe7 netif_set_real_num_queues EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d246177 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x0d1cdcf6 input_set_capability EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d3963d6 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x0d3f58b3 user_revoke EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d49f36f sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x0d4bdd6e xfrm_lookup_route EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d624a58 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x0d7e70ab netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x0d99675a set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x0da76996 mdiobus_register_device -EXPORT_SYMBOL vmlinux 0x0dcc4061 folio_wait_bit -EXPORT_SYMBOL vmlinux 0x0dcf1550 dev_trans_start -EXPORT_SYMBOL vmlinux 0x0dde30c6 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x0e109197 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x0e14e42e migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x0d5a9403 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x0d65f359 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x0d74b404 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x0d7c3ca2 sock_edemux +EXPORT_SYMBOL vmlinux 0x0d8aa61b i2c_get_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x0d9e4507 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x0da37acd dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x0db74c53 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x0deb72fc __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0decf901 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x0df610ad scsi_execute_cmd EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e1bdbc1 flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x0e1e5f4e dst_dev_put -EXPORT_SYMBOL vmlinux 0x0e316916 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x0e1792e1 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x0e3b1350 vm_mmap EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e4939a4 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x0e4c5fb9 gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x0e630584 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x0e6311a3 scsi_add_device -EXPORT_SYMBOL vmlinux 0x0e66311b generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x0e6c48ff of_node_name_prefix -EXPORT_SYMBOL vmlinux 0x0e6d2933 dev_get_by_napi_id -EXPORT_SYMBOL vmlinux 0x0e75347a bioset_init -EXPORT_SYMBOL vmlinux 0x0e8530d0 devfreq_update_interval -EXPORT_SYMBOL vmlinux 0x0e883b4b netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0x0e9d95cd pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x0e4325bf devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x0e51d40a pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x0e5d60ec dcb_getrewr_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x0e5efefe of_get_next_parent +EXPORT_SYMBOL vmlinux 0x0e93283b iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x0e9db36f sock_kmalloc EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eaa60c0 md_error +EXPORT_SYMBOL vmlinux 0x0eb5b886 vme_lm_request EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0eb81eb7 md_bitmap_endwrite EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ece1740 km_state_notify -EXPORT_SYMBOL vmlinux 0x0eda7715 flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0x0edea2d6 tso_start -EXPORT_SYMBOL vmlinux 0x0ee07350 security_sb_set_mnt_opts -EXPORT_SYMBOL vmlinux 0x0ef27faa mmc_calc_max_discard -EXPORT_SYMBOL vmlinux 0x0efa81e6 d_add_ci -EXPORT_SYMBOL vmlinux 0x0f06b66e skb_expand_head +EXPORT_SYMBOL vmlinux 0x0ed4330b ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x0edc7246 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x0edcd380 seq_read +EXPORT_SYMBOL vmlinux 0x0ee313e5 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x0f074340 dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x0f0cbbc8 noop_fsync EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f29e0fa input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x0f365835 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x0f24e6bb cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x0f27e3fc rproc_free +EXPORT_SYMBOL vmlinux 0x0f2ded41 __bforget EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f42f7f5 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x0f43cb5a input_set_timestamp -EXPORT_SYMBOL vmlinux 0x0f4ab279 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x0f4c029b freeze_super -EXPORT_SYMBOL vmlinux 0x0f55fc0c devm_request_resource +EXPORT_SYMBOL vmlinux 0x0f3aa8ae mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x0f3d8eef i2c_get_match_data +EXPORT_SYMBOL vmlinux 0x0f4727c1 udp_gro_complete EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f697255 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store +EXPORT_SYMBOL vmlinux 0x0f85f918 nlmsg_notify EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f8d3a68 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0f906b4e bio_chain +EXPORT_SYMBOL vmlinux 0x0f913c17 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x0f962ad7 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x0f9941e4 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x0f9fe992 sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0x0fa9ab83 xfrm6_protocol_register EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0faf0b40 inode_init_once +EXPORT_SYMBOL vmlinux 0x0fb21db3 __seq_open_private EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fc77057 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x0fc9249b register_console -EXPORT_SYMBOL vmlinux 0x0fc95e94 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x0fd4ee58 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x0fc1417f km_new_mapping +EXPORT_SYMBOL vmlinux 0x0fc67090 pci_request_regions +EXPORT_SYMBOL vmlinux 0x0fd5baf8 proc_set_user EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff3c424 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x0fe23c03 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x0ff1b084 mr_table_alloc EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x101e36a9 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x100bddf8 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x101d7ff5 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x1048b674 param_array_ops -EXPORT_SYMBOL vmlinux 0x104dbbfa call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x103fef10 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105d15d4 irq_set_chip EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe -EXPORT_SYMBOL vmlinux 0x107a28b7 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x107a28c5 skb_orphan_partial EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x10cf6218 lookup_positive_unlocked -EXPORT_SYMBOL vmlinux 0x10d473e9 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x10d6e251 dst_init +EXPORT_SYMBOL vmlinux 0x10a4be2c end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x10bea461 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x10cdba60 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x10d2f3d8 vme_bus_num EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range -EXPORT_SYMBOL vmlinux 0x11083d21 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x10f39a3e sock_kfree_s +EXPORT_SYMBOL vmlinux 0x110204f0 iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110f12fc input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x111ad1e0 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x112071bf cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x113cda98 bio_endio -EXPORT_SYMBOL vmlinux 0x113eec68 find_vma_intersection -EXPORT_SYMBOL vmlinux 0x1145f8d5 seg6_push_hmac -EXPORT_SYMBOL vmlinux 0x11509ddd param_set_bool +EXPORT_SYMBOL vmlinux 0x11338448 blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1170db2c user_path_create -EXPORT_SYMBOL vmlinux 0x1175cd29 ip6_output -EXPORT_SYMBOL vmlinux 0x11845ecb simple_unlink -EXPORT_SYMBOL vmlinux 0x11ad699d page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x11b04c5f mmc_gpiod_request_cd_irq -EXPORT_SYMBOL vmlinux 0x11bb2e27 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x11c73462 arp_xmit -EXPORT_SYMBOL vmlinux 0x11cd7b85 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0x11d2ecc9 amba_device_register -EXPORT_SYMBOL vmlinux 0x11e2db77 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x11737842 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x11786c3c __alloc_pages +EXPORT_SYMBOL vmlinux 0x117d5060 input_copy_abs +EXPORT_SYMBOL vmlinux 0x117e8105 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x11822441 param_get_string +EXPORT_SYMBOL vmlinux 0x118890b2 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x119b98e5 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x11c821ec prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x11da18c0 d_alloc_anon EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset -EXPORT_SYMBOL vmlinux 0x12166dc2 of_parse_phandle_with_args_map -EXPORT_SYMBOL vmlinux 0x12316795 phy_driver_register -EXPORT_SYMBOL vmlinux 0x1233eff2 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x122916d7 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x122c3a7e _printk +EXPORT_SYMBOL vmlinux 0x123face2 __bh_read +EXPORT_SYMBOL vmlinux 0x12407fad ps2_sliced_command EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x1271a84e dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x12590809 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x12636f37 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x126a9625 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x1273bc5a input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x12831e12 dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x1286d21d pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x129b20ad xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x129ede95 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x12891f52 vme_bus_type +EXPORT_SYMBOL vmlinux 0x129c76a2 of_property_read_reg EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12bd3bd9 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x12a7d4fc netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x12ac5b20 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x12bbba29 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x12bce168 ethtool_rx_flow_rule_destroy EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d77028 qdisc_put +EXPORT_SYMBOL vmlinux 0x12ee6789 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var -EXPORT_SYMBOL vmlinux 0x1300a0fe flow_rule_match_l2tpv3 -EXPORT_SYMBOL vmlinux 0x130747e7 generic_writepages -EXPORT_SYMBOL vmlinux 0x13098b81 cdev_del +EXPORT_SYMBOL vmlinux 0x12f86695 mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x1310ef7d pnp_disable_dev EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x1312a2bd kernel_getsockname -EXPORT_SYMBOL vmlinux 0x1312b1c8 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x13187539 key_move EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x13277c57 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x1341c508 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x13517adb dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x1369c746 d_obtain_root -EXPORT_SYMBOL vmlinux 0x1375a579 finalize_exec -EXPORT_SYMBOL vmlinux 0x13831a40 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x1383e58b generic_write_end +EXPORT_SYMBOL vmlinux 0x131c5fe0 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x133631de ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x1347d24e locks_copy_lock +EXPORT_SYMBOL vmlinux 0x13530fcb simple_write_begin +EXPORT_SYMBOL vmlinux 0x135f32e6 netif_device_attach +EXPORT_SYMBOL vmlinux 0x135f8293 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x1360dc87 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x1374dc8c jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x137980c3 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x1379c04e tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x137d39e4 genphy_read_master_slave EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13ba28b9 flow_rule_match_enc_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x13c23ca3 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x13a4fdb2 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x13a60ead vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x13b4d31f pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x13c0f784 con_is_visible EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d90f07 padata_do_serial EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13e5e085 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x1402dd2d dma_set_coherent_mask -EXPORT_SYMBOL vmlinux 0x14034b3d netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x140ebdd7 do_SAK +EXPORT_SYMBOL vmlinux 0x13e03aee skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x13e9c3f7 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x14067cae ww_mutex_lock EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x1432fd1d simple_recursive_removal -EXPORT_SYMBOL vmlinux 0x1436d187 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x14430e21 phy_print_status -EXPORT_SYMBOL vmlinux 0x14449ac7 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x1435c2bd mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x1437d510 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x14382798 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x1440783e key_task_permission +EXPORT_SYMBOL vmlinux 0x14432477 kernel_listen EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x14660619 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x147e37a8 zpool_register_driver -EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub -EXPORT_SYMBOL vmlinux 0x14890534 vga_get -EXPORT_SYMBOL vmlinux 0x1498a57d dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x149e2fb2 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x14a033f1 sock_set_mark +EXPORT_SYMBOL vmlinux 0x147c205e generic_listxattr +EXPORT_SYMBOL vmlinux 0x147d3eeb tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg -EXPORT_SYMBOL vmlinux 0x14c14e66 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x14c4388f xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cbb785 pci_get_slot +EXPORT_SYMBOL vmlinux 0x14d1e00e vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x14d5249c rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14efcbca dquot_release -EXPORT_SYMBOL vmlinux 0x14f31126 km_report +EXPORT_SYMBOL vmlinux 0x14e54c32 tty_devnum +EXPORT_SYMBOL vmlinux 0x14e6a5ba scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x14e75691 lock_rename EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14f4c326 dma_mmap_attrs -EXPORT_SYMBOL vmlinux 0x1514a9f4 __destroy_inode -EXPORT_SYMBOL vmlinux 0x15180bf2 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x15029d53 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x1515c80e init_pseudo +EXPORT_SYMBOL vmlinux 0x151670b9 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x151c96b6 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x152625f6 pnp_get_resource EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x1538f7e0 param_get_uint +EXPORT_SYMBOL vmlinux 0x1527cd3f bio_reset +EXPORT_SYMBOL vmlinux 0x152845c9 devm_extcon_register_notifier_all EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x154b8884 seq_lseek EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x15533511 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x155b0939 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0x159b60b5 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x15b1db41 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x156316ac mmc_retune_release +EXPORT_SYMBOL vmlinux 0x1563f1b7 fasync_helper +EXPORT_SYMBOL vmlinux 0x15709924 dev_kfree_skb_irq_reason +EXPORT_SYMBOL vmlinux 0x157cf8bc __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x15865cfb security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x158c6c4e mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x15a4f146 nd_device_notify +EXPORT_SYMBOL vmlinux 0x15a788a5 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x15b0e3a5 inet_frag_find EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial -EXPORT_SYMBOL vmlinux 0x15c06eee rproc_elf_get_boot_addr -EXPORT_SYMBOL vmlinux 0x15c123ae fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x15c2de07 tegra_ivc_notified EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15ce9784 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x15ded30f send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x15df5d0a md_done_sync +EXPORT_SYMBOL vmlinux 0x15e7d6ef tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x15f28729 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x1602aaba mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0x16254fbb hmm_range_fault +EXPORT_SYMBOL vmlinux 0x160beafd of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x160db6b7 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x161cae27 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x161d0fab input_unregister_handler +EXPORT_SYMBOL vmlinux 0x16204fd0 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x16259967 crypto_sha1_finup EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162f0c66 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x162cc370 dma_mmap_attrs EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1639c63f pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x163a4ad8 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x163bdd14 dquot_scan_active EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x16506b75 init_special_inode -EXPORT_SYMBOL vmlinux 0x1656f25c genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x16628fed xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x16797da3 pci_enable_device +EXPORT_SYMBOL vmlinux 0x1644b44c simple_get_link +EXPORT_SYMBOL vmlinux 0x1648c947 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x164cf50e of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x16572635 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x1670dd98 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x16717812 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x167b0d11 fput EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump -EXPORT_SYMBOL vmlinux 0x168a8273 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x167e9ca7 blk_queue_max_hw_sectors EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x169bc36e __of_parse_phandle_with_args EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x16ae8a49 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x16b8a6b5 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16d428c1 __dev_set_mtu EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e55036 mipi_dsi_dcs_set_tear_scanline EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16f6e1fa sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x1705df87 finish_open +EXPORT_SYMBOL vmlinux 0x16e8f321 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x16fcb4ac ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x17070d79 genphy_resume EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x17104ea1 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x1740b049 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x17449763 touchscreen_parse_properties -EXPORT_SYMBOL vmlinux 0x174c5994 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x175158aa iproc_msi_exit -EXPORT_SYMBOL vmlinux 0x17536612 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x175b2f12 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x175dccd3 bio_split -EXPORT_SYMBOL vmlinux 0x177c0114 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x170fc281 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x171a8d8a fs_bio_set +EXPORT_SYMBOL vmlinux 0x17346ae9 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x1742de70 kill_litter_super +EXPORT_SYMBOL vmlinux 0x174d20cf of_match_node +EXPORT_SYMBOL vmlinux 0x17532fbd mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x176a353e flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0x177cdbf5 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x17881966 scsi_target_quiesce EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x178ccec4 vme_slave_request -EXPORT_SYMBOL vmlinux 0x17ab38ad set_page_dirty -EXPORT_SYMBOL vmlinux 0x17b558f5 tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0x17b5d7bf kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x17bb35ac proto_register -EXPORT_SYMBOL vmlinux 0x17c2b9ef blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x17c8ed4c inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x17cf20a7 nf_ip_checksum -EXPORT_SYMBOL vmlinux 0x17df6461 consume_skb -EXPORT_SYMBOL vmlinux 0x17fb2909 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x180173d3 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x181ee28c pcie_ptm_enabled -EXPORT_SYMBOL vmlinux 0x18329f57 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x17938164 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x179f8143 of_translate_dma_region +EXPORT_SYMBOL vmlinux 0x17c6ef70 page_get_link +EXPORT_SYMBOL vmlinux 0x17cbefe1 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x17d786bb netdev_features_change +EXPORT_SYMBOL vmlinux 0x17d7e4f4 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x17ed20c4 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x1819a3f5 register_sysctl EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace -EXPORT_SYMBOL vmlinux 0x1844cd22 platform_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x1848ac1a pci_disable_link_state -EXPORT_SYMBOL vmlinux 0x1863cabe pci_scan_slot -EXPORT_SYMBOL vmlinux 0x18644daa qdisc_offload_query_caps -EXPORT_SYMBOL vmlinux 0x186f2507 vga_client_register +EXPORT_SYMBOL vmlinux 0x1849571c dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free -EXPORT_SYMBOL vmlinux 0x1883ee5e vme_bus_type +EXPORT_SYMBOL vmlinux 0x187f9fd1 tty_port_tty_get EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x18a3fd56 iov_iter_init +EXPORT_SYMBOL vmlinux 0x1896ba02 scsi_host_lookup EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18d79e0c fwnode_irq_get -EXPORT_SYMBOL vmlinux 0x18ddb4f1 km_policy_expired -EXPORT_SYMBOL vmlinux 0x18e19a03 mpage_read_folio -EXPORT_SYMBOL vmlinux 0x18e3eb16 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x18c81686 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x18e0dd8b user_path_create EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18f5d01a input_unregister_device -EXPORT_SYMBOL vmlinux 0x18fbd34d dma_async_device_register -EXPORT_SYMBOL vmlinux 0x19538678 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x1904c05e amba_release_regions +EXPORT_SYMBOL vmlinux 0x19077eb0 make_kgid +EXPORT_SYMBOL vmlinux 0x190cd3cc security_path_unlink +EXPORT_SYMBOL vmlinux 0x19149392 sockopt_lock_sock +EXPORT_SYMBOL vmlinux 0x1943e78a tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x195d6ccd ip_defrag -EXPORT_SYMBOL vmlinux 0x196862a4 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x196f847d sg_alloc_table_from_pages_segment -EXPORT_SYMBOL vmlinux 0x1970d947 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x1959bc8c dev_uc_add +EXPORT_SYMBOL vmlinux 0x197d5b60 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x1983b86a migrate_vma_pages EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198ac0c8 tcf_action_exec -EXPORT_SYMBOL vmlinux 0x198fbd92 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19ac347a sock_set_priority -EXPORT_SYMBOL vmlinux 0x19b0b5cd md_bitmap_startwrite -EXPORT_SYMBOL vmlinux 0x19b2c4fa fb_get_mode +EXPORT_SYMBOL vmlinux 0x19ac7f24 iptun_encaps +EXPORT_SYMBOL vmlinux 0x19ae25c9 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x19b4b4bc d_tmpfile EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c0ebb2 scsi_device_put -EXPORT_SYMBOL vmlinux 0x19d8d752 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x19e54a3a flow_rule_match_enc_ports -EXPORT_SYMBOL vmlinux 0x19f4e0e7 mdio_device_remove -EXPORT_SYMBOL vmlinux 0x1a07d073 skb_flow_get_icmp_tci -EXPORT_SYMBOL vmlinux 0x1a43e914 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x19ced17d mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x19dd61d5 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x19e86f09 inet_frags_init +EXPORT_SYMBOL vmlinux 0x1a0e6431 inc_nlink +EXPORT_SYMBOL vmlinux 0x1a1e821c i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x1a2f06f2 d_alloc +EXPORT_SYMBOL vmlinux 0x1a3665d0 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x1a40ddf1 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a5764bc __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x1a81d69b sockopt_release_sock -EXPORT_SYMBOL vmlinux 0x1a994f47 do_splice_direct +EXPORT_SYMBOL vmlinux 0x1a620a0e twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x1a640ef6 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x1a6b57f2 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x1a7033a8 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x1a80ad92 phy_stop +EXPORT_SYMBOL vmlinux 0x1a82e0dc __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1a8bb4b0 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x1a98ea64 of_get_cpu_node EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1aa37607 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x1a9f128d dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x1aa0a1a5 set_capacity +EXPORT_SYMBOL vmlinux 0x1abcc546 lock_rename_child +EXPORT_SYMBOL vmlinux 0x1ac4ce43 mdiobb_read_c22 EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ad34aa5 __udp_disconnect -EXPORT_SYMBOL vmlinux 0x1ae2535e param_get_string -EXPORT_SYMBOL vmlinux 0x1af32863 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x1ae890c9 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x1af90e7b icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x1afe7575 max8925_bulk_read EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b073122 __put_user_ns -EXPORT_SYMBOL vmlinux 0x1b0f9bc4 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x1b180eaf posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x1b2beed1 retire_super -EXPORT_SYMBOL vmlinux 0x1b34afea netdev_crit +EXPORT_SYMBOL vmlinux 0x1b0a31c5 generic_buffers_fsync +EXPORT_SYMBOL vmlinux 0x1b110f8a inode_update_time +EXPORT_SYMBOL vmlinux 0x1b261f9f elv_rb_find +EXPORT_SYMBOL vmlinux 0x1b304f99 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x1b335af2 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x1b336dab ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b5cf1c2 phy_drivers_register EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b834a29 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x1b78a713 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x1b7ac69c phy_read_paged +EXPORT_SYMBOL vmlinux 0x1b8fcb45 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x1b90ed6c dquot_initialize EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc -EXPORT_SYMBOL vmlinux 0x1bb62586 uart_unregister_driver EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bcaf1bb devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0x1bce3898 folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x1bd19d6b pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x1bc70f5e flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x1bd53496 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent -EXPORT_SYMBOL vmlinux 0x1bdc3e04 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x1be6cccb ps2_init -EXPORT_SYMBOL vmlinux 0x1bfff46a nla_append -EXPORT_SYMBOL vmlinux 0x1c153244 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0x1c153799 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x1c15cdf3 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x1c1b92c2 vme_register_driver -EXPORT_SYMBOL vmlinux 0x1c355696 register_cdrom -EXPORT_SYMBOL vmlinux 0x1c434bf2 tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0x1c4a5eeb netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x1be00271 __nla_reserve +EXPORT_SYMBOL vmlinux 0x1be177eb dev_activate +EXPORT_SYMBOL vmlinux 0x1be32e4a get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x1be70417 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x1bec0eb3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x1bf173fa xattr_full_name +EXPORT_SYMBOL vmlinux 0x1bfcc11d page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x1c115113 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x1c1feb85 udp_seq_start +EXPORT_SYMBOL vmlinux 0x1c21adbf skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1c2857b8 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1c5463a4 inet6_ioctl EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c66c22f input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x1c66e03f mdiobb_write -EXPORT_SYMBOL vmlinux 0x1c698163 current_time -EXPORT_SYMBOL vmlinux 0x1c9124bb security_sctp_assoc_established -EXPORT_SYMBOL vmlinux 0x1c9d3145 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x1c5eab81 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x1c7cf86a jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x1c857b49 request_key_rcu +EXPORT_SYMBOL vmlinux 0x1c9275a3 cdev_del EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb4c747 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1ce52199 blk_rq_append_bio EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1cf6a93a ps2_interrupt EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0e5b62 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x1d13df7e fman_set_port_params EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d1b79c7 __do_once_done EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d315759 tls_server_hello_x509 EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d456e69 of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0x1d524a0e sock_no_mmap -EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0x1d631ca4 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x1d7d763b param_get_long -EXPORT_SYMBOL vmlinux 0x1d7ed73c tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x1d4ba58b brioctl_set +EXPORT_SYMBOL vmlinux 0x1d537924 crypto_sha3_update +EXPORT_SYMBOL vmlinux 0x1d61c7ba blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x1d794855 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x1d7c03be pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x1d84717d dcb_getapp +EXPORT_SYMBOL vmlinux 0x1d93ddab of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1d97da11 reuseport_select_sock -EXPORT_SYMBOL vmlinux 0x1dbe4197 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x1dac284c seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x1db81eca md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key -EXPORT_SYMBOL vmlinux 0x1dcb9abd neigh_app_ns +EXPORT_SYMBOL vmlinux 0x1dd15fcb scsi_device_set_state EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap -EXPORT_SYMBOL vmlinux 0x1dd99445 ps2_command EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel -EXPORT_SYMBOL vmlinux 0x1dfaa4dd efi EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e1a6087 inc_node_page_state -EXPORT_SYMBOL vmlinux 0x1e24c3da xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x1e3089fc folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0x1e310801 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x1e35de1f dst_release -EXPORT_SYMBOL vmlinux 0x1e390f95 phy_drivers_unregister -EXPORT_SYMBOL vmlinux 0x1e4a9c45 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0x1e5464c3 page_readlink +EXPORT_SYMBOL vmlinux 0x1e0d762b __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x1e0dd002 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x1e131077 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x1e194b0f d_rehash +EXPORT_SYMBOL vmlinux 0x1e2b5328 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x1e405af0 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e702a0c ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x1e710c6b input_reset_device EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ea3d208 ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x1ecdfc9c phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x1ed06d94 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x1ea082d6 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x1eaa398a inode_permission +EXPORT_SYMBOL vmlinux 0x1eb425cd pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x1ec492d2 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 -EXPORT_SYMBOL vmlinux 0x1edd2f9a xudma_get_device +EXPORT_SYMBOL vmlinux 0x1ee1c89a vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x1ee510d9 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1eeaaf5d vfs_fsync EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format -EXPORT_SYMBOL vmlinux 0x1efc85ec ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x1f0a800a dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x1f1c4fc5 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x1f1cdbbe devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x1f366b06 d_splice_alias -EXPORT_SYMBOL vmlinux 0x1f390b94 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1f3b9749 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x1f3dd90e __scsi_print_sense EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f5c6714 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x1f63f85a dump_page -EXPORT_SYMBOL vmlinux 0x1f6a63e9 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x1f785cc1 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x1f8d76c7 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x1f9bbe4a freeze_bdev +EXPORT_SYMBOL vmlinux 0x1f58f59e filemap_release_folio +EXPORT_SYMBOL vmlinux 0x1f5c09e7 amba_driver_register +EXPORT_SYMBOL vmlinux 0x1f770325 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x1f825f0f cdev_set_parent +EXPORT_SYMBOL vmlinux 0x1f93f732 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x1f9e45ca vme_register_driver +EXPORT_SYMBOL vmlinux 0x1fb4c41b __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x1fb7f9c0 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x1fb81857 inet_frags_fini EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbe46ab page_symlink +EXPORT_SYMBOL vmlinux 0x1fc0568f get_unmapped_area +EXPORT_SYMBOL vmlinux 0x1fc1109e proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1fcc57ee ppp_unregister_channel EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag -EXPORT_SYMBOL vmlinux 0x1fd18119 eth_header_parse -EXPORT_SYMBOL vmlinux 0x1fdb56b9 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x1fdd8d18 __scm_send -EXPORT_SYMBOL vmlinux 0x1fe9d21f md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x1fd7c6b0 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x1fda5994 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1fe5cfc6 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x1ff695b9 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x1ff8d12a devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1ffa2e7e qdisc_create_dflt EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20149926 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x2017af30 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x201dc399 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x202b4c71 noop_qdisc -EXPORT_SYMBOL vmlinux 0x202f44b8 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x202fded3 vma_alloc_folio -EXPORT_SYMBOL vmlinux 0x2045b612 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x2046231c of_get_next_child +EXPORT_SYMBOL vmlinux 0x201d0265 sock_set_priority +EXPORT_SYMBOL vmlinux 0x20421c45 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x20428fdc input_match_device_id EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x20689b35 is_acpi_data_node -EXPORT_SYMBOL vmlinux 0x207c7e34 netpoll_print_options -EXPORT_SYMBOL vmlinux 0x208c827a crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x20641137 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x206bc314 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x20831d32 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x209bda72 fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b7fff1 __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x20c5f7d2 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x20b57062 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d30d14 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x20d4c900 dquot_scan_active EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e08f33 dquot_get_state +EXPORT_SYMBOL vmlinux 0x20d93063 empty_aops +EXPORT_SYMBOL vmlinux 0x20e7ac5c dst_discard_out EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20fbb335 seq_puts -EXPORT_SYMBOL vmlinux 0x2122fedd unix_get_socket -EXPORT_SYMBOL vmlinux 0x21335cbd pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x2137e16c mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x20f869ad __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x20ff67fd kern_unmount +EXPORT_SYMBOL vmlinux 0x21083eef max8925_reg_write +EXPORT_SYMBOL vmlinux 0x21089cf7 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x210ae241 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x21135e9a console_stop +EXPORT_SYMBOL vmlinux 0x211899ab d_obtain_alias EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x21429601 __invalidate_device -EXPORT_SYMBOL vmlinux 0x214ee1a6 param_ops_long -EXPORT_SYMBOL vmlinux 0x2183b072 uart_register_driver -EXPORT_SYMBOL vmlinux 0x218cfb45 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x214446fc fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x21562b88 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x215833d2 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x2160fd1f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x216afd51 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x217117a8 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x21755940 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x217691a8 mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21963a02 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0x219b7605 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x21a4eb92 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x21a5f528 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x21b244a0 security_sctp_bind_connect -EXPORT_SYMBOL vmlinux 0x21b8215c of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x21b8bed2 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x2190a68a tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x219e7103 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x21aabb12 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x21b9f830 netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance -EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check -EXPORT_SYMBOL vmlinux 0x21d7a6f0 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x21c6d033 blkdev_put EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e95190 flow_block_cb_free -EXPORT_SYMBOL vmlinux 0x21ea28e9 dma_sync_single_for_cpu EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x220b1726 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x2227b5c0 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x2207206f tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list -EXPORT_SYMBOL vmlinux 0x2241080b request_firmware -EXPORT_SYMBOL vmlinux 0x224b6e7f mmc_register_driver +EXPORT_SYMBOL vmlinux 0x223acd11 padata_free EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2269c01c netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x226f27c5 param_get_ullong -EXPORT_SYMBOL vmlinux 0x2289e856 md_write_end -EXPORT_SYMBOL vmlinux 0x229cd8ff vlan_for_each -EXPORT_SYMBOL vmlinux 0x229ddfa2 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x22a1422d percpu_counter_sum_all -EXPORT_SYMBOL vmlinux 0x22a6a852 pci_irq_vector -EXPORT_SYMBOL vmlinux 0x22b0820b acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x224d00c4 sock_no_connect +EXPORT_SYMBOL vmlinux 0x22516d91 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x226b37ac ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x22836383 param_set_uint +EXPORT_SYMBOL vmlinux 0x2294142f watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x22aa8cb4 ip6_xmit +EXPORT_SYMBOL vmlinux 0x22ad7d18 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22b787a7 serio_unregister_port -EXPORT_SYMBOL vmlinux 0x22bffe1d folio_mark_accessed -EXPORT_SYMBOL vmlinux 0x22c203f2 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0x22d12e97 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x22e2f074 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x22e8b447 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0x22f43d98 md_update_sb -EXPORT_SYMBOL vmlinux 0x2316431f tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x22b571fb vfs_create +EXPORT_SYMBOL vmlinux 0x22b63bc3 submit_bio +EXPORT_SYMBOL vmlinux 0x22c2894c __block_write_full_folio +EXPORT_SYMBOL vmlinux 0x22d2e4a1 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x22efbef5 tcp_check_req +EXPORT_SYMBOL vmlinux 0x22f4bddf inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x23009d9e of_graph_get_remote_port EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x235b0637 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x23587332 sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x2381648b __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x236aa862 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x237d5dbd phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x23934829 lynx_get_mdio_device -EXPORT_SYMBOL vmlinux 0x23aaa4bf dev_set_threaded -EXPORT_SYMBOL vmlinux 0x23b2df10 is_bad_inode EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23bb5bdc lock_sock_nested +EXPORT_SYMBOL vmlinux 0x23c5237d mmc_command_done +EXPORT_SYMBOL vmlinux 0x23ccdd15 ipmi_platform_add EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23dcf48f xfrm_init_state -EXPORT_SYMBOL vmlinux 0x23dddd26 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x23dc7f6c hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x23e5082d pcibus_to_node EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count -EXPORT_SYMBOL vmlinux 0x23f86a62 mdiobus_read +EXPORT_SYMBOL vmlinux 0x23fa057a path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x23fcc7c6 is_subdir EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x2436db10 __cgroup_bpf_run_filter_sock_ops -EXPORT_SYMBOL vmlinux 0x24394e1d inet_csk_accept -EXPORT_SYMBOL vmlinux 0x243b0910 dqget +EXPORT_SYMBOL vmlinux 0x23fea3b7 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x24115a2c default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x242978e1 param_ops_bool +EXPORT_SYMBOL vmlinux 0x243c17b1 vfs_mkdir EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x244bfc1f xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0x2456383c vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x24584d79 starget_for_each_device EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x24775296 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x245a181b nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x24694ca6 __bread_gfp +EXPORT_SYMBOL vmlinux 0x246c7f15 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x247ace0e tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x249192a3 nf_hook_slow_list -EXPORT_SYMBOL vmlinux 0x24ad25e1 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x24b5273f qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x24bfdb73 ww_mutex_trylock -EXPORT_SYMBOL vmlinux 0x24c7ff67 override_creds +EXPORT_SYMBOL vmlinux 0x248fdf97 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x2496d91d security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x24b432d4 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x24b8b9d6 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x24c8b430 cdev_device_add EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer -EXPORT_SYMBOL vmlinux 0x24de17ff xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x24d808a6 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24fc1e77 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x24e765de netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x24f60f8e peernet2id +EXPORT_SYMBOL vmlinux 0x24f82a0a sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x25002c73 jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x250eb85e d_find_alias +EXPORT_SYMBOL vmlinux 0x250920b6 of_device_is_available +EXPORT_SYMBOL vmlinux 0x25185f13 inet6_getname +EXPORT_SYMBOL vmlinux 0x25194489 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x251beb9c make_bad_inode EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x25339e85 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x253e6737 fc_mount -EXPORT_SYMBOL vmlinux 0x25514ae4 __netif_rx -EXPORT_SYMBOL vmlinux 0x25535d87 tty_check_change -EXPORT_SYMBOL vmlinux 0x255c198c dquot_initialize -EXPORT_SYMBOL vmlinux 0x2566204b security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x25321eef prepare_creds +EXPORT_SYMBOL vmlinux 0x255da529 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x258a9e98 vfs_mkobj EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation -EXPORT_SYMBOL vmlinux 0x258e5573 __block_write_full_page EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x259ebfe6 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x25a9d0cf bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0x25b47618 skb_pull -EXPORT_SYMBOL vmlinux 0x25bc6b45 locks_delete_block -EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x2598c6c0 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x25ada39f __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x25b33833 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x25c13c15 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x25e96a82 cros_ec_check_result EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x261b2254 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x261f5cb9 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x26325148 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x25eb93e9 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x26060d14 set_groups +EXPORT_SYMBOL vmlinux 0x261cb182 neigh_xmit +EXPORT_SYMBOL vmlinux 0x261cdb97 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x2629bacf proc_symlink +EXPORT_SYMBOL vmlinux 0x26302a9f genphy_suspend +EXPORT_SYMBOL vmlinux 0x26326d6b setattr_should_drop_sgid EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp -EXPORT_SYMBOL vmlinux 0x263d5226 inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x265c36a4 devm_free_irq -EXPORT_SYMBOL vmlinux 0x267d02a7 inet_bind +EXPORT_SYMBOL vmlinux 0x26445593 skb_store_bits +EXPORT_SYMBOL vmlinux 0x265d0772 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x265e2794 twl6040_power EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26af4781 bpf_map_get -EXPORT_SYMBOL vmlinux 0x26d7d105 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x26e0f579 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x268c7477 truncate_setsize +EXPORT_SYMBOL vmlinux 0x26979778 file_ns_capable +EXPORT_SYMBOL vmlinux 0x269c88df sock_set_mark +EXPORT_SYMBOL vmlinux 0x26a9404b tegra_dfll_runtime_resume EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26f291c1 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x26eece62 tty_port_init +EXPORT_SYMBOL vmlinux 0x26ff9f58 seq_open_private EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x27171158 param_get_invbool +EXPORT_SYMBOL vmlinux 0x270e185c pcie_set_mps +EXPORT_SYMBOL vmlinux 0x270e5919 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x271140ac eth_header +EXPORT_SYMBOL vmlinux 0x27156bf8 param_set_bint +EXPORT_SYMBOL vmlinux 0x271882b5 clear_nlink EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x271d5804 devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x27243ffb kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x272a3b68 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272d5710 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x272f8072 dma_fence_describe EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x273c0fb5 get_vm_area +EXPORT_SYMBOL vmlinux 0x2735f8a7 km_policy_expired +EXPORT_SYMBOL vmlinux 0x2737c466 cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x27594138 inet_release -EXPORT_SYMBOL vmlinux 0x275a8c14 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x275c74fd seq_lseek EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2770c01b fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277b0970 fs_param_is_fd EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x27899312 dev_open -EXPORT_SYMBOL vmlinux 0x27975589 put_cmsg -EXPORT_SYMBOL vmlinux 0x27a145c9 clkdev_drop -EXPORT_SYMBOL vmlinux 0x27aaa51f writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x27b45a42 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x27a02609 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x27a3930c scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x27a6302b pci_get_device +EXPORT_SYMBOL vmlinux 0x27b5da9b fwnode_iomap EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cbc5b7 kernel_read EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource -EXPORT_SYMBOL vmlinux 0x27d47000 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x27dd772e generic_file_fsync -EXPORT_SYMBOL vmlinux 0x27deb09c ipv6_dev_find EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0x27f17c93 single_release -EXPORT_SYMBOL vmlinux 0x27f905fc i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x2803a3dc fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x27e19d7d param_get_invbool +EXPORT_SYMBOL vmlinux 0x27ec20db mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x2801a22f proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x28057f7a iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x28175431 param_get_short EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x28492555 PageMovable -EXPORT_SYMBOL vmlinux 0x284ff0ec ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x287414bf dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x2822c4ec tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x282c7e12 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x28317ee4 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x28344826 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x2842729b tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x28500e13 proc_douintvec +EXPORT_SYMBOL vmlinux 0x285c817e inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x287f07c5 generic_write_checks -EXPORT_SYMBOL vmlinux 0x287f9086 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x289771bb commit_creds -EXPORT_SYMBOL vmlinux 0x28b85916 nd_region_to_nstype -EXPORT_SYMBOL vmlinux 0x28c44d04 dm_table_get_size -EXPORT_SYMBOL vmlinux 0x28c55015 md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0x28cbae91 generic_update_time -EXPORT_SYMBOL vmlinux 0x28d28e29 pm860x_bulk_write -EXPORT_SYMBOL vmlinux 0x28dbd1c3 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x28e2544f ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x28e38eca mdiobus_scan -EXPORT_SYMBOL vmlinux 0x28f6c1ab __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x287fb17b jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x288182eb sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0x28864fef __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x28a4519d flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x28af5f5b __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x28b4c784 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x28b79f91 fd_install +EXPORT_SYMBOL vmlinux 0x28d691a0 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x28ddd99b tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x28f264d7 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x28f4240f of_platform_device_create EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x291ca5ff mmc_put_card -EXPORT_SYMBOL vmlinux 0x291d0032 security_binder_set_context_mgr -EXPORT_SYMBOL vmlinux 0x29407d78 register_shrinker +EXPORT_SYMBOL vmlinux 0x28fb4271 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x2909ab4c nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x293df21d pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x2958ad15 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x295d3534 dcache_readdir EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x2965630d generic_read_dir -EXPORT_SYMBOL vmlinux 0x296a5321 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x2963275d simple_rmdir EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x2975b34a mipi_dsi_generic_write -EXPORT_SYMBOL vmlinux 0x29777f7d genphy_loopback -EXPORT_SYMBOL vmlinux 0x29787aaa tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x29a6cfc2 mipi_dsi_dcs_enter_sleep_mode -EXPORT_SYMBOL vmlinux 0x29b47e89 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x29bedc05 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x299aa5f7 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x299e7a8a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x29a5b19d skb_free_datagram +EXPORT_SYMBOL vmlinux 0x29d7e405 tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29e80d1f of_get_property -EXPORT_SYMBOL vmlinux 0x29f2315b skb_copy -EXPORT_SYMBOL vmlinux 0x29fbc146 d_alloc_parallel -EXPORT_SYMBOL vmlinux 0x2a0277ff mmc_start_request -EXPORT_SYMBOL vmlinux 0x2a0679c8 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0x2a2658d9 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x2a0ac864 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x2a1072fa blk_integrity_register +EXPORT_SYMBOL vmlinux 0x2a1f0a3f md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x2a292d88 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x2a2bec39 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a3545ff adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x2a4402da tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x2a4eef0f inet_getname +EXPORT_SYMBOL vmlinux 0x2a6950c7 of_xudma_dev_get EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a88e1d2 __bforget -EXPORT_SYMBOL vmlinux 0x2a8e551d blk_set_stacking_limits EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize -EXPORT_SYMBOL vmlinux 0x2aa23125 __brelse +EXPORT_SYMBOL vmlinux 0x2aa3eb4d generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2ac6d096 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x2ad5f6b4 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x2ae18830 config_item_set_name -EXPORT_SYMBOL vmlinux 0x2ae80b9d send_sig_info -EXPORT_SYMBOL vmlinux 0x2b001e0f xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2abca99c phy_connect_direct +EXPORT_SYMBOL vmlinux 0x2ad3562f mdiobus_scan_c22 +EXPORT_SYMBOL vmlinux 0x2ad8e1db poll_initwait +EXPORT_SYMBOL vmlinux 0x2ae854c3 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x2af25005 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x2b0af8f9 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b1b7267 fb_set_var -EXPORT_SYMBOL vmlinux 0x2b20a05d skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x2b294901 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0x2b473490 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x2b495e85 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x2b1c8178 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x2b27d529 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x2b2b6779 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x2b37de1e tcf_action_exec +EXPORT_SYMBOL vmlinux 0x2b50e3b9 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x2b589b59 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b792882 scsi_print_result +EXPORT_SYMBOL vmlinux 0x2b6b39ec xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x2b6efffa devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x2b8b4c8d dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2ba98d04 simple_transaction_set EXPORT_SYMBOL vmlinux 0x2bae204e mt_find EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bbd4930 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x2bc915d0 from_kgid -EXPORT_SYMBOL vmlinux 0x2bd40ef7 set_capacity +EXPORT_SYMBOL vmlinux 0x2bbb522b filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x2bcb9304 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x2bcce31c mode_strip_sgid EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2be338aa mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x2be5fdf1 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x2bf4487f xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x2bf788ab ip6_frag_init +EXPORT_SYMBOL vmlinux 0x2be2555d security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x2bf42725 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x2bf9bfd5 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x2bfb1631 filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2bfca951 neigh_destroy -EXPORT_SYMBOL vmlinux 0x2c000d0e pcie_get_mps -EXPORT_SYMBOL vmlinux 0x2c0e63a6 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x2c2561df xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x2c230c12 ptp_clock_unregister EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x2c297690 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x2c30c5b6 phy_init_hw EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c6eebc8 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool -EXPORT_SYMBOL vmlinux 0x2c7b0d89 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x2c598b2f eth_header_parse EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2ca9cd2e fman_bind -EXPORT_SYMBOL vmlinux 0x2cb71d06 netdev_unbind_sb_channel -EXPORT_SYMBOL vmlinux 0x2cc1fae5 inet_offloads +EXPORT_SYMBOL vmlinux 0x2caa04b0 tc_cleanup_offload_action EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top -EXPORT_SYMBOL vmlinux 0x2cdb84db blk_mq_destroy_queue -EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2cf067ac param_set_int +EXPORT_SYMBOL vmlinux 0x2cdda857 gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2cfbb9e0 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x2d0dc6e9 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x2d111bf7 generic_permission EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d1826c6 pcie_get_width_cap -EXPORT_SYMBOL vmlinux 0x2d1e3bf4 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x2d2c49fc security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3c80a8 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0x2d3cd7bc phy_attached_info -EXPORT_SYMBOL vmlinux 0x2d45441e scsi_is_target_device EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d69ed1e udp_ioctl -EXPORT_SYMBOL vmlinux 0x2d711f5b dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x2d7a8ed6 fs_context_for_mount -EXPORT_SYMBOL vmlinux 0x2d8e0596 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x2d787374 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x2d7ac3a7 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x2d7eb3d9 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2da82b28 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x2db4fd25 param_set_hexint -EXPORT_SYMBOL vmlinux 0x2dcc6f61 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x2d9b58b7 vma_set_file +EXPORT_SYMBOL vmlinux 0x2dab44e2 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x2dce2c21 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2ddbe18c mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de4bcc3 xp_free -EXPORT_SYMBOL vmlinux 0x2de7c9ce folio_clear_dirty_for_io -EXPORT_SYMBOL vmlinux 0x2e042431 dev_add_pack -EXPORT_SYMBOL vmlinux 0x2e0a3a6f request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x2e1ad26b nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x2de3e3b7 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x2df584fd file_open_root +EXPORT_SYMBOL vmlinux 0x2e0a637d acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x2e11b21c tcp_add_backlog EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put -EXPORT_SYMBOL vmlinux 0x2e1da045 filemap_release_folio -EXPORT_SYMBOL vmlinux 0x2e27df6d truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x2e22c053 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x2e2acd86 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x2e3c34ac super_setup_bdi_name EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e899df1 inet_listen -EXPORT_SYMBOL vmlinux 0x2eaf1e53 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x2e7ed475 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x2e81d444 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x2e99054e tcp_init_sock +EXPORT_SYMBOL vmlinux 0x2e9a35c4 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x2e9a7bff netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x2e9b4589 wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0x2ea2db56 proc_create_data +EXPORT_SYMBOL vmlinux 0x2eb6b44f put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x2ebda6a3 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ec7fdb2 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x2eeca122 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x2ef13504 twl6040_set_pll -EXPORT_SYMBOL vmlinux 0x2efdb762 netdev_offload_xstats_push_delta -EXPORT_SYMBOL vmlinux 0x2efe8fc8 is_free_buddy_page -EXPORT_SYMBOL vmlinux 0x2efef216 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2ed82e06 pci_iomap +EXPORT_SYMBOL vmlinux 0x2eff2af9 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f04eb86 ps2_end_command -EXPORT_SYMBOL vmlinux 0x2f0529e1 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x2f09ba4d pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0x2f0b6349 vme_dma_list_free EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f1da1a3 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security -EXPORT_SYMBOL vmlinux 0x2f30e8f9 d_mark_dontcache EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f3477f6 locks_init_lock EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f425df8 dev_load -EXPORT_SYMBOL vmlinux 0x2f6ff31e jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2f3c396a qdisc_reset +EXPORT_SYMBOL vmlinux 0x2f738fd3 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f8587b9 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0x2f9570e0 dma_map_resource +EXPORT_SYMBOL vmlinux 0x2f7a8d3e __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x2f86982d __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x2f8a8eb7 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x2fae050f __mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x2fcb1ffe disk_check_media_change EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem -EXPORT_SYMBOL vmlinux 0x2ff9718d set_page_writeback -EXPORT_SYMBOL vmlinux 0x30334aa7 console_start -EXPORT_SYMBOL vmlinux 0x3049ee00 register_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x3072598c seq_hex_dump -EXPORT_SYMBOL vmlinux 0x307b4a62 clear_inode -EXPORT_SYMBOL vmlinux 0x308b906d mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x300f9da4 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x3010d768 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x302c58ed serio_interrupt +EXPORT_SYMBOL vmlinux 0x3031b71b touch_atime +EXPORT_SYMBOL vmlinux 0x303c1e2d mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x30586006 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x3065dd1b do_clone_file_range +EXPORT_SYMBOL vmlinux 0x3065e3a8 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x30671867 kernel_write +EXPORT_SYMBOL vmlinux 0x30688cd7 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x306c2350 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x306d99e9 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x306fef04 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x30893401 dquot_resume +EXPORT_SYMBOL vmlinux 0x30939637 rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep -EXPORT_SYMBOL vmlinux 0x30a1dc62 pin_user_pages EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x30ac882c clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30d2c43c xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x3104ac8d rproc_alloc -EXPORT_SYMBOL vmlinux 0x310e54ec phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x30b98bfe skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x30e22e7c generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x30f0f59d sock_wfree +EXPORT_SYMBOL vmlinux 0x310bf507 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x3130d12e __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x315fd2c3 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0x3171f70c serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring -EXPORT_SYMBOL vmlinux 0x319df0d5 backlight_device_set_brightness -EXPORT_SYMBOL vmlinux 0x31a22598 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x313397ba xfrm_register_km +EXPORT_SYMBOL vmlinux 0x3138552e inetdev_by_index +EXPORT_SYMBOL vmlinux 0x31478c45 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3149ba26 skb_find_text +EXPORT_SYMBOL vmlinux 0x314b4edb pagecache_get_page +EXPORT_SYMBOL vmlinux 0x31551d89 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x3166f622 sg_miter_next +EXPORT_SYMBOL vmlinux 0x316e96cb skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x319f78cf param_ops_ushort EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31bd631d rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x31cd2b42 vme_irq_request -EXPORT_SYMBOL vmlinux 0x31dfd9f4 mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x32010879 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x31a90a5e rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x31cea8d2 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x31d2e122 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x31dfe2b4 sock_init_data +EXPORT_SYMBOL vmlinux 0x31e6bc43 thread_group_exited +EXPORT_SYMBOL vmlinux 0x32070a28 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x320a2c75 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x320d459b param_get_hexint EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x3217e9f7 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x321ac9df mii_ethtool_gset EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32356bcd fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x324736fe ethtool_get_phc_vclocks -EXPORT_SYMBOL vmlinux 0x324e36c6 get_cached_acl -EXPORT_SYMBOL vmlinux 0x324f3a98 device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x32625da6 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x325b1384 free_buffer_head +EXPORT_SYMBOL vmlinux 0x326b6e61 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x326c6423 remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x32804d1d fscrypt_decrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state -EXPORT_SYMBOL vmlinux 0x3289e9c9 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x329941fe napi_consume_skb -EXPORT_SYMBOL vmlinux 0x32a26541 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x32a58cbd mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x32a9d3e9 proto_unregister -EXPORT_SYMBOL vmlinux 0x32b8bd76 __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x32bab92e mdio_device_create -EXPORT_SYMBOL vmlinux 0x32c29876 ihold +EXPORT_SYMBOL vmlinux 0x32a0931d input_set_timestamp +EXPORT_SYMBOL vmlinux 0x32a591d7 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x32a5f0eb devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x32bb076e mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x32bb21cd fs_param_is_path +EXPORT_SYMBOL vmlinux 0x32c59d7b devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32d73a55 security_sk_clone -EXPORT_SYMBOL vmlinux 0x32e1c92b to_nd_btt +EXPORT_SYMBOL vmlinux 0x32da10a9 __mark_inode_dirty EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32f691c2 generic_file_open -EXPORT_SYMBOL vmlinux 0x32fb0f70 mdio_device_reset EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x330c959f sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x331c1bbd fd_install -EXPORT_SYMBOL vmlinux 0x332b76f6 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x333b02c6 input_setup_polling +EXPORT_SYMBOL vmlinux 0x33088e6b eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x330d75d7 vga_client_register +EXPORT_SYMBOL vmlinux 0x332070d3 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x332d803d xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x333bfca1 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3352d8a3 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x335bb2fd pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x336958ed __sk_dst_check EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x3383103f thermal_zone_device_critical -EXPORT_SYMBOL vmlinux 0x339b2ab8 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x33a410c5 generic_fillattr -EXPORT_SYMBOL vmlinux 0x33af6985 pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x33b0c72d __put_devmap_managed_page_refs -EXPORT_SYMBOL vmlinux 0x33bc1df4 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0x33bce27f textsearch_unregister -EXPORT_SYMBOL vmlinux 0x33c75457 sync_filesystem -EXPORT_SYMBOL vmlinux 0x33df63fc fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x33e02fc6 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x33eb6bad key_invalidate +EXPORT_SYMBOL vmlinux 0x3380f95f is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x338385b2 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x3386060d t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x33865e1e sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x339086b2 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x33adc717 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x33bcb006 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x33c53690 mmc_free_host +EXPORT_SYMBOL vmlinux 0x33d0efce configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max -EXPORT_SYMBOL vmlinux 0x33fc99d7 registered_fb EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x3439c8d7 vga_put -EXPORT_SYMBOL vmlinux 0x344411db xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x34488426 tty_register_device -EXPORT_SYMBOL vmlinux 0x344cfa88 rt_dst_clone -EXPORT_SYMBOL vmlinux 0x3453baad mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x34575efb ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x346bc098 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x346d1f34 dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3470cf66 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x347920f8 vfs_fsync -EXPORT_SYMBOL vmlinux 0x3482e75d crypto_kdf108_ctr_generate -EXPORT_SYMBOL vmlinux 0x348dbe17 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x348f16ab km_state_expired -EXPORT_SYMBOL vmlinux 0x3495a13a ip_frag_next +EXPORT_SYMBOL vmlinux 0x34163f7d vme_irq_handler +EXPORT_SYMBOL vmlinux 0x3417df36 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x34257033 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x342f34e9 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x34871293 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x349cba85 strchr -EXPORT_SYMBOL vmlinux 0x349e0ad5 netlink_set_err +EXPORT_SYMBOL vmlinux 0x349e9535 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34bab73d devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x34a2b634 param_ops_string +EXPORT_SYMBOL vmlinux 0x34ad2cf0 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x34b9feb5 folio_add_lru EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34e3401f tcf_classify +EXPORT_SYMBOL vmlinux 0x34effe0c blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x34faf948 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x350e6bcb i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35267751 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x35321381 blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x3532d043 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x35343c21 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x35316706 ps2_end_command +EXPORT_SYMBOL vmlinux 0x353695e5 sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x3547bc43 proc_create_data +EXPORT_SYMBOL vmlinux 0x354d47ac tegra_dfll_unregister EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x3567dc8a scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x356bf8b1 reuseport_detach_prog -EXPORT_SYMBOL vmlinux 0x357949f7 devm_devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x357cd65a xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x357d3551 folio_add_lru -EXPORT_SYMBOL vmlinux 0x359802e5 ram_aops -EXPORT_SYMBOL vmlinux 0x359a42d2 simple_empty -EXPORT_SYMBOL vmlinux 0x35a029ce ip6_frag_next -EXPORT_SYMBOL vmlinux 0x35a69160 tty_kref_put +EXPORT_SYMBOL vmlinux 0x3566d351 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x3579b7f3 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x359dd7c5 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35acf28a blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x35b472f1 pci_bus_type -EXPORT_SYMBOL vmlinux 0x35e827c1 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x35af40f2 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x35cfbdcb devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x35dce5c2 single_open_size +EXPORT_SYMBOL vmlinux 0x35e59f4b phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x35ee64b0 dquot_quota_sync EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3614e9f6 init_pseudo -EXPORT_SYMBOL vmlinux 0x36329407 __do_once_sleepable_done -EXPORT_SYMBOL vmlinux 0x3638f205 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0x363b26ed __napi_schedule -EXPORT_SYMBOL vmlinux 0x3646ffec setattr_prepare +EXPORT_SYMBOL vmlinux 0x3611b1fa devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked -EXPORT_SYMBOL vmlinux 0x364fcc0b dquot_operations -EXPORT_SYMBOL vmlinux 0x3653f252 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x365a78c9 d_rehash EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365d1a64 simple_dentry_operations EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x3680cf92 i2c_register_driver -EXPORT_SYMBOL vmlinux 0x36aab62c ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x36b22511 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init +EXPORT_SYMBOL vmlinux 0x3674cd66 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x368864da __module_get +EXPORT_SYMBOL vmlinux 0x369b8796 set_page_writeback +EXPORT_SYMBOL vmlinux 0x369c127d vfs_iter_write +EXPORT_SYMBOL vmlinux 0x369d623e inode_insert5 +EXPORT_SYMBOL vmlinux 0x36a1e4c0 pci_bus_set_ops EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36e42a44 pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0x36e93437 skb_append -EXPORT_SYMBOL vmlinux 0x36fe40e4 netlink_unicast -EXPORT_SYMBOL vmlinux 0x36feb1d9 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x37020978 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x370572b4 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x36b8b1bd dev_lstats_read +EXPORT_SYMBOL vmlinux 0x36ede041 pci_request_region EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371801b1 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x37286ff0 _dev_printk -EXPORT_SYMBOL vmlinux 0x372cfecd single_open -EXPORT_SYMBOL vmlinux 0x3742134a tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x373db46b scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x373f497d ip6tun_encaps EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x3750d40c md_write_start +EXPORT_SYMBOL vmlinux 0x3753cf56 ip_output EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x376b377f fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x3778562c configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x3792a1cc xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x37946399 kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x37951da2 rpmh_write_async -EXPORT_SYMBOL vmlinux 0x37a80523 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x37b07dd8 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x377de8d8 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x378835d5 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x379c0a0c i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x37a1a73b __xfrm_decode_session EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37cdf155 pci_request_irq +EXPORT_SYMBOL vmlinux 0x37cfa07f of_graph_is_present +EXPORT_SYMBOL vmlinux 0x37d5a097 handshake_req_alloc EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37e135a2 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x37e7e91f __inet_hash -EXPORT_SYMBOL vmlinux 0x37e84887 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x37e984a7 devfreq_recommended_opp -EXPORT_SYMBOL vmlinux 0x37fd3649 file_modified -EXPORT_SYMBOL vmlinux 0x3813c3ef inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x38180984 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x37dd5829 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x37fe9183 ps2_drain EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3827be5a send_sig -EXPORT_SYMBOL vmlinux 0x3827e6c0 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x383d2f5e md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x3846c68b put_watch_queue -EXPORT_SYMBOL vmlinux 0x3848d0d5 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x381c3891 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x382eaf10 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x38322685 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x38395888 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x383c22a6 __devm_request_region +EXPORT_SYMBOL vmlinux 0x3842761d of_graph_get_endpoint_count EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x385a7809 inode_maybe_inc_iversion -EXPORT_SYMBOL vmlinux 0x386d7a03 padata_alloc -EXPORT_SYMBOL vmlinux 0x38749d82 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x3874ea6f gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x387f4433 pci_get_device +EXPORT_SYMBOL vmlinux 0x385c7481 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x3862727a ip6_frag_next +EXPORT_SYMBOL vmlinux 0x38748612 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x38755423 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x387f06c1 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x3881d088 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x38869d88 kstat -EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x388ff009 crypto_sha3_init EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x38a8ee25 dev_get_flags EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38c1dce2 fman_get_revision -EXPORT_SYMBOL vmlinux 0x38ccd941 vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0x38d37af6 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x38e0dbb1 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x38bed3ca netdev_warn +EXPORT_SYMBOL vmlinux 0x38d7f3bd pcim_iomap +EXPORT_SYMBOL vmlinux 0x38d98f59 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x38dfafc5 sk_dst_check EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38fe2ddb param_set_ullong +EXPORT_SYMBOL vmlinux 0x39073158 wake_up_process +EXPORT_SYMBOL vmlinux 0x3908192d netlink_broadcast +EXPORT_SYMBOL vmlinux 0x39146a65 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x391a3975 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling -EXPORT_SYMBOL vmlinux 0x3940516b mipi_dsi_driver_register_full EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x39708db4 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x395d5c98 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x3965ddd3 kset_register +EXPORT_SYMBOL vmlinux 0x396b9341 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x398a7807 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x398abe31 get_vm_area +EXPORT_SYMBOL vmlinux 0x398c3ccf remove_proc_subtree EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399d25af folio_set_bh +EXPORT_SYMBOL vmlinux 0x39a6c3e1 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x39a6e6e7 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x39b0bee0 kfree_skb_reason EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug -EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue -EXPORT_SYMBOL vmlinux 0x39c1b74c pci_restore_state +EXPORT_SYMBOL vmlinux 0x39c6d25f inet_pton_with_scope EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0x39c780df netlink_broadcast -EXPORT_SYMBOL vmlinux 0x39c92b56 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x39c99e4f end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x39d18205 devm_aperture_acquire_for_platform_device EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39e97045 __icmp_send -EXPORT_SYMBOL vmlinux 0x39ece7b2 block_commit_write -EXPORT_SYMBOL vmlinux 0x39ed98a4 pci_fixup_device -EXPORT_SYMBOL vmlinux 0x39f503cb netdev_state_change -EXPORT_SYMBOL vmlinux 0x3a093781 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x3a0ed22a tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x3a16a0f3 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x3a351cae pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x3a2e2341 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x3a383cb9 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x3a4402d9 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x3a451f2d register_cdrom EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized -EXPORT_SYMBOL vmlinux 0x3a7da785 vme_dma_request -EXPORT_SYMBOL vmlinux 0x3a8a440d scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x3a8e132d __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x3aa366bc neigh_table_init -EXPORT_SYMBOL vmlinux 0x3aa43170 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x3aa5036f __neigh_event_send +EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x3a56f6ae __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x3a975407 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x3aafee16 f_setown EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3aca2710 inet6_bind -EXPORT_SYMBOL vmlinux 0x3ad2b351 ipmr_rule_default -EXPORT_SYMBOL vmlinux 0x3ad54081 genphy_resume +EXPORT_SYMBOL vmlinux 0x3abdf574 tcp_ioctl EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region -EXPORT_SYMBOL vmlinux 0x3add00c3 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x3ae11a38 kthread_create_worker EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3aeed3cb devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x3afb5089 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x3b010e27 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x3b28ee81 vfs_get_tree EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b3af114 phy_start -EXPORT_SYMBOL vmlinux 0x3b5c242b ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x3b433bc9 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x3b4eaeac of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x3b4f1604 blk_mq_run_hw_queue EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b6dbd8b tcp_read_skb EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner -EXPORT_SYMBOL vmlinux 0x3b76e57b gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x3b89d8c9 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3b807797 dma_async_device_register EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3ba7e57e mr_dump -EXPORT_SYMBOL vmlinux 0x3bb4772a ppp_input_error -EXPORT_SYMBOL vmlinux 0x3bed06bc unregister_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x3bfdcdee __nla_put +EXPORT_SYMBOL vmlinux 0x3b9c4fed d_alloc_name +EXPORT_SYMBOL vmlinux 0x3ba0f497 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x3ba18837 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x3ba1f6d0 set_posix_acl +EXPORT_SYMBOL vmlinux 0x3ba60d8d input_free_device +EXPORT_SYMBOL vmlinux 0x3bc6d7dc pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x3bcf6e67 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x3bf782e2 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x3c0d8aea uart_register_driver EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c0f0a67 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x3c14c10c qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c19df77 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x3c20d31c filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3c269c93 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x3c2b1e1d register_netdev EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c5844dc ata_print_version -EXPORT_SYMBOL vmlinux 0x3c79b0d5 start_tty -EXPORT_SYMBOL vmlinux 0x3c7e052b fscrypt_ioctl_get_policy -EXPORT_SYMBOL vmlinux 0x3c9efe41 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x3c44a51d vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0x3c45ba3a free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x3c4f4182 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x3c50a27f rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x3c66e86a tcp_close +EXPORT_SYMBOL vmlinux 0x3c6dd2f9 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x3c814828 sget +EXPORT_SYMBOL vmlinux 0x3c9d82ae phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x3ca3df13 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cb479c1 netif_device_detach EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3cccbe3b __mark_inode_dirty EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3ce31e13 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x3cdec18f par_io_of_config EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce97882 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3cf36122 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x3d184c1d jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d422c4b napi_gro_flush -EXPORT_SYMBOL vmlinux 0x3d4ba4a0 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x3d52f1b6 simple_statfs -EXPORT_SYMBOL vmlinux 0x3d5ed374 __ps2_command +EXPORT_SYMBOL vmlinux 0x3d4dba5f netdev_notice +EXPORT_SYMBOL vmlinux 0x3d5dcd9c netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3d7bac46 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x3d80abe4 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check -EXPORT_SYMBOL vmlinux 0x3d9db891 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x3d9785ea dev_open EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page -EXPORT_SYMBOL vmlinux 0x3daad313 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x3da092b8 dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x3da37639 skb_seq_read +EXPORT_SYMBOL vmlinux 0x3da85e15 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x3daae96c dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x3db12002 simple_get_link +EXPORT_SYMBOL vmlinux 0x3dbc6f24 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x3dc4cd68 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x3dc5fa55 tcp_shutdown EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dc9cd74 d_drop EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id -EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x3de05611 devm_memunmap -EXPORT_SYMBOL vmlinux 0x3df61c99 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x3dd461ce filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x3dfc74e1 invalidate_mapping_pages EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3e008b46 __lock_buffer -EXPORT_SYMBOL vmlinux 0x3e1bd4a4 param_ops_hexint -EXPORT_SYMBOL vmlinux 0x3e2c8b95 stop_tty -EXPORT_SYMBOL vmlinux 0x3e37fe32 serio_interrupt +EXPORT_SYMBOL vmlinux 0x3e087a8e tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x3e239cd5 md_reload_sb +EXPORT_SYMBOL vmlinux 0x3e355848 pnp_disable_dev EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e42ae9e par_io_of_config -EXPORT_SYMBOL vmlinux 0x3e496648 netdev_emerg -EXPORT_SYMBOL vmlinux 0x3e57ddc4 sock_wake_async -EXPORT_SYMBOL vmlinux 0x3e5f7d5c xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x3e41f98a inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x3e46461c blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x3e669a1a lookup_one +EXPORT_SYMBOL vmlinux 0x3e728aa6 __generic_file_fsync EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e8aba5d mipi_dsi_dcs_get_power_mode -EXPORT_SYMBOL vmlinux 0x3e943bb2 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x3eb6190e qdisc_watchdog_init_clockid -EXPORT_SYMBOL vmlinux 0x3ec28020 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x3e9eed84 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x3ea25a90 pci_release_region +EXPORT_SYMBOL vmlinux 0x3eaa8aaa tcp_mmap +EXPORT_SYMBOL vmlinux 0x3ebaaca8 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x3ec80652 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3edc4cc2 netdev_alert -EXPORT_SYMBOL vmlinux 0x3eeafa6c cookie_ecn_ok -EXPORT_SYMBOL vmlinux 0x3ef4d4db fget_raw +EXPORT_SYMBOL vmlinux 0x3ecee2c3 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x3ed13a44 bio_add_page +EXPORT_SYMBOL vmlinux 0x3edd8173 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x3ef310a3 nexthop_set_hw_flags EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id -EXPORT_SYMBOL vmlinux 0x3f043018 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x3f0d3057 __dev_get_by_name EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f1acd0e __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x3f26db76 pci_get_class +EXPORT_SYMBOL vmlinux 0x3f208dd1 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x3f2e7428 get_cached_acl +EXPORT_SYMBOL vmlinux 0x3f326b91 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x3f34449d cdev_alloc EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound -EXPORT_SYMBOL vmlinux 0x3f366843 devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x3f385852 scsi_block_requests EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f48dc46 vfs_mknod EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align -EXPORT_SYMBOL vmlinux 0x3f4c86c1 of_root +EXPORT_SYMBOL vmlinux 0x3f671b3c put_ipc_ns +EXPORT_SYMBOL vmlinux 0x3f79abff vme_init_bridge EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3f95d60d pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x3faaf7a6 skb_copy_and_hash_datagram_iter -EXPORT_SYMBOL vmlinux 0x3fbc6bca flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x3fbe4e4d md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x3f8efeaf inet_stream_ops +EXPORT_SYMBOL vmlinux 0x3fa9b4fa try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x3fb5c176 redraw_screen EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fd3632f dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x3fc4bea3 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x3fc9895f mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x3fcd7511 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x3fd25e3d sk_error_report +EXPORT_SYMBOL vmlinux 0x3fd53349 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x3fd53609 of_get_compatible_child EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3feda716 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x3ff6fbb7 ps2_handle_response -EXPORT_SYMBOL vmlinux 0x4007c871 fs_bio_set -EXPORT_SYMBOL vmlinux 0x40217b51 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x4030a4d0 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x407bb6b8 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x3fe8000d vme_master_request +EXPORT_SYMBOL vmlinux 0x3fec1c8b tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x3ffa49b0 inet_shutdown +EXPORT_SYMBOL vmlinux 0x3ffde1c7 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x400517f3 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x4030e0fb mmc_can_discard +EXPORT_SYMBOL vmlinux 0x40344032 register_quota_format +EXPORT_SYMBOL vmlinux 0x40366f01 skb_eth_push +EXPORT_SYMBOL vmlinux 0x403f89f2 phy_device_free +EXPORT_SYMBOL vmlinux 0x4044ead1 pci_match_id +EXPORT_SYMBOL vmlinux 0x404a6b9b jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot -EXPORT_SYMBOL vmlinux 0x40907e5a __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x40a0498f sk_common_release +EXPORT_SYMBOL vmlinux 0x40a2d347 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x40a2f415 fwnode_mdio_find_device EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40c08c9d ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40e8ef37 dput +EXPORT_SYMBOL vmlinux 0x40e7c3ef mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x40e9875c device_add_disk EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x41099802 inode_permission +EXPORT_SYMBOL vmlinux 0x4112995d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x411c4055 dma_pool_create +EXPORT_SYMBOL vmlinux 0x412d1e83 bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41463a6b tcf_exts_validate_ex EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414b1063 netdev_offload_xstats_enable EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x414f9d64 tcp_md5_key_copy -EXPORT_SYMBOL vmlinux 0x415541a3 inode_init_always -EXPORT_SYMBOL vmlinux 0x4158ae90 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x415b4e43 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x414f69ff of_device_alloc +EXPORT_SYMBOL vmlinux 0x414fc218 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x4150d0dc no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x41659c82 dcb_getrewr_prio_pcp_mask_map EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41a34543 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x41b41fe7 phy_detach -EXPORT_SYMBOL vmlinux 0x41bc9652 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x41d922e0 of_platform_device_create -EXPORT_SYMBOL vmlinux 0x41e56390 tty_name +EXPORT_SYMBOL vmlinux 0x41a57a29 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x41a94932 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x41accdd9 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x41b52273 folio_alloc +EXPORT_SYMBOL vmlinux 0x41bf45cf xp_free +EXPORT_SYMBOL vmlinux 0x41e653a4 pci_bus_alloc_resource EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f8560e pci_release_regions -EXPORT_SYMBOL vmlinux 0x42004ec3 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x42066d39 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x4212d65e crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x4216535a make_kgid -EXPORT_SYMBOL vmlinux 0x42195375 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x421af5fc pnp_device_detach -EXPORT_SYMBOL vmlinux 0x421b0200 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x421d1125 tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0x42224ac3 pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0x42293462 write_cache_pages -EXPORT_SYMBOL vmlinux 0x422aa1b5 udp_gro_complete -EXPORT_SYMBOL vmlinux 0x4237c4f8 d_genocide -EXPORT_SYMBOL vmlinux 0x42440134 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x42476836 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x41fbdff3 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x421c929f dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x4220396b build_skb_around +EXPORT_SYMBOL vmlinux 0x42225f5f scsi_scan_target +EXPORT_SYMBOL vmlinux 0x4226141e phy_trigger_machine EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424c75c7 param_ops_ullong EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x4275ecd5 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x428adf35 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x42939b88 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x42b65c65 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x42bb53e9 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x42660d23 param_get_byte +EXPORT_SYMBOL vmlinux 0x4270f7de inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x42713c23 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x427cc570 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x42810ce6 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x4289ace7 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x428ad716 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x428cea76 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x429f216b flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42eba74e netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x42ef1e22 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x42e5ee11 __neigh_create EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f20099 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x42f2f092 skb_put EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x432c20e1 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x43243b8e skb_pull +EXPORT_SYMBOL vmlinux 0x432da32e of_node_name_eq EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x4347cae5 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x434784ad bio_endio +EXPORT_SYMBOL vmlinux 0x434b1b63 __napi_schedule EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4361a1b4 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x435e18f8 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x43715dba pci_write_config_word EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x439bc976 get_task_cred +EXPORT_SYMBOL vmlinux 0x43a997cc filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43c8f756 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x43ca69f1 nla_put_nohdr EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc -EXPORT_SYMBOL vmlinux 0x43e026d3 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x43f2212e ping_prot EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x43fa5fe3 dcb_setapp EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x4421822c __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x44296eff pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x442dd5d8 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x440c98e3 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x441012ad jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x441ed646 of_device_unregister +EXPORT_SYMBOL vmlinux 0x442f9a2a mipi_dsi_dcs_write_buffer EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x44581be6 fwnode_phy_find_device -EXPORT_SYMBOL vmlinux 0x4458c751 dev_uc_init -EXPORT_SYMBOL vmlinux 0x4459a60a input_copy_abs -EXPORT_SYMBOL vmlinux 0x445dc39a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x44592e40 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x447416a4 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0x44843f1f vme_irq_free -EXPORT_SYMBOL vmlinux 0x448841f1 seq_dentry -EXPORT_SYMBOL vmlinux 0x448c26e6 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x44782720 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x448b69c3 sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x44924c19 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x44993601 con_set_default_unimap EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x449c204a tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x44b0d34e param_set_byte -EXPORT_SYMBOL vmlinux 0x44b9fbfd mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x44ce52fe sock_i_uid -EXPORT_SYMBOL vmlinux 0x44d04edb blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x44a2f447 vme_slave_request +EXPORT_SYMBOL vmlinux 0x44a8ac09 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x44b8a22a phy_error +EXPORT_SYMBOL vmlinux 0x44d0faa4 generic_setlease +EXPORT_SYMBOL vmlinux 0x44d98015 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x44ddeab3 security_inet_conn_request EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f56783 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x44ea10ce sync_inodes_sb EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450639ab sg_last EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range -EXPORT_SYMBOL vmlinux 0x45276a33 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x4528e591 simple_transaction_get EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x452d94b6 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x452f6b3f tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x452d8f35 simple_open +EXPORT_SYMBOL vmlinux 0x452f52a0 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x453bc18b input_close_device EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x4542ccd0 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x455029ae configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x45461fc5 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x45666756 tc_setup_cb_destroy -EXPORT_SYMBOL vmlinux 0x456874bf posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x455b1da0 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x45667e86 mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x457c4148 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x457efcee kernel_sock_ip_overhead -EXPORT_SYMBOL vmlinux 0x45c488d1 add_to_page_cache_lru -EXPORT_SYMBOL vmlinux 0x45d1548a _dev_crit -EXPORT_SYMBOL vmlinux 0x45d45943 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x458f2a26 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x458f55a8 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x458fe163 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x459768e4 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x45a89df7 make_kuid +EXPORT_SYMBOL vmlinux 0x45ac7d10 key_link +EXPORT_SYMBOL vmlinux 0x45b80c2e pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x45bb13fd unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x45d3a352 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x45eb4bf1 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x45f05bd7 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x460546d1 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x460e292b netdev_notify_peers EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x461c426f tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x461d3590 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x46138fb2 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x46145a0c set_disk_ro +EXPORT_SYMBOL vmlinux 0x4622ac74 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4631320e skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x46383651 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x463e2112 unix_get_socket EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x46488b59 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x464dae3b inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x465b95ad padata_alloc EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x4665a4b9 rproc_put EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x468e5d9f tcf_get_next_chain EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release -EXPORT_SYMBOL vmlinux 0x4699a56c of_io_request_and_map EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option -EXPORT_SYMBOL vmlinux 0x46aaa8cf phy_attached_print +EXPORT_SYMBOL vmlinux 0x469ce28e flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x46b88bf9 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46e9b3fe tcf_idr_release -EXPORT_SYMBOL vmlinux 0x46f44b68 component_match_add_release +EXPORT_SYMBOL vmlinux 0x46d65710 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x46f4d196 netif_napi_add_weight EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x472056ac __register_chrdev -EXPORT_SYMBOL vmlinux 0x4758bcbc phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x47176c6f pci_set_master +EXPORT_SYMBOL vmlinux 0x475a06fb module_layout EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x476087dd blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x476a84f8 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x476cd5a8 dquot_commit_info EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47720973 fb_get_mode +EXPORT_SYMBOL vmlinux 0x47752d32 setup_new_exec +EXPORT_SYMBOL vmlinux 0x47767cc0 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x47775818 unregister_netdev +EXPORT_SYMBOL vmlinux 0x478b0d47 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x47905f0a netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0x47966f78 put_ipc_ns -EXPORT_SYMBOL vmlinux 0x47a324ab security_socket_socketpair -EXPORT_SYMBOL vmlinux 0x47a87622 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0x47b1f630 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x4796b501 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x47ba753d xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0x47ccf1f2 __wait_on_buffer EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x47d37fbe dquot_load_quota_inode EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47e2136b inode_get_bytes -EXPORT_SYMBOL vmlinux 0x47e26d1f of_mdio_find_bus -EXPORT_SYMBOL vmlinux 0x47f0ad59 md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x47fa0495 mdio_device_register -EXPORT_SYMBOL vmlinux 0x48002e25 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x47da335b blk_rq_init +EXPORT_SYMBOL vmlinux 0x47ee611c get_user_pages +EXPORT_SYMBOL vmlinux 0x47fc403d netif_schedule_queue EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x481e6e87 address_space_init_once -EXPORT_SYMBOL vmlinux 0x48241ee9 of_mdiobus_child_is_phy EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work -EXPORT_SYMBOL vmlinux 0x483156d2 blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x48327830 input_get_timestamp EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x483dd637 vlan_vid_del EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x4849dc21 iov_iter_get_pages2 EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days -EXPORT_SYMBOL vmlinux 0x485ea546 input_mt_init_slots EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x4861ad66 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x486d3117 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x48765ef7 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x488935a7 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x4898bf7b mii_check_media EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a53b47 dns_query EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48aeb8f6 sock_no_shutdown EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48cbabfb of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node -EXPORT_SYMBOL vmlinux 0x48dbc21a dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x48d52d9f processors EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x48e014b4 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x48e52290 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x48f90df5 kthread_bind +EXPORT_SYMBOL vmlinux 0x48e25018 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x48fcd0a1 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x49079a89 cpufreq_get_policy -EXPORT_SYMBOL vmlinux 0x49270583 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x4930c354 dma_unmap_resource -EXPORT_SYMBOL vmlinux 0x49325ba9 neigh_xmit -EXPORT_SYMBOL vmlinux 0x494d07bf lease_modify +EXPORT_SYMBOL vmlinux 0x4909a790 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x492d8ffd dquot_quota_off +EXPORT_SYMBOL vmlinux 0x493852ff skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x4946556d t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x494982d8 vm_insert_pages EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x495ef5ff proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x4960df19 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x49554a3b md_unregister_thread +EXPORT_SYMBOL vmlinux 0x49618816 md_check_recovery EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x496ed5de skb_checksum_help EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x499d2a75 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x49929fb0 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x499ee99b devm_of_iomap EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a0b393 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x49a161b7 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x49ad91b3 alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49e6ad11 sg_miter_start -EXPORT_SYMBOL vmlinux 0x4a081e39 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x4a279e01 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x4a3a0cb1 dst_discard_out +EXPORT_SYMBOL vmlinux 0x49b18ee4 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x49cbe00b find_inode_rcu +EXPORT_SYMBOL vmlinux 0x49e46abb __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x49f67f32 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x49f87bbb dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4a0fb48a nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x4a1f9046 backlight_device_register +EXPORT_SYMBOL vmlinux 0x4a212a45 fget_raw +EXPORT_SYMBOL vmlinux 0x4a2f2f46 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a40e845 pm8606_osc_disable -EXPORT_SYMBOL vmlinux 0x4a4c606d super_setup_bdi -EXPORT_SYMBOL vmlinux 0x4a6bd558 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x4a3ceaff configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x4a50a45c kill_block_super +EXPORT_SYMBOL vmlinux 0x4a54ddf3 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x4a5b33d3 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x4a5c1309 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x4a5c90c8 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4a96d0ad __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x4aa92066 set_posix_acl -EXPORT_SYMBOL vmlinux 0x4aa9f6b4 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x4ad7a94a nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x4add51a1 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0x4ae73b1c iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x4a9e73bf scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x4aa0ed49 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x4ab191ab udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x4ad2247b shmem_aops +EXPORT_SYMBOL vmlinux 0x4ad25e56 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift -EXPORT_SYMBOL vmlinux 0x4aea884a mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4af87157 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x4afaaf20 dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b0e3df7 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4b19c630 pci_get_slot +EXPORT_SYMBOL vmlinux 0x4b266aff skb_trim +EXPORT_SYMBOL vmlinux 0x4b2b4295 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x4b37c815 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x4b3c72f2 dcb_getrewr EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b6190da netif_receive_skb -EXPORT_SYMBOL vmlinux 0x4b66da3c iov_iter_advance -EXPORT_SYMBOL vmlinux 0x4b6cc114 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x4b57edd7 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b888511 inode_to_bdi -EXPORT_SYMBOL vmlinux 0x4b8a007c sock_kmalloc -EXPORT_SYMBOL vmlinux 0x4b939269 mdio_bus_type -EXPORT_SYMBOL vmlinux 0x4bac734c jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4b7df5aa rtc_add_group +EXPORT_SYMBOL vmlinux 0x4ba0c205 skb_vlan_untag EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4be5490f filemap_flush -EXPORT_SYMBOL vmlinux 0x4becd65a tty_unregister_device +EXPORT_SYMBOL vmlinux 0x4bd4ba8d pci_find_bus +EXPORT_SYMBOL vmlinux 0x4bdf65ba _copy_to_iter EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4c065632 blk_mq_delay_run_hw_queue EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c07d216 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x4c36515f skb_pull_data -EXPORT_SYMBOL vmlinux 0x4c413469 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x4c14fa1a __register_chrdev +EXPORT_SYMBOL vmlinux 0x4c2a070b filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x4c2a14fd dump_emit +EXPORT_SYMBOL vmlinux 0x4c32e6bd hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c42aaed tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x4c4e64e1 folio_end_private_2 -EXPORT_SYMBOL vmlinux 0x4c620a98 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x4c6db159 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x4c7e0fa8 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x4ca39162 register_netdevice -EXPORT_SYMBOL vmlinux 0x4ca94de7 sock_pfree -EXPORT_SYMBOL vmlinux 0x4caefe91 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0x4cc42491 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x4cd7cfdc xsk_clear_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x4cdce2b0 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x4cf44e79 rproc_add +EXPORT_SYMBOL vmlinux 0x4c43a107 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x4c463319 km_state_notify +EXPORT_SYMBOL vmlinux 0x4c4b93d3 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x4c5973c8 handshake_req_private +EXPORT_SYMBOL vmlinux 0x4c642058 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x4c7668e8 netdev_alert +EXPORT_SYMBOL vmlinux 0x4c874917 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x4ca60414 mpage_writepages +EXPORT_SYMBOL vmlinux 0x4ca61258 simple_release_fs +EXPORT_SYMBOL vmlinux 0x4cc6d72b of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x4cc6eb46 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x4cced4e0 ilookup5 +EXPORT_SYMBOL vmlinux 0x4cd9ee28 napi_disable +EXPORT_SYMBOL vmlinux 0x4ce92f55 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x4cf6115f scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x4cfcd0a2 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x4d0c735f pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page -EXPORT_SYMBOL vmlinux 0x4d1c93db security_sctp_sk_clone -EXPORT_SYMBOL vmlinux 0x4d266dc8 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x4d0f11fd lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0x4d2146b8 proc_create_mount_point EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d5b3c0a inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x4d360618 may_umount_tree +EXPORT_SYMBOL vmlinux 0x4d3b3ad6 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x4d3dff0b fs_param_is_string +EXPORT_SYMBOL vmlinux 0x4d4a6b3f udp_gro_receive +EXPORT_SYMBOL vmlinux 0x4d4b83a1 file_path +EXPORT_SYMBOL vmlinux 0x4d5c136f skb_realloc_headroom EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d801050 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x4d686afd phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x4d891df4 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x4d8f37f9 ppp_register_channel EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d9605aa input_mt_sync_frame EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4da3b4c2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4da42ba1 pneigh_enqueue EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4da77868 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x4dc40203 ppp_register_channel -EXPORT_SYMBOL vmlinux 0x4dc5709c param_set_charp -EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence -EXPORT_SYMBOL vmlinux 0x4ddd8f55 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x4dcf6506 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x4dd0dee3 simple_fill_super +EXPORT_SYMBOL vmlinux 0x4dddedd2 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x4de7e4c1 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo -EXPORT_SYMBOL vmlinux 0x4dee4f1a _dev_info EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e04c042 dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0x4e065b44 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x4e0d53de phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x4e21b87a generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0x4e276bea to_ndd -EXPORT_SYMBOL vmlinux 0x4e29dcad pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x4e2c1224 phy_error EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0x4e2eb30c __devm_request_region -EXPORT_SYMBOL vmlinux 0x4e30f2eb param_set_ulong EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e4afcb3 pipe_lock -EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e9bdef0 sg_alloc_append_table_from_pages -EXPORT_SYMBOL vmlinux 0x4e9df758 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x4e7ae29d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x4e808c24 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x4e874849 mfd_add_devices EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eac7198 param_set_bool EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx -EXPORT_SYMBOL vmlinux 0x4eb09c06 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x4ec3c2c4 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x4eb44972 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x4ebea743 dquot_get_dqblk EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ed54528 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x4ed6df9c pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x4ed80f55 fman_register_intr -EXPORT_SYMBOL vmlinux 0x4efbb41d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x4ecb8ba9 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x4ee05eb1 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x4eeba3f9 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x4eefd506 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x4ef41b61 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4f04ac5b pskb_expand_head +EXPORT_SYMBOL vmlinux 0x4f0a8307 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f24ca33 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x4f41157e configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x4f491352 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4f241382 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x4f3c449a dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x4f4b1954 mfd_remove_devices EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f58ebb4 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0x4f672b81 set_binfmt -EXPORT_SYMBOL vmlinux 0x4f83347e genphy_restart_aneg -EXPORT_SYMBOL vmlinux 0x4f8a588c iov_iter_xarray -EXPORT_SYMBOL vmlinux 0x4f91c9a0 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x4f9d9c98 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x4fb1c1a4 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x4fb8c738 tcp_filter -EXPORT_SYMBOL vmlinux 0x4fc7662c vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x4fe2d6cb scsi_done -EXPORT_SYMBOL vmlinux 0x4fe7c27b ns_capable_setid -EXPORT_SYMBOL vmlinux 0x4ff4000f noop_llseek +EXPORT_SYMBOL vmlinux 0x4f5778ab blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4f5a7e45 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x4f61c19e __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x4f7c2bf1 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x4f96fab8 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x4fbe8239 zap_page_range_single +EXPORT_SYMBOL vmlinux 0x4fcc5063 scsi_device_get +EXPORT_SYMBOL vmlinux 0x4fd6ea52 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4fe29ab1 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x4fe71ea1 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x4ff77c5c input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree -EXPORT_SYMBOL vmlinux 0x4fffb954 pps_event -EXPORT_SYMBOL vmlinux 0x50066c60 inode_init_owner EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x50150801 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5030325f max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x50322661 fman_unregister_intr -EXPORT_SYMBOL vmlinux 0x503d8929 sockopt_lock_sock -EXPORT_SYMBOL vmlinux 0x503ea788 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x5050a057 cdev_add +EXPORT_SYMBOL vmlinux 0x5057bf26 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x505b9ec1 param_ops_uint +EXPORT_SYMBOL vmlinux 0x5062463c mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x50624917 sha1_init EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free -EXPORT_SYMBOL vmlinux 0x506e1716 dm_register_target -EXPORT_SYMBOL vmlinux 0x507d2254 __scm_destroy -EXPORT_SYMBOL vmlinux 0x507ee8d5 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x5089e41d skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x506eb052 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x50843375 bioset_integrity_create EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508ac5f0 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field -EXPORT_SYMBOL vmlinux 0x509310dd phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x5097aa32 devm_ioport_unmap EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method -EXPORT_SYMBOL vmlinux 0x509cb5dd __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x509cc7ec of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0x509f58e2 vfs_rename EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist -EXPORT_SYMBOL vmlinux 0x50a47731 make_kuid -EXPORT_SYMBOL vmlinux 0x50b3ec14 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x50a732c1 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x50aafdeb ip_do_fragment EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security -EXPORT_SYMBOL vmlinux 0x50c38942 show_init_ipc_ns EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50e056f7 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x50d54059 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x50eaba5c bioset_init EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50f97d2a __dev_remove_pack EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x51088837 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x51273159 key_put -EXPORT_SYMBOL vmlinux 0x51296072 flush_dcache_page -EXPORT_SYMBOL vmlinux 0x512cf878 mmc_free_host +EXPORT_SYMBOL vmlinux 0x5104aeab filemap_map_pages +EXPORT_SYMBOL vmlinux 0x51072e38 d_lookup +EXPORT_SYMBOL vmlinux 0x511681f0 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x511d6c76 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x512e102c udp_seq_stop +EXPORT_SYMBOL vmlinux 0x5132ac9d input_set_abs_params EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec -EXPORT_SYMBOL vmlinux 0x51408527 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x51493dea genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x514ff52f vmf_insert_mixed_prot EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x5156b6c6 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x5156c786 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x5157324e skb_copy_expand +EXPORT_SYMBOL vmlinux 0x515e3675 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x515fef15 get_phy_device EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516936f4 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x51affc11 ip_local_deliver -EXPORT_SYMBOL vmlinux 0x51c5a2f6 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x51763358 dump_skip +EXPORT_SYMBOL vmlinux 0x51772ad0 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x51873cc4 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x51a47c7e udp_set_csum +EXPORT_SYMBOL vmlinux 0x51ab82bf vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x51c2f944 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x51c64cd6 cdrom_check_events EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d3aed7 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x51dad554 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x51f7d440 flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x5204515f unregister_filesystem -EXPORT_SYMBOL vmlinux 0x52296155 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x522a1da4 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x522b1392 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x523de192 rawv6_mh_filter_register -EXPORT_SYMBOL vmlinux 0x523f1fb3 km_query -EXPORT_SYMBOL vmlinux 0x5248ac73 register_key_type -EXPORT_SYMBOL vmlinux 0x5253065d follow_down_one -EXPORT_SYMBOL vmlinux 0x52603c0a i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x52099017 inode_init_owner +EXPORT_SYMBOL vmlinux 0x520e97c4 proc_dostring +EXPORT_SYMBOL vmlinux 0x5221a496 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x522a4118 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x522fefde pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x524be18e invalidate_disk +EXPORT_SYMBOL vmlinux 0x5251de6a sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x526bb281 security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x52815ab9 textsearch_destroy -EXPORT_SYMBOL vmlinux 0x528d28f9 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x5294cf47 dmam_pool_create EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x52a8a634 udp_set_csum -EXPORT_SYMBOL vmlinux 0x52ab5aed pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x52ad5924 security_sock_rcv_skb -EXPORT_SYMBOL vmlinux 0x52bbe199 ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x52c87ede tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x5299f207 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x529fc1fc d_splice_alias +EXPORT_SYMBOL vmlinux 0x52b4055f napi_gro_flush +EXPORT_SYMBOL vmlinux 0x52cfe35e file_modified +EXPORT_SYMBOL vmlinux 0x52d34abb clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init -EXPORT_SYMBOL vmlinux 0x52e16e4b dev_uc_del -EXPORT_SYMBOL vmlinux 0x52e73c89 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x52dbe589 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x52e0bf5d pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x52e27108 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x52e56f87 bio_free_pages EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt -EXPORT_SYMBOL vmlinux 0x52f0b067 tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0x52f15852 xfrm_state_flush EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52fffff8 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x53064521 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530bdd80 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x530c1686 tcf_em_register EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x531d34e6 fs_param_is_blockdev -EXPORT_SYMBOL vmlinux 0x5327e0d0 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x5332b671 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x5319a423 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x531b96f0 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x5322663e acpi_get_handle +EXPORT_SYMBOL vmlinux 0x53274457 fb_pan_display +EXPORT_SYMBOL vmlinux 0x5332ce26 dentry_create EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x535219ff filemap_fault -EXPORT_SYMBOL vmlinux 0x5356a122 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x536dc4c3 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x533a4a61 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x53528773 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x53613c39 mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x536c1dad vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x53799651 tso_build_data +EXPORT_SYMBOL vmlinux 0x5381452a __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x53903d3f inode_newsize_ok EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53a204a8 tty_devnum -EXPORT_SYMBOL vmlinux 0x53b8c16e proc_symlink +EXPORT_SYMBOL vmlinux 0x53a2c31d inet_register_protosw +EXPORT_SYMBOL vmlinux 0x53b0a03b phy_detach EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53ecc43e find_vma +EXPORT_SYMBOL vmlinux 0x53bb7bcc fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x53c18eb9 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x53c35361 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x53d2a728 mmc_gpio_set_cd_irq +EXPORT_SYMBOL vmlinux 0x53de6cc3 find_vma +EXPORT_SYMBOL vmlinux 0x53ef20ae setup_arg_pages EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align -EXPORT_SYMBOL vmlinux 0x53f55fd2 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x53f773f8 pci_pme_active +EXPORT_SYMBOL vmlinux 0x53f677b1 udp_read_skb EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings -EXPORT_SYMBOL vmlinux 0x5402cd6c param_get_short EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x5406c280 __module_get -EXPORT_SYMBOL vmlinux 0x541c420c configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x54132c9f devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x5439c254 dma_resv_iter_first_unlocked EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x543f8426 xp_raw_get_data -EXPORT_SYMBOL vmlinux 0x544d9ab3 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0x5471654a pnp_is_active -EXPORT_SYMBOL vmlinux 0x5477881b kill_fasync -EXPORT_SYMBOL vmlinux 0x54954a62 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x54402a43 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x544846d8 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x546b80cd __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x547c26e4 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x547d431c twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x5490e11e proc_create_single_data +EXPORT_SYMBOL vmlinux 0x549beda7 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x54a2d443 unregister_filesystem EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54b947da cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x54c1fb62 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54ed7f43 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x54f0264a vm_map_ram EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x550fc863 open_exec -EXPORT_SYMBOL vmlinux 0x5519a0ec phy_connect_direct +EXPORT_SYMBOL vmlinux 0x5509b277 phy_get_pause +EXPORT_SYMBOL vmlinux 0x550b44a3 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x55136341 param_get_ulong EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x55288e44 kmem_cache_create EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x55329987 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0x55415b19 dma_pool_create +EXPORT_SYMBOL vmlinux 0x552e4c06 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x5542f872 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x554a38b3 mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5551b97d dev_disable_lro -EXPORT_SYMBOL vmlinux 0x5557166b blk_put_queue -EXPORT_SYMBOL vmlinux 0x5570352a dev_printk_emit -EXPORT_SYMBOL vmlinux 0x5586767e tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x55846b37 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x5586c039 datagram_poll +EXPORT_SYMBOL vmlinux 0x5587fb0c fuse_dequeue_forget EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x558bcb3a buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x558f215e tty_port_close_end -EXPORT_SYMBOL vmlinux 0x55c49ba7 pcim_iomap -EXPORT_SYMBOL vmlinux 0x55cd5678 vc_resize +EXPORT_SYMBOL vmlinux 0x55b952ff security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x55d1adaa genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e3629e __skb_pad -EXPORT_SYMBOL vmlinux 0x55e68620 rdmacg_try_charge -EXPORT_SYMBOL vmlinux 0x55eeae6d tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0x55f04078 netif_carrier_off EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x561ceb78 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x5619e4cd devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5622a717 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x564b73af dcache_dir_close EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register -EXPORT_SYMBOL vmlinux 0x565372b6 input_set_keycode -EXPORT_SYMBOL vmlinux 0x56718ba3 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x56751e21 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x567945cb bio_chain +EXPORT_SYMBOL vmlinux 0x56513bf5 simple_lookup +EXPORT_SYMBOL vmlinux 0x5659f47c security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x565caca8 abort_creds +EXPORT_SYMBOL vmlinux 0x566d366e tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x56826ab1 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x569ead17 register_qdisc -EXPORT_SYMBOL vmlinux 0x56b0d74f tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x56c33033 module_layout -EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x569d33cb build_skb +EXPORT_SYMBOL vmlinux 0x56c4b91c scm_fp_dup EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x56cd3ec4 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0x56d250c1 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0x56eb79cb blk_mq_run_hw_queue -EXPORT_SYMBOL vmlinux 0x5700b831 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x5741587e dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x56dd81bc sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x56e09f9c devm_clk_put +EXPORT_SYMBOL vmlinux 0x56fa741e tls_handshake_cancel +EXPORT_SYMBOL vmlinux 0x57057c44 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x57087542 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x571efe8b pps_register_source EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put -EXPORT_SYMBOL vmlinux 0x57602787 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x5765ec9d dev_addr_add -EXPORT_SYMBOL vmlinux 0x57670f8c pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x576567f8 putname +EXPORT_SYMBOL vmlinux 0x5766ac31 __devm_of_mdiobus_register EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5771cc90 wake_up_process -EXPORT_SYMBOL vmlinux 0x57762577 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x576ecfde dma_find_channel EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x579aff44 release_sock -EXPORT_SYMBOL vmlinux 0x579e06f3 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x57abc9f9 pci_find_bus +EXPORT_SYMBOL vmlinux 0x57b66184 input_open_device EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57ca7f53 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x57cc195a __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x57cc52e5 __serio_register_driver -EXPORT_SYMBOL vmlinux 0x57d6a2e0 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x57ca0bd8 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x57cbdd3d tcp_child_process +EXPORT_SYMBOL vmlinux 0x57cf9de2 pm860x_reg_read EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57dc2287 tty_hangup +EXPORT_SYMBOL vmlinux 0x57e19286 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x57ead85f d_move +EXPORT_SYMBOL vmlinux 0x57f3605a end_page_writeback EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57fe0166 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x57fe98aa __skb_recv_udp -EXPORT_SYMBOL vmlinux 0x58173c3f register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x5800e876 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x58067479 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x580baa75 phys_mem_access_prot EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x5819bc5d cad_pid EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate -EXPORT_SYMBOL vmlinux 0x58207a2c alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x5820315c fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x5825c77c md_finish_reshape EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x583eb0f4 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x58425e53 security_inode_init_security -EXPORT_SYMBOL vmlinux 0x5843457c pci_pme_capable +EXPORT_SYMBOL vmlinux 0x58405d73 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x5845f250 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x585e53af pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x5880ffae pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x5885ce9d __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0x58944971 file_open_root +EXPORT_SYMBOL vmlinux 0x58808cb9 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x589aa802 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x589e8c22 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x589974b6 dst_release +EXPORT_SYMBOL vmlinux 0x589f740f skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x58abbabc param_set_long EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many -EXPORT_SYMBOL vmlinux 0x58b5e28d mpage_readahead -EXPORT_SYMBOL vmlinux 0x58b6e4cc pm8606_osc_enable EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58c119f7 simple_rmdir -EXPORT_SYMBOL vmlinux 0x58d8d90c ppp_output_wakeup -EXPORT_SYMBOL vmlinux 0x58d99260 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0x58de1b34 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x58d255a1 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x58dcc2c5 blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x5904fa92 dm_table_event -EXPORT_SYMBOL vmlinux 0x590d0ddb pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x59142c64 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x58e350ab __scm_send +EXPORT_SYMBOL vmlinux 0x58e5d233 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x58f090a0 flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0x590ecae2 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x591a8ea5 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x5926568e lookup_one_len EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x594c5ca0 udp_seq_next -EXPORT_SYMBOL vmlinux 0x59508600 seq_read_iter -EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x596d16db generic_block_bmap -EXPORT_SYMBOL vmlinux 0x5972f746 security_sk_classify_flow -EXPORT_SYMBOL vmlinux 0x59773392 phy_modify_paged -EXPORT_SYMBOL vmlinux 0x5980a0bd kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x59902483 __vfs_setxattr -EXPORT_SYMBOL vmlinux 0x59908520 sk_alloc -EXPORT_SYMBOL vmlinux 0x5992a01e unregister_console +EXPORT_SYMBOL vmlinux 0x5945d545 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x5947d710 devm_release_resource +EXPORT_SYMBOL vmlinux 0x594b350e mr_table_dump +EXPORT_SYMBOL vmlinux 0x5950cf3e skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x5951d53b netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x595e94a4 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5968dc6d proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x596fcb4e fb_set_suspend +EXPORT_SYMBOL vmlinux 0x59718dcb iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x598781cd fiemap_prep +EXPORT_SYMBOL vmlinux 0x598d4c0f component_match_add_typed +EXPORT_SYMBOL vmlinux 0x5999fcbc netdev_crit EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node -EXPORT_SYMBOL vmlinux 0x59a1a362 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x599fca58 generic_file_open EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59add4ed input_open_device EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59e4211e blk_mq_tagset_busy_iter -EXPORT_SYMBOL vmlinux 0x59f93d96 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x59db6762 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x59de8b63 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x59ea0cce vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x5a0660ee elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x5a0ffe2f pci_write_config_byte -EXPORT_SYMBOL vmlinux 0x5a10bba4 dev_addr_mod -EXPORT_SYMBOL vmlinux 0x5a146969 tegra_ivc_read_get_next_frame -EXPORT_SYMBOL vmlinux 0x5a1e16ed tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x5a1b5454 dev_mc_add +EXPORT_SYMBOL vmlinux 0x5a1c2186 tcp_read_done EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a440e6e scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4aa54a pci_scan_bus EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a5895f9 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x5a584985 retire_super +EXPORT_SYMBOL vmlinux 0x5a5d86cf add_to_pipe EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a6b0d7a inet_add_protocol -EXPORT_SYMBOL vmlinux 0x5a790e95 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5a6710c6 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x5a69ebc4 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x5a6e10f9 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x5a6ec2ed __neigh_event_send +EXPORT_SYMBOL vmlinux 0x5a763990 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x5a8b7cda generic_fadvise EXPORT_SYMBOL vmlinux 0x5a921311 strncmp EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9ccbbb __blk_mq_end_request EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aadb75c may_umount_tree -EXPORT_SYMBOL vmlinux 0x5ac28453 fscrypt_free_inode -EXPORT_SYMBOL vmlinux 0x5ac86ab3 napi_build_skb -EXPORT_SYMBOL vmlinux 0x5accdd91 dm_io -EXPORT_SYMBOL vmlinux 0x5acf1ece max8998_bulk_read -EXPORT_SYMBOL vmlinux 0x5ad365be mipi_dsi_dcs_soft_reset -EXPORT_SYMBOL vmlinux 0x5ad5f86e flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x5ab4ccb9 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x5ac01b95 acpi_resource_to_address64 EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5ae59e57 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x5ae5f395 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x5b07afdf iterate_dir +EXPORT_SYMBOL vmlinux 0x5aefc30a sock_no_linger +EXPORT_SYMBOL vmlinux 0x5b12259d udp_disconnect EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store -EXPORT_SYMBOL vmlinux 0x5b3e7c00 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b689129 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x5b6ce7ec sk_ns_capable -EXPORT_SYMBOL vmlinux 0x5b75a72c no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0x5b76c341 cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x5b7e22ca sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x5b865e34 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x5b5a40d4 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x5b5a5a91 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x5b5c7229 clk_add_alias +EXPORT_SYMBOL vmlinux 0x5b87c6cc xp_can_alloc +EXPORT_SYMBOL vmlinux 0x5b9674bf scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x5ba111a7 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5bb2e3a5 ip_options_compile +EXPORT_SYMBOL vmlinux 0x5bc541fb regset_get +EXPORT_SYMBOL vmlinux 0x5bcbebc0 tcf_qevent_destroy EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x5bd1e0ef udp_pre_connect EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdaf8b1 phy_suspend EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval -EXPORT_SYMBOL vmlinux 0x5bdd98e9 jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0x5be2fb59 register_quota_format +EXPORT_SYMBOL vmlinux 0x5be4c9de pci_bus_add_devices EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5bff702f kobject_init +EXPORT_SYMBOL vmlinux 0x5bfe1838 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x5c10494e d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x5c23f447 xfrm_state_add EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c306f90 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x5c362996 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x5c31d3c7 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c871850 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x5c8f2ea7 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x5c9ca3a8 skb_tx_error -EXPORT_SYMBOL vmlinux 0x5ccfff53 register_netdev -EXPORT_SYMBOL vmlinux 0x5cd31ca5 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x5c4b0999 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x5c4e2c2c dma_set_mask +EXPORT_SYMBOL vmlinux 0x5c5f6865 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x5c670ecc ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x5c6ab900 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x5c7c4a69 do_splice_direct +EXPORT_SYMBOL vmlinux 0x5c8cb8e5 tcf_classify +EXPORT_SYMBOL vmlinux 0x5ca3b32a security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x5ca90d5f __block_write_begin +EXPORT_SYMBOL vmlinux 0x5cd19fd2 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfd2a4a phy_find_first +EXPORT_SYMBOL vmlinux 0x5d106794 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d225c9d rproc_detach -EXPORT_SYMBOL vmlinux 0x5d435d15 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x5d23b38a scsi_done +EXPORT_SYMBOL vmlinux 0x5d2dcb8c dev_printk_emit +EXPORT_SYMBOL vmlinux 0x5d3cbf13 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x5d4294f2 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x5d495c72 phy_advertise_supported EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d54898f d_path -EXPORT_SYMBOL vmlinux 0x5d556235 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x5d5b0276 add_watch_to_object -EXPORT_SYMBOL vmlinux 0x5d6aff6d dev_mc_flush -EXPORT_SYMBOL vmlinux 0x5d744464 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x5d7f99bc __block_write_begin -EXPORT_SYMBOL vmlinux 0x5d8a828c xattr_full_name -EXPORT_SYMBOL vmlinux 0x5d8d1cc1 jbd2_journal_submit_inode_data_buffers -EXPORT_SYMBOL vmlinux 0x5d923b8b rtc_add_groups +EXPORT_SYMBOL vmlinux 0x5d5d7be3 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x5d6653f8 migrate_folio +EXPORT_SYMBOL vmlinux 0x5d6e4833 tty_name +EXPORT_SYMBOL vmlinux 0x5d75c274 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x5d7b26a6 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x5d8e7471 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x5d967821 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5db6ef1c jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x5dcce040 _dev_alert -EXPORT_SYMBOL vmlinux 0x5de4dde4 ethtool_virtdev_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x5df28771 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x5dfbdd70 proc_set_user -EXPORT_SYMBOL vmlinux 0x5dfcf3db get_tree_single -EXPORT_SYMBOL vmlinux 0x5dfed6a4 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x5dcfbfc9 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x5ddb0a06 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5de18656 param_set_ulong +EXPORT_SYMBOL vmlinux 0x5dfb7250 blk_mq_tagset_wait_completed_request EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e114f2e pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x5e31f2c0 setup_new_exec +EXPORT_SYMBOL vmlinux 0x5e14cb40 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x5e1e8a76 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x5e20172b __bh_read_batch +EXPORT_SYMBOL vmlinux 0x5e2d273d phy_start EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e33ca1c configfs_register_default_group EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e3f3d1e blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x5e47316c fget +EXPORT_SYMBOL vmlinux 0x5e4d7c1f __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x5e519069 mdiobb_write_c45 +EXPORT_SYMBOL vmlinux 0x5e632880 __folio_lock EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e754a62 sock_efree +EXPORT_SYMBOL vmlinux 0x5e831c9b ip_options_rcv_srr EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5eba05c3 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x5eb570a7 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x5ebe4134 pci_free_irq +EXPORT_SYMBOL vmlinux 0x5ec20057 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x5ec41720 phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr -EXPORT_SYMBOL vmlinux 0x5ecf1720 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x5ec9cab9 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x5eccd44e pci_assign_resource EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edf7869 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x5ee662ca input_flush_device +EXPORT_SYMBOL vmlinux 0x5ef01ba6 uart_unregister_driver EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5ef81ea9 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x5f1323d2 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x5f263831 nf_log_register EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x5f2bc28c ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x5f301c09 block_dirty_folio EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable -EXPORT_SYMBOL vmlinux 0x5f330056 framebuffer_release -EXPORT_SYMBOL vmlinux 0x5f344e8c d_make_root -EXPORT_SYMBOL vmlinux 0x5f36d2c0 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x5f4b6c85 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x5f53d5d9 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x5f50a61e reuseport_detach_sock EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f55962c pci_enable_wake EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f71cb03 nexthop_bucket_set_hw_flags -EXPORT_SYMBOL vmlinux 0x5f80d594 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x5f85188d dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x5f7e5872 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x5f8d1ee9 udp_lib_rehash EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5fa2232b mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x5fa6e6cf vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x5fb1a21d d_alloc_name -EXPORT_SYMBOL vmlinux 0x5fbe27e1 of_clk_get +EXPORT_SYMBOL vmlinux 0x5fa8a14a clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x5fb23343 dev_get_flags EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fc99d67 phy_register_fixup -EXPORT_SYMBOL vmlinux 0x5fd69dc0 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x5fccba2e vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x5fdcad7b dump_align +EXPORT_SYMBOL vmlinux 0x5fea604c dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x5ff58533 discard_new_inode +EXPORT_SYMBOL vmlinux 0x5ff8050c mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffaf674 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x5ffebea9 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x60043336 dst_destroy EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x60094820 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x6015dced __skb_get_hash EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create -EXPORT_SYMBOL vmlinux 0x602212fa pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x60324896 param_set_copystring +EXPORT_SYMBOL vmlinux 0x60281827 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x60283fa6 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x602d059e i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x603629b2 _dev_warn +EXPORT_SYMBOL vmlinux 0x605761cf generic_perform_write EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x605d4450 nf_ct_get_tuple_skb -EXPORT_SYMBOL vmlinux 0x605e3a70 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x6066d7a1 d_add -EXPORT_SYMBOL vmlinux 0x606a0305 i2c_transfer -EXPORT_SYMBOL vmlinux 0x607754ca bprm_change_interp +EXPORT_SYMBOL vmlinux 0x605cada0 kobject_set_name +EXPORT_SYMBOL vmlinux 0x605ebca2 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x607a5836 __break_lease +EXPORT_SYMBOL vmlinux 0x608099d3 locks_free_lock EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net -EXPORT_SYMBOL vmlinux 0x60a990d4 eth_header EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add -EXPORT_SYMBOL vmlinux 0x60b2d8bf request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x60bbfb13 napi_enable -EXPORT_SYMBOL vmlinux 0x60c89a6f blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x60ce748b uart_get_divisor +EXPORT_SYMBOL vmlinux 0x60ae53fd netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x60b712f6 backlight_force_update +EXPORT_SYMBOL vmlinux 0x60bbb124 dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60d95b18 of_chosen +EXPORT_SYMBOL vmlinux 0x60dbb98a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x60fefea0 neigh_ifdown EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x61084ca7 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x61252e82 nf_log_unset -EXPORT_SYMBOL vmlinux 0x61287e15 set_nlink +EXPORT_SYMBOL vmlinux 0x610c9bde __breadahead EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6129c632 __blk_alloc_disk EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x614ab450 phy_suspend +EXPORT_SYMBOL vmlinux 0x614348ab dev_mc_del_global EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set -EXPORT_SYMBOL vmlinux 0x61714c88 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x617a8693 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x615977f5 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x615dbcae blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x61745926 shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x617fcea6 free_task EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618e1f1b dentry_open -EXPORT_SYMBOL vmlinux 0x6199f25f of_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a1d99c set_nlink EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61b8ce4d pnp_device_attach -EXPORT_SYMBOL vmlinux 0x61c69add tegra_dfll_unregister -EXPORT_SYMBOL vmlinux 0x61cb00cf key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x61c65f4f udp_seq_ops +EXPORT_SYMBOL vmlinux 0x61c79540 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x61d81c26 d_find_any_alias EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e9944b ethtool_get_phc_vclocks EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x61f860cc fscrypt_free_bounce_page -EXPORT_SYMBOL vmlinux 0x6202b681 input_get_keycode -EXPORT_SYMBOL vmlinux 0x6208b1ae dquot_transfer -EXPORT_SYMBOL vmlinux 0x620caefa __sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x620d4a64 md_check_recovery +EXPORT_SYMBOL vmlinux 0x61f3ad2a fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x61fb8cd4 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x620f294d __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x6213694a dquot_get_next_id EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621f5054 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x6228a658 serial8250_do_pm EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6247babf security_inet_conn_request -EXPORT_SYMBOL vmlinux 0x6264fe35 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x62672d94 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x6242f38d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x6245c4c7 simple_setattr EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x627875ca iterate_supers_type +EXPORT_SYMBOL vmlinux 0x627b55b6 file_remove_privs EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp -EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x6299264b security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x62aa0e62 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x62c61216 pci_release_resource -EXPORT_SYMBOL vmlinux 0x62c9f9d0 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x62d69a60 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x628c0f8f dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x6299c3b5 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x629bbab0 key_put +EXPORT_SYMBOL vmlinux 0x62a2be2a migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x62a326e2 sync_filesystem +EXPORT_SYMBOL vmlinux 0x62a499cb pnp_get_resource +EXPORT_SYMBOL vmlinux 0x62a4d3b5 stream_open +EXPORT_SYMBOL vmlinux 0x62af1e49 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x62d67d76 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x62d7d46d __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x62d8604a pcim_set_mwi EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62e7b9a8 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x62f31c8a kernel_write +EXPORT_SYMBOL vmlinux 0x62dd6b74 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x62e8a388 sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x62ff917f dma_free_attrs -EXPORT_SYMBOL vmlinux 0x6309ccb4 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x6300a09d pci_map_rom EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x631b8272 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x631cd923 netlink_capable -EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x6358299a nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x6369994c pci_find_resource -EXPORT_SYMBOL vmlinux 0x63946802 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x639fd735 dev_activate -EXPORT_SYMBOL vmlinux 0x63a0bd42 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x63a11601 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x6315fd8c ip6_output +EXPORT_SYMBOL vmlinux 0x63277288 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x632909aa jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x63299118 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x63416bc0 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x634432c0 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x63501ecf alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x635e7d5f rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x638131d5 mii_check_link EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63b4dbdf generic_file_mmap -EXPORT_SYMBOL vmlinux 0x63d1a103 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x63b6a6ea locks_delete_block +EXPORT_SYMBOL vmlinux 0x63c6e4dc kernel_getsockname +EXPORT_SYMBOL vmlinux 0x63cec8ac security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x63e3e312 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x63e5ec60 mpage_readahead EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x640632b1 fbcon_update_vcs -EXPORT_SYMBOL vmlinux 0x640822aa ptp_clock_index -EXPORT_SYMBOL vmlinux 0x640a6298 truncate_setsize +EXPORT_SYMBOL vmlinux 0x6402c8df sha512_block_data_order EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642ea6a0 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x643579a3 tegra_ivc_read_advance -EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x64313fbb audit_log_start +EXPORT_SYMBOL vmlinux 0x643a453c param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x643a6079 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x6449a741 dma_resv_init EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x645611b5 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x6463c14e mdiobus_write -EXPORT_SYMBOL vmlinux 0x64741a3c __register_nls -EXPORT_SYMBOL vmlinux 0x647d52ef kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x646eed7f vfs_get_tree +EXPORT_SYMBOL vmlinux 0x6480a088 d_find_alias EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 -EXPORT_SYMBOL vmlinux 0x6488779c bio_add_pc_page EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x649c6c5c napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x64a7bc19 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x649c3dec inet_del_protocol +EXPORT_SYMBOL vmlinux 0x64a70639 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x64a8edef tty_register_ldisc EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b6552f dst_init EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c7eb7a dma_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x64c95ade init_task -EXPORT_SYMBOL vmlinux 0x64cb6184 tty_register_driver -EXPORT_SYMBOL vmlinux 0x64d27908 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x64d828e2 fiemap_prep -EXPORT_SYMBOL vmlinux 0x6501c29d pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x64d11af1 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x64dd74e0 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x64e27345 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x64f77599 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x65019f00 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x6506692c truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65202b08 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x652032cb mac_pton EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6532063b xp_dma_map EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x6542c487 inet_register_protosw EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x654c3ae1 bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0x65515876 fb_class -EXPORT_SYMBOL vmlinux 0x655ab028 security_inode_copy_up -EXPORT_SYMBOL vmlinux 0x655dc99a blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x6569dda5 blk_start_plug +EXPORT_SYMBOL vmlinux 0x654afb75 kern_path EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x657dc773 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x6581cb45 kernel_listen +EXPORT_SYMBOL vmlinux 0x6580f9bc read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset -EXPORT_SYMBOL vmlinux 0x658f8e7b default_llseek EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x65937d00 ndisc_send_skb EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a2d359 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x65a72feb flow_indr_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x65ae1b39 config_item_get -EXPORT_SYMBOL vmlinux 0x65ba735b __stack_chk_fail -EXPORT_SYMBOL vmlinux 0x65c8663e tcf_exts_change +EXPORT_SYMBOL vmlinux 0x65a69ead i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x65b0fbf8 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x65b65b95 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x65b6880d nd_integrity_init +EXPORT_SYMBOL vmlinux 0x65ca4c28 km_query +EXPORT_SYMBOL vmlinux 0x65cf3ab7 mdio_device_create EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dbbc2e dquot_free_inode EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65de27ab kmalloc_caches EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x65e8179f amba_request_regions -EXPORT_SYMBOL vmlinux 0x660a20c8 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x66251e29 rproc_del +EXPORT_SYMBOL vmlinux 0x66069f4a __brelse +EXPORT_SYMBOL vmlinux 0x66086b59 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x661a4682 bpf_link_put EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x66365ac0 netdev_get_by_index +EXPORT_SYMBOL vmlinux 0x6641b291 sync_blockdev EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr -EXPORT_SYMBOL vmlinux 0x664f6658 rw_verify_area -EXPORT_SYMBOL vmlinux 0x664f922f seq_pad +EXPORT_SYMBOL vmlinux 0x665b12ad __do_once_done EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x6665555b genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666c14c0 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x66715b6b rtc_add_groups EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667d66c0 kill_pid -EXPORT_SYMBOL vmlinux 0x6680fc79 of_xudma_dev_get EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc -EXPORT_SYMBOL vmlinux 0x66888afd input_free_device EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x669a9666 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x66910361 genphy_soft_reset EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x66b04e47 cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66bb9a34 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x66d37d4a phy_config_aneg -EXPORT_SYMBOL vmlinux 0x66d62aff tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x66f7d265 padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x6716369f nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0x672d619e tso_build_hdr -EXPORT_SYMBOL vmlinux 0x672f675a jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x66b8d92a iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x66bcbe6b __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x66bda32c mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0x66ccdcf7 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit +EXPORT_SYMBOL vmlinux 0x67016471 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x67098c86 genphy_update_link +EXPORT_SYMBOL vmlinux 0x670c798b of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x6710a6b6 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x671f4324 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x673a2639 filemap_get_folios_contig EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable -EXPORT_SYMBOL vmlinux 0x674343c8 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0x67498fe2 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x67413270 mapping_read_folio_gfp EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x675d702d textsearch_prepare -EXPORT_SYMBOL vmlinux 0x676d1fcc netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x676febdd nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x678a5874 free_netdev +EXPORT_SYMBOL vmlinux 0x67528224 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x6777afc5 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x67848d8c blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x6786ddd8 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x6787a431 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x678a0d94 follow_down_one EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x6797bac4 nf_log_bind_pf -EXPORT_SYMBOL vmlinux 0x6798578c xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x67920178 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x6795c251 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b67a74 rproc_get_by_phandle EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67cb99e3 mii_check_media -EXPORT_SYMBOL vmlinux 0x67e59214 simple_lookup -EXPORT_SYMBOL vmlinux 0x67f3c7aa iptun_encaps -EXPORT_SYMBOL vmlinux 0x67fb0563 mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x67fd01a7 unlock_rename -EXPORT_SYMBOL vmlinux 0x67ff91a8 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x68034ec3 padata_free_shell -EXPORT_SYMBOL vmlinux 0x682e2a02 rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x6855cbcd tty_port_init -EXPORT_SYMBOL vmlinux 0x6862a161 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x6803ae06 i2c_transfer +EXPORT_SYMBOL vmlinux 0x681ebc87 copy_splice_read +EXPORT_SYMBOL vmlinux 0x682a80d1 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x6833f481 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x68464037 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x6860e7a0 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x68688cdb tcp_peek_len +EXPORT_SYMBOL vmlinux 0x6879d348 elv_rb_latter_request EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval -EXPORT_SYMBOL vmlinux 0x689afd15 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x68a45585 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0x68b21eb2 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x68d2f0b1 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x689067dd dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x68c1cdca xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x68d92e69 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x68daad07 bdi_alloc +EXPORT_SYMBOL vmlinux 0x68e89a44 param_set_int EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x690150a4 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x69043c39 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x6903ac2e inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x6913b614 mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x69265317 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x692e6dca __d_lookup_unhash_wake -EXPORT_SYMBOL vmlinux 0x695a4f34 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x695a9e53 pci_dev_put -EXPORT_SYMBOL vmlinux 0x695c8785 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x690a67d9 __register_nls +EXPORT_SYMBOL vmlinux 0x695b88ee blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x69606047 truncate_inode_pages_final EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6971e676 mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x69825058 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x698e62f6 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x699b57f7 flow_rule_match_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x69ac6738 register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x69afe8ee clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x69bbc053 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x69bdd4ce inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x69c3c43b of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x69ad29f5 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x69ad5dc1 generic_fillattr +EXPORT_SYMBOL vmlinux 0x69cf9d9d dcache_dir_close +EXPORT_SYMBOL vmlinux 0x69dc0ec6 nf_hook_slow EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window -EXPORT_SYMBOL vmlinux 0x69fb8a4b device_get_mac_address +EXPORT_SYMBOL vmlinux 0x69f2beac rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a196bae jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x6a1d6690 vfs_create_mount -EXPORT_SYMBOL vmlinux 0x6a2272e9 __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x6a340c1e __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x6a0c0a82 __quota_error +EXPORT_SYMBOL vmlinux 0x6a0f20b4 tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe -EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table -EXPORT_SYMBOL vmlinux 0x6a517b24 amba_driver_register -EXPORT_SYMBOL vmlinux 0x6a5c31d5 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x6a42debe mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x6a462365 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x6a494d9a __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x6a56b543 module_refcount EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a678415 sk_stream_error EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a775733 release_pages EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a99d60c input_match_device_id -EXPORT_SYMBOL vmlinux 0x6aa8f96a sock_efree -EXPORT_SYMBOL vmlinux 0x6ac65799 dma_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x6acb0df2 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x6ad78c54 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x6ab37998 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x6ab63f6b splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x6abdb729 km_state_expired EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6add82c1 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0x6adfc227 sync_file_create +EXPORT_SYMBOL vmlinux 0x6aec5ca2 ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6b079231 alt_cb_patch_nops -EXPORT_SYMBOL vmlinux 0x6b0d916e twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x6b103bdf of_find_node_by_name -EXPORT_SYMBOL vmlinux 0x6b10be68 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x6b1714c7 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x6b1e4f6a ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6af00dc8 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x6af06883 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x6affe9c9 sk_stream_error +EXPORT_SYMBOL vmlinux 0x6b09b176 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x6b0b4a61 ndisc_send_skb EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack -EXPORT_SYMBOL vmlinux 0x6b39b3ca neigh_seq_next -EXPORT_SYMBOL vmlinux 0x6b3a543d __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x6b305785 _dev_emerg +EXPORT_SYMBOL vmlinux 0x6b43341a proc_remove EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5972ef dquot_quota_on -EXPORT_SYMBOL vmlinux 0x6b6b9485 flow_rule_match_control -EXPORT_SYMBOL vmlinux 0x6b6c7f7d blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x6b6f09f8 pci_get_subsys EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval -EXPORT_SYMBOL vmlinux 0x6b8820cc sock_no_bind -EXPORT_SYMBOL vmlinux 0x6b8a9289 nf_register_sockopt EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6ba2c7ca generic_delete_inode -EXPORT_SYMBOL vmlinux 0x6bbaaefa jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x6b930759 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x6b9bea9e vif_device_init +EXPORT_SYMBOL vmlinux 0x6b9d838d keyring_search +EXPORT_SYMBOL vmlinux 0x6ba2b7d5 dcb_setrewr +EXPORT_SYMBOL vmlinux 0x6bb0cf09 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bda5292 rproc_del EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6be2ff9f mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x6be86cd7 unix_attach_fds -EXPORT_SYMBOL vmlinux 0x6beaf073 eth_header_cache -EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x6c04e83d i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x6c2e0776 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x6c3c1ee2 nexthop_set_hw_flags -EXPORT_SYMBOL vmlinux 0x6c5a4869 ipv4_specific +EXPORT_SYMBOL vmlinux 0x6c3a753d tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x6c51a016 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x6c52dd6a dm_put_device +EXPORT_SYMBOL vmlinux 0x6c549ee4 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c777be4 set_user_nice -EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x6c9b094b vme_irq_generate +EXPORT_SYMBOL vmlinux 0x6c6b2393 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x6c6cf9da bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x6c79e43d __phy_resume EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk -EXPORT_SYMBOL vmlinux 0x6cb8cfc4 devm_iounmap EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cc8dbb8 skb_copy +EXPORT_SYMBOL vmlinux 0x6ce3baf1 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6cef3da7 xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cfcffc4 devfreq_update_target -EXPORT_SYMBOL vmlinux 0x6cfd1f15 xp_dma_map -EXPORT_SYMBOL vmlinux 0x6d0f9876 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6d04d7e5 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x6d2347cc regset_get EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d4bbc39 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x6d54014c param_get_ushort EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d694df2 sock_no_listen EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d7bd170 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d96f7c4 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x6d8d3b43 tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0x6d933508 lynx_pcs_destroy EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6da77eba amba_device_unregister +EXPORT_SYMBOL vmlinux 0x6da8c661 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x6db90f09 register_mii_timestamper EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end -EXPORT_SYMBOL vmlinux 0x6dbbc525 param_ops_charp +EXPORT_SYMBOL vmlinux 0x6dbd79da ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc4766b __fs_parse +EXPORT_SYMBOL vmlinux 0x6dc564b5 path_has_submounts +EXPORT_SYMBOL vmlinux 0x6dc9b7ce inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6dec318f alloc_fcdev -EXPORT_SYMBOL vmlinux 0x6ded620d devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x6dd31087 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x6dd7a27a page_readlink +EXPORT_SYMBOL vmlinux 0x6ddfd09c unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6de10849 sk_alloc +EXPORT_SYMBOL vmlinux 0x6dec1278 napi_complete_done EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df7fd1a blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x6dfca24e xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0x6e13bf2e rio_query_mport -EXPORT_SYMBOL vmlinux 0x6e245810 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x6e4bb8bb scsi_remove_host -EXPORT_SYMBOL vmlinux 0x6e59aa1b get_thermal_instance +EXPORT_SYMBOL vmlinux 0x6df6c083 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x6dfdea08 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x6e012e5c pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x6e04b1c6 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x6e081f19 _dev_notice +EXPORT_SYMBOL vmlinux 0x6e29ca24 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x6e53cf44 simple_dentry_operations EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run -EXPORT_SYMBOL vmlinux 0x6e696f87 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x6e6161f7 inet_put_port +EXPORT_SYMBOL vmlinux 0x6e616aae try_module_get EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e730ed3 dm_put_device -EXPORT_SYMBOL vmlinux 0x6e8ff3d9 xfrm_input +EXPORT_SYMBOL vmlinux 0x6e7aaaa7 vc_cons EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6ec50734 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x6ec318ce skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x6ed29e4f pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6f0f040e inet6_add_offload +EXPORT_SYMBOL vmlinux 0x6ef7e5cd qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x6ef95f27 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x6f0b1047 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x6f12b095 block_write_end EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f19db66 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x6f1eb135 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0x6f2aa987 inet6_protos -EXPORT_SYMBOL vmlinux 0x6f309b29 devm_gen_pool_create -EXPORT_SYMBOL vmlinux 0x6f34cd30 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x6f289c33 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x6f2979e9 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x6f2ed255 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x6f42bc4c pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f4c2d40 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x6f53752c mntget EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f5d6965 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x6f63bc63 unregister_netdev -EXPORT_SYMBOL vmlinux 0x6f75c02f bdev_start_io_acct -EXPORT_SYMBOL vmlinux 0x6f8182c0 vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0x6f845146 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x6f71e5ea add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x6f76c60d devm_request_resource +EXPORT_SYMBOL vmlinux 0x6f7793a5 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x6f80abf1 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x6f836d63 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x6f84f744 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x6f88ab50 seq_pad EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f948a90 is_nd_pfn -EXPORT_SYMBOL vmlinux 0x6f9d0ec2 put_disk -EXPORT_SYMBOL vmlinux 0x6fae70c8 acpi_device_set_power EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work -EXPORT_SYMBOL vmlinux 0x6fb5db5b nvdimm_namespace_common_probe -EXPORT_SYMBOL vmlinux 0x6fba60fe generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x6fba69aa clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 -EXPORT_SYMBOL vmlinux 0x6fdae9ab eth_gro_complete -EXPORT_SYMBOL vmlinux 0x6fe33c36 twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0x6fe87905 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x6fe6248f ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x6ff7d531 neigh_table_init EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 -EXPORT_SYMBOL vmlinux 0x7001ca13 vfs_statfs -EXPORT_SYMBOL vmlinux 0x70095845 pps_register_source -EXPORT_SYMBOL vmlinux 0x700b1153 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x700d7300 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x70033d83 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x70063157 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x70079fcf of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x700c6c17 key_create +EXPORT_SYMBOL vmlinux 0x7016de9c eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x70170b1a security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x7034a7a5 __blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x7042ebba i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x704aa26b fb_find_mode -EXPORT_SYMBOL vmlinux 0x7062c155 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x707ad15f fs_param_is_bool -EXPORT_SYMBOL vmlinux 0x707b07d2 serio_close -EXPORT_SYMBOL vmlinux 0x7086f4cc pskb_extract -EXPORT_SYMBOL vmlinux 0x70871043 unix_destruct_scm -EXPORT_SYMBOL vmlinux 0x70887635 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x708abc9f md_done_sync -EXPORT_SYMBOL vmlinux 0x709010dc input_release_device -EXPORT_SYMBOL vmlinux 0x709661a2 dma_resv_copy_fences -EXPORT_SYMBOL vmlinux 0x709735af pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x70a1ce8d __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x703b8bc3 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x7047ee3f tls_client_hello_x509 +EXPORT_SYMBOL vmlinux 0x7054f605 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x705e2c27 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x706aa4f6 send_sig +EXPORT_SYMBOL vmlinux 0x709cecd2 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70ae135e netif_skb_features -EXPORT_SYMBOL vmlinux 0x70b18409 simple_setattr -EXPORT_SYMBOL vmlinux 0x70c0580b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x70bff6c2 tty_kref_put +EXPORT_SYMBOL vmlinux 0x70c7a438 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x70ca2205 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x70cca5d8 dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool -EXPORT_SYMBOL vmlinux 0x70d7e32a dcb_setapp -EXPORT_SYMBOL vmlinux 0x70f3aba3 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x7106fbef jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x71151cf9 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x70d61dd2 ethtool_aggregate_pause_stats +EXPORT_SYMBOL vmlinux 0x70daa11e dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x70daefd5 scsi_print_command +EXPORT_SYMBOL vmlinux 0x70e2afa4 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x70f4e8dd page_mapping +EXPORT_SYMBOL vmlinux 0x70fa8024 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x711c5ac6 handshake_genl_put EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x712eb389 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x713cd27f generic_file_direct_write EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x7155bcf8 sync_file_get_fence EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715a9108 rproc_elf_load_segments -EXPORT_SYMBOL vmlinux 0x7163332b remove_watch_from_object -EXPORT_SYMBOL vmlinux 0x716811c1 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x71613470 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x716ed9e3 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x7177f6d3 reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x71805fd3 shmem_aops -EXPORT_SYMBOL vmlinux 0x7180c820 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x7181ae7c tcf_action_dump_1 -EXPORT_SYMBOL vmlinux 0x7188e629 poll_initwait +EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x718a10b9 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x718e5170 unlock_page EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71dbe80f netdev_offload_xstats_disable -EXPORT_SYMBOL vmlinux 0x71dbee0e fscrypt_setup_filename -EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x71f7351f __SetPageMovable -EXPORT_SYMBOL vmlinux 0x71f9eff2 pci_select_bars -EXPORT_SYMBOL vmlinux 0x72051085 icmp6_send +EXPORT_SYMBOL vmlinux 0x71a86927 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x71b180c3 amba_device_register +EXPORT_SYMBOL vmlinux 0x71b8c038 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x71e88e99 scsi_print_result +EXPORT_SYMBOL vmlinux 0x71fb6892 dma_fence_array_next EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x7234fbd9 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x724c7dcd fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x72515a14 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x7257e7d5 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x7216ebf4 of_find_property +EXPORT_SYMBOL vmlinux 0x7235eecc jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x723ff6ee xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x72400da8 arp_xmit +EXPORT_SYMBOL vmlinux 0x725653ad dst_dev_put EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x7280ae8d mmc_remove_host -EXPORT_SYMBOL vmlinux 0x72895c24 of_get_mac_address_nvmem -EXPORT_SYMBOL vmlinux 0x728f9f82 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x727c9c76 ethtool_notify EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72af1fdb vc_cons EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72d890a2 passthru_features_check +EXPORT_SYMBOL vmlinux 0x72bc4782 nf_reinject +EXPORT_SYMBOL vmlinux 0x72cea465 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72fac1da pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x72fa85a2 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x73081e99 finalize_exec EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config -EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL vmlinux 0x7321a880 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x731fcac1 dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x7330d117 follow_up -EXPORT_SYMBOL vmlinux 0x734e2443 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x735043e5 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x73514003 clk_get +EXPORT_SYMBOL vmlinux 0x73328d88 input_register_handler +EXPORT_SYMBOL vmlinux 0x733b2852 tcp_connect +EXPORT_SYMBOL vmlinux 0x733cf070 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x733f0f99 cdev_device_del +EXPORT_SYMBOL vmlinux 0x73423473 pci_bus_type EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x736602c6 seq_printf +EXPORT_SYMBOL vmlinux 0x7375d6cd to_nd_dax +EXPORT_SYMBOL vmlinux 0x737fa979 ppp_input_error EXPORT_SYMBOL vmlinux 0x7380dffa argv_split EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a3cf88 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x73a75cbf bio_copy_data_iter EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b2a20a tcp_enter_quickack_mode -EXPORT_SYMBOL vmlinux 0x73cbb514 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x73cf9b2a nd_device_register -EXPORT_SYMBOL vmlinux 0x73d670c8 i2c_transfer_buffer_flags -EXPORT_SYMBOL vmlinux 0x740aefb3 console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0x740c30c9 __quota_error -EXPORT_SYMBOL vmlinux 0x740fce3f fb_set_suspend +EXPORT_SYMBOL vmlinux 0x73b11e20 clk_get +EXPORT_SYMBOL vmlinux 0x73be0ebf nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x73f0dbf0 cdrom_open +EXPORT_SYMBOL vmlinux 0x73fe944f inet6_offloads EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x74144937 __kfree_skb EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7426db21 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x7433c096 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x74473122 dquot_resume EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x745e3ac9 serio_reconnect -EXPORT_SYMBOL vmlinux 0x745ef1a0 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x745f279c inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x745f6f06 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x7461777c pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x74670f06 inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x748fb4a7 kobject_del +EXPORT_SYMBOL vmlinux 0x74847eae napi_build_skb +EXPORT_SYMBOL vmlinux 0x7489bab8 current_time +EXPORT_SYMBOL vmlinux 0x748d4b3c devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x74995450 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x74a6c612 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74b9ad96 posix_acl_update_mode EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c69a9f nf_ct_attach -EXPORT_SYMBOL vmlinux 0x74dba968 copy_string_kernel -EXPORT_SYMBOL vmlinux 0x74e00774 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x74c63f58 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x74d0baa8 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x74d6f5f6 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x74da064a set_security_override +EXPORT_SYMBOL vmlinux 0x74dd9e0b dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x74df0b8e follow_up +EXPORT_SYMBOL vmlinux 0x74dfcc9a filemap_flush EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x74e9c59a xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x7511828a ilookup5 -EXPORT_SYMBOL vmlinux 0x75237af1 mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x75286045 input_inject_event -EXPORT_SYMBOL vmlinux 0x752c7fc6 security_inode_notifysecctx -EXPORT_SYMBOL vmlinux 0x75407f2a __seq_open_private +EXPORT_SYMBOL vmlinux 0x74f65936 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x74f77dc1 set_bh_page +EXPORT_SYMBOL vmlinux 0x75022fd7 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x75037015 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x751788eb generic_file_llseek +EXPORT_SYMBOL vmlinux 0x751add7c phy_attach_direct +EXPORT_SYMBOL vmlinux 0x753ed4a5 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x753f8ee7 netif_skb_features +EXPORT_SYMBOL vmlinux 0x754c9fee blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x755aa0d8 phy_ethtool_ksettings_get EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x7562be6d skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x756a8549 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x756fada9 secpath_set -EXPORT_SYMBOL vmlinux 0x757fdd8d devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x7567a952 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x757a1070 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x7598da67 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x759c5466 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x75a48440 config_group_init -EXPORT_SYMBOL vmlinux 0x75b5dc7d keyring_search +EXPORT_SYMBOL vmlinux 0x758aad49 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x758aeb09 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x75af8cb6 __skb_checksum +EXPORT_SYMBOL vmlinux 0x75b1c0e0 udp6_seq_ops EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next -EXPORT_SYMBOL vmlinux 0x75d01dbe xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x75cb9e55 pipe_lock EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x75d3a432 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75daae98 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x76052140 vme_dma_request EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x760b9876 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7615693d of_get_parent +EXPORT_SYMBOL vmlinux 0x7616ec2a param_array_ops EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x762c0c43 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x76247fa3 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x76296ab4 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7636c234 sk_net_capable EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq -EXPORT_SYMBOL vmlinux 0x7652b93a uart_write_wakeup EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766334ca scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x76669301 filemap_fault +EXPORT_SYMBOL vmlinux 0x76686623 folio_mark_dirty EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x76732f70 dump_skip +EXPORT_SYMBOL vmlinux 0x76740c9f add_watch_to_object +EXPORT_SYMBOL vmlinux 0x76781e60 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x7680082e mdiobus_read EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow -EXPORT_SYMBOL vmlinux 0x76843672 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x76975487 ptp_cancel_worker_sync -EXPORT_SYMBOL vmlinux 0x769c94fc vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x768bedb9 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x768cfe49 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x768d281a tcf_idr_release +EXPORT_SYMBOL vmlinux 0x768ee329 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x769d2c92 blk_queue_dma_alignment EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76ad679a xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x76c99054 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x76ca7c7a i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x76a8617e lynx_pcs_create_mdiodev +EXPORT_SYMBOL vmlinux 0x76c36b94 udp_seq_next +EXPORT_SYMBOL vmlinux 0x76d05d03 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76da9dd8 dcb_getapp -EXPORT_SYMBOL vmlinux 0x76e63680 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x76e9d337 page_pool_return_skb_page -EXPORT_SYMBOL vmlinux 0x76ecd2b9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x76ea5716 xfrm_state_delete_tunnel EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x76f06b8c blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x77054ea9 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x77081e2d eth_get_headlen -EXPORT_SYMBOL vmlinux 0x77148477 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x76f0b0ca phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x76fcbdf1 tso_start +EXPORT_SYMBOL vmlinux 0x77051563 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x771c5688 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x77319bd3 skb_pull_data EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x776e31f2 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x7777b2f6 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7766b36c generic_file_mmap +EXPORT_SYMBOL vmlinux 0x776aaed9 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x779ff28e from_kuid -EXPORT_SYMBOL vmlinux 0x77a4c1a4 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x779bdd8e of_iommu_get_resv_regions EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bf1e46 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x77c732c8 put_fs_context +EXPORT_SYMBOL vmlinux 0x77d57c9f tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x77db2dbb md_bitmap_unplug_async +EXPORT_SYMBOL vmlinux 0x77de77c1 input_mt_report_slot_state EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77eb9991 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x77eb1dfe mdiobus_write +EXPORT_SYMBOL vmlinux 0x7805e0f0 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x780ba141 iov_iter_revert -EXPORT_SYMBOL vmlinux 0x7826d99d cfb_fillrect -EXPORT_SYMBOL vmlinux 0x782bae03 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0x783a3578 simple_open +EXPORT_SYMBOL vmlinux 0x78129fff folio_create_empty_buffers +EXPORT_SYMBOL vmlinux 0x78161f39 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x78210bad tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x78274ce5 alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7856442c udp6_csum_init -EXPORT_SYMBOL vmlinux 0x78645322 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x7878e2dd jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x787bba16 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x78885be4 unpin_user_page -EXPORT_SYMBOL vmlinux 0x78889340 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0x789f94b7 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x785eb07d copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x78635985 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x78653d43 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x7869f666 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x7881f20d security_inode_init_security +EXPORT_SYMBOL vmlinux 0x788d02c7 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x789ccd97 max8925_reg_read EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78b0f604 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x78a7d503 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78c19808 mmc_request_done +EXPORT_SYMBOL vmlinux 0x78c77c66 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x78d275f3 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78faada7 __folio_alloc -EXPORT_SYMBOL vmlinux 0x7907d677 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0x790e9e2a xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x7922fbcf d_set_fallthru -EXPORT_SYMBOL vmlinux 0x7933d55c sock_sendmsg -EXPORT_SYMBOL vmlinux 0x79549a4a tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x79662ea5 security_unix_may_send -EXPORT_SYMBOL vmlinux 0x796746cb gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x79675e2c xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x7978e4a0 pci_match_id -EXPORT_SYMBOL vmlinux 0x79826b70 dma_set_mask +EXPORT_SYMBOL vmlinux 0x78f40029 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x78f4abf1 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x78f92431 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x7902ac2f phy_modify_paged +EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x791bc1b9 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x7923d09e md_handle_request +EXPORT_SYMBOL vmlinux 0x792f757c param_ops_long +EXPORT_SYMBOL vmlinux 0x794ba596 input_setup_polling +EXPORT_SYMBOL vmlinux 0x79593e28 sock_pfree +EXPORT_SYMBOL vmlinux 0x797c6bc8 pnp_register_driver EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798662a6 blackhole_netdev -EXPORT_SYMBOL vmlinux 0x798d3009 __alloc_skb -EXPORT_SYMBOL vmlinux 0x7999e59a tcp_recv_skb -EXPORT_SYMBOL vmlinux 0x79a0cbb2 page_pool_release_page -EXPORT_SYMBOL vmlinux 0x79a1fe21 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x798c8945 fman_reset_mac +EXPORT_SYMBOL vmlinux 0x79964f52 mdio_bus_type EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79ab0f5c __bh_read_batch -EXPORT_SYMBOL vmlinux 0x79c7b4d5 secure_tcpv6_ts_off -EXPORT_SYMBOL vmlinux 0x79cae0fc deactivate_super -EXPORT_SYMBOL vmlinux 0x79dcdd7d __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x79df9170 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0x79eb3e19 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x79f10e1a vfs_tmpfile_open +EXPORT_SYMBOL vmlinux 0x79d75629 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x79e4cbe8 override_creds +EXPORT_SYMBOL vmlinux 0x79f6f955 load_nls_default +EXPORT_SYMBOL vmlinux 0x79fd39ab input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x7a01f8d7 dev_mc_add_excl EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a280e06 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x7a28307c scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x7a297fbd xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a3d8e9b processors -EXPORT_SYMBOL vmlinux 0x7a482dac end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x7a48c4ac copy_page_from_iter EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a5e2871 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x7a66e858 security_sb_remount -EXPORT_SYMBOL vmlinux 0x7a6b98df pci_enable_ptm -EXPORT_SYMBOL vmlinux 0x7a8d52d6 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x7a903870 mount_bdev +EXPORT_SYMBOL vmlinux 0x7a549ac9 finish_open +EXPORT_SYMBOL vmlinux 0x7a86ee02 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7a8a2a55 bio_init EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a9d50da padata_free_shell EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa598d4 phy_find_first -EXPORT_SYMBOL vmlinux 0x7ab8ecde would_dump -EXPORT_SYMBOL vmlinux 0x7ac57578 from_kprojid +EXPORT_SYMBOL vmlinux 0x7aa284e2 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x7aa352e1 tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0x7ab23ed7 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x7ac06524 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x7ac8debf inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad3e182 cdrom_get_media_event EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7af8789c netdev_features_change -EXPORT_SYMBOL vmlinux 0x7b00d425 cdrom_release -EXPORT_SYMBOL vmlinux 0x7b09b7db vfs_link +EXPORT_SYMBOL vmlinux 0x7af13083 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x7afb4133 stop_tty +EXPORT_SYMBOL vmlinux 0x7b030b4c serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store -EXPORT_SYMBOL vmlinux 0x7b2a5413 unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x7b2c2235 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x7b0f79bd dev_alloc_name +EXPORT_SYMBOL vmlinux 0x7b1d70d2 tcf_block_put +EXPORT_SYMBOL vmlinux 0x7b225f8c pipe_unlock +EXPORT_SYMBOL vmlinux 0x7b2f725d mii_ethtool_gset EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b54f270 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x7b557e3b mmc_gpio_get_ro EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b5bfeb9 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x7b5f4f80 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x7b6e748b sock_release -EXPORT_SYMBOL vmlinux 0x7b74cf79 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x7b78553e dcache_readdir -EXPORT_SYMBOL vmlinux 0x7b7ecd2c tty_write_room +EXPORT_SYMBOL vmlinux 0x7b7d7a82 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x7b7f6ec9 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b8346ab flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0x7b892595 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x7b9d9238 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x7ba1978a path_put +EXPORT_SYMBOL vmlinux 0x7b8a1b26 pci_enable_device +EXPORT_SYMBOL vmlinux 0x7b8a8e25 get_user_pages_remote EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off -EXPORT_SYMBOL vmlinux 0x7bac541b clk_bulk_get_all -EXPORT_SYMBOL vmlinux 0x7bb42382 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bbd0dd8 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x7bcad462 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x7bf0184f devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x7bff91af kernel_sendpage -EXPORT_SYMBOL vmlinux 0x7c06fb19 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x7c05e28d __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7c110c55 tcf_idr_cleanup EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x7c2ec01f sock_rfree +EXPORT_SYMBOL vmlinux 0x7c2d03a6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x7c3745cc of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c48c0ce acpi_processor_notify_smm -EXPORT_SYMBOL vmlinux 0x7c48ec3b param_ops_bool -EXPORT_SYMBOL vmlinux 0x7c99480c mii_ethtool_set_link_ksettings -EXPORT_SYMBOL vmlinux 0x7c9f3e4d __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x7c5e6bad param_set_byte +EXPORT_SYMBOL vmlinux 0x7c614111 complete_request_key +EXPORT_SYMBOL vmlinux 0x7c874ccd call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7c983ebf d_obtain_root +EXPORT_SYMBOL vmlinux 0x7cabc850 xp_alloc +EXPORT_SYMBOL vmlinux 0x7cb5a45d arp_send +EXPORT_SYMBOL vmlinux 0x7cbe0cd2 drop_reasons_by_subsys +EXPORT_SYMBOL vmlinux 0x7cc18181 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7cc3b609 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x7ccfd892 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x7cd75266 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages +EXPORT_SYMBOL vmlinux 0x7cda7bae tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free -EXPORT_SYMBOL vmlinux 0x7cf4f7fd rt_mutex_base_init EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7cfffc47 skb_dequeue +EXPORT_SYMBOL vmlinux 0x7d027ba8 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d155181 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x7d1f4b64 sys_fillrect EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d47eb62 param_set_bint +EXPORT_SYMBOL vmlinux 0x7d46b37c md_bitmap_sync_with_cluster EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d61621b md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x7d709ad2 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x7d721c7d ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x7d5f9611 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x7d67bc49 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d771b50 udp_prot -EXPORT_SYMBOL vmlinux 0x7d842143 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x7d8bd816 genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x7d9788c3 i2c_clients_command -EXPORT_SYMBOL vmlinux 0x7dab00ab unix_detach_fds +EXPORT_SYMBOL vmlinux 0x7d7a4657 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x7d7a513c dev_get_iflink EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning -EXPORT_SYMBOL vmlinux 0x7dc3a960 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x7db6c9eb pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable -EXPORT_SYMBOL vmlinux 0x7dc8312e padata_alloc_shell EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7de0650c __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x7e07170b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x7dcfe485 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x7ddf67b6 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7df11711 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x7dfa9ec4 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x7e0709b4 ipv6_mc_check_mld EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp +EXPORT_SYMBOL vmlinux 0x7e151128 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x7e282c13 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e3bd8c9 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x7e4402d2 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x7e531b52 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x7e324ff9 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x7e34aac0 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x7e353464 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7e48a6ec generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x7e4c3df5 efi +EXPORT_SYMBOL vmlinux 0x7e4c7a03 sock_from_file EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e637440 phy_start_aneg -EXPORT_SYMBOL vmlinux 0x7e6eb5cf skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0x7e963135 phy_init_hw -EXPORT_SYMBOL vmlinux 0x7e9be1ee dev_mc_del +EXPORT_SYMBOL vmlinux 0x7e6131ca kobject_init +EXPORT_SYMBOL vmlinux 0x7e6205ce of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x7e80983c flow_rule_match_enc_ipv6_addrs EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7eb03de5 rproc_elf_load_rsc_table -EXPORT_SYMBOL vmlinux 0x7ed2667b udp_seq_start -EXPORT_SYMBOL vmlinux 0x7eddbabe dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x7ec2a33a __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7ed66141 vm_insert_page +EXPORT_SYMBOL vmlinux 0x7ed8f67c nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x7edb3bef __put_user_ns +EXPORT_SYMBOL vmlinux 0x7eeb4a65 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f1a0091 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x7f03e7e7 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7f0d17ee nf_log_bind_pf EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x7f31eeca kobject_put +EXPORT_SYMBOL vmlinux 0x7f3448fd pcie_capability_clear_and_set_word_locked +EXPORT_SYMBOL vmlinux 0x7f3aa0c6 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x7f3ab0d8 tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f620922 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f777870 flow_rule_match_icmp -EXPORT_SYMBOL vmlinux 0x7f7a61e6 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7f7abe83 xfrm4_rcv_encap EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f90c60e mmc_retune_release -EXPORT_SYMBOL vmlinux 0x7f9fc9e3 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x7f9f6e61 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7fb7705e generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x7fb9ca5b mmc_register_driver EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size -EXPORT_SYMBOL vmlinux 0x7fd1f9dc genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x7fde1fbc acpi_walk_resource_buffer EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x7fecfb2b jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x7ffd4970 dev_set_alias -EXPORT_SYMBOL vmlinux 0x80039818 fscrypt_put_encryption_info -EXPORT_SYMBOL vmlinux 0x800662c0 inet_shutdown -EXPORT_SYMBOL vmlinux 0x801aeff9 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x7fea0d59 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8000eb61 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x8002b982 netif_rx +EXPORT_SYMBOL vmlinux 0x800d7a70 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x80196adb xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x801b4a1e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x80272c9f devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x80286be3 pnp_start_dev EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80534dc8 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x805433fb generic_listxattr -EXPORT_SYMBOL vmlinux 0x805b2bec vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x805dee23 xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x806383b0 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x8046ee3c nf_log_unset +EXPORT_SYMBOL vmlinux 0x80496f37 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x805db106 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x806d20cc security_path_mknod +EXPORT_SYMBOL vmlinux 0x806f5747 inet6_add_offload EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x80933c47 skb_tunnel_check_pmtu -EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80914c53 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x80a15b10 netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80ae13c9 __skb_checksum -EXPORT_SYMBOL vmlinux 0x80b556e5 folio_wait_private_2 -EXPORT_SYMBOL vmlinux 0x80ba7411 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x80c389de of_match_node -EXPORT_SYMBOL vmlinux 0x80c50082 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x80c4c1d9 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d51042 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client -EXPORT_SYMBOL vmlinux 0x80ddaf6f bd_abort_claiming EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80ef8e38 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0x80f046b7 con_is_bound -EXPORT_SYMBOL vmlinux 0x80f8dde3 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x80fba956 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x810a3c03 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x810e13fa md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x810fbd68 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x81141c73 vm_mmap EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x8118f442 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x811a8b61 reuseport_attach_prog -EXPORT_SYMBOL vmlinux 0x812679a4 vfs_iocb_iter_write -EXPORT_SYMBOL vmlinux 0x812ac0cc misc_deregister -EXPORT_SYMBOL vmlinux 0x814024ce netdev_err -EXPORT_SYMBOL vmlinux 0x8147cdf6 devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0x8125480d eth_header_cache +EXPORT_SYMBOL vmlinux 0x8128f547 iterate_fd +EXPORT_SYMBOL vmlinux 0x8138a001 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x81491054 security_binder_transaction EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x81761750 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x816e2f3b nd_pfn_probe EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information EXPORT_SYMBOL vmlinux 0x8186333b cpumask_next_wrap EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc -EXPORT_SYMBOL vmlinux 0x8193348a twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x81934f0d tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x81988f34 hid_bpf_ops EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a85838 __lock_buffer EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81cf2a64 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x81d6c28b acpi_buffer_to_resource EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x820d5eaa scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x8224d0db blk_pm_runtime_init -EXPORT_SYMBOL vmlinux 0x822c858f cdc_parse_cdc_header -EXPORT_SYMBOL vmlinux 0x823876e4 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x81fc8fc5 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x8207ba58 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x8230c7df of_match_device EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x824f7328 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x824a6112 dqget +EXPORT_SYMBOL vmlinux 0x8254b2a7 kill_fasync EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk -EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec -EXPORT_SYMBOL vmlinux 0x826be8bb cdrom_open -EXPORT_SYMBOL vmlinux 0x82795efa __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x82aa3481 vfs_fileattr_set -EXPORT_SYMBOL vmlinux 0x82b84373 tty_unlock +EXPORT_SYMBOL vmlinux 0x827b4b97 dst_alloc +EXPORT_SYMBOL vmlinux 0x8287752e pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x8296d9a6 elevator_alloc +EXPORT_SYMBOL vmlinux 0x829bd553 param_ops_bint +EXPORT_SYMBOL vmlinux 0x82a12df6 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82d74a06 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x82dc0964 dma_resv_replace_fences -EXPORT_SYMBOL vmlinux 0x82e300bd tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x82edae87 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x82d0cf7a _dev_err +EXPORT_SYMBOL vmlinux 0x82d40197 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x82d4147e vme_master_mmap EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82fae57f inet_del_offload -EXPORT_SYMBOL vmlinux 0x8307d3fa phy_get_internal_delay -EXPORT_SYMBOL vmlinux 0x832117a1 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x83305063 skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0x834be283 mmc_can_gpio_cd -EXPORT_SYMBOL vmlinux 0x8352560f xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x82f02428 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x82f403e8 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x82ff597b fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x831a337f pci_release_resource +EXPORT_SYMBOL vmlinux 0x831f745a folio_wait_bit +EXPORT_SYMBOL vmlinux 0x83378751 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x8354e42e vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8364ede4 devm_register_netdev -EXPORT_SYMBOL vmlinux 0x8370bf8f set_security_override +EXPORT_SYMBOL vmlinux 0x835eb9b4 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x8372c500 seq_dentry +EXPORT_SYMBOL vmlinux 0x8382a79e seq_bprintf EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x838e7460 netif_device_detach -EXPORT_SYMBOL vmlinux 0x83a33362 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x83a71e07 inet_protos -EXPORT_SYMBOL vmlinux 0x83b4e455 __skb_try_recv_datagram -EXPORT_SYMBOL vmlinux 0x83c20698 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x84291126 key_move -EXPORT_SYMBOL vmlinux 0x842aff5d dquot_get_next_id -EXPORT_SYMBOL vmlinux 0x8435b9e4 mii_check_gmii_support -EXPORT_SYMBOL vmlinux 0x84404726 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x844a41a9 genphy_update_link -EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0x84577cfd tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x8473c986 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x83946ff8 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x83aa3ff2 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x83ca3390 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x83d2576e d_instantiate_new +EXPORT_SYMBOL vmlinux 0x83e47726 config_item_get +EXPORT_SYMBOL vmlinux 0x83f3b5b1 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x83f67cc1 single_release +EXPORT_SYMBOL vmlinux 0x8402b6f9 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x840576e0 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x8405e106 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x8409dd48 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x842767c0 logfc +EXPORT_SYMBOL vmlinux 0x844b5712 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x84606ec7 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x84724e04 pci_get_class EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x8484b23d request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x84853fef pci_request_regions -EXPORT_SYMBOL vmlinux 0x848d42af tegra_ahb_enable_smmu EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84ba6edc __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x84ee766a generic_copy_file_range -EXPORT_SYMBOL vmlinux 0x84f0b3c2 load_nls +EXPORT_SYMBOL vmlinux 0x84bcb7a4 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x84bf01d2 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x84e60d78 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x84e93bf4 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x84ea214a ptp_find_pin +EXPORT_SYMBOL vmlinux 0x850594df __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x85096e5c vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x851c9e54 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x851ecd05 pldmfw_flash_image -EXPORT_SYMBOL vmlinux 0x8522801e dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0x85294ce4 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x85448a8e devm_memremap -EXPORT_SYMBOL vmlinux 0x85486b35 sock_no_linger -EXPORT_SYMBOL vmlinux 0x854bec0a ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x85572ba8 single_open_size -EXPORT_SYMBOL vmlinux 0x855dfd67 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x8528aa75 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x8531c599 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel +EXPORT_SYMBOL vmlinux 0x85572c79 md_flush_request +EXPORT_SYMBOL vmlinux 0x8560c1a8 dev_mc_del +EXPORT_SYMBOL vmlinux 0x856332e8 phy_connect EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8582ba43 __bread_gfp +EXPORT_SYMBOL vmlinux 0x8578430e skb_dump +EXPORT_SYMBOL vmlinux 0x8590fb50 rtnl_unicast EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity -EXPORT_SYMBOL vmlinux 0x8596260f blk_integrity_register +EXPORT_SYMBOL vmlinux 0x85a2d12f sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85c2e784 pci_iomap -EXPORT_SYMBOL vmlinux 0x85dabb08 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x85df9b6c strsep -EXPORT_SYMBOL vmlinux 0x85e2325e netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x85e4bb11 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x85e977c5 dquot_file_open EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f0117f xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x85f2be6a xen_free_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x86160a54 pci_save_state -EXPORT_SYMBOL vmlinux 0x86249c54 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x862c4cb1 qdisc_put +EXPORT_SYMBOL vmlinux 0x85f596a4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x85faa437 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x860a4514 iput +EXPORT_SYMBOL vmlinux 0x860f3cfc neigh_seq_start EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node -EXPORT_SYMBOL vmlinux 0x863859da proc_remove +EXPORT_SYMBOL vmlinux 0x86341ebb import_iovec EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x865e1555 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x86641a07 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x863d6acb reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x8641bf98 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x8661e5fa iterate_dir EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x866ae2ad netpoll_parse_options -EXPORT_SYMBOL vmlinux 0x867b9a37 phy_init_eee -EXPORT_SYMBOL vmlinux 0x86879101 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x8675c080 bdi_register +EXPORT_SYMBOL vmlinux 0x8679fba9 configfs_register_group +EXPORT_SYMBOL vmlinux 0x86809281 __scm_destroy +EXPORT_SYMBOL vmlinux 0x8686e2f9 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869e5963 ip_frag_init -EXPORT_SYMBOL vmlinux 0x86bf5df1 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x86c672ff rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x86957fe3 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x86b4dc70 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86e1b259 __put_cred -EXPORT_SYMBOL vmlinux 0x86e9857e skb_dump +EXPORT_SYMBOL vmlinux 0x86e77820 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x86eed4db skb_ext_add +EXPORT_SYMBOL vmlinux 0x86f41979 bio_init_clone EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x86fea297 tcp_md5_hash_key -EXPORT_SYMBOL vmlinux 0x870d7b29 __mdiobus_write -EXPORT_SYMBOL vmlinux 0x8724aaa4 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x872d5ab8 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x8735e959 devfreq_add_device -EXPORT_SYMBOL vmlinux 0x873faee7 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x8753e9e2 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x875baac5 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x87180f8f is_bad_inode +EXPORT_SYMBOL vmlinux 0x874f31b4 blk_mq_end_request EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x877305bf dup_iter +EXPORT_SYMBOL vmlinux 0x8776fe0c phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x878e199e netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x878e1af8 xsk_clear_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x8794700a iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x87958c56 vm_map_ram EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87be6e52 sock_no_listen -EXPORT_SYMBOL vmlinux 0x87e484a5 nla_put -EXPORT_SYMBOL vmlinux 0x87f4112f path_has_submounts -EXPORT_SYMBOL vmlinux 0x880f596d dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x87c0c74c pci_dev_driver +EXPORT_SYMBOL vmlinux 0x87c8c92f dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x87d86035 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x880e94ea clk_bulk_get_all EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x8815cd85 d_exact_alias EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x882f8a2c phy_mac_interrupt -EXPORT_SYMBOL vmlinux 0x8846a92d jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x884c4725 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x885c638b of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x886fa11d may_umount +EXPORT_SYMBOL vmlinux 0x882997a0 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x882ad64e cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x88433114 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x884e5141 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x886025db nf_log_set +EXPORT_SYMBOL vmlinux 0x8864304d mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x8865bb53 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x8865ea00 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x88707611 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x8876f45f i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0x88841f37 nf_reinject EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x888eaca9 drop_super +EXPORT_SYMBOL vmlinux 0x8890cedb vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x88980852 mmc_start_request EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88a0708c tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x88a15eff mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x88aebdf5 register_framebuffer +EXPORT_SYMBOL vmlinux 0x88d9f944 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size -EXPORT_SYMBOL vmlinux 0x88e05338 block_dirty_folio EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e6aa98 elv_rb_find -EXPORT_SYMBOL vmlinux 0x890d3b61 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x8911792a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x88e380bc __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x88e3c805 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x88e9f5d3 input_unregister_device +EXPORT_SYMBOL vmlinux 0x88f5ce7c d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x890e9b5d mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order -EXPORT_SYMBOL vmlinux 0x8929708b udp_disconnect -EXPORT_SYMBOL vmlinux 0x8929b8c9 vmf_insert_mixed -EXPORT_SYMBOL vmlinux 0x892e78ba sock_alloc_file -EXPORT_SYMBOL vmlinux 0x8931f45a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x89220eca kill_anon_super EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x8948cdcc cpu_hwcaps -EXPORT_SYMBOL vmlinux 0x89597592 netpoll_send_skb -EXPORT_SYMBOL vmlinux 0x895ae27b tcp_v4_md5_lookup -EXPORT_SYMBOL vmlinux 0x8970ec83 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x896bde20 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x8971a8dd icmp6_send EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x89954103 inet_accept -EXPORT_SYMBOL vmlinux 0x89a6e2ff __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x89b7468e block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x89d389da phy_validate_pause -EXPORT_SYMBOL vmlinux 0x89d7dff7 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x89dfecbe skb_checksum -EXPORT_SYMBOL vmlinux 0x89e442e0 twl6040_power -EXPORT_SYMBOL vmlinux 0x89ea322d freezing_slow_path -EXPORT_SYMBOL vmlinux 0x8a0ca349 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x8a110398 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x8a1561ec tegra_dfll_runtime_resume -EXPORT_SYMBOL vmlinux 0x8a367f4b tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x8a3e46d2 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x8a404233 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x89a8f3ce param_set_charp +EXPORT_SYMBOL vmlinux 0x89ae2cb4 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x89b45854 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x89ba3b62 netlink_capable +EXPORT_SYMBOL vmlinux 0x89cadd07 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x89df2468 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x89efcbc8 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x8a024783 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x8a031cf7 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x8a1f3ab9 update_region +EXPORT_SYMBOL vmlinux 0x8a2e579f jbd2_journal_restart EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4ccc7b devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x8a5982d9 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x8a65765a __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x8a6fc12d vfs_mkobj EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a79506e blk_sync_queue EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory -EXPORT_SYMBOL vmlinux 0x8a7ffa2f tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x8a9919bc to_nd_dax +EXPORT_SYMBOL vmlinux 0x8a833583 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x8a87568a dec_zone_page_state EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa304a4 sk_error_report -EXPORT_SYMBOL vmlinux 0x8ab68cad page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x8aaecd60 __put_cred EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ade9c7e vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x8ac8ee74 seq_vprintf +EXPORT_SYMBOL vmlinux 0x8ade0d70 __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x8aefa97a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x8afb41b4 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b0515ec sk_free -EXPORT_SYMBOL vmlinux 0x8b065797 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x8b2b667f pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x8b2db096 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x8b04fb6d inet_bind +EXPORT_SYMBOL vmlinux 0x8b1d003a sk_ioctl +EXPORT_SYMBOL vmlinux 0x8b20fccc pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x8b241318 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x8b26ac7f ptp_clock_index EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b384921 param_set_uint -EXPORT_SYMBOL vmlinux 0x8b3d69ab of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x8b381502 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x8b46f78d sock_alloc_file EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6d1eaa i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x8b71c790 input_register_handle -EXPORT_SYMBOL vmlinux 0x8b733947 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x8b7c508d nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x8b7e5ed9 sget_fc +EXPORT_SYMBOL vmlinux 0x8b699117 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x8b6bd135 remap_pfn_range EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p -EXPORT_SYMBOL vmlinux 0x8b873987 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x8b8ecf20 dquot_acquire EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b919cf5 security_dentry_init_security EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8bc9e99a sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x8bccf015 pci_dev_get -EXPORT_SYMBOL vmlinux 0x8bd291a4 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x8bb833d3 vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x8be15dc2 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8be6ba92 security_sock_graft -EXPORT_SYMBOL vmlinux 0x8beac98f scsi_partsize -EXPORT_SYMBOL vmlinux 0x8c033e57 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x8c06c418 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x8c08d0a2 done_path_create -EXPORT_SYMBOL vmlinux 0x8c1df51e inet_del_protocol +EXPORT_SYMBOL vmlinux 0x8beef5a6 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x8c0fe515 dcb_ieee_getapp_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c2ac803 rio_query_mport +EXPORT_SYMBOL vmlinux 0x8c2ae658 generic_set_encrypted_ci_d_ops EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c412992 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x8c432c08 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x8c44c665 path_is_under -EXPORT_SYMBOL vmlinux 0x8c45ed6f genphy_suspend -EXPORT_SYMBOL vmlinux 0x8c5441f7 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x8c5b5876 notify_change -EXPORT_SYMBOL vmlinux 0x8c5dcdd1 vme_master_mmap -EXPORT_SYMBOL vmlinux 0x8c7ff101 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x8c342e22 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8c34ad31 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x8c713124 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x8c7c7bbb xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8c802fd7 param_ops_short EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c8fd71b vme_unregister_bridge EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8ca2ee61 param_set_ushort EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb3e9ef netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x8cc1b7d5 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x8cc3ba46 simple_transaction_set EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cdc1e64 __sock_create -EXPORT_SYMBOL vmlinux 0x8cf00730 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x8cf72ec9 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x8cfafefc __serio_register_port -EXPORT_SYMBOL vmlinux 0x8cfb2e6c scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x8cfc7b2a param_get_byte -EXPORT_SYMBOL vmlinux 0x8d083b70 sock_alloc -EXPORT_SYMBOL vmlinux 0x8d0f5f01 phy_resume -EXPORT_SYMBOL vmlinux 0x8d20dcdd kill_anon_super -EXPORT_SYMBOL vmlinux 0x8d2af96b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x8cfe1c58 ethtool_aggregate_phy_stats +EXPORT_SYMBOL vmlinux 0x8d00c86e __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x8d0776b5 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x8d0cc321 request_firmware EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d42cbe9 dup_iter -EXPORT_SYMBOL vmlinux 0x8d439649 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x8d47717d __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x8d50d71a d_add +EXPORT_SYMBOL vmlinux 0x8d537f22 mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d714d64 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d76cac2 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x8d7963da devm_release_resource -EXPORT_SYMBOL vmlinux 0x8d7d1b4b tcp_add_backlog -EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x8dbcb2a1 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x8dbd8982 device_match_acpi_handle -EXPORT_SYMBOL vmlinux 0x8dc0cb79 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x8dca2cd3 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x8d8471a2 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x8d9ddfb7 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x8da751bc mii_nway_restart +EXPORT_SYMBOL vmlinux 0x8dafaf22 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x8dc102ab __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x8dcec18d sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de397f7 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e148b7b vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x8e15efc6 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x8e3b3756 sock_create_kern +EXPORT_SYMBOL vmlinux 0x8e25de83 of_device_register +EXPORT_SYMBOL vmlinux 0x8e2cfeca simple_nosetlease +EXPORT_SYMBOL vmlinux 0x8e32ccee ip_frag_init +EXPORT_SYMBOL vmlinux 0x8e38a5fa of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e443760 mii_ethtool_sset EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e4f90c8 mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0x8e7794b4 set_anon_super_fc -EXPORT_SYMBOL vmlinux 0x8e87fd6c mdio_find_bus +EXPORT_SYMBOL vmlinux 0x8e53e2ef __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x8e7ec3cf udp_lib_setsockopt EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e9fec69 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x8eaff88c inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x8eb0132f pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x8e9a55b6 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8eac0bfe dquot_quota_on +EXPORT_SYMBOL vmlinux 0x8ebd8863 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x8ebf57a5 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ec9dbbe phy_attach_direct -EXPORT_SYMBOL vmlinux 0x8ee3bdc4 iget_locked -EXPORT_SYMBOL vmlinux 0x8ee7b435 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x8ef512fb param_get_ulong -EXPORT_SYMBOL vmlinux 0x8ef856e5 ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0x8efabbbb udp_pre_connect +EXPORT_SYMBOL vmlinux 0x8ed6fd5d begin_new_exec +EXPORT_SYMBOL vmlinux 0x8edfd72e shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x8ee35bae __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x8ef21928 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x8ef7b3c1 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x8ef80fcd md_wakeup_thread EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f1138de serio_bus -EXPORT_SYMBOL vmlinux 0x8f2156f7 nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0x8f5c418d blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x8f67deaf of_node_put -EXPORT_SYMBOL vmlinux 0x8f6fbbf2 vfs_create -EXPORT_SYMBOL vmlinux 0x8f716e02 submit_bh -EXPORT_SYMBOL vmlinux 0x8f7aad9b imx_scu_enable_general_irq_channel -EXPORT_SYMBOL vmlinux 0x8f822515 page_pool_update_nid -EXPORT_SYMBOL vmlinux 0x8f8a585d page_get_link +EXPORT_SYMBOL vmlinux 0x8f115569 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x8f1604b1 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x8f2251d9 fb_show_logo +EXPORT_SYMBOL vmlinux 0x8f22e766 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x8f26c51f tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x8f61b1fc sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x8f8cbc67 sk_common_release +EXPORT_SYMBOL vmlinux 0x8f9645be flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9a734d input_release_device EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fb2f0ed amba_device_unregister -EXPORT_SYMBOL vmlinux 0x8fb7c2b5 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x8fb93e2a dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x8fbac87d kill_pid +EXPORT_SYMBOL vmlinux 0x8fbe1f2f tcf_block_get EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin -EXPORT_SYMBOL vmlinux 0x8fd20746 skb_eth_pop -EXPORT_SYMBOL vmlinux 0x8fd3aa4f revert_creds -EXPORT_SYMBOL vmlinux 0x8fe3f255 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x8fd3c667 dquot_file_open +EXPORT_SYMBOL vmlinux 0x8fd7503f tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x8ff3f023 sg_miter_skip EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x90046b61 kmem_cache_alloc_node -EXPORT_SYMBOL vmlinux 0x900b749a nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x902238da zero_fill_bio EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9044a3e8 filp_close +EXPORT_SYMBOL vmlinux 0x90485c1c set_binfmt +EXPORT_SYMBOL vmlinux 0x904e7164 unload_nls EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x908ec892 dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0x909678df inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x909b558b skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x909eef89 tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x90aa4acd ilookup -EXPORT_SYMBOL vmlinux 0x90ac3741 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x90adea11 cros_ec_query_all -EXPORT_SYMBOL vmlinux 0x90b1a176 drop_reasons -EXPORT_SYMBOL vmlinux 0x90bc33c8 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x90f238ce sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x90fef2ee tcp_child_process +EXPORT_SYMBOL vmlinux 0x905aefe8 drop_super +EXPORT_SYMBOL vmlinux 0x906d0398 da903x_query_status +EXPORT_SYMBOL vmlinux 0x90710dda ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x90735e19 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x907b9e47 skb_expand_head +EXPORT_SYMBOL vmlinux 0x907bebb0 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x9084b9f3 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x90895b2a inet_add_offload +EXPORT_SYMBOL vmlinux 0x90917352 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x9092defd proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x90a03d02 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x90b1d21b __sock_i_ino +EXPORT_SYMBOL vmlinux 0x90cede15 key_alloc +EXPORT_SYMBOL vmlinux 0x90d8cbd8 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x90ea877a param_ops_byte +EXPORT_SYMBOL vmlinux 0x910ca882 tcp_poll +EXPORT_SYMBOL vmlinux 0x910e0a85 nf_log_unbind_pf EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x9125c6a5 fscrypt_decrypt_bio -EXPORT_SYMBOL vmlinux 0x91332793 skb_unlink -EXPORT_SYMBOL vmlinux 0x9136c972 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x914aaf35 pci_map_rom -EXPORT_SYMBOL vmlinux 0x915ed2b1 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x9134cc8b netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x9142b8d6 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x914feca1 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue -EXPORT_SYMBOL vmlinux 0x917f77c7 proc_set_size +EXPORT_SYMBOL vmlinux 0x917821f5 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x91796eb6 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91b34141 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x91bec605 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x91ae9a0b genphy_c37_config_aneg EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91da5218 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x91db3831 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x91e17a29 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x91e9f087 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x91f42e98 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x92126f63 devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0x921c9fba tcf_idr_cleanup -EXPORT_SYMBOL vmlinux 0x9222677b vfs_fadvise +EXPORT_SYMBOL vmlinux 0x92014c60 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x922e1ce2 param_ops_int EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear -EXPORT_SYMBOL vmlinux 0x92347bd1 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x92358484 udp_read_skb EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923f161a fwnode_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0x92407b20 netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0x924cd3cb skb_split EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x925f95b5 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x92600114 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x926560cb i2c_find_device_by_fwnode EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states -EXPORT_SYMBOL vmlinux 0x926eafb3 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92817487 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x9285f151 gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x92982e66 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x92997ed8 _printk -EXPORT_SYMBOL vmlinux 0x92b5e85f cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x929503fb pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x929878b2 posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92e71acf handshake_req_submit +EXPORT_SYMBOL vmlinux 0x92ec3148 bio_add_folio EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f8e1ff security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x92f645e3 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x92f8aeb6 block_write_begin EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x930421a8 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x931dc2cf __bio_advance -EXPORT_SYMBOL vmlinux 0x93221753 d_delete -EXPORT_SYMBOL vmlinux 0x933144c4 inet_frags_init -EXPORT_SYMBOL vmlinux 0x9351b3e0 mmc_unregister_driver -EXPORT_SYMBOL vmlinux 0x93534654 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x930aaa52 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x9314e7f5 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x932d4533 __ps2_command +EXPORT_SYMBOL vmlinux 0x933709ae max8998_write_reg +EXPORT_SYMBOL vmlinux 0x9337e599 dma_map_resource +EXPORT_SYMBOL vmlinux 0x935fcdff fs_context_for_submount EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x938d9b9f __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x937842dc ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x938197c9 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b0de1c icmp_ndo_send EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93b89327 fwnode_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x93cace76 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x93c7f775 pnp_release_card_device EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x941ff119 __breadahead -EXPORT_SYMBOL vmlinux 0x942648f9 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x93de6fe5 d_exact_alias +EXPORT_SYMBOL vmlinux 0x93e51a1c sock_register +EXPORT_SYMBOL vmlinux 0x93f3dbab __nlmsg_put +EXPORT_SYMBOL vmlinux 0x93f56aaf dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x93f79b68 md_register_thread +EXPORT_SYMBOL vmlinux 0x93f8656c sync_file_create +EXPORT_SYMBOL vmlinux 0x940247f1 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x9409de48 bmap +EXPORT_SYMBOL vmlinux 0x940ae5c0 phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn -EXPORT_SYMBOL vmlinux 0x94340050 max8925_reg_write -EXPORT_SYMBOL vmlinux 0x94428251 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x943d1eae pps_event EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x94824e9f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x94552780 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x94587abc find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x9468b967 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x946b0c6f dump_skip_to +EXPORT_SYMBOL vmlinux 0x94899717 scsi_host_get EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94a3aa6d param_get_int -EXPORT_SYMBOL vmlinux 0x94a4e648 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x94b30d02 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x949f0625 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x94b1a303 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x94b8af9c sk_ns_capable EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94caf9ed is_nd_dax -EXPORT_SYMBOL vmlinux 0x94de11dd tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x94c535cb framebuffer_release +EXPORT_SYMBOL vmlinux 0x94ca8d8e skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0x94f1b830 vme_dma_list_free EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x950693a6 jbd2_wait_inode_data EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950a1d0e tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x950c0538 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x95313ec3 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x95094439 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x950a5b79 scsi_add_device +EXPORT_SYMBOL vmlinux 0x950ec072 d_set_d_op +EXPORT_SYMBOL vmlinux 0x953ad2c5 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp -EXPORT_SYMBOL vmlinux 0x954b2763 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x95446cb2 from_kprojid_munged EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x9550061f blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x955f3545 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x954f2246 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x955a6e1c pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x955bb30f devm_free_irq +EXPORT_SYMBOL vmlinux 0x9562c93e config_group_find_item +EXPORT_SYMBOL vmlinux 0x95795df4 amba_request_regions +EXPORT_SYMBOL vmlinux 0x957c9ebf neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x9580253a put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x95852baf mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x959c9b73 __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95aadf38 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x95cbe1e0 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x95d9b0d3 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x95e30613 nonseekable_open -EXPORT_SYMBOL vmlinux 0x95f177a4 mmc_get_card -EXPORT_SYMBOL vmlinux 0x9629f50a __nla_put_64bit -EXPORT_SYMBOL vmlinux 0x962d23a8 filp_open -EXPORT_SYMBOL vmlinux 0x9673087a vfs_iter_write +EXPORT_SYMBOL vmlinux 0x95ae4b80 filemap_get_folios_tag +EXPORT_SYMBOL vmlinux 0x95bec311 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x95bf800d of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x95d7171d of_node_get +EXPORT_SYMBOL vmlinux 0x95e4ddae free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x95e67add skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x95f89f8a request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x95fb8184 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x95ff4712 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x96112c94 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x9621dac6 register_shrinker +EXPORT_SYMBOL vmlinux 0x96222b12 serio_bus +EXPORT_SYMBOL vmlinux 0x9642c33c posix_test_lock +EXPORT_SYMBOL vmlinux 0x9644add3 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x96622f62 secpath_set +EXPORT_SYMBOL vmlinux 0x9663ea28 vme_irq_free EXPORT_SYMBOL vmlinux 0x96848186 scnprintf EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x96944e56 __traceiter_mmap_lock_released -EXPORT_SYMBOL vmlinux 0x969533bd scsi_device_resume -EXPORT_SYMBOL vmlinux 0x96b06388 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x96898355 param_set_short +EXPORT_SYMBOL vmlinux 0x968d6ea2 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x969c4071 vfs_link EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96b4b5b6 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x96bb01b5 elv_rb_add EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c5a7c3 sunxi_sram_release EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96ce8718 dget_parent +EXPORT_SYMBOL vmlinux 0x96d536f4 tcf_exts_change EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96eb6213 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x96ebf093 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x96ef9daf sock_recvmsg -EXPORT_SYMBOL vmlinux 0x96f42831 proc_mkdir -EXPORT_SYMBOL vmlinux 0x96f760f7 inc_nlink -EXPORT_SYMBOL vmlinux 0x96f9a983 uart_match_port +EXPORT_SYMBOL vmlinux 0x96f5036d md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x96fa26cb pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x96fd9750 genphy_config_eee_advert -EXPORT_SYMBOL vmlinux 0x96ff18ee filemap_map_pages -EXPORT_SYMBOL vmlinux 0x9712cf9f pci_remove_bus -EXPORT_SYMBOL vmlinux 0x9721c04b vlan_vid_add -EXPORT_SYMBOL vmlinux 0x9726e078 dquot_destroy -EXPORT_SYMBOL vmlinux 0x972b7156 blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x97354e57 xp_alloc +EXPORT_SYMBOL vmlinux 0x9708131e jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x971471fc seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x97231412 netdev_err +EXPORT_SYMBOL vmlinux 0x97232e9d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x9728d9bc jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x973c9861 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x97492904 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x974b45ff ptp_find_pin -EXPORT_SYMBOL vmlinux 0x974ef047 input_flush_device -EXPORT_SYMBOL vmlinux 0x976ee676 param_get_bool -EXPORT_SYMBOL vmlinux 0x977222a4 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x97835e31 dcb_ieee_getapp_mask -EXPORT_SYMBOL vmlinux 0x978c8761 fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x978d42d3 fscrypt_decrypt_block_inplace -EXPORT_SYMBOL vmlinux 0x97934ae2 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x97958f87 dst_alloc +EXPORT_SYMBOL vmlinux 0x9740c632 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat +EXPORT_SYMBOL vmlinux 0x977d2539 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x97845605 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update -EXPORT_SYMBOL vmlinux 0x97a5dc82 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97bd84e0 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97c31846 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0x97c9533e fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0x97d59262 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x97eb54be dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x97f5a901 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x97f68b4e rt6_lookup -EXPORT_SYMBOL vmlinux 0x97fb2d08 touch_buffer -EXPORT_SYMBOL vmlinux 0x97febfda dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x981ecff7 skb_find_text +EXPORT_SYMBOL vmlinux 0x97c7b106 fqdir_init +EXPORT_SYMBOL vmlinux 0x97eb90a4 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x980944e7 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x981559e4 __netif_schedule EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x9834d3cd sk_capable +EXPORT_SYMBOL vmlinux 0x983872c3 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x98555a05 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x9858517a xfrm4_udp_encap_rcv EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x9897f2b1 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x98ae4d46 posix_lock_file -EXPORT_SYMBOL vmlinux 0x98b72fb0 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x986260f3 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x98a8703d sget_fc EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x98cdc837 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x98cb878e proc_dobool EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d29cd1 fs_lookup_param -EXPORT_SYMBOL vmlinux 0x98d7308f fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x98e0498e pci_assign_resource +EXPORT_SYMBOL vmlinux 0x98cfc439 kthread_stop +EXPORT_SYMBOL vmlinux 0x98cfef7e genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f63bd4 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x98f70c50 sk_net_capable EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x990d0515 of_iomap -EXPORT_SYMBOL vmlinux 0x990f7587 vlan_vid_del -EXPORT_SYMBOL vmlinux 0x992f820b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x990eabe9 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x992ae3d8 __xfrm_state_delete EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available -EXPORT_SYMBOL vmlinux 0x99355e77 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x99392b18 arp_create EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x993ef3a4 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x99528935 fman_port_bind -EXPORT_SYMBOL vmlinux 0x995bb5a3 dma_fence_describe -EXPORT_SYMBOL vmlinux 0x995ffa04 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x9960233a filemap_alloc_folio -EXPORT_SYMBOL vmlinux 0x99689c19 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x998e21e0 folio_alloc +EXPORT_SYMBOL vmlinux 0x995fff3a msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x9979e451 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x997ec42a tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x9982c029 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x9984f960 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x9989b74c mr_fill_mroute EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99b19011 __blk_alloc_disk -EXPORT_SYMBOL vmlinux 0x99baab29 bmap +EXPORT_SYMBOL vmlinux 0x99ab0d23 fman_port_bind EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation -EXPORT_SYMBOL vmlinux 0x99d4a561 filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0x99d7ba89 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0x99d7f5d5 of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99e4b16f acpi_dev_uid_to_integer -EXPORT_SYMBOL vmlinux 0x99e5f614 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x99f29b76 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x99db58f4 bio_integrity_add_page EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x99fdd13b configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x9a071293 inet_frag_pull_head -EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0x9a0c9fbc serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x9a15100d ndisc_ns_create -EXPORT_SYMBOL vmlinux 0x9a1d001f sg_miter_skip +EXPORT_SYMBOL vmlinux 0x9a05195a node_data +EXPORT_SYMBOL vmlinux 0x9a1477f2 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a326a8e make_kprojid -EXPORT_SYMBOL vmlinux 0x9a3717ca mroute6_is_socket -EXPORT_SYMBOL vmlinux 0x9a44ddc4 seq_release +EXPORT_SYMBOL vmlinux 0x9a308718 udplite_prot +EXPORT_SYMBOL vmlinux 0x9a3a5624 key_type_keyring EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a678c2a mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x9a6c8a98 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x9a6056fb inet_csk_accept +EXPORT_SYMBOL vmlinux 0x9a608d72 load_nls EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a812c0a unregister_quota_format -EXPORT_SYMBOL vmlinux 0x9a864879 mii_link_ok -EXPORT_SYMBOL vmlinux 0x9a99e505 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x9a7c36a9 block_write_full_page +EXPORT_SYMBOL vmlinux 0x9a85ce29 finish_swait +EXPORT_SYMBOL vmlinux 0x9a86949d __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x9a8ee3e3 netdev_update_features +EXPORT_SYMBOL vmlinux 0x9a918c64 unlock_buffer +EXPORT_SYMBOL vmlinux 0x9a99a233 gro_cells_init EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ac05134 elevator_alloc -EXPORT_SYMBOL vmlinux 0x9ac177b4 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x9acdd51a page_symlink -EXPORT_SYMBOL vmlinux 0x9ad3439f pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x9adde5d0 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x9ab17d39 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x9ab26886 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x9acbe819 wireless_spy_update EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9ae8db9c __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x9b062d4e neigh_parms_release -EXPORT_SYMBOL vmlinux 0x9b10488f netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x9aefa609 flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state -EXPORT_SYMBOL vmlinux 0x9b227564 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x9b255496 rw_verify_area EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe -EXPORT_SYMBOL vmlinux 0x9b338c2b ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b4d67b5 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x9b50e807 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x9b5989ce folio_migrate_copy EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq -EXPORT_SYMBOL vmlinux 0x9b6cb16d __dev_remove_pack EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b903dcc phy_drivers_register -EXPORT_SYMBOL vmlinux 0x9b94cd5f pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x9bab0d0b inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x9bc11753 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x9bca1c80 nf_log_packet -EXPORT_SYMBOL vmlinux 0x9bdbf3b6 _dev_err -EXPORT_SYMBOL vmlinux 0x9bf6d7df param_ops_int -EXPORT_SYMBOL vmlinux 0x9c06b092 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x9bb2f98c posix_lock_file +EXPORT_SYMBOL vmlinux 0x9bc00837 __inet_hash +EXPORT_SYMBOL vmlinux 0x9bc1fa2c dm_register_target +EXPORT_SYMBOL vmlinux 0x9bdc5473 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x9bdf2ed9 nf_log_packet +EXPORT_SYMBOL vmlinux 0x9beb0fd0 inode_init_once +EXPORT_SYMBOL vmlinux 0x9c03cfac blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x9c093974 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c2c998a arp_tbl -EXPORT_SYMBOL vmlinux 0x9c33db0d devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x9c3cdf34 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x9c2ebc88 inet_release +EXPORT_SYMBOL vmlinux 0x9c4517c8 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c6470f3 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x9c6512f4 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x9c7b26f1 put_watch_queue EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags -EXPORT_SYMBOL vmlinux 0x9c8da040 new_inode -EXPORT_SYMBOL vmlinux 0x9c8f910b crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x9c991cb7 pci_write_vpd EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user +EXPORT_SYMBOL vmlinux 0x9ca7f418 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x9caa1136 neigh_resolve_output EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name -EXPORT_SYMBOL vmlinux 0x9cb58e42 peernet2id +EXPORT_SYMBOL vmlinux 0x9cbeaa83 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x9ccd688a posix_acl_chmod EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9ccf8c5d folio_write_one -EXPORT_SYMBOL vmlinux 0x9cd01df2 seq_read -EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce0e556 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x9ce37a50 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x9cdfce30 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x9ce1c62e fb_io_read +EXPORT_SYMBOL vmlinux 0x9cefb3bf vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x9cf2a4e6 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x9d0c19ca generic_write_end EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x9d1541f7 eth_validate_addr EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d2fe9ee xsk_tx_release -EXPORT_SYMBOL vmlinux 0x9d48741c devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x9d4c79b9 simple_release_fs -EXPORT_SYMBOL vmlinux 0x9d569f49 netif_set_tso_max_size -EXPORT_SYMBOL vmlinux 0x9d5de898 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x9d2e9951 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x9d32646c blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x9d386a33 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x9d56fe13 kmem_cache_create EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d62632d netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0x9d68141c fman_set_port_params -EXPORT_SYMBOL vmlinux 0x9d82f42a lynx_pcs_create +EXPORT_SYMBOL vmlinux 0x9d78bff0 rproc_boot +EXPORT_SYMBOL vmlinux 0x9d86ce3c mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x9d87244a netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d9fc30f prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0x9daa031b iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0x9dc4b17f nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x9dcd83dc flush_signals -EXPORT_SYMBOL vmlinux 0x9dd11642 ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x9dd943ea iterate_fd +EXPORT_SYMBOL vmlinux 0x9da33de1 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x9db434f6 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x9dbf2387 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x9dd40950 __netif_rx EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9ddf3e48 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x9de2fd18 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x9ded7c40 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x9de64ff4 simple_unlink EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits +EXPORT_SYMBOL vmlinux 0x9e05662a bio_copy_data +EXPORT_SYMBOL vmlinux 0x9e0c7029 devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e17d3e2 register_framebuffer -EXPORT_SYMBOL vmlinux 0x9e243da8 da903x_query_status -EXPORT_SYMBOL vmlinux 0x9e252370 input_set_capability -EXPORT_SYMBOL vmlinux 0x9e257c7a tcf_register_action +EXPORT_SYMBOL vmlinux 0x9e1b4ebd find_vma_intersection +EXPORT_SYMBOL vmlinux 0x9e1c88af skb_copy_header +EXPORT_SYMBOL vmlinux 0x9e230d9b dev_uc_init EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2a6b5c update_region -EXPORT_SYMBOL vmlinux 0x9e2cd5c6 i2c_smbus_read_word_data -EXPORT_SYMBOL vmlinux 0x9e2f89fe __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x9e38ea7d debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x9e2a8103 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x9e2f20ec unregister_cdrom +EXPORT_SYMBOL vmlinux 0x9e451143 serio_reconnect EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e530c8f dev_get_by_index EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e6849f7 fb_validate_mode -EXPORT_SYMBOL vmlinux 0x9e78d7e4 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x9e6cd26d filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e847b17 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x9e87ace6 thaw_super EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eb0b516 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq -EXPORT_SYMBOL vmlinux 0x9eb68ae7 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9eb1d9fb pci_find_capability EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ecadd02 fb_firmware_edid -EXPORT_SYMBOL vmlinux 0x9ecb3f9a security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9edcb291 tty_vhangup -EXPORT_SYMBOL vmlinux 0x9ee5e544 __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x9f009771 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0x9f0c1288 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x9f1e3f2f iunique -EXPORT_SYMBOL vmlinux 0x9f24ad99 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x9f37f5f8 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x9edeceff sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x9ee87d2f napi_get_frags +EXPORT_SYMBOL vmlinux 0x9ef2a239 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x9ef358d0 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x9f008831 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x9f0d0672 seq_read_iter +EXPORT_SYMBOL vmlinux 0x9f0d7008 netdev_emerg +EXPORT_SYMBOL vmlinux 0x9f258f5e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x9f3228c3 md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x9f4c8ff8 console_stop EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f625102 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x9f569d1b blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x9f728d34 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x9f73f8f9 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f8aad75 of_find_node_with_property -EXPORT_SYMBOL vmlinux 0x9f9364ff tty_lock +EXPORT_SYMBOL vmlinux 0x9f863ff4 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x9f953250 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0x9f984513 strrchr -EXPORT_SYMBOL vmlinux 0x9f9f30b9 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x9fa2a4e9 tty_port_open +EXPORT_SYMBOL vmlinux 0x9fa37a5e inode_io_list_del EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fd701a5 d_move +EXPORT_SYMBOL vmlinux 0x9fcfb3b8 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x9fdc72af pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x9fde04c2 of_find_compatible_node EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fdffdab I_BDEV EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x9ffc7a74 jbd2_journal_invalidate_folio -EXPORT_SYMBOL vmlinux 0xa003ee35 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x9ffe84c7 mipi_dsi_dcs_set_display_off EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa016d118 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xa01a2ad3 proto_unregister EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa02e523e blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0xa02ffeb3 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa0312fab vfs_fileattr_get EXPORT_SYMBOL vmlinux 0xa033d747 next_arg -EXPORT_SYMBOL vmlinux 0xa034ef91 pci_release_region -EXPORT_SYMBOL vmlinux 0xa036ac94 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa0400532 ipv4_specific EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa0574636 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05ebfd1 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xa06fcf54 __mdiobus_register EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07bdcaf flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08b29b8 release_sock EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable -EXPORT_SYMBOL vmlinux 0xa0970b52 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xa0a601de pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xa0a6bdbe __bio_advance EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b00717 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b58622 mdiobb_read -EXPORT_SYMBOL vmlinux 0xa0be55f1 __module_put_and_kthread_exit -EXPORT_SYMBOL vmlinux 0xa0c3976e inet6_register_protosw -EXPORT_SYMBOL vmlinux 0xa0c8db0f md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xa0cde74c __dev_get_by_index -EXPORT_SYMBOL vmlinux 0xa0d23d9c alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xa0d5569b skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xa0d8727f sk_wait_data +EXPORT_SYMBOL vmlinux 0xa0c00e74 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xa0d2be8f param_set_copystring EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0e153b2 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa0e0718e key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xa0e4a15f kobject_put EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table -EXPORT_SYMBOL vmlinux 0xa0f116e7 kill_litter_super EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit -EXPORT_SYMBOL vmlinux 0xa104f104 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa0fd9f50 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xa0feb263 tcf_exts_init_ex EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa1115e2b get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0xa11342bb pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0xa113ef6b flow_rule_match_arp -EXPORT_SYMBOL vmlinux 0xa18375bb ip_output -EXPORT_SYMBOL vmlinux 0xa196dbff __free_pages -EXPORT_SYMBOL vmlinux 0xa1985028 inet_add_offload -EXPORT_SYMBOL vmlinux 0xa1a698aa md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xa1b0635b bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xa1b33b80 fasync_helper -EXPORT_SYMBOL vmlinux 0xa1cc9af5 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0xa1ed2e64 dev_alloc_name -EXPORT_SYMBOL vmlinux 0xa1f1b947 backlight_device_register +EXPORT_SYMBOL vmlinux 0xa115da49 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xa11e9d80 fqdir_exit +EXPORT_SYMBOL vmlinux 0xa129078e generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xa12bb4f6 may_setattr +EXPORT_SYMBOL vmlinux 0xa147a3a1 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0xa153fd2d clear_inode +EXPORT_SYMBOL vmlinux 0xa16b0082 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xa191f450 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xa1a09ab9 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xa1a8360d tty_register_driver +EXPORT_SYMBOL vmlinux 0xa1b53ee1 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xa1b6f6c1 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xa1c68495 skb_tx_error +EXPORT_SYMBOL vmlinux 0xa1cb7e57 phy_attached_info EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa20e6336 device_add_disk +EXPORT_SYMBOL vmlinux 0xa2127e0b xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xa227f685 netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0xa239ef77 inode_dio_wait EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24ef13d iunique EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xa26c15c2 sg_miter_next -EXPORT_SYMBOL vmlinux 0xa27d8fd5 scm_detach_fds -EXPORT_SYMBOL vmlinux 0xa280edaa rproc_boot EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2a1d2a7 tty_do_resize -EXPORT_SYMBOL vmlinux 0xa2ba1915 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0xa2be5a2d dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0xa2c2f324 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xa29a27a8 pci_save_state +EXPORT_SYMBOL vmlinux 0xa2af1c53 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xa2bc7680 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xa2c4578d devm_iounmap EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2e4d7e5 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0xa2f65234 __i2c_transfer -EXPORT_SYMBOL vmlinux 0xa303914d flow_rule_match_meta -EXPORT_SYMBOL vmlinux 0xa3047602 inode_needs_sync -EXPORT_SYMBOL vmlinux 0xa30ae882 fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0xa32c716d jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xa2e293ff dev_mc_flush +EXPORT_SYMBOL vmlinux 0xa2f6bd2b dquot_commit +EXPORT_SYMBOL vmlinux 0xa30b0543 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xa30c2476 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xa31d7850 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xa32b42a4 nf_log_register +EXPORT_SYMBOL vmlinux 0xa32bee44 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xa32f063b seq_open +EXPORT_SYMBOL vmlinux 0xa336daf0 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xa3394ba7 nla_reserve EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask -EXPORT_SYMBOL vmlinux 0xa34defcd sock_no_accept EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa3957c14 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xa395e20f kobject_get -EXPORT_SYMBOL vmlinux 0xa3b9707e of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xa3bc07c4 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xa366974b linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xa3849485 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xa3935d49 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xa3ad3904 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xa3b466c6 skb_split EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch -EXPORT_SYMBOL vmlinux 0xa3c18e84 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0xa3cdc14b of_get_cpu_node EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3d73f7b reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0xa3fa3e16 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xa3fb9016 devm_clk_get +EXPORT_SYMBOL vmlinux 0xa3d8147a fsync_bdev +EXPORT_SYMBOL vmlinux 0xa3ee49eb scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xa3fd1072 __vfs_getxattr EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final -EXPORT_SYMBOL vmlinux 0xa40ec748 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xa40e1dcb d_instantiate EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4290932 follow_pfn -EXPORT_SYMBOL vmlinux 0xa43d4b5d stream_open -EXPORT_SYMBOL vmlinux 0xa443be3b security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xa42c19eb twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xa444f1a0 rproc_detach EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa477ea33 ppp_input -EXPORT_SYMBOL vmlinux 0xa49375ce cros_ec_cmd_xfer -EXPORT_SYMBOL vmlinux 0xa496c568 of_device_alloc -EXPORT_SYMBOL vmlinux 0xa49b1d7b tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0xa4a03804 tcp_md5_do_del -EXPORT_SYMBOL vmlinux 0xa4be605d clocksource_change_rating -EXPORT_SYMBOL vmlinux 0xa4c7acbe kobject_set_name -EXPORT_SYMBOL vmlinux 0xa4dbb190 request_key_tag -EXPORT_SYMBOL vmlinux 0xa4ea1d54 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0xa4eefb28 inet_sendpage -EXPORT_SYMBOL vmlinux 0xa4f4d4d4 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xa44df2df iproc_msi_init +EXPORT_SYMBOL vmlinux 0xa4609da6 filemap_splice_read +EXPORT_SYMBOL vmlinux 0xa46118e6 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xa46b1526 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xa472f41c kill_pgrp +EXPORT_SYMBOL vmlinux 0xa47758c3 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xa4909894 tty_port_put +EXPORT_SYMBOL vmlinux 0xa4911220 ethtool_aggregate_mac_stats +EXPORT_SYMBOL vmlinux 0xa4a15faf pci_choose_state +EXPORT_SYMBOL vmlinux 0xa4a5dc78 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xa4de50f5 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xa4ea026c pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xa4f03a88 thaw_bdev EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa506bd8c blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xa512e82e tc_setup_cb_call -EXPORT_SYMBOL vmlinux 0xa51ee1f0 readahead_expand +EXPORT_SYMBOL vmlinux 0xa506606a kernel_bind +EXPORT_SYMBOL vmlinux 0xa5067b7a netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xa5196740 proc_set_size +EXPORT_SYMBOL vmlinux 0xa51ee298 inet_dev_addr_type EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa53f14b5 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xa54847fe folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xa548ed4a __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa5553ce4 dev_deactivate -EXPORT_SYMBOL vmlinux 0xa5613dc5 vmap -EXPORT_SYMBOL vmlinux 0xa56f8b9b pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xa5549a69 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xa56b7bb5 has_capability +EXPORT_SYMBOL vmlinux 0xa5827b44 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xa5876e7c xfrm_policy_insert EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5978ebe xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xa59b7807 sk_dst_check -EXPORT_SYMBOL vmlinux 0xa59de630 get_fs_type -EXPORT_SYMBOL vmlinux 0xa5a68b45 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0xa5a73a8f serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xa5c615f8 d_instantiate_new -EXPORT_SYMBOL vmlinux 0xa5caf9a7 mptcp_subflow_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xa5d0615d jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa5b1f2b3 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xa5bdb76d i2c_del_driver +EXPORT_SYMBOL vmlinux 0xa5caa0b7 get_inode_acl +EXPORT_SYMBOL vmlinux 0xa5d1e998 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xa5da2d48 inode_query_iversion EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa609269f devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xa60a96c2 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xa5fe39b4 param_set_hexint +EXPORT_SYMBOL vmlinux 0xa600e335 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xa611a952 pci_remove_bus EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa61fb2a7 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xa621ad09 netpoll_print_options EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa633733b skb_store_bits -EXPORT_SYMBOL vmlinux 0xa641eb27 rpmh_write +EXPORT_SYMBOL vmlinux 0xa62c3618 arp_tbl +EXPORT_SYMBOL vmlinux 0xa634ac46 may_umount +EXPORT_SYMBOL vmlinux 0xa6434dfb jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xa6457c89 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds -EXPORT_SYMBOL vmlinux 0xa64a747a qdisc_offload_graft_helper EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa650799a mdiobus_free -EXPORT_SYMBOL vmlinux 0xa651064a textsearch_register -EXPORT_SYMBOL vmlinux 0xa66ceedb nd_device_unregister +EXPORT_SYMBOL vmlinux 0xa6598f68 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xa65c6def alt_cb_patch_nops EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa694c19f mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xa69532eb xfrm4_rcv -EXPORT_SYMBOL vmlinux 0xa697aa82 elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0xa69ed606 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa6a3102f of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xa6c0c9c4 folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0xa6c9ec72 hash_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0xa6cbf9dd skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xa6f86729 netpoll_setup +EXPORT_SYMBOL vmlinux 0xa683abb4 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xa6902ab4 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa69ad205 netlink_set_err +EXPORT_SYMBOL vmlinux 0xa6a182f4 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xa6c34731 clk_bulk_get +EXPORT_SYMBOL vmlinux 0xa6d21927 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xa6d659b0 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xa6d87f89 get_tree_bdev EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa70bcd6e inc_zone_page_state EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa716e2b6 inet_accept EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order -EXPORT_SYMBOL vmlinux 0xa7285a4f thaw_bdev +EXPORT_SYMBOL vmlinux 0xa73fe8e5 get_phy_device +EXPORT_SYMBOL vmlinux 0xa742b0dd xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xa749a7f5 devm_ioport_map EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa757b487 rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0xa75cdd6a blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xa764ce9b devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xa764fc22 vme_master_request -EXPORT_SYMBOL vmlinux 0xa770e95c udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xa76237d9 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xa76a37b1 pci_iomap_range EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa7836472 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0xa788c9d1 i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0xa78ff692 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0xa79ecb1d blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0xa7ca7f34 __f_setown -EXPORT_SYMBOL vmlinux 0xa7cc3c03 mmc_command_done +EXPORT_SYMBOL vmlinux 0xa78119b3 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xa79a0b3f devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xa7b70903 tty_register_device EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7e127ec tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xa7d69587 iget_failed +EXPORT_SYMBOL vmlinux 0xa7e7af31 freeze_bdev EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa8015e59 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xa8078757 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0xa817b672 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec -EXPORT_SYMBOL vmlinux 0xa822742f sk_capable -EXPORT_SYMBOL vmlinux 0xa8269acd dma_find_channel -EXPORT_SYMBOL vmlinux 0xa82773f8 phy_remove_link_mode -EXPORT_SYMBOL vmlinux 0xa8436df7 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xa8161d85 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xa8215491 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xa829ac40 tcf_register_action EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox -EXPORT_SYMBOL vmlinux 0xa84f4946 framebuffer_alloc EXPORT_SYMBOL vmlinux 0xa853396b xa_extract -EXPORT_SYMBOL vmlinux 0xa8535548 of_phy_connect -EXPORT_SYMBOL vmlinux 0xa858f43a fb_set_cmap EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85b7b24 page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xa85d4c55 input_event +EXPORT_SYMBOL vmlinux 0xa8676398 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa86ff9dd __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0xa87329cd pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xa8695ef9 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xa86f08c8 inode_init_always +EXPORT_SYMBOL vmlinux 0xa88446ba phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xa88c9723 tty_check_change +EXPORT_SYMBOL vmlinux 0xa8961a25 address_space_init_once EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa8982b56 mdiobus_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa89b5388 inet6_offloads -EXPORT_SYMBOL vmlinux 0xa89bc6e1 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xa89d764f pps_unregister_source EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8a91c38 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xa8b197b8 skb_try_coalesce EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all -EXPORT_SYMBOL vmlinux 0xa8dbf466 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xa8ceedca revert_creds +EXPORT_SYMBOL vmlinux 0xa8d7a6f7 mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0xa8df88e9 serio_close +EXPORT_SYMBOL vmlinux 0xa8e66577 __d_drop EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8e6956c skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xa8f3fb97 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa903fd5b md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xa90ba17c mdiobus_c45_read_nested EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa916b694 strnlen -EXPORT_SYMBOL vmlinux 0xa91e5071 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0xa923172b make_bad_inode -EXPORT_SYMBOL vmlinux 0xa92a163c mipi_dsi_host_register -EXPORT_SYMBOL vmlinux 0xa92d8c12 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xa9428407 follow_down -EXPORT_SYMBOL vmlinux 0xa948aae0 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0xa949cf6a kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa9344efa scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xa9351e1c task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa955289b pci_find_capability +EXPORT_SYMBOL vmlinux 0xa94bbc31 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa9667b77 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xa96f8996 get_thermal_instance EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa982dc15 sk_stop_timer -EXPORT_SYMBOL vmlinux 0xa9938b29 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xa9a2ba69 __break_lease -EXPORT_SYMBOL vmlinux 0xa9b1ac11 netif_rx -EXPORT_SYMBOL vmlinux 0xa9c593f9 fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0xa9cd3852 mq_change_real_num_tx -EXPORT_SYMBOL vmlinux 0xa9cf22e0 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0xa9d69612 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0xa9d7e59f kernel_accept +EXPORT_SYMBOL vmlinux 0xa984a842 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa9866a83 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0xa99ca596 genlmsg_put +EXPORT_SYMBOL vmlinux 0xa9a864dd pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xa9b368b3 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xa9d501cb security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xa9d839af netdev_change_features +EXPORT_SYMBOL vmlinux 0xa9e10f0e key_payload_reserve EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9f14ee2 phy_attach -EXPORT_SYMBOL vmlinux 0xa9ffe854 dm_get_device EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction -EXPORT_SYMBOL vmlinux 0xaa025297 vfs_readlink +EXPORT_SYMBOL vmlinux 0xaa093e36 netlink_ack EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa25f635 iput +EXPORT_SYMBOL vmlinux 0xaa1cdf2d mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xaa1dd4aa rfkill_alloc +EXPORT_SYMBOL vmlinux 0xaa2d83e6 done_path_create +EXPORT_SYMBOL vmlinux 0xaa32e655 skb_copy_and_csum_datagram_msg EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa4c281b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xaa37165c set_anon_super +EXPORT_SYMBOL vmlinux 0xaa4a1263 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xaa507e14 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xaa6aa336 generic_file_read_iter EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa70c388 __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa811d43 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xaa8b0a45 of_graph_get_endpoint_by_regs EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaaa7ff4b buffer_migrate_folio -EXPORT_SYMBOL vmlinux 0xaab8c6e9 __nd_driver_register -EXPORT_SYMBOL vmlinux 0xaac4b905 block_write_begin -EXPORT_SYMBOL vmlinux 0xaac814ba netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xaac362a5 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xaacf03c1 dma_fence_signal EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad3cae2 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xaad5cbda devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaaf07bd8 ps2_cmd_aborted EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaaf9794b scsi_rescan_device EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp -EXPORT_SYMBOL vmlinux 0xab175ebe __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0xab1a6027 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xab331bba sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xab196629 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xab1d9a08 inode_set_flags +EXPORT_SYMBOL vmlinux 0xab269136 kmalloc_trace EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init -EXPORT_SYMBOL vmlinux 0xab39fba9 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab45f807 sunxi_sram_claim -EXPORT_SYMBOL vmlinux 0xab4a51b0 sock_no_getname +EXPORT_SYMBOL vmlinux 0xab51ec6d kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xab583886 fman_register_intr +EXPORT_SYMBOL vmlinux 0xab5ab54d mdio_device_free EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off -EXPORT_SYMBOL vmlinux 0xab617ca7 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xab62531d drop_nlink EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xab646a46 qdisc_put_unlocked EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab72a305 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xab73ad44 mmc_get_card EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab9d15dc dump_align -EXPORT_SYMBOL vmlinux 0xaba1b420 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xaba34937 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0xabb42425 set_groups -EXPORT_SYMBOL vmlinux 0xabc1b1eb ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0xabc72bf8 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0xabe75c40 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xab925344 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xab939821 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xaba9aaf3 ppp_input +EXPORT_SYMBOL vmlinux 0xabacf615 phy_init_eee +EXPORT_SYMBOL vmlinux 0xabbd4ae0 d_genocide +EXPORT_SYMBOL vmlinux 0xabbfd554 security_sctp_bind_connect EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xac01abbc pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0xac1a438f dcache_dir_lseek EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac21e69f mntget -EXPORT_SYMBOL vmlinux 0xac24b412 mipi_dsi_picture_parameter_set -EXPORT_SYMBOL vmlinux 0xac2ca549 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xac2568b0 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xac2f19c5 of_get_mac_address_nvmem EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac3e12dc bio_free_pages -EXPORT_SYMBOL vmlinux 0xac3f8e89 fwnode_get_mac_address -EXPORT_SYMBOL vmlinux 0xac488e7b mount_subtree -EXPORT_SYMBOL vmlinux 0xac4e67f3 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xac4300f9 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xac4a8056 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0xac59a894 uart_suspend_port -EXPORT_SYMBOL vmlinux 0xac59da80 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xac59841a __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac62e7d7 nf_log_unregister -EXPORT_SYMBOL vmlinux 0xac6b6be9 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0xac760a3e unregister_nls -EXPORT_SYMBOL vmlinux 0xac86dfb6 fb_blank -EXPORT_SYMBOL vmlinux 0xac999500 wireless_spy_update -EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xac6e5f0e balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xac731ae1 sg_miter_stop EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb63b64 tcp_prot -EXPORT_SYMBOL vmlinux 0xacbab7d3 simple_link -EXPORT_SYMBOL vmlinux 0xacbeb39d __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xacb1f41e vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xacc10605 uart_resume_port +EXPORT_SYMBOL vmlinux 0xacc188fb __of_get_address EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacdddf9b blk_execute_rq -EXPORT_SYMBOL vmlinux 0xace937c7 bpf_link_put +EXPORT_SYMBOL vmlinux 0xacf0e7d2 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad0d749c seq_bprintf -EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0xad189426 vm_map_pages +EXPORT_SYMBOL vmlinux 0xad356a02 phy_sfp_probe EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad4e3b94 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xad54eefe pid_task +EXPORT_SYMBOL vmlinux 0xad430eb2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xad62338c inet_del_offload +EXPORT_SYMBOL vmlinux 0xad63c7c2 genphy_loopback EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad798d83 vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0xad91428b dev_remove_offload +EXPORT_SYMBOL vmlinux 0xad73aeb8 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xad94e5c1 clocksource_change_rating EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada0f251 register_filesystem EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadbb93c9 ip6_xmit EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xade85a3d tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xadec9f5a unregister_nls EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae0ba25d __dec_node_page_state -EXPORT_SYMBOL vmlinux 0xae12de39 skb_clone -EXPORT_SYMBOL vmlinux 0xae1c213e backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled -EXPORT_SYMBOL vmlinux 0xae227227 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xae210126 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xae22a191 scsi_done_direct +EXPORT_SYMBOL vmlinux 0xae232a12 dev_mc_sync_multiple EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae3293b2 bio_alloc_bioset EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae54b88e netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xae3990f8 update_devfreq +EXPORT_SYMBOL vmlinux 0xae3cac30 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xae4009e0 pci_set_mwi EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae5aa00b pcie_print_link_status EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae6cad03 sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0xae70945a __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0xae8d8de4 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xae7c84d2 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xae8d0527 fman_get_revision +EXPORT_SYMBOL vmlinux 0xae91e872 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xae9b3c88 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xaea71336 genphy_c45_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaebcff26 uart_resume_port +EXPORT_SYMBOL vmlinux 0xaeadd37d qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaed638f2 skb_copy_bits -EXPORT_SYMBOL vmlinux 0xaee2711b pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0xaeeae2a8 __neigh_create -EXPORT_SYMBOL vmlinux 0xaeff720e ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xaf072da0 __page_frag_cache_drain -EXPORT_SYMBOL vmlinux 0xaf08a5bf inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0xaf0b2013 dm_unregister_target -EXPORT_SYMBOL vmlinux 0xaf1a6c7e tcp_gro_complete -EXPORT_SYMBOL vmlinux 0xaf24e321 dev_mc_sync -EXPORT_SYMBOL vmlinux 0xaf2ee3e8 pci_set_master +EXPORT_SYMBOL vmlinux 0xaebe3267 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xaebfe0fb folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xaec600fa __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xaed4c36f ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xaedbd4cb eth_mac_addr +EXPORT_SYMBOL vmlinux 0xaedd98d4 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xaede7508 console_start +EXPORT_SYMBOL vmlinux 0xaf0a5850 dquot_operations +EXPORT_SYMBOL vmlinux 0xaf0d739d __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xaf166eab write_dirty_buffer EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf4c1f04 con_is_visible -EXPORT_SYMBOL vmlinux 0xaf531dce setattr_should_drop_suidgid -EXPORT_SYMBOL vmlinux 0xaf54ba8d kill_pgrp +EXPORT_SYMBOL vmlinux 0xaf3ec73a del_gendisk +EXPORT_SYMBOL vmlinux 0xaf40743a netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xaf4d75af genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xaf4da028 folio_migrate_flags EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf611ebb vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xaf63a0c2 user_revoke -EXPORT_SYMBOL vmlinux 0xaf72660d pci_scan_single_device -EXPORT_SYMBOL vmlinux 0xaf8ac559 pci_disable_device -EXPORT_SYMBOL vmlinux 0xaf99c1db io_uring_get_socket -EXPORT_SYMBOL vmlinux 0xaf9cf552 serio_rescan -EXPORT_SYMBOL vmlinux 0xafa21608 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xaf5ae978 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xafa041e9 in6_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit -EXPORT_SYMBOL vmlinux 0xafaf4bae jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xafb50039 padata_do_parallel EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafbdb21c pnp_request_card_device EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error -EXPORT_SYMBOL vmlinux 0xaff01067 unregister_key_type -EXPORT_SYMBOL vmlinux 0xaff919e9 phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0xaff93f40 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0xafffeb8c simple_write_begin -EXPORT_SYMBOL vmlinux 0xb003af5c bio_alloc_clone -EXPORT_SYMBOL vmlinux 0xb0110f50 init_net -EXPORT_SYMBOL vmlinux 0xb0168b14 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xb019b928 thaw_super +EXPORT_SYMBOL vmlinux 0xafcc833d dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xafedcee8 set_blocksize +EXPORT_SYMBOL vmlinux 0xaffbcf00 __find_get_block +EXPORT_SYMBOL vmlinux 0xb0068357 __skb_vlan_pop EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb022f8e0 config_group_find_item -EXPORT_SYMBOL vmlinux 0xb0327164 vfs_llseek -EXPORT_SYMBOL vmlinux 0xb03f07d8 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0xb0410682 fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0xb046fbe7 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xb0492e65 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xb02d17b1 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xb0448b1b bdi_unregister EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb053eaa2 mmc_can_secure_erase_trim -EXPORT_SYMBOL vmlinux 0xb0572f98 locks_init_lock -EXPORT_SYMBOL vmlinux 0xb05c5a06 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xb05fbaf8 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xb061993f tty_port_close_start -EXPORT_SYMBOL vmlinux 0xb06963ef iov_iter_kvec -EXPORT_SYMBOL vmlinux 0xb06ef0aa unregister_shrinker -EXPORT_SYMBOL vmlinux 0xb070c2eb device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0xb07fffa8 phy_disconnect +EXPORT_SYMBOL vmlinux 0xb07cec16 get_tree_single +EXPORT_SYMBOL vmlinux 0xb08a4aeb jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xb0a03f57 rproc_remove_subdev EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b41861 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d032ca pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0xb0e10781 get_option -EXPORT_SYMBOL vmlinux 0xb0e4a656 dquot_drop -EXPORT_SYMBOL vmlinux 0xb11e6d8f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xb0f27de3 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xb0f3782b netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xb1007820 dev_add_offload +EXPORT_SYMBOL vmlinux 0xb10dd25e nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xb11115a7 neigh_connected_output EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb1358cc3 set_disk_ro -EXPORT_SYMBOL vmlinux 0xb13784dd ip_options_compile -EXPORT_SYMBOL vmlinux 0xb1428cb3 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xb13b3199 fb_set_var +EXPORT_SYMBOL vmlinux 0xb13babfa bio_uninit EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb1577c4b mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xb15a6300 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0xb17ea1e9 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0xb17ff2d7 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xb18e9c99 kern_unmount -EXPORT_SYMBOL vmlinux 0xb1991898 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xb1b1b3e8 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0xb1c0529c folio_mapping +EXPORT_SYMBOL vmlinux 0xb1569498 __fput_sync +EXPORT_SYMBOL vmlinux 0xb1637f10 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xb19a0c66 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xb1a0533b mount_nodev +EXPORT_SYMBOL vmlinux 0xb1a21fda dev_uc_flush +EXPORT_SYMBOL vmlinux 0xb1a88fa1 tcp_sock_set_quickack EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1ce2f55 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xb1d05f0c unix_attach_fds +EXPORT_SYMBOL vmlinux 0xb1d6318e blk_mq_init_queue EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0xb1de4af8 key_alloc -EXPORT_SYMBOL vmlinux 0xb1ef5a72 get_inode_acl -EXPORT_SYMBOL vmlinux 0xb20cdde4 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0xb20f5153 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0xb2111e4a __scsi_execute -EXPORT_SYMBOL vmlinux 0xb21730fc tcp_recvmsg -EXPORT_SYMBOL vmlinux 0xb21b4f12 cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xb21e81a8 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xb1df23c1 dev_load +EXPORT_SYMBOL vmlinux 0xb1ef2d50 cred_fscmp +EXPORT_SYMBOL vmlinux 0xb2166c14 dm_table_get_size EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb236e8bb can_nice -EXPORT_SYMBOL vmlinux 0xb23e8b08 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0xb251f43d linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xb25225e1 mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0xb2534f92 security_path_unlink -EXPORT_SYMBOL vmlinux 0xb26e9154 dquot_acquire -EXPORT_SYMBOL vmlinux 0xb2926bc3 simple_fill_super +EXPORT_SYMBOL vmlinux 0xb2361d49 elv_rb_add +EXPORT_SYMBOL vmlinux 0xb2377e83 dev_mc_init +EXPORT_SYMBOL vmlinux 0xb23a5347 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xb23b3921 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xb25feca8 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0xb26bdd95 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xb27e67a0 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xb2812428 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xb287361a xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xb28a5b22 phy_attached_print +EXPORT_SYMBOL vmlinux 0xb29bbea0 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xb29ebd80 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xb2a30586 dquot_transfer +EXPORT_SYMBOL vmlinux 0xb2a4dec7 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xb2a9cf10 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xb2aef60d param_ops_hexint EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2c084d9 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0xb2c3d61d phy_ethtool_ksettings_set -EXPORT_SYMBOL vmlinux 0xb2cdb8fb vfs_iocb_iter_read -EXPORT_SYMBOL vmlinux 0xb2d9f4e3 dquot_free_inode EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f0e441 tcp_sock_set_keepidle EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2f375ff netdev_refcnt_read EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb30275ce udp_lib_unhash EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b7e23 page_pool_unlink_napi EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb31fa21d qdisc_hash_add -EXPORT_SYMBOL vmlinux 0xb3226035 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xb30f4cad kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb3135ad9 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0xb31e9ddc jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb32e31d9 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0xb32fffd8 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xb336b815 logfc -EXPORT_SYMBOL vmlinux 0xb33ab319 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xb346dcfb acpi_pm_device_sleep_state -EXPORT_SYMBOL vmlinux 0xb3473c35 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xb3321ee3 noop_fsync +EXPORT_SYMBOL vmlinux 0xb3340af7 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xb334db7e fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xb33997e9 blk_get_queue +EXPORT_SYMBOL vmlinux 0xb344025f fman_bind +EXPORT_SYMBOL vmlinux 0xb346af0d of_node_put +EXPORT_SYMBOL vmlinux 0xb349ba3e nd_pfn_validate EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb3538b2f __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0xb35ba06d __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xb3524b6a pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xb3613aac vme_unregister_driver EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb3707e6e flow_keys_basic_dissector -EXPORT_SYMBOL vmlinux 0xb372b3ca devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0xb3811278 inet_stream_connect -EXPORT_SYMBOL vmlinux 0xb3816898 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xb36a50cf vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xb36f5dfd scmd_printk +EXPORT_SYMBOL vmlinux 0xb371203c mdiobb_read_c45 +EXPORT_SYMBOL vmlinux 0xb37549a3 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xb378f42e __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert -EXPORT_SYMBOL vmlinux 0xb399f13a key_revoke +EXPORT_SYMBOL vmlinux 0xb386e0fd nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xb38fc0df devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xb39790e7 cont_write_begin +EXPORT_SYMBOL vmlinux 0xb3a1663f aperture_remove_conflicting_pci_devices EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3ac1cb7 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0xb3c0cbac md_integrity_register +EXPORT_SYMBOL vmlinux 0xb3a8ead9 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xb3b03a88 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xb3b9aa3a param_set_invbool +EXPORT_SYMBOL vmlinux 0xb3bff1a5 seq_release +EXPORT_SYMBOL vmlinux 0xb3c46db1 mmc_release_host +EXPORT_SYMBOL vmlinux 0xb3cdcfc9 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3ec5257 copy_highpage +EXPORT_SYMBOL vmlinux 0xb3dc201f xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb3dcab49 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xb3e13321 phy_print_status EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb40b9b8a inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0xb419240f cdrom_check_events EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb427b991 is_nd_btt -EXPORT_SYMBOL vmlinux 0xb439d143 fscrypt_ioctl_set_policy -EXPORT_SYMBOL vmlinux 0xb43ed555 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0xb447fd05 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xb42f50a2 inet_protos +EXPORT_SYMBOL vmlinux 0xb4355ad9 genl_register_family +EXPORT_SYMBOL vmlinux 0xb4355e06 module_put +EXPORT_SYMBOL vmlinux 0xb44fc035 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xb44ff36b seq_write +EXPORT_SYMBOL vmlinux 0xb45525a4 pcim_iomap_regions EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb46189c0 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xb476a982 rpmh_write_async +EXPORT_SYMBOL vmlinux 0xb47adf8e register_md_personality +EXPORT_SYMBOL vmlinux 0xb47aeba4 gnet_stats_copy_basic_hw EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xb4a79898 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xb4f07d95 sock_i_ino -EXPORT_SYMBOL vmlinux 0xb4f13d2a abort -EXPORT_SYMBOL vmlinux 0xb51c7e2f netdev_reset_tc -EXPORT_SYMBOL vmlinux 0xb51d4d95 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xb4b7b5c8 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xb4b8ed77 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xb4c0426f tcf_em_register +EXPORT_SYMBOL vmlinux 0xb4c5ca12 __invalidate_device +EXPORT_SYMBOL vmlinux 0xb4db6de9 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xb4f2e699 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xb51a1d70 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xb51ede5c __sock_create +EXPORT_SYMBOL vmlinux 0xb522680f reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb53fdbf1 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0xb543a317 fifo_create_dflt -EXPORT_SYMBOL vmlinux 0xb566b4b1 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xb54a57c6 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xb54d29c2 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xb55b12a0 vfs_fsync_range EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb583e1ad devm_devfreq_add_governor -EXPORT_SYMBOL vmlinux 0xb58c611e sockopt_ns_capable +EXPORT_SYMBOL vmlinux 0xb5934dfc input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xb595adec of_platform_bus_probe EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a8c5b2 xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5d63a35 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xb5e18065 mmc_erase +EXPORT_SYMBOL vmlinux 0xb5b82e17 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xb5cf8776 dquot_initialize_needed EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ebff35 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0xb5f41f6e udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0xb6012304 invalidate_bdev -EXPORT_SYMBOL vmlinux 0xb60568cf __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xb6170df6 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0xb61cc300 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xb5ef8fee mr_dump +EXPORT_SYMBOL vmlinux 0xb6082d91 bio_split_to_limits +EXPORT_SYMBOL vmlinux 0xb608b36f skb_checksum_help +EXPORT_SYMBOL vmlinux 0xb60c8cc9 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xb6154007 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xb61d1124 simple_pin_fs EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb62f4c0f remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xb62ffa4a notify_change EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb634f095 mmc_gpio_set_cd_wake -EXPORT_SYMBOL vmlinux 0xb63aa8f2 block_read_full_folio -EXPORT_SYMBOL vmlinux 0xb63ec18c do_clone_file_range -EXPORT_SYMBOL vmlinux 0xb643f6c6 blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xb64a9235 generic_write_checks_count -EXPORT_SYMBOL vmlinux 0xb64e6d5a inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xb6505043 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xb63c7e1e tcf_idr_search +EXPORT_SYMBOL vmlinux 0xb654a184 page_cache_prev_miss EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb65bfa4d vlan_vid_add +EXPORT_SYMBOL vmlinux 0xb66d4fe5 __dev_get_by_index EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start -EXPORT_SYMBOL vmlinux 0xb670e94e migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xb670a03b inet_select_addr EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67a925f unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xb67d50fa pnp_possible_config EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6801025 udplite_prot -EXPORT_SYMBOL vmlinux 0xb6924485 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xb68c258a udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xb68d961a nonseekable_open EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6b27486 ip_tunnel_header_ops -EXPORT_SYMBOL vmlinux 0xb6bc4e1d mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0xb6c3653b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xb6c5ded2 ps2_init +EXPORT_SYMBOL vmlinux 0xb6ca6598 of_device_is_big_endian EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit -EXPORT_SYMBOL vmlinux 0xb6cd594a jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xb6e10326 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xb6cf1e71 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xb6cf91fc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb6d2522f skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xb6def901 filp_close EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb7120fd6 clk_add_alias EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces -EXPORT_SYMBOL vmlinux 0xb715d03f simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb72939c4 __alloc_pages -EXPORT_SYMBOL vmlinux 0xb72cf220 t10_pi_type3_crc -EXPORT_SYMBOL vmlinux 0xb72f56f6 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xb7209c52 netdev_get_by_name +EXPORT_SYMBOL vmlinux 0xb72bb11f dev_graft_qdisc EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb745e2c7 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0xb752eb7e abort_creds -EXPORT_SYMBOL vmlinux 0xb75646f6 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xb741e9b0 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xb7537566 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xb753a713 of_mdio_find_bus EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb76a16f1 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0xb76f8a4a request_key_rcu -EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync -EXPORT_SYMBOL vmlinux 0xb78a3187 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xb76e9afd pcim_enable_device +EXPORT_SYMBOL vmlinux 0xb780edd8 pci_write_config_dword EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb7a26dfe devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0xb7a59cd3 mmc_can_erase -EXPORT_SYMBOL vmlinux 0xb7a5e478 msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xb7ab4ee8 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xb791e8e3 ps2_command +EXPORT_SYMBOL vmlinux 0xb7b19b50 pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states EXPORT_SYMBOL vmlinux 0xb7c0f443 sort -EXPORT_SYMBOL vmlinux 0xb7c31bdf ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7e72537 of_device_is_available -EXPORT_SYMBOL vmlinux 0xb7e9341c __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xb7e9c69c validate_slab_cache -EXPORT_SYMBOL vmlinux 0xb7f01544 inode_set_flags -EXPORT_SYMBOL vmlinux 0xb8008d16 devfreq_monitor_stop -EXPORT_SYMBOL vmlinux 0xb8053fd4 devfreq_monitor_suspend -EXPORT_SYMBOL vmlinux 0xb8081b24 task_work_add +EXPORT_SYMBOL vmlinux 0xb7ca61ed get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xb7d40126 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xb7de9c2a generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xb7f27420 make_kprojid +EXPORT_SYMBOL vmlinux 0xb7ff82d8 scsi_dma_map EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb817949d param_ops_string -EXPORT_SYMBOL vmlinux 0xb834c5f8 free_buffer_head +EXPORT_SYMBOL vmlinux 0xb81d134f sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xb829db98 device_get_mac_address EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb8484e69 napi_get_frags -EXPORT_SYMBOL vmlinux 0xb84946dc of_find_property -EXPORT_SYMBOL vmlinux 0xb85092b9 nd_pfn_probe -EXPORT_SYMBOL vmlinux 0xb85c7ddc of_node_get EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add -EXPORT_SYMBOL vmlinux 0xb861a688 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xb8646eba dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb86eba65 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0xb8728bd6 __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0xb874ce97 del_gendisk -EXPORT_SYMBOL vmlinux 0xb8775b4f unregister_md_personality -EXPORT_SYMBOL vmlinux 0xb88f8804 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0xb896abb4 forget_cached_acl -EXPORT_SYMBOL vmlinux 0xb896d338 clkdev_add -EXPORT_SYMBOL vmlinux 0xb897ea1e free_cgroup_ns -EXPORT_SYMBOL vmlinux 0xb8980d59 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xb876e1f8 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xb897ad26 blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b2ac67 rproc_add +EXPORT_SYMBOL vmlinux 0xb8b9c858 set_page_dirty +EXPORT_SYMBOL vmlinux 0xb8c859a6 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xb8cdee26 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xb8d0262d block_commit_write +EXPORT_SYMBOL vmlinux 0xb8e8e7f6 vmap +EXPORT_SYMBOL vmlinux 0xb8fc20ef ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb908f8ce xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xb90f7fcd of_root EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb918f78b page_cache_prev_miss EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xb9280d12 find_get_pages_range_tag -EXPORT_SYMBOL vmlinux 0xb93461a4 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xb927ba61 neigh_destroy +EXPORT_SYMBOL vmlinux 0xb932dbc8 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb9975e34 dqput +EXPORT_SYMBOL vmlinux 0xb98c602d iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9bd8ccd xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0xb9bdbadb md_reload_sb -EXPORT_SYMBOL vmlinux 0xb9d0f991 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xb9be63a7 blk_set_runtime_active EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb9fdfbf0 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xba00daa2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0xba01412f neigh_for_each EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat -EXPORT_SYMBOL vmlinux 0xba0fba31 clear_nlink +EXPORT_SYMBOL vmlinux 0xba0c75ec cfb_fillrect EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba15b9b6 seq_escape_mem -EXPORT_SYMBOL vmlinux 0xba2d7293 of_get_compatible_child -EXPORT_SYMBOL vmlinux 0xba3aaf12 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0xba3eb8d2 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xba1c18cb vfs_symlink +EXPORT_SYMBOL vmlinux 0xba396c93 security_inode_listsecurity EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba530f11 of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0xba655a83 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0xba666a1f jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xba58b5d4 dm_table_event +EXPORT_SYMBOL vmlinux 0xba5d32c2 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xba6045a5 phy_register_fixup_for_id EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba7ebbed generic_shutdown_super -EXPORT_SYMBOL vmlinux 0xba8c3c8d rtc_add_group -EXPORT_SYMBOL vmlinux 0xba90ba88 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xba74108a fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xba77b87a simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xba8ee043 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xbabb942f skb_queue_tail +EXPORT_SYMBOL vmlinux 0xbac22951 genphy_c45_eee_is_active EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbad0992b tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xbaf86e59 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xbacf2872 uart_match_port +EXPORT_SYMBOL vmlinux 0xbadac22e scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xbae98632 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xbaf34f95 fb_find_mode EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start +EXPORT_SYMBOL vmlinux 0xbafdeab5 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xbafe8604 netdev_printk EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb07410c security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0xbb124d4e genphy_soft_reset -EXPORT_SYMBOL vmlinux 0xbb17eecd jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0xbb1f1ceb tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xbb065681 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xbb19c291 mmc_card_alternative_gpt_sector EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb3be978 input_close_device -EXPORT_SYMBOL vmlinux 0xbb47221c tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xbb47c5c1 tcp_prot EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d9531 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xbb629989 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xbb64791f key_unlink EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb81ad2f d_tmpfile -EXPORT_SYMBOL vmlinux 0xbb8ff055 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xbb967705 sock_no_bind EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbbbe5605 __mdiobus_register -EXPORT_SYMBOL vmlinux 0xbc1efbcc phy_read_paged +EXPORT_SYMBOL vmlinux 0xbba81fb9 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xbbb4b540 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xbbc43c30 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xbbd2a5f4 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xbbda18c4 dma_fence_free +EXPORT_SYMBOL vmlinux 0xbbdea164 __netif_napi_del +EXPORT_SYMBOL vmlinux 0xbbfe166a scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xbc085e81 input_event EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc301d54 unregister_qdisc -EXPORT_SYMBOL vmlinux 0xbc75a207 pci_write_vpd -EXPORT_SYMBOL vmlinux 0xbc770b37 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xbc2fff79 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xbc348dac unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xbc443a66 mount_subtree +EXPORT_SYMBOL vmlinux 0xbc4969fa forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xbc4c4b93 xudma_get_device +EXPORT_SYMBOL vmlinux 0xbc4cd64f netlink_unicast +EXPORT_SYMBOL vmlinux 0xbc51350c __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xbc54d2cf seq_path +EXPORT_SYMBOL vmlinux 0xbc59006e i2c_find_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0xbc5b1b89 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xbc5d8db4 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xbc6100e0 _dev_alert +EXPORT_SYMBOL vmlinux 0xbc65c11a seq_release_private +EXPORT_SYMBOL vmlinux 0xbc6b6cc9 of_iomap +EXPORT_SYMBOL vmlinux 0xbc6d475c kernel_getpeername +EXPORT_SYMBOL vmlinux 0xbc7747bb rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xbc7dab69 unregister_key_type +EXPORT_SYMBOL vmlinux 0xbc8bcbd7 pnp_activate_dev EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcc52ee9 input_register_device -EXPORT_SYMBOL vmlinux 0xbce6163b nd_dax_probe -EXPORT_SYMBOL vmlinux 0xbcecf1a8 generic_fadvise -EXPORT_SYMBOL vmlinux 0xbcf44f04 pneigh_lookup -EXPORT_SYMBOL vmlinux 0xbd01c96c vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0xbd04b528 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0xbd12c333 key_task_permission -EXPORT_SYMBOL vmlinux 0xbd2a5a66 param_ops_ushort -EXPORT_SYMBOL vmlinux 0xbd3c3bd8 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xbcc0c70b dev_close +EXPORT_SYMBOL vmlinux 0xbcc1fd70 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xbcd9bc26 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xbce5d00f pci_get_subsys +EXPORT_SYMBOL vmlinux 0xbcf29ec9 __serio_register_port +EXPORT_SYMBOL vmlinux 0xbd02c46e d_invalidate +EXPORT_SYMBOL vmlinux 0xbd21bfa5 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xbd351de5 bio_split EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd57b55c page_pool_create -EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0xbd63239d read_cache_page +EXPORT_SYMBOL vmlinux 0xbd52b47f iov_iter_init +EXPORT_SYMBOL vmlinux 0xbd5a014c elv_rb_del EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd6fbc66 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xbd75b982 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xbd7e9b66 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0xbd8e534c path_get -EXPORT_SYMBOL vmlinux 0xbd92db17 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xbd943d04 vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0xbda5132a inet_recvmsg -EXPORT_SYMBOL vmlinux 0xbdaa617a ether_setup -EXPORT_SYMBOL vmlinux 0xbdb63be9 seq_open -EXPORT_SYMBOL vmlinux 0xbdd42bd2 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xbde488bc xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xbdea47b5 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0xbdf6dba6 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xbe03bfce tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0xbe055947 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xbe0f94ed rproc_report_crash -EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xbe15bf62 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0xbe17cbba pci_choose_state -EXPORT_SYMBOL vmlinux 0xbe1b4f37 dma_resv_init -EXPORT_SYMBOL vmlinux 0xbe263f36 cred_fscmp -EXPORT_SYMBOL vmlinux 0xbe3092b0 skb_push -EXPORT_SYMBOL vmlinux 0xbe37bb84 devm_ioport_map -EXPORT_SYMBOL vmlinux 0xbe3e6314 udp_sendmsg -EXPORT_SYMBOL vmlinux 0xbe45d407 file_remove_privs +EXPORT_SYMBOL vmlinux 0xbd6d7776 pci_pme_active +EXPORT_SYMBOL vmlinux 0xbd784236 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xbd843fe1 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xbda85574 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xbdc52efe blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xbdf15487 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xbdf53013 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xbdfa2a67 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xbe0d399e genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xbe0f1eaf dev_addr_mod +EXPORT_SYMBOL vmlinux 0xbe106ecd i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xbe228ff1 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xbe254c49 blk_start_plug +EXPORT_SYMBOL vmlinux 0xbe2641ee pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xbe2ba74d inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xbe320f4c skb_copy_bits +EXPORT_SYMBOL vmlinux 0xbe3cc103 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number -EXPORT_SYMBOL vmlinux 0xbe511229 devfreq_monitor_start EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe92d51f phy_connect -EXPORT_SYMBOL vmlinux 0xbe9749d3 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0xbea9d9d6 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xbeaa141c skb_queue_head -EXPORT_SYMBOL vmlinux 0xbeab904a ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0xbead7d26 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xbec14db2 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xbe6db71b fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xbe75f760 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xbe8cd35f udp_ioctl +EXPORT_SYMBOL vmlinux 0xbe9347f8 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xbeb4c64b pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xbec23c20 clkdev_drop +EXPORT_SYMBOL vmlinux 0xbedf45f7 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xbee42c5e ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbefc425e flow_rule_match_basic -EXPORT_SYMBOL vmlinux 0xbf12d718 inet_getname -EXPORT_SYMBOL vmlinux 0xbf15cef3 lock_rename -EXPORT_SYMBOL vmlinux 0xbf2d26c8 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xbf36af9e xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0xbf3d94ec nd_device_notify -EXPORT_SYMBOL vmlinux 0xbf4f15e6 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xbf06a475 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xbf10dbc0 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xbf219063 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xbf30060d mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xbf43a4fc vfs_setpos EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf66a608 dma_sync_wait -EXPORT_SYMBOL vmlinux 0xbf6afee9 current_in_userns -EXPORT_SYMBOL vmlinux 0xbf790b31 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xbf8eabc8 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set -EXPORT_SYMBOL vmlinux 0xbf9c4a2b complete_request_key -EXPORT_SYMBOL vmlinux 0xbfae3682 cdev_add +EXPORT_SYMBOL vmlinux 0xbf66da98 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xbf6728e0 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xbf74729f tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xbf77ed22 wireless_send_event +EXPORT_SYMBOL vmlinux 0xbf9dff19 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xbfad394a register_netdevice EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb07895 sock_no_ioctl EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfddefbd padata_do_serial -EXPORT_SYMBOL vmlinux 0xbfe27447 of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0xbff5cf5c napi_gro_receive -EXPORT_SYMBOL vmlinux 0xbff7b5c1 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0xbff8fe99 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0xc020b324 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xc02107d2 netdev_notice +EXPORT_SYMBOL vmlinux 0xbfd8336f dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xbfdcc377 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xbffaa268 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xbffc1154 io_uring_destruct_scm +EXPORT_SYMBOL vmlinux 0xc0115ecd pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xc020fa19 skb_queue_head +EXPORT_SYMBOL vmlinux 0xc02f5045 nd_btt_version EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc03db9b4 qdisc_reset -EXPORT_SYMBOL vmlinux 0xc055c218 of_get_cpu_state_node EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get -EXPORT_SYMBOL vmlinux 0xc06d1834 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xc06cedc5 freezing_slow_path EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc080e15e scsi_device_lookup -EXPORT_SYMBOL vmlinux 0xc08de0b9 inet_frag_find -EXPORT_SYMBOL vmlinux 0xc08e7a05 nla_reserve -EXPORT_SYMBOL vmlinux 0xc0a21363 km_new_mapping -EXPORT_SYMBOL vmlinux 0xc0a4f9b9 may_setattr -EXPORT_SYMBOL vmlinux 0xc0c272e5 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0xc0e13bae audit_log +EXPORT_SYMBOL vmlinux 0xc08815f5 __f_setown +EXPORT_SYMBOL vmlinux 0xc088de17 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xc09eefcd mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xc0ef25de generic_write_checks +EXPORT_SYMBOL vmlinux 0xc0f5d667 dev_addr_add +EXPORT_SYMBOL vmlinux 0xc0f6cafe io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xc0fad4f3 netif_tx_lock EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc12051a9 blk_integrity_unregister -EXPORT_SYMBOL vmlinux 0xc1410a60 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xc12b6303 serio_rescan EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc14f32d6 inode_set_bytes EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq -EXPORT_SYMBOL vmlinux 0xc1537404 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xc1538435 __sk_mem_schedule EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc162dd48 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xc15b660e flush_dcache_folio +EXPORT_SYMBOL vmlinux 0xc15b7a62 genphy_read_status EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16b928f register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc1a52009 iterate_supers_type -EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1a518db __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xc1ca9909 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xc1cb419c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xc1cec963 devm_extcon_unregister_notifier_all EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1e35791 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xc1e660e1 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xc1ede98b of_get_ethdev_address EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc212803f devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xc2166672 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xc21dcb4b netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc2229c61 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xc22c1c99 inet_stream_connect EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc233e31c security_path_mknod -EXPORT_SYMBOL vmlinux 0xc23e7891 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xc24bb1c9 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0xc255b432 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0xc2849eb8 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0xc29346c9 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xc297fe4d napi_gro_frags +EXPORT_SYMBOL vmlinux 0xc23a58cb phy_config_aneg +EXPORT_SYMBOL vmlinux 0xc2576b42 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xc2746b51 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xc280cb87 __register_binfmt +EXPORT_SYMBOL vmlinux 0xc28f789e ram_aops EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc29ff9cf has_capability -EXPORT_SYMBOL vmlinux 0xc2b2c61c xen_free_ballooned_pages -EXPORT_SYMBOL vmlinux 0xc2bcb05f blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xc29d91ca pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xc2a77c03 xfrm_lookup EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xc2dd0634 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2f6f3cd icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xc2fec8e5 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xc30462de ppp_output_wakeup EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state -EXPORT_SYMBOL vmlinux 0xc30d5412 get_user_pages EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3159fa2 pci_enable_device_io EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32a0804 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xc32b87ab phy_start_aneg EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc3383f89 pipe_unlock -EXPORT_SYMBOL vmlinux 0xc346ee9d mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0xc3492d4e rproc_free -EXPORT_SYMBOL vmlinux 0xc35cef6c max8998_update_reg -EXPORT_SYMBOL vmlinux 0xc362020a build_skb -EXPORT_SYMBOL vmlinux 0xc36d64a3 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc3354774 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xc342687f rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xc3460c7b mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc35360a5 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xc359b2aa acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc362c099 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xc36da93c netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc387c574 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc389ce59 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xc38b295c fman_set_mac_max_frame EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc398c91b netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xc39ff139 __sk_receive_skb -EXPORT_SYMBOL vmlinux 0xc3a1675c acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xc3aa472f netdev_change_features +EXPORT_SYMBOL vmlinux 0xc3949f65 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xc39e2b6f dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq -EXPORT_SYMBOL vmlinux 0xc3c30d34 register_md_personality -EXPORT_SYMBOL vmlinux 0xc3cab4aa __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xc3bd2331 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xc3bd4a12 rproc_report_crash EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3d02a7b pci_scan_bus -EXPORT_SYMBOL vmlinux 0xc3e9054e sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0xc3e98306 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xc3ff2f6c mdio_driver_register +EXPORT_SYMBOL vmlinux 0xc3d07954 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xc3d20dd0 sock_rfree +EXPORT_SYMBOL vmlinux 0xc3db8c32 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc404e1d8 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xc409cb63 unlock_page -EXPORT_SYMBOL vmlinux 0xc416ec93 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0xc4182e6a skb_put +EXPORT_SYMBOL vmlinux 0xc401b9a9 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xc4124b7d tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xc4190c4b tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xc41bb66a phy_aneg_done EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc42f2bc1 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xc432b716 fb_blank +EXPORT_SYMBOL vmlinux 0xc436364b blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc444dfd2 __icmp_send +EXPORT_SYMBOL vmlinux 0xc44656dc ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xc44de287 msm_pinctrl_remove EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc453dc07 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc4631205 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xc464b557 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xc467871d backlight_device_unregister EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc476a465 configfs_remove_default_groups EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc479e8cb simple_pin_fs -EXPORT_SYMBOL vmlinux 0xc47fc83c tcp_peek_len -EXPORT_SYMBOL vmlinux 0xc491789b mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xc49dc634 rproc_add_subdev -EXPORT_SYMBOL vmlinux 0xc4a01f6d of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xc498145c vga_put +EXPORT_SYMBOL vmlinux 0xc498236b simple_statfs +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4b3ce8e inet_select_addr -EXPORT_SYMBOL vmlinux 0xc4b40da7 keyring_alloc -EXPORT_SYMBOL vmlinux 0xc4c74892 input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xc4f5e7f8 tcp_release_cb -EXPORT_SYMBOL vmlinux 0xc4f93898 generic_perform_write -EXPORT_SYMBOL vmlinux 0xc4fae570 netif_carrier_on -EXPORT_SYMBOL vmlinux 0xc5059155 mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0xc50e6b4f __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xc51d1de5 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xc4b4fcf7 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xc4c9e1a0 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xc4d381c7 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xc4d99b2c poll_freewait +EXPORT_SYMBOL vmlinux 0xc4d9ef9b system_cpucaps +EXPORT_SYMBOL vmlinux 0xc4fb9633 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xc5026601 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xc507b8b0 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xc517fdd7 fman_port_get_device EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc5417ea5 scsi_ioctl -EXPORT_SYMBOL vmlinux 0xc543b565 tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0xc547a595 phy_device_remove -EXPORT_SYMBOL vmlinux 0xc560efb5 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0xc565d02b param_get_hexint -EXPORT_SYMBOL vmlinux 0xc56c358e of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xc52e691d phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xc551726f vm_map_pages EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc58d2b37 bio_integrity_prep EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc597e1f9 mipi_dsi_driver_unregister EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete -EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5c10692 netdev_warn -EXPORT_SYMBOL vmlinux 0xc5cb6846 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xc5c454d8 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc5d1d2b9 param_set_ullong +EXPORT_SYMBOL vmlinux 0xc5d665f4 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xc5e3c68f grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ea4e2e get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0xc5ee1d59 phy_advertise_supported -EXPORT_SYMBOL vmlinux 0xc5fcfb3b config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xc5ed755c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xc5fc3bbe tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xc5fc645f task_work_add EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus -EXPORT_SYMBOL vmlinux 0xc61757e2 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xc6153744 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xc6222970 dev_uc_del EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0xc62f2265 unlock_buffer +EXPORT_SYMBOL vmlinux 0xc6238e31 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xc62b5fdf inode_sub_bytes EXPORT_SYMBOL vmlinux 0xc631580a console_unlock -EXPORT_SYMBOL vmlinux 0xc633211a acpi_match_device_ids EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc63a050e security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xc6419c3c bdev_check_media_change -EXPORT_SYMBOL vmlinux 0xc6451990 is_subdir -EXPORT_SYMBOL vmlinux 0xc649796d qman_start_using_portal -EXPORT_SYMBOL vmlinux 0xc654a09b dev_mc_add +EXPORT_SYMBOL vmlinux 0xc63c56fe phy_device_remove +EXPORT_SYMBOL vmlinux 0xc656310a ipmr_rule_default EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc66487e5 phy_device_register EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xc66f3151 mmc_detect_change -EXPORT_SYMBOL vmlinux 0xc689f0e3 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0xc68a3937 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0xc68d9b0b wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xc696d593 tcp_ioctl -EXPORT_SYMBOL vmlinux 0xc69c3725 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xc6675306 arp_create +EXPORT_SYMBOL vmlinux 0xc66d2316 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xc6824b5e xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xc687b046 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6c29e59 of_find_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xc6c86238 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xc6a97c99 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xc6c0992c dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xc6c2f658 seq_file_path EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cbd774 dquot_disable EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6df6ef4 xp_alloc_batch -EXPORT_SYMBOL vmlinux 0xc6f02dd1 sock_init_data +EXPORT_SYMBOL vmlinux 0xc6d0a344 input_get_keycode +EXPORT_SYMBOL vmlinux 0xc6d0b656 tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0xc6d714e2 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xc6d72999 noop_qdisc +EXPORT_SYMBOL vmlinux 0xc6f16160 unlock_rename EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc7070f8e phy_write_paged +EXPORT_SYMBOL vmlinux 0xc703d26e kthread_bind EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7100b00 mmc_erase_group_aligned -EXPORT_SYMBOL vmlinux 0xc71bcbea zpool_unregister_driver EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc7368cb8 __dev_set_mtu -EXPORT_SYMBOL vmlinux 0xc742d7d0 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0xc745b66d key_link -EXPORT_SYMBOL vmlinux 0xc7583653 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0xc77de0e2 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xc74af04b pci_release_regions +EXPORT_SYMBOL vmlinux 0xc7592207 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xc75bc03e md_write_start +EXPORT_SYMBOL vmlinux 0xc7676d4b twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xc768e185 folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xc770a8ca nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xc77589bf eth_header_cache_update EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc786803b sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xc7975de0 trace_seq_acquire +EXPORT_SYMBOL vmlinux 0xc79823c0 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xc7a3db96 tegra_ivc_read_advance EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7bf9fd3 pcibus_to_node -EXPORT_SYMBOL vmlinux 0xc7bff44e __d_drop +EXPORT_SYMBOL vmlinux 0xc7ae7feb mmc_run_bkops EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c3cacb scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xc7d39d55 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0xc7d52e9f mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0xc7efc2c2 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0xc7f29d63 datagram_poll -EXPORT_SYMBOL vmlinux 0xc7f619f7 tty_port_close -EXPORT_SYMBOL vmlinux 0xc8038080 page_mapping -EXPORT_SYMBOL vmlinux 0xc8091d57 input_register_handler +EXPORT_SYMBOL vmlinux 0xc7d0448b km_report +EXPORT_SYMBOL vmlinux 0xc7d2940f udp_poll +EXPORT_SYMBOL vmlinux 0xc7d8d40b filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc7eb4144 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xc8034bf6 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80d2b80 invalidate_disk +EXPORT_SYMBOL vmlinux 0xc818bf0c netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc81ace7c truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xc82f43dc tcp_release_cb EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc84283a4 inet_addr_type +EXPORT_SYMBOL vmlinux 0xc83d1973 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xc83f8550 ip_getsockopt EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc854abfb vma_set_file -EXPORT_SYMBOL vmlinux 0xc864afd0 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xc8694591 tcp_seq_next EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc8855b4d mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0xc88b13a0 param_ops_byte +EXPORT_SYMBOL vmlinux 0xc88c6c6c tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0xc895bf23 rt_dst_alloc EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read -EXPORT_SYMBOL vmlinux 0xc89bc7eb input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0xc8a3406e fqdir_init EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b711b5 edac_mc_find +EXPORT_SYMBOL vmlinux 0xc8aa3fea migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xc8aa619c napi_gro_frags EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8e9b05d scm_fp_dup -EXPORT_SYMBOL vmlinux 0xc8f34a7e eth_type_trans -EXPORT_SYMBOL vmlinux 0xc909b7cc kmalloc_trace +EXPORT_SYMBOL vmlinux 0xc8f0b8c1 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xc8f85116 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xc90f9f09 of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc9229e3c blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0xc923e0b8 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0xc9319fdf _copy_to_iter -EXPORT_SYMBOL vmlinux 0xc93827fd blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xc91a6b6c param_get_long +EXPORT_SYMBOL vmlinux 0xc91e3ae5 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xc9279e6d ata_print_version EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc9544767 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xc95c7b0d devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc9598d00 input_mt_destroy_slots EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0xc967875c kill_block_super EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc97a976a try_module_get +EXPORT_SYMBOL vmlinux 0xc9727d6d dev_add_pack EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc98481f8 tty_port_destroy -EXPORT_SYMBOL vmlinux 0xc99a6ff9 folio_migrate_flags EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9d8447c kernel_connect +EXPORT_SYMBOL vmlinux 0xc9afe811 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc9b4ff2c __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xc9bcfa27 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc9c9d8ab xattr_supports_user_prefix EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e395bb xsk_clear_tx_need_wakeup EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xca0f82d8 pci_clear_master -EXPORT_SYMBOL vmlinux 0xca11ea4f sock_edemux +EXPORT_SYMBOL vmlinux 0xc9f1384a zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xc9f144ff tty_vhangup +EXPORT_SYMBOL vmlinux 0xc9f504cc generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xca0e9a98 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xca14e6d9 file_update_time EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca1d49b7 unix_detach_fds EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca33a318 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xca383682 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xca33ad47 xfrm6_rcv_spi EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function -EXPORT_SYMBOL vmlinux 0xca524591 scsi_print_command -EXPORT_SYMBOL vmlinux 0xca5383dd send_sig_mceerr -EXPORT_SYMBOL vmlinux 0xca540ae1 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0xca5ee381 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xca44ed28 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xca468e32 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xca55103d skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xca578a91 dev_uc_unsync EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca68c832 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0xca8ca6a2 nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0xca9345d3 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xca804d20 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xca913c35 slab_build_skb +EXPORT_SYMBOL vmlinux 0xca916a4c iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xca9f1b95 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0xcab06a5d xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xcac1eaf0 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xcac80894 fc_mount EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcad2a4be __folio_put -EXPORT_SYMBOL vmlinux 0xcafcde4e fb_show_logo +EXPORT_SYMBOL vmlinux 0xcae0e36d configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xcaeab4cc proc_mkdir EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb18cbcb dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0xcb2cdb6f dm_table_get_md -EXPORT_SYMBOL vmlinux 0xcb34fceb __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xcb04b9eb sg_miter_start +EXPORT_SYMBOL vmlinux 0xcb0efb3b __serio_register_driver +EXPORT_SYMBOL vmlinux 0xcb15d4ca ip_defrag +EXPORT_SYMBOL vmlinux 0xcb2790f1 pcie_get_width_cap EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb43c602 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xcb5c9355 ping_prot +EXPORT_SYMBOL vmlinux 0xcb4f22d6 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xcb5eb950 phy_loopback EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb7ab2c0 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xcb82ec10 sock_release +EXPORT_SYMBOL vmlinux 0xcb860ff0 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcb8787f4 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xcb8c4674 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xcb9305b3 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xcb977e14 seq_printf +EXPORT_SYMBOL vmlinux 0xcba511d2 dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc91b07 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xcbc22218 __inet6_lookup_established EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbd73d27 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0xcbf1620b __netif_napi_del -EXPORT_SYMBOL vmlinux 0xcbf3309f pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xcbe01b5e fb_set_cmap +EXPORT_SYMBOL vmlinux 0xcbe09a9c jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xcbe1b92d of_phy_find_device +EXPORT_SYMBOL vmlinux 0xcbeda579 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xcbf20212 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xcbf8e852 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc0172dc pci_iounmap EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc242857 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc2a27c8 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0xcc2b25eb call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0xcc2c97e6 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc38531c always_delete_dentry +EXPORT_SYMBOL vmlinux 0xcc3434de phy_attached_info_irq EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup -EXPORT_SYMBOL vmlinux 0xcc3e72d8 read_cache_folio +EXPORT_SYMBOL vmlinux 0xcc3a674b fman_get_mem_region EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc4b97b1 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc56e6d7 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xcc5be057 mipi_dsi_device_unregister EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc6da795 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xcca01074 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xcc687bce of_phy_connect +EXPORT_SYMBOL vmlinux 0xcc6dc00c generic_read_dir +EXPORT_SYMBOL vmlinux 0xcc7f8fbd get_watch_queue +EXPORT_SYMBOL vmlinux 0xcc8d2525 init_net +EXPORT_SYMBOL vmlinux 0xcc9605fc serio_open EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xcca9879f acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0xccac38f2 nd_btt_probe -EXPORT_SYMBOL vmlinux 0xccae76cd xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0xccb38241 netdev_printk -EXPORT_SYMBOL vmlinux 0xccb79c99 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xccc5ef64 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xccd11c87 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0xccd3ebb7 phy_read_mmd -EXPORT_SYMBOL vmlinux 0xccd820fb dev_remove_pack -EXPORT_SYMBOL vmlinux 0xccdc4f0a flow_indr_dev_setup_offload -EXPORT_SYMBOL vmlinux 0xcce255f2 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0xccf91f6e dst_destroy +EXPORT_SYMBOL vmlinux 0xccaf994e dma_fence_set_deadline +EXPORT_SYMBOL vmlinux 0xccb032a4 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0xccc364c5 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xccd0d28c sys_copyarea +EXPORT_SYMBOL vmlinux 0xccd8fbbf d_path +EXPORT_SYMBOL vmlinux 0xcce2b8f0 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xccea2b20 md_write_end +EXPORT_SYMBOL vmlinux 0xcceded24 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xccef3754 ether_setup +EXPORT_SYMBOL vmlinux 0xccf250cc single_open EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics -EXPORT_SYMBOL vmlinux 0xccfbfb25 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xccfd8e74 pci_restore_state +EXPORT_SYMBOL vmlinux 0xccfd9da8 md_bitmap_free EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data -EXPORT_SYMBOL vmlinux 0xcd0b2515 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0xcd1135ea netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xcd09b7ad mii_ethtool_sset EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd36c96e tcp_connect -EXPORT_SYMBOL vmlinux 0xcd394e33 blk_rq_map_user_io -EXPORT_SYMBOL vmlinux 0xcd48542f default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xcd5431f7 bio_copy_data -EXPORT_SYMBOL vmlinux 0xcd6e6072 tcp_close +EXPORT_SYMBOL vmlinux 0xcd50b989 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xcd7adc99 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xcd811068 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xcd898ed4 bdi_put EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd8ee26e sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xcd911b55 of_graph_is_present -EXPORT_SYMBOL vmlinux 0xcd963e09 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xcd9fc2cb qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xcdb2baaf sock_init_data_uid -EXPORT_SYMBOL vmlinux 0xcdb38f71 unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xcdc2f0f3 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xcd9c833d rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xcda04bd3 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xcda6747d fddi_type_trans +EXPORT_SYMBOL vmlinux 0xcdaced8a qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0xcdb57b9e pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc7d00c blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xcdce94a1 dec_node_page_state EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdf63006 rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0xcdfec382 mount_single +EXPORT_SYMBOL vmlinux 0xcdf5839f ptp_clock_register +EXPORT_SYMBOL vmlinux 0xce022c7c path_put +EXPORT_SYMBOL vmlinux 0xce251d87 __skb_pad EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce368674 dm_kcopyd_zero -EXPORT_SYMBOL vmlinux 0xce4a866b import_single_range +EXPORT_SYMBOL vmlinux 0xce42641d generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xce4350a5 qman_get_qm_portal_config EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode -EXPORT_SYMBOL vmlinux 0xce4dd0b8 trace_event_printf EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce6ecd7d cdev_device_add +EXPORT_SYMBOL vmlinux 0xce5ee68f sock_create EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0xce7b4271 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xce7721fb uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xce7b1479 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xce7d0c9f nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xce7fcb7f fb_prepare_logo EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xcea06d32 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0xcea47186 devm_devfreq_remove_device -EXPORT_SYMBOL vmlinux 0xcea7f04f get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xce860065 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xcebf5890 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xcec42570 dquot_commit +EXPORT_SYMBOL vmlinux 0xceb57439 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xcebff8ab pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xcec7830a __vlan_find_dev_deep_rcu EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcef02117 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0xcef04175 softnet_data -EXPORT_SYMBOL vmlinux 0xcef9576e param_ops_ullong +EXPORT_SYMBOL vmlinux 0xceed4320 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefb33dd scm_detach_fds EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xceff299e of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xcf050815 page_pool_get_stats -EXPORT_SYMBOL vmlinux 0xcf09780b file_update_time -EXPORT_SYMBOL vmlinux 0xcf231862 iproc_msi_init +EXPORT_SYMBOL vmlinux 0xcf031484 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xcf0c6a91 qdisc_watchdog_cancel EXPORT_SYMBOL vmlinux 0xcf2a6966 up -EXPORT_SYMBOL vmlinux 0xcf2ddd6d of_get_parent -EXPORT_SYMBOL vmlinux 0xcf35d715 generic_setlease -EXPORT_SYMBOL vmlinux 0xcf377195 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xcf2ea86b __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xcf30e807 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf430ae2 nf_getsockopt -EXPORT_SYMBOL vmlinux 0xcf4cdcf0 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xcf420bca of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0xcf475b62 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf5a89cd jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xcf6c1467 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0xcf6e5b8e folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0xcf9aa5e8 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0xcf55126a write_cache_pages +EXPORT_SYMBOL vmlinux 0xcf5d5297 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xcf6e081f fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xcf8d6334 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xcf8e2a3b fs_param_is_s32 EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfae44c1 proc_create +EXPORT_SYMBOL vmlinux 0xcfb2e79f folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0xcfb468d9 pci_set_power_state EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfd4978f __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xcfd78ae2 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xcfd69a73 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfd88b95 finish_no_open -EXPORT_SYMBOL vmlinux 0xcfde4d7a netdev_get_xmit_slave EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcff587b8 param_get_ushort -EXPORT_SYMBOL vmlinux 0xd00ffcc2 vlan_vids_del_by_dev -EXPORT_SYMBOL vmlinux 0xd011c299 of_phy_get_and_connect -EXPORT_SYMBOL vmlinux 0xd023c829 nd_region_acquire_lane -EXPORT_SYMBOL vmlinux 0xd0281da7 d_alloc +EXPORT_SYMBOL vmlinux 0xcff6b6c5 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xd001cd72 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xd0054bea tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xd018a9d1 mount_bdev +EXPORT_SYMBOL vmlinux 0xd02a0530 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xd03aa563 dev_mc_sync EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net -EXPORT_SYMBOL vmlinux 0xd05c58e4 __of_get_address -EXPORT_SYMBOL vmlinux 0xd0617c19 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xd06295ae ip_mc_inc_group EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function -EXPORT_SYMBOL vmlinux 0xd06a7837 fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0xd073306f netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xd06e3254 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd08106da load_nls_default +EXPORT_SYMBOL vmlinux 0xd0845991 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd0a452b0 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xd0a7cf69 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xd0ae9b46 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0b8bd86 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xd0bed28f blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xd0cfb81e gro_cells_init -EXPORT_SYMBOL vmlinux 0xd0d089a1 kmem_cache_size -EXPORT_SYMBOL vmlinux 0xd0e96fa0 of_graph_get_remote_port -EXPORT_SYMBOL vmlinux 0xd1069e97 alloc_fddidev -EXPORT_SYMBOL vmlinux 0xd10df455 key_validate -EXPORT_SYMBOL vmlinux 0xd112f77e configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xd0c5ac1e blk_put_queue +EXPORT_SYMBOL vmlinux 0xd0e14389 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xd0efa94b show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xd118342c devm_memremap +EXPORT_SYMBOL vmlinux 0xd1335e4c copy_string_kernel EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize -EXPORT_SYMBOL vmlinux 0xd156cbd0 iov_iter_pipe -EXPORT_SYMBOL vmlinux 0xd15c0aac clk_bulk_get -EXPORT_SYMBOL vmlinux 0xd15f6796 md_error -EXPORT_SYMBOL vmlinux 0xd1613908 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0xd1630a02 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0xd16ed581 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0xd193e07b zap_page_range +EXPORT_SYMBOL vmlinux 0xd13baeba cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xd150223b inet_sk_get_local_port_range +EXPORT_SYMBOL vmlinux 0xd15cb96e nla_put +EXPORT_SYMBOL vmlinux 0xd1680d4d mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19dbd18 input_set_abs_params -EXPORT_SYMBOL vmlinux 0xd1be6f7d rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xd198d48f __folio_batch_release +EXPORT_SYMBOL vmlinux 0xd19fc04a mntput +EXPORT_SYMBOL vmlinux 0xd1b1e34f textsearch_register +EXPORT_SYMBOL vmlinux 0xd1ba37b0 readahead_expand EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1fcea4a aperture_remove_conflicting_pci_devices -EXPORT_SYMBOL vmlinux 0xd20207b3 mem_cgroup_from_task -EXPORT_SYMBOL vmlinux 0xd2030e36 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xd20280bc nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd2123712 __sk_dst_check -EXPORT_SYMBOL vmlinux 0xd21bfaf3 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xd20b4c4f generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked -EXPORT_SYMBOL vmlinux 0xd24f658d phy_free_interrupt -EXPORT_SYMBOL vmlinux 0xd255509a md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xd25060dd would_dump +EXPORT_SYMBOL vmlinux 0xd2575a4d fs_param_is_blockdev EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25b36bf blk_post_runtime_resume EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd268f2ca seq_file_path -EXPORT_SYMBOL vmlinux 0xd26d5ca2 udp_gro_receive EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27b4a0b of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd2bccdf0 audit_log_start -EXPORT_SYMBOL vmlinux 0xd2caca79 dev_add_offload -EXPORT_SYMBOL vmlinux 0xd2cfbd99 backlight_force_update +EXPORT_SYMBOL vmlinux 0xd290d672 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xd2a283ee skb_push +EXPORT_SYMBOL vmlinux 0xd2a8c9c4 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0xd2c83085 config_item_set_name +EXPORT_SYMBOL vmlinux 0xd2d781aa keyring_alloc EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2e41a0e acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xd2e6c477 tty_port_open EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2eeee0f xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0xd304db6b twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xd309f138 mmc_gpio_set_cd_isr -EXPORT_SYMBOL vmlinux 0xd311745b get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xd2fb3749 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xd2ff63ae of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xd301fa63 rproc_alloc +EXPORT_SYMBOL vmlinux 0xd3059ecb registered_fb +EXPORT_SYMBOL vmlinux 0xd31c7396 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd31da56f insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0xd33c8b1c fib_notifier_ops_register -EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd33faa48 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xd354e7ee block_read_full_folio EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35b7067 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xd35d710a pcie_capability_clear_and_set_word_unlocked EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd378bd98 block_write_end -EXPORT_SYMBOL vmlinux 0xd378fae9 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xd3852896 locks_remove_posix -EXPORT_SYMBOL vmlinux 0xd3885b04 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd3a05e03 tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0xd3aa636a kthread_destroy_worker -EXPORT_SYMBOL vmlinux 0xd3ae01e5 mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xd3b90bfa from_kgid_munged -EXPORT_SYMBOL vmlinux 0xd3bf6ecd xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0xd3c54b5e netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0xd3c9f183 blk_rq_init -EXPORT_SYMBOL vmlinux 0xd3d3b7fe fget -EXPORT_SYMBOL vmlinux 0xd3d6b322 phy_write_mmd -EXPORT_SYMBOL vmlinux 0xd4064c7c nlmsg_notify +EXPORT_SYMBOL vmlinux 0xd394d5b4 mdiobb_write_c22 +EXPORT_SYMBOL vmlinux 0xd3b0488a __mdiobus_write +EXPORT_SYMBOL vmlinux 0xd3c0ce74 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xd3d1dee4 netdev_state_change +EXPORT_SYMBOL vmlinux 0xd3d3d535 kernel_accept +EXPORT_SYMBOL vmlinux 0xd3deccb6 dma_map_page_attrs EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd409cc68 d_find_any_alias -EXPORT_SYMBOL vmlinux 0xd40d2968 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0xd42f7fa9 ethtool_notify -EXPORT_SYMBOL vmlinux 0xd439ccfb folio_account_redirty -EXPORT_SYMBOL vmlinux 0xd4446b07 to_nd_pfn -EXPORT_SYMBOL vmlinux 0xd455df01 security_unix_stream_connect -EXPORT_SYMBOL vmlinux 0xd458cd8a fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd4108ec2 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xd42843bf dev_get_stats +EXPORT_SYMBOL vmlinux 0xd42b9bb8 kern_path_create +EXPORT_SYMBOL vmlinux 0xd43fb5b1 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xd44ee3c1 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xd4598dcf device_match_acpi_handle EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex -EXPORT_SYMBOL vmlinux 0xd4709fe6 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xd469bccc __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd4980943 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xd4848a06 tcf_block_put_ext EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam -EXPORT_SYMBOL vmlinux 0xd4b30398 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xd4b938e7 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0xd4b17c4a cdrom_release EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c6bb5b pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xd4bd473a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xd4c95342 netlink_ns_capable EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4e2820b dev_driver_string -EXPORT_SYMBOL vmlinux 0xd4e318d5 of_graph_get_port_by_id -EXPORT_SYMBOL vmlinux 0xd4ecf04b wireless_send_event -EXPORT_SYMBOL vmlinux 0xd4f629b0 rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0xd5231242 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xd4e28bb6 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xd4ec0068 __folio_put +EXPORT_SYMBOL vmlinux 0xd4ee332f napi_consume_skb +EXPORT_SYMBOL vmlinux 0xd4eedc7a tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xd505cf35 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xd509fe04 inet6_release +EXPORT_SYMBOL vmlinux 0xd520cae4 skb_clone EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd52a064d kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xd532bf51 blkdev_issue_flush EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd54d40fe mfd_cell_disable -EXPORT_SYMBOL vmlinux 0xd54dd2cc disk_stack_limits -EXPORT_SYMBOL vmlinux 0xd56a7d1a scsi_scan_target -EXPORT_SYMBOL vmlinux 0xd57011e3 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xd57ea42b i2c_put_adapter -EXPORT_SYMBOL vmlinux 0xd586d50b seq_write -EXPORT_SYMBOL vmlinux 0xd58f60e5 unregister_cdrom -EXPORT_SYMBOL vmlinux 0xd5937032 nd_btt_arena_is_valid -EXPORT_SYMBOL vmlinux 0xd59a4fdf set_anon_super +EXPORT_SYMBOL vmlinux 0xd556f827 d_make_root +EXPORT_SYMBOL vmlinux 0xd55a91f9 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xd5626b1d ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xd58c8853 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xd5a8802e dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xd5aac075 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5b98c17 seq_release_private -EXPORT_SYMBOL vmlinux 0xd5bc0845 tty_hangup -EXPORT_SYMBOL vmlinux 0xd5bd9fc8 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xd5f84cd6 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xd5c07c32 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xd5c4c8b9 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xd5d6df24 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xd5fa7e36 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd5ffa6d1 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60f4dd2 sock_queue_rcv_skb_reason -EXPORT_SYMBOL vmlinux 0xd60fbf27 pcie_get_speed_cap -EXPORT_SYMBOL vmlinux 0xd61a89fd phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0xd61d336c nf_log_set +EXPORT_SYMBOL vmlinux 0xd61fa5f9 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xd624065d key_invalidate +EXPORT_SYMBOL vmlinux 0xd6288634 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xd62b1033 vme_slot_num EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd637689a pci_enable_link_state EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd6433463 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xd65fd35c get_watch_queue -EXPORT_SYMBOL vmlinux 0xd6684ac5 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xd645b086 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xd646393a is_nd_dax +EXPORT_SYMBOL vmlinux 0xd6501725 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xd653c20f param_set_ushort +EXPORT_SYMBOL vmlinux 0xd656cc32 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd67d9109 I_BDEV +EXPORT_SYMBOL vmlinux 0xd66f2833 simple_getattr EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0xd69523fc blk_get_queue -EXPORT_SYMBOL vmlinux 0xd69a399c sget +EXPORT_SYMBOL vmlinux 0xd68f0cf3 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0xd690f12a reuseport_attach_prog EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6b4609f pci_disable_msi -EXPORT_SYMBOL vmlinux 0xd6cb4d93 kern_path +EXPORT_SYMBOL vmlinux 0xd6bb693b netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f0c875 tso_build_hdr EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd70491cd uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd709257a simple_transaction_get EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute -EXPORT_SYMBOL vmlinux 0xd7105743 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xd71104b3 vm_node_stat -EXPORT_SYMBOL vmlinux 0xd7268fde import_iovec -EXPORT_SYMBOL vmlinux 0xd7339237 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xd713ab6c __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xd7184917 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xd724cc1c mmc_add_host +EXPORT_SYMBOL vmlinux 0xd72ba311 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xd731b7d3 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xd7356c1c ns_capable_setid EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd74151be migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xd7409fce dget_parent EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd74bd7e3 posix_test_lock -EXPORT_SYMBOL vmlinux 0xd7529981 phy_stop -EXPORT_SYMBOL vmlinux 0xd77b7c7b simple_rename +EXPORT_SYMBOL vmlinux 0xd7585d4c register_qdisc +EXPORT_SYMBOL vmlinux 0xd7628ecb dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xd798205f flush_dcache_page EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7a0dfd5 devm_rproc_add -EXPORT_SYMBOL vmlinux 0xd7b1d6dc pm_vt_switch_unregister -EXPORT_SYMBOL vmlinux 0xd7bd928c lock_sock_nested -EXPORT_SYMBOL vmlinux 0xd7bfe665 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xd7c20d0b scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xd7c2c5b3 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xd7a599dd xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7dd011f ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xd7dfdaab bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll -EXPORT_SYMBOL vmlinux 0xd7e69acd get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xd7e97c44 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xd7e90b93 sk_send_sigurg EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler -EXPORT_SYMBOL vmlinux 0xd7eb76e5 tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xd7efa37a seq_putc +EXPORT_SYMBOL vmlinux 0xd7faf57a tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd80474e6 kernel_sendpage_locked -EXPORT_SYMBOL vmlinux 0xd80caaa7 bio_add_page +EXPORT_SYMBOL vmlinux 0xd811d23e sock_create_lite EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd81e014f scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0xd827ece0 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd8530ced fwnode_iomap -EXPORT_SYMBOL vmlinux 0xd8589361 nd_btt_version -EXPORT_SYMBOL vmlinux 0xd88d0ee7 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0xd88f04fc scmd_printk -EXPORT_SYMBOL vmlinux 0xd89247f7 serio_open +EXPORT_SYMBOL vmlinux 0xd85e0c8e dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd874bf56 seg6_push_hmac EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a2f6da inet_addr_type_table EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8bccd0b folio_unlock -EXPORT_SYMBOL vmlinux 0xd8c652af mdiobus_write_nested -EXPORT_SYMBOL vmlinux 0xd8cc507f sock_from_file +EXPORT_SYMBOL vmlinux 0xd8b91c09 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xd8c0e4ca trace_event_printf +EXPORT_SYMBOL vmlinux 0xd8da2680 inet_addr_type EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e25e63 tcp_read_sock -EXPORT_SYMBOL vmlinux 0xd9034cd3 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xd8e3ba8a dquot_get_state +EXPORT_SYMBOL vmlinux 0xd8f5a6af pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xd8f7df3a __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xd9188bc2 unregister_console +EXPORT_SYMBOL vmlinux 0xd91c4877 devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd925e923 create_empty_buffers EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0xd9429516 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd9482ba8 mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd95aebb2 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xd94a574a vfs_rmdir +EXPORT_SYMBOL vmlinux 0xd94f9d8b block_truncate_page +EXPORT_SYMBOL vmlinux 0xd950cd38 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xd9577e45 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xd960ad9c rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xd9659e8f sk_free +EXPORT_SYMBOL vmlinux 0xd96f7dd5 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xd9718298 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd9726fc9 mii_link_ok EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd98bf2ed xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xd98ffa4c inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xd9a29be0 mount_nodev +EXPORT_SYMBOL vmlinux 0xd98608f7 genphy_c45_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0xd9aba931 rfkill_alloc -EXPORT_SYMBOL vmlinux 0xd9b01a4f dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xd9b4c61f genphy_read_lpa EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9bf47dd scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0xd9bf6ee4 napi_complete_done -EXPORT_SYMBOL vmlinux 0xd9c488ba blk_rq_map_integrity_sg -EXPORT_SYMBOL vmlinux 0xd9c96674 amba_release_regions -EXPORT_SYMBOL vmlinux 0xd9d152dc tegra_dfll_suspend -EXPORT_SYMBOL vmlinux 0xd9d32b39 flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xd9dbafe2 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0xda0629a1 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda1e005e netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xda2ca226 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xda2ed1f4 sockfd_lookup EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open -EXPORT_SYMBOL vmlinux 0xda76b324 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0xda893724 fqdir_exit -EXPORT_SYMBOL vmlinux 0xda93da11 genl_notify -EXPORT_SYMBOL vmlinux 0xda9beea7 of_device_register -EXPORT_SYMBOL vmlinux 0xda9d6f95 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xda3f8a71 nla_append +EXPORT_SYMBOL vmlinux 0xda58e513 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xda5941fd of_get_next_child +EXPORT_SYMBOL vmlinux 0xda612585 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xda7efd56 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xdaa67350 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xdab1d752 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xdab7c4ba of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xdac1f2c3 xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0xdac63c16 simple_transaction_release EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdad26876 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0xdaf110ff fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xdaf61183 param_set_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xdafa4189 param_ops_bint -EXPORT_SYMBOL vmlinux 0xdb100a28 alloc_pages -EXPORT_SYMBOL vmlinux 0xdb260bb5 sg_miter_stop -EXPORT_SYMBOL vmlinux 0xdb2a1ba8 rproc_put -EXPORT_SYMBOL vmlinux 0xdb357b61 md_unregister_thread -EXPORT_SYMBOL vmlinux 0xdb44b258 of_node_name_eq -EXPORT_SYMBOL vmlinux 0xdb4a965f scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xdb4f5739 security_dentry_init_security -EXPORT_SYMBOL vmlinux 0xdb5e8f00 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xdad51a74 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xdae059e7 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xdae0fd9a skb_vlan_push +EXPORT_SYMBOL vmlinux 0xdaed46c5 read_cache_folio +EXPORT_SYMBOL vmlinux 0xdb066d45 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xdb1edee6 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0xdb1f3ab2 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xdb24c595 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xdb406c85 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xdb47365e sock_gettstamp +EXPORT_SYMBOL vmlinux 0xdb589df2 pin_user_pages EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb70c8d1 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xdb731842 ilookup EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdbbb04d1 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xdb84d88d debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xdb878bbd block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xdb8a718c param_ops_ulong +EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xdba419cf iproc_msi_exit +EXPORT_SYMBOL vmlinux 0xdbb485be netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xdbc2136b ethtool_op_get_link EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbc7a503 module_refcount +EXPORT_SYMBOL vmlinux 0xdbcd82ef seq_putc EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbd42e1e udp_prot EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdc06c92d ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xdbfce981 rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc17ef41 request_key_tag +EXPORT_SYMBOL vmlinux 0xdc1f19ee phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init -EXPORT_SYMBOL vmlinux 0xdc38b28a mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc4007c4 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0xdc42db3e inet_frag_rbtree_purge EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv -EXPORT_SYMBOL vmlinux 0xdc4c0756 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc6c236e kthread_create_worker -EXPORT_SYMBOL vmlinux 0xdc6c9408 seq_vprintf -EXPORT_SYMBOL vmlinux 0xdc6ca3db dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0xdc8ec5ab cros_ec_check_result -EXPORT_SYMBOL vmlinux 0xdc92c4f9 mfd_add_devices -EXPORT_SYMBOL vmlinux 0xdc9a2271 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xdca4f225 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xdc5e9e6d devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xdc66f4d7 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdc731e61 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xdc7acb24 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xdc7d6bc9 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xdc8450ba __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xdc97ca16 mount_single EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcaec865 lookup_one -EXPORT_SYMBOL vmlinux 0xdcb667a6 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbb207e fsl_ifc_ctrl_dev EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcdad2ea ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdce23bc9 scsi_host_get -EXPORT_SYMBOL vmlinux 0xdce6ca33 poll_freewait -EXPORT_SYMBOL vmlinux 0xdcea5b7d security_old_inode_init_security -EXPORT_SYMBOL vmlinux 0xdcefa9a7 vm_insert_page -EXPORT_SYMBOL vmlinux 0xdcf39631 configfs_register_group -EXPORT_SYMBOL vmlinux 0xdcf88fda blk_finish_plug -EXPORT_SYMBOL vmlinux 0xdcfb932f vfs_unlink -EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd09690f gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xdd0a6e3b cdrom_ioctl EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd18dc4c md_bitmap_unplug EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd32e566 fs_context_for_submount -EXPORT_SYMBOL vmlinux 0xdd35f5c5 scsi_host_busy -EXPORT_SYMBOL vmlinux 0xdd5807c6 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xdd5be2d0 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xdd4d4c66 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xdd4dadd9 new_inode +EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg +EXPORT_SYMBOL vmlinux 0xdd5ee379 misc_register +EXPORT_SYMBOL vmlinux 0xdd602674 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xdd618806 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy -EXPORT_SYMBOL vmlinux 0xdd67029e skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset -EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd9ec558 param_set_long +EXPORT_SYMBOL vmlinux 0xdd8649df flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xdda1dc72 xfrm_parse_spi EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddbb9d1f kern_path_create -EXPORT_SYMBOL vmlinux 0xddc437af xfrm_dev_policy_flush -EXPORT_SYMBOL vmlinux 0xdde810cc dns_query -EXPORT_SYMBOL vmlinux 0xddeb2d5f filemap_get_folios_contig +EXPORT_SYMBOL vmlinux 0xddb1c125 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xddd01313 vlan_for_each +EXPORT_SYMBOL vmlinux 0xdde567aa xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xddf424c1 watchdog_unregister_governor EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xde237a51 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xde075202 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xde0a9e80 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xde111427 inet_ioctl +EXPORT_SYMBOL vmlinux 0xde131f23 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xde182ecb phy_disconnect +EXPORT_SYMBOL vmlinux 0xde195409 mdio_device_reset +EXPORT_SYMBOL vmlinux 0xde1daa2c scsi_host_put EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2c6cac key_unlink -EXPORT_SYMBOL vmlinux 0xde2e50e1 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0xde3f5de6 tcf_block_get -EXPORT_SYMBOL vmlinux 0xde42ad85 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xde46fd62 iov_iter_get_pages_alloc2 -EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats -EXPORT_SYMBOL vmlinux 0xde59a260 param_set_short -EXPORT_SYMBOL vmlinux 0xde59d175 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0xde5d6add __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xde5ff3c4 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xde2c716b of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xde4c7606 xfrm_input +EXPORT_SYMBOL vmlinux 0xde4fd3a9 kernel_connect +EXPORT_SYMBOL vmlinux 0xde55116c tcp_recv_skb EXPORT_SYMBOL vmlinux 0xde67419e sg_split -EXPORT_SYMBOL vmlinux 0xde6e82e2 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xde7ffe86 misc_register -EXPORT_SYMBOL vmlinux 0xde82e136 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xde91bc58 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0xde966664 key_type_keyring +EXPORT_SYMBOL vmlinux 0xde6c6f31 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xdead2ae1 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xdeaf409d platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xdeaff304 sock_alloc +EXPORT_SYMBOL vmlinux 0xdeb99119 dma_fence_init +EXPORT_SYMBOL vmlinux 0xdec2d2e2 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xdec569b7 netpoll_parse_options EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee5166b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdefe81fd dm_kcopyd_copy -EXPORT_SYMBOL vmlinux 0xdf184333 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2f20ce vfs_rmdir EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf4a8fb7 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xdf4cb29a vfs_getattr EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf58be6b nd_integrity_init -EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0xdf6f9c07 napi_disable +EXPORT_SYMBOL vmlinux 0xdf5d9ee8 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdf75508a kobject_get +EXPORT_SYMBOL vmlinux 0xdf7cd745 scsi_partsize EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay -EXPORT_SYMBOL vmlinux 0xdf8d49e6 neigh_lookup EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdf99e00d pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xdfa4a214 pci_iounmap +EXPORT_SYMBOL vmlinux 0xdf97a279 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xdf9f1b40 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xdfa5f94d security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xdfba33fb vfs_get_link +EXPORT_SYMBOL vmlinux 0xdfbe81d4 blk_integrity_compare EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream EXPORT_SYMBOL vmlinux 0xdfcc992c current_work EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdff66450 __folio_start_writeback -EXPORT_SYMBOL vmlinux 0xdff69e97 phy_device_create +EXPORT_SYMBOL vmlinux 0xdfda4a0b blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xdfdd643d tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xdff18999 __folio_alloc EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xdffcb0de pci_request_irq -EXPORT_SYMBOL vmlinux 0xe00d7102 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xe029d3c2 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xe00abd83 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xe01b32f6 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xe0207a0f fb_io_write EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq -EXPORT_SYMBOL vmlinux 0xe02c6e26 inet6_add_protocol EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0xe03bd4b9 generic_permission -EXPORT_SYMBOL vmlinux 0xe03dfb84 md_register_thread +EXPORT_SYMBOL vmlinux 0xe0315f65 devm_clk_get_optional EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe0518cad register_filesystem -EXPORT_SYMBOL vmlinux 0xe06141e2 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0xe0633dd0 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xe067adbc genphy_read_lpa -EXPORT_SYMBOL vmlinux 0xe073ec4e dquot_disable +EXPORT_SYMBOL vmlinux 0xe0567c30 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xe070137b vfs_llseek +EXPORT_SYMBOL vmlinux 0xe0761e28 __check_sticky +EXPORT_SYMBOL vmlinux 0xe07d8764 folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe080c9c8 dev_uc_add_excl EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe092c543 vfs_setpos -EXPORT_SYMBOL vmlinux 0xe0981db3 config_item_put -EXPORT_SYMBOL vmlinux 0xe09a7fce acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xe096c5d0 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xe09b9d08 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe0abd935 netdev_info +EXPORT_SYMBOL vmlinux 0xe0b0d98d skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b3ed3b rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xe0b22c74 pci_select_bars EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0d8ca50 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xe0f66958 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xe11372ff remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xe0c1c423 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xe0dbf33b unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe1000120 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xe103c4b1 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xe107739d cdev_init EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1167061 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xe1176a77 sock_wake_async +EXPORT_SYMBOL vmlinux 0xe11d50c8 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xe1225fe0 fscrypt_encrypt_pagecache_blocks EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12ac71a inode_maybe_inc_iversion EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe146e721 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xe1478a50 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xe15ca24c skb_condense -EXPORT_SYMBOL vmlinux 0xe160d564 mod_node_page_state -EXPORT_SYMBOL vmlinux 0xe1aecd39 pci_disable_msix -EXPORT_SYMBOL vmlinux 0xe1b48830 fwnode_get_phy_id -EXPORT_SYMBOL vmlinux 0xe1b96b23 igrab -EXPORT_SYMBOL vmlinux 0xe1bf25c3 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xe1cc302e blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xe1d11142 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xe1d803f3 d_set_d_op +EXPORT_SYMBOL vmlinux 0xe167931c fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xe17568e3 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0xe17ac96b pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xe17f2966 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xe18b029b remove_proc_entry +EXPORT_SYMBOL vmlinux 0xe18ce0fa phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xe19a051a fifo_set_limit +EXPORT_SYMBOL vmlinux 0xe1abbec8 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xe1ba2e7b dst_release_immediate +EXPORT_SYMBOL vmlinux 0xe1cc2480 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xe1d45dd1 cad_pid +EXPORT_SYMBOL vmlinux 0xe1da2adc dev_kfree_skb_any_reason EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1ee7a1d fs_param_is_string -EXPORT_SYMBOL vmlinux 0xe1f3762f proc_create_single_data +EXPORT_SYMBOL vmlinux 0xe1ece95f reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xe212e37d textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xe21337f2 deactivate_super EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe22bc802 d_lookup -EXPORT_SYMBOL vmlinux 0xe233698f fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xe234d681 block_write_full_page -EXPORT_SYMBOL vmlinux 0xe23d9c28 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0xe249dcbd tcp_time_wait -EXPORT_SYMBOL vmlinux 0xe266b6a4 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0xe28762a5 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0xe288a459 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xe229403f of_cpu_device_node_get +EXPORT_SYMBOL vmlinux 0xe22e301e hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xe2356a23 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xe249a242 tty_write_room +EXPORT_SYMBOL vmlinux 0xe24d00ef ppp_dev_name +EXPORT_SYMBOL vmlinux 0xe24e17a8 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xe261c420 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0xe2732084 skb_append +EXPORT_SYMBOL vmlinux 0xe27b5fc0 vfs_ioctl EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up -EXPORT_SYMBOL vmlinux 0xe2ae8c2e of_phy_find_device -EXPORT_SYMBOL vmlinux 0xe2af5a4d udp_lib_unhash -EXPORT_SYMBOL vmlinux 0xe2b42921 sock_no_connect -EXPORT_SYMBOL vmlinux 0xe2c52373 phy_loopback +EXPORT_SYMBOL vmlinux 0xe2afe84d mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xe2bbfa56 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xe2be965c sock_i_uid +EXPORT_SYMBOL vmlinux 0xe2d0923b dquot_drop EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2dc1f34 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xe3092eda rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0xe30a672d sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0xe3154a66 drop_nlink +EXPORT_SYMBOL vmlinux 0xe2da7ee8 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xe2ee5374 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xe3105261 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xe3144eb4 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xe316f512 dev_driver_string +EXPORT_SYMBOL vmlinux 0xe3292a2c pnp_is_active EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe339dca8 security_d_instantiate -EXPORT_SYMBOL vmlinux 0xe34d2ff0 open_with_fake_path -EXPORT_SYMBOL vmlinux 0xe37f1d3f bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0xe389cebe filemap_check_errors +EXPORT_SYMBOL vmlinux 0xe33b8c0b from_kprojid +EXPORT_SYMBOL vmlinux 0xe36cfa7d remove_arg_zero +EXPORT_SYMBOL vmlinux 0xe36f1f5b scsi_device_put +EXPORT_SYMBOL vmlinux 0xe3762f2c seq_puts +EXPORT_SYMBOL vmlinux 0xe383abd2 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xe387dcf5 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xe38beae2 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xe392bb00 security_binder_transfer_binder EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe39eb8da __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0xe39ef813 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xe3a9356f skb_condense EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3b299f1 dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0xe3be1d16 discard_new_inode -EXPORT_SYMBOL vmlinux 0xe3c3a3ad skb_clone_sk -EXPORT_SYMBOL vmlinux 0xe3dcdae8 phy_ethtool_get_strings -EXPORT_SYMBOL vmlinux 0xe3e04bb2 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xe3d4824e blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xe3dd3de5 path_get +EXPORT_SYMBOL vmlinux 0xe3de6e4c dm_get_device +EXPORT_SYMBOL vmlinux 0xe3e3e98c in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f56e18 mmc_alloc_host -EXPORT_SYMBOL vmlinux 0xe3f5b48d nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xe3ee57dd tegra_dfll_register EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe4105956 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0xe430f1d0 bio_put -EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 -EXPORT_SYMBOL vmlinux 0xe4392a10 _copy_from_iter -EXPORT_SYMBOL vmlinux 0xe439b286 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0xe44e6585 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0xe457b595 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xe4657608 posix_acl_valid -EXPORT_SYMBOL vmlinux 0xe465bf3d dcb_ieee_getapp_dscp_prio_mask_map -EXPORT_SYMBOL vmlinux 0xe4788103 tcf_generic_walker -EXPORT_SYMBOL vmlinux 0xe48e5828 fman_reset_mac -EXPORT_SYMBOL vmlinux 0xe49bc70a inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xe49ca1e9 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xe4b091c3 inet_ioctl +EXPORT_SYMBOL vmlinux 0xe417bd20 key_validate +EXPORT_SYMBOL vmlinux 0xe422cf4c genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xe43d5fff input_register_device +EXPORT_SYMBOL vmlinux 0xe45630ba to_nd_btt +EXPORT_SYMBOL vmlinux 0xe45fcced acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xe46e74e8 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xe47fac75 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xe48a6816 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0xe4b82712 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xe4bad0e9 neigh_lookup +EXPORT_SYMBOL vmlinux 0xe4baf1f4 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4bf27c8 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0xe4c148ef xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0xe4fb0469 devfreq_suspend_device -EXPORT_SYMBOL vmlinux 0xe4fe478a end_page_writeback -EXPORT_SYMBOL vmlinux 0xe51622ea d_obtain_alias -EXPORT_SYMBOL vmlinux 0xe51f2060 mdio_device_free -EXPORT_SYMBOL vmlinux 0xe520f789 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xe4c694c7 flow_rule_match_ports_range +EXPORT_SYMBOL vmlinux 0xe4e679bc inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xe4f4a0e7 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xe4fc2802 dqput +EXPORT_SYMBOL vmlinux 0xe50b4b6a unregister_binfmt +EXPORT_SYMBOL vmlinux 0xe5150739 iget_locked EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe524e2d2 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xe5545317 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xe55468ba mpage_read_folio +EXPORT_SYMBOL vmlinux 0xe57ef636 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xe57fd4a2 vme_irq_request EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock -EXPORT_SYMBOL vmlinux 0xe580554c cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet -EXPORT_SYMBOL vmlinux 0xe5821319 phy_set_max_speed EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5b9893a tcp_req_err -EXPORT_SYMBOL vmlinux 0xe5c5b6c6 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xe59de6c3 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xe5b39efa reuseport_alloc +EXPORT_SYMBOL vmlinux 0xe5c0068c alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5e8b3ec skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xe600ff1b pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0xe616fea0 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0xe6320219 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xe64b9bdf call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xe5c8504b mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xe5cced20 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xe5cee291 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xe5dcd872 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xe5e68c24 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xe5fccaa7 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xe61b912a security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xe633c1af vga_get +EXPORT_SYMBOL vmlinux 0xe6418e39 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xe6423e18 send_sig_info +EXPORT_SYMBOL vmlinux 0xe653b17c netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xe65472e6 get_bitmap_from_slot EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe66aa846 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0xe694b35e build_skb_around -EXPORT_SYMBOL vmlinux 0xe69695e9 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0xe6a5cc22 kernel_bind -EXPORT_SYMBOL vmlinux 0xe6ac4da0 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xe6b01b58 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0xe6b89b3f flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0xe6be1657 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xe656fe96 md_update_sb +EXPORT_SYMBOL vmlinux 0xe67e1b72 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xe69054cc qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xe6a9c7eb kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xe6c05c94 __vfs_removexattr EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6d79b4f scsi_done_direct -EXPORT_SYMBOL vmlinux 0xe6e20c56 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xe6e22612 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xe6e3d5b3 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xe6e70c47 get_unmapped_area -EXPORT_SYMBOL vmlinux 0xe6f211d2 __pagevec_release +EXPORT_SYMBOL vmlinux 0xe6e18d27 copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0xe6ea7cf5 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xe6eb6ef9 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xe6f01b8d tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe70a1fcc genlmsg_put -EXPORT_SYMBOL vmlinux 0xe71b27ff sock_gettstamp +EXPORT_SYMBOL vmlinux 0xe6fb3104 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe7045e6f xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xe7217b4a current_in_userns +EXPORT_SYMBOL vmlinux 0xe72536a0 vme_unregister_bridge EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe7488eb2 vif_device_init -EXPORT_SYMBOL vmlinux 0xe75cdde6 tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe76c6c53 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0xe76cd348 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xe77971f1 genl_register_family -EXPORT_SYMBOL vmlinux 0xe7908756 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xe73db1be mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xe75fef4f __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe7958c28 kset_unregister EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7a7ac9d netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xe7ae91ef pm8606_osc_enable EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7cd2503 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xe7c33b0a blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xe7c944a8 phy_device_create +EXPORT_SYMBOL vmlinux 0xe7d3a73d mroute6_is_socket EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe7e435b0 security_path_rename -EXPORT_SYMBOL vmlinux 0xe801bf79 prepare_creds -EXPORT_SYMBOL vmlinux 0xe81495b7 dev_addr_del +EXPORT_SYMBOL vmlinux 0xe7d808f5 __mdiobus_read +EXPORT_SYMBOL vmlinux 0xe7da5300 skb_checksum +EXPORT_SYMBOL vmlinux 0xe7ed60df tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xe7fa06f8 filemap_get_folios +EXPORT_SYMBOL vmlinux 0xe812036c dmam_free_coherent EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe82b77be get_tree_nodev +EXPORT_SYMBOL vmlinux 0xe8303010 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xe849428b dm_io EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe861db20 neigh_update -EXPORT_SYMBOL vmlinux 0xe87f3a26 of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xe88cb7f0 cdev_alloc -EXPORT_SYMBOL vmlinux 0xe89c7094 of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0xe8b0e707 xp_dma_unmap -EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0xe8ccf664 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe885628c handshake_req_cancel +EXPORT_SYMBOL vmlinux 0xe890f423 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe8949a84 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xe8958829 iget5_locked +EXPORT_SYMBOL vmlinux 0xe8bbe76b security_path_rename +EXPORT_SYMBOL vmlinux 0xe8bc560d tty_unregister_device +EXPORT_SYMBOL vmlinux 0xe8c07dda d_add_ci +EXPORT_SYMBOL vmlinux 0xe8c0c6c3 edac_mc_find EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8e390bb sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xe8d4dc75 skb_dequeue_tail EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get -EXPORT_SYMBOL vmlinux 0xe90649db reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe9277902 scsi_host_put -EXPORT_SYMBOL vmlinux 0xe9379d2e ptp_clock_register +EXPORT_SYMBOL vmlinux 0xe91919df skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xe91f29fc dquot_alloc EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe9579e88 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0xe95a84ce netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0xe95f1438 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xe964ceb3 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0xe97c0781 vme_bus_num -EXPORT_SYMBOL vmlinux 0xe9843bcb cdev_init -EXPORT_SYMBOL vmlinux 0xe9874dd8 bio_reset -EXPORT_SYMBOL vmlinux 0xe998478b security_path_mkdir -EXPORT_SYMBOL vmlinux 0xe9aace08 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xe956dbdf fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xe9616c11 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe98741a5 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xe99760d8 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xe9a8f668 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xe9ac1bee cros_ec_get_next_event EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9b33020 nd_dev_to_uuid -EXPORT_SYMBOL vmlinux 0xe9c5dfd9 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0xe9c92555 bioset_exit +EXPORT_SYMBOL vmlinux 0xe9be7d11 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe9d67ba4 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xe9d98708 pci_read_vpd EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xe9ddaf62 set_create_files_as EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size -EXPORT_SYMBOL vmlinux 0xe9f44934 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe9eb5747 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe9f4d782 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fde748 take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xea00d339 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc -EXPORT_SYMBOL vmlinux 0xea2e2f3e dev_uc_add -EXPORT_SYMBOL vmlinux 0xea37acf1 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xea3402e6 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xea3b8dde tty_do_resize EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea490e55 skb_seq_read -EXPORT_SYMBOL vmlinux 0xea5f5249 sock_bind_add -EXPORT_SYMBOL vmlinux 0xea629375 __fput_sync +EXPORT_SYMBOL vmlinux 0xea42bbc1 finish_no_open +EXPORT_SYMBOL vmlinux 0xea4e86dc dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xea585739 qman_start_using_portal EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled -EXPORT_SYMBOL vmlinux 0xea8b8880 bio_kmalloc -EXPORT_SYMBOL vmlinux 0xea9d2a71 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0xeaa7c8f8 iov_iter_zero -EXPORT_SYMBOL vmlinux 0xeaad4ed5 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xea708ef6 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xea764149 sock_bind_add +EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options +EXPORT_SYMBOL vmlinux 0xea819765 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xea88bf1d kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xeab3227d start_tty +EXPORT_SYMBOL vmlinux 0xeab63313 filemap_dirty_folio EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeac22d62 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xeacc107d input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeade7589 param_ops_short EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae5345b scsi_remove_host +EXPORT_SYMBOL vmlinux 0xeae575e7 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xeae93ac7 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xeaf9ae33 iov_iter_discard EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb06d0df iget5_locked -EXPORT_SYMBOL vmlinux 0xeb0d469a param_get_charp -EXPORT_SYMBOL vmlinux 0xeb16c308 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xeb1acb39 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xeafe036b netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0xeb077ee7 from_kuid +EXPORT_SYMBOL vmlinux 0xeb121cab input_inject_event EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb24c44a tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xeb276d9e sock_no_accept +EXPORT_SYMBOL vmlinux 0xeb2f52a9 i2c_smbus_read_i2c_block_data EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb3d7f50 netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb6072b2 bdi_unregister -EXPORT_SYMBOL vmlinux 0xeb654d55 cdev_device_del +EXPORT_SYMBOL vmlinux 0xeb6249fd generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb7c9cfe inode_to_bdi EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb81b121 vc_resize EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xeba012b6 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0xeba54edb __bh_read -EXPORT_SYMBOL vmlinux 0xebd462cf netdev_core_stats_alloc -EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xebee2421 __folio_cancel_dirty -EXPORT_SYMBOL vmlinux 0xebf27166 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0xebfc4978 try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xebfcb0f0 vfs_getattr -EXPORT_SYMBOL vmlinux 0xec0d6057 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xebbff3cb nd_device_register +EXPORT_SYMBOL vmlinux 0xebc02c13 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xebdcc07c devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xebdd9ea7 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xec1bc290 _dev_warn EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec2e58c1 d_prune_aliases EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec393969 backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec46db8a devfreq_update_status EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec6c13cc file_ns_capable -EXPORT_SYMBOL vmlinux 0xec6dd943 bdi_put -EXPORT_SYMBOL vmlinux 0xec710dd3 vfs_iter_read -EXPORT_SYMBOL vmlinux 0xec7285bd register_md_cluster_operations -EXPORT_SYMBOL vmlinux 0xec767c55 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xec7b31eb tty_port_put -EXPORT_SYMBOL vmlinux 0xec9d5aef blk_queue_max_secure_erase_sectors -EXPORT_SYMBOL vmlinux 0xeca0943f sync_blockdev +EXPORT_SYMBOL vmlinux 0xec62bfd7 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xec7365ff forget_cached_acl EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xeca9e28f phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0xecb3964a release_pages -EXPORT_SYMBOL vmlinux 0xecd05974 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xecd6b6ae __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xecaacc66 simple_link +EXPORT_SYMBOL vmlinux 0xecaca7e0 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xecc2ffc7 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0xecc7fd06 dquot_release +EXPORT_SYMBOL vmlinux 0xecdf4fd7 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xece31206 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0xece784c2 rb_first -EXPORT_SYMBOL vmlinux 0xecef6d89 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xecf874c9 kmem_cache_size EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed121898 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xed1cf203 fwnode_irq_get_byname -EXPORT_SYMBOL vmlinux 0xed467b8d ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0xed4f00dd dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed5ecfc7 cont_write_begin -EXPORT_SYMBOL vmlinux 0xed5f7ee6 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xed626a85 devm_ioremap EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed76c6c9 get_tree_keyed -EXPORT_SYMBOL vmlinux 0xed85f3ac scsi_device_get -EXPORT_SYMBOL vmlinux 0xed863e28 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xed67a3b0 vfs_fadvise EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed93349a inode_insert5 -EXPORT_SYMBOL vmlinux 0xedb82876 set_bh_page +EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedc0003a call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xedbd829c default_llseek EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc32361 km_policy_notify -EXPORT_SYMBOL vmlinux 0xedc5f36a dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xedc4522b security_unix_may_send +EXPORT_SYMBOL vmlinux 0xedca650e config_item_put EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xedd926f6 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0xedf4abba of_get_i2c_adapter_by_node -EXPORT_SYMBOL vmlinux 0xedfbe1ab vme_init_bridge -EXPORT_SYMBOL vmlinux 0xee0a4392 redraw_screen +EXPORT_SYMBOL vmlinux 0xedd6a4fb mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices +EXPORT_SYMBOL vmlinux 0xee15dbcd dev_set_alias +EXPORT_SYMBOL vmlinux 0xee2167cb bio_put EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee50ffb0 dev_get_stats -EXPORT_SYMBOL vmlinux 0xee54c791 file_path -EXPORT_SYMBOL vmlinux 0xee558b84 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xee4307b6 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xee4e81cb ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xee54a0f7 jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee627765 security_inet_conn_established -EXPORT_SYMBOL vmlinux 0xee683467 __devm_release_region -EXPORT_SYMBOL vmlinux 0xee6fbc76 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xee71ce5a fb_pan_display -EXPORT_SYMBOL vmlinux 0xee7520ad xfrm_state_add +EXPORT_SYMBOL vmlinux 0xee591fa2 devm_clk_get +EXPORT_SYMBOL vmlinux 0xee5ab5f3 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc -EXPORT_SYMBOL vmlinux 0xee7d98ae max8998_bulk_write -EXPORT_SYMBOL vmlinux 0xee7eb845 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0xee7eba29 udp6_set_csum EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8bbb2a __devm_release_region EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee979e30 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xee9b5eeb mntput -EXPORT_SYMBOL vmlinux 0xee9bb8eb __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0xee998b95 put_disk +EXPORT_SYMBOL vmlinux 0xeea410bd xfrm4_protocol_register EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeaec125 genphy_read_status -EXPORT_SYMBOL vmlinux 0xeec39329 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xeecab865 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0xeedb73dc flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xeead8eb1 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xeec1f2b0 input_reset_device EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xeeec8663 xattr_supported_namespace -EXPORT_SYMBOL vmlinux 0xef07cc42 blkdev_put -EXPORT_SYMBOL vmlinux 0xef0a7d9a iov_iter_alignment -EXPORT_SYMBOL vmlinux 0xef1a58bf mr_table_alloc -EXPORT_SYMBOL vmlinux 0xef529170 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0xef69803b _dev_notice -EXPORT_SYMBOL vmlinux 0xef6a55b3 of_device_is_big_endian -EXPORT_SYMBOL vmlinux 0xef77c708 input_allocate_device -EXPORT_SYMBOL vmlinux 0xef790e31 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xeef0d8b9 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xeef8b7d4 nf_log_trace +EXPORT_SYMBOL vmlinux 0xef03bb82 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xef24ce97 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xef402df2 mmc_request_done +EXPORT_SYMBOL vmlinux 0xef43c100 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xef519dd0 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xef53a496 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xef5548d7 __acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xef64d998 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xef67140d of_clk_get +EXPORT_SYMBOL vmlinux 0xef6d7822 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xef6ec902 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xef7570d5 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xef80b36e dev_get_by_name +EXPORT_SYMBOL vmlinux 0xef89e42b neigh_seq_stop EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg -EXPORT_SYMBOL vmlinux 0xef8c06a2 flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0xef8e42c1 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xef961ca1 mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0xef988f77 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefc6de5e phy_get_pause +EXPORT_SYMBOL vmlinux 0xefb52c5a vme_irq_generate +EXPORT_SYMBOL vmlinux 0xefc6225f generic_file_llseek_size EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning -EXPORT_SYMBOL vmlinux 0xefd26f45 eth_mac_addr -EXPORT_SYMBOL vmlinux 0xefed02d5 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff00707 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xeff8db87 task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf013c753 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xf02741c1 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xf008ad9b vfs_rename +EXPORT_SYMBOL vmlinux 0xf02a986c pci_dev_get EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf038138d sock_create -EXPORT_SYMBOL vmlinux 0xf0415e35 ___pskb_trim -EXPORT_SYMBOL vmlinux 0xf04f10c2 inet6_release -EXPORT_SYMBOL vmlinux 0xf050e2bb mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0xf078178d phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xf043a161 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xf0488d64 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xf051fc2f truncate_pagecache +EXPORT_SYMBOL vmlinux 0xf0562278 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xf06a5f82 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xf06fe9aa nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0xf0881fc5 mmc_card_is_blockaddr -EXPORT_SYMBOL vmlinux 0xf099269b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xf087f37d blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xf08a0126 napi_enable +EXPORT_SYMBOL vmlinux 0xf08fba50 scsi_host_busy +EXPORT_SYMBOL vmlinux 0xf09349df do_SAK EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a8b06a pci_unmap_rom -EXPORT_SYMBOL vmlinux 0xf0aa3e15 __getblk_gfp -EXPORT_SYMBOL vmlinux 0xf0af132c phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xf0ab26ba tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data -EXPORT_SYMBOL vmlinux 0xf0c0c35f pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0xf0d8a475 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xf0e44292 simple_dir_operations -EXPORT_SYMBOL vmlinux 0xf0e5899c skb_eth_gso_segment -EXPORT_SYMBOL vmlinux 0xf0ff4ee7 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0xf0ffaf4c phy_device_register -EXPORT_SYMBOL vmlinux 0xf10a96f4 arp_send +EXPORT_SYMBOL vmlinux 0xf0b9a4b9 commit_creds +EXPORT_SYMBOL vmlinux 0xf0cdd9cf pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xf0dcbe0f mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xf0deae8b vfs_unlink +EXPORT_SYMBOL vmlinux 0xf0f44c69 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf115153b mfd_remove_devices_late EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf1273cbb __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0xf1345a4e prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0xf13b805d jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0xf1441a85 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0xf17fd144 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xf1263e2d tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xf1380da8 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xf138ed82 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xf13a3481 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf146cff5 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xf14cbc0d submit_bio_wait +EXPORT_SYMBOL vmlinux 0xf1593d96 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xf15ad12c tcp_rcv_established EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf1892988 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xf18a7e62 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xf18d5333 folio_mark_dirty -EXPORT_SYMBOL vmlinux 0xf191c692 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xf1842ffd neigh_app_ns EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf1a386a0 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream -EXPORT_SYMBOL vmlinux 0xf1bc0473 md_write_inc -EXPORT_SYMBOL vmlinux 0xf1d04401 devm_pci_remap_cfgspace -EXPORT_SYMBOL vmlinux 0xf1d17596 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf1a778c3 pci_find_resource EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy -EXPORT_SYMBOL vmlinux 0xf1dbfbfc put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0xf1e046cc panic -EXPORT_SYMBOL vmlinux 0xf1e3a08e __dev_direct_xmit EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf228c6de tcp_v4_md5_hash_skb -EXPORT_SYMBOL vmlinux 0xf229388a bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0xf23b5cc7 fman_port_get_device +EXPORT_SYMBOL vmlinux 0xf2001e80 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf2006bdb uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xf210900c ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xf223b46f mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xf22dbee9 setattr_copy EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24daeb8 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0xf2517779 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xf25b2dee textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf25f7f18 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf26d8bf6 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0xf279db51 udp_poll -EXPORT_SYMBOL vmlinux 0xf289e770 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xf275fa83 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xf2858914 kobject_add EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init -EXPORT_SYMBOL vmlinux 0xf2913c81 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xf29098d0 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xf290eeed sock_no_shutdown EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf2a5fa0a handle_edge_irq EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0xf2c1faaf mipi_dsi_dcs_set_display_brightness_large +EXPORT_SYMBOL vmlinux 0xf2b6780e sys_imageblit +EXPORT_SYMBOL vmlinux 0xf2bc7efd phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2d113c6 fput -EXPORT_SYMBOL vmlinux 0xf2dba7d9 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xf2c55679 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xf2cfebcf inet_offloads +EXPORT_SYMBOL vmlinux 0xf2d16251 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xf2d8ed50 seq_escape_mem EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f09fb8 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xf2e85064 filp_open EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update -EXPORT_SYMBOL vmlinux 0xf32066e2 vme_slot_num -EXPORT_SYMBOL vmlinux 0xf327ece0 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0xf3360f53 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xf30d2491 vfs_readlink +EXPORT_SYMBOL vmlinux 0xf30dbef8 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xf3396422 alloc_pages EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf347aa94 xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0xf348deda scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange -EXPORT_SYMBOL vmlinux 0xf3655e48 update_devfreq -EXPORT_SYMBOL vmlinux 0xf3682b37 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xf367ddce __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf38ac122 bio_init +EXPORT_SYMBOL vmlinux 0xf37c3244 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xf3868400 ip_frag_next EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0xf3ac7d03 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xf3b1725c input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0xf3c2fdcb skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xf3cfa76a __nla_put +EXPORT_SYMBOL vmlinux 0xf3de5e05 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf3fcc95d scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0xf40fc6e3 __netif_schedule +EXPORT_SYMBOL vmlinux 0xf409733c dev_change_flags +EXPORT_SYMBOL vmlinux 0xf40edd5b clkdev_add +EXPORT_SYMBOL vmlinux 0xf42b0708 cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf4559239 mark_page_accessed -EXPORT_SYMBOL vmlinux 0xf46c733a mii_nway_restart -EXPORT_SYMBOL vmlinux 0xf472d16f mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid +EXPORT_SYMBOL vmlinux 0xf46eb8df regset_get_alloc EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf4757f5c neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xf486fefa sock_setsockopt -EXPORT_SYMBOL vmlinux 0xf496101a ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0xf4a4b3a8 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0xf4a59f10 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xf4a92998 tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0xf4aa468d tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xf486b4b3 misc_deregister +EXPORT_SYMBOL vmlinux 0xf495d0a9 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xf4a8797d of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xf4a944ae is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xf4acecc7 __of_parse_phandle_with_args EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4c5e9d6 rt_dst_alloc EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf5005b12 block_truncate_page -EXPORT_SYMBOL vmlinux 0xf503dd60 devm_ioremap -EXPORT_SYMBOL vmlinux 0xf50bdf56 module_put -EXPORT_SYMBOL vmlinux 0xf51d9153 tcp_mmap -EXPORT_SYMBOL vmlinux 0xf52611d2 dev_mc_init -EXPORT_SYMBOL vmlinux 0xf538c58a tty_port_tty_get EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf53d9ab6 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0xf557a5d5 dump_skip_to -EXPORT_SYMBOL vmlinux 0xf56be2e1 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0xf587e27c unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0xf58e935e page_pool_destroy +EXPORT_SYMBOL vmlinux 0xf53ffc3c ip_setsockopt +EXPORT_SYMBOL vmlinux 0xf54c72e2 dentry_open +EXPORT_SYMBOL vmlinux 0xf56ebebe pci_disable_device +EXPORT_SYMBOL vmlinux 0xf573c39a d_delete +EXPORT_SYMBOL vmlinux 0xf58d3a3b of_translate_address +EXPORT_SYMBOL vmlinux 0xf590c1d3 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xf59738d7 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xf59be46a mmc_retune_unpause EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5c8463b dev_get_by_index +EXPORT_SYMBOL vmlinux 0xf5c97fd0 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xf5dc2bcd phy_driver_register EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf6005d0b tcp_poll -EXPORT_SYMBOL vmlinux 0xf60cf756 inode_update_time -EXPORT_SYMBOL vmlinux 0xf6166143 skb_trim +EXPORT_SYMBOL vmlinux 0xf5ff3734 consume_skb +EXPORT_SYMBOL vmlinux 0xf604f50e generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf608d5a5 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xf614112e sock_init_data_uid +EXPORT_SYMBOL vmlinux 0xf622de19 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx -EXPORT_SYMBOL vmlinux 0xf62f8b1e tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0xf6432cb6 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xf64234a0 rpmh_write +EXPORT_SYMBOL vmlinux 0xf6430aef tcp_seq_next EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf6484a14 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0xf65e8978 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xf655fca2 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xf658a719 dev_set_mtu EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf67177fe add_to_pipe -EXPORT_SYMBOL vmlinux 0xf67d7b3d proc_create +EXPORT_SYMBOL vmlinux 0xf67180f7 path_is_under +EXPORT_SYMBOL vmlinux 0xf67251d3 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xf675ccab __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0xf6775031 free_task +EXPORT_SYMBOL vmlinux 0xf67a3980 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf67df49d __generic_file_write_iter EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf6a54dc8 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0xf6aebb1b pcim_enable_device -EXPORT_SYMBOL vmlinux 0xf6b3727f jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0xf6b64c0a __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xf6cee001 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xf695f73b _dev_printk +EXPORT_SYMBOL vmlinux 0xf6a805e3 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xf6acf226 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xf6ae20a8 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xf6b208f6 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xf6b705af lease_modify +EXPORT_SYMBOL vmlinux 0xf6c483a9 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xf6e9c5c6 dev_addr_del EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6f69968 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xf6ede929 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xf6efdade devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf7021fa1 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xf702b01d tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xf71db194 devm_clk_put -EXPORT_SYMBOL vmlinux 0xf7242562 vfs_get_link -EXPORT_SYMBOL vmlinux 0xf7284f4f tcp_mtup_init -EXPORT_SYMBOL vmlinux 0xf72f8f93 inet6_getname -EXPORT_SYMBOL vmlinux 0xf730019c qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0xf71ede6c udp_sendmsg EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf73eef3f skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0xf74f59b5 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0xf751ae7b elv_rb_del +EXPORT_SYMBOL vmlinux 0xf73b0dcb tty_unlock +EXPORT_SYMBOL vmlinux 0xf7409421 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xf7499b05 __free_pages +EXPORT_SYMBOL vmlinux 0xf76034e8 md_write_inc EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported -EXPORT_SYMBOL vmlinux 0xf76d7e06 netlink_ack EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf78f216b nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0xf7a1bc21 mii_check_link -EXPORT_SYMBOL vmlinux 0xf7a49c71 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xf7abd3f6 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0xf7c78276 xp_can_alloc -EXPORT_SYMBOL vmlinux 0xf7cec03b tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xf77dd1de kernel_tmpfile_open +EXPORT_SYMBOL vmlinux 0xf7a255e8 _dev_info +EXPORT_SYMBOL vmlinux 0xf7afa391 freeze_super +EXPORT_SYMBOL vmlinux 0xf7c68171 keyring_clear EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d491c9 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xf7d99614 of_graph_get_remote_node EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7db2dfa i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf7f35823 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0xf7fe11b8 vme_lm_request -EXPORT_SYMBOL vmlinux 0xf801d525 tcp_init_sock -EXPORT_SYMBOL vmlinux 0xf8058777 mdiobus_unregister -EXPORT_SYMBOL vmlinux 0xf8073dc6 md_flush_request -EXPORT_SYMBOL vmlinux 0xf809278c pagecache_get_page +EXPORT_SYMBOL vmlinux 0xf806974b rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xf80f7815 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xf811bb9b mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81c5c9f fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xf825dccb blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf833382d begin_new_exec -EXPORT_SYMBOL vmlinux 0xf8416465 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xf844ed03 follow_pfn +EXPORT_SYMBOL vmlinux 0xf8453646 ilookup5_nowait EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf84d1693 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0xf860603c _dev_emerg -EXPORT_SYMBOL vmlinux 0xf86ccac6 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0xf86e9373 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0xf8721793 ns_capable -EXPORT_SYMBOL vmlinux 0xf888d617 mipi_dsi_dcs_set_display_on -EXPORT_SYMBOL vmlinux 0xf8b967a2 of_clk_get_by_name -EXPORT_SYMBOL vmlinux 0xf8c7fb25 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xf850bfa6 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xf85be25c __ip_select_ident +EXPORT_SYMBOL vmlinux 0xf862b8b1 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf8726607 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xf87f8cc6 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xf8830284 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xf88689d6 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xf88905cb give_up_console +EXPORT_SYMBOL vmlinux 0xf88ecec4 kvmemdup +EXPORT_SYMBOL vmlinux 0xf88fc615 from_kgid +EXPORT_SYMBOL vmlinux 0xf8a59645 noop_llseek EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d0ad0e dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8da92c8 pci_enable_msi -EXPORT_SYMBOL vmlinux 0xf8e43bf8 __folio_lock +EXPORT_SYMBOL vmlinux 0xf8ea51aa xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xf8f29ea2 unregister_nexthop_notifier EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var -EXPORT_SYMBOL vmlinux 0xf8fb9816 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xf8fd508e __traceiter_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xf901f654 dev_change_flags -EXPORT_SYMBOL vmlinux 0xf90e3667 jbd2_fc_end_commit_fallback -EXPORT_SYMBOL vmlinux 0xf913166f netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf903532b inet6_protos +EXPORT_SYMBOL vmlinux 0xf9133e2a pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xf91389fd fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf91d432a user_path_at_empty -EXPORT_SYMBOL vmlinux 0xf925d72e bio_split_to_limits -EXPORT_SYMBOL vmlinux 0xf92d1676 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xf9318859 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0xf935550f rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xf939db02 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xf93a1db9 seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt -EXPORT_SYMBOL vmlinux 0xf94551bc flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0xf94a621b generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xf94b2441 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xf94c326c fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xf94c8ac8 netdev_info +EXPORT_SYMBOL vmlinux 0xf94536c2 proc_dointvec +EXPORT_SYMBOL vmlinux 0xf955c8fa set_cached_acl EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf95d9b01 phy_device_free -EXPORT_SYMBOL vmlinux 0xf964c24f jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf983adfe __mdiobus_read +EXPORT_SYMBOL vmlinux 0xf973de8b fb_class +EXPORT_SYMBOL vmlinux 0xf987bd67 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xf98cfe04 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf997055e param_get_int +EXPORT_SYMBOL vmlinux 0xf999696b page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xf999819a param_get_uint +EXPORT_SYMBOL vmlinux 0xf9a32b80 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ab4962 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xf9beec14 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat -EXPORT_SYMBOL vmlinux 0xf9c9bc2b unregister_framebuffer EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0xf9cb7b6a ps2_drain -EXPORT_SYMBOL vmlinux 0xf9f31d4e d_alloc_anon -EXPORT_SYMBOL vmlinux 0xf9f8b5a0 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xf9db4f91 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xf9ea447a simple_empty +EXPORT_SYMBOL vmlinux 0xf9eb5203 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa2297b5 __kfree_skb +EXPORT_SYMBOL vmlinux 0xfa293c9d tegra_ivc_init EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa4b92f6 phy_resume EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa541859 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xfa540a05 flush_signals EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa650c32 dentry_create -EXPORT_SYMBOL vmlinux 0xfa7da4ab iter_file_splice_write -EXPORT_SYMBOL vmlinux 0xfa829124 genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0xfa984789 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0xfaa24860 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xfaa52c86 brioctl_set +EXPORT_SYMBOL vmlinux 0xfa6b4066 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xfa72fa4f devfreq_update_status +EXPORT_SYMBOL vmlinux 0xfa96a4e8 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xfa96d02b get_task_cred EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfab757f8 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xfaae7b53 __destroy_inode +EXPORT_SYMBOL vmlinux 0xfab09f72 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfadb1a82 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0xfae4532b t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0xfae4af41 sock_set_reuseport -EXPORT_SYMBOL vmlinux 0xfaed3434 kset_unregister -EXPORT_SYMBOL vmlinux 0xfaf17e78 pci_request_region -EXPORT_SYMBOL vmlinux 0xfafe8499 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xfaf70a0b dput +EXPORT_SYMBOL vmlinux 0xfaf76c20 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xfb069ea8 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xfb2b928f pci_pme_capable +EXPORT_SYMBOL vmlinux 0xfb2e455f devm_memunmap +EXPORT_SYMBOL vmlinux 0xfb33b224 unpin_user_pages EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb410e5f scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0xfb44e7e9 mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xfb4e7952 pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0xfb5a4de0 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xfb3b170b dev_uc_sync +EXPORT_SYMBOL vmlinux 0xfb4707f9 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xfb60b788 set_create_files_as EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb794342 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xfb817e8d qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0xfb8a57b3 mmc_add_host +EXPORT_SYMBOL vmlinux 0xfb714f79 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xfb76823b vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xfba3146b pid_task EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfba9dd7c input_grab_device EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbab60c6 of_device_unregister -EXPORT_SYMBOL vmlinux 0xfbab76bc finish_swait EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout -EXPORT_SYMBOL vmlinux 0xfbd1886e posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0xfbdd8656 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xfbd3307f ns_capable +EXPORT_SYMBOL vmlinux 0xfbd8284d security_sk_clone EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next +EXPORT_SYMBOL vmlinux 0xfbe3f3fd xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr -EXPORT_SYMBOL vmlinux 0xfbe52f06 from_kuid_munged EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfc1010cc pci_free_irq -EXPORT_SYMBOL vmlinux 0xfc29712a put_fs_context +EXPORT_SYMBOL vmlinux 0xfbf9af86 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xfc07ac5c i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xfc0dbe88 simple_rename +EXPORT_SYMBOL vmlinux 0xfc108ad0 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xfc1ed9a1 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc3506eb inet_listen EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc4c533f fs_param_is_blob EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc691f80 aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xfc740330 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xfc5f5e91 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xfc6ee39e jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xfc8758de scsi_host_alloc EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc976d5f gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xfc88fd75 iommu_get_msi_cookie EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfca09e2b tcf_idr_search -EXPORT_SYMBOL vmlinux 0xfcacd6ac rtnl_notify -EXPORT_SYMBOL vmlinux 0xfcae17f6 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xfcb6f2cd vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xfcb89a0e inet6_bind EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check -EXPORT_SYMBOL vmlinux 0xfcd577e8 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xfcd90540 pskb_expand_head -EXPORT_SYMBOL vmlinux 0xfce6afe5 iw_handler_set_spy EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf3570d iget_failed -EXPORT_SYMBOL vmlinux 0xfcf82ab1 skb_eth_push -EXPORT_SYMBOL vmlinux 0xfd086841 rtnl_unicast -EXPORT_SYMBOL vmlinux 0xfd22da53 irq_set_chip -EXPORT_SYMBOL vmlinux 0xfd36c4d3 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0xfd379824 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0xfd3c0e7b sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xfcf80e75 igrab +EXPORT_SYMBOL vmlinux 0xfd019d0d mdio_device_register +EXPORT_SYMBOL vmlinux 0xfd06a0e2 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xfd14ebdf nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xfd3fecc2 tcp_sync_mss EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xfd6bddc3 migrate_folio -EXPORT_SYMBOL vmlinux 0xfd71bf02 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xfd7d6c4a nf_hook_slow -EXPORT_SYMBOL vmlinux 0xfd8c1b3e sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0xfd9a5fd9 tcp_read_skb -EXPORT_SYMBOL vmlinux 0xfdbc9643 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xfd6bb47e __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xfd83ffcc __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xfd97a31e mmc_put_card +EXPORT_SYMBOL vmlinux 0xfd9f874d phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xfda6b8ce put_cmsg +EXPORT_SYMBOL vmlinux 0xfda74c25 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0xfdba919d __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xfdbc2018 folio_mapping +EXPORT_SYMBOL vmlinux 0xfdc8fdb1 blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdccf258 tegra_dfll_runtime_suspend -EXPORT_SYMBOL vmlinux 0xfdd24b43 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xfdee79cf __dev_queue_xmit -EXPORT_SYMBOL vmlinux 0xfdf0183e tcp_check_req -EXPORT_SYMBOL vmlinux 0xfdf3e40f netif_device_attach +EXPORT_SYMBOL vmlinux 0xfde1d377 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xfde59ef7 set_user_nice +EXPORT_SYMBOL vmlinux 0xfdeebb89 unpin_user_page +EXPORT_SYMBOL vmlinux 0xfdf0d0f2 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xfdf5de01 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xfe01ccd3 xsk_set_rx_need_wakeup EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xfe0d0d20 vfs_symlink +EXPORT_SYMBOL vmlinux 0xfe0f4f8e config_group_init EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update -EXPORT_SYMBOL vmlinux 0xfe29352a mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0xfe4640aa pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xfe1fc694 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xfe215b97 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0xfe2d5b19 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xfe3cd65d flow_indr_block_cb_alloc EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe5414ef input_grab_device +EXPORT_SYMBOL vmlinux 0xfe551af7 tcp_req_err EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe665b52 scsi_scan_host EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0xfe9aeb1b fs_param_is_path +EXPORT_SYMBOL vmlinux 0xfe98c109 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfeae90a0 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0xfeb3ebce kobject_add -EXPORT_SYMBOL vmlinux 0xfeb6d42d md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xfeb83463 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xfebe0ad7 generic_update_time +EXPORT_SYMBOL vmlinux 0xfed02156 setattr_prepare EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfedd0d42 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xfeeb8439 tegra_ivc_write_get_next_frame EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef8e1ca md_bitmap_unplug EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff0cb5a1 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xff070b2a sock_no_getname +EXPORT_SYMBOL vmlinux 0xff0bd081 zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff281d44 locks_free_lock EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff31911a bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xff5bc17e netdev_update_features -EXPORT_SYMBOL vmlinux 0xff5e8ffd dev_get_mac_address -EXPORT_SYMBOL vmlinux 0xff64e3d8 fib6_info_hw_flags_set -EXPORT_SYMBOL vmlinux 0xff6668bd drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xff41a709 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xff47f137 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xff64b028 tcp_splice_read EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap -EXPORT_SYMBOL vmlinux 0xff6d70f9 md_bitmap_free -EXPORT_SYMBOL vmlinux 0xff7ba644 bdi_register +EXPORT_SYMBOL vmlinux 0xff6c61ed rtnl_notify EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff7eb677 rt6_lookup +EXPORT_SYMBOL vmlinux 0xff81afd0 write_inode_now EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xffa93d1e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xff8eba6d scsi_register_interface +EXPORT_SYMBOL vmlinux 0xff98983d seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc08f8d skb_dequeue EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffdb9c6d f_setown +EXPORT_SYMBOL vmlinux 0xffe23d07 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xffe313d8 setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL_GPL crypto/af_alg 0x0d174035 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x20b9f6c3 af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x2299d66a af_alg_poll -EXPORT_SYMBOL_GPL crypto/af_alg 0x2d4f5c68 af_alg_unregister_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x30b3d33a af_alg_make_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x4013c385 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x444465ef af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x5fa5a37c af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x6494b88f af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x784d1a5b af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0x9433d271 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x9ec6770e af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xab8fc0f8 af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0xaef556d5 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/af_alg 0xc1e3ae2d af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0xcf192d5a af_alg_sendpage -EXPORT_SYMBOL_GPL crypto/af_alg 0xe55ed89a af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xefa29040 af_alg_register_type +EXPORT_SYMBOL vmlinux 0xfffbd98d blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xfffd1b13 of_range_to_resource +EXPORT_SYMBOL_GPL crypto/af_alg 0x01891399 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1cc1867f af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x2327ac91 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x299de9c6 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x30ff1d60 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x38ec4f6c af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x4e98abca af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x634264a9 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6875f9ba af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x6a3e3dbb af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x7cd35a7a af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x882683f9 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xb7c3b2f6 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xbd9362da af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xebe68b9e af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/aria_generic 0x2fd78c2b aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt -EXPORT_SYMBOL_GPL crypto/aria_generic 0x95ab49bd aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xa45bdd3b async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9ed07ca4 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xff328954 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x21a04ba5 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x3017156a async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1fe58b3a async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6649c148 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe3f05bb3 __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfe4e8fc0 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x072b6483 async_xor_val_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x464727ec async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9928298e async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcdb5777a async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x0e6425fe async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x251810a5 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x72f44f72 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x4eecb3e7 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x988ace09 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x192f24da __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7c6e9dc1 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbde1b4c0 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xdb20ec6e async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x10f66c6f async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1a912919 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x318d60bf async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbfc934f6 async_xor_val_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x8e0dff3e blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xbfb81f45 blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x9a57b605 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xf4bbf1e2 cast5_setkey -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x1c83330b cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xffb6a463 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x31aef240 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x4f98cfd2 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x6464f50f cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x6c03164c cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x6f24236b cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x79c12fb7 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x917b7208 cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x92b92aee cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xae7c5270 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0xc2e12211 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xf3dd5c24 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xf4eaa2c1 cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0xf9950603 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1ace7725 crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x23537418 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x37e09e8e crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x39071e99 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x44b20558 crypto_engine_alloc_init_and_set -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x44efb673 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4c2cfce4 crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x56d26eba crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x57936065 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x68c25832 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7de92537 crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x822718a1 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x95ed60b8 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdb16dc2e crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe56aa980 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/cryptd 0x0e00785e cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x20f43d19 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x3d7af5f1 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x47f7d9f1 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x55051563 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6b728a4d cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x875b8b3a cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x935c7e3b cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xaba1222d cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xcc8439f5 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xce30bbbd cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe7879c63 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xf50bca00 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x022ea811 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1b032246 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2c5558fe crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x38fe6c34 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x3f4577f7 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x497f8ff1 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4bb895b0 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5e254115 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6b60f30d crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x712eb676 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xae32aa06 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb2c3bd4f crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc4d3c21e crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd2df3370 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xda5e73c6 crypto_engine_alloc_init_and_set EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key EXPORT_SYMBOL_GPL crypto/polyval-generic 0x1936413e polyval_mul_non4k EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x320732ae serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/serpent_generic 0xe59be781 serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm2_generic 0x41f56e76 sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL crypto/twofish_common 0x45c5c90a twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x42aaded0 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x346dcf4e acpi_nfit_init EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x799cbd34 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xaee1c29c __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xb0c0cd0e acpi_nfit_ctl -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xb7753394 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4dc897d3 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x70192c58 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x92d970de __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x9b13a6e2 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc622cecf acpi_nfit_ctl EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x82331b9f __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xf36b7867 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x2b3e4cb7 pata_parport_unregister_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0xd175b0e7 pata_parport_register_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xbfe8c6d8 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x1e10ef45 sis_info133_for_sata EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc @@ -12288,195 +12347,197 @@ 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/auxdisplay/line-display 0x027ec147 linedisp_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x89b19c44 linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x4909b2b5 __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x940d1eeb regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xeb02a1a5 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x84884a50 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xbc614b8c __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xdf18a1d0 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xa7315511 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xbb301339 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xea248026 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xf6af9b8b __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x571fa587 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x87d7085d __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x1f507d43 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xb051da08 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5d736784 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x614e3ed3 __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcd37226e __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf38aa44a __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x6738c87d __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe7a10f55 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x004a72d5 bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0816eb1c bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0da8e234 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17ebe275 bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1cc0a231 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2307789c bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x381aaac9 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3adccf63 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51a62290 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63fd31e8 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73e861e8 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x76f8e6f3 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e0240b8 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91862f43 bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x93181eb8 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9c393748 bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa1d90898 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac6a2d62 bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad9865ec __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb84f78da bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf5655ec bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf8aa3d8 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca56d87c bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd12c5fec bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0d3268eb btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2fef2a72 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x472eee4d btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5c1f1a3b btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x851628be btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc395b546 btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd5280619 btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xde0432dd btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x01ce4532 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0acca854 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x183e521e btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x47186462 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x59648537 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6cd93d70 btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ee9df62 btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x979c88a2 btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d578dc0 btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa05ec980 btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc285ff2e btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc2ddb339 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc38ec4e8 btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc3d12e45 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcfc60b9f btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdc483fb8 btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xde6a0c08 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x464381d8 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x638b3488 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x645bd33b btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79aea111 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7e9fa6fd btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x87df2ea2 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb66fdd0e btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xba923715 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3e8e6d3 btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcef5f836 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdea6c409 btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x46349bf3 btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x5827978c btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xd5a40c6e btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x05655cc2 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x44b28cd0 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbef7f4b7 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc7c59a2e qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xcd7d7551 qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0f383555 btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1de6a9cd btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6da9fe7d btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x88dbc646 btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x94ced542 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x045bd84e linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xc33a1569 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x188cd04d __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7440ebc6 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xeec0b71e regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xaec6e9e2 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x1dbd055e __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf39f6664 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x158b891f __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x3a31b2a2 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x18d0e9fd __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x6a0d0ea0 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x9ea08122 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xb483cd07 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x72ae3a7b __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xccbbc376 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5bc1967d __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x94840701 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xbb8603de __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xdbbbb2c6 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x829f4796 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xc09c1134 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0dbb0de8 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x107aae36 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17e93752 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c3ddfd1 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3dcb251e bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x41a1ab8f bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c313fc9 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5672e6a5 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x632843ce bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63af3a5c __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x65f9f9ad bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6872f988 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68ad632a bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x707cd28b bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x789500e4 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x816a3301 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x871c67f1 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9edf3fc8 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xab3a82ab bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe0f7055 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc6dd01df bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcf2bae75 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdbcb1164 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfb83ead5 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0b1a37ff btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x20e5b617 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x39a5b92b btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3bef15de btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x581bc6da btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x60dd612e btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8df9a911 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa7e2eaf9 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x018f1337 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x05790491 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x07f11f5b btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x11e31048 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18dfaeb4 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1c219d4b btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x34e66161 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x35e57b1a btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3dcb85fa btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x44c2e085 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x88e8ea4c btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x919d96ea btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa33e85e5 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc7936c34 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcd0c7180 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd9f93bf9 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf0b81611 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x12a21ffb btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x30c94c1d btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3ad5f6cc btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3bc2fe93 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54edc297 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x569cde82 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x744b2807 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8bc4d3e5 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8fade1c7 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdaf1a655 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf04a0b98 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x1abc8569 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x1be43261 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x8b04e25c btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1181be13 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x535066dc qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb1759fb1 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc32568b7 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe51ea2c9 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1224355f btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x70129c96 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa29e671a btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa5f5dc07 btrtl_shutdown_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb48786b8 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x18496fab hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1e0b648b h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x29a947f9 hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x67482325 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x50b102b0 mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x87a6a83d mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x9340c61d mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xad9f734e mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb96fad6f mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xf080f799 mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xf2a7ba92 __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xf5fd878d mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0042d133 mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0d1e9f21 mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x14d85131 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x234788a3 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x26a7c9a9 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2d9aff89 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x32ed9305 mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x41ea7165 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x47beda16 mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4e369283 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4eaa022f mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4fb649e9 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x53c65d97 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b40534a mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6248a227 mhi_poll -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x63bea84f mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6528977a mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x69de3e28 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7440a84f mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x77c74848 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7b5c93b9 mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8a8d0024 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x92b4b1ba mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x94a8f7ae mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc33dbf28 mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc42ec36e mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc78a273a mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcb803ee7 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd957574a mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xde2da4c6 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfba9ccaa mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0014efd2 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0ce33391 moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x51c0340c __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa08f8152 moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x3b862507 sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xac9b6ebd __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x0601400d meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x0f4e5d3e meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x62ad335c meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x73341c8a meson_sclk_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x01210a59 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc5bc8973 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe4a5c996 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x809e37f1 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xc88bc495 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe3298202 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe7df761e hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0b8b08a6 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3bed7da4 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x44880eca mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x55492d6b mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb1458ae1 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb672be0f mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xcffe56bc mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xff92b141 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0c278f0a mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x12d3b252 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x15cb46e8 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2521d31a mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2c0c1a61 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x38774140 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3994654a mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4cb12dfb __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x560d80cc mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5bc8627f mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7bbaa2a5 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x875a2d47 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x87f4ac1c mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x88dad858 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8a79c2ba mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x96b331ad mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x98131873 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa0275d02 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa605e432 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa8e898de mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb2617cba mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb5ae87e9 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb5efadbc mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb97dc25c mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc2b5a23a mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc6160c1f mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd98b9d90 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdfba2805 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe5c8142f mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xff0c76ed mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x8fb27b8e moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa387173b moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa3e62995 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xb3c1edb1 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x3ac22b22 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x6a315ab3 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x571e2cd7 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xca136203 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xfd7db239 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x4b09e4b7 meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x00d96cdf clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e7eb9a clk_alpha_pll_stromer_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0509a95c clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x071d19d6 qcom_cc_register_rcg_dfs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07e2aa8b qcom_cc_register_rcg_dfs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1b28da5e clk_trion_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ea782c8 clk_alpha_pll_huayra_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f83275f clk_regmap_mux_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f88365f clk_alpha_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1f9ddb06 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x233e5373 clk_rcg_bypass_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x28ec912b clk_fabia_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x2d293905 clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x35261f7e clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x37dafc55 clk_rivian_evo_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x407cd4e2 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4495de9c qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x46eb964b clk_alpha_pll_regs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4caca0f1 clk_enable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4f5a085b gdsc_gx_do_nothing_enable -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4fd4c46c clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5524687f clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57c17411 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5f18e967 clk_stromer_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6610661f clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68c254e7 clk_is_enabled_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6b8e2aa0 clk_pll_configure_sr EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6d308251 clk_alpha_pll_fixed_lucid_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x70156ec0 clk_alpha_pll_postdiv_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x75a8ab0e qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops @@ -12484,158 +12545,138 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x82afa55e clk_regmap_phy_mux_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x88c0add9 clk_rcg_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e4c395e clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9123fa67 clk_zonda_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x93bc2a64 clk_ops_hfpll EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c464a3 clk_rcg2_floor_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x953b97b7 clk_alpha_pll_postdiv_lucid_evo_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x980dc973 devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9821a599 clk_rcg_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c1fb4be clk_rivian_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9a0f02ae clk_disable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c401604 clk_rcg_esc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa0755dc3 clk_alpha_pll_fixed_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa72d720f clk_agera_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa94f252e clk_lucid_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa89bbd1b qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa95ed447 clk_rcg2_shared_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa6832fd gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaea28295 clk_rcg_bypass2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf105ec4 clk_branch2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb3d93f1b clk_branch_simple_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8d0697b clk_lucid_evo_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbae69f6a qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbb110bcd qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbb2b9610 clk_agera_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0126fe0 clk_pll_sr2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0d2ecb0 clk_regmap_div_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc7b797bf qcom_cc_map -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc84cd5f2 qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc9cb9fbf clk_alpha_pll_zonda_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb2d25f8 clk_alpha_pll_fixed_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcc4f3fc9 qcom_cc_probe -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcc83b4b8 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ec30a3 clk_dp_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd98fe91b clk_alpha_pll_fixed_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf871d64 clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe5ddcf30 qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe8c0478b clk_byte_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xec25535c qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeec69605 clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xef82dd8a qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf08e02a3 devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf2522383 clk_alpha_pll_rivian_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf3bf69c3 clk_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf439f21a clk_alpha_pll_agera_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf4844865 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfafc1469 clk_branch2_aon_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfb4033ec qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfbd6578d clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x151b01b9 sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2aa1738a sprd_div_helper_round_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3f695d49 sprd_mux_helper_get_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x43d990d9 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x56de2c5a sprd_pll_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x57edf3c1 sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5815f402 sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6ed16b1d sprd_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x86927465 sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x87ea6216 sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x90208d58 sprd_div_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x98a4bcd3 sprd_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xad7f9dcd sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xda443c01 sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0b4a7a81 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x22822345 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x28298249 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x33d64503 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3fd74e31 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x59dab757 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x8f5026f7 sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa7b9afa4 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xaf3d9e2f sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb7525bcf sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc5c892e1 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xdaed4c08 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfc0e5d67 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfe4f631c sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x060ab691 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0829a37d comedi_alloc_spriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0f392370 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1b21073a comedi_bytes_per_scan EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x29811909 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e6ee742 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x287771bb comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x29164539 comedi_buf_read_n_available EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x32fc93cb comedi_nscans_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3341836d comedi_bytes_per_scan_cmd -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x34b0957b comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x392addfd comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x416e6ed6 comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4214a84f comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x33778fe9 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x394624ba comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3f0cad86 comedi_set_spriv_auto_free EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x439e1eb8 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44a93d5f comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x460babe3 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x46adbce1 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x47b728b9 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48b3867a comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4d8eb0d5 comedi_auto_unconfig EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54f0328d comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x592a28d5 comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a673134 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5d31711b comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5ffafc3f comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6484e29c comedi_buf_read_n_available -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x663256bf comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x68ed285c comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7bbce99f comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x533739a9 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x59b3d446 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5ae877bf comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x67b32955 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6e2bdce6 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x74edef3f comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x76e94ae8 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x77aaf49b comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7bf154d7 comedi_event EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8a5597f1 comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x91eb2207 comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x930e771a __comedi_request_region -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x94290983 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9824c923 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa783e0f6 comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1337ce6 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x87c087dd comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9452d088 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9a67276d comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e253f65 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xabb7534a comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1ad1daf comedi_alloc_devpriv EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9ad18f3 comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9ce9076 comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc24347ca comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc69512f8 comedi_nsamples_left -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd92b7c76 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc35c39e0 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd774bfc5 comedi_check_chanlist EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe87a3533 comedi_buf_write_samples -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe9cd692a comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfa754a2a comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfeb21688 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x594a1fd1 comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x65dc5d4d comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x739cffde comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x812dec35 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x940085d0 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xaf6e1597 comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd2b816d6 comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe0580ff1 comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x0e2014d4 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1d0c5a65 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2f3ead88 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9a594c01 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd98baedf comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xeca4adc8 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe0544fdb comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe45e91e9 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe74a3d52 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf3ebf77f comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfd722807 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0d02bcdf comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x74a5720e comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa8682cd3 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb11731f4 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xb28ec751 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe0d622ea comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xeb08d4e9 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf925d479 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x667abe76 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb1501724 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xeb47362f comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xee8bf184 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xf20ba3b2 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xff99a1f8 comedi_to_usb_interface EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xe7e54618 addi_watchdog_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x95155f1d amplc_dio200_set_enhance -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xc4d7e0de amplc_dio200_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xc53b04e6 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1c3e1247 comedi_8254_subdevice_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3ed75d40 comedi_8254_cascade_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x42551e33 comedi_8254_update_divisors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x708c834c comedi_8254_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x71985788 comedi_8254_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x76ee1a2c comedi_8254_pacer_enable -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7b4d88cf comedi_8254_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7d381e72 comedi_8254_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8d61e18c comedi_8254_status -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa3f48449 comedi_8254_load -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xadaca2a7 comedi_8254_ns_to_timer -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc1ff20b8 comedi_8254_set_busy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xd58dca6f comedi_8254_set_mode -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x3524ee58 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xa56c1f86 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xda3577a0 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x1e3e7bb2 das08_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x09d586a2 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0b3c200c mite_request_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x39654352 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3af49310 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3b351b05 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x690f41ad mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x697f157a mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6e256a37 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7706d28b mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8c575eab mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x911b76a5 mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9ec1a5f4 mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa756d8cd mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xad65380e mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdd77be16 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe5684642 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x17a7fb92 labpc_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x6a61d6a8 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xf89c22d1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x62e2de4b amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x65b7dfc0 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xca50eb7c subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xff5df142 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x00c54e8d mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x07d2653a mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0c02ac9e mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2e06a646 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x332ab022 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3f98ac4e mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x44eb6d6b mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4965593c mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5da2c7ad mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x61e3503b mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7dc2ced7 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x933661b3 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbebf1a1c mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc0054ece mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe59e8586 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xedf119ae mite_alloc_ring EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12646,316 +12687,329 @@ EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0ba9cae8 ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0ea3e2f8 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2208a925 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2cf874e0 ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3f3995f4 ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x47761cb1 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x548dcfec ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5ed28413 ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6d4601f6 ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7307e7ae ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x89a53329 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8a8d3837 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x992c27d5 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xccc1572c ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe42d055b ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf1209921 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0856f591 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2b4a133b ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6fc9ea63 ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x77984112 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9c4f56f0 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xb4c0a903 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x214ea310 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x63b34d0f comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9e6f989f comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9fdb732d comedi_dio_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa3d430b6 comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbf0b1d51 comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdc5160fa comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x036e2ed3 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1129213e ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x126bdcd2 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1604eab5 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3cba436b ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3f683308 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7d7a3cd7 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8e1a8f6f ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb4e009e8 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbebb51cf ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcdcf574c ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe0a5ec57 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe648104f ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe74a4410 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe84a7f70 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf41a78e6 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7b8fc558 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8639485d ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x93692843 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xc5b74885 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd89e5668 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xed764b20 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x18ce564b comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8cbafb06 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9249ad51 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xacee8f70 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc31421b1 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd31bf1ff comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdfaa9a8f comedi_dio_config EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8e7df975 ccp_enqueue_cmd -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x03ba23cf hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x05287d7e hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x079d207c hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x103e4bb8 hisi_qm_get_hw_info -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x19bf11af hisi_qm_acc_diff_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x22c0815f hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x288a9242 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x321fabcd hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3dd1a8c1 hisi_qm_regs_debugfs_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x474fc051 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x479b6bb1 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x575203d9 hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x57c33a14 hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5c47f81b hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5fa1ebde hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x601ce12c hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x621388c8 hisi_qm_mb -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7d0ec57b hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x80c32b10 hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x83109336 hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x847e2674 hisi_qm_wait_mb_ready -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x88d1949c hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8dab2012 hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9315ee33 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa0d6f8e3 hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa21abace hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb86c350a hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbf7416ab hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc033088d hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcd59cc66 hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcd7dab44 hisi_qm_regs_debugfs_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcf4c7880 hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd7d123b7 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdae60314 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdfd0c8a4 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe48032ff hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeb9a6e88 hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xed0cd8bc hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xee3afc13 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf1c9a73b hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf99b2811 hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0xfd7aa8ea hisi_hpre_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x92374928 hisi_sec_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0xc2d85b1e hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x791cd9db ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x00126017 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x06b7c264 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x07e665a9 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x193d2a2e hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x23a9160c hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x24159315 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x24e85fa5 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2ef1b3c2 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x308a0f52 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x427bf3ec hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x496fc442 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4c76bbb7 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x50e5e15a hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x620e2128 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x64376d5f hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x740bdfc4 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7d1cbd5e hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x805b1e5e hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x81101e99 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9bfb8ba7 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9ea6fb3b hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa503a3ae hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa61208bb hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xab776414 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb15dd355 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb23dcd24 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb738756b hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb747adf5 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb7784d43 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbac53d74 hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc24b607f hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc4e3f0eb hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdb8dfdd2 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xea4630e8 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeceb8500 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xed2a23a1 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xed7777b7 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf0987cdb hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf843fa9d hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf94d41f1 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfc7e1338 hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x0378bad9 hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x907204d8 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x14d11e86 hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x04d55923 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0a0ffd73 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0a5abcc5 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0d92e5c5 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x242fda8c adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2b8bc640 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2ce19ade adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2f469275 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x316cdcce adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x39562af1 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x40fe3bc9 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x425146cc adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x536236c3 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5db69d15 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5e0328ea adf_dbgfs_exit +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x65843136 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6f829b5b adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x72788c8a adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x73b196c9 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7e528deb adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x803ecf3c adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x84402ca5 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x88ebe993 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8e0b7ef0 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x912e7be2 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x930a5102 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x942f99a0 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9c7b4848 adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9d6aaab7 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9e2ee69a adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9f1a387c adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9f1b08e0 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa22e6fbc adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa32db6e4 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa6531bbf adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa781091a adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xad614b9a adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb27e357e adf_dbgfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb6b6c94c adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbedfb3f2 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc3d3db2b adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc60c47de adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc6410a76 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc7c29115 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcd14a24e adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd058c860 adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd293f9b8 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd5eb9889 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd8ad9dfc adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe7505686 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe90de922 adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xeb6b614b adf_dev_restart +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xec76e46e adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf7bc5c1a adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfa3527ea adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfb448275 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfb4d95d5 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xff6ba5fb adf_init_etr_data EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x9cfcab7a otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00414223 adf_dev_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0167a7f6 adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05c36c19 adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0881b9d9 adf_reset_sbr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0b7dc44d adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0ef2acd4 adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0f9b89ce adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x16c7e8ed adf_disable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1ba35dc2 adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1c27b323 adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x212fb3c1 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x280216de adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b9c9164 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3115aa06 adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x47b73f8f adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x47f675e3 adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48203d07 adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48d61ae7 adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4a2b8718 adf_cfg_dev_remove -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4d661e25 adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x52252df1 adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x542b100a adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55b3898a adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x563b9e93 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6138ebb2 adf_devmgr_in_reset -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6719710e adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68be9adf adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x697473af adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6a3532bd adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7104c4eb adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x79a45b46 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7abc0f06 adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x806ac54d adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84e0b404 adf_enable_aer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8d5becd1 adf_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x93f85768 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98c9ef26 adf_dev_get -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9a5b1c92 adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa5a62e74 adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb16d981a adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb41b8026 adf_init_admin_pm -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb6834b22 adf_devmgr_rm_dev -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb686dcfa adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb94626c4 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb2557e8 adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbf8d68eb adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbffb3347 adf_dev_stop -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc0bd9bff adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc2df32e3 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc8267a90 adf_gen4_ring_pair_reset -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 0xd317ec1b adf_dev_start -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd65aa541 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd8fbab65 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe4552a04 adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe80b6ae9 adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe8df34e8 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xee6627d0 adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1d2b666 adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf2dab7cf adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf92bed8f adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x154087b3 dev_dax_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xa9943b00 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xb87cb74d dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x02f5fc35 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0840e8ad idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x28a449a4 dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3796717b dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x684561a1 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x690ab057 dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc2b1c3b5 dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd87b4d33 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdcd90cd6 do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3bbdf6f6 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3f4f72e8 dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5e157844 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6939c3c3 dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8b37b965 dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x92f7f4c8 dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbc9fa9c5 dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd177eb00 dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xee8bafee dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf6c7018a dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3d9a9688 fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x51c62dd2 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5b43bcaa fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6109af0b fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6d041241 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x756b554d fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x83307e30 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x864a9393 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8e0fe232 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8fefb1f7 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92f6fd25 fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xabba0c10 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xba03234f fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbe93855c fsl_edma_prep_memcpy -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc6428006 fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd1bda6ad fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfc9b21ae fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x46c5c7fc hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xd69c31d6 hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x3a934a24 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0xb422b023 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x4b86c612 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x8463f82f dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2e0e963d do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4b3c9534 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4eab8ccc dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x66ca37f1 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6c740462 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x70149064 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x93a067fd dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa1463a00 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe6222f63 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x0ab01f90 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3584e6bd dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4b5bce14 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x63fdc905 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6ef9cb9c dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x97c5ee8a dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb54896ea dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf03af5ba dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xfb0db088 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xff4ee73f dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1780e25a fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x239f4ef0 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2b0ed764 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x311f21af fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x38727427 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3a891aaf fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x580a2871 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5811c6ac fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5ab6de55 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7086fda5 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9a7b8116 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa93fb890 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd055422a fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd810f3f0 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdb2f7cc4 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe0afd5d3 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe324c8cd fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x5f21ff68 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xb233ea61 hidma_mgmt_setup EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xcdbb5512 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xdfa1179f __fw_send_request EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x2227425a ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4f6bb48f ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8085ae46 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x88d7c9b4 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9ab3efb0 ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x369e110b get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x9522a626 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x04d57047 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x0ca3a524 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x3cc196b0 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xc0ffd7a8 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xd2483932 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x08c0d92f get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0xb68ff8f4 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0c140296 stratix10_svc_request_channel_byname EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xe83e4471 stratix10_svc_request_channel_byname -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xb950a4b9 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x06e90017 dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2429788b __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2ca362c8 dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2d59e47a dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x48d61afc dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4b4f3c42 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x606abe33 dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6c9fddc0 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7ea05825 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x85a82955 dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x88ad5dda dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8e4a7b90 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x964634b0 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa19d1f94 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa21c7050 dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa31f408d dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa6b72398 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa8e28ef2 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbd005edb dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd56aa831 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd903f4b0 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe32944e0 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe909d131 dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x01246366 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x38a7b478 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x08a23cf3 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x177ee9e3 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x21f56280 dfh_find_param +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x23b7e7a4 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2dc4a000 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x37740691 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3b889cb0 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x544e91bd dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x56bb8903 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x577b2564 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x62585619 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x67b0e511 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6b33e326 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6d28460d dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9a4f814d dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9a8051f1 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa0b8099e dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa60e0e1e dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbeed3e34 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbfda017a dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc562e4f4 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc64358e2 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe0635194 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xefcff626 dfl_fpga_cdev_config_ports_pf EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0db910f3 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x14ab7b2d fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x207faf7a fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x192d22ef fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x23bd5b03 fpga_bridge_get_to_list EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4fd96068 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x55449ed1 fpga_bridge_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x61ed6ff0 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa601bf67 fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xd57b8f92 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0a34e43f fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0f9770b8 devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1040364a fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x232f9e83 fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2cbaa8dd fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3079d754 of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x84bc99e3 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x84d946fb fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8a355599 devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x991a7eac fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9d2f9b7b fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc90a735c fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf5790965 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x13061844 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1564a771 fpga_region_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2a7b0311 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8e2a8e50 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf8b2941a fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x33943491 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4af24fae fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4b328a9b fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9732cda4 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xde7d87a1 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdf4e220a of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeee236ed fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x133a2cbb fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3bf1ffbb fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3dbac71d of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x465cb528 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x50880df4 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x64fddfa1 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x84547558 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9e25c079 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc1b214bb fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcf430e27 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd5405e1e fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd96647bc fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe93d19e6 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6118a3c4 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8d1aead3 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8f1649b2 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe0ac728a fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe87438f4 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2dacb4df fsi_device_write EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x40eeaa28 fsi_driver_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4b171a16 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5533f2cd fsi_cdev_type EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5ff66961 fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x771ea519 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5dd17ff9 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x65b87888 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x687641d1 fsi_driver_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x91da017a fsi_driver_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x9452914f fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xaaccf2fb fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xcbd44153 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7e60a273 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x917c531a fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa9544170 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc7c45344 fsi_device_read EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdbe380ca fsi_device_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf74e9933 fsi_device_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x32c2949f fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x52ba29ca sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf090e4dd sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x052b7bc8 gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0f41a09f gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x36872895 gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcecf1ed6 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf6b2b619 gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x12808896 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2f1718b6 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x81ef9a92 gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x857fa940 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa873c7ce gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdc236a53 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x3ce7883a fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xcd36b034 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xee167e50 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x717206d1 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7766a49e gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x81459af4 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb2aa12fe gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xdb9cecb2 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x020008bb gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0925146b gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6ef9300e gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa1762b5b gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xbe293f46 gnss_serial_deregister EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x77bff056 __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x96db19e2 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x506df088 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xbeb26482 __max730x_probe EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x7b1efd49 gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb95c572d devm_gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xf12d99a8 gpio_regmap_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1ebe23fa analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2c170370 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xd53ca056 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1932f80f analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x2f172a0f analogix_dp_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x45531663 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5bf52d55 analogix_dp_start_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x8f9f7b03 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb705d68e analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcad14199 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf5b82342 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x40cd102a analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x61f537e3 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x744ecbe7 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7cf80eb2 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xac85a5ed analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd351903b analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x2ddb1053 ldb_init_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x33b41b35 ldb_channel_is_single_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x341f10a2 ldb_bridge_disable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x3559a2a3 ldb_bridge_mode_set_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x3790f704 ldb_bridge_atomic_check_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x42719eb1 ldb_add_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x55f60c91 ldb_find_next_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x5d276403 ldb_channel_is_split_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x747708ec ldb_bridge_attach_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x7bbca04f ldb_bridge_enable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xfe8d649f ldb_remove_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x12d57df8 samsung_dsim_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x13641d58 samsung_dsim_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x87dec66c samsung_dsim_pm_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1210b0dc dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2535c05c dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1ed3289e dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x26d629cd dw_hdmi_phy_gen2_reset -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x28e55e12 dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind @@ -12964,13 +13018,13 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7e88c59b dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9a91da81 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xbb2c09ab dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd32faf88 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd @@ -12978,685 +13032,692 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x565c7955 dw_mipi_dsi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xb92857fd dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x1a35b166 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x0894931a devm_of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x1a57de20 of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x3a203997 of_dp_aux_depopulate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x60210d47 dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xe03fb9dc __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ab1a752 drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0aca05e2 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x10aaeecc drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1c93b6ae accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x253bcd78 drm_of_get_data_lanes_count_ep -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x27945fbc drm_class_device_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x36752186 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x369f90fa drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x40257979 of_get_drm_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x507f89ec of_get_drm_panel_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e6c496f drm_of_get_data_lanes_count -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6257f618 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xd654968a dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xebcb5235 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x7f232c26 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x363d72a4 devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x73a6bc7a of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x948a8397 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xaacd3c7d dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xcec52a34 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x08c132e9 drm_of_get_dsi_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0e5c45d5 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1cd737f4 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x25f33e15 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x271572e2 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x291b42fb drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b8eb58b drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x45e6fb42 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x48c3fc1a drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5656f95a drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x61ff62c5 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66603ce5 drm_gem_dumb_map_offset EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x753839d2 drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x82b3391f drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8f080638 drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9a432846 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f1e58ea drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c13bf73 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f5fe200 drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaac179d7 drm_of_encoder_active_endpoint EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbf28a221 drm_of_lvds_get_data_mapping -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd6e56dfb drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xde88912c drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe9c2e425 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf5756362 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc0d38e54 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc1953a47 drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc321689c drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc87261fb drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcc06bc70 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd700e9d5 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe3e22166 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb39a6ff drm_class_device_register EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x017ba6ad drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x10cffa15 drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x230d639a drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x358ba9af drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5f37910b drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x88b2c17b drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8c4e45ea drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa45c8fe0 drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xbf596516 drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xbfa64609 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xe62c0fdb drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xf8659b9c drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x143513d7 drm_bridge_connector_enable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4c85067a drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x75e87581 drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x80e75634 drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbe5e23d3 drm_bridge_connector_disable_hpd -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc38d397e drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc89158e2 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xda1d891f drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xddca4621 drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe14abf3d drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x0ac55901 drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x63ae87a5 drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6a1e1047 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x88838a4b drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xaa650871 drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xcc220b27 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd0a0afa4 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd610b4b2 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1f32fdcf meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0214aa30 drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x29a0dba1 drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x2a81a701 drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3890a047 drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x3d3a6ef4 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x71592836 drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x7350a5f2 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x75ecf9bc drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x877a48d3 drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x96946f13 drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb98cef63 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xee75e57d drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x275f23f5 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x52d4d3e7 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5ab25c56 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7db13f46 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x84e38e4d drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8ebae30e drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xada56333 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb34cd10d drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2d6c83b6 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x3952699d drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x55a39372 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x9a003041 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xdb5e2967 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe39229f2 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xeba9e66d drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf1c98a27 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/dcss/imx-dcss 0xb01c8ef4 dcss_dev_pm_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x53ead49a meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x586350b6 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x5dd975a9 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6d868740 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x8371ad5a meson_venc_mipi_dsi_mode_set EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xc6037f86 meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xe6b4f135 meson_vclk_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xee998992 meson_vclk_vic_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x1604fa6a s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc9522891 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xd3da17f6 pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x052308e7 rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x1d4e5ba2 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3e3c3064 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xaf23aa2f rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x30f1da6a rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x3f5b4a11 rcar_lvds_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x4b9c3f63 rcar_lvds_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x6be617f6 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0x5adc8372 rcar_mipi_dsi_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_mipi_dsi 0xbf6a205a rcar_mipi_dsi_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7039641f rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb1c5b898 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xeff3be58 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x7302db56 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xc148fca6 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0x7094a8d4 panfrost_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x611e51c1 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x02ea27fc rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x545bfc61 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xc8e82073 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xf7ef867a rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x0b847a7b rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x5cbcce97 rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xb7289173 rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xdf2aad15 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x794e68da rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x8ae9d0f9 rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x79adad82 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc955ef27 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xcea46ba8 vop_component_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x4857cbfd ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x80c6e013 ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xb81b1fa9 ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x0c12b676 host1x_memory_context_put -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x8e8ec06f host1x_memory_context_alloc -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x944c54fd host1x_memory_context_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x07a63b7a gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x15720908 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x263e4b27 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xb3ba59a4 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x514c0eb7 host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xb317990a host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xf4ce49c1 host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01f57089 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x051de7f3 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x08fab516 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0fd398b9 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1227a53a gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13430acd gb_svc_intf_set_power_mode EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1ad6e8ca gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b2c2d8b greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x27894c83 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2b4f8333 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2cb979ec greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f952251 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3051e3f9 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4575c92f gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4bc105de gb_hd_output -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4c6b0227 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x542367e1 greybus_deregister_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x592a03d0 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x18dfc178 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x220b7551 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2df663a5 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ffc3125 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x343cea2c gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3484abb8 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4546fd35 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x47272040 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49695ded greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4d151d06 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x51578a61 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b8774a0 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x600dc8f0 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6055bea9 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x614f2ee1 gb_connection_disable_forced EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f0bc600 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d941ea6 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6fa01fda __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8037c1a4 __traceiter_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x826e3a39 gb_hd_cport_reserve EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8cb38d98 gb_debugfs_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x92b07754 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9626e346 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa1790735 gb_operation_response_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3add695 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa76078d3 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaab87305 gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaad45d9c gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xab74756d gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb7571714 gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb99def27 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9adc801 __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc6165b3f gb_connection_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd2bee103 gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd37ecaeb __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3afa2bc gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd93c235b gb_connection_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe005363a gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe04e8a2d gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe19cc206 greybus_register_driver -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1fa4862 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x91e8913f gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9caec530 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9d8b60f7 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4cfa1b2 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3da9b0d greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf2c07db __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc3b396ed gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc699a8d5 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca574fcc __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb920c37 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd33373a8 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3bf09d2 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6ca31cd gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb88e300 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdf140ed5 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1dc7b39 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1e08c7f gb_connection_destroy EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeaf5845a gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed32cdce gb_hd_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef895a74 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf0ef0d9c gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef81529f gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf0491602 gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf35d7a89 gb_connection_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfc600310 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff10e2ea gb_operation_get -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xff906964 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug -EXPORT_SYMBOL_GPL drivers/hid/hid 0x081cdddd hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a068d82 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d8c0cbd hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0f694167 hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1760b526 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x18337272 hid_match_id +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf357c63d __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfbb415ca gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfbb4920c __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd7fbf89 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfe6b17d5 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04a03ab0 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x15b25e16 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x176025c4 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17b6c875 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17daa828 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18111ad4 hid_parse_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b8ca752 hid_dump_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x20c77ef3 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3352b35e hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x34b16f65 hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ba98b61 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3bdbc573 hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x403031f6 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x46091386 hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5099a383 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x54234a79 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x581c359d hid_add_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b22d398 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ed64d0b hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0x63ad5895 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a81639f hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6cdd22f1 hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x725f69f1 hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x734c0a8c hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x758cfd7b hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a77970d hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ad18009 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffd840 hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x838431c3 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8389ab13 hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a49a28b hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ab973d6 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1aece998 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f57a0dd hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b144cdb hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f345514 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x300bb00b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3466b596 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35c7c863 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36171cec hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4369b78b hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4729a980 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c1d5597 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ed6b212 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55cb696d hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5634a398 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x58ce62ba hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e3513dd hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x614923da hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7431f62e hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75abe96c hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76b39037 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ed7ca94 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8554d893 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x863b1f56 hid_ignore EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ce6e4d6 hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x950b1914 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x99f29e77 __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2e19bcc hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa70a6688 hidinput_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9e38efe hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7d42fb9 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd29cac6 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbef64d2f hid_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc21e27ce __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5aee9e8 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd21a88d5 hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe427b347 hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7fa40b2 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb66f278 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0xee21078c hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0xefd05ee6 hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2935c9b hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0xf72e09cd hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ca8bf7e hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x944a0a8c hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96ff1b37 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaac1fffb hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaed18909 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0c91dec hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf0a3081 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc54b561a hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb9d3595 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd216e02a hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8ff4390 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd998e572 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9ea32c5 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed2ec6d7 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf19cdc41 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf318ad31 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7c7c348 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf96a8116 hid_driver_resume EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x03bd05f7 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfad25d75 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd96d22f hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x23fa0207 roccat_connect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x14bbd8a8 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2022883b roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb21146a7 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb478ed4c roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd19e275b roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xe02cd061 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2f6e9414 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6be94dc5 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x813fc442 sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x81664f1c hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9080ee50 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd850254a sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe47151df sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf037e84f sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfd986b39 sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x3f09b9e2 vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x4846d2c3 vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x29bf6303 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4dcd1033 i2c_hid_ll_driver -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x59744fff i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa5c87ed3 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc43e2cb7 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x52321928 surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xe381794a surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xf6771a4a surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/uhid 0xc1afd28c uhid_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x448bc86f usb_hid_driver -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x954f8969 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0a9d2727 hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1987f781 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1ba2ef13 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1e1621e3 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1e2bf572 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2f3d11dd hsi_unregister_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x362ce398 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ccc5a10 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46a386f0 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x47008fcd hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x158aa89d roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3cee3528 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x42365948 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7c0def49 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x99031fc3 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbd739d6a roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1594a25d sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1cef3b0e sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x27eeb7cd sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5ad60dc4 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x604d878f sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x70bfb158 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7c6f8715 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xddb609cc sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdf28f03e sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x324e8b7b vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xc617bc9b vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3704ec63 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6f29fd99 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9d2dd1b6 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xeb2dded1 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x1a0ee6df surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xafc5bdb7 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xea950539 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x32a1d96b hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x6a52e484 hid_is_usb +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x00845b14 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x04280b0e hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0d012d2c hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3d0c1d0c hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b74b35e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5153e6b4 hsi_port_unregister_clients EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x56d4e112 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x574cab2c hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6e97ed0f hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaf6596cd hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba935a88 hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc5211e9f hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6ad083e hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf33cbd62 hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x04dc19c6 vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x09e716d8 hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0bf91ec6 vmbus_set_chn_rescind_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a91fa52 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1e7c2e1f vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x29f4d98d vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x64de5336 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x85a9c040 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8956c350 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9d3fc2df hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6f05dca hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdb98d4d6 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf58f67d hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xef1a284d hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf27422c8 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf6fe3cad hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfb16da67 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfdb50b56 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0a8992ad vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x11893662 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x16bf8109 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x18a69a4a hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1dc6cda4 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2f252e1e vmbus_set_event EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3ba70a80 vmbus_send_modifychannel -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x42000544 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x35ac4718 vmbus_disconnect_ring EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4ad6425a vmbus_alloc_ring EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b4b978f vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5111682e vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5a360b72 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5ddb7b64 __vmbus_request_addr_match EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a1ecb6f vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x77a2f3df hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x800f4d33 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8aaddf27 __vmbus_driver_register -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8e3bd775 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa0f87f9e vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xabab4fa9 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xabb095c9 vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbb396901 vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb1b5c2a vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd92ac0e8 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe00efbea vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe3357b14 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xec197d9a __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xee0fe2eb __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf34ffb8f vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf6dc1ed5 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf9f93618 hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xfc631c25 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a598c8f vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x70d13b9d vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x723637c3 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x729a16d7 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x76d97cc7 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7d7571a6 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9319c439 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9b34514e __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9e14010b vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa38954ce vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xac0b2b79 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xafb54068 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb751b276 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbec3bcf5 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbfed7428 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc9441e9d vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdbec98ca hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc071e18 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe8b9a764 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf8c117af vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x8132e176 adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x10fc2ec4 nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x43a75e5c nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x6a98180c nct6775_show_alarm -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x81c972e6 nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x85a995df nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xed2ac246 nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x28e5c308 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x382d990d intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x537eff19 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5acd5a15 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x73bc9cc9 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x77528d4f intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x843f4900 intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9f2937bc intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd18fdd01 intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5249222a intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xae72b0da intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf1ecc67f intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4562cda3 stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6a4d910a stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6bb89be3 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7b2505e7 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7d4ecf71 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7ddbe61c to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x99bb5354 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xba033e48 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd6a57e42 stm_data_write -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xbf056b45 i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7d2bc55e i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc147240c i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc4fd505b i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xff42ad3a i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7a11ec85 i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb35cca6f i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe0e1fa78 i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe4220866 i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2aa64b00 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x35e9b9d5 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x40181c63 i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x446bfc18 i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x48811374 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e2188cb i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x566c1d36 i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6f64e8be i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74ec2711 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x1c7d1f78 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x730c9da3 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xa8b5099c nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xcbb33f4d nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xebf8afd1 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xf24f5650 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x01aac899 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x21ac3e61 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3048c91d intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x65f0e5eb intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x884525d4 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9b0bcfb9 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa490143c intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xda6a2197 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe7c1f089 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5494b234 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x6b57d59d intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7f76ce94 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x09eb1688 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0f65833b stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1c8312df stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5799356b stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5eff20ed stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x850b4433 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8694789c to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb37a5577 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc553cc5f stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x96581e0d i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4e0f4a7a i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x58c3f569 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x947a7ab2 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfc64bcf8 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0431caa5 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x12c089cb i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2f9f05b8 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4fba1ba2 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x00ca08af i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1bd4c4a7 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1f58d208 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x24712522 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2faae616 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3bd5f572 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x540168f7 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x543afa42 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x61e520e1 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74f3f7e6 i3c_device_free_ibi EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x83b19423 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x90ada0d1 i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x94e9bfc4 i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc242474c i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc3ecccde i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc5875111 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc9abe0e4 i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcdbb8115 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6470cba i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd6cd91c9 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdec9d62d i3c_device_enable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe088d61d i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe500edd7 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe886215b i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe910ca16 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf2f11b83 dev_to_i3cdev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf717e591 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x232b8d47 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x77ae54b7 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7f1451de i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8371d2d4 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8ada558e i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x92a1bf06 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9bafb443 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa41439a9 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaab9c0c4 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb702275c i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc6d234d7 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcd3e5e24 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd5da2d6f i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xee883d22 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf796491f i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf87d2dd1 i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x15da5bb9 dw_i3c_common_probe +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x26581e25 dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x2440901e stm32_dfsdm_get_buff_cb +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0xb413330e stm32_dfsdm_release_buff_cb +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-core 0xa81a1502 stm32_dfsdm_stop_dfsdm +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-core 0xb2f7302a stm32_dfsdm_start_dfsdm +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x11a2826e 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 0x4d4bc685 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x4d22d749 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 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa464cb50 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0999c996 iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x454f3320 iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4a3928ce iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5e18f88d iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6ef794fd iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x76e591c2 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x77da40f8 iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9f7bc0e6 iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa5c87da0 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb2e3c8a9 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdeb66d02 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf067c153 iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xe006409c devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf5b15ebf iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1f852457 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x244b1d92 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x53038019 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5496abdc iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5cd1fa50 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x63c3029a iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6948f5e9 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x93ffdd21 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa49255f6 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbaf23a72 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcfa4ed6f iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xee8d4f97 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x1dce5e59 devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x957f6af1 iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xac1d288e iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xcbc9855f devm_iio_hw_consumer_alloc -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x7e0a02e6 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xc87e6a52 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x247ca432 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2cff3d6e cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2e8eaf71 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3935fab0 cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6368a9e3 cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7162fd8f cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x74d3e08a cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8f7acfca cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xdf0bc719 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x0a8851f5 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x884db649 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x116d4bc6 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x22ab97a7 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2c9c2b4b cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3be31585 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3ca173db cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5a74ccd3 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x71357092 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x85bc48a9 cros_ec_sensors_read_cmd EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa0956a91 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcedfb77b cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe82f14be cros_ec_sensors_core_read_avail -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x894c0577 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x8f93a62e bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb8c51d37 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x2d7c29e8 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01fb62f1 __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x043c8d28 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d23036a iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1256a632 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x135086ec devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13f8992b iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x153b4677 devm_iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17f7ead0 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24a6ce7e iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9efda8cf cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd75e5577 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xde7165ec cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1d3ae9a9 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x77f84537 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xfc403f86 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x242d8634 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02b91bf0 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0af06caf iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x107ee731 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x133373ae devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x153e5642 iio_validate_own_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a16e1d9 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1be2c481 iio_channel_get_all EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28f8ddc0 iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x29a7998e iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a01c32e iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2fac6554 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x314b18c6 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3468cd8a iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x37c4028a iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3955ecc4 iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x425db5b7 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x273912ea iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2d0c3efd iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e7e0c82 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x317f4654 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32246ddd iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x35e18405 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ab717a9 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e53a591 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4803fb31 iio_show_mount_matrix EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x504d4658 iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53d1277b iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f9156f6 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6106e138 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x617b03fd iio_device_release_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x617ce0da iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6a962133 devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f90df68 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x75c14193 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7e30e8d4 iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7e5f678a iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89cefe2c iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x936b1eea iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x978a92bc iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x997a54fc iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ea0edbe __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa1b4562c iio_read_channel_offset -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5a62f57 iio_device_claim_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac0c6b6f iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb24880fe iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbaedc47e iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc0b11628 iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3fd31d0 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5b27cd5 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcdfcf0d6 fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6273a8b iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xde0c4b5d iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xded3cfc2 iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2e52c83 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7e657a1 iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8ec8995 devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9db653c devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xef7db9e1 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf088ca82 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf10263af iio_convert_raw_to_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa54ea20 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f96fa2e __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4fdd6edf iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4feb0913 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5319775b iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x567ed526 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64f4bdf5 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x658d3054 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67ea1f36 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6f1207b7 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73344cbe iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x798b790a iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79a27221 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c2c4eb1 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88aa6739 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d985cd2 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa415d65a iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa42440c3 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa9784475 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac4c852c devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf0dc3aa devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaf43bf18 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc90299c7 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca23b1eb iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc17180e devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfd2ef1d iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcfff9bd2 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd53783d4 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd556afa6 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdb5780a2 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe236e597 iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3fb2786 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7c620a8 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xead66c92 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xeae4dc7d fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xedfb3372 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3b06ded iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6b24b48 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf94941b3 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff7896f4 __devm_iio_trigger_alloc EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0d099cc7 rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x444d21f0 rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x617f4777 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8004de57 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9189e494 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaed6668a rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbd7e400e rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcad38afe rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd0d48458 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xdda75099 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0d1c0bc rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe7fd2a13 rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x33681d39 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x89fdf087 matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x39886158 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/infiniband/ulp/rtrs/rtrs-core 0x01ad418e rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4fc3d2c2 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x54decffe rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x68f0a5e0 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x720dec70 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7a405428 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7a8d0240 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8223dad1 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8778fa27 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcff21610 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd939aed8 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfa9087f2 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xfaa44a09 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x5a3e5435 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xaf2b3b4f adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xbc6e3ed7 adxl34x_pm EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13171b1c rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x198b5158 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2726b099 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2e85a7e3 rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x403ff8d4 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x41028dfd rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x54b08341 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6589626f rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa249edea rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc6d333ef rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd345eb3e rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xec49ead3 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf40fad5d __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x317b7c37 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x368db4a7 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x415709b6 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x143ff412 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xff3bb560 cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3635f49a cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x975db07c cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3558f5e5 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x67d99377 tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8344d34f tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8c54ccd5 tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0440cc45 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x09022f95 wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d61ab0f wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x10dfb655 wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2544c494 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4f845e5f wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x747e26a4 wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa1e160d1 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa99f508b wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd1e2fde0 wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdc75b6cb wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xed8e075d wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x84ea55d9 imx_icc_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xbcee0347 imx_icc_register -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0253e279 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x175cde72 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2ee49ea5 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5d6b85f5 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x62ff2bbd rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x659b0d00 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7229c01e rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8edf1e44 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa7aeae25 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb4d551bb rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbc5783f4 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe0702906 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe74abb41 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe79076ae rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x52c5be38 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6e0e4cb7 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9f689590 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x04a37f63 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3bd59ea6 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x13232267 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x80f5b7cc cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0f1e870a tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x306cc778 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x91a2350a tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xfa16e7b3 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x31008bf6 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4c9eee05 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x541faa8e wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6f950bed wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x722b16b7 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x86434beb wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8b263626 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa33f0b73 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc1a057c4 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc58d085b wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe309a842 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf817fc7e wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x130942ec icc_clk_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x48a11f06 icc_clk_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x85070f24 imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xaf962e2a imx_icc_register EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x6790d2f2 of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x91cf16a2 qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb9899c93 qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcb031ee2 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xdd31c3e1 qcom_icc_bcm_init -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe819624b qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xfb718f06 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x5b093576 of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x936a7e97 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3ba4f7f4 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x3e13ae74 qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x5d79ce20 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x6f10d3d9 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x88f344d8 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xaa10e150 qcom_icc_rpmh_probe EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x04a57507 ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x50695ff0 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6d637b20 ipack_device_init -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x72693327 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8794258a ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x911e88f0 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9d005a04 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdbb4c49c ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe3fb8348 ipack_put_device -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1eeef985 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x64077d1c led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6686d29e devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7f8c0c75 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9377f19a led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa517a0da devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xa8737061 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xce7921de led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x02d0eb7a led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5ba06096 led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7fe247a4 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc61ba48a devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xee2f94e4 devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x19b3dbd2 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2e401a4b lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x324dd5f3 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x64a16c59 lp55xx_of_populate_pdata -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x67006a4f lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x788e3e8f lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8bebc5b4 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xafc9a343 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xddec2e45 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfada1486 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x156466fe ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1cb5c691 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x26cb5669 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x41af2098 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6f815728 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x70479a5d ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7975aec0 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9bfdfc02 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xac992140 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x114cd0e9 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2e2d3108 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x590541fd led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6815e744 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x75cf9dde led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x76e02b86 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x902d7e75 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb878d7c1 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x20c73d58 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x30411274 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x932ad1be devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xa8b12dec led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf86ff136 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x016a4a59 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x03e01cb8 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1cf026ec lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x58f54c0b lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5af33272 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x82c15e17 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x87537482 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa8761f5d lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb1671e4f lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf0a223c2 lp55xx_init_device EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get 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/md/bcache/bcache 0x051b2215 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04b25810 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05058957 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x063306f1 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06ec80f6 __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0826e917 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x094ce515 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13b56439 __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17229f4b __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1a19633d __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x284a6bff __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2909bc5d __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2992a726 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a0e014e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27c8a99f __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2be3c9f5 __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3e8f9efb __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ed2ba0f __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x40bdd561 __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46bfabee __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x362eda19 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37808fd7 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37b31e4f __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a3eb678 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3feb7def __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x417a9dda __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44bb87a3 __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47b2af54 __tracepoint_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b96c8a0 __tracepoint_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5cc8cb86 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5ee2437f __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f9386a1 __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6026e276 __SCK__tp_func_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x63c196ef __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x60e00e27 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6119e203 __tracepoint_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66232cfe __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x681d3d1c __traceiter_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e7df078 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7183b8d1 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71a90620 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80840c69 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dc3e11e __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8006cac7 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81e7e4d9 __traceiter_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x85dc48ca __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81d4d2d1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8366a108 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8af891b1 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8c0ea26a __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b9fa1d8 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8bba9251 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f7308be __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c8c39b __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x984f5174 __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9bf62646 __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa14fdbcf __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d592dc5 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09a6b09 __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa40fb1e2 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa4700522 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xadfb3c6f __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb288e4be __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc268695 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1857470 __tracepoint_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc6124e84 __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd6d08135 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce0da21c __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf1be250 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8aa1746 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f63855 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde60269a __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd1455a7 __tracepoint_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe922316d __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe480374c __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea1c903e __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea3a1ab2 __tracepoint_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec3327c6 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed37c90e __tracepoint_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee55d047 __tracepoint_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef7eec02 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf27d7a2a __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf45ae0b6 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xefcfee36 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf021519f __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf131fae1 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3c9946a __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf865c1a2 __tracepoint_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfa95e3e1 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc0a0b57 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd5d057b __tracepoint_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0253b746 dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x08a87d0f dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0afdd7f5 dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x149f3c12 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfe952134 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfea30826 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfed8327b __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x16078a2f dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17078719 dm_get_cell EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x20c5667a dm_cell_unlock_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x38731eb2 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x47eff694 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x43a356e6 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x538acc04 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6762692a dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x676e8cd9 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 0x813ad693 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8219e2fc dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x893a7d8b dm_cell_error -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x93337f82 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x80dba240 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x887cb5b3 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8dfb55fb dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9bfa1647 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa0c73e7c dm_cell_release_no_holder EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6cf5ef6 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 0xb95068b5 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb72cda3c dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb7dcaa6d dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc175e5ae dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd86fe7cf dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xde04e32f dm_cell_visit_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe8f91121 dm_cell_release_no_holder -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xebb7a32c dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xddab6487 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeed2196c dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf78f5a7c dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x04e3bc6f dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62f12861 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x656100cc dm_bufio_client_reset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6cdb2d56 dm_bufio_prefetch @@ -13667,7 +13728,6 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x91f00abc dm_bufio_set_minimum_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget @@ -13678,11 +13738,9 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x090d979d dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1c852cab btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x23ddc5ab dm_cache_policy_get_version -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x306e7152 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x37ef59a5 dm_cache_policy_get_name EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x481a0b15 btracker_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4becb830 dm_cache_policy_get_hint_size @@ -13690,29 +13748,31 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65eea825 btracker_nr_writebacks_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x99714ce4 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6172f46d dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9606a8c0 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfa10d30a dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xabd95dff dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe27e5a06 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 0x0f8e6612 dm_rh_delay -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1ac33d6e dm_rh_inc_pending -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x221663b9 dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 0x5192ad78 dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x567b28c1 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x505d8517 dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5cf5b063 dm_region_hash_create EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6db6e567 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7262b686 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 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9decd33c 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 0xbdbc63f3 dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd51ed6e8 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 0xf92b8a3d dm_rh_get_region_size EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight @@ -13754,6 +13814,7 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6bfa88c8 dm_bitset_cursor_begin EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6c600395 dm_btree_del EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x6fac2256 dm_array_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x703aa099 dm_block_manager_reset 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 0x7612cd9c dm_bm_block_size EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x79bdc649 dm_sm_disk_create @@ -13777,7 +13838,6 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa99029b9 dm_bitset_cursor_end EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb940af6a dm_array_info_init EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbdde4031 dm_btree_empty -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xc34643a9 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd017c9c7 dm_array_new EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd8682982 dm_btree_insert @@ -13787,60 +13847,78 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe0e68183 dm_array_resize EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe781f874 dm_tm_dec EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xecc1aeba dm_bitset_test_bit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xed34ea2c dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xedf5036f dm_bitset_flush EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x15eafa49 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e48deb9 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x258ffff6 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2de95900 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3614b44e cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3fa891df cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x54302467 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x544006fb cec_delete_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5fa1cf11 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6a625a11 cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6b06a4ba cec_s_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8eda3df0 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x98187677 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x077f3575 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x107d54de cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e274ac9 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2e4a9e14 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x30fce976 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x41bcbe80 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x49744e49 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4bc6937e cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7b3f50d0 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9293a00d cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x99dba861 cec_s_phys_addr_from_edid EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaa3dcadb cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa7c0b54c cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa90039be cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xab5d8c56 cec_queue_pin_cec_event EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc81a250b cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd963cebe cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe68dfeb2 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe7895458 cec_fill_conn_info_from_drm -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf5eb66ca cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfc041540 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc78e62ba cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc7be205c cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc919e3c9 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd84b8ffc cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdc1e7424 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xde7f337e cec_notifier_conn_register EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0468c9e5 smscore_onresponse -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1a850d6a smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x434cf0a3 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x60f08cdb saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8ff39c27 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x91a9b9a0 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa877d4bc saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb10f3025 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc9039be5 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdcbf4869 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe150634d saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe734ade0 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x13a2e4db saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2b692685 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x71ee1b81 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb2017d45 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe757dafa saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x004dd4b3 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x01fdf1e9 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1b822ed3 sms_board_setup EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2cc66087 smscore_set_board_id EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x429861fc sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4410cfff smscore_register_hotplug EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x46a250fa smscore_register_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x50ed9566 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x58318ac7 smscore_set_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x68631f8d smscore_getbuffer -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6cc9fc79 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x67584113 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ec4e0d sms_board_lna_control EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x78e94431 smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x83085431 smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8e0bd933 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8e5456ba sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9242bdaa smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9579f0cc smscore_putbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9bc87b84 sms_board_led_feedback -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb16fbc1b sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa6f40bff smscore_get_device_mode EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbde394fa smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc6a61ee5 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcec3361b smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcfe0ba76 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xce11c65f smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd680e846 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdcd20bc6 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe600dde3 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf13f356f sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf3200c14 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/uvc 0x08c5db3e uvc_format_by_guid EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4a738cc1 tpg_g_interleaved_plane @@ -13858,408 +13936,531 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x03413e9c vb2_queue_error EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0cc5ecb4 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0d3bdb19 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0e1d6547 vb2_request_object_is_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x125d190f __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1e0bf3e0 vb2_core_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24451812 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b9d30cb vb2_core_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x493a2433 __traceiter_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b837474 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a7ba38c vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5ffb0ec4 __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x62e9e38c vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x653973b4 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x74aad166 vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x812d1602 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x814e20ae vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83959296 vb2_core_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x87f13347 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8a9632d3 vb2_request_buffer_cnt -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2079fb9 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0f0d5887 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2509a128 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x252e4bcd vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2a1371fb vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2ab5ecfa vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b239ad6 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x363ae666 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x36dcffee vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x37612f7d vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3a947be8 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c22713a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x402267f1 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46114217 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50a1bb4a __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x54984fc9 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6f169d26 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x72da6d8f vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7bbf8900 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ee32286 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x811ae415 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x85d099f1 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8c088e55 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d18df7a vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa62efb40 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa97ddcbf __traceiter_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbc75652b vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbe233d52 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf5a3643 vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc82b0867 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcaf8f07c vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe87bb32b vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xef876776 __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf0245b4a vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf4e51602 vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6043e02 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xba80b0c8 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xfc07116f vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xb9810294 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x60cf1882 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x06735f08 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15b1ad0f vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d56d270 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x22fe8a8a vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2dfd36a5 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2f77c829 vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32d07958 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x36375338 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3718abf3 vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3903bc02 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3be41245 vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3cb04173 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x44b71003 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45026498 vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x655585f9 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70ca7f8e vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x91cf8692 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9262ad5d vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9448be37 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x99acde96 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa0760f21 vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa94003af vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb20fe985 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9352ebb vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc15956df vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc60f6a2c vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc9e3551c vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcdb2c46e vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd23e9a43 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd3286a68 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xddecf7ee vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xea71bc95 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf83baf1b vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf976c307 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x8e06ac62 vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x095b5300 dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x10045bdb dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xeb7f8918 dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x1fc20ad7 as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x1933f160 cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x965c64e6 gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x66972b2c mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x4f153d93 stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x9ae3f094 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8549bfb6 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x9d10a327 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x82511e54 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x10cbfd4b max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2fb35d29 max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4aaba122 max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7367bdee max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x847b5aa2 max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc4f91586 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcac78c67 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcaf6b83f max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd07a274d max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd6f54ca5 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd9534ab8 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe7f1db39 max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf6382eec max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0784b8e6 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d67f2ea __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e14e837 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1403d88b media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1cb411ff media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e4dc46e media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26c189a4 media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2923ce56 media_request_object_find -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x33dfae73 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35e485d5 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38865d97 media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38fa3d90 media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x39a0a586 __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b96af29 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x481bbbec __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4dbb5013 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4ef316e5 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5257d074 media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56795787 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c9085c1 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d658f97 media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e4b9149 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x632596de __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64a2da5b media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64c00237 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x696b4709 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7159c944 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7231cc6d media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74457861 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7514ab48 media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x77ba5ddb media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a670f65 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fb6579a media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x80a8eb57 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x827ac896 media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8de1b672 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e1d86a2 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x95600657 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9d94eb6e media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xabe3339f media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb39ab7e3 media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8acfb15 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf1bb164 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc16157eb media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc322ca70 media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcbc4b180 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd1d628a __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcee50eed media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd24403a5 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcdfdf647 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe38ce938 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeab572d0 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xee34f85f vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1982fc1 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf2f81d00 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf97a7c84 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x13f493e3 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x46e24d01 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x99c695c6 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x2d5afacc vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0023c966 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01386a50 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x019e9e8f vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x079d3029 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0a4e9e05 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x16ba9938 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x183473ce vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18c8bcc7 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x251fedae vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a51ce16 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x31489bf3 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x334a88ab vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3affff69 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3d6fc061 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x49c87d14 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4bd007c4 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x552c88d8 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x644e2057 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x65efb951 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x825b9990 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x85724261 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8aefc4f9 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x91663174 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa3f0361d vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xadeb5bf6 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4f3e66b vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd48a12a vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc4f4e842 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc54c4917 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbe705ec vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe2ee34b3 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe4a126a8 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec7abe03 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa510781 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x0b43db2d vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x33f96f38 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x3b1433b0 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xeb3f06ca dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x7c21322f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xfb446a36 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x355dd0ac atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x2bab5969 au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0x2d1e2663 bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0xbee94117 cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x8f070845 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xa5f90b78 cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0xc1628e18 cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x30ff6aa6 cx24116_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6bdb6b21 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x666cfac1 cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0xe56f858b cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0x9c7382a6 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x661f1273 cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x6d46781c cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0xe2996c58 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x487b33d3 dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x0216dceb dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x9cf3c6b9 dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xea20373a dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xc065ace3 dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x03fe7b63 dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0xb6564b11 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0xa0dd59c0 dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x213c324a dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x080e26e9 drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x5240aa76 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xe5951ba6 drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0xdaccf6cf ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xba204b6e dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xa00a7eb5 ec100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xb8b0d398 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x9aca4b0e helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xb4195906 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x44d6003d horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x7122bf8d isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0x8135a887 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x6f5b3626 isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x2b262c3d itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0xcc7dea04 ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0xe9dec869 l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0xea4a457f lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xe3f9a927 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x407572b2 lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x20ddd1c2 lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0x03db3312 lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0xb0cad99d lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x4d0211fb lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x715f9b50 lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x5b1282f9 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0xaab5f366 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x6c47d956 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0xa920dbca mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x2ab103c1 mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x046f3251 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0xe624c173 mt352_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x3115c8e4 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x105194c5 nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x22a026f1 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xf2e2e419 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xcc6f4e5e or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0xb2975dde s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x40040093 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x12a90888 s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x4eb52d4f s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0xc63e4958 s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x81ecc4cf si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x62972e13 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xc16a9087 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x63e20d6b stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x3645afcc stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0xa7cd80c2 stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x40db9a9f stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x5bcae8b1 stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x0c7c09db stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x3c8c17e1 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x8d4ef3b6 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0xfd894398 stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0xa1fe20c8 stv090x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x3bf742af stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0xf970dfef stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x2d8c8677 stv6110x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x507d3db0 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x2987af63 tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xfc8b6d3c tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x617b714c tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x185d50c4 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x23d04fb0 tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x3124dc35 tda10086_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xf3b7aa97 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xe5ccee1d tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0xd1e8b551 tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x3832dec4 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0x832438bd tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x670e9a34 ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0xf12e3d8f tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x8cb8601a ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x3f0e3886 ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xcf6bdc7a zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x96b49606 zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x16896aea zl10353_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x1bf95cb1 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xa2453c3d ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x12dabbaa max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x60c475db max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x715285a1 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x781b13bd max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ae9c208 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7b69468b max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7c5e9faa max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8a892304 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9965d099 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb2c193db max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb3031afa max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc45bb895 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc59efd55 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02548dd1 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x04d0fabb media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x075efdfe media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c2edb1a __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c41b9ac media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0ea6e26a __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x15c0e52a __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1bd938ec media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1d3d9a69 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ef7196a media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1fcd8ad9 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26ea694c __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29ee3887 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d62faae media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2fe6a216 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3365751f media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37e12c58 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38869e43 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3cae5d2f media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3dacaefa media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3dd7f34f __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x404fe604 media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4243d2cd media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x428304b8 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x442b6929 __media_pipeline_pad_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45b20373 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4e24cc62 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x50af18b2 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x55bd75f1 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c150019 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d1609b5 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62d0246e __media_pipeline_entity_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65dd67e0 media_pipeline_entity_iter_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x724b7cab media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x72556ba2 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x733ad92b media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x88b2d115 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x894dcf83 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x898507af media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8b614611 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c32518a media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9155819f media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x92cb4050 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ad1f559 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9bd2e2e4 media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1f8989e media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9467c3e __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8a53c18 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbaf13b2b media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbbec3e29 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbeb08e85 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc1efa869 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3e658d1 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc6dddbd6 __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd11afc19 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe2292b44 media_graph_walk_start EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfa58a0ad media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfbb9a32c media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd107e23 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe98500a media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfeef3d86 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x12224a9b cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0f245a4a mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2b165ca3 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x432baf2e mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4c18258a mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x65f67ad7 mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f4c4d15 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x863b5f48 mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x86c39a4b mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8c8296bf mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9103e09f mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa597f2d4 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xaf26c9c6 mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb69edef mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc468f080 mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca692d1c mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd406f0a0 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdc4731b4 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe1cde362 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xed4b9c08 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x024b97a0 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04af5498 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b4744c6 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x20ff05ef saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2134b547 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3230a51a saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3bad61a9 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x41fd7ca9 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4aaabd9c saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a27d607 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9a05844a saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9eca0811 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0f73cfe saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa70a0f23 saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaab197ef saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb729e7aa saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf62103a saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc7726c72 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd3c80140 saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1dc5a9b8 nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x22219fed nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2c73c1ee nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x614c44a7 nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x67b5498d nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8256af38 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x866cbde1 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8ebc0a6b nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa1e7390e nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xbfecc885 nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc2a47ecf nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdb16db02 nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf18aa19d nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf4ced739 nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x1ae844e6 mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x76e329d2 mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x90c06655 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9135061c mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xf4aaa813 mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x390b8237 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8d71f375 vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xbb008dc1 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xc810c1dd vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xd7b51626 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xeb21a15d vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xebfb89f2 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xf9371552 vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0138c2c5 venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x03c03c57 hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x04688b92 venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x05d36d70 venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x064defcf hfi_session_set_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1c130f6a venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1df18877 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1ff7e327 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21693168 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21a01dea venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x245a7e30 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xec1d14d3 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfb2d4506 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x0dc584a1 dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x212f680b dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x7976c8ce cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xd952e0cb ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x077256c5 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11f70199 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15703b9a mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x177f045b mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x29990fa1 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2d425cb1 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x37cd86d4 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3cd4808f mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4b3e57ad mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6de7d6ac mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a5285e9 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9941d4dd mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc70fb8ea mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9f17d39 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd107678f mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdf26c78c mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe5b205a4 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf73045d7 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfc32d315 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0dcc58c2 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1021ba27 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25f0b69c saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b5d1077 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31bc8111 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3a54505e saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x49bb1fa6 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4d92796a saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6450c05f saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x698469c9 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b26f60e saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c10c8c0 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x84858008 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x96841144 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa75ad2c0 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbea703c1 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcbea6411 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb987dc0 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf27859b2 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1ffdab99 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4ebadd41 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa15d3f88 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa487b4e0 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xac1d13d1 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb1aa21bb ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe42ca122 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x0d6b9f29 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5cb1c447 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x7082b5fb nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x75d2ac5b nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8fa78cfe nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9113076b nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x9a2b46b7 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa473ab50 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd04954ce nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd16cbcfc nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xec3580ff nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xeef7cc34 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfb5dcf7f nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xfbafec1f nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x583cf138 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9b85373b mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xdc72d089 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xe672d640 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xe75b994a mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x18e05e2c vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x5cac9838 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x62d6feee vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x94c0742a vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa6cf78a2 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa9a814b7 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xbd9961ce vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xbe482dd5 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x01355497 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07d8c597 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0b8bea0f hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0e374483 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x15aea4c4 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1b0d3587 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x20ee89ba venus_helper_get_ts_metadata EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2cb1ec25 hfi_session_start EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x366d1910 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3d4d16cd venus_helper_change_dpb_owner -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x41110ec6 venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x439947e8 venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x43f88a01 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4b010098 hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x51ed4aa8 venus_helper_vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x52becc8b venus_helper_set_output_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5ca8995f venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5d98dead venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5df0a894 venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x613576a9 hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x62ade0b1 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x62cd63bd venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6352f74c hfi_session_get_property -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6771d9ba venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6d033b77 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6e821196 venus_helper_check_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6eaa8a20 hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7807a73c venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7b0c2c24 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7f957e7d venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x836d3378 venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8661ab5f venus_helper_get_bufreq -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89929f8d venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8a597668 venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8e438361 venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ee1e7af venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x91aedf1c venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x969eef41 venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa80533dc venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa986f50c venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xac3a5ce5 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb1b58b1a venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2edc079f venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x329f25cd hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x34163532 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x38af1b63 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3bfa99d5 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3c9494e2 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4dac40a2 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4e930e08 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4f03adc3 venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x59a12465 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5e24f5d9 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5e8db0ff venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5ec432bf venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6143113f hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6e4bdaba venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x71320e2d venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x73d859ea venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7909555e venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x82b35ad1 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x875ca27d hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x88f8168b venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ae75dcd venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x99be5195 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9a7a96e6 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa36bb4af hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xad23e1d4 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaecc5a42 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb595599e hfi_session_destroy EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5da1da9 venus_helper_get_framesz_raw -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb2c0115 venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbd0ffb25 venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbe5df01b venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc915491d venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc9bec478 venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcbc015c0 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbb387b27 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbdac5d63 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc006a519 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc3e4b292 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc4a03ba3 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc7a5a813 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xca867e25 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd0c9fd0b venus_helper_init_instance EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd21da2e4 venus_helper_get_framesz -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xde0dacb2 venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe935af68 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeab982db venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd69e281c venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe05aa130 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe08467a4 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe090e3f3 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe17d9e67 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe3605e02 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeb615592 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf6776e3a venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfe98c882 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xff253cfb venus_helper_intbufs_free EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x70d1429a rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x4ecc94d8 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x77c4ae96 vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x98067651 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9974847b vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xb9c6a6ba vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xba827e3b vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xdf5acdab vsp1_du_setup_lif -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0f12e245 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x25551f3f xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2acc2f9d xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x438ad371 xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x607ea105 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0xf1c4c751 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x20155d8a vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7b572eda vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x93c90cb6 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9c142957 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xabb9371a vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xaf158b33 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc43923d1 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x282f3e09 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32a020d5 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x57aea035 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6ee1e9f0 xvip_of_get_format EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67cefec xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd72aaca4 xvip_enum_frame_size EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf6582c18 xvip_init_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfe71e108 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfdb1e721 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xff6d3032 xvip_clr_and_set EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x765c3e9a xvtc_of_get EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x8314770f radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa927613c radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x05cb2041 si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb3918eaf si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbb25abcf si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xcbd3903a si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xef4bef18 si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2c87cb5b lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xd963e42f xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x3df347df radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xd7fd0852 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x1a5fa48b si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7e98dc4f si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x89867db5 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x954a3a8b si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xefaa4d32 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x11d029d7 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1d56edec ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25ff01b8 rc_register_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3bc70d08 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x475a0062 ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x77ed694c devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7891b8a1 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x865690c5 rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x92785bf6 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x94fdd7b6 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c1b7bd5 rc_unregister_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d11d36d rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d442eef ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb467825b devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4f420fc rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3e9833a0 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5c2a83ea ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5d151522 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bec3be0 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6d03b778 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x757a77d8 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98452a8f rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98dbdd1f ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa014a04b rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa22477d2 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa373cf1c rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xae108915 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb3e5315c devm_rc_register_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc41a73fd ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd0db95c5 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1571753 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf0a62a83 rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf4884905 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd9992547 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1ba9344 rc_keyup EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xe92b4139 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xae97996a microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb4acb08a mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xa24d83d6 r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x2e5d53a0 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x16879a22 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x43150386 tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xa674d265 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x48716e73 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x167f3947 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe12c7eee tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x22287076 tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x58b74544 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x758c27ae simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x4ea78885 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xc2ead360 fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xe3e109f6 fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x9a05e0ff max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0x17d91a00 mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x404a8a7d mt2060_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x4917cc31 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xbaaa0c5f microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x5dd61875 mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0xdce8298e mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xdba2e2e7 mxl5005s_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xf8758953 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x71fe7a8a qt1010_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf17f27d6 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xbc5b109d tda18218_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x8f763027 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xb85b8fc6 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0a7900f2 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9c8cbfb3 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x82efa357 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x2bb2b3ca tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7d6c38cb tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x41629b17 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x92298860 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x8dace1ee simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0xc800e760 xc2028_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0xca22b978 xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x47f72d4f xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0e8ed234 cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0ec45338 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19b7fcba cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4750f1bb is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b2c6113 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x527b8987 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5989759f cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x62eb16ed cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6bfd8d46 cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8600ed38 cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d4dfbd3 cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93a2a1a5 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa6a36738 cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xadc645bc cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb4a59344 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdeae9f4b cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdf37524d cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe0bfdbbb cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe7bdd165 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf3e36e9b cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x716da2e6 mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xb7195c97 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x03e2a288 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x197451d8 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e184b51 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70b7dc6d em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0d159124 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2fdf75ed cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45066fd6 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4641e0d2 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4d02e3ac cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5a2d533f cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5e77ea1e cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7644fe6a cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x80eb5b31 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x849885d0 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d6623bb cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb05df81e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc7d614a5 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd41f2d96 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdec252c5 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe09ffc46 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe64b62b3 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf458c2c9 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf6e6cc78 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfa488d8a is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x0e2461a3 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5074b318 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x041a30a7 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x19ee8af5 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1bda7b60 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x230db0c0 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2cb5aef0 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4eb94059 em28xx_write_regs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x724ed325 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x724f79ce em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x75b82c39 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x774d4f1a em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7ef40f47 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7f3c8647 em28xx_set_mode EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d77bdd2 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d2da3fc em28xx_find_led EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x99035565 em28xx_read_ac97 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b1b72b6 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa588bd2c em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa9ab1347 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb457b45e em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdaab0670 em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xecda715b em28xx_toggle_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xedbce30f em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xeefa7e41 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf31db1ca em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x613dce84 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8c010217 __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb46f3640 v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb90419d3 __v4l2_async_nf_add_i2c -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xcde9c842 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9c7483f5 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa39bb7cc em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaddae780 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb830d7d6 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc5a2dd0b em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf5d45be8 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf80ee9e0 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf9e4e323 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x11264527 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x18ef57e8 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x665827d1 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x71363121 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9ffc47ab __v4l2_async_nf_add_i2c EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0af3d134 v4l2_valid_dv_timings -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x1b4af4a6 v4l2_hdmi_rx_colorimetry EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x2bf67def v4l2_calc_aspect_ratio EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x370cfe6e v4l2_dv_timings_presets EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x3aa68d7a v4l2_find_dv_timings_cap @@ -14267,25 +14468,26 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7b6ac78f v4l2_phys_addr_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x8f8d4341 v4l2_get_edid_phys_addr EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x922ecd29 v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa22fbfeb v4l2_hdmi_rx_colorimetry EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xa97e00eb v4l2_detect_cvt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xae575c8f v4l2_phys_addr_for_input EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x03fcf43e v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x91c04d6e v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x92b05c29 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x12478646 v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x36f6d632 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x576d336f v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x0639932a v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4eafb9df v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe567d4a1 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x342e1974 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x38f3cb0f v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4067ca44 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5faa8ae0 v4l2_fwnode_endpoint_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x75fe0b4a v4l2_fwnode_endpoint_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8ffa3e69 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa94068ea v4l2_fwnode_endpoint_alloc_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb16e7d84 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc9b075f9 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdec8e4aa v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfb1dc17a v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6b1ff1ff v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8c52c2be v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb89edfc6 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xbc22f360 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xcecb4a6f v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdc2a46ce v4l2_fwnode_device_parse EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists @@ -14294,53 +14496,53 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8956e3f v4l2_jpeg_parse_huffman_tables EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8f40f9e v4l2_jpeg_parse_header EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xf8ffd565 v4l2_jpeg_parse_quantization_tables -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1cf0afe5 v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25673e99 v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28dfbb53 v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x38709b02 v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3f25f7e7 v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x479ad836 v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4915698d v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49934abb v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4fef7fb9 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x528a9453 v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56619b21 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56bbd0f7 v4l2_m2m_last_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x571fca22 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c21fcbc v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63978193 v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x72d1e8ea v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x03edf982 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0476ced6 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x04aeb040 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08b4affc v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e8fb50b v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x137c8809 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x13a64c4f v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x223c158e v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x22978239 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ae1156b v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2bff244f v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d557866 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f944a22 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33c31c70 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x360cb697 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39d234ce v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4df7a95f v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55e69be9 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57646f83 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x597e62e5 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c1c56b9 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c381d27 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c7330d8 v4l2_m2m_ioctl_decoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x778a3e21 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c55eebe v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x85d7905b v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x881aaf09 v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89df1999 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b09f717 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b64acd4 v4l2_m2m_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x943e47c9 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa2238a8b v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5af1dd2 v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa7210acd v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab053f98 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0bc9df3 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb212b531 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb539c421 v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb569143e v4l2_m2m_ioctl_try_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8d5b76b v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc2d8f690 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc469fa93 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x753e300b v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x834382c3 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84d675cb v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8768b2fb v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89c94532 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8db272e2 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa299eaac v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb9c47a07 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbeab3986 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc44cd17b v4l2_m2m_ioctl_encoder_cmd EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce118b46 v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0e3a48d v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5a7cefb v4l2_m2m_ioctl_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0661bd6 v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4471199 v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe47a7212 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee627064 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf01a8e29 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7700d9f v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb288a8c v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1031e2f v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1277fa0 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf8ac7b5 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb218d59 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefe64a82 v4l2_m2m_request_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa8c99b4 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfb5326c0 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd1258ec v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd6d0c2a v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfde9b6d4 v4l2_m2m_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled @@ -14350,347 +14552,366 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0397e458 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15c87180 videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x21a6ade4 __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3d76fafa videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x49b9cd92 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d4eb137 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4df7d7db videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53142971 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x53620ae2 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86c0a261 videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8ea4f8d4 videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95f62a3c videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a69e0fc videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa65b67dd videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xabf02df8 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8747bd3 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba9a0ed8 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9204faa videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcc1b886a videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd2a94549 videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe188ff1d videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa1f1aaf videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfa3dfadf videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff476dac videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1268489d videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2af73295 videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x53e94475 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x084667ea videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10c5cbf3 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1488a01a videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x181bae32 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19d1f9e1 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3149846b videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x33d2ac48 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36b07d90 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4b803f2d videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x598b2e95 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6f4be933 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x843de23c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86b231d6 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaa78f3bd videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xad2a5f18 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb7ad6352 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xce1379bb videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcfd3385a videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd559131d __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe06fca34 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2ce271f videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe8ca9bf3 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf516c1c8 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf51b24a0 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x08fca143 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3b8f36ea 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 0x63cd6fd4 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3178b126 videobuf_vmalloc_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x62d841fa videobuf_queue_vmalloc_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x81c3a48d videobuf_to_vmalloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04785d13 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x051a86f3 v4l2_event_wake_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x075d57c7 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a1caf55 v4l2_create_fwnode_links -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ccb670a v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d6f9bf2 v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e6737f8 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f079a9 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9e63d3b8 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xb35276d8 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0218c4a9 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x084015ba v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d7ec5ec __v4l2_device_register_subdev_nodes EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x135fd9da v4l2_fh_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x143f89f6 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25337c75 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26b19172 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x188a8e34 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19b652f8 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1cc51113 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1db04e6e v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e7c3e96 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f7673b1 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24808d47 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24a3fc36 v4l2_subdev_disable_streams EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cf08cbf v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e49aa99 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e528808 v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x321dd6d8 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32716d01 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c102f4e v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ae0b53c v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fc2adff v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b6856cd __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cb050c5 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30cf48dc video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31417f61 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35e72b99 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x365d879a v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42a9c734 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45804dc5 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x473a1990 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4766ed07 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47a0d11b v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4894cd55 v4l2_subdev_state_xlate_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x48e2e7f0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b342b50 v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50fec3e0 video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57479215 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67591d20 __v4l2_ctrl_handler_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x510b84ba v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54c1a6b0 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56691cbf v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56ccbd19 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x596d1e8b v4l2_subdev_set_routing_with_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a7dc28d __video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c94a35b v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5cfea39f v4l2_subdev_s_stream_helper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65d7839c v4l2_subdev_state_get_opposite_stream_format EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6fd57afa __traceiter_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x745cd50d video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a722211 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7d384736 v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f622a62 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x897a91f3 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a0170fa v4l2_i2c_new_subdev_board -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a19d0ea v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e7d11d5 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92adc7b8 __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x94f72376 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a072be8 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fe4ff18 __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6f83c062 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74d18a0d v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x784da193 v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78acd5a1 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78e91d37 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ab60d50 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ef970b7 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f0ab620 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83257492 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x837774f6 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8a974217 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fae5fda v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91ec2661 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9216b428 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95762864 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f96b6fd video_device_pipeline EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa37271fd v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3a49817 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4c90b03 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac520a13 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0116f11 v4l2_subdev_routing_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0882a46 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa09707ce v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab81316a v4l2_subdev_has_pad_interdep EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad8dc9eb v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb20ad33a v4l_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8e47cff v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc3f301d v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc8c21ee __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc13794bb v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9c9e121 v4l2_device_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc1c83b5 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadddba56 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3dd8d6 __v4l2_subdev_next_active_route +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2b7fc22 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb42eeb81 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb48cf8aa __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5a337db v4l2_subdev_state_get_stream_compose +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc421b777 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc654706b v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6b8037a v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc86897a7 v4l2_subdev_state_get_stream_format EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce205f2e v4l2_subdev_notify_event -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf625407 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754a74 video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd17cd4b0 v4l2_device_disconnect -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd1b03c56 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4ce58f4 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdcf04aa4 v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf4f9f0f video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1b5673c v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xce2dd445 v4l2_subdev_set_routing +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754c8f v4l2_subdev_routing_find_opposite_end +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd32190eb v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd46e3678 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd75d0f99 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd7e624cf __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde6e37d9 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdef3dffd __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0b98a71 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe229fcad __traceiter_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe400a9e6 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe46fe8fe v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2b88e7e __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2c2f046 v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3366778 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe476140c v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4c5ca16 v4l2_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe68da3f9 v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe96a93d0 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb86cc77 v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebf6b89d __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2972ad9 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6ce328a v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeaf4cdb4 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed6c9ccf v4l2_subdev_state_get_stream_crop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee00f346 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xee0f077c v4l2_fh_release EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3f3c941 v4l2_src_change_event_subdev_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7da2e02 __traceiter_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf9be154c v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf610ac6c v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf85e72c9 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfcd9ead2 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfffeda72 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/memory/omap-gpmc 0x0bf4e624 gpmc_omap_onenand_set_timings EXPORT_SYMBOL_GPL drivers/memory/omap-gpmc 0x1bc40a8d gpmc_omap_get_nand_ops -EXPORT_SYMBOL_GPL drivers/memory/omap-gpmc 0xb67cbbb3 gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3d31bd24 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x555466a2 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x459e161c pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb19d7da2 pm80x_pm_ops EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf3929a2d pm80x_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0ecfc702 wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1a0219e4 arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2527806e wm5110_revd_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2676c07c arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3dceec43 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4df7064e wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4eff3c38 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4fc92cb1 arizona_clk32k_enable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x549c0565 wm5110_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x58dc8758 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5c05d0ba wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6b3202e5 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x77b89cd0 arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7b692bb5 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7b75058f wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88b6aa3e cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa02137e2 arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa095e660 arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb0a45273 wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb263fbbd wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbe237980 wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf39c933f wm5110_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf5574d50 arizona_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf6f5d7d8 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x0928a730 atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x15e283e3 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x103df6fe da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x19639645 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2d9bafdc da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2fafaab3 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe88815e8 da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xef7343ee da9150_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfa37a0d5 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xdabcbd5a pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02b2fecf cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x08a2f1ca arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1949d8fa wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e2d999c arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3501187e wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39419a43 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39fbfb5c wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x43c0e4ef arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c4139d1 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4e9d02b7 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5021b7bf arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6b31ece4 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x777974be arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7ac33a10 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x87906e2d wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8b9a30ed wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa53c8ba3 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa68fb865 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbbf3175f cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc4a8af61 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3fee6a6 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdfbe649b wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe7d64a2a cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf7d3bc8c arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x26354289 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x37bf252a atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1a740c7b da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4cbbfe87 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x59bccec2 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5d0c80c6 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x63b91b7b da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbb1dc9e3 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xea190708 da9150_reg_write EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x229fd31a kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x42353063 kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x52841d1c kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8a38e698 kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x90e9eaf9 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xde51b8a0 kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe5e0ea22 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfb755419 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x2af18e6f lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4cfd7c34 lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x8af4e2e1 lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x392c358c lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x69c4a749 lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x747e9a8b lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xaac57c13 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcca30558 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf331fcaa lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfa1479a8 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4cef6b9b lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x56f69a11 lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd6ccc778 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x02b5bc00 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x02b86040 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x43164681 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4a965496 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x64db6106 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x912ca010 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xae101d36 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbcd2a9dc kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2c5150c kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xecef9275 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0f3dfc7e lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x27dbd727 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd230886b lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2a463ae9 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5bbdf1bc lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6dbac64a lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x82d0f28e lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8481fa4d lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x88832210 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfea5e354 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x050b9077 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x6e3bfeaa lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xda88b62a lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x036aa95c cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x09c5705a cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x09c8ac1a cs47l85_32bit_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f934b35 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1f9e9775 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x281250c8 cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x281f8c88 cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x30c72778 cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x30cafb38 cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x354808be cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3fa1e186 cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4180a10c cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x418d7d4c cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x581710ce madera_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5ca65639 cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5cab8a79 cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6b274dc4 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6b2a9184 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x73f23a74 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x73ffe634 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8355e56d cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8b430bc0 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8b4ed780 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb7ad8f7a madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc40d9f60 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc87616cc cs47l15_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc87bca8c cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdeefb29d madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x111007ea cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x111ddbaa cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x26911c17 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x269cc057 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x31056c9e cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3bb7eb22 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3bba3762 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4721aa8a madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4af06d56 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4afdb116 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x52251ae6 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5228c6a6 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x65a4011b cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x65a9dd5b cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x66a91753 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x68457dbd cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7882f62e cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x788f2a6e cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb2415ce2 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb24c80a2 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb6d668f8 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbb31b837 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe66391a4 cs47l15_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3695094 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0104a3c2 mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x130b56aa mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x53b11d8a mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x804777cd mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd0591dd8 mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfe41b61a mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf17441ee cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf1799dae cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2f6d5ee6 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8aab586c mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x98a4ad04 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb37d8ea4 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd81ee624 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfa0bb1d2 mc13xxx_common_init EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x11db741a pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x17b4affe pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x216b203f pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4753fdc4 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6a3500d8 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7cdd5185 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7de44f75 pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fea04c7 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9339eb1c pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9aca4dbd pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9d9d59c pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdb68ce68 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x66065e74 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6ae9b824 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x190f1273 pcf50633_gpio_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5fcd4547 pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x69a1d559 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd43c6658 pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd5de1ff7 pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x1e410ca1 devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0d4f3e28 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x20438eed pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2df44cb6 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3b3bc51a pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c1a960b pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4df71f2f pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x683c04ac pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x718ed209 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa3e96b4b pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd60f7f96 pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe7dce2fc pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf87fe317 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x724baca4 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc0a267a1 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4abf33a1 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x52fd8398 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x55d88159 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x67673c7b pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xec1a8885 pcf50633_gpio_invert_set EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x942de70f devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02e05414 si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a796b3a si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16c62893 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27092c43 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2be309e8 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x323d54eb si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3780219f si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x391829bb si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4534d30d si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4af806c2 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c7ce1a5 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ed2c5eb si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x531a2732 si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a3f2d06 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5aab11c9 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d46996f si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e2a00ce si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64d063be si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70474785 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x745b4e39 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x86714eae si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x927136d5 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa014c17c si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2f4caa1 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca35f0c0 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf8af6e8 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd2964abb si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddc08fd0 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfa22c3b si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6e3ba46 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee4c2bdf si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefc9a436 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1c8176c si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf59c547f si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0bde88a6 sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x494b62f8 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6acdfa01 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xaffa18b4 sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbc83893a sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xfee0e697 sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x544c9f3c stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xff7f5d78 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x37e458b7 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x50d20fd6 am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbe5ea51b am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe752655c am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x0e82393c tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x5de3bb64 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xa72a5204 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xbd3c7b1e tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd6d5a1a9 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xde8c541c tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf9bfdf26 tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xcb730415 ucb1400_adc_read -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0a6e5acf alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0c214c43 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1697e4df alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5d47fda1 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7106af78 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xafe3062e alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdd7b4592 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0863c6f3 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d8a7aaa rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0dded9e1 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x15115f26 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x248ab013 rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2948cd14 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x33d454a2 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3df358a1 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4091cd13 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4b42e837 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5174b258 rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5278fc1e rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7455297b rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7addb833 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x80f235a6 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8795deb9 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x893b8051 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa6d3068d rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb91f81c4 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbcab58a3 rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd61c4251 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe9b0a198 rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf01c43fa rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf501deb5 rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0787e3a8 rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x08f303ea rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x17cc7469 rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x20285d72 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x36f43b6a rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x57d9af41 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5b9fef5f rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x76701b79 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x879aed90 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xacbda972 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcff91c9a rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd4e6b87e rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe3fba48a rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4b73f01a cb710_set_irq_handler -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x94fa7716 cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa5353eeb cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe9e3b466 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x0e0d0594 rk8xx_shutdown +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x2b7e987a rk8xx_resume +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x9e82cd29 rk8xx_probe +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xf1eb19e4 rk8xx_suspend +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x11454ca1 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1be50c12 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1cedbc78 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20db46a5 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x28431991 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33194e43 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d27e481 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44edf529 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4906bcf5 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b3eda84 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x545faa0d si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59383b7d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65713e18 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f39f5a1 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e19a60a si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8fb05e67 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ac829da si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa58d1c04 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6916308 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb5db8f79 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb8801f6d si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0b45572 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc40f0e3f si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc96fa065 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd89c8c44 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9a087bf si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdddd0dc8 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6a61b89 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe926a415 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf1494492 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf224f220 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa9a58ae si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb9d5987 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe26290b si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2d92ab1d sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x335bb054 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4be976cd sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6921fe75 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa33350dd sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xb29692ec sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stm32-timers 0x9d19a2a6 stm32_timers_dma_burst_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x3f8e8d3e stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xcffe0137 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1d70bb19 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x968a0671 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9c9e4c40 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xd31d9e5b am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6fd25094 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x917d24f5 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xb01f3752 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xf600b22c tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x71013a6e tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9c1f179c tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbf6f84d5 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x4cda2812 tps6594_is_volatile_reg +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x91753b71 tps6594_device_init +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0604f587 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1414345f alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x33277594 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6684d41e alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6b6cda19 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x78017e4b alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf1ed8085 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0189066d rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1b63904d rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24cb8925 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x253a0c92 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x29ffddca rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x343961fe rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x350c27f4 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5f800bcf rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f843012 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7974568c rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7e62c705 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x878a0508 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8799f32a rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x88df7786 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x894069f6 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8eba8980 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xadb81ef5 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbf84af65 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc4452f74 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xca216e92 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd4f2d7df rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe3b7a5f9 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf0d0397a rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf2a18518 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0f136b38 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x180b73b2 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x23277758 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x30d51cfb rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x324ef8e9 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x44b0ec12 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x59db0545 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6b7fcbbe rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8f0aa7fb rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbc12148a rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc2ff54ea rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd210acbb rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe7159619 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x038fdb25 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3ed543a5 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8b873dc5 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbbd9228d cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14704,36 +14925,35 @@ EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0f01dada enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2a915667 enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4f5b6e90 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x653c9dcc enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x718cf48e enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x80a4df06 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb1049722 enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe5196d0a enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x13b41fa2 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x274eb39b lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x29ccb7ca lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x43de9e59 lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4d5685f3 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x88289c64 lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbba4c21e lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc9c90d39 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x5e3c878a devm_pvpanic_probe -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x27b492c3 st_unregister -EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x80049dca st_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x2c612899 uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x5a360296 uacce_remove -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa9d08c34 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x46415f08 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7270ab5a enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7744a692 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x82b3d1f1 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9bc4e7c6 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaccfda7c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd7ad23d1 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe8533bde enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0d79ca6b lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x47e743aa lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x73eddeed lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x92f90661 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9531c37c lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa5bc1129 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdcdb1997 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf599f009 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7eafdf8a devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7a67653c st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf1f33992 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x429bd471 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x5faaae68 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdc3c042c uacce_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x29351931 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x38e7b4a7 vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3c497df9 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy @@ -14743,2141 +14963,2320 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xafe20223 vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xd6c4a45a vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x08efc04e dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x997900b6 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xb70ab31f dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x54372840 mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x6dc79ca7 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x827f7a2c mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xab8dc71b mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x9fd9eb7c renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xcd011f4c renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x028321fe sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x031f7cd6 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03ffdc77 sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0cd841b4 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14c23200 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x16ebd0fc sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x21b631bb __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x273a17f3 sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x373f44e0 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ce1a6c1 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x429caa2d sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a2d56d4 sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x594d2985 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x59ba384f sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x63d005c9 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x643fb36a sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c377ff7 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6e5b69bb sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6fb5ea7a sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7c5994b9 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x847e4d02 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x863ce403 sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8a4231e0 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d61e382 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8e7849da sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c90e0c4 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d7a8ab9 sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xadc83907 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb34f74fe sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbfb2131 sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbec481e6 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc5fad902 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc77a46aa sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xced67d10 sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd1eccc8a sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda171392 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdcc6197a __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe587e1b7 __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe71afc1b sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe844f017 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe85be5da sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf88e57e3 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x70622fd2 sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x91f85360 sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9b8b498b sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xac84bb8a sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb0281354 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb7e87552 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc6d29687 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcee56912 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xeabe0d4f sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x34ffa4b2 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xeb153a9b vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7ca62add dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xe16355ac dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xf4fec557 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x0879a13f mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x4a218e3a mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xd7bcbb55 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xf95c0ad3 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xdb5c7158 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xeb828848 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08468b69 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x104227c3 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13ea0c3d sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x22c78046 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2eea7f96 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fd1bca9 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x309c75fd sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3465871b sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c699978 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x400f7feb sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d0e4a69 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4f1b1813 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a20d226 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5dfb2100 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5f2b1b0a sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67b64149 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x715af7f7 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71a59ac7 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7655b6dd sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81d7ad54 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9269bbde sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9cf6e11b sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d2a3361 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa009d869 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5a0d7c3 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5ff3043 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa8e8787e sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae0f4c89 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6305762 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb64ce5e0 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb82224a1 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd00a3eb sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd755479 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbfb4d5c9 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc17dfcf4 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcd82073a __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4729538 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd6735b6 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0388c62 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf10c7e1a sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff2a871b sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xffdbfe1b sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0043bf8d sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3bde4a7d sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3f3645ff sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3ffd8136 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4a4c8157 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x576056ab sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6dfe979a sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6e0c8c02 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xda159e2a sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1b21569d tmio_mmc_host_free EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x64010880 tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x9d646870 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa089d5d7 tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcf3deab7 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd33bdeb5 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xdfc3057f tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe24e7228 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe4fdcb3a tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/most/most_core 0x2808f9a8 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3b129552 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x46e177de most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0x4c46cf0d most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x550c0bfa most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x5b6e790b channel_has_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6b2eb527 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x80e7a214 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x8320dfa8 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x94868ee7 most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb4f33351 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xcc89a12d most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xcf3f7165 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf39a52a7 most_get_mbo -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6efd2e00 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x93e30b96 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xacca2e7e cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7f8e56e4 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8c779962 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf225d2b2 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x1db0ffe5 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6b72fe55 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x91b759fa cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd630ebf1 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x5908aa45 hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xa080a889 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0cff0b40 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e128535 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f8b7d01 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1410a812 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14d8a438 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a99aa9c mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24615030 of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24e9f414 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2915e68d mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29cdf95f mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ab04f2a mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2acdbb5e mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b1cb4a1 mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30f15d47 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a5883e2 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b1c7028 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x487d2299 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x493b269d mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a4975f4 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x513b0bfa tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6004ff9d tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x646b2c66 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x734ba540 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa31c5be2 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcca69f53 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xee5f7d54 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf25b1937 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/most/most_core 0x184749bd most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1d607711 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2cb1503f most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3acefbdd channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3c4ff506 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x41352de5 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x45160119 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x55443618 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x613c7880 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x74484e48 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x88f363ae most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc92b15fb most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe7477acd most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf9da332a most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4e004c94 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7129697c cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb31e6902 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2fc695b0 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5194de60 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa26d11e6 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xc053b8e7 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x089ac050 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1b35cc6f cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf92f4b40 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7d5f34f1 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xc8c5881b hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x01dbddd8 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1bd3c63d mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20ada69f __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22b1c61a mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x248a4398 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x280d580f mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x291702c1 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b63893f mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c7c0e6d kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2db7eb1e __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x353213e4 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x37c2481c __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3b4af2a7 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3d9f23f0 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e563c57 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x40f4256d mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x449143e0 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x479ae123 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ce9dfc8 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e2d6ffa mtd_read_fact_prot_reg EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x546df71d mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64d22b57 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64f5a08f mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6784dbcb mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a395e91 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x74f04741 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83b6ef88 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88175a51 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88bc2522 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98cacee6 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x991b3ee6 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d0598ec mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3e285e3 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa62e48a8 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa82f878c mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8f4b78b mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabc835c4 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xacc0547a mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xadb43be7 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51763ac9 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51bb9ad9 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55968361 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x56ae984a mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d9921e3 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x619de497 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x680e27ab mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7897412c get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a3c2026 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a544426 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7bc3ccf6 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7befa8a0 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e069e70 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e952fc4 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83385d2b unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88b47bf4 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x893d1df5 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94a63142 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3942001 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa917ddee __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa96f85d7 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa98dec6b mtd_kmalloc_up_to EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb6adbea mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd349040 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc237221c mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6e40b93 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc0d9d29 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xccd77e93 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd716b73 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb7599b0 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5c97b84 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee0db502 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee512064 mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef442955 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf276f885 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3610cad __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa82eb6a register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff38df04 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2bab861d mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x38a51d17 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4f852f5d deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb0b44bd5 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbde5e7c1 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x07f1e02f nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x237e308f nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2504ff7a mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x329654e6 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3dc65be2 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x48570dcc nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x536cd0e8 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x589a7ce8 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5db39e4b nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e7365ed mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6b83059e mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x77dcfc3e nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8743d290 nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8d3c4598 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8db680f9 nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9e91ad80 nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa60dde7d nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaceed600 mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc38038a5 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdad428ba nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdeea0fe9 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe98ed822 nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf1ad579a nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf672cdd6 nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfdd7ba52 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4901a396 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x9664e5fd onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x578007f9 brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x6a126775 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xfd70d3a7 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x8e52bf6a denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0534c600 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a9f9cdd nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0b7554ba nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc8d888d mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc358eb4f mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc52b4b75 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc73e6f0f mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc80e3a1f mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcdb94434 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd75e9f35 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9e1b9a5 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9fc9e46 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7c18ed6 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xebebf546 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf855db60 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x18749755 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x664c6829 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8ffd48fe del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd85ec53f add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfb5eb4bc deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0c0c3c6d mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2b1c9ea4 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x46e62248 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4845804e nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5026a4f2 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x55cb2386 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5b8aee08 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6b7ddbcd nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x702892c1 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x97755f82 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaa16ee28 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xae81181c nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb25b4c5b mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb8bb0c09 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc47b09f1 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc7b44a02 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdbc176d0 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdcd2798b nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdcda9952 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe4bc859c nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe775f128 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe778565e nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf1cb2de7 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf3ca06e8 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf892ff00 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x64eb155f onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xf2a7ef96 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1ce42c66 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x34c35621 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x386a2d5f brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x8b00ee88 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0cd9de1a nand_reset EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x20120ef4 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x21b08bd9 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x296e7118 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x25ec24db nand_readid_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x352fa30b nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x35e3899f nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3f58aa1e nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3b56e252 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x479b9845 nand_change_write_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x66ab948f nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x68b9c123 nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6be6d31d nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6c8e9c0d nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x76d58129 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x78cf6a5c nand_read_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x84bbc7bf nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8da3f1ef nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x95069065 nand_prog_page_end_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa164208b nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcf9eeb6d nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5fae6e92 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7f36b624 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8796c3eb nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9420c7cc nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x95d43e9b nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9c606c7c nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9faaeeb6 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa35a4bbd nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa5aa880a nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbd621429 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc7c85f07 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd11cc01b nand_status_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe67f0329 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xefb38079 nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf50a1853 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf676633d nand_gpio_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xc17ad8d3 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9e96eaf8 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xc10ca270 spi_nor_restore -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x10b0823f ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1fc5a364 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3321f935 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3417b930 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd4b1d709 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xda088d91 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe1f860a0 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe890206b nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xea61b7de nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf0310277 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf8f85a28 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfd30dc84 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xa8d783a1 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x91099185 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x05cc452b ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1392ebbd ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1c228c47 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1f72dd4a ubi_close_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3d36a6e9 ubi_get_volume_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x512c88f7 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x53b9588a ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x84a9bcc8 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7394b0fa ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7e006418 ubi_do_get_device_info EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa0844a31 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaedfec72 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb1c4b3b4 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca6e44f7 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd94ca946 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xed232717 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xde7fdf79 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdf291238 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe50f214c ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf0aef383 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf133529a ubi_leb_read_sg EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfa52c609 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd8bfc3f ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xff5e8371 ubi_get_volume_info EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0f0320a2 mux_control_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x12c30b2b mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1c4f151a mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5f641957 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7969ca65 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x190fd868 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2359324b mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x39c43373 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x42ff977f mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4fecf5e8 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x66603261 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x67baea5c mux_chip_free EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x804b8443 devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x893e803a devm_mux_chip_register -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x96db9319 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xae2ed0ca devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbf7367e1 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc4cebe85 mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd3510e5f devm_mux_state_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd99ca4d6 mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xef8fb3b0 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x851098f8 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa1165c61 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xae108dc6 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xaf60ae4e mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb5c0fea0 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe60e0064 mux_control_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd33053d8 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd6ba4279 devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x44836185 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6705eb86 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x91323cfb unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x978094b5 c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xaf45a0b0 free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbe6d4938 register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x462739cc alloc_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc27655cf register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeb948114 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf27f11f3 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x03dc270c can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfc94411a mux_control_deselect +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc346582e devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc5cfa554 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x087f2be1 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x092abc77 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x56a8397e c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x714e5773 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb7fb6a84 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf7707ae8 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0b75e2a1 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5f6ee84b free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8c90bf1a alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe68aad71 register_cc770dev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x19c4322c close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b07bdd5 alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c4aaf74 can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d52cc7f can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ecdf58f alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23001e8e can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x233e95cb can_rx_offload_queue_tail -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2c3caffd free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x35d6d1df can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36a2369a of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38400ab7 can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x385aaa20 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x39c4ea40 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3eba75ae can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5727daf4 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5ebc62f7 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x16ab4466 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x23b5609e alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3874976b can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4142166b can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4a33be93 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c2aa959 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5020ca97 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54de029b can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x59d84a04 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5ff88af8 can_put_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7a045b34 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b592cb6 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7bea103b can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x92b3419d can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xad9e7e49 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xafde8baa can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb146035f alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3b5643d can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb653cc2a can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc9f08035 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xca23bf80 can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdf711021 can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0664f08 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6713685e register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d0ec446 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x831cab66 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x850cbfff can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96235e18 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b82435d can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa15ec36b can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xac1b5298 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaeded8c5 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb15f6413 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb57cbd95 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc200be75 can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc27eed00 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc74ebfb0 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc7dc2304 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb8deae7 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd7ea3c93 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd901f2c6 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdd9b2e5c alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe4e9f5af can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xecb5ca68 close_candev EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfe0531d2 can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfe43932c can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x02f535ba m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x4a129a8b m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x69db0855 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x79eca5f5 m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8a7bd1a7 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xa4804fe7 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdf1c34bd m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe24c0832 m_can_init_ram -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0944a6a7 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7d64423 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x15b0d7e5 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1b992486 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1ce89d5a m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x780558ff m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9c78709d m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9def9af6 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc3043d01 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf0eefcde m_can_class_get_clocks EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x70cc02c1 register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x728ecebe unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x93be213a free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x3bb95e1e lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x54bbd3fd ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x8b413594 rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0f99f45a rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1cd1a899 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x4ea52852 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x63e3e2b0 rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7aff4a26 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x829698e7 rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9278eece rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x978cf437 rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9e871d08 rtl8366_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9ffa9577 rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc1d1d769 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd344aeaa rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xb60b27b0 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc7191725 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x3794c730 enetc_mdio_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x89eb84c7 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa1739ca6 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc628e847 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdafd289c alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe5373ac5 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xe66e51b8 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x7dc1a225 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x1a80fb8a mt753x_table +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x92a8e57a mt7530_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x9a4013b2 mt7530_remove_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xf660a18d mt7530_probe_common +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x6d96bcd5 felix_netdev_to_port +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xafaec653 felix_port_to_netdev +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xb22754a3 felix_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xe67e1917 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1aae1a44 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x33a6fd12 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x52de4bd5 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x545ed3db rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7ab367b6 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7c1ae14b rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x86596978 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xaceefbea rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb05b0a95 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc8846854 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xcc72b32b rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xcedd7438 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x05fe4192 pdsc_adminq_post +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x09bb6683 pdsc_get_pf_struct +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x2530295b pds_client_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x275c9234 pds_client_adminq_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x45b87b4f pdsc_register_notify +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xb99be701 pds_client_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xce714617 pdsc_unregister_notify +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x333e105d arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x6dade0b7 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x02297ceb liquidio_get_fec +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x056b87ba lio_wait_for_clean_oq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0a2913e7 octeon_ring_doorbell_locked +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x116d52ce liquidio_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1182b0cd lio_enable_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x190ab389 octeon_register_reqtype_free_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19cb4e69 liquidio_link_ctrl_cmd_completion +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1b1d4bb0 lio_setup_cn68xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1ee3d3cb octeon_free_sc_zombie_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x23388445 octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x241a2a6c lio_fetch_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2d3ee3ae octeon_setup_instr_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2f09ff26 octeon_droq_process_packets +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x35278001 octeon_get_conf +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3a0671ea liquidio_change_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3c81883e octeon_set_io_queues_off +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3cfbecc6 octnet_send_nic_ctrl_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x40fdb674 octeon_free_device_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x435b3af4 octeon_pci_write_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x43f4d1f8 cn23xx_fw_loaded +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x48c7621e lio_pci_writeq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x49c4c4d2 octeon_alloc_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4c059a76 setup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4ecac48c octeon_read_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4f664a9e octeon_delete_instr_queue +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x52087a1b lio_setup_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x662575d8 octeon_setup_output_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x67f75b44 setup_cn23xx_octeon_pf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x685d870f lio_wait_for_instr_fetch +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6c1ca3fc octeon_prepare_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d0d28ef octeon_init_device_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6df09deb cleanup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x722ca2a6 lio_process_iq_request_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x743a2a65 octeon_deregister_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7a7b2231 octnet_send_nic_data_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7af0d261 octeon_register_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7d9087a5 octeon_setup_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7e5fa4aa octeon_send_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x83d9ace8 lio_setup_cn66xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x842026ab octeon_register_dispatch_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x859218f3 octeon_free_sc_done_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8c1c2775 lio_get_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8cb9c068 liquidio_get_speed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8e70b6f3 octeon_alloc_soft_command_resp +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x95b2923f octeon_send_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x97369e78 octeon_allocate_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9ff77dfc octeon_get_rx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa2e0f011 octeon_droq_check_hw_for_pkts +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa383dad9 liquidio_set_feature +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xaf092d5d cn23xx_vf_ask_pf_to_do_flr +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb163f4d9 octeon_wait_for_ddr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb313faca octeon_allocate_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbba0bf51 octeon_setup_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbe6f9d3c cn23xx_octeon_pfvf_handshake +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbeeedf3a octeon_free_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc1209903 octeon_pci_read_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc31e476a octeon_write_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc456dab8 liquidio_setup_io_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc4cc50d3 cn23xx_tell_vf_its_macaddr_changed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6abc5b1 octeon_core_drv_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6d8ebdd lio_process_ordered_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc9ec9ac5 octeon_read_device_mem64 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcdd2b5f8 octeon_get_tx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd1002ea1 octeon_delete_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd1c3c6e6 octeon_unregister_droq_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd554792c lio_delete_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd6d318a6 octeon_setup_interrupt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd7da4e5b lio_pci_readq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd96c2468 octeon_free_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xdeaa8f1a cn23xx_setup_octeon_vf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe7536d85 octeon_delete_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xea68e910 octeon_delete_droq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec7f00a5 lio_get_state_string +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf4ab3135 octeon_mem_access_ok +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf92c0096 cn23xx_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfc65b59d octeon_init_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x02ef3fb4 enetc_get_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x10993cf9 enetc_port_mac_wr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x123e1b53 enetc_set_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x15dd1e82 enetc_set_fs_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1a91d86c enetc_pci_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x1edb9a63 enetc_xdp_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x20915213 enetc_get_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x290512bd enetc_set_rss_key +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2c8370ac enetc_get_si_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2cae491d enetc_set_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2e699148 enetc_close +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x354c74b9 enetc_alloc_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3654b4ae enetc_open +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x58100ea5 enetc_send_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x5e1d795d enetc_setup_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x66e97ae2 enetc_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x72e034e8 enetc_alloc_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x89b3d81d enetc_setup_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x8dd88a0a enetc_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa51ab041 enetc_mm_link_state_update +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa530c4c2 enetc_free_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb10508b2 enetc_init_si_rings_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb68e78ab enetc_pci_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xbcb5aa63 enetc_port_mac_rd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xbdf85266 enetc_teardown_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc23aaa80 enetc_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd3639b17 enetc_ioctl +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xdc2a6cdf enetc_configure_si +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xdc2d2824 enetc_set_features +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xde2af976 enetc_reset_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xeb4cf647 enetc_setup_bpf +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xeb717e45 enetc_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf279b900 enetc_clear_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf69a9554 enetc_free_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x185d5874 enetc_mdio_read_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x3474dfb6 enetc_mdio_read_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x5353902e enetc_mdio_write_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xb183e6aa enetc_hw_alloc EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xda09c8e5 enetc_mdio_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x401a8a98 fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5078673e fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x64bef235 fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x67e727ec fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x83948ee3 fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x9c7c5542 fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa64ae079 fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa701fe62 fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb97ce37b fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcf1b22fb fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd5b46450 fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x72af2fb8 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa9fb1c8e i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x817e1bea ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x93e7966a ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9d67db76 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa5196b72 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe3cd1eba ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x2adc1197 otx2_ptp_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x63aa9683 otx2_ptp_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x86d7c038 otx2_ptp_tstamp2time -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x895f3d6c otx2_ptp_clock_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x015d0c2b mlx4_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ad168e mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04350096 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04ae279e mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06164286 mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x073ba636 mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07486245 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b807518 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0df499c7 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fd8d798 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122b9f7d mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14476718 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e3f6df mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17575047 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e2b72dd __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed88d12 mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x219125b1 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254d494b mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26526214 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x270a764b mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x274a68d5 mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ac519c4 mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5aad95 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c03d9e5 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x307194d7 mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30ba2d9f mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3285c93a mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3308fc53 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3570113a mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35b4475c mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3971a5bb mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a153c1f mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e007183 mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f4285cb mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f9e9373 mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40ee249b mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x434e4d8e mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b77d656 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d9b259d mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e833fbb mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55029345 mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x561b5c11 __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a0135d4 mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bfef74a mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c955bba mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cba0f1e mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d309e52 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5efa15d6 mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bcd55c9 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dc86a1e mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dfad04e mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9cf232 mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7074b061 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70c24b15 mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x750b6809 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7544c507 mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78a73ee9 mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a02cf56 mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7adfb4d0 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b89cc57 mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e814c7f mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f01f824 mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f2249f5 mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f6ab2bb mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80937313 mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8393c296 mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86672e20 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882b7495 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x887a24f5 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x892d8019 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aa37b2d mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cdc2839 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d3a155e mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d8fb86e mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f2edcfb mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ff4c698 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92b9ffb7 mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96df2606 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9871d126 mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99fbc79f mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a55460b mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c2b3586 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d76c1ef mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa125b3ae mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1fc8ef3 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28dfc4f mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa323664a mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6932230 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa964fd9b mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9d1da3f mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa36c909 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafad795e mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1202b3b mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb346a5a3 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3d7b70f mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb962e5d5 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbda39f6e mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc042b79f mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1665cb7 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc191ec60 mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43d4ef2 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61d18e8 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6614830 mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaa607c5 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb8791ae mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd79e99d mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf22dd92 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd02655ae mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7c87fa6 mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb9ba5fb mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0153c45 mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe10140e2 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5e0d97c mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe81064d8 mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba097c9 mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec26ad91 mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf210989c __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2274fe0 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf607a2e7 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb99c22f mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfed16a06 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0218093f mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04efd008 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x053457e5 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0632ddf3 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06e2e7cc mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xdbac95e4 enetc_mdio_write_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x43d6119f fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7c348baa fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8c2a55dc fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa32d64f8 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb50b107a fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd1031537 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd48a3935 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd86d1e27 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe56ba5ad fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xfcc4be1a fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xfd132822 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x960c00d3 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xcf8263a8 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1454dd6b ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1b8e0c10 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x451c857c ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4f99cf37 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x5d7b1162 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x18c7b903 otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x232c1a40 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x9440963d otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xe2fb2243 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x027964e3 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04becf42 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a1ae901 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b25f5f0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0df849c7 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f5a2f03 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13855b79 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16f29cc4 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17cd6a9f mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c2bd92 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x297358ce mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab15e1f mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2af5330d mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f155ebd mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30b2e775 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x313bbacc mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x314195c4 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x330fc2ed mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a362a47 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cd66fda mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e9713fc mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x410842af mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4183f6c8 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48d88341 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4db5856b mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5003db6c mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x547788b9 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5917eb44 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c64a97d mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x610c2bc8 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61ea48e5 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63d6f118 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63dd1da4 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63f55a5b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64e5bd06 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6da9f690 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6db8c5ef mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe9ed6c mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x717672e2 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x732f0928 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74fde4a6 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75cbc504 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75e1fe3e mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76b8a2e5 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77212003 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79140c13 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cef046e mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d89d53f mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x801907a1 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8219d126 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83234c02 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x838c3240 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83ac23c2 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84b5151a mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86ad57d7 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x883257fb mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8aa76172 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b29f161 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8eb91ba7 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f929a28 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97080952 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x992a2ad1 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c328490 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c820ebb mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f2f1e64 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa24edc8e mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa463c2f6 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa63b5bda __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa82b52cb mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa6fed57 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa76f99d mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabe6fbaf mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaccdf193 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb31d37da mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb639ed42 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6bbf109 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8ce9706 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcd25082 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd0ef9d1 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfa88275 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0f76bcf mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc11b12f4 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2086e99 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2601771 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc568b548 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc73dee11 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7f0b9f3 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc960b866 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc976970d mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaa28c78 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd05a4e12 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd25be847 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd67cd6d2 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6cb5b7e mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd784afc0 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd96eb9bb mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaccb4f2 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb38d39a mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0f2b6d7 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe158d5e9 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1e904d5 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe356eeae mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe44be03c mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5cc6b22 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea326fae mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea67d7e6 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaf7a554 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef0df0c8 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e54033 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf22ac203 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4270c05 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b0999f mlx4_put_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf50ca12d mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf63047ba mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf852b097 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9cf56f8 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa9796c6 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbe0c8d3 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd3f7f6b mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe14fef2 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe453cf5 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff667705 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03e5f35d mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06ec7e76 mlx5_query_mac_address EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a1730f2 mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d5539f3 mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d68a01a mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ede39ed mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fbefe37 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1099bd23 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10accf87 mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12875904 mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x151b688e mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x157cbe08 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213fd940 mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2eb9292f mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37e14a1d mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x454b9891 mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a403258 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf5f740 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bde4477 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c36d62f mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cf90ff5 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64a1997a mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66de0130 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x674a3696 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b965e2a mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76227801 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77aa345b mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c7ac6e4 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b80e494 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd48874 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x128eb456 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x164d4a50 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x169d2963 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d0ff5f mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20b437f6 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20f8d622 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22fbc90d mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x235f4657 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23df2020 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x266aa60b mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b21a055 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c5cdc96 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f303555 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39afb3c3 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b62224f mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cd46315 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e7058bf mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42b47009 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43857109 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44ef3cfb mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fb9715c mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51207422 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51fd58e2 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5375d261 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6655dd0d mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cce4aa9 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x712cd045 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x744fdb70 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77718296 mlx5_eswitch_get_total_vports EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x892aa3ce mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a584e91 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c9f783a mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ec7e45d mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eed73fb mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92cef300 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x971d9d2f mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bdbb61f mlx5_frag_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c9fb718 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fe3a63f mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa03b4458 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2308b28 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3cb50d4 mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6534f66 mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa742cbd6 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa982601e mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa986603c mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf633bad mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbace66ec mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26517cd mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc815f32a mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9f788a4 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca0a6f18 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb59dc72 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb913c97 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f163ba mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd98fefca mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda735ba2 mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe52968e7 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e67393 mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6b428b9 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7e87f13 mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf13c25ab mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5cc0cb0 mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf824e528 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd384a6c mlx5_query_nic_vport_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa0cebb5d ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc2f75e32 ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd4097652 ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xed50a2bd ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x88319979 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89bc1d73 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fca5898 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x905e42a3 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90c926ca mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93354ed6 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94360e20 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d858558 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1a9cdcc mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa596c108 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b51197 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa93deb23 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa98618b9 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9fbac5c mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab4dc821 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab93a7bd mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad4c74f3 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb351faa1 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb76f3a07 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd99585c mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0688834 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f88e6f mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc706efab mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc89a12d7 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8bd096f mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccf49341 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd820bb5 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe18ce898 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5a3d837 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeaed84b7 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf31e61bc mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf85292c5 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf93c420b mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfae4c6a3 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfecee05b mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x113f83f1 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x72bd7c4d ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x99906289 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xee66bc2b ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1cb0da1c devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x048f2c1c ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x151568ea ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19e559a7 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c304deb ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fe7ee8f ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25adfe6b ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x398c9f6d ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f1a0d79 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40ca3cfb ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x444ad4dd ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4509965f ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x689d9243 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x693fee1c ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x797cef01 ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d00b481 ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f5eb192 ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83996d09 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x875632ca ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c986717 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90e44045 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97d456f9 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bc27340 ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6c46e53 ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae76d341 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1bec0c6 ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc42043f ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc0811baf ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc1155236 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc13858d3 ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc6f71121 __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd09db914 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd37dd2a0 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea8fcdfc ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf15f74e9 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1b377ce ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf7d6475f __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf86533b2 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9d0497f ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04bfc036 ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a182d87 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d03e1d2 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d23489e ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d23ba10 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2260664c ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x228c2993 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2aaf0ec1 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c83fc7c __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33b19cdc ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x355cddc4 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3da8a3b6 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e760517 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4174af40 ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46437c45 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x48d5056e ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5901438d ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64078f78 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b55c81b __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6cfedeb0 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72309989 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x782cd6b1 ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a2eb9a0 ocelot_port_get_mm_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7dab3a56 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f3d0865 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x814da57b ocelot_port_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c973cae ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9013f67e ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x938e0ad2 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x97f4b82e ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e7088a7 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8712352 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa28f08a ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0e10402 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3c69766 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb40bdbee ocelot_mm_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb487a215 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe3fa9aa ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc42fb4b __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd214386b ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd67bb5d9 ocelot_port_configure_serdes +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5d4c6d4 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea771333 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeee2ddec ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf66a5089 ocelot_port_teardown_dsa_8021q_cpu EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1bd81127 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x28de93f5 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3d07dd29 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4b676b72 stmmac_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5f1826fb stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9096463d stmmac_dvr_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc20dc921 stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc5195432 stmmac_bus_clks_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd88d0b9f stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xff4b98ae stmmac_dvr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2420e75d stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2efa8b1f stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcc8db03f stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd4c22333 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xece9b6f1 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xbfa0da66 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc684ef28 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x194dd702 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2074a7f5 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x685d0026 stmmac_pltfr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x74addbc7 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x762b2b38 stmmac_pltfr_remove_no_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x93f65c84 devm_stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9cb1405c stmmac_pltfr_exit +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa5f03bc5 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb2a2d1a1 stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcc8f16f1 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd5e125e7 devm_stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x005177f0 am65_cpts_prep_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x6ab9a4a1 am65_cpts_release +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x6c4fd7a1 am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x828c824a am65_cpts_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x88f300dd am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x904ca0a7 am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xc1e7d85b am65_cpts_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xd96c6d29 am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xe0cbdf78 am65_cpts_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x77fe5e35 w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa0df6ae3 w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xbf6cc27a w5100_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xeab2338a w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/geneve 0x8aa9c1d8 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x540e4665 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7d126f8b ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x92eebb95 ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xb60bfe55 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xeb5b015d ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/macsec 0x8076d7ad macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x42731429 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xacd25716 macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbd25b03f macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf73fd0b6 macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x0d4bfbf2 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/net_failover 0x34ec9912 net_failover_create -EXPORT_SYMBOL_GPL drivers/net/net_failover 0xcb0d02ec net_failover_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs-altera-tse 0x78b52458 alt_tse_pcs_create -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x352adae1 xpcs_do_config -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7186cf0a xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x74612bf3 xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b75bbe3 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa2f3c14 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xbeacf00b xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc8cfba3b xpcs_create -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x143c835b bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16c80aba bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x18ef9032 bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25e79918 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2b4d9db6 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31536234 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x41468522 bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4618d3bf __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48a5bc50 __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a7c9946 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x52989a79 bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x580eb22f bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c842e56 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x600b8cdf bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75eb5f0b bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x806b1e18 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8fe5feda bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9bc46cdc __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa5f6b9af bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xac4d4b46 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaedd9030 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb097d778 bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb09a2144 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb0bc5d83 __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5136468 bcm_phy_write_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb58d2a46 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7616005 __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda342e0c bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0c55432 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf0de6451 bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5dcdc29 bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb8a9e60 bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfce437a9 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfebbe9a5 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x30dc1f22 bcm_ptp_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x997aba3e bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x178a2908 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1ba03a44 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2ec6011c w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x54a3ae33 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/geneve 0x7a43d0e8 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0bc04b7b ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x341b1159 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x821f6541 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc72b7110 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xff64d3cb ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0x46493658 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x048ce876 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5cb5b674 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x92a88a50 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbfca442e macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x42b284f7 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xed1f9d33 devm_mdio_regmap_register +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1779b442 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x41a8c37d xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6590b55d xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6cdbd173 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x76683884 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8be2c63d xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b430bc5 xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x030a33a1 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x03d90a79 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x17ebb011 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c970a03 bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x20e26901 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x23bc85cd bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30ccdb8e bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x37b46ba9 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x39d68008 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3c0dc255 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3f1119ba __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48f778ec bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4f08544d bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x56fabec3 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72300476 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x761dd7f0 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x77a19ce2 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7b04f955 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x820e02c7 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9495d364 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9625809e bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b1a9369 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e277782 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e4ad2e7 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1f3bfae bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa4b81ef bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb11c3fe1 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb62a1af1 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8e55a7c bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcd8f9bfc bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd395893b bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd75cc793 bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe9493a92 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xea5b5afb bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf02b5fa0 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd7e741d __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe31083d bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xc42d2e00 bcm_ptp_probe EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/tap 0x002ddb44 tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x00de6e76 tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x2452c64e tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0x57b803e0 tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0x6ecbdf8a tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x78983474 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/tap 0x95067fd8 tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xbd751916 tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0xfeac0fed tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3bf0e708 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x57f31685 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xae05e254 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd1a7b964 usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe2d0fbe1 usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfbd64f2f usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfd41f0ce usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0b40c113 cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x298e44e5 cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x459b4b4b cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x651fac0a cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7c098291 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x81df70a3 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8863e7d5 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xae21011c cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb98f4300 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc6e9a1b7 cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe243a387 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xb6c95d9f rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x45517d08 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5dd72afa rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x884d4706 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x960e23e7 rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe0b4c72b rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeab48817 rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00ad84cd usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a685916 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0bcb50ab usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x17bf3fc4 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d190775 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2198b5df usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22256cb6 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22a3e822 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24d25b48 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27fc2135 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x370b0c8f usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b8fc5e7 usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3dce71c7 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a6f262a usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5402add2 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f236adb usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bd7cf26 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f13680d usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7849d3e4 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x791cd15f usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79480071 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7b08e286 usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7f5f9f87 usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8060d810 usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9aaea90f usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c4d85e6 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e4dd5fd usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xab6d41e7 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcc673c5d usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf018166 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd7d54c6 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec6fc10d usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe2096a9 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe5f8ad5 usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x84be10b1 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd8402e28 vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xd8de797c vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xdf8ded4d vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xa3862e9d libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x148dec97 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f7cad9c il_dealloc_bcast_stations -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b39d7a2 _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc456b463 il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7259ce8 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xf9d23956 bcm_ptp_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x1c93235c smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x343e320f lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x78404638 smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xccafc945 smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xcd8d6006 smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xd7d6aa3c smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xe518f3a2 smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/tap 0x3059f1e2 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x66519293 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x69550870 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x88fec0e0 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x9479dd10 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xca66fae1 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xdb5620f6 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf4cc0131 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xf8aec328 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0735132f usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x652b2236 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7b8987e2 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x85baf63b usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9d920bda usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa84ec6ed usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe156cb2d usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5ebbb85f cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7ce23a12 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7d8e874b cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8a4434fd cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb793166b cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc767d0ad cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd00c294b cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd30a64bb cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe34f5c74 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfbdfd1e7 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xff9b6b5e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x752337fa rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x48ac3e6d rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6327ed34 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x648fbff8 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6c55cebe rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8358b4f3 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf6269a27 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0324d5b4 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x03c81964 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0706e431 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08b17730 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c6a3382 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e5fe036 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11a7c622 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x12ee5662 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1964a786 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2218fc43 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x25185173 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3488cd28 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43d9d4b8 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e9d7ee5 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ca251a9 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f89e27b usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bb94871 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x81cd8b5d usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83886b5a usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8418590d usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84c79b0c usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa283ed53 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa676a380 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabc27b30 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae15813b usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3cff556 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc2df1d07 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd908e20e usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe300031a usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4626557 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe88cc769 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec7fc60d usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed3d8922 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffc4f48c usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x31a3503f vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x9c04f0fe vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe827ba38 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xec46791d vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xfeac1876 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cf6de3b il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x544621b1 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66965a04 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95426bcb il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x990f2e9c il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13863121 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443a0ac3 iwl_fw_lookup_notif_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x00a983a8 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0bab4bcb p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x43e7e61e p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xab8f9a62 p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xbb610147 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdaba4f71 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdda5faaa p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf4cdb545 p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf97d104e p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2a3d982c lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x36c6e247 lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3bb410d2 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4b402a92 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x50e76aed lbs_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x556d1f5e lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5f32f926 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6558efe1 lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x66fd2a5c lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7f9b62a4 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fc4c1d3 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x93ebc484 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x988b4b31 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9d982450 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xae1afa44 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdfe7b822 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1dff5eb6 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x22a97bc7 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x48fbfa30 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6155b23f p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x798a7914 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9274380f p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb11abc11 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf14c9351 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf5be35f7 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x04232cc9 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x05a9d479 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x05be7782 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1516b7ab lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1876992d lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x30034186 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3bb64efd lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x53bdc8cb lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5413f676 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x80844b73 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x91e805b4 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9dfa58f1 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa0825aca lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf0e07516 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf2ca2c41 __lbs_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x49d85a84 lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6bd07a19 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6fa59d20 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7565a159 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x823c5b4c lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9719e4f3 __lbtf_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc7a0c7a0 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfd510599 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x07d1ef7d lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x47ca769c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4bf273aa lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x77462ee2 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x89c92657 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa2b7327f __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc5cc5877 lbtf_cmd_copyback EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd32a4a3b lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0fe7360d _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x117e2698 mwifiex_handle_rx_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2020cfea mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x29135569 mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x387476d6 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43dba5d6 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x45b37686 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x46eb3eec mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5fbec8cc mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x63b3b7c3 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x690cd7c5 mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6c09a3fa mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7951d2f3 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x889b2f30 mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9863f62d mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa5d8d764 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb2fe9ee4 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbbad35bc mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbf5e13aa mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc4e6636a mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcda4c28a mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf10cb679 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x01865949 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x047556ae mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x06b94f71 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x08438d9a mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d78a825 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x14496fef mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x25ae0080 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2e1e11b6 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x33e38c9f mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x39df04c3 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3eb6f314 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x571acc5a mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5cf9f4e6 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x655d61c6 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6f6492fa mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7c4a99a7 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8dd0c9f6 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa492bdaf mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb61c8101 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc3ae1479 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc89fceb6 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcf6f0e2d mwifiex_del_virtual_intf EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe61ddcad mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf2fed6f4 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfb0883d7 mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02e4abde mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03ddb5ee mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x055bf5ff mt76_rx_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0640156d mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07a5f4b5 mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a541899 mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13535b61 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15ce6860 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17444f24 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe46d0e2f mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe97978ca mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05852de8 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08d903d1 mt76_dma_wed_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c9cc7f7 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ce7665b mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f325244 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f70f752 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x116b1d00 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12742957 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13f3e1d3 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14579018 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15d1cda4 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f1b23b mt76_rx_token_release EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1993c83e mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18fe592f mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x190be4d8 mt76_seq_puts_array EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8ac718 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2706c4ac mt76_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2845da90 mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x292a0fb3 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3251c04e mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x370a1073 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38481a0c mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39ae7474 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3adf1788 mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b471309 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d95c903 __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e999d9b mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41732964 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b333f84 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x548e552e mt76_queues_read -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5499aa7d mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b25a0b0 mt76_stop_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dd32724 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5deb876e mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61b979d3 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66af736a mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6a4baaaa mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b00e2ed mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d828ba4 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x715feba0 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7600ed9a mt76_mcu_rx_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x761fed59 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x772fe9dd mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d99a6d6 mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f545e8c mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25093fb4 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2953acd5 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b5157fa __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3b9e1c7c mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3dd53d77 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x411c0e89 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x485fe427 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x497827b7 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4ad76673 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c0e5018 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e708809 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x526df29c mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x52dc6db7 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56239194 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5a03ffca mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b1cc37a mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b452b7e mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e24c8fe mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ee1f3d7 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60ac28b2 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x631c1403 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66d62beb mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ac97888 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b374715 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f55500c mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73e1ae1c mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7cf7798a mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d9b6939 mt76_init_sar_power EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x85fb33bd mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x869e52bf mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88190874 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88d613f2 mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88db6548 __mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8aa204bf mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e6bded9 mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x927d5a95 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92a7ab29 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93f8c4e1 mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94d45784 mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94df367e mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94e926c7 mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9879dc54 mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa049318c mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3071ba5 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5e70618 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6ce089e mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaadba14f mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaff6fff3 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb16840e9 mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb2e242b4 mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb64ee8ba mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb6f9cadc mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbd0918dd mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5e55e1c mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81c599ab mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81ed85ba mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82595158 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86b78e25 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8838ac45 mt76_ethtool_page_pool_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e7bd1ea __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x914ba288 mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92159024 mt76_create_page_pool +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9221c765 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9364c2f6 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x98ec7e08 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c6134dc mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d28c26e __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1cc47ab mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa283fb08 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa288d4e8 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa350096a mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3ccabe6 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5d59fd1 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa72ea261 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0874eec mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb608bb75 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbabc3516 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf20bd83 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc1a02bf1 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc594058a mt76_dma_cleanup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6904382 mt76_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc79daf86 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc7a40839 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce0f7545 mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce27d2c8 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce2dfea0 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd47db175 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9cbe275 mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe004746d __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcac06536 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd36b883d mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd6678181 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd787c0a8 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdaf08bf2 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb0ab0a8 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbf16092 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdce9cdc6 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe004a8cc __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe29d3a03 mt76_tx EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5e3b764 mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7fa3613 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeab1ead3 mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeac591a6 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6757972 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf682b920 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf8e928ae mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb2be783 mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfe2446f5 mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xffbea9cb mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a7ae1c2 mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b5ad61a mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e6eb5d9 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x103001e3 mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17e13696 mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x187f7fe3 mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b931412 mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c00152f mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x202f579f __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23fe7910 mt76_connac_init_tx_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25ba0b45 mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x26d8436e mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29e14cdc mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x304b7f32 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33119f7b mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33366dfc mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3587a772 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35f2f423 mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b9641ea mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3fe42e90 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45e220af mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4669ede8 mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e03bfc9 mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4f9aff47 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x50c34143 mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x556f9a29 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5fa13495 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6923a3f3 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e9a7cbb mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7091fadc mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ce309a3 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f18094c mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84dd94da mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x863c436a mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8652ed84 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x894d56c2 mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b170df4 mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8cde4800 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ee3c8c6 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe44f19df mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe51d8e68 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5986631 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe599b34f mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7205bc2 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe73b05e7 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe792d950 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7efc8e8 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe918d940 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea0ad6b5 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff8951c5 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x00a35714 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0187570c mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x040a7364 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x065e39f2 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a25337f mt76_connac_gen_ppe_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c22832c mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f63205c mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1151009a mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x161bd2d6 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18d19a77 mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d32ae53 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1db31b60 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x24647dde mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2cf34409 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f2b87b3 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x306c8803 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x335214b9 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x340638e1 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35b3fc70 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x375998f5 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x390719a0 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c597a34 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4535152d mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4756e989 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4824c5ea mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x486f42e1 mt76_connac_get_eht_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fa3f588 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x512245eb mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x513bcbb9 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51408b29 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c096ab1 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x61b55de9 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62d42290 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x648c217e mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64b8cbf8 mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x681b92cc mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6875781c mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a2e4858 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7baf474e mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e58acf8 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8574c773 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86fdb612 mt76_connac_mcu_sta_wed_update EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9489e5e9 mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x974dc9d4 mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ad66f85 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9fa1bfff mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa18fb530 mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8c9de7f mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa91d46dc mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb06c5d13 mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb2e14760 mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb974dfd0 mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbdeef0f3 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbe9cac8d mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc92ce014 mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9e09616 mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca3e6d8f mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcaf0b0a5 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb03ee0e mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcddf246c mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcff14c4e mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd16bec85 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2a25290 mt76_connac_get_he_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda6d9bfc mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbf488f4 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0aa8fc2 mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe10b49e7 mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe27bfffe mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe317652f mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe38f173f mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe419e3f0 mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeb4ab7ab mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xebb6af70 mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeccbdd2c mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed14b22b mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf27e2894 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa5726ad mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x184eb72b mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x47d075f2 mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4939c092 mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x51076265 mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6c2af22d mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6e909a8a mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x881f2cae mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9c8a3349 mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb6c0f027 mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xba7f1dd8 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbf79d21f mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd3a84874 mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdefc63f5 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe2241107 mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xea58e7a9 mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xffe64b3b mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1b012652 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x43640b09 __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x44f1cbc2 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x54d111d5 ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5f5a2f56 mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x78ec289d mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x82a9addb mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9d90285e mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xaee1a818 mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xafa4e376 __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb643c20d mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc978e568 mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd037698d mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeea10a6f ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0832365d mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2be5cec4 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x313676e7 mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3a74fdc1 mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3bb2a8c3 mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x50602dde mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x640101fa mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6c7c43ad mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6ef73630 mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x725e3278 mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x764ef6ec mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x76f35d97 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fc945db mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9373d22d mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x941ed92b mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x99ddac3a mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9dc07cbd mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa7ce7e0f mt7615_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb0e70de1 mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb1683c17 mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc15e269d __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc1a567fe mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc59b106a mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc69cdfda mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd0001579 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd71a1893 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf105086e mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf3a03f23 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x7ef39014 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x90db229c mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a7b4ece __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d6c0ba9 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9e413ce7 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa1865a77 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa367be1c mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa3777717 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5d2a46b mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7698164 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa937883c mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xabdd7eec mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xac5bafed mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb145bbee mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb314b2f9 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb7e0ccc1 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc1ed118e mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3d346b7 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc962de32 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xca77214a mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd6ecae0 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd48f8eed mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd753f2f6 mt76_connac_get_phy_mode_ext +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd8df793f mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf7fbb17 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdfc7da6b mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe068af62 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe50ad7e5 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1619f94 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf43338c4 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf5f39521 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf709c0ec mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf97a34d5 mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa73af1f mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc303979 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc6109a0 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x003eeefb mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x07fa5c34 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x123483f0 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x429cd821 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5adbb670 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5fbab643 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x657f898e mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x73c98385 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7c5fe745 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x805a919e mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8d7622a8 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9d1ea7ee mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb267b526 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb7f3f133 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcb5d75f8 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdf0ee563 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1a1d85b8 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x430ccc79 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4be2c5d3 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4d6acf09 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5eddf0d7 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9242c366 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9447cdaf mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa3a567ba mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbef6ddc8 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd3da6e0d mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xda6a5b02 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe9fc4ed5 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf5f94d20 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf9392ccb mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x03099f0c mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0fde5647 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1226ab3a mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x221e88f4 mt7615_led_set_brightness +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2ab2da3b mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x337c0368 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3a6b6915 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x40582b04 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x591b77c2 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x60d8f8fd mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x64b09e34 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x76bf7398 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x815ed8b8 mt7615_led_set_blink +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8b33d7fc mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8e85b4b2 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ee3d2f5 mt7615_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x922762bb mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa3072b59 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xac380f4e mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xae6747d1 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb4070340 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbc9cbfe0 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc73ce4f3 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce6eca81 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce9aadd6 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd9b79dca mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe6dc8fc2 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe8f79ca0 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf09488c5 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf29904bd mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x158da7d3 mt7615_dma_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4a3ca7bc mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x5cda0d18 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x883949f1 mt7663_usb_sdio_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x8af7f35e mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x30796094 mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x408e31bf mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6cbc2aeb mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x703c74c9 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x739c6aa6 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x83949564 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf34f4129 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0410953c mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0927b4e6 mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0aab112d mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x167d0b1e mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x192e4787 mt76x02_edcca_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x275c2a2a mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2eb53f0b mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x321b1413 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3cde91b4 mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d513707 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ebfe959 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43997e3b mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4809941a mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48fb7f4b mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5328008f mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x554ce600 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x555787c5 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x568c0059 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59c16489 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a042eb4 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3eebb648 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7d23f228 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb7c50db4 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xd4bb6687 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x296b7d6d mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4b836fff mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x55434086 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x57c6ba7c mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa6f1e43c mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf0e9d622 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xfd73f852 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01a41236 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d13daf5 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x103843b7 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10e32ea4 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x13ce7baa mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16b7c5a6 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x174e1351 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d0f891d mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e30cc99 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25c1585c mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x260a544b mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x264612d0 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x26800d51 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29f56690 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2bf825a2 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2db25020 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x304cfe13 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30c46236 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3bb38d37 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c15648b mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c4bae8e mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43807aef mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x440a886b mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x460133e0 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x46228793 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x469b0981 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x48cfb74f mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c138a9b mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e7813b4 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53f4a4f9 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x557b750e mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5af590c8 mt76x02_set_tx_ackto EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x62371e0b mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b73b079 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c8b0a31 mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x71abbb49 mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7309d2cc mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x735f056a mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e822891 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6823155d mt76x02_get_rx_gain EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79e5152e mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7ed4c2df mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81b482f9 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x881eae62 mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ff3a534 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b35d94a mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7b920b57 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8309ad9b mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8584cfac mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a2b7bb0 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a51308d mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a8df502 mt76x02_mac_setaddr EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91ed02aa mt76x02_eeprom_parse_hw_cap EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c4ee20f mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9dcc5f8f mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ff1879f mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1692fd6 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa39d9a96 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3e68edd mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6966849 mt76x02_get_efuse_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaba6c68a mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x97afbe58 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9c17ff73 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e222a65 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa13e29e8 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa400f589 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa5e95887 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9b1f661 mt76x02_sw_scan_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae1b27ca mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xae37dda7 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaf0cb2f8 mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5537ebf mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5677cef mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8ce0996 mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc01ac9b4 mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0b83a8c mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc368bdbe mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5d9abd6 mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd51c1077 mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd54e8a2a mt76x02_dma_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf1f3361 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0823be4 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe40f294d mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4606356 mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe98741bf mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xedf87fc4 mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xefca63db mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf115308b mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2c01915 mt76x02_mcu_set_radio_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2c56600 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf37c3af3 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf49e5b25 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf4b61944 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf67dbb69 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd1e2cc1 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0d72807c mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0f5c5b60 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x58f88dba mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x85590ae3 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x86acbaae mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9afe2266 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa806d774 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf853c9b2 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x06fb8477 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e3cd507 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3dc62413 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x475c50f3 mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6c55e7dc mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x78255fc9 mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ce52e6b mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa5d5b59c mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa76efa7a mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xabec8e6b mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xac3b330c mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xadd78723 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb652fbc2 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc637ee16 mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce1a8875 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd96fde06 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdb765252 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xeabb690b mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf122b340 mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfc597fe3 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0a0795aa mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x169e5028 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1d5986c1 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2372c9b6 mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2b4ca62c mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3158527c mt7921_check_offload_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x359488eb mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5aedce66 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x63d65091 mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6bfc404b mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6c5c1a99 mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x771e5b30 mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x86fd067b mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9a89839f mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa8608a9d mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xac8f3c74 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xafa981d6 mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb20a45c3 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc67da80c mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd3849989 __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd3e0ec73 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe2e930f9 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf49bce1d mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf7aa581a mt7921_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1acd114d wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3376b86f wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x795cce34 host_sleep_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x868b5ee3 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb2d0d65e host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdffd73e1 chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe27d4876 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb62afb3b mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbad95044 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbddd91ee mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc24c617f mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1143db5 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd419ab8a mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4b66bd5 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5509266 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8d9634a mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde18694a mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdff8e98a mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe63ce599 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee531cc2 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0ea368e mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf350a0ce mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb7bdab9 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfddab76c mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1ba33bfb mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2446f98a mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x381e691e mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x65866532 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb9c71963 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbe7aeaf7 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbfb0ddd0 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe2c33ef2 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x066b3d8d mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x14fcb950 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x169742f5 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x205dae88 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x21ceece5 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x36e3c175 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3915852c mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4380f5c1 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5a28e6e1 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x617c0014 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x81d1e7e2 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x85200d17 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8be36216 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa0c7835a mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa4970891 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xae1596f4 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbe902855 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe18d0b84 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe1a784b6 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xffc8120c mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x14fa08e0 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x22fb5254 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x329292c8 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3ec77b2c mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x43a4ae1c mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4e47d481 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x531c1d18 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x61651980 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6731f8b6 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6a0c8100 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6ab978ef mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6f5f2958 mt7921_get_mac80211_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6fdd4407 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x77ad19fd mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x792f49a6 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa58115cf mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb465c4f4 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb4e78832 mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc24588f0 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd245a5e5 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xee689ecf mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf9b5a800 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfa1808c7 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x100c4b0a wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5e422893 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x678e47f8 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdfb13137 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe412f943 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfae61aaa host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfb868f0b chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x308bfdec qtnf_trans_handle_rx_ctl_packet EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4e7238ff qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8b18e68f qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9b363c03 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb0984a54 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xc8986c78 qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xd6b7fed8 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0444e02e rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d3b5389 rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1103fae7 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a109e45 rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f044b52 rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1fbfa2c7 rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2010fd56 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b16332a rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e909fd8 rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x416dde43 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x43d4b4c5 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x44ab7a61 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4776072c rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54bf3476 rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56778d33 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x56b77b2d rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x63fd068e rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64bc6b76 rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d342e4a rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e0f3935 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x806611ae rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x81f13a71 rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x846a3d37 rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x849b471b rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x861b8e6f rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92f16a8a rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x95fba3b0 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a8ad79e rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2cf8270 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad623900 rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xad782991 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbbadd715 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbfc6623f rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc23f590b rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2d848ea rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc48246a7 rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf0d7feb rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdcb0bdca rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf31fe0e rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8f0ef58 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf043e7a1 rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf3a92edd rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf464400c rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4902aeb rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x195e3de9 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2801e27f rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2bcf3541 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x50e1623e qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x66c8be8b qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xccf47c6b qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe5ef1920 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfde855ca qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x072407d6 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0dd6aa2b rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x19f67dfa rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x24fae8e8 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x325d4058 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f98afb1 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40a68113 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4123ceb5 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x442c637b rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x445003f5 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x483d4834 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x492c25c8 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4b6fbf5a rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x51abe210 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x535d68c2 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55da77fa rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x698e27fc rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6a3501c0 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c4030d1 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6d41616f rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6eae0cac rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73c9bf4b rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x797b03a1 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7ddd000a rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93fb9733 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x975a10f3 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9bb64c31 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2c951a7 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa824f830 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa9bd4669 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3c3e01d rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb54027a2 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbcbc51b9 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbee000f4 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc38a7763 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc4824d20 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8d9f7e3 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc914af0 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xce6b4cdd rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd2a905bf rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb3a425b rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf804d300 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf8aae480 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfeb396b8 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x08283058 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1cf11a7f rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x213d03ff rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2682089a rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x424acad8 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x46596119 rt2800mmio_get_dma_done EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x50a9a755 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5a230d0f rt2800mmio_stop_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x740fc28b rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7cec0ac6 rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x915cfa81 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92a0170c rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x607bfa15 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x76c02c9a rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7f500c29 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x88d63357 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x92edf957 rt2800mmio_flush_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9be06a6f rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xaae52828 rt2800mmio_fill_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc1802337 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd42b5236 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xefc857cf rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf03f390b rt2800mmio_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x04a93ef9 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x06d1e373 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1024e605 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13d43ae5 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17436878 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18e32c95 rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1a5135f3 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f058128 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f2b728c rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x217cef82 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x229a4caa rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x291d4298 rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x298baf0d rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d565c12 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30eeee85 rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3394b9cc rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38499f58 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e650e53 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4d7e0368 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x51c4a3ca rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e32d693 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f29add3 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5fe3b6f6 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6c21170a rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6d263d24 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ddc798b rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73d857b8 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ef75829 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91b56f1d rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9fc78d23 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa22c544c rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa28818fd rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa6302b1c rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb473a504 rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8a3bf0c rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbd8ad834 rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc123ff81 rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc1833978 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd4584f6 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcdafb4fd rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd17f48d1 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd454b25c rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd97b8e5a rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdab064c5 rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe951de0f rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa9e4a84 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfbf6e14f rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x59954a7e rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5a962f68 rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xab295d90 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc3845a6c rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc706f181 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x187d0622 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa3cbac28 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xb9db69f0 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1592f2e8 rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f933cbd rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x22ae1881 rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2811add5 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2be8f7ef rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x310f3437 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3d75c92d rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x576ee428 rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x942f5293 rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9d24c178 rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca25b3f7 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xce3d079f rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd5b6e044 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf4375001 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf59e1fc5 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfcd945c7 rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x17e88c4b dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa508b726 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa880c489 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe907ed5e dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07efe53b rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x15c89e94 rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19ae7273 rtl8723_phy_set_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x24fcb4cc rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x270f91e9 rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x27d3b2d0 rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x39d4ae95 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c24a91f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa47b4473 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xabe24fbf rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe32d8299 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf48c1bdc rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfd351f8c rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfecf952b rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01e405a8 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0cf1917d rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x129d4274 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12f6d55f rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30bd0061 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30ebc67b rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3272791e rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39d30237 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e53cb44 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44b72798 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x48a82ab8 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4abdbe3e rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4b60a301 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4bbcf02b rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5499cf26 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e4cdc34 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x60d1647b rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67cee702 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6ac9ed6e rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x700e378f rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x72000e5c rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7dcc6790 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88c8116e rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89b74023 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa53a3c85 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xad0dea83 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaeb2cbe9 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb180345f rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb28801ee rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb2909f96 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb86f1776 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0c2d817 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc43234fc rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4510c05 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc5d233b2 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdc8871ef rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdef221d4 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2d15e8c rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe42a0ef0 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe68a6bb9 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7ec945b rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe911eef0 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9c2d05b rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf428db13 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf9022e9a rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa9eef0b rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfad1c07d rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x18f3c224 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x2262850e rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x5633f5b1 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x79375359 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xb513ec5d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x22cd0fec rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x37149639 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7db826ca rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0849735d rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x18241034 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1e27a4d6 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x23fca740 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x38c179bd rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3c136088 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x64b1f85a rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x74bc4049 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7d96b93f rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x82b84a66 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x87eb81cb rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x909d7d62 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa54e7916 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa745efea rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc4cdbe03 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcc070273 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47752573 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x483083ef rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91e6d92a dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb6ecd05 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0273f529 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0381ce20 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x075e5571 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14d7e0cd rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x18c7d0d6 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x275456fd rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a1aa21c rtl8723_phy_path_a_standby EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x43d6d085 rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4599ad1c rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4969e31f rtl8723_phy_rf_serial_read -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b12f251 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7529eeb8 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x41ae1979 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b903f7f rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a0ca6f1 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5c550e0d rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5df43eef rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6662381e rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x680c5b14 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6971c7d4 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x72678513 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ca9e32f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7d90aa80 rtl8723_save_adda_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c4c4537 rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8dd5faf0 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa024377b rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1324e14 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc07a39c4 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe01f5062 rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe210b568 rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe6ad67d6 rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf09aa051 rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf299e901 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2a7fed6 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf947aa10 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b77b1bf rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e3dedb4 rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1780607d rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bfb387e rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c422c98 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e09b19e rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb08dda5e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9ff5a5c rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc58a0e7f rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe4d9aaa4 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1452701 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb0f3709 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03dea978 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f988c0f rtl_action_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x29f4da8e rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e4106b4 rtl_swlps_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a5632cf rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f3920d3 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f5a4c1a read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33437c79 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33b9ffa8 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b4f21df rtl_tx_mgmt_proc EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f2336ee rtl_deinit_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ad8674a rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6aad8822 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c20d736 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x520aa4d6 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67881032 rtl_deinit_rfkill EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79876a45 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x896d2fe3 rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90b15137 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6eef741e rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75810931 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84393153 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84d9058c rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ce393f5 rtl_lps_enter EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7ddf028 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5a5799b rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5c2aff9 rtl_get_hwinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbe809e6 rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdfde053 rtl_recognize_peer -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf393739 rtl_get_hal_edca_param -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd034e6da read_efuse_byte -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1561c07 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdbdec9e3 rtl_efuse_ops_init -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc7e4dfc rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe21b1d2a rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98fe0101 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabf8b53d rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc675f7d2 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc6805d9f rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3a21c06 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4b1a4e6 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xec273c15 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7d81fa rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedde1e83 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd36024f rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0ca5ac89 rsi_hal_device_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8d01fc4a rsi_read_pkt -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9688d3d3 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc59ad5e3 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x19ec9b54 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3a8aa8fe rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x704c9b37 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbda06b3a rsi_91x_init EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd8864609 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xef838280 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x07f313a3 cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9ee697bb cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe6264f67 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf0875aef cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x120cf9d1 wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x406f6584 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcfb6d74d wl1251_init_ieee80211 -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04471d8d wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x15f3fa1d cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x86c6d789 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9441c907 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf4313586 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x610d730c wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8d3606d9 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb033ee74 wl1251_free_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x085c3a8f wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0880d48c wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09e67771 wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a2b41b7 wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ce348cd wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ff705b2 wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x19e2c946 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ce7cb77 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09cbd7e7 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c87b0bc wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d9bbd79 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f159e71 wlcore_probe EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2a08ec36 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2cad1fe2 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2da0a7ef wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34944b39 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x358f8ed0 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x399f5a57 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4224a1de wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4467f3cd wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54a70cfc wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c5ddf53 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62984e95 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x690bff44 wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x795f4524 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82332612 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2902a910 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32032f9b wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36a3aa9d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x374771f1 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e776de1 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4be06a13 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4eaf6612 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ec11267 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x555c0c77 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5700cea4 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x593b80e4 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5eeea0ae wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61ef05a1 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x66bda796 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e055c1c wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71844f65 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7caf4a4b wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81bb9d30 wlcore_boot_run_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x868a2443 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88c0016d wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8ce843af wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x95770d6b wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x980744a0 wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9909531a wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99608808 wlcore_scan_sched_scan_results -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3a4ae0e wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5b40dbd wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa8e8649 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5af29f9 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7928a87 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbac6f8d9 wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbf8bbda wlcore_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcdebe006 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd669cd59 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd782347c wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7bd52d4 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeebf1328 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfc4cc95a wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x85dafaf1 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x98b9c532 nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xddc2193a nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf44c3f02 nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2908f596 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3226860a pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4296f658 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5a790c72 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6ae5b56e pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa5a94d6b pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x86973b82 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cf65a42 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8da0fd78 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e8b0a99 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x926f3d5c wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92a8ad4a wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9453479b wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x997393b5 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ba0b7d3 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa28f6179 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3bcbfa0 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb96592e3 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbecb1a85 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc788ca4d wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcbf78077 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3114fb0 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdfd4bc5c wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe62c3ac4 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe82f2c87 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea3c4883 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf09c0c65 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x48c3abf8 wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4e2d27da wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x75cd466e wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x7a148377 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xd9817cc5 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xdd6d6064 wwan_create_port +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x278909b0 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x39ff9c5a nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x42aaa762 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa97a5a91 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x149546aa pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7d58b42f pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb1fd2da6 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbaf30ca4 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xcd3199dd pn533_rx_frame_is_cmd_response EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfeb4c1ef pn53x_common_init -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2b3705bd st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4183bf9d st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4deb5ab8 st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x541436d2 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x594c3122 st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6c9b558e st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc9ebc4a9 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf74aec9e st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5c9e997a st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x8cce0df3 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa2b3a44c st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdef4aa63 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe29cc749 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1fa71c96 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x34c63c4f st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3bc597b3 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6034ba2d st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7f3fef7f st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x81869f26 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc7da84f4 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf5fa1602 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0560b1fc st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x93e09d03 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xc75c999b st95hf_spi_recv_response EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2c5d841b 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 0x5f0213b2 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5e36a818 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8c12cf77 ntb_transport_unregister_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc270dc24 ntb_transport_free_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xc37d9036 ntb_transport_rx_remove -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xce54b147 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe7dd6f95 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/nvdimm/nd_virtio 0x501f3de4 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xdb4aa718 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x56277869 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x6156656b async_pmem_flush EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6397b090 nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e97d905 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x81a85c79 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xa762fbdf nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcd49cecc nvme_auth_gen_shared_secret +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xdcf3dd1a nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0201bb47 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x045f21aa nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0c0628de nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d34c8f3 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00b87fcc nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a2f2a26 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x10f2d3e7 nvme_unquiesce_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16415a9a nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x20f770b5 nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x21cc7ceb nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e884d2b nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x35d43ec2 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x393f70e8 nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3a018889 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3fb21748 nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46c0eef3 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x138732c5 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x20605d65 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x23b86503 nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27fcbedb __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e0e2575 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x31a62fd6 nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34559ef5 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f834c63 nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3fdeb838 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45d89a82 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49143bf5 nvme_set_queue_count EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b3094a6 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4da2f2f0 nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x508880ee nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5437424a nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58101d38 nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59a64ec0 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4e952735 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f99310c nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53255fbe nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x54084a2a nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a23730d nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64aa05d7 nvme_host_path_error EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x68f4dfee nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x740ee714 nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75189410 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78f12007 nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7901599e nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a71260e nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d71962c nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e8604d6 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x720ffce2 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x77902e37 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78321bbe nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79661122 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x797556ef nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c684b58 nvme_mpath_start_request EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x81f8a11d nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82b1afe2 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b486550 nvme_complete_rq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9236a94d __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98a9b19d nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9f8d3f15 nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4324da0 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xabd4c3d7 nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8a788e3 nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbcb74a5a nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc067c885 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc0d7205a nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc3a5557d nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc757bf0e nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcaca1647 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x873eb921 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x88a5f214 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b518ebe nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94218976 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9499b929 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95238d2f nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x97e0733d nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98082806 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ec76777 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fd85cd0 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xab88ffd4 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xacbdd2d1 nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xace322f8 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2bfaf5b nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd4ff922 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf58119c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc8c21869 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc91c586b nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb6e96e4 nvme_dev_attrs_group EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6e5f9da nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd753e95b nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcf5b965 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0f4c36d nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe190d30a nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3dab2f7 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe89dbafc nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9ec63e3 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xea8abd1a nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xef7610ac nvme_quiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf41301d1 nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf85333ba nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfe120f39 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xffbaaf8a nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0ffaa6bb nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1b3dabc8 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x24f1badf nvmf_reg_write32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5e4b4811 nvmf_connect_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6a060a81 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7498de97 nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7e6d9aa6 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7eb1c1cb nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8ae9d0a2 nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x976703c0 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa9d66555 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdcbb5c7a nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe67f25ac nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe95dfa7e nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb215b9b nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xedfa6b62 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xee2e0e8b __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6dc2f81 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xff4a611f nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e328d22 nvmf_set_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2b35d3e8 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2fc23184 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5a420cad nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x66a562bd nvmf_map_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x82a9cf6b nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xaa0b994c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb6aa301f nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd8af66e nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xde28e77e nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe3c39447 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe4a481c1 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf85f01f3 nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x21e609f7 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xe68fa314 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcc8a2d78 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xf2cef485 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x04f06d3b nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0542fd10 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x304e6dec nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x04088709 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x19c024a8 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x22152389 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3052ea61 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x325d20d7 nvmet_req_complete EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7ba9f4a4 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8b1bb64f nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x953dbb0d nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc426fae0 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc59bc258 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xde397913 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe7ca14da nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf7cf9007 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x41c954c3 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x47317d8d nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9147085b nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa152d72e nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xcb0b63ef nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe7bd8907 nvmet_req_init EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6d4167c3 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7a0263a6 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0xf8828565 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0xfb6ecca3 switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x38744348 arm_cspmu_sysfs_event_show -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xcd380fbf arm_cspmu_sysfs_format_show -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xef8b65b1 nv_cspmu_init_ops -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x12f5eb2a hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2269cd5a hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x36ce6b37 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0xc76793c7 iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x31087aa1 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x51365590 arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xc1d1d9a1 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xd5f29c93 arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1065f63b hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x188840da hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x26cd910b hisi_uncore_pmu_init_irq EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x48c23678 hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6d3cb074 hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x777edef3 hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x83cbaf36 hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8689586d hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9abef52a hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa5398d36 hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xadb67eb5 hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbce00f91 hisi_cpumask_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbf4d9001 hisi_uncore_pmu_add -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xdb9cbb3f hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xdbcf5535 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe90dc60a hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf0793af5 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3eea8e85 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4b1a4646 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5bdd0171 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6665baf8 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7bd26b9f hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x861032a5 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9712d63a hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9ea825bc hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xada4d9db hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xafd735da hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xcc0e2828 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd8ac3730 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe760d00b hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xedbb4927 hisi_pmu_init EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xc27652a8 sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x13eaeb80 tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3868de41 tegra_xusb_padctl_enable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x39458c1e tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3ddf1313 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3e3ea4d4 tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4c31dfa6 tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5452e9bc tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5860ee17 tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5b4ca62d tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x605297c1 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6b64e594 tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x87a1fb11 tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x92607487 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9d698d38 tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xab890cbd tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb9520e4f tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc1937eb8 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc6c462dd tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe67626ed tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x37decbaf sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x10679820 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x374fa986 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3adf9a1a tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3eccb51b tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x49533f8a tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5bb752c3 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5cccecb8 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x64ecb724 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x77fa7fd7 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8155ba83 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa5462969 tegra234_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa5cc940c tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaec4aabc tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb591ff49 tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcbf3bed1 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd86f3b51 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xda5af89e tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdd0de4fb tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xde5e155d tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe59a3c6b tegra_xusb_padctl_disable_phy_wake EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc20ec4e0 mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd78da63e mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xe7f602d1 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x50504aa3 lpi_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x7fd7b8ea lpi_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x92b125a4 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe9c74b79 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x43f689fa mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x738d2d15 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xf3ff303a mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x63788020 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xc7ee5a3f lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xa79f604b cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe0c51295 cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x05727986 ssam_controller_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x080bdbd0 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1cd18d68 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1e1460bf __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x225c204c ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3862d834 ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5147d68b ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x52cbd719 ssam_request_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x53829757 ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5e073ac7 ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x66a98361 ssam_get_controller -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7545aeff ssam_request_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7ddfe649 ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8511fc3c ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x89057999 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x91fcee55 ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x927839b6 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa60f92ad ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9a6a48f __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa9bb688d ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xadd5f1e5 ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaf96f811 ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbde7f282 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x06cdef64 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x13ba7532 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x15d6d9ae ssam_request_do_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x21bf7596 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2675d454 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x27210b48 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x295cd8dd ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3328da4b ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x381b25e2 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3cf8b902 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5140339e ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56a66ada ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6a248278 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6c36bff4 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x72d4343e ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x73229b8c ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7da294a4 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x981bc319 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d93abc3 __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xad8d5333 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb06aa94b ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb284c2f3 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb4021556 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbfaceeb1 ssam_request_write_data EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc5bee200 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xce718fd4 __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe36576c9 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe5e4f8d9 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe860313f ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf1754757 ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf24940be ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf6de063f ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf8881d93 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc95e1c57 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xce550133 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcf53e5cf ssam_request_do_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd87920ef ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfa263626 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfb348bf4 __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfd4e911b ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfee70a16 ssam_device_get_match EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x8d5c965a san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xc6cfc09f san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x44701b3b devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5f3d927a devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xddf6b5ce reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xf3ccbc35 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0daacac5 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8060a509 bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xc52dd83b bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x1a3088c9 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xb54652c0 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xea6da290 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x0eb172fb devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x1cc106ed reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa41bdf10 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa8be010c devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7623f95d bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xbe94f2a4 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xece7bdd6 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0d54ac8f pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xdc9f5d69 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xde3270c4 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0b9c873c ptp_qoriq_settime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x382c7efe ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x60c60799 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6e3fd630 ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x81ec46a4 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x83d0da88 ptp_qoriq_gettime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb2d1da26 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xc595f94f extts_clean_up -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfa68911e ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x02b80026 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5461f43b mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb06f4d15 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc8d36d5e mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdabd2de9 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x6bde388c rohm_regulator_set_voltage_sel_restricted -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1e4fc282 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6f3f77be wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8434b2f9 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa35dc8fd wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xce4bd16f wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf03f3bb6 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x3d9a64d8 wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2506c06f scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x3090432d scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6c17fb82 scp_get_device -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x724e899d scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x92e898ea scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa7b33192 scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xd8c0700c scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x01750bc0 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2f3c5eb6 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7580361b ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x789f473b extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7ddd3f4c ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x8267e9eb ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xcfa7ee7a ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd3d711ea ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x023f002b mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0d08d7ae mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1e447f65 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8ab38f8d mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe60d6565 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x17086253 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x46aaf8e6 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x64353baf wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x789166d9 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9b0207ba wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb2838964 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfd3875d5 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xac30cbac wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x33696dd0 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5392cecb scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xa9b35b5e scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb9c84486 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xcb556ce7 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xceed085c scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xd2556af6 scp_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x0dc81f9b scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x87f67215 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xa5386c2a scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xaf71caf2 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x117114f5 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x15b66568 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xde2ddbd4 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe9606c35 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe9f2c41b scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x4e3a4f4d pru_rproc_put +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x7ea426fc pru_rproc_set_ctable +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x8842172d pru_rproc_get EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x21989555 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x29e516b0 qcom_register_dump_segments -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3f0448ab qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x97fbd5f6 qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9837d025 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xafff989c qcom_add_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc93fe635 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2f190e05 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6440b4c1 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x81821520 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa0416691 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xa91bae99 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb478dd16 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb4814506 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc8100151 qcom_minidump EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xde1e9530 qcom_minidump EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x0166f313 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x194d8703 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6a8a6df2 qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7f3728e2 qcom_q6v5_deinit -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb006f410 qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb32858a7 qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc832c21d qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x19b9ce98 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x51ca0a30 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5f82d1f9 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6b8d83c4 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7f11c6d5 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb0197eb3 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd6cb3da2 qcom_q6v5_unprepare EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xb5f7656c qcom_add_sysmon_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x4dc60ddd mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xe7bc46f6 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x1b867064 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x0bae1d31 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xae1da833 qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x7c0a9b43 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x058a7fb2 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0654ed87 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09c157b2 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15e9bf31 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x179d6317 cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19948450 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20cdc002 cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x29c4d149 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x355b9b72 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43371687 cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45ba1417 cxgbi_conn_xmit_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b002982 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d2acfd8 cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x573e78f5 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x578eadf8 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e9fa22d cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5eb51b49 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68c05daa cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6935ac94 cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x796c44ff cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d511959 cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f599405 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x1811bd47 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x4fe311b0 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0x15f5d1ce ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00dc813c cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01a525c2 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06e69f26 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17f252fe cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f456102 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21d858c5 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2bfa916d cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30215ec3 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3438f084 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x399ae730 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42ddcd09 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4bd45401 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fc464f8 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5035050a cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x518e34da cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59bc7c2a cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5b4f74be cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6afd9398 cxgbi_sock_rcv_wr_ack EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x863b1cf1 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cbdbad6 cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e760478 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f632930 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa23efd35 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3524dfb cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7915db2 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab1c2f13 cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabfcec29 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb934cb77 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb95ca9d4 cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb89ab1c cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbeb505b7 cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4dcf67b cxgbi_iscsi_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcefcded1 cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd5f4673 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdeaa8427 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe409ed39 cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed66c012 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x872a9dab cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91e1fe2e cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97e7bd49 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99baef65 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1bf314b cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa49df835 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa97ec451 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaacc6bf3 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac6cbbfe cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2112bc2 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7daef6f cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb941a694 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfe84dd3 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc40fb42d cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc500a793 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9925b20 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcbb06b2b cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd02b1929 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9384779 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb7b4c5c cxgbi_get_host_param EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0fff66c cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6b5ec17 cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8b981a9 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x142fda0d fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x43c0a227 __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x578005a2 fcoe_fcf_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x62376e7d fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x66b8b4d1 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69931ea5 fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6b594334 fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d4ff5fd fcoe_ctlr_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x88ecbb3d fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xafdd161d fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb9e8f00e fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0779512 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf214ca73 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf39c7749 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfae7f881 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfcfc8236 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd72c2e8 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1977c9a1 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2249e58b fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3178e113 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3272e6e6 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4508f68a fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x51be6c47 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x788cf9e6 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7e3e9e97 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa18592db fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb3b2361c fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8f213e0 fcoe_start_io EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca8f0a57 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd37b5878 fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf1563a9 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca869228 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xee7588d5 fcoe_link_speed_update EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9090518 fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfdb6609c fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x0641703f fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x1dda6fe6 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x09946b2f hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0e51ef14 hisi_sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x120172bf hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x15a402a8 hisi_sas_sync_irqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x170342a5 to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x20be9b78 hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2c882ffb hisi_sas_scan_start -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2ebe3455 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x39264e48 hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf72aa935 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9cc7f51 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf9f1d5a5 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x9a0bc0a3 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xbd48fb4b fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x01b68370 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x03fba703 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0a090ade hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x104009c6 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x10e25c2a hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x12a64e4b hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2e475ff3 hisi_sas_scan_finished EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x40ac648c hisi_sas_get_prog_phy_linkrate_mask -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x49ce13f7 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4b7a2537 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x47ed1c8a hisi_sas_controller_reset_done EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6337af89 hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8db84640 hisi_sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x97fd19da hisi_sas_phy_bcast -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9d5120b0 hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa8987977 hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa8be24ab hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xac6be125 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x533a88fe hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5c6a66e9 hisi_sas_phy_bcast +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x62b213b9 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6c0027f0 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6f3e0c5b to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7566c762 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x78601057 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x82e38102 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x86b85b4b hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8ed4208a hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8fa69484 hisi_sas_sync_poll_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9c9415aa hisi_sas_sata_done EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb318cc90 hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb673e43e hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbb32bcf9 hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbd8ee580 hisi_sas_slot_task_free EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc4e70f1d hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd966b912 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcddb9b93 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcff7afc8 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd05e7991 hisi_sas_stop_phys EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe7742963 hisi_sas_init_mem EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf63fe61e hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d3e08c0 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6037224e iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7e23d9ba iscsi_boot_create_initiator -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x899acafc iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9b3a857c iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb98e3eb0 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xde0577d7 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x662c6b8b fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b123296 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0d8ded99 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dbc1e88 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x109e2839 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf8ceda35 hisi_sas_sync_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xff111ef5 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x07f232a1 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3025e9b0 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3c53a38b iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8088117e iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa912dcf4 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb93a8460 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc65d8c28 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x6635b0f7 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x041070c1 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x06c066c7 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a089a46 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b5278db iscsi_eh_recover_target EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1582b647 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b56181c iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21132579 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28638579 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29a34c28 iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31847e2a iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x378cc415 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a70e153 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x203c75ff iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20ed71df iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x282125b9 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c1ee4a8 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c62e0ae iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30f7c13f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x323a8c83 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36ad7690 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3801fdcd iscsi_session_setup EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4db107c5 iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50942bdc iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5db6939e iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6039b339 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62e95639 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64604c5f iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a70eeab iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d610e63 iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6edf4cf8 iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70bdf931 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x780be3ec __iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79999e03 iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ff15d58 iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x864f62d0 iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b8f0f35 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c83e024 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ca5b161 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dcb91e1 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41782813 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x44fd7e16 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x453894aa iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x455c1453 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x461fc829 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5364b87e iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59954db7 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a449d66 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b672f74 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c2ca021 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e482bd2 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60b5ba2d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6fd05815 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76826082 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7880dccb iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x790c99af iscsi_session_teardown EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ed220a2 iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90bb36d1 iscsi_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x952afb6d iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95d6abe1 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fd1763d iscsi_conn_bind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4e1b331 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae4c8f0a iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf812bca iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc1d3dd8f iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3014e39 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc31d41e3 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd014c337 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd65191ff iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7cea9ec iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb1e4238 iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb2adab3 iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf4ddd22 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe080c1ab iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe669ae16 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8da2b790 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92034f1e __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x920d9fda iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9dbc6f6c iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1905822 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb57cebc7 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb695ab21 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1465f79 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd486b490 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd52878dc iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7f52d81 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6f601c4 iscsi_suspend_queue EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee5a6a6b iscsi_host_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb4ea315 iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x07a0a303 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08db24ae iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a161007 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3a403e3c iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ca73b54 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x529874b1 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5326e01f iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x72646a54 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x80c85864 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x91259637 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93f40622 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9688e2db iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x98a679a0 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbfd1e03b iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc53e86f2 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc81dcf92 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee1c8344 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01479a2f sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x050462e2 sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x12ed0a89 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2113942c sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28aaa2aa sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2986788a sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b3c8d1b sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e170a8d sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ebe7ec0 sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54ce47de dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5ad42fef sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x638e31e0 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65e231da sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x838c17bb sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x846cf045 sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x86b3f5e2 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x86eda0a8 sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87d26dff sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9dd72e4c sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3df2efe sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa4bf9ce5 sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa57a23c1 sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab17b1f9 sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xadcee7c9 sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae4478f1 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaea37140 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb364cfc3 sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8170316 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba4f3a31 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc321755 sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc36b91de sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd662f8bc sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdac7f6d3 smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd3a45aa sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeef44284 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf41a841e sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x2fcb9729 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05ede287 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07cfa786 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13141959 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14845a29 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b5dd2a7 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b90a275 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c779fda iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c531900 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33992b2a iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36ea7f4e iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37173b4f iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3975d048 iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39cb4833 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d8a67e9 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4022acea iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d36b136 iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50738b72 iscsi_unblock_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53e941e5 iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56b1cd7c iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeed3c772 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefdecad0 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf47bafa5 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffa51d06 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f8bc2c6 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32837309 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x386d0690 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5e154521 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6054a2f2 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65f8100a iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6e9c172e iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a7bfd60 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa66e1d01 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb851a803 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd9d3f08 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbf0ef116 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd79e65dc iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeca1f307 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf74da775 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf8a0d9ae iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe6028f9 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04b80e6f sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0695edc3 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x06b96611 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09a32ced sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x100562e5 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x160d348c sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x19588d7c sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b729c5b sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24698193 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x297eb794 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x36cf85a6 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b2a2651 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4348c97b sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x46521e2a sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56c93fc6 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5930740d sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5f71d72c sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6e21c29e sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72bde8b6 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7609cb6a sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x781c6f6a sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x80949d10 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x83a9da0a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x878a7317 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9563bf30 sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x97d50392 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9d521af4 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc708ce57 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd421384a sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd8b371be sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xddd7f610 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2adb8e0 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe69d9f57 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe845e987 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedf482f9 smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1610fbd sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xdca1160d fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05e53655 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ac658c7 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ae501b1 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0fb88925 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a702ed4 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ac4e3a0 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f371d59 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ff5d56b __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x211db0f2 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24192c60 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24461564 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x363ef721 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39a1d000 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f2a6e48 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4575d382 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f0aeaa7 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4fd024db iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52e8c826 iscsi_alloc_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b984e8d iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67f9a46f iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x596208ed iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64a07038 __traceiter_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6be8d01c iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e2548be iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f37c460 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6bb4e538 iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cf916fd iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d217b67 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x778666c9 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79d57e66 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x813a2582 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81eb483f iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x821fdb19 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 0x8681f4a5 iscsi_destroy_all_flashnode EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88dc0d99 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d445fcc iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e2b389b iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90d5ec9e iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x954dbd7b iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ca0bbfc iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4dd292d iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c9f175d iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e09aabf iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91688cc4 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9541b24c iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ada855c iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa13200b5 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1f40d0a iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ac06cf __tracepoint_iscsi_dbg_sw_tcp EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7320a81 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafa492f8 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb32662a6 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb96d4970 iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc258a260 iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcd85cc65 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce139837 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcef1cedb iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0318619 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5067019 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd55629b5 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6a93c32 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbc19bcd iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc74d872 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd45e447 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc396b741 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc50f3fff iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6264e7a __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb892aa4 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc63eddc __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0f36fdb iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda09b986 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde7110bc iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3f14b63 iscsi_create_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebe81385 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf09416b8 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf828f919 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb330f56 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x06ee1417 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2f4e4b34 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x31d773c4 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8b9712e9 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe96c2ffe iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0051a7f __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6063ac7 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9cd8f28 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfad29ab4 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0e62e8a5 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x11d1d655 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x60c7fb9b sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8175c67c 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 0x776fcd8a spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x234bd067 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 0x1824e43f srp_release_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x21bc8ce0 srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x77c07221 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9b6320a3 srp_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xba54ca2a srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfd61d056 srp_rport_del -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x05982562 __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3a3a3b4c siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3e2dd881 siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x658ad811 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7f124b10 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd9da7160 siox_master_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x210968fe slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3d6e0a06 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3de2f2df slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54afe133 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5d7a4254 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5d8f4e48 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x82c05032 slim_xfer_msg -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x831d7df9 slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x83412834 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x85531e26 slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8cfc9143 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x98693062 of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9eda77dd slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa15bd703 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb875faf1 slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbba75ae4 slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbe36bac8 slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf73d275 slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc39df6f0 slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd031a627 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd1060f54 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe0dd9fa1 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe1b4991a slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xef1a1984 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf1815b45 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfa3f479a slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x44824e83 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x35518702 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x598051cf srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x672cda2c srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x80eb60dd srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc6b4b02f srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe9996ff8 srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x17673a95 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3c2ea5bf siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x59dab7b1 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x62bcef61 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd502221e siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe6ddcdd3 siox_device_synced +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x08acbaef of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x12c6c75a slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x14003333 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x17fa43fd slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2739585d slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2a9c0e04 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2ff79d55 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x36e67363 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x404a2c75 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x66ae2db0 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6d69c9fd slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x75d8d1e2 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7798e484 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7bcd0e38 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8b1eb80f __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x963e8eb6 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9db10d47 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa5874ca3 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa6fe4cb7 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaeaa8723 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb40c319c slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc2bb3d20 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc8346360 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd009929e slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdd987205 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe810c39f slim_alloc_txn_tid EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x3470e2e4 apple_rtkit_start_ep -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x3f1c4f65 apple_rtkit_is_running -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x47254202 apple_rtkit_is_crashed -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x4c7624dd apple_rtkit_wake -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x58cdb549 devm_apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x5970fb7a apple_rtkit_shutdown -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x5c8563d0 apple_rtkit_send_message_wait -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb3a2dea3 apple_rtkit_quiesce -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb6062055 apple_rtkit_poll -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xbede0288 apple_rtkit_reinit -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xc1674a08 apple_rtkit_boot -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xec109277 apple_rtkit_send_message -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x5033f88f devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfd708144 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x1676ff21 apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x24c8b899 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x6109ae9d apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x7268aacf apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x7e85921a apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x8482ac80 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x943cd16c apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x9ae5dd6b apple_rtkit_poll +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa990f5ad apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb621ba85 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xc8f20ed7 apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd2b701f7 apple_rtkit_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd5bff9af devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd7fa1c49 apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xfe92fccc apple_rtkit_idle +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x59773809 devm_apple_sart_get EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xbaec16a4 apple_sart_add_allowed_region EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xf2253fbc apple_sart_remove_allowed_region EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x26d9366d dpaa2_io_service_deregister EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release @@ -16885,799 +17284,854 @@ EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xa6cfb6f7 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb2d372de dpaa2_io_service_register EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe0111c57 dpaa2_io_service_deregister -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xf87e7f28 dpaa2_io_service_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x21b1de6d gpr_free_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2737c88b apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x51ec9f2f apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x690a1d8a gpr_send_port_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x71398cba aprbus -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xc37e14e9 gpr_alloc_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xdaee4016 gpr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xf2851541 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xd5e14a69 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x0aa67030 mtk_mmsys_hdr_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x182ab058 mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x301acbd9 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x48f2d591 mtk_mmsys_vpp_rsz_dcm_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x49187f0c mtk_mmsys_vpp_rsz_merge_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x4e5cf6de mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x653536f0 mtk_mmsys_mixer_in_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x7edeeffa mtk_mmsys_mixer_in_channel_swap +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xc074814d mtk_mmsys_merge_async_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x1736cec6 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x2fcc9ff2 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x4e2f3c90 mtk_mutex_enable_by_cmdq +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x7534596b mtk_mutex_write_sof +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x77d0ebbd mtk_mutex_get +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xfa95f801 mtk_mutex_write_mod +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x1bd1f578 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2f29910c gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5a8037a1 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5bdb5b90 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7b5f5397 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x9b0bece6 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xb8d93714 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xfd4c42c9 gpr_alloc_port EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x1bd2c7e9 qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x49eb7593 qcom_mdt_pas_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xdd9097cd qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x03800c3f qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x212fcba7 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x36f7226e qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x4a050af9 qcom_mdt_load EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xf272c6e9 qcom_mdt_load_no_init -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1fdd3d59 sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7d1f4cf1 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xb435c5ce __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x499cc21d sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x39a454d9 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0x733bf6b3 devm_pmic_glink_register_client +EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xc161d729 pmic_glink_send +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x0a1e76bf of_qcom_ice_get +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x50d28b20 qcom_ice_evict_key +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x82936acb qcom_ice_enable +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xc994d57b qcom_ice_suspend +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xe4280d97 qcom_ice_program_key +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xf0e63b1a qcom_ice_resume +EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xe583bba3 qcom_smem_get_soc_id +EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x108f38d2 pruss_request_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x227e3b6a pruss_cfg_gpimode +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x25f1d085 pruss_release_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x2b18bb37 pruss_cfg_miirt_enable +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x2df40ba2 pruss_cfg_set_gpmux +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x6bd380a0 pruss_cfg_xfr_enable +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x87a1e6c8 pruss_get +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x91819ebf pruss_put +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x921bf4ae pruss_cfg_get_gpmux +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x96c40d99 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xaf3a8305 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xf8a9106a sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x65834fb3 sdw_cdns_debugfs_init EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x84030972 bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xa17a84cc bcm_qspi_pm_ops -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xc4fcbcbd bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x019ccd75 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1f8200d3 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x90fa5c61 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9a3a3433 spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcf74a9ec spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe920b274 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x391aa4e7 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x731bcb32 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcfcd3629 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11e76bdc spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x211b2244 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2370d49d spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x297dff39 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32fc5206 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x38db1ac0 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x47b2d72f spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4d3cbc3c spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x530b94d1 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c99c9c3 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75a48398 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4db962a spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaea24654 __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaef6c1d8 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0464cc2 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb3d18b1a spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb57887f3 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc76b1c2e spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3196aa2 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x769f2745 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1d05ceb9 anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1fab0d28 anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x30e44f94 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x40a746ad anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x56ff5f85 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x63d63d74 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x808f458a anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x83494a91 anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x89880a04 anybuss_client_driver_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9734b898 anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbcdd42b4 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe81f0437 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf33f8556 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xde086dfa altera_spi_init_host +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x2b5e92b8 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x5d539ec2 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xf56ed19c bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x35e5f792 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3c71cb7b spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6cdafdce spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xaa5f4dda spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcc62eaee spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd845490b spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2e940807 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2eb32c52 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc4744eb5 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x111a5fb9 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1e16303f spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a3572bf spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b97a28e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5f36646a spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5f3d1b2f spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x70f1d116 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x883abd9c spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa46fa9c2 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa57269a0 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa792bce7 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb2515164 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdc59578d spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe41eb5c1 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe63d4878 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe84fc08d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeb95a9e2 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf543c233 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xffb73372 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x3b101154 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x11a94509 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1624ced0 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x21ed0b01 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x26a4762f anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x28b466fa anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x32cb3189 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x45d7534f anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4c3e7f1e anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x682d7c63 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x76568903 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xb45f36be anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdd2ce522 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe5fbe16f devm_anybuss_host_common_probe EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5437a785 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xbcc09f74 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe253f828 fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf4e92444 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2de24502 gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x36282fa5 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x376428b1 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4341136d gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7afa7477 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa7141114 gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xadacec90 gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb9f714af gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc6650c81 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd8c5d058 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe17eb742 gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe2773ba0 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf8c1882e gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1ccfc59a gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x24e09142 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x324f4166 gb_audio_gb_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x33c09dd3 gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x35db3211 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x907b9087 gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa88c7b14 gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb2e1ff5c gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc8a31b90 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe416636a gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe7ac43d9 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xec088072 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf7d9bb66 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xa4e27620 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xcc72922f fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd78f34c6 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xf4170075 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x249eb0f6 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x29fbac23 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x346ab7bf gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x704b692d gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9f254c19 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xac32d6bc gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb438cfe0 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc6958917 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe0bece9a gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe29a281e gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeb7fc4b3 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xeb918393 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf58213b2 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1d43a37d gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x277ad2fc gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x27f5cddc gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x464dbcc2 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7f614f77 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x81f7cd79 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9734a0f8 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9bbb25b6 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc1d668c1 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcf0cbdfb gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xcfcc86a7 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd9cfd07a gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf4301bbe gb_audio_gb_set_pcm EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x1f60e5e5 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x313ceb88 gb_audio_manager_get_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x3cb73aca gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x9c308f35 gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xcd585a6a gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xd5e68a16 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x3b8b7aa6 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x80b489af gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x57dd3fb1 adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x00ee6945 imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x29ac3438 imx_media_capture_device_error -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2c971af9 imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3410ac4f imx_media_find_subdev_by_fwnode -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x39567f75 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3a77f5de imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x536822c4 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xf7787596 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6913f63e gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x9ce7cd9d gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xddb81294 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xbaac25d0 sp8870_attach +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0eb5f757 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x154d85d0 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2317f48e imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2f60dc38 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3a3077b0 imx_media_alloc_dma_buf EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x549d5cdd imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x56117f1b imx_media_find_subdev_by_devname -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5aff4dd6 imx_media_of_add_csi -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6890a053 imx_media_pipeline_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7436f006 imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x753c4a80 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8f6a14d7 imx_media_pipeline_csi2_channel -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x99312324 imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9fce9022 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6338a437 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6b1b45d1 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x73b0ad29 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x89ea60d6 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8b38fec5 imx_media_pipeline_pad EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb8525a69 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xb118f336 imx_media_capture_device_error EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbc72d176 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbcfb4309 imx_media_pipeline_subdev -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbdf71a08 imx_media_capture_device_remove EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe0038a51 imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe2f92472 imx_media_capture_device_unregister -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe7ceb5d3 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xdd8361bd imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe54532fb imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe6c33958 imx_media_probe_complete EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0024c10e amvdec_get_output_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x02da106a amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0fc5f529 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf5499e16 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfb7da52a imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfedd1763 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0c1c68f7 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0e3c0a7c amvdec_read_parser EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x16250293 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x17931858 codec_hevc_setup_buffers EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1df850f4 amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2db19487 amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x50ac78dd amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x53708b30 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5b41c3da amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5db71430 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1f1789a8 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x42f22a35 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x43363079 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x551e3789 amvdec_dst_buf_done EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x66a5348a amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x785a6e2e amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x78682528 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc035c2ea amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc18ee2a9 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcac5abca amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xcd3f9b2b amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd319c3f9 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xea314914 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf32fa677 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x0f3140da nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xa83d317a nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xf58e9bce nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x366f486b vchiq_mmal_component_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3e8666d5 vchiq_mmal_port_parameter_get -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3fda251d vchiq_mmal_port_parameter_set -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x40914f9c vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6427c508 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x65e67828 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7cdd8c2e amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x85306d18 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9c9bfda7 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9f710223 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa3bb879d amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa80ea4ef amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaad02b98 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaf27cb15 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd395f216 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xee6fb92f amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf1a25908 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf5a10fb5 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfe6ae93b codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x01f2daed nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x5a0db6a9 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x8479d8f7 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0b2a7cec vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x10ef6158 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x218d0c30 vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2baf6a4b vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x4216cadf vchiq_mmal_port_disable EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x9abfe858 vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa515ec03 mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x744e7277 vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x7d4cdc19 mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8789ed64 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x91e3d069 vchiq_mmal_port_connect_tunnel EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xbce24fa5 vchiq_mmal_port_set_format -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc19655e9 vchiq_mmal_component_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc397fd1f vchiq_mmal_port_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc5791864 vchiq_mmal_port_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc9c26f87 vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc9ee224f mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xcd092984 vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x218be452 target_submit_prep -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3b387247 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x730f019a target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xab35ace2 target_submit -EXPORT_SYMBOL_GPL drivers/tee/tee 0x056acfb6 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c429b7c teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0e5aecab tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x0ff149cd tee_shm_get_from_id -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3fc60bc7 tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0x42b36d5e tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x71a43d65 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x789c855a tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x79020f5e tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d494c42 tee_bus_type +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xb9686042 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xbb447ba6 mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xbf469b3c vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xfd1e2559 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x118e068a target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b9b3376 target_stop_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d24150b target_free_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6c85545e target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7c319da8 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9fe4fc2e target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb4489234 target_wait_for_cmds +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc65e34a6 target_alloc_cmd_counter +EXPORT_SYMBOL_GPL drivers/tee/tee 0x06353b75 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0862e5f5 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1c8393ea tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x24efabcd tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x26ab5da3 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x35bc7e9c tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3a192a56 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3b6f43c7 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3bcd6de9 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4aea2186 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4dc603aa tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x566186d5 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x64f46482 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x681b6c7e tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7434fdd3 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7840f25f teedev_close_context EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8dbb1a2f tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa8109c46 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xa920800b tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xaeb87570 tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0xafc9bb3d tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb68c05b3 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcbdcdeba tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcf0ce0e1 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xd4517615 tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe86bde12 tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf3f1beec tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/tee/tee 0xfd6789a4 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x86f34671 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8fd82ac2 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb8ec7ae4 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd2563b78 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd8410804 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf00f3917 teedev_open +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x49b2fcb6 st_thermal_register +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x6aa06565 st_thermal_unregister +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x949691da st_thermal_pm_ops EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0876d62e tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0fc5c8bc tb_ring_start -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x211f24fb tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2b566a56 __tb_ring_enqueue -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2fcfa17c tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x31b19080 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01f507aa tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0bc5e341 tb_register_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d9a1e50 tb_ring_stop -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3fa3059b tb_service_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x432d919d tb_xdomain_lane_bonding_disable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x466c6ec3 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x442bd6d0 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4746c795 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x480cb048 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4857d664 tb_xdomain_lane_bonding_enable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4f41ed96 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x50299f80 tb_xdomain_lane_bonding_enable -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5556a9ef tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x533b87ec tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x56ae021a tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x580ff92c tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x59153fc6 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5a0ba460 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b07973a tb_xdomain_response EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x604eddfa tb_xdomain_release_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x66c6653c tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x67f98791 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6c381fd7 tb_xdomain_find_by_uuid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x848375aa tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x78f302df tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x87068ee9 tb_xdomain_alloc_in_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9c40f9b8 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x92a8ae69 tb_xdomain_request EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb5522dde tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb65f2ff2 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa971e769 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb35eec2e tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb6067e33 tb_ring_start EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd1fcefae tb_xdomain_type -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd83be8bb tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdae9e354 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8567f08 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbb125527 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbd646dd9 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd6eec957 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe07ce692 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8177e98 tb_xdomain_find_by_route EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x03053237 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0a4d0776 ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x11a891b1 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x28b4e28b ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2b21a64a ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x457bf7cc ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5c875b01 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x60fdd101 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x664aca16 ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6bf63a47 ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x706ebb4d ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0134641e ufshcd_mcq_poll_cqe_lock +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x03d51188 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0706fff4 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x08257a63 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0a82adad ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x197b4f2c ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1dc71fe4 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x23e2010b ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3252941a ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x333d8105 ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x372f22ce __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x395b7309 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x48bf9c31 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x51883a20 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x54cc1344 ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x54e6264c ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5a53800d ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x61d50da1 ufshcd_dealloc_host EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7e3a6eef ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x84d4d248 ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9f467163 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb3e206f3 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb6e339fa ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc1d17d06 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc2c7e92e ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcf323416 ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd17a84c9 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdc6d49ad ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe2d15bc1 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe3b4765a ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xeb8fcda5 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfd8b96d5 ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x0d404474 ufshcd_populate_vreg -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x29ba05b2 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x90fdbde1 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9550efdd ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9da96feb ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9f819b46 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9fecba4c ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xad70a51a ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb446427c ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb5a7212a ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc36da080 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcc8a65cf ufshcd_mcq_enable_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd3f11561 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd606b18e ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xed973750 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf7b1fb21 ufshcd_mcq_config_esi +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x00e332cc ufshcd_populate_vreg EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xa518f944 ufshcd_pltfrm_init -EXPORT_SYMBOL_GPL drivers/uio/uio 0x148c3f03 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x212221c9 __uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0x5c54b341 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xa287dceb uio_unregister_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xba92a284 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xbe91cda0 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x234b2e3c cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x46c2a042 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4c77ac60 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6308fb8e cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x70164150 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x903de8c6 cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa3de9fd7 cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xedeeb7b6 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfe1d54ba cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5c6e61db ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5f070e93 hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6335237c ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9fd6b1ec ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x02234f26 imx_usbmisc_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x321746b4 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5109e674 imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5ca982db imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa1334373 imx_usbmisc_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc3ac9c54 imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0c7b4914 ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x697db1ee ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x80230740 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x954dbc96 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb6b8d924 __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc7b33ecf ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0348658b u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x23177c24 u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2b76b2c9 u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x61154e4d u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x71526caf u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x78301f3b u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7ba71e4a u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x866cbe5d g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc2bcfa2b u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc6b3b28a u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd008bd8b u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd1e43915 u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdb2cfd24 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xedfda980 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf04f0504 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x17b96141 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1a339a3c gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x221dcaa7 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x25129e94 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x30bd0239 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3938fdb1 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3f821622 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x43e11877 gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62bea9a7 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xa2b14c4d ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x39c9fc46 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3f715968 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7d337b94 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9bc9b632 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xabfe6620 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd9a2f58e usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0e806ceb cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2d28b2bd cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x369dde06 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4bf79f9c cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7f6e3c64 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x96f79b47 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa6f41f2e cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb3a907fd cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc354f4cc cdns_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1f833021 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x69718a39 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7afc757b ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf8e2783d hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x155c48fa imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4583cac0 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4b6b19ae imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8c603cd3 imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xaf484760 imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc7226059 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x507ccb4a ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6beff6ef ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6d76ff7c ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa33bf781 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbcf942f5 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc951c972 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x09b8fcda u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3e5c6d73 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x483178c3 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x619815c6 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9e78d648 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa011a629 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa12f8a52 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa4e2fff0 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xad9b9180 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb8af4dcf u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc05659a4 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd4ac48fa u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd5948604 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd5aca48c g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf3f3c6e2 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01178a84 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01cbeea7 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0f8e8260 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x146729a6 gether_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2415783f gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x40e145c3 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x41cad7af gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6bcef8f2 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x76d9f229 gether_set_ifname EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xac8c73ce gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xae88821a gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd78d5038 gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdc9cb1c6 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xddab6860 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe9d265e9 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed77afca gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xadedb0e8 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb0598031 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb149047b gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcd9fe577 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe63fb5fb gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe6a6f0fa gether_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe6ddf842 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeade7ceb gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xee37b8f0 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 0x416aaa51 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x632c38ea gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x645b45f0 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x9a00854c gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7d7ee9f7 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb7f1d853 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe31c7b31 gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf1658c76 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x231e8d5c ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x13934bb7 ffs_name_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa9275f45 ffs_single_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x00bd1953 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x77b5b575 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 0x1922ef34 fsg_store_forced_eject 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 0x21d5699a fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1d4b49a4 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 0x2b22bc53 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2f462143 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2f6e58fa fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3380fb03 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 0x3c6a07d0 fsg_common_create_lun -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x42132831 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 0x4abdc725 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4c1a617d fsg_lun_close -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4e8f29ec fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4278aeca fsg_store_inquiry_string 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 0x5b1a30cf fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5f477570 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5faccc84 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x65f89883 fsg_store_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x70f3ca7d 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 0x826a11dc fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x82c98659 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 0x85cdef4a fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x924e2444 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8e37ede6 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 0x98fc448d fsg_common_remove_lun 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 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 0xab6c68ac fsg_config_from_params -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb1da94d5 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3879131 fsg_show_inquiry_string EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address 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 0xbf688301 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb628e1a1 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc4719029 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xcd0b801e fsg_show_removable EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xee88014b fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf139db35 fsg_store_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf1e586a9 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf478d2c4 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xeb69e70d fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec1682c3 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_rndis 0x1e71ab22 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x308628af rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3384a578 rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x385f8d07 rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4202d09c rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x686729ef rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7bbdfdd6 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbb9ee6fd rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc05bcf68 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd1225220 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8de31cd rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6b1684f rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xed6e9149 rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf2ac457a rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf3bc33ff rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x02a12992 usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x08402cc4 usb_function_deactivate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0bd58014 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0af29a9c rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1ec653b9 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x265ce68a rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2ae11091 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x372e9ce2 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3d7171fb rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6cb2dd74 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x76c5c480 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa108235c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa2e9877 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8d12c84 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdd465906 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xde7464f1 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe2d717c0 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xef32f630 rndis_signal_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x178bf7ef usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x28224cc9 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x15ad353c usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x15f3608d usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x197a5d47 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1af2c926 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21aa6c99 usb_otg_descriptor_alloc EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d9e2d60 usb_function_register EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e23cc39 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35f90d03 usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x415e18c2 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42fce70b usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45520e62 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2f390825 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f821e8a usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4134420e usb_add_function EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x58307ece unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5febaecd usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x70c08d26 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5be266ab usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ce99c33 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fcfd601 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6111563c config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x617081a3 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f0bde5c usb_otg_descriptor_init EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x88c75689 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cc5ba51 usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ff85c0c usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ae5ae4b usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7e4379b usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa3439fc usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac2a8d4f usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2c53a05 usb_otg_descriptor_alloc -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb40ddf19 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbbcbdabf usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcb99da13 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72497e31 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78a534cf usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78af4f82 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d9b0dbc usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e50b568 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7e9b7273 usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x97a10267 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9ee03043 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca9f3037 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xce85ad40 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xceb23e5e usb_composite_unregister EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd99cd1c2 usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe1faf09d usb_get_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe7ff97bd usb_function_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xebfbd645 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd72a8b41 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe05b2fec usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe16e3769 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xee2aa28e usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xef61318b unregister_gadget_item EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4f85128 usb_ep_autoconfig -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5948261 usb_composite_overwrite_options -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x10d96ffb free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x13f1fbc9 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3c7f066c gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4fb4216e empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf57b5d73 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf63d532e usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/rzv2m_usb3drd 0xf8c63eb1 rzv2m_usb3drd_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0f17df48 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x455631f2 udc_mask_unused_interrupts EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x62791371 udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xba8c375f udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xebb500ff udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xeea04418 init_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf08f4c4a udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d3ed8b3 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8e8b23fe udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x97fe675c empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xab128472 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xbe9c2f17 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd74246de gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdaeb968a udc_enable_dev_setup_interrupts EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a91bf17 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0e7c3c12 usb_gadget_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x21b9724e usb_gadget_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x23921a5c usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2901cd82 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x12b5bb55 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x17160b45 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x20175c17 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x25ce857a usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2636a85d usb_gadget_vbus_draw EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3565deb0 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x32051fd5 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x344535be usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x34ecd7ff usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b211015 usb_gadget_register_driver_owner EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4b4263c0 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x45426c70 usb_gadget_deactivate EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x51bde0d6 usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5a7c3918 usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x625dbec4 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x680a261c usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x57740927 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5e9bd1c8 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x63daca35 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a5abf8e usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x71afd791 gadget_find_ep_by_name EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7880bc42 usb_gadget_unmap_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x857b3fcb usb_add_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882a4cbf usb_gadget_vbus_draw -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8d153c15 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8d1b1e0d usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8f80a6a2 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8ebbf38d usb_gadget_set_remote_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4ae2033 usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa6bf1873 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x96be2bcd usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaab11367 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaafc4465 usb_gadget_clear_selfpowered EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaeef5a84 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb02984bd usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc0de1cc usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb4b81c93 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb8acf649 usb_gadget_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc0b16a79 usb_gadget_vbus_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc5aaa16c usb_gadget_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcab1ab71 usb_add_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce67db63 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd84ddae7 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe8e1fa1f usb_udc_vbus_handler -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xebbd1888 usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeef94712 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf664df17 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6f03b45 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x9d838e92 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x60f9893c ezusb_fx1_ihex_firmware_download -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xbac434f0 ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x01c1b293 ftdi_elan_gone_away -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x06deeaab usb_ftdi_elan_read_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2a495739 usb_ftdi_elan_edset_empty -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x39c6cd99 usb_ftdi_elan_edset_output -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3baa2504 usb_ftdi_elan_write_pcimem -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x454dea06 usb_ftdi_elan_edset_input -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5f60d63f usb_ftdi_elan_edset_flush -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a989f3a usb_ftdi_elan_edset_single -EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9ecd19ad usb_ftdi_elan_edset_setup -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x06b3a5d2 musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0845d1ad musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc90b4a81 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd1ad7c32 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd25f5374 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf241ddc8 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfa94dad9 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfede7b67 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x78065699 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x0d2f1fce xhci_plat_pm_ops +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x4e042d5d xhci_plat_remove +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xd2f9cdec xhci_plat_probe +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x9a16b22c ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb52ffe7a ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x10a93997 musb_set_host EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5f39d1b0 musb_root_disconnect -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x5f4be95e musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x289b8a7e musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x29e7ed14 musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7c08914b musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x89ee0eda musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe01c95a4 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd55c9397 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xdc9895bf musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x2c2e340e usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x53db709d usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6da2000b usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xbb930e01 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd4e76171 usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x739344c2 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x11499d05 tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x2ffca0be tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x469b3292 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xacfb3734 tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x9daa9f60 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x037ac9b1 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0cddb0b8 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x115b5271 usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1238aa03 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x43021f04 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63a97414 usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d264944 usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b07c65e usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8be869b2 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1fa0f3b usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa9c69af9 usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb89e84e4 usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbbd60d8b usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc84097a3 usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdb1f04bd usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe50f8afe usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe7795622 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec045dae usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf849bb08 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfb78a7c9 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x6b3d676c dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xa482d77d dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x878b18fc usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xbb93ce7f usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd05aee68 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd20d1e73 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfa541c91 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x47325755 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x1bd4df13 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x9ed539d5 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xbd7de176 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xda068843 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x7ca390f0 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06cba90c usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0bb09d96 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1740ada8 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3957ac10 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3a4ce50f usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x43b35dbe usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x442d9229 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7bad62ea usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8769170d usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x87cb458b usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a9b3d11 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x95591fb9 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9f2c7edc usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa3374c5d usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbc055b6c usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4954c6c usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcd8f19eb usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd6c28b4e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd7ad6525 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6edeeaa usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x13aafe32 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xa6af7205 dp_altmode_probe EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xa89ace36 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xfb3bdfe9 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x26ce23ff tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x6ef03d7c tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xd680581d tcpm_port_clean +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xda86a83d tcpm_port_is_toggling EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x082617dc typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0938e2a7 typec_set_mode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ea22a26 typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12befe73 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x19b4f2c4 typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29c2531d typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08af318f typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0cd0aa7e typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x138b17d9 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b71d9ac typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1faee392 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1fee4eb0 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x29bae0db typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a58629d usb_power_delivery_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2f8e04ef typec_get_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x35ffe3c1 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3c878701 usb_power_delivery_unlink_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x401a9532 typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49ef735d typec_partner_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54654126 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x56c43a50 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x578e70d6 typec_plug_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57a4c8ae usb_power_delivery_register_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59dbb291 typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5aeee86e typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61c820f9 usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63b92c11 typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69a7090c typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6aba5ba7 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30122549 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x325b8335 typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3550fbef typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x372af13c typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f53db76 typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3fea84ff typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41aa9547 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46180213 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d6cb27d usb_power_delivery_register_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d9027d4 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4ee72ec8 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f10066d typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x51b2b122 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x540a46e2 usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58bedd40 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5bd12df0 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5bd54e11 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e3c9ac5 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5fc2f3be typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x60cc7e33 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6a125c61 usb_power_delivery_unregister EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b8432e6 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6db8a765 typec_retimer_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7018c227 typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x715ab511 typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75b58971 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76e10dd5 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77a6df7a typec_retimer_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7816672c typec_altmode_get_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x819ef0dc typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6e7bef46 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x70eba400 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x74d3d4cb typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7743372b typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79c9e54f typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b95666a typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c2029fe typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7cab97d2 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7e4f293c __typec_altmode_register_driver EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x893cb390 typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ba6cb7c typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8cf418f2 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e25cf11 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ea0e5ac usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b406dc3 typec_unregister_altmode EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x960667cc typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x99ad16c3 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a5d74a1 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9ce047c6 typec_port_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa0221654 typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa1cf7ec0 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x92b679fc typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x949b1202 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x951cbf58 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95407273 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9593b3d8 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96b219fb typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x982e7fdb typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x98b234a0 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9925c17b typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa125ae19 typec_altmode_update_active EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa46775f4 typec_set_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa4919c0b typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7d7585e typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa95b3567 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa9a1eece fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xaa134d29 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb280e00a typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbbe1a53d typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbf659509 typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc78aef54 typec_partner_usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc8852a05 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf4f60d1 fwnode_typec_retimer_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd196ac0c typec_retimer_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd20a42cc typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa60db2c8 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6157307 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6f6fc21 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa9f92aa5 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xadf33034 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5e4f691 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb5421a9 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb040e78 fwnode_typec_retimer_get EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd72f0a38 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1127888 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe542e358 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe858aa44 typec_mux_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9a2c801 typec_retimer_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea1cde57 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd41047d2 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda0c1469 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdcd7fa85 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe90c381b typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9a20ae5 usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea7286f3 typec_altmode_unregister_driver EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb30ac5c fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xebb91c2a typec_retimer_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec02ac47 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec2d94d7 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xee5099de typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef81ccaf typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xefb1088f typec_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf26668c9 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3cef0a3 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf30a357a typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf5aed2a5 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf5cbc648 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfa149add typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb4ca47d typec_register_partner EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe557d77 usb_power_delivery_link_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfeb21c5e typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x03ff7e9a ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x723daf6c ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x79f59946 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8012393f ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8de4dc2a ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x90f8565b ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb646b54b ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb9708037 ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbf24d18c ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x01815f1f usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0709bd21 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x087f55d5 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0c78530c usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1a8f5bff usbip_event_happened -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x24a9b90f usbip_dump_urb -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2f582caa usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x313a60a8 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6dc3f619 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x71dc5b8c usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5d1177d1 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x812f49b7 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8283914d ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x939a7159 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9f435121 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xaadc8bef ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xba2b70ec ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeec5a2e2 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf0c0ea07 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1b00ecc6 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x262aeefe usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3e33f919 usbip_recv EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x919d8ced usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x996b4e02 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7c8c4a4f usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9e9d2152 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa750d9ea usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa827cf83 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaa584347 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb117b8e9 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 0xdb3fb65f usbip_start_eh EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xebde8dbc usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2c6ee583 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7370a6bf vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x82847d5d vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x904622b6 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x95f07b83 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb3c596b7 vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc82c64a3 _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd7c00f0d _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdbb22097 __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe188c485 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe6e7f9a6 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x5952f0b1 vdpasim_create -EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x68cf29fa mdev_bus_type -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x05b552fd vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1db0d9bc vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x30e0b863 vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x30e21e1a vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3a5a060a vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3c96fa30 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x43b56b94 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe2e19767 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe6c16a58 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf8d5ef4e usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1324706d vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x474533e8 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x69d9394d vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7cc0e9a9 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9ea2c427 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xae759164 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xbdd35067 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc9acd8b4 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcba39e49 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd0f80a1a _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xda6f0110 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x3194ddb0 vdpasim_schedule_work +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x92ddb413 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x15005c0a vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x28ca618e vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x32902170 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3a47e9ba vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x425aab77 vfio_pci_core_request EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5d8ed0d2 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5ee24bd3 vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6de07321 vfio_pci_core_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8156e94a vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x826b5b16 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x97fb1489 vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb74a9493 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc5ccc0ae vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcb39f04c vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd58ae5bb vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe5150b17 vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfa29a5d1 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x09ebef10 vfio_platform_read -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x30c63bcb vfio_platform_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3a765225 vfio_platform_open_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7272586c vfio_platform_close_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x759a6ade __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x98d0d385 vfio_platform_mmap -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xa9ab8234 vfio_platform_init_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xacc49a44 vfio_platform_release_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xcd2772be vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xd376d2c3 vfio_platform_write -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x18b1f710 vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26951190 _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x27330e6d vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x456716f0 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4d215a48 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7b08d397 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8af84c9d vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8b783f0b vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8d87e659 vfio_pci_core_init_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaab363c3 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb270e85d vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xbd10d436 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcc15d2d1 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xce2977f5 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe5a89b38 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xeb25e084 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xee71be36 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf04910cb vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x122ffe11 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x168ad341 vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2f7dc10c vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x32ee9cb3 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x531b8d86 vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x864a18dd vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8dd3d09e vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xaa73d1a5 vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdab03101 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xee25b4ae vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x08c73362 vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x091a4842 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2f5e181b vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x35cd2d76 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3b1bcc64 vfio_iommufd_physical_bind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x54bd2ffd vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5cec3025 vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5ff0ac84 vfio_iommufd_emulated_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60672d68 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4c235cc9 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5517c687 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5b72341e vfio_file_iommu_group EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7bd521db vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6e28c15e vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7cf4ae41 vfio_virqfd_enable EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8b672477 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x92dc3484 vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9f596528 vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xabff2075 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb4590c12 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb7f15a26 vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb90c60f6 vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbcee3b2a vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4164d6e vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdad08303 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfa9e6c3e vfio_iommufd_emulated_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfb55c2bf vfio_iommufd_physical_unbind -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02e5091a vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04e0e535 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0547d063 vhost_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ed26bf0 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f0708df vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1574eb82 vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1d2b62c2 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1dd3739d vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a358616 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x330aa838 vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36a68551 vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x391291f5 vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a809ceb vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e2e0604 vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f25a5db vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x42ee609a vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4abdf82e vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50c54b72 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b495f10 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5fb37571 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d9efd7b vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fe67861 vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x720a9ccf vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75ceaaf6 vhost_clear_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77e6866f vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d81f733 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81fcda24 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f19c62d vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x946cd0f6 vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c7df8ca vhost_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa534aae3 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88214813 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8ba55997 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8c9e0fd1 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x911f2eca vfio_iommufd_emulated_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa69468e5 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd164c4a8 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd4da708e vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd52f1fe4 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdba3b353 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe0609fb2 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf3bb8374 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05f2ee44 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x066395bb vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0997e1c4 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0aa7c3e2 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e3431c9 vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ff5eeec vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1107d728 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13178bc7 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a28deac vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1af222ab vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1cd5eb1b vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x203ebf8d vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x21870c96 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x349b5f8a vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43bc6117 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x469f13d9 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a9f6ca9 vhost_worker_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x529a5112 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x553d6daa vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x580a302a vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a3f7b10 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6bf6e677 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x72ed6a4e vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7af5a526 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f7e99c0 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x815f8a4d vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x864cb072 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d8ff5fe vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e88b76e vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90d85d05 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b481dca vhost_clear_msg EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaca8619d vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xace76337 vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaea196c0 vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd1ac3ec1 vhost_poll_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe66bf975 vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2a6e301 vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf67ac6b1 vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf869fd6b vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa281b15 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae84d02b vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbae34372 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc638f6e9 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd0275993 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde9ec691 vhost_vq_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1e5204a vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe967e126 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf21f93cd vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4a3f9a4 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5150a7e vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8dc2ba2 vhost_poll_start EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset @@ -17689,398 +18143,402 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x34e2bf61 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x39dc602c ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4b7cb2a8 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x77fe87e9 ili9320_write -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb6d3ee9c ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbd7970bd ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd7c91cbd ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe0e96c9e fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xab7d4949 fb_sys_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xbedda65b fb_sys_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6e96d849 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7f1427ad sis_free_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x078ad09c w1_reset_bus -EXPORT_SYMBOL_GPL drivers/w1/wire 0x352b639c w1_read_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x48760dd9 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4b9871ff w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x51b894fc w1_touch_block +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x081cf837 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x15183d15 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6e51cdb2 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc62f3f9e ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfa290d0e ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfd339b64 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfebaf9dc ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xc726dacb fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x65a740e5 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x85604ba6 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x06f3c123 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0f462c68 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x11d2b530 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x35d49aac w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x472e45c3 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5feadd5c w1_reset_resume_command EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7aa8f936 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0x7b8d2c36 w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x987c48fd w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0xd72c608a w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0xe5e94a84 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0xecd11fae w1_next_pullup -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x18abc80b xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xb364e2d9 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xcf3b268c xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe8905aad xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf1882836 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x7226f368 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x8f374e08 xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x34543a41 dlm_posix_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3987d0b3 dlm_posix_lock +EXPORT_SYMBOL_GPL drivers/w1/wire 0x840924bf w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9899f9d7 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4a946fe w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb212384f w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf31afb2a w1_write_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x087a602b xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4fbce6f7 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x78943f67 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8b4fd8a6 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa11a4e17 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x12ad48bc xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xb893c843 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0e6f909f dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7dba9749 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4fac5fb0 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xacc5fc49 dlm_posix_unlock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0c8c8330 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x89b34088 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x117280b8 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x184b329b lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x271d166e nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2a90f0ce nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7b3ce61c nlmsvc_unlock_all_by_sb EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xac2d417c lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc293198b nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc4ee49b5 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5d991c5 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe96560f4 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00c8f9eb nfs_kill_super +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xabf85615 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xaf7c2452 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc98f1971 nlmclnt_done +EXPORT_SYMBOL_GPL fs/netfs/netfs 0x7c1cd423 netfs_extract_user_iter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008542a4 nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02ba0dae nfs_set_verifier EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04613eab nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04bb863a nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0649beff nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06a8aeb4 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06af5579 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0925f43d nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09a518c6 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a487121 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x042da906 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05734f8a nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x082e3336 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e53947c nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e9b59c3 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ef376c5 nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10a2d0ab nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10baeaca unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16e16c0f nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18991043 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18d0f8d8 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18f989b4 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19bda2e9 nfs_alloc_fattr_with_label -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bbb60df nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2055efba nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22000ca6 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11419fa8 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14676cea nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x157f39c4 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16444fee nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f6a3158 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x200777c8 nfs_pageio_init_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23535930 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23a51d6e nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24474c14 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24afe75a alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25b0aa05 nfs_file_fsync EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cea59b9 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dc4bb0f nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ff58312 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ffacbf0 nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32f343c8 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34e4f07a nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3547e7d4 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3607b140 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36333472 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x388b49bd nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2801e5bc nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28fbf405 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29086fa3 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a685434 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b2b8b51 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d18ca1f nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f6bf988 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3000e1ee nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x322c60fb nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x330b4918 nfs_read_alloc_scratch +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34566b51 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x346b2a0d nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3844f944 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x396a83e5 nfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b43c5c6 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3becbf78 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c6d5960 nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x406ced5f __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f6ca395 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40852a6c nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4252e82e nfs_pgio_header_free EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x445264e5 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47059fd5 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x493debfd nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bf22ec4 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x434808d4 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x455d6d61 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x460bf496 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49594e5a put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49f10193 nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d8706a1 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fc2bb81 nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54443ea0 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54afcb2c nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52754f56 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52b9109f nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53d91598 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55d95804 nfs_fscache_open_file EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b2f53e3 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5baf8f5d nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bb645cc nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c19cb06 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c6df06d nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c9a95ac nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cea292b nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x634078e6 nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63b8c08e nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64e92646 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6815c8e9 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6afada26 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b1a4657 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c4a21ed nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x589c1b0a nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61e9e54d __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x621c00b9 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x651a3703 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65902c46 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68e77f87 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6bd532d4 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6beecfcf nfs_try_get_tree EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f48a2d5 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff692ca nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x712e3bd7 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7135c46b nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f1903e9 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f2d1ea1 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7002b860 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x716c9b07 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7374f1cb nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x744540a5 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74dca9f8 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x796383aa nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a4b161e nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a9616e9 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b1c0226 nfs_add_or_obtain -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7baad991 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fdd2e54 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8256468a nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82839ea0 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82a138dc nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x832f9c0d nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83eae275 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x745c6b56 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74e59bcb nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x753826bb nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x760a2013 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77077c39 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a9592f4 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cbdf963 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e16fff8 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e202e89 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eea585f nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80ed2d76 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83576cf9 nfs_sysfs_link_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85832ea9 nfs_scan_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85fc8df1 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x870f8d92 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x883f18f3 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a79c18f nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac100b7 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8afb0c05 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b761c66 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ed3a67b nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x869b5824 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x879af3e4 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887bb9a6 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8efa8174 nfs_filemap_write_and_wait_range EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x912d68db nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x918f0eca __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90b1b9dc nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x910735e5 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94e0ee28 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9241d7ef nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x930bd60c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93175a28 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9318eff0 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x939d48b4 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9459b2b0 nfs_pgio_header_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9818b141 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96f3479a nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a5836bb nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c1d3014 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c2ecd8b nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9db1c559 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e959d21 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1d80643 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa67b2fd0 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8a708db nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99165ede nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a091f24 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e2db4b0 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa21f12c8 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa299a66c nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa55dd7b4 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6246ffa nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6a8116a nfs_invalidate_atime EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa9287aa nfs_umount_begin EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab866afa nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac958e6c nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae636e98 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb241670e nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2dbe500 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4a88ad5 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9d5ab8c nfs_file_fsync -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac38a66 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbadc2806 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbcba649 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc078d113 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0a7fa29 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc19960e7 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab422476 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaca54cb1 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad285e7f nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad8d3bbe nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae101c34 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0a6da0e nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2bfe63f unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb37d5012 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4ccbcd4 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5cdf096 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5e2991d nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7b84c87 nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9279af4 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc60c8d __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbed4a82f nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2704562 nfs_inode_attach_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3e0e53a nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5738c96 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc60191eb nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc65cda36 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4fc7e22 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc527293b nfs_pgheader_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc942a7e6 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca34df51 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc2c9171 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd07efe71 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5e466d9 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd85d987f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc70eeb28 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7590aef nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8314499 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8c7e9da nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc912649e nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcea8ec1f nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd034a920 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0e09f89 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0f6f3da nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7aed33d nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8a44238 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd90749b9 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9144190 nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdba19342 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0be4d14 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0fbdcfe nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe671bd94 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe774eccf nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaf2e98c nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb6f5926 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee9676b7 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5117b18 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf65f5c56 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8a376c2 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaf7b0cd nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdde76ac0 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf7cca25 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe19deafe nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe60ef46a nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe62772ec nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8789cc9 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9a29ed3 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedf70581 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee20a10b nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee433a15 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee9cc8e4 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef716b0d nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf01ba17a nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf071129e nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1da0ea6 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf388e6fa nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3a73ec6 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3e462be nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf41f597f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4e47142 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5f22a87 nfs_init_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9fff305 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb87eb04 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbbb4b2f nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcac511a nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff4cbb11 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x6b671510 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0424780b pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc7dd1ff nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd6a3539 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffc56cfa nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x8b03cb78 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00da061a nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0266c274 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02da1276 __tracepoint_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0afb76b1 pnfs_nfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c960608 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e9fb9b2 pnfs_generic_write_commit_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f13b942 __traceiter_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fbc359d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09f207c5 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd06bd1 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d381e90 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0de18144 nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff73a2a nfs4_mark_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1045cb9f __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1108c099 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13eda6b3 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1803d736 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1de1091c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1dfb213d nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x221b7430 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23aae26a pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2576a53d nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11b89775 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12624ace pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1358fe23 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1453f0f9 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x145f86fa pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x183dd334 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b41178 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d57c82c __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ff626c8 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2174b794 __tracepoint_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28572457 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c8bf42d nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f1e21ba __tracepoint_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3219f6bd nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32d15441 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3520925e __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36bd1d35 pnfs_generic_ds_cinfo_release_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x394ce65b nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a3de246 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a7798f1 nfs4_init_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b51f1c8 pnfs_update_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d7712f7 __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41a49e20 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x420026b5 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ccb6995 pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f1484c1 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x530bde8c pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x315e8052 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35152e4a __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x373c7894 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x380d30c3 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x393f78ea pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x399fc23b pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ae1e421 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c314d9c pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cba3286 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x400aa432 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4881c552 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d03d56f nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5089bffe __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5250d21f nfs4_init_ds_session EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53574e18 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x543bec57 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555bb1db __tracepoint_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ac524b3 pnfs_generic_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x602f888e pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6061415a pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a683b00 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b70822d __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60cd9d82 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61ae6fd8 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62b142bb __traceiter_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63d6ede0 pnfs_read_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67683335 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67cc89a0 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a642986 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b52076d pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7236fda9 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a75bed0 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b2f092f pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c627d04 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e13e3eb __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e637af7 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71b92222 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79b26394 nfs4_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ab7bcc6 __tracepoint_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x805c8b10 nfs4_mark_deviceid_available -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x838b8dca pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x863cc660 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b5ab82b pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cc8f3ff pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d0cc631 nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f5ef71b __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x900811b3 pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90b35e1f pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91384bfa nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x927b8d57 pnfs_set_layoutcommit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2051c86 __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2a759b4 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa352f2d8 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3dbb7aa pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa5eba10a pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa700cddd pnfs_read_resend_pnfs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa906f820 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa995f86b __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab24acbd pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaee0908a __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2147a5b nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb48e3b70 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8806e52 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x802046c5 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8343b238 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be24f50 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ce41022 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93095867 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94c90f55 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x954367b9 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ac96b28 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e14944f pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1da91d8 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4734a64 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6a95917 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa98ada08 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9e99755 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaeb89ca9 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3e0c852 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb65a984b nfs4_decode_mp_ds_addr EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe279a8c nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ad2e90 pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc537c9cd nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbabb2f93 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc517203 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe1aa0a7 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfb51474 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1e2dd21 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc30cdf2a __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc426885e __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4d38574 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc73f6c60 nfs4_find_or_create_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb298ebd nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce3f9ad4 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd62d752f nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6fbc8f3 pnfs_set_lo_fail -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd811ea00 nfs4_schedule_lease_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde68d110 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8516af7 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8af22d8 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf08f297 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2eacc77 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3237c99 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd47333c2 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd49332eb pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd577f115 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd67f5797 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda85aeea nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd342fa8 __tracepoint_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe01dcde6 pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0ff6c87 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe450eafd pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe52d681b __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3bfa3f3 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed260c93 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3fd49ee pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4afdc35 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf73d778c __traceiter_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdbf1809 nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0db6b02d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa8b8fc6 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff4cea1a nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff9c414c pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd43e296e locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xe315cad8 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x25c30505 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x58b6c597 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe7aba845 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xfa6d8293 nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x1577e49f nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1f610731 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6e51903a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9cdc5f81 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf878d426 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7fd00042 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa261acc2 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdbe8974a nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xeb2ee9a2 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xe16861de nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x186d6156 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1aa0bd60 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x47a8d901 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 0x58c88ff2 o2hb_get_all_regions EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7543fbd1 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x96a4c618 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa234efef o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x96243e26 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9e016c36 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb5c061ea o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc10a7608 o2nm_get_node_by_num EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xceda1fed o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xef7f54b7 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe97d7c1c 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/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x009fe5b7 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x254ad96a dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6a6c1611 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x295b1b84 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2da9bf24 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4a4ed5f0 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6333c73c dlmunlock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7c758897 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd6a3a842 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 0xe4e53c2b dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe782e6c5 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe620ac36 dlm_print_one_lock EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x145c66cf ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1f1686d0 ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x71ba4105 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5e30eaab ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x888a85d0 ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbd6b60cd ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xeaaafde9 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xee6d5f6f ocfs2_plock +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x227ee08e unregister_pstore_device EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x464dfddd unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xe2361550 register_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x07e06011 unregister_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x78aadd60 register_pstore_zone -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xabd9af6d cifs_arc4_crypt -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0xc4c73891 cifs_arc4_setkey -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xceecd9e4 cifs_md4_final -EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0xdef1096d cifs_md4_update +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x54dbc6cc register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x1c33083a unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x785b1b4b register_pstore_zone +EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xabd9af6d cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xc4c73891 cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0xceecd9e4 cifs_md4_final +EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0xdef1096d cifs_md4_update EXPORT_SYMBOL_GPL lib/842/842_compress 0xcf048a91 sw842_compress EXPORT_SYMBOL_GPL lib/842/842_decompress 0xa4adedf1 sw842_decompress EXPORT_SYMBOL_GPL lib/bch 0x0c303f52 bch_encode @@ -18097,8 +18555,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x35afdafd notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x3be50ec8 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0fc7b0b6 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf18dc539 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 raid6_call @@ -18109,1074 +18567,1082 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x58555f02 lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa1745cfe lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x37f4922e garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x3e4030a4 garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/garp 0x77c5a79c garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x853ce01a garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xd9bb8eb5 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0xdd5e8fec garp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x290538bd mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x368fbac5 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x43a95547 mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0x67363710 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0xc593eef0 mrp_request_join -EXPORT_SYMBOL_GPL net/802/mrp 0xe4059ced mrp_request_leave -EXPORT_SYMBOL_GPL net/802/stp 0x2fe62290 stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0xfd3094c8 stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x8b41fd25 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xc8771dbe p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x0ceb0b96 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x3912d8c3 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x0be91bf9 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x2d9c022f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3daa9b11 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x601a9ddf garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x91710b11 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xfedeb647 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x02747db6 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x8e8a56a7 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb9163b68 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc0913931 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xd208f15c mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xe8f112c2 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x026b6e64 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x147123d1 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8493aebc p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb9837ea7 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 0x598018e6 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 0x383d3dff l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x47abeb0f l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x687cec87 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x91fd4fdc l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x94212547 l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa75940d9 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe2b46ef9 l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeea092a0 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc0e945c l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x177387e7 hidp_hid_driver -EXPORT_SYMBOL_GPL net/bridge/bridge 0x1b96dfb5 br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x2554df9e br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x335c4540 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3fd4b2be br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4b6fda37 br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4d2181b1 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f7d4fe1 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5126d283 br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5fd0207b br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x60e84424 br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6274d3ab br_get_ageing_time -EXPORT_SYMBOL_GPL net/bridge/bridge 0x6553a150 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x681ff71f br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7806b5b3 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7ae3ddac br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7cc31737 br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x96f0e94f br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x97bb5292 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x9d852b57 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa6e01f5c br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0xb715752e br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc6bfb6c2 br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xd698ba81 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xebf65334 nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf53ee136 br_mst_enabled -EXPORT_SYMBOL_GPL net/core/failover 0x04c0d4e2 failover_register -EXPORT_SYMBOL_GPL net/core/failover 0x1ea184e0 failover_slave_unregister -EXPORT_SYMBOL_GPL net/core/failover 0xa337df0e failover_unregister -EXPORT_SYMBOL_GPL net/dccp/dccp 0x05de7b94 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d412265 dccp_init_sock +EXPORT_SYMBOL_GPL net/ax25/ax25 0xfd830249 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x08fdd071 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3c98fa98 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4d682d92 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x583bc803 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6ffc771b l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x75f88e04 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7d7d6d6a bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xaafdc323 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcf1a4a00 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/bridge 0x003ec932 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x03786a86 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0f7d74f0 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2ccc5a34 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2ed50b25 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4020c16d br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x54b9beef br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x59ae4e99 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e69aec6 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x76d55669 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7722bc32 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x834e29d5 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8c8e4af5 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x938ff831 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb07803de br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0a73f47 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5e0b4a1 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc72740ed br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe09e18b6 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe92b459e br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xee54e4ed br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xef632793 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xefc2eb17 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf168ce0b br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf381804f br_mst_enabled +EXPORT_SYMBOL_GPL net/dccp/dccp 0x045b9fff dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11552a23 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x12ece9f7 dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e73f40c dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0x21204b99 dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0x271a9330 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0x37cb3118 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdc472c dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20c6481b dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28657327 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29385e65 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31ae80b9 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33b589df dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46ba8377 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ebd6bfd dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5786d056 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x50328f07 dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5df5a699 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b27f73b dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0x77b75603 dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7892ded8 dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7d1fdc07 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6411cfa5 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7363a5e8 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ba0e75a dccp_ctl_make_reset EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x922ab18c dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88798a43 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8cdd3060 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f0333c9 dccp_close EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0x984e495a dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x98dc6f68 dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3bb2940 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaef1d381 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb30482a3 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb5a6c1e1 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe41e687 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3072115 dccp_set_state -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4083dd7 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc862d53e dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xce447cc9 dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xce913556 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x97dff037 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f11ef38 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1af846d dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4578d1e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6931764 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab7b98f8 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xba496fbf dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4b4a34a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf13a8a9 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf6665e5 dccp_destruct_common EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd884eec4 dccp_make_response -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe57d85b1 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xe999b1bc inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf55ef7fa dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb2da734 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2b37153e dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x341a0565 dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4e4d1847 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4f6c7a02 dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x55ed057d dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb8821aa4 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00b9418b dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe36ab902 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe878adde dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe999ff61 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee36643e dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee408a31 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfd08b7a8 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x49cccf5d dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x799b666e dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8204431c dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x82d2f519 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc1d4a171 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf2735f33 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00100fca dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x04ecd696 dsa_register_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1213324f dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1f9429c4 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x26e8ccb9 dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2727b19b dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x34287e92 dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x354990d3 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x358f893e dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3b944e38 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1aa7f74b dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1b866619 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1eaef067 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x21d1dc0f dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d0c15f9 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x366653c6 dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4356507c dsa_tag_drivers_unregister EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4d99f99b dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5100956f dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x52f91ada dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5db3d739 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x70ce38d1 dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x72fe42e3 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7503e3af dsa_devlink_params_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8680c0b8 dsa_fdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x881ee03f dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95138983 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c6d5e1f dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x46f8215d dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x494bea9f dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4cf94106 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5288cc88 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x581e6436 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5969e7e3 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x720c2a7b dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x747301e7 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x76f8b5af dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b1875fa dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x88e80ef9 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8a83f422 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8de51e26 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8df450d6 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x90343995 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9131c175 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9d6a7902 dsa_switch_suspend EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa70d44d6 dsa_enqueue_skb -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6d35561 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa8f71e2b dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa9cd7d92 dsa_switch_resume EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcca76d7f dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcec9079c dsa_devlink_port_region_create EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xda0254ec dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdba472a4 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbe2fddb dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdca526d9 dsa_devlink_region_create -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xef8afc4d dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe43f8b7d dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf0cc8088 dsa_port_from_netdev EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3263a2fa ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x70a28cf4 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x79e243db nl802154_scan_event +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfeb4ff6c dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x10b37dfa nl802154_scan_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x121a4bc8 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1ee42be1 ieee802154_mac_cmd_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x53a7cf60 ieee802154_mac_cmd_pl_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x620f8498 nl802154_scan_started +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x65edcb58 ieee802154_hdr_push EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe1f5db5d ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf9cac5f0 ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ife/ife 0x397c5b45 ife_encode -EXPORT_SYMBOL_GPL net/ife/ife 0x501d10c7 ife_decode +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8944b0fa ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8a4444d2 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb5984a0b ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xbe75c456 nl802154_scan_event +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfac02ed1 nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ife/ife 0x0dc810f5 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xaa5c649c ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xa5502559 esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe97cdc1c esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xeafd3071 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/gre 0x2719148f gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xe98b47e3 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x08049ae9 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x236da4c7 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2defe123 inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x629b8c28 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7015951d inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x927594d6 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbc008c96 inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd061ff59 inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdce45693 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1c5fd325 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x017c419c ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x04e4c64e ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x217eadd7 ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47f3656b ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x568e5762 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6acd8c98 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6bdf6826 ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6f51bdc6 ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7cc9c7a6 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82f81f46 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8321528d ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x867dce7d ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93aaa266 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9d0e8681 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9f7f0141 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc87faca7 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1d1461d ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7ab94485 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x56e81815 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7702f765 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7edb3b87 nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x14b41eae nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x14b32470 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x157506d2 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x51e7665d nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x667d2a84 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x67e52f3a nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x86b48b0f nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc96f583e nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x94a057ac nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x82347bd2 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb6d4f1d1 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb92e0011 nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4fdfe172 nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7ea368d5 nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x362de3b0 tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xac37efec tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbff80817 tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc6b783d2 tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfc99c95e tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x57cc101d udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7449b0f0 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8e7284c1 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x995d5ae4 setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9d7369fb udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xae3f9a14 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xafc2f25b udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc8ebaea9 udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x44d473ea esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc80188b8 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xdc188ab4 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb247a5e5 ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc3a407cd ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc9da86da ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3daa9157 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc57b4118 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xceadbed0 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x09ea29d0 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x68fc8967 nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf2e2e81c nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x4f8935e2 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x23d5ece4 nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x362954de nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x414a4245 nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x42885bfd nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x91769590 nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd582320c nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd88ace45 nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x13c7f6c5 nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x19c09be2 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1ddc1cb4 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4d7c72c8 nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7829701e nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xece04507 nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0742ae7e l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c4d13a2 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x25cfd725 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a8d8880 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4154168c l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5ad07141 l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ad85c70 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6fd95f2a l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72eb4ea7 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b1d71a4 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x881a49bf l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x896dcdfd l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d675485 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa184c670 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb622a91e l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb79d74e2 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb840a049 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcb6f6b44 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4a10ea0 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf26eddf0 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf464d1c5 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xc2fc82c4 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0ea3e6aa esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x20fb2e7b esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x70537e87 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4506a593 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xfed0d143 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1742e37e inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x22172a57 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3a7f3b6e inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x49ce8b11 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9c1c09bd inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb8ec5e21 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc491e755 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcd520469 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdf75a9a2 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa61719ae gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x51e9570b ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x70e96d00 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x88fe55e6 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8c436c39 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f27b2a6 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x906db8f6 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x910c7726 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9505bdbb ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9d5fd4ff ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa5d80d2b ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae5fa42b ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb5305e66 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd19fd49d ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd8e59693 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc74bbf1 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xde62b29d ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe355ce0e ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x0110f9f9 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x79afefdc ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1dfbb6a1 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x8265e8d3 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x2284887a nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x14a65051 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1ca052cc nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x727d26f3 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9c3657f9 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9d4677c5 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd2391723 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfc7e4ed7 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xa61cbfec nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x793ba804 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7b224554 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa3ba5b86 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x4693f82c nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xba4f364a nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x00a93f2d tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x10e8ecc5 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x975735ba tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xccfda659 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xee8a5b51 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0db51e7c udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x17039e3c udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1cd99640 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4e5fdf4a udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x68745e13 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7dfd5e2f udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd3b91609 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xee14acee udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x0b55161b esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x20e49495 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb1dab6dc esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x140244f7 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd99a1b2d ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xdbfda97e ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2df49dab udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x8cea24c7 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x06292002 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x02e85a84 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbf2aaf2f nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf3bd0cda nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x9fcdee84 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0b734945 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1fe1eef9 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2304ffb5 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5ca98ce9 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x97436930 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xde4b4b8e nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe3094c22 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x217b1e85 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4318fff1 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xb98a7442 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xe591a8e7 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x5bbc95db nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9ee33544 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x09f74ec4 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ab70348 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b77cee3 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x309d830c l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x33285e19 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x507e55d1 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58501a2d l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5866ef42 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x63d5e5b6 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x744f861a l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7d4f1ccb l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82580165 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x933988b0 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9f799200 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaa6402be l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb609bff6 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd0f2197e l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3756d20 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd768307f l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe3de5803 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed4b620c l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xde273f5a l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb1d753e7 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x10c64438 ieee80211_vif_to_wdev -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12e31f57 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x148d6673 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xe3c9e743 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05cedaf8 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x145b8a55 ieee80211_iterate_active_interfaces_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a0faa1b ieee80211_set_active_links_async -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1a5c6339 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1b99c20d ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26386fd3 ieee80211_set_active_links -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x37876126 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3936bb07 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39687188 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b596de9 ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x76767243 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x832e7d75 ieee80211_request_smps -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x853d0e22 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x90214dcd ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9466876b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x344ab1b2 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3cc87fcf ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x46e9872d ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4dde7bd0 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4efbd66d ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x52dff25f ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x53342e5e ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e5cdc6c ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x638f3545 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x660d512d wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84e0dde0 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8b176ed6 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8bc5056e ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8f6b213d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9918244a ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x99d1473a ieee80211_iterate_stations_atomic EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xca41dd0a ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf8f0600 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb945968b ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc6b89abf ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcfbbbea9 ieee80211_find_sta_by_link_addrs EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd554de10 ieee80211_color_change_finish -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde3fe705 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe28f96e1 ieee80211_set_active_links EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeab6a1bd ieee80211_update_mu_groups -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf2fd55c6 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6569d12 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6e7a512 ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbdbf16c ieeee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfbe0f96a wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x061f1e0a mpls_stats_inc_outucastpkts -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3c4501d5 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x78fe6f87 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfd040466 ieee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2ce1a8a1 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x322a07a5 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x69f9f4aa mpls_stats_inc_outucastpkts EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa8bddc66 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe711ef3e mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0d962049 ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1a41f5e2 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1be2589b ip_set_name_byindex +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x938123d5 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb4360867 mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c2747e4 ip_set_get_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23682fff ip_set_type_register -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x305ca044 ip_set_get_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x30788375 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2c584f16 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x33552215 ip_set_type_register EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x426a8cf5 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4f291eaf ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x69bd4cd2 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x496b951f ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4cb89c18 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55c80abf ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6e79bc75 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7612d6d8 ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ba3f244 ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88012bbc ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e634a46 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x97336db2 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 0xab0382f8 ip_set_nfnl_get_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb58cf3c4 ip_set_put_flags -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb689cddb ip_set_put_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xba8e430a ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc057b90e ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xddc63f59 ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe7c62f9c ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xef1dc311 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf05db19e ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb315bd23 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb34232af ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd488b87 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd67bc11 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc1716a34 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda49c94c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee516f13 ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0ca60424 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3eda4a3a ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3f6bf255 register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xef6b2233 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x53728206 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fa5ed9d nf_conncount_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x82521f9a nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x925a0295 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf63b3955 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc0543972 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcd05ebc3 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf42e6966 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfc280604 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x49bea978 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xaf0aea0c nf_conncount_init EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe7e5dcc9 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe19cdb7e nf_conncount_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00fa230d nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x014a5496 nf_ct_expect_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03ebc26e nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045179b5 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x052480ee nf_conntrack_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x066a6094 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07e2e77a nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfeeef0cd nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xff125bfb nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04d973a8 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x072f59f1 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x090b1ca0 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x092b5ddf nf_ct_unlink_expect_report EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c1893aa __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e9f0e7a nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0fd5fad1 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1069b5ce __nf_conntrack_helper_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13633feb nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1826bdce nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18e121a3 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x194b7c15 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d894665 __nf_ct_change_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1368869f nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x141a9e53 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a3dc661 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b3e84d4 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bcdd618 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d30fdd6 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1debf58f nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2134d9a0 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x249f9b54 nf_conntrack_helper_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ebb7d38 nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31dc7bd0 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x361b00cb nf_conntrack_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c9c991b nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ccdd31f nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d3b9dee nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44652288 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ab6e387 nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d5e3206 nf_ct_expect_related_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f4945ac nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5143c92d nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x559dc9b7 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x562a9f09 nf_ct_untimeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x658a5abe nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67369204 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3003ce5d nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34cb32dd nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38e5773b nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3900ec59 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x396cb49e nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c9b6385 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40861b22 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4753b7ea __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c62366c nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e1dc082 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f1c325f nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x507ea4c3 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52a6d9c5 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53be385f nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x566ea41d __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57525766 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59316fba nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5af56ae4 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5bc7c553 nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fc0afa9 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62a9352e nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63359102 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67d6ef48 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6846d875 nf_ct_l4proto_find EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a077ebe nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a36a51f nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70b297ea nf_ct_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7216c54c nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x767d3e8a __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x779cda29 nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x793a6669 nf_ct_remove_expect -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c891a44 nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f1ae6d4 nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f79b8f7 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x826c6832 nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85da3b14 nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87acee9f nf_ct_helper_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x887b0d7c nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6daed72d nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fb28101 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70b9adb3 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x742b174c nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a140619 nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cd067ce nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7de4b428 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x824d6773 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82be2bfc nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83e74f83 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e20cdec nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e6c9839 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ed0396f nf_ct_timeout_hook EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91ae5739 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95583e9d __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x958fd597 nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a3d391c nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x933e2a52 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94442af1 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99e6d7f2 nf_nat_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c216119 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d5c5d50 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e8f3629 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f2de753 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa23640be nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa42be99e nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5978de9 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab949f2b nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaea7048e nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c4482b1 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1799e68 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7e4daec nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8b8861b nf_ct_expect_iterate_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0178288 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0382507 nf_ct_expect_iterate_net EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb712b4dd nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9545f0e nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb821520 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc0ebd11 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0df8bf5 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3cffc76 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb831da2b nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba9c53a8 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaa9fd25 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc09007ea nf_nat_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc211b200 nf_nat_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc278c8b0 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc25ad6aa nf_conntrack_register_notifier EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc4706029 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6b51a47 nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8b1ec35 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaac7787 nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd7c0e83 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce8a6939 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd32f3f14 nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd35b0fdb nf_conntrack_in -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd398cf2a nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4ddb92e nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc44cc5d2 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc55d40e4 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8bb8008 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9895ccc nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdb8fd58 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1ec5c50 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1f31bd0 __nf_ct_try_assign_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8da7116 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda0c1335 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd861059a nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda3db0c6 nf_ct_acct_add EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe402e8be nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe40c228f __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe9d95b6f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc7e0bc5 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd8110b5 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd96aa05 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5648c77 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea1fe342 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea643292 nf_conntrack_tuple_taken EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed605819 nf_ct_tcp_seqadj_set EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7c7ec92 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd098908 nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd933a32 nf_conntrack_helpers_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff41ffd5 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x6357036d nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7f9afb9a nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xc703ec0d nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x79d9209a nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x85f5f73d get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x884c4610 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0b75f7d5 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x04e93849 ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a5b4c79 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x480a074f ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7aac0059 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb48dfcdc ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc0f11e43 ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf026efd6 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x109c5c68 nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x15b81e58 nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x12b38f7c nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x48bc920c nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xdc2c143f nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x21b5819d nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5532107a nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5b78c99f flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5ce1a27e flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x76e0dc6e nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x77c99ee0 nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8032894c nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x87c5edef flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8b93f8f5 nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8cd51861 nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8ede0b8b flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x95ecaa17 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xafa37649 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcbb63b7a nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd9e215d2 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe0d3ea71 nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe58fa3db nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1748c0c8 nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1ef70ff0 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e022982 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2fb57bb4 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7a1e040 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb32e1d6 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc3908e1 nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x047fda51 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x607f3f1c nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xc78e84c6 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8e6ae132 nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcd5a212a get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xa0df9a5c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfd2fe288 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2c1c4650 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x61568edc ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x734211df ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7bcfca3b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x88003155 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x98bcd058 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xba3e512d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x211134c3 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x719d9d40 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0cf668c9 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe24e45ed nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe5aed1e1 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x04b36f8c nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x094a3034 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0db9e174 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x19696687 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3958058e nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x53ee2a52 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x55b6b856 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x61133faf nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x70125ecd nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x725944ce nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8a564045 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9acad0c1 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc095fcc1 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc4cf6a48 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xec43c1c1 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xee0b116e nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf2fbd54e flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x17986b9d nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1a794dee nf_nat_inet_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x64608fbe nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x741a3a86 nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x848ca009 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x873eeb28 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x87e3fd9b nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c091c36 nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8c220a56 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9bc292a0 nf_nat_exp_find_port -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbf382003 nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcd33b785 nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7576263 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3fc199c7 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x53c7da69 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8ffa930b nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9172de9f nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96d4b038 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x991973f4 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9b113775 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9e36ac2e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa3f165c5 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb63a32b5 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc1723206 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc51b8da7 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xce776e27 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd78c03f4 nf_nat_alloc_null_binding EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdd15b704 nf_ct_nat -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf1130a40 nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4f5c9c2 nf_nat_ipv6_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x11f04633 synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x12a235b6 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xde6bf507 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfd765362 nf_nat_inet_unregister_fn EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3e17a0d6 synproxy_recv_client_ack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x46406d9b ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x732b6322 synproxy_send_client_synack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x82162aa8 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x976df162 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9bb4641d nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x33b49825 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4917551a nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x65c01d2e nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x77d5b1e8 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8cd544a4 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8f57fec8 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa5f00733 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca176924 synproxy_parse_options EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcd29391d nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd033b69f ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd48b77a8 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x032b9b5e nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x039d65fb nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06d3c49b nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16cc70f1 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xcec81dc8 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe21f55fc nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf37d035a synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x03b72d34 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a3b6d95 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x19411bce nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ae3ed7b nft_set_lookup_global EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x37e7e505 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3840da7d nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3acacbd6 nft_chain_validate_dependency EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46051359 nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x480ae8a7 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b33b847 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4c2c43da nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4276b1c7 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4677d6d7 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ab977fb nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4bfff00a nft_expr_reduce_bitwise EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d0d6226 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d179161 nft_data_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5066359c nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51bfedbd nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a1e484e nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a472221 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d49ff42 nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ea8198f nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71ca45f4 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7206c603 nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x780965f9 nf_tables_deactivate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x802e0f98 nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84dbc034 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a130642 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f0d24ac nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e239c90 nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaa8f32d1 nft_meta_set_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xacb083af nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb876991b nft_unregister_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9d6bf0d nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe7a2db9 nft_meta_set_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0605dc8 nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3d27ac8 __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd82cdbc9 nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde033041 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x585704c4 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e53cae0 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x617a1eb0 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6389fe14 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e6679e3 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x725b34fb nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8072164f nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81f18aeb nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82c6874d nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x837ea135 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84d5738c nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x961ea123 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9622ea84 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cf736b6 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa0487d5a nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa73fe6d2 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9d85dfe nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab341c6a nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad850d17 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafe1df64 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb4768cfa nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7395efa nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb7dbabf8 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc7d3510 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc015ce6f nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3b8e939 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xce14fd15 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6ad8814 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd8eb5ca1 nf_tables_deactivate_flowtable EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe839ec0f nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb855b93 __nft_reg_track_cancel -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec1dd245 nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf30d4718 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4ef838a nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa114b2e nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd5df6f6 nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfe0bc704 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfebd0c24 nft_set_catchall_gc -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1fbde80d nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x235222e8 nfnetlink_set_err -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x31fa9b5e nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed84fe5b nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf344e48e nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf54ffff1 nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa6c92d8 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x14acffb6 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1d8c1e42 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2c88e9c6 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4454aca6 nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x89751d97 nfnetlink_broadcast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xba14e4ea nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xba33d3ba nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd9a20929 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x76d83237 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa027979b nfnetlink_subsys_unregister EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8b87aa89 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbdd8d1ee nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xecde6582 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x32ca4a57 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x92c4fb14 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xac85eadb nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf1c83c3b nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x353e2052 nf_osf_find EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x5241fd4b nf_osf_match -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x191dec4a nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x25bf9a7e nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8589c999 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb73a8e7b nft_fib_init -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xdc9c633e nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7f6a978f nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xe8cc7f11 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x405b6a96 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6b5bdbda nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x81928be8 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9e30e017 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xd105ecec nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x0381fe65 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x139792e6 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4611d310 nft_reject_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7774092d nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x414e1b7b nft_reject_validate EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfd3ca540 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x13d349de xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x17d52bcb xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x20576765 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c9a853b xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46967f25 xt_hook_ops_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48e18b20 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x547cb608 xt_compat_match_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x54eb3013 xt_unregister_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x607cafff xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x65684dd8 xt_register_template -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6b1e589c xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bc3eff1 xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x732e5eb1 xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x75280832 xt_request_find_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x760695d4 xt_register_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76183883 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0b3f7ba8 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c35ea23 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2bf77a71 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x327267df xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c6ae5b8 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46286d32 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46e6e166 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x506e7ae0 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x550bd452 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5666e1eb xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f65b68f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x705ed753 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x74531946 xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7cf69df2 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e5460f3 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f7cf85b xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x88a75232 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x895cc7c0 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x89a5e0f9 xt_check_match EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa2418dd7 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa5557838 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xabdecd88 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc561f556 xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc687032 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce61e3aa xt_check_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9629d4d xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7c457f8 xt_request_find_target EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe9d65104 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb490c9f xt_register_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x325a8fc4 xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd8c20fb5 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5a89e9d3 nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x743d27a6 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9906f5fb nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x203d73c7 nci_uart_unregister -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb12a4483 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd6c29968 nci_uart_register -EXPORT_SYMBOL_GPL net/nsh/nsh 0x06604ada nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0x79db7757 nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0b9e5af1 ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x263fd659 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8139106f ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x88c007db ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa453cd1d ovs_vport_free -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc2a2e518 ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/psample/psample 0x9cbaf900 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x9d1795a2 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xa87e6c97 psample_group_take -EXPORT_SYMBOL_GPL net/psample/psample 0xb387440b psample_sample_packet -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x088ae790 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf84280ff xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x4ffc7f09 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xc2f6a5e9 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x22ca0d67 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x9d3e8109 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xef64a141 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0fcfa2a4 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x75d87135 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb582fb07 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x1f188de3 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x2f95459e nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0093b8ef ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x28fb16d6 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x97ecba5e ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb9ff985a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd24ae169 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf63d5d2a __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x162f7bf4 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x6b9cdbd8 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x932afd3c psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xdafac0fd psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x3188770d qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x98aa4ef8 qrtr_endpoint_register EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xccb3bc95 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe4c1082b qrtr_endpoint_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0x003ee302 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xafe65121 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x04dfcee0 rds_rdma_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x259b9bb0 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x016cae94 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x0ddaaf53 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x1324c081 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x13b3058a rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x1a4d6cd7 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x1a5fcf8e rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1fd1540e rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension -EXPORT_SYMBOL_GPL net/rds/rds 0x31af4f84 rds_conn_create_outgoing EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x46c93309 rds_message_put -EXPORT_SYMBOL_GPL net/rds/rds 0x57401499 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x45c1782a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x491ab994 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x528f0ee4 rds_send_path_reset EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x58bac1a3 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0x5ac9a1bd rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0x695b9a7f rds_send_ping -EXPORT_SYMBOL_GPL net/rds/rds 0x7111258f rds_inc_path_init -EXPORT_SYMBOL_GPL net/rds/rds 0x7814b595 rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0x7bb1c593 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x65a545ad rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x6b83294c rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x7654aecf rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7ee1785e rds_send_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x8845413d rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x9a0f1395 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x8a126de4 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x8d98a56d rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8dc4b8e4 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x937abce6 rds_conn_create EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xa23df38d rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xa3e7e02b rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xa4173dc4 rds_conn_destroy -EXPORT_SYMBOL_GPL net/rds/rds 0xb3f73813 rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xb65f1484 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xaa170a32 rds_connect_complete EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd196fc16 rds_info_register_func -EXPORT_SYMBOL_GPL net/rds/rds 0xd1e5142a rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0xd763952d rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0xdc9ed1e6 rds_conn_path_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xe55e60de rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0xe7b25e32 rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0xf48633c7 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0xf8720356 rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0xfd73d2d1 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc6cc87ff rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xcc51831d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xcd79019f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xcf309314 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xcf659aac rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xd408235d rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xda075772 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xdb61ff89 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xde2cde54 rds_trans_register +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x3f627f29 mqprio_qopt_reconstruct +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x679cface mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x1af5f506 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x88782c96 pie_drop_early -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x91f024c6 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x19fe655b taprio_offload_free -EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x78555058 taprio_offload_get -EXPORT_SYMBOL_GPL net/sctp/sctp 0x303b4983 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x77ffb2d0 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x792cb794 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0x7e7fd99f sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x1e56c4f4 smcd_handle_event -EXPORT_SYMBOL_GPL net/smc/smc 0x239d15c3 smcd_unregister_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x2c33523b smcd_free_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x525de59d smcd_alloc_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x5efa4de1 smcd_handle_irq -EXPORT_SYMBOL_GPL net/smc/smc 0x714869e0 smcd_register_dev -EXPORT_SYMBOL_GPL net/smc/smc 0x786b3460 smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0xaa6190c2 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0xb83e70fe smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xf757e88a smc_unhash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x24d1102f svcauth_gss_register_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3656309b svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc5a38ce8 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x16f8ba5d taprio_offload_get +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x6a6b1c12 taprio_offload_free +EXPORT_SYMBOL_GPL net/sctp/sctp 0x16e757c2 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x1f7bb4b9 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x6c02e4e1 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x9ebe9023 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x39c67de2 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x3e1fe68f smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xa041b49a smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xb0e827b7 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x119f1840 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x20615fe7 gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x836c8016 gss_mech_register -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xcd4529d1 gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x016567db xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04af61ff xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd95a2dd8 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xda177336 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x003fd002 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01237cb2 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02ea7cb4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040e146a svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04715710 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04dc74ef rpc_uaddr2sockaddr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x061ca463 xprt_add_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x067911a1 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0784236c xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x082eaeef rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08c42de4 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d8f3735 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f834d70 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x117e4351 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1401307b sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14dfbef1 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154cfa47 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15d765af svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15f8f236 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d6611f _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17078526 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bb81017 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bc5c026 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06ae633b svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0777134e rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x079100cf rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e96706 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x080b1038 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096842e0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096f507b xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a24d3a4 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac02227 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac762e3 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ae2859a xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c6fef4f svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d5df8ae cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe0e777 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe38160 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe9e3af rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1074c9b6 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10c22d1e xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11248760 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12dfe2f4 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14247c6f svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1671b6d6 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167925fb svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18f78586 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ae073dc xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b3b1c38 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bdecfee xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c04a1e2 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cbccbb7 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d5740ed xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1da0ab52 xdr_stream_zero EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f67a997 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b19110 rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23204a73 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239e3a6b xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c9fce2 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24facf6c xdr_set_pagelen -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272dc409 svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x278f7da9 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b4e689 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e60620e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ebe0d4e svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c26bd3 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2138634a rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x233c534c rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23a714aa rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23efb59d rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2401e2e4 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2660cd38 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28221d81 xprt_reserve_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b123f1d svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b633229 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c065eb4 rpc_clnt_xprt_switch_has_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9705a0 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fcbd705 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31105cc3 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2932b0f0 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2943044f __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ac24878 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e547b4b svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f6b9947 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301a3126 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x301c4c56 xdr_stream_pos EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32201d90 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c1c179 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33da74db xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32840fd1 rpc_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37717319 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a678c5 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37f1a2aa svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35ee3a45 cache_create_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39b63547 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b6eaf48 rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d6fa3d1 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d701207 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ec630fe rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3883cf0f xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x389f8678 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39bd4b8c xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3afff036 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b292a40 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b358682 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b60b0ad rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b9b544a rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c75f911 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cd1149f xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d976117 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3db7ce9f write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e19bfbd xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3feb1d56 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429a6537 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42f9b357 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4370c6eb rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x472390f0 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487ce98e sunrpc_cache_lookup_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x488d7d4b rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49412268 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a0294e7 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fdf2478 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fdf7b2b svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407e3574 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x451e94f0 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d1f314 xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47622275 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x476e3258 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4811494e xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x497f3980 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ac0399d rpc_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b37b770 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c020591 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d1c335f svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b5ac7a6 xprt_reconnect_backoff EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8593f8 svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50224b08 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5040fab1 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51b12ed1 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51d1333e xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5064f55f xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x527f5362 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x530a3e5f rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53397fa5 sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5420d8ab rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53e2fa4f svc_proc_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54b77b91 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f763f8 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c93e67 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a36097b rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577bd3a8 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57e5d543 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5861e285 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fbd542 rpc_clnt_swap_activate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cba50f3 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f02e8df rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f11eb1e xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb19a17 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6027c3f3 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a6fd115 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5af2f8c0 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dd6ba59 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de11808 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de4e75f svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x607556e8 xprt_unpin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641254e7 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x647d26af xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x656359a7 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60f1005b rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60f219ad xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x627ac40b rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64066f46 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x649ab411 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64ac9866 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6520b5a5 xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6783c816 xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67d8c303 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67e65b4d rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6821cd5f xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6837ec51 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x684e9edd xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e529a9 xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6950530d svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69d8cb87 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a7a9dbf rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd96595 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf598b6 xprt_free_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c5cdaff xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d7364e3 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eb36b4b cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f143cbb sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f6ff738 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fc2a097 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x704b26be csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7050aaa4 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7152e4ef rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x680ac0c5 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69228477 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x695bee68 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a447aa2 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cc66ed3 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf92909 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d65614e rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e5c2c89 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f1c8318 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f319c54 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f575985 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7148d4f8 rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71c8c4ea rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71cb81d0 xdr_stream_decode_opaque_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72151d29 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e6d41e svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e23df7 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74e49e4a xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75665a47 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x766dcbeb auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7720a343 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7746024e rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77f86d29 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78694127 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4f3970 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd1c3c5 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x721bc4ec xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74bb9c8e xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74f8f0d2 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ae8aa7 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f29c93 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e19587 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x787429a6 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3287a9 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7af5b42d svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ccc36ca sunrpc_cache_register_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dfca057 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80a9590d rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8389d5f3 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x846a2bd3 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85fbfa3e svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86794856 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8afd7072 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bd6b6a1 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d131569 rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e651787 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd19731 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x926a7e96 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x930e8877 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a97155 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93ef0ef8 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942c6277 svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x942cdd00 xprt_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x952a77a9 rpc_clnt_swap_deactivate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95de1436 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x961a0257 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dfbd4d4 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7edd6735 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f1d66cb xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x815e6075 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8192a821 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b0a3bb xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85c7ed82 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a5ab876 xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bd266dd xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c8c7f9c svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8bfc63 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd1e2c9 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x909dae5b auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9239e1eb xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93e87cc1 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x952af0e1 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95aaba86 rpcauth_init_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f460a2 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96fff260 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x973126c2 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x973eae9b sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9756e1de rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b49945 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e18c6e rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96765320 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96acc9db svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97acf6a4 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988618b0 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9937326f rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d4f02b xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a23209d rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a420667 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b0bf49c xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b244306 xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b507158 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cec35dc svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d366e26 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eaec1ae svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0a48889 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0b01055 xprt_pin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa43670f3 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4cb9f5c rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f7bb9e rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa50de609 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa74b3bfa svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaa9ee3e svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab563a40 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaba8e8ee xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac1701c7 xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac73ebfe rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadbad815 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bb77d32 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf08a2c svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd1d7b0 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ce52fa3 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cef0ef9 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dfc527b rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa07a8c02 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0e7d372 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa357d9c0 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa39cb501 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa41260d4 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa530715e rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6f31400 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa3d0bc5 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed5eed1 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef34e91 svc_fill_symlink_pathname EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb08a37db rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1f92afc rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb209502d rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28e03b1 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb29a7bd0 xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2f6250c rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb50ef49a xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb004db1a rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb02d519b xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb08aa106 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1a3a2b8 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28a7f68 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2922763 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb49ed87b rpcb_getport_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6616dc0 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7d4e277 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb87d34fa xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb00c281 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb6097c7 xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbcecbee svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf7362e rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe8e59b0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51eeaa5 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6dacffc rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9309dd9 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ee1e29 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbac31b6c svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd88f820 svc_create_pooled EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfa0b18e xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0476cc2 svc_xprt_destroy_all EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0cf819f xprt_reserve_xprt_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc28de0bc rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc44df6bd rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc48d1637 rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc492b549 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4db0b90 rpcauth_wrap_req_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5116f60 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc68eedb6 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc717d572 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1457eb5 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b79267 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f26cff xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6b86981 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6c223bf xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a74c40 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc82f92f0 rpc_malloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9488e4a rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca2d06eb rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccdf1567 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9f6bc5d rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcba6dbe5 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc161990 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc9ac14b cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd1cbd84 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdebf7d9 svc_xprt_received EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce69343a xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff23fb2 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcff4a6e9 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd08c1fc5 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0d273d6 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd27c26a6 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4251366 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd57048c4 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5a5a1b5 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d893a1 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b50bf1 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9f34588 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb5a9bad sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc8a19ba xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcf87f14 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce7857ee svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcedb296a gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcffac41b xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd015d8d5 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1351fd3 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14951af rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd202395d rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4724bb0 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd66189b3 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd81e4942 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8cf43a6 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92f63fb svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd02403e rpc_pipe_generic_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd87ef8e xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddcb8127 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe003f35f rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe079c125 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0b4a4cc svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0be0179 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c2f900 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2629129 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2930f6e rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde58eaef rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a71607 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe30cdf35 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe326c004 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40e549b rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4767fc1 svc_reserve EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7053cfb rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe847daf9 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe87a15f5 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d3e1b5 rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5eb7ece unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe65104b7 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe68b7924 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe69c962f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7b4f6e6 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8674c20 rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea1d1374 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea206762 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf82680 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed8e6639 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb8e55b4 rpc_sleep_on_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeab2bb4 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeac4810 xprt_alloc_slot EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed8494a rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef20604f xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0929e79 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeee4eff6 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeee9bf9c svc_xprt_copy_addrs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf18d09f8 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf30cd1c2 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf33a9445 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c46425 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf40d5c64 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50a96bc sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5f436b4 xprt_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b8d70c cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74232c6 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7764a21 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf79c92e8 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf88f8e68 cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9428b0d xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb59bf8d rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/tls/tls 0x4da1e9e9 tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x6b633c8e tls_encrypt_skb -EXPORT_SYMBOL_GPL net/tls/tls 0xbafd5d0c tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0xc7d50f8f tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2720f90 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf369ca97 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50d98a3 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c32a39 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7660cd3 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c17788 xdr_stream_move_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c866ca rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8b66db0 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf91da8ba rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa550b15 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb1d45e8 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc79e184 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd9a8cb9 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff16d0a6 xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff6fe710 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff908e28 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/tls/tls 0x0706fe9d tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x3c55ae3f tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x5449e864 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x5a3d6959 tls_encrypt_skb EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x04572188 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a383bd7 virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x169ed818 virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17d466de virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a14faba virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25e127f8 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b74e057 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68ee2529 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e3ebc63 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x74288221 virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x742da63a virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fec03db virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x83b77092 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x933be583 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x97396092 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa3f14b9d virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa68b039f virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa85e0dba virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb1030d10 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3e15b69 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb70efcdb virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb899fcc5 virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb99566ee virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d796ab4 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0f80ac09 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2904a787 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x366a5631 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b152476 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b6a14e3 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e9bce3c virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f6735d9 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5ba371d4 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5c03bc73 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e5b5e58 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x627a6a93 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x632f2ec9 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c4dc60f virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73f3b921 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x75a9063a virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x76c50104 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b65a3cc virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x91125f5b virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94ff38d3 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x99f14ede virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9fa0d2bd virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0b60a07 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa2854e1a virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaafb0824 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xad7b1da4 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb17012d8 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb22b5545 virtio_transport_notify_recv_pre_block EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca008479 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca648c7c virtio_transport_free_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca84aeda virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf47a413 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdc4644ab virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2ce47b0 virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5cac531 virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeb57a9a3 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf7c4a7d7 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc9ea00f virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe0c031e virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbb67b907 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe2e6dfc virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd428ddd2 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda6ae28c virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xda814f24 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe77dce77 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xed4c3850 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08397b7d vsock_core_unregister EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x11896e06 vsock_core_register -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1ffcb56e vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0ee19b69 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c26c5f6 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c99c8dd vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x233146a2 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2452e65e vsock_remove_bound EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2c34c1b0 vsock_create_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x33f95503 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3523c51d vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x33c6c9c1 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x34358b14 vsock_for_each_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42963e6b vsock_remove_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42ad161a vsock_add_pending EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f60e8bd vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x501d6303 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x52fba552 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5d51687d vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x70242419 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x505bce62 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x537698a3 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5b09cd5f vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5beedf4c vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x68a601b2 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6c7e06be vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x969da33e vsock_dgram_recvmsg EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa516ca4a vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bd4b1ac vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6943084 vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf4a234f vsock_assign_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc916dd2d vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb95e4a6d vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc2ca8eed vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcf978753 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd3b158ec vsock_core_get_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdf74e707 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe1330129 vsock_remove_tap -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe431ec44 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe826d36b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdf181246 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe5c5ae29 vsock_find_bound_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0940eea3 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0eb1a3f1 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e4c00c2 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2e69af01 cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3980607c cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x54a82cfe cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ed939e7 cfg80211_wext_siwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x69e8fa6a cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6eb8bdbd cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8892c679 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f43e66f cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9770da5f cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc9312c60 cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd0bb7b65 cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd0e879c6 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe92a72ad cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed96a5db vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf83f8de6 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfdef6551 vsock_remove_sock +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x014e135a cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x16341a50 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d87d6f4 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x31479e83 wiphy_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x44f9f7ac cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5b6da9ab cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7cc0d199 wiphy_delayed_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86b394d9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x86f5a3b3 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8b12c7ee cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8ee1e442 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91c99dd3 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x949998eb cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa037405c cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa2eb9b48 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb672fc4d cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe2c85596 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf69af16f wiphy_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfc8bbfc2 wiphy_delayed_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfe67b913 cfg80211_wext_giwrange EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -19189,689 +19655,747 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x07ad999d ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1844bdea ipcomp_destroy -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3eb49fe8 ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf72e2c0e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5a7487cd ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x93161b77 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd2923fcf ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf0307395 ipcomp_init_state EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0xc0ac3ea1 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/ac97_bus 0x57e8217f snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x960630e7 snd_seq_kernel_client_put EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xcbf9166f snd_seq_system_broadcast EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock -EXPORT_SYMBOL_GPL sound/core/snd 0x0b498e7d snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0x1b676b14 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x3744de3e snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xee964236 snd_seq_kernel_client_get +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf0c8f9fa snd_seq_expand_var_event_at +EXPORT_SYMBOL_GPL sound/core/snd 0x07f60fee snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x184f723d snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x20a4ecde snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x52ee5546 snd_device_get_state EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x66655023 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x667c46f6 snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0x6b74d9cb snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x6b778664 snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x6e9e5561 snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0x70f720e5 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x852c8744 snd_fasync_helper -EXPORT_SYMBOL_GPL sound/core/snd 0x8da60951 snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0x8ec2655c snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0xa44ba238 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xd3aed92c snd_device_initialize -EXPORT_SYMBOL_GPL sound/core/snd 0xdb08d4fe snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0xe3d3914a snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0xe9d7bb04 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x7752e02e snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x812a5156 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x86c730c9 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x9db98020 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xa17b4a6e snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xa901c64e snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xb8b3e0db snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xbca6bb29 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xcd9f31bb snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xd6a5e263 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xe2972bef snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xe8e9beb1 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf29a545e snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xf3b2ccf7 snd_devm_card_new EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd 0xff4e30bd snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x37b51a2a snd_compr_stop_error -EXPORT_SYMBOL_GPL sound/core/snd-compress 0xe70bc33a snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x536b1586 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x7510127d 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 0x2ad0ec07 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x40aa70ec snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1564c0b5 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x181f0190 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x37197e7f snd_pcm_stream_lock_irq EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x694e5498 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x821a4c60 snd_dma_buffer_sync -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x897f318a snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8a836a53 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6ff302be snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x86616642 snd_pcm_fill_iec958_consumer EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d61a387 snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9e158fb8 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8f034c7e snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b61dab9 snd_devm_alloc_dir_pages 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 0xb57b9e24 _snd_pcm_stream_lock_irqsave_nested -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc7593d87 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcb579172 snd_pcm_stop_xrun -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd4658e1a snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe69178a9 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xec83a7e1 snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0bafbd48 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x25d51d65 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2872dc62 snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2963bfb6 snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5763268d snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x664747b4 snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6fd16a1d snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7adeb6da snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa5995075 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaff8a176 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc1f1e1e7 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe321d3e5 snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x19c8cc64 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xadae997d snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x08d9565b amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x290f370b amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3cdb94d7 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4713dae7 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6d9e0de5 amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x821cf34e amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa8393456 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaf25e170 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc75d3319 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd02c6bf2 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd61e27d9 amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe18b6acf amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf63d1c85 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0810ab52 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0ca1ad4c snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x134d9a70 snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b154d55 snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c3dccea snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x38c34d63 snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3b05afa1 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4418faef snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x484470f6 snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49baa83b snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x53da94c0 snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x55e16de0 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x604f837d snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x64f1794f snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c63be66 snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x80bca51f snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x83df623e snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x84b3babf snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a97c24b snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8b1245a9 snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x92cceed8 snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x989614f8 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9d746138 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xabf851a1 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xade6e315 snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb5d26108 snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbe089cbb snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbed942e9 snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd0ddfbe3 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe4374c55 snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe9607988 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc88c7035 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcf4c0592 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd2038aff snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd6d54a6b snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe65f5224 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe8cb181c _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xffcf9fe0 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2222445b snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x53cdee6a snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6a36a120 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x73b91be1 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7f87268c snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x82c8db15 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x87475b9d snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x897c3528 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa483a691 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xab5a2bca snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb2d86cf1 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf23f846c snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xc270704b snd_rawmidi_free +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0xcddea350 snd_rawmidi_init +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x439a58f8 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xbd31f010 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x2f5f827f snd_ump_receive_ump_val +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x4d7c37a4 snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5b39d06f snd_ump_convert_from_ump +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x6b50de2a snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x74d63a45 snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x77bd16e4 snd_ump_receive +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x7daef564 snd_ump_endpoint_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xaa65361c snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xcb932785 snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x36accd15 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x41b49c1f amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x427fcee9 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x483b9926 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4c52f7b4 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6aee4e42 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x89a344c4 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x940747a6 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xce27d150 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd2656651 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd38a4877 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3279ab7 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf4fbbbf6 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x18ee52aa snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e5c607d snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x445c924d snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4801c452 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x527da347 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x52ba1c5c snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x54c3f388 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x575bf578 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5d2a1fe8 snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x68f7a432 snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6ddf8070 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x799f12de snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7ae467e3 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7b9bf704 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x82e01297 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9a985a7d snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9b47c773 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa0c81b5f snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa1c9a1d2 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa498bbdb snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa8d9b90b snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xab1fe6a3 snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb6782b2c snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc3c63d6b snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcb5b4963 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd49569c8 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd7150a2f snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6708a79 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xed7ad7ae snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf4b36fad snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfbf0b0c2 snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00c27a07 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x00fe19c0 snd_hdac_power_down EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05920239 snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x087a40cb snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08aac403 snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fb68c1e snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13399310 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05dc10e4 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x098816c2 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10706418 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12e92c7a snd_hdac_codec_write EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15e0b09b snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x168385ac snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16acf685 snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b548f28 snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1dd5221a snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f252683 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2814ba2a snd_hdac_sync_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2aa56624 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d8189ad snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2da6631b snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e7d3a2a snd_hdac_get_stream -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x334b04e0 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x339e6ec3 snd_hdac_display_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x359c16c9 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a84867b snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b438975 snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b9a86fd snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x151bdf9e snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x154e77c6 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1588677b snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1687fe68 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a05f996 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c84105a snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c8c6eb3 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x207d5c38 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x224cee0b snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x244b836e snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24cfd9c1 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x294f4447 snd_hdac_stream_release_locked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2998286c snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2beb3feb snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33853d26 snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33f63498 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a01c740 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a1ef8b3 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a394082 snd_hdac_bus_stop_chip EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ff3bfe1 snd_hdac_bus_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x409e61c9 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48283b7f snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49479927 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43417dae snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47c490f6 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4afd55bd snd_hdac_bus_alloc_stream_pages EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c8082ce snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4de821d4 snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5166f1d6 snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54b473cb snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e581091 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e66d452 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53d0d9ec snd_hdac_stream_release EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66150178 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c7a0ab6 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c8c7090 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6129481e snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6444dd77 snd_hdac_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x674ff617 snd_hdac_dsp_cleanup EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x692a7ecb snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c7a1627 snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c8bca01 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a62e0c3 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6eaa564c snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70db1793 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71cfc6fe snd_hdac_stream_sync EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d1f46d0 snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ded7ddb snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x863ec0bc snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x886930ed snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ab226cc snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8da23b56 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91a1195e snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x932d0d37 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x954f6a90 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x955874a1 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c28ee7b snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7de5a021 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e56ccdb snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x827443ba snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8363876c snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x870f14a7 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c4699f9 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x906e7bf8 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x935b76be snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x939f6287 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95eb8b09 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a881804 snd_hdac_dsp_trigger EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c4fc3a5 snd_hdac_read_parm_uncached -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c8c9a83 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f061578 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f610a96 snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fcd486f snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2b9ff3b snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa30680e5 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6180616 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa6ef47ce snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa18ce93 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab8e5c38 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xace0a10b snd_hdac_acomp_get_eld -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0a4c819 snd_hdac_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb52e1462 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5c94a30 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7042b6c _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb752fbc5 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8a18058 snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb99fe905 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbae6158f snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd7f5c39 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c056462 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa108b3a7 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa1daf0ca snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5f1125f snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa924a429 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac17b36b snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac80ae10 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad561985 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf60c84e snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf8f8c52 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb245f505 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb414ffb4 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6d2ffee snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8781334 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb99185d6 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbad0bb12 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb71c352 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe100cce snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe188784 snd_hdac_regmap_update_raw EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc06f1dc1 snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3e9c227 snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc448f250 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc76fe1e5 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcae424a1 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcba9d2f9 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbd1e9fa snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd45f7d71 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdbd27b90 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddd5f4aa snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddd90431 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3a60034 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe41644ee snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf7acbfa snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc02dda5a snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3d66860 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc8de84a snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdde241d snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd01f6d36 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1be30b0 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6c06507 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7613b32 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4ceaf01 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4d7a485 snd_hdac_stream_get_spbmaxfifo EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5844bb6 snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7e218af snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed63d682 snd_hdac_power_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed9b6396 snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeda51b3b snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xede93af2 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xef579449 snd_hdac_acomp_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0df62fa snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf12d890a snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf56465a9 snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf641b80f snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8ea2d22 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa16f4a6 snd_hdac_refresh_widgets -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb23a8c0 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1cb4f098 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4f863c9 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe944d62f snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefc0d28a snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1807539 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1c0972f snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf24d1a25 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf61861c6 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8ca58a0 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbef2649 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff8b713e snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x14496707 snd_intel_acpi_dsp_driver_probe EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x53115a90 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x53388b82 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x62f4e7b8 snd_intel_acpi_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x38e43531 snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4985e3e0 snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x97308043 snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa54b8dac snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa73ca3a2 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa7e22ca5 snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01503003 snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02a4cf9e azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0315b564 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x035bdd2f azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03e08da0 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04050e1b snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x040de4e4 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05ee9169 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x6a6b8870 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd2f7ac28 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xdb42abcc intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1472f598 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x19624de6 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x19c35e80 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x80879ed1 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9e575d0f snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe89da3d0 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03ab8184 snd_hda_codec_pcm_new 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 0x06ca4a2b snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09d14fba snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c870ce8 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e6fa4bd snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f8b9bde snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x109a8234 snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13f737d5 azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x155ce849 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1785a8a4 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ddcbe8 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c3304b1 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e0833a3 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e9e594f snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23684aaf snd_hda_codec_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x246ef889 snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cb88936 snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e1f5193 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34612f7f snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x347a502f snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x371efd36 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x073c96ef snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0beef79e snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c341733 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ea34b4e snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f5c5417 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11381b1c snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16145d1a snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16843c2c snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1698397b snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16fd92cd snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x191dfb6d azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bc9a471 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20b8075f snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20ea889d snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25d67e83 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25feedd5 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b2ce0b0 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c487a44 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30a1b38a snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x316d2b85 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32efab40 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x369a90d5 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x377af6d8 snd_hda_apply_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38f3ad7e snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3951fec7 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3965d235 snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3eabe01b snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40615328 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x407be5e1 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4099ab90 snd_hda_jack_set_gating_jack -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41f6669a snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4255bb4f snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42bae19b snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45108ccb snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c4570f0 azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4feefdf0 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51c5865d snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55fd636e azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x579213f3 snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59d1fc0e __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ceb089b hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f913978 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60290e68 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x627c524d snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64195375 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64fd8f83 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bd9750d snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bfc6929 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e95ff97 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6eeff0f2 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70099b9c azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73cdd69c snd_hda_sync_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x756be36a snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76a241bb snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79240b3c snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7da21f5b snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e58bae5 snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8098aa84 snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8187aa82 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83a1cf19 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d0a5b55 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d1ca6b1 snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ee04b1d snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94251dcb snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x954e978f snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97498e3e snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9763dda7 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97af78c8 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97ebfe03 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x992044dd snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99a33b13 snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a008684 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c980e79 snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ce83b03 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9df1c5a8 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fda2ba0 snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2967b60 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa37b9a5d snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa709409c snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa85c02dc snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacbd8484 snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafbe5728 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1da66e8 snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb68083b0 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8071859 snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb84286d1 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba8a33d0 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbacef9a7 snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbba8cc7d snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd022832 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf5ec415 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc15176cc query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc219f562 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2b4dfed snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5c73e05 snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc620d0fc snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e25086 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9c1b193 snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca781d95 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb769792 snd_hda_lock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfc5e366 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd222be96 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2758197 azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3456e1f snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd62f2205 snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9371128 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda654ab1 snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdadc716f snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb25bd96 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb86c709 snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbd7a245 azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe08b58f9 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a1b8f64 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b6a6dae snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c6c0b2b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d80612c snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f797778 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40077755 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41865db2 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48d5f6a5 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48e791e2 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49f530fb snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a15d5b3 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a4bdfe0 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4acad552 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c892358 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x501d6fd4 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50eac168 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51b5d6f2 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x539c5f02 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x574101f2 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bae14c7 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c665f06 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60409c50 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63a55bcb snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66b22036 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69875a21 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a2edef1 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bf21bcd azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d530f5d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6deb55aa snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e7f65c9 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70a434ae snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72773901 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7281a501 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75aade1e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x767fa84b snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79237f8b snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b03f93b snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d9e7101 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7df19f59 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f0c309a snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x800aa995 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84cd779d snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8725ad55 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87746c8b snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x880344de azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dd4e55a __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8de973b9 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ecba648 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90c69e91 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92dfb2a5 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9671e82d query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98141237 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b7a6d24 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b8323d1 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9badadaa snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ca4f3a7 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d0e33b1 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f10bd16 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3b8a399 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa59dd812 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab72496b snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac751ea8 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaea1a77a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafc4508d snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0f5c289 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb183fc46 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb21d5886 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb21f1c37 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb975d281 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc3b0973 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcebc233 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe6cdffb snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc07a0d08 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc128e863 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc34b5d1c snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc36e3b8c snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4eae694 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6b629f7 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7361b9f snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc760ec6a snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e57c2d __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc975abe4 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9bfe658 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce257c18 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5cd8896 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6d4aa6d snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd707c28a snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd753a1d3 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7725d1a snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda9fea98 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaa6de75 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf91c26f snd_hda_multi_out_dig_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 0xe16fa9f2 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5192411 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7044bf4 snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb5c34fd snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8487f0b snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8bc46cc snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec840319 snd_hda_add_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefd53c30 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2ade859 snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf32960bf snd_hda_get_int_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf58759de snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7f89bd3 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf308fdfc snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf329c504 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6e5429b snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf85f862b snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf87b9920 snd_hda_codec_amp_init_stereo EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9bc3c30 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc324a0b __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd674e1c snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f85a46b snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22ee7114 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x22f56c63 snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23d896c1 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31b3d833 snd_hda_gen_hp_automute -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3d623d4d snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a4809a8 snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x634f605e snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67bba76c snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6ade7549 snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x72a0c8c7 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x72c39852 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9588b97 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb9848c7 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe31401a snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe58e7fc azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffb1e4e0 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x04db8cc4 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31d2f42a snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46d66226 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x51116d07 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x54d76525 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5bd0784b snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6208117d snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6dd3136b snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x74c2e253 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 0x77db23b1 snd_hda_gen_fix_pin_power EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x87746cb3 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ff28804 snd_hda_gen_update_outputs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa89ed5fa snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xac5a3d1a snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb5dd199 snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc161777c snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcc766a6b snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdf8a1db8 snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x265ad022 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8ffb7d5f snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x98628bc8 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa22c6e56 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa919998c snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xabd6ee00 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc8baf362 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdb3e1ec1 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe7167a58 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf504db79 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5f069c9 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfcd5f84d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xffd659b3 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x6b20fb22 mt6359_accdet_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x095df938 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x43cdc265 adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xace80d4a adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1af3be29 adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x286cda37 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3708041e adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3a3f53cb adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8183e9cc adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x8961cb4a adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb466fdaa adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd47c18f0 adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd5b53825 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf0d34552 adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xf3fe8a2f adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x240d551b cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x45d5d395 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xf04a94df cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x143e6e58 cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1f5323fa cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2981ed13 cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3304c06a cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3a4e5bdb cs35l41_configure_cs_dsp -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x501f3ad1 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x728b8c2e cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x752d659d cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xad3dcdbf cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xde639d19 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe571f490 cs35l41_test_key_lock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe64a3c0e cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf1b3778d cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4d31c13b cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xbb6ed0ab adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x0816d7f0 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x8fcf0b90 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1894b051 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2849c40d adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x31fe5c7a adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4860a1e7 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x87095942 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa251b884 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xac5f196a adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc0469fab adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe30f759a adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe37c7c9a adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x2cbf4977 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x0213e7a3 aw88395_dev_set_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x152488c6 aw88395_dev_stop +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1fae8006 aw88395_dev_get_prof_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x3dbfe739 aw88395_dev_mute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x53c37ebf aw88395_dev_set_volume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x5f9fcdbc aw88395_dev_start +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x6468058f aw88395_dev_fw_update +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x91dd55f1 aw88395_dev_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xaba8c5e8 aw88395_dev_get_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xae531f67 aw88395_dev_get_prof_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xf9807c79 aw88395_dev_get_profile_count +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xfd49b30b aw88395_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x82a70ad2 aw88395_dev_cfg_load +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xa0ff96e4 aw88395_dev_load_acf_check +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3aeeb265 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5d7725b5 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x6e5d9b79 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x07e2c3b6 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x19466d6f cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3349c68d cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x389e86c7 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x62c92071 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6f95319b cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7886cbe6 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x851cc052 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8a1378f7 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8ce99d8b cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x92fc28d7 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9c0a8c8b cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xceb9a210 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdc8c489c cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe0af29dc cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe92ff6ad cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x188257e9 cs35l56_system_resume_early +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x1e03f562 cs35l56_system_resume_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x74814bd6 cs35l56_system_suspend_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xb8e457ed cs35l56_system_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe5b09bd3 cs35l56_system_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe8468e93 cs35l56_system_suspend_late +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x73df8b56 cs4271_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xd5c4f7af cs4271_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x03456848 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2fb73d5f cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7270e361 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x75bd0b12 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xa9e5c1fb cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1e690575 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x3fbbc95e cs42xx8_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x5c6437f1 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xc4b1cea6 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x04b2bfa7 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x97c3b4a3 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc6926bad cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcbea4ef5 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd5dbcb62 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x204adb7c cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb2cf707c cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x686626fa es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa70dd0a4 es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xc056552b hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf1b32fbd snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xf9cfb65f soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5cda2dac lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x8ebf99ca lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x22ca435d max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x191d63bf soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4facda64 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa305e41c soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xe0f430c6 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x0a49b5b5 mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x97838414 mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x9eea7228 mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xccf6943b mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x05779d9d mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x5e028db2 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x6b0b0227 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x9ebf7a28 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xe266eaa8 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcf8a39ac cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb2298dcc es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xbd81998f es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x345d430c soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x490b852a hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xfcae7fe5 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x10011f67 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x8b4e2f6c lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x12f806f8 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x2ffaab0e max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x37627fd8 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x64b91944 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xc2a1cd9d max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3729cfaa mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x43f3f8e9 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xb1404692 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xcf7cdb7f mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x350f2fc3 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x6c48c6cf mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xb2db77fa mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xc60140b9 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x4efec8f8 nau8821_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xea8b0c3d nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2ef97ae3 pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc0e866f7 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xecc471ec pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa9db47b0 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc758cadf pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x32a84731 pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xdc5b9c1a pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x1cc8b7d1 pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x60e573c2 pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9c1b0084 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb0c3f860 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1d99b219 pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4308e2b1 pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7456a3f8 pcm512x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xdbf8673b pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xfd06df73 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xd89edba4 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x289ad598 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2eef397a pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x4ecadd4e pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x497a7166 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xf590c649 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x50a7c83f pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xaa608c4f pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x42cc8cf9 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa90ff8d6 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb6cbaea3 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe412546e pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x21076dbf pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x879b54f0 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe924b956 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xeace745b pcm512x_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info 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-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x07cfdb8e rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x17c1e689 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2e37857b rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x54f6d1d4 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa895b2b0 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcbcc2b72 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x09369365 rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x95b51dc3 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xb273d081 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x05a58c33 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x8635fa19 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x218eb00b rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x59c16f26 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x893ba659 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x960b2103 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc56705d4 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe13b0230 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0d8ef38d rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf4fd626a rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x4cf48ab6 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x0e0374fe rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x3982f268 rt5677_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0110557d rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x07cb05d5 rt5682_calibrate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x35ac26b4 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4ed035bb rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5917cc7e rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x23c171e8 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x36e70231 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x43f79cbe rt5682_register_dai_clks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5c9d5d13 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6de9c954 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x78aaaad5 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7bf6aa52 rt5682_aif2_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x84835255 rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8e9dd5ba rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x90c11151 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x600f0897 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6f18d63c rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x70510e47 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7442c140 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8b38b394 rt5682_aif2_dai_ops EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe6057398 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x977fdd45 rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3489a037 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x59225be4 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x864e34c5 sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x96d1f424 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa0e4033b sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x492c4145 devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xf4fa1c09 devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x9b7e4a8f src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xb66bf3ac src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x42bb8d30 ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xaff5a950 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe634cf3d aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x6822db62 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x3ae4d972 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf98efa94 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xb3e06334 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0423a71b sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x15d6ef71 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1fef28b4 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4657782d sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb2973bdd sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xa2565438 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x9df28178 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x155cf136 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x7882e171 src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xcc993689 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xfdc64e5a ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x023c58c1 tasdevice_dev_update_bits +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x0a7b0204 tasdevice_amp_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x0f8cc6cc tasdevice_dev_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x1f6ad35d tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x238a7c30 tascodec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x28328aba tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x5279cab1 tasdevice_dev_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x699cbfaa tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x953fd700 tasdevice_amp_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xa2f4619d tas2781_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd60d28da tasdevice_dsp_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xdf748019 tasdevice_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf6d86aae tasdevice_digital_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf7d09c22 tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xfd419420 tasdevice_dev_bulk_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4697562f aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xd1d70e58 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xd8c3a72b ts3a227e_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x495c789a wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x56fe4344 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xa2ef8e6c wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xacd7c2ff wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xff184e44 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1042574e wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x109bb275 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x10f0fe94 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x23492349 wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x28cdfa3a wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x29309d77 wm_adsp_compr_open -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x36810145 wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3be9329c wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x45d18093 wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4ead1275 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4f7798f6 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x99a32964 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x9df16501 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd1125cf9 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd96cbccb wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xed802c02 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x096a5568 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1077428a wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x21040ba1 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x263d8cf0 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x310a1f56 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x335de3fe wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3476dd23 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x39dbc503 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x43d453a3 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x50c6aed9 wm_adsp2_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5380306d wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x61c85ecd wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6accb0e7 wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x77156df1 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9119e21a wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa8235027 wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaaeddcd3 wm_adsp1_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb1c690e9 wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcb16f1fd wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5ef0f877 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x664eca91 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7b9c8602 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8372085e wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8abb925b wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8fab6a3e wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x910f473a wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9fc944d9 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa8d5407c wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xad27eaff wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb187fbde wm_adsp_power_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd5d4ef83 wm_adsp_read_ctl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe6428dcf wm_adsp_write_ctl EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xeab5a215 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xebaf3a9d wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xefe0ab2c wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf9b11bd2 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0ec2c33d wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2a4d8411 wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4dcf02f5 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xecfdc648 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xed15d70c wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf522ecee wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf6d46f3d wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x07a939c7 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x275628fa wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2e9d2b25 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5809894a wm_hubs_handle_analogue_pdata 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 0x7413611e wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5f8e56f3 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x66523518 wm_hubs_hpr_mux 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 0x7d2fdb23 wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa567b650 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xbef36b3c wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc914861f wm_hubs_update_class_w -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x3dc64373 wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x57594c8f wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x71a93968 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7d46d5d2 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7fda1316 wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8b427476 wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf678db5d wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xb1144739 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x40867569 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xcceb5879 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xd1de92a6 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xa32667d1 fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x790189e5 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd782df7b wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x85cb9dd3 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xdbdeea5f wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x01a658cd wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x512dee5d wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x65565a3d wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9ab7155f wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xa7ec1345 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x2ca3fed1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x139d6ce7 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xf922a5c1 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x0dd3a2c6 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xc2806db2 fsl_asrc_component 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/generic/snd-soc-audio-graph-card 0x38b98a4e audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x12191c75 audio_graph2_link_dpcm -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x251c11f3 audio_graph2_link_normal -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x8d2067d5 audio_graph2_link_c2c -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xc11d511f audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xc6d9b57c audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x2296fdee audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x45e04007 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xa0d53b47 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xebcbe1d8 audio_graph2_link_c2c EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0709aa58 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x09a938c0 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x13e13a72 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f09a1aa asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f97b43c asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2255696b asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2ad4a152 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2d75f2d1 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x50ebabc6 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x55f24414 asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5cec4697 asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5d1fca06 asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6c923fa7 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x94463931 asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaece37be asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb7fb787a asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc9d22e04 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdd454425 asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xde1fe4fd asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe7a95c33 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf7c01bab asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfc70e38f asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x19c66d7b mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x23e9e51a mtk_sof_card_late_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2696f343 mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x288be61e mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2fbd35e2 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x326ad022 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x53bf7b37 mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x59d51233 mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5f34ad0e mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x701d420d mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7cb7af1c mtk_sof_dai_link_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x837b0b5d mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x906f8236 mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x97b74757 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa2fc70bd mtk_sof_card_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xacb8bcd1 mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb2ab873c mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc59d9c1d mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc6926278 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xde12f58b mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe32c1e94 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe5628665 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe951f046 mtk_sof_dailink_parse_of -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe9f4dc5c mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xef48cba6 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf35fd26d mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7503b8f mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8995035 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x409be7c8 mt8183_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3a71cb07 mt8186_mt6366_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xa3dad19d mt8186_mt6366_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xc0214f33 mt8186_afe_gpio_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xcf9b63a6 mt8186_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x4b1adab9 mt8192_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xbb0f45d1 mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xc52ce1d0 mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x00c8cd66 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x11412c85 axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8f46e105 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xa6773c4e axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc1a7cd71 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcb7c618b axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcc1f3253 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe4e8def9 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfab93761 axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x122ca0b5 axg_tdm_formatter_event -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x251a15ee axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x04c18231 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0eefdffe asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x17e96d38 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3815199f asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4a8e942d asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x55a8b714 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5e7cce12 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x63ec7126 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6e0996a3 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7036094a asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x73a2e648 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x78d97b70 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7ad711b0 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7b6291d5 asoc_graph_parse_dai +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x850e69a1 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x93624766 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa2f5fe6c asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xadf1bd63 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbbabdf0c asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbcfab7e0 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe9665985 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xee7dade2 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfa75fae6 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfbf7bd7d asoc_simple_init_aux_jacks +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0db958a4 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x100f7680 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x19733dd5 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1c49e3af mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x54820804 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5cee258b mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5df0917c mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x612f64b6 parse_dai_link_info +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6792fc58 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6adc4396 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8aace473 mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8c753b3d mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x95e4b130 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9677a492 mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x99f7703b mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa0d7b2be mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa9b18208 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa9f547bb mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaad834a1 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xac221e62 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xaf6b2d48 mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb2f51e05 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcbaf463b mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcf6ddf67 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd25f776c clean_card_reference +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd9b6cae7 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdc8addc5 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe32ea01c mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe6155015 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xee07fe0a mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xe61e56c3 mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x290a408c mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x3093ca16 mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xd128b3d4 mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xfcd38847 mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x1b0a40fc mt8188_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x1ce20d6d mt8188_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x60ce10e3 mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x3d6dfce3 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x91cc6724 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2208abc3 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x447b5231 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6a2823a8 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9355fa4c axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb88e11cc axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc030be61 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcefeaa8c axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xecccb30f axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfa75e17d axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x35aed395 axg_tdm_formatter_probe EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xd6d9b80e axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x2e6ae0b3 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x0317c6ce meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x11788def meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6ee65bf0 meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x771c736b meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x84099c75 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8c5ed75b meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x911ae11c meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe787b1e0 meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x28644951 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5420b0c6 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x57fcf04a meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5bc8c31f meson_codec_glue_input_get_data -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xbaf5344f meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc8903369 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x148408f9 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x7e3342f2 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x008f3a13 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x2ac402f1 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x3b0dfe5b meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4241f8b6 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7ad6e079 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa8c336bb meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xcf4df557 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe8bc9184 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0d97ca4c meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5faca3ba meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8281db46 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xbbbf4869 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc9c357c1 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xd19c419e meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x1228b24c q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x1f6495d8 q6adm_close EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x46750870 q6adm_matrix_map -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x8dcb8225 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x75a700de q6adm_matrix_map EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x0ae3d243 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x38132086 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5aba31e8 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x8f5a5483 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start @@ -19880,6 +20404,7 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x316101dc q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions @@ -19895,288 +20420,303 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xcc4952e4 q6asm_audio_client_free EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd2cf1a0f q6asm_run EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd38aa312 q6asm_cmd_nowait -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xd42750e0 q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xea75a5dd q6asm_map_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x6b5dc722 q6prm_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xea1c39a1 q6prm_unvote_lpass_core_hw -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xf0d4e930 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x49ff158b q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x5131247f q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xc7cfa7a6 q6prm_unvote_lpass_core_hw EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0a499a19 q6apm_graph_get_rx_shmem_module_iid EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1ac2b03c q6apm_graph_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x270db1ec q6apm_graph_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3ab4f528 q6apm_graph_flush -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4c09fe26 audioreach_shared_memory_send_eos -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x50be0309 q6apm_graph_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x553a8cfd audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x169e46aa q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2fe33fd3 q6apm_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x36950c51 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x38ddd560 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3a5032d2 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3ea2cba8 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x41f0063b q6apm_remove_trailing_silence EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5ec61195 audioreach_alloc_graph_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5f8cbcee q6apm_unmap_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x68ff4704 audioreach_graph_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x69085252 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6b9c74e3 q6apm_graph_start EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x835673f4 audioreach_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x83c36e26 q6apm_graph_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9be80e89 q6apm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9f1e6293 q6apm_graph_media_format_shmem -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa442feb0 audioreach_gain_set_vol_ctrl -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xaba9a816 audioreach_tplg_init -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xba878507 q6apm_graph_media_format_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xca60bddc q6apm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcedae1a0 q6apm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe374557f q6apm_graph_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf7c15485 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8321f4a6 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8457cf19 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x84f29bd5 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8515d058 audioreach_compr_set_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x924bc622 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9bbe09d0 q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9cd35e2b q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xaba2b808 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb00a26cc q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb041a62a q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbe5d3255 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc09f6ae3 audioreach_send_u32_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc37639d6 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcd6cdb9a q6apm_set_real_module_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcec4da24 q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcec6a76f q6apm_enable_compress_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd09be2e3 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd842dbc9 q6apm_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe2eb84f1 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe3f954db q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf0e8e1df q6apm_read EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x2db4725a q6dsp_audio_ports_of_xlate_dai_name -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x406a6e2c q6dsp_audio_ports_set_config -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xbab0554c q6dsp_clock_dev_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x21cdf1c2 asoc_qcom_lpass_cdc_dma_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3ae6d16d asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x418eea53 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4e5794ab asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x658ab5a6 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9201efde lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa8772b03 asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x0eeae95d asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xcae56964 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x42e58f5a qcom_snd_parse_of -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x6b261913 qcom_snd_wcd_jack_setup -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x933486bb qcom_snd_sdw_hw_free -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x9c197d6c qcom_snd_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xe7955d9d qcom_snd_sdw_prepare -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x4b4d2d06 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x508a43bc q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x9501f8e4 q6dsp_get_channel_allocation +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xc80f3130 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x53a8a882 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x203f641a asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2249497d asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x25f4b096 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2e72fe4b asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x575e1f1e asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x94a60c0f lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xb5f8a7d5 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x7aadfc28 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x93edab67 qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xcdb3ab4e qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x5d2edcca qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x6fa5d4d3 qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x98f5f0e0 qcom_snd_sdw_hw_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x2ad85b63 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x48c4d20c snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00c5f3c0 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x014fe7af snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x023448c8 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0296cd7c snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x040457f2 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0471f812 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x099f293e snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09e6a8f8 snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a137ead snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b72e0ab snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c366e16 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c80bd3f snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d0589b3 soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d636854 snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f9bc33b snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1039ae66 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10af396a snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1290afca snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12c3c757 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x154737b2 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16f3f2d8 snd_soc_component_init_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1740b7bf snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19b11592 snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b0de0fc snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b26187d snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bc8c875 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bd51c72 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c092574 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c2ff220 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e099616 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f286f66 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21f8ff9e snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22242de3 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22341520 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23fc625e snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x020c26f0 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03a83855 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04b8f47b snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04d9aa0d snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05c4881f snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06351181 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06b9fb0c snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x074d4ab5 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x076129ab dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08092906 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dc2f18d snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f3d0a34 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11e359ef snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1259217a snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12f3c29c snd_soc_of_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17ab9c8b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17d7f53e snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1815622c snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19be717c snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a24e505 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dbf5ab7 snd_soc_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fed53e9 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20946b2a snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x209891a5 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21be1893 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2328681b snd_soc_dapm_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28997e51 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28cf4ea9 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29c71ba8 snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b28218d snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf28ec1 snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cc7ae9d snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cef7df3 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d7671af snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dce88d3 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e002d0a snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3038c1f2 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x304eab86 snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33f56a5b snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x364be381 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3926b3f8 snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c09d3fa snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d9e354b snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ec1f9dd snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f86686e snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x400fa6b7 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4263a5e5 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42f286ac snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43313688 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4381c512 snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45b94fe0 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x466d4412 snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46e34775 snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47385b14 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x473adda9 snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47d1a745 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48d45f92 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49da72fd snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a0099a5 snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aaeb8e8 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4adb3508 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d294c65 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4df5ebd0 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2789a87f snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29c222ab snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a92b947 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b6ba3e6 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b9c4dbe snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ba98b3d snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf24bb0 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cce733a snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d953d4e snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2db8cdea snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e61d73a snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32bc5060 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34478f41 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3749c6d5 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37724db8 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x377eae4e snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37b0dde9 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x386aae54 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c7f8dd2 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ecc63d0 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fc5f9f6 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41419560 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x419b0975 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41bfb8a2 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x423302d8 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x434a78de snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x437459f8 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46c979e5 snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47d2d83f snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48913848 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4896bee7 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48bc1e03 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48d56629 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e03a9be snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ed62d27 snd_soc_lookup_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50593b3e snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x509bc91b snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52436f77 snd_soc_of_get_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52bfacfc snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x543f9058 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54e09759 snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x565c7339 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x565df09d snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5896edff snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58a2139d dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a2e7b72 snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a906d01 snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5baf842d snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cb6e13a snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e6f90a3 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f7a236a snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x621c146b snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x629a67e9 snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x657c06f5 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6694c8c9 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x670197b7 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x672a160e snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x675e04c5 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69969791 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c539ece snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c938257 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e7f4198 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fd7261a devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71bbfc80 snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72c9a6c6 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x768b7ac2 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x768bc8f4 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x775df2f7 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77d9968b snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79e87ab7 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a4f7635 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b211850 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c30bdda snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c3880cb snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x530e7e76 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x541daca5 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55ee3e4a snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56bfae64 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57386f28 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x585ca22e snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58cedcd8 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5987791b snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59cf7a88 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e9608b9 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f42fd2f snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f765fbc devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x616b7250 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61d8dc89 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x629fa121 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6383d75d snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64278890 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64788212 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x647f0f4f snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65b421f9 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66a79354 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x674012a0 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a3e0ebc snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a57a386 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d00b2a3 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7077e803 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7088ab95 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70a5ea93 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70cd5705 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7138e631 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71d67500 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72277b76 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72e98be6 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x734b8528 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79a65f43 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79fab408 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a2fe100 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d2bee66 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dc4bd8d snd_soc_dpcm_can_be_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e798d99 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f8a7bea snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x810e32ac snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8136ab7e snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8217a1f9 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8266b648 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82941ac5 snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82d72f5a snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b2cf99 snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83d97737 snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83f037a2 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x842677ce snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x891fd914 devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a77c946 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d80c0a8 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fef6fe3 snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90fb16f6 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e1c318 snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9353f2b4 snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93e03017 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9720f8af snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97961960 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97bf802b snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98d15830 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e02dbf7 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e0ca42f snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f5d92ab snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f74d947 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa13288df snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4d2c27e snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa61fefe4 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa696c61a snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6dc98ae dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa74e810f snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8325ed6 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa987b9d4 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabfd2adc snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf191984 snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1e6a5a4 snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2ebf0f2 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3a0c640 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4280fba snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f33482 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb78ce057 snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7ee6f04 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9dcf2c3 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbac26c3e snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbacb6f98 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbae7f1a4 snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc1561ec snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc557836 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc52807 snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbef35a99 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf08fbeb snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf94d880 snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfce46c8 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fbd31d1 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ff636b2 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x808a5943 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83447c8e snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84717c30 widget_in_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85303159 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85406327 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85a30b8e snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87e9a631 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a09bf71 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a877262 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b970c8a snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c3744f0 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c6c42d5 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cb46d8e asoc_dummy_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d652247 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8da8e7fd snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f407049 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f55f9f5 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90762b28 snd_soc_component_get_jack_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9243cd28 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9487a69a snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94ff067d snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97744bc7 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97896c7f snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98c6ee99 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b62f9d4 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9beb2257 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c02814b snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c5d9a61 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dd542ed snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa05a219f snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa05b5687 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0c2cc63 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1535461 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa245174d snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6377a55 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa640923d snd_soc_get_stream_cpu +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6765335 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8f52aff snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8fd5ce0 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9439559 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabca83a6 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad6f8465 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae8084ef snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae9cfc85 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf06437e snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb15b2c99 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1c5cf47 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5b3cda3 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5ba7a48 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb651b4d7 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb66bf575 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb721111c snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb774532e snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8176b47 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba9a2b09 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdb4d059 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe2e5aeb snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf339a8f snd_soc_component_notify_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf80d63c snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc03c8635 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc03da7ba snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc282bbd3 snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3fe914f snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4fbae15 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6c8480f snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6d71f7f snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc80c27de snd_soc_pm_ops EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc84f5d7c snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc876b459 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8d5d0b4 snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca705285 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc7a985b snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd214c7b dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd67f9c1 snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdccc4b6 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5c07d4 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd30cfd11 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd663a3f6 snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7775266 snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7f6811a snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd814f1d0 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda5a92a7 dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda8324c8 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb2cee85 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbaf049a snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf579192 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0f5afe6 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe101794d snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3907b22 snd_soc_add_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe421ddcc snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe67c2995 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7211282 snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe75eca48 snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe854078e snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9cd1b2e snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccd91cd2 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdbd5892 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce2db5b0 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcedbe82e dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf566272 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd06f3460 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0b42b7c snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2620170 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2c6d359 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd336991c dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4fdb6b5 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd62cacad snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd889b03d snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8bbff4e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd96fcb4e snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9a028c5 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaacd2b2 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad5cd4d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdadbd096 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdccc3434 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde5fffb4 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1da8c48 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe380ee48 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3ad8c75 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe42be060 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4e377a2 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4f6735b snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe663abee snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe678f704 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe853374f snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea830bc2 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb4178ab snd_soc_lookup_component_nolocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebb89ab8 snd_soc_add_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee5d9973 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef2be1e7 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef458918 snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0e7e92a snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2214cb2 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf227c235 snd_soc_dai_set_clkdiv -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6176ff0 snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6585dc1 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf834299e snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf873babc snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebc17ac2 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebdf22e6 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed4d5381 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedee9080 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee07ba11 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee1e0d23 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0da6d93 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3dbd68e snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4116f39 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf439a8a4 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf49d1be8 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5ed2d1f snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5f970a4 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf631e6af snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf843447d snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa226110 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa2ac543 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb1b5d67 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe6d8e72 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x30d38366 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x85d9a73d snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x91209ce6 snd_sof_debugfs_buf_item -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xb264e83d snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xefac654d snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf99e070c devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa250f42 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa3b9cf6 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaba3861 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaf828f3 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbdd0379 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff5aca3a snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffc69617 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x81f58fa0 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8e713bfc snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x911c6b0d snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xcfd0ef1c snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdf4b6c4d snd_sof_dbg_init EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write @@ -20186,17 +20726,17 @@ EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xb67dbf49 sprd_mcdt_chan_dma_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xdf547b54 sprd_mcdt_free_chan EXPORT_SYMBOL_GPL sound/soc/sunxi/sun8i-adda-pr-regmap 0x37a3a5c2 sun8i_adda_pr_regmap_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x42cce6b6 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xf8a724c4 tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x46f8b546 tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x584ccd82 tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x80e97aea tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb333c170 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xbcf01f1d tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd15df707 tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdeaf42a4 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe8102246 tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xedc8399f devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x62cb9961 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x796f78d6 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x05d2bbae tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4a2cffda devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa7232ad0 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc3bf4bb6 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdaba91c2 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdb8f0981 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdedbf013 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdf995291 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xeb6227cc tegra_pcm_close EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da 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 @@ -20209,7740 +20749,7949 @@ 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 0xd01de23b tegra30_ahub_allocate_rx_fifo EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x9ead96ae edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x4ad45afa sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x8abeb173 udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x012e2723 line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x05fb402b line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x12a0eede line6_read_serial_number +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0xf385e943 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x81b8672e sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xf71c82f7 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x16305156 line6_probe EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2b7e6875 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x37b9364b line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x39b1ae6c line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4cd7fa28 line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e1629d4 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x66208126 line6_pcm_acquire -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x89d68788 line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x96d4d522 line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa42502d3 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf39a3f3 line6_resume -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbf2c2ca4 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe8b7b29e line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfff93c34 line6_init_pcm -EXPORT_SYMBOL_GPL vmlinux 0x00016a95 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x00088376 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x002044f3 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x0028ba5b cpuidle_unregister -EXPORT_SYMBOL_GPL vmlinux 0x002c2b3e sata_pmp_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x00316d49 fscrypt_ioctl_get_policy_ex -EXPORT_SYMBOL_GPL vmlinux 0x00408a01 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x0040c5bc vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x004fa62a tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4e57942d line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5a543eba line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6231caee line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x69a3aaea line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6eee7a33 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x93ff001d line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x94d4ec85 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9d9bd7bc line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb48fc513 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe11eb42 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd3fc2f59 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd9e45bd7 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xec8e2585 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf1802762 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf681a1dd line6_pcm_acquire +EXPORT_SYMBOL_GPL vmlinux 0x0006847d wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x00185776 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x001a519a devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x001cc387 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x002f8b9e dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x003971fe sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x004c5b1e pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x0055736d ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x0063b9ec devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x007a7a56 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x008013d3 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x00813147 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x0084948d ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0x00944741 __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x009c57bc fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x00b101d0 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0x00ba061b __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x007250f0 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x00731805 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x007e77ec dev_pm_genpd_synced_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x007edc85 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x00836957 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x00a35c9e devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x00a687b8 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x00abfdec nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0x00afc095 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x00ba90b8 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x00be86a8 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x00c5a924 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x00d0e422 nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x00e7a0a4 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x010e46ea fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0x01138c82 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0x011fbdab preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x012b16d2 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x00e27ba3 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00eb52c3 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x00fa4e27 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x01078f99 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x0107a02f trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x010b5fd7 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x010c847d pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x0112a4fb shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0116a009 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x011f5c1c __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x01259b12 debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x012f004a xfrm_dev_offload_ok -EXPORT_SYMBOL_GPL vmlinux 0x01351caf fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x0138e09f of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x013e886d dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0x0141d501 adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x01455edc alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x01391436 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x0146cb17 clk_gate_ops EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x01565b73 acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x015d8cd9 dev_pm_opp_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x01761ffb kvm_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x01762dec usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x0176fa69 tracing_snapshot_cond_enable -EXPORT_SYMBOL_GPL vmlinux 0x01796148 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x0179c621 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x01636752 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x01678402 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x016dfc5a fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x0175dbb7 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0x017ba5c1 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x017f2594 rockchip_clk_register_plls EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x01935006 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0x0193b2b3 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x019e9efa irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x019efad6 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free -EXPORT_SYMBOL_GPL vmlinux 0x01acc0d2 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x01ba448c spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01a20dfe spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x01baa74c __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x01c9f0bf regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x01d83ef9 bio_start_io_acct -EXPORT_SYMBOL_GPL vmlinux 0x01de2e1c shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x01de756a gpiod_get_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e56633 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x01f2c69b pci_epc_bme_notify +EXPORT_SYMBOL_GPL vmlinux 0x01f2ed95 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x01f69000 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x01faa7db of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x01fcccf7 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x0202099e usb_deregister_device_driver EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0214f83c regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0228f6a5 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0x0235382f devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023baee5 __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x0242d05c fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x023d082a vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x024041e9 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x0240d097 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x026c29d8 fsnotify_destroy_mark -EXPORT_SYMBOL_GPL vmlinux 0x02922fe6 regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x02a35b98 vcap_set_tc_exterr -EXPORT_SYMBOL_GPL vmlinux 0x02bab11f vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x02540b78 device_register +EXPORT_SYMBOL_GPL vmlinux 0x028343de dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x02848fba __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x02904ebf xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x029c2acd usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x02aeaa1e devm_hwmon_sanitize_name EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02d272f2 spi_setup -EXPORT_SYMBOL_GPL vmlinux 0x02dbd727 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0x02e0832c regmap_get_val_endian -EXPORT_SYMBOL_GPL vmlinux 0x02eb8a37 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x02cae886 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x02cedae1 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x02e812a5 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x02f2c0fd dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x02f9abd8 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0309fa64 percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0316cf8b extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0317d11c acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x03209ef0 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03281d31 msg_zerocopy_put_abort -EXPORT_SYMBOL_GPL vmlinux 0x032cd825 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x0332042d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x03230fd3 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x032c4f1c devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x033246ba pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x03342f7d seg6_do_srh_inline EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033a8d03 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x033e9e43 wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list -EXPORT_SYMBOL_GPL vmlinux 0x0354ae5b scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x036326f8 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x03460bf3 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x034678a6 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features +EXPORT_SYMBOL_GPL vmlinux 0x034ada53 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x03541047 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x03560046 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x0366ab8a kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x0367c3cb rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x0375746f wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0x037af331 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0385950d acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x03864c9e cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x03872804 devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x0389b58b genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039d9d39 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x03a3489e __pm_runtime_disable -EXPORT_SYMBOL_GPL vmlinux 0x03ab4df1 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x03ada385 xenbus_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x03bb28ce scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x03c0970a ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x039a69ec cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x03a22a47 dev_pm_opp_config_clks_simple +EXPORT_SYMBOL_GPL vmlinux 0x03a8966b pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x03b5fc5f pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x03b997c4 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x03c01de4 key_type_asymmetric EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d933a1 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x03e4188a crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x03eaa5ea noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x03f5cac6 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x04049aec pci_find_dvsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x040d57d3 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x0402cf19 failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04049ee4 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0408482a apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr -EXPORT_SYMBOL_GPL vmlinux 0x04165161 mmu_notifier_range_update_to_read_only -EXPORT_SYMBOL_GPL vmlinux 0x041c229e usb_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x042dc95c usb_disable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x044237c3 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x044e114d stmpe_block_write -EXPORT_SYMBOL_GPL vmlinux 0x0458a563 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x045e9292 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x04196b78 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x042c9f9d rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0441a202 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x0445e59b xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x0461f44f tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x046ee002 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x046f6cd5 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x0481e29b iommu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x04836db5 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x0478787f pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x04791987 pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x04952086 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x049b546d pci_generic_config_read EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04a6ea85 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x04b6e032 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x04b75b98 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x04b8049f dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x04bc177a ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x04c2fbf1 regulator_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c34cb6 pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04ceaec7 mptcp_token_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x04dc17b9 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x04d077f6 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x04db595a task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x04ddc727 iommu_set_pgtable_quirks EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04fa8df4 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x050337ca ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x05061caa bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x04e1d41b param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x04e9497c fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x04f2ea4c vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x04f7795a __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x04fccbec __fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x0501a3c7 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep -EXPORT_SYMBOL_GPL vmlinux 0x051642cb crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x05127e98 mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0x05148d94 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0519eefd nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch -EXPORT_SYMBOL_GPL vmlinux 0x05264c8f proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x052754d6 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x05208d72 of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x0536b336 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x0532955f debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x054b2815 spi_mem_driver_register_with_owner -EXPORT_SYMBOL_GPL vmlinux 0x054b909a devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x054baaae devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x054df040 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x0540fd00 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x054cbc7d switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x054d5070 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x05527dbf tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x055855ee ata_sas_scsi_ioctl EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x057918f4 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x0584940e pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x0562c94f regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x0565deb4 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x0565f44c genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x056f8fe8 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x05741703 dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint -EXPORT_SYMBOL_GPL vmlinux 0x058d98ac screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x0599f5eb rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x05a36048 devl_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x05a39eb5 acpi_subsys_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x05a78c0e virtqueue_add_inbuf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x05acb555 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x05c1f58e mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x05cf722c __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x05e2bdf7 pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x05e4199e __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x05f0b98e rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x05fc1db2 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x06052cfb tcp_plb_update_state_upon_rto -EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x061239cd crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x05911c10 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x05927e9e of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x0592e5b9 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x0596a7f3 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x059e8f08 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x05be0335 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x05c4fb75 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x05c8627a of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit +EXPORT_SYMBOL_GPL vmlinux 0x05d8648b __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x05e1f7ac tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x05eda9c2 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x05fc13c9 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x0608bae3 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x0608f1e3 imx_clk_fracn_gppll_integer EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x0615f88c xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x061a5f91 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x061db1df md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x061ddd03 acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0624ee81 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x0627c809 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x062b47d8 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x06282483 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x06364266 skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x06398837 ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0x063aaed1 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x062be013 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x062d117f __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x065f8af2 regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x0668d00a iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x0658e613 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x067aff05 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x0680e54d tty_port_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x068e22f0 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0x069152a9 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x06952e47 regmap_parse_val -EXPORT_SYMBOL_GPL vmlinux 0x06995fe9 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0x06a0e966 xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x06a3dafb list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x06832f32 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x069b2ad2 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06ba8285 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x06cab622 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x06cc1955 generic_fh_to_dentry EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06ccf996 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x06d9e4fe pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x06d82621 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x06e415bc __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06eae24b xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0x06ef2c94 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x06f242e1 ata_cable_80wire -EXPORT_SYMBOL_GPL vmlinux 0x06f5e981 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0x0706b641 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x07090603 rio_request_mport_dma -EXPORT_SYMBOL_GPL vmlinux 0x071a4952 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x071baee0 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x06e61c25 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x06f03e22 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x06f77c4b irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x07010bbb sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x07047d7f mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x070eb426 mtk_clk_pdev_probe +EXPORT_SYMBOL_GPL vmlinux 0x0723eb51 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072880e6 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys +EXPORT_SYMBOL_GPL vmlinux 0x0737efe9 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074c5365 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x074e17df ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x076185ef clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x07628baf hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x0762d019 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x07661c18 da903x_write -EXPORT_SYMBOL_GPL vmlinux 0x07685214 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x077e91cb blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x07833e1d kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x078d51b5 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x07ad808f switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x0769487f phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x07737fce mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x078def2f cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x07971380 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x079f8613 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x07a31495 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x07a5ba67 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x07a62864 __devm_irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char -EXPORT_SYMBOL_GPL vmlinux 0x07b2d4b4 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b8d055 gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07bf658b devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0x07bf67d2 component_release_of -EXPORT_SYMBOL_GPL vmlinux 0x07d913c8 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x07f57bb2 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x080aa0ac sfp_add_phy -EXPORT_SYMBOL_GPL vmlinux 0x0810d204 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x07cc306e mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x07d100fe netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x07daa8a1 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x07e0d487 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x07e16e4b led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x07e600bf fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x07e76d56 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08180566 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x08191e70 generic_device_group EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL vmlinux 0x082becc2 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x082f66fb regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x08322162 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x0839048f wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0842055d dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0x08446e0f pci_p2pmem_free_sgl -EXPORT_SYMBOL_GPL vmlinux 0x084fe20a __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x0823694c mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x0824d287 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x082f25e9 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x0830e38d fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x08321fad of_css +EXPORT_SYMBOL_GPL vmlinux 0x083b8480 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x083d9784 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0844c735 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x0853048c pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x085e35f0 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x085e34d6 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x0862e3d4 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x086dab3c sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x087432c6 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0x08744dd8 kvm_vcpu_on_spin EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x0881e771 sk_psock_drop -EXPORT_SYMBOL_GPL vmlinux 0x0898e946 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x088929f9 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x089c7728 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x08a19632 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x08a225b7 device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x08c4d74b mtk_mutex_get -EXPORT_SYMBOL_GPL vmlinux 0x08c61932 devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x08abc0b3 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x08adc9f6 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x08af51df wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x08c2fdcc sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08d1b9a5 devm_bitmap_alloc -EXPORT_SYMBOL_GPL vmlinux 0x08dd9e8c xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x08e07eaf device_find_any_child -EXPORT_SYMBOL_GPL vmlinux 0x08e81a47 power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0x0902e059 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0x0904024d ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x0905a5fd fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x08c7b852 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x08ca46b1 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x08cd0374 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x08d288f2 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x08e2b333 cppc_set_auto_sel +EXPORT_SYMBOL_GPL vmlinux 0x08faa2d5 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x09043985 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x0909c767 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x090ca4d6 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x090fc937 rio_mport_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x09195a77 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x090d4a69 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x090ebb18 sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x091fbace regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x0925e83f of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0x09318548 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x0923e4d4 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x09281195 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x0941d0f5 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x0944fe38 fat_free_clusters -EXPORT_SYMBOL_GPL vmlinux 0x09508cfb switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x0953c065 devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x095693a4 skcipher_alloc_instance_simple -EXPORT_SYMBOL_GPL vmlinux 0x09587a42 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0x0960b715 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x094dc1b1 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x095a7b11 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x095c16ed power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x095dd380 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x095f255a iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x0965f1e3 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x096deba0 PageHuge EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x097b9577 edac_get_sysfs_subsys -EXPORT_SYMBOL_GPL vmlinux 0x098b51c9 iommu_device_sysfs_add -EXPORT_SYMBOL_GPL vmlinux 0x098f0964 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0x099181a4 usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x0992dd7b devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x09881618 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x09889d2e kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL vmlinux 0x098f17ec security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09bfa4ef devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x09da03d1 mtk_clk_register_factors -EXPORT_SYMBOL_GPL vmlinux 0x09e31e1d crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x09e83031 tps6586x_writes -EXPORT_SYMBOL_GPL vmlinux 0x09f26aee iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x09f2adfd sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x09f3d652 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x09fd883d __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x0a0b977c skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x0a268ab9 of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x0a275cd4 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x0a2d6a27 mtk_pinconf_bias_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x0a2eaa10 blk_trace_remove -EXPORT_SYMBOL_GPL vmlinux 0x0a3127fd soc_device_match -EXPORT_SYMBOL_GPL vmlinux 0x0a35db2f inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x0a3a88b0 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x09cf2569 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09d0e6e1 modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x09ead334 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x09f46309 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x09f9ba71 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a000db9 blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0x0a0eea75 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x0a175061 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0a17f66f blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0a21e3d6 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x0a4089e8 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0a4e6e0a nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x0a4e7b56 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a6df0b8 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a5e2bd9 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x0a6d7149 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x0a731561 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x0a78fd20 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x0a7f1b6b inet_ehash_nolisten EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x0a861ee8 of_clk_get_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x0a9c0182 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x0aa7eaa6 fuse_dev_operations -EXPORT_SYMBOL_GPL vmlinux 0x0aaab742 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x0a8894f4 mas_find_range_rev +EXPORT_SYMBOL_GPL vmlinux 0x0a8add29 of_alias_from_compatible +EXPORT_SYMBOL_GPL vmlinux 0x0a8d67ec crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x0a9df53d for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0ae2551e follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x0ae35647 dm_table_set_type -EXPORT_SYMBOL_GPL vmlinux 0x0aed1b58 acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0af634d0 blk_mq_end_request_batch -EXPORT_SYMBOL_GPL vmlinux 0x0af6991d wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x0af7123c usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0ac4cfc8 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x0ac5e5d9 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x0ad173c2 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0ad2833c nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x0aeaa038 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0af365cd ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0af5658f netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0af879f1 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0afd5820 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b0a503b mtk_pinconf_bias_get_combo -EXPORT_SYMBOL_GPL vmlinux 0x0b0fccd6 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0b09b2b3 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x0b0d15c2 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x0b1fe6c6 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x0b2128b1 xenbus_setup_ring EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b319f1c is_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b3d33d0 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x0b43eb54 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x0b4a02af led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add -EXPORT_SYMBOL_GPL vmlinux 0x0b597af8 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x0b5cd0ba devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b542413 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0b62fb36 nf_ip_route EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b6999a5 __ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b6ec19c lp8788_read_byte -EXPORT_SYMBOL_GPL vmlinux 0x0b80299f cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x0b88e2e3 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0b6a5aa5 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x0b6bc71d crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x0b6e8c3e of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x0b73d751 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b912638 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x0ba9a768 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x0b8e5a6e rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0b9450e0 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x0b957c82 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x0b9ca646 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x0ba3cf91 ip_fib_metrics_init EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x0bb6b9f8 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0bb09a0e ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bf2a9bc usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0bc2d0a1 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x0bcbac06 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x0be32373 shash_free_singlespawn_instance EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf50844 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x0bf54800 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x0bf909f4 stmpe_dev_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x0c1afee0 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x0bf34bc3 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x0c02aaaf fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x0c030c1f acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x0c0a34b6 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x0c1042f9 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x0c17fb0c pci_p2pdma_distance_many +EXPORT_SYMBOL_GPL vmlinux 0x0c1843ab da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x0c1bdd65 irq_chip_request_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x0c2fb386 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x0c2da21d acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0c325d90 devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c408dba extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x0c4a45e7 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x0c51a1d7 nvdimm_bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0c71373f crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x0c84153d pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0c844b61 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x0c475e60 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x0c48c14d led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x0c701099 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x0c73d101 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0c752e98 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0c7561b5 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x0c862b90 iommu_map EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c8f7eed devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0x0ca30869 ata_std_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x0cba8bf3 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x0ca121f1 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x0ca661c0 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0cb0001b ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x0cb463bb dev_pm_opp_get_max_transition_latency EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc2d432 vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0ccdc375 mtk_clk_unregister_gates -EXPORT_SYMBOL_GPL vmlinux 0x0cceae6f pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0cd5c0c1 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x0cd68cd4 folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x0cdef758 acpi_dev_gpio_irq_wake_get_by -EXPORT_SYMBOL_GPL vmlinux 0x0ce04529 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x0cd1ddf1 rio_register_scan EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0cecbadd icc_std_aggregate -EXPORT_SYMBOL_GPL vmlinux 0x0cf9855b of_property_read_variable_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x0d11b409 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x0d1f4e32 bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0x0d1ff9c1 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x0d2aa238 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d3cabca dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x0cf35863 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0cf94dbd da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x0cfff6e9 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x0d24dbd2 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x0d31d8df security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x0d3587f1 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x0d3ea134 extcon_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d435bd5 __tracepoint_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d45baca fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4d2075 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d4f0f7e mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0x0d51ce63 usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0x0d5a21f5 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x0d4ee3aa dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x0d502c1d gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d6f9344 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x0d84c3ed mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0d8d2cc1 nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x0d932cbb of_usb_host_tpl_support -EXPORT_SYMBOL_GPL vmlinux 0x0d9d4408 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0x0dc12f2e class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0dcce691 devl_port_register -EXPORT_SYMBOL_GPL vmlinux 0x0dcf1607 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x0dd77956 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x0d6b2634 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x0d84d600 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0d8e6d0b firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x0d90e001 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x0d971c09 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0d979a1b fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0d9a1e1b of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x0d9e3433 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x0da99dd9 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x0dae9675 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0db9a403 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x0dc1bdf7 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x0dc2a303 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x0dc76142 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x0dce50a0 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x0dd0f50d netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0de86950 vcap_find_admin -EXPORT_SYMBOL_GPL vmlinux 0x0dea95d4 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0x0dfcd2fc __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0dec4b50 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x0decd195 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x0ded0b52 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x0dfc0c1f hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e33847a pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x0e3854a2 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x0e48191a platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0x0e4fccc4 dma_get_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0x0e56ac4d gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0e220490 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x0e31b5a1 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e406fd4 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x0e579449 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x0e5961c8 device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e5eb91d device_match_of_node EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e728ad9 fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0x0e731cb8 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x0e85300a power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0x0e87d32e subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x0e87dc96 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x0e9417f5 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x0e721a2c dev_pm_opp_get_supplies +EXPORT_SYMBOL_GPL vmlinux 0x0e74ff8e badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x0e8528c2 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0e962007 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x0e99c71e pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0ea6c43c usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ebe9b95 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0eb3d7f7 xenbus_dev_remove EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ecd472d component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x0eced721 kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ee61d80 ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0x0eeb0fcc device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x0ef36618 ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x0ef67b30 fscrypt_ioctl_get_key_status -EXPORT_SYMBOL_GPL vmlinux 0x0f02041d fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x0f166c9a blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x0edd5f23 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x0f02588d tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f1d0f40 irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x0f2311dd of_pwm_xlate_with_flags -EXPORT_SYMBOL_GPL vmlinux 0x0f2b6b7c acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x0f2d8205 rio_request_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x0f40f7b3 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f1d2b10 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x0f35dffa vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x0f38da3e pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f4e372d skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x0f60a724 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0f61956c modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0f6a9681 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x0f7a73ee rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x0f7b5094 crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f848922 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x0f91c8c6 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x0fa6defa ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x0fae5797 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x0fb0be2c ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x0f895b04 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0f8f38d9 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x0fa48edd uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x0fabfada ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x0fc765e0 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x0fd3a087 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0fbf03df net_failover_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0fd42889 disk_force_media_change EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd6329d rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x0fe3cc90 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x0ff13f0c tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x0ffd4852 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x1004606f blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x0fe44462 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0fe62f22 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x0ff65b1a gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x0ff76262 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x0ffd22da platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x1004bf70 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x10129415 ipv6_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x101f6234 bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x1020e7c7 pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x103c6328 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0x103f0a23 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x1043f72a sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0x10517817 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x10583ab9 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x105b671f device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x10609a66 compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x106cffd5 regulator_sync_voltage -EXPORT_SYMBOL_GPL vmlinux 0x10708105 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x10185973 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x10190949 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x101988de crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x1030d441 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x104fba0a ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x10583ee8 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x105e506d stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x106189bc devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x106ca410 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x108273f8 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x10841920 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x108917b2 extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x1090811e devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x10912e05 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x109eb275 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x10ab83da devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0x10b0a4c1 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x10b5486a bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash +EXPORT_SYMBOL_GPL vmlinux 0x10c22b54 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10e9f179 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x10da4db6 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x10eca5a3 crypto_skcipher_decrypt EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10efa7c3 lwtstate_free -EXPORT_SYMBOL_GPL vmlinux 0x10f7aa19 devm_clk_hw_register_fixed_factor_index -EXPORT_SYMBOL_GPL vmlinux 0x10fa8a10 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10f295ae rz_mtu3_16bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x10f7b70c sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x10fc7074 phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110d2d3b uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x1117cde4 iomap_file_buffered_write_punch_delalloc -EXPORT_SYMBOL_GPL vmlinux 0x11216df7 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x112f0c0b iopf_queue_add_device -EXPORT_SYMBOL_GPL vmlinux 0x113b6a89 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x11533c61 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x116e2b75 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1179af85 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x117a239d __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x117aca71 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x117bed95 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0x117d8f86 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x118d3f2b hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x1190f1fc of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x119a2ff4 disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x11ae8eb2 phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x11b0ad41 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0x11c38a78 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x11c74961 regulator_enable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x11cd60b7 ata_msleep -EXPORT_SYMBOL_GPL vmlinux 0x11cf97ff __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x11058485 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x110e4a4f vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x111c7549 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x1150c36d sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x11675c03 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1184ae4c of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x1191757e blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x11aa2141 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x11aef4ea __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x11b68a56 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x11d2e7ca scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x11d75777 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11ea150d rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x11ed5c5d od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x11fc517b ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x11e230c5 genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0x11f17efc mtk_clk_unregister_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x11f275a5 input_class +EXPORT_SYMBOL_GPL vmlinux 0x11f5587a synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0x120c6514 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x120fbc63 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL vmlinux 0x12191a80 dma_opt_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x121c00a5 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x1213bad1 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x121aab71 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x121b5af7 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x121c36e8 devl_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x12259890 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x1230aeff pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x1231e241 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x1225b20d sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x122d3a4d gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234e913 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x123813c4 devm_kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x124598ba k3_udma_glue_rx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x1253b7ba phy_create -EXPORT_SYMBOL_GPL vmlinux 0x126052dc phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x12611077 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x126ef3b2 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x12a106a4 dmi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x12b71b72 watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x12bc29e8 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x12d02954 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x12d113db spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x12de3ee9 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x12ed763c xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x12425b08 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x124b2042 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x125a06fb devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1279451a nf_ip6_check_hbh_len +EXPORT_SYMBOL_GPL vmlinux 0x1287a8a3 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12960651 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x12a06524 class_register +EXPORT_SYMBOL_GPL vmlinux 0x12a2aaae nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x12a50fb7 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x12aa716c regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x12abbe7b rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x12b82072 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x12c0e679 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x12e0d5f8 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f14dad dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x12f2ae3a skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x12f33839 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x12f75aad pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x12f813fc of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x12f908b9 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x12fc8232 synth_event_gen_cmd_array_start EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness -EXPORT_SYMBOL_GPL vmlinux 0x130a1d0f devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0x1315a1f1 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1330650b l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x132f21b2 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1345ad82 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0x13552018 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x1356b320 wait_on_page_writeback -EXPORT_SYMBOL_GPL vmlinux 0x1359dcad xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x13407c26 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x13504087 mtk_devm_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x135bf4d7 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x136e1b40 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x1372e85c vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x138a3dfe dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x136b2d02 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x13802f2e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x138391ba __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x13845e31 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1387309c pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138c1eeb devm_get_free_pages EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x13921c86 blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x13b1862e regulator_map_voltage_ascend -EXPORT_SYMBOL_GPL vmlinux 0x13b47ab4 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x13b69996 meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x13b85473 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0x13b9858a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x1399d72a pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x139b4198 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x13b5a77c scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x13b9e193 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x13c0ff0f vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x13c6f987 od_register_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d1a549 dispatch_hid_bpf_device_event +EXPORT_SYMBOL_GPL vmlinux 0x13d3263b crypto_grab_kpp EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13ddd838 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x13e9b91e dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x13df988c xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x13e3d1e5 acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f24bf7 xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x140103ff __devm_clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x14027b88 devm_clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x140d01ec i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x141eeb0e dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x140636c9 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x141b9af6 rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x1433cda2 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x1434d68b i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x14354891 spi_bus_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1448fa3b device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x1422ba1c dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x143c7037 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x145b849a tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev -EXPORT_SYMBOL_GPL vmlinux 0x146848c7 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x146abb54 device_for_each_child_reverse EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x14749d28 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x14776113 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x14817f19 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x148b5a66 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x148ec569 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x14918fad preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14c9da02 of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x14ddd8a2 xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0x14e93ded skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x149dd7ad ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x14c77fb8 devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0x14cdfa12 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x14ce04ba pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x14d065cf sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x14d26777 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x14d6251a genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x14dd1528 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14ec6f68 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x14f1113f bio_associate_blkg_from_css -EXPORT_SYMBOL_GPL vmlinux 0x14ffbb4e pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x14f3a766 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x14fbcd5e __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1501656b sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x1504540d meson_pmx_get_func_name -EXPORT_SYMBOL_GPL vmlinux 0x150bc34b ata_sff_data_xfer -EXPORT_SYMBOL_GPL vmlinux 0x151a9590 devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x15221b54 lp8788_read_multi_bytes -EXPORT_SYMBOL_GPL vmlinux 0x1522636d virtqueue_get_desc_addr -EXPORT_SYMBOL_GPL vmlinux 0x152a1840 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x1512932d bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x151640ac scmi_device_create +EXPORT_SYMBOL_GPL vmlinux 0x152e6555 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x152ebee4 ima_file_check EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x153d86c8 __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x153ee569 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x1544d050 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x153cc365 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x153f8d4e devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x15402377 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x15543e7a crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0x156ca271 sk_msg_memcopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x15744b9c of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1573bd85 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x157c71d5 acpi_subsys_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x1597625f bpf_prog_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x15ada946 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x159e78ab debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x15a40861 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks -EXPORT_SYMBOL_GPL vmlinux 0x15b32601 divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x15c73cd7 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x15cbc28a fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0x15cd0854 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x15d215a0 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x15d7b46e spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x15e9b67f gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x1631150b dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x1632c4f7 put_device -EXPORT_SYMBOL_GPL vmlinux 0x163ace97 cpufreq_freq_transition_end -EXPORT_SYMBOL_GPL vmlinux 0x163af544 ip6_route_output_flags_noref -EXPORT_SYMBOL_GPL vmlinux 0x163de0de fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x15eb7eb3 fhctl_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x15ee64df skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x15f1ed52 crypto_sig_set_privkey +EXPORT_SYMBOL_GPL vmlinux 0x15f540b2 icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x15fbe311 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x15fd0882 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1604297d of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x1605923f crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1626a88d dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x162e715c md_stop EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164c0a26 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x1647beb7 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x164e61c9 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x164e93fb register_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x166314fa ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0x166577c4 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0x166c58f8 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x166c59f4 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x166c83ef wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size -EXPORT_SYMBOL_GPL vmlinux 0x168fafd7 tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x168db7cc usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x169f1e3d rio_request_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x169f3a88 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x16a4952b regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x16a8d629 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x16bf5a43 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x16c4ed22 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x16b616a3 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x16bab5d3 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x16c960bd sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL vmlinux 0x16cb6a90 radix_tree_preloads +EXPORT_SYMBOL_GPL vmlinux 0x16d0f6f3 rz_mtu3_8bit_ch_write EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put -EXPORT_SYMBOL_GPL vmlinux 0x16de2a0c netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x16ed64c8 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x16f148c4 tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f3a3f6 mptcp_get_reset_option -EXPORT_SYMBOL_GPL vmlinux 0x16fcfd5b edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x16f56041 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x1700256f spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1701ae5a xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x17054191 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x17099182 l3mdev_link_scope_lookup EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x1722ca1a bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0x1725dd20 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x172ed326 palmas_ext_control_req_config -EXPORT_SYMBOL_GPL vmlinux 0x1732a477 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x170d794c kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x171b8970 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x1721201d open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x1747e6b7 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x174f2641 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x175865f0 crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x175d95c2 iommu_unregister_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x175fa0dc pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x175e3dc5 mmput EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x17603fc4 devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x176a195c fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x17689e54 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x1770802c vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x177b1042 __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x177d1791 mtk_clk_register_gates_with_dev -EXPORT_SYMBOL_GPL vmlinux 0x1788561a tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0x17a36de4 pci_p2pdma_enable_show -EXPORT_SYMBOL_GPL vmlinux 0x17a5a691 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x17cd7510 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x17cfdae8 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x177e331b of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x178a0aca rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x179a7399 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x17b6bc67 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x17ca8941 pci_epc_multi_mem_init EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17eabab9 __rio_local_read_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x17eb7ac1 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0x17ee8167 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x17e23097 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x17eef85a usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x1800754a gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18039a66 of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0x18106a1e kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x1826dd83 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x18143bf7 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x1818e633 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x1821d424 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x18247c23 phy_set_mode_ext EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x18433b52 ata_sff_dma_pause -EXPORT_SYMBOL_GPL vmlinux 0x18458e41 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x184ebba3 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1860c706 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x18681329 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x186d33aa mtk_clk_unregister_muxes EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x1876de27 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x1886653e adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0x1893a90d device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x18ab4dc3 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x18b475ad ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0x18c24cd7 umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x18caf7ad sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x187a25d5 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1882d397 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x1898e316 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x189ab3bb static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x18a1e267 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x18a4f601 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x18aa6d63 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x18b2c344 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x18bd3ad6 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x18cd7391 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x18d4acd5 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e81c25 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18e97480 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x18f49afb spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fe83c5 kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0x190906f6 disk_alloc_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0x1910e2dc __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x1915f723 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x191bcf13 devlink_port_attrs_pci_vf_set -EXPORT_SYMBOL_GPL vmlinux 0x191d5eb5 devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19231c98 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x18fde7b4 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x190013cc badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x190635c3 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x191bccb8 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x191c455e mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0x191faf7f nvmem_cell_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x1932b428 tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0x194dea9d sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x196a2ba8 ata_pci_sff_activate_host -EXPORT_SYMBOL_GPL vmlinux 0x19766ed2 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x19900202 fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x19938089 regulator_set_soft_start_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1997c69a regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x199bc6d0 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x192f1ea5 xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x193282ae acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x194cb0fd extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x195c0171 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x195e5b7d bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x19689f09 __io_uring_cmd_do_in_task +EXPORT_SYMBOL_GPL vmlinux 0x19710daf icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x197b016a gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x19a05a55 ata_port_abort EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a5c9ad switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x19ac03f7 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x19b244f4 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x19b7b6a9 fsverity_get_digest EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19c830f4 dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x19ce85d3 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x19cff304 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x19dbdcd1 stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x19e029db lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x19c4ae7c hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x19d4e524 rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19f91803 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0x19ff8f6f netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x1a040300 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0x1a095930 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x19f695e3 devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a1a78b1 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x1a1b982a pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x1a365ad2 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x1a36c35f scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0x1a4ab50b ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x1a541110 virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x1a5f16d5 page_cache_sync_ra -EXPORT_SYMBOL_GPL vmlinux 0x1a6790bd usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a1c0c76 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x1a3c0af7 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a3df41d tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a770817 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x1a807827 gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1a9da458 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x1aa57800 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x1ab5a790 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x1ac109c3 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1a8343cd usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x1aa4bbee pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x1aa7a185 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x1ac478d9 of_request_module +EXPORT_SYMBOL_GPL vmlinux 0x1acad1a4 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x1acbcde8 xenbus_dev_cancel EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad82c67 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x1ae98ac8 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1aefeeed clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1afb0c2c firmware_upload_register -EXPORT_SYMBOL_GPL vmlinux 0x1b048064 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x1afaa2fd proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b1a32d9 kvm_vcpu_gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x1b1a5f5f housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x1b339a1a devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x1b367bd8 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x1b56fd9a ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b061e56 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b06f3c8 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x1b095e46 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1b1353a7 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1b19a35d __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1b1d49e6 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b391518 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x1b392eaa fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x1b585779 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x1b5dff80 devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b613c27 dev_pm_opp_sync_regulators -EXPORT_SYMBOL_GPL vmlinux 0x1b65d71c pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x1b7dbcd4 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x1b6cb687 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x1b739ef5 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b7f4b50 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x1b81b5ba genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1b842202 of_clk_del_provider EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92c915 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1ba2919e mctp_unregister_netdev -EXPORT_SYMBOL_GPL vmlinux 0x1ba92882 fb_deferred_io_release -EXPORT_SYMBOL_GPL vmlinux 0x1bbbf6f9 mtk_clk_unregister_muxes -EXPORT_SYMBOL_GPL vmlinux 0x1bbeb78d gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x1b9a45f2 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x1ba0294f __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x1bb1953c crypto_hash_walk_done EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bcdddaf pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x1bd0ba4e iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0x1bd33d7d inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x1bd3e8f1 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x1be1e389 blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x1be4966b eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0x1beb0177 irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bf20412 gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x1c0e42b7 kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x1c1ed856 of_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x1c21e623 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x1c233868 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0x1c2dd952 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x1c2f772f acpi_dev_get_dma_resources -EXPORT_SYMBOL_GPL vmlinux 0x1c40a73c of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x1bcc7b9a ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1bd78023 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x1bdf5d45 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1bee5564 scmi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1bf0def9 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x1c10efe3 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x1c1697ae cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x1c172bb8 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1c29f0cc i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1c420a0a bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled -EXPORT_SYMBOL_GPL vmlinux 0x1c56f49b fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x1c567d6e fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5d8ee1 devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree -EXPORT_SYMBOL_GPL vmlinux 0x1c73ff88 power_supply_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0x1c77ad0a check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked -EXPORT_SYMBOL_GPL vmlinux 0x1c79f2a9 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x1c7b71da serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 -EXPORT_SYMBOL_GPL vmlinux 0x1c85a81f mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c839e80 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x1c83afcc nexthop_select_path EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8932d3 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c8aedbe usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x1c8bb1ca crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x1c9ff035 __devm_regmap_init_spi EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9620c of_reserved_mem_device_init_by_idx EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cd1372c l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x1cd8515b hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x1cc7b4b8 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x1cd0efee ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x1cd3da6c usb_acpi_set_power_state EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1cde8016 ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x1cf5e8e9 find_mci_by_dev -EXPORT_SYMBOL_GPL vmlinux 0x1cfa537f dev_attr_sw_activity -EXPORT_SYMBOL_GPL vmlinux 0x1cfd7a86 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1cf0b12b usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x1cfa09e5 kvm_get_kvm EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x1d0ccddd ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0x1d19bfd7 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x1d03693b is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x1d1a403a of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d2c8ce9 regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x1d2d415f handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0x1d2ede4d crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0x1d33073e lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d3b325c devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x1d464b55 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x1d48121e pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x1d4addef bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable -EXPORT_SYMBOL_GPL vmlinux 0x1d73cc28 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x1d855154 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x1d31a8c7 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x1d35b0aa dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x1d4ca68e xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x1d5301dc meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x1d5a8c4b __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x1d649d8d pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x1d859474 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1d8677bb zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x1d88f015 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x1d8d0bd3 dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d9d1a61 dev_attr_em_message_type -EXPORT_SYMBOL_GPL vmlinux 0x1dae90be of_mm_gpiochip_add_data -EXPORT_SYMBOL_GPL vmlinux 0x1db08aef ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x1dc8cfb6 set_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0x1ddf7ba6 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1da3311d pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x1db8e409 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x1dc18d1a devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write +EXPORT_SYMBOL_GPL vmlinux 0x1df7447d stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfcfbca pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e19b116 vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0x1e213975 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x1e287474 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x1e1618df __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e191c15 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x1e208a78 get_state_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn -EXPORT_SYMBOL_GPL vmlinux 0x1e2aa670 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x1e2d882f pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x1e304a85 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x1e308b13 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x1e2bbd75 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x1e3966c1 devl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e39c552 device_create_file EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e3c0142 crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0x1e414500 scsi_build_sense EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e46a210 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0x1e49b981 device_move -EXPORT_SYMBOL_GPL vmlinux 0x1e4d878f syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x1e52fa3d key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x1e44d159 usb_kill_urb EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e54c3ee nl_table -EXPORT_SYMBOL_GPL vmlinux 0x1e610235 mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x1e69e84d devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x1e6bb5c6 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x1e595366 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x1e599375 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x1e6920f3 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1e777b2c led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7c556b acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e901609 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x1e94b9fe mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1e9c9009 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x1ea8416b debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebb0301 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x1ebde2fc devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ebabf30 iommu_map_sg EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec475a8 mtk_clk_unregister_cpumuxes -EXPORT_SYMBOL_GPL vmlinux 0x1ecfa3ec balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1ecf1623 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x1ed20691 acpi_dev_get_resources EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ee05c82 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x1ef0d75e pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr +EXPORT_SYMBOL_GPL vmlinux 0x1eeeaaac anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1ef60154 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x1efaa752 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x1f0f1a08 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x1f11d913 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f022691 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x1f0458cb ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1f19b0af xhci_hub_control EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid -EXPORT_SYMBOL_GPL vmlinux 0x1f1e4493 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1f2223d7 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x1f235dce dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x1f26572b ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1f3519b7 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x1f35564d dax_zero_range EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f3f3771 devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f47a20a ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x1f4f0f0d em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x1f4f7927 pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x1f4fe266 devlink_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f56940c fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x1f6350c6 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x1f6402ee pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x1f6c8ad7 of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x1f740323 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x1f7a8fad power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f977f91 of_platform_populate EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9f6bf6 mmput +EXPORT_SYMBOL_GPL vmlinux 0x1fa04276 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x1fa1c36f crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x1fb30450 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0x1fb91a63 gpiochip_add_pin_range -EXPORT_SYMBOL_GPL vmlinux 0x1fc7fc79 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x1fcd4c43 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x1fd40c91 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x1fd6783a ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0x1fe5161a skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x1fa48995 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x1fa5cafe acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x1fac99c4 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x1fb1ea08 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x1fb64969 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1fc88fe6 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x1fd081de imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1fd34d20 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1fe17304 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fe97cde xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0x1fecf73a regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x1ffbe361 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x1fe9171e transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x1ff73063 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1ff83418 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x200699d1 pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x201d3777 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x200cde6e acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x20144224 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x201690af devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x20180afb regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x201c1755 virtio_config_changed EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x2030069e __traceiter_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x203838cb pci_p2pdma_add_resource -EXPORT_SYMBOL_GPL vmlinux 0x203acc7b sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x2049f18d unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x204dd2e7 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x20327e2a regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x204ed397 screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x2050a874 hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x20567622 __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x2059559d mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL vmlinux 0x207ae187 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x207cfc43 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20511253 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x205b5359 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x205caf98 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x206c847d bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x209902de ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20a377d7 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20aad9a1 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x20bab0f8 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x20c7087f dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x20d991a2 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0x20d998d4 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x20e8650c dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0x20efc5cd regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x20f50419 rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0x20fef1f7 thp_get_unmapped_area -EXPORT_SYMBOL_GPL vmlinux 0x20ffb4d4 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x21045aed pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x2107ea3c __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x210bdc04 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x21116529 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x2116dffd __traceiter_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x211c19da nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x20cc0896 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x20fd3269 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x20fe096f regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x2112a556 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x2116bc94 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x21249df1 ethtool_dev_mm_supported EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x212be013 sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x214852a0 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x214a27e9 tegra210_clk_emc_attach -EXPORT_SYMBOL_GPL vmlinux 0x215227a3 blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0x2153bba2 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x2129b076 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x21359198 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x213d1aba icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x214068e4 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x21451cb7 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x21474875 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x2169a089 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x216a0c03 pci_user_write_config_dword EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2170bb47 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x21761dce pwm_put EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg -EXPORT_SYMBOL_GPL vmlinux 0x218cbaa2 divider_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x21947caa skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x2198da69 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x21a18f7e devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x217ad6de irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x217e065d usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x21a5368b acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21aa425b usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21b7a37e led_classdev_resume -EXPORT_SYMBOL_GPL vmlinux 0x21bf91ee page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0x21c186ef pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x21ca306f vcap_rule_add_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x21ca8318 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x21aec104 vcap_is_last_chain +EXPORT_SYMBOL_GPL vmlinux 0x21c36150 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x21c37a53 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x21c4d857 devm_ti_sci_get_of_resource EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d473e9 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x21e8115f of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x21eb120b usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0x21ec95eb bpfilter_umh_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x21ef822d regulator_set_pull_down_regmap -EXPORT_SYMBOL_GPL vmlinux 0x21f44c6b xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0x21f551a5 phy_pm_runtime_get_sync -EXPORT_SYMBOL_GPL vmlinux 0x21fe605b devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x2201eeb1 wp_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x2203ffe4 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x21d14246 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x21dd3ea4 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x21e836c4 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x21edc56b da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x21f0bf2c of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x21f0dfd6 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2200957e bd_unlink_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x2221ce14 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x2223c766 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0x2239de76 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x2243bfa4 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x224a19d6 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x224b2fb4 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x2251d5ab ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x225eda09 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2277206c platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x22114de8 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0x222331ff finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x222c696f usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x2230ed87 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x223d2e3a __put_net +EXPORT_SYMBOL_GPL vmlinux 0x223d93a1 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x22402083 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x2245c146 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x2249fac8 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x225336d4 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0x22582871 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x227a0f75 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x227caf17 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x22849326 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock -EXPORT_SYMBOL_GPL vmlinux 0x22b07bf8 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x22baebcd hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x22beb87f fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0x22c03150 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0x22c93269 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x22ab7021 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x22ab8f21 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x22be3658 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x22c99e28 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22d9569a rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x22de7c46 tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0x22dee6c3 mpc8xxx_spi_rx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0x22e64bd9 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22ea2949 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x22f3cde2 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x22f916c1 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x22f70e91 vp_legacy_set_queue_address EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x22fe9684 genphy_c45_read_lpa -EXPORT_SYMBOL_GPL vmlinux 0x2314d894 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0x2326dcf8 ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x23380e5d sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x23001e27 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x230d4f79 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x2311bff5 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x23126174 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x231bc6e1 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x231fcfe7 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2328148f tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x232dba89 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x232ed15a pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2347397b tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x23482471 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x234d8ff8 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x23524da9 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x235a2db1 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x235cdd19 bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x2384bbe5 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x2350e694 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x235b8aaa mtk_clk_register_dividers +EXPORT_SYMBOL_GPL vmlinux 0x235e5bcc transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x23624a1e of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x23628ba0 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x2366a454 devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x237fb83c xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x239003e1 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x238a7905 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x238fb99a tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x23918e41 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x2398982f crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x239dfee3 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0x23cfda2e clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x23dbfe3a power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x23e56e25 ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x240876f6 devm_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x241d85c5 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x239a0bc8 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x23a0a609 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x23cda6e3 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x23e988cb irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x23eb7aba devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x23ef268f fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x23f78bd5 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x24097c72 tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x240f5475 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x241674d8 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x241cc276 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x241f3289 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const -EXPORT_SYMBOL_GPL vmlinux 0x242f3bcc __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0x243d3eb2 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x24273ff5 imx_clk_hw_pllv4 EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record -EXPORT_SYMBOL_GPL vmlinux 0x2448c001 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0x24490368 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x2454665d from_vfsuid EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x2465eaee nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x24692f24 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x24672f86 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x24725cfc tpm_pcr_extend -EXPORT_SYMBOL_GPL vmlinux 0x2474dee2 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x24804d0b genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x2473b77b uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x247995dc __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x24852826 __SCK__tp_func_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2491f624 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x24a9d0b0 dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x24aba784 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x24979858 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x249c7114 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x249d9b2a phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x24ab6164 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x24ac0f89 genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b65774 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x24b701fd crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x24b91e51 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x24cc57dd fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x24aed984 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x24c16d77 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x24c239a7 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x24c850b3 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x24d13f66 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x24d49851 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24df3309 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x24dfca7f usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x24e5fb2c pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x24e52f44 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ecffde cdx_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x24f36072 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25280cc2 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x25001ca8 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x250b81ac __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x2522f357 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x25230932 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2523293e devl_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x252cd5b5 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 +EXPORT_SYMBOL_GPL vmlinux 0x2536830d devm_mtk_clk_mux_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x25384bef cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x253edcd9 rio_pw_enable -EXPORT_SYMBOL_GPL vmlinux 0x25611dbe irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x256467e3 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x257347dc crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x2539d518 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x253b87f6 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x25415e36 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x254423d5 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x255285e3 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x25687036 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x258592a1 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x258323b5 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x259d4e70 meson_clk_dualdiv_ops -EXPORT_SYMBOL_GPL vmlinux 0x25a696d7 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0x25a9342d ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x25b29385 wwan_create_port -EXPORT_SYMBOL_GPL vmlinux 0x25b7b295 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2593610c event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x259a8e39 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x259fd634 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x25b2c9cf simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x25b35eee ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x25ba9fec regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data -EXPORT_SYMBOL_GPL vmlinux 0x25c2918b sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x25e2b739 vmf_insert_pfn_pmd_prot -EXPORT_SYMBOL_GPL vmlinux 0x25e70989 devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25ea0dda dpbp_enable -EXPORT_SYMBOL_GPL vmlinux 0x25f5322b acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x26080ad2 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x26172b69 fat_build_inode -EXPORT_SYMBOL_GPL vmlinux 0x261f6ac3 smpboot_register_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x262eda82 gpiod_set_consumer_name -EXPORT_SYMBOL_GPL vmlinux 0x26326ecb i2c_adapter_type -EXPORT_SYMBOL_GPL vmlinux 0x26329614 register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0x26377776 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0x264951b0 imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0x25ea8557 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x25f3a5e9 crypto_clone_shash +EXPORT_SYMBOL_GPL vmlinux 0x25f50740 devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x25f8ba08 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x25fe9a15 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x25ff1137 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x26050445 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x260aed16 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x260cd192 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x26114807 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x261425e8 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x2650c92c find_mci_by_dev EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2652c5b0 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265f325c synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266b8099 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x267941b3 __tracepoint_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26847788 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x26868bb7 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x269f22dd ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x269c8bcb arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x269fb047 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x26a15c65 dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature -EXPORT_SYMBOL_GPL vmlinux 0x26aa3911 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 -EXPORT_SYMBOL_GPL vmlinux 0x26afff43 iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0x26b46e16 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x26c01c29 usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x26c3f14f mtk_clk_gate_ops_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0x26c82d65 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x26c44a3b __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ce77c3 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x26d2803f syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26edfad9 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x26ff0abe ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x271fa93e class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x2725eecb mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x270df62a unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x2714ba54 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x27235a5e dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x272612d1 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x272ca28c phy_save_page EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x2734a046 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x2736471e acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x2738f2a2 __hwspin_lock_timeout -EXPORT_SYMBOL_GPL vmlinux 0x274265ca fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL vmlinux 0x2750ae57 __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x2755f14d led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0x2756a46b pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x276b8bc6 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x2770d2a7 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x272f933d regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x2733aa41 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x27407522 hid_bpf_connect_device +EXPORT_SYMBOL_GPL vmlinux 0x2768501b iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x2769bd22 clk_register_hisi_phase EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x277d438e skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x277df16e of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x279e830b dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x27ed29f5 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x277fc725 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x2795fc9d vcap_set_rule_set_actionset +EXPORT_SYMBOL_GPL vmlinux 0x27a9900b devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x27d22337 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x27d4e3ec pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x27df3105 hv_alloc_hyperv_zeroed_page +EXPORT_SYMBOL_GPL vmlinux 0x27dfd1f8 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x27e243f0 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x27e7d326 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f50387 bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x27ff6f5d extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x280c7eed device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0x280e15ef devm_extcon_dev_allocate -EXPORT_SYMBOL_GPL vmlinux 0x2812a4b3 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x28135195 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x27fae6aa wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x27fb2e0b vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x280396d0 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x280547f1 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x28160dc8 ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x281a2020 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x2824c11b fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x282b3f94 __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2841a3d6 device_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x284709a5 devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0x285507fe dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x285cbdc1 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x285d2555 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28474eee component_add +EXPORT_SYMBOL_GPL vmlinux 0x284f0bd3 spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x28542a83 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286c1190 regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x287bae44 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x287fa7df register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x28811a65 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28a2adee fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0x28a9abb8 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x288d3994 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x28921c4f acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x28a61e5d pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b33b25 virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0x28b42608 xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0x28c86b8d tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x28d63411 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x28dc143f rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x28e7fe02 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x28fb79bd regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0x290358e4 bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0x2904f6bf dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x29154a63 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x28b54724 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x28b5f932 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x28bb7ce8 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x28cf64e6 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28deed08 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2909174c sdio_disable_func EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29401374 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x291e5779 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x29392b08 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode -EXPORT_SYMBOL_GPL vmlinux 0x2966b65a platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x296fa3fa pm_generic_poweroff_late -EXPORT_SYMBOL_GPL vmlinux 0x2977f2f4 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x29846cf4 clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x2986c0df fsl_mc_bus_dpci_type -EXPORT_SYMBOL_GPL vmlinux 0x298ec1b2 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x299489d3 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x29a401f2 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x29abc233 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x29d00d6b ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x2969c446 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x29742621 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x29757a41 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x2981f5d2 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x29a251b7 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x29a85294 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x29addc78 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x29b62c43 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x29b7d24d dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x29bf6c48 led_blink_set_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x29c526b4 sync_blockdev_nowait EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x29d78483 usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x29d7f16f i2c_client_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x29df6e4e virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0x29e409e9 vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0x29e5d330 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x29e199a4 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x29e7aa11 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f01e50 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x29f45498 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x2a2463ad inet_bhash2_update_saddr -EXPORT_SYMBOL_GPL vmlinux 0x2a29cf3f gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x29f35c15 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x29fff1a5 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a0480a4 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x2a0b4e71 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x2a2e47de ata_acpi_stm EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a45211e virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x2a4b2b13 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x2a39728d of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x2a3ec848 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x2a4c3167 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x2a5093ea blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x2a5f314a attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a5f70e0 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x2a6acf9f iov_iter_is_aligned -EXPORT_SYMBOL_GPL vmlinux 0x2a71d703 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a894e8a devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0x2a8d7f1e fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x2a73848f kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x2a7f7a65 devl_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2aa7b158 dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0x2aab25c0 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x2aa0dece __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x2aa1b008 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x2aa2565f smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab2ba13 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x2ac58ed6 acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2ae57b59 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x2aeea698 filemap_add_folio -EXPORT_SYMBOL_GPL vmlinux 0x2af090a6 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x2af75bde wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x2af96dc9 lwtunnel_state_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2b0ae665 regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x2b0e5626 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2aef04dc rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x2afe3fdf nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x2b07422c __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x2b0aafc7 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0x2b0c0e31 pm_clk_init EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b11f3f9 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x2b164336 rdev_set_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x2b173106 dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x2b2cbb1c devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0x2b3686f3 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x2b13eafd sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x2b221656 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x2b281031 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x2b448f35 irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update -EXPORT_SYMBOL_GPL vmlinux 0x2b47b072 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2b572e3b init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x2b5cca57 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple -EXPORT_SYMBOL_GPL vmlinux 0x2b669f11 phy_calibrate EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b6e8d3b ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x2b820761 of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x2b84d506 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2b71afe0 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2ba20287 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0x2bab9a96 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x2bac9b50 genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x2bb29402 xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x2bb590fe acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x2bbf39d3 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x2bb8a43f uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x2bca902f regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x2bd0f8da thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x2bdb62ff get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x2bdb6aac mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2be1af2b usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x2be238f5 usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x2bf02437 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x2c04ef56 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x2c0964c7 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x2c09f84e fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x2c0b0760 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x2c0ce332 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x2c186209 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x2be3d695 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x2be6ab15 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2c02b42b irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x2c03060b crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2c07984a software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2c1b3b3f mtk_clk_register_factors EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c26f8f4 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x2c2cbecb devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x2c535b02 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem -EXPORT_SYMBOL_GPL vmlinux 0x2c66729f phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c66baa2 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x2c750eb4 cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x2c7dc24d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x2c80efbb rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9f26d0 fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2ca222ee usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x2ca6f57a pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x2caf9036 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x2cb7fc8f shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2ccb56cb __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets +EXPORT_SYMBOL_GPL vmlinux 0x2ce28ebf iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2cfd8a3b serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x2d013392 tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d0d8bc7 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x2d1638d2 bpf_redirect_info EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d1b650d gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x2d1e11d9 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x2d235317 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x2d26aa31 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2d2a5a46 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d2da69d trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d350f45 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x2d3944be pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x2d325347 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x2d346f3e __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x2d39b835 compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d52b8b9 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2d4312e0 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x2d49d385 iommu_sva_get_pasid EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d5fa9cf rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d91494b dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x2da7c7f7 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x2d613b42 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2d71c264 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x2d7796bb scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x2d812f15 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x2d8ca8f5 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2d9df0b8 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2da15c45 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x2da2f3e8 bio_add_zone_append_page EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dc2bb39 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x2dcefca6 tpm_default_chip -EXPORT_SYMBOL_GPL vmlinux 0x2dd58109 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0x2de92961 da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x2dec259d security_inode_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2ded3989 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2db98ce9 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dcd76a0 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x2dcf5386 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x2dd13848 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x2dee35d1 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e081fd1 fsl_mc_bus_dpaiop_type EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e0e7953 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x2e1da232 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x2e229375 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x2e0d98c6 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x2e11a7df edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x2e14c94f xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e27138e platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x2e2beefe ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x2e306ea3 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x2e32595d of_css -EXPORT_SYMBOL_GPL vmlinux 0x2e589c9e reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2e468430 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x2e5828f1 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2e5b9645 devm_of_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e6d5662 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x2e80c326 hte_push_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x2e810d32 bpf_trace_run7 -EXPORT_SYMBOL_GPL vmlinux 0x2e967932 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x2e67b116 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x2e7340c2 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x2e76f41a regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing +EXPORT_SYMBOL_GPL vmlinux 0x2e8b17ca relay_close +EXPORT_SYMBOL_GPL vmlinux 0x2e8f689e raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x2e90a5cf serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x2e91fed2 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2ea2e52b dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x2ea77f7a tc3589x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x2eaea10c gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x2eaf9d77 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x2eb13f89 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x2eb1f042 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2eb43578 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x2eb5ee59 fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec1b5de shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x2ecf4878 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2ec22522 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x2ed73ee5 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2ee08113 samsung_sdi_battery_get_info EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2ee82cb0 spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0x2eec2d35 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x2ef5a06f inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x2f0d1b93 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x2eec3106 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x2ef68861 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string -EXPORT_SYMBOL_GPL vmlinux 0x2f171283 ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f21c19c skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x2f2a17c4 devm_thermal_of_zone_unregister EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f3d510c of_clk_src_simple_get EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f496f71 vcap_keyset_name -EXPORT_SYMBOL_GPL vmlinux 0x2f5a2bf2 pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f98fa60 wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x2f9bd229 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2f71b0a3 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x2f73e23e devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x2f7de464 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x2f81f113 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x2f887a4a fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2f905b02 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x2f9d6398 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2fa67c37 tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2fb90287 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x2fbd4c18 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x2fc1b408 rockchip_pcie_deinit_phys EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fc87dc2 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x2ff3916e evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0x2ffc69bc devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x2fd31a70 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2fe1d179 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x2fe5210a devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fe59c96 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x2ff05f11 rz_mtu3_16bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x2ff70ba8 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x2ffedb6b hv_free_hyperv_page +EXPORT_SYMBOL_GPL vmlinux 0x3003bd55 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features +EXPORT_SYMBOL_GPL vmlinux 0x3023a5a0 spi_target_abort EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting -EXPORT_SYMBOL_GPL vmlinux 0x3033a68a mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x30299767 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x3031c68a crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x3033139e ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x303967ed serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0x30439785 relay_reset -EXPORT_SYMBOL_GPL vmlinux 0x3057cc1f power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x303e2b02 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3040bce3 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x3071b2e5 __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x3073bb26 ata_sff_freeze -EXPORT_SYMBOL_GPL vmlinux 0x307752a2 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x3079fa09 irq_chip_set_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x308cdba0 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x30996ac2 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x30a1f0d6 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x30ab7ebd component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x30d07e34 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x309beb49 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x30a4ad3b pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x30a75630 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x30de0796 bio_associate_blkg EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30e4bb1a ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0x30f541fe request_firmware_direct -EXPORT_SYMBOL_GPL vmlinux 0x30f76884 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x30ee68e8 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30fc0663 devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31116ab9 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x3117ce04 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x31291774 i2c_handle_smbus_host_notify -EXPORT_SYMBOL_GPL vmlinux 0x3132a42a iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0x31337d5b clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3127a0b3 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x312dbbc6 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x312f10a8 tps6586x_reads EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x3150356f gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x31524922 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x315c58d1 synth_event_trace -EXPORT_SYMBOL_GPL vmlinux 0x3169b264 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x317a1e86 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes -EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x318b1743 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0x318c61e3 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x3147c5fe spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x316d9b11 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x31907a1c fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31943dd2 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x31a2f0f1 to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31ad8e87 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x31b0d25f rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x31b54bfc kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x31b7fc01 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x31c0c7b3 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x31c4f836 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x31aedc7e devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x31b2fc37 dev_pm_domain_attach_by_name EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load -EXPORT_SYMBOL_GPL vmlinux 0x31d3968a io_uring_cmd_done -EXPORT_SYMBOL_GPL vmlinux 0x31d72047 devm_pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x31da9c3b anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x31d49c84 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x31dc42f5 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31df4cb2 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x31de5e81 akcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31ec2075 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x31f0f033 perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x31f26e7b regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x31f67831 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x31fb07c4 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x3201fc11 shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x32093209 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x31ffeefe unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3211d1bb devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x32146e7c fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x321b0b4f ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x322af484 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x3236d69c mtk_devm_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x323c7f03 relay_open -EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x326a45a1 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x322d0247 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x324feb95 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x325422c5 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x325e4c99 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x32614fe4 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x32686f8d inet6_csk_xmit EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x329377cb crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x329c9be9 devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0x32a8dd0b dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x32895f64 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x328cfcd8 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x32a85003 _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b2333f dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x32bb033e __traceiter_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bd6b7e ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x32c15793 ata_sff_irq_on EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32c5caf4 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x32ca6ddd cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x32df7020 mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0x32e95aea iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x32c65a13 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x32ccea6f clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x32d2ef81 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x32d4ed65 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x32d9dc97 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x32daf7af dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x32f9d6bd fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous -EXPORT_SYMBOL_GPL vmlinux 0x331650a9 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x332159da cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x33232435 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x3332c2bc vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x333e65c0 devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x3342b99f device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x3347e588 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0x3357bf82 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x331adc21 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x33267072 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x3327b59b pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x3327f3e1 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x3352823d cppc_get_auto_sel_caps +EXPORT_SYMBOL_GPL vmlinux 0x335a613c mas_next_range EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x336b213a __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x336f043a led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x338747be balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x3387678c validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x338a484a dprc_close -EXPORT_SYMBOL_GPL vmlinux 0x33b59357 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0x33b5e8e4 devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x33d6c996 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x33d75aaf sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0x33f1a097 dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0x33f4dd77 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x34181c17 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x341fae07 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x34246ac8 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0x3425602c edac_pci_handle_pe -EXPORT_SYMBOL_GPL vmlinux 0x342cf574 validate_xmit_xfrm -EXPORT_SYMBOL_GPL vmlinux 0x342fdf14 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x33663065 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x3366d0d6 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x336bbb99 udp_destruct_common +EXPORT_SYMBOL_GPL vmlinux 0x33725a27 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x33801b71 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x3399cfe7 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x33a93c1a pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x33a9e5d4 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x33b2b8a0 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x33b40f6b fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x33bda2be tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x33d3fa21 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x33edda34 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x3406efa1 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x340e60f3 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x3411192d nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x341e87ad sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x34237a2c of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x3428dd38 mtk_register_reset_controller_with_dev EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x343b1609 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0x343bff38 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x344a0adc fsl_mc_populate_irq_pool EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x344ece40 blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x3455e52b to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x34627c57 blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x3465803c serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x3471a0c6 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x3454141c rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x34602136 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x346d8f69 rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x347f14e6 sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x3483516c dma_resv_test_signaled -EXPORT_SYMBOL_GPL vmlinux 0x348dca6d led_put -EXPORT_SYMBOL_GPL vmlinux 0x348e122f param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x348f0d3b file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x34913b38 device_match_any EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free -EXPORT_SYMBOL_GPL vmlinux 0x349a129a dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x349b7bd5 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x349a25f7 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x349de8a1 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x349dfb43 ptp_parse_header EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34af61dd sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x34b47afd spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x34b4d5d3 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x34b83cb7 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x34bba0a9 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x34bd98ed vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x34cfe1a4 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x34db73fa tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x34db8487 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x34abe2ef regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x34b53623 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x34c35545 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x34c52e25 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x34d196cd of_phandle_args_to_fwspec EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking +EXPORT_SYMBOL_GPL vmlinux 0x34e3e7e9 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x34e6f15d pci_msix_can_alloc_dyn EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split -EXPORT_SYMBOL_GPL vmlinux 0x350504c3 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x34ecb324 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34eff39b irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x3512e3b1 dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0x352a454b devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x352027d3 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x352a36dd ehci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy -EXPORT_SYMBOL_GPL vmlinux 0x353340d1 phy_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x35391d93 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x354931e3 genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0x35503ff4 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x355260da serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x3553f2b9 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355bf66e io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x355f150e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x355fe9b6 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3560239e bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x3576611b mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x3576711e sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x357726ef cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3577b7cb crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x3587ef46 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x35899945 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x3597f8fb ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x35971c80 wm8350_gpio_config EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35b1388b phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x35a5b3ad devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x35bd2cfa vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x35c05d31 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x35ceb37f led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x35d0928e lynx_pcs_create_fwnode EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35e5cb1c crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x360d5e56 __traceiter_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x360ecc58 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x36112092 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x35d5defa dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x35e63f30 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x35e95482 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35fc2a24 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x36190d4f do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x3629060a udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3644c14f regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x362e0868 folio_alloc_buffers +EXPORT_SYMBOL_GPL vmlinux 0x36303d26 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0x3644a470 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x364b6083 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x36588d83 sysfs_create_link_nowarn EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x367641cb filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x3663141c crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x36650b94 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3682a571 rz_mtu3_shared_reg_write EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x368fed9e iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x36964864 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x368a3c03 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3696b947 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x369cb587 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x369ce54e extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a4d8d8 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x36a6c2ed fsl_mc_bus_dpni_type EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36b3f2cc blk_mq_flush_busy_ctxs -EXPORT_SYMBOL_GPL vmlinux 0x36bd9889 thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x36cb4f8c devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x36c4c367 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x36cf7c2f devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x36d2d278 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash -EXPORT_SYMBOL_GPL vmlinux 0x36dda44b rio_unmap_outb_region -EXPORT_SYMBOL_GPL vmlinux 0x36dfe9eb clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x36e01f78 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x36f02d1e bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0x36f43261 altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x36f6155a ahci_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x370e7a10 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x36ee2d6a blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x36f6509c crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x370359ff dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x3705a69d perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x370942b9 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x371bec76 gpiod_get_from_of_node -EXPORT_SYMBOL_GPL vmlinux 0x371dd397 of_dma_router_register -EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37209c10 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x3736cb43 blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0x37370a85 tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x37479155 fat_alloc_new_dir -EXPORT_SYMBOL_GPL vmlinux 0x374ed51d dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x37183004 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3721c933 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x3722ae61 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x3724703a platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x373eada0 exportfs_encode_inode_fh EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x3751cbf6 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x376b2512 vcap_lookup_keyfield -EXPORT_SYMBOL_GPL vmlinux 0x376b8939 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0x376f4d57 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x375166c1 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x375f3d41 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x3763adc3 crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0x376683d5 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x376c7f8f vmf_insert_pfn_pmd EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x377a902f k3_udma_glue_tx_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x37879c27 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x3787eeaf ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x377f5e77 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x37834319 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x37869226 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3786c1a9 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x37880997 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset -EXPORT_SYMBOL_GPL vmlinux 0x378ba329 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x378c6cdc rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x378c4555 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write -EXPORT_SYMBOL_GPL vmlinux 0x37a8ba56 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x37aef5b5 pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x37b0f955 mtk_clk_unregister_factors -EXPORT_SYMBOL_GPL vmlinux 0x37b44a66 pinctrl_force_sleep -EXPORT_SYMBOL_GPL vmlinux 0x37b78a4a iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x37ba30e0 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x379dd429 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x37a7fbd9 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x37b87580 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c42d1b kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0x37de5486 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x37f49943 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x37f5aeab crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x37f734b3 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x37c1a008 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x37c56a2b locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x37c5819d regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x37d59859 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x37e6ed14 usb_lock_device_for_reset EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x38026aa5 bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap -EXPORT_SYMBOL_GPL vmlinux 0x38143f07 dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x381ed260 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x3819da40 __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x382a8a11 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x382ad42c devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x382cd966 of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0x38374457 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x38298542 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x38381bb0 blk_mq_queue_inflight -EXPORT_SYMBOL_GPL vmlinux 0x383941ad percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x384ff6fd vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x38589f20 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x38582e84 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386c151d usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x38760327 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x388f8838 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x38729318 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x3874db34 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x38853aff dm_put EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389c3af6 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38ade45d nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x38af990d cros_ec_cmd -EXPORT_SYMBOL_GPL vmlinux 0x38b0bf90 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x38b21d02 dprc_open -EXPORT_SYMBOL_GPL vmlinux 0x38b2c156 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x38b2cc87 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x38b4d57d of_thermal_get_trip_points -EXPORT_SYMBOL_GPL vmlinux 0x38b9bb51 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x38c1ac36 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x38c3d0cc __fsnotify_parent EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38cfcfd8 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x38d1d0d4 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x38d3a71e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x38df8409 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x38e12942 scsi_alloc_request EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38ec00e6 gpiod_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x38f1a30d sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x39043719 ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x390c5405 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x392e2261 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3902431a devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x39041021 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x390ca4d4 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x390d70e8 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x39229383 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x392d8a46 ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x39350408 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x393c3379 ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x393e4329 xhci_dbg_trace -EXPORT_SYMBOL_GPL vmlinux 0x394c1ff9 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x39513f33 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x39530a23 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x393e23d7 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3941e099 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x394afe7f ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x394e0c32 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x3955ccde usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x3958ccb6 __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait -EXPORT_SYMBOL_GPL vmlinux 0x395eee7a scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x396cf3e0 device_del -EXPORT_SYMBOL_GPL vmlinux 0x397a72bf dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x395bee83 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x396654b8 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3983699b vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x39871664 sysfs_unbreak_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x398fc1a2 gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x39954c83 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3987b753 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x39890da1 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x398b7a40 thermal_zone_device +EXPORT_SYMBOL_GPL vmlinux 0x3995dfc0 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x399f5d20 blk_mq_complete_request_remote EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39bf302a uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x39b24a64 imx_fracn_gppll_integer +EXPORT_SYMBOL_GPL vmlinux 0x39bdd9c5 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find -EXPORT_SYMBOL_GPL vmlinux 0x39cdd8cc kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x39db7866 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x39cc5081 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e52f4e __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x39eb5b4e clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x39fcc2ac devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x39e1e61d dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x39fe013e securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x3a0290a7 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x3a058f67 adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3a0aacea usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3a02f65d devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3a1dfa4d clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a1fa4ad xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a263197 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x3a2e9bd9 ata_host_start -EXPORT_SYMBOL_GPL vmlinux 0x3a4589b2 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3a27d38f power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x3a280dd4 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x3a3366ae regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3a3d5058 devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0x3a46b4f4 vcap_tc_flower_handler_ipv6_usage EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x3a513186 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x3a509d81 regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a63ab8d pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x3a6789c7 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x3a679265 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x3a71b643 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x3a78892f gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x3a829162 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0x3a84fb98 da903x_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3a95ccc2 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x3a7222ee meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x3a729bb8 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x3a75c138 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x3a788042 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x3a7ae04a devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3a7c5155 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x3a93a19b ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x3a95d538 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x3a96400b pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3a9ccc2e regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3aa472b7 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3aafa935 mtk_clk_dummy_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ab23c7d devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x3ab394c8 thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0x3ab98030 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3abafbae ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location +EXPORT_SYMBOL_GPL vmlinux 0x3abe6fe5 phylink_validate_mask_caps +EXPORT_SYMBOL_GPL vmlinux 0x3ac37f52 rio_release_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3ac5173d ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x3ac892a9 dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3acedeff serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0x3ae9aead tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x3af74175 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x3ad6aae7 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x3ad72676 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3adc827c rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x3ade5bf6 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x3ae8d8ce get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x3aeba0d4 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x3b0b701a devm_irq_alloc_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x3b0bde77 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0x3b235f9b ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x3b32bd15 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop +EXPORT_SYMBOL_GPL vmlinux 0x3b05f42d usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x3b0a2c7a nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x3b0b60b7 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x3b1e7041 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3b2dd649 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3b38b426 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x3b4504da mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3b6aa3b8 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x3b52a394 dma_opt_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b7cded1 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x3b852e79 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x3b94e741 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x3b794c46 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b86f17c skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3b89db71 platform_bus EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3ba49ae0 phy_pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x3bae113a devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x3bb33501 devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x3bb86dcb ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x3bc2e454 umd_cleanup_helper -EXPORT_SYMBOL_GPL vmlinux 0x3bc76728 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x3bda5617 pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x3bdaad16 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x3ba7c847 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x3bad5bf9 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bb6e350 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3bb823e9 mtk_clk_pdev_remove +EXPORT_SYMBOL_GPL vmlinux 0x3bce0f73 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3bce32ad tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x3be48f69 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0x3be4cf52 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x3be521ab msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x3be95cbd blk_req_zone_write_trylock EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf7ce86 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c12b274 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x3c1983c7 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check -EXPORT_SYMBOL_GPL vmlinux 0x3c201980 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3c21ff8c of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x3c24cb02 devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c3cc0b7 fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0x3c43d3b8 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x3c4dc6cd fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x3c523c56 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x3c44dbfa blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x3c467a32 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x3c4b2226 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x3c4cf6b8 divider_ro_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x3c60f6b4 pci_get_dsn -EXPORT_SYMBOL_GPL vmlinux 0x3c640ea0 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c692334 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x3c6907fa irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x3c732ef7 crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3c825c51 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3c8d1dea regmap_check_range_table -EXPORT_SYMBOL_GPL vmlinux 0x3cab78f9 kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x3cb5a7b4 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x3cb76818 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0x3cc4b625 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x3cc788e3 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x3c8b3908 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x3c950df7 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x3cb88a62 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x3cc2d44c dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd2ce9b pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x3cd97f06 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0x3cdbc4f8 dev_pm_opp_of_find_icc_paths -EXPORT_SYMBOL_GPL vmlinux 0x3cf134b5 imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0x3cff6d71 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x3d0861a2 cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0x3d0a6008 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x3d12e80e get_net_ns_by_id -EXPORT_SYMBOL_GPL vmlinux 0x3d13ef30 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x3d150b50 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x3d221be3 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x3d33be94 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x3d35fb20 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x3cd361bd trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x3cd4ebc4 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x3cd62e5c dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x3ce831ae __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x3cf6231f of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x3cfcef31 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x3d02c3c3 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3d0ed0a5 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3d124ec3 mdiobus_c45_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d4e1208 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x3d44a811 crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0x3d47ffc8 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x3d48c8b6 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x3d49d574 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x3d4a1edc __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d57ec73 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x3d669401 ehci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3d6c05f9 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3d655313 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x3d75c17c irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d904bb2 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3da6e238 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x3da8aba6 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3dbaf40f usb_init_urb -EXPORT_SYMBOL_GPL vmlinux 0x3dcddff2 of_reserved_mem_device_release -EXPORT_SYMBOL_GPL vmlinux 0x3dd9d078 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0x3ddcc3f2 ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x3de1746f __devm_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x3de7ae24 fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x3db26846 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x3dbc8600 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x3dbebcd7 da903x_read EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df1cf01 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3df95cb6 device_create -EXPORT_SYMBOL_GPL vmlinux 0x3e0839de ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x3dff417a __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x3e005cf8 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e1fb889 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x3e389001 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x3e406680 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x3e1e9a8d regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x3e1efe82 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x3e31f3dc cg_regs_dummy +EXPORT_SYMBOL_GPL vmlinux 0x3e331cf3 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x3e39f134 tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e48a1b2 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x3e4e022c devm_regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0x3e55237e rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x3e5e94e8 dma_resv_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x3e61acbe edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x3e67c09e meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e4f5db7 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e505ba5 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x3e5bbcb5 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3e6d9d64 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e78e99b vcap_val_rule -EXPORT_SYMBOL_GPL vmlinux 0x3e851ffe gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x3e7558fb mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x3e899bde fsl_mc_bus_dpdcei_type EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3e920e0d crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x3e9764c3 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3e9a7ef8 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb0410a __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3eb3bfba ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x3ec02126 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x3ecdfc22 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x3ed552ab gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put -EXPORT_SYMBOL_GPL vmlinux 0x3eef742b nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x3ee2965c dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x3ee7a01e syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3eeebdee synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3efb9e70 stmpe_enable -EXPORT_SYMBOL_GPL vmlinux 0x3efeb0e6 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x3f049829 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x3f1462ef sfp_bus_add_upstream -EXPORT_SYMBOL_GPL vmlinux 0x3f202213 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x3f24c3dc blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x3f2fd22a dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0x3f3460aa devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x3f3a174a phylink_ethtool_ksettings_get -EXPORT_SYMBOL_GPL vmlinux 0x3f3c2b4c cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x3ef891ff devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3eff2fa6 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x3f141610 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x3f31b27a xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x3f371eff lwtunnel_input EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f5854f4 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x3f72ac98 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x3f6cdf22 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x3f835eea k3_udma_glue_request_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3f899865 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3f88325f bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fb8936e devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x3fc0c39f rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x3fc1fa9b wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fecb2fa policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff5b2d1 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x3ffacc89 phy_reset EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x40057466 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x40078a93 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x401db224 dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x40246eea anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4015d92d devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x402ded04 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x402b2591 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x403745e1 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x40477f9b generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x405e9524 balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x40456ed0 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x405ac33e icc_provider_deregister +EXPORT_SYMBOL_GPL vmlinux 0x405dd6b3 ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources -EXPORT_SYMBOL_GPL vmlinux 0x406b4aca bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x40718c3e devm_ti_sci_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x4073cd26 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x40796523 rockchip_register_softrst_lut EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x40872e44 fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x4095c06e ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x40816e35 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x4087cae0 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x408c108a cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x40ab2c88 fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0x40af8e04 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x40b1ed14 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x40b1edee rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x40c29a8a blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x40c538d5 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x40ca792a pci_epf_create -EXPORT_SYMBOL_GPL vmlinux 0x40d06a01 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x40ed5e3a task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x40a4953d uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x40a7306c vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x40b48c89 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x40cc1715 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x40d5c4f4 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x40e66212 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f746bd sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x40f821e5 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x40f4835b of_pci_range_parser_one EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x40fe8b31 device_get_child_node_count EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4108799c spi_finalize_current_message -EXPORT_SYMBOL_GPL vmlinux 0x411e5c95 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x410a2e85 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x411da30c fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413003e9 i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x413903a4 of_phandle_iterator_next -EXPORT_SYMBOL_GPL vmlinux 0x4139dee3 dev_pm_genpd_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41418d1e acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x4148f3ff simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x41319a8c usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x415854e9 mtk_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x415a93ae pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x415e4ba6 of_icc_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x41690d7b tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x417c2978 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x414ead69 dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0x416b95ad devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x416d9f53 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x4174d0a6 __dax_driver_register EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x41872bb3 syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x41916cb6 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x418e1adc regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x41926a00 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x41989863 scsi_dh_set_params EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41b6c612 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x41b7fd78 pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x41b89dcc fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x41aa8d9c crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x41ab3133 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x41b63551 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x41b7b225 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x41b966c9 regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41c46b71 thermal_zone_unbind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x41c6eae7 iommu_device_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x41d44db8 ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0x41d8fe4d ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x41de189a devm_regulator_get_enable_optional -EXPORT_SYMBOL_GPL vmlinux 0x41e1ad45 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x41e5686b serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x41be08b6 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x41c36b9b __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x41cbdcbe netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4208b269 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x420c908e driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x42181eb8 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x421e5d6c tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x421e934a tegra_xusb_padctl_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x42296b17 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x4235fe24 usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x42410b90 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x425a7604 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x421d174f devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x4237e2ff vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x423b4b8b __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x423e793e mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x4246d3dd k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x424bd52e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4252e5db dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x4253ecdf kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn -EXPORT_SYMBOL_GPL vmlinux 0x426bba12 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x42686b49 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x42722c7d pci_find_doe_mailbox EXPORT_SYMBOL_GPL vmlinux 0x4278d56a phylink_expects_phy -EXPORT_SYMBOL_GPL vmlinux 0x4280d370 xenbus_read_otherend_details EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x42864ebe tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0x428a3873 qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x428ca5d5 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x4282ce80 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4293337b pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x4298bdc7 mtk_clk_register_composites EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42aaf9b3 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x42ab2c9b tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x42b7488f fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42dcbf00 ti_sci_inta_msi_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x42e5b06f crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x42ca2c48 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x42e04562 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x42e3c7a0 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x42e732cb vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0x42e90f22 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x42ec7d41 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x42f6a581 dpcon_get_attributes EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fc7b21 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x43041a3b scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x432e18db vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x43301f9f sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0x4332375e virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x43403a0a usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x43458129 auxiliary_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4352c778 cpufreq_dbs_governor_stop -EXPORT_SYMBOL_GPL vmlinux 0x435ea085 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4325c7b9 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x432d086e md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x432d7074 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x433b1a55 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x4341f500 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4343d820 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x43649a74 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4376ae22 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x43717ffa devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x43801066 ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x438b656f fbcon_modechange_possible -EXPORT_SYMBOL_GPL vmlinux 0x438b723a pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x438d3018 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4380a1df rz_mtu3_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43814acf __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x43986025 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0x43a797ab max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x438f45c9 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4398f072 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b07c7a __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x43c15d24 xdp_set_features_flag +EXPORT_SYMBOL_GPL vmlinux 0x43c5a407 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x43c755bb pci_p2pdma_enable_store EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43e0a1fc security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x43e10d34 tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x43ea5131 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x43df2b36 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x43e67a19 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x43efa3d2 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x43f18978 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x43f73591 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs -EXPORT_SYMBOL_GPL vmlinux 0x43ff9371 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x43ffbd0e msi_lock_descs EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x4405453b regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4413d28f dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake -EXPORT_SYMBOL_GPL vmlinux 0x441acc76 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x44180d6b platform_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x442f4769 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x44364dc7 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x443f5359 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x4442edef vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x44570999 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x4461da20 devm_platform_get_and_ioremap_resource -EXPORT_SYMBOL_GPL vmlinux 0x44665ffc crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x446f28d9 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x44792149 platform_irq_count -EXPORT_SYMBOL_GPL vmlinux 0x447d327f of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x4462c16a relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x446dec8a __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop +EXPORT_SYMBOL_GPL vmlinux 0x4475dcaf hv_nested +EXPORT_SYMBOL_GPL vmlinux 0x44795422 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x447f809c imx_clk_hw_pllv3 EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x44862d90 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x4486c0a8 mptcp_pm_get_add_addr_accept_max -EXPORT_SYMBOL_GPL vmlinux 0x4490eba8 phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x449908a9 xenbus_alloc_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x449c3372 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x44851ea4 restore_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44b315b7 thermal_zone_device_id EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x44bd21ef mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44c1caed ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d1d663 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats -EXPORT_SYMBOL_GPL vmlinux 0x44ebe3b1 ata_bmdma_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x44f2d91d __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x44f48491 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x450166e0 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x4502dd3f fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x44e40e4d pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x44e58976 __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x451078ea device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x4514e0ea irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x452534f3 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x452e1a2b percpu_is_read_locked EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x45357e59 devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x45474780 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x45465f0c get_device +EXPORT_SYMBOL_GPL vmlinux 0x4554ef71 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x457d925a __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x45839a10 usb_control_msg_send -EXPORT_SYMBOL_GPL vmlinux 0x458beac4 alloc_dax -EXPORT_SYMBOL_GPL vmlinux 0x458e50d8 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x457a770c gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4584252c inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x4590d82d pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x4598cc1d gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages -EXPORT_SYMBOL_GPL vmlinux 0x45a0eafd crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0x45b9bb4f fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x45e959ad tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x45caf335 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x45d66010 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x45d961d2 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get +EXPORT_SYMBOL_GPL vmlinux 0x45e93f2b blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x45fa3f11 synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4602e470 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x4603830c subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x460697ff gpiochip_generic_config -EXPORT_SYMBOL_GPL vmlinux 0x460de322 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x4615fb3c bgpio_init -EXPORT_SYMBOL_GPL vmlinux 0x46191915 blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x4628ddd7 devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x462feb7a switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x463247e7 devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x463e2626 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x464a2966 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x46568afd xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x46770bbc pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x4677fa76 crypto_shash_tfm_digest -EXPORT_SYMBOL_GPL vmlinux 0x467a52b7 sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x4681ac6f of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x4627e705 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0x4629d35f apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4629d8ce devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x462e60bd powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x463038ba pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4637511f tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x463e0c99 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x46458096 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x46463864 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x464799b6 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x466fdc34 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x467c2ccb dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x4683f72d sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4684e4f9 fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x468b41c6 wakeup_source_unregister -EXPORT_SYMBOL_GPL vmlinux 0x469c1353 bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x46a085a8 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x468dfd5f acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x469d6cd1 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x46a13736 ahci_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46ad53cc iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x46b78446 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x46b95616 pcie_port_find_device EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x46cdecb5 mmc_crypto_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x46d1eca5 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x46daa9ce extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x46bcd803 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x46c9b5ba acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x46d0cc09 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x46d5c41a __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x46e1bc7e dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap -EXPORT_SYMBOL_GPL vmlinux 0x46ef8703 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0x46f54fd8 rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x4700d912 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0x47036dcb __devm_pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0x47101364 devm_thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x471c2770 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x46f28b15 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x470df43d to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x4713f258 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x47163e78 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x471de9bc of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x471e64ba synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x4728f552 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x47291120 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0x473136a7 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x4742fe73 irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x4751ad3c xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x47563b8a pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x472c2044 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x472cf10d dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x473046d6 gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x47642c53 rio_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x47664c98 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x476ad1e2 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x476461e8 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x476c9942 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x477f23b4 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x4781fba2 pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x478a00c6 ata_bmdma_irq_clear EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x479045df gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x479491e2 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode -EXPORT_SYMBOL_GPL vmlinux 0x4799ae8e gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x479dd884 lp8788_update_bits EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a3a0f7 mtk_clk_gate_ops_no_setclr_inv EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47ab0647 xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x47c84a6c irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x47ce8881 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x47b83b3f trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e8c964 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x47f37785 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x47fc2c10 __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x480872d6 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x4809c91b blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x480fbd34 dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x482e6521 meson_aoclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x48315845 gpiod_enable_hw_timestamp_ns -EXPORT_SYMBOL_GPL vmlinux 0x483c6cb9 synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x484285b4 fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x4842d9e9 filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x4847d705 pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x48567077 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x485bac5e debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x487f78b8 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x488cf1c6 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x489bbb4b nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x48766336 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x4886d11c irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x488b5760 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x488e9d9f iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x488ed976 kobject_move EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a84c25 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x48aff44e mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0x48bb610b rio_lock_device -EXPORT_SYMBOL_GPL vmlinux 0x48bc83a1 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x48c1fdb9 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x48a92de6 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x48ba1d7f iommu_present EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x48ced842 blkdev_zone_mgmt -EXPORT_SYMBOL_GPL vmlinux 0x48d3f98a blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x48fa69f1 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x48ff149d led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x48c35c9e __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x48df0e46 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x48e5b603 __trace_array_puts +EXPORT_SYMBOL_GPL vmlinux 0x48e5bf6b acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x48e919be nvmem_layout_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x4915288e wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x4916d246 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x490ebfd6 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4911f303 __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x49293ca4 __traceiter_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x49335f93 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x4925bbb6 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x4939cc1e cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x4935a6ce put_io_context EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x49406c1b is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x49435332 ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x494e5dee tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0x4953c70c fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x495a3bb4 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x493d64bf dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x494f0866 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x49684c94 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x496b13f4 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x497edcd8 net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0x4986880f kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49b62676 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x49c493d6 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x49c4e39d dst_blackhole_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x49c524bb usb_submit_urb -EXPORT_SYMBOL_GPL vmlinux 0x49ccd2ff scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x499ad65d pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x499dc918 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x49a9f081 pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0x49ba4f63 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49d2937a regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x49e745e2 platform_add_devices EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f5014d sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x49ffd060 blk_mq_quiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x4a05e7b1 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x4a0d9111 balloon_page_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4a0f8f21 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x4a1741c2 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a00c385 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x4a071351 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4a0c615a device_del EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a20d324 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a26a4b7 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4a285b63 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a2a69f1 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x4a2b23fb msi_device_has_isolated_msi EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a53da74 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x4a5aadbf pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0x4a5f6f9c blk_mq_pci_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x4a63cd00 xdp_rxq_info_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x4a711c96 acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x4a7dc181 mctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x4a91d637 io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0x4a94465f rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ab88555 ata_pci_device_resume -EXPORT_SYMBOL_GPL vmlinux 0x4ad52383 devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4b15d0bb power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x4b2904a6 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x4b4081f1 buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0x4b4cecd4 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x4b52789b xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x4b52b7b3 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x4a5e725e free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4a60e008 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x4a70bdcb k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x4a7b3ad6 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x4aa01765 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x4aa45037 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x4aafc71d dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x4ab23e83 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x4ab6ea59 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x4abd4fa3 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x4ac9d7a5 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x4acf8887 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4ad45d4b dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x4ae7c02b ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4ae9d33e skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x4afd9040 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x4b08a2e7 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x4b1909d7 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4b4821b5 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x4b59e61d fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b5d2f9a kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x4b623119 ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x4b6bc4a9 regulator_set_voltage -EXPORT_SYMBOL_GPL vmlinux 0x4b73a3d8 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x4b814181 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x4b8ab4f3 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x4b8ebb65 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x4b5ebd74 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x4b67d978 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x4b8b11d6 device_match_fwnode EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4ba0807c acpi_pm_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x4bade2df rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x4bc19392 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x4bc59d24 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x4bc64d35 phylink_create +EXPORT_SYMBOL_GPL vmlinux 0x4ba8ae49 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x4babc85d __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x4bb41a86 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x4bc0b69d sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x4bc2f741 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x4bc85953 k3_udma_glue_request_tx_chn EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bcfa90d fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4bcf4c8a rt_mutex_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4be64845 ftrace_set_notrace -EXPORT_SYMBOL_GPL vmlinux 0x4bede1e7 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x4bdfc3bc scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4bf263bd pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x4c009c81 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x4c0fc923 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x4c26d52c iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x4bff29a0 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x4c0730dd pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c1ae31b mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x4c1bfa01 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c23829c clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x4c4773b0 mnt_idmap_owner -EXPORT_SYMBOL_GPL vmlinux 0x4c4cda2c iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x4c53ed47 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x4c548f42 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4c2d8569 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4c379d98 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4c3c76bf dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x4c426e68 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4c434908 clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c5d8adb fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x4c601c7b xdp_attachment_setup -EXPORT_SYMBOL_GPL vmlinux 0x4c67877f bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x4c6e8190 irq_gc_mask_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x4c7a47f6 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x4c5e7ca1 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c5f348e acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x4c68b1dc of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x4c6bfbe7 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x4c73a9ed percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4c83c959 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x4c848559 acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c8fbdb0 iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x4c969578 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c90a711 nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev -EXPORT_SYMBOL_GPL vmlinux 0x4caf45b3 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4ca5a599 posix_acl_create EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb33fc6 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x4cb7155c watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4cbc9c02 trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x4cd9c21d ksm_madvise -EXPORT_SYMBOL_GPL vmlinux 0x4cf86c4c gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x4cc5cfe8 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x4cc6fcfc pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x4cce4e7d rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x4ce55010 mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ceb8890 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d0072cd wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x4d0ff9c0 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x4d10fc78 mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d32f61e __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4d350f7f vcap_tc_flower_handler_ip_usage EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d56954b of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0x4d5bcd55 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x4d63d269 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x4d6a4898 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x4d44c535 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x4d48a3f8 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d4fa2f9 walk_hmem_resources +EXPORT_SYMBOL_GPL vmlinux 0x4d5c2da2 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x4d65c7c0 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4d6ad28a __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6f70f6 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d836db4 user_update EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d8e18c8 devm_of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x4d913745 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache -EXPORT_SYMBOL_GPL vmlinux 0x4da2abb6 pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x4dae01d8 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x4d968cec xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x4da13db2 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4da2249a scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x4da50b05 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4da68531 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4db33d2d spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4db6ffcc spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x4dba6c68 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4dc3b51a device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4dc7d4e9 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x4dd6f92b sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x4ddf287c irq_get_default_host EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4de4bbb2 mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0x4dee4b3f regmap_field_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x4dfc856b iomap_page_mkwrite -EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e00620e wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x4e0e8dcd msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x4e0f2f1e phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x4dfa96da misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x4e01a021 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x4e046c92 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4e07e01d ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x4e0f6917 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x4e114819 vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e2f3c90 mtk_mutex_enable_by_cmdq +EXPORT_SYMBOL_GPL vmlinux 0x4e1b28b3 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x4e23983a fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x4e248658 ata_eh_read_sense_success_ncq_log +EXPORT_SYMBOL_GPL vmlinux 0x4e2f71e7 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x4e34fecb inet_bhash2_update_saddr EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e42b2fc nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x4e450995 irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e4ef514 hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0x4e64ee7e pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x4e4ee824 dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x4e9224c1 clk_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x4e9ab065 devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x4e9f304e bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x4e9f4abc arm64_mm_context_put -EXPORT_SYMBOL_GPL vmlinux 0x4eab69ba __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x4e6a6bf1 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x4e6d0bb9 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop +EXPORT_SYMBOL_GPL vmlinux 0x4e7aa46f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e843313 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x4e8c2986 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x4e8e7142 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x4e9cab31 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x4ea04246 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x4ea1a4e5 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x4ec998e4 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x4ec9e0b2 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4ecaadd0 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x4ec94f70 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ecb2be8 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x4ecb982b failover_register +EXPORT_SYMBOL_GPL vmlinux 0x4ecc6cf1 mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed3469f device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x4ed830e2 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x4ed9f380 meson_axg_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x4ee92d00 iov_iter_get_pages_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4ee9b9b3 crypto_unregister_templates -EXPORT_SYMBOL_GPL vmlinux 0x4eee4aa6 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x4eee9b13 irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0x4ef3311e sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x4edbc739 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efa531b usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f0a6b11 pci_ecam_map_bus -EXPORT_SYMBOL_GPL vmlinux 0x4f22fe46 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x4f0a4ad3 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x4f1518b7 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x4f23c5e0 led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f29fa77 gnttab_free_pages EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f303d83 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4f36eb06 pwm_put -EXPORT_SYMBOL_GPL vmlinux 0x4f3e7d52 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x4f431ea4 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0x4f4b6f24 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x4f51f8a3 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4f57591d acpi_get_and_request_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x4f5fa0fa sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x4f33653a sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x4f3cde6e dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x4f3f2c82 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x4f40df77 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x4f598c72 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f5de15e power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6a3b3b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4f6dbe7d imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0x4f6f1294 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4f707f48 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f760316 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0x4f761f0b kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0x4f93a1c4 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7e59ac kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4f90f601 dma_resv_get_singleton EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa46f6f tty_get_icount EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fb8e7c9 pinmux_generic_get_function_count -EXPORT_SYMBOL_GPL vmlinux 0x4fb9b1a9 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x4fcbe3f9 devm_gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x4fcce507 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4fbd47e9 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x4fc5cdd9 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4fdb860d fsl_mc_portal_free EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe5a3d7 fuse_dev_alloc_install -EXPORT_SYMBOL_GPL vmlinux 0x4ff0a857 __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x4ff65da5 crypto_stats_kpp_set_secret -EXPORT_SYMBOL_GPL vmlinux 0x4ff8c3de blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0x4ffbbcd7 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x4ffced55 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x4fe8e262 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4fec26aa tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4ff6b12c generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x5023d37a ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x500e30e0 devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502b2b58 pm_generic_thaw -EXPORT_SYMBOL_GPL vmlinux 0x50359bab nf_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5066ba5e mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x50686075 edac_device_handle_ce_count -EXPORT_SYMBOL_GPL vmlinux 0x5076aec2 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x507ab13b pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x50843982 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5059c0f3 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x505cfc33 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x505fde9c mbox_bind_client +EXPORT_SYMBOL_GPL vmlinux 0x506803d4 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x507804ba group_cpus_evenly +EXPORT_SYMBOL_GPL vmlinux 0x5083c9b8 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x50843f16 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x5086a8ed ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x50881d57 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5088f1ea edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x50a04194 iomap_finish_ioends -EXPORT_SYMBOL_GPL vmlinux 0x50a33e52 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0x50a3a3b4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x5093e76e __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x50a4f1d1 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x50ac1543 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x50b59ad0 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x50bc0564 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x50bcd6bb fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0x50c88cd8 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x50d0a108 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x50c334ba regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x50d935b7 power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e014ce nvmem_del_cell_table EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50eacb73 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x50ee4b0c tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x50f2ee87 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x50f7a9b2 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x50eabb98 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x50ed3da9 __devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x50f00d7e xhci_find_slot_id_by_port EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x50fe3f02 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x5104ee95 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x51078822 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0x5108643a gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x510a9b79 mtk_clk_unregister_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x5110c318 iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x51166259 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0x5125b391 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x50fee505 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x51058518 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x510d8bbe devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x5117420c mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x511fb9b1 mtk_clk_unregister_pllfhs EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x513b3135 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x51464642 switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0x514825a1 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x51485102 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x514ec770 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5157757b fsl_mc_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x51643fdf fwnode_property_get_reference_args EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x518187c4 mtk_register_reset_controller_with_dev +EXPORT_SYMBOL_GPL vmlinux 0x516e2167 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x51745fb3 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5176d573 edac_pci_release_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x51972014 pin_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable -EXPORT_SYMBOL_GPL vmlinux 0x51a0800b usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x51969cdc pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x51a29c6d blkcg_root EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a64de0 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b66906 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x51d0830e paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x51d1eb96 cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x51dc824e encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x51ea2d47 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x51fc6cc0 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x51dc8d9b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x51e1ab28 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x51f30ed5 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x51ff063f espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x5201a412 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x520332e4 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x521b1de3 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x521b96e4 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x521c04a6 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x52213722 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x522bc7a8 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x5227638b virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x522d99e9 make_vfsuid +EXPORT_SYMBOL_GPL vmlinux 0x522e3023 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x5237267e io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x523d5bd5 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x523eca36 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x524167fd devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x524e4608 tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x5261a8e1 ahci_platform_assert_rsts +EXPORT_SYMBOL_GPL vmlinux 0x5263000b mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x527b2c88 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x527ee12d k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0x527eff93 of_get_videomode -EXPORT_SYMBOL_GPL vmlinux 0x52a0d2ea sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0x52a31fcf gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0x52a59b31 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x527133f0 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x528ee476 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x5290e53a phylink_generic_validate EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52b600bb gfn_to_page_many_atomic EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cac7d0 i2c_acpi_find_adapter_by_handle EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d0e9b3 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x52d4dc2a dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52df3bd4 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x52e1b4ce devfreq_event_reset_event EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x53150d5c badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x532b788c srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x52f5b640 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x52f8fba6 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x52fadec0 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x52fba621 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x532599d7 dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x533a2ce8 regulator_set_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x5343dc7c pinctrl_count_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x53503272 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x533675e3 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x5343cc24 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x5349556a of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5357ce1a fsl_mc_allocate_irqs EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x5363dba2 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x53860fbc cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x538824ad driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x5373dd14 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x53853c0c pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x53859f6a kvm_io_bus_get_dev EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x53a578df led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x53a7fe83 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x5399ddb7 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x539b74e5 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x53a0fdaf uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x53a69cc0 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x53bc5c3b pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53cccfa2 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x53d64c07 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x53cea19a rz_mtu3_32bit_ch_write EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x54013188 power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0x54051486 unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x54176b5d platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x5419887f ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x5419d460 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x53da39a9 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x53e1d52a __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x53e4880e devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53f3dd53 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x53fcbe0d is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x541b109b blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x541bc99f ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541e7108 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x5425758d thermal_zone_bind_cooling_device -EXPORT_SYMBOL_GPL vmlinux 0x5434f056 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x5437467d iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x5441cf3a vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0x5446ee84 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x54393ca6 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x544b66b7 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x54552ba9 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x547cd218 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x547e193f ima_inode_hash -EXPORT_SYMBOL_GPL vmlinux 0x548345f8 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x547b3db4 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x54919175 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x549436b5 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x54960576 dma_max_mapping_size -EXPORT_SYMBOL_GPL vmlinux 0x5497de00 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x549a854f usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x54997c96 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54a58e1d sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x54a59792 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x54ba0bee tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x54c31fb1 pwm_request -EXPORT_SYMBOL_GPL vmlinux 0x54ced8ca udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x54d19638 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x54e685f3 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x54edb0af max8997_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x54fd85bb mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x54a40c8f phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x54b0b4f4 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x54c055ea device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x54d13dfe dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x54dc3817 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54ecce46 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x54f4a82f fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x550225e9 acpi_match_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0x55043ff5 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x550e09ab scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551a3a66 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x551a9392 xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0x552735dd __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x550f706b input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x551e6b1b device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x551f6292 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x552a2960 ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553d1fd2 ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0x553e55c2 ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x555000f4 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0x55676465 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x556a0d57 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x554487c1 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x5545dc16 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x554bb581 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x556c22ef gnttab_end_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55724e4c usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5570be32 mmc_cmdq_enable EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557d05ad cpufreq_disable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x558d9b15 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x5594a505 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x559c44c8 i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0x559f090c raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x55aa0be2 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0x55ab0952 sysfs_file_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x55ac1d77 rio_dev_put -EXPORT_SYMBOL_GPL vmlinux 0x55b42bef usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x55b9ce29 powercap_register_control_type -EXPORT_SYMBOL_GPL vmlinux 0x55c3f7ed mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x559a0eb3 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x559b4441 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x559c6b8d __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x55acb49b pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x55c46896 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x55c60fcc ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55d8c844 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x55cc9843 lwtunnel_encap_add_ops EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x55dcfb5e pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x55e2f54d dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55f62349 mtk_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x55f91bd7 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x55fb3889 dma_get_any_slave_channel EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x5616cee9 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x560e8240 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x561375bd tracepoint_probe_register_prio EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561db97f device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x5624f826 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status -EXPORT_SYMBOL_GPL vmlinux 0x563a42b9 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x5636c6d2 thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56450962 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x5650c7fa serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x56638f03 usb_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x56a288f9 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x56b26a0a __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x56c1ca1a tpm_tis_remove -EXPORT_SYMBOL_GPL vmlinux 0x56e31eca tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x5651c851 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x565f2212 vcap_tc_flower_handler_tcp_usage +EXPORT_SYMBOL_GPL vmlinux 0x5668632b vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x566ad7c1 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5673780a clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x568bb376 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x5699a966 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x56a3016e balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x56b485e3 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x56ce56ad dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x56d40b61 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56d77705 iommu_device_unlink EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56eaaa28 __traceiter_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x56f52eee sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x56ef15d0 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x56ef816a __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x56f26a7c bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x57114683 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x57126a71 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x5729e378 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x570e74f5 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5729d6d3 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x572e5145 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5737c832 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x5738700f dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x574cdd37 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0x574e475e vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x5751c756 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x57671726 relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL vmlinux 0x5776bbd5 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5777da97 l3mdev_ifindex_lookup_by_table_id EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x577e3347 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x577ffb53 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x579908a1 generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x579a0521 usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0x579db4f5 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x57a92469 mc_send_command -EXPORT_SYMBOL_GPL vmlinux 0x57bc46cd usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x57bea89e device_link_del -EXPORT_SYMBOL_GPL vmlinux 0x57bfe44b of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0x57d38273 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x57a59172 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x57ad8602 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x57b808a5 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x57b9be80 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x57c58e9b __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x57cb3c72 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x57cb3d55 devl_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57d84c5b regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase -EXPORT_SYMBOL_GPL vmlinux 0x57eadb98 xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0x57f40ea5 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57fa359f usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0x57fd9fdd mtk_clk_register_muxes -EXPORT_SYMBOL_GPL vmlinux 0x58002616 phy_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x5814dde7 cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x58193c5e __vfs_removexattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x581f2d52 devlink_port_linecard_set -EXPORT_SYMBOL_GPL vmlinux 0x5820a2c1 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x582589ff of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x580eda64 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x58278bd1 serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause -EXPORT_SYMBOL_GPL vmlinux 0x582d3663 mtk_free_clk_data EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58349b22 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x5834f6ff meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x583a4726 meson_clk_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x58418175 of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x584386cc __pm_runtime_idle -EXPORT_SYMBOL_GPL vmlinux 0x584f5e46 gpiochip_is_requested -EXPORT_SYMBOL_GPL vmlinux 0x58576ba2 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x583880dc devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x583a1c7a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x58523621 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x58557cb8 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x5862aad7 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x586a74f8 set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x5876ed70 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x5873bea7 pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x587b6d76 adp5520_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x5882dd90 __dev_fwnode_const -EXPORT_SYMBOL_GPL vmlinux 0x588528c4 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x58c268b4 ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x58d9be6b thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x5879b6f2 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x587d024d fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x58810069 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x5881c010 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x58846c51 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x58856ea1 mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x588bf235 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x58a3a3da extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x58ab9281 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x58acdf69 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x58ad5669 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x58b692a7 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x58d16f56 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x58d28f34 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x58d760df direct_write_fallback EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x58ddb5ec transport_configure_device EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58dfec80 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x58e1269b vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58e17734 devm_request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x58e1ad42 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x59235b5c __clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x5949cb92 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x58e2996e spi_transfer_cs_change_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x58e315f8 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x58f274f2 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x5939fd71 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x593ac537 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x594c7635 usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x5961c5df pse_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59689b7a pwm_set_chip_data -EXPORT_SYMBOL_GPL vmlinux 0x5970827b vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x5958defa bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x596e64d3 iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0x59707112 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598906eb pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x599d2769 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59a52473 mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x59addee2 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x59889c1c dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x598c0dee usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x59917db6 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x5992efbd disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x5994f80f dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x59956c22 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x59a7fa1d vcap_tc_flower_handler_ethaddr_usage +EXPORT_SYMBOL_GPL vmlinux 0x59ae27a7 debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b38898 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x59bbc313 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x59c06e66 of_prop_next_string EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59ca8594 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x59c45ae9 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x59c600bd xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x59c830e1 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x59d0f5ee edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x59d66ecc device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str -EXPORT_SYMBOL_GPL vmlinux 0x59f0a36e addrconf_prefix_rcv_add_addr EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b40c device_add EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x59fd5221 mtk_eint_set_debounce -EXPORT_SYMBOL_GPL vmlinux 0x5a01945b regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5a026cc2 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x59faa420 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x59feade0 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x5a00021d regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5a010de8 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5a0e663c gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x5a186df3 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0x5a18734d of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0x5a1cfc4b blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x5a23031e iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5a2b13dd vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0x5a434bb0 pinmux_generic_get_function_name -EXPORT_SYMBOL_GPL vmlinux 0x5a440a08 dev_pm_opp_is_turbo EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a4f97a2 mark_page_dirty_in_slot -EXPORT_SYMBOL_GPL vmlinux 0x5a50b3dc dax_add_host -EXPORT_SYMBOL_GPL vmlinux 0x5a617704 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x5a6a4b9b fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5a5c81c2 usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a81379e fsl_mc_obj_close -EXPORT_SYMBOL_GPL vmlinux 0x5a86f002 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5a878e1b dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x5a8b0e5f of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x5a8fe0b7 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x5a92191a amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a95fe2f meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x5aa56c19 extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware -EXPORT_SYMBOL_GPL vmlinux 0x5aab86a8 debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x5aafc2b2 crypto_mod_put EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5ab46b8b fsverity_verify_page -EXPORT_SYMBOL_GPL vmlinux 0x5ad01dbe xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0x5ad6114e clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x5ad8a7d5 msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0x5ad9e6d6 usb_acpi_power_manageable -EXPORT_SYMBOL_GPL vmlinux 0x5ae147fd pinmux_generic_get_function -EXPORT_SYMBOL_GPL vmlinux 0x5ae1cd03 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x5b109335 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0x5b1a5d31 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x5abb5bc9 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5abbf9fa pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x5ac0acaa pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x5ac7f658 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x5ac9dca9 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x5accabc0 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x5ad6aefa validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x5ada6bde folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x5add5099 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x5ae0bfbb __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x5ae0d37f dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5afc718f dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x5b0d6997 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5b1e836c fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b3afb15 synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x5b3f8d3b tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x5b4fbea2 dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x5b52827c sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x5b5fbb21 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x5b656977 bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment -EXPORT_SYMBOL_GPL vmlinux 0x5b7642f6 is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0x5b9371e6 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x5b476532 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x5b4a3e48 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b50af89 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5b570c4a lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x5b622241 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x5b83d7ab __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x5b884828 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5b887ddb regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5b8fe175 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b9add7d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x5ba93a4e iomap_release_folio EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bbe2707 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x5bc2b5aa regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x5bad30f3 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5bb02344 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5bc3983d usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel -EXPORT_SYMBOL_GPL vmlinux 0x5bcae6de __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdcf4fd regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5beba358 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5bf5003e led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x5bfc7b98 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x5c04036f tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str -EXPORT_SYMBOL_GPL vmlinux 0x5c0baa9d ata_scsi_slave_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c118bd0 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x5c12ba94 skb_mpls_pop -EXPORT_SYMBOL_GPL vmlinux 0x5c171001 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x5c1cd578 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x5c257c06 da9052_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x5c2e571d gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c405843 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL vmlinux 0x5c4a7745 syscon_regmap_lookup_by_phandle_optional -EXPORT_SYMBOL_GPL vmlinux 0x5c4d2ef9 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x5c5064bc xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x5c4282f7 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x5c5e2c6f scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x5c5e3321 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x5c75a8f7 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0x5c7b313e fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x5c6e358b pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c883326 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0x5c955415 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x5c9c70cd clk_hw_init_rate_request -EXPORT_SYMBOL_GPL vmlinux 0x5ca6bb42 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x5c86a1e2 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5c94f433 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5c96d117 device_create +EXPORT_SYMBOL_GPL vmlinux 0x5ca0609c __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cabc584 nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cc5cecd pci_hp_destroy EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5cd088f0 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x5cdfb0b1 dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x5ce34700 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ccdf0af kick_process EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5cf53ac7 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5cf96710 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up -EXPORT_SYMBOL_GPL vmlinux 0x5d0cd982 sampling_rate_store EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d35cd28 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x5d38e36a raw_abort -EXPORT_SYMBOL_GPL vmlinux 0x5d711601 dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0x5d71224d mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x5d36bac1 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x5d3745c1 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x5d471a61 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x5d53807e sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x5d780278 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5d85bb62 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x5d94b48a i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5da0dc7e ahci_platform_resume EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbe01f6 irq_domain_associate EXPORT_SYMBOL_GPL vmlinux 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL vmlinux 0x5dc72ba7 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x5dcc5da4 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x5dd31bcf clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x5dd93fdb genpd_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0x5de06d63 srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5debfcd9 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x5df06952 irq_domain_reset_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x5df0e01c ahci_ops -EXPORT_SYMBOL_GPL vmlinux 0x5df32e79 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x5df62c7a ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0x5df77018 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x5dfab70e device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x5dfc631e alloc_skb_for_msg -EXPORT_SYMBOL_GPL vmlinux 0x5e167896 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x5df436ea handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e040394 ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e4c8bd7 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x5e2090a1 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x5e245999 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x5e465524 mmc_prepare_busy_cmd EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e5e5c5a devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x5e54cfa5 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e558f6f pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5e55f5da pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5e5ad6c8 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x5e5d9408 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5e616569 balloon_page_enqueue EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size -EXPORT_SYMBOL_GPL vmlinux 0x5e7939f1 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e77dd52 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x5e7969a3 vfs_splice_read EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7c36c7 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x5e7e588f mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x5e79d092 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x5e7b3578 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e85c68a devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x5e8fadea phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5e904620 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x5e95c42e dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ea795e0 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x5ea8ed32 devl_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared -EXPORT_SYMBOL_GPL vmlinux 0x5eb18db6 pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x5ec3fa41 scsi_template_proc_dir -EXPORT_SYMBOL_GPL vmlinux 0x5ecc09c7 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5ec23c03 serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource -EXPORT_SYMBOL_GPL vmlinux 0x5edd7dde ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x5ecf33b9 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x5edc8aa4 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x5edecc44 pinctrl_generic_add_group EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5eea0cd1 perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0x5eea4ad8 mmput_async -EXPORT_SYMBOL_GPL vmlinux 0x5ef7e5e4 irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x5efce50a blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x5f0b47ba imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x5f065400 tpm_pcr_read EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource -EXPORT_SYMBOL_GPL vmlinux 0x5f25106e nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x5f26135f security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x5f2cc280 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5f4ba8a7 elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0x5f5065a6 register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0x5f62f1d5 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x5f6aff34 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x5f308fbf rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x5f3f913f devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x5f456fe3 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x5f45a0c8 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x5f51b563 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x5f567e05 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x5f58dad3 evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f6fa27b pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0x5f816820 divider_ro_round_rate_parent -EXPORT_SYMBOL_GPL vmlinux 0x5f886671 devm_pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x5f8acd5e __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set -EXPORT_SYMBOL_GPL vmlinux 0x5f95f4ee devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5fa019b4 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x5fa21904 tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5fa5d3e4 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5f8a979f acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x5f8e132b mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x5f8fbfc8 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x5f903537 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x5f92ffa2 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x5f95ee68 devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb3fece fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0x5fb43ca1 spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL vmlinux 0x5fb92b1e blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x5fbed116 i2c_adapter_depth -EXPORT_SYMBOL_GPL vmlinux 0x5fbfe04f nvdimm_region_delete -EXPORT_SYMBOL_GPL vmlinux 0x5fc6732c nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x5fd53300 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x5ffca3b1 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x5fbb1de5 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0x5fd00a21 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x5ff350e6 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x5ff752cd usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x5ff9cb93 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5ffab2fa dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x60160d38 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x6028318f of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x6029087a iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x60202e4b security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x6026c8c6 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x60274911 devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x603f339c addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x60419bdf device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60482d94 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0x605157ec gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x6048bd6f devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x605d4395 device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x605de897 ahci_start_fis_rx -EXPORT_SYMBOL_GPL vmlinux 0x605e6263 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x606129ea ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x60643180 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60643b89 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x60758aaf debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x6079b372 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x606f2018 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x60778f09 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x609a2207 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6097126c debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6097fd15 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x609cf4dc devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60ac299a __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x60a6e1aa __irq_resolve_mapping EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60ae6539 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x60bf36bd user_update -EXPORT_SYMBOL_GPL vmlinux 0x60d7eebf wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x60d7fa81 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x60bc24e2 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x60bc3c9b usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x60cf590a md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60d1b9a2 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x60d342da usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x60d9fbca ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x60de75df gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x60e20eb3 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x60e4fc67 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x60ea9175 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60f427a5 pinctrl_pm_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x60f86e7e rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0x60f8ca1b ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0x610148f0 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x61082492 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x60efe2df pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x6100013b irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6110b5e5 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x611bc338 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x6120a130 regcache_cache_only -EXPORT_SYMBOL_GPL vmlinux 0x6121e3e1 bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x6130a30d mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x6131b79d devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x61320871 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x613d51f5 pinctrl_force_default EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x614ca282 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x615f8794 devm_usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x61624d6e pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x616cd168 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x6152a23f __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x615dba54 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x616dfdc8 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x616f952b blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x6178c220 blk_crypto_evict_key EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x618af0ff cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x61885a64 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x618f94c3 iommu_fwspec_add_ids EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x619dd323 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x61ae543a vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full +EXPORT_SYMBOL_GPL vmlinux 0x61be5efc bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x61c1594c mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0x61d6ee26 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x61df047c ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x61f0ada3 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x61f1644b mas_find_range +EXPORT_SYMBOL_GPL vmlinux 0x61f16fe9 devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f7f417 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x61fa43aa psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x61fba6d1 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x61fd506d vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x61fdb0ae tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x6206c6df vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0x62018c70 vcap_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x6208591e bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x62179459 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x621d42ee usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x621f9a9a fsverity_ioctl_read_metadata EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x622e7301 __traceiter_xdp_exception -EXPORT_SYMBOL_GPL vmlinux 0x622f3fe8 serdev_device_write_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x623778bb mtk_eint_do_resume EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x623a6e64 __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0x624060f9 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x62497a35 devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x626097d5 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x628443a9 pinconf_generic_parse_dt_config -EXPORT_SYMBOL_GPL vmlinux 0x6284757e skb_clone_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x62849753 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x62871449 pinctrl_utils_add_map_mux -EXPORT_SYMBOL_GPL vmlinux 0x62945053 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x62a0faa5 devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x62b29882 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x6284009d spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6292abd2 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0x629ee54d ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x62a211fb gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x62a7c545 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x62abdfb8 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x62b3c9b5 fwnode_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62c5947f virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x62ca78d2 fwnode_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x62dc1667 fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0x62f9df40 phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x62fc53bd devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x62fe504e dma_async_device_channel_register -EXPORT_SYMBOL_GPL vmlinux 0x6301538c clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x6310db1a sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x6312e0c1 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x62c01ddf irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x62c046e9 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62f0c3c3 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x63000c02 onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x6302e3f0 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x63046575 regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x63157d34 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x6315a8b7 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x631b7cc7 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x63206ace pci_vpd_alloc -EXPORT_SYMBOL_GPL vmlinux 0x63371e14 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x6337eecb dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x63437b9b dev_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x6349fa43 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x632d00d1 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x6334aaf3 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x633cf58f tcp_plb_check_rehash +EXPORT_SYMBOL_GPL vmlinux 0x6342e768 ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x6356ea6a edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x63584c6f tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0x6377ad7f vcap_del_rule -EXPORT_SYMBOL_GPL vmlinux 0x63835f16 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x63971f19 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x634cdb4f kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x63502532 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x635083c1 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x636f3547 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x637328ae iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x6377254f crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0x6382fa6f gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6385f9d2 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x638b338f tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x638f3443 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x639e932c cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63cfe0e9 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x63db79b8 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x63c60f38 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x63c8c598 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x63d58784 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x63d91bd8 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x63ddb01c usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x63e50662 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63f2f18d rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x64207f10 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x63fc1f78 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6401ce94 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x640616f4 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x640f010e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x641df389 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x641e619a sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6420f2ba usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x6440f283 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x6447d67b of_thermal_get_ntrips -EXPORT_SYMBOL_GPL vmlinux 0x645314dc usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0x6455def2 rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64645045 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x64679a15 regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x6468c5e2 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x6468cbc8 proc_create_net_data -EXPORT_SYMBOL_GPL vmlinux 0x646b9e61 generic_handle_domain_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x645f50e9 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6489fc0c ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x64880452 usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x64a1a5ce phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL vmlinux 0x649373fc led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x64940ccd usb_string +EXPORT_SYMBOL_GPL vmlinux 0x64990bd8 dev_pm_opp_enable EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64a81f11 devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x64b36d09 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x64d634ed __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x64d6b5e3 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x64a91f1e ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x64ba75a8 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x64c87fa2 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x64d51ae6 __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64eb36e6 pstore_register EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x64fe0cd1 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x64f8a2ff dsa_stubs +EXPORT_SYMBOL_GPL vmlinux 0x64fba2b4 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x64ffd734 acpi_dev_get_memory_resources EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x6502f4e4 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0x651ad081 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x65149847 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x6518d395 mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x652afb4a fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x6520bf33 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x65244ea5 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x652afa7f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x652fe2a8 ftrace_ops_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x6535a0c3 pci_epc_write_header -EXPORT_SYMBOL_GPL vmlinux 0x6542e68d gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x65498574 tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x65516be7 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x6535fd93 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x654337d7 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x65441f8d of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x6545d668 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x6551b58a tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x65601c51 thermal_add_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x6579681c reset_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x657e506f led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x6588551f pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x658d8b12 pci_epf_remove_vepf -EXPORT_SYMBOL_GPL vmlinux 0x658fcd34 ipv6_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x6596a579 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x65ac6153 user_read +EXPORT_SYMBOL_GPL vmlinux 0x6560410c crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6568e11b xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x6568f158 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x656ae432 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x6570f6f9 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x65894ab3 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x659abf9a led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x659d9d1f of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x65a59402 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x65c66b8f unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65d77291 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x65ccc391 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x65d2bf5c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x65d511de trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65e27a46 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0x65e8dcf7 mtk_pinconf_bias_disable_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x65fad878 __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0x65ffb342 ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x660777b6 bpf_event_output -EXPORT_SYMBOL_GPL vmlinux 0x660d6264 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x660f293b md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x661083bd crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x65eddd50 fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0x660451bd usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x660dd65a spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x661638e7 __xenbus_register_frontend -EXPORT_SYMBOL_GPL vmlinux 0x6630abf3 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x662e9d9a irq_domain_translate_onecell EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x664a7495 tcp_twsk_destructor EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma -EXPORT_SYMBOL_GPL vmlinux 0x6659e200 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x665a85bc switchdev_handle_fdb_event_to_device EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x666d2e0f debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x666f997e ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x66825062 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x66725af2 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x667820a0 clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6684ad13 fuse_request_end -EXPORT_SYMBOL_GPL vmlinux 0x66abc08c wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x66a113fc dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x66b2fc08 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x66b4177d add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66c06b95 __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x66c2bc0b vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x66c51c37 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0x66c60245 dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x66c7ccec devm_add_action EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e61f6d page_endio +EXPORT_SYMBOL_GPL vmlinux 0x66dfdfb0 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes -EXPORT_SYMBOL_GPL vmlinux 0x66eb6c04 clk_hw_get_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x66ee9051 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x67044561 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x66f2aa6c devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x66f76140 clk_regmap_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices -EXPORT_SYMBOL_GPL vmlinux 0x670cd11c fib_nh_common_release -EXPORT_SYMBOL_GPL vmlinux 0x6720f6ac get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x67254656 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x671daaab rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x672b9fbc kvm_destroy_vcpus EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673a630f usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x673ed5d4 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x67479808 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x674ff8ea dev_pm_opp_get_max_clock_latency -EXPORT_SYMBOL_GPL vmlinux 0x67539a42 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6754e714 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x67607a23 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x674a8640 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x67514e58 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x6758db05 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x676593b4 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x67676fa5 power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x676e37d2 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x676f544a rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x677e27c2 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x676e72ff register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x6779db48 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x677c69f1 make_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6780c340 vcap_keyset_list_add -EXPORT_SYMBOL_GPL vmlinux 0x678ab383 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6790e6cd device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a3c6fb dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x67ac9441 gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x67b6a339 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x679c26fd pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x67c39770 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67cb155c bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x67d62887 serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x67d7609f pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x67d8e1e4 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x67cace94 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x67cad391 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x67cdcc43 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x67ceda04 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67f35c55 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x67f7df4d irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0x67f8f210 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x67feb295 ip_icmp_error_rfc4884 -EXPORT_SYMBOL_GPL vmlinux 0x6807769c io_uring_cmd_complete_in_task -EXPORT_SYMBOL_GPL vmlinux 0x6807ee63 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x681ae2af dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x67daaf06 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x67dc68fc devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x67e46008 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x67f40ced dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x67f6b7f4 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x67f76ada bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x68076792 rio_route_get_entry EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x6847bb2a fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x684bd46b dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x6849e586 of_devfreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x6867d17b init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x6886ab2f dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0x68887339 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x688ec598 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x68922078 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x68923600 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x685a5eef spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x68660643 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x686a6236 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x686dcc00 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x68727ccf devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x687f8e2a device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x688967c5 pm_generic_restore_early EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x6894cf6a dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x68980d1d ahci_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x68a06c63 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x68a297af nd_region_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x68a338ea phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68a61c3f pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x68b0ef37 tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0x68b1f8b0 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x68b2b068 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x68b2fd80 uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0x68cc12a1 spi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x68ce13b7 clk_hw_is_prepared -EXPORT_SYMBOL_GPL vmlinux 0x68d3a3f3 sata_link_debounce -EXPORT_SYMBOL_GPL vmlinux 0x68d6820d extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x68dab26f xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0x68de7ef9 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x68e09540 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0x68fa0c16 pci_ims_alloc_irq -EXPORT_SYMBOL_GPL vmlinux 0x6902840b virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x68ad598d serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x68b0311a nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x68b2a69e wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x68c105db shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x68c610bc disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x68db7e72 cdx_device_add +EXPORT_SYMBOL_GPL vmlinux 0x68ee0568 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x6900686f vcap_find_actionfield EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6912f0ce rio_add_net -EXPORT_SYMBOL_GPL vmlinux 0x6920269b tracing_snapshot_cond -EXPORT_SYMBOL_GPL vmlinux 0x692b94f5 __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x69465f0d fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x695657ba task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x69146f50 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x69179d24 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter +EXPORT_SYMBOL_GPL vmlinux 0x694f7e43 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x695764ff spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x695776c5 seq_buf_do_printk +EXPORT_SYMBOL_GPL vmlinux 0x695d4007 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init -EXPORT_SYMBOL_GPL vmlinux 0x697c5367 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69842dd8 of_get_regulator_init_data -EXPORT_SYMBOL_GPL vmlinux 0x698489d1 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x6985dbe3 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x698232a9 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config -EXPORT_SYMBOL_GPL vmlinux 0x69975ab2 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x699da38a led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0x69b11a7f da903x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x69bdd101 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x69c68a63 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6991b252 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x69b432a4 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x69bea316 genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0x69c0b66a fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x69cec765 br_fdb_test_addr_hook EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr -EXPORT_SYMBOL_GPL vmlinux 0x69d84426 strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0x69e30b65 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x69d341c0 gnttab_unmap_refs_async EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69f7270d sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x69fcd19c tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a06b587 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x6a08a25c aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x6a093659 tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x6a148acd pwm_free EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a157e1b cdrom_read_tocentry -EXPORT_SYMBOL_GPL vmlinux 0x6a176c3b devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x6a1773ee virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0x6a3aa281 usb_phy_roothub_resume -EXPORT_SYMBOL_GPL vmlinux 0x6a40a47e tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x6a30224d ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x6a39ebb6 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x6a3e1833 pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a58d822 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x6a5f7a6d rockchip_clk_register_branches -EXPORT_SYMBOL_GPL vmlinux 0x6a705408 gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x6a7216b5 clean_acked_data_disable -EXPORT_SYMBOL_GPL vmlinux 0x6a83657c dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x6a5ad4d3 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x6a648443 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x6a77fdf4 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x6a7e8400 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x6a8299a6 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a85cbf5 rockchip_register_softrst_lut EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function -EXPORT_SYMBOL_GPL vmlinux 0x6a962bd7 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x6a9ec20e dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab19b02 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x6ab446dd nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x6ab48c5f serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x6abd2872 ahci_kick_engine -EXPORT_SYMBOL_GPL vmlinux 0x6abfad16 edac_device_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6ad5b9d4 ahci_platform_init_host -EXPORT_SYMBOL_GPL vmlinux 0x6ad9b664 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x6af35459 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x6af9b1f1 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x6b0185b3 pm_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6b0b8dde clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x6ad1f048 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x6aed2016 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x6afd696d wm831x_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b20f709 ata_sas_slave_configure -EXPORT_SYMBOL_GPL vmlinux 0x6b26edb2 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x6b0e707e dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x6b0f750c unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6b23f78f fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3c5bf7 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b3eaefd __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version -EXPORT_SYMBOL_GPL vmlinux 0x6b4069a1 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x6b40d9a4 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b56f63b pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x6b6f2790 split_page -EXPORT_SYMBOL_GPL vmlinux 0x6b6f5b63 mtk_mux_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0x6b78da78 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b5b85fc gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x6b5f6241 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x6b65f1dd vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x6b660d2b dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x6b6a47af genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x6b7f7cf6 kthread_cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b89005b fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x6b8b85a8 l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0x6b914684 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x6b93f533 device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x6b970981 hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x6b9a0cc9 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6b856561 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x6b945229 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x6b9799b1 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x6b9861da spi_new_device EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6bb7e563 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bbdd3cd pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6bc54eca __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save -EXPORT_SYMBOL_GPL vmlinux 0x6bd90dd1 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x6bdab280 spi_get_next_queued_message -EXPORT_SYMBOL_GPL vmlinux 0x6bdb6b86 dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be3b99e evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x6be48733 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x6bf90138 irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0x6c03d992 spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0x6c0d513b __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x6c04bc2b regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x6c05f167 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c0770bf usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x6c08a06b bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x6c0d32b6 devm_ti_sci_get_handle EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c22ca6f fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x6c2738ea platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x6c25068f devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x6c348fda scmi_requested_devices_nh EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3a61f2 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c3ae58a tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x6c3d281f relay_late_setup_files EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c404c3d phy_put -EXPORT_SYMBOL_GPL vmlinux 0x6c49a83c i2c_acpi_find_bus_speed EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c55fd30 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5e8a05 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c837666 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6c8ac2df of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x6c8d1f88 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x6c9440fc wm8350_clear_bits EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6ca694c2 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x6ca83c88 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cb73c39 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6cc2d260 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x6cd3327b rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x6cde883e ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6cbd3399 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6cc32885 phy_pm_runtime_put_sync EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x6ce4e295 pci_epf_type_add_cfs -EXPORT_SYMBOL_GPL vmlinux 0x6ceb613e ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x6ce32eb5 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0x6ce506d2 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x6cfab41a xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0x6cfad7e6 fsl_mc_obj_close EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x6d0897bf __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d259d20 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x6d0bcfb1 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x6d16d36c shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d3947d4 handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x6d3b3afd debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x6d402d7e zone_device_page_init +EXPORT_SYMBOL_GPL vmlinux 0x6d30e4df tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x6d3b7438 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6d3d0fde dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x6d3d3442 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x6d3ed087 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6d419c13 pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit -EXPORT_SYMBOL_GPL vmlinux 0x6d46d3a7 irq_chip_mask_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x6d518efa devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x6d52b515 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x6d6c812f fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x6d4c2fd4 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6d58b3f9 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x6d6ec094 bio_split_rw EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7c6e90 class_dev_iter_next EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d8ab781 edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x6d96931e irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x6daac182 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0x6db58518 wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x6db82d37 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x6dba2a1c sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6da11395 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x6da9ca52 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x6db9c029 io_uring_cmd_do_in_task_lazy EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dc63858 pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x6dcc182e of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x6dc317b4 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x6dce06d2 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x6dd51691 spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6de380eb dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x6de5af91 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x6df08a03 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6de12a73 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x6df0cb2a input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6df395fb devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6df668b0 ma35d1_reg_adc_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x6df852be cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x6dfd9fa7 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6e080580 of_i2c_get_board_info EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e0cb893 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x6e22a7ad device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6e26848f fuse_request_end EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e46f8b2 of_fdt_unflatten_tree EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e4f8774 fat_scan -EXPORT_SYMBOL_GPL vmlinux 0x6e56bd7a gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x6e63251f smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x6e6a125a phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0x6e7521b4 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6e5fbfa9 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x6e654969 devm_of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id -EXPORT_SYMBOL_GPL vmlinux 0x6e7a78a9 usb_free_coherent -EXPORT_SYMBOL_GPL vmlinux 0x6e87388a irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e861e69 usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x6e921260 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x6ead83c6 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6eb58658 class_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ebf6491 debugfs_create_file_unsafe -EXPORT_SYMBOL_GPL vmlinux 0x6ec13031 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x6ed64c7c pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x6edae888 timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0x6ee7043e tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x6eea73e0 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x6ecec737 __rio_local_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f013d5e tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x6f01bc50 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6f0feb73 fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6f190cda __blk_req_zone_write_unlock EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f3cad00 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x6f3f5958 iommu_group_get -EXPORT_SYMBOL_GPL vmlinux 0x6f467a28 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x6f48c506 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x6f4ddfeb of_pci_get_devfn -EXPORT_SYMBOL_GPL vmlinux 0x6f52fe4f wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x6f5777c3 pcim_doe_create_mb -EXPORT_SYMBOL_GPL vmlinux 0x6f659c3e mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x6f67cb36 account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x6f6892ce inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6f2eeea0 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f3bec26 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6f40a43c iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x6f49a203 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f6c275b crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0x6f6f8a98 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6f718b52 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f79a052 sdio_f0_writeb EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f819b22 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f85abd6 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x6f8901a1 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x6f8997f0 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6f98e3ad iommu_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa1e655 regmap_might_sleep EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fb0f3fd devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x6fa52529 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6fb19d95 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x6fb9d3b8 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6fbfa4e4 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd6cde2 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6fd89e6b meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x6fefc34f thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ffb227c devm_ti_sci_get_handle EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions -EXPORT_SYMBOL_GPL vmlinux 0x700e8f97 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x701e028d devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x70325780 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x70079d69 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x701635b9 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x7025379a pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7034db1c ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x70364abf __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config -EXPORT_SYMBOL_GPL vmlinux 0x70645c44 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x704c4581 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x704c7b62 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x705571b8 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x7063bfb6 hid_bpf_disconnect_device +EXPORT_SYMBOL_GPL vmlinux 0x70664beb crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x7066a37b pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x706c1da5 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x706e47d6 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x70727b0d badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x707e370c tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x7080637f __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x70863f9d mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x70867e5c input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x70882f64 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0x708a33f8 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x708ce97f acpi_dev_ready_for_enumeration -EXPORT_SYMBOL_GPL vmlinux 0x7093cd5f bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x709d6c14 pci_epf_alloc_space -EXPORT_SYMBOL_GPL vmlinux 0x70a1cae6 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x70bc66f1 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x70770023 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7077d45b devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7077e0a9 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x707e557d device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x708b4334 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x708e12ac vcap_tc_flower_handler_cvlan_usage +EXPORT_SYMBOL_GPL vmlinux 0x708e68ab dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x70b71f45 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x70b74c19 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c41d8b of_alias_get_id EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d44ebd rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x70de7b37 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x70ef6023 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x70f10bf6 vp_modern_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x71007f1d crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7107f3cf pci_load_saved_state EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x710f53b3 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x71188f34 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x7116f10f i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x71207451 acpi_dev_resource_io EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712b09a0 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x713956d7 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x713b5372 dst_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x713075d9 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x7143332a phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x714672ff dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x7146d909 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x7148402c fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x714fc2ef locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716e28b4 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x716b0230 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x716f904c led_put +EXPORT_SYMBOL_GPL vmlinux 0x717205e3 of_regulator_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x717289dd ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x717903a5 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x717a69d2 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x71946617 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x718bce6b serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x718c880d devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7192f6f6 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x7193ef0b acpi_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire -EXPORT_SYMBOL_GPL vmlinux 0x71aa6374 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x71b57444 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x71a79211 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x71b12cd3 elv_register EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71d05192 call_switchdev_blocking_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x71d600a9 dm_get_md -EXPORT_SYMBOL_GPL vmlinux 0x71d85584 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0x71df5301 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0x71e641d9 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0x71fa9fe1 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x720189b0 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x72379888 gpiochip_find -EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x725614b7 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x71c2f39e pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x71c4ef9b dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x71c51361 fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x71d090a6 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x71dc65f2 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x72014eb6 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x720cf6bb devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x720d03f5 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7231af02 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x723e716e pci_dev_trylock EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum -EXPORT_SYMBOL_GPL vmlinux 0x726e311a sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x726f9792 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x72672800 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x72695fdd __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x726f8eb7 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x72704cdc inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727d1f66 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7280cc49 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x728316c6 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7286d1de perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0x72946be9 phy_get -EXPORT_SYMBOL_GPL vmlinux 0x729aee4f devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x7288bf85 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7295f695 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x72a76b92 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode -EXPORT_SYMBOL_GPL vmlinux 0x72c5354c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x72b713a3 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x72c4d4f4 fib6_check_nexthop EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d8dd32 addrconf_add_linklocal -EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x7301fda0 fscrypt_file_open -EXPORT_SYMBOL_GPL vmlinux 0x731bcb2f vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0x7327664d irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x72d2e379 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x72db19cc devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72e237b5 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x72e7edcd clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x7303be0d wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x730a37ff pci_doe +EXPORT_SYMBOL_GPL vmlinux 0x7325a4aa device_move EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x7331a86c clk_hw_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0x73577187 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x7361ed75 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7362a661 iommu_present -EXPORT_SYMBOL_GPL vmlinux 0x736917f4 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x736e5e84 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x73288b7e pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x734a4472 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x734d0919 mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x73862703 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x73924d18 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x7397fa8e mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x7399b4db crypto_akcipher_sync_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x739adc1d msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73ab01a6 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x73b17e7f __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0x73bd2953 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x73b0376d gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x73bb8bb0 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x73bd5151 fscrypt_context_for_new_inode EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c2b5e0 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x73c6805c irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73d5e684 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x73d7e9ba dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0x73df5d11 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x73e4edb8 phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x73f2f80a blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x740e3e25 pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0x74239780 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x73cd965c usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x73ed2bb1 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x73edafa9 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7402b104 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x741ae5af make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x74219f0e dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x742c7234 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x742dd10e device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x743953d2 component_del EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x7441a8d9 devm_tegra_memory_controller_get EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x744ec847 vp_legacy_set_features -EXPORT_SYMBOL_GPL vmlinux 0x74574852 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x7463f0ce lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x747b29a7 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x74813d64 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x7485204a dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x748fcfad scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x7448d5c3 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x744cd5c1 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x745bc7ad __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x74618503 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x746b1208 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x746ed2b3 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x746f3df9 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x74719542 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x7479ce77 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x7497ed0a pci_msix_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x749fca2f cpci_hp_unregister_bus EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74a556af device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x74a80987 acpi_bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b9d1be usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bf0cad vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x74be275b acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block +EXPORT_SYMBOL_GPL vmlinux 0x74c04138 of_usb_update_otg_caps EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint -EXPORT_SYMBOL_GPL vmlinux 0x74ca04fa decrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x74d2f6a4 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74d7c303 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74f25d9e nvmem_device_cell_read -EXPORT_SYMBOL_GPL vmlinux 0x7503e8ee fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x74fbe78f wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x75004704 devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x75062404 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x7508c601 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x7533641b sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x7534596b mtk_mutex_write_sof -EXPORT_SYMBOL_GPL vmlinux 0x753bb7bc divider_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x75434088 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x75453b83 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x754aff76 rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x754df1d2 of_mm_gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x755835fc sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x755c12a1 nvdimm_name -EXPORT_SYMBOL_GPL vmlinux 0x756f7101 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x753f3ede debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x754b914f hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75576f8d pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x75578fc7 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x755bb7b6 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x75787ad7 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x75795e12 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu -EXPORT_SYMBOL_GPL vmlinux 0x75896ec9 i2c_acpi_new_device_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x758f87c8 power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7594f5d7 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x759a7f48 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x75b01f32 devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x75bd2047 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0x75be2735 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0x75be843e ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x75d97549 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key +EXPORT_SYMBOL_GPL vmlinux 0x75b7e9f1 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x75bf413e fuse_direct_io EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75dff8f8 mtk_pinconf_bias_disable_get_rev1 EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e65b46 mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75ec0bfd tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x75efff5c __class_create -EXPORT_SYMBOL_GPL vmlinux 0x75f9b4bf ehci_handshake EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x7609df6f elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x760d7f64 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x760f8095 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x7612c978 gpiochip_disable_irq -EXPORT_SYMBOL_GPL vmlinux 0x7627f8e7 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x762f6644 vcap_lookup_rule_by_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7632a2f6 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x763b584a regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x763f54ea dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0x764ba923 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x764dd53c mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x7613f77d usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x763e92e3 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x763fbe12 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x764b3525 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x764e750d kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0x76517f4c usb_role_switch_register EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x76579805 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x76630322 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76595418 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x76599937 get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7671d80f netdev_walk_all_upper_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x7673f4a3 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x7675ac1c pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x767dac0e kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x7672fcc2 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x7679c10f rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x76867299 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x768b09ee spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7683c0f5 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x76872fce efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x769226a8 user_read EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x769f216c devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x76a2aff5 gpiochip_request_own_desc -EXPORT_SYMBOL_GPL vmlinux 0x76a67254 crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0x76a9c19d gpiod_to_chip -EXPORT_SYMBOL_GPL vmlinux 0x76b36bc2 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x769dc342 folio_test_hugetlb +EXPORT_SYMBOL_GPL vmlinux 0x76a62fa4 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x76a9bf81 rt288x_setup EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 -EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x76d8e962 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x76d93ff0 iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76e9a4c0 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x770b715e pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x76f73f3a dma_resv_iter_first EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x771859ae __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x773351a1 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x773cae2b pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x77420552 regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x775184cf of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x774e00b7 ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x775d4ee8 iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x775f6905 kvm_release_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0x777c74f3 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x777d18e4 xenbus_match -EXPORT_SYMBOL_GPL vmlinux 0x77817fc6 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x775c93a3 __fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x77645902 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x776a01ea pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x777fd028 md_start +EXPORT_SYMBOL_GPL vmlinux 0x7782e414 devm_otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7793bd29 blk_stat_enable_accounting EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 -EXPORT_SYMBOL_GPL vmlinux 0x7798e4c7 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77bfcc1a blk_queue_zone_write_granularity -EXPORT_SYMBOL_GPL vmlinux 0x77c13f53 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x77c43614 perf_event_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0x77d266d3 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x77e4f1d1 ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0x77e5b2eb wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x77be3989 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x77bfafb9 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x77bfed6d mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x77e72625 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77e77bb5 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x77e80cce devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x77e8f134 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77ee33dc sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x77f3088b iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x7830ebc1 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x783fb995 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x77f52f0e metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x77fa4d4f of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x77feff6a ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x77ff80d3 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x78059ebb netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x7806777c acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x78211dc1 icc_node_create EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x78523da7 gnttab_pages_clear_private EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x786a8c27 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x786c8701 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x7871ed12 usb_sg_cancel -EXPORT_SYMBOL_GPL vmlinux 0x787c522c dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x785b7e96 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x786063eb hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x7863c920 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x786bca15 usb_set_wireless_status EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7889f763 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789b1021 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a5ca43 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x78c1a60c ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x78c23f7a tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0x78cbcbd6 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x78a18d21 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x78a8bed6 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x78b69b21 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x78ba70f3 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x78ca2c1a sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x78d8b85d security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78ea1103 register_btf_fmodret_id_set -EXPORT_SYMBOL_GPL vmlinux 0x78f49ee1 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7903458b gpiod_set_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x7906484b serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x78e0f96d fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x78f1b79e fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x78fafbea msg_zerocopy_put_abort EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x79104847 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x790c7b03 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x79154b77 __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x79226819 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7931189b device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x7940e0e7 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x793ec5ea vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off -EXPORT_SYMBOL_GPL vmlinux 0x7946854e regulator_set_suspend_voltage -EXPORT_SYMBOL_GPL vmlinux 0x79469027 fat_detach EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x796bcb4b __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x797c5bd9 iommu_report_device_fault -EXPORT_SYMBOL_GPL vmlinux 0x79829583 mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x796ce908 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7975112c tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7980e905 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7981ee90 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x79854d1a platform_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x7994c334 of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x79a390bb sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0x79b31418 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7991b1ad acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x799f8b27 crypto_sig_verify +EXPORT_SYMBOL_GPL vmlinux 0x79aae9e1 vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0x79b2eebc __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x79b42ed1 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x79bb0658 raw_unhash_sk EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79c78c4b start_poll_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x79d04667 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x79da90e3 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x79dbf770 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x79dea216 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x79c04dca i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x79c6d4e6 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x79ce96ae lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x79cf310c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x79d005b4 devm_pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e9a715 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x79f026e2 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x79ea3117 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x7a24269a tcp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x7a26d3f0 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x79ff37cf tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x79ffa273 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x7a1624b4 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x7a2d3b94 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7a2fac70 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7a30eb7e hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7a34e9aa devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a5fe98e fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x7a629c83 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x7a72869e scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7a44eb14 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x7a59cdf6 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x7a5d59bb spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7a5eb5c0 bgpio_init EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a8ba85b __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x7a971806 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7a84d387 rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aad8392 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x7aaa0874 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7aacf084 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x7ab35733 regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac18140 tegra_bpmp_mrq_is_supported EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ac86948 dw_pcie_ep_reset_bar EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag -EXPORT_SYMBOL_GPL vmlinux 0x7ad08290 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x7ae75d56 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x7aef5dee sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x7af7191d blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b171660 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x7b29d765 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x7b3cd1d7 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x7b01fbbd device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7b020da6 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x7b03f52d gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7b2dee5f virtio_max_dma_size EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x7b566143 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x7b557a75 ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5f6c3e devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7b634216 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7b6e1cf0 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b726840 adp5520_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7b77be6e pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x7b84a8b4 pci_ims_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x7b863991 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7b7d1e11 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x7b874200 devm_gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b8cc076 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b98cd5d pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7b9c0a2f virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x7ba23ace debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x7ba6d7dc kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7ba7e31e ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x7bae4650 crypto_register_templates EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x7bb0ec2c thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0x7bcc422b usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0x7bd34137 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x7be46eb9 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7bfcb671 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x7c05ea15 of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x7c0ebb0c ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x7c0f8126 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0x7c13ac51 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x7c279e96 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x7bb37e69 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0x7bb8d650 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x7bc20cf8 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x7bd30aac perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7be4ea9a perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x7bed277f pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x7befb2c0 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x7c063fe3 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x7c0f2925 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x7c0f524a pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7c16e5c3 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7c272acc sk_msg_clone EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2d4c54 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x7c3d5ce8 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x7c343f91 mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c59fec2 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x7c5a255a pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator -EXPORT_SYMBOL_GPL vmlinux 0x7c755793 of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0x7c805513 badblocks_show -EXPORT_SYMBOL_GPL vmlinux 0x7c8f8e9c phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x7c418ffb debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7c428192 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7c533fad page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x7c5a66e4 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x7c5b25e4 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x7c806d64 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7c8965fb crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x7c8f9d32 udp_cmsg_send EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7c9d5418 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7caef4f6 ata_eh_freeze_port EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cb23cc7 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7cb2ea15 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor -EXPORT_SYMBOL_GPL vmlinux 0x7cc9aed8 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7cc84d98 from_vfsgid +EXPORT_SYMBOL_GPL vmlinux 0x7cce902d __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd556e5 fib6_rule_default EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7cdcb494 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x7ce503ab crypto_stats_kpp_generate_public_key -EXPORT_SYMBOL_GPL vmlinux 0x7ce91996 iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf63e5f sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x7cf6e7f5 firmware_kobj EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x7d0c3c05 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x7d0de135 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x7d0e7c63 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x7d0f6b42 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x7d13f435 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d1f496d fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x7d33c386 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x7d31a117 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7d40b849 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d505f22 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0x7d55b77e regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x7d4fd595 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d57210a balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6886cd rio_mport_initialize -EXPORT_SYMBOL_GPL vmlinux 0x7d6afd86 of_device_compatible_match -EXPORT_SYMBOL_GPL vmlinux 0x7d6ccdfe pci_bridge_secondary_bus_reset -EXPORT_SYMBOL_GPL vmlinux 0x7d7182b1 of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x7d772be5 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x7d810ff6 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x7d83fb37 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x7d8bbd7b xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x7db58d82 synth_event_add_next_val -EXPORT_SYMBOL_GPL vmlinux 0x7dbc1de8 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x7dc1bcfa ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d88065a acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7d8bb9b3 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x7da06cbe inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x7da90d90 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x7dc4a196 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7dd7e54f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7dd7f8c6 clk_hw_determine_rate_no_reparent EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddced1c crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7e00a5a9 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x7e0b054d onboard_hub_create_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x7e11ee26 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x7e167c71 gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0x7e1e8c56 query_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x7e327e96 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x7df0958b sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x7dfb6f02 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7e092f35 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x7e098f83 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7e399835 tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e506b33 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7e5765e4 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e60ee18 pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e6abee6 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x7e6f7765 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x7e70f399 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x7e74b5c9 switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7b0de2 get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e85f92a vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x7e810c40 tty_init_termios EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e92ece0 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark -EXPORT_SYMBOL_GPL vmlinux 0x7eb0e4a2 add_swap_extent -EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain -EXPORT_SYMBOL_GPL vmlinux 0x7eb67b36 battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7ec160fa ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0x7ed10d08 rio_mport_chk_dev_access -EXPORT_SYMBOL_GPL vmlinux 0x7ed340df pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x7ee15756 gpiochip_line_is_open_source -EXPORT_SYMBOL_GPL vmlinux 0x7ee3b520 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7eea4bec acpi_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7ef5ef55 gpiochip_enable_irq -EXPORT_SYMBOL_GPL vmlinux 0x7ef6bb81 __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x7f214a77 is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x7f2ca260 fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x7f3c73bd regulator_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x7f536ea9 devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x7f5421df xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x7f67fef9 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x7ef54fa0 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x7ef7bcf0 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7efa11f3 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7eff35c8 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7f0da25f tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x7f197baf perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x7f2186b5 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x7f48205b mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7214aa iommu_domain_free EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x7f7e57b1 mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7f8f4697 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7f8839d6 i2c_acpi_get_i2c_resource EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7f9c335b i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fa393e9 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fa49d9c bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fae56f2 __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x7fbb054f pinctrl_utils_free_map -EXPORT_SYMBOL_GPL vmlinux 0x7fd4d60d fsl_mc_cleanup_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x7fe09d29 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x7fe7fca4 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fad5671 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x7fc5db60 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x7fcc869b wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x7fd0ebf0 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x7fde1b1e rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x7fe8f201 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fee0c91 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x8008d95a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x80120529 dma_pci_p2pdma_supported EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x802051dd watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x80210ac2 mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x802ecf90 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x803236a8 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8029c166 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x802e77cc usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x803e7fbc devm_thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0x80472bf2 usb_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x806a00e9 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x806aac32 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x80737204 pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8076f237 xenbus_setup_ring -EXPORT_SYMBOL_GPL vmlinux 0x807703e9 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x805bf1e7 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807b2fdb fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x8080bb51 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x808e03e6 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x80962517 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x809dd3a3 wm831x_auxadc_read_uv EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80ae7283 vcap_get_rule -EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x80c52081 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x80aaa1a1 xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x80be7b56 vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x80c60737 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80d1a9e1 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x80c6e772 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x80cfb0ac vring_create_virtqueue_dma +EXPORT_SYMBOL_GPL vmlinux 0x80d1e6ca dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll -EXPORT_SYMBOL_GPL vmlinux 0x80d597d0 pci_host_common_probe EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80d84c58 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x80d98abe skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x80e73398 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x80e88177 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x80eec14c pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0x80f26927 udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0x80f68ec0 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x8110a4ad of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x80fb22fd pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x81065329 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x81088a7c fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x810c52a3 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x810db347 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x810ec18f fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x810fb934 inet_csk_route_req EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full +EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x81378f51 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x81386f3b icc_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x813e194c gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x81430432 phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x8143a7d2 tun_get_tx_ring -EXPORT_SYMBOL_GPL vmlinux 0x8149a1a6 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x8127397f ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x812e74c7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x813b2a97 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8153f424 shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8157b2a4 __reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x815b50f6 da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x81603372 ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x8169fbcb pci_slots_kset EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817b4179 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence -EXPORT_SYMBOL_GPL vmlinux 0x818f3ed1 dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x8190dc83 of_get_display_timing -EXPORT_SYMBOL_GPL vmlinux 0x81966f49 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x8188236f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x818df8ad handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x818e41a9 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x81984da0 led_get_default_pattern EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x819ea4b8 register_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81bd1664 vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x81cc5b45 __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81aa8cb8 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x81b20c5d bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x81b21938 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x81c0a9d7 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x81dd508c fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81e57018 acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x81e5fd2b ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x81f165bc irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x81e79354 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x81ebc912 dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x81ed37cd rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x81f07c71 of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81f73b46 clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x820413d3 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x81fdac1e mtk_clk_gate_ops_no_setclr EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x82195c13 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x820d1c40 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x82146799 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x8217457f devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x82246558 of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x82318412 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0x823c95d2 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x822c0dc4 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x8230dd76 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x8236ade3 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x82399a80 fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x823f122a fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x8246b531 kthread_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x8246de1b devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x8259ae3c perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x824e533d crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x8253911b bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err -EXPORT_SYMBOL_GPL vmlinux 0x826b4399 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x826f4b73 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x826fd98f phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8277d9a8 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x827c3406 is_software_node EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x8289cf2b phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x828f8b9f sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x829709a1 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x829f9253 spi_delay_exec EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82b52e51 __device_reset -EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x82c8407e gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0x82cace80 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x82a81bc0 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x82aed9b2 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x82b6b6c3 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x82c29356 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x82ca08c1 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x82cb3edf strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82f4faa3 dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x830687eb regulator_set_load -EXPORT_SYMBOL_GPL vmlinux 0x83076f67 spi_mem_dirmap_read -EXPORT_SYMBOL_GPL vmlinux 0x8314c17e __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x8315edfe eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x832968e4 rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x83385270 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x82ec8050 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x82fc7900 inet6_sock_destruct +EXPORT_SYMBOL_GPL vmlinux 0x82ff38c1 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x83029276 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x8302c463 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x830e4e96 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x8319e1b1 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x8319f8c9 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x831a8e16 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x831fc988 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x83299240 of_phy_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833b4775 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834d8a08 regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x835029da devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x83506ec2 device_link_add EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x83614d3d platform_bus_type EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x83701fe9 fwnode_graph_get_remote_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x837fa0cf bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x83953b04 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x83af27d2 __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x83d3a58c fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0x83e0774f driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x83e495f5 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0x83efb269 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x83f31521 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x83f7ab7e fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0x841016ee tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x836d8963 acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0x8381d32a kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x838c9c0b icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x83969298 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x839820a6 thermal_cooling_device_update +EXPORT_SYMBOL_GPL vmlinux 0x839a5977 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x839fc8c5 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x83a75844 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x83b651b4 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x83bad09f blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x83c73184 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x83e8384e dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x83e9e4e2 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83eb388b dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x83eb5d18 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x8406bc83 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84142655 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x84144629 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x841493ed xenbus_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype -EXPORT_SYMBOL_GPL vmlinux 0x8429e03e get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x842b75ea usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x84277a86 of_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x844616be __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x844fafd8 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x844e16e6 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8474c41d device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x847b6fcd regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x847f0843 pci_has_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x8481ef7b fsl_mc_bus_dpdmai_type -EXPORT_SYMBOL_GPL vmlinux 0x84974344 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x846542c3 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x846657c4 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8476d32c mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x847eabb8 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x849b23d2 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x849d9163 crypto_akcipher_sync_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x84a05c94 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84b53bb0 watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x84b93421 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x84cdb608 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x84d3a3c7 gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x84e3f273 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x84ee516c scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x84af3ecf dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x84be3078 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x84d2a697 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x84d2e612 mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x8504b5cd power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x8505f96c percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x84fb7299 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850827f7 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850cc3b5 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8510ed75 pm_generic_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x851c9216 devl_port_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8531d7ec iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x853e30df crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x85489a0c devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8523f1ba dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x853db3dd irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x8541bd2d platform_get_irq EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8557da5a usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x855848b6 mtk_paris_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x856f65db phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find -EXPORT_SYMBOL_GPL vmlinux 0x858af67c ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x8564b1cc pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x85710383 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x857546de acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x857b3ef5 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x857ef97e scsi_block_targets EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder -EXPORT_SYMBOL_GPL vmlinux 0x859b1ff6 phylink_validate_mask_caps -EXPORT_SYMBOL_GPL vmlinux 0x85aa1c26 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0x85c0b393 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x85c2bbc1 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x85c86f6e security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x85d61896 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x85e1127d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x859708b2 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x85c2ebdb of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x85cae973 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x85d34388 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x85dc66ff devl_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85f1aaa7 acpi_dev_get_next_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0x85f1ac5c tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0x85f346c9 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x86078ac5 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0x860845d2 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x860bef42 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x85f313c0 dma_resv_set_deadline +EXPORT_SYMBOL_GPL vmlinux 0x86035460 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x86042c24 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x860576ec ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x861f0bca pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x862437a3 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x86283593 thermal_zone_get_num_trips EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x86389dc5 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0x863ce334 devlink_param_register -EXPORT_SYMBOL_GPL vmlinux 0x863d9897 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0x86472178 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x862f70bf of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x8648db98 __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start -EXPORT_SYMBOL_GPL vmlinux 0x865bf8b5 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x8662b47c fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x86758b2e usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x8671905b icc_put EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x867911a4 mddev_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8679e0e2 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8683ca9d crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868b29a9 gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x869f660c da903x_read -EXPORT_SYMBOL_GPL vmlinux 0x86a5a8c5 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x86aa6388 usb_cache_string -EXPORT_SYMBOL_GPL vmlinux 0x86ad1f59 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x8693ece7 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x869cf15d tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x869d0f2b unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x86ab4cb4 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86bd9a5c governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x86b83dff crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x86ba9a7a fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x86bb1e7f fsverity_verify_blocks EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86cc680d misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x86ce8191 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x86e2f9a1 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x86e618ca inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0x86ccb14e blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x86cfef64 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x86d05a4f pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x86dbf718 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x86e40eeb acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x86e6bcfe irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x86e773e9 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x86ef9d2b udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x86f159a0 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x870b400e rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x86fa0384 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87117ac4 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0x8715e1d2 pci_p2pdma_enable_store -EXPORT_SYMBOL_GPL vmlinux 0x871d3d3a thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x870edc29 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x871460f8 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x8717de57 phylink_create EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x872c37da sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x87462b44 ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x874c684f stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x8752bc8e sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x87593f1b usb_phy_get_charger_current -EXPORT_SYMBOL_GPL vmlinux 0x87599b92 devm_register_power_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x87607771 devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x87685327 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x8725d547 devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8738359e imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x8739e6c6 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x87452aba ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x8755a692 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x875b85cf ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x875c1e3a decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x876f783d fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x877182f6 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x878c4d76 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x878ede85 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x87c75c9a spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x87ec861c pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x87f3418c blkg_conf_finish -EXPORT_SYMBOL_GPL vmlinux 0x881d6442 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x883dc201 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x883e8189 uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x8840b453 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock -EXPORT_SYMBOL_GPL vmlinux 0x885006aa ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x87ab2b99 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x87add640 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x87b3b88e spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x87c1d1e9 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x87c40bab platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x87c744d0 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x87db2fb9 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x880371be blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x88151143 vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x88223044 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x8823cc37 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x8824a5f6 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x8825cf9b gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x88314355 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x883f64b8 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x8845d2fd gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8857866f inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x887af7a9 dax_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x888251fb usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x885a0ea7 crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x8897d728 regmap_get_device -EXPORT_SYMBOL_GPL vmlinux 0x88a0a1ea blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x88aa2158 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x88a3f1e1 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x88a6cc6e clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88ac9f03 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x88b2de09 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp -EXPORT_SYMBOL_GPL vmlinux 0x88cb1a05 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x88c1f774 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x88c2d57e pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x88cbc1f7 cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88d5b7e7 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x88e52a50 vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0x88e9e96b fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0x88ed7373 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x88d91366 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x88f7802c pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x88fbe427 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x88fdaeaa gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x89056bd1 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x8906d47f regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x89107c43 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x8911c196 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x8914a943 power_supply_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x89232f95 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x891b310e mtk_pinconf_adv_pull_set EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x892aa5ad dev_pm_disable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x8939afc9 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x892b9b88 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x892c37f8 __nvmem_layout_register +EXPORT_SYMBOL_GPL vmlinux 0x89318d05 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x8931d4c7 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x893350e3 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x893409ab tc3589x_block_write EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x893d7a00 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x8941c456 dm_internal_resume EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put -EXPORT_SYMBOL_GPL vmlinux 0x89503497 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8949564e of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x8957aaf5 spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0x89652cf0 led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x8978867a regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x8980ecc3 ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x8988c9ed __mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x898c59d5 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0x89946def tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x8999ce54 gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x899d0186 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x895e2407 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x896561ae i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x89660233 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x896915b7 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8978a39d fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x898d901f sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x899d4a6d xhci_gen_setup EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall -EXPORT_SYMBOL_GPL vmlinux 0x89a7f5f4 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x89ab8968 irq_find_matching_fwspec EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b4e574 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x89ceaa4a devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x89d06d38 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x89c421da vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x89cc7721 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x89cffe31 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x89d9a426 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x89dbd3f3 xdp_rxq_info_is_reg EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e6b63e device_match_any -EXPORT_SYMBOL_GPL vmlinux 0x89e9fd8d of_usb_update_otg_caps -EXPORT_SYMBOL_GPL vmlinux 0x89f10d1b nvmem_cell_read_variable_le_u64 -EXPORT_SYMBOL_GPL vmlinux 0x89f57dba blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x8a0a04b1 mtk_is_virt_gpio -EXPORT_SYMBOL_GPL vmlinux 0x8a0a60ce serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x8a0b5c45 dma_async_device_channel_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8a0b8717 dm_hold -EXPORT_SYMBOL_GPL vmlinux 0x8a15bce8 nf_route -EXPORT_SYMBOL_GPL vmlinux 0x8a2a8378 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x8a2cc922 imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x8a2deab0 dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x8a3ed72a __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x89f9ef78 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x89fcd4fd fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x8a0127e8 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8a13cbe3 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8a1cafb0 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x8a21dcd2 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x8a22bb40 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x8a3193bf platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a35a5f2 gpiod_export EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low -EXPORT_SYMBOL_GPL vmlinux 0x8a440818 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a5a496a platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a73c5a2 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x8a7448cf ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8a751cab wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8a7809ee fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x8a7d1926 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x8a824f37 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8a9670ee pci_doe_supports_prot -EXPORT_SYMBOL_GPL vmlinux 0x8aa470cd vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x8aa5ec65 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x8ab2cd2b set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8ac0a794 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8acfbfed __nvdimm_create -EXPORT_SYMBOL_GPL vmlinux 0x8ad18119 blk_mq_alloc_sq_tag_set -EXPORT_SYMBOL_GPL vmlinux 0x8ad42bb7 crypto_alloc_acomp_node -EXPORT_SYMBOL_GPL vmlinux 0x8ae1836f netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x8ae3c6ea pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x8ae8d109 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x8b012c57 dev_coredumpm -EXPORT_SYMBOL_GPL vmlinux 0x8b10cbe2 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x8aea0ae1 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x8af0bfdd bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x8af74a57 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x8b0321bf pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x8b0f28a1 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b16d6c8 cros_ec_check_features -EXPORT_SYMBOL_GPL vmlinux 0x8b17bbff proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x8b19027c of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x8b1caabb subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x8b3269aa transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x8b35752f sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x8b3b60d2 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x8b160eed kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x8b16842d srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x8b1ae810 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8b247166 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x8b37bce4 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8b3917d1 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x8b3b0ec6 ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc -EXPORT_SYMBOL_GPL vmlinux 0x8b43bc8a dev_pm_opp_set_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x8b583e4f crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release -EXPORT_SYMBOL_GPL vmlinux 0x8b6ecd9b kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b42cd5e reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b45a783 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x8b5ca6dd acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x8b725b45 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x8b739801 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x8b742fe8 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall -EXPORT_SYMBOL_GPL vmlinux 0x8b91d86c __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x8b94aa36 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x8b92885d devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x8b9e1623 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x8b9faedb irq_domain_pop_irq EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg -EXPORT_SYMBOL_GPL vmlinux 0x8ba3653e acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op -EXPORT_SYMBOL_GPL vmlinux 0x8ba73040 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x8bb0fb7d synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0x8bb5fdcc set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x8bb7ccfa of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x8bb91172 fsl_mc_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0x8bbd8019 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x8bbdee7e edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0x8bc09bc8 i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0x8bc41571 sdio_readl -EXPORT_SYMBOL_GPL vmlinux 0x8bd1783b vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x8bd846b7 thermal_zone_device_register_with_trips -EXPORT_SYMBOL_GPL vmlinux 0x8be25458 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x8be4b8e4 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x8bb23a6c pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x8bb4fc73 __cdx_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8bbbfb18 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x8bbdaeaa iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8bbe00f1 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x8bbe527c __tracepoint_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0x8bbf6732 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x8bbfc888 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8bc1f2d7 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8bed45fc kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x8bf23eb2 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x8bf4fa92 kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c0b0bef vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c0fef98 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0x8c11076a irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x8c236298 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x8c25efe2 pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x8c29d5da spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x8c2dca64 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x8c364e2d pci_doe_submit_task +EXPORT_SYMBOL_GPL vmlinux 0x8c3427f9 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x8c36371f of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x8c3b279d kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x8c40b6a3 pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev -EXPORT_SYMBOL_GPL vmlinux 0x8c55003b hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x8c5feba8 of_irq_get_byname -EXPORT_SYMBOL_GPL vmlinux 0x8c69a07a fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x8c52dd7c __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x8c5b7f8e rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x8c5fa086 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x8c6e60fa seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x8c736c14 kvm_write_guest_cached EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off -EXPORT_SYMBOL_GPL vmlinux 0x8c974426 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x8c8a741f devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8c8d2374 dma_fence_unwrap_first EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb -EXPORT_SYMBOL_GPL vmlinux 0x8c9cfad3 devl_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext -EXPORT_SYMBOL_GPL vmlinux 0x8cb00f1c cpuidle_get_cpu_driver EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cbc780b pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x8cca88c1 pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0x8ccf2fdc fb_deferred_io_mmap -EXPORT_SYMBOL_GPL vmlinux 0x8ce25fdf kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x8ce321b5 ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x8ce97187 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x8cfc49fe sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x8d0332b5 led_sysfs_disable -EXPORT_SYMBOL_GPL vmlinux 0x8d0a4c7b fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x8d107f3d gpiochip_generic_request -EXPORT_SYMBOL_GPL vmlinux 0x8d205e22 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x8cbd8008 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x8ce8e775 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x8cf98a34 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x8cfd8df2 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d1e3f3c vcap_tc_flower_handler_portnum_usage +EXPORT_SYMBOL_GPL vmlinux 0x8d1e7526 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x8d21a898 fscrypt_prepare_lookup_partial +EXPORT_SYMBOL_GPL vmlinux 0x8d22a2c2 kthread_func EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8d26bbcc tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x8d323791 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8d231f2f meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d27d56c fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x8d2f6b45 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x8d3265f3 tcp_bpf_sendmsg_redir EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d40f192 devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8d451ab1 phylink_of_phy_connect -EXPORT_SYMBOL_GPL vmlinux 0x8d74a510 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x8d7b09fd watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8d5b64fb vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x8d5da416 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x8d787d25 usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d88eed9 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8d7ea68c pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d86a005 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8db969b3 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x8da2b219 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x8daa8732 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8db7e37d tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dca9aa2 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd42a75 scsi_host_block -EXPORT_SYMBOL_GPL vmlinux 0x8ddad45f device_add -EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x8de71c1d crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x8de8ffee device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x8decd23a pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x8df149e8 __traceiter_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x8df5ce89 led_update_brightness -EXPORT_SYMBOL_GPL vmlinux 0x8dfbc4a5 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x8e0b0c66 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x8e0c4a8c irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x8e15161b bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x8df4b3e4 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL vmlinux 0x8df6376a xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x8df74cde virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x8dfad89a dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8dfb4f10 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x8e0c8b51 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x8e136cb8 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x8e159255 genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e431cad anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0x8e467f88 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8e25c30c pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x8e3ac98c rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8e42dd2d tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x8e497f75 gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep -EXPORT_SYMBOL_GPL vmlinux 0x8e4ca3f0 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e521fff kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x8e679aaf xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x8e5154f7 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x8e5d6291 pci_epc_set_bar EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e7701da adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x8e7af482 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x8e70f541 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x8e771112 ahci_platform_suspend_host EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x8e8a3b8f irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x8e935db3 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0x8ea2835c dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x8e7f1741 devl_register +EXPORT_SYMBOL_GPL vmlinux 0x8e7f4e31 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8e8a7313 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8e928f89 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8e9a93ec kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x8e9bb3ee ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eadb87c attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x8eb14874 dpcon_enable -EXPORT_SYMBOL_GPL vmlinux 0x8ed54f65 usb_hcd_unlink_urb_from_ep -EXPORT_SYMBOL_GPL vmlinux 0x8ed560a9 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x8eddd52d pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8eae8556 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8eb37b0c governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ec17d3c devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ecf7fe2 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x8ed7bc8a devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x8eda0d6a sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x8ede5e5a sata_async_notification EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8ef52519 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8efecd6d xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x8effbbd8 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x8f00d150 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start +EXPORT_SYMBOL_GPL vmlinux 0x8f0223cd sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x8f04da91 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches -EXPORT_SYMBOL_GPL vmlinux 0x8f0c5290 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x8f15d26f modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x8f182da1 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x8f1c4eaa subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x8f238228 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x8f31114a gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x8f2c18b3 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate -EXPORT_SYMBOL_GPL vmlinux 0x8f3e9c75 virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x8f49b0b1 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0x8f4f43d6 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x8f55fa13 switchdev_handle_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0x8f5e90e2 bpf_offload_dev_match -EXPORT_SYMBOL_GPL vmlinux 0x8f625a68 vp_legacy_set_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x8f630f2b devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8f4d077f event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8f4f5b83 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8f581c0e __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8f6a21cf sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f6a7cd4 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x8f6c542e fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bb270 gnttab_page_cache_get EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7e664c dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0x8f866f4a dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x8f8ae385 cpufreq_table_index_unsorted -EXPORT_SYMBOL_GPL vmlinux 0x8f8f7166 __irq_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0x8f95c410 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0x8f9d784c device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8fa14d2f report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x8fa260bf usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats -EXPORT_SYMBOL_GPL vmlinux 0x8fa9b912 ahci_platform_disable_clks EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid -EXPORT_SYMBOL_GPL vmlinux 0x8fb6b257 device_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x8fbfe731 clk_fixed_factor_ops EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fd2830e clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0x8fe1a63e kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x8fcd8517 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x8fd77b8a tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x8fdbd13b pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ff0993c tty_ldisc_receive_buf EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x8ffff914 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0x9022942b rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x902c04e2 folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0x903917bf xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x902e3ce3 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9032544e verify_signature EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x904e1643 md_run -EXPORT_SYMBOL_GPL vmlinux 0x90608988 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x9063cae1 fsl_mc_obj_open -EXPORT_SYMBOL_GPL vmlinux 0x9072e1d4 phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0x90759053 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x909498e5 ata_bmdma_dumb_qc_prep -EXPORT_SYMBOL_GPL vmlinux 0x90960174 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x9049dded of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x90529817 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x9066f66f cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x907ffb62 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x90963c14 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x90a9b079 phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90bf4315 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x90bf28b7 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x90c846f3 adp5520_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x90de450b pinctrl_add_gpio_ranges -EXPORT_SYMBOL_GPL vmlinux 0x90de53d4 dprc_get_obj_count -EXPORT_SYMBOL_GPL vmlinux 0x90f75287 rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0x90fd4c9e unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x9108e40c icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x90d6f1f7 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x90db8f51 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x90dd53f2 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x90f4076d devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x90f9e0a3 filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x91112b32 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x91194084 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x911d3ca7 gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL vmlinux 0x9121e8ee fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9125cd6c pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x912c9513 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x91316b57 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x913836fe devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x91392324 ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x915572df fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x915cda0f acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x91481061 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x91500a28 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x91550a11 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x915ccee5 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x917c009c cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x91897ddb pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x9193de1d synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x91b167c4 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x91a49f02 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x91a95c84 mtk_hw_get_value EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91bd043f wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0x91c162e5 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x91bfa1b6 pci_p2pmem_find_many EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0x91db812b __fscrypt_encrypt_symlink -EXPORT_SYMBOL_GPL vmlinux 0x91deec19 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x91ca2376 iommu_detach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0x91d67a98 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x91d6edb0 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x91d783cd cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91e796ed pinctrl_generic_get_group_name EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x91ecd6ec hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x91f39ded usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x91f61573 spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x91f72b2d power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x92018896 of_property_count_elems_of_size -EXPORT_SYMBOL_GPL vmlinux 0x9203c8d9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x91f20c66 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x91f36c30 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x91f63e95 regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921305c5 iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0x923389f6 devm_release_action -EXPORT_SYMBOL_GPL vmlinux 0x923aaf9d md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x92135bb0 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x9215bfac rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x9222aeb7 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x9232fac8 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable -EXPORT_SYMBOL_GPL vmlinux 0x92403fc5 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x9252ee43 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x926724e6 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9267e7a6 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x92733fdb register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x92980e1d device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x927e0827 tegra_bpmp_get EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x92a1cce7 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x92b47af8 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x92a05217 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x92ad4bf2 crypto_alloc_sig +EXPORT_SYMBOL_GPL vmlinux 0x92b4e2c7 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x92b4e449 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg -EXPORT_SYMBOL_GPL vmlinux 0x92c0736b blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x92b946b7 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x92c7cefa tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x92c89047 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x92cb609e __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x92cf74aa vcap_admin_rule_count EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add -EXPORT_SYMBOL_GPL vmlinux 0x92d5c8c2 cn_add_callback -EXPORT_SYMBOL_GPL vmlinux 0x92d78198 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x92d78e98 rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x92de87b0 mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92f86ed8 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0x9301a1a2 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x92f8d2ef fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x93037861 sdio_readb EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x930e322f tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0x9314e5ec fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x931345cc xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x931ac7c0 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x931b290a usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9329cf0d ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array -EXPORT_SYMBOL_GPL vmlinux 0x932db0c5 synth_event_create -EXPORT_SYMBOL_GPL vmlinux 0x933c7302 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x9331d097 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x9332a568 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x933fd1db usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9349a6dd posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x934bf686 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x934f0ebf fsl_mc_bus_dpbp_type EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x935eae9a gnttab_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x93642f7d fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x936e9b8b strp_stop -EXPORT_SYMBOL_GPL vmlinux 0x93808d33 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x938274da tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x938b66a2 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x93aea335 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x93b6b7f7 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x93c123e2 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x93c72acf __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p +EXPORT_SYMBOL_GPL vmlinux 0x9375a0a5 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9376eaea usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x937c5936 vcap_select_min_rule_keyset +EXPORT_SYMBOL_GPL vmlinux 0x938cf9d8 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x93a350aa fwnode_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cac762 devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d84d67 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x93d3481c filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next +EXPORT_SYMBOL_GPL vmlinux 0x93eceff5 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x93fc4684 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0x93ffbcd6 l3mdev_table_lookup_register -EXPORT_SYMBOL_GPL vmlinux 0x9400b4f3 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x94073666 exportfs_decode_fh_raw -EXPORT_SYMBOL_GPL vmlinux 0x940fb826 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x941d679a pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x9402a39f crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9414dc82 driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x9428327e ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x942b1673 pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x9430b170 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x94275eb2 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x94299178 phylink_decode_usxgmii_word EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x945b89be dt_init_idle_driver -EXPORT_SYMBOL_GPL vmlinux 0x94620ca7 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9441c082 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x9454621b ata_scsi_slave_config EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock -EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x9474f902 pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x948ef3e8 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x9488dd98 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x948d69a2 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x949145c0 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949d190c devm_rpi_firmware_get EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x94a87e7f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x94a29616 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x94b05b91 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94b67b0d of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x94bbb62f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x94bfac4e devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x94c02cba clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x94c4d7d7 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94ed69f3 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x94ec24fe regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x94f088fa skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x95026aea blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9503ea98 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x94f64aa5 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x94f6b3c6 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x94fc163a bpf_prog_create EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x950ddfbb kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9519407a phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x951d2c3c irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x951e8414 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x95204588 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x95238b07 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x952ae984 apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x95350a60 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x9536cd89 dm_get_queue_limits -EXPORT_SYMBOL_GPL vmlinux 0x953878cd pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x95391512 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x951aaa28 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x95327914 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9537a25b rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x953f838d md_start -EXPORT_SYMBOL_GPL vmlinux 0x95414a06 tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x9546915f blk_crypto_profile_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9547a8bb __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x954b0715 platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x954d1f62 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x954e9182 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x954cc780 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x955189ba __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x95538344 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x9557fd5f pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955e21a7 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x955cafc5 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x957d1f17 devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x95813c2f usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x956ecc4c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x958953c8 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x95850de3 genphy_c45_read_link EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free -EXPORT_SYMBOL_GPL vmlinux 0x9592249e msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x9593582b spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9593613f pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x959b76d0 blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0x95a4a704 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x959682a4 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x959ba83f dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x959e23ec __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x95a77acf bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x95ad4946 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x95e70534 rio_free_net -EXPORT_SYMBOL_GPL vmlinux 0x95ea06a1 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL vmlinux 0x95c11fcc md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x95cb2842 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x95cdc301 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x95d557f3 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x95dadda9 pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f22730 ata_sff_irq_on -EXPORT_SYMBOL_GPL vmlinux 0x95f2ae1e __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x95f34f76 dummy_con -EXPORT_SYMBOL_GPL vmlinux 0x95f5a7d0 pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9604a125 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x95fcf637 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu -EXPORT_SYMBOL_GPL vmlinux 0x962032c7 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9616a255 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL vmlinux 0x961c2d55 cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x963ad7eb edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x963ca902 crypto_stats_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9640faf7 sk_msg_free_nocharge -EXPORT_SYMBOL_GPL vmlinux 0x965286cc iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0x9653340f vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x9632ee86 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x9633f2be rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x96468846 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x964f9dfb sata_scr_write_flush EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology -EXPORT_SYMBOL_GPL vmlinux 0x9654cded hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x96695128 tegra_bpmp_mrq_is_supported -EXPORT_SYMBOL_GPL vmlinux 0x966add2f ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0x966efcec usb_phy_set_event -EXPORT_SYMBOL_GPL vmlinux 0x966fbad7 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x967210aa md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0x96784043 wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0x967c5ab2 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x967fa07f PageHeadHuge -EXPORT_SYMBOL_GPL vmlinux 0x96814bfe blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0x9691a03f sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x969a7aaa crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0x969adca4 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9656c737 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x968c4914 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x9691222b ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x9696f420 fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x96ad1a7d gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x96b32ed4 crypto_stats_akcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x96b508ea usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x96b5ac4b vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x96d5665e spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x96dbe412 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x96f27f16 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x96a9aed2 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x96e84bf5 udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x96e96a5b wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x97055c4d dev_pm_qos_add_ancestor_request -EXPORT_SYMBOL_GPL vmlinux 0x9709c6f0 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x96ffd117 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x970061ef gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x97012fa9 sata_lpm_ignore_phy_events EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x971923b9 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x972f3d3d __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x972fdd41 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x973702d3 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x972978f3 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x9732f008 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x973ea0aa nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x973ee777 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9747a9f2 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x9748aa19 __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x9755ad40 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x975dd634 gpiod_export -EXPORT_SYMBOL_GPL vmlinux 0x975e881d pwm_request_from_chip -EXPORT_SYMBOL_GPL vmlinux 0x9761427e __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x975b80b8 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x975c2ed4 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x976d02a6 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x97725a6d of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x978c4cea auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0x97a228c6 kvm_read_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x97a7affc do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x97af7daf wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x97dc489a devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x97866444 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x979831b4 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x97a45940 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x97a5ad9f fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x97aed701 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x97d69a18 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x97d871fb nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97e00519 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode -EXPORT_SYMBOL_GPL vmlinux 0x97ed9c42 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x97f01970 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0x97f9bdb5 icc_node_del -EXPORT_SYMBOL_GPL vmlinux 0x9800692b acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9810c5a2 usb_debug_root -EXPORT_SYMBOL_GPL vmlinux 0x9811d6ad regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x9812c13f devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x982650a1 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x9826a3a5 __ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x9826b1f5 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x982f6668 dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0x983205ca devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x97f1f98b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x97f45af6 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x97f881e2 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x980f49ad iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x9810e00c wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x98129933 devm_irq_domain_create_sim EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x98344ce6 pfn_to_online_page -EXPORT_SYMBOL_GPL vmlinux 0x9837b832 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x983641a5 acpi_is_pnp_device EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x9846c23b virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x98496303 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x984eb77e devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x984d24e2 irq_domain_simple_ops EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9851aef0 fsverity_verify_bio EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9867398f fib_rule_matchall -EXPORT_SYMBOL_GPL vmlinux 0x987641ce copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x9856a9ff alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x9863b242 devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987aca1d ata_link_online -EXPORT_SYMBOL_GPL vmlinux 0x987d7b92 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x987e8a78 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x987ea96e netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x98803d68 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0x988460c7 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x98869e5e dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x9888ed54 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x988e3860 __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x9892ef4b __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x9897b0ec tegra_bpmp_free_mrq -EXPORT_SYMBOL_GPL vmlinux 0x989c4cfe device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x98b29496 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x98d28c93 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x98dd0fa5 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9890bda4 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x98a1fea1 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98a65e1a acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x98b03673 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x98b48b1d mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x98d1c4ef wm8350_device_init EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f80735 espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0x98f826e5 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x9913a051 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x99159e13 wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0x99195635 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x991e603c regmap_multi_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x9923f7f3 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x992f2530 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x99442126 __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x9951c841 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x98febfa3 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x9902a624 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x99135282 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x9916f4d7 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x991c1422 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x9921ff77 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x993556e0 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x993725e2 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x9937de02 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x9953acdb pkcs7_verify EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995d4548 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x9986760c usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x998a9aae __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x996a44f6 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x998bd0a4 kvm_arch_ptp_get_crosststamp EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x999b08d1 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0x999dd2dd ata_pci_sff_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99ac2756 sata_scr_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x99c9d4e2 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0x99d21e85 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x99d32054 rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x99e2d855 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x99ab56ff of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x99ae0fab nf_route +EXPORT_SYMBOL_GPL vmlinux 0x99c29280 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x99c6b08c devres_get +EXPORT_SYMBOL_GPL vmlinux 0x99c982c0 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x99d6328b led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x99d9d8d9 file_is_kvm EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99f4aaff extcon_get_edev_name -EXPORT_SYMBOL_GPL vmlinux 0x9a03f965 firmware_request_platform -EXPORT_SYMBOL_GPL vmlinux 0x9a0854b7 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x99f35c6b of_device_compatible_match EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a23b76c unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x9a1e1ae8 dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a34c664 sdio_writew -EXPORT_SYMBOL_GPL vmlinux 0x9a35aaac wm8350_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x9a4c97bb irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x9a471560 rio_request_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5a03de vcap_chain_id_to_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a5c66ae pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9aaa685a clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x9a613d2b regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9a642954 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x9a6612f6 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x9a742c65 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x9a87b5ba regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops -EXPORT_SYMBOL_GPL vmlinux 0x9ac623f0 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9ac51ec7 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x9ac58f15 __tracepoint_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0x9ac5a2a9 fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find -EXPORT_SYMBOL_GPL vmlinux 0x9acf5fbb vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x9ad35c36 sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0x9ad72394 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x9ad80f28 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x9ad86463 ahci_reset_controller -EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x9ae74f42 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9acf77ea evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x9ad14e51 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x9ae1191f rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af462e0 usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9afb7b1b pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x9afef992 usb_hcd_amd_remote_wakeup_quirk -EXPORT_SYMBOL_GPL vmlinux 0x9b0a136f led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x9b09a9da pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x9b0ed41d virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x9b146903 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x9b2cf22d serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x9b2d2c16 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x9b2f5f17 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x9b3dfaf6 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x9b0f398f blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9b3330de bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x9b37a0cd rio_free_net EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b5ab367 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x9b60029f crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring -EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data -EXPORT_SYMBOL_GPL vmlinux 0x9b6a3bc8 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b652b6e phylink_resolve_c73 +EXPORT_SYMBOL_GPL vmlinux 0x9b66d84b virtqueue_get_buf_ctx EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b6f6bc4 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x9b73420d dev_pm_opp_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x9b752102 nvdimm_security_setup_events -EXPORT_SYMBOL_GPL vmlinux 0x9b8f3202 PageHuge -EXPORT_SYMBOL_GPL vmlinux 0x9b90660d __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9b6fcae8 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x9b781cb7 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x9b78f355 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x9b8741f8 regulator_put EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9ba0b128 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b9bcc7b __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba90930 ethnl_cable_test_finished -EXPORT_SYMBOL_GPL vmlinux 0x9bb87d3b locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x9bc6b34d pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x9bcfa5aa i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x9bab03d3 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x9bad2ed2 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x9bb3fcd1 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x9bbc1222 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9bc2b522 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x9bd228ff ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x9bd26817 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x9bd35e46 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range -EXPORT_SYMBOL_GPL vmlinux 0x9becad92 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x9be57e81 soc_device_register EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bee148d ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x9bfb7ffb ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x9c26a29a trace_add_event_call -EXPORT_SYMBOL_GPL vmlinux 0x9c2e5187 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x9c2f504e cpufreq_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x9c3382f3 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x9c347617 __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x9c35c2d6 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x9c32c149 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x9c3b9009 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x9c3e3b36 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x9c40cfe6 xhci_run EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c459945 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x9c4b20c9 thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x9c6c0621 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x9c46fa44 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x9c47fd23 crypto_sig_set_pubkey +EXPORT_SYMBOL_GPL vmlinux 0x9c52795b irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x9c653c77 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9c6b0f03 sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c7103d5 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c94777a led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c826e49 pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid -EXPORT_SYMBOL_GPL vmlinux 0x9c98deaa __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x9c9a51cc __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location -EXPORT_SYMBOL_GPL vmlinux 0x9ca9262c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9ca7c1f2 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9cacb95a kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x9cb4d8f9 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x9cd94c4e virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x9cd88dbd device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals -EXPORT_SYMBOL_GPL vmlinux 0x9ce05629 devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9ce34844 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0x9ceb009b devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x9ceefd12 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x9cef83ea devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9cfa7210 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9cfb7e7f rockchip_clk_register_branches EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d16c25c blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9d0efeaf au_platform_setup +EXPORT_SYMBOL_GPL vmlinux 0x9d10dbc8 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x9d271ea5 hid_bpf_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9d29fb94 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9d2d3f5b pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d331c57 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x9d61fd1c get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x9d7b4aad sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x9d7e5c1a pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x9d8b9374 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x9d38fb4d dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x9d43b618 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x9d50ff31 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9d59ec9b clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x9d60dce8 class_create +EXPORT_SYMBOL_GPL vmlinux 0x9d624c1f debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9d66ad8a devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9d699c1f irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x9d781e4e xenbus_free_evtchn EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x9da2e966 acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x9da38be3 pci_p2pmem_publish -EXPORT_SYMBOL_GPL vmlinux 0x9dc26d17 pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x9dcc2139 of_msi_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x9dcd583f spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x9dd2a4cc trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x9dd912a1 ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0x9de2f0bf devm_clk_bulk_get_all -EXPORT_SYMBOL_GPL vmlinux 0x9de7dcb3 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x9da6b993 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x9dc63bd9 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9dd60f44 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9dd911f6 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x9dde4c7c auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9de7bcdb xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x9df16180 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x9df849d7 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x9df8deb5 of_pci_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0x9e20702a clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x9deb0ae4 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x9dfefa3a xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x9dff684f usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e2e89c9 serdev_device_write_room -EXPORT_SYMBOL_GPL vmlinux 0x9e3f1b0f __traceiter_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0x9e41ea64 pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0x9e44e892 msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x9e3b1e78 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x9e3f6e08 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9e45b8d6 screen_glyph_unicode EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e516e21 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9e61a482 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x9e65fc08 devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x9e686edd of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x9e6bb157 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x9e821faf tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x9e8b34f5 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x9e8eb093 dev_pm_opp_config_clks_simple -EXPORT_SYMBOL_GPL vmlinux 0x9e936746 swapcache_mapping -EXPORT_SYMBOL_GPL vmlinux 0x9e93f050 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e496d1a watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9e52f37e vcap_rule_mod_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9e69da15 fw_devlink_purge_absent_suppliers EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9eaadd6b get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x9eaf7b67 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x9ea27e3b phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9eafb626 mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x9ebe4c70 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ec88495 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x9ecb739f devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x9ecc6f74 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x9ed2d8f5 relay_flush EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9edf5214 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x9ed713ba subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9eec56df gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x9eeccf5e rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x9ef2c7b2 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x9ef35205 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x9efb8b7f metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x9efc32df pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x9f03125e ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f0affa1 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x9f17bf68 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x9f211b31 vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0x9f2b3cc4 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x9f2e44f3 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0x9f3edd2b devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x9f26fc76 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x9f37f2c8 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x9f3ee92b efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x9f4b1a7d __thermal_zone_get_trip EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5c25a1 blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f693a00 ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x9f8a2931 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x9f5efa93 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0x9f70288e usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x9f7c54ff crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x9f7fccbf __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x9f8c1f86 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x9f905339 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x9f90db0c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x9f9361fa ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fa9f6c0 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0x9faa6b59 __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x9fb0f4ef dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x9fb996a7 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write -EXPORT_SYMBOL_GPL vmlinux 0x9fcbd6ba ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x9fc2a9fa synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x9fca9903 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fdc3518 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x9fe112f2 clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9feff55e attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x9ff0dde9 ncsi_vlan_rx_add_vid -EXPORT_SYMBOL_GPL vmlinux 0x9ff1bf10 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x9ff5c77f folio_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xa001e3a6 __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xa00f3771 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x9fe964fe dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9ff243a2 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x9ff45780 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xa005ed37 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa009d8ca dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xa009e9e2 ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa01f21f6 k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0xa03fa7eb locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa01c5f1e __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa02f32a4 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xa0351669 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xa0360d2a do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0372cb9 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa038ae73 acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xa0464f3f mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa061d00e is_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xa06617ff cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa055a210 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xa056aaa7 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xa06cd298 vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xa07338a4 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0xa0750f34 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xa07ac3e8 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xa074eddb iommu_group_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa09c5f0d regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0xa0ba4239 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa095d0e3 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0b1769e tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa0b64a75 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0xa0c4cf2b rpi_firmware_clk_get_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xa0c55553 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xa0cc3705 tpm_put_ops EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0d74e27 arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0xa0de7d6e vcap_rule_add_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa0dfbc6b mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xa0fc990c sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xa0fcdc8d crypto_stats_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0xa0ff95c1 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0xa105c324 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0xa10ce43e irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xa0d58739 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xa0d5d6e1 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xa0ebc102 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xa0ee86ab skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xa1006adc dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa1159bf0 rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xa11b7300 to_of_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xa1391455 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xa147309b phy_10gbit_full_features -EXPORT_SYMBOL_GPL vmlinux 0xa1490258 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0xa152d319 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xa112453a dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa112758f xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa123e8a4 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0xa1317272 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa131ae63 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xa1364790 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa14d96f6 nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0xa15198ae __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa176283a devm_devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xa18b75b7 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xa18dc118 ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0xa19add4b disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0xa1a08cd8 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xa1b19cf9 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa163798d mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xa16449b4 phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL vmlinux 0xa167e365 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xa19561fb __SCK__tp_func_xhci_dbg_init +EXPORT_SYMBOL_GPL vmlinux 0xa1a3eb9f pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xa1a49a45 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1d0b2c6 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xa1cfc11e pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1f036ff fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa211d9bc dst_cache_set_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xa21e21c2 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xa20e7976 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xa20ef37b handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xa217f398 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa230fd06 led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xa2348ffe devm_usb_get_phy_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa246ac55 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0xa2495a5f device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xa24fe3a7 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa233578a pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa25cf0ec ata_sff_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xa2684f40 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa25a63d2 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xa25eb80f tcp_ca_openreq_child EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa28ba389 icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0xa2791fcd pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xa27c7c97 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0xa29b0767 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xa29cbc67 put_io_context -EXPORT_SYMBOL_GPL vmlinux 0xa2a9577f gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xa29257d5 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa299793f acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xa29b1098 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xa29ce00c fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xa2ac0a72 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xa2aec2e7 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2af8fce of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0xa2b8179d power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa2b352be virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2bf2af7 powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0xa2bfce48 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0xa2dcb6ff unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xa2e05ced handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2cc1fde blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa2d148bb __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xa2d9c1fb regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xa2df4c4b bpf_preload_ops EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e9738d debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa2f368ca crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa3308b2b vp_modern_set_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0xa33a0636 ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0xa33ab94e dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xa348c354 serdev_controller_alloc -EXPORT_SYMBOL_GPL vmlinux 0xa34f42f8 usb_sg_init -EXPORT_SYMBOL_GPL vmlinux 0xa35d342a vcap_enable_lookups -EXPORT_SYMBOL_GPL vmlinux 0xa363393c debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0xa368b343 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xa3103f05 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa331af36 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xa33391a9 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xa33b2c81 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xa34d2ed1 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xa3578d55 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xa35f4a11 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xa35f9eab of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xa36a57e0 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xa36bdfdb power_supply_changed EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa3762ef2 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xa37c830f ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0xa3879ce1 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa3997dc3 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa38ce46b led_get +EXPORT_SYMBOL_GPL vmlinux 0xa3910f7b usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 -EXPORT_SYMBOL_GPL vmlinux 0xa3a7e237 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa3a36c73 cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0xa3a9f112 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xa3aa080b devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xa3ac1c35 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xa3ac48a7 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa3b787be __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3c0c24b invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0xa3ce971e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa3d3e410 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xa3d5d763 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa3d693af clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xa3d7413e key_set_timeout EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3e8304b driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa3dfeff1 blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3ef9551 device_get_named_child_node EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0xa402b788 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xa3f48f29 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa4062a57 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa406a89f mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa41333bb folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xa41d3ff7 devm_mipi_dsi_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xa4213da2 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xa416da56 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xa42733f9 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa43b275e ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xa444d94a pci_sriov_get_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq -EXPORT_SYMBOL_GPL vmlinux 0xa45b26c3 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa45728f7 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xa45998cf iommu_device_sysfs_add EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa49824b0 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xa483d191 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xa493dbc3 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xa4a3ea66 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa4aad6e1 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4ad1770 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xa4ad7f3b cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa4afd720 mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4bf2e41 cppc_set_epp_perf EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4d644cb regulator_get_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0xa4de0572 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa4ceab72 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xa4de4614 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa4eb5028 sysfs_create_link EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa4f8957e pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0xa4f9e615 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0xa5070a40 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0xa511b6ac wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0xa51675ed icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xa4f2e708 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xa4fb78f4 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xa5170c88 dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa520048b pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xa51ed1a4 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xa52161df led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xa52b286e put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa537ef76 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0xa53a875f meson_clk_mpll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xa53d2106 __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0xa549ddcc acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa53d1b20 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa541cfc7 devl_linecard_create EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa54c0bdb genphy_c45_pma_setup_forced -EXPORT_SYMBOL_GPL vmlinux 0xa55bc898 thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa55db800 rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa5620b11 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xa57407dc devm_tegra_core_dev_init_opp_table EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0xa57bcc5f rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xa57febff __fscrypt_prepare_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa58827b6 dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0xa5895cb0 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0xa5a21c6b devm_reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa5b05735 crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0xa5b219b9 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xa5b3fc24 rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xa5b9936f usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa57fa51b devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa58b9c5c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xa5a4693f kvm_irq_has_notifier EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5cc5fb1 acpi_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa5cc858b nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xa5be200a ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xa5be29e3 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xa5c21a3d blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xa5cf193d regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5e22014 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xa5ef0de4 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa5d80c28 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xa5e9a7af crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f453fc dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xa6045b4c dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa613809a cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0xa6157e5c relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0xa61c6825 gpiochip_populate_parent_fwspec_twocell -EXPORT_SYMBOL_GPL vmlinux 0xa6324a55 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xa63cbe6a __sk_flush_backlog -EXPORT_SYMBOL_GPL vmlinux 0xa63cc89d skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xa64ad5b0 vcap_rule_add_key_u128 -EXPORT_SYMBOL_GPL vmlinux 0xa64c0c06 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xa66fa7b0 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0xa67d376c blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0xa67ec887 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xa684a2e0 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0xa689c57b device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xa60e8712 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa6181846 nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0xa6319cff led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xa635c8eb cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xa6445323 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0xa6476972 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xa649491e __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xa65033cb vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xa67f588b bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa69e8031 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a2d488 irq_set_chip_and_handler_name EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk -EXPORT_SYMBOL_GPL vmlinux 0xa6a9f904 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa6ae5a67 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa6aa616c generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6c45454 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa6d392ad ata_sas_port_alloc EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code -EXPORT_SYMBOL_GPL vmlinux 0xa6dcf4fc dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xa6ded643 debugfs_file_get EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6eb6eb8 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa6f82686 vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0xa6f86608 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0xa6f97d23 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0xa6fabc36 perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xa7071940 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xa6ea0982 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xa6f94863 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xa6f9a198 class_unregister EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc +EXPORT_SYMBOL_GPL vmlinux 0xa709a7dc acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa70f61c0 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xa7100ef9 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0xa71fe589 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa70ce4af pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xa71201da trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xa7195818 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa7241959 pkcs7_supply_detached_data +EXPORT_SYMBOL_GPL vmlinux 0xa72b3470 kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa73274e7 sdio_claim_irq -EXPORT_SYMBOL_GPL vmlinux 0xa7368aaf kick_process -EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp -EXPORT_SYMBOL_GPL vmlinux 0xa766c913 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xa73d5cf9 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xa73f8cdd power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xa7492469 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xa749bc8b stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa752ca7f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xa75cf4d8 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa76a69b2 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa76ecbcb platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa76fdf44 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa777bf46 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xa7836e1e thermal_zone_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault -EXPORT_SYMBOL_GPL vmlinux 0xa79a6553 mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0xa7b675ba usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xa7b767d3 regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xa7c95450 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0xa7d4be2b to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xa7d6f6c9 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0xa7f6c9a7 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0xa7fa3e38 icc_node_add -EXPORT_SYMBOL_GPL vmlinux 0xa805cc0c usb_block_urb -EXPORT_SYMBOL_GPL vmlinux 0xa82dfcba tps6586x_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0xa836460e thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0xa839fb7e devm_thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0xa83f044b ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0xa84afe55 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0xa8518ec5 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xa790ab4b __tracepoint_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xa796541f task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xa7a3b8a4 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa7aa061f ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xa7b890da blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xa7c68231 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa7c87fb8 __traceiter_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xa7ca2082 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xa7ced961 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa7f537ca __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7f6ee8f skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xa7fcc4f6 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xa7fdbe1e scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa801d30d usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa802ad79 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xa802efce regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xa80b79fc crypto_clone_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa81a1357 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xa81b0cea tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa82ccd0e iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xa8516544 device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa85fc9be phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xa8694c48 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0xa87a54d2 pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0xa8802f88 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xa87c55c6 usb_urb_ep_type_check EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next -EXPORT_SYMBOL_GPL vmlinux 0xa88bb32b wm831x_auxadc_read -EXPORT_SYMBOL_GPL vmlinux 0xa895929a __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa88671a3 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xa88d10de devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa88ee5bd qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0xa8957787 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0xa8a3170e clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xa89d5bb8 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8a7a490 devl_rate_node_create -EXPORT_SYMBOL_GPL vmlinux 0xa8a854b9 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0xa8fa1663 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa90e4433 wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0xa910e904 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xa9264eef ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0xa92880c9 __blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xa92cfee3 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xa8a67a59 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xa8a74b24 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xa8ae3a99 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa8c4c623 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0xa8c4fc9d dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa8d73d9c class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa8eb02a7 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xa8f97178 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xa909a7b5 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa90e66e7 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xa90f1863 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa91e9b67 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa92a3697 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa9386130 pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xa944d905 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xa94b5353 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0xa95582c1 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xa956ffde power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xa9370f08 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xa939e4c7 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xa942c94a led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xa951ec08 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa952a1e5 __kvm_set_memory_region EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa96c50fd tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xa969d23b component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xa96d3a18 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xa96d51e2 sk_set_peek_off EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa992a2ec attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xa97b9840 tcp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xa993e546 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xa99b8968 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9ac9ccd pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0xa9bc2b98 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0xa9bfc09b fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xa9d120f5 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0xa9d39679 mtk_clk_simple_remove -EXPORT_SYMBOL_GPL vmlinux 0xa9ddb2d5 fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0xa9f72c4e nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0xaa052d1b i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0xaa0ba8e8 of_get_named_gpio_flags -EXPORT_SYMBOL_GPL vmlinux 0xaa161fb8 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0xaa1bf58e ata_port_pbar_desc -EXPORT_SYMBOL_GPL vmlinux 0xaa29d0dc vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xaa2c0f68 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xaa32d04b ata_std_postreset -EXPORT_SYMBOL_GPL vmlinux 0xaa3f65b8 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaa47ddf7 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0xaa48e5d2 sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0xaa4d92a7 linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0xaa563e78 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0xaa62465f skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0xaa670446 acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xa9a1b44d pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa9a8336d kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xa9b41b01 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xa9c843e8 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xa9cedf14 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xa9cf2bb0 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xa9cfe0d8 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xa9f99931 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xaa09030a ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xaa0f08da iov_iter_extract_pages +EXPORT_SYMBOL_GPL vmlinux 0xaa28d672 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xaa2ef5f4 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xaa393cc6 mas_preallocate +EXPORT_SYMBOL_GPL vmlinux 0xaa3e30e4 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xaa582896 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xaa67623e switchdev_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa8621cc dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xaa8638ed acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0xaa946b6c acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xaaa59c1e regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaa721593 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xaa7ffaa2 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaab053fb iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops -EXPORT_SYMBOL_GPL vmlinux 0xaaba93c6 devm_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0xaabdbfb2 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0xaac575eb fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0xaaccac40 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xaad4b039 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0xaadb223b gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xaadd634d __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xaadfb827 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0xaae4712c key_type_trusted -EXPORT_SYMBOL_GPL vmlinux 0xaaf68213 usb_hcd_start_port_resume -EXPORT_SYMBOL_GPL vmlinux 0xaaf9f4f7 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaba7cf1 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xaac9bd24 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xaae0d8be devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xaae6a425 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xaaf3b2ae dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xaafa2848 gfn_to_memslot EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab0ff87e ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xab087aa2 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xab15a41a gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab2f9854 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xab48bace icc_disable -EXPORT_SYMBOL_GPL vmlinux 0xab4960eb devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xab4d10c7 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0xab521aa1 mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0xab57212a xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0xab7e1e90 devm_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare -EXPORT_SYMBOL_GPL vmlinux 0xab917ce9 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xaba309ae inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0xabb3695e cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xabb677bb __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xabbaa24f tps6586x_read -EXPORT_SYMBOL_GPL vmlinux 0xabc31e33 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xab216262 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xab297385 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xab2be659 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xab2f0808 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xab3c6b30 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xab429bfa battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xab6f0ded __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xab738daa kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xab80ac64 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xab8101e7 acpi_device_fix_up_power_extended +EXPORT_SYMBOL_GPL vmlinux 0xab892976 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xab8d9e59 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xab8f7112 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xab90de03 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xab995428 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xab99ae77 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xabaa8415 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc66761 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabf76380 acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xabfbb949 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0xac0ec157 event_triggers_call -EXPORT_SYMBOL_GPL vmlinux 0xac2614c5 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0xac3c0c79 hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xac3e0c4e inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0xac448246 __acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0xac44d771 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xac461176 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0xac5cf9c3 regulator_count_voltages -EXPORT_SYMBOL_GPL vmlinux 0xac63edc1 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0xac6bad19 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0xac950136 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0xaca41a45 mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL vmlinux 0xabd57936 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xabe4be86 cdx_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xabeca2d4 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xabfc1d8b __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xac04da79 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xac156d07 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xac1753c0 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xac324fca crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xac400faf usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xac57778d vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xac5b5097 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xac5e9309 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xac6733a6 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0xac690f3c simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0xac7872d0 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xac7df4ef usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xac846aa0 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xac85d58f irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xac85e857 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xac8625f2 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0xac8d6adc devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaca7e855 rtnl_put_cacheinfo EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacbe5fbd rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xacb90944 debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xacccd371 register_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0xaccd1545 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0xad096cc4 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xad287ca1 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xaccbc238 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0xacd98f50 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xacfcfa58 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xad12d046 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xad189088 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xad1d5aa7 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xad242d87 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xad36eb5d pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad40f52a devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4b259d sysfs_remove_mount_point EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad4fac3f get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0xad5b1489 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xad549c45 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xad62dc7d mtk_eint_do_resume EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6e7d65 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xad710962 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xad73aae7 led_trigger_set_default EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad77fde3 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xad7ea03f fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xad83991d __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xad941a94 vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xad9cde74 ahci_platform_find_clk +EXPORT_SYMBOL_GPL vmlinux 0xad98fd01 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xad9b522d sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr -EXPORT_SYMBOL_GPL vmlinux 0xada06fc7 i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0xada2d87b fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xada3ed8f __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0xada7c33f wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0xada7fb77 crypto_stats_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xadaa9d9b bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0xadb0893f pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0xadb0aedb ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xada3d73c fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xada3f53e regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xada4c429 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xada62c1e pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xadb3c776 fsl_mc_object_allocate EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xade8a261 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xadeb7b2a sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xadebbb2a ata_bmdma_dumb_qc_prep EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xadfec30c tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae02e3d0 devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0xae0c3af6 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xae060d27 cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae151e01 regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0xae1c79fe hv_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0xae2258ce reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xae1ea9a1 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xae25af54 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xae3590d8 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3aeab3 pci_iov_vf_id -EXPORT_SYMBOL_GPL vmlinux 0xae3b81e5 devlink_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xae55ca3f devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xae678ad6 backing_file_open EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6cb79c pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0xae72d8c1 pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xae747e75 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xae7afb77 devlink_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae7c2673 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0xae8dd9e4 pm_genpd_remove -EXPORT_SYMBOL_GPL vmlinux 0xae9a8ba5 thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaebd51ed kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0xaed79364 ping_close -EXPORT_SYMBOL_GPL vmlinux 0xaed8661f md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0xaedb2236 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xaee9d335 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xae8e196c gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xaeb40f60 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xaeb7294b ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xaeb82bdb dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xaebe46dc edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xaed35da6 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0xaed62346 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xaed753cb rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xaedb6b7b da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xaee195b8 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xaee23eb5 ma35d1_reg_clk_pll +EXPORT_SYMBOL_GPL vmlinux 0xaef44589 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xaefe31e0 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xaf02bc5a mtk_pinconf_adv_pull_get EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf0dc59d sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xaf1340e8 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xaf1c0aeb iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf376e62 handle_fasteoi_ack_irq EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xaf3a58f1 devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf3cc269 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0xaf3ed93e srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf401684 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xaf56fc70 dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0xaf5aae52 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xaf7296fb inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaf48884e kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xaf5b785f crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xaf5db0fc pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xaf6d1428 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xaf72e79f vfs_get_acl EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf838884 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xaf7ad94c __SCK__tp_func_ipi_send_cpumask EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf92d826 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0xaf9fef8f genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaf8661c2 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xafa0912b serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xaface96d unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafbcfdb9 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0xafc89928 memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xafd0381c regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xafdc2d0d devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xafcd1cb1 vcap_chain_id_to_lookup EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe8c88b regulator_get_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xb002dc70 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xb0061823 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb02708d7 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xb00b5389 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xb00c74d3 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb00c920d pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xb0199f4c mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb030e590 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xb0402766 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xb045dcee __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0xb04e23a8 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0xb05a1362 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb0657a9e xen_register_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb0769dd5 devm_regulator_bulk_get_const EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0xb07cb51e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xb0802f90 __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb08ad7d4 iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xb08e0a6a ip_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0xb09193b0 usb_role_switch_find_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xb09553de vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0xb0964865 bsg_job_put -EXPORT_SYMBOL_GPL vmlinux 0xb0aefeb4 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xb0b23cfb debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0xb09c6261 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xb0a50179 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xb0af98dc pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xb0afa7dd cdx_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0b8ca38 edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xb0c12104 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xb0c3f315 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xb0c7da2d ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb0cf2c07 mmc_send_tuning EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array -EXPORT_SYMBOL_GPL vmlinux 0xb0d37898 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xb0d623f4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0da0f9c genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb0e26491 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xb0e3a6ab ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb0e7ab1f __traceiter_console EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0ee51ba usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0xb0f1bf93 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xb0f41b46 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xb1021951 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xb10599dd mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xb0fdeb60 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb112007f ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb1237326 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0xb12e365c tegra_bpmp_mrq_return -EXPORT_SYMBOL_GPL vmlinux 0xb1462393 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xb1471356 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xb14aa3de handle_fasteoi_nmi -EXPORT_SYMBOL_GPL vmlinux 0xb1568ed9 irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xb15e96d5 balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0xb13837ce vcap_rule_add_key_u48 +EXPORT_SYMBOL_GPL vmlinux 0xb140d4b3 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb17047f6 fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0xb178501c fsnotify_put_group -EXPORT_SYMBOL_GPL vmlinux 0xb17b9c9f ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0xb17f68b3 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xb18b8567 regmap_get_reg_stride -EXPORT_SYMBOL_GPL vmlinux 0xb1b83a9a hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0xb18ffca9 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xb1929c19 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xb19f538b devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xb1b3f6ed phylink_mii_c22_pcs_decode_state EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1cdcbd1 phy_get_rate_matching -EXPORT_SYMBOL_GPL vmlinux 0xb1e20b28 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xb1bf22cc dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xb1c1be32 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xb1c4f146 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xb1dfecea power_supply_battery_info_properties_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e7e00d spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xb1e8c609 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string -EXPORT_SYMBOL_GPL vmlinux 0xb201e536 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert -EXPORT_SYMBOL_GPL vmlinux 0xb20c6594 meson_clk_cpu_dyndiv_ops -EXPORT_SYMBOL_GPL vmlinux 0xb211f104 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xb219335d page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xb2147676 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xb2185122 __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb21f18fc folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xb22007f9 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb228d619 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0xb23059a3 regmap_read -EXPORT_SYMBOL_GPL vmlinux 0xb23073bf mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb22b91e4 meson_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0xb23c4cc0 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0xb23db07d posix_acl_access_xattr_handler EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24a6e65 rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0xb253a1e8 acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xb2585e08 dw_pcie_own_conf_map_bus -EXPORT_SYMBOL_GPL vmlinux 0xb2636a0c gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xb2415539 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xb25431fd devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xb256be16 efivar_is_available +EXPORT_SYMBOL_GPL vmlinux 0xb259151e imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0xb260d7d5 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xb261bd19 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb2680dc0 hte_push_ts_ns EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26fd2ef unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0xb2704b30 dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xb27328d8 virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0xb273d84d component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0xb283d50e fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0xb272a98c crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xb2740c52 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xb27c5c9c of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xb28f49ec __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb2903a32 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb2943ca6 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb2bf7473 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xb29840ac cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xb29e1ad8 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb2a002f7 hid_bpf_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xb2a0695d usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xb2aa80b2 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait -EXPORT_SYMBOL_GPL vmlinux 0xb2c1b392 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0xb2dee52f hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xb2da1e59 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb2e74a8d crypto_akcipher_sync_prep EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2e8d7ef dw_pcie_ep_raise_legacy_irq -EXPORT_SYMBOL_GPL vmlinux 0xb2f17f08 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb2fe8db2 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xb3010491 samsung_sdi_battery_get_info -EXPORT_SYMBOL_GPL vmlinux 0xb3021ef3 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xb2fb6a06 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb30c1323 ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xb30ee423 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0xb335050a devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0xb3374001 of_reconfig_get_state_change -EXPORT_SYMBOL_GPL vmlinux 0xb33ea5e9 devm_mipi_dsi_attach -EXPORT_SYMBOL_GPL vmlinux 0xb341b6c2 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0xb343ce71 power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0xb34cc54a pci_p2pmem_virt_to_bus -EXPORT_SYMBOL_GPL vmlinux 0xb34eb076 fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0xb3592a2f tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0xb36ce353 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0xb36e450e iort_get_rmr_sids -EXPORT_SYMBOL_GPL vmlinux 0xb3730f5b sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xb377e841 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb3783467 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0xb38da735 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0xb3a173a5 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0xb3a48b54 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xb3bedf07 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0xb3cb5e6f dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xb3ceb4f0 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xb3f532e4 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xb3f7e7c4 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xb31ab4c7 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xb3270a7e __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xb333e910 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xb338ceba sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xb340737a blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xb3504d1c usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xb36419b1 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb36908dd ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xb379d1b8 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb37b41d1 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb3819381 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xb3844029 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xb393a3ab cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xb3ab03af regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb3be85ac irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xb3c61919 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xb3c9eaef irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xb3cd48fd dprc_close +EXPORT_SYMBOL_GPL vmlinux 0xb3d50867 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb3dbccfb devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xb3e99901 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb3eb6415 dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0xb3efdc97 param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xb3ff9f3b fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0xb405da67 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb41c0dc6 nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xb42075c5 xen_find_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xb43754c1 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xb4126d72 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb424175a ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xb42eeade crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb4309e17 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb43cf918 xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb44152d7 usb_hub_claim_port -EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0xb44dcb9c of_clk_hw_simple_get EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb453bee4 iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xb46dce0c bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0xb46e7474 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb463ea19 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xb46ce20b md_run EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event -EXPORT_SYMBOL_GPL vmlinux 0xb48f8db5 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xb49f6c1e ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0xb4b70fc3 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0xb4b88852 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb4ac6a06 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4bd0adc sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0xb4c736a1 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0xb4cb34be devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0xb4e07216 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xb4e30812 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xb4cd4c43 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0xb4da3733 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb4e6d2b3 exportfs_decode_fh_raw EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length -EXPORT_SYMBOL_GPL vmlinux 0xb4fd4159 fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0xb4efccee blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xb4f3a8f1 md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb502f62b dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0xb507ef94 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb51db6f7 lochnagar_update_config EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520ddce of_changeset_action EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb53434f9 vchan_find_desc -EXPORT_SYMBOL_GPL vmlinux 0xb5356f83 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xb54a460d debugfs_file_put -EXPORT_SYMBOL_GPL vmlinux 0xb54ca315 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb522acc5 devm_led_get +EXPORT_SYMBOL_GPL vmlinux 0xb532ea29 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xb5334698 pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0xb5464b1d vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xb5473c70 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xb55c9a8f mtk_clk_register_cpumuxes EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb57c6fa2 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xb570745c __SCK__tp_func_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xb59e702b mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb5949429 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a453a6 genpd_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5ae2a91 spi_target_abort -EXPORT_SYMBOL_GPL vmlinux 0xb5b26be2 filemap_migrate_folio +EXPORT_SYMBOL_GPL vmlinux 0xb5b065fa to_software_node EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5c7ec10 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0xb5d8c950 xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0xb5e1dabe class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xb5eba170 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xb6064564 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xb6064c72 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0xb61c26a3 gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xb61d98f7 vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb5cacdce pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xb5e00e92 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xb60a13d6 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb6179919 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xb617c74d mtk_eint_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63341d8 i2c_detect_slave_mode EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6358fea clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0xb63a59d0 bdev_nr_zones -EXPORT_SYMBOL_GPL vmlinux 0xb63e533a ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb6568a1b __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xb65e6b08 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0xb6653fd9 devres_get -EXPORT_SYMBOL_GPL vmlinux 0xb66722ee ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xb66b127a iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xb656c3f0 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xb66e187b devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67d10de skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xb689d4a0 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xb68cebd2 usb_control_msg -EXPORT_SYMBOL_GPL vmlinux 0xb698a31e rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xb67b7bdf device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb68ace8e gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb6a0a653 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xb6b0df03 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0xb6d20594 tpm_calc_ordinal_duration -EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xb6d562bc vcap_find_keystream_keysets -EXPORT_SYMBOL_GPL vmlinux 0xb6dba0ee blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xb6dbf8df scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb6a66d74 inet_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0xb6b46528 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb6b6fd83 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xb6bb90c1 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xb6c82036 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xb6e2eba8 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6f68025 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xb6fe26d9 wm8350_clear_bits -EXPORT_SYMBOL_GPL vmlinux 0xb7093b16 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0xb7193d5f bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0xb729d748 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0xb72c005c of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xb6f764de devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6fa70e8 shmem_read_folio_gfp +EXPORT_SYMBOL_GPL vmlinux 0xb70dae6a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb70f0334 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xb721885d blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb73096f4 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb7618f58 ext_pi_type3_crc64 -EXPORT_SYMBOL_GPL vmlinux 0xb76fdeef devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb7385e55 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb73db2cb vcap_enable_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73eb609 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb7427a9b serdev_device_break_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb7468f20 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb75603cb dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb7674bcf irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xb76e72de rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb7745cbe fwnode_get_next_parent EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb7993e3e iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb78c55c1 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb7939e33 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xb794fdd2 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xb794feac regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0xb7b17711 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xb7b2f078 blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xb7b34c50 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb7c25f6f dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7a671b4 gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0xb7d3e335 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb7c8d95a proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xb7ca8e07 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb80095b0 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0xb80ed08f fsl_mc_bus_dpseci_type -EXPORT_SYMBOL_GPL vmlinux 0xb8187431 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xb826c38f br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xb7f9ebac devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xb7fbf695 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xb7fc9a24 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb7fc9b25 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xb802cba8 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xb80914fa sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xb81a3135 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xb822d9d0 scmi_device_destroy EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb8329e89 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xb84dd8ff ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xb82a68bb tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xb837b54f firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xb844cffe bgmac_enet_suspend EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0xb8673b83 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xb851db06 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xb85a2f1d regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb861f729 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb8698275 dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll -EXPORT_SYMBOL_GPL vmlinux 0xb879a656 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0xb87c093a xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb897a99d fsnotify_put_mark -EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb895f135 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xb89cbe49 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb8a97b46 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0xb8b17f2a gen10g_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xb8b3ac9a pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8b97fec __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xb8bb72ca sprd_pinctrl_shutdown EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8db760e ahci_reset_em -EXPORT_SYMBOL_GPL vmlinux 0xb8eed0d5 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xb8d6cf72 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xb8d932d7 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xb8dd451e bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xb8ed5b8b vp_legacy_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8f60bdb of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xb8f5fae5 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xb9004bf5 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb9008296 thermal_zone_device_priv +EXPORT_SYMBOL_GPL vmlinux 0xb9075a1b phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL vmlinux 0xb90a58d0 phy_exit EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb9249b04 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0xb92509cb inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb917ce6f usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb9201991 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb93abc06 dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb94ad104 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xb959de36 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xb9413c39 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xb951bf5f __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb95fc18e xen_dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb9686275 phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xb96ba169 extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xb96bda3d bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0xb96dcfb4 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0xb977fc54 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0xb9804fda devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb980dc42 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xb98c742c ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xb98ea535 trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xb99579b9 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xb98ca40c imx_pinconf_set_scu EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xb9a6474e trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0xb9abe2a8 tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xb9b08928 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xb9b11d33 clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xb9b6072c devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xb9b87513 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb99db974 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xb9a26c42 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xb9a3b8a3 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xb9a4942a devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb9ab825f tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put -EXPORT_SYMBOL_GPL vmlinux 0xb9bb4588 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xb9bc6539 of_irq_to_resource EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index -EXPORT_SYMBOL_GPL vmlinux 0xb9c299c8 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0xb9c38de4 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xb9c2b9c7 fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xb9c3172c regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c94fc9 inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xb9ce13bc power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb9cd63e9 bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9d3bbd5 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0xb9d78c6e vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0xb9e4bb04 regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xb9ecbf5f devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xb9ed0d65 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xb9feeabc rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0xba174f12 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xb9df9687 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xb9eb6774 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xb9eba2f9 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xb9f8a06a iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb9fcfb04 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xba06a0d6 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xba1fe21c sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xba282bf6 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xba2a2efa reset_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba3e0946 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xba4f8524 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xba5f886f regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xba716ee0 regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0xba7831cc regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xba8bc4dd devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xba96b348 phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0xbaa3eecf amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0xbaacd13c thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0xbab5f6dc mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xba2b893e irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xba3bc09a watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xba46396c virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xba5348aa icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xba66e5c4 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xba6eb67d __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xba77f39a hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xba7f718a i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba8b9599 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xbaa4c661 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xbaa85033 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xbaac72d5 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents -EXPORT_SYMBOL_GPL vmlinux 0xbabfc55b of_reserved_mem_lookup -EXPORT_SYMBOL_GPL vmlinux 0xbac3522a __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xbad16255 rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbaf516ef rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xbac94448 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xbacaec0a crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xbacd0570 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xbad9820c acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbadd634c devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xbae5acd7 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbaf57d04 pci_pr3_present EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed -EXPORT_SYMBOL_GPL vmlinux 0xbaf85b1e of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xbaf9984e device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbafba542 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xbafe5fea dma_free_pages EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register -EXPORT_SYMBOL_GPL vmlinux 0xbb055638 led_trigger_read -EXPORT_SYMBOL_GPL vmlinux 0xbb08b22a devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xbb066357 xenbus_frontend_closed EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb1f1b5d dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0xbb220ab9 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xbb0bdc23 put_device +EXPORT_SYMBOL_GPL vmlinux 0xbb0f990b inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb113446 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xbb12ffb8 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xbb14e7d9 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0xbb1608d7 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xbb1a92f4 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xbb1ea461 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbb1fb0cf mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xbb1ffcd2 iomap_invalidate_folio EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb278684 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xbb3c190e mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xbb2bbe50 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xbb3cfdb5 divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb440ad9 blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0xbb5b24e1 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xbb5e0471 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xbb469f24 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xbb4ff325 spi_mem_exec_op EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb67cb3b spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6e3e60 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb7c493e dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xbb7322cc ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xbb7dd63e replace_page_cache_folio EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbb947bc4 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0xbb9781eb ahci_shost_groups -EXPORT_SYMBOL_GPL vmlinux 0xbbac120f vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0xbbb40070 fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put -EXPORT_SYMBOL_GPL vmlinux 0xbbd1c11c serial8250_em485_stop_tx -EXPORT_SYMBOL_GPL vmlinux 0xbbddeb67 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0xbbe2771f pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xbb82b8b2 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbb9cdc8c regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xbb9fd688 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xbbdbcad6 rio_release_outb_mbox EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbf1fda3 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xbbe5a485 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xbbe62723 cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config -EXPORT_SYMBOL_GPL vmlinux 0xbbfdad1e extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbbff2976 vp_modern_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xbc1ca93c clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xbc0fcdd6 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0xbc19da0f amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xbc1aa136 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xbc2330f9 devl_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc374e18 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xbc3e6eb6 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xbc376c68 mtk_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc61962d pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xbc420b4a usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xbc422847 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xbc4fbf65 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xbc52a2ae __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xbc56ae48 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc58f2bc pci_destroy_slot EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc7d5954 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xbc87a1b3 devl_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xbc8a7f48 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xbc78bd1e crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xbc88fe10 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xbc8ad063 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbc91a799 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xbc97c889 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbc9a9407 fsl_mc_portal_allocate EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbca7b3c2 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbcbc6df7 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xbcbf6201 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xbcc13a9f of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcd45805 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xbcc3a7bc fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xbcda0004 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xbcdc2fda devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xbcdc7828 xen_unmap_domain_gfn_range EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce83fbc usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbceb6cac dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xbced5c98 phy_configure EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcffad58 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xbcf8638b devres_add +EXPORT_SYMBOL_GPL vmlinux 0xbd00be84 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd0590b0 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd07e00b fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xbd0f6bd1 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xbd2daf19 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xbd0cbb3f fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xbd12ec46 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xbd1d08ee tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xbd58a136 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0xbd6a5ab6 regcache_mark_dirty -EXPORT_SYMBOL_GPL vmlinux 0xbd798f6a clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd5819b3 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xbd6935f7 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xbd74f50a thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd85b115 dst_cache_set_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xbd8edf94 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xbd950d82 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xbd9db776 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xbda002df power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbda0ccf2 lwtunnel_build_state -EXPORT_SYMBOL_GPL vmlinux 0xbdae9436 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xbdc1b97d screen_pos -EXPORT_SYMBOL_GPL vmlinux 0xbdc2c399 dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xbdd947d0 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0xbdb681ed irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xbdd40f21 acpi_dev_state_d0 EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbde414d6 dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0xbdec7523 __bio_release_pages -EXPORT_SYMBOL_GPL vmlinux 0xbdf58001 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbddabf8d cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xbddebb54 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xbe0e6e25 dw8250_do_set_termios EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll -EXPORT_SYMBOL_GPL vmlinux 0xbe221149 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbe38e3ac acpi_device_fix_up_power_extended -EXPORT_SYMBOL_GPL vmlinux 0xbe3d28cf mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xbe421f39 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xbe1bc256 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xbe228e54 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xbe28946a ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xbe292db0 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xbe295672 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xbe2f6816 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xbe3a90c2 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xbe413d8b led_classdev_register_ext EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0xbe5d6df4 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xbe65329d crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xbe67f7ba mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe8898de of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xbe88ceba ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0xbe8b94da dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0xbe91d9af __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xbe9454d3 sdio_claim_host -EXPORT_SYMBOL_GPL vmlinux 0xbe9508c0 tegra_mc_get_carveout_info +EXPORT_SYMBOL_GPL vmlinux 0xbe8b7dbe i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write -EXPORT_SYMBOL_GPL vmlinux 0xbe9c8137 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xbe9e1657 dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0xbea5599b ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0xbea59373 vcap_rule_add_action_bit EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbea6c24a tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0xbeacbdaf alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbeebcc1e rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0xbf03dcf2 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xbec672f5 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xbee2f622 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xbef74c00 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf021f09 pm_runtime_autosuspend_expiration EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0ab857 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbf153800 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xbf22271e inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf3e2096 da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf403872 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xbf3107a1 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xbf372cbb ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xbf404213 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf485196 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0xbf495b40 usb_urb_ep_type_check -EXPORT_SYMBOL_GPL vmlinux 0xbf523b3f fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xbf550723 fs_dax_get_by_bdev -EXPORT_SYMBOL_GPL vmlinux 0xbf55b6e6 icc_put -EXPORT_SYMBOL_GPL vmlinux 0xbf5f149d sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0xbf6513a8 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xbf67355f regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xbf6a149e dpbp_reset -EXPORT_SYMBOL_GPL vmlinux 0xbf6fca95 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xbf7c25f9 gpiod_set_raw_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xbf870e29 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xbfa2bd8f clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xbfa4263f tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xbfb43d3f blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0xbfb9863e kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbf487c72 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xbf709887 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xbf70bf1e msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xbf7ce7bb nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xbf8f63be phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xbf9880c5 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf9ac701 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfa65d0c ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xbfb2802a dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfbd76d3 da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xbfbf9ead firmware_request_cache -EXPORT_SYMBOL_GPL vmlinux 0xbfc32929 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0xbfcb1492 pinctrl_dev_get_devname -EXPORT_SYMBOL_GPL vmlinux 0xbfcce981 usb_set_interface -EXPORT_SYMBOL_GPL vmlinux 0xbfcffdcc kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL vmlinux 0xbfd4a971 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xbfdf62a7 fuse_abort_conn -EXPORT_SYMBOL_GPL vmlinux 0xbfe1084a rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xbfbe9666 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xbfbf3fe8 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xbfc37e37 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xbfd36997 device_attach EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0xbfe61aa9 gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xbfe674e8 ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0xbfe829ad i2c_probe_func_quick_read -EXPORT_SYMBOL_GPL vmlinux 0xbfebed87 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xbfeb5c36 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xc01b38e2 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xc01d6c30 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xc02750c3 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0xc0369701 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0xc0410c52 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xbffa1bd3 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0xbffb6080 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xc002c14b devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xc01087c2 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc012c2b1 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc01bcb10 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xc0229795 ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate -EXPORT_SYMBOL_GPL vmlinux 0xc04ea6fb __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xc0584cbe gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc05036a1 vcap_port_debugfs EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc05e38f2 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xc068ab3f __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0xc06c5ab2 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xc074f1f7 power_supply_set_property -EXPORT_SYMBOL_GPL vmlinux 0xc07d7cb9 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc0828d2b gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xc083ba47 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc06a86fb platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xc073881c regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xc0755fdf iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc0872508 nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc098888f iommu_group_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xc0994fca dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0xc0999dd3 clkdev_create -EXPORT_SYMBOL_GPL vmlinux 0xc09e48e7 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xc098af49 pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base EXPORT_SYMBOL_GPL vmlinux 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ae4f89 call_hid_bpf_rdesc_fixup +EXPORT_SYMBOL_GPL vmlinux 0xc0af95ac ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0be6edd clk_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xc0beeb06 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc0b44752 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xc0b7cbf5 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0xc0b7fd0a devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc0c4f78e udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc0ca4004 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xc0ca4225 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xc0d201a1 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0e41cf6 pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc0efe945 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xc0e1cec8 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xc0ee89d7 tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc1001864 pm_generic_resume_noirq -EXPORT_SYMBOL_GPL vmlinux 0xc106f494 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xc0f8d425 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xc0fa6002 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xc0fa9c83 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xc102dc52 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10d5a50 devm_gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0xc117f76a iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0xc122686c nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0xc12d2b26 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xc13214d2 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xc13d86ef of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xc1486293 phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL vmlinux 0xc14c7516 sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xc150fcc7 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0xc15ea6ad phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xc1170639 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1233010 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1265603 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc12fc771 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xc136b62f inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xc148a0cf dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xc1544081 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xc15e7f6c vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xc16ec787 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xc17303d0 vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17e1da1 bio_iov_iter_get_pages EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc194191a of_pci_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0xc1a136e0 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xc1aae7ea firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0xc1b77f6f bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xc186cdc8 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc1975588 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xc19b2437 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc1a35917 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes -EXPORT_SYMBOL_GPL vmlinux 0xc1d40bbd of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xc1d7e245 pm_clk_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc1d8b7ec pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xc1da5265 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc1e2fd40 clk_gate_restore_context -EXPORT_SYMBOL_GPL vmlinux 0xc1e5303b sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xc1e4d083 virtqueue_get_avail_addr EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1fd0840 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0xc20fe8fd cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc1ed96d5 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xc20b3059 vcap_del_rules EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22a6b39 crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc23b08bb dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xc23cd17b debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc25aaaf9 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xc24d510c iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xc251b139 balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0xc25daf76 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xc25d16ed __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc2678012 of_phandle_iterator_next EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc269fb46 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xc283c6f0 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xc277a2ec spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xc287c83e __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc289f3bd devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc28a730c pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a5af5a nop_posix_acl_access EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b46e02 clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2aebf8a __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xc2ba3357 cdx_dev_reset EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2d87bec of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc2c4e366 perf_report_aux_output_id +EXPORT_SYMBOL_GPL vmlinux 0xc2d0f2e7 mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc2d59f75 usb_driver_set_configuration EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e76115 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0xc2f0432b rpi_firmware_find_node -EXPORT_SYMBOL_GPL vmlinux 0xc2f8686d pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0xc2fe5d27 fscrypt_limit_io_blocks -EXPORT_SYMBOL_GPL vmlinux 0xc301ffd2 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0xc317906a of_modalias_node -EXPORT_SYMBOL_GPL vmlinux 0xc32a396d pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xc332284e crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0xc33f6bde sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc2e23c8d devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xc2f49215 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc3035e1b dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xc3167fdc regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc31883fb regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc31f488b mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc339daae phy_calibrate EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3446872 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xc34977b3 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0xc34e4a47 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xc341c4e2 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc3437834 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xc34bccc8 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xc36dfa37 __fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc36f90e8 ahci_do_softreset EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc37cb73c trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc3796eb4 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xc37e0f2b gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xc37f37b8 gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc383f73a divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc388df68 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0xc39484a6 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc3990b6a blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc3a01bb6 dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xc3c1e6da devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xc39e25d5 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xc3a9e394 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xc3b07cda relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax +EXPORT_SYMBOL_GPL vmlinux 0xc3b9e8a9 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc3c0c19f pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c674c7 of_get_display_timings -EXPORT_SYMBOL_GPL vmlinux 0xc3c97eda __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0xc3cd6929 dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0xc3d82a8c kthread_flush_worker -EXPORT_SYMBOL_GPL vmlinux 0xc3d9de87 vfs_get_acl -EXPORT_SYMBOL_GPL vmlinux 0xc3dcaf04 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xc3d4eec2 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0xc3d86eac regulator_register EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3ec5097 hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xc3f0bb7b ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0xc4112bb4 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc420333a usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0xc4210dc7 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xc4025c55 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0xc40e9f5d tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc4113745 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc418f726 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xc418fd35 fib6_get_table EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc42dbf2a vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0xc43d165f bsg_job_done EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc4400db2 mctrl_gpio_init -EXPORT_SYMBOL_GPL vmlinux 0xc4474dc2 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0xc44a7302 phylink_generic_validate EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc44b9c84 devl_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc44d70c3 iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xc451ee8c gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xc44f7fbe vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45a1097 tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc46ee7a4 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xc46355e8 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xc468ed9d icc_link_create EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc472c0bb of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xc49698a7 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xc49d434e pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xc4a098ae ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc47fdaed pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xc4903237 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc495dd52 failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc49fb22f fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xc4a2ced1 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4b456c8 sdio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc4ba7713 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0xc4c9a140 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xc4cd2249 iommu_fwspec_free -EXPORT_SYMBOL_GPL vmlinux 0xc4cd8bc5 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0xc4e06aff fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0xc4e4d8b3 dax_region_put -EXPORT_SYMBOL_GPL vmlinux 0xc4f0669d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a7906c xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc4ad3ab0 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xc4ad622a virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xc4b63e66 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xc4ba9aeb zynqmp_pm_fpga_get_config_status +EXPORT_SYMBOL_GPL vmlinux 0xc4bdfc5a net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xc4cd648e ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xc4d5e0e8 acpi_gpio_get_irq_resource EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4f24f5b vp_modern_set_status -EXPORT_SYMBOL_GPL vmlinux 0xc509a574 tcp_sendpage_locked -EXPORT_SYMBOL_GPL vmlinux 0xc50dc8b5 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xc5005bcb perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xc5063ddc nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc51c0b3a kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0xc51cbf2f regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xc53f8718 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0xc5487f52 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xc5498a6c skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xc514b252 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xc51b81a6 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xc54a7671 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc54d23ab init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc564a756 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc5643eed mtk_pinconf_bias_set_combo EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56da259 trace_event_reg -EXPORT_SYMBOL_GPL vmlinux 0xc5706fee ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0xc5773276 fsl_mc_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57bbd2a mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0xc57f835f kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0xc58550a9 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xc57d6427 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xc582e1a8 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xc586129f i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc59da3c0 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xc5a25efd usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xc58b8ae2 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xc5918411 devl_params_register +EXPORT_SYMBOL_GPL vmlinux 0xc596ebdc sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xc5a1204c serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5bdaeb9 rockchip_clk_of_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xc5beddb2 dev_attr_ncq_prio_enable -EXPORT_SYMBOL_GPL vmlinux 0xc5ceb9c4 icc_provider_add -EXPORT_SYMBOL_GPL vmlinux 0xc5d28382 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xc5d31dd1 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0xc5ddbbb9 of_k3_ringacc_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc5ecd090 irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0xc5f14859 devfreq_event_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xc60a8adf __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xc5ae66d4 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xc5b06fd4 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xc5b221d6 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xc5caeb66 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xc5d2ff8f skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc5d41ebf acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xc5d6b143 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0xc5d9a126 unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xc5df93c8 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc5ef796c usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc6043823 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xc6072d03 ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0xc6245bde cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xc624ab51 dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc62d36af __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xc644eb36 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc6318678 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc634660c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xc636d60f __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc638e718 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xc63d68c5 acpi_dev_pm_attach EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xc653cf52 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0xc6562a0c devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65a71d2 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xc65ed0b2 irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6704444 of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xc675006d virtqueue_kick_prepare EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable -EXPORT_SYMBOL_GPL vmlinux 0xc679a279 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0xc688c6e7 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0xc68aee32 sdio_align_size EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0xc68defba folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0xc69751a3 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc68ef4a0 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read -EXPORT_SYMBOL_GPL vmlinux 0xc69ad694 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool -EXPORT_SYMBOL_GPL vmlinux 0xc69ec59b icc_link_destroy EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6ad0400 devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0xc6b4833b sbitmap_show -EXPORT_SYMBOL_GPL vmlinux 0xc6d96afc crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc6b563cb mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xc6bc1068 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xc6bd5117 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6d8f400 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6d931db ahci_platform_resume_host EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6eff143 cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xc6f4248d input_class -EXPORT_SYMBOL_GPL vmlinux 0xc6f782ad sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xc6fb5538 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xc6fee8c6 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0xc6fef1fe crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc6e786c0 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xc6ecf6e9 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xc6f5ecd2 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xc6fddc1c devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc706afad __devm_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc7224d2f devl_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc739cbe6 wm831x_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xc73ab818 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xc75b92fc __traceiter_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xc7662697 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xc70c061d driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xc716a650 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc724035a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xc740031d tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xc74c07ce cppc_get_epp_perf +EXPORT_SYMBOL_GPL vmlinux 0xc7540a57 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xc75a50c2 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xc7634086 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xc7643c53 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc775b708 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc77ec6d7 tty_port_register_device_serdev EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78c6ff1 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc79380a6 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0xc79bba44 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xc7957c69 irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a5c93a ehci_hub_control EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7abc4bc k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc7aee7f9 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0xc7bb5292 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xc7b6eadd dm_accept_partial_bio EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7cf0e90 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xc7dbfb31 phy_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0xc7df3705 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xc7e10fb4 max8997_read_reg EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer -EXPORT_SYMBOL_GPL vmlinux 0xc7f60a8e usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc7edc024 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0xc7ee0fac pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xc7f2b752 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xc7f973e5 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8093a13 fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0xc809f447 __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0xc80bd8af sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc817950a mnt_user_ns -EXPORT_SYMBOL_GPL vmlinux 0xc8241b6e __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc815c870 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xc81fd2ce xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xc827c4fb nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc8307f60 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xc8363d8b rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xc834701f ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc84c7381 dma_run_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xc84e5a3b nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc8512c13 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xc858ac79 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0xc83e49f2 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc849fde8 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xc8507df7 vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85a5b97 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xc85fe6e6 gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc892a200 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xc8950e12 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0xc8a1d170 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xc8b0c5c8 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0xc8c8889d crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0xc8c8c946 tpm_tis_core_init -EXPORT_SYMBOL_GPL vmlinux 0xc8d831c0 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xc8d9b884 debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0xc8ddc2f4 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc8812bc4 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xc88ee2a7 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xc89309fc cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xc896369e trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xc8a465f7 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xc8b72810 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xc8b72b2c rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xc8bfd690 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xc8c09d5e ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8c133db dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc8c2217a adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xc8d5a411 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xc8d64f05 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8de76c8 mtk_clk_unregister_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0xc8e3fad5 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xc906e8db ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0xc9074a73 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0xc90d166e inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xc91a9657 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc8ed325f cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xc8f905c1 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xc8fe6943 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xc8ff49b3 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xc91f38d0 kvm_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc92fc58f alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xc9311ca7 dma_resv_iter_next EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9406773 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xc9431bd9 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc9553a38 backing_file_real_path EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc959d825 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xc95b4226 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xc95ad51d __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xc95d9295 fat_time_fat2unix EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 -EXPORT_SYMBOL_GPL vmlinux 0xc964c3d5 dev_pm_set_dedicated_wake_irq_reverse EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc97a6dd6 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xc9778397 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc987e4ea imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0xc992aa69 iort_put_rmr_sids -EXPORT_SYMBOL_GPL vmlinux 0xc99dcd06 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xc9b47974 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0xc9b5d74b __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0xc9c29555 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xc985b0be devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9927a78 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xc99bfd3f regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc9a72fbc xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xc9af3397 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9b17e27 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc9b34eb3 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9c6c65d perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9eb89a0 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xc9e66c8c devres_remove EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9eea280 genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0xc9f86747 key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit -EXPORT_SYMBOL_GPL vmlinux 0xc9fc3715 clk_register_divider_table EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca32a9ae dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xca439967 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xca0843ec sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xca0907cc get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xca091e54 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xca0dfdd1 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xca195acf serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xca326c0e spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xca398c59 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xca3f9b70 ahci_platform_disable_resources EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds -EXPORT_SYMBOL_GPL vmlinux 0xca4884d6 fscrypt_add_test_dummy_key EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca6b1830 scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xca6dfb56 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca5a11f7 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xca637401 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0xca66332b inverse_translate EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0xca822d88 regmap_might_sleep -EXPORT_SYMBOL_GPL vmlinux 0xca92fc49 mtk_clk_unregister_dividers -EXPORT_SYMBOL_GPL vmlinux 0xca9640b1 crypto_stats_kpp_compute_shared_secret -EXPORT_SYMBOL_GPL vmlinux 0xca971671 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xca7da0d4 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xca87559e ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xca8b4de7 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xca98dbea bus_register EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaac5543 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xca9b0f77 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xca9c041c usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xcaa9b593 mmput_async EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcabfe132 crypto_stats_rng_seed -EXPORT_SYMBOL_GPL vmlinux 0xcac0bdae restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xcac568da pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcac4a8ee device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcad2b76c imx_clk_hw_pfd +EXPORT_SYMBOL_GPL vmlinux 0xcad9b92f usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcaefa312 vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcb0e3ca8 icc_sync_state -EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcafc9ab4 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcb036f6c of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb0c49ac of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xcb0c9956 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xcb1f0ed3 debugfs_create_devm_seqfile EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb379513 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xcb344236 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcb3fe4cc blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xcb455d52 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xcb4595cc auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb73e442 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xcb89b72c public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0xcb9fbfd0 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0xcbae5fb2 dprc_setup -EXPORT_SYMBOL_GPL vmlinux 0xcbbbc97e netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0xcbbc5984 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xcbd11278 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0xcbd4ca6a devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0xcbdaaaf4 pci_host_probe -EXPORT_SYMBOL_GPL vmlinux 0xcbde8659 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xcb5eb137 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xcb64518f invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcb706cab blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xcb8e8338 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xcbb06355 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xcbb08ee2 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xcbb9ad4f pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xcbca730c altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xcbcee7e6 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xcbd59a5b pm_clk_remove EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbeaec25 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xcbf4b3c8 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xcbfb9081 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xcbfdef74 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xcc06e6e0 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc10d382 ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0xcc1b9e34 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xcc1e9710 driver_set_override -EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap -EXPORT_SYMBOL_GPL vmlinux 0xcc2fb75c kstrdup_quotable_file -EXPORT_SYMBOL_GPL vmlinux 0xcc3147c3 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xcc1c8e10 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xcc26eb36 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xcc2f61f2 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xcc33a148 mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc4ca253 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xcc4e72a0 devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0xcc507110 mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xcc55133a clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xcc6e94f9 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0xcc734eaf nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put -EXPORT_SYMBOL_GPL vmlinux 0xcc810ca9 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xcc4b9dc0 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xcc768b99 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcc7cfbc0 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xcc7d4aa7 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xcc872f85 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xcc8c6729 acpi_dev_get_dma_resources EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc92fbe0 fuse_conn_destroy EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc95102f ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xcca2f66f __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0xcca77a89 mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xcca84515 meson_pmx_get_funcs_count EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccb47aad phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL vmlinux 0xccba2e9b cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0xccc9f8aa genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xccb650fc serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xccb74068 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xccbf7fd6 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xccbfd679 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xccc4eda0 iommu_enable_nesting EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug -EXPORT_SYMBOL_GPL vmlinux 0xccd449b4 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xccd824a0 xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string -EXPORT_SYMBOL_GPL vmlinux 0xcce2e945 dev_pm_enable_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xcce5d360 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xccef5b70 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xcd0aa0ab thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcd0f0f2b devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0xcd2317dd mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcd09d4ae k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0xcd11092f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xcd221083 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd31524d vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xcd3a8576 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcd51e32d crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0xcd5b248b devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcd6e917f usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xcd3efc56 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xcd3ffa34 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xcd424f69 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xcd5abb01 fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xcd5ad9c1 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd5b0e9b nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xcd5baaa6 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd61baca serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xcd64eff8 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xcd67b0aa xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xcd6b740b devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add -EXPORT_SYMBOL_GPL vmlinux 0xcd756c72 of_clk_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd79cd82 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xcd7722be of_map_id +EXPORT_SYMBOL_GPL vmlinux 0xcd77ab5d blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0xcd830ba6 irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0xcd950358 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xcd932c66 ata_bmdma_port_intr EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcda3181c pcc_mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xcdaf14a6 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xcdad3b16 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcdae6add key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers -EXPORT_SYMBOL_GPL vmlinux 0xcdb90b07 of_genpd_del_provider -EXPORT_SYMBOL_GPL vmlinux 0xcdc3c800 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdbdbcc7 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcde1fdaf regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xcddd1e56 kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcdf7b27f blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xcdf770e8 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xcdfa3302 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0xce02e3c5 __crypto_alloc_tfmgfp EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory -EXPORT_SYMBOL_GPL vmlinux 0xce1032f1 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0xce114807 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xce1b124d dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0xce2090b7 mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0xce213ab4 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xce0e789f srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xce1581b4 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xce21edf7 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xce25ac89 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xce2999ef crypto_grab_akcipher EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce317c7e mtk_pinconf_bias_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xce49bd07 mtk_clk_register_gates -EXPORT_SYMBOL_GPL vmlinux 0xce58c0a2 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xce37ca45 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xce4053de sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xce4aa052 genphy_c45_read_eee_abilities EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce7a152b genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0xce7abebe ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xce8b99d1 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xceac0b58 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xce817192 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xce8c8814 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xce9a10f9 rpi_firmware_find_node +EXPORT_SYMBOL_GPL vmlinux 0xce9d8c46 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xceab61ff vcap_tc_flower_handler_ipv4_usage EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceac936d scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xced98323 clean_acked_data_enable -EXPORT_SYMBOL_GPL vmlinux 0xcedffbd3 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xceb91206 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xcec686b2 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcecbdea2 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xceceb222 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xcecf3285 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xcedd5397 pci_bridge_secondary_bus_reset EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee7834a irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xcee1af29 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcee60c82 dev_pm_opp_get_of_node EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcef4a615 pci_epc_map_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xcefb992c ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0xcf14c9da xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xcf22d1fb sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0xcf3e4967 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xcf523c2e pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xcf5286f1 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0xcf59f824 pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xcf6db978 stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0xcf6e0d32 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xcf72eecc mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0xcf7a4689 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0xcf8250d2 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0xcf949d7a kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0xcfa2c169 mtk_clk_register_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0xcfa31899 mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0xcfa729a9 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xcfaa1a91 security_inode_create -EXPORT_SYMBOL_GPL vmlinux 0xcfac28af ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0xcfb1da3a __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0xcfbd7c52 bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0xcfc20342 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xcf05c503 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xcf12fc4e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xcf19bb0e pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xcf21abec nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xcf25a067 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xcf2ffc88 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xcf49ee0b ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xcf500ef8 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcf57f243 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xcf5e3728 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xcf5f356f fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xcf637a99 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xcf74ad64 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xcf8086b6 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xcfa2d226 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xcfa68318 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xcfabbdcb platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xcfc30b6b input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xcfc7ab7c devm_clk_get_prepared EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfcc20e3 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xcfce36b6 stmpe_set_altfunc EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfd975f4 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0xcfeee55c ata_pci_bmdma_init_one -EXPORT_SYMBOL_GPL vmlinux 0xcff29f51 of_clk_add_provider -EXPORT_SYMBOL_GPL vmlinux 0xcff6b30b usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xcfd678f9 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xcfe01048 mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0xcfe7655f device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xcfe867ea extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0xcff5ab65 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xcffd5960 pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xd00290f1 soc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd00c48a0 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xd00e9328 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xd0149973 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0xd0196f09 __sock_recv_cmsgs -EXPORT_SYMBOL_GPL vmlinux 0xd01dabc4 __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0xd024f688 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xd0059fd6 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xd00b751e debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd0185773 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xd01f4c54 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xd0207d0c of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd0211783 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xd021dc46 priv_to_devlink EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd027c001 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd03a2677 devm_regulator_get_enable EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd0568eab tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xd04d6afa mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xd05463f2 devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0xd06a487c regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xd06bc2d0 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0xd06c5e52 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xd08985a6 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xd09595d6 gpiod_set_raw_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0b31ae3 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0xd0bd0aeb regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd0a2c734 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd0a3486b devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0a93ec9 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xd0ae292d kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd0b7a94d gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c6782c bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xd0c7fbec of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xd0ca6de4 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d196f2 devm_namespace_disable -EXPORT_SYMBOL_GPL vmlinux 0xd0d3eb90 udp_tunnel_nic_ops EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dd68b8 icc_get -EXPORT_SYMBOL_GPL vmlinux 0xd0dffc93 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd0e983d4 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xd0eaf4be class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd0ec98c0 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xd0eed13b da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xd0fc400e thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd108703c icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0xd10af05e dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0xd115c5ca mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0xd120186c regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0xd12f110e ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xd0fe82e9 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd1085102 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xd1284999 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1291e51 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xd131c1af xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xd133fd6f serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xd13a3ad8 folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0xd13e4af8 dma_fence_unwrap_next -EXPORT_SYMBOL_GPL vmlinux 0xd141aed4 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xd143b014 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14b767e usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xd14f121c pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xd1512fe4 wp_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xd16f606c ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0xd176e434 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0xd183fb0d kill_device -EXPORT_SYMBOL_GPL vmlinux 0xd193570b pci_find_host_bridge -EXPORT_SYMBOL_GPL vmlinux 0xd19eb573 udp_abort EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1b0bbea lwtunnel_fill_encap -EXPORT_SYMBOL_GPL vmlinux 0xd1b5b371 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd1ac74c3 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xd1b30cb0 devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule +EXPORT_SYMBOL_GPL vmlinux 0xd1c6565e devm_regulator_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1cee749 firmware_upload_register +EXPORT_SYMBOL_GPL vmlinux 0xd1d00439 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xd1e53219 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd1e6e8c2 lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f35c89 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xd1f36266 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0xd2120358 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd21b582a tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block -EXPORT_SYMBOL_GPL vmlinux 0xd24a52e2 user_describe EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd2574df3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd252f530 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd2643dc1 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd2670660 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd26954ed tty_release_struct EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xd2758740 switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd28ad2b3 mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0xd28aee2e mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xd2911818 mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0xd293fe36 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xd28d1ffe netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xd28e847c fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd2970663 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xd29b3cc0 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd29c23c6 vp_legacy_config_vector -EXPORT_SYMBOL_GPL vmlinux 0xd2a0d116 mtk_clk_register_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0xd2a14a63 lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0xd2a45c16 fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0xd2a6d670 uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2ac1522 mtk_clk_register_composites -EXPORT_SYMBOL_GPL vmlinux 0xd2afecdd usb_free_streams -EXPORT_SYMBOL_GPL vmlinux 0xd2b05af8 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd2a5dc15 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xd2aead64 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2b9280e dev_pm_opp_xlate_required_opp -EXPORT_SYMBOL_GPL vmlinux 0xd2c4dd64 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xd2d723f4 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xd2b197ee tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2cac54a devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd2cb6543 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2dcf284 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd2f3c601 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd2f4c146 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xd2f74726 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xd2f8c935 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0xd30dfea1 rz_mtu3_shared_reg_update_bit EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem -EXPORT_SYMBOL_GPL vmlinux 0xd31985f5 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31c9d1f devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd324e782 usb_hcd_giveback_urb -EXPORT_SYMBOL_GPL vmlinux 0xd32a065a devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0xd33986c8 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xd339f14f uart_handle_dcd_change EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd33c6465 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xd33dd282 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xd342e06f register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd3602c98 vp_legacy_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0xd36517d6 anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd36b5f52 scmi_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xd36e9ed5 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0xd3714a04 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3782093 ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 -EXPORT_SYMBOL_GPL vmlinux 0xd398926a crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xd384780b io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd385786c serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd3901d33 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0xd394b025 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd39b16c5 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3b3b419 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0xd3ba4f7d phy_start_machine -EXPORT_SYMBOL_GPL vmlinux 0xd3bceb18 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0xd3cb6989 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xd3e5a706 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xd3a60d37 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xd3a63b84 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xd3b73140 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xd3c69eee devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd3dd8fc2 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3eb8467 devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3ee933d mctp_register_netdev EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage -EXPORT_SYMBOL_GPL vmlinux 0xd3f1ecf3 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0xd3f45237 dw_pcie_ep_raise_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0xd3faadbc pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd3fed195 adp5520_write EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd41d8536 pinctrl_utils_reserve_map -EXPORT_SYMBOL_GPL vmlinux 0xd423e071 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd413bce7 rz_mtu3_8bit_ch_read EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd43958f7 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0xd43bcf3f xen_dbgp_reset_prep -EXPORT_SYMBOL_GPL vmlinux 0xd449c0fb phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xd4397dea regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd44244d2 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd456b183 clk_hw_register_composite -EXPORT_SYMBOL_GPL vmlinux 0xd4606cde __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd4601908 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs -EXPORT_SYMBOL_GPL vmlinux 0xd489287b debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0xd490c840 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xd470836d pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xd4750eef ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xd47a8543 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xd48a08bd bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd48a9773 drop_reasons_register_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd48f2f80 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xd492d5e7 battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4939f2a __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xd4a335a5 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd4ab954e crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd4946c1c mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd497c296 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xd4a9b304 debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b68402 rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xd4be2f93 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xd4bdeb59 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c33ed8 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xd4c6ebce max8997_bulk_write EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4d24599 extcon_set_state_sync -EXPORT_SYMBOL_GPL vmlinux 0xd4d7e84a ftrace_ops_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0xd4e0bb2d trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e8b3d7 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xd4ecd3af power_supply_put_battery_info EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4fd3ff1 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xd50e8516 pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0xd5154625 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd50dd361 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd50f9416 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd52dd05b ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd534d164 extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0xd534dea7 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0xd53e33f8 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd537436a phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xd53819fb nl_table +EXPORT_SYMBOL_GPL vmlinux 0xd5398b6a rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role -EXPORT_SYMBOL_GPL vmlinux 0xd5489915 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xd547bab4 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xd54e369f ehci_setup EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xd551e198 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd555aa35 usb_autopm_get_interface_no_resume EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55e8dd3 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xd56258ba dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xd5640337 l3mdev_master_upper_ifindex_by_index_rcu -EXPORT_SYMBOL_GPL vmlinux 0xd5656d20 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd568611f sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd583a7a1 vcap_keyfield_name -EXPORT_SYMBOL_GPL vmlinux 0xd58f2276 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xd581cccf is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xd58bf903 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59beaad gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xd59c5fb6 component_add -EXPORT_SYMBOL_GPL vmlinux 0xd5a48865 component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0xd5a73603 reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5a94e06 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0xd5aaf8a4 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xd5b7dee9 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0xd5b919b0 devm_hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xd5c4ce5d sk_free_unlock_clone -EXPORT_SYMBOL_GPL vmlinux 0xd5c79cdd __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xd5ccac94 power_supply_charge_behaviour_show -EXPORT_SYMBOL_GPL vmlinux 0xd5d449d2 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xd5df468b fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0xd5f530dd scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0xd60cb97c vp_legacy_get_status -EXPORT_SYMBOL_GPL vmlinux 0xd6102e9f ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xd61cb444 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xd621560f disk_set_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0xd6234672 pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xd6246493 kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xd629b498 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0xd6380c77 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0xd59e2d02 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd5b11520 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd5b221ef device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd5babc5d devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xd5c97a85 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd5db283c switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xd5e4c340 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd5f5865d __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xd5fa5044 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xd6065544 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xd608c00b pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd60c922d pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd624e626 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd6251353 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0xd63fc976 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xd64adad9 l3mdev_master_ifindex_rcu EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd656ffe1 nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xd65a2333 devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xd665d601 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd665945d switchdev_handle_fdb_event_to_device EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd675d6ff udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xd689c7aa device_register -EXPORT_SYMBOL_GPL vmlinux 0xd69209e0 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xd695639a sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xd6a86294 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xd67dae6f __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xd69ffbcc pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0xd6a61462 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xd6a8ddfc ahash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry +EXPORT_SYMBOL_GPL vmlinux 0xd6b0fcc2 rz_mtu3_enable EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6bf2b0e clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xd6c3203f regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xd6cd621a usb_hcd_end_port_resume EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6de9965 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xd6ecfd33 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xd6f050ef led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0xd709f449 devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0xd70b6817 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xd70ed7c9 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0xd7183714 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0xd723d0f9 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xd6e0ae92 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xd6e55715 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6e86b64 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd6fe5b25 meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xd706ddd1 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd717d253 icc_provider_init EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd726f5ca cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72ccf84 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd7350dc1 usb_phy_set_charger_current -EXPORT_SYMBOL_GPL vmlinux 0xd741f7dc kthread_func -EXPORT_SYMBOL_GPL vmlinux 0xd743d7bc kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xd75aaf47 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd73cb695 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xd74993f9 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xd7506be8 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd7553a4e ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd7661b93 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xd76404a8 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd766b1ed net_selftest EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd770474c pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0xd781149a regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0xd78b5d15 device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xd791c03c transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd7a7fde0 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd778119f inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xd784b9f0 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xd79c5789 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xd7a2a9ed usb_altnum_to_altsetting EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0xd7aa2f76 register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xd7b072a7 proc_create_net_data_write -EXPORT_SYMBOL_GPL vmlinux 0xd7b1b785 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0xd7baf685 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd7bf26e3 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xd7c4296d ioc_find_get_icq EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7ce30bb ata_bmdma_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d1fca0 mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0xd7d31d61 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0xd7db2e6c finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd80d699b vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xd815084f pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0xd84178a0 mmc_regulator_set_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xd84440d4 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xd8485ac0 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xd7ec47d2 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd7f36fc6 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd7fedc46 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xd7ff6af8 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xd80688e6 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd81e02d2 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd823d36d __SCK__tp_func_console +EXPORT_SYMBOL_GPL vmlinux 0xd82afe9c balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0xd8315958 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd834b5d9 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd836d0f7 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xd83a8b40 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xd844abd0 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xd84520c6 pci_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd862f45e irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0xd873db3b pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0xd8793d52 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0xd85fab72 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd8689279 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xd87cb8eb dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd888be1c fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0xd88defca __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xd89d53e5 icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xd8a3d9f1 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd8a81389 apply_to_existing_page_range -EXPORT_SYMBOL_GPL vmlinux 0xd8cd19a5 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd8cdf68b genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xd8d02908 kpp_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xd8d0aedd dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xd8d30ac8 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd8ab43f8 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xd8af3b20 usb_of_get_interface_node EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8e0ec74 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xd8f9ceb3 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8dc7bdf tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xd8e76cdd rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd8fa4da8 of_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xd9075cf1 spi_get_device_match_data -EXPORT_SYMBOL_GPL vmlinux 0xd9077f25 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xd904f411 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xd908cf8d fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xd9135e65 wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xd918a65d srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0xd91b9c23 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd91af14b genphy_c45_baset1_read_status EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd928df2f bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd939b471 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0xd9454d4b cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd948853e pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0xd94b54a3 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0xd94cf83f gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xd9568cb0 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xd95b977e bpf_map_inc_with_uref -EXPORT_SYMBOL_GPL vmlinux 0xd964ee48 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xd9493a2f fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xd94ac8b8 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xd94b63be skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xd9532cdf iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd9549278 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd96fb52e kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0xd9753622 md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc -EXPORT_SYMBOL_GPL vmlinux 0xd98aebbe ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xd96fd529 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xd986e1db fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xd989ce32 tcf_dev_queue_xmit EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd99c83cb ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0xd9a2bf1d sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xd9a96cfa iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xd9aaf999 spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0xd9d6a324 sata_scr_valid -EXPORT_SYMBOL_GPL vmlinux 0xd9df843c pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd999815e udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xd9b19aa5 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xd9bb2c13 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd9d0e126 device_find_any_child +EXPORT_SYMBOL_GPL vmlinux 0xd9d8bc3d rz_mtu3_32bit_ch_read EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek -EXPORT_SYMBOL_GPL vmlinux 0xd9e3f3de xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0xd9e6f631 fat_flush_inodes -EXPORT_SYMBOL_GPL vmlinux 0xd9ef171d spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xd9e942a2 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xd9f2eb28 vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0xd9fb4990 __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda04b215 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0d1713 vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0xda12c864 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0xda1ee45b __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0xda13da60 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xda2a0863 xdp_features_set_redirect_target EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda321c4d rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0xda35fa78 seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0xda3ce338 gnttab_foreach_grant_in_range -EXPORT_SYMBOL_GPL vmlinux 0xda3d6e7d uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0xda43c22e device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0xda50ffb2 dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xda5b1e11 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xda5c7473 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0xda6036b2 usb_asmedia_modifyflowcontrol -EXPORT_SYMBOL_GPL vmlinux 0xda6ed357 regcache_sync_region -EXPORT_SYMBOL_GPL vmlinux 0xda76cf23 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xda32edc8 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xda474db5 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xda49b06c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xda4e4fb6 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda548c77 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xda5eca9a skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xda6f091b cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xda7623ef devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xda764c66 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xda76f358 set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0xda82ed96 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xda8da8b1 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xda8df3a3 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xda8c127d posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda9b58cb kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xda96602a dprc_get_obj EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaacd911 imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0xdaae8a64 dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0xdab02b0e generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xdaa316dd of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xdaaba5cd genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xdaaed01e handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdace1049 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0xdad002e5 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xdaed4fea access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option -EXPORT_SYMBOL_GPL vmlinux 0xdb010ae8 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xdb01567b usb_amd_pt_check_port -EXPORT_SYMBOL_GPL vmlinux 0xdb0ecdc3 devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0xdb10f959 iommu_iova_to_phys -EXPORT_SYMBOL_GPL vmlinux 0xdb158876 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xdb297765 ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xdb2b3ac1 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xdb392a5c irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0xdb493a2f dax_remap_file_range_prep -EXPORT_SYMBOL_GPL vmlinux 0xdb4ba5ca dm_send_uevents -EXPORT_SYMBOL_GPL vmlinux 0xdb537b1b free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xdac0311e ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdad00d52 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xdae69185 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xdae7f656 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xdaeb47a1 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xdaf51709 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xdb0af878 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xdb166cae usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xdb2289e5 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xdb39c899 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xdb3c289e nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb6a878f devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0xdb6e9576 dpcon_close -EXPORT_SYMBOL_GPL vmlinux 0xdb727637 vcap_set_rule_set_keyset -EXPORT_SYMBOL_GPL vmlinux 0xdb73f03e securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdb677656 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xdb685c3b regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xdb6e24d6 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xdb795d12 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xdb864dff msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xdb864f1c crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xdb886f40 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb95d59c irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xdb96e92d fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0xdba19960 of_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xdba43290 fwnode_connection_find_matches -EXPORT_SYMBOL_GPL vmlinux 0xdbab3bfa do_tcp_sendpages -EXPORT_SYMBOL_GPL vmlinux 0xdbb415a4 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0xdbb533ea __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xdbca8a5b relay_file_operations -EXPORT_SYMBOL_GPL vmlinux 0xdbd14387 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0xdbd16970 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xdbd5fd8f dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xdb8f21f7 blkg_conf_exit +EXPORT_SYMBOL_GPL vmlinux 0xdb8f9f74 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xdb9676d7 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdba087b6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdba61882 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xdbbbedc8 pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe391eb genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create +EXPORT_SYMBOL_GPL vmlinux 0xdbe89820 elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdbf07f9f dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0xdbf46847 tpm_chip_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbfa2500 devl_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdbffc059 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size -EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall -EXPORT_SYMBOL_GPL vmlinux 0xdc2509a3 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xdc347bd1 fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdc436c82 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xdc40ce36 regulator_disable_regmap EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc48988c dev_fill_forward_path -EXPORT_SYMBOL_GPL vmlinux 0xdc521064 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xdc541478 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0xdc567889 acpi_device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xdc5ae0e5 meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0xdc63ad44 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xdc4a7c55 buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0xdc5b3078 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent -EXPORT_SYMBOL_GPL vmlinux 0xdc6680c2 noop_direct_IO EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc67762e serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xdc74db69 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xdc761290 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0xdc79187c gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xdc714246 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xdc72c601 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc7f1eae wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xdc821e3a pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc88edb4 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdc9a7ca9 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xdc9edd7e clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc9a4377 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xdc9f6bca __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca2cf56 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xdca9bce2 cdx_register_controller EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL vmlinux 0xdcc1b422 of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xdcd28825 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0xdcdc4a5e serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xdcc79662 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xdcdd2996 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xdce3b647 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xdce6a44d thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdcf6d365 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xdcfa27a3 irq_domain_translate_twocell EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd15087d usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0xdd245973 mtk_pctrl_show_one_pin -EXPORT_SYMBOL_GPL vmlinux 0xdd35726b spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0xdd439064 vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0xdd4e69ea regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xdd11aed0 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xdd214ef3 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xdd4f8cdd pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xdd4ff38a blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xdd506584 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xdd5fb682 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd7a1308 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xdd65b4b2 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xdd66c069 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xdd75faae ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd886c38 pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xdd89f879 rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xdd937cc9 dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xdda11e97 __devm_regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xddaeaf37 raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0xddb4e952 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xdd8a028e pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xddadd4de input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xddb2c959 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0xddb7b7b4 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddd7e4c2 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0xdde4b650 dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0xdde60fde sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0xdde67624 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddd28abc __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield +EXPORT_SYMBOL_GPL vmlinux 0xddfe1ad7 __SCK__tp_func_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xddfea328 component_compare_dev EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde0b655d fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xde0c29b6 switchdev_handle_port_obj_add_foreign -EXPORT_SYMBOL_GPL vmlinux 0xde13d0d6 syscon_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xde16ac95 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde18706a vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xde1ea97b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xde18d78b acpi_get_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xde27e451 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xde2c9114 regulator_irq_map_event_simple EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde3377b3 icc_provider_deregister -EXPORT_SYMBOL_GPL vmlinux 0xde38eacd pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xde419644 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xde4eac12 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xde4fe2bf hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xde507965 cpufreq_driver_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xde5ab244 vcap_rule_iter -EXPORT_SYMBOL_GPL vmlinux 0xde5f1deb wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0xde65574b tcpv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xde6f1237 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xde3b66d6 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xde4edb9c wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xde526ea1 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xde5574cf x509_load_certificate_list +EXPORT_SYMBOL_GPL vmlinux 0xde5f4e43 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xde679acc usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde707c51 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0xde70c210 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0xde8a1fec dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0xde930260 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xde767655 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xde7a8cc3 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xde8fc8eb of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xde90bef7 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xde91f2f5 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xde95bece balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdebd7bda regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xded37353 pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xdee646a4 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xdeb777de crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xdeda657f perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xdedb9cdd sock_diag_destroy EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdef165ff regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xdef2b617 virtqueue_resize +EXPORT_SYMBOL_GPL vmlinux 0xdef35cb1 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xdefdf9b9 sched_setattr_nocheck EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xdf058d2c led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0xdf07f4b1 dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf1912b1 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xdf1a2254 fat_getattr EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0xdf21770c ping_unhash EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf28834f cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0xdf2ab5ac mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0xdf277b34 soc_device_match EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack +EXPORT_SYMBOL_GPL vmlinux 0xdf38eca7 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xdf407430 pci_epc_linkdown +EXPORT_SYMBOL_GPL vmlinux 0xdf41bb96 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xdf42da5e devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0xdf44ffc7 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xdf487c2a class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xdf6c78d9 dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0xdf78f6d7 devm_extcon_dev_register -EXPORT_SYMBOL_GPL vmlinux 0xdf8ec660 clkdev_hw_create -EXPORT_SYMBOL_GPL vmlinux 0xdf9bad62 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xdfab976a of_pm_clk_add_clks -EXPORT_SYMBOL_GPL vmlinux 0xdfb1d113 virtio_check_mem_acc_cb -EXPORT_SYMBOL_GPL vmlinux 0xdfcaffc3 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xdf4687d7 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf4ddb86 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties +EXPORT_SYMBOL_GPL vmlinux 0xdf5eb06f ping_err +EXPORT_SYMBOL_GPL vmlinux 0xdf6204a6 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xdf65ce0c dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xdf6f1404 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf86cf78 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xdf8f226d blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xdf9084f7 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xdf9a88a2 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdfa0b526 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xdfa9799d devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xdfac09bd devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xdfb33a3a pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xdfb4b437 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xdfbc7249 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfeb3d22 bgmac_enet_suspend -EXPORT_SYMBOL_GPL vmlinux 0xdfee49a1 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0xdff08334 iommu_map_atomic -EXPORT_SYMBOL_GPL vmlinux 0xdff54d8e irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0xdff82f49 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0xdfff5fca virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0xdfff88c3 bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0xe004635c serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xe01c753b __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xdfe81bba genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xdffc41e0 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xdffed0d6 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xe00db6dc __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity -EXPORT_SYMBOL_GPL vmlinux 0xe025a269 devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe033208a ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0xe03d570b kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xe04262e9 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0xe042ef2a pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0xe04abf8e bsg_job_get -EXPORT_SYMBOL_GPL vmlinux 0xe054daa5 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe05df26e pci_load_and_free_saved_state EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe08dc955 phy_check_downshift -EXPORT_SYMBOL_GPL vmlinux 0xe09631d6 mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0xe09b84a5 of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0xe09c70f0 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xe0a5cca4 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xe0a855cb led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe0a9d6b1 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xe0aad226 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xe0608b40 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe0611a64 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe073fb2d put_pid +EXPORT_SYMBOL_GPL vmlinux 0xe07a21f2 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xe09361ec sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xe09c2566 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe0a319bb class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0xe0a694e7 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0xe0a82b57 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xe0af00a0 dax_recovery_write EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate -EXPORT_SYMBOL_GPL vmlinux 0xe0b79c99 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0xe0b3fe5a alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe0b8364e __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe0c81862 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0xe0ceacfa fsl_mc_bus_dpmcp_type -EXPORT_SYMBOL_GPL vmlinux 0xe0d58e8c pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xe0c6d469 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xe0ceb6c1 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe0e2f22f of_remove_property EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe1009aaf regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe0f601fb gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe1117938 mtk_clk_gate_ops_no_setclr -EXPORT_SYMBOL_GPL vmlinux 0xe1146630 pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0xe11b9bee component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0xe13485d6 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xe1358296 devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe13eb2bf clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xe14083fb dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xe1814f2a pinconf_generic_dt_node_to_map -EXPORT_SYMBOL_GPL vmlinux 0xe18381f6 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0xe18fb62b usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe1a55bc3 of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xe12681a4 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xe12f0ead rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xe13ec96b get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xe1566b80 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xe15b9be8 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xe1818d3c iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xe188bdd7 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xe18cd10c serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe19dcc97 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe19f18c1 filemap_read EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1a91d53 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe1ace7bf bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c5f7fa regmap_get_reg_stride EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1cd3b45 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0xe1dc9aef transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xe1defd5d akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe1e0215f pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0xe1e8d239 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xe1fcb44e dm_audit_log_ti -EXPORT_SYMBOL_GPL vmlinux 0xe217cc64 zap_vma_ptes -EXPORT_SYMBOL_GPL vmlinux 0xe226f626 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe1e25663 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe1f64006 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xe1f6a9f5 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xe1fc8b3e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe202e749 debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0xe21fdbef fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xe22241cb phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xe2261f6b mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe22a5fa3 power_supply_external_power_changed EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23472f8 ima_file_hash -EXPORT_SYMBOL_GPL vmlinux 0xe240bdbc task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe2381664 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe2553ba3 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe25ad502 sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe25d38dd tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0xe27978ab device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xe27e8465 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xe2944798 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xe29bdd66 pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0xe29f21e0 ata_common_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0xe2ac5f4a uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xe26aad5d regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe27929bb validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xe27da593 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xe284354f of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xe28db517 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xe29b3e97 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xe2a460bc crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xe2a4a055 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xe2a9552e mbox_request_channel_byname EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2b75027 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xe2bbf2a7 fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xe2c3899f crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xe2c6bd31 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xe2c8d41d do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe2bb1a4e device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2bcc22b regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe2bda6ec iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key -EXPORT_SYMBOL_GPL vmlinux 0xe2ce978d __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule +EXPORT_SYMBOL_GPL vmlinux 0xe2d54061 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature -EXPORT_SYMBOL_GPL vmlinux 0xe2da106a tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xe2e8be8c rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xe2de2e0d pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe2f746eb meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0xe311ae79 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xe31bdb34 fsverity_ioctl_measure -EXPORT_SYMBOL_GPL vmlinux 0xe3209845 i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xe34d3de4 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0xe35080d3 regmap_write -EXPORT_SYMBOL_GPL vmlinux 0xe35be2f4 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xe35cf639 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0xe362a84f iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe2efcdc9 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2f4620a tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe30fe356 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xe32fe7d6 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xe33990b2 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xe33ef2a8 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe3452a24 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xe3553ab0 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xe357c0dd __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xe3692229 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xe36e171e blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xe36ff6ac __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe3758fc4 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xe37b7395 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe38b2e77 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0xe3974bd7 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf -EXPORT_SYMBOL_GPL vmlinux 0xe3993144 phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0xe39cb582 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe39dfb46 kthread_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xe39ed7a8 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0xe3a476a6 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xe3a9bec0 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3a34d3b adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xe3acef70 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe3afdac2 of_msi_configure EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b5f36c i2c_slave_event -EXPORT_SYMBOL_GPL vmlinux 0xe3be7efe ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe3bb8d1a of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3da8faa crypto_register_scomps -EXPORT_SYMBOL_GPL vmlinux 0xe3e0616c crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xe3d1cff7 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3d26a65 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3ed5cdf cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0xe3f6756d acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0xe3fe332a acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xe3ff1499 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xe407bdb0 tegra_mc_get_carveout_info EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe4183902 devm_qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0xe421a2f3 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0xe418f35e virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume -EXPORT_SYMBOL_GPL vmlinux 0xe456c29d crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xe45b808c xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xe46e5cee __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xe436e90c __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xe444d834 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xe44754f6 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe45087a0 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xe4639b41 xhci_ext_cap_init EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xe495022e dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xe492bf2b scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xe496b4cf public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49a42c5 usb_hcd_pci_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0xe49cd147 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0xe4a02efb qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL vmlinux 0xe4ad30c8 xhci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe4ae0ece pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe49b7916 devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4a6f73e of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xe4ab13ba nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xe4abf4b9 register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b5aef9 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0xe4b61ee0 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe4b6cc9d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xe4b7ef40 meson_aoclkc_probe EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b8b0d4 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xe4be72e8 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe4c14e84 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xe4c2a8b8 __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4cb6ada spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xe4cdaae2 relay_close -EXPORT_SYMBOL_GPL vmlinux 0xe4d3234a acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0xe4d3729e of_dma_xlate_by_chan_id -EXPORT_SYMBOL_GPL vmlinux 0xe4d3746b ahci_platform_suspend_host -EXPORT_SYMBOL_GPL vmlinux 0xe4db71b8 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe4e0ed84 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe4cc2459 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe4cfd0cf devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe4d43d0f rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xe4d52a5a nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xe4e096aa serial8250_init_port EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4e85fa1 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0xe4e8cafc screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xe4f7c5ad clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0xe4fb88cd devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe5087429 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0xe50dd292 serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0xe5285a68 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe53df47d blk_next_bio -EXPORT_SYMBOL_GPL vmlinux 0xe547ea50 extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0xe54e9b46 sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0xe54ea423 of_dma_request_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xe550d483 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xe4f7b57d devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xe4fd1c7e cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xe501acfd bus_get_dev_root +EXPORT_SYMBOL_GPL vmlinux 0xe50773ed platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xe50893fd unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe5096189 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe51991a1 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe529fe83 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xe52cbba6 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xe544c93e ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xe54e3fe9 iommu_fwspec_init EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe555c61c irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0xe564da9c kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL vmlinux 0xe56612c0 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe5657e17 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe569e672 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe56acdbb fuse_dev_install EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58c8ec2 of_regulator_match EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount +EXPORT_SYMBOL_GPL vmlinux 0xe58f1952 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe5a7de92 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xe5a8e4ed crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5b941bc pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0xe5adeaa7 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe5b14f96 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xe5b2c5e9 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xe5b4ab37 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe5b8b602 sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c1ab54 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xe5c35e6a blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0xe5ea91f9 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xe5ec2ee2 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0xe5ec7aee fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xe5d7849f ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5defe4c sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xe5e257c6 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xe5fba24c devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe60b8bc2 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xe61da456 vcap_keyfield_name EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6433889 kthread_data -EXPORT_SYMBOL_GPL vmlinux 0xe643c8b9 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0xe649a1b4 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0xe65093e0 led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0xe65f518e acpi_dev_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xe668f520 pm_runtime_force_resume -EXPORT_SYMBOL_GPL vmlinux 0xe6714bf5 regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0xe6735da4 nvdimm_pmem_region_create -EXPORT_SYMBOL_GPL vmlinux 0xe67cdd9f xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xe685b719 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xe68c5417 rtnl_get_net_ns_capable -EXPORT_SYMBOL_GPL vmlinux 0xe69e0681 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe6a039cd get_device -EXPORT_SYMBOL_GPL vmlinux 0xe6b287dd icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0xe6b4eb94 bpf_log -EXPORT_SYMBOL_GPL vmlinux 0xe6b94a41 genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0xe6ce9a99 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0xe6dd6b09 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xe629950a fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xe63e1b9f __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xe6422fbd get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe661162c devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6869de9 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe68d68ae kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xe69684f2 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xe6a1dcfa sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xe6aef439 __tracepoint_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xe6b4c8e1 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xe6b9766d serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6c2b16a phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0xe6c78480 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xe6cef1e7 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe6d0d291 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xe6d26cf4 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xe6d9cf08 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6db1b5f ahci_platform_suspend EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event -EXPORT_SYMBOL_GPL vmlinux 0xe6e73fa8 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0xe6e82f80 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0xe6e97e94 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id -EXPORT_SYMBOL_GPL vmlinux 0xe6f10e38 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0xe6f731bf wm8350_read_auxadc EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fc55f1 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0xe6fd07be perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6f90184 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0xe6fe258d bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xe6fe2bcd thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe70022d4 inet_csk_get_port EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert -EXPORT_SYMBOL_GPL vmlinux 0xe70eb704 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xe72d4654 dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0xe7381282 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xe70221d7 cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0xe70bf32e of_nvmem_layout_get_container +EXPORT_SYMBOL_GPL vmlinux 0xe729e7bf usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xe72a951d fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe75d88cb nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xe75ecc8b devm_regulator_bulk_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe76a50f9 acpi_fetch_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0xe76ffae0 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0xe7743ba0 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe76a7fd8 iort_get_rmr_sids +EXPORT_SYMBOL_GPL vmlinux 0xe76a9f6b tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xe77679ba ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xe77841e0 clk_hw_forward_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xe77a5c6b tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe787ae45 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe78c0550 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xe78e5003 virtio_reset_device EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe79ce708 ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0xe7a0a56d kvm_vcpu_map -EXPORT_SYMBOL_GPL vmlinux 0xe7a0f726 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0xe7a872c6 regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xe7b7c52f dprc_reset_container -EXPORT_SYMBOL_GPL vmlinux 0xe7bc0389 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0xe7c05d49 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0xe7c11574 misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xe7d175f5 regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe7d1bd11 mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0xe7d5dbc3 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xe7999cee mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe79f9d7f gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xe7acac88 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xe7b890a6 power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7dc5136 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xe7e53d96 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xe7e8d7b8 devlink_port_register -EXPORT_SYMBOL_GPL vmlinux 0xe7eb3869 blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xe7fbd115 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0xe80077d0 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0xe80ef807 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe8105b60 find_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0xe815a6bf of_pse_control_get -EXPORT_SYMBOL_GPL vmlinux 0xe815d3dd acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xe816351a dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0xe7e723ad __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe7f0f1cb i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xe8186bfa regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81a879b device_attach -EXPORT_SYMBOL_GPL vmlinux 0xe8454dfe scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xe84b1e63 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe81da280 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xe8259efc __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xe825ada3 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xe83737ba netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xe8398929 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8509483 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xe8525755 regulator_force_disable EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit -EXPORT_SYMBOL_GPL vmlinux 0xe85b0fab shake_page EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe86879d0 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xe893ec5b iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0xe89650a4 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0xe8afc4e0 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xe8b47d9b clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xe8632097 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xe8661f9d ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xe88a3f1e bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xe8979afb mas_prev_range +EXPORT_SYMBOL_GPL vmlinux 0xe89a2de1 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe8a0fdfa bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8da103a irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xe8e1d0a4 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xe8ef3433 mtk_pinconf_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xe90876eb crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xe8cdf231 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xe8da9754 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xe8e44b2e _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xe8fc7c64 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xe9008528 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe909347f vchan_find_desc EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9224041 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0xe93b9621 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe912660a regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xe91b89bf crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe923fc78 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe939746b led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free -EXPORT_SYMBOL_GPL vmlinux 0xe944f511 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp -EXPORT_SYMBOL_GPL vmlinux 0xe952cdfd vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xe942c91c mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe9448ff8 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xe94bc75d power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe94f8775 pci_sriov_set_totalvfs EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe95b876f class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xe9646310 i2c_acpi_waive_d0_probe -EXPORT_SYMBOL_GPL vmlinux 0xe97e1c8c regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0xe980b75c transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe958c274 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xe96d6602 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xe984a490 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xe9887590 to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9a103f0 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0xe9b100e5 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xe9bfc9e7 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xe9c26294 tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xe9d19d7f bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xe99bce53 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe9a44776 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe9a6c1aa usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xe9b77ce2 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xe9bd3732 modify_ftrace_direct_nolock +EXPORT_SYMBOL_GPL vmlinux 0xe9c3de70 fscrypt_ioctl_add_key EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9d7e569 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0xe9dfe5cb dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe9e83a3e show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xe9ef2805 ahci_platform_deassert_rsts +EXPORT_SYMBOL_GPL vmlinux 0xe9f0e7b1 ping_seq_stop EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0xea0040cc serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea0231f6 split_page EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea12907b nfct_btf_struct_access -EXPORT_SYMBOL_GPL vmlinux 0xea2f679a unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xea175455 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xea178d19 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xea312c8c serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0xea34e4fb scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xea3531ea thermal_zone_get_trip EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free -EXPORT_SYMBOL_GPL vmlinux 0xea3e338c devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0xea4b329b clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0xea4c07f8 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xea4e3f43 ahci_qc_issue EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea53e6a8 cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xea761f91 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xea77d6e6 devl_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0xea910ee0 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0xea994aa2 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xea9cc01f extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xeaa3133d blk_mq_sched_try_merge -EXPORT_SYMBOL_GPL vmlinux 0xeaa828a1 edac_pci_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xeaa832c3 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xeaa8a092 crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0xeab5b4cf devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xeabe7fbf crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xeacbbd21 blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xead16ba5 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xea58f599 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xea70e24d led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xea8e4b11 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xeaa4e9e6 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xeaae9c30 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xeabbe13f pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xeabdefb8 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xeac51211 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xeac97dd8 crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0xeacab2fc i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xeacc4e39 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xeacd5258 sfp_bus_find_fwnode EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaee9c95 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xeaef2137 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf13b45 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xeaf1a347 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf5a6e4 ip_icmp_error_rfc4884 EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb0008c9 tty_kopen_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xeb0f010a devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0xeb1a9049 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0xeb2d6734 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0xeb3b694e fscrypt_fname_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xeb087b1a device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xeb316854 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xeb367a4f i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xeb3abf56 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xeb3be5b2 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb451208 __mmc_send_status -EXPORT_SYMBOL_GPL vmlinux 0xeb54ad98 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xeb4b31d0 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xeb5ccdf7 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xeb5e0cca blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xeb715f5e pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb7ac95a fat_attach -EXPORT_SYMBOL_GPL vmlinux 0xeb86899e iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0xeba30283 devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xeba7e147 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xebaaf8ab pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0xebb3860e inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0xebd3c582 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xeb84521c devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xeb8e8d7f spi_split_transfers_maxwords +EXPORT_SYMBOL_GPL vmlinux 0xeb9a2e85 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xebac124b tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xebb19e5b ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebdae145 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xebdf7b48 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xebe496ca __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xebf34383 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL vmlinux 0xec25c39f sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0xec3093e1 serdev_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xec3512de regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0xec35717c __udp_gso_segment -EXPORT_SYMBOL_GPL vmlinux 0xec3caf95 crypto_stats_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xec3d55d7 wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xec4521f4 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xec05ad36 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xec2b5c4f ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xec3bbc8f mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xec54669a devm_regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec699828 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xec706b90 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xec5bece0 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xec603cb1 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xec686975 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xec6bf81e anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xec71821e dev_get_tstats64 EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec9d005f dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xec7f21b6 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xec8f3137 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xec9295e0 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xec95eacd extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecbf32d1 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0xecca6d82 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xeccfa069 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xecbbc1a4 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xecc8c37c devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xeccfce56 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdc4413 simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0xecea52d5 i2c_dw_acpi_configure -EXPORT_SYMBOL_GPL vmlinux 0xecef057d bio_poll -EXPORT_SYMBOL_GPL vmlinux 0xecf0beeb crypto_stats_compress -EXPORT_SYMBOL_GPL vmlinux 0xed02422f dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0xed062583 icc_provider_del -EXPORT_SYMBOL_GPL vmlinux 0xed0a9e3b nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xed141294 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0xed159b18 imx_pinconf_set_scu -EXPORT_SYMBOL_GPL vmlinux 0xed1da63a ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xece8c30e thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xecf6cdad tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xed0c5bce i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xed104c6a __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xed146644 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xed1d416c of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xed1de7fe __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed319fe0 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xed327a15 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0xed34f166 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xed38271b kobject_uevent_env EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed3a05f3 pci_pasid_features -EXPORT_SYMBOL_GPL vmlinux 0xed3ca952 em_dev_unregister_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xed4de43e edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0xed5311c8 pm_schedule_suspend -EXPORT_SYMBOL_GPL vmlinux 0xed546766 sdio_writeb -EXPORT_SYMBOL_GPL vmlinux 0xed5f26a5 irq_chip_enable_parent -EXPORT_SYMBOL_GPL vmlinux 0xed61c49a kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xed65298b devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xed588b96 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xed5b3660 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xed7a4158 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xed7a4bc2 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xed81b9e8 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xed83bf64 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed8b6e71 platform_device_add EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue -EXPORT_SYMBOL_GPL vmlinux 0xed910b6a regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed937fcc device_match_name -EXPORT_SYMBOL_GPL vmlinux 0xed961e5e crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xed9a194c iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0xeda27c46 mbox_request_channel_byname -EXPORT_SYMBOL_GPL vmlinux 0xedb84c37 net_ns_get_ownership -EXPORT_SYMBOL_GPL vmlinux 0xedc97793 __traceiter_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd35764 rtc_read_time -EXPORT_SYMBOL_GPL vmlinux 0xeddad308 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xed99b0ce dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xeda548da find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0xedc1ceae acpi_get_and_request_gpiod EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedf42f9c dprc_scan_container -EXPORT_SYMBOL_GPL vmlinux 0xedf5a331 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0xee0a8384 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0xee24ea76 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0xee2c40b2 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xedf2fbb8 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xedf52490 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xee0067f2 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xee0250b0 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xee0345d6 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xee08f3ec kiocb_modified +EXPORT_SYMBOL_GPL vmlinux 0xee137f41 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xee13f6f0 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xee147d28 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xee1b9a22 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xee20f651 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xee226644 pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee465c9f __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0xee4ac237 kvm_arch_ptp_get_crosststamp EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee520cda clk_hw_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0xee5e3bef battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xee5c5050 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xee6460d8 ata_port_desc EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xee6c7358 serdev_device_get_tiocm -EXPORT_SYMBOL_GPL vmlinux 0xee85529a dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xee888ab0 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0xee8efa89 kiocb_modified -EXPORT_SYMBOL_GPL vmlinux 0xee99352e __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0xee9a4394 mmc_crypto_prepare_req -EXPORT_SYMBOL_GPL vmlinux 0xeea0d13b debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0xeeb19f71 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xeebb8e27 gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xeec6ebb1 dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0xeec72e8d __irq_resolve_mapping -EXPORT_SYMBOL_GPL vmlinux 0xeec90701 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0xeecb5ed3 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xeed63409 acpi_find_child_by_adr -EXPORT_SYMBOL_GPL vmlinux 0xeedbbe3c __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee74a922 __tracepoint_console +EXPORT_SYMBOL_GPL vmlinux 0xee8fff34 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xee9e5ab7 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xeeab2d82 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeeafcbde ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xeeb3515a usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xeeb45f75 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xeeb85511 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xeeba7b25 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeec298d9 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0xeeda476f scmi_protocol_register EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported -EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put +EXPORT_SYMBOL_GPL vmlinux 0xeeea527e iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xeeee4b68 clk_hw_round_rate EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xef038360 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0xef081efd device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0xef0deb99 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0xef15de58 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xef169434 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xeef7b8ad ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xef00897b crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xef137e03 vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2aab83 qcom_smem_state_register EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3d1b98 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xef38bed7 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0xef416c81 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xef43432f dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xef45434e vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef5d55cc platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xef54262b get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xef5b6111 mtk_build_eint EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef68e5ab ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xef61de75 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xef64e60a __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xef67ec35 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xef6b4b12 edac_device_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6cb0f3 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xef6ccfde pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xef6f87a7 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef76de9c sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xef7a7044 pinctrl_utils_add_config EXPORT_SYMBOL_GPL vmlinux 0xef7c67f6 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0xef85c9fa rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xef869986 component_del EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef945ee8 ata_sff_prereset -EXPORT_SYMBOL_GPL vmlinux 0xef94ecde vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0xef9953a8 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xef9c30f0 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0xef95f2f2 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xef9a525c blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xefa20b3d gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefa7b156 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0xefa8f9f8 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xefad88ca fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xefb2c5eb ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0xefc05233 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xefc6b132 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xefc98b29 fsl_mc_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xefd2e5fa wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xefdd15e9 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0xefe349b3 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xefaac0f1 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xefadabea devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xefb0f687 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xefca1aa1 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xefdc98da irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xefdcb87b regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xefe21762 thermal_zone_device_type +EXPORT_SYMBOL_GPL vmlinux 0xefe9ebd6 stmpe_dev_pm_ops EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff0ff1b xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xefff1c4e bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xf009f97a pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xf007fbcd __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xf008ec03 __pm_runtime_set_status EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0xf021dabe devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xf0229bf6 ping_err -EXPORT_SYMBOL_GPL vmlinux 0xf0257e65 scmi_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf040cb46 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xf01ce687 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xf027a49e dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf039c459 rz_mtu3_disable EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf059f248 mtk_mutex_write_mod +EXPORT_SYMBOL_GPL vmlinux 0xf0540f9e usb_get_status EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05ccdc0 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xf05f6e8c iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0616e7a sched_numa_hop_mask -EXPORT_SYMBOL_GPL vmlinux 0xf06214b7 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xf0645142 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xf06568f9 devl_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xf066275c get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf0895497 crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xf08a51be usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0xf08b72d5 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf0911cac of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xf09e042f ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0xf0a49257 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0xf0aa22f8 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0xf0af0f39 crypto_stats_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0xf0bc9803 kvm_vcpu_halt -EXPORT_SYMBOL_GPL vmlinux 0xf0c02e48 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0xf0c5cc59 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0xf0d3ef23 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xf0d60672 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xf0da97de skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0xf0ddc108 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xf0a31daf of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf0a5f599 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xf0ac6835 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf0ae30a4 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0b3810d da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xf0bc7a79 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xf0bdf0c4 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xf0c6d6ef rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xf0cdea6e of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xf0cdf3eb devl_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xf0e52dc0 __tracepoint_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted -EXPORT_SYMBOL_GPL vmlinux 0xf1084d82 mtk_clk_register_dividers -EXPORT_SYMBOL_GPL vmlinux 0xf10cbf50 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xf10e45a0 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate +EXPORT_SYMBOL_GPL vmlinux 0xf11608da __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xf117ad30 pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf12b41b9 cpufreq_generic_init -EXPORT_SYMBOL_GPL vmlinux 0xf133de4d vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf14da2e3 devm_spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf14e700b sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xf155bf0d devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xf156149f wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf1591064 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0xf16fdd9f blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0xf172ed96 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xf125ac01 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xf12bed06 blk_rq_poll +EXPORT_SYMBOL_GPL vmlinux 0xf12bf381 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf145c460 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xf1496a93 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xf16ea9c4 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xf16ed431 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xf16fcc2c md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf17a3cef __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf18a79d9 ethnl_cable_test_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf18b4bee edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xf18b562f fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xf18b78a1 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0xf194a113 devlink_port_attrs_set -EXPORT_SYMBOL_GPL vmlinux 0xf19ede86 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xf1a5267e ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0xf1c2021f dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xf1c55074 devm_regulator_bulk_get_const -EXPORT_SYMBOL_GPL vmlinux 0xf1dd801f pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0xf1f667ba stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xf1f6a86d debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xf20d3d29 __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0xf216403b devm_hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2176837 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf19dfa08 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0xf1aa91af rz_mtu3_shared_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf1aec977 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xf1bff5c4 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xf1d31fda devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xf1e95e3b dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset +EXPORT_SYMBOL_GPL vmlinux 0xf1f3a52d edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xf1f846a4 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xf1fe058d fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id +EXPORT_SYMBOL_GPL vmlinux 0xf204cdbd dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xf20dc5eb follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xf21370cc __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf23b6c14 vcap_rule_set_counter -EXPORT_SYMBOL_GPL vmlinux 0xf23fd075 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0xf25f5171 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xf267636a class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0xf274ca69 cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xf27ce86f tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xf234a533 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xf24b96db blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf25a3379 skb_partial_csum_set EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf286899c badblocks_check -EXPORT_SYMBOL_GPL vmlinux 0xf288c476 bgmac_enet_remove -EXPORT_SYMBOL_GPL vmlinux 0xf28bd398 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xf286efa1 __virtqueue_break +EXPORT_SYMBOL_GPL vmlinux 0xf28e2b3d ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2b0ee14 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xf29f6380 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xf2a67950 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf2b0d0eb rtnl_delete_link EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b81ce4 of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xf2d94c2d led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0xf2eaf601 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xf2b8f5c1 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xf2bc1e93 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xf2bdf7e4 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xf2c731e8 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xf2cc7ea8 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf2e771d1 crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3147330 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf3148475 mpc8xxx_spi_rx_buf_u16 EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf326661d bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf31d17bb extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf31d1e13 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf32af1a6 fat_setattr EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xf32d7f44 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf33c3de5 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0xf34740a7 ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0xf35111b0 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xf331aff3 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0xf332a56f stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf33608d2 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0xf34560da genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf34b4d99 devm_mbox_controller_register EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf366b38a iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf381e593 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xf381fd44 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xf386de71 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf3ac102c simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3c655ec vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0xf3cb722b dm_disk -EXPORT_SYMBOL_GPL vmlinux 0xf3cf9181 pm_runtime_set_memalloc_noio -EXPORT_SYMBOL_GPL vmlinux 0xf3f77cb6 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0xf40ce960 icmp_build_probe -EXPORT_SYMBOL_GPL vmlinux 0xf40d278b gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0xf4103124 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0xf420a09e gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xf42e451d trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xf431b190 fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0xf433d868 ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0xf43e354a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3ba5b4b devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf3bd7f91 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf3c64b53 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf3d5564d pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0xf3d8ab55 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xf40cabdf vcap_find_keystream_keysets +EXPORT_SYMBOL_GPL vmlinux 0xf411ebe5 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xf448d17e nvmem_layout_unregister EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf4756e34 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf47cf18e devlink_param_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xf4a4680c fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xf4844b92 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4a0b2de da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf4a80fb4 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf4a93886 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xf4ae9867 mtk_clk_gate_ops_setclr_inv EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4c057f9 crypto_comp_decompress EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d807f1 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xf4dd2dd4 fsl_mc_bus_dpmac_type -EXPORT_SYMBOL_GPL vmlinux 0xf4de9778 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xf4ec38a3 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0xf4f1a639 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0xf50392f8 irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xf5132aee crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xf541713b vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0xf5448825 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xf4ce7a47 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4e25c43 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xf4f63b09 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf4fba1c4 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4ff3ed8 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xf5086080 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf51926b0 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf52d1ff8 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xf52ef7be lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xf530b1b0 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf562bf0b crypto_unregister_scomp -EXPORT_SYMBOL_GPL vmlinux 0xf57bf2ba ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0xf57ee030 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0xf592ea7d mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf57ff75b devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xf58881b3 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf58f47fe vcap_tc_flower_handler_arp_usage EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed -EXPORT_SYMBOL_GPL vmlinux 0xf5a162fb __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a6a4e0 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xf5c7cb3f meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0xf5e597a3 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf5a70596 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xf5a975f9 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xf5b06189 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xf5bedae7 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xf5c46ddc devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xf5c97c6a acpi_dev_get_next_consumer_dev EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf60837b2 devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xf613731d ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0xf61b007f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xf5fcef74 pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf621fa7e acpi_subsys_prepare -EXPORT_SYMBOL_GPL vmlinux 0xf62c645f relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xf63109bd imx_clk_hw_pllv4 -EXPORT_SYMBOL_GPL vmlinux 0xf6451123 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xf61d0459 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf61d0d27 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xf61ec83a init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf63ec177 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xf63f003a acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6436eec irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xf643f75b rio_route_add_entry EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64c7650 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xf653f9f3 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0xf658d48b acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0xf662c8b9 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xf65815d1 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xf65c0cba of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf668cc5f fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xf67c2fb8 bus_register -EXPORT_SYMBOL_GPL vmlinux 0xf685428e raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0xf69adace iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xf69b1ea7 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0xf69cf147 phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0xf664793a pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xf664850a devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0xf66af40f fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xf67439da l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf682f79c ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xf69ae3e5 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf69c07e5 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6ad58b6 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf6b28753 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6b44106 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xf6b4a106 blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0xf6b57cff led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6b648e9 rockchip_pcie_get_phys EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xf6c0e154 dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xf6c17a76 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xf6c37d56 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str -EXPORT_SYMBOL_GPL vmlinux 0xf6c77bc5 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6caf3d4 driver_find -EXPORT_SYMBOL_GPL vmlinux 0xf6d077f4 dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf6e28aca rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf6e6d811 vcap_get_rule_count_by_cookie EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6f5c95a balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0xf70b972e register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0xf728ee2d sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xf6f12ed5 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xf6f5d8e4 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xf6fdbf2b crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf71104b2 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xf712d8d3 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf72b024d qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xf72bc2c8 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf7399107 xen_xlate_remap_gfn_array -EXPORT_SYMBOL_GPL vmlinux 0xf73b597f i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7312cb5 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xf732a5d0 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf7337176 find_vpid EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0xf74bf70f skb_defer_rx_timestamp EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf750e927 usb_get_hcd -EXPORT_SYMBOL_GPL vmlinux 0xf763767f devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xf751d09b devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xf7561afa pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7837b10 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf7911a11 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xf79c9c4f devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xf7a86668 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7ba133c cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7bdc56d da9052_adc_read_temp EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7ccf7a0 rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xf7e25bc5 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf7ec4824 md_bitmap_copy_from_slot -EXPORT_SYMBOL_GPL vmlinux 0xf7ed1617 blk_set_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xf7ed27c6 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xf7fbdb0b phy_exit -EXPORT_SYMBOL_GPL vmlinux 0xf7fcc3db otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0xf80eabba tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xf7c82401 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf7cbb270 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0xf7de1824 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xf7f408f3 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xf7fd5447 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0xf8034b01 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xf80d2cb0 virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf81139ea sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xf8127fdd irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0xf81a7e26 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf81729e3 anon_inode_getfd_secure EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event -EXPORT_SYMBOL_GPL vmlinux 0xf8206c99 vp_legacy_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xf82f010a phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xf81f0e5a da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xf82bbe1d dmi_kobj EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf835b6fa of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf8466130 ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xf8571a3a xdp_return_frame_rx_napi EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf86436a9 tc3589x_block_write -EXPORT_SYMBOL_GPL vmlinux 0xf866fc43 dm_path_uevent -EXPORT_SYMBOL_GPL vmlinux 0xf86da638 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf86c0bdc dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xf882ae33 acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf8968c6f rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0xf8983197 da903x_writes -EXPORT_SYMBOL_GPL vmlinux 0xf89e0c0c __strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xf8a29d11 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xf8a61e5c pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xf8a7de8a crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0xf8b00e56 devm_pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0xf8b1730f vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0xf8c87ffc nvmem_add_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xf8cc6027 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xf8ce05b4 acpi_dev_remove_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0xf8d7f974 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0xf8e04199 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf8843400 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xf8b1f824 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf8bacbda tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0xf8cebc1a iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf8d3d3b5 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xf8dcfb0f bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf8deb6ad generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8df6c0c vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xf8e58ae9 fscrypt_mergeable_bio_bh EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf900d48c regulator_get_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xf900e3b1 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xf901eed0 strp_init -EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xf926a606 phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL vmlinux 0xf91011bf devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf91e5827 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xf91f9c68 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xf9294aa8 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xf9327a90 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xf9354307 __traceiter_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xf93be4c0 regulator_desc_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95a18a7 xhci_stop +EXPORT_SYMBOL_GPL vmlinux 0xf95f87fe mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf976819a of_cpufreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xf990ded3 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xf96c2947 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf96cfeeb uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xf9743c1a kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xf97f07c3 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xf9952c3b extcon_dev_unregister EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a06599 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c8fa iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xf9a562db ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xf9afa85b ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9e9b503 perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0xfa019ef1 cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xfa03639a xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xfa0f9bc1 ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xfa172ce1 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xf9b5a70a meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xf9cc3f4e __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xf9d46817 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xf9e9dedb device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xf9f06b62 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf9f8fa04 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xfa123c52 crypto_sig_maxsize EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0xfa239d24 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xfa276851 usb_unanchor_urb -EXPORT_SYMBOL_GPL vmlinux 0xfa285eb6 xdp_rxq_info_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0xfa328729 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xfa27f9e2 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xfa284608 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xfa28dd98 blk_queue_required_elevator_features EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa37fb11 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xfa3c9375 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xfa410fcb ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xfa43393a mtk_clk_register_pllfhs EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xfa5abe53 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xfa53bdd6 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xfa589d58 iort_put_rmr_sids EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa702a6a mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xfa7e2d13 phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0xfa80d846 sysfs_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xfa81d43a hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfa856549 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0xfa8898f9 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0xfa9426b8 acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xfa94e186 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0xfaa4bfbb ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xfa6b8c83 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xfa6dc37a register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xfa7a1e8a copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0xfa7ddeb8 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xfa8078c5 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xfa9eada8 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0xfa9f066a fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfaa0122c fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0xfaa7eef7 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xfaa81de1 fuse_do_open EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfad4d9a4 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xfab61198 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xfad65386 fsl_mc_get_endpoint EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfade73c3 iommu_domain_free -EXPORT_SYMBOL_GPL vmlinux 0xfaf50371 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0xfb1429e1 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0xfb17efbc devm_hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xfb1fec14 device_find_child_by_name -EXPORT_SYMBOL_GPL vmlinux 0xfb200540 acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0xfb2205b7 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xfae29955 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfaeba92d percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xfb0d7867 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xfb16aa3d usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xfb1b6043 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xfb1d17a6 mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0xfb1dca7a pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb2f022d meson_clk_dualdiv_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync -EXPORT_SYMBOL_GPL vmlinux 0xfb45ea29 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0xfb5d1ffa clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xfb5d3ea5 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xfb35890a x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xfb4148f2 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfb5597f9 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xfb58d07a regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb664ba8 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0xfb6b44df usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xfb68bfb2 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb837f1a find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0xfb900513 vp_modern_probe -EXPORT_SYMBOL_GPL vmlinux 0xfb90b277 pci_disable_pasid -EXPORT_SYMBOL_GPL vmlinux 0xfb95efce gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xfba0daa5 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0xfbb5d33e usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xfb732147 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xfb74e910 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfb7f1958 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xfb8bba12 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xfb949542 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xfb97f216 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xfb99d3b9 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xfba6a030 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfba6fde4 tpm_get_random EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xfbcef4ea powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0xfbd8c8a2 pm_clk_remove_clk -EXPORT_SYMBOL_GPL vmlinux 0xfbe86f0b __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xfbf57fd3 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0xfbf8dc29 pwm_get_chip_data -EXPORT_SYMBOL_GPL vmlinux 0xfbfa4051 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xfbcd8a7f platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xfbd58dd0 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xfbf1261f usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xfbfc7b2b phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc0042bc kvm_get_kvm_safe EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0bfc54 pci_p2pdma_distance_many -EXPORT_SYMBOL_GPL vmlinux 0xfc0e80b5 ahci_start_engine -EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc1808b9 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xfc1d4922 hisi_clk_register_phase EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc24ba97 fscrypt_symlink_getattr EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames -EXPORT_SYMBOL_GPL vmlinux 0xfc35dfcd pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0xfc3881fc gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xfc2568b2 __root_device_register EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc4070fd inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0xfc41dd7b to_nd_desc -EXPORT_SYMBOL_GPL vmlinux 0xfc44a05b nvdimm_region_notify -EXPORT_SYMBOL_GPL vmlinux 0xfc4661e8 inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0xfc48500d pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xfc53d148 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0xfc69b98d usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xfc6ea8a6 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0xfc78db30 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xfc7c22a9 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0xfc3eb9a8 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xfc670390 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xfc694347 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xfc6a5a6e extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc717589 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xfc83b711 rockchip_clk_init EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc956469 usb_disable_ltm -EXPORT_SYMBOL_GPL vmlinux 0xfc992ac1 strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0xfcb70b9c devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfc9da40b dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xfcb2c56f bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0xfcb9a59e usb_register_dev EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc108b6 of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xfcc18f2f platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcd12575 pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xfcd934fc spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xfcec55e9 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xfcf3ecb4 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0xfcc3d7e4 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xfcd09aa5 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0xfce903ed syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xfcee6d19 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xfcf15958 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xfcf7e534 usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xfcfb4f55 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xfcfa10ea extcon_set_property_capability EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd0e89c7 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfd14fe3a proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd1c557d device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0xfd1f972a inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0xfd309343 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xfd4695e4 nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0xfd488e29 devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xfd4c201e __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0xfd5479ba raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0xfd5c95df regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0xfd62a50a mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd2209b5 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xfd321ac1 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xfd4c4602 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xfd50f19b device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xfd51cbb5 fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event -EXPORT_SYMBOL_GPL vmlinux 0xfd683ff5 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd69b342 fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd86db82 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfd8eca00 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xfd8afbe6 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xfdaf68ea acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xfdbaf18c hvc_remove EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdc28085 bd_prepare_to_claim -EXPORT_SYMBOL_GPL vmlinux 0xfdce5957 register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xfde7bc62 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xfdde46cc devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf1637f devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xfdff73f1 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xfdf9bd8d usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xfe027d57 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xfe0cdce5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xfe0dd5a3 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe194cdf mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xfe197343 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xfe175a25 con_debug_enter EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe1bee3c bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0xfe1fbf82 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xfe285f23 fib_new_table EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3aeea9 dev_pm_opp_find_freq_ceil -EXPORT_SYMBOL_GPL vmlinux 0xfe3f7ea7 pci_epf_destroy -EXPORT_SYMBOL_GPL vmlinux 0xfe4147c0 regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0xfe42491c __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xfe4665c7 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xfe40a7c3 gnttab_unmap_refs EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe4cdd41 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xfe518bee kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfe742c02 skb_segment_list -EXPORT_SYMBOL_GPL vmlinux 0xfe87b864 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe4905b1 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xfe5b6510 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xfe6c0afc pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfe77c793 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xfe7ce3f6 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xfe8392fe sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe8f843a nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xfe914871 sysfs_remove_file_from_group EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfe9eb1dc amba_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0xfea145ab clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0xfeae8d20 do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0xfeb1909a dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xfe9b3000 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe9dff1c fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0xfea3edf9 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfea6ce71 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xfeb65aeb pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xfeb7e4f8 pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed737b7 iommu_get_domain_for_dev_pasid -EXPORT_SYMBOL_GPL vmlinux 0xfedbd989 serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xfee4d794 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xfedb8921 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xfedd1005 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xfeec3489 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfefd139d __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff0683de check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xff11bd52 clk_hw_get_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xff11d0db mtk_clk_simple_remove EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff1b4eab virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xff2097cd ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xff240f3f dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff3efefa virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xff33f54b raw_v4_match EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role -EXPORT_SYMBOL_GPL vmlinux 0xff451244 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xff6674bc sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0xff76ab9f fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xff5073cf iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xff679ab7 vcap_chain_offset +EXPORT_SYMBOL_GPL vmlinux 0xff69e423 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xff73350f devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui -EXPORT_SYMBOL_GPL vmlinux 0xff7e537c ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0xff83f579 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff94d633 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0xff9ba803 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xff9dc71b dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xff8aab39 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xff936b48 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xff98cf32 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xff9f6480 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0xffa6decf vp_legacy_set_status EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffc31016 __stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0xffc4aba4 xenbus_map_ring_valloc -EXPORT_SYMBOL_GPL vmlinux 0xffc5430b phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0xffb5012d extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xffbd09a0 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xffc05e56 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xffc62438 nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xffc8bef5 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xffd166d7 netdev_sw_irq_coalesce_default_on -EXPORT_SYMBOL_GPL vmlinux 0xffe063ae iommu_detach_device -EXPORT_SYMBOL_GPL vmlinux 0xffe2e8ca devlink_port_fini -EXPORT_SYMBOL_GPL vmlinux 0xffe9063c iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0xffebe92e irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xffef4d73 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xffd02205 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xffd5c6a1 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xffd5d124 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xffdae2f3 devm_mbox_controller_unregister FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -FW_CS_DSP EXPORT_SYMBOL_GPL 0x031a4f5f cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x03eaf7c7 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0779e219 cs_dsp_run drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x13e20b47 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x07aba329 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0a72dbe0 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0f3b9536 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x18095dc7 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x466c5a2b cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x483edc95 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x1cab73fa cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x29046883 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3052feba cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x3574dd42 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4236298c cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x52c49181 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x5c5242ce cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x565316c6 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x6d32defe cs_dsp_power_down drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x74ad3b25 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x812b358a cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x82b4b68e cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x8a21b53e cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x9d979572 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x701f1253 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x71206ed9 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7825e7a6 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x792463f7 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x8190b882 cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x82386fab cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x9d804efe cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e7d38a3 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xaa3da115 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb63c1776 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xb68ff5aa cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa068804f cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa6aa3796 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb1cc13c5 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xc10bae46 cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xd8ecb6b3 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xea34c575 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xea380e56 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xec234c36 cs_dsp_stop drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfd9aef32 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0x119e3b7f hwmon_device_register_for_thermal vmlinux -IIO_AD5592R EXPORT_SYMBOL_GPL 0x9f13600b ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0xd4750fa2 ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x6b7e2c29 ad5686_remove drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0x728a8406 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x6c30af61 ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0xb16d42f1 ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x72b4c441 ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0xdeee8b60 ad7606_probe drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x19e7190a __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0xf7346d97 adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x188ae253 devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1d0d9557 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x41f6885e __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x44cae4a6 adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7883e40f __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7deb97a9 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8ac40551 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8f8a52e9 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9220220e adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xfa9555a2 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xd6b0bc86 __adis_reset drivers/iio/imu/adis_lib -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x0451df4b devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x37d8c7ab adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x5950c2d3 adxl31x_chip_info drivers/iio/accel/adxl313_core +FW_CS_DSP EXPORT_SYMBOL_GPL 0xd858dc4c cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf8a5fb8e cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xfaed3510 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xfd75a033 cs_dsp_remove drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x5702815c hwmon_device_register_for_thermal vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x14013dbb idle_inject_register_full vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x5f064467 idle_inject_register vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x85c2b7eb idle_inject_stop vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x95e93783 idle_inject_set_latency vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0xc18575af idle_inject_set_duration vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0xad92f360 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xc743ebc3 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x2a7d7cab ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x6ab08a89 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x0e5bd3cf ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x62bf9b07 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x26204571 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x92b4f1d4 ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0xaee0ce6b adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xf3fe9788 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2f275686 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x380526b7 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5c8dde05 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7e458ebc __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x957d5443 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9e1503a9 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa1f956ed devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xdfab5fc4 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe76361f8 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf06f1f00 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0xb34cad92 __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0x62cb5efb adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xc1c7a234 devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xa6510cb3 adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xadf44b99 adxl313_core_probe drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_regs_table drivers/iio/accel/adxl313_core -IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf507228b adxl313_core_probe drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x20434e2d adxl355_core_probe drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL355 EXPORT_SYMBOL_GPL 0x91864b24 adxl355_core_probe drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL367 EXPORT_SYMBOL_GPL 0x6d187dd1 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x605c1caa adxl372_probe drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0xa6566725 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2449b9c8 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x298d2175 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x3d8dd30a ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5362884a ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x69a15fab ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8af99eff ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x95dae93e ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x9a1228c2 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xd756c2a8 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xeb65116d ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0x68c4d972 bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0xeb6b34be bma400_probe drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x05cda081 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x6014d52e bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xdbfa8b8c bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xff76ace6 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x15e9e957 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x521b094b bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x5447f018 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x99d8709f bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0xdebb4241 bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0xd210d511 bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x286356fd bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x32197b3f bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xd838b69c bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xdfb302b4 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI160 EXPORT_SYMBOL 0x6b7a1607 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x0417a965 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x85f6fa44 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xdfc6cff8 adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x177da336 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1811298c ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x60dee14a ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6c4ed0ea ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6f76216c ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x829ffdac devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x959f62f8 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa0be9159 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xace4d5de ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc77433c0 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x2cf03323 bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xdea5a82e bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x31c5716b bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x6ad89884 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xb41d7bb3 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xca5bd5e8 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x1b6eb4ed bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x8b08531e bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xa7779634 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xf93dda4b bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x884fcfed bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x699a80ff bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x08ff86b0 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x1bb1e38b bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xc02f73d6 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xfcd551d8 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI160 EXPORT_SYMBOL 0x86be7095 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL_GPL 0xc77bb835 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x6d640125 bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x8236b7c4 bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x87e2dc47 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xbedc2f53 bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0xcd4a9bdc bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0xd6e74b8d bno055_probe drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x47674bf8 fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x68976523 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xf4e93e5a fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x18fea8d0 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x6be2dfa5 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xba203c15 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xea4806b2 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_HID EXPORT_SYMBOL 0x0ba70b5e hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x3245d565 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x38e7b7bd hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x3acad387 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x50ba446a hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x6518f64a hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x75c95a43 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_BMI160 EXPORT_SYMBOL_GPL 0x99626ad3 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x1347ea03 bmp580_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x18ef3d05 bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x1d3b5686 bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x6645ce2e bmp380_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x66b17a02 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x872b0a83 bmp180_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x8caf0e9c bme280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x9e878598 bmp580_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xf269e067 bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xfb4a2f58 bmp280_chip_info drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x5b0c5d9a bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xdfb2b8ab bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x96931ead fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x9d0c8c6e fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x9d1e6dbf fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x04a99ac1 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x4896941c fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x94258a41 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa6770e04 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x094bee02 iio_gts_avail_scales_for_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x169326a3 devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x296bb0cd iio_gts_all_avail_scales drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x4ed89402 iio_gts_find_sel_by_gain drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x53000dc5 iio_gts_find_gain_by_sel drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x54a7bad7 iio_gts_get_min_gain drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x5f338fa0 iio_gts_find_new_gain_sel_by_old_gain_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xa3374797 iio_gts_get_scale drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xaf5aaa85 iio_find_closest_gain_low drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc061498b iio_gts_avail_times drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc25ccf30 iio_gts_find_new_gain_by_old_gain_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd7e29768 iio_gts_find_gain_sel_for_scale_using_time drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf42af90f iio_gts_total_gain_to_scale drivers/iio/industrialio-gts-helper +IIO_HID EXPORT_SYMBOL 0x1fe96b78 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2809e0cc hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3e048f1e hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x534034a1 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x65af2e79 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x81a485df hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xa87bd555 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0xb06753ab hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xb774153a hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xd331187f hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x0fb96781 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x25d59b1f hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdbb55bd1 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xdcba6a28 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0x26a63d8d hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0x68467bd5 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0xd279c316 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x75dbe432 hts221_probe drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0xa36614bf hts221_pm_ops drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xbf1feb61 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xecd280fb inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xef397dc4 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x442663a8 kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0x60a5e63e kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x1d45c19b kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xc8708a41 kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xd0ab348f kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x130b60bb st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0x5de9a717 st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_HID EXPORT_SYMBOL 0x9104e53c hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa0a9bff9 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa440d34e hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc2efeaf9 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd5097837 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe595310f hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xf612f114 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2c64c127 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x4a83c295 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x55163560 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x65660846 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x0bd3094a hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x12e30c0d hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x19d920e6 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x55e68567 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xf3c5fb03 hts221_probe drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x3db9eeeb inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xa1d6e466 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xb7b6003a inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x12559328 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0x6c0924cd kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x2861036c kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x8ec835b9 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xd6d3688a kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0xf57d6dad st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0xf9915c6f st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0f801da4 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x089e6bc1 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x3a4b1a08 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x3d6df23c ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x40801e33 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x5532856b ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7eb6935f ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x93cc8420 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbace498d ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfa621fa4 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x777ec238 mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xb126fe8e mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0xda5ab45a mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x02e2aa99 mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x12cf45f8 mma9551_read_status_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x166e1d7e mma9551_read_status_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x1e47cb76 mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x203179c4 mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x2893f5e7 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x6473a253 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7a73e5f2 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x895254e6 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb33847fd ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb4bd7e28 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd331f5f0 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd8d3f953 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfdf1108c ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x7f4cf8c9 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x96121dcc mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xc0b396e0 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x186b67e1 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x30ff6ee8 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x38d594a5 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x3cc24967 mma9551_app_reset drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x4e17a7f4 mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x633dc2e0 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x6ab8e2e2 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x763e4f51 mma9551_read_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x8347821f mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x87ff0824 mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x97c996cc mma9551_write_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xa0730f72 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x46d7b83a mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x648265f6 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x79ced008 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7b924a5c mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7cefdef3 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x9a325044 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbc105932 mma9551_read_status_word drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xc0a4e71d mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xeef7229d mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MPL115 EXPORT_SYMBOL 0x62b1a9f3 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 -IIO_MPL115 EXPORT_SYMBOL_GPL 0x9113b4fa mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x31e38113 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x42f25e50 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x4838326c ms5611_remove drivers/iio/pressure/ms5611_core -IIO_MS5611 EXPORT_SYMBOL 0x90b45f7e ms5611_probe drivers/iio/pressure/ms5611_core -IIO_RESCALE EXPORT_SYMBOL_GPL 0x49324994 rescale_process_scale drivers/iio/afe/iio-rescale -IIO_RESCALE EXPORT_SYMBOL_GPL 0x8da8495b rescale_process_offset drivers/iio/afe/iio-rescale +IIO_MMA9551 EXPORT_SYMBOL 0xce3b079e mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xceac294d mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xeb76667c mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf2ee9e45 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf82305f6 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0xe400af90 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x15131074 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x2b87817d inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x4216974b inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x64d2208a ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x658a9c91 rescale_process_scale drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x91e6925f rescale_process_offset drivers/iio/afe/iio-rescale IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core -IIO_RM3100 EXPORT_SYMBOL_GPL 0x147f27ba rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0x1eea7aa0 scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0x3ff54be6 scd30_probe drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0x817e2a1a sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x2f7be487 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x463e6236 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x46c4939e ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x6f850e71 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x90b6db55 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xc9ecd594 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xeeec34e2 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xef52b950 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_RM3100 EXPORT_SYMBOL_GPL 0xdb4e9fdb rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x275df975 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xa67f0968 scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0x0fb5922a sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x1c2cbe7a ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x2ba8b10b ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x3de13be0 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x806ef61f ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x91750a8a ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xae3a3434 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xfd418b71 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xfe8c7ae6 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x17b02be9 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x20bd6eeb st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x23e0710a st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x28859e30 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x2bf7d3b4 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x2bf93dbb st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x509b1a91 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x514729c1 st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x7c528ab3 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x8efe9a84 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x960a4ac8 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0xa4fe9eb8 st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xa7e271b1 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa95df2f1 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xadb1af02 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb09749eb st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xb2087df1 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb6f363a5 st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xb7862cbb st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb946fe34 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xbba659f8 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0xc16fd130 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xd1b0f029 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xed44a425 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xf25546bf st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xfbdf701d st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x88990c7c st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0x118d7feb st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0xaa0af63a st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x12add3b0 zpa2326_remove drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1c1d82f7 zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5dafbc67 zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6f212cb9 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xa9bc0b34 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xdbe99469 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IOMMUFD EXPORT_SYMBOL_GPL 0x161bf5c1 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x198511af iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x1ff17e6b iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x325effd9 iommufd_device_unbind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x4b5301b2 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x53f77f4b iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x62ba03c8 iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x6a7d79b6 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x82962f1b iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x84e30091 iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xd34c29d3 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xfe01a59f iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x3cd86ef1 iommufd_vfio_compat_ioas_id drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x029a9c2b iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x02ab1dc7 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x07696f19 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x07d40535 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0b54705c iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x0f44c563 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1207d6a4 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IIO_ST_SENSORS EXPORT_SYMBOL 0x0c2915b1 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0ff8c47b st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x1e2ecc23 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x23174994 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2fbc1063 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x31a9cc54 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x421b9a64 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x447fb02a st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x70056033 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x81e8965b st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x853666c7 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8cd13dab st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x94d963e3 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x96113ce3 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x9699f494 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x99dad061 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xb62b01b7 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbe48dbc2 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xbf41e1fc st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc0f3cbeb st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc2f9698a st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xd68ec322 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xd7d68376 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xe5efdc2e st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfbdbc263 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfe673e71 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x6c8deb6d st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x195fe338 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x83d8d457 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0bab84b3 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x170270a9 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1ef1d841 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x809c4a17 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x94e35880 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xceb3d8e1 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x35ed83e6 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x6792b12f m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x87ea6f64 m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xc3f35818 m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xfc6dbc12 m10bmc_sys_read drivers/mfd/intel-m10-bmc-core +IOMMUFD EXPORT_SYMBOL_GPL 0x14b80e04 iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x22480c87 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x24913a2c iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2a16b85a iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x420eca9c iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x65813f71 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6f80d471 iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x739e7bb9 iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x965123e2 iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xb0777953 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xbb1c7ed3 iommufd_access_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xd1d244ee iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xf94ac59e iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x39b3dc92 iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x4265fcb3 iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x959a6f49 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd +IWLWIFI EXPORT_SYMBOL_GPL 0x06b11b0c iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0e9870cc iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0ea99e05 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1127f7cb iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1266f800 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x12fe5a9d iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x160b73ef iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x180fd9ee iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x19e5353a iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1b34a063 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1e9e0ae3 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2452023e iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x25c6c10a __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x23037732 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x24ed75e0 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x25e1a2d9 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2bb9fe25 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2c3bbcf0 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2e6188d3 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2f6f000c iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x33ae8df5 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2b21d5c6 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x30d35f91 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x35d4a85b __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x363f8cea iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x36ae269f iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3bd268e6 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x402c30c1 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x466a6d50 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x47453539 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ba5f927 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3d4d0d76 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f9fac0b iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x426b2b5f iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4445272e __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4cf53889 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x50e319d9 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5443d4a9 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4ad08b93 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5114412b iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5115141b iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5194f9c0 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x54e7bd1f iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x56fb42bc iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x58fbaa0d iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x597d61f5 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5ce4d8d7 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5ec79bcd iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5fecab88 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x61a1a6d0 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x63314bc5 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6a24e570 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6c78bc8c iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6e197945 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6f528564 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x70dd3e39 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x772c162b iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5e43e204 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ff23866 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x64331841 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x645e4ebc iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x674471b3 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6ab7984d iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6acace38 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6b313c17 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x716a1a4a iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72754f94 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x74673809 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x79dab214 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7a7df289 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7ab9e6d1 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7cd45e0b iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x79877a24 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7c60b7c5 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7eb1b2d0 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x82c2b8a4 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x84620a5b iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8616545f iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x86df1102 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8cb75408 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8d318dc2 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8a3f3ee0 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9652b59d iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9682f4aa iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9e7949af iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9ed0b07b iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa256fc67 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa298a773 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa5bc27d8 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa8c81817 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaa1b3e77 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xadb4a613 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9720117c iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x981a88e5 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa141dc08 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa1ca759c iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa55df4c7 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa7b680a4 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa7f20df6 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaac39394 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xac1d452a iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xafa6afa8 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb3057b22 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb30dd7b2 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb3f10203 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb853bb6b iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc120781c iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc1633584 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc465d7da iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc470789f iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc89d228c iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcc894748 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbbc4006d iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbfb090ff iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbff3b073 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc85a51f0 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcc3c5661 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd2a4800b iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd51241bd iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd7f6ee59 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdbdda900 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcf8a35c1 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd0758e9e iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd935cf57 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd9ec1eac iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xde464eb9 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdf4e34b2 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe32a7a35 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe83dcf71 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xed99867e iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xee203c1a iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xee782893 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xefe4992d iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf031c58e iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf139c6d0 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf5c53fa8 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf67b7582 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeb9de20b iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xec2bd5ad iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xed889d6f iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeefb0724 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf1647f54 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf22fe694 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf55b6927 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x304e0c85 ltc2497core_remove drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0x699e98be ltc2497core_probe drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x043634ba mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3b43baa2 mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x4c0df0ad mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x60010020 mcb_bus_get drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x64a8df03 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7d8830f9 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xa055753b mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xbe13ba06 __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xd6de25f1 mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xdeb01492 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xea0689a5 mcb_bus_add_devices drivers/mcb/mcb +LTC2497 EXPORT_SYMBOL 0x159c5370 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x5a467fbe ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x061b3902 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1174d8b8 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x15c9852d mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1e8174ed mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1f71064e mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2fae540d chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x38b88491 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6418ca67 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x760b474a mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9fe645ed mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa318c6e9 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb90300ba __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc132fe8a mcb_free_dev drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xeea7f4fb mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf1f9c4c6 chameleon_parse_cells drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xf474f934 mcb_alloc_dev drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x8b4b5f24 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x929a8205 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0xcac45e1a ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0735ec9b nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x41ed5e48 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4b5225c6 nvme_find_get_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x58693fbc nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc2b38821 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd1ed1eb8 nvme_execute_passthru_rq drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x06a5ac57 __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x1f1c722f peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2c041545 peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x33ad8877 peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x3d8d7c91 peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x41d0fc87 peci_request_status drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4237d5e5 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4312129b peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4332fb97 devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x50277bb3 peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5ec2861c peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x759be103 peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x83c28db5 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x875f9cf7 peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9cb3bff5 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9e144d2c peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xab1f8b13 peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc8fa8afc peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xcbf77b7d peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd9a10b36 peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xda04b4a8 peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdc488f46 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdfb2fca8 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe20ffbe5 peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe5988c75 peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe81ec84e peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe95a3117 peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf733437a peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf94e7ff4 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI_CPU EXPORT_SYMBOL_GPL 0x04b6210d peci_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x0fd1224e peci_mmio_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x2c3409e1 peci_pcs_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x7e6b10a6 peci_ep_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x83ff3dc4 peci_temp_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x035f6447 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x1d6b62c0 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x2049ecaf pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x32090e5c pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x37187152 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x3f53e01d pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x44e809f7 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x6af864d7 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x76654d5a pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x9ad1e9e1 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xac6c0d74 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xaf619b97 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xb07824b0 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc0ae154c pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc67869cd pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd0eb450d pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xd229ea5d pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xda0b4b87 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe41b6f7c pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x09d8db1d sx_common_probe drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x77fbf41a sx_common_read_proximity drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7ba92dc1 sx_common_write_event_config drivers/iio/proximity/sx_common +MCB EXPORT_SYMBOL_GPL 0xef69f3c1 mcb_alloc_dev drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x32d97ab9 ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0x40161498 ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0xd0f378c1 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0721b81f nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0cbd7556 nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x176b2990 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x33894ead nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5bd41fad nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x74bfc5ac nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x78e81717 nvme_find_get_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x17e44776 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1f981dd7 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2fc2d26e peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x31f3d3d2 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3fe06a70 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6379f05f devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x647857cc peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6871f0a5 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6ea266ba peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x730b81e6 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7ce1292d peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8323c5f6 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8c3447b8 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x95413c9a peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa4c217be peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa58c52cc peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xadcf78ea peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb0260caa peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb9128339 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb982af79 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc22ab4b5 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc30f4e24 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc76ebcdf peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe0fbd8ee peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe1640060 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xefbeb47c peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf3274ff7 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf79d6026 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf9af37b7 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x37d4cab3 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x5fe2c31a peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xb0113dbe peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xc8c0eaa5 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xd03a32c3 peci_pcs_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x2a2ce280 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2ac51869 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2f435388 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3b1042d3 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4ad7079e pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5ff9604c pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x69462a97 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7007c4a2 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x80a47bcb pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9b5ffdbf pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9e2f94e4 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9e8e7efb pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc02c9c5a pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc8c48a82 pmbus_unlock drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xce8e7dbc pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd2a3dc87 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd552d95c pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd6850c42 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd944f676 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe5ad54ae pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf5d12eed pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xeee7acdc sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xaa725d59 sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xc4569665 sx_common_get_raw_register_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xc897db71 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xe6df5dea sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xee0f1ff2 sx_common_write_event_config drivers/iio/proximity/sx_common +SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0xbe0339f2 serial8250_pci_setup_port vmlinux +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x0b15fad2 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x0f6991e4 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x43a36269 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x4847aed5 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x9c85ef79 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xce392840 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x1f6416d2 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xf1027a31 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xfc7fa8b0 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x607e8062 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x7479d1d6 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x6870f820 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x921b25a1 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xa2a2df29 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x221fbcde cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x4cb144b6 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xbec5d2e9 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xa9d020e2 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xeae8e1ae cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xfa1c2dd5 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x0153cee2 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x1b92a33b cs42l42_init sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x5cec10ea cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x678941c6 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x709bbfd2 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x9874a3d7 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xaa7b3be7 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb50f7eb6 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x19953262 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x8cc07e3c cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xb6d7cae8 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc73cb54f cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xd6b3a25f cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xf5ef0ba4 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x00980937 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x05482545 cs35l56_irq sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x3260c3e9 cs35l56_init sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x504900a1 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x56784b06 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x83a98a0b cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x9482939c cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xa83d4cd3 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x05c2529e cs35l56_tx_input_values sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x22a54c12 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x294d831c cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x312c0e0f cs35l56_dsp1_regions sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x5b9e7ebe cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x64e759e4 cs35l56_tx_input_texts sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x88762c92 cs35l56_get_bclk_freq_id sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcd5438ad cs35l56_fill_supply_names sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xedcb7861 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x120bf2b1 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x17aaf182 cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x1ad29ca5 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x26872be7 cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x8d2162ea cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x969713c1 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x99ea90dd cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa3aeb0f0 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa664e3e5 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae4be5c4 cs42l42_irq_thread sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb2fe6c0b cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb8446680 cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xdda7b69f cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xe227d20c cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xeb2c0ee9 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x4ff18cda sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp -SOUNDWIRE_INTEL EXPORT_SYMBOL 0x8f801cea sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x03a9065f sdw_intel_startup drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x3df081ba sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x49db0e05 sdw_intel_exit drivers/soundwire/soundwire-intel +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc5507958 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf3ff4537 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xfc036b3b cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xe02bb41e sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x09351149 tasdevice_prmg_calibdata_load sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1a949c7c tasdevice_select_cfg_blk sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1ab9b7d9 tasdevice_select_tuningprm_cfg sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x23c94cc6 tasdevice_tuning_switch sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x2c2d92de tasdevice_config_info_remove sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x40ec23ee tasdevice_calbin_remove sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x957998f4 tas2781_load_calibration sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xa7d17083 tasdevice_rca_parser sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfa72134b tasdevice_dsp_parser sound/soc/codecs/snd-soc-tas2781-fmwlib +SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfe3a6722 tasdevice_prmg_load sound/soc/codecs/snd-soc-tas2781-fmwlib +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x0c04ed57 sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x9ffc1991 sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1129091f sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x1d719947 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5ae6e3a7 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x89612272 sdw_intel_startup drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xd4085bfb sdw_intel_probe drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x49ff7363 dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x50eb6b2e dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x54e6bf81 dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x55e6740a dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x77c48c12 dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x96db836d dw_spi_dma_setup_mfld drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa0740071 dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb7d8521a dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xfd83ba29 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x582e4785 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x71df5b3d dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x9472b824 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x9eaa0946 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc2e7bc2f dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xeca8ac9c dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf43fd83c dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf5930b8a dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xfa02ca2e dw_spi_set_cs drivers/spi/spi-dw SUNXI_CCU EXPORT_SYMBOL_GPL 0x079708d7 ccu_gate_helper_enable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x0a9707d3 ccu_mux_helper_get_parent vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x0c64ee0e ccu_sdm_helper_enable vmlinux @@ -27956,9 +28705,9 @@ SUNXI_CCU EXPORT_SYMBOL_GPL 0x61abda39 ccu_mux_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x6668446b ccu_phase_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x7279ee3e ccu_mult_ops vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x78f84917 ccu_helper_wait_for_lock vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x831d58e6 ccu_gate_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x844f1c47 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x864944c5 ccu_helper_wait_for_lock vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x8a845fdb ccu_nk_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x8bdea961 ccu_nkm_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x8e63463a ccu_frac_helper_has_rate vmlinux @@ -27966,8 +28715,9 @@ SUNXI_CCU EXPORT_SYMBOL_GPL 0x976fa968 ccu_mp_mmc_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xad1062ab ccu_gate_helper_disable vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0xb945e40c ccu_pll_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xb9595b03 ccu_pll_notifier_register vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xba365240 ccu_sdm_helper_get_factors vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbd3aa3ad devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xbdb5d83e ccu_mux_helper_determine_rate vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xc4608f36 ccu_mux_helper_apply_prediv vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xce9edc4f ccu_frac_helper_disable vmlinux @@ -27978,29 +28728,28 @@ -SUNXI_CCU EXPORT_SYMBOL_GPL 0xe8601e96 devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xeb47a9b9 ccu_frac_helper_set_rate vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xf66eb443 ccu_gate_helper_is_enabled vmlinux TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x00ecbc82 usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x0aca1643 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x16b32b19 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0aa006d4 usb_stor_Bulk_transport drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2e5d6481 usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2fcc6e2c usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x32388795 usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5b9fcf5d usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5ecf94e0 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6b6bbb17 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x7b7920f0 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x916b4a6d usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9a1a363f usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x9ca4e9b7 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xab193586 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xae65e2ab usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb1b3b2a3 usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xba4f03c4 usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc0c75e56 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc3bce329 usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xc6dfccff usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe4e10579 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xe9034282 usb_stor_bulk_srb drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf3f4c71b usb_stor_suspend drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xf484b041 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2f471c67 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4be2daa2 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5c9e85ca usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x883e082f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x88b4a77d usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8c003540 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8fc4242d usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x968e3671 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x974ff1cd usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x97e1fa7e usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9c29b126 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaa691a16 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc4d3505a fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xca7f02ce usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd9c95f56 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb4f2324 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb7a6ea8 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xed9d02e2 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xee9b628c usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xef4986ef usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xef955a8f usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf2f9a6d1 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf7123310 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.compiler linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.compiler --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.compiler +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.compiler @@ -1 +1 @@ -GCC: (Ubuntu 12.2.0-17ubuntu1) 12.2.0 +GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.modules linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.modules --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.modules +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.modules @@ -8,9 +8,11 @@ 8139cp 8139too 8250_bcm7271 +8250_dfl 8250_em 8250_exar 8250_men_mcb +8250_pci1xxxx 8250_pericom 8255 8255_pci @@ -37,6 +39,8 @@ 9pnet_virtio 9pnet_xen BusLogic +a1-peripherals +a1-pll a100u2w a3d a53-pll @@ -48,6 +52,7 @@ abp060mg ac97_bus acard-ahci +acbel-fsg032 acecad acenic acp_audio_dma @@ -155,7 +160,6 @@ ad799x ad8366 ad8801 -ad9389b ad9467 ad9523 ad9832 @@ -177,9 +181,6 @@ addi_apci_3501 addi_apci_3xxx addi_watchdog -ade7854 -ade7854-i2c -ade7854-spi adf4350 adf4371 adf4377 @@ -208,8 +209,6 @@ adl_pci6208 adl_pci7x3x adl_pci8164 -adl_pci9111 -adl_pci9118 adm1025 adm1026 adm1029 @@ -231,7 +230,6 @@ adp5589-keys adp8860_bl adp8870_bl -adq12b adrf6780 ads7828 ads7846 @@ -259,12 +257,10 @@ adv7511 adv7604 adv7842 -adv_pci1710 adv_pci1720 adv_pci1723 adv_pci1724 adv_pci1760 -adv_pci_dio advansys adxl313_core adxl313_i2c @@ -317,10 +313,9 @@ aic79xx aic7xxx aic94xx -aio_aio12_8 -aio_iiro_16 aiptek aircable +airo airspy ak7375 ak881x @@ -364,17 +359,11 @@ amd5536udc_pci amd8111e amdgpu +amdxcp amlogic-gxl-crypto amlogic_thermal amphion-vpu -amplc_dio200 -amplc_dio200_common -amplc_dio200_pci -amplc_pc236 amplc_pc236_common -amplc_pc263 -amplc_pci224 -amplc_pci230 amplc_pci236 amplc_pci263 ams-iaq-core @@ -394,7 +383,7 @@ aoe apbps2 apcs-msm8916 -apcs-sdx55 +apcs-msm8996 apds9300 apds9802als apds990x @@ -503,6 +492,7 @@ ath11k ath11k_ahb ath11k_pci +ath12k ath3k ath5k ath6kl_core @@ -547,6 +537,7 @@ authenc authencesn autofs4 +auxadc_thermal avmfritz ax25 ax88179_178a @@ -695,6 +686,7 @@ bpa-rs600 bpa10x bpck +bpck6 bpfilter bpqether bq2415x_charger @@ -739,6 +731,7 @@ btmtk btmtksdio btmtkuart +btnxpuart btqca btqcomsmd btrfs @@ -749,8 +742,13 @@ btusb bu21013_ts bu21029_ts +budget +budget-av +budget-ci +budget-core +budget-patch +bxcan c67x00 -c6xdigio c_can c_can_pci c_can_platform @@ -772,6 +770,7 @@ camcc-sc7180 camcc-sc7280 camcc-sdm845 +camcc-sm6350 camcc-sm8250 camcc-sm8450 camellia_generic @@ -798,10 +797,8 @@ cavium_ptp cb710 cb710-mmc -cb_pcidas cb_pcidas64 cb_pcidda -cb_pcimdas cb_pcimdda cc10001_adc cc2520 @@ -832,11 +829,13 @@ cdns-mhdp8546 cdns-pltfrm cdns-usb-common +cdns2-udc-pci cdns3 cdns3-imx cdns3-pci-wrap cdns3-ti cdnsp-udc-pci +cdx-controller cec ceph cfb @@ -868,6 +867,7 @@ chromeos_privacy_screen chromeos_tbmc chrontel-ch7033 +chv3-i2s ci_hdrc ci_hdrc_imx ci_hdrc_msm @@ -885,6 +885,7 @@ clk-axi-clkgen clk-bcm2711-dvp clk-bd718x7 +clk-cbf-8996 clk-cdce706 clk-cdce925 clk-cpu-8996 @@ -906,7 +907,56 @@ clk-mt6795-topckgen clk-mt6795-vdecsys clk-mt6795-vencsys +clk-mt7981-eth +clk-mt8173-img +clk-mt8173-vdecsys +clk-mt8173-vencsys +clk-mt8186-cam +clk-mt8186-img +clk-mt8186-imp_iic_wrap +clk-mt8186-ipe +clk-mt8186-mcu +clk-mt8186-mdp +clk-mt8186-mfg +clk-mt8186-mm +clk-mt8186-vdec +clk-mt8186-venc +clk-mt8186-wpe +clk-mt8188-adsp_audio26m +clk-mt8188-apmixedsys +clk-mt8188-cam +clk-mt8188-ccu +clk-mt8188-img +clk-mt8188-imp_iic_wrap +clk-mt8188-infra_ao +clk-mt8188-ipe +clk-mt8188-mfg +clk-mt8188-peri_ao +clk-mt8188-topckgen +clk-mt8188-vdec +clk-mt8188-vdo0 +clk-mt8188-vdo1 +clk-mt8188-venc +clk-mt8188-vpp0 +clk-mt8188-vpp1 +clk-mt8188-wpe +clk-mt8195-apusys_pll +clk-mt8195-cam +clk-mt8195-ccu +clk-mt8195-img +clk-mt8195-imp_iic_wrap +clk-mt8195-ipe +clk-mt8195-mfg +clk-mt8195-scp_adsp +clk-mt8195-vdec +clk-mt8195-vdo0 +clk-mt8195-vdo1 +clk-mt8195-venc +clk-mt8195-vpp0 +clk-mt8195-vpp1 +clk-mt8195-wpe clk-mt8365 +clk-mt8365-apmixedsys clk-mt8365-apu clk-mt8365-cam clk-mt8365-mfg @@ -924,9 +974,9 @@ clk-rpm clk-rpmh clk-s2mps11 -clk-scmi clk-scpi clk-si514 +clk-si521xx clk-si5341 clk-si5351 clk-si544 @@ -947,8 +997,6 @@ cls_fw cls_matchall cls_route -cls_rsvp -cls_rsvp6 cls_u32 cm109 cm32181 @@ -972,7 +1020,6 @@ com90io com90xx comedi -comedi_8254 comedi_8255 comedi_bond comedi_example_test @@ -980,7 +1027,6 @@ comedi_pci comedi_test comedi_usb -comm contec_pci_dio cordic core @@ -1011,6 +1057,7 @@ cros-ec-cec cros-ec-regulator cros-ec-sensorhub +cros-ec-typec cros_ec cros_ec_accel_legacy cros_ec_baro @@ -1028,7 +1075,7 @@ cros_ec_sensors_core cros_ec_spi cros_ec_sysfs -cros_ec_typec +cros_ec_uart cros_ec_vbc cros_hps_i2c cros_kbd_led_backlight @@ -1099,6 +1146,7 @@ cxl_mem cxl_pci cxl_pmem +cxl_pmu cxl_port cy8ctma140 cy8ctmg110_ts @@ -1150,17 +1198,9 @@ da9150-gpadc da9210-regulator da9211-regulator -dac02 daqboard2000 -das08 -das08_isa -das08_pci -das16 -das16m1 -das1800 -das6402 -das800 davicom +dax_cxl dax_hmem dax_pmem db9 @@ -1214,6 +1254,7 @@ dispcc-sm6375 dispcc-sm8250 dispcc-sm8450 +dispcc-sm8550 display-connector dl2k dlhl60d @@ -1263,7 +1304,6 @@ dme1737 dmfe dmi-sysfs -dmm32at dmx3191d dnet dp83640 @@ -1290,6 +1330,7 @@ drm_kms_helper drm_mipi_dbi drm_shmem_helper +drm_suballoc_helper drm_ttm_helper drm_vram_helper drm_xen_front @@ -1302,7 +1343,6 @@ ds1621 ds1682 ds1803 -ds1wm ds2482 ds2490 ds2760_battery @@ -1317,12 +1357,6 @@ dst dst_ca dstr -dt2801 -dt2811 -dt2814 -dt2815 -dt2817 -dt282x dt3000 dt3155 dt9812 @@ -1334,6 +1368,7 @@ dvb-bt8xx dvb-core dvb-pll +dvb-ttpci dvb-ttusb-budget dvb-usb dvb-usb-a800 @@ -1394,6 +1429,7 @@ dw_dmac_core dw_dmac_pci dw_drm_dsi +dw_mipi_dsi-stm dw_mmc dw_mmc-bluefield dw_mmc-exynos @@ -1427,6 +1463,7 @@ dwmac-meson8b dwmac-qcom-ethqos dwmac-rk +dwmac-stm32 dwmac-sun8i dwmac-tegra dwmac-visconti @@ -1575,7 +1612,7 @@ f81232 f81534 f81601 -failover +f81604 fakelb fan53555 fan53880 @@ -1610,7 +1647,6 @@ fb_ssd1351 fb_st7735r fb_st7789v -fb_sys_fops fb_tinylcd fb_tls8204 fb_uc1611 @@ -1641,7 +1677,6 @@ fit3 fixed fjes -fl512 flexcan fm10k fm801-gp @@ -1672,6 +1707,7 @@ fsl-edma fsl-edma-common fsl-enetc +fsl-enetc-core fsl-enetc-ierb fsl-enetc-mdio fsl-enetc-ptp @@ -1683,15 +1719,14 @@ fsl_dpa fsl_ifc_nand fsl_imx8_ddr_perf +fsl_imx9_ddr_perf fsl_linflexuart fsl_lpuart fsl_pq_mdio fsl_ucc_hdlc fsp-3y -ftdi-elan ftdi_sio ftl -ftm-quaddec ftsteutates fujitsu_ts funcore @@ -1754,38 +1789,35 @@ gb-uart gb-usb gb-vibrator -gcc-apq8084 gcc-ipq4019 +gcc-ipq5332 gcc-ipq6018 -gcc-ipq806x gcc-ipq8074 -gcc-mdm9607 -gcc-mdm9615 -gcc-msm8660 -gcc-msm8909 +gcc-ipq9574 gcc-msm8916 +gcc-msm8917 gcc-msm8939 gcc-msm8953 -gcc-msm8960 -gcc-msm8974 gcc-msm8976 gcc-msm8994 gcc-msm8996 gcc-msm8998 gcc-qcm2290 gcc-qcs404 +gcc-qdu1000 +gcc-sa8775p gcc-sc7180 gcc-sc7280 gcc-sc8180x gcc-sc8280xp gcc-sdm660 gcc-sdm845 -gcc-sdx55 -gcc-sdx65 +gcc-sdx75 gcc-sm6115 gcc-sm6125 gcc-sm6350 gcc-sm6375 +gcc-sm7150 gcc-sm8150 gcc-sm8250 gcc-sm8350 @@ -1851,6 +1883,7 @@ gpio-eic-sprd gpio-exar gpio-fan +gpio-fxl6408 gpio-grgpio gpio-gw-pld gpio-hisi @@ -1878,6 +1911,7 @@ gpio-menz127 gpio-mlxbf gpio-mlxbf2 +gpio-mlxbf3 gpio-moxtet gpio-pca953x gpio-pca9570 @@ -1892,6 +1926,7 @@ gpio-regmap gpio-regulator gpio-rockchip +gpio-sbu-mux gpio-sim gpio-siox gpio-sl28cpld @@ -1901,11 +1936,11 @@ gpio-tpic2810 gpio-tps65086 gpio-tps65218 +gpio-tps65219 gpio-tps65912 gpio-tqmx86 gpio-twl4030 gpio-twl6040 -gpio-ucb1400 gpio-vibra gpio-viperboard gpio-virtio @@ -1929,15 +1964,21 @@ gpmi-nand gpu-sched gpucc-msm8998 +gpucc-sa8775p gpucc-sc7180 gpucc-sc7280 gpucc-sc8280xp gpucc-sdm660 gpucc-sdm845 +gpucc-sm6115 +gpucc-sm6125 gpucc-sm6350 +gpucc-sm6375 gpucc-sm8150 gpucc-sm8250 gpucc-sm8350 +gpucc-sm8450 +gpucc-sm8550 gr_udc grace grcan @@ -2004,7 +2045,6 @@ guillemot gunze gve -habanalabs hackrf hamachi hampshire @@ -2039,6 +2079,8 @@ he helene hellcreek_sw +hexium_gemini +hexium_orion hfcmulti hfcpci hfcsusb @@ -2088,6 +2130,7 @@ hid-elecom hid-elo hid-emsff +hid-evision hid-ezkey hid-ft260 hid-gaff @@ -2127,6 +2170,7 @@ hid-multitouch hid-nti hid-ntrig +hid-nvidia-shield hid-ortek hid-penmount hid-petalynx @@ -2230,7 +2274,9 @@ hisi_uncore_pa_pmu hisi_uncore_pmu hisi_uncore_sllc_pmu +hisi_uncore_uc_pmu hisi_zip +histb-rng hix5hd2_gmac hmc425a hmc5843_core @@ -2264,7 +2310,6 @@ hso hsr ht16k33 -htc-pasic3 hte-tegra194 hte-tegra194-test hts221 @@ -2365,6 +2410,8 @@ i2c-sis96x i2c-slave-eeprom i2c-smbus +i2c-stm32f4 +i2c-stm32f7-drv i2c-stub i2c-synquacer i2c-taos-evm @@ -2403,12 +2450,12 @@ ibmpex icc-bcm-voter icc-bwmon +icc-clk icc-osm-l3 icc-rpmh icc-smd-rpm ice ice40-spi -icp icp10100 icp_multi icplus @@ -2435,7 +2482,6 @@ igc igorplugusb iguanair -ii_pci20kc iio-mux iio-rescale iio-trig-hrtimer @@ -2472,7 +2518,9 @@ imx-dma imx-dsp imx-interconnect +imx-lcdc imx-lcdif +imx-ldb-helper imx-mailbox imx-media-common imx-mipi-csis @@ -2486,17 +2534,20 @@ imx258 imx274 imx290 +imx296 imx2_wdt imx319 imx334 imx335 imx355 imx412 +imx415 imx6q-cpufreq imx6ul_tsc imx7-media-csi imx7d_adc imx7ulp_wdt +imx8-isi imx8m-ddrc imx8mm-interconnect imx8mm_thermal @@ -2510,9 +2561,9 @@ imx8qxp-pixel-combiner imx8qxp-pixel-link imx8qxp-pxl2dpi -imx93-blk-ctrl imx93-pd imx93-src +imx93_adc imx_dsp_rproc imx_keypad imx_rproc @@ -2531,6 +2582,7 @@ industrialio-buffer-dma industrialio-buffer-dmaengine industrialio-configfs +industrialio-gts-helper industrialio-hw-consumer industrialio-sw-device industrialio-sw-trigger @@ -2543,11 +2595,12 @@ input-leds inspur-ipsps int51x1 -intel-m10-bmc +intel-m10-bmc-core intel-m10-bmc-hwmon +intel-m10-bmc-pmci intel-m10-bmc-sec-update +intel-m10-bmc-spi intel-nand-controller -intel-qep intel-xway intel_qat intel_th @@ -2656,7 +2709,6 @@ iproc-rng200 iproc_nand ips -ipt_CLUSTERIP ipt_ECN ipt_REJECT ipt_SYNPROXY @@ -2750,7 +2802,6 @@ iwlmvm iwlwifi ix2505v -ixgb ixgbe ixgbevf janz-cmodio @@ -2759,6 +2810,7 @@ jedec_probe jffs2 jfs +jh7110-crypto jmb38x_ms jme joydev @@ -2822,6 +2874,7 @@ ksz_switch ktd253-backlight ktti +ktz8866 kvaser_pci kvaser_pciefd kvaser_usb @@ -2857,9 +2910,6 @@ lattice-sysconfig lattice-sysconfig-spi layerscape_edac_mod -lcc-ipq806x -lcc-mdm9615 -lcc-msm8960 lcd lcd2s ldusb @@ -2872,9 +2922,11 @@ leds-adp5520 leds-an30259a leds-as3645a +leds-aw200xx leds-aw2013 leds-bcm6328 leds-bcm6358 +leds-bd2606mvv leds-bd2802 leds-blinkm leds-cpcap @@ -2915,11 +2967,14 @@ leds-mlxreg leds-mt6323 leds-mt6360 +leds-mt6370-flash +leds-mt6370-rgb leds-pca9532 leds-pca955x leds-pca963x leds-pwm leds-pwm-multicolor +leds-qcom-flash leds-qcom-lpg leds-regulator leds-rt4505 @@ -2938,7 +2993,6 @@ ledtrig-backlight ledtrig-camera ledtrig-default-on -ledtrig-gpio ledtrig-heartbeat ledtrig-netdev ledtrig-oneshot @@ -2990,6 +3044,7 @@ linear linkstation-poweroff liquidio +liquidio-core liquidio_vf lis3lv02d lis3lv02d_i2c @@ -3066,6 +3121,7 @@ lpass-gfm-sm8250 lpassaudiocc-sc7280 lpasscc-sc7280 +lpasscc-sc8280xp lpasscc-sdm845 lpasscorecc-sc7180 lpasscorecc-sc7280 @@ -3111,6 +3167,7 @@ lv5207lp lvds-codec lvstest +lvts_thermal lxt lz4 lz4_compress @@ -3118,7 +3175,6 @@ lz4hc_compress m2m-deinterlace m52790 -m5mols m62332 m88ds3103 m88rs2000 @@ -3131,6 +3187,7 @@ m_can m_can_pci m_can_platform +ma35d1_serial mac-celtic mac-centeuro mac-croatian @@ -3211,6 +3268,7 @@ max1721x_battery max197 max20086-regulator +max20411-regulator max20730 max20751 max2165 @@ -3224,6 +3282,7 @@ max31760 max31785 max31790 +max31827 max31856 max31865 max3420_udc @@ -3235,6 +3294,7 @@ max5432 max5481 max5487 +max5522 max5821 max63xx_wdt max6620 @@ -3244,6 +3304,9 @@ max6697 max6875 max7359_keypad +max77541 +max77541-adc +max77541-regulator max77620-regulator max77620_thermal max77620_wdt @@ -3297,6 +3360,7 @@ mc13xxx-regulator-core mc13xxx-spi mc3230 +mc34vr500 mc44s803 mcam-core mcb @@ -3331,7 +3395,6 @@ md-cluster md4 mdc800 -mdev mdio mdio-bcm-unimac mdio-cavium @@ -3343,14 +3406,15 @@ mdio-mscc-miim mdio-mux-gpio mdio-mux-meson-g12a +mdio-mux-meson-gxl mdio-mux-mmioreg mdio-mux-multiplexer mdio-mvusb mdio-octeon +mdio-regmap mdio-thunder mdio-xgene mdt_loader -me4000 me_daq mediatek mediatek-cpufreq @@ -3358,6 +3422,7 @@ mediatek-drm mediatek-drm-hdmi mediatek-ge +mediatek-ge-soc megachips-stdpxxxx-ge-b850v3-fw megaraid megaraid_mbox @@ -3384,6 +3449,7 @@ meson-vdec meson_ddr_pmu_g12 meson_dw_hdmi +meson_dw_mipi_dsi meson_gxbb_wdt meson_nand meson_saradc @@ -3403,8 +3469,8 @@ micrel microchip microchip-spi -microchip-tcb-capture microchip_t1 +microchip_t1s microread microread_i2c microtek @@ -3412,7 +3478,6 @@ mip6 mipi-i3c-hci mite -mk712 mkiss ml86v7667 mlx4_core @@ -3451,9 +3516,6 @@ mmc35240 mmc_hsq mmc_spi -mmcc-apq8084 -mmcc-msm8960 -mmcc-msm8974 mmcc-msm8994 mmcc-msm8996 mmcc-msm8998 @@ -3485,7 +3547,6 @@ mp5416 mp8859 mp886x -mpc624 mpi3mr mpl115 mpl115_i2c @@ -3496,7 +3557,9 @@ mpls_router mpoa mpq7920 +mpq7932 mpr121_touchkey +mprls0025pa mpt3sas mptbase mptcp_diag @@ -3519,7 +3582,9 @@ msa311 mscc mscc_felix +mscc_felix_dsa_lib mscc_ocelot +mscc_ocelot_ext mscc_ocelot_switch_lib mscc_seville msdos @@ -3563,6 +3628,8 @@ mt6779-keypad mt6797-mt6351 mt7530 +mt7530-mdio +mt7530-mmio mt76 mt76-connac-lib mt76-sdio @@ -3592,13 +3659,12 @@ mt8183-mt6358-ts3a227-max98357 mt8186-mt6366-da7219-max98357 mt8186-mt6366-rt1019-rt5682s +mt8188-mt6359 mt8192-mt6359-rt1015-rt5682 mt8195-mt6359 mt9m001 -mt9m032 mt9m111 mt9p031 -mt9t001 mt9t112 mt9v011 mt9v032 @@ -3624,6 +3690,8 @@ mtk-cqdma mtk-devapc mtk-hsdma +mtk-mmsys +mtk-mutex mtk-pmic-keys mtk-pmic-wrap mtk-rng @@ -3633,17 +3701,16 @@ mtk-uart-apdma mtk-vpu mtk_dp +mtk_iommu mtk_nand mtk_rpmsg mtk_scp mtk_scp_ipi mtk_t7xx -mtk_thermal mtk_wdt mtouch mtu3 multipath -multiq3 musb_hdrc mux-adg792a mux-adgs1408 @@ -3664,6 +3731,7 @@ mwifiex_sdio mwifiex_usb mwl8k +mxb mxc-jpeg-encdec mxc4005 mxc6255 @@ -3695,10 +3763,12 @@ natsemi nau7802 navman +nb7vpq904m nbd nci nci_spi nci_uart +ncn26000 nct6683 nct6775 nct6775-core @@ -3713,7 +3783,6 @@ net1080 net2272 net2280 -net_failover netconsole netdevsim netfs @@ -3842,13 +3911,6 @@ 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_routes_test @@ -3904,14 +3966,15 @@ nls_koi8-u nls_utf8 noa1305 -noon010pc30 nosy notifier-error-inject nouveau +novatek-nvt-ts nozomi npcm-rng npcm750-pwm-fan npcm_adc +npcm_edac npcm_wdt nps_enet ns-thermal @@ -3952,6 +4015,7 @@ nvmem-bcm-ocotp nvmem-imx-iim nvmem-imx-ocotp +nvmem-imx-ocotp-ele nvmem-imx-ocotp-scu nvmem-layerscape-sfp nvmem-rave-sp-eeprom @@ -3966,6 +4030,7 @@ nvmem_rockchip_efuse nvmem_snvs_lpgpr nvmem_sprd_efuse +nvmem_stm32_romem nvmem_sunxi_sid nvmem_u-boot-env nvmet @@ -3974,7 +4039,9 @@ nvmet-tcp nvsw-sn2201 nwl-dsi +nxp-bbnsm-pwrkey nxp-c45-tja11xx +nxp-cbtx nxp-nci nxp-nci_i2c nxp-ptn3460 @@ -4019,10 +4086,12 @@ on26 onboard_usb_hub onenand +onie-tlv open-dice opencores-kbd openvswitch opt3001 +opt4001 optee optee-rng opticon @@ -4038,6 +4107,7 @@ oti6858 otm3225a otx2_ptp +ov01a10 ov02a10 ov08d10 ov08x40 @@ -4064,6 +4134,7 @@ ov772x ov7740 ov8856 +ov8858 ov8865 ov9282 ov9640 @@ -4088,6 +4159,7 @@ panel-abt-y030xx067a panel-arm-versatile panel-asus-z00t-tm5p5-n35596 +panel-auo-a030jtn01 panel-boe-bf060y8m-aj0 panel-boe-himax8279d panel-boe-tv101wum-nl6 @@ -4097,6 +4169,7 @@ panel-elida-kd35t133 panel-feixin-k101-im2ba02 panel-feiyang-fy07024di26a30d +panel-himax-hx8394 panel-ilitek-ili9322 panel-ilitek-ili9341 panel-ilitek-ili9881c @@ -4112,6 +4185,7 @@ panel-lg-lb035q02 panel-lg-lg4573 panel-lvds +panel-magnachip-d53e6ea8966 panel-mantix-mlaf057we51 panel-mipi-dbi panel-nec-nl8048hl11 @@ -4120,9 +4194,11 @@ panel-novatek-nt35510 panel-novatek-nt35560 panel-novatek-nt35950 +panel-novatek-nt36523 panel-novatek-nt36672a panel-novatek-nt39016 panel-olimex-lcd-olinuxino +panel-orisetech-ota5601a panel-orisetech-otm8009a panel-osd-osd101t2587-53ts panel-panasonic-vvx10f034n00 @@ -4135,6 +4211,7 @@ panel-samsung-ld9040 panel-samsung-s6d16d0 panel-samsung-s6d27a1 +panel-samsung-s6d7aa0 panel-samsung-s6e3ha2 panel-samsung-s6e63j0x03 panel-samsung-s6e63m0 @@ -4153,6 +4230,7 @@ panel-sitronix-st7703 panel-sitronix-st7789v panel-sony-acx565akm +panel-sony-td4353-jdi panel-sony-tulip-truly-nt35521 panel-tdo-tl070wsh30 panel-tpo-td028ttec1 @@ -4160,16 +4238,15 @@ panel-tpo-tpg110 panel-truly-nt35597 panel-visionox-rm69299 +panel-visionox-vtdr6130 panel-widechips-ws2401 panel-xinpeng-xpp055c272 panfrost parade-ps8622 parade-ps8640 -paride parkbd parman parport -parport_ax88796 parport_pc parport_serial parser_trx @@ -4202,6 +4279,7 @@ pata_oldpiix pata_opti pata_optidma +pata_parport pata_pdc2027x pata_pdc202xx_old pata_piccolo @@ -4224,7 +4302,6 @@ pcap_keys pcap_ts pcbc -pcd pcf50633 pcf50633-adc pcf50633-backlight @@ -4236,6 +4313,7 @@ pcf8591 pch_udc pci +pci-epf-mhi pci-epf-ntb pci-epf-vntb pci-hyperv @@ -4253,30 +4331,18 @@ pcie-rockchip-host pcie-tegra194 pcips2 -pcl711 -pcl724 -pcl726 -pcl730 -pcl812 -pcl816 -pcl818 -pcm3724 -pcmad pcmcia_core pcmcia_rsrc -pcmda12 -pcmmio -pcmuio pcnet32 pcrypt -pcs-altera-tse +pcs-mtk-lynxi pcs_xpcs pcwd_pci pcwd_usb -pd -pda_power pdc_adma pdr_interface +pds_core +pds_vdpa peak_pci peak_pciefd peak_usb @@ -4287,12 +4353,10 @@ pegasus pegasus_notetaker penmount -pf pf8x00-regulator pfr_telemetry pfr_update pfuze100-regulator -pg phantom phonet phram @@ -4355,6 +4419,7 @@ phy-pxa-28nm-usb2 phy-qcom-apq8064-sata phy-qcom-edp +phy-qcom-eusb2-repeater phy-qcom-ipq4019-usb phy-qcom-ipq806x-sata phy-qcom-ipq806x-usb @@ -4365,6 +4430,8 @@ phy-qcom-qmp-ufs phy-qcom-qmp-usb phy-qcom-qusb2 +phy-qcom-sgmii-eth +phy-qcom-snps-eusb2 phy-qcom-snps-femto-v2 phy-qcom-usb-hs phy-qcom-usb-hs-28nm @@ -4386,6 +4453,7 @@ phy-rockchip-snps-pcie3 phy-rockchip-typec phy-rockchip-usb +phy-stm32-usbphyc phy-sun4i-usb phy-sun50i-usb3 phy-sun6i-mipi-dphy @@ -4406,8 +4474,11 @@ pinctrl-da9062 pinctrl-imx8ulp pinctrl-imx93 +pinctrl-ipq5018 +pinctrl-ipq5332 pinctrl-ipq6018 pinctrl-ipq8074 +pinctrl-ipq9574 pinctrl-keembay pinctrl-lochnagar pinctrl-lpass-lpi @@ -4417,6 +4488,7 @@ pinctrl-mcp23s08_i2c pinctrl-mcp23s08_spi pinctrl-mdm9607 +pinctrl-mlxbf3 pinctrl-msm8916 pinctrl-msm8953 pinctrl-msm8976 @@ -4427,7 +4499,9 @@ pinctrl-qcm2290 pinctrl-qcs404 pinctrl-qdf2xxx +pinctrl-qdu1000 pinctrl-rk805 +pinctrl-sa8775p pinctrl-sc7180 pinctrl-sc7280 pinctrl-sc7280-lpass-lpi @@ -4437,16 +4511,20 @@ pinctrl-sdm660 pinctrl-sdm670 pinctrl-sdm845 +pinctrl-sdx75 pinctrl-sm6115 pinctrl-sm6125 pinctrl-sm6350 pinctrl-sm6375 +pinctrl-sm7150 pinctrl-sm8150 pinctrl-sm8250 pinctrl-sm8250-lpass-lpi pinctrl-sm8350 pinctrl-sm8450 pinctrl-sm8450-lpass-lpi +pinctrl-sm8550 +pinctrl-sm8550-lpass-lpi pinctrl-spmi-gpio pinctrl-spmi-mpp pinctrl-ssbi-gpio @@ -4488,6 +4566,8 @@ pmbus_core pmc551 pmcraid +pmic_glink +pmic_glink_altmode pms7003 pn532_uart pn533 @@ -4532,9 +4612,9 @@ pstore_blk pstore_zone psxpad-spi -pt ptp-qoriq ptp_clockmatrix +ptp_dfl_tod ptp_dte ptp_idt82p33 ptp_ines @@ -4551,6 +4631,7 @@ pvpanic-pci pvrusb2 pwc +pwm-apple pwm-atmel-hlcdc pwm-atmel-tcb pwm-bcm-iproc @@ -4582,8 +4663,11 @@ pwm-regulator pwm-renesas-tpu pwm-rockchip +pwm-rz-mtu3 pwm-sl28cpld pwm-sprd +pwm-stm32 +pwm-stm32-lp pwm-sun4i pwm-tegra pwm-tiecap @@ -4616,6 +4700,7 @@ q6prm-clocks q6routing q6sstop-qcs404 +qaic qat_4xxx qat_c3xxx qat_c3xxxvf @@ -4637,7 +4722,6 @@ qcom-geni-se qcom-labibb-regulator qcom-pm8008 -qcom-pmic-typec qcom-pon qcom-rng qcom-rpmh-regulator @@ -4653,6 +4737,7 @@ qcom-wled qcom_aoss qcom_bam_dmux +qcom_battmgr qcom_common qcom_edac qcom_eud @@ -4662,8 +4747,11 @@ qcom_glink_smem qcom_gsbi qcom_hwspinlock +qcom_ice qcom_nandc qcom_pil_info +qcom_pmi8998_charger +qcom_pmic_tcpm qcom_q6v5 qcom_q6v5_adsp qcom_q6v5_mss @@ -4705,11 +4793,14 @@ qnoc-msm8996 qnoc-qcm2290 qnoc-qcs404 +qnoc-qdu1000 +qnoc-sa8775p qnoc-sc7180 qnoc-sc7280 qnoc-sc8180x qnoc-sc8280xp qnoc-sdm660 +qnoc-sdm670 qnoc-sdm845 qnoc-sdx55 qnoc-sdx65 @@ -4718,6 +4809,7 @@ qnoc-sm8250 qnoc-sm8350 qnoc-sm8450 +qnoc-sm8550 qnx4 qnx6 qoriq-cpufreq @@ -4744,7 +4836,6 @@ r8152 r8153_ecm r8169 -r8188eu r8192e_pci r8192u_usb r820t @@ -4754,6 +4845,7 @@ r8a66597-hcd r8a66597-udc r8a779f0-ether-serdes +raa215300 radeon radeonfb radio-keene @@ -4778,6 +4870,7 @@ raid_class rainshadow-cec ramoops +ramp_controller raspberrypi-cpufreq raspberrypi-hwmon raspberrypi-ts @@ -4809,6 +4902,7 @@ rc-avertv-303 rc-azurewave-ad-tu700 rc-beelink-gs1 +rc-beelink-mxiii rc-behold rc-behold-columbus rc-budget-ci-old @@ -4825,6 +4919,7 @@ rc-dm1105-nec rc-dntv-live-dvb-t rc-dntv-live-dvbt-pro +rc-dreambox rc-dtt200u rc-dvbsky rc-dvico-mce @@ -4978,6 +5073,7 @@ renesas_sdhi_internal_dmac renesas_sdhi_sys_dmac renesas_usb3 +renesas_usbf renesas_usbhs renesas_wdt repaper @@ -4987,7 +5083,6 @@ reset-meson-audio-arb reset-qcom-pdc reset-raspberrypi -reset-rzg2l-usbphy-ctrl reset-scmi reset-ti-sci reset-ti-syscon @@ -5010,9 +5105,11 @@ rj54n1cb0c rk3399_dmc rk805-pwrkey -rk808 rk808-regulator rk817_charger +rk8xx-core +rk8xx-i2c +rk8xx-spi rk_crypto rm3100-core rm3100-i2c @@ -5046,6 +5143,8 @@ rohm-bd71828 rohm-bd718x7 rohm-bd9576 +rohm-bu27008 +rohm-bu27034 rohm-regulator rohm_bu21023 romfs @@ -5055,6 +5154,7 @@ rpcrdma rpcsec_gss_krb5 rpi-panel-attiny-regulator +rpm_master_stats rpmpd rpmsg_char rpmsg_core @@ -5082,16 +5182,19 @@ rt2x00pci rt2x00usb rt4801-regulator +rt4803 rt4831 rt4831-backlight rt4831-regulator rt5033 rt5033-regulator rt5033_battery +rt5033_charger rt5120 rt5120-pwrkey rt5120-regulator rt5190a-regulator +rt5739 rt5759-regulator rt6160-regulator rt6190-regulator @@ -5099,6 +5202,8 @@ rt6245-regulator rt73usb rt9455_charger +rt9467-charger +rt9471 rtc-88pm80x rtc-88pm860x rtc-ab-b5ze-s3 @@ -5169,6 +5274,7 @@ rtc-mxc_v2 rtc-nct3018y rtc-ntxec +rtc-nxp-bbnsm rtc-optee rtc-palmas rtc-pcap @@ -5207,19 +5313,16 @@ rtc-sh rtc-snvs rtc-stk17ta8 +rtc-stm32 rtc-tegra rtc-ti-k3 rtc-tps6586x rtc-tps65910 rtc-twl -rtc-v3020 rtc-wm831x rtc-wm8350 rtc-x1205 rtc-zynqmp -rtd520 -rti800 -rti802 rti_wdt rtl2830 rtl2832 @@ -5264,19 +5367,26 @@ rtsx_usb_sdmmc rtw88_8723d rtw88_8723de +rtw88_8723ds rtw88_8723du rtw88_8821c rtw88_8821ce +rtw88_8821cs rtw88_8821cu rtw88_8822b rtw88_8822be +rtw88_8822bs rtw88_8822bu rtw88_8822c rtw88_8822ce +rtw88_8822cs rtw88_8822cu rtw88_core rtw88_pci +rtw88_sdio rtw88_usb +rtw89_8851b +rtw89_8851be rtw89_8852a rtw89_8852ae rtw89_8852b @@ -5296,6 +5406,7 @@ rxperf rxrpc rz-dmac +rz-mtu3-cnt rza_wdt rzg2l-cru rzg2l-csi2 @@ -5304,6 +5415,7 @@ rzg2l_thermal rzg2l_wdt rzn1_wdt +rzv2m_usb3drd s1d13xxxfb s2250 s2255drv @@ -5314,7 +5426,6 @@ s3fwrn5 s3fwrn5_i2c s3fwrn82_uart -s526 s5c73m3 s5h1409 s5h1411 @@ -5322,7 +5433,6 @@ s5h1432 s5k5baf s5k6a3 -s5k6aa s5m8767 s626 s6sy761 @@ -5338,6 +5448,8 @@ saa7134-dvb saa7134-empress saa7134-go7007 +saa7146 +saa7146_vv saa7164 saa717x saa7185 @@ -5345,6 +5457,7 @@ safe_serial sahara sample-trace-array +samsung-dsim samsung-keypad samsung-sxgbe samsung_tty @@ -5391,14 +5504,11 @@ sch5627 sch5636 sch56xx-common -sch_atm sch_cake -sch_cbq sch_cbs sch_choke sch_codel sch_drr -sch_dsmark sch_etf sch_ets sch_fq @@ -5410,6 +5520,7 @@ sch_htb sch_ingress sch_mqprio +sch_mqprio_lib sch_multiq sch_netem sch_pie @@ -5487,7 +5598,6 @@ sgi_w1 sgp30 sgp40 -sh-sci sh_eth sh_mmcif sh_mobile_lcdcfb @@ -5495,11 +5605,8 @@ sha2-ce sha256-arm64 sha3-ce -sha3_generic -sha512-arm64 -sha512-ce shark2 -shiftfs +shmob-drm sht15 sht21 sht3x @@ -5550,6 +5657,7 @@ sky81452-regulator sl28cpld-hwmon sl28cpld_wdt +sl28vpd sl811-hcd slcan slg51000-regulator @@ -5718,6 +5826,7 @@ snd-oxygen-lib snd-pcm snd-pcm-dmaengine +snd-pcmtest snd-pcxhr snd-portman2x4 snd-pt2258 @@ -5734,6 +5843,7 @@ snd-seq-midi snd-seq-midi-emul snd-seq-midi-event +snd-seq-ump-client snd-seq-virmidi snd-serial-generic snd-serial-u16550 @@ -5777,9 +5887,12 @@ snd-soc-audio-graph-card2 snd-soc-audio-graph-card2-custom-sample snd-soc-aw8738 +snd-soc-aw88395 +snd-soc-aw88395-lib snd-soc-bcm2835-i2s snd-soc-bd28623 snd-soc-bt-sco +snd-soc-chv3-codec snd-soc-core snd-soc-cpcap snd-soc-cros-ec-codec @@ -5795,7 +5908,11 @@ snd-soc-cs35l45 snd-soc-cs35l45-i2c snd-soc-cs35l45-spi -snd-soc-cs35l45-tables +snd-soc-cs35l56 +snd-soc-cs35l56-i2c +snd-soc-cs35l56-sdw +snd-soc-cs35l56-shared +snd-soc-cs35l56-spi snd-soc-cs4234 snd-soc-cs4265 snd-soc-cs4270 @@ -5804,6 +5921,7 @@ snd-soc-cs4271-spi snd-soc-cs42l42 snd-soc-cs42l42-i2c +snd-soc-cs42l42-sdw snd-soc-cs42l51 snd-soc-cs42l51-i2c snd-soc-cs42l52 @@ -5847,6 +5965,7 @@ snd-soc-hda-codec snd-soc-hdmi-codec snd-soc-ics43432 +snd-soc-idt821034 snd-soc-imx-audmix snd-soc-imx-audmux snd-soc-imx-card @@ -5877,9 +5996,11 @@ snd-soc-max98088 snd-soc-max98090 snd-soc-max98357a +snd-soc-max98363 snd-soc-max98373 snd-soc-max98373-i2c snd-soc-max98373-sdw +snd-soc-max98388 snd-soc-max98390 snd-soc-max98396 snd-soc-max98504 @@ -5915,6 +6036,7 @@ snd-soc-mt6797-afe snd-soc-mt8183-afe snd-soc-mt8186-afe +snd-soc-mt8188-afe snd-soc-mt8192-afe snd-soc-mt8195-afe snd-soc-mtk-common @@ -5924,6 +6046,7 @@ snd-soc-nau8821 snd-soc-nau8822 snd-soc-nau8824 +snd-soc-nau8825 snd-soc-pcm1681 snd-soc-pcm1789-codec snd-soc-pcm1789-i2c @@ -5943,6 +6066,7 @@ snd-soc-pcm512x snd-soc-pcm512x-i2c snd-soc-pcm512x-spi +snd-soc-peb2466 snd-soc-qcom-common snd-soc-qcom-sdw snd-soc-rcar @@ -5980,8 +6104,11 @@ snd-soc-rt700 snd-soc-rt711 snd-soc-rt711-sdca +snd-soc-rt712-sdca +snd-soc-rt712-sdca-dmic snd-soc-rt715 snd-soc-rt715-sdca +snd-soc-rt722-sdca snd-soc-rt9120 snd-soc-rz-ssi snd-soc-sc7180 @@ -5999,6 +6126,7 @@ snd-soc-simple-card-utils snd-soc-simple-mux snd-soc-sm8250 +snd-soc-sma1303 snd-soc-spdif-rx snd-soc-spdif-tx snd-soc-sprd-platform @@ -6009,16 +6137,24 @@ snd-soc-ssm2602 snd-soc-ssm2602-i2c snd-soc-ssm2602-spi +snd-soc-ssm3515 snd-soc-ssm4567 snd-soc-sta32x snd-soc-sta350 snd-soc-sti-sas +snd-soc-stm32-i2s +snd-soc-stm32-sai +snd-soc-stm32-sai-sub +snd-soc-stm32-spdifrx snd-soc-storm snd-soc-tas2552 snd-soc-tas2562 snd-soc-tas2764 snd-soc-tas2770 snd-soc-tas2780 +snd-soc-tas2781-comlib +snd-soc-tas2781-fmwlib +snd-soc-tas2781-i2c snd-soc-tas5086 snd-soc-tas571x snd-soc-tas5720 @@ -6109,6 +6245,7 @@ snd-soc-wm9712 snd-soc-wsa881x snd-soc-wsa883x +snd-soc-wsa884x snd-soc-xlnx-formatter-pcm snd-soc-xlnx-i2s snd-soc-xlnx-spdif @@ -6127,6 +6264,7 @@ snd-timer snd-trident snd-ua101 +snd-ump snd-usb-6fire snd-usb-audio snd-usb-caiaq @@ -6146,6 +6284,7 @@ snd-vx222 snd-ymfpci snd_xen_front +snet_vdpa snic snps_udc_core snps_udc_plat @@ -6160,6 +6299,7 @@ solos-pci sony-btf-mpx soundcore +soundwire-amd soundwire-bus soundwire-cadence soundwire-generic-allocation @@ -6167,6 +6307,7 @@ soundwire-qcom sp2 sp805_wdt +sp8870 sp887x spaceball spaceorb @@ -6180,12 +6321,14 @@ spi-altera-dfl spi-altera-platform spi-amd +spi-amlogic-spifc-a1 spi-armada-3700 spi-axi-spi-engine spi-bcm-qspi spi-bcm2835 spi-bcm2835aux spi-bcm63xx-hsspi +spi-bcmbca-hsspi spi-bitbang spi-brcmstb-qspi spi-butterfly @@ -6233,6 +6376,7 @@ spi-rockchip-sfc spi-rpc-if spi-rspi +spi-rzv2m-csi spi-sc18is602 spi-sh-hspi spi-sh-msiof @@ -6243,6 +6387,8 @@ spi-sn-f-ospi spi-sprd spi-sprd-adi +spi-stm32 +spi-stm32-qspi spi-sun6i spi-synquacer spi-tegra114 @@ -6277,7 +6423,6 @@ sps30_i2c sps30_serial sr-thermal -sr030pc30 sr9700 sr9800 srf04 @@ -6331,6 +6476,8 @@ st_sensors st_sensors_i2c st_sensors_spi +st_thermal +st_thermal_memmap st_uvis25_core st_uvis25_i2c st_uvis25_spi @@ -6345,6 +6492,34 @@ stk3310 stk8312 stk8ba50 +stm-drm +stm32-adc +stm32-adc-core +stm32-booster +stm32-cec +stm32-crc32 +stm32-cryp +stm32-dac +stm32-dac-core +stm32-dcmi +stm32-dfsdm-adc +stm32-dfsdm-core +stm32-dma2d +stm32-fmc2-ebi +stm32-hash +stm32-lptimer +stm32-lptimer-cnt +stm32-lptimer-trigger +stm32-rng +stm32-timer-cnt +stm32-timer-trigger +stm32-timers +stm32-usart +stm32-vrefbuf +stm32_adfsdm +stm32_fmc2_nand +stm32_iwdg +stm32_rproc stm_console stm_core stm_ftrace @@ -6465,9 +6640,6 @@ synclink_gt synopsys_edac syscon-reboot-mode -syscopyarea -sysfillrect -sysimgblt sysv t5403 tag_ar9331 @@ -6514,6 +6686,7 @@ tcm_fc tcm_loop tcm_qla2xxx +tcm_remote tcm_usb_gadget tcp_bbr tcp_bic @@ -6540,6 +6713,7 @@ tcrypt tcs3414 tcs3472 +tcsrcc-sm8550 tda10021 tda10023 tda10048 @@ -6552,6 +6726,7 @@ tda18271 tda18271c2dd tda1997x +tda38640 tda665x tda7432 tda8083 @@ -6612,7 +6787,7 @@ thunder_bgx thunder_xcv thunderbolt -thunderbolt-net +thunderbolt_net thunderx-mmc thunderx2_pmu thunderx_edac @@ -6625,8 +6800,10 @@ ti-adc128s052 ti-adc161s626 ti-ads1015 +ti-ads1100 ti-ads124s08 ti-ads131e08 +ti-ads7924 ti-ads7950 ti-ads8344 ti-ads8688 @@ -6639,6 +6816,7 @@ ti-dlpc3433 ti-ecap-capture ti-j721e-ufs +ti-lmp92064 ti-lmu ti-sn65dsi83 ti-sn65dsi86 @@ -6664,6 +6842,7 @@ tls tlv320aic23b tm2-touchkey +tmag5273 tmdc tmio_mmc_core tmp006 @@ -6705,6 +6884,7 @@ tps6105x-regulator tps62360-regulator tps6286x-regulator +tps6287x-regulator tps65010 tps65023-regulator tps6507x @@ -6729,6 +6909,12 @@ tps6586x-regulator tps65910-regulator tps65912-regulator +tps6594-core +tps6594-esm +tps6594-i2c +tps6594-pfsm +tps6594-regulator +tps6594-spi tps6598x tqmx86 trace-printk @@ -6803,7 +6989,6 @@ typec_nvidia typec_ucsi typhoon -u132-hcd uPD60620 u_audio u_ether @@ -6816,14 +7001,13 @@ ublk_drv ubuntu-host ucan -ucb1400_core -ucb1400_ts ucc_uart ucd9000 ucd9200 ucs1002_power ucsi_acpi ucsi_ccg +ucsi_glink ucsi_stm32g0 uda1342 udc-core @@ -6837,8 +7021,9 @@ ufs ufs-hisi ufs-mediatek +ufs-qcom ufs-renesas -ufs_qcom +ufs-sprd ufshcd-core ufshcd-dwc ufshcd-pci @@ -6936,6 +7121,7 @@ userspace-consumer ushc uss720 +uvc uvcvideo uvesafb v3d @@ -6976,6 +7162,7 @@ vf610_dac vfio vfio-amba +vfio-cdx vfio-fsl-mc vfio-pci vfio-pci-core @@ -7005,7 +7192,6 @@ video-mux videobuf-core videobuf-dma-sg -videobuf-vmalloc videobuf2-common videobuf2-dma-contig videobuf2-dma-sg @@ -7018,6 +7204,9 @@ videocc-sdm845 videocc-sm8150 videocc-sm8250 +videocc-sm8350 +videocc-sm8450 +videocc-sm8550 videodev vim2m vimc @@ -7026,13 +7215,11 @@ virt_wifi virtio-gpu virtio-rng -virtio_blk virtio_bt virtio_crypto virtio_dma_buf virtio_input virtio_mem -virtio_net virtio_pmem virtio_rpmsg_bus virtio_snd @@ -7073,7 +7260,6 @@ vqmmc-ipq4019-regulator vrf vringh -vs6624 vsock vsock_diag vsock_loopback @@ -7176,9 +7362,12 @@ wm8994-regulator wm97xx-ts wp512 +wpcm450-soc wusb3801 +wwan wwan_hwsim x25 +x9250 x_tables xbox_remote xc2028 @@ -7186,6 +7375,7 @@ xc5000 xcbc xctr +xdma xdpe12284 xdpe152c4 xen-blkback @@ -7222,6 +7412,7 @@ xhci-pci xhci-pci-renesas xhci-plat-hcd +xhci-rcar-hcd xhci-tegra xilinx-ams xilinx-csi2rxss @@ -7239,6 +7430,7 @@ xilinx_gmii2rgmii xilinx_sdfec xilinx_uartps +xilinx_wwdt xilinxfb xillybus_class xillybus_core @@ -7342,8 +7534,6 @@ yurex z3fold zaurus -zavl -zcommon zd1201 zd1211rw zd1301 @@ -7358,8 +7548,6 @@ zl10039 zl10353 zl6100 -zlua -znvpair zonefs zopt2201 zpa2326 @@ -7371,7 +7559,6 @@ -zunicode zynqmp-aes-gcm zynqmp-dpsub zynqmp-fpga zynqmp-sha zynqmp_dma -zzstd +zynqmp_edac diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.modules.builtin linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.modules.builtin --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.modules.builtin +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/arm64/oracle.modules.builtin @@ -1,26 +1,21 @@ 8250 8250_base 8250_dw +8250_fsl 8250_mtk 8250_of 8250_omap 8250_pci +8250_rt288x 8250_tegra -88pm860x -a64fx-diag ac acpi_mdio -acpiphp aead aes_generic af_packet ahci_imx akcipher -altera-sysmgr -altera_edac amba-pl011 -apple-pmgr-pwrstate -apple_m1_cpu_pmu arm-cci arm-cci arm-ccn @@ -29,11 +24,9 @@ armada_thermal armmmci as3722 -as3722-poweroff asiliantfb asn1_decoder asn1_encoder -asymmetric_keys atkbd axg axg-aoclk @@ -41,17 +34,13 @@ battery bcm2835-dma bcm2835-mailbox -bcm2835-pm -bcm2835-power bcm84881 bgmac bgmac-platform -binfmt_elf binfmt_script brcmstb_dpfe brcmstb_gisb bsg -btree button cbc cdrom @@ -60,23 +49,35 @@ cfbimgblt charger-manager clk-apmixed -clk-bcm2835 -clk-bcm2835-aux -clk-bm1880 clk-cpu-dyndiv clk-cpumux clk-dualdiv -clk-fixed-mmio -clk-fsl-sai clk-gate -clk-hi3559a clk-imx-lpcg-scu clk-imx-scu clk-imx8mm clk-imx8mn clk-imx8mp +clk-imx8mp-audiomix clk-imx8mq +clk-ma35d1 clk-mpll +clk-mt2712 +clk-mt2712-apmixedsys +clk-mt2712-bdp +clk-mt2712-img +clk-mt2712-jpgdec +clk-mt2712-mfg +clk-mt2712-mm +clk-mt2712-vdec +clk-mt2712-venc +clk-mt6765 +clk-mt6765-audio +clk-mt6765-cam +clk-mt6765-img +clk-mt6765-mipi0a +clk-mt6765-mm +clk-mt6765-vcodec clk-mt6779 clk-mt6779-aud clk-mt6779-cam @@ -86,18 +87,85 @@ clk-mt6779-mm clk-mt6779-vdec clk-mt6779-venc +clk-mt6797 +clk-mt6797-img +clk-mt6797-mm +clk-mt6797-vdec +clk-mt6797-venc +clk-mt7622 +clk-mt7622-apmixedsys +clk-mt7622-aud +clk-mt7622-eth +clk-mt7622-hif +clk-mt7622-infracfg +clk-mt7981-apmixed +clk-mt7981-infracfg +clk-mt7981-topckgen +clk-mt7986-apmixed +clk-mt7986-eth +clk-mt7986-infracfg +clk-mt7986-topckgen +clk-mt8167 +clk-mt8167-apmixedsys +clk-mt8167-aud +clk-mt8167-img +clk-mt8167-mfgcfg +clk-mt8167-mm +clk-mt8167-vdec +clk-mt8173-apmixedsys +clk-mt8173-infracfg +clk-mt8173-mm +clk-mt8173-pericfg +clk-mt8173-topckgen +clk-mt8183 +clk-mt8183-apmixedsys +clk-mt8183-audio +clk-mt8183-cam +clk-mt8183-img +clk-mt8183-ipu0 +clk-mt8183-ipu1 +clk-mt8183-ipu_adl +clk-mt8183-ipu_conn +clk-mt8183-mfgcfg +clk-mt8183-mm +clk-mt8183-vdec +clk-mt8183-venc +clk-mt8186-apmixedsys +clk-mt8186-infra_ao +clk-mt8186-topckgen +clk-mt8192 +clk-mt8192-apmixedsys +clk-mt8192-aud +clk-mt8192-cam +clk-mt8192-img +clk-mt8192-imp_iic_wrap +clk-mt8192-ipe +clk-mt8192-mdp +clk-mt8192-mfg +clk-mt8192-mm +clk-mt8192-msdc +clk-mt8192-scp_adsp +clk-mt8192-vdec +clk-mt8192-venc +clk-mt8195-apmixedsys +clk-mt8195-infra_ao +clk-mt8195-peri_ao +clk-mt8195-topckgen +clk-mt8516 +clk-mt8516-apmixedsys +clk-mt8516-aud clk-mtk clk-mux clk-pll clk-pll clk-regmap +clk-scmi clk-vexpress-osc -cma_heap cmd-db cn -compat_binfmt_elf configfs cpufreq-dt +cpufreq-dt-platdev cpufreq_conservative cpufreq_ondemand cpufreq_performance @@ -122,11 +190,6 @@ cryptomgr ctr cts -da903x -da9052-core -da9052-i2c -da9052-spi -da9055 da9063 davinci_mdio dax @@ -152,20 +215,19 @@ exportfs ext4 extcon-core -ezx-pcap +failover fan fat fb +fb_sys_fops fddi fec firmware_class fixed_phy font -freq_table fsl_dpaa_fman fsl_dpaa_fman_port fsl_dpaa_mac -fsl_ifc fuse fwnode_mdio g12a @@ -183,11 +245,8 @@ governor_userspace gpio-davinci gpio-generic -gpio-imx-scu gpio-mxc gpio-pl061 -gpio-poweroff -gpio-restart gpio-tegra gpio-tegra186 gpio-xilinx @@ -195,37 +254,30 @@ gxbb gxbb-aoclk hed +hid_bpf hmac hwmon -hwspinlock_core i2c-core i2c-designware-core i2c-designware-platform i2c-dev i2c-omap i2c-sprd -icc-core imsttfb imx imx-scu imx-weim +imx8m-blk-ctrl +imx8mp-blk-ctrl +imx93-blk-ctrl input-core interconnect_qcom -ioasid iova -ipu_idmac ipv6 -irq-al-fic irq-bcm7038-l1 irq-brcmstb-l2 -irq-ls-scfg-msi -irq-mbigen irq-meson-gpio irq-mvebu-pic -irq-renesas-irqc -irq-renesas-rzg2l -irq-ti-sci-inta -irq-ti-sci-intr irqbypass jbd2 jitterentropy_rng @@ -242,7 +294,6 @@ libahci libahci_platform libata -libblake2s libcryptoutils libnvdimm libphy @@ -251,8 +302,6 @@ libsha256 linear_ranges loop -lp8788 -ltc2952-poweroff lz4_decompress lzo lzo-rle @@ -263,7 +312,6 @@ max77686 max77693 mbcache -mctp md-mod md5 mdio-bitbang @@ -284,39 +332,29 @@ mpi mq-deadline msm_serial -mt6323-poweroff mtk-eint -mv_xor_v2 +mtk-regulator-coupler mx3fb mxc-clk n_null -nfs_ssc +net_failover nls_base nls_cp437 -nvmem_core nvmem_zynqmp_nvmem +odroid-go-ultra-poweroff of_mdio ohci-hcd ohci-pci oid_registry owl-uart -packing palmas pci-aardvark -pci-ep-cfs -pci-epc-core -pci-epc-mem -pci-epf-core pci-host-common pci-host-generic -pci-tegra pcie-altera pcie-altera-msi -pcie-hisi-error -pcie-histb pcie-kirin pcie-mediatek -pcie-microchip-host pcs-lynx phy-bcm-ns2-pcie phy-brcm-sata @@ -325,7 +363,6 @@ phy-mxs-usb phy-xgene phylink -pinctrl-amd pinctrl-as3722 pinctrl-bcm2835 pinctrl-imx @@ -348,26 +385,17 @@ pinctrl-microchip-sgpio pinctrl-msm pinctrl-mt6765 -pinctrl-mt8188 -pinctrl-mt8192 -pinctrl-mt8365 pinctrl-mtk-common-v2 pinctrl-ocelot pinctrl-palmas pinctrl-paris pinctrl-rockchip -pinctrl-rzg2l -pinctrl-rzv2m -pinctrl-s700 -pinctrl-s900 +pinctrl-s32g2 pinctrl-scu pinctrl-single pinctrl-sprd pinctrl-sprd-sc9860 pkcs7_message -pldmfw -power_supply -powercap_sys ppp_generic pps_core pretimeout_noop @@ -375,45 +403,37 @@ pstore ptp public_key -qcom-ebi2 +pwc-rzv2m qcom-ipcc qcom-pdc qcom-scm -qcom-ssc-block-bus qcom_rpmh rapidio raspberrypi -raspberrypi-power rational rcar-usb2-clock-sel -reactor_panic -reactor_printk regmap-i2c regmap-mmio regmap-spi -regulator-poweroff -remoteproc -renesas-cpg-mssr reset reset-berlin reset-brcmstb-rescal reset-imx7 reset-meson -reset-microchip-sparx5 reset-qcom-aoss -restart-poweroff +reset-rzg2l-usbphy-ctrl rfkill rng rng-core -rockchip-mailbox roles rpmhpd rsa_generic rtc-efi rtc-mv rtc-xgene -rzg2l-cpg +rz-mtu3 sccnxp +scmi-core scmi-module scsi_common scsi_mod @@ -424,80 +444,66 @@ selftests seqiv serdev -serial_core +serial_base serial_mctrl_gpio serio sg -sh_cmt -sh_tmu +sh-sci sha1_generic sha256_generic +sha3_generic +sha512-arm64 +sha512-ce sha512_generic -shpchp -simple-pm-bus +sig skcipher slhc smc91x +soc-imx8m spi-fsl-lib spi-fsl-spi spi-omap2-mcspi squashfs sr_mod -stmpe-i2c -stmpe-spi +sun20i-ppu sun50i-a100-ccu sun50i-a100-r-ccu sun50i-a64-ccu sun50i-h6-ccu sun50i-h6-r-ccu sun50i-h616-ccu -sun50i-iommu sun6i-msgbox sun8i-de2-ccu sun8i-h3-ccu sun8i-r-ccu sunxi-ccu -sunxi_sram syscon-clk -system_heap +syscopyarea +sysfillrect +sysimgblt t10-pi -tc3589x tcp_cubic -tegra-ahb -tegra-mc tegra-tcu -tegra124-cpufreq -tegra186-emc -tegra194-cbb tegra20-apb-dma tegra20-cpufreq -tegra234-cbb thermal ti-cpufreq ti-msgmgr ti-opp-supply ti_sci -timer-tegra186 -timer-ti-dm tpm tpm_crb tpm_tis tpm_tis_core -tps65086-restart -tps6586x tps65912-core tps65912-i2c tps65912-spi trusted ttyprintk tun -twl4030-audio -twl6040 ucs2_string -udmabuf uhci-hcd uinput -unicode unix usb-common usbcore @@ -510,17 +516,17 @@ virtio virtio-iommu virtio_balloon +virtio_blk virtio_console virtio_mmio +virtio_net virtio_pci virtio_pci_legacy_dev virtio_pci_modern_dev virtio_ring virtio_scsi vivaldi-fmap -watch_queue watchdog -wwan x509_key_parser xen-blkfront xen-netfront @@ -536,8 +542,6 @@ zlib_inflate -zpool zsmalloc zstd_common zstd_compress zstd_decompress -zswap zynqmp-ipi-mailbox diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/fwinfo linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/fwinfo --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/fwinfo +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/fwinfo @@ -1,4 +1,5 @@ firmware: 3826.arm +firmware: 3826.eeprom firmware: 3com/typhoon.bin firmware: 6fire/dmx6fireap.ihx firmware: 6fire/dmx6firecf.bin @@ -16,6 +17,7 @@ firmware: acenic/tg2.bin firmware: adaptec/starfire_rx.bin firmware: adaptec/starfire_tx.bin +firmware: adf7242_firmware.bin firmware: advansys/3550.bin firmware: advansys/38C0800.bin firmware: advansys/38C1600.bin @@ -26,6 +28,7 @@ firmware: amd/amd_sev_fam17h_model0xh.sbin firmware: amd/amd_sev_fam17h_model3xh.sbin firmware: amd/amd_sev_fam19h_model0xh.sbin +firmware: amd/amd_sev_fam19h_model1xh.sbin firmware: amdgpu/aldebaran_cap.bin firmware: amdgpu/aldebaran_mec.bin firmware: amdgpu/aldebaran_mec2.bin @@ -134,6 +137,7 @@ firmware: amdgpu/gc_11_0_0_mec.bin firmware: amdgpu/gc_11_0_0_mes.bin firmware: amdgpu/gc_11_0_0_mes1.bin +firmware: amdgpu/gc_11_0_0_mes_2.bin firmware: amdgpu/gc_11_0_0_pfp.bin firmware: amdgpu/gc_11_0_0_rlc.bin firmware: amdgpu/gc_11_0_0_toc.bin @@ -142,6 +146,7 @@ firmware: amdgpu/gc_11_0_1_mec.bin firmware: amdgpu/gc_11_0_1_mes.bin firmware: amdgpu/gc_11_0_1_mes1.bin +firmware: amdgpu/gc_11_0_1_mes_2.bin firmware: amdgpu/gc_11_0_1_pfp.bin firmware: amdgpu/gc_11_0_1_rlc.bin firmware: amdgpu/gc_11_0_2_imu.bin @@ -149,6 +154,7 @@ firmware: amdgpu/gc_11_0_2_mec.bin firmware: amdgpu/gc_11_0_2_mes.bin firmware: amdgpu/gc_11_0_2_mes1.bin +firmware: amdgpu/gc_11_0_2_mes_2.bin firmware: amdgpu/gc_11_0_2_pfp.bin firmware: amdgpu/gc_11_0_2_rlc.bin firmware: amdgpu/gc_11_0_3_imu.bin @@ -156,6 +162,7 @@ firmware: amdgpu/gc_11_0_3_mec.bin firmware: amdgpu/gc_11_0_3_mes.bin firmware: amdgpu/gc_11_0_3_mes1.bin +firmware: amdgpu/gc_11_0_3_mes_2.bin firmware: amdgpu/gc_11_0_3_pfp.bin firmware: amdgpu/gc_11_0_3_rlc.bin firmware: amdgpu/gc_11_0_4_imu.bin @@ -163,8 +170,11 @@ firmware: amdgpu/gc_11_0_4_mec.bin firmware: amdgpu/gc_11_0_4_mes.bin firmware: amdgpu/gc_11_0_4_mes1.bin +firmware: amdgpu/gc_11_0_4_mes_2.bin firmware: amdgpu/gc_11_0_4_pfp.bin firmware: amdgpu/gc_11_0_4_rlc.bin +firmware: amdgpu/gc_9_4_3_mec.bin +firmware: amdgpu/gc_9_4_3_rlc.bin firmware: amdgpu/green_sardine_asd.bin firmware: amdgpu/green_sardine_ce.bin firmware: amdgpu/green_sardine_dmcub.bin @@ -384,6 +394,8 @@ firmware: amdgpu/psp_13_0_4_toc.bin firmware: amdgpu/psp_13_0_5_ta.bin firmware: amdgpu/psp_13_0_5_toc.bin +firmware: amdgpu/psp_13_0_6_sos.bin +firmware: amdgpu/psp_13_0_6_ta.bin firmware: amdgpu/psp_13_0_7_sos.bin firmware: amdgpu/psp_13_0_7_ta.bin firmware: amdgpu/psp_13_0_8_ta.bin @@ -422,6 +434,7 @@ firmware: amdgpu/renoir_sdma.bin firmware: amdgpu/renoir_ta.bin firmware: amdgpu/renoir_vcn.bin +firmware: amdgpu/sdma_4_4_2.bin firmware: amdgpu/sdma_5_2_6.bin firmware: amdgpu/sdma_5_2_7.bin firmware: amdgpu/sdma_6_0_0.bin @@ -499,6 +512,7 @@ firmware: amdgpu/vcn_3_1_2.bin firmware: amdgpu/vcn_4_0_0.bin firmware: amdgpu/vcn_4_0_2.bin +firmware: amdgpu/vcn_4_0_3.bin firmware: amdgpu/vcn_4_0_4.bin firmware: amdgpu/vega10_acg_smc.bin firmware: amdgpu/vega10_asd.bin @@ -604,9 +618,10 @@ 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: ath11k/QCA6390/hw2.0/amss.bin -firmware: ath11k/QCA6390/hw2.0/board-2.bin -firmware: ath11k/QCA6390/hw2.0/m3.bin +firmware: ath11k/QCA6390/hw2.0/* +firmware: ath11k/QCN9074/hw1.0/* +firmware: ath11k/WCN6855/hw2.0/* +firmware: ath11k/WCN6855/hw2.1/* firmware: ath3k-1.fw firmware: ath6k/AR6003/hw2.0/athwlan.bin.z77 firmware: ath6k/AR6003/hw2.0/bdata.SD31.bin @@ -656,6 +671,7 @@ firmware: atmel_at76c506-wpa.bin firmware: atmel_at76c506.bin firmware: atsc_denver.inp +firmware: av7110/bootcode.bin firmware: b43/ucode11.fw firmware: b43/ucode13.fw firmware: b43/ucode14.fw @@ -697,6 +713,7 @@ firmware: brcm/brcmbt4387*.ptb firmware: brcm/brcmfmac*-pcie.*.bin firmware: brcm/brcmfmac*-pcie.*.clm_blob +firmware: brcm/brcmfmac*-pcie.*.txcap_blob firmware: brcm/brcmfmac*-pcie.*.txt firmware: brcm/brcmfmac*-pcie.txt firmware: brcm/brcmfmac*-sdio.*.bin @@ -744,6 +761,7 @@ firmware: brcm/brcmfmac4358-pcie.bin firmware: brcm/brcmfmac4359-pcie.bin firmware: brcm/brcmfmac4359-sdio.bin +firmware: brcm/brcmfmac4359c-pcie.bin firmware: brcm/brcmfmac43602-pcie.bin firmware: brcm/brcmfmac4364b2-pcie.bin firmware: brcm/brcmfmac4364b2-pcie.clm_blob @@ -763,6 +781,10 @@ firmware: brcm/brcmfmac4377b3-pcie.clm_blob firmware: brcm/brcmfmac4378b1-pcie.bin firmware: brcm/brcmfmac4378b1-pcie.clm_blob +firmware: brcm/brcmfmac4378b3-pcie.bin +firmware: brcm/brcmfmac4378b3-pcie.clm_blob +firmware: brcm/brcmfmac4387c2-pcie.bin +firmware: brcm/brcmfmac4387c2-pcie.clm_blob firmware: c218tunx.cod firmware: c320tunx.cod firmware: cadence/mhdp8546.bin @@ -945,6 +967,7 @@ firmware: hfi1_fabric.fw firmware: hfi1_pcie.fw firmware: hfi1_sbus.fw +firmware: i915/adlp_dmc.bin firmware: i915/adlp_dmc_ver2_16.bin firmware: i915/adlp_guc_69.0.3.bin firmware: i915/adlp_guc_70.1.1.bin @@ -972,6 +995,9 @@ firmware: i915/kbl_dmc_ver1_04.bin firmware: i915/kbl_guc_70.1.1.bin firmware: i915/kbl_huc_4.0.0.bin +firmware: i915/mtl_dmc.bin +firmware: i915/mtl_guc_70.bin +firmware: i915/mtl_huc_gsc.bin firmware: i915/rkl_dmc_ver2_03.bin firmware: i915/skl_dmc_ver1_27.bin firmware: i915/skl_guc_70.1.1.bin @@ -1036,42 +1062,38 @@ firmware: iwlwifi-8265-36.ucode firmware: iwlwifi-9000-pu-b0-jf-b0-46.ucode firmware: iwlwifi-9260-th-b0-jf-b0-46.ucode -firmware: iwlwifi-BzBnj-a0-fm-a0-72.ucode -firmware: iwlwifi-BzBnj-a0-fm4-a0-72.ucode -firmware: iwlwifi-BzBnj-a0-gf-a0-72.ucode -firmware: iwlwifi-BzBnj-a0-gf4-a0-72.ucode -firmware: iwlwifi-BzBnj-a0-hr-b0-72.ucode -firmware: iwlwifi-BzBnj-b0-fm-b0-72.ucode -firmware: iwlwifi-Qu-b0-hr-b0-72.ucode -firmware: iwlwifi-Qu-b0-jf-b0-72.ucode -firmware: iwlwifi-Qu-c0-hr-b0-72.ucode -firmware: iwlwifi-QuQnj-b0-hr-b0-72.ucode -firmware: iwlwifi-QuQnj-b0-jf-b0-72.ucode -firmware: iwlwifi-QuZ-a0-hr-b0-72.ucode -firmware: iwlwifi-QuZ-a0-jf-b0-72.ucode -firmware: iwlwifi-SoSnj-a0-gf-a0-72.ucode -firmware: iwlwifi-SoSnj-a0-gf4-a0-72.ucode -firmware: iwlwifi-SoSnj-a0-hr-b0-72.ucode -firmware: iwlwifi-SoSnj-a0-jf-b0-72.ucode -firmware: iwlwifi-SoSnj-a0-mr-a0-72.ucode -firmware: iwlwifi-bz-a0-fm-a0-72.ucode -firmware: iwlwifi-bz-a0-fm4-a0-72.ucode -firmware: iwlwifi-bz-a0-gf-a0-72.ucode -firmware: iwlwifi-bz-a0-gf4-a0-72.ucode -firmware: iwlwifi-bz-a0-hr-b0-72.ucode -firmware: iwlwifi-bz-a0-mr-a0-72.ucode -firmware: iwlwifi-cc-a0-72.ucode -firmware: iwlwifi-gl-a0-fm-a0-72.ucode -firmware: iwlwifi-gl-b0-fm-b0-72.ucode -firmware: iwlwifi-ma-a0-fm-a0-72.ucode -firmware: iwlwifi-ma-a0-gf-a0-72.ucode -firmware: iwlwifi-ma-a0-gf4-a0-72.ucode -firmware: iwlwifi-ma-a0-hr-b0-72.ucode -firmware: iwlwifi-ma-a0-mr-a0-72.ucode -firmware: iwlwifi-so-a0-gf-a0-72.ucode -firmware: iwlwifi-so-a0-hr-b0-72.ucode -firmware: iwlwifi-so-a0-jf-b0-72.ucode -firmware: iwlwifi-ty-a0-gf-a0-72.ucode +firmware: iwlwifi-Qu-b0-hr-b0-77.ucode +firmware: iwlwifi-Qu-b0-jf-b0-77.ucode +firmware: iwlwifi-Qu-c0-hr-b0-77.ucode +firmware: iwlwifi-QuZ-a0-hr-b0-77.ucode +firmware: iwlwifi-QuZ-a0-jf-b0-77.ucode +firmware: iwlwifi-bz-a0-fm-b0-83.ucode +firmware: iwlwifi-bz-a0-fm-c0-83.ucode +firmware: iwlwifi-bz-a0-fm4-b0-83.ucode +firmware: iwlwifi-bz-a0-gf-a0-83.ucode +firmware: iwlwifi-bz-a0-gf4-a0-83.ucode +firmware: iwlwifi-bz-a0-hr-b0-83.ucode +firmware: iwlwifi-cc-a0-77.ucode +firmware: iwlwifi-gl-b0-fm-b0-83.ucode +firmware: iwlwifi-gl-c0-fm-c0-83.ucode +firmware: iwlwifi-ma-a0-gf-a0-83.ucode +firmware: iwlwifi-ma-a0-gf4-a0-83.ucode +firmware: iwlwifi-ma-a0-hr-b0-83.ucode +firmware: iwlwifi-ma-a0-mr-a0-83.ucode +firmware: iwlwifi-ma-b0-gf-a0-83.ucode +firmware: iwlwifi-ma-b0-gf4-a0-83.ucode +firmware: iwlwifi-ma-b0-hr-b0-83.ucode +firmware: iwlwifi-ma-b0-mr-a0-83.ucode +firmware: iwlwifi-sc-a0-fm-b0-83.ucode +firmware: iwlwifi-sc-a0-fm-c0-83.ucode +firmware: iwlwifi-sc-a0-gf-a0-83.ucode +firmware: iwlwifi-sc-a0-gf4-a0-83.ucode +firmware: iwlwifi-sc-a0-hr-b0-83.ucode +firmware: iwlwifi-sc-a0-wh-a0-83.ucode +firmware: iwlwifi-so-a0-gf-a0-83.ucode +firmware: iwlwifi-so-a0-hr-b0-83.ucode +firmware: iwlwifi-so-a0-jf-b0-83.ucode +firmware: iwlwifi-ty-a0-gf-a0-83.ucode firmware: kaweth/new_code.bin firmware: kaweth/new_code_fix.bin firmware: kaweth/trigger_code.bin @@ -1134,7 +1156,6 @@ firmware: liquidio/lio_23xx_nic.bin firmware: liquidio/lio_410nv_nic.bin firmware: me2600_firmware.bin -firmware: me4000_firmware.bin firmware: mediatek/BT_RAM_CODE_MT7961_1_2_hdr.bin firmware: mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin firmware: mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin @@ -1172,6 +1193,7 @@ firmware: mellanox/mlxsw_spectrum-13.2010.1006.mfa2 firmware: mellanox/mlxsw_spectrum2-29.2010.1006.mfa2 firmware: mellanox/mlxsw_spectrum3-30.2010.1006.mfa2 +firmware: metronome.wbf firmware: microchip/mscc_vsc8574_revb_int8051_29e8.bin firmware: microchip/mscc_vsc8584_revb_int8051_fb48.bin firmware: mixart/miXart8.elf @@ -1191,6 +1213,7 @@ firmware: mrvl/sd8897_uapsta.bin firmware: mrvl/sd8987_uapsta.bin firmware: mrvl/sdiouart8997_combo_v4.bin +firmware: mrvl/sdiouartiw416_combo_v0.bin firmware: mrvl/sdsd8977_combo_v2.bin firmware: mrvl/sdsd8997_combo_v4.bin firmware: mrvl/usb8766_uapsta.bin @@ -1656,6 +1679,7 @@ firmware: nvidia/tu117/sec2/sig.bin firmware: orinoco_ezusb_fw firmware: ositech/Xilinx7OD.bin +firmware: otp.bin firmware: pca200e_ecd.bin2 firmware: pcxhr/dspb1222e.b56 firmware: pcxhr/dspb1222hr.b56 @@ -1716,7 +1740,6 @@ firmware: qlogic/1280.bin firmware: qlogic/sd7220.fw firmware: r8a779x_usb3_v1.dlmem -firmware: r8a779x_usb3_v2.dlmem firmware: r8a779x_usb3_v3.dlmem firmware: radeon/ARUBA_me.bin firmware: radeon/ARUBA_pfp.bin @@ -1950,6 +1973,7 @@ firmware: radeon/verde_pfp.bin firmware: radeon/verde_rlc.bin firmware: radeon/verde_smc.bin +firmware: ram.bin firmware: regulatory.db firmware: regulatory.db.p7s firmware: renesas_usb_fw.mem @@ -1963,26 +1987,52 @@ firmware: rt2661.bin firmware: rt2860.bin firmware: rt2870.bin +firmware: rt5677_elf_vad firmware: rt73.bin firmware: rtl_bt/rtl8723a_fw.bin firmware: rtl_bt/rtl8723b_config.bin firmware: rtl_bt/rtl8723b_fw.bin firmware: rtl_bt/rtl8723bs_config.bin firmware: rtl_bt/rtl8723bs_fw.bin +firmware: rtl_bt/rtl8723cs_cg_config.bin +firmware: rtl_bt/rtl8723cs_cg_fw.bin +firmware: rtl_bt/rtl8723cs_vf_config.bin +firmware: rtl_bt/rtl8723cs_vf_fw.bin +firmware: rtl_bt/rtl8723cs_xx_config.bin +firmware: rtl_bt/rtl8723cs_xx_fw.bin +firmware: rtl_bt/rtl8723d_config.bin +firmware: rtl_bt/rtl8723d_fw.bin firmware: rtl_bt/rtl8723ds_config.bin firmware: rtl_bt/rtl8723ds_fw.bin firmware: rtl_bt/rtl8761a_config.bin firmware: rtl_bt/rtl8761a_fw.bin +firmware: rtl_bt/rtl8761b_config.bin +firmware: rtl_bt/rtl8761b_fw.bin +firmware: rtl_bt/rtl8761bu_config.bin +firmware: rtl_bt/rtl8761bu_fw.bin firmware: rtl_bt/rtl8821a_config.bin firmware: rtl_bt/rtl8821a_fw.bin +firmware: rtl_bt/rtl8821c_config.bin +firmware: rtl_bt/rtl8821c_fw.bin +firmware: rtl_bt/rtl8821cs_config.bin +firmware: rtl_bt/rtl8821cs_fw.bin firmware: rtl_bt/rtl8822b_config.bin firmware: rtl_bt/rtl8822b_fw.bin +firmware: rtl_bt/rtl8822cs_config.bin +firmware: rtl_bt/rtl8822cs_fw.bin +firmware: rtl_bt/rtl8822cu_config.bin +firmware: rtl_bt/rtl8822cu_fw.bin +firmware: rtl_bt/rtl8851bu_config.bin +firmware: rtl_bt/rtl8851bu_fw.bin firmware: rtl_bt/rtl8852au_config.bin firmware: rtl_bt/rtl8852au_fw.bin +firmware: rtl_bt/rtl8852bs_config.bin +firmware: rtl_bt/rtl8852bs_fw.bin firmware: rtl_bt/rtl8852bu_config.bin firmware: rtl_bt/rtl8852bu_fw.bin firmware: rtl_bt/rtl8852cu_config.bin firmware: rtl_bt/rtl8852cu_fw.bin +firmware: rtl_bt/rtl8852cu_fw_v2.bin firmware: rtl_nic/rtl8105e-1.fw firmware: rtl_nic/rtl8106e-1.fw firmware: rtl_nic/rtl8106e-2.fw @@ -2023,7 +2073,10 @@ firmware: rtlwifi/rtl8192defw.bin firmware: rtlwifi/rtl8192eefw.bin firmware: rtlwifi/rtl8192eu_nic.bin +firmware: rtlwifi/rtl8192fufw.bin firmware: rtlwifi/rtl8192sefw.bin +firmware: rtlwifi/rtl8710bufw_SMIC.bin +firmware: rtlwifi/rtl8710bufw_UMC.bin firmware: rtlwifi/rtl8712u.bin firmware: rtlwifi/rtl8723aufw_A.bin firmware: rtlwifi/rtl8723aufw_B.bin @@ -2040,8 +2093,9 @@ firmware: rtw88/rtw8822b_fw.bin firmware: rtw88/rtw8822c_fw.bin firmware: rtw88/rtw8822c_wow_fw.bin +firmware: rtw89/rtw8851b_fw.bin firmware: rtw89/rtw8852a_fw.bin -firmware: rtw89/rtw8852b_fw.bin +firmware: rtw89/rtw8852b_fw-1.bin firmware: rtw89/rtw8852c_fw.bin firmware: sd8385.bin firmware: sd8385_helper.bin @@ -2087,6 +2141,7 @@ firmware: ti_3410.fw firmware: ti_5052.fw firmware: tigon/tg3.bin +firmware: tigon/tg357766.bin firmware: tigon/tg3_tso.bin firmware: tigon/tg3_tso5.bin firmware: ttusb-budget/dspbootcode.bin diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/version linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/version --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/version +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/abi/version @@ -1 +1 @@ -6.5.0-1013.13~22.04.3 +6.5.0-1014.14~22.04.1 diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/changelog linux-oracle-6.5-6.5.0/debian.oracle-6.5/changelog --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/changelog +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/changelog @@ -1,3 +1,1529 @@ +linux-oracle-6.5 (6.5.0-1015.15~22.04.1) jammy; urgency=medium + + * jammy/linux-oracle-6.5: 6.5.0-1015.15~22.04.1 -proposed tracker + (LP: #2048362) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + + [ Ubuntu: 6.5.0-1015.15 ] + + * mantic/linux-oracle: 6.5.0-1015.15 -proposed tracker (LP: #2048363) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + * mantic/linux: 6.5.0-17.17 -proposed tracker (LP: #2049026) + * [UBUNTU 23.04] Regression: Ubuntu 23.04/23.10 do not include uvdevice + anymore (LP: #2048919) + - [Config] Enable S390_UV_UAPI (built-in) + * mantic/linux: 6.5.0-16.16 -proposed tracker (LP: #2048372) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + * Add missing RPL P/U CPU IDs (LP: #2047398) + - drm/i915/rpl: Update pci ids for RPL P/U + * Fix BCM57416 lost after resume (LP: #2047518) + - bnxt_en: Clear resource reservation during resume + * Hotplugging SCSI disk in QEMU VM fails (LP: #2047382) + - Revert "PCI: acpiphp: Reassign resources on bridge if necessary" + * Update bnxt_en with bug fixes and support for Broadcom 5760X network + adapters (LP: #2045796) + - bnxt_en: use dev_consume_skb_any() in bnxt_tx_int + - eth: bnxt: move and rename reset helpers + - eth: bnxt: take the bit to set as argument of bnxt_queue_sp_work() + - eth: bnxt: handle invalid Tx completions more gracefully + - eth: bnxt: fix one of the W=1 warnings about fortified memcpy() + - eth: bnxt: fix warning for define in struct_group + - bnxt_en: Fix W=1 warning in bnxt_dcb.c from fortify memcpy() + - bnxt_en: Fix W=stringop-overflow warning in bnxt_dcb.c + - bnxt_en: Use the unified RX page pool buffers for XDP and non-XDP + - bnxt_en: Let the page pool manage the DMA mapping + - bnxt_en: Increment rx_resets counter in bnxt_disable_napi() + - bnxt_en: Save ring error counters across reset + - bnxt_en: Display the ring error counters under ethtool -S + - bnxt_en: Add tx_resets ring counter + - bnxt: use the NAPI skb allocation cache + - bnxt_en: Update firmware interface to 1.10.2.171 + - bnxt_en: Enhance hwmon temperature reporting + - bnxt_en: Move hwmon functions into a dedicated file + - bnxt_en: Modify the driver to use hwmon_device_register_with_info + - bnxt_en: Expose threshold temperatures through hwmon + - bnxt_en: Use non-standard attribute to expose shutdown temperature + - bnxt_en: Event handler for Thermal event + - bnxt_en: Support QOS and TPID settings for the SRIOV VLAN + - bnxt_en: Update VNIC resource calculation for VFs + - Revert "bnxt_en: Support QOS and TPID settings for the SRIOV VLAN" + - eth: bnxt: fix backward compatibility with older devices + - bnxt_en: Do not call sleeping hwmon_notify_event() from NAPI + - bnxt_en: Fix invoking hwmon_notify_event + - bnxt_en: add infrastructure to lookup ethtool link mode + - bnxt_en: support lane configuration via ethtool + - bnxt_en: refactor speed independent ethtool modes + - bnxt_en: Refactor NRZ/PAM4 link speed related logic + - bnxt_en: convert to linkmode_set_bit() API + - bnxt_en: extend media types to supported and autoneg modes + - bnxt_en: Fix 2 stray ethtool -S counters + - bnxt_en: Put the TX producer information in the TX BD opaque field + - bnxt_en: Add completion ring pointer in TX and RX ring structures + - bnxt_en: Restructure cp_ring_arr in struct bnxt_cp_ring_info + - bnxt_en: Add completion ring pointer in TX and RX ring structures + - bnxt_en: Remove BNXT_RX_HDL and BNXT_TX_HDL + - bnxt_en: Refactor bnxt_tx_int() + - bnxt_en: New encoding for the TX opaque field + - bnxt_en: Refactor bnxt_hwrm_set_coal() + - bnxt_en: Support up to 8 TX rings per MSIX + - bnxt_en: Add helper to get the number of CP rings required for TX rings + - bnxt_en: Add macros related to TC and TX rings + - bnxt_en: Use existing MSIX vectors for all mqprio TX rings + - bnxt_en: Optimize xmit_more TX path + - bnxt_en: The caller of bnxt_alloc_ctx_mem() should always free bp->ctx + - bnxt_en: Free bp->ctx inside bnxt_free_ctx_mem() + - bnxt_en: Restructure context memory data structures + - bnxt_en: Add page info to struct bnxt_ctx_mem_type + - bnxt_en: Use the pg_info field in bnxt_ctx_mem_type struct + - bnxt_en: Add bnxt_setup_ctxm_pg_tbls() helper function + - bnxt_en: Add support for new backing store query firmware API + - bnxt_en: Add support for HWRM_FUNC_BACKING_STORE_CFG_V2 firmware calls + - bnxt_en: Add db_ring_mask and related macro to bnxt_db_info struct. + - bnxt_en: Modify TX ring indexing logic. + - bnxt_en: Modify RX ring indexing logic. + - bnxt_en: Modify the NAPI logic for the new P7 chips + - bnxt_en: Rename some macros for the P5 chips + - bnxt_en: Fix backing store V2 logic + - bnxt_en: Update firmware interface to 1.10.3.15 + - bnxt_en: Define basic P7 macros + - bnxt_en: Consolidate DB offset calculation + - bnxt_en: Implement the new toggle bit doorbell mechanism on P7 chips + - bnxt_en: Refactor RSS capability fields + - bnxt_en: Add new P7 hardware interface definitions + - bnxt_en: Refactor RX VLAN acceleration logic. + - bnxt_en: Refactor and refine bnxt_tpa_start() and bnxt_tpa_end(). + - bnxt_en: Add support for new RX and TPA_START completion types for P7 + - bnxt_en: Refactor ethtool speeds logic + - bnxt_en: Support new firmware link parameters + - bnxt_en: Support force speed using the new HWRM fields + - bnxt_en: Report the new ethtool link modes in the new firmware interface + - bnxt_en: Add 5760X (P7) PCI IDs + - net: bnxt: fix a potential use-after-free in bnxt_init_tc + * drm: Update file owner during use (LP: #2047461) + - drm: Update file owner during use + * CVE-2023-6622 + - netfilter: nf_tables: bail out on mismatching dynset and set expressions + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * Support Cirrus CS35L41 codec on Dell Oasis 13/14/16 laptops (LP: #2044096) + - ALSA: hda/realtek: Add support dual speaker for Dell + * Add support of MTL audio of Lenovo (LP: #2048078) + - ALSA: hda: intel-nhlt: Ignore vbps when looking for DMIC 32 bps format + * Fix AMDGPU crash on 6.5 kernel (LP: #2047389) + - drm/amdgpu: disable MCBP by default + * Some machines can't pass the pm-graph test (LP: #2046217) + - wifi: iwlwifi: pcie: rescan bus if no parent + * Sound: Add rtl quirk of M90-Gen5 (LP: #2046105) + - ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5 + * linux tools packages for derived kernels refuse to install simultaneously + due to libcpupower name collision (LP: #2035971) + - [Packaging] Statically link libcpupower into cpupower tool + * [Debian] autoreconstruct - Do not generate chmod -x for deleted files + (LP: #2045562) + - [Debian] autoreconstruct - Do not generate chmod -x for deleted files + * CVE-2023-6931 + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + * Mantic update: v6.5.8 upstream stable release (LP: #2046269) + - net: stmmac: remove unneeded stmmac_poll_controller + - RDMA/cxgb4: Check skb value for failure to allocate + - perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7 + - platform/x86: think-lmi: Fix reference leak + - drm/i915: Register engines early to avoid type confusion + - cpuidle, ACPI: Evaluate LPI arch_flags for broadcast timer + - drm/amdgpu: Fix a memory leak + - platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section + mismatch warning + - media: dt-bindings: imx7-csi: Make power-domains not required for imx8mq + - drm/amd/display: implement pipe type definition and adding accessors + - drm/amd/display: apply edge-case DISPCLK WDIVIDER changes to master OTG + pipes only + - scsi: Do not rescan devices with a suspended queue + - ata: pata_parport: fix pata_parport_devchk + - ata: pata_parport: implement set_devctl + - HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect + - quota: Fix slow quotaoff + - dm crypt: Fix reqsize in crypt_iv_eboiv_gen + - ASoC: amd: yc: Fix non-functional mic on Lenovo 82YM + - ASoC: hdmi-codec: Fix broken channel map reporting + - ata: libata-scsi: Disable scsi device manage_system_start_stop + - net: prevent address rewrite in kernel_bind() + - arm64: dts: qcom: sm8150: extend the size of the PDC resource + - dt-bindings: interrupt-controller: renesas,rzg2l-irqc: Update description + for '#interrupt-cells' property + - irqchip: renesas-rzg2l: Fix logic to clear TINT interrupt source + - KEYS: trusted: Remove redundant static calls usage + - ALSA: usb-audio: Fix microphone sound on Opencomm2 Headset + - ALSA: usb-audio: Fix microphone sound on Nexigo webcam. + - ALSA: hda: cs35l41: Cleanup and fix double free in firmware request + - ALSA: hda/realtek: Change model for Intel RVP board + - ASoC: SOF: amd: fix for firmware reload failure after playback + - ASoC: simple-card-utils: fixup simple_util_startup() error handling + - ASoC: Intel: soc-acpi: fix Dell SKU 0B34 + - ASoC: Intel: soc-acpi: Add entry for HDMI_In capture support in MTL match + table + - ASoC: fsl_sai: Don't disable bitclock for i.MX8MP + - ASoC: Intel: sof_sdw: add support for SKU 0B14 + - ASoC: Intel: soc-acpi: Add entry for sof_es8336 in MTL match table. + - ALSA: hda/realtek - ALC287 merge RTK codec with CS CS35L41 AMP + - ALSA: hda/realtek: Add quirk for HP Victus 16-d1xxx to enable mute LED + - ALSA: hda/realtek: Add quirk for mute LEDs on HP ENVY x360 15-eu0xxx + - pinctrl: nuvoton: wpcm450: fix out of bounds write + - pinctrl: starfive: jh7110: Fix failure to set irq after CONFIG_PM is enabled + - drm/msm/dp: do not reinitialize phy unless retry during link training + - drm/msm/dsi: skip the wait for video mode done if not applicable + - drm/msm/dsi: fix irq_of_parse_and_map() error checking + - drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow + - drm/msm/dp: Add newlines to debug printks + - drm/msm/dpu: fail dpu_plane_atomic_check() based on mdp clk limits + - phy: lynx-28g: cancel the CDR check work item on the remove path + - phy: lynx-28g: lock PHY while performing CDR lock workaround + - phy: lynx-28g: serialize concurrent phy_set_mode_ext() calls to shared + registers + - net: dsa: qca8k: fix regmap bulk read/write methods on big endian systems + - net: dsa: qca8k: fix potential MDIO bus conflict when accessing internal + PHYs via management frames + - can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior + - can: sun4i_can: Only show Kconfig if ARCH_SUNXI is set + - arm64: dts: mediatek: fix t-phy unit name + - arm64: dts: mediatek: mt8195: Set DSU PMU status to fail + - devlink: Hold devlink lock on health reporter dump get + - ravb: Fix up dma_free_coherent() call in ravb_remove() + - ravb: Fix use-after-free issue in ravb_tx_timeout_work() + - ieee802154: ca8210: Fix a potential UAF in ca8210_probe + - mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type + - xen-netback: use default TX queue size for vifs + - riscv, bpf: Sign-extend return values + - riscv, bpf: Track both a0 (RISC-V ABI) and a5 (BPF) return values + - xdp: Fix zero-size allocation warning in xskq_create() + - drm/vmwgfx: fix typo of sizeof argument + - bpf: Fix verifier log for async callback return values + - net: refine debug info in skb_checksum_help() + - octeontx2-pf: mcs: update PN only when update_pn is true + - net: macsec: indicate next pn update when offloading + - net: phy: mscc: macsec: reject PN update requests + - net/mlx5e: macsec: use update_pn flag instead of PN comparation + - drm/panel: boe-tv101wum-nl6: Completely pull GPW to VGL before TP term + - ixgbe: fix crash with empty VF macvlan list + - net/smc: Fix dependency of SMC on ISM + - net/mlx5e: Again mutually exclude RX-FCS and RX-port-timestamp + - s390/bpf: Fix clobbering the caller's backchain in the trampoline + - s390/bpf: Fix unwinding past the trampoline + - net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn() + - net: tcp: fix crashes trying to free half-baked MTU probes + - pinctrl: renesas: rzn1: Enable missing PINMUX + - af_packet: Fix fortified memcpy() without flex array. + - nfc: nci: assert requested protocol is valid + - octeontx2-pf: Fix page pool frag allocation warning + - rswitch: Fix renesas_eth_sw_remove() implementation + - rswitch: Fix imbalance phy_power_off() calling + - workqueue: Override implicit ordered attribute in + workqueue_apply_unbound_cpumask() + - riscv: signal: fix sigaltstack frame size checking + - ovl: temporarily disable appending lowedirs + - dmaengine: stm32-mdma: abort resume if no ongoing transfer + - dmaengine: stm32-dma: fix stm32_dma_prep_slave_sg in case of MDMA chaining + - dmaengine: stm32-dma: fix residue in case of MDMA chaining + - dmaengine: stm32-mdma: use Link Address Register to compute residue + - dmaengine: stm32-mdma: set in_flight_bytes in case CRQA flag is set + - usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer + - xhci: track port suspend state correctly in unsuccessful resume cases + - xhci: Clear EHB bit only at end of interrupt handler + - xhci: Preserve RsvdP bits in ERSTBA register correctly + - net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read + - usb: dwc3: Soft reset phy on probe for host + - usb: cdns3: Modify the return value of cdns_set_active () to void when + CONFIG_PM_SLEEP is disabled + - usb: hub: Guard against accesses to uninitialized BOS descriptors + - usb: musb: Get the musb_qh poniter after musb_giveback + - usb: musb: Modify the "HWVers" register address + - iio: pressure: bmp280: Fix NULL pointer exception + - iio: imu: bno055: Fix missing Kconfig dependencies + - iio: cros_ec: fix an use-after-free in cros_ec_sensors_push_data() + - iio: adc: imx8qxp: Fix address for command buffer registers + - iio: dac: ad3552r: Correct device IDs + - iio: admv1013: add mixer_vgate corner cases + - iio: pressure: dps310: Adjust Timeout Settings + - iio: pressure: ms5611: ms5611_prom_is_valid false negative bug + - iio: adc: ad7192: Correct reference voltage + - iio: addac: Kconfig: update ad74413r selections + - media: subdev: Don't report V4L2_SUBDEV_CAP_STREAMS when the streams API is + disabled + - arm64: dts: mediatek: mt8195-demo: fix the memory size to 8GB + - arm64: dts: mediatek: mt8195-demo: update and reorder reserved memory + regions + - drm: Do not overrun array in drm_gem_get_pages() + - drm/tiny: correctly print `struct resource *` on error + - drm/atomic-helper: relax unregistered connector check + - drm/amdgpu: add missing NULL check + - drm/amd/display: Don't set dpms_off for seamless boot + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA + - ACPI: resource: Add TongFang GM6BGEQ, GM6BG5Q and GM6BG0Q to + irq1_edge_low_force_override[] + - ACPI: EC: Add quirk for the HP Pavilion Gaming 15-dk1xxx + - serial: Reduce spinlocked portion of uart_rs485_config() + - serial: 8250_omap: Fix errors with no_console_suspend + - serial: core: Fix checks for tx runtime PM state + - binder: fix memory leaks of spam and pending work + - ksmbd: not allow to open file if delelete on close bit is set + - perf/x86/lbr: Filter vsyscall addresses + - x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs + - x86/alternatives: Disable KASAN in apply_alternatives() + - mcb: remove is_added flag from mcb_device struct + - thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple + Ridge + - thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding + - thunderbolt: Correct TMU mode initialization from hardware + - thunderbolt: Restart XDomain discovery handshake after failure + - powerpc/pseries: Fix STK_PARAM access in the hcall tracing code + - powerpc/47x: Fix 47x syscall return crash + - libceph: use kernel_connect() + - ceph: fix incorrect revoked caps assert in ceph_fill_file_size() + - ceph: fix type promotion bug on 32bit systems + - Input: powermate - fix use-after-free in powermate_config_complete + - Input: psmouse - fix fast_reconnect function for PS/2 mode + - Input: xpad - add PXN V900 support + - Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table + - Input: xpad - add HyperX Clutch Gladiate Support + - Input: goodix - ensure int GPIO is in input for gpio_count == 1 && + gpio_int_idx == 0 case + - tee: amdtee: fix use-after-free vulnerability in amdtee_close_session + - mctp: perform route lookups under a RCU read-side lock + - block: Don't invalidate pagecache for invalid falloc modes + - nfp: flower: avoid rmmod nfp crash issues + - can: sja1000: Always restart the Tx queue after an overrun + - power: supply: qcom_battmgr: fix battery_id type + - power: supply: qcom_battmgr: fix enable request endianness + - usb: typec: ucsi: Use GET_CAPABILITY attributes data to set power supply + scope + - cgroup: Remove duplicates in cgroup v1 tasks file + - dma-buf: add dma_fence_timestamp helper + - scsi: ufs: core: Correct clear TM error log + - riscv: Only consider swbp/ss handlers for correct privileged mode + - counter: chrdev: fix getting array extensions + - counter: microchip-tcb-capture: Fix the use of internal GCLK logic + - coresight: Fix run time warnings while reusing ETR buffer + - riscv: Remove duplicate objcopy flag + - RISC-V: Fix wrong use of CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK + - usb: typec: ucsi: Fix missing link removal + - usb: typec: altmodes/displayport: Signal hpd low when exiting mode + - usb: typec: ucsi: Clear EVENT_PENDING bit if ucsi_send_command fails + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call + - usb: cdnsp: Fixes issue with dequeuing not queued requests + - usb: typec: qcom: Update the logic of regulator enable and disable + - usb: misc: onboard_hub: add support for Microchip USB2412 USB 2.0 hub + - dmaengine: idxd: use spin_lock_irqsave before wait_event_lock_irq + - dmaengine: mediatek: Fix deadlock caused by synchronize_irq() + - powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE + - powerpc/64e: Fix wrong test in __ptep_test_and_clear_young() + - fs: Fix kernel-doc warnings + - fs: factor out vfs_parse_monolithic_sep() helper + - ovl: fix regression in parsing of mount options with escaped comma + - ovl: make use of ->layers safe in rcu pathwalk + - ovl: fix regression in showing lowerdir mount option + - ALSA: hda/realtek - Fixed two speaker platform + - Linux 6.5.8 + * Mantic update: v6.5.7 upstream stable release (LP: #2045806) + - ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol + - ASoC: tegra: Fix redundant PLLA and PLLA_OUT0 updates + - maple_tree: add mas_is_active() to detect in-tree walks + - mptcp: Remove unnecessary test for __mptcp_init_sock() + - mptcp: rename timer related helper to less confusing names + - mptcp: fix dangling connection hang-up + - scsi: core: Improve type safety of scsi_rescan_device() + - scsi: Do not attempt to rescan suspended devices + - ata: libata-scsi: Fix delayed scsi_rescan_device() execution + - btrfs: remove btrfs_writepage_endio_finish_ordered + - btrfs: remove end_extent_writepage + - btrfs: don't clear uptodate on write errors + - arm64: add HWCAP for FEAT_HBC (hinted conditional branches) + - arm64: cpufeature: Fix CLRBHB and BC detection + - net: add sysctl accept_ra_min_rtr_lft + - net: change accept_ra_min_rtr_lft to affect all RA lifetimes + - net: release reference to inet6_dev pointer + - iommu/arm-smmu-v3: Avoid constructing invalid range commands + - maple_tree: reduce resets during store setup + - maple_tree: add MAS_UNDERFLOW and MAS_OVERFLOW states + - iommu/apple-dart: Handle DMA_FQ domains in attach_dev() + - scsi: zfcp: Fix a double put in zfcp_port_enqueue() + - iommu/vt-d: Avoid memory allocation in iommu_suspend() + - net: mana: Fix TX CQE error handling + - net: ethernet: mediatek: disable irq before schedule napi + - mptcp: fix delegated action races + - mptcp: userspace pm allow creating id 0 subflow + - qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info + - Bluetooth: hci_codec: Fix leaking content of local_codecs + - wifi: brcmfmac: Replace 1-element arrays with flexible arrays + - Bluetooth: hci_sync: Fix handling of HCI_QUIRK_STRICT_DUPLICATE_FILTER + - wifi: rtw88: rtw8723d: Fix MAC address offset in EEPROM + - wifi: mwifiex: Fix tlv_buf_left calculation + - md/raid5: release batch_last before waiting for another stripe_head + - PCI/PM: Mark devices disconnected if upstream PCIe link is down on resume + - PCI: qcom: Fix IPQ8074 enumeration + - platform/x86/intel/ifs: release cpus_read_lock() + - net: replace calls to sock->ops->connect() with kernel_connect() + - btrfs: always print transaction aborted messages with an error level + - net: prevent rewrite of msg_name in sock_sendmsg() + - drm/i915: Don't set PIPE_CONTROL_FLUSH_L3 for aux inval + - drm/amd: Fix detection of _PR3 on the PCIe root port + - drm/amd: Fix logic error in sienna_cichlid_update_pcie_parameters() + - arm64: Add Cortex-A520 CPU part definition + - [Config] updateconfigs for ARM64_ERRATUM_2966298 + - arm64: errata: Add Cortex-A520 speculative unprivileged load workaround + - HID: sony: Fix a potential memory leak in sony_probe() + - wifi: mt76: fix lock dependency problem for wed_lock + - ubi: Refuse attaching if mtd's erasesize is 0 + - erofs: fix memory leak of LZMA global compressed deduplication + - wifi: cfg80211/mac80211: hold link BSSes when assoc fails for MLO connection + - iwlwifi: mvm: handle PS changes in vif_cfg_changed + - wifi: iwlwifi: dbg_ini: fix structure packing + - wifi: iwlwifi: mvm: Fix a memory corruption issue + - wifi: cfg80211: fix cqm_config access race + - rtla/timerlat_aa: Zero thread sum after every sample analysis + - rtla/timerlat_aa: Fix negative IRQ delay + - rtla/timerlat_aa: Fix previous IRQ delay for IRQs that happens after thread + sample + - wifi: cfg80211: add missing kernel-doc for cqm_rssi_work + - wifi: mac80211: fix mesh id corruption on 32 bit systems + - wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet + - HID: nvidia-shield: add LEDS_CLASS dependency + - erofs: allow empty device tags in flatdev mode + - s390/bpf: Let arch_prepare_bpf_trampoline return program size + - leds: Drop BUG_ON check for LED_COLOR_ID_MULTI + - bpf: Fix tr dereferencing + - bpf: unconditionally reset backtrack_state masks on global func exit + - regulator: mt6358: split ops for buck and linear range LDO regulators + - Bluetooth: Delete unused hci_req_prepare_suspend() declaration + - Bluetooth: Fix hci_link_tx_to RCU lock usage + - Bluetooth: ISO: Fix handling of listen for unicast + - drivers/net: process the result of hdlc_open() and add call of hdlc_close() + in uhdlc_close() + - wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling + - perf/x86/amd/core: Fix overflow reset on hotplug + - rtla/timerlat: Do not stop user-space if a cpu is offline + - regmap: rbtree: Fix wrong register marked as in-cache when creating new node + - wifi: mac80211: fix potential key use-after-free + - perf/x86/amd: Do not WARN() on every IRQ + - iommu/mediatek: Fix share pgtable for iova over 4GB + - wifi: mac80211: Create resources for disabled links + - regulator/core: regulator_register: set device->class earlier + - ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_BLACKLIST_KEYRING + - wifi: iwlwifi: mvm: Fix incorrect usage of scan API + - scsi: target: core: Fix deadlock due to recursive locking + - ima: rework CONFIG_IMA dependency block + - NFSv4: Fix a nfs4_state_manager() race + - ice: always add legacy 32byte RXDID in supported_rxdids + - bpf: tcp_read_skb needs to pop skb regardless of seq + - bpf, sockmap: Do not inc copied_seq when PEEK flag set + - bpf, sockmap: Reject sk_msg egress redirects to non-TCP sockets + - modpost: add missing else to the "of" check + - net: stmmac: platform: fix the incorrect parameter + - net: fix possible store tearing in neigh_periodic_work() + - neighbour: fix data-races around n->output + - ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data() + - ptp: ocp: Fix error handling in ptp_ocp_device_init + - net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent + - ovl: move freeing ovl_entry past rcu delay + - ovl: fetch inode once in ovl_dentry_revalidate_common() + - ipv6: tcp: add a missing nf_reset_ct() in 3WHS handling + - net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg + - ethtool: plca: fix plca enable data type while parsing the value + - net: nfc: llcp: Add lock when modifying device list + - net: renesas: rswitch: Add spin lock protection for irq {un}mask + - rswitch: Fix PHY station management clock setting + - net: ethernet: ti: am65-cpsw: Fix error code in + am65_cpsw_nuss_init_tx_chns() + - ibmveth: Remove condition to recompute TCP header checksum. + - netfilter: nft_payload: rebuild vlan header on h_proto access + - netfilter: handle the connecting collision properly in + nf_conntrack_proto_sctp + - selftests: netfilter: Test nf_tables audit logging + - selftests: netfilter: Extend nft_audit.sh + - netfilter: nf_tables: Deduplicate nft_register_obj audit logs + - netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure + - ipv4: Set offload_failed flag in fibmatch results + - net: stmmac: dwmac-stm32: fix resume on STM32 MCU + - tipc: fix a potential deadlock on &tx->lock + - tcp: fix quick-ack counting to count actual ACKs of new data + - tcp: fix delayed ACKs for MSS boundary condition + - sctp: update transport state when processing a dupcook packet + - sctp: update hb timer immediately after users change hb_interval + - netlink: annotate data-races around sk->sk_err + - net: mana: Fix the tso_bytes calculation + - net: mana: Fix oversized sge0 for GSO packets + - HID: nvidia-shield: Fix a missing led_classdev_unregister() in the probe + error handling path + - HID: sony: remove duplicate NULL check before calling usb_free_urb() + - HID: intel-ish-hid: ipc: Disable and reenable ACPI GPE bit + - net: lan743x: also select PHYLIB + - parisc: Restore __ldcw_align for PA-RISC 2.0 processors + - smb: use kernel_connect() and kernel_bind() + - parisc: Fix crash with nr_cpus=1 option + - dm zoned: free dmz->ddev array in dmz_put_zoned_devices + - RDMA/core: Require admin capabilities to set system parameters + - of: dynamic: Fix potential memory leak in of_changeset_action() + - IB/mlx4: Fix the size of a buffer in add_port_entries() + - gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config() + - gpio: pxa: disable pinctrl calls for MMP_GPIO + - RDMA/cma: Initialize ib_sa_multicast structure to 0 when join + - RDMA/cma: Fix truncation compilation warning in make_cma_ports + - RDMA/bnxt_re: Fix the handling of control path response data + - RDMA/uverbs: Fix typo of sizeof argument + - RDMA/srp: Do not call scsi_done() from srp_abort() + - RDMA/siw: Fix connection failure handling + - RDMA/mlx5: Fix mkey cache possible deadlock on cleanup + - RDMA/mlx5: Fix assigning access flags to cache mkeys + - RDMA/mlx5: Fix mutex unlocking on error flow for steering anchor creation + - RDMA/mlx5: Fix NULL string error + - x86/sev: Change npages to unsigned long in snp_accept_memory() + - x86/sev: Use the GHCB protocol when available for SNP CPUID requests + - ksmbd: fix race condition between session lookup and expire + - ksmbd: fix uaf in smb20_oplock_break_ack + - ksmbd: fix race condition from parallel smb2 lock requests + - RDMA/mlx5: Remove not-used cache disable flag + - Linux 6.5.7 + * Mantic update: v6.5.7 upstream stable release (LP: #2045806) // + CVE-2023-34324 + - xen/events: replace evtchn_rwlock with RCU + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6531 + - io_uring/af_unix: disable sending io_uring over sockets + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * Avoid using damage rectangle under hardware rotation mode when PSR is + enabled (LP: #2045958) + - drm/amd/display: fix hw rotated modes when PSR-SU is enabled + * CVE-2023-46813 + - x86/sev: Disable MMIO emulation from user mode + - x86/sev: Check IOBM for IOIO exceptions from user-space + - x86/sev: Check for user-space IOIO pointing to kernel space + * CVE-2023-6111 + - netfilter: nf_tables: remove catchall element in GC sync path + * CVE-2023-5972 + - nf_tables: fix NULL pointer dereference in nft_inner_init() + - nf_tables: fix NULL pointer dereference in nft_expr_inner_parse() + * Orchid Bay MLK2/Maya Bay MLK soundwire support (LP: #2042090) + - ASoC: Intel: soc-acpi-intel-mtl-match: add rt713 rt1316 config + - ASoC: Intel: sof_sdw_rt_sdca_jack_common: add rt713 support + - ASoC: Intel: sof_sdw_rt712_sdca: construct cards->components by name_prefix + - ASoC: Intel: soc-acpi: rt713+rt1316, no sdw-dmic config + * Build failure if run in a console (LP: #2044512) + - [Packaging] Fix kernel module compression failures + * Fix system suspend problem for Cirrus CS35L41 HDA codec on HP ZBook Fury 16 + G9 (LP: #2042060) + - ALSA: hda: cs35l41: Override the _DSD for HP Zbook Fury 17 G9 to correct + boost type + - ALSA: hda: cs35l41: Use reset label to get GPIO for HP Zbook Fury 17 G9 + - ALSA: hda: cs35l41: Assert reset before system suspend + - ALSA: hda: cs35l41: Assert Reset prior to de-asserting in probe and system + resume + - ALSA: hda: cs35l41: Run boot process during resume callbacks + - ALSA: hda: cs35l41: Force a software reset after hardware reset + - ALSA: hda: cs35l41: Do not unload firmware before reset in system suspend + - ALSA: hda: cs35l41: Check CSPL state after loading firmware + - ASoC: cs35l41: Detect CSPL errors when sending CSPL commands + * Support speaker mute hotkey for Cirrus CS35L41 HDA codec (LP: #2039151) + - ALSA: hda: cs35l41: Support systems with missing _DSD properties + - ALSA: hda: cs35l41: Fix the loop check in cs35l41_add_dsd_properties + - ALSA: hda: cs35l41: Add notification support into component binding + - ALSA: hda/realtek: Support ACPI Notification framework via component binding + - ALSA: hda: cs35l41: Support mute notifications for CS35L41 HDA + - ALSA: hda: cs35l41: Add read-only ALSA control for forced mute + * Add SoF topology support on Intel RaptorLake DELL SKU 0C11 (LP: #2038263) + - ASoC: Intel: soc-acpi-intel-rpl-match: add rt711-l0-rt1316-l12 support + * Update io_uring to 6.6 (LP: #2043730) + - fs: create kiocb_{start,end}_write() helpers + - fs: add IOCB flags related to passing back dio completions + - io_uring/poll: always set 'ctx' in io_cancel_data + - io_uring/timeout: always set 'ctx' in io_cancel_data + - io_uring/cancel: abstract out request match helper + - io_uring/cancel: fix sequence matching for IORING_ASYNC_CANCEL_ANY + - io_uring: use cancelation match helper for poll and timeout requests + - io_uring/cancel: add IORING_ASYNC_CANCEL_USERDATA + - io_uring/cancel: support opcode based lookup and cancelation + - io_uring/cancel: wire up IORING_ASYNC_CANCEL_OP for sync cancel + - io_uring/rw: add write support for IOCB_DIO_CALLER_COMP + - io_uring: Add io_uring command support for sockets + - io_uring/rsrc: Remove unused declaration io_rsrc_put_tw() + - io_uring: cleanup 'ret' handling in io_iopoll_check() + - io_uring/fdinfo: get rid of ref tryget + - io_uring/splice: use fput() directly + - io_uring: have io_file_put() take an io_kiocb rather than the file + - io_uring: remove unnecessary forward declaration + - io_uring/io-wq: don't grab wq->lock for worker activation + - io_uring/io-wq: reduce frequency of acct->lock acquisitions + - io_uring/io-wq: don't gate worker wake up success on wake_up_process() + - io_uring: open code io_fill_cqe_req() + - io_uring: remove return from io_req_cqe_overflow() + - io_uring: never overflow io_aux_cqe + - io_uring/rsrc: keep one global dummy_ubuf + - io_uring: simplify io_run_task_work_sig return + - io_uring/rsrc: Annotate struct io_mapped_ubuf with __counted_by + - io_uring: rename kiocb_end_write() local helper + - io_uring: use kiocb_{start,end}_write() helpers + - io_uring: stop calling free_compound_page() + - io_uring: improve cqe !tracing hot path + - io_uring: cqe init hardening + - io_uring: simplify big_cqe handling + - io_uring: refactor __io_get_cqe() + - io_uring: optimise extra io_get_cqe null check + - io_uring: reorder cqring_flush and wakeups + - io_uring: merge iopoll and normal completion paths + - io_uring: force inline io_fill_cqe_req + - io_uring: compact SQ/CQ heads/tails + - io_uring: add option to remove SQ indirection + - io_uring: move non aligned field to the end + - io_uring: banish non-hot data to end of io_ring_ctx + - io_uring: separate task_work/waiting cache line + - io_uring: move multishot cqe cache in ctx + - io_uring: move iopoll ctx fields around + - io_uring: fix IO hang in io_wq_put_and_exit from do_exit() + - io_uring/fdinfo: only print ->sq_array[] if it's there + - io_uring: fix unprotected iopoll overflow + - Revert "io_uring: fix IO hang in io_wq_put_and_exit from do_exit()" + - io_uring/kbuf: don't allow registered buffer rings on highmem pages + - io_uring: ensure io_lockdep_assert_cq_locked() handles disabled rings + - io_uring: don't allow IORING_SETUP_NO_MMAP rings on highmem pages + - io-wq: fully initialize wqe before calling + cpuhp_state_add_instance_nocalls() + - io_uring: fix crash with IORING_SETUP_NO_MMAP and invalid SQ ring address + - io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid + - io_uring/rw: disable IOCB_DIO_CALLER_COMP + - io_uring: kiocb_done() should *not* trust ->ki_pos if ->{read,write}_iter() + failed + * System hang after unplug/plug DP monitor with AMD W7500 card (LP: #2042912) + - drm/amd/pm: Fix error of MACO flag setting code + * correct cephfs pull request for uidmap support (LP: #2041613) + - Revert "UBUNTU: SAUCE: ceph: BUG if MDS changed truncate_seq with client + caps still outstanding" + - Revert "UBUNTU: SAUCE: ceph: make sure all the files successfully put before + unmounting" + - Revert "UBUNTU: SAUCE: mm: BUG if filemap_alloc_folio gives us a folio with + a non-NULL ->private" + - Revert "UBUNTU: SAUCE: ceph: dump info about cap flushes when we're waiting + too long for them" + - Revert "UBUNTU: SAUCE: rbd: bump RBD_MAX_PARENT_CHAIN_LEN to 128" + * RTL8111EPP: Fix the network lost after resume with DASH (LP: #2043786) + - r8169: add handling DASH when DASH is disabled + - r8169: fix network lost after resume on DASH systems + * kernel BUG: io_uring openat triggers audit reference count underflow + (LP: #2043841) + - audit, io_uring: io_uring openat triggers audit reference count underflow + * Fix ADL: System enabled AHCI can't get into s0ix when attached ODD + (LP: #2037493) + - ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list + * [UBUNTU 23.04] Kernel config option missing for s390x PCI passthrough + (LP: #2042853) + - [Config] CONFIG_VFIO_PCI_ZDEV_KVM=y + * Azure: Fix Azure vendor ID (LP: #2036600) + - SAUCE: (no-up) hv: Fix supply vendor ID + * Mantic update: v6.5.6 upstream stable release (LP: #2044174) + - NFS: Fix error handling for O_DIRECT write scheduling + - NFS: Fix O_DIRECT locking issues + - NFS: More O_DIRECT accounting fixes for error paths + - NFS: Use the correct commit info in nfs_join_page_group() + - NFS: More fixes for nfs_direct_write_reschedule_io() + - NFS/pNFS: Report EINVAL errors from connect() to the server + - SUNRPC: Mark the cred for revalidation if the server rejects it + - NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - NFSv4.1: fix pnfs MDS=DS session trunking + - media: v4l: Use correct dependency for camera sensor drivers + - media: via: Use correct dependency for camera sensor drivers + - gfs2: Fix another freeze/thaw hang + - netfs: Only call folio_start_fscache() one time for each folio + - btrfs: improve error message after failure to add delayed dir index item + - btrfs: remove BUG() after failure to insert delayed dir index item + - ext4: replace the traditional ternary conditional operator with with + max()/min() + - ext4: move setting of trimmed bit into ext4_try_to_trim_range() + - ext4: do not let fstrim block system suspend + - netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention + - netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC + - netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation + fails + - netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration + - netfilter: nf_tables: fix memleak when more than 255 elements expired + - ASoC: meson: spdifin: start hw on dai probe + - netfilter: nf_tables: disallow element removal on anonymous sets + - bpf: Avoid deadlock when using queue and stack maps from NMI + - bpf: Avoid dummy bpf_offload_netdev in __bpf_prog_dev_bound_init + - ALSA: docs: Fix a typo of midi2_ump_probe option for snd-usb-audio + - ALSA: seq: Avoid delivery of events for disabled UMP groups + - ASoC: rt5640: Revert "Fix sleep in atomic context" + - ASoC: rt5640: Fix sleep in atomic context + - ASoC: rt5640: fix typos + - ASoC: rt5640: Do not disable/enable IRQ twice on suspend/resume + - ASoC: rt5640: Enable the IRQ on resume after configuring jack-detect + - ASoC: rt5640: Fix IRQ not being free-ed for HDA jack detect mode + - bpf: Fix a erroneous check after snprintf() + - selftests/bpf: fix unpriv_disabled check in test_verifier + - ALSA: hda/realtek: Splitting the UX3402 into two separate models + - netfilter: conntrack: fix extension size table + - netfilter: nf_tables: Fix entries val in rule reset audit log + - Compiler Attributes: counted_by: Adjust name and identifier expansion + - uapi: stddef.h: Fix header guard location + - uapi: stddef.h: Fix __DECLARE_FLEX_ARRAY for C++ + - memblock tests: Fix compilation errors. + - ASoC: SOF: ipc4-topology: fix wrong sizeof argument + - net: microchip: sparx5: Fix memory leak for + vcap_api_rule_add_keyvalue_test() + - net: microchip: sparx5: Fix memory leak for + vcap_api_rule_add_actionvalue_test() + - net: microchip: sparx5: Fix possible memory leak in + vcap_api_encode_rule_test() + - net: microchip: sparx5: Fix possible memory leaks in + test_vcap_xn_rule_creator() + - net: microchip: sparx5: Fix possible memory leaks in vcap_api_kunit + - selftests: tls: swap the TX and RX sockets in some tests + - net/core: Fix ETH_P_1588 flow dissector + - ALSA: seq: ump: Fix -Wformat-truncation warning + - ASoC: hdaudio.c: Add missing check for devm_kstrdup + - ASoC: imx-audmix: Fix return error with devm_clk_get() + - octeon_ep: fix tx dma unmap len values in SG + - iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set + - ASoC: SOF: core: Only call sof_ops_free() on remove if the probe was + successful + - iavf: add iavf_schedule_aq_request() helper + - iavf: schedule a request immediately after add/delete vlan + - i40e: Fix VF VLAN offloading when port VLAN is configured + - netfilter, bpf: Adjust timeouts of non-confirmed CTs in + bpf_ct_insert_entry() + - ionic: fix 16bit math issue when PAGE_SIZE >= 64KB + - igc: Fix infinite initialization loop with early XDP redirect + - scsi: iscsi_tcp: restrict to TCP sockets + - powerpc/perf/hv-24x7: Update domain value check + - powerpc/dexcr: Move HASHCHK trap handler + - dccp: fix dccp_v4_err()/dccp_v6_err() again + - x86/mm, kexec, ima: Use memblock_free_late() from ima_free_kexec_buffer() + - net: hsr: Properly parse HSRv1 supervisor frames. + - platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() + - platform/x86: intel_scu_ipc: Check status upon timeout in + ipc_wait_for_interrupt() + - platform/x86: intel_scu_ipc: Don't override scu in + intel_scu_ipc_dev_simple_command() + - platform/x86: intel_scu_ipc: Fail IPC send if still busy + - x86/asm: Fix build of UML with KASAN + - x86/srso: Fix srso_show_state() side effect + - x86/srso: Set CPUID feature bits independently of bug or mitigation status + - x86/srso: Don't probe microcode in a guest + - x86/srso: Fix SBPB enablement for spec_rstack_overflow=off + - net: hns3: add cmdq check for vf periodic service task + - net: hns3: fix GRE checksum offload issue + - net: hns3: only enable unicast promisc when mac table full + - net: hns3: fix fail to delete tc flower rules during reset issue + - net: hns3: add 5ms delay before clear firmware reset irq source + - net: bridge: use DEV_STATS_INC() + - team: fix null-ptr-deref when team device type is changed + - net: rds: Fix possible NULL-pointer dereference + - vxlan: Add missing entries to vxlan_get_size() + - netfilter: nf_tables: disable toggling dormant table state more than once + - net: hinic: Fix warning-hinic_set_vlan_fliter() warn: variable dereferenced + before check 'hwdev' + - net/handshake: Fix memory leak in __sock_create() and sock_alloc_file() + - i915/pmu: Move execlist stats initialization to execlist specific setup + - drm/virtio: clean out_fence on complete_submit + - locking/seqlock: Do the lockdep annotation before locking in + do_write_seqcount_begin_nested() + - net: ena: Flush XDP packets on error. + - bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI + - octeontx2-pf: Do xdp_do_flush() after redirects. + - igc: Expose tx-usecs coalesce setting to user + - cxl/region: Match auto-discovered region decoders by HPA range + - proc: nommu: /proc//maps: release mmap read lock + - proc: nommu: fix empty /proc//maps + - cifs: Fix UAF in cifs_demultiplex_thread() + - gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() + - i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() + - i2c: mux: gpio: Add missing fwnode_handle_put() + - i2c: xiic: Correct return value check for xiic_reinit() + - drm/amdgpu: set completion status as preempted for the resubmission + - ASoC: cs35l56: Disable low-power hibernation mode + - drm/amd/display: Update DPG test pattern programming + - drm/amd/display: fix a regression in blank pixel data caused by coding + mistake + - arm64: dts: qcom: sdm845-db845c: Mark cont splash memory region as reserved + - direct_write_fallback(): on error revert the ->ki_pos update from buffered + write + - btrfs: reset destination buffer when read_extent_buffer() gets invalid range + - vfio/mdev: Fix a null-ptr-deref bug for mdev_unregister_parent() + - MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled + - spi: spi-gxp: BUG: Correct spi write return value + - bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() + - bus: ti-sysc: Fix missing AM35xx SoC matching + - firmware: arm_scmi: Harden perf domain info access + - firmware: arm_scmi: Fixup perf power-cost/microwatt support + - power: supply: mt6370: Fix missing error code in mt6370_chg_toggle_cfo() + - clk: sprd: Fix thm_parents incorrect configuration + - clk: si521xx: Use REGCACHE_FLAT instead of NONE + - clk: si521xx: Fix regmap write accessor + - clk: tegra: fix error return case for recalc_rate + - ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 + - ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot + - bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up + - swiotlb: use the calculated number of areas + - power: supply: ucs1002: fix error code in ucs1002_get_property() + - power: supply: rt9467: Fix rt9467_run_aicl() + - power: supply: core: fix use after free in uevent + - firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() + - xtensa: add default definition for XCHAL_HAVE_DIV32 + - xtensa: iss/network: make functions static + - xtensa: boot: don't add include-dirs + - xtensa: umulsidi3: fix conditional expression + - xtensa: boot/lib: fix function prototypes + - power: supply: rk817: Fix node refcount leak + - powerpc/stacktrace: Fix arch_stack_walk_reliable() + - selftests/powerpc: Fix emit_tests to work with run_kselftest.sh + - arm64: dts: imx8mp: Fix SDMA2/3 clocks + - arm64: dts: imx8mp-beacon-kit: Fix audio_pll2 clock + - soc: imx8m: Enable OCOTP clock for imx8mm before reading registers + - arm64: dts: imx8mm-evk: Fix hdmi@3d node + - arm64: dts: imx: Add imx8mm-prt8mm.dtb to build + - firmware: arm_ffa: Don't set the memory region attributes for MEM_LEND + - i915/guc: Get runtime pm in busyness worker only if already active + - accel/ivpu: Do not use wait event interruptible + - gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip + - i2c: npcm7xx: Fix callback completion ordering + - NFSD: Fix zero NFSv4 READ results when RQ_SPLICE_OK is not set + - x86/reboot: VMCLEAR active VMCSes before emergency reboot + - dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock + - bpf: Annotate bpf_long_memcpy with data_race + - ASoC: amd: yc: Add DMI entries to support Victus by HP Gaming Laptop + 15-fb0xxx (8A3E) + - spi: sun6i: reduce DMA RX transfer width to single byte + - spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain + - nvme-fc: Prevent null pointer dereference in nvme_fc_io_getuuid() + - parisc: sba: Fix compile warning wrt list of SBA devices + - parisc: sba-iommu: Fix sparse warnigs + - parisc: ccio-dma: Fix sparse warnings + - parisc: iosapic.c: Fix sparse warnings + - parisc: drivers: Fix sparse warning + - parisc: irq: Make irq_stack_union static to avoid sparse warning + - scsi: qedf: Add synchronization between I/O completions and abort + - scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock + - scsi: ufs: core: Poll HCS.UCRDY before issuing a UIC command + - selftests/ftrace: Correctly enable event in instance-event.tc + - ring-buffer: Avoid softlockup in ring_buffer_resize() + - btrfs: assert delayed node locked when removing delayed item + - selftests: fix dependency checker script + - ring-buffer: Do not attempt to read past "commit" + - net/smc: bugfix for smcr v2 server connect success statistic + - ata: sata_mv: Fix incorrect string length computation in mv_dump_mem() + - efi/x86: Ensure that EFI_RUNTIME_MAP is enabled for kexec + - platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig + - platform/x86: asus-wmi: Support 2023 ROG X16 tablet mode + - thermal/of: add missing of_node_put() + - drm/amdgpu: Store CU info from all XCCs for GFX v9.4.3 + - drm/amdkfd: Update cache info reporting for GFX v9.4.3 + - drm/amdkfd: Update CU masking for GFX 9.4.3 + - drm/amd/display: Don't check registers, if using AUX BL control + - drm/amdgpu/soc21: don't remap HDP registers for SR-IOV + - drm/amdgpu/nbio4.3: set proper rmmio_remap.reg_offset for SR-IOV + - drm/amdgpu: fallback to old RAS error message for aqua_vanjaram + - drm/amdkfd: Checkpoint and restore queues on GFX11 + - drm/amdgpu: Handle null atom context in VBIOS info ioctl + - objtool: Fix _THIS_IP_ detection for cold functions + - nvme-pci: do not set the NUMA node of device if it has none + - riscv: errata: fix T-Head dcache.cva encoding + - scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command + - scsi: pm80xx: Avoid leaking tags when processing + OPC_INB_SET_CONTROLLER_CONFIG command + - smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP + - ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() + - ata: libata-eh: do not thaw the port twice in ata_eh_reset() + - Add DMI ID for MSI Bravo 15 B7ED + - spi: nxp-fspi: reset the FLSHxCR1 registers + - spi: stm32: add a delay before SPI disable + - ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag + - spi: intel-pci: Add support for Granite Rapids SPI serial flash + - bpf: Clarify error expectations from bpf_clone_redirect + - ASoC: rt5640: Only cancel jack-detect work on suspend if active + - ALSA: hda: intel-sdw-acpi: Use u8 type for link index + - ASoC: cs42l42: Ensure a reset pulse meets minimum pulse width. + - ASoC: cs42l42: Don't rely on GPIOD_OUT_LOW to set RESET initially low + - ASoC: cs42l42: Avoid stale SoundWire ATTACH after hard reset + - firmware: cirrus: cs_dsp: Only log list of algorithms in debug build + - ASoC: wm_adsp: Fix missing locking in wm_adsp_[read|write]_ctl() + - memblock tests: fix warning: "__ALIGN_KERNEL" redefined + - memblock tests: fix warning ‘struct seq_file’ declared inside parameter list + - ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link + - ASoC: SOF: sof-audio: Fix DSP core put imbalance on widget setup failure + - media: vb2: frame_vector.c: replace WARN_ONCE with a comment + - NFSv4.1: fix zero value filehandle in post open getattr + - ASoC: SOF: Intel: MTL: Reduce the DSP init timeout + - powerpc/watchpoints: Disable preemption in thread_change_pc() + - powerpc/watchpoint: Disable pagefaults when getting user instruction + - powerpc/watchpoints: Annotate atomic context in more places + - ncsi: Propagate carrier gain/loss events to the NCSI controller + - net: hsr: Add __packed to struct hsr_sup_tlv. + - tsnep: Fix NAPI scheduling + - tsnep: Fix ethtool channels + - tsnep: Fix NAPI polling with budget 0 + - gfs2: fix glock shrinker ref issues + - i2c: designware: fix __i2c_dw_disable() in case master is holding SCL low + - LoongArch: Use _UL() and _ULL() + - LoongArch: Set all reserved memblocks on Node#0 at initialization + - fbdev/sh7760fb: Depend on FB=y + - perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 + - ASoC: cs35l56: Call pm_runtime_dont_use_autosuspend() + - iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range + - spi: zynqmp-gqspi: fix clock imbalance on probe failure + - x86/sgx: Resolves SECS reclaim vs. page fault for EAUG race + - x86/srso: Add SRSO mitigation for Hygon processors + - KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway + - KVM: SVM: Fix TSC_AUX virtualization setup + - KVM: x86/mmu: Open code leaf invalidation from mmu_notifier + - KVM: x86/mmu: Do not filter address spaces in + for_each_tdp_mmu_root_yield_safe() + - KVM: x86/mmu: Stop zapping invalidated TDP MMU roots asynchronously + - mptcp: fix bogus receive window shrinkage with multiple subflows + - mptcp: move __mptcp_error_report in protocol.c + - mptcp: process pending subflow error on close + - Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" + - scsi: core: ata: Do no try to probe for CDL on old drives + - serial: 8250_port: Check IRQ data before use + - nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() + - crypto: sm2 - Fix crash caused by uninitialized context + - ALSA: rawmidi: Fix NULL dereference at proc read + - ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre + M70q + - LoongArch: Fix lockdep static memory detection + - LoongArch: Define relocation types for ABI v2.10 + - LoongArch: numa: Fix high_memory calculation + - LoongArch: Add support for 32_PCREL relocation type + - LoongArch: Add support for 64_PCREL relocation type + - ata: libata-scsi: link ata port and scsi device + - scsi: sd: Differentiate system and runtime start/stop management + - scsi: sd: Do not issue commands to suspended disks on shutdown + - ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES + - io_uring/fs: remove sqe->rw_flags checking from LINKAT + - i2c: i801: unregister tco_pdev in i801_probe() error path + - ASoC: amd: yc: Fix non-functional mic on Lenovo 82QF and 82UG + - kernel/sched: Modify initial boot task idle setup + - sched/rt: Fix live lock between select_fallback_rq() and RT push + - Revert "SUNRPC dont update timeout value on connection reset" + - NFSv4: Fix a state manager thread deadlock regression + - ACPI: NFIT: Fix incorrect calculation of idt size + - timers: Tag (hr)timer softirq as hotplug safe + - drm/tests: Fix incorrect argument in drm_test_mm_insert_range + - cxl/mbox: Fix CEL logic for poison and security commands + - arm64: defconfig: remove CONFIG_COMMON_CLK_NPCM8XX=y + - mm/damon/vaddr-test: fix memory leak in damon_do_test_apply_three_regions() + - selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and + hugetlb_reparenting_test.sh that may cause error + - mm: mempolicy: keep VMA walk if both MPOL_MF_STRICT and MPOL_MF_MOVE are + specified + - mm/slab_common: fix slab_caches list corruption after kmem_cache_destroy() + - mm: page_alloc: fix CMA and HIGHATOMIC landing on the wrong buddy list + - mm: memcontrol: fix GFP_NOFS recursion in memory.high enforcement + - cxl/port: Fix cxl_test register enumeration regression + - cxl/pci: Fix appropriate checking for _OSC while handling CXL RAS registers + - ring-buffer: Fix bytes info in per_cpu buffer stats + - ring-buffer: Update "shortest_full" in polling + - btrfs: refresh dir last index during a rewinddir(3) call + - btrfs: file_remove_privs needs an exclusive lock in direct io write + - btrfs: set last dir index to the current last index when opening dir + - btrfs: fix race between reading a directory and adding entries to it + - btrfs: properly report 0 avail for very full file systems + - media: uvcvideo: Fix OOB read + - bpf: Add override check to kprobe multi link attach + - bpf: Fix BTF_ID symbol generation collision + - bpf: Fix BTF_ID symbol generation collision in tools/ + - net: thunderbolt: Fix TCPv6 GSO checksum calculation + - thermal: sysfs: Fix trip_point_hyst_store() + - tracing/user_events: Align set_bit() address for all archs + - ata: libata-core: Fix ata_port_request_pm() locking + - ata: libata-core: Fix port and device removal + - ata: libata-core: Do not register PM operations for SAS ports + - ata: libata-sata: increase PMP SRST timeout to 10s + - i915: Limit the length of an sg list to the requested length + - drm/i915/gt: Fix reservation address in ggtt_reserve_guc_top + - power: supply: rk817: Add missing module alias + - power: supply: ab8500: Set typing and props + - fs: binfmt_elf_efpic: fix personality for ELF-FDPIC + - drm/amdkfd: Use gpu_offset for user queue's wptr + - drm/amd/display: fix the ability to use lower resolution modes on eDP + - drm/meson: fix memory leak on ->hpd_notify callback + - rbd: move rbd_dev_refresh() definition + - rbd: decouple header read-in from updating rbd_dev->header + - rbd: decouple parent info read-in from updating rbd_dev + - rbd: take header_rwsem in rbd_dev_refresh() only when updating + - memcg: drop kmem.limit_in_bytes + - mm, memcg: reconsider kmem.limit_in_bytes deprecation + - ASoC: amd: yc: Fix a non-functional mic on Lenovo 82TL + - Linux 6.5.6 + * Mantic update: v6.5.5 upstream stable release (LP: #2043416) + - iomap: Fix possible overflow condition in iomap_write_delalloc_scan + - autofs: fix memory leak of waitqueues in autofs_catatonic_mode + - btrfs: handle errors properly in update_inline_extent_backref() + - btrfs: output extra debug info if we failed to find an inline backref + - locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock + - ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer + - kernel/fork: beware of __put_task_struct() calling context + - rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to + _idle() + - scftorture: Forgive memory-allocation failure if KASAN + - ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 + - platform/chrome: cros_ec_lpc: Remove EC panic shutdown timeout + - x86/amd_nb: Add PCI IDs for AMD Family 1Ah-based models + - perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09 + - s390/boot: cleanup number of page table levels setup + - kselftest/arm64: fix a memleak in zt_regs_run() + - perf/imx_ddr: speed up overflow frequency of cycle + - ACPI: video: Add backlight=native DMI quirk for Apple iMac12,1 and iMac12,2 + - hw_breakpoint: fix single-stepping when using bpf_overflow_handler + - ACPI: x86: s2idle: Catch multiple ACPI_TYPE_PACKAGE objects + - selftests/nolibc: fix up kernel parameters support + - selftests/nolibc: prevent out of bounds access in expect_vfprintf + - spi: sun6i: add quirk for dual and quad SPI modes support + - devlink: remove reload failed checks in params get/set callbacks + - crypto: lrw,xts - Replace strlcpy with strscpy + - ice: Don't tx before switchdev is fully configured + - wifi: ath9k: fix fortify warnings + - wifi: ath9k: fix printk specifier + - wifi: rtw88: delete timer and free skb queue when unloading + - wifi: mwifiex: fix fortify warning + - mt76: mt7921: don't assume adequate headroom for SDIO headers + - wifi: wil6210: fix fortify warnings + - can: sun4i_can: Add acceptance register quirk + - can: sun4i_can: Add support for the Allwinner D1 + - [Config] updateconfigs for CAN_SUN4I + - net: Use sockaddr_storage for getsockopt(SO_PEERNAME). + - wifi: ath12k: Fix a NULL pointer dereference in ath12k_mac_op_hw_scan() + - wifi: ath12k: avoid array overflow of hw mode for preferred_hw_mode + - net/ipv4: return the real errno instead of -EINVAL + - crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui() + - Bluetooth: btusb: Add device 0489:e0f5 as MT7922 device + - Bluetooth: btusb: Add a new VID/PID 0489/e0f6 for MT7922 + - Bluetooth: btusb: Add new VID/PID 0489/e102 for MT7922 + - Bluetooth: btusb: Add new VID/PID 04ca/3804 for MT7922 + - Bluetooth: Fix hci_suspend_sync crash + - Bluetooth: btusb: Add support for another MediaTek 7922 VID/PID + - netlink: convert nlk->flags to atomic flags + - tpm_tis: Resend command to recover from data transfer errors + - mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450 + - alx: fix OOB-read compiler warning + - wifi: iwlwifi: pcie: avoid a warning in case prepare card failed + - wifi: mac80211: check S1G action frame size + - netfilter: ebtables: fix fortify warnings in size_entry_mwt() + - wifi: cfg80211: reject auth/assoc to AP with our address + - wifi: cfg80211: ocb: don't leave if not joined + - wifi: mac80211: check for station first in client probe + - wifi: mac80211_hwsim: drop short frames + - Revert "wifi: mac80211_hwsim: check the return value of nla_put_u32" + - libbpf: Free btf_vmlinux when closing bpf_object + - wifi: ath12k: Fix memory leak in rx_desc and tx_desc + - wifi: ath12k: add check max message length while scanning with extraie + - Fix nomenclature for USB and PCI wireless devices + - bpf: Consider non-owning refs trusted + - bpf: Consider non-owning refs to refcounted nodes RCU protected + - drm/bridge: tc358762: Instruct DSI host to generate HSE packets + - drm/edid: Add quirk for OSVR HDK 2.0 + - drm: bridge: samsung-dsim: Drain command transfer FIFO before transfer + - arm64: dts: qcom: sm6125-pdx201: correct ramoops pmsg-size + - arm64: dts: qcom: sm6125-sprout: correct ramoops pmsg-size + - arm64: dts: qcom: sm6350: correct ramoops pmsg-size + - arm64: dts: qcom: sm8150-kumano: correct ramoops pmsg-size + - arm64: dts: qcom: sm8250-edo: correct ramoops pmsg-size + - drm/amdgpu: Increase soft IH ring size + - samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000' + - drm/amdgpu: Update ring scheduler info as needed + - drm/amd/display: Fix underflow issue on 175hz timing + - ASoC: SOF: topology: simplify code to prevent static analysis warnings + - ASoC: Intel: sof_sdw: Update BT offload config for soundwire config + - ALSA: hda: intel-dsp-cfg: add LunarLake support + - drm/amd/display: Use DTBCLK as refclk instead of DPREFCLK + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN31 + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN314 + - drm/amd/display: Use max memclk variable when setting max memclk + - drm/msm/adreno: Use quirk identify hw_apriv + - drm/msm/adreno: Use quirk to identify cached-coherent support + - drm/exynos: fix a possible null-pointer dereference due to data race in + exynos_drm_crtc_atomic_disable() + - io_uring: annotate the struct io_kiocb slab for appropriate user copy + - drm/mediatek: dp: Change logging to dev for mtk_dp_aux_transfer() + - bus: ti-sysc: Configure uart quirks for k3 SoC + - arm64: dts: qcom: sc8280xp-x13s: Add camera activity LED + - md: raid1: fix potential OOB in raid1_remove_disk() + - ext2: fix datatype of block number in ext2_xattr_set2() + - blk-mq: fix tags leak when shrink nr_hw_queues + - ASoC: SOF: amd: clear panic mask status when panic occurs + - x86: bring back rep movsq for user access on CPUs without ERMS + - fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount() + - jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount + - ext4: add two helper functions extent_logical_end() and pa_logical_end() + - ext4: avoid overlapping preallocations due to overflow + - PCI: dwc: Provide deinit callback for i.MX + - ARM: 9317/1: kexec: Make smp stop calls asynchronous + - powerpc/pseries: fix possible memory leak in ibmebus_bus_init() + - PCI: vmd: Disable bridge window for domain reset + - PCI: fu740: Set the number of MSI vectors + - media: mdp3: Fix resource leaks in of_find_device_by_node + - media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer + - media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer() + - media: af9005: Fix null-ptr-deref in af9005_i2c_xfer + - media: anysee: fix null-ptr-deref in anysee_master_xfer + - media: az6007: Fix null-ptr-deref in az6007_i2c_xfer() + - media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer + - scsi: lpfc: Abort outstanding ELS cmds when mailbox timeout error is + detected + - media: tuners: qt1010: replace BUG_ON with a regular error + - media: pci: cx23885: replace BUG with error return + - usb: cdns3: Put the cdns set active part outside the spin lock + - usb: typec: intel_pmc_mux: Add new ACPI ID for Lunar Lake IOM device + - usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc + - tools: iio: iio_generic_buffer: Fix some integer type and calculation + - scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show() + - serial: cpm_uart: Avoid suspicious locking + - misc: open-dice: make OPEN_DICE depend on HAS_IOMEM + - usb: dwc3: dwc3-octeon: Verify clock divider + - usb: ehci: add workaround for chipidea PORTSC.PEC bug + - usb: chipidea: add workaround for chipidea PEC bug + - media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning + - kobject: Add sanity check for kset->kobj.ktype in kset_register() + - interconnect: Fix locking for runpm vs reclaim + - usb: typec: qcom-pmic-typec: register drm_bridge + - printk: Reduce console_unblank() usage in unsafe scenarios + - printk: Keep non-panic-CPUs out of console lock + - printk: Do not take console lock for console_flush_on_panic() + - printk: Consolidate console deferred printing + - printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() + - ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow + - btrfs: introduce struct to consolidate extent buffer write context + - btrfs: zoned: introduce block group context to btrfs_eb_write_context + - btrfs: zoned: return int from btrfs_check_meta_write_pointer + - btrfs: zoned: defer advancing meta write pointer + - btrfs: zoned: activate metadata block group on write time + - mtd: spi-nor: spansion: use CLPEF as an alternative to CLSR + - mtd: spi-nor: spansion: preserve CFR2V[7] when writing MEMLAT + - btrfs: add a helper to read the superblock metadata_uuid + - btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super + - nvmet-tcp: pass iov_len instead of sg->length to bvec_set_page() + - drm: gm12u320: Fix the timeout usage for usb_bulk_msg() + - scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir() + - md: don't dereference mddev after export_rdev() + - md: fix warning for holder mismatch from export_rdev() + - efivarfs: fix statfs() on efivarfs + - PM: hibernate: Fix the exclusive get block device in test_resume mode + - selftests: tracing: Fix to unmount tracefs for recovering environment + - x86/ibt: Suppress spurious ENDBR + - x86/ibt: Avoid duplicate ENDBR in __put_user_nocheck*() + - riscv: kexec: Align the kexeced kernel entry + - x86/sched: Restore the SD_ASYM_PACKING flag in the DIE domain + - scsi: target: core: Fix target_cmd_counter leak + - scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - panic: Reenable preemption in WARN slowpath + - ata: libata-core: fetch sense data for successful commands iff CDL enabled + - x86/boot/compressed: Reserve more memory for page tables + - x86/purgatory: Remove LTO flags + - samples/hw_breakpoint: fix building without module unloading + - blk-mq: prealloc tags when increase tagset nr_hw_queues + - blk-mq: fix tags UAF when shrinking q->nr_hw_queues + - md/raid1: fix error: ISO C90 forbids mixed declarations + - Revert "SUNRPC: Fail faster on bad verifier" + - attr: block mode changes of symlinks + - ovl: fix failed copyup of fileattr on a symlink + - ovl: fix incorrect fdput() on aio completion + - io_uring/net: fix iter retargeting for selected buf + - x86/platform/uv: Use alternate source for socket to node data + - Revert "firewire: core: obsolete usage of GFP_ATOMIC at building node tree" + - drm/amd: Make fence wait in suballocator uninterruptible + - Revert "drm/amd: Disable S/G for APUs when 64GB or more host memory" + - dm: don't attempt to queue IO under RCU protection + - dm: fix a race condition in retrieve_deps + - btrfs: fix lockdep splat and potential deadlock after failure running + delayed items + - btrfs: fix a compilation error if DEBUG is defined in btree_dirty_folio + - btrfs: fix race between finishing block group creation and its item update + - btrfs: release path before inode lookup during the ino lookup ioctl + - btrfs: check for BTRFS_FS_ERROR in pending ordered assert + - tracing/synthetic: Fix order of struct trace_dynamic_info + - tracing: Have tracing_max_latency inc the trace array ref count + - tracing: Have event inject files inc the trace array ref count + - tracing/synthetic: Print out u64 values properly + - tracing: Increase trace array ref count on enable and filter files + - tracing: Have current_trace inc the trace array ref count + - tracing: Have option files inc the trace array ref count + - selinux: fix handling of empty opts in selinux_fs_context_submount() + - nfsd: fix change_info in NFSv4 RENAME replies + - tracefs: Add missing lockdown check to tracefs_create_dir() + - i2c: aspeed: Reset the i2c controller when timeout occurs + - ata: libata: disallow dev-initiated LPM transitions to unsupported states + - ata: libahci: clear pending interrupt status + - scsi: megaraid_sas: Fix deadlock on firmware crashdump + - scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() + - scsi: pm8001: Setup IRQs on resume + - Revert "comedi: add HAS_IOPORT dependencies" + - [Config] updateconfigs for COMEDI/HAS_IOPORT deps + - ext4: fix rec_len verify error + - drm/radeon: make fence wait in suballocator uninterrruptable + - drm/i915: Only check eDP HPD when AUX CH is shared + - drm/amdkfd: Insert missing TLB flush on GFX10 and later + - drm/tests: helpers: Avoid a driver uaf + - drm/amd/display: Adjust the MST resume flow + - drm/amd/display: fix the white screen issue when >= 64GB DRAM + - drm/amd/display: Add DPIA Link Encoder Assignment Fix + - drm/amd/display: Fix 2nd DPIA encoder Assignment + - Revert "memcg: drop kmem.limit_in_bytes" + - drm/amdgpu: fix amdgpu_cs_p1_user_fence + - interconnect: Teach lockdep about icc_bw_lock order + - x86/alternatives: Remove faulty optimization + - x86,static_call: Fix static-call vs return-thunk + - Linux 6.5.5 + * Could not probe Samsung P44 30S3 PM9C1a SSD correctly: nvme nvme0: Device + not ready: aborting installation, CSTS=0x0 (LP: #2041495) // Mantic update: + v6.5.5 upstream stable release (LP: #2043416) + - nvme: avoid bogus CRTO values + * Mantic update: v6.5.4 upstream stable release (LP: #2041999) + - net/ipv6: SKB symmetric hash should incorporate transport ports + - drm/virtio: Conditionally allocate virtio_gpu_fence + - scsi: ufs: core: Add advanced RPMB support where UFSHCI 4.0 does not support + EHS length in UTRD + - scsi: qla2xxx: Adjust IOCB resource on qpair create + - scsi: qla2xxx: Limit TMF to 8 per function + - scsi: qla2xxx: Fix deletion race condition + - scsi: qla2xxx: fix inconsistent TMF timeout + - scsi: qla2xxx: Fix command flush during TMF + - scsi: qla2xxx: Fix erroneous link up failure + - scsi: qla2xxx: Turn off noisy message log + - scsi: qla2xxx: Fix session hang in gnl + - scsi: qla2xxx: Fix TMF leak through + - scsi: qla2xxx: Remove unsupported ql2xenabledif option + - scsi: qla2xxx: Flush mailbox commands on chip reset + - scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit() + - scsi: qla2xxx: Error code did not return to upper layer + - scsi: qla2xxx: Fix firmware resource tracking + - null_blk: fix poll request timeout handling + - kernfs: fix missing kernfs_iattr_rwsem locking + - fbdev/ep93xx-fb: Do not assign to struct fb_info.dev + - clk: qcom: camcc-sc7180: fix async resume during probe + - drm/ast: Fix DRAM init on AST2200 + - ASoC: tegra: Fix SFC conversion for few rates + - ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size + - arm64: tegra: Update AHUB clock parent and rate on Tegra234 + - arm64: tegra: Update AHUB clock parent and rate + - clk: qcom: turingcc-qcs404: fix missing resume during probe + - ARM: dts: qcom: msm8974pro-castor: correct inverted X of touchscreen + - arm64: dts: qcom: msm8953-vince: drop duplicated touschreen parent interrupt + - ARM: dts: qcom: msm8974pro-castor: correct touchscreen function names + - ARM: dts: qcom: msm8974pro-castor: correct touchscreen syna,nosleep-mode + - arm64: dts: renesas: rzg2l: Fix txdv-skew-psec typos + - ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 + - send channel sequence number in SMB3 requests after reconnects + - memcg: drop kmem.limit_in_bytes + - mm: hugetlb_vmemmap: fix a race between vmemmap pmd split + - lib/test_meminit: allocate pages up to order MAX_ORDER + - Multi-gen LRU: avoid race in inc_min_seq() + - parisc: led: Fix LAN receive and transmit LEDs + - parisc: led: Reduce CPU overhead for disk & lan LED computation + - cifs: update desired access while requesting for directory lease + - pinctrl: cherryview: fix address_space_handler() argument + - dt-bindings: clock: xlnx,versal-clk: drop select:false + - clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz + - clk: imx: pll14xx: align pdiv with reference manual + - clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock + - soc: qcom: qmi_encdec: Restrict string length in decode + - clk: qcom: dispcc-sm8450: fix runtime PM imbalance on probe errors + - clk: qcom: dispcc-sm8550: fix runtime PM imbalance on probe errors + - clk: qcom: lpasscc-sc7280: fix missing resume during probe + - clk: qcom: q6sstop-qcs404: fix missing resume during probe + - clk: qcom: mss-sc7180: fix missing resume during probe + - NFS: Fix a potential data corruption + - NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + - bus: mhi: host: Skip MHI reset if device is in RDDM + - kbuild: rpm-pkg: define _arch conditionally + - kbuild: do not run depmod for 'make modules_sign' + - kbuild: dummy-tools: make MPROFILE_KERNEL checks work on BE + - tpm_crb: Fix an error handling path in crb_acpi_add() + - gfs2: Switch to wait_event in gfs2_logd + - gfs2: low-memory forced flush fixes + - mailbox: qcom-ipcc: fix incorrect num_chans counting + - kconfig: fix possible buffer overflow + - tools/mm: fix undefined reference to pthread_once + - Input: iqs7222 - configure power mode before triggering ATI + - perf trace: Really free the evsel->priv area + - pwm: atmel-tcb: Harmonize resource allocation order + - pwm: atmel-tcb: Fix resource freeing in error path and remove + - backlight: lp855x: Initialize PWM state on first brightness change + - backlight: gpio_backlight: Drop output GPIO direction check for initial + power state + - perf parse-events: Separate YYABORT and YYNOMEM cases + - perf parse-events: Move instances of YYABORT to YYNOMEM + - perf parse-events: Separate ENOMEM memory handling + - perf parse-events: Additional error reporting + - KVM: SVM: Don't defer NMI unblocking until next exit for SEV-ES guests + - Input: tca6416-keypad - always expect proper IRQ number in i2c client + - Input: tca6416-keypad - fix interrupt enable disbalance + - perf annotate bpf: Don't enclose non-debug code with an assert() + - x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() + - perf script: Print "cgroup" field on the same line as "comm" + - perf bpf-filter: Fix sample flag check with || + - perf dlfilter: Initialize addr_location before passing it to + thread__find_symbol_fb() + - perf dlfilter: Add al_cleanup() + - perf vendor events: Update the JSON/events descriptions for power10 platform + - perf vendor events: Drop some of the JSON/events for power10 platform + - perf vendor events: Drop STORES_PER_INST metric event for power10 platform + - perf vendor events: Move JSON/events to appropriate files for power10 + platform + - perf vendor events: Update metric event names for power10 platform + - perf top: Don't pass an ERR_PTR() directly to perf_session__delete() + - perf lock: Don't pass an ERR_PTR() directly to perf_session__delete() + - watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load + - perf vendor events arm64: Remove L1D_CACHE_LMISS from AmpereOne list + - pwm: lpc32xx: Remove handling of PWM channels + - accel/ivpu: refactor deprecated strncpy + - perf header: Fix missing PMU caps + - i3c: master: svc: Describe member 'saved_regs' + - perf test stat_bpf_counters_cgrp: Fix shellcheck issue about logical + operators + - perf test stat_bpf_counters_cgrp: Enhance perf stat cgroup BPF counter test + - regulator: tps6287x: Fix n_voltages + - selftests/bpf: Fix flaky cgroup_iter_sleepable subtest + - drm/i915: mark requests for GuC virtual engines to avoid use-after-free + - blk-throttle: use calculate_io/bytes_allowed() for throtl_trim_slice() + - blk-throttle: consider 'carryover_ios/bytes' in throtl_trim_slice() + - netfilter: nf_tables: Audit log setelem reset + - netfilter: nf_tables: Audit log rule reset + - smb: propagate error code of extract_sharename() + - net/sched: fq_pie: avoid stalls in fq_pie_timer() + - sctp: annotate data-races around sk->sk_wmem_queued + - ipv4: annotate data-races around fi->fib_dead + - net: read sk->sk_family once in sk_mc_loop() + - net: fib: avoid warn splat in flow dissector + - xsk: Fix xsk_diag use-after-free error during socket cleanup + - drm/i915/gvt: Verify pfn is "valid" before dereferencing "struct page" + - drm/i915/gvt: Put the page reference obtained by KVM's gfn_to_pfn() + - drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt() + - drm/amd/display: fix mode scaling (RMX_.*) + - net/handshake: fix null-ptr-deref in handshake_nl_done_doit() + - net: use sk_forward_alloc_get() in sk_get_meminfo() + - net: annotate data-races around sk->sk_forward_alloc + - mptcp: annotate data-races around msk->rmem_fwd_alloc + - net: annotate data-races around sk->sk_tsflags + - net: annotate data-races around sk->sk_bind_phc + - ipv4: ignore dst hint for multipath routes + - ipv6: ignore dst hint for multipath routes + - selftests/bpf: Fix a CI failure caused by vsock write + - igb: disable virtualization features on 82580 + - gve: fix frag_list chaining + - veth: Fixing transmit return status for dropped packets + - net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr + - net: phy: micrel: Correct bit assignments for phy_device flags + - bpf, sockmap: Fix skb refcnt race after locking changes + - af_unix: Fix msg_controllen test in scm_pidfd_recv() for MSG_CMSG_COMPAT. + - af_unix: Fix data-races around user->unix_inflight. + - af_unix: Fix data-race around unix_tot_inflight. + - af_unix: Fix data-races around sk->sk_shutdown. + - af_unix: Fix data race around sk->sk_err. + - kcm: Destroy mutex in kcm_exit_net() + - octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler + - igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 + - igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80 + - igb: Change IGB_MIN to allow set rx/tx value between 64 and 80 + - s390/zcrypt: don't leak memory if dev_set_name() fails + - regulator: tps6594-regulator: Fix random kernel crash + - idr: fix param name in idr_alloc_cyclic() doc + - ip_tunnels: use DEV_STATS_INC() + - net/mlx5e: Clear mirred devices array if the rule is split + - net/mlx5: Give esw_offloads_load/unload_rep() "mlx5_" prefix + - net/mlx5: Rework devlink port alloc/free into init/cleanup + - net/mlx5: Push devlink port PF/VF init/cleanup calls out of + devlink_port_register/unregister() + - mlx5/core: E-Switch, Create ACL FT for eswitch manager in switchdev mode + - net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and + offload + - net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times + - net: dsa: sja1105: complete tc-cbs offload support on SJA1110 + - net: phylink: fix sphinx complaint about invalid literal + - bpf: Invoke __bpf_prog_exit_sleepable_recur() on recursion in + kern_sys_bpf(). + - bpf: Assign bpf_tramp_run_ctx::saved_run_ctx before recursion check. + - s390/bpf: Pass through tail call counter in trampolines + - bpf: bpf_sk_storage: Fix invalid wait context lockdep report + - bpf: bpf_sk_storage: Fix the missing uncharge in sk_omem_alloc + - netfilter: nf_tables: Unbreak audit log reset + - net: phy: Provide Module 4 KSZ9477 errata (DS80000754C) + - net: hns3: fix tx timeout issue + - net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() + - net: hns3: fix debugfs concurrency issue between kfree buffer and read + - net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue + - net: hns3: fix the port information display when sfp is absent + - net: hns3: remove GSO partial feature bit + - net: enetc: distinguish error from valid pointers in + enetc_fixup_clear_rss_rfs() + - sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() + - sh: push-switch: Reorder cleanup operations to avoid use-after-free bug + - linux/export: fix reference to exported functions for parisc64 + - watchdog: advantech_ec_wdt: fix Kconfig dependencies + - drm/amd/display: Temporary Disable MST DP Colorspace Property + - ARC: atomics: Add compiler barrier to atomic operations... + - clocksource/drivers/arm_arch_timer: Disable timer before programming CVAL + - dmaengine: sh: rz-dmac: Fix destination and source data size setting + - misc: fastrpc: Fix remote heap allocation request + - misc: fastrpc: Fix incorrect DMA mapping unmap request + - jbd2: fix checkpoint cleanup performance regression + - jbd2: check 'jh->b_transaction' before removing it from checkpoint + - jbd2: correct the end of the journal recovery scan range + - ext4: add correct group descriptors and reserved GDT blocks to system zone + - ext4: fix memory leaks in ext4_fname_{setup_filename,prepare_lookup} + - ext4: drop dio overwrite only flag and associated warning + - f2fs: get out of a repeat loop when getting a locked data page + - f2fs: flush inode if atomic file is aborted + - f2fs: avoid false alarm of circular locking + - lib: test_scanf: Add explicit type cast to result initialization in + test_number_prefix() + - hwspinlock: qcom: add missing regmap config for SFPB MMIO implementation + - memcontrol: ensure memcg acquired by id is properly set up + - ata: ahci: Add Elkhart Lake AHCI controller + - ata: pata_falcon: fix IO base selection for Q40 + - ata: sata_gemini: Add missing MODULE_DESCRIPTION + - ata: pata_ftide010: Add missing MODULE_DESCRIPTION + - fuse: nlookup missing decrement in fuse_direntplus_link + - btrfs: zoned: do not zone finish data relocation block group + - btrfs: fix start transaction qgroup rsv double free + - btrfs: free qgroup rsv on io failure + - btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART + - btrfs: set page extent mapped after read_folio in relocate_one_page + - btrfs: zoned: re-enable metadata over-commit for zoned mode + - btrfs: use the correct superblock to compare fsid in btrfs_validate_super + - btrfs: scrub: avoid unnecessary extent tree search preparing stripes + - btrfs: scrub: avoid unnecessary csum tree search preparing stripes + - btrfs: scrub: fix grouping of read IO + - drm/mxsfb: Disable overlay plane in mxsfb_plane_overlay_atomic_disable() + - mtd: rawnand: brcmnand: Fix crash during the panic_write + - mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write + - mtd: spi-nor: Correct flags for Winbond w25q128 + - mtd: rawnand: brcmnand: Fix potential false time out warning + - mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller + - Revert "drm/amd/display: Remove v_startup workaround for dcn3+" + - drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma + - drm/amd/display: limit the v_startup workaround to ASICs older than DCN3.1 + - drm/amd/display: prevent potential division by zero errors + - KVM: VMX: Refresh available regs and IDT vectoring info before NMI handling + - KVM: SVM: Take and hold ir_list_lock when updating vCPU's Physical ID entry + - KVM: SVM: Don't inject #UD if KVM attempts to skip SEV guest insn + - KVM: SVM: Get source vCPUs from source VM for SEV-ES intrahost migration + - KVM: nSVM: Check instead of asserting on nested TSC scaling support + - KVM: nSVM: Load L1's TSC multiplier based on L1 state, not L2 state + - KVM: SVM: Set target pCPU during IRTE update if target vCPU is running + - KVM: SVM: Skip VMSA init in sev_es_init_vmcb() if pointer is NULL + - MIPS: Only fiddle with CHECKFLAGS if `need-compiler' + - MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install' regression + - perf hists browser: Fix hierarchy mode header + - perf build: Update build rule for generated files + - perf test shell stat_bpf_counters: Fix test on Intel + - perf tools: Handle old data in PERF_RECORD_ATTR + - perf build: Include generated header files properly + - perf hists browser: Fix the number of entries for 'e' key + - drm/amd/display: always switch off ODM before committing more streams + - drm/amd/display: Remove wait while locked + - drm/amdkfd: Add missing gfx11 MQD manager callbacks + - drm/amdgpu: register a dirty framebuffer callback for fbcon + - bpf: fix bpf_probe_read_kernel prototype mismatch + - regulator: raa215300: Change the scope of the variables {clkin_name, + xin_name} + - regulator: raa215300: Fix resource leak in case of error + - parisc: sba_iommu: Fix build warning if procfs if disabled + - kunit: Fix wild-memory-access bug in kunit_free_suite_set() + - net: ipv4: fix one memleak in __inet_del_ifa() + - kselftest/runner.sh: Propagate SIGTERM to runner child + - selftests: Keep symlinks, when possible + - selftests/ftrace: Fix dependencies for some of the synthetic event tests + - net: microchip: vcap api: Fix possible memory leak for vcap_dup_rule() + - octeontx2-pf: Fix page pool cache index corruption. + - net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in + smcr_port_add + - net: stmmac: fix handling of zero coalescing tx-usecs + - net: ethernet: mvpp2_main: fix possible OOB write in + mvpp2_ethtool_get_rxnfc() + - net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in + mtk_hwlro_get_fdir_all() + - hsr: Fix uninit-value access in fill_frame_info() + - net: ethernet: adi: adin1110: use eth_broadcast_addr() to assign broadcast + address + - net:ethernet:adi:adin1110: Fix forwarding offload + - net: dsa: sja1105: hide all multicast addresses from "bridge fdb show" + - net: dsa: sja1105: propagate exact error code from + sja1105_dynamic_config_poll_valid() + - net: dsa: sja1105: fix multicast forwarding working only for last added mdb + entry + - net: dsa: sja1105: serialize sja1105_port_mcast_flood() with other FDB + accesses + - net: dsa: sja1105: block FDB accesses that are concurrent with a switch + reset + - r8152: check budget for r8152_poll() + - kcm: Fix memory leak in error path of kcm_sendmsg() + - platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors + - platform/mellanox: mlxbf-tmfifo: Drop jumbo frames + - platform/mellanox: mlxbf-pmc: Fix potential buffer overflows + - platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events + - platform/mellanox: NVSW_SN2201 should depend on ACPI + - [Config] updateconfigs for NVSW_SN2201 + - net: macb: fix sleep inside spinlock + - veth: Update XDP feature set when bringing up device + - ipv6: fix ip6_sock_set_addr_preferences() typo + - tcp: Factorise sk_family-independent comparison in + inet_bind2_bucket_match(_addr_any). + - tcp: Fix bind() regression for v4-mapped-v6 wildcard address. + - tcp: Fix bind() regression for v4-mapped-v6 non-wildcard address. + - selftest: tcp: Fix address length in bind_wildcard.c. + - ixgbe: fix timestamp configuration code + - igb: clean up in all error paths when enabling SR-IOV + - net: renesas: rswitch: Fix unmasking irq condition + - kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg(). + - vm: fix move_vma() memory accounting being off + - drm/amd/display: Fix a bug when searching for insert_above_mpcc + - Linux 6.5.4 + * CVE-2023-6176 + - net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() + + -- Stefan Bader Wed, 17 Jan 2024 11:21:36 +0100 + +linux-oracle-6.5 (6.5.0-1014.14~22.04.1) jammy; urgency=medium + + * jammy/linux-oracle-6.5: 6.5.0-1014.14~22.04.1 -proposed tracker + (LP: #2048541) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/s2023.10.30) + + [ Ubuntu: 6.5.0-1014.14 ] + + * mantic/linux-oracle: 6.5.0-1014.14 -proposed tracker (LP: #2048542) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + * [arm64] Increase max CPU count to 512 (LP: #2046184) + - [Config]: oracle: Increase max CPU count to 512 + * mantic/linux: 6.5.0-15.15 -proposed tracker (LP: #2048549) + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6931 + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + + -- Stefan Bader Mon, 15 Jan 2024 17:36:57 +0100 + linux-oracle-6.5 (6.5.0-1013.13~22.04.4) jammy; urgency=medium * jammy/linux-oracle-6.5: 6.5.0-1013.13~22.04.4 -proposed tracker diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/reconstruct linux-oracle-6.5-6.5.0/debian.oracle-6.5/reconstruct --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/reconstruct +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/reconstruct @@ -1,9 +1,4 @@ # Recreate any symlinks created since the orig. -# Remove any files deleted from the orig. -rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.c' -rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.h' -rm -f 'include/linux/ceph/mdsmap.h' -rm -f 'scripts/is_rust_module.sh' chmod +x 'debian.oracle-6.5/initramfs-tools.d/oracle.hook.in' chmod +x 'debian.oracle-6.5/scripts/helpers/copy-files' chmod +x 'debian.oracle-6.5/scripts/helpers/local-mangle' @@ -23,9 +18,6 @@ chmod +x 'debian/scripts/dkms-build--nvidia-N' chmod +x 'debian/scripts/dkms-build-configure--zfs' chmod +x 'debian/scripts/file-downloader' -chmod +x 'debian/scripts/helpers/close' -chmod +x 'debian/scripts/helpers/open' -chmod +x 'debian/scripts/helpers/rebase' chmod +x 'debian/scripts/link-headers' chmod +x 'debian/scripts/link-lib-rust' chmod +x 'debian/scripts/misc/annotations' @@ -61,4 +53,10 @@ chmod +x 'drivers/watchdog/f71808e_wdt.c' -chmod -x 'scripts/is_rust_module.sh' +chmod +x 'tools/testing/selftests/netfilter/nft_audit.sh' chmod +x 'update-dkms-versions' +# Remove any files deleted from the orig. +rm -f 'arch/parisc/include/asm/mckinley.h' +rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.c' +rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.h' +rm -f 'include/linux/ceph/mdsmap.h' +rm -f 'scripts/is_rust_module.sh' exit 0 diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/rules.d/hooks.mk linux-oracle-6.5-6.5.0/debian.oracle-6.5/rules.d/hooks.mk --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/rules.d/hooks.mk +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/rules.d/hooks.mk @@ -1,31 +1,6 @@ - -do_libc_dev_package = false -do_doc_package = false -do_tools_common = false -do_tools_host = false -do_lib_rust = false -gcc = gcc-11 do_libc_dev_package = false do_doc_package = false do_tools_common = false do_tools_host = false do_lib_rust = false -gcc = gcc-11 -do_libc_dev_package = false -do_doc_package = false -do_tools_common = false -do_tools_host = false -do_lib_rust = false -gcc = gcc-11 -do_libc_dev_package = false -do_doc_package = false -do_tools_common = false -do_tools_host = false -do_lib_rust = false -gcc = gcc-11 -do_libc_dev_package = false -do_doc_package = false -do_tools_common = false -do_tools_host = false -do_lib_rust = false -gcc = gcc-11 +gcc = gcc-11 diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/scripts/helpers/local-mangle linux-oracle-6.5-6.5.0/debian.oracle-6.5/scripts/helpers/local-mangle --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/scripts/helpers/local-mangle +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/scripts/helpers/local-mangle @@ -3,16 +3,28 @@ . debian/debian.env +CONF="${DEBIAN}"/etc/update.conf +if [ -f "${CONF}" ]; then + # shellcheck disable=SC1090 + . "${CONF}" +fi + # Ovveride default GCC version to the default in Jammy GCC="gcc-11" # Override options in rules.d/hooks.mk (normally master does not have this # file but it got added for generic annotations enforcement. +# Currently there is no hooks.mk in ${DEBIAN_MASTER}/rules.d which creates +# an ever growing hooks.mk. Reset the file if there is no origin. +if [ ! -r "${DEBIAN_MASTER}/rules.d/hooks.mk" ]; then + rm -f "${DEBIAN}/rules.d/hooks.mk" + touch "${DEBIAN}/rules.d/hooks.mk" +fi cat <>"${DEBIAN}/rules.d/hooks.mk" do_libc_dev_package = false do_doc_package = false do_tools_common = false do_tools_host = false do_lib_rust = false -gcc = $GCC +gcc = $GCC EOD diff -u linux-oracle-6.5-6.5.0/debian.oracle-6.5/tracking-bug linux-oracle-6.5-6.5.0/debian.oracle-6.5/tracking-bug --- linux-oracle-6.5-6.5.0/debian.oracle-6.5/tracking-bug +++ linux-oracle-6.5-6.5.0/debian.oracle-6.5/tracking-bug @@ -1 +1 @@ -2044275 2023.10.30-4 +2048362 2024.01.08-1 diff -u linux-oracle-6.5-6.5.0/debian.oracle/abi/abiname linux-oracle-6.5-6.5.0/debian.oracle/abi/abiname --- linux-oracle-6.5-6.5.0/debian.oracle/abi/abiname +++ linux-oracle-6.5-6.5.0/debian.oracle/abi/abiname @@ -1 +1 @@ -1012 +1014 diff -u linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle --- linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle +++ linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle @@ -1211,32 +1211,32 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd32c381c drm_gem_vram_plane_helper_prepare_fb EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdd817879 drm_gem_vram_simple_display_pipe_prepare_fb EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf5e6835d drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0630285b drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0631cd8a drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1133313d drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x13030d5f drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x02fb1b38 drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0613dc48 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x082812c8 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12232f0e drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x12438190 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x139de779 drm_sched_pick_best EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1a492da1 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1a531999 drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x23bdb860 drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3770ebc8 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4347b61d drm_sched_job_add_syncobj_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x437ccee4 drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5111a208 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36ea2852 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4faa3b3a drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x514a7959 drm_sched_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x52ab11c9 drm_sched_entity_destroy EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x535b5d20 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x57935905 drm_sched_job_init EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x688a598c drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6a351d26 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6f57581d drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7c6e711d drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x809f0acd drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x99a3e9b2 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a131f03 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9478fbf3 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa47693d2 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa8053c74 drm_sched_increase_karma EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa8c69fd2 drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xad37211a drm_sched_start EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xae405139 drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xae7bb563 drm_sched_job_add_dependency EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcf7e74cd drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd3b4f21e drm_sched_increase_karma EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe7019c02 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xee9bc89a drm_sched_fault EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf5231713 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf88b3fc4 drm_sched_job_add_implicit_dependencies EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0741a3c3 ttm_bo_validate EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ee63882 ttm_tt_fini EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x152ec019 ttm_bo_vm_dummy_page @@ -1470,12 +1470,10 @@ EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a71cd51 rdma_nl_stat_hwcounter_entry EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d9b11b4 ibnl_put_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f05ae44 ib_create_qp_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f6c9784 ib_modify_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30bb455e rdma_rw_ctx_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30d1db55 ib_get_net_dev_by_params EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3206ddc1 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32748f26 ib_free_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x328a2e51 rdma_nl_put_driver_u64 EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33094ffd rdma_restrack_parent_name EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x336e2021 ib_free_cq @@ -1516,9 +1514,7 @@ EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56316480 ib_dispatch_event EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58b5304d ib_post_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59605a24 ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cb99d13 ib_create_qp_security EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d154e63 ib_alloc_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f3a2c89 rdma_init_netdev @@ -1526,12 +1522,12 @@ EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61976aba ib_drain_sq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62ee131e ib_free_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x643f74c5 ib_set_client_data EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a9cfd1 rdma_modify_ah EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d4d15d4 rdma_restrack_count EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d8cb05d ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ebe7406 ib_register_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2ceefb ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size @@ -1552,7 +1548,7 @@ EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79882cab rdma_restrack_get_byid EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79e633fa rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fa8c39c ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ccdda53 ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fb4481e ib_mr_pool_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80857221 rdma_dev_access_netns EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x819f157f ib_destroy_cq_user @@ -1568,7 +1564,9 @@ EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b86e0e1 ib_qp_usecnt_inc EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c33e97c ib_mr_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c764210 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ddab0b1 ib_unregister_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e340793 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e6c3f63 ib_get_rmpp_segment EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x905a2375 rdma_user_mmap_entry_insert_range EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94680a43 ibdev_notice @@ -1577,16 +1575,14 @@ EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a666f6d ib_query_port EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd413f4 rdma_nl_put_driver_u32_hex EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cd620c1 ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ce62e47 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d765813 ib_post_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e73126b rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa11d0289 ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa34bfa83 rdma_umap_priv_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa907ef90 rdma_port_get_link_layer EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa31022f ib_unregister_device_queued EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad800b89 rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaebee646 ib_get_rmpp_segment EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafafb064 ib_init_ah_attr_from_path EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafcc8c3e rdma_destroy_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd47bdc ib_set_device_ops @@ -1596,6 +1592,7 @@ EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb729d9aa ib_detach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb893214c rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8d8373a ib_free_recv_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb90d4573 ib_drain_rq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93e40d0 rdma_restrack_new EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9e1cf94 rdma_rw_ctx_signature_init @@ -1603,8 +1600,11 @@ EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbedfeb9d ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbee6c941 rdma_query_gid_table EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc076ef6e ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0fefe1b ib_create_send_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc20e30d6 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc312dec9 ib_register_mad_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c22cbc ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc41577a8 ib_modify_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc469711b _ib_alloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc52f1e79 ib_modify_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5746e4d ib_device_get_by_name @@ -2433,17 +2433,17 @@ EXPORT_SYMBOL drivers/misc/c2port/core 0x8a54252c c2port_device_register EXPORT_SYMBOL drivers/misc/c2port/core 0xb60d00dd c2port_device_unregister EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x140f9e47 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x0c33829a __traceiter_mei_reg_write EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x302a1518 __tracepoint_mei_reg_write EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x4e87a1ab __traceiter_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x6cdc4a82 __tracepoint_mei_reg_write -EXPORT_SYMBOL drivers/misc/mei/mei 0x7c7d7aa8 __tracepoint_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x92fc09f2 __tracepoint_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x95c7fe1e __SCK__tp_func_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0x9a943b31 __traceiter_mei_reg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xaf3ceaa3 __traceiter_mei_pci_cfg_read -EXPORT_SYMBOL drivers/misc/mei/mei 0xd751fe16 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x3bec0e83 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x4b771b2f __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x4f79a2c9 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x767ce46c __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xc4f67c73 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xd7c99749 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xe5045160 __tracepoint_mei_pci_cfg_read EXPORT_SYMBOL drivers/misc/tifm_core 0x00398f3f tifm_remove_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x05b73071 tifm_add_adapter EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work @@ -2788,14 +2788,17 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6c96edf mlx4_eq_get_irq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c5cbe7 mlx5_eswitch_reg_c1_loopback_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01dcc7e5 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x056fdeaf __SCK__tp_func_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d49a6a mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06ca42c9 mlx5_core_query_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07aeff68 mlx5_cmd_create_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07b52ffa mlx5_packet_reformat_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089f1089 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09c25c28 __traceiter_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a9b9944 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b5b1819 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d8fc3bd __traceiter_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dc04cc4 mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ecdefcd __SCK__tp_func_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f5a8a8b mlx5_vector2eqn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10750e57 mlx5_rdma_rn_get_params EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x107e2e24 mlx5_vf_get_core_dev @@ -2803,21 +2806,22 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12a93b25 mlx5_fpga_sbu_conn_sendmsg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13518c58 mlx5_comp_irq_get_affinity_mask EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13ac40e1 mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x151dcb72 __tracepoint_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x173dc893 mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1842bf23 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a06e5c8 __tracepoint_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aee9ab1 mlx5_core_roce_gid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b7c6a34 mlx5_fpga_mem_read EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce1fb0f mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d16865c __tracepoint_mlx5_fs_add_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fc1b6f9 mlx5_rl_add_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x200269a7 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20ca221f __SCK__tp_func_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22918e05 mlx5_modify_header_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27de9a07 __tracepoint_mlx5_fs_add_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28900af0 mlx5_core_destroy_tis EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29034d7a mlx5_mpfs_add_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ae3d43f mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc044ea mlx5_cmd_cleanup_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d776ad5 mlx5_vf_put_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32d42b40 mlx5_eswitch_get_vport_metadata_for_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33530990 mlx5_fpga_mem_write @@ -2827,15 +2831,14 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b77fea3 mlx5_core_destroy_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c352c73 mlx5_lag_get_num_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c6c9e3d mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fca40b1 __tracepoint_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x414292f4 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x414346a7 __tracepoint_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x416392af mlx5_packet_reformat_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4494085a mlx5_eq_get_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49a880c1 mlx5_cmd_do EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bdd620c mlx5_core_modify_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf5e48b mlx5_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd3de15 __traceiter_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517fe15c mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x529e2b52 __SCK__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52db3ee7 mlx5_cmd_destroy_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5305a730 mlx5_eq_create_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5306f247 mlx5_fs_add_rx_underlay_qpn @@ -2850,33 +2853,36 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ef9d820 mlx5_lag_get_slave_port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f031329 mlx5_lag_is_sriov EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f84a0e7 mlx5_put_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60a156ee mlx5_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6156342f mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64809f3d __SCK__tp_func_mlx5_fs_add_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x656a20de mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66185e7c __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66ec524c mlx5_cmd_exec_cb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x689de7f3 mlx5_core_query_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ad29585 mlx5_core_destroy_cq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b63b480 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b691d38 mlx5_cmd_exec_polling EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cdc357b mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f22ae5f __SCK__tp_func_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fa9a065 mlx5_core_attach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x724b1385 mlx5_query_ib_port_oper EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72a32218 mlx5_core_query_vendor_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72f455ef mlx5_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7348b873 mlx5_eq_enable EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73652556 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74f28ae0 __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75bcc342 mlx5_cmd_out_err EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7836bcb0 mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7880d771 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a4004ba mlx5_debug_qp_add EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b244138 mlx5_msix_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c24ab7b mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cf9c7ce __tracepoint_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dbb0dbe mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e95d5cc __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7edb4a8e mlx5_cmd_do EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8080ca26 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81b907e7 __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81d2cfda mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83fd5d0c __tracepoint_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8462ceb4 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86edd56f mlx5_cmd_check EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e68171 mlx5_del_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a1f3ade mlx5_core_modify_sq @@ -2885,26 +2891,25 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f66b30b mlx5_lag_is_active EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8faebde7 mlx5_core_dealloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91ce61ac mlx5_core_uplink_netdev_event_replay -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x920c91b1 __tracepoint_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x923331ee mlx5_eswitch_get_encap_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92a1c607 mlx5_fc_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93d53775 mlx5_comp_vectors_count EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x944777b3 mlx5_eq_destroy_generic EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b92515e mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c79d853 mlx5_cmd_exec_polling EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c82e80d mlx5_is_roce_on EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d36ddd0 __SCT__tp_func_mlx5_fs_add_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e9e07d3 mlx5_lag_get_next_peer_mdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2c21eb2 mlx5_core_get_terminate_scatter_list_mkey EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa35e7147 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4cb6303 __traceiter_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa629f55a mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7d9580e __SCK__tp_func_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88e7aa5 mlx5_eswitch_vport_rep EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9ccaab6 mlx5_core_destroy_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac6d5404 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac7b696c __SCK__tp_func_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacfe8a18 __SCT__tp_func_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb06c0bfd __SCT__tp_func_mlx5_fs_set_fte @@ -2912,35 +2917,32 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb20281d8 mlx5_debugfs_get_dev_root EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3827973 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb402319f __tracepoint_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4e976bb __SCT__tp_func_mlx5_fs_add_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb56eb691 mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7aa85e1 mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9319adb __SCK__tp_func_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc097cb1 __tracepoint_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc24caea mlx5_core_destroy_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0cbd385 mlx5_add_flow_rules EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc17d62ba mlx5_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc636199c __SCK__tp_func_mlx5_fs_add_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc86defbe mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca774058 __traceiter_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcad019c3 __SCT__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb47de7a __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc4130d0 mlx5_alloc_bfreg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd52dcc7 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd9428fe __SCK__tp_func_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce3584fa mlx5_core_create_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcec18a0e mlx5_cmd_cleanup_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfab5ccd mlx5_cmd_init_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3ca55ca __tracepoint_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4b80780 mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4cf0182 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5ed700d __tracepoint_mlx5_fs_del_ft EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7d66129 mlx5_lag_is_shared_fdb EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd834972f mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8b8fe63 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9c3fae9 mlx5_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb622108 __SCT__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbeb5c73 mlx5_cmd_exec_cb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdde63d23 __tracepoint_mlx5_fs_del_fg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf08a20a mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf0fa2f4 __traceiter_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf47f4bd mlx5_eswitch_register_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfbc08aa __SCT__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe26ac7e8 mlx5_debugfs_root @@ -2950,7 +2952,6 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe908c64d mlx5_lag_is_mpesw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9c9fb76 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb748b1b __tracepoint_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed0d9cc3 mlx5_sriov_blocking_notifier_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeeca47ad mlx5_core_create_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb4f684 mlx5_eswitch_uplink_get_proto_dev @@ -2962,7 +2963,6 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf26d2512 mlx5_core_dealloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf61e5102 mlx5_core_create_psv EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfed828fc mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff26f6e5 __SCK__tp_func_mlx5_fw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get @@ -3353,10 +3353,9 @@ EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe327f21a ath10k_ce_cancel_send_next EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeaf7ae5a ath10k_core_register EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xeee7e8ab ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa70a6b3 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfac8d25d __tracepoint_ath10k_log_dbg EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc471aac __ath10k_ce_rx_num_free_bufs EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xff9ee406 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0438c2a3 __tracepoint_ath11k_log_dbg EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x060382c5 ath11k_hal_srng_deinit EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0c240a84 ath11k_core_suspend EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0e726cc0 ath11k_pcic_read32 @@ -3400,6 +3399,7 @@ EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf1aea08a ath11k_pcic_map_service_to_pipe EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf39106f5 ath11k_pcic_get_msi_address EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf73bd7b8 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf7cf4dc4 __tracepoint_ath11k_log_dbg EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ddd0cb7 ath6kl_hif_intr_bh_handler EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info @@ -3695,19 +3695,19 @@ EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb190c17 il_send_cmd_pdu_async EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe598738 il_get_single_channel_number EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfea826b8 il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1d4e38fa __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1f0a1314 __traceiter_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x2ef9271b __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x17135df5 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x260bf27c __SCK__tp_func_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x57f55d63 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x632ce03c iwl_trans_pcie_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x69b160b7 __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xa3cb2575 __SCK__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9755b21 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x75ef5762 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb1878e46 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb9e396fb __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xddb05816 __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xde679921 __tracepoint_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfe3d1c8d __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe2632b58 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe5fc3224 __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xfa720f15 __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x03be18bf hostap_set_string EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b5a7908 hostap_remove_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0c924cd0 hostap_init_data @@ -4083,8 +4083,8 @@ EXPORT_SYMBOL drivers/ntb/ntb 0xbd88e1b9 ntb_db_event EXPORT_SYMBOL drivers/ntb/ntb 0xec62ab09 ntb_msi_setup_mws EXPORT_SYMBOL drivers/ntb/ntb 0xf476011a ntb_unregister_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xab7df919 nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xfc735a95 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x68eb49a2 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf10f73de nvdimm_namespace_attach_btt EXPORT_SYMBOL drivers/parport/parport 0x0af52c12 parport_claim EXPORT_SYMBOL drivers/parport/parport 0x0c0765aa parport_set_timeout EXPORT_SYMBOL drivers/parport/parport 0x1290e1c1 parport_register_dev_model @@ -4644,94 +4644,94 @@ EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff5fb1a3 iscsit_build_reject EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xffddf961 iscsit_sequence_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x01b8f0a9 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x01e71350 transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x05ab5e5a core_tpg_register EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b80a9a4 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e9b51f0 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0eb4f089 target_cmd_parse_cdb EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x17d2d584 passthrough_pr_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x18e5ca53 spc_emulate_inquiry_std EXPORT_SYMBOL drivers/target/target_core_mod 0x1a8c0a36 spc_emulate_report_luns EXPORT_SYMBOL drivers/target/target_core_mod 0x1a99eb25 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x1bf31e1c target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x2111c68f transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x22467cb4 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x22d4a435 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x22f63b57 transport_generic_handle_tmr EXPORT_SYMBOL drivers/target/target_core_mod 0x269c2c30 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x28492a25 target_get_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x2a687040 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x2fb2e297 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x31322980 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bd5f9ac passthrough_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x3350d87b core_tmr_alloc_req EXPORT_SYMBOL drivers/target/target_core_mod 0x33873bf0 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x343e8dac transport_register_session EXPORT_SYMBOL drivers/target/target_core_mod 0x347d372e target_tpg_has_node_acl EXPORT_SYMBOL drivers/target/target_core_mod 0x36754a99 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x38dc8f08 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x36fe5487 transport_alloc_session EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x3a6ab7f2 transport_handle_cdb_direct EXPORT_SYMBOL drivers/target/target_core_mod 0x3df38c6e sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x4135bdad target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x467b861a target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x481f9120 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e48f36f sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x40a32d32 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4177373b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4620a887 __target_init_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x4a454f31 target_configure_unmap_from_queue EXPORT_SYMBOL drivers/target/target_core_mod 0x4c555bcd sbc_get_write_same_sectors EXPORT_SYMBOL drivers/target/target_core_mod 0x4eea70eb core_tpg_deregister EXPORT_SYMBOL drivers/target/target_core_mod 0x4f744962 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x587018ce __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x51df0c62 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5920533e target_put_nacl EXPORT_SYMBOL drivers/target/target_core_mod 0x5987b3a9 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x5b709230 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5adc7542 transport_kmap_data_sg EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5cf796ae target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c34853c target_complete_cmd_with_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x5e9ba9c9 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x61b285a8 target_complete_cmd_with_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x63fa0753 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x6800eedf transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6502aea3 transport_init_session EXPORT_SYMBOL drivers/target/target_core_mod 0x68063612 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ccd68d9 target_depend_item EXPORT_SYMBOL drivers/target/target_core_mod 0x6dc5b07f core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x6fa91636 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e86758e transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f6e201e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x728ffef6 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x757ce6f5 target_set_cmd_data_length EXPORT_SYMBOL drivers/target/target_core_mod 0x7610a1e6 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ba70316 target_show_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x7cb6d331 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x7e59ad80 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x864295d5 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x89b22815 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x80c750fd transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x88b0246e transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x89cba209 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e3d9bf1 target_unregister_template EXPORT_SYMBOL drivers/target/target_core_mod 0x8ef146c8 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x939c3183 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9109e996 transport_handle_cdb_direct EXPORT_SYMBOL drivers/target/target_core_mod 0x9a930428 spc_emulate_evpd_83 EXPORT_SYMBOL drivers/target/target_core_mod 0x9bcc4732 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5bb1283 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xa5d2efe4 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0xa78c55f9 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bd4a9d7 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xa10e7d35 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d07bcb target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3067304 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xac0664f9 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xae67e8b7 transport_wait_for_tasks EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl EXPORT_SYMBOL drivers/target/target_core_mod 0xb3a355a0 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xbc1c9791 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xbcfe143f transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc03a4fd9 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc0451db9 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xc36e716b passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xc77f087f transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1c1abf1 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc550f986 target_execute_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xc7f3a1cd target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd0f78ff target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xcdace886 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd508e4f target_put_sess_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xd64c96a0 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9221cc9 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xda43552e transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xdc9ba0bd transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xdde87f35 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xec756e94 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xda9f3dce target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf9953dd transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe397db36 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6e782ac target_show_dynamic_sessions EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf4fdd1e5 target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf91bee73 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xfd839897 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf535f683 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa9f595c target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdf3fa2a transport_deregister_session EXPORT_SYMBOL drivers/target/target_core_mod 0xfea335c6 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0xfeb767e1 target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0xfeeab726 transport_copy_sense_to_cmd EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x9103c585 acpi_parse_art EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x432e19c0 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x53c5d84d ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5ae35e27 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x9b29e8a0 ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x9d5d6b35 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xa2cabfa5 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x225e6f4d ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3994b2f3 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x869b4685 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xaa5912d3 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb0b2440d ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xde162bb9 ufshcd_alloc_host EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x567f0ccd tc_dwc_g210_config_20_bit EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xbf70b70b tc_dwc_g210_config_40_bit EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x09995b21 ufshcd_dwc_link_startup_notify @@ -4758,11 +4758,11 @@ EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5a55c88d mdev_register_driver EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7d9e0907 mdev_register_parent EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x2bdbd0e2 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x4fa9b9d3 vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0xac93ca45 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xe2dbd41c vfio_unpin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xf0267060 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0xe72475e6 vfio_pin_pages EXPORT_SYMBOL drivers/vhost/vhost 0x0aeb2afe vhost_chr_poll EXPORT_SYMBOL drivers/vhost/vhost 0x6959469d vhost_chr_write_iter EXPORT_SYMBOL drivers/vhost/vringh 0x22535a6e vringh_abandon_user @@ -4877,47 +4877,47 @@ EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x75bec08d iTCO_vendor_pre_stop EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xc8930f32 iTCO_vendor_pre_start EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xed2a3373 iTCO_vendorsupport +EXPORT_SYMBOL fs/fscache/fscache 0x0172017c __SCK__tp_func_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x0578793c fscache_withdraw_volume EXPORT_SYMBOL fs/fscache/fscache 0x058c501d __fscache_begin_read_operation EXPORT_SYMBOL fs/fscache/fscache 0x073dbcd6 fscache_end_cookie_access EXPORT_SYMBOL fs/fscache/fscache 0x0770a748 __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0x088e876d __fscache_relinquish_volume EXPORT_SYMBOL fs/fscache/fscache 0x09c714f1 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0a5cdbcc __tracepoint_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x16afed6f fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write EXPORT_SYMBOL fs/fscache/fscache 0x1d147d75 fscache_resume_after_invalidation -EXPORT_SYMBOL fs/fscache/fscache 0x20dda7c1 __SCK__tp_func_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x2234ca69 __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x26f49457 __SCK__tp_func_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x28253b7d fscache_dirty_folio -EXPORT_SYMBOL fs/fscache/fscache 0x32ffd517 __tracepoint_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates EXPORT_SYMBOL fs/fscache/fscache 0x4c13a960 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4c17b91d __SCK__tp_func_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem EXPORT_SYMBOL fs/fscache/fscache 0x5954d7ac __SCT__tp_func_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x5b18bdcf __fscache_resize_cookie EXPORT_SYMBOL fs/fscache/fscache 0x6ac082bf fscache_acquire_cache -EXPORT_SYMBOL fs/fscache/fscache 0x6b4faa32 __tracepoint_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x71550373 __fscache_invalidate EXPORT_SYMBOL fs/fscache/fscache 0x780550eb fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7ccd52c2 __tracepoint_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters -EXPORT_SYMBOL fs/fscache/fscache 0x8d02f11d __tracepoint_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled EXPORT_SYMBOL fs/fscache/fscache 0x91bd1c35 __fscache_clear_page_bits EXPORT_SYMBOL fs/fscache/fscache 0x97ca4a08 fscache_caching_failed EXPORT_SYMBOL fs/fscache/fscache 0x9a44734c fscache_wait_for_operation -EXPORT_SYMBOL fs/fscache/fscache 0x9c51c9f4 __SCK__tp_func_fscache_access EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa9fdc0b6 __SCK__tp_func_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0xb624237c fscache_add_cache EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq EXPORT_SYMBOL fs/fscache/fscache 0xc0e5834c fscache_io_error EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space EXPORT_SYMBOL fs/fscache/fscache 0xd080b7c6 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd7663d77 __tracepoint_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0xd8eacaa3 __fscache_begin_write_operation EXPORT_SYMBOL fs/fscache/fscache 0xdc040877 __fscache_relinquish_cookie EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access @@ -5022,60 +5022,60 @@ EXPORT_SYMBOL net/802/p8022 0x8ebde3f4 register_8022_client EXPORT_SYMBOL net/802/psnap 0x2395f58b register_snap_client EXPORT_SYMBOL net/802/psnap 0x25418538 unregister_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x0059094e p9_client_readdir EXPORT_SYMBOL net/9p/9pnet 0x0195551d p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x08615f90 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x0a25d9f7 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x0abf3c94 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x0b22dcd1 __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x103dc50b p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x137ab8ab p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x156b0fa3 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x21051a13 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x221c37ad p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x2a55206a p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x3945c990 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x3c8343a9 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x3cddc7ce p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x01d13003 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x0c446a70 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x0d4a6104 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x0eb1175d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x15efd697 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x2a6c89f9 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x2abd8c83 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x2dc94591 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0x2f5661a6 __tracepoint_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x38afd358 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3d4fc6a3 p9_show_client_options EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41809cf2 __SCK__tp_func_9p_fid_ref EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x482e8aa5 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x45643fbc p9_client_write EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x5864a069 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x59365a26 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x650dfc50 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x6685e0f2 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x6f443c01 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x71e34d0b p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x4c72a901 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x54bcbcc4 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5d768cb8 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x6a5d395f p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6c370008 p9_client_link EXPORT_SYMBOL net/9p/9pnet 0x734b60bd v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x75f9ca39 p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x87ae7700 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x76db1e76 p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0x8a7eb801 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x8eedfe39 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x903d262c p9_client_begin_disconnect EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0xa1e67552 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xa7931648 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0xb0d95749 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0xb1061ca0 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0xb2d3ae6b p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x9844fe4b p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x9d5ff94b p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x9eac7be2 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa2bcead7 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xad58e50e p9_client_mkdir_dotl EXPORT_SYMBOL net/9p/9pnet 0xb798a888 __SCT__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xc7503719 do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0xca867bf1 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xcb94bf64 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xcdbbcdcb p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcf255552 p9_tag_lookup EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free EXPORT_SYMBOL net/9p/9pnet 0xd39d4eff v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xd74163ba p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0xdf61fcaf p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0xe15888df p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdc3849c9 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdc8165fe p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xde62ad6b p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe11442b5 p9_client_getlock_dotl EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe6b16f4d p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0xe70e4cb8 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xe8abe43c p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0xeb71b33e p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0xed5b1cde p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0xee038a9f p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0xf0b3c806 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xf56b2187 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0xf62891e0 p9_req_put -EXPORT_SYMBOL net/9p/9pnet 0xf8a4b643 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0xe78f5e06 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xea3b732d __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0xec96300f p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xedd3b802 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xf32fa8ff p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xfa6d3b4c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd7f568f p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xfe1df761 p9_client_fsync EXPORT_SYMBOL net/9p/9pnet 0xffcde1bb v9fs_get_default_trans EXPORT_SYMBOL net/appletalk/appletalk 0x8b87ea7e aarp_send_ddp EXPORT_SYMBOL net/appletalk/appletalk 0x96556f90 alloc_ltalkdev @@ -5677,43 +5677,43 @@ EXPORT_SYMBOL net/phonet/phonet 0x7584716e pn_sock_hash EXPORT_SYMBOL net/phonet/phonet 0x77e8d266 phonet_stream_ops EXPORT_SYMBOL net/phonet/phonet 0xee0df86a pn_sock_unhash -EXPORT_SYMBOL net/rxrpc/rxrpc 0x090b1701 rxrpc_kernel_put_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x17321a61 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x15eb5456 rxrpc_kernel_begin_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x191ecaae rxrpc_kernel_get_srtt EXPORT_SYMBOL net/rxrpc/rxrpc 0x1ecf558f rxrpc_kernel_recv_data EXPORT_SYMBOL net/rxrpc/rxrpc 0x225d34e2 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x29f6d3a6 rxrpc_kernel_set_max_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x5cb86da0 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x63c7f50f rxrpc_kernel_shutdown_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a4422b5 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x78658951 rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x7d444800 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x499c85c1 rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x567626ed rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x57d0d31a rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x685bcf9b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x796f22bb rxrpc_sock_set_min_security_level EXPORT_SYMBOL net/rxrpc/rxrpc 0x84308891 rxrpc_kernel_abort_call EXPORT_SYMBOL net/rxrpc/rxrpc 0x9e738a70 rxrpc_kernel_get_peer EXPORT_SYMBOL net/rxrpc/rxrpc 0xb5a7ce89 rxrpc_kernel_charge_accept EXPORT_SYMBOL net/rxrpc/rxrpc 0xbfb30167 rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd4570e66 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc099ffa3 rxrpc_kernel_shutdown_call EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc53a402 rxrpc_get_server_data_key EXPORT_SYMBOL net/rxrpc/rxrpc 0xde32501d key_type_rxrpc EXPORT_SYMBOL net/rxrpc/rxrpc 0xebc6592c rxrpc_kernel_set_tx_length EXPORT_SYMBOL net/rxrpc/rxrpc 0xf42cc449 rxrpc_get_null_key EXPORT_SYMBOL net/sctp/sctp 0xab332c75 sctp_do_peeloff -EXPORT_SYMBOL net/smc/smc 0x045cd566 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x196e4e61 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x08abe7fd __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x1e580f21 __tracepoint_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x286060ab __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x29b3c73b __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x3ac4e1c7 __SCT__tp_func_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0x3bcd3bb9 __SCT__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x4d46549f __tracepoint_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0x7cb327a3 __traceiter_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x86fdc887 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x3f947f2f __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x444ad037 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x4a7015df __tracepoint_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0x8ca1cf83 __tracepoint_smc_switch_to_fallback -EXPORT_SYMBOL net/smc/smc 0x9bcf5380 __tracepoint_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0xae07122d __traceiter_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0xb5c0f670 __traceiter_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xbb30c1f0 __traceiter_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xd2d5d279 __SCK__tp_func_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xea7ce881 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x898a18e5 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x92c3d728 __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xacb48db1 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xc6ebcdd6 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xc8d1083e __tracepoint_smc_rx_recvmsg EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1624e111 gss_mech_put EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb65c1fbb gss_pseudoflavor_to_service EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xec5125f0 gss_mech_get @@ -6095,35 +6095,35 @@ EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf2149ddf snd_vx_free_firmware EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfce2f804 snd_vx_setup_firmware EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a406148 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x120c251e amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x139337e2 amdtp_stream_set_parameters EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13f51282 iso_packets_buffer_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x206a718d cmp_connection_reserve EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2795e536 fw_iso_resources_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c226d4a fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3280fb23 amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37077092 cmp_connection_break EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3f711b6a cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x42779925 amdtp_stream_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a4b12f3 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5bf3a191 amdtp_stream_pcm_prepare EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6414cc6a fw_iso_resources_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69008f84 cmp_connection_check_used EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6fa3960a cmp_connection_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x840199ef fcp_bus_reset -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x855e5687 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8460fc1d amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a82ad74 amdtp_stream_pcm_abort EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d4389d4 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x96e88d34 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a747c53 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9cdadbf6 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa54f8b28 amdtp_stream_get_max_payload EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xabfd1c00 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc3a49e06 amdtp_stream_init EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7a924c7 fw_iso_resources_free EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc8949436 cmp_connection_release EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd83a0eb9 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdcb4d983 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe24db774 cmp_connection_establish EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4e3825b fcp_avc_transaction EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2396376 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf411596f amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfb980a3a amdtp_stream_get_max_payload EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcfe5b32 avc_general_get_sig_fmt EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x070e9794 intel_nhlt_get_endpoint_blob EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type @@ -6258,20 +6258,21 @@ EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xc9c28a65 fsl_asoc_get_dma_channel EXPORT_SYMBOL sound/soc/snd-soc-core 0x1909d6dc snd_soc_alloc_ac97_component EXPORT_SYMBOL sound/soc/sof/snd-sof 0x004f7757 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0226cf77 snd_sof_device_probe EXPORT_SYMBOL sound/soc/sof/snd-sof 0x094be0cf snd_sof_handle_fw_exception EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ab0ad2b snd_sof_dsp_update_bits_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0x11d459f4 sof_mailbox_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0x279fc9a3 snd_sof_ipc_get_reply EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28d8e6ee snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a908506 sof_print_oops_and_stack EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2ab2ce8c sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2c626ab2 snd_sof_device_shutdown EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30748cff sof_block_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag EXPORT_SYMBOL sound/soc/sof/snd-sof 0x38c7f198 sof_block_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a240ab3 snd_sof_runtime_idle EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3af83633 snd_sof_dsp_only_d0i3_compatible_stream_active EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4c07c833 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5038786c snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x55ccfdc6 sof_print_oops_and_stack EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5733f4d2 sof_ipc3_do_rx_work EXPORT_SYMBOL sound/soc/sof/snd-sof 0x63fc3fea sof_io_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0x686fb83e sof_machine_check @@ -6289,20 +6290,17 @@ EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e14075a sof_io_write64 EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86c06414 snd_sof_load_firmware_memcpy EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86c0be08 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x87faa6e9 snd_sof_device_shutdown EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98ac8577 sof_set_stream_data_offset EXPORT_SYMBOL sound/soc/sof/snd-sof 0x999d956d sof_widget_setup EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa064aac6 sof_dai_get_mclk EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa53502a3 snd_sof_dsp_dbg_dump EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5ac4a6b snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa7ce7309 snd_sof_device_remove EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad09222b snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1a68e1f snd_sof_device_probe_completed EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb75b3999 sof_mailbox_write EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb8cc8196 sof_io_read EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbb49d361 sof_ipc_tx_message_no_pm EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbce37158 sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd00624d6 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd4a410e snd_sof_device_probe_completed EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd0b3aa23 snd_sof_complete EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd57f7e85 snd_sof_prepare EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe27fa8d0 snd_sof_fw_unload @@ -6312,7 +6310,9 @@ EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef8c2f82 sof_io_read64 EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef9a7500 snd_sof_runtime_resume EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf298e590 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf5072022 snd_sof_device_remove EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9dd365e snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa505c46 sof_set_fw_state EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfcb19f51 snd_sof_dsp_update_bits64_unlocked EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe2efeec sof_dai_get_bclk EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe429d43 snd_sof_pci_update_bits @@ -6348,18 +6348,18 @@ EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect EXPORT_SYMBOL vmlinux 0x0003e8fe dmam_pool_create EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x0023cc4e generic_fillattr +EXPORT_SYMBOL vmlinux 0x002c6c4f ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x00304909 tcp_v4_md5_lookup EXPORT_SYMBOL vmlinux 0x003f7e33 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x0040912d ip_sock_set_pktinfo EXPORT_SYMBOL vmlinux 0x0044be59 ip6_frag_init EXPORT_SYMBOL vmlinux 0x0058a53a acpi_bus_get_status EXPORT_SYMBOL vmlinux 0x006c2c29 skb_clone -EXPORT_SYMBOL vmlinux 0x0070622a vme_bus_num EXPORT_SYMBOL vmlinux 0x007a5833 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x00863f5d lookup_one_len_unlocked EXPORT_SYMBOL vmlinux 0x0086ed5f bio_copy_data EXPORT_SYMBOL vmlinux 0x008c7c8f pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x009d8b50 module_put +EXPORT_SYMBOL vmlinux 0x009d16b6 __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode EXPORT_SYMBOL vmlinux 0x00bc0c60 dup_iter @@ -6367,58 +6367,59 @@ EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count EXPORT_SYMBOL vmlinux 0x00e11654 pci_prepare_to_sleep EXPORT_SYMBOL vmlinux 0x00e398ba netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x00e40451 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x00ffccc4 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x00e7d555 block_invalidate_folio EXPORT_SYMBOL vmlinux 0x01000e51 schedule EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded EXPORT_SYMBOL vmlinux 0x01216126 acpi_dev_get_first_match_dev -EXPORT_SYMBOL vmlinux 0x0129a95d vfs_unlink EXPORT_SYMBOL vmlinux 0x014527b1 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on EXPORT_SYMBOL vmlinux 0x014e9cc0 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x016caf1a filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer EXPORT_SYMBOL vmlinux 0x016f4bef udp_set_csum +EXPORT_SYMBOL vmlinux 0x017508c4 block_write_full_page EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017bb807 sock_set_mark EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01a31a00 buffer_migrate_folio EXPORT_SYMBOL vmlinux 0x01b08b33 blk_mq_free_tag_set EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note EXPORT_SYMBOL vmlinux 0x01c8a8e8 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x01d6a1c3 vmalloc_to_page EXPORT_SYMBOL vmlinux 0x01e61d6c __x86_indirect_call_thunk_r12 EXPORT_SYMBOL vmlinux 0x01e75e7a ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x01ff8077 is_nd_pfn EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc EXPORT_SYMBOL vmlinux 0x0219133d bd_abort_claiming EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo -EXPORT_SYMBOL vmlinux 0x0230790a unlock_rename EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user EXPORT_SYMBOL vmlinux 0x024a5697 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0259d8b5 path_is_mountpoint EXPORT_SYMBOL vmlinux 0x02636da9 dm_register_target -EXPORT_SYMBOL vmlinux 0x02645031 mdio_bus_type EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0282e339 __sock_create +EXPORT_SYMBOL vmlinux 0x0288ce03 __mdiobus_register EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate EXPORT_SYMBOL vmlinux 0x029dd1c2 rproc_vq_interrupt EXPORT_SYMBOL vmlinux 0x02ba1187 vm_zone_stat EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes EXPORT_SYMBOL vmlinux 0x02cce8d1 phy_stop EXPORT_SYMBOL vmlinux 0x02d5221b rtnl_notify +EXPORT_SYMBOL vmlinux 0x02de1259 jbd2_journal_flush EXPORT_SYMBOL vmlinux 0x02e0db9f __dev_remove_pack EXPORT_SYMBOL vmlinux 0x02e3db8d sdev_enable_disk_events EXPORT_SYMBOL vmlinux 0x02ea3095 reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0x02ec15ad param_get_int EXPORT_SYMBOL vmlinux 0x02ec6751 dquot_initialize EXPORT_SYMBOL vmlinux 0x03147df9 skb_ext_add +EXPORT_SYMBOL vmlinux 0x032a1557 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0x032ec647 truncate_inode_pages EXPORT_SYMBOL vmlinux 0x0334a42f rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl EXPORT_SYMBOL vmlinux 0x03387b27 phy_get_pause -EXPORT_SYMBOL vmlinux 0x034405ec unregister_shrinker EXPORT_SYMBOL vmlinux 0x03455608 dcb_ieee_getapp_dscp_prio_mask_map EXPORT_SYMBOL vmlinux 0x034beb7c cdrom_open EXPORT_SYMBOL vmlinux 0x03561c68 retire_super @@ -6433,32 +6434,32 @@ EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs EXPORT_SYMBOL vmlinux 0x03a01fa5 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0x03a0b64b inode_get_bytes -EXPORT_SYMBOL vmlinux 0x03a1bc07 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03b9d5f3 generic_pipe_buf_get EXPORT_SYMBOL vmlinux 0x03bc48c1 sock_no_linger EXPORT_SYMBOL vmlinux 0x03d68131 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x03e9ab76 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x03ee009e ww_mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x03f07179 __bio_advance -EXPORT_SYMBOL vmlinux 0x03fa941e vme_slot_num +EXPORT_SYMBOL vmlinux 0x03f9d7ce alloc_buffer_head EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram EXPORT_SYMBOL vmlinux 0x041c10ff __sk_queue_drop_skb EXPORT_SYMBOL vmlinux 0x041d6f0b xsk_clear_rx_need_wakeup EXPORT_SYMBOL vmlinux 0x042fac6f iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x04328dc3 try_to_free_buffers EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04446401 thread_group_exited EXPORT_SYMBOL vmlinux 0x0445ca84 kobject_add EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 EXPORT_SYMBOL vmlinux 0x04507e0b mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x0456313c jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0x045a0136 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x0461f95d xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user EXPORT_SYMBOL vmlinux 0x04789d34 __nla_put_64bit EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0479b816 mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x048729c3 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x04a7ff97 dev_addr_del EXPORT_SYMBOL vmlinux 0x04b74936 setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0x04bccf2e pci_setup_cardbus @@ -6466,14 +6467,12 @@ EXPORT_SYMBOL vmlinux 0x04cf6d97 unregister_mii_tstamp_controller EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x04d96fc0 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize EXPORT_SYMBOL vmlinux 0x04fc220a tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0x05009866 pps_register_source EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match EXPORT_SYMBOL vmlinux 0x0519f110 register_nexthop_notifier EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x052f29b2 vme_dma_request EXPORT_SYMBOL vmlinux 0x05331974 agp_free_memory EXPORT_SYMBOL vmlinux 0x053671d4 amd_iommu_snp_en EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible @@ -6482,8 +6481,11 @@ EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg +EXPORT_SYMBOL vmlinux 0x05710760 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0575da12 zap_page_range_single EXPORT_SYMBOL vmlinux 0x058803b4 get_ipc_ns_exported -EXPORT_SYMBOL vmlinux 0x05c957f3 find_vma +EXPORT_SYMBOL vmlinux 0x05b7dc0a vme_irq_free +EXPORT_SYMBOL vmlinux 0x05c02e74 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x05d36d2f seq_vprintf EXPORT_SYMBOL vmlinux 0x05e1119f xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x05e3aa4a pci_get_device @@ -6496,21 +6498,22 @@ EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user EXPORT_SYMBOL vmlinux 0x06362434 devm_request_any_context_irq EXPORT_SYMBOL vmlinux 0x06463b7e fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x0666488e folio_mark_dirty EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul EXPORT_SYMBOL vmlinux 0x066c646b get_cached_acl_rcu EXPORT_SYMBOL vmlinux 0x06725faf _copy_from_iter -EXPORT_SYMBOL vmlinux 0x06908e7c __nd_driver_register EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 EXPORT_SYMBOL vmlinux 0x06adad7b dma_unmap_resource EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal EXPORT_SYMBOL vmlinux 0x06dd2315 proc_remove +EXPORT_SYMBOL vmlinux 0x06ddd9eb kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0x06e03b81 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x06eeabbc devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x06fb9c35 netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x06fda13d netdev_lower_get_next_private_rcu EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc EXPORT_SYMBOL vmlinux 0x070c84a9 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x0725663c ptp_clock_index EXPORT_SYMBOL vmlinux 0x072a9568 dev_mc_del EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase @@ -6518,12 +6521,10 @@ EXPORT_SYMBOL vmlinux 0x075e6546 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0x07645306 tty_hung_up_p EXPORT_SYMBOL vmlinux 0x076d8696 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x0770af9a mdio_find_bus EXPORT_SYMBOL vmlinux 0x078f4db9 devm_gen_pool_create EXPORT_SYMBOL vmlinux 0x079af438 mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x079fd048 crypto_sha3_update -EXPORT_SYMBOL vmlinux 0x07a19d6d filemap_release_folio -EXPORT_SYMBOL vmlinux 0x07a5b8ee mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x07a79595 __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap EXPORT_SYMBOL vmlinux 0x07b9b4af phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit @@ -6535,70 +6536,66 @@ EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x084a7b2c would_dump EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit EXPORT_SYMBOL vmlinux 0x087223a8 skb_expand_head EXPORT_SYMBOL vmlinux 0x089a9723 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x08a990fc remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x08b0da39 bio_integrity_trim EXPORT_SYMBOL vmlinux 0x08be84e5 iov_iter_npages EXPORT_SYMBOL vmlinux 0x08d55638 dquot_commit_info EXPORT_SYMBOL vmlinux 0x090fb511 pci_back_from_sleep EXPORT_SYMBOL vmlinux 0x09133fe6 of_find_mipi_dsi_host_by_node -EXPORT_SYMBOL vmlinux 0x09238352 filemap_dirty_folio EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x092fcecf __lock_buffer EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects EXPORT_SYMBOL vmlinux 0x095b5775 pci_ep_cfs_remove_epf_group EXPORT_SYMBOL vmlinux 0x096344c2 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0x0966e107 __x86_indirect_call_thunk_r9 -EXPORT_SYMBOL vmlinux 0x0969ec97 fc_mount EXPORT_SYMBOL vmlinux 0x096cd61c config_item_get EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x0976cdcf ipv6_find_hdr EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap EXPORT_SYMBOL vmlinux 0x0990d6e2 init_net EXPORT_SYMBOL vmlinux 0x0991b5e1 mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0x09bca7ac vme_dma_list_add -EXPORT_SYMBOL vmlinux 0x09d3e859 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x09b7571b ata_print_version EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark EXPORT_SYMBOL vmlinux 0x09eb1414 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x09ecb781 file_fdatawait_range EXPORT_SYMBOL vmlinux 0x09f315cc set_pages_uc EXPORT_SYMBOL vmlinux 0x0a0127c3 tcf_action_check_ctrlact EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a125b8a may_umount EXPORT_SYMBOL vmlinux 0x0a13a828 skb_get_hash_perturb EXPORT_SYMBOL vmlinux 0x0a18422d flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash EXPORT_SYMBOL vmlinux 0x0a34f5d0 phy_aneg_done EXPORT_SYMBOL vmlinux 0x0a34fa7e netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x0a36e8bd nd_btt_version EXPORT_SYMBOL vmlinux 0x0a3ef768 pci_enable_device EXPORT_SYMBOL vmlinux 0x0a4e4f07 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0x0a73e656 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x0a623a55 devfreq_monitor_suspend EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a89c7dd devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0x0a8d220f security_inet_conn_established -EXPORT_SYMBOL vmlinux 0x0a931767 xattr_full_name EXPORT_SYMBOL vmlinux 0x0a9ba04f srso_untrain_ret EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa8be78 netlink_rcv_skb EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace EXPORT_SYMBOL vmlinux 0x0aafd7a5 param_ops_string EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all EXPORT_SYMBOL vmlinux 0x0ad56028 dquot_get_next_id EXPORT_SYMBOL vmlinux 0x0ae9dce8 sk_wait_data EXPORT_SYMBOL vmlinux 0x0aedd9b0 _dev_alert -EXPORT_SYMBOL vmlinux 0x0af9799f __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x0afb186a dst_release EXPORT_SYMBOL vmlinux 0x0b040c93 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x0b0ed210 read_cache_folio EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 -EXPORT_SYMBOL vmlinux 0x0b1a53f8 f_setown EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user EXPORT_SYMBOL vmlinux 0x0b202e53 copy_page_from_iter_atomic EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b2e7443 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x0b362c78 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0x0b520062 dcb_setrewr +EXPORT_SYMBOL vmlinux 0x0b56460c read_cache_page EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff EXPORT_SYMBOL vmlinux 0x0b695557 __neigh_event_send EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol @@ -6607,7 +6604,7 @@ EXPORT_SYMBOL vmlinux 0x0b9caa48 nf_log_unregister EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk EXPORT_SYMBOL vmlinux 0x0ba48e27 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x0ba5d196 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x0bab1a39 nd_dax_probe EXPORT_SYMBOL vmlinux 0x0bb5dd4a dma_fence_chain_find_seqno EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate @@ -6615,23 +6612,21 @@ EXPORT_SYMBOL vmlinux 0x0be7639e tcp_read_done EXPORT_SYMBOL vmlinux 0x0bebfc03 tcf_idr_search EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c145bfb f_setown EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq EXPORT_SYMBOL vmlinux 0x0c276e13 tcf_em_register EXPORT_SYMBOL vmlinux 0x0c2cdef4 ipv6_sock_mc_join EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x0c3ce542 lock_rename_child EXPORT_SYMBOL vmlinux 0x0c3e9486 sk_common_release EXPORT_SYMBOL vmlinux 0x0c463982 blk_queue_chunk_sectors EXPORT_SYMBOL vmlinux 0x0c50d5dd tcf_chain_get_by_act EXPORT_SYMBOL vmlinux 0x0c532b56 pnp_register_card_driver EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c5839f7 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read EXPORT_SYMBOL vmlinux 0x0c6d66ff dev_set_mac_address EXPORT_SYMBOL vmlinux 0x0ca162c2 agp_alloc_page_array EXPORT_SYMBOL vmlinux 0x0cb2843d get_tree_single EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0cc880c2 mntget EXPORT_SYMBOL vmlinux 0x0ccc4ace dcbnl_ieee_notify EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive EXPORT_SYMBOL vmlinux 0x0cd7cc63 skb_free_datagram @@ -6640,16 +6635,18 @@ EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason EXPORT_SYMBOL vmlinux 0x0cdd6c69 config_item_put EXPORT_SYMBOL vmlinux 0x0cee6b91 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x0cf4a8b9 fc_mount +EXPORT_SYMBOL vmlinux 0x0d03d8ce mmc_detect_change EXPORT_SYMBOL vmlinux 0x0d049235 d_obtain_alias EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev EXPORT_SYMBOL vmlinux 0x0d31b929 input_unregister_handle EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream EXPORT_SYMBOL vmlinux 0x0d38b833 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x0d38d044 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type EXPORT_SYMBOL vmlinux 0x0d72f1c6 phy_driver_register EXPORT_SYMBOL vmlinux 0x0d837b00 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x0da37acd dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x0da716d5 poll_initwait EXPORT_SYMBOL vmlinux 0x0daa98e8 ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x0db8f8e6 bio_endio EXPORT_SYMBOL vmlinux 0x0deb72fc __traceiter_dma_fence_enable_signal @@ -6665,20 +6662,20 @@ EXPORT_SYMBOL vmlinux 0x0e3f8873 phy_start_cable_test EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned EXPORT_SYMBOL vmlinux 0x0e592f39 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x0e6387c0 i2c_find_device_by_fwnode EXPORT_SYMBOL vmlinux 0x0e65ea94 phy_find_first -EXPORT_SYMBOL vmlinux 0x0e67dd99 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x0e78f474 to_ndd EXPORT_SYMBOL vmlinux 0x0e82aae4 tc_setup_offload_action EXPORT_SYMBOL vmlinux 0x0e8dbe6e uart_register_driver +EXPORT_SYMBOL vmlinux 0x0e8ef995 kernel_write EXPORT_SYMBOL vmlinux 0x0e957ab6 agp_bind_memory EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init EXPORT_SYMBOL vmlinux 0x0ead675d clocksource_change_rating EXPORT_SYMBOL vmlinux 0x0eb418a2 backlight_force_update EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0ebe0916 folio_migrate_flags EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free EXPORT_SYMBOL vmlinux 0x0ee15632 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x0eeae72d finalize_exec EXPORT_SYMBOL vmlinux 0x0f025c08 set_blocksize EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable EXPORT_SYMBOL vmlinux 0x0f0a6959 noop_fsync @@ -6692,24 +6689,22 @@ EXPORT_SYMBOL vmlinux 0x0f827abc ipv4_specific EXPORT_SYMBOL vmlinux 0x0f852f4e netpoll_poll_enable EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x0f9143c1 module_refcount EXPORT_SYMBOL vmlinux 0x0f92195e param_ops_ushort EXPORT_SYMBOL vmlinux 0x0f9fe992 sockopt_ns_capable EXPORT_SYMBOL vmlinux 0x0fa4dc84 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack -EXPORT_SYMBOL vmlinux 0x0fabb79a kmem_cache_create_usercopy -EXPORT_SYMBOL vmlinux 0x0facf304 generic_fadvise -EXPORT_SYMBOL vmlinux 0x0fafef8c dentry_create EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 EXPORT_SYMBOL vmlinux 0x0fd7273c get_tree_nodev EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create EXPORT_SYMBOL vmlinux 0x0fe182f8 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x0ffde7c4 vfs_rename +EXPORT_SYMBOL vmlinux 0x0ff244fa kmem_cache_destroy EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat EXPORT_SYMBOL vmlinux 0x100668d7 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x1008fc3a bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0x100bddf8 proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0x100d791d scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x1015e50d mnt_set_expiry EXPORT_SYMBOL vmlinux 0x101d7ff5 ns_capable_noaudit EXPORT_SYMBOL vmlinux 0x102fb5e0 pci_enable_msi EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region @@ -6721,45 +6716,49 @@ EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107dd046 __x86_indirect_call_thunk_r8 EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x109e2257 pipe_lock EXPORT_SYMBOL vmlinux 0x10abd8e1 param_get_hexint EXPORT_SYMBOL vmlinux 0x10cfd1e4 input_close_device EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range EXPORT_SYMBOL vmlinux 0x10e70fa1 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0x10e96859 bdev_end_io_acct EXPORT_SYMBOL vmlinux 0x10ec2d13 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x10f83c50 param_get_ullong EXPORT_SYMBOL vmlinux 0x10fd03ac blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x1101ec6b __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x11063770 write_cache_pages EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x1118a258 set_page_dirty_lock EXPORT_SYMBOL vmlinux 0x111a28fb __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x111e1f3f jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x111ff0a4 simple_transaction_set EXPORT_SYMBOL vmlinux 0x11265fa2 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x112898ce xattr_supports_user_prefix EXPORT_SYMBOL vmlinux 0x112956c8 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x112ea092 vme_register_error_handler EXPORT_SYMBOL vmlinux 0x115cc221 pcie_relaxed_ordering_enabled EXPORT_SYMBOL vmlinux 0x11636dc0 serio_unregister_child_port EXPORT_SYMBOL vmlinux 0x117039b2 phy_get_eee_err EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init EXPORT_SYMBOL vmlinux 0x118028c8 tcp_req_err EXPORT_SYMBOL vmlinux 0x11894281 d_delete +EXPORT_SYMBOL vmlinux 0x1190ca05 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x119f9c63 __mmap_lock_do_trace_released EXPORT_SYMBOL vmlinux 0x11b29828 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x11c32412 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x11c96b9b devfreq_monitor_start EXPORT_SYMBOL vmlinux 0x11de1d57 pci_save_state EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x12074f2f __wait_on_buffer EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented EXPORT_SYMBOL vmlinux 0x120b8ad0 jbd2__journal_start EXPORT_SYMBOL vmlinux 0x122c3a7e _printk EXPORT_SYMBOL vmlinux 0x122ece3b padata_free_shell EXPORT_SYMBOL vmlinux 0x12355d70 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x1236349a bpf_map_get -EXPORT_SYMBOL vmlinux 0x123a1891 kernel_recvmsg EXPORT_SYMBOL vmlinux 0x124b94e8 ihold EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool EXPORT_SYMBOL vmlinux 0x125203b8 input_set_keycode EXPORT_SYMBOL vmlinux 0x126ce7d9 hdmi_infoframe_log EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down +EXPORT_SYMBOL vmlinux 0x1287a883 kill_pgrp +EXPORT_SYMBOL vmlinux 0x128a5159 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x128a8948 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0x1290fcdc fb_io_read EXPORT_SYMBOL vmlinux 0x12928f41 input_open_device EXPORT_SYMBOL vmlinux 0x129f8148 mpage_read_folio @@ -6769,8 +6768,10 @@ EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 EXPORT_SYMBOL vmlinux 0x12cf37b8 pci_write_vpd_any EXPORT_SYMBOL vmlinux 0x12e0421b component_match_add_typed +EXPORT_SYMBOL vmlinux 0x12ed71da page_cache_next_miss EXPORT_SYMBOL vmlinux 0x12f4b19d pci_ep_cfs_remove_epc_group EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x13065f83 sock_create_lite EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data EXPORT_SYMBOL vmlinux 0x130bf4b1 __ip_select_ident EXPORT_SYMBOL vmlinux 0x13110126 request_resource @@ -6783,6 +6784,7 @@ EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package EXPORT_SYMBOL vmlinux 0x1389fe0f textsearch_register EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a868d7 finish_swait EXPORT_SYMBOL vmlinux 0x13a9be8e fb_prepare_logo EXPORT_SYMBOL vmlinux 0x13bb4baf netdev_get_by_index EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user @@ -6792,26 +6794,24 @@ EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation EXPORT_SYMBOL vmlinux 0x13fdd7d4 __netif_schedule EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x1415ef5f fiemap_prep -EXPORT_SYMBOL vmlinux 0x14294b4e read_cache_page EXPORT_SYMBOL vmlinux 0x14351040 address_space_init_once EXPORT_SYMBOL vmlinux 0x14547beb skb_splice_from_iter EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table EXPORT_SYMBOL vmlinux 0x14648499 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x14751808 folio_migrate_copy EXPORT_SYMBOL vmlinux 0x148a139d alloc_file_pseudo EXPORT_SYMBOL vmlinux 0x14a18d70 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14e02a75 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x14e5c35b __vfs_setxattr EXPORT_SYMBOL vmlinux 0x14f10648 rproc_elf_load_rsc_table EXPORT_SYMBOL vmlinux 0x14f6ad1f tty_chars_in_buffer EXPORT_SYMBOL vmlinux 0x1500a6cd param_array_ops EXPORT_SYMBOL vmlinux 0x1506ddc2 blk_mq_start_hw_queues EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152d5898 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0x15351964 pci_select_bars EXPORT_SYMBOL vmlinux 0x15360f38 __skb_ext_del EXPORT_SYMBOL vmlinux 0x1548a81f ipv6_select_ident @@ -6819,6 +6819,7 @@ EXPORT_SYMBOL vmlinux 0x15497c50 serio_bus EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy EXPORT_SYMBOL vmlinux 0x1556bb6a netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x156c31b7 __inode_add_bytes EXPORT_SYMBOL vmlinux 0x156d1d44 ip_sock_set_mtu_discover EXPORT_SYMBOL vmlinux 0x15751c5f input_set_capability EXPORT_SYMBOL vmlinux 0x15857dbc skb_set_owner_w @@ -6830,22 +6831,18 @@ EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial EXPORT_SYMBOL vmlinux 0x15c57035 rc5t583_ext_power_req_config EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15cafbd6 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init EXPORT_SYMBOL vmlinux 0x16030a0b icmp_ndo_send EXPORT_SYMBOL vmlinux 0x16184e5d update_region EXPORT_SYMBOL vmlinux 0x1619420b iget_failed -EXPORT_SYMBOL vmlinux 0x161c7eab kmem_cache_shrink EXPORT_SYMBOL vmlinux 0x16278f01 i8042_remove_filter EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string -EXPORT_SYMBOL vmlinux 0x162fce8e ww_mutex_lock EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x163270e0 filemap_get_folios_contig EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x1633ed24 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1635cf10 dump_skip_to EXPORT_SYMBOL vmlinux 0x1648fa6a notify_change -EXPORT_SYMBOL vmlinux 0x1665fb3a submit_bh +EXPORT_SYMBOL vmlinux 0x1667c34d folio_set_bh EXPORT_SYMBOL vmlinux 0x1668c166 bio_split_to_limits EXPORT_SYMBOL vmlinux 0x16742ace vga_switcheroo_lock_ddc EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump @@ -6856,32 +6853,31 @@ EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string EXPORT_SYMBOL vmlinux 0x169c9a93 mmc_retune_pause EXPORT_SYMBOL vmlinux 0x16a0c365 fs_param_is_string -EXPORT_SYMBOL vmlinux 0x16a77862 nd_btt_arena_is_valid EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16b584c3 mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x16c66cb8 inode_set_bytes EXPORT_SYMBOL vmlinux 0x16cb38f4 rtnl_create_link EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table EXPORT_SYMBOL vmlinux 0x16da70d6 devm_mfd_add_devices EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16f6b9d1 __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0x16fc6e9d sockopt_lock_sock EXPORT_SYMBOL vmlinux 0x17085bcf scsi_add_host_with_dma EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17397ae1 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x1747ab6f eth_type_trans EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x1767f88f jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x176c34f2 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x177a82c3 entry_untrain_ret -EXPORT_SYMBOL vmlinux 0x1782860b inode_set_bytes +EXPORT_SYMBOL vmlinux 0x1780784e __tracepoint_kmem_cache_free EXPORT_SYMBOL vmlinux 0x1798aa3d __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x17a9cd63 sync_inodes_sb EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event EXPORT_SYMBOL vmlinux 0x17d01bf9 key_reject_and_link EXPORT_SYMBOL vmlinux 0x17d64422 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x17e09ebf skb_checksum_help EXPORT_SYMBOL vmlinux 0x17e18b95 blk_integrity_compare EXPORT_SYMBOL vmlinux 0x17e50087 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0x17f0df06 generic_listxattr EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip -EXPORT_SYMBOL vmlinux 0x17f3a9f4 bpf_link_put EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0x17fe23c1 device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x180395ef bmap @@ -6889,7 +6885,6 @@ EXPORT_SYMBOL vmlinux 0x1819a3f5 register_sysctl EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace EXPORT_SYMBOL vmlinux 0x184a3488 __ps2_command -EXPORT_SYMBOL vmlinux 0x1864aa26 gpiochip_irq_relres EXPORT_SYMBOL vmlinux 0x187d0c8b sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x188445bb fwnode_irq_get_byname EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write @@ -6897,6 +6892,7 @@ EXPORT_SYMBOL vmlinux 0x189fb9fe pci_dev_get EXPORT_SYMBOL vmlinux 0x18a6e8f4 dev_pm_opp_register_notifier EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18cbc38a devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x18d978e3 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x18dfe43d sock_no_accept EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start @@ -6904,57 +6900,53 @@ EXPORT_SYMBOL vmlinux 0x18fd2c2d __x86_indirect_call_thunk_r13 EXPORT_SYMBOL vmlinux 0x18fdbc3f scsi_get_device_flags_keyed EXPORT_SYMBOL vmlinux 0x190787ba set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x19147726 cad_pid EXPORT_SYMBOL vmlinux 0x1925be2b pnp_unregister_card_driver EXPORT_SYMBOL vmlinux 0x192c595e ip6mr_rule_default EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x192f7194 sock_create_kern -EXPORT_SYMBOL vmlinux 0x194706f9 locks_free_lock EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create EXPORT_SYMBOL vmlinux 0x1956a6cc registered_fb EXPORT_SYMBOL vmlinux 0x1965f17f devm_ioport_map EXPORT_SYMBOL vmlinux 0x197d5b60 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x197da641 __blk_alloc_disk EXPORT_SYMBOL vmlinux 0x197edfc5 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x198318ba jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x198c9d3a locks_copy_lock EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199f8863 nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0x19ae29d3 mount_single EXPORT_SYMBOL vmlinux 0x19b11318 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c30ed7 vme_register_bridge EXPORT_SYMBOL vmlinux 0x19c84e26 d_find_any_alias EXPORT_SYMBOL vmlinux 0x19ce94f3 tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0x19dcf9d8 pcpu_hot +EXPORT_SYMBOL vmlinux 0x19dc6dfe devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe EXPORT_SYMBOL vmlinux 0x19f0d3c4 ilookup5_nowait EXPORT_SYMBOL vmlinux 0x1a0ccdd0 phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x1a1111c5 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x1a17a1fa setup_arg_pages EXPORT_SYMBOL vmlinux 0x1a1becbc blk_mq_delay_run_hw_queues EXPORT_SYMBOL vmlinux 0x1a211dbb fb_validate_mode EXPORT_SYMBOL vmlinux 0x1a301d84 ndisc_send_skb -EXPORT_SYMBOL vmlinux 0x1a383370 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled EXPORT_SYMBOL vmlinux 0x1a461120 skb_dump +EXPORT_SYMBOL vmlinux 0x1a49045e mmc_start_request EXPORT_SYMBOL vmlinux 0x1a5a01dc xfrm_policy_walk_done EXPORT_SYMBOL vmlinux 0x1a5d7ccc sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch EXPORT_SYMBOL vmlinux 0x1a7179c3 dev_mc_add_global EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 -EXPORT_SYMBOL vmlinux 0x1a7b76a6 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x1a7ea32c folio_migrate_mapping -EXPORT_SYMBOL vmlinux 0x1a88f097 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x1a89719c __netlink_ns_capable EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1abe7155 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1ad56743 mmc_sw_reset EXPORT_SYMBOL vmlinux 0x1ad7f36e __phy_write_mmd EXPORT_SYMBOL vmlinux 0x1aded12b pci_enable_msix_range EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist EXPORT_SYMBOL vmlinux 0x1b0cdd33 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x1b163dba __vfs_removexattr EXPORT_SYMBOL vmlinux 0x1b177657 inet_frag_find EXPORT_SYMBOL vmlinux 0x1b231563 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0x1b2c419f free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x1b3d7a08 follow_pfn EXPORT_SYMBOL vmlinux 0x1b3fee75 alloc_fddidev EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton @@ -6971,15 +6963,18 @@ EXPORT_SYMBOL vmlinux 0x1c12489a seq_bprintf EXPORT_SYMBOL vmlinux 0x1c34f132 scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c6a26ba blk_put_queue +EXPORT_SYMBOL vmlinux 0x1c8b692e filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0x1c972c35 ndo_dflt_fdb_del EXPORT_SYMBOL vmlinux 0x1ca2d7a2 pci_request_irq EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1ca54696 vfs_path_lookup EXPORT_SYMBOL vmlinux 0x1cb0bfd8 t10_pi_type3_ip EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb7ad3b user_path_create EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node EXPORT_SYMBOL vmlinux 0x1ce6e022 devm_clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0x1cf20085 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x1cf2d5f4 filemap_fdatawrite_wbc EXPORT_SYMBOL vmlinux 0x1cffa5ae dcb_getrewr_prio_pcp_mask_map EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul EXPORT_SYMBOL vmlinux 0x1d16b711 cros_ec_cmd_xfer_status @@ -6994,13 +6989,14 @@ EXPORT_SYMBOL vmlinux 0x1d996570 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x1dab968b icmpv6_ndo_send EXPORT_SYMBOL vmlinux 0x1db75248 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x1dbb993c xattr_full_name EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap EXPORT_SYMBOL vmlinux 0x1de0eb83 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de83e3b tcp_prot +EXPORT_SYMBOL vmlinux 0x1dec3347 jbd2_fc_end_commit_fallback EXPORT_SYMBOL vmlinux 0x1dfd7e44 seq_escape_mem -EXPORT_SYMBOL vmlinux 0x1dfdb4c4 folio_alloc EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data EXPORT_SYMBOL vmlinux 0x1e12f738 scsi_print_sense_hdr @@ -7015,43 +7011,45 @@ EXPORT_SYMBOL vmlinux 0x1e70de78 dquot_alloc EXPORT_SYMBOL vmlinux 0x1e7c166a tcp_check_req EXPORT_SYMBOL vmlinux 0x1e832d35 tcp_get_md5sig_pool -EXPORT_SYMBOL vmlinux 0x1e871177 remove_arg_zero EXPORT_SYMBOL vmlinux 0x1e957f86 simple_dir_operations EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu EXPORT_SYMBOL vmlinux 0x1ea0dabd qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x1eb50546 path_get EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 EXPORT_SYMBOL vmlinux 0x1efe3a89 is_subdir -EXPORT_SYMBOL vmlinux 0x1f0aa17a mdiobus_c45_write EXPORT_SYMBOL vmlinux 0x1f158159 __do_once_done -EXPORT_SYMBOL vmlinux 0x1f212ef0 __SCK__tp_func_rdpmc EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr EXPORT_SYMBOL vmlinux 0x1f5f2111 config_group_init_type_name EXPORT_SYMBOL vmlinux 0x1f6285f2 phy_free_interrupt EXPORT_SYMBOL vmlinux 0x1f7164f7 irq_set_chip EXPORT_SYMBOL vmlinux 0x1f7a40ff fb_set_var +EXPORT_SYMBOL vmlinux 0x1f9b0415 i2c_get_match_data EXPORT_SYMBOL vmlinux 0x1faf096d tcp_parse_options EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio -EXPORT_SYMBOL vmlinux 0x1fbe72f9 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x1fc1109e proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1fcf44ed nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag EXPORT_SYMBOL vmlinux 0x1fd0dea6 __skb_pad +EXPORT_SYMBOL vmlinux 0x1fdcf0d0 __folio_start_writeback EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x205e4130 dentry_create EXPORT_SYMBOL vmlinux 0x205f28d8 ipv6_chk_custom_prefix EXPORT_SYMBOL vmlinux 0x2065f620 scsi_add_device EXPORT_SYMBOL vmlinux 0x206d184a linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x207e5613 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x2094f103 noop_llseek EXPORT_SYMBOL vmlinux 0x2096fcbd tcp_splice_read EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20aa6c43 mmc_set_data_timeout EXPORT_SYMBOL vmlinux 0x20ad6b83 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x20b9f27d jbd2_log_wait_commit EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d1723c generic_file_direct_write EXPORT_SYMBOL vmlinux 0x20d52d02 rt_dst_clone EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode EXPORT_SYMBOL vmlinux 0x20e842d3 flow_rule_match_ipv4_addrs @@ -7061,38 +7059,39 @@ EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id EXPORT_SYMBOL vmlinux 0x2149877c agp_backend_acquire -EXPORT_SYMBOL vmlinux 0x215521f0 sock_register EXPORT_SYMBOL vmlinux 0x215b7db8 md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x215ecfb6 phy_set_max_speed EXPORT_SYMBOL vmlinux 0x216d6aa3 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x2173a5b8 user_path_at_empty EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset EXPORT_SYMBOL vmlinux 0x219dfbba touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x21a494fd i2c_del_adapter EXPORT_SYMBOL vmlinux 0x21ab3dca tls_server_hello_x509 EXPORT_SYMBOL vmlinux 0x21bc8ba3 pci_bus_write_config_dword EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance EXPORT_SYMBOL vmlinux 0x21c88a2c igrab EXPORT_SYMBOL vmlinux 0x21ce5d43 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e69c84 dma_fence_describe EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight EXPORT_SYMBOL vmlinux 0x21eca5a8 acpi_bus_register_driver EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion EXPORT_SYMBOL vmlinux 0x2211071c tcp_seq_stop EXPORT_SYMBOL vmlinux 0x2212dc91 unregister_qdisc -EXPORT_SYMBOL vmlinux 0x2216683c scsi_device_lookup EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x2242fc99 mmc_sw_reset EXPORT_SYMBOL vmlinux 0x2246cc7d disk_stack_limits EXPORT_SYMBOL vmlinux 0x226acf1a mount_bdev EXPORT_SYMBOL vmlinux 0x226b09eb bio_alloc_bioset EXPORT_SYMBOL vmlinux 0x226df3b0 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x228418fa do_clone_file_range EXPORT_SYMBOL vmlinux 0x22ac3cf9 ps2_drain EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound EXPORT_SYMBOL vmlinux 0x22c7b2ad skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x22d2718f tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x22d2fdb4 netlink_net_capable EXPORT_SYMBOL vmlinux 0x22d3c71a fb_find_mode -EXPORT_SYMBOL vmlinux 0x22d956cc vm_map_ram EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier EXPORT_SYMBOL vmlinux 0x22e6e4fb __scsi_add_device EXPORT_SYMBOL vmlinux 0x22fd725d fscrypt_decrypt_block_inplace @@ -7100,34 +7099,34 @@ EXPORT_SYMBOL vmlinux 0x2319c9b9 neigh_changeaddr EXPORT_SYMBOL vmlinux 0x231cff43 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0x23279dd0 dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x2343190a jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x232c4f23 block_read_full_folio +EXPORT_SYMBOL vmlinux 0x234ba1a9 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init EXPORT_SYMBOL vmlinux 0x236ed190 dcb_setapp EXPORT_SYMBOL vmlinux 0x237467b9 skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x23939213 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x239bdc57 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x23b1c8ff __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path EXPORT_SYMBOL vmlinux 0x23c66e74 tcp_getsockopt EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet EXPORT_SYMBOL vmlinux 0x23dc7f6c hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x23f1b455 sock_alloc_file EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24025bd7 nd_region_release_lane EXPORT_SYMBOL vmlinux 0x240c9446 devm_extcon_unregister_notifier_all EXPORT_SYMBOL vmlinux 0x2417c52f sys_fillrect +EXPORT_SYMBOL vmlinux 0x2427ba44 readahead_expand EXPORT_SYMBOL vmlinux 0x2427caf9 zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x2434d211 __tracepoint_kmalloc -EXPORT_SYMBOL vmlinux 0x24355281 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x243fdf12 iterate_fd EXPORT_SYMBOL vmlinux 0x2441845c tty_kref_put EXPORT_SYMBOL vmlinux 0x24527690 dma_resv_reserve_fences EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245c1651 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x2460dbf3 agp_backend_release -EXPORT_SYMBOL vmlinux 0x24631f1b i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x24790372 sget EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r EXPORT_SYMBOL vmlinux 0x2485f959 netpoll_send_udp -EXPORT_SYMBOL vmlinux 0x248fccb1 dump_skip EXPORT_SYMBOL vmlinux 0x249a0977 dev_loopback_xmit EXPORT_SYMBOL vmlinux 0x24a11e17 cpumask_any_distribute EXPORT_SYMBOL vmlinux 0x24bde5d4 kobject_set_name @@ -7136,27 +7135,31 @@ EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2510dd21 i2c_find_adapter_by_fwnode EXPORT_SYMBOL vmlinux 0x252a7003 seq_lseek EXPORT_SYMBOL vmlinux 0x25321eef prepare_creds EXPORT_SYMBOL vmlinux 0x253577c9 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x2538bd27 pmem_should_map_pages EXPORT_SYMBOL vmlinux 0x253f20c8 seq_printf EXPORT_SYMBOL vmlinux 0x253fc582 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x2557684e vmap EXPORT_SYMBOL vmlinux 0x255f7c66 md_handle_request -EXPORT_SYMBOL vmlinux 0x257adcdc page_cache_next_miss -EXPORT_SYMBOL vmlinux 0x257bf88b vm_iomap_memory EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x2585fc52 __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258c57cc scsi_block_requests EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation EXPORT_SYMBOL vmlinux 0x25935b86 netif_carrier_off EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion EXPORT_SYMBOL vmlinux 0x259a75f5 unregister_key_type +EXPORT_SYMBOL vmlinux 0x25a62dda vfs_setpos +EXPORT_SYMBOL vmlinux 0x25ae4458 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x25afd50e get_unmapped_area EXPORT_SYMBOL vmlinux 0x25cfd6d6 d_instantiate_anon EXPORT_SYMBOL vmlinux 0x25d7a2e7 scm_detach_fds EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr EXPORT_SYMBOL vmlinux 0x25df957d dcache_readdir EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25edccfe i2c_smbus_write_word_data EXPORT_SYMBOL vmlinux 0x25f47b1f __register_chrdev EXPORT_SYMBOL vmlinux 0x26060d14 set_groups EXPORT_SYMBOL vmlinux 0x2608cb10 dev_set_mtu @@ -7165,6 +7168,7 @@ EXPORT_SYMBOL vmlinux 0x262ed89a sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x2648b0de remap_pfn_range EXPORT_SYMBOL vmlinux 0x265986bf qdisc_reset EXPORT_SYMBOL vmlinux 0x266ce89d seq_putc EXPORT_SYMBOL vmlinux 0x267a4a27 sk_stream_wait_memory @@ -7173,22 +7177,20 @@ EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get EXPORT_SYMBOL vmlinux 0x26939647 dev_kfree_skb_any_reason EXPORT_SYMBOL vmlinux 0x269e2ab5 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x26b29ae8 locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier EXPORT_SYMBOL vmlinux 0x26e902f8 nf_ip_checksum EXPORT_SYMBOL vmlinux 0x26ea5bc7 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be -EXPORT_SYMBOL vmlinux 0x2703ef4f alloc_buffer_head EXPORT_SYMBOL vmlinux 0x270b39d0 tcf_qevent_dump EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl EXPORT_SYMBOL vmlinux 0x2714363b inet6_csk_route_req EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler EXPORT_SYMBOL vmlinux 0x27205d4c __blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x272e2ca1 block_truncate_page EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed EXPORT_SYMBOL vmlinux 0x273e984c d_add EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x2747a77f devfreq_get_freq_range EXPORT_SYMBOL vmlinux 0x274c7310 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x27561ae7 configfs_undepend_item EXPORT_SYMBOL vmlinux 0x2759448b file_remove_privs @@ -7201,38 +7203,38 @@ EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse EXPORT_SYMBOL vmlinux 0x278d439e tls_client_hello_anon -EXPORT_SYMBOL vmlinux 0x27ab832a posix_test_lock -EXPORT_SYMBOL vmlinux 0x27b50372 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x27a73cbb __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource EXPORT_SYMBOL vmlinux 0x27e043eb phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x27e552e1 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x27eae1bb sk_free -EXPORT_SYMBOL vmlinux 0x27f87030 vme_irq_generate EXPORT_SYMBOL vmlinux 0x2801a22f proc_dointvec_minmax EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x2819af20 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x28339bf7 dcb_ieee_getapp_mask EXPORT_SYMBOL vmlinux 0x2840abc7 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0x2847119d inet6_ioctl EXPORT_SYMBOL vmlinux 0x284ba24b register_framebuffer EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 EXPORT_SYMBOL vmlinux 0x28500e13 proc_douintvec -EXPORT_SYMBOL vmlinux 0x285bb0bb stream_open EXPORT_SYMBOL vmlinux 0x285e734e bio_init_clone -EXPORT_SYMBOL vmlinux 0x2860ef8d __SCK__tp_func_write_msr EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 EXPORT_SYMBOL vmlinux 0x287f4a68 register_fib_notifier -EXPORT_SYMBOL vmlinux 0x288cd113 sock_alloc +EXPORT_SYMBOL vmlinux 0x288c882e generic_listxattr EXPORT_SYMBOL vmlinux 0x28c088cc genlmsg_put +EXPORT_SYMBOL vmlinux 0x28c612dc nd_device_notify EXPORT_SYMBOL vmlinux 0x28d6b688 redirty_page_for_writepage EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28ff790f find_vma_intersection EXPORT_SYMBOL vmlinux 0x2909c947 pci_disable_ptm EXPORT_SYMBOL vmlinux 0x2909db87 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x2915ad2d mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x29198b27 flow_block_cb_priv EXPORT_SYMBOL vmlinux 0x291cfa70 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x291dfd67 folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x292c32e4 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi -EXPORT_SYMBOL vmlinux 0x29351571 register_filesystem EXPORT_SYMBOL vmlinux 0x2936b4e2 netdev_alert EXPORT_SYMBOL vmlinux 0x29579ffb netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0x29591bd8 xfrm_policy_bysel_ctx @@ -7243,6 +7245,7 @@ EXPORT_SYMBOL vmlinux 0x296edb39 register_tcf_proto_ops EXPORT_SYMBOL vmlinux 0x297445b6 __free_pages EXPORT_SYMBOL vmlinux 0x29781620 param_get_charp +EXPORT_SYMBOL vmlinux 0x297e5194 nd_pfn_validate EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type EXPORT_SYMBOL vmlinux 0x29ddb1ff pm860x_set_bits EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack @@ -7251,10 +7254,11 @@ EXPORT_SYMBOL vmlinux 0x29f1621a inode_owner_or_capable EXPORT_SYMBOL vmlinux 0x29f8a5a4 request_key_tag EXPORT_SYMBOL vmlinux 0x2a008be4 arp_tbl -EXPORT_SYMBOL vmlinux 0x2a21d6d4 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2a1d784f jbd2_journal_update_sb_errno EXPORT_SYMBOL vmlinux 0x2a299f09 scsi_partsize EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature EXPORT_SYMBOL vmlinux 0x2a3371aa __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x2a3bff01 jbd2_journal_abort EXPORT_SYMBOL vmlinux 0x2a458fca device_match_acpi_handle EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get @@ -7269,22 +7273,22 @@ EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize EXPORT_SYMBOL vmlinux 0x2aa8a8aa tcp_rtx_synack EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2abd39d1 __bforget EXPORT_SYMBOL vmlinux 0x2ac75816 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0x2ac9766f __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x2acb4eaf __x86_indirect_call_thunk_r11 -EXPORT_SYMBOL vmlinux 0x2ad875a4 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0x2ade36af dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x2aedb18f thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x2aee6360 alloc_pages EXPORT_SYMBOL vmlinux 0x2b04e002 intel_gmch_probe EXPORT_SYMBOL vmlinux 0x2b06cdc9 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x2b2c1d07 filemap_get_folios EXPORT_SYMBOL vmlinux 0x2b3707d5 tcf_exts_init_ex EXPORT_SYMBOL vmlinux 0x2b4bcf68 from_kuid_munged EXPORT_SYMBOL vmlinux 0x2b505c13 security_inode_getsecctx EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask EXPORT_SYMBOL vmlinux 0x2b77315f page_pool_get_stats -EXPORT_SYMBOL vmlinux 0x2b84a49e vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x2b884e4f tcf_unregister_action -EXPORT_SYMBOL vmlinux 0x2b8d0fc3 d_path EXPORT_SYMBOL vmlinux 0x2b958c99 rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0x2b9808c6 rio_query_mport EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock @@ -7296,28 +7300,24 @@ EXPORT_SYMBOL vmlinux 0x2bb7c05d __x86_indirect_call_thunk_rsi EXPORT_SYMBOL vmlinux 0x2bbdfb4d blk_mq_init_queue EXPORT_SYMBOL vmlinux 0x2bbe57c5 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x2bc4cf5f inode_add_bytes EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset EXPORT_SYMBOL vmlinux 0x2bd80d29 xfrm_trans_queue_net EXPORT_SYMBOL vmlinux 0x2bed2a2b rtnl_configure_link EXPORT_SYMBOL vmlinux 0x2c03dd6d __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x2c03e1d1 kill_block_super -EXPORT_SYMBOL vmlinux 0x2c0a51f2 has_capability EXPORT_SYMBOL vmlinux 0x2c0d2738 input_unregister_handler EXPORT_SYMBOL vmlinux 0x2c178e1a dquot_disable EXPORT_SYMBOL vmlinux 0x2c1ff5f4 blk_queue_update_dma_pad EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar EXPORT_SYMBOL vmlinux 0x2c33f093 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x2c3915b6 block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c55d668 is_nd_dax EXPORT_SYMBOL vmlinux 0x2c593717 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0x2c603a3d tty_unregister_device -EXPORT_SYMBOL vmlinux 0x2c650639 get_unmapped_area EXPORT_SYMBOL vmlinux 0x2c65216f scsi_remove_target +EXPORT_SYMBOL vmlinux 0x2c6e2e5b __find_get_block EXPORT_SYMBOL vmlinux 0x2c72fc32 proc_mkdir -EXPORT_SYMBOL vmlinux 0x2c805031 ip6_dst_check EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c96835f __folio_lock EXPORT_SYMBOL vmlinux 0x2c96d045 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0x2cb54a61 vga_get EXPORT_SYMBOL vmlinux 0x2cbab619 amd_iommu_complete_ppr @@ -7332,7 +7332,6 @@ EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug EXPORT_SYMBOL vmlinux 0x2cfac492 backlight_device_get_by_name EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d17cbe8 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0x2d1856ad ip_route_input_noref EXPORT_SYMBOL vmlinux 0x2d18c77c xfrm6_rcv_tnl EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged @@ -7340,10 +7339,10 @@ EXPORT_SYMBOL vmlinux 0x2d342d3b md_bitmap_close_sync EXPORT_SYMBOL vmlinux 0x2d37638a put_fs_context EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d3d5bed fixed_size_llseek EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font EXPORT_SYMBOL vmlinux 0x2d5240e6 phy_start +EXPORT_SYMBOL vmlinux 0x2d530d7c inode_io_list_del EXPORT_SYMBOL vmlinux 0x2d55bc3a con_copy_unimap EXPORT_SYMBOL vmlinux 0x2d61b4bc clk_get EXPORT_SYMBOL vmlinux 0x2d8fe6ba genphy_check_and_restart_aneg @@ -7358,15 +7357,14 @@ EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align EXPORT_SYMBOL vmlinux 0x2de42fd4 setattr_prepare EXPORT_SYMBOL vmlinux 0x2de776ff configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x2dec1b45 mdiobus_c45_read EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write EXPORT_SYMBOL vmlinux 0x2e0a637d acpi_walk_resources EXPORT_SYMBOL vmlinux 0x2e16ab8a __qdisc_calculate_pkt_len EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2da06f dm_table_get_size -EXPORT_SYMBOL vmlinux 0x2e32360f __tracepoint_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x2e3688f7 neigh_for_each -EXPORT_SYMBOL vmlinux 0x2e3842b3 i2c_find_device_by_fwnode EXPORT_SYMBOL vmlinux 0x2e3a0f63 netif_skb_features EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e3cd9ea fault_in_iov_iter_readable @@ -7375,35 +7373,38 @@ EXPORT_SYMBOL vmlinux 0x2e49f384 tcp_time_wait EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put EXPORT_SYMBOL vmlinux 0x2e6eef20 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x2e7047fa __folio_put +EXPORT_SYMBOL vmlinux 0x2e7bf8a4 sock_release EXPORT_SYMBOL vmlinux 0x2e8bb558 phy_device_remove -EXPORT_SYMBOL vmlinux 0x2e903f12 __tracepoint_spi_transfer_start EXPORT_SYMBOL vmlinux 0x2e94e407 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x2ea35283 __lock_buffer EXPORT_SYMBOL vmlinux 0x2ea395e1 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x2ead8674 __folio_batch_release EXPORT_SYMBOL vmlinux 0x2eae1887 param_get_short +EXPORT_SYMBOL vmlinux 0x2eb1cd1b vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0x2eb9fd81 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x2ec42f68 input_allocate_device -EXPORT_SYMBOL vmlinux 0x2ec6addf page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set EXPORT_SYMBOL vmlinux 0x2ec9e4f4 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x2edaf218 dump_emit EXPORT_SYMBOL vmlinux 0x2eec26c1 blk_integrity_unregister EXPORT_SYMBOL vmlinux 0x2ef03729 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x2f02d13c filemap_check_errors EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f4f63e2 vme_unregister_driver EXPORT_SYMBOL vmlinux 0x2f5899bc blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free EXPORT_SYMBOL vmlinux 0x2f77e2fa security_inode_listsecurity EXPORT_SYMBOL vmlinux 0x2f97a907 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x2fb15b87 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x2fcb5c5b __brelse EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2fe64631 block_read_full_folio EXPORT_SYMBOL vmlinux 0x2ff1fb15 ps2_sliced_command EXPORT_SYMBOL vmlinux 0x2ff59853 __inc_zone_page_state EXPORT_SYMBOL vmlinux 0x3011f350 mr_mfc_find_any EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 EXPORT_SYMBOL vmlinux 0x302501aa phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x304ffa08 sock_wake_async +EXPORT_SYMBOL vmlinux 0x3059e7b7 locks_free_lock EXPORT_SYMBOL vmlinux 0x305a68b4 inet_release EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi EXPORT_SYMBOL vmlinux 0x3060084c kthread_bind @@ -7415,47 +7416,40 @@ EXPORT_SYMBOL vmlinux 0x30ac0ebe sk_capable EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 EXPORT_SYMBOL vmlinux 0x30be282e from_kgid -EXPORT_SYMBOL vmlinux 0x30e1f1e2 mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x30ef3ea5 validate_slab_cache EXPORT_SYMBOL vmlinux 0x30f0cf1d udp_gro_receive EXPORT_SYMBOL vmlinux 0x30f950be devm_register_netdev -EXPORT_SYMBOL vmlinux 0x30fbc015 vfs_getattr +EXPORT_SYMBOL vmlinux 0x310028de send_sig EXPORT_SYMBOL vmlinux 0x31212b9b tty_vhangup EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 EXPORT_SYMBOL vmlinux 0x312c9f3f uart_remove_one_port EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 -EXPORT_SYMBOL vmlinux 0x31554e75 find_vma_intersection EXPORT_SYMBOL vmlinux 0x315a2bf5 asm_load_gs_index EXPORT_SYMBOL vmlinux 0x316d1034 dqput EXPORT_SYMBOL vmlinux 0x317c2efc netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x319d47c8 lookup_one_qstr_excl EXPORT_SYMBOL vmlinux 0x31d0538e tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x31d1ec30 processors EXPORT_SYMBOL vmlinux 0x31d40628 tcf_idr_release -EXPORT_SYMBOL vmlinux 0x31dc54ec jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0x31de50f3 skb_copy_bits EXPORT_SYMBOL vmlinux 0x31df5ee9 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x31f0f885 folio_end_writeback EXPORT_SYMBOL vmlinux 0x31f1497e pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x320f62aa invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock EXPORT_SYMBOL vmlinux 0x3216b133 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset EXPORT_SYMBOL vmlinux 0x3228a9c3 xfrm_stateonly_find EXPORT_SYMBOL vmlinux 0x322917f2 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0x322a63c5 netdev_warn -EXPORT_SYMBOL vmlinux 0x322be07e vfs_mkdir EXPORT_SYMBOL vmlinux 0x324741bc mmc_of_parse_clk_phase EXPORT_SYMBOL vmlinux 0x324a69d9 tcp_mtu_to_mss -EXPORT_SYMBOL vmlinux 0x324bbd65 i2c_smbus_read_i2c_block_data -EXPORT_SYMBOL vmlinux 0x324c5845 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0x325ade18 kern_unmount_array EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom EXPORT_SYMBOL vmlinux 0x32654d43 clkdev_drop EXPORT_SYMBOL vmlinux 0x32782883 mount_nodev EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state EXPORT_SYMBOL vmlinux 0x328d50fe configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x328f32d8 scsi_device_put EXPORT_SYMBOL vmlinux 0x32ab1ca8 sock_kmalloc EXPORT_SYMBOL vmlinux 0x32c33315 mipi_dsi_dcs_get_display_brightness EXPORT_SYMBOL vmlinux 0x32cdcb44 page_pool_destroy @@ -7472,13 +7466,11 @@ EXPORT_SYMBOL vmlinux 0x3325d66c d_move EXPORT_SYMBOL vmlinux 0x333bfca1 hdmi_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x333d777f dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x334b0834 nd_pfn_validate EXPORT_SYMBOL vmlinux 0x334cfa94 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x335f7d0e tty_insert_flip_string_flags EXPORT_SYMBOL vmlinux 0x336026ad dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x337e7cdd bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0x33810aca mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x338632e8 serial8250_do_pm EXPORT_SYMBOL vmlinux 0x339831b2 inet_frags_fini @@ -7489,6 +7481,8 @@ EXPORT_SYMBOL vmlinux 0x33dee5aa discard_new_inode EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f511c9 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x33f90951 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r EXPORT_SYMBOL vmlinux 0x33fd9da4 acpi_get_gpe_device EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field @@ -7496,42 +7490,36 @@ EXPORT_SYMBOL vmlinux 0x3408c6db seq_pad EXPORT_SYMBOL vmlinux 0x340f46fc param_ops_bool EXPORT_SYMBOL vmlinux 0x34194c33 peernet2id -EXPORT_SYMBOL vmlinux 0x342274da sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x343aa1c4 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0x343b4e47 inet_csk_prepare_forced_close EXPORT_SYMBOL vmlinux 0x3441445f msrs_free -EXPORT_SYMBOL vmlinux 0x345b685c __i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x347655ba blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x347be039 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x348ff016 __folio_start_writeback -EXPORT_SYMBOL vmlinux 0x349aea96 register_console EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd EXPORT_SYMBOL vmlinux 0x34a4413b mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0x34a7e751 mdiobus_register_device EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger -EXPORT_SYMBOL vmlinux 0x3511c662 i2c_transfer EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier EXPORT_SYMBOL vmlinux 0x351dcf48 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x3529eb10 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x351ea55c vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x352894cd __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm EXPORT_SYMBOL vmlinux 0x35774c3f truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x357f98ea sync_inodes_sb EXPORT_SYMBOL vmlinux 0x35963413 dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35bbccc6 dentry_open -EXPORT_SYMBOL vmlinux 0x35c65d80 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x35a8ed2e vfs_get_link +EXPORT_SYMBOL vmlinux 0x35ad98f9 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x35c9dce8 filemap_invalidate_unlock_two EXPORT_SYMBOL vmlinux 0x35cd4290 __sock_i_ino -EXPORT_SYMBOL vmlinux 0x35d897ce folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0x35dc3fc1 posix_lock_file EXPORT_SYMBOL vmlinux 0x35ed93c2 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x35ef8a2c fb_set_cmap +EXPORT_SYMBOL vmlinux 0x35ff5c6b sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x36038449 get_task_cred EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask EXPORT_SYMBOL vmlinux 0x3612f619 dm_table_get_md @@ -7545,16 +7533,14 @@ EXPORT_SYMBOL vmlinux 0x364c511d phy_validate_pause EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x365f4f88 kernel_sock_shutdown EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init -EXPORT_SYMBOL vmlinux 0x3673462f jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x36853bb3 devm_clk_get EXPORT_SYMBOL vmlinux 0x3696bc8a single_open EXPORT_SYMBOL vmlinux 0x36ad127c dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36b91cf2 folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0x36c50e85 nf_unregister_sockopt -EXPORT_SYMBOL vmlinux 0x36f8d3f2 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x370b7555 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x370c53bf nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue EXPORT_SYMBOL vmlinux 0x371dc9ad dma_resv_replace_fences EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait @@ -7562,8 +7548,8 @@ EXPORT_SYMBOL vmlinux 0x373ad86b dma_async_device_register EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3772e6b0 blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x3795eaca setup_new_exec EXPORT_SYMBOL vmlinux 0x3795f1ac key_move EXPORT_SYMBOL vmlinux 0x379812f0 xfrm_state_add EXPORT_SYMBOL vmlinux 0x37a6416a sg_miter_stop @@ -7571,32 +7557,40 @@ EXPORT_SYMBOL vmlinux 0x37b3dead netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info EXPORT_SYMBOL vmlinux 0x37bd1ef6 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x37bd2ad9 trace_event_printf EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d2db8e unregister_filesystem EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date EXPORT_SYMBOL vmlinux 0x37e3fadc vga_switcheroo_fini_domain_pm_ops EXPORT_SYMBOL vmlinux 0x37e92440 shrink_dcache_sb EXPORT_SYMBOL vmlinux 0x37f1dd62 netif_napi_add_weight EXPORT_SYMBOL vmlinux 0x37f7e133 eth_header +EXPORT_SYMBOL vmlinux 0x38007a82 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x3805fe54 __vfs_setxattr EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3856ddf2 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x3882ae1e ww_mutex_trylock EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x388e860c netpoll_send_skb EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x3897a373 inode_sub_bytes EXPORT_SYMBOL vmlinux 0x389a3bdf fput EXPORT_SYMBOL vmlinux 0x38a20e60 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x38a4f3c3 blk_mq_complete_request EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a85d84 __post_watch_notification EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38aab936 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x38b2ed91 capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0x38b71110 pci_remove_bus EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38fbc692 block_write_end +EXPORT_SYMBOL vmlinux 0x38ffb8d9 try_module_get EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x39084031 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x391599da mdiobus_unregister_device EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x392f24ec folio_mark_accessed EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p EXPORT_SYMBOL vmlinux 0x3948d486 tcp_sock_set_keepintvl @@ -7604,7 +7598,6 @@ EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r EXPORT_SYMBOL vmlinux 0x3962bdff skb_eth_pop -EXPORT_SYMBOL vmlinux 0x396d2a0d migrate_folio EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug @@ -7623,25 +7616,27 @@ EXPORT_SYMBOL vmlinux 0x3a2138d3 vfs_parse_fs_string EXPORT_SYMBOL vmlinux 0x3a24e01b phy_ethtool_get_sset_count EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a46ebe6 filemap_fdatawrite EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked EXPORT_SYMBOL vmlinux 0x3a5fb5f0 netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0x3a78bdca md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x3a79cb08 vme_bus_num EXPORT_SYMBOL vmlinux 0x3a7ef2dc handshake_genl_put -EXPORT_SYMBOL vmlinux 0x3a963e3a jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x3a8d148f vme_lm_request EXPORT_SYMBOL vmlinux 0x3a9fc600 dst_discard_out EXPORT_SYMBOL vmlinux 0x3aab8795 max8998_bulk_write EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ab90eed kern_path EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region EXPORT_SYMBOL vmlinux 0x3ade482a flow_block_cb_setup_simple EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3ae75330 vme_irq_free +EXPORT_SYMBOL vmlinux 0x3ae36fef blk_queue_flag_set EXPORT_SYMBOL vmlinux 0x3aeb1cfc napi_gro_frags -EXPORT_SYMBOL vmlinux 0x3aede490 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0x3af10bec scsi_execute_cmd EXPORT_SYMBOL vmlinux 0x3af2f3d1 sock_ioctl_inout EXPORT_SYMBOL vmlinux 0x3afc3f25 udp_pre_connect @@ -7651,46 +7646,48 @@ EXPORT_SYMBOL vmlinux 0x3b00da82 d_alloc EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler EXPORT_SYMBOL vmlinux 0x3b04b0d3 invalidate_disk +EXPORT_SYMBOL vmlinux 0x3b13590d jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x3b1f1bdb nf_setsockopt EXPORT_SYMBOL vmlinux 0x3b24e9c3 tcp_filter EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode EXPORT_SYMBOL vmlinux 0x3b3b7073 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x3b423410 __copy_user_nocache EXPORT_SYMBOL vmlinux 0x3b42a8f7 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x3b5e6237 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint -EXPORT_SYMBOL vmlinux 0x3b740851 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x3b761924 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x3b718880 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x3b79f331 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x3b80f727 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources EXPORT_SYMBOL vmlinux 0x3b9ca57f phy_drivers_register -EXPORT_SYMBOL vmlinux 0x3b9d0c59 send_sig_mceerr EXPORT_SYMBOL vmlinux 0x3ba0a6ca unregister_cdrom EXPORT_SYMBOL vmlinux 0x3ba2e41f tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0x3ba694cf mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x3bb1b6f4 sock_wfree EXPORT_SYMBOL vmlinux 0x3bb4480b pci_iomap EXPORT_SYMBOL vmlinux 0x3bbc2acb pv_ops -EXPORT_SYMBOL vmlinux 0x3c02c747 audit_log -EXPORT_SYMBOL vmlinux 0x3c0ccb53 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x3be37b16 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x3bee8a65 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link -EXPORT_SYMBOL vmlinux 0x3c20521f follow_up EXPORT_SYMBOL vmlinux 0x3c20d786 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x3c22fb6b __mdiobus_c45_read EXPORT_SYMBOL vmlinux 0x3c3cc010 iw_handler_get_thrspy EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map EXPORT_SYMBOL vmlinux 0x3c43a755 param_set_invbool -EXPORT_SYMBOL vmlinux 0x3c49901e mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x3c7fffad read_cache_folio EXPORT_SYMBOL vmlinux 0x3c97b76b dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x3ca84549 poll_freewait EXPORT_SYMBOL vmlinux 0x3cac1d80 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3cb14b23 register_filesystem EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock +EXPORT_SYMBOL vmlinux 0x3cbaffcf __folio_put EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream EXPORT_SYMBOL vmlinux 0x3cbf1fed dev_kfree_skb_irq_reason EXPORT_SYMBOL vmlinux 0x3cc17fa0 textsearch_destroy EXPORT_SYMBOL vmlinux 0x3cc37535 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x3cd517f1 kill_pid EXPORT_SYMBOL vmlinux 0x3cd7d530 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq EXPORT_SYMBOL vmlinux 0x3d04c78b ___pskb_trim @@ -7704,63 +7701,63 @@ EXPORT_SYMBOL vmlinux 0x3da092b8 dma_fence_get_stub EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start EXPORT_SYMBOL vmlinux 0x3daae96c dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x3dabd08e i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dda0bb3 is_nd_btt EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3ddf616c mmc_set_blocklen EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head EXPORT_SYMBOL vmlinux 0x3e0ad88e input_mt_assign_slots EXPORT_SYMBOL vmlinux 0x3e1e61a3 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x3e32066a prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x3e34c15c netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x3e36a81c reuseport_migrate_sock EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule EXPORT_SYMBOL vmlinux 0x3e3c9dcc dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3e4f4298 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0x3e61fcf9 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x3e642c2b register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3e68df42 __netlink_dump_start EXPORT_SYMBOL vmlinux 0x3e89a2e1 inet_csk_accept EXPORT_SYMBOL vmlinux 0x3e89d919 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x3e8ccade sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0x3e9767ef phy_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x3ea2aa4a dec_zone_page_state EXPORT_SYMBOL vmlinux 0x3ea72a1c vif_device_init -EXPORT_SYMBOL vmlinux 0x3eab83e0 nlmsg_notify EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ede00bb kernel_write EXPORT_SYMBOL vmlinux 0x3ee96c22 rproc_free EXPORT_SYMBOL vmlinux 0x3eebd193 flow_block_cb_decref EXPORT_SYMBOL vmlinux 0x3eef4210 tty_port_close EXPORT_SYMBOL vmlinux 0x3ef68405 may_setattr EXPORT_SYMBOL vmlinux 0x3ef69adf __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x3efa7af1 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id EXPORT_SYMBOL vmlinux 0x3f0b71d2 proto_register EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update EXPORT_SYMBOL vmlinux 0x3f296ced nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x3f3062a7 mmc_hw_reset EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound EXPORT_SYMBOL vmlinux 0x3f3c89c8 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x3f4539cf unlock_rename EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align EXPORT_SYMBOL vmlinux 0x3f6a64e0 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x3f6f099c filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x3f759473 __netdev_notify_peers EXPORT_SYMBOL vmlinux 0x3f86a72b inode_init_once EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access EXPORT_SYMBOL vmlinux 0x3f9061eb security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0x3fa829d8 set_user_nice EXPORT_SYMBOL vmlinux 0x3fb3288c pci_fixup_device EXPORT_SYMBOL vmlinux 0x3fb64103 inode_init_owner EXPORT_SYMBOL vmlinux 0x3fb6c8ac iov_iter_alignment EXPORT_SYMBOL vmlinux 0x3fbd8698 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x3fbf0a5e mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set -EXPORT_SYMBOL vmlinux 0x3fc33559 filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fed9735 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x3ff07027 mdio_bus_type EXPORT_SYMBOL vmlinux 0x3ff3262d __d_lookup_unhash_wake EXPORT_SYMBOL vmlinux 0x400147a0 skb_kill_datagram EXPORT_SYMBOL vmlinux 0x4009e806 ipv4_mtu @@ -7769,54 +7766,55 @@ EXPORT_SYMBOL vmlinux 0x401eef5a blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x401f9a3b neigh_sysctl_register EXPORT_SYMBOL vmlinux 0x40436248 __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0x404daf21 thread_group_exited EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x4058c6bc __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x405ef874 vfs_readlink +EXPORT_SYMBOL vmlinux 0x4061b4b2 sock_create_kern EXPORT_SYMBOL vmlinux 0x406d92d2 dev_load EXPORT_SYMBOL vmlinux 0x40765afe con_is_visible EXPORT_SYMBOL vmlinux 0x407da0dc param_ops_uint -EXPORT_SYMBOL vmlinux 0x4091858b kmalloc_trace EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem EXPORT_SYMBOL vmlinux 0x409bb7e9 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x40a2a23c write_cache_pages EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40ca5f2d ptp_clock_register EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e21b67 __sock_create EXPORT_SYMBOL vmlinux 0x40ea6660 __netif_rx EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc EXPORT_SYMBOL vmlinux 0x40fc7bd0 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x4106d9c2 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x411e8aee sock_from_file EXPORT_SYMBOL vmlinux 0x4120718c scsi_remove_device EXPORT_SYMBOL vmlinux 0x412b095e dm_table_run_md_queue_async EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin EXPORT_SYMBOL vmlinux 0x41362917 rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0x41367ce1 security_sk_clone -EXPORT_SYMBOL vmlinux 0x4147a9ce mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x417c1cd5 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0x417fdcd7 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x417fece2 cdrom_mode_sense EXPORT_SYMBOL vmlinux 0x4188ce72 generic_read_dir EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time EXPORT_SYMBOL vmlinux 0x418b17bd napi_consume_skb +EXPORT_SYMBOL vmlinux 0x4198a2fe jbd2_fc_end_commit EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range EXPORT_SYMBOL vmlinux 0x41a8f9b7 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x41a9bf00 inode_add_bytes EXPORT_SYMBOL vmlinux 0x41b1a1b8 twl6040_set_bits EXPORT_SYMBOL vmlinux 0x41c60ba7 pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x41d54ede xfrm_register_type EXPORT_SYMBOL vmlinux 0x41de6397 netif_rx EXPORT_SYMBOL vmlinux 0x41e0b611 setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0x41e1c831 path_is_under EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x42137e5e vme_master_mmap EXPORT_SYMBOL vmlinux 0x42150844 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4228083e cont_write_begin EXPORT_SYMBOL vmlinux 0x422d9b74 param_set_ullong EXPORT_SYMBOL vmlinux 0x4231d3f8 elv_rb_add EXPORT_SYMBOL vmlinux 0x4238afe2 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x423d461f pci_irq_vector -EXPORT_SYMBOL vmlinux 0x42412b2b filemap_get_folios_tag -EXPORT_SYMBOL vmlinux 0x42413a0d jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x42473e66 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp @@ -7830,12 +7828,9 @@ EXPORT_SYMBOL vmlinux 0x427b0766 dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x42a3c569 rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x42aa7531 rt_mutex_base_init -EXPORT_SYMBOL vmlinux 0x42b3a653 __mdiobus_read EXPORT_SYMBOL vmlinux 0x42b40f16 inet6_release EXPORT_SYMBOL vmlinux 0x42bb5bde ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x42bbabab path_is_under EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42c34b4d mmc_cqe_request_done EXPORT_SYMBOL vmlinux 0x42ca7506 qdisc_watchdog_schedule_range_ns EXPORT_SYMBOL vmlinux 0x42cd612e tcp_mtup_init EXPORT_SYMBOL vmlinux 0x42d75c26 iommu_get_msi_cookie @@ -7844,32 +7839,32 @@ EXPORT_SYMBOL vmlinux 0x42eac349 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307c8e5 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x432bd877 vme_irq_handler EXPORT_SYMBOL vmlinux 0x432eb103 pneigh_lookup EXPORT_SYMBOL vmlinux 0x43361c86 flow_indr_dev_unregister EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer EXPORT_SYMBOL vmlinux 0x433cb0e5 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x43402610 wake_up_process EXPORT_SYMBOL vmlinux 0x43463e34 mipi_dsi_dcs_exit_sleep_mode EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x43607715 __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437a8c91 i2c_get_adapter EXPORT_SYMBOL vmlinux 0x4384633e register_md_cluster_operations EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security EXPORT_SYMBOL vmlinux 0x43863e49 blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x438c6eb0 can_nice EXPORT_SYMBOL vmlinux 0x438f61ee tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x4390f80d i2c_smbus_read_block_data -EXPORT_SYMBOL vmlinux 0x43a1105f vfs_rmdir EXPORT_SYMBOL vmlinux 0x43a2297e pnp_unregister_driver EXPORT_SYMBOL vmlinux 0x43b945ac napi_build_skb EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one +EXPORT_SYMBOL vmlinux 0x43d03868 vfs_llseek EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc EXPORT_SYMBOL vmlinux 0x43d4561e tcp_md5_do_add EXPORT_SYMBOL vmlinux 0x43e05b84 netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0x43e5fc18 elv_rb_del EXPORT_SYMBOL vmlinux 0x43e77162 inet_frags_init EXPORT_SYMBOL vmlinux 0x43f0358e lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x43f8c36d ptp_clock_unregister EXPORT_SYMBOL vmlinux 0x43f9232a mmc_alloc_host EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember EXPORT_SYMBOL vmlinux 0x43fcae1b dev_mc_sync_multiple @@ -7891,12 +7886,11 @@ EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event EXPORT_SYMBOL vmlinux 0x4496c444 flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a5a085 devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz -EXPORT_SYMBOL vmlinux 0x44aeaa76 __SCK__tp_func_kmalloc EXPORT_SYMBOL vmlinux 0x44b8af26 dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x44e9a829 match_token EXPORT_SYMBOL vmlinux 0x44eb8c51 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x44ff46b4 bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450639ab sg_last EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle @@ -7908,7 +7902,6 @@ EXPORT_SYMBOL vmlinux 0x45674d00 inet_get_local_port_range EXPORT_SYMBOL vmlinux 0x456e4598 pci_scan_slot EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45812a6f vmalloc_to_page EXPORT_SYMBOL vmlinux 0x458ac57e tcp_seq_next EXPORT_SYMBOL vmlinux 0x45a7a1c7 csum_and_copy_from_iter EXPORT_SYMBOL vmlinux 0x45bff97e tty_port_lower_dtr_rts @@ -7924,12 +7917,11 @@ EXPORT_SYMBOL vmlinux 0x463b9baf md_wakeup_thread EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header EXPORT_SYMBOL vmlinux 0x464e23a1 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x465582cc set_binfmt +EXPORT_SYMBOL vmlinux 0x4650f56c mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x46572cf9 netdev_set_num_tc EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size EXPORT_SYMBOL vmlinux 0x466c14a7 __delay EXPORT_SYMBOL vmlinux 0x467ac428 dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0x467be4d0 generic_ro_fops EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option EXPORT_SYMBOL vmlinux 0x46a5aa93 pci_bus_add_devices @@ -7939,8 +7931,6 @@ EXPORT_SYMBOL vmlinux 0x46c69a14 pci_unmap_rom EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval EXPORT_SYMBOL vmlinux 0x46d14a90 seq_file_path -EXPORT_SYMBOL vmlinux 0x46d929cb filemap_alloc_folio -EXPORT_SYMBOL vmlinux 0x46d94f79 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table EXPORT_SYMBOL vmlinux 0x47160b25 pci_enable_ptm EXPORT_SYMBOL vmlinux 0x4723dca2 tcf_qevent_destroy @@ -7949,18 +7939,20 @@ EXPORT_SYMBOL vmlinux 0x474ab249 end_page_writeback EXPORT_SYMBOL vmlinux 0x4759173b mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0x4763b366 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x47657e0b devfreq_resume_device EXPORT_SYMBOL vmlinux 0x4766a378 gro_cells_init EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev EXPORT_SYMBOL vmlinux 0x47973dcd rps_may_expire_flow EXPORT_SYMBOL vmlinux 0x47a66615 icmp6_send +EXPORT_SYMBOL vmlinux 0x47b143ac pipe_unlock EXPORT_SYMBOL vmlinux 0x47b8e2b8 tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x47c1cee1 fs_param_is_bool EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier EXPORT_SYMBOL vmlinux 0x47c71cc6 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x47cf4a48 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47f2d367 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x480facbe neigh_update EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq EXPORT_SYMBOL vmlinux 0x48171240 param_set_copystring @@ -7970,7 +7962,7 @@ EXPORT_SYMBOL vmlinux 0x48248dce pin_user_pages_remote EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work EXPORT_SYMBOL vmlinux 0x482b88a8 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x483df545 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x48388772 submit_bh EXPORT_SYMBOL vmlinux 0x4841bdee strnchr EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 @@ -7979,15 +7971,16 @@ EXPORT_SYMBOL vmlinux 0x4866e44d uart_suspend_port EXPORT_SYMBOL vmlinux 0x486d716c __alloc_skb EXPORT_SYMBOL vmlinux 0x4871ebd4 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x4880caa4 send_sig_mceerr EXPORT_SYMBOL vmlinux 0x4887968c xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x489685b6 dev_uc_add EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48a9db65 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x48aac818 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0x48ae4e37 pci_claim_resource EXPORT_SYMBOL vmlinux 0x48af8d39 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x48b22bb3 lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free -EXPORT_SYMBOL vmlinux 0x48bddec9 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node @@ -7997,34 +7990,35 @@ EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x4909a790 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x494af7b0 brioctl_set +EXPORT_SYMBOL vmlinux 0x491c43dc file_open_root EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot EXPORT_SYMBOL vmlinux 0x49504c4f kill_anon_super +EXPORT_SYMBOL vmlinux 0x4952d93c filemap_write_and_wait_range EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume -EXPORT_SYMBOL vmlinux 0x496aee8b devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x496f173c __SCK__tp_func_dma_fence_emit EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits +EXPORT_SYMBOL vmlinux 0x497d2b6f devfreq_update_target EXPORT_SYMBOL vmlinux 0x497f3b83 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x49887319 key_validate -EXPORT_SYMBOL vmlinux 0x4989c6e2 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x499ee22b inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum EXPORT_SYMBOL vmlinux 0x49a7988e phy_modify_paged_changed EXPORT_SYMBOL vmlinux 0x49a904c7 iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0x49adea5d __mdiobus_write +EXPORT_SYMBOL vmlinux 0x49ae73ac bpf_map_get EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan EXPORT_SYMBOL vmlinux 0x49c07227 fscrypt_decrypt_bio EXPORT_SYMBOL vmlinux 0x49c37c8d get_cached_acl EXPORT_SYMBOL vmlinux 0x49c9b74b amd_iommu_domain_enable_v2 EXPORT_SYMBOL vmlinux 0x49cec428 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x49db2df8 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x49db5f5d pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x49e0dd5f clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x49ea4043 follow_down_one -EXPORT_SYMBOL vmlinux 0x49f3b04f wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0x49e97418 vfs_fsync +EXPORT_SYMBOL vmlinux 0x49f3bf46 kmalloc_trace EXPORT_SYMBOL vmlinux 0x49fd2625 devm_memremap EXPORT_SYMBOL vmlinux 0x4a01a101 unpin_user_pages EXPORT_SYMBOL vmlinux 0x4a118fe4 pps_unregister_source -EXPORT_SYMBOL vmlinux 0x4a284a47 shmem_aops EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout EXPORT_SYMBOL vmlinux 0x4a3db820 deactivate_locked_super EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 @@ -8032,13 +8026,13 @@ EXPORT_SYMBOL vmlinux 0x4a58329d vga_switcheroo_register_client EXPORT_SYMBOL vmlinux 0x4a5eae51 pci_unregister_driver EXPORT_SYMBOL vmlinux 0x4a7e4ebc set_disk_ro -EXPORT_SYMBOL vmlinux 0x4a84727e i2c_add_adapter EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest EXPORT_SYMBOL vmlinux 0x4a991a4d pcie_get_width_cap EXPORT_SYMBOL vmlinux 0x4aab3691 blk_queue_max_segments EXPORT_SYMBOL vmlinux 0x4ac921a0 dev_getfirstbyhwtype EXPORT_SYMBOL vmlinux 0x4ad2728e __neigh_create EXPORT_SYMBOL vmlinux 0x4adfda4b arp_xmit +EXPORT_SYMBOL vmlinux 0x4ae0ab9c nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift EXPORT_SYMBOL vmlinux 0x4aed4faf xfrm_dst_ifdown @@ -8049,14 +8043,14 @@ EXPORT_SYMBOL vmlinux 0x4b19dddd dquot_drop EXPORT_SYMBOL vmlinux 0x4b243008 init_special_inode EXPORT_SYMBOL vmlinux 0x4b2d01a2 timestamp_truncate -EXPORT_SYMBOL vmlinux 0x4b396b69 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x4b3a9bef kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x4b4f898b nd_pfn_probe EXPORT_SYMBOL vmlinux 0x4b557708 tcp_v4_syn_recv_sock EXPORT_SYMBOL vmlinux 0x4b5684cc param_set_int EXPORT_SYMBOL vmlinux 0x4b5e3a47 __get_user_nocheck_1 EXPORT_SYMBOL vmlinux 0x4b63c815 pm8606_osc_disable EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b74e996 vmap EXPORT_SYMBOL vmlinux 0x4b8fcaf7 pnp_request_card_device EXPORT_SYMBOL vmlinux 0x4b93d83c xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x4b97e999 scsi_rescan_device @@ -8065,11 +8059,8 @@ EXPORT_SYMBOL vmlinux 0x4baea030 d_find_alias EXPORT_SYMBOL vmlinux 0x4bb0998a sk_send_sigurg EXPORT_SYMBOL vmlinux 0x4bb118cf devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x4bb211dc i2c_del_adapter EXPORT_SYMBOL vmlinux 0x4bc9999b __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bcc71aa i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x4be03076 __module_get EXPORT_SYMBOL vmlinux 0x4be1e34e kmem_cache_alloc_node EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bfe416f genphy_loopback @@ -8081,18 +8072,19 @@ EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast EXPORT_SYMBOL vmlinux 0x4c57bb39 flow_rule_match_icmp EXPORT_SYMBOL vmlinux 0x4c68f8fb fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x4c84285a locks_delete_block EXPORT_SYMBOL vmlinux 0x4c88f6f2 seg6_hmac_info_add EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base -EXPORT_SYMBOL vmlinux 0x4cab4ca9 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0x4cb0d028 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0x4cb893de filp_close EXPORT_SYMBOL vmlinux 0x4cc1c443 gnet_stats_start_copy EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs EXPORT_SYMBOL vmlinux 0x4d02da2e ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x4d065318 i2c_get_adapter_by_fwnode EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d2f200d vme_slave_request +EXPORT_SYMBOL vmlinux 0x4d345f27 sock_alloc EXPORT_SYMBOL vmlinux 0x4d360864 serio_open EXPORT_SYMBOL vmlinux 0x4d5afa6c xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x4d5efb43 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x4d690ff7 rtnetlink_put_metrics EXPORT_SYMBOL vmlinux 0x4d75c108 skb_vlan_untag EXPORT_SYMBOL vmlinux 0x4d908097 sock_no_shutdown @@ -8119,37 +8111,32 @@ EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e718986 __nd_driver_register EXPORT_SYMBOL vmlinux 0x4e73361e crypto_kdf108_ctr_generate EXPORT_SYMBOL vmlinux 0x4e9437ca drop_nlink +EXPORT_SYMBOL vmlinux 0x4e9713f3 lease_get_mtime EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset EXPORT_SYMBOL vmlinux 0x4ea78bab __x86_indirect_call_thunk_r15 EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init EXPORT_SYMBOL vmlinux 0x4eb65145 skb_orphan_partial EXPORT_SYMBOL vmlinux 0x4ec41bb4 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x4ec49c40 folio_create_empty_buffers EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 EXPORT_SYMBOL vmlinux 0x4ef4e165 tcf_classify EXPORT_SYMBOL vmlinux 0x4f01a4a1 pci_pme_active -EXPORT_SYMBOL vmlinux 0x4f1327cb vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x4f1aea08 nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create -EXPORT_SYMBOL vmlinux 0x4f1d01a5 mmc_request_done +EXPORT_SYMBOL vmlinux 0x4f1ff4f1 fd_install EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f3c899f mark_buffer_dirty EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources EXPORT_SYMBOL vmlinux 0x4f58472a single_release -EXPORT_SYMBOL vmlinux 0x4f5f77f9 sock_release EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 EXPORT_SYMBOL vmlinux 0x4f798ca5 key_revoke EXPORT_SYMBOL vmlinux 0x4f7a306d bioset_init -EXPORT_SYMBOL vmlinux 0x4f903039 __tracepoint_rdpmc -EXPORT_SYMBOL vmlinux 0x4f96852b vfs_mkobj -EXPORT_SYMBOL vmlinux 0x4fa6768a lookup_one_len EXPORT_SYMBOL vmlinux 0x4fa6ee40 zero_fill_bio EXPORT_SYMBOL vmlinux 0x4fb2f16a scsi_scan_host EXPORT_SYMBOL vmlinux 0x4fc89c98 tty_do_resize -EXPORT_SYMBOL vmlinux 0x4fdbde67 jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command EXPORT_SYMBOL vmlinux 0x4ffc7d55 tcp_ld_RTO_revert EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security @@ -8159,6 +8146,7 @@ EXPORT_SYMBOL vmlinux 0x5028bcf3 xfrm_policy_delete EXPORT_SYMBOL vmlinux 0x502f5001 xfrm_state_walk EXPORT_SYMBOL vmlinux 0x503da70b mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x5041238f generic_fadvise EXPORT_SYMBOL vmlinux 0x504830c6 build_skb EXPORT_SYMBOL vmlinux 0x5056a1ea copy_page_to_iter_nofault EXPORT_SYMBOL vmlinux 0x505a9c29 mdio_driver_unregister @@ -8180,21 +8168,20 @@ EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del EXPORT_SYMBOL vmlinux 0x50eaa16d padata_alloc EXPORT_SYMBOL vmlinux 0x50eed630 ps2_end_command -EXPORT_SYMBOL vmlinux 0x50f83d04 nd_integrity_init EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq EXPORT_SYMBOL vmlinux 0x5102d2fb d_genocide EXPORT_SYMBOL vmlinux 0x51142c54 xen_free_unpopulated_pages EXPORT_SYMBOL vmlinux 0x511fd9e3 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x5136f640 __SCK__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec EXPORT_SYMBOL vmlinux 0x513e1c14 param_set_uint EXPORT_SYMBOL vmlinux 0x51454833 xfrm_unregister_type_offload EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51541bb8 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5169ac7c page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x516e1de8 pci_release_regions EXPORT_SYMBOL vmlinux 0x51798001 __invalidate_device -EXPORT_SYMBOL vmlinux 0x519684aa kernel_read EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh EXPORT_SYMBOL vmlinux 0x51bd1934 flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0x51c73d5e dev_addr_add @@ -8203,43 +8190,37 @@ EXPORT_SYMBOL vmlinux 0x51d59b1a ip_defrag EXPORT_SYMBOL vmlinux 0x51db3d03 dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x51e21dd0 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x51eb02ef read_cache_page_gfp EXPORT_SYMBOL vmlinux 0x51ed76a3 qdisc_offload_dump_helper EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 EXPORT_SYMBOL vmlinux 0x520b4b52 vlan_for_each EXPORT_SYMBOL vmlinux 0x520e97c4 proc_dostring EXPORT_SYMBOL vmlinux 0x5210cc21 sock_i_ino EXPORT_SYMBOL vmlinux 0x5231ff87 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x523941eb __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x523b885a is_nd_pfn EXPORT_SYMBOL vmlinux 0x526130df posix_acl_chmod EXPORT_SYMBOL vmlinux 0x526e4ad2 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x5293848c filemap_range_has_page EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write EXPORT_SYMBOL vmlinux 0x529b1636 devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52eb6d54 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x52eba557 create_empty_buffers EXPORT_SYMBOL vmlinux 0x52ec1b68 migrate_vma_pages EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f1d013 tcf_exts_destroy EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend EXPORT_SYMBOL vmlinux 0x530f38ea mmc_run_bkops EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x53168ca1 pid_task EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid EXPORT_SYMBOL vmlinux 0x5322663e acpi_get_handle EXPORT_SYMBOL vmlinux 0x532fcbe4 __nla_put_nohdr EXPORT_SYMBOL vmlinux 0x53317aff phy_suspend EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x533d9d2e scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x534cf6a1 uart_unregister_driver EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off EXPORT_SYMBOL vmlinux 0x53589348 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x53680756 kthread_create_worker EXPORT_SYMBOL vmlinux 0x538c5372 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x538db7f4 devfreq_resume_device EXPORT_SYMBOL vmlinux 0x53959208 phy_connect_direct EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit EXPORT_SYMBOL vmlinux 0x53b954a2 up_read @@ -8257,9 +8238,9 @@ EXPORT_SYMBOL vmlinux 0x54727b1c param_set_charp EXPORT_SYMBOL vmlinux 0x5474a562 ipv6_chk_addr_and_flags EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x548142a9 generic_perform_write EXPORT_SYMBOL vmlinux 0x5481707b configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x549fabee empty_aops -EXPORT_SYMBOL vmlinux 0x54a63057 jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer @@ -8270,36 +8251,31 @@ EXPORT_SYMBOL vmlinux 0x54d025a7 nf_log_packet EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x54f7f41e lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0x54fd95dc vmf_insert_pfn EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5516b106 __devm_release_region EXPORT_SYMBOL vmlinux 0x551a50e8 qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x551b6581 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color EXPORT_SYMBOL vmlinux 0x5526265e dquot_resume EXPORT_SYMBOL vmlinux 0x552d275e ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x552f6318 vfs_iter_read EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x5550eb47 i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x555209da clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x5563fc5e to_nd_pfn EXPORT_SYMBOL vmlinux 0x556422b3 ioremap_cache EXPORT_SYMBOL vmlinux 0x556cca46 x86_apple_machine -EXPORT_SYMBOL vmlinux 0x5572d26a __block_write_begin +EXPORT_SYMBOL vmlinux 0x558636a5 audit_log_start EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey EXPORT_SYMBOL vmlinux 0x55931cd3 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x55bfbd61 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x55cb3ca5 pci_bus_type EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x55e464a8 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x55f6161d rawv6_mh_filter_register EXPORT_SYMBOL vmlinux 0x55f7e7a7 ethtool_virtdev_set_link_ksettings EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot -EXPORT_SYMBOL vmlinux 0x55fc57fe devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x5601be3f md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x560bfaf1 scsi_device_get EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user EXPORT_SYMBOL vmlinux 0x563a8bf5 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x563e0e92 mmc_erase EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register EXPORT_SYMBOL vmlinux 0x5654275c __seq_open_private @@ -8313,25 +8289,28 @@ EXPORT_SYMBOL vmlinux 0x56c152c6 in_dev_finish_destroy EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg EXPORT_SYMBOL vmlinux 0x56d5da47 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x5708ba30 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x5708c173 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x572d61ba unix_destruct_scm EXPORT_SYMBOL vmlinux 0x573f2162 give_up_console EXPORT_SYMBOL vmlinux 0x57407207 scsi_register_driver EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57590cf5 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x57607d2d jbd2_journal_clear_features EXPORT_SYMBOL vmlinux 0x5763a1c0 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x576567f8 putname EXPORT_SYMBOL vmlinux 0x57689789 acpi_device_set_power EXPORT_SYMBOL vmlinux 0x57693acd phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x5775fd8e amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x57864df5 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x5789b4d8 __SCK__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x578b664f ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x578d3c75 i2c_smbus_read_byte EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy EXPORT_SYMBOL vmlinux 0x57ab42f8 simple_rename -EXPORT_SYMBOL vmlinux 0x57acb93b alloc_pages EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write EXPORT_SYMBOL vmlinux 0x57bcbaea __x86_indirect_call_thunk_r14 +EXPORT_SYMBOL vmlinux 0x57c8cf1d sock_create EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize EXPORT_SYMBOL vmlinux 0x580ddddd security_inode_copy_up EXPORT_SYMBOL vmlinux 0x580e3d99 __neigh_for_each_release @@ -8342,44 +8321,45 @@ EXPORT_SYMBOL vmlinux 0x5849f541 tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x5850b716 mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0x585cdd4d sync_blockdev +EXPORT_SYMBOL vmlinux 0x58610f10 ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0x586c690f set_posix_acl EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587d0a97 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x587e32c9 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key EXPORT_SYMBOL vmlinux 0x58860f08 md_bitmap_free EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit EXPORT_SYMBOL vmlinux 0x589e20e1 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x589f4bab rw_verify_area EXPORT_SYMBOL vmlinux 0x58a78409 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard EXPORT_SYMBOL vmlinux 0x58bfccb4 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x58d891b9 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x58d57713 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0x58dec8fb proc_create_data EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io EXPORT_SYMBOL vmlinux 0x58e53d36 page_pool_alloc_pages EXPORT_SYMBOL vmlinux 0x58e81c3e xfrm_state_update +EXPORT_SYMBOL vmlinux 0x59028fd5 block_commit_write EXPORT_SYMBOL vmlinux 0x59138fb9 ndo_dflt_fdb_dump EXPORT_SYMBOL vmlinux 0x591cee56 drop_super -EXPORT_SYMBOL vmlinux 0x59282806 mntput -EXPORT_SYMBOL vmlinux 0x5928cc1e kernel_getsockname EXPORT_SYMBOL vmlinux 0x59292d5b blkdev_put +EXPORT_SYMBOL vmlinux 0x592a928f mmc_can_discard EXPORT_SYMBOL vmlinux 0x593a4427 vga_switcheroo_unregister_client EXPORT_SYMBOL vmlinux 0x593ca070 __mod_zone_page_state EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x59412f24 writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x59428240 __ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x594b7456 seg6_hmac_info_lookup EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map EXPORT_SYMBOL vmlinux 0x5954d48f shrink_dcache_parent EXPORT_SYMBOL vmlinux 0x5968dc6d proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5991214c generic_write_end +EXPORT_SYMBOL vmlinux 0x5969f992 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated EXPORT_SYMBOL vmlinux 0x59d72481 xsk_tx_completed EXPORT_SYMBOL vmlinux 0x59de7fb1 fb_pan_display -EXPORT_SYMBOL vmlinux 0x59df5be1 send_sig EXPORT_SYMBOL vmlinux 0x59ec0a82 napi_disable EXPORT_SYMBOL vmlinux 0x59f86ead pm860x_reg_write EXPORT_SYMBOL vmlinux 0x5a019a7a phy_do_ioctl @@ -8396,23 +8376,20 @@ EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle EXPORT_SYMBOL vmlinux 0x5a5a2271 __cpu_online_mask EXPORT_SYMBOL vmlinux 0x5a7b1bdb fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x5a7eb199 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x5a90220e rproc_coredump_using_sections EXPORT_SYMBOL vmlinux 0x5a921311 strncmp EXPORT_SYMBOL vmlinux 0x5a94b69b pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x5a984d51 __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x5aa0a30d __bforget EXPORT_SYMBOL vmlinux 0x5aa56c93 gnet_stats_copy_queue EXPORT_SYMBOL vmlinux 0x5aa90ab6 seq_release_private EXPORT_SYMBOL vmlinux 0x5aaa6aad xp_alloc_batch EXPORT_SYMBOL vmlinux 0x5ac01b95 acpi_resource_to_address64 EXPORT_SYMBOL vmlinux 0x5aca89bb mmc_unregister_driver EXPORT_SYMBOL vmlinux 0x5ad564de tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x5adace84 copy_splice_read EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree EXPORT_SYMBOL vmlinux 0x5ae1f82f pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0x5affe503 scsi_host_busy -EXPORT_SYMBOL vmlinux 0x5b128f69 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr EXPORT_SYMBOL vmlinux 0x5b34d9ab sdev_disable_disk_events EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store @@ -8423,32 +8400,30 @@ EXPORT_SYMBOL vmlinux 0x5b5de63b __tty_insert_flip_char EXPORT_SYMBOL vmlinux 0x5b640895 netdev_name_in_use EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x5b6692aa devfreq_update_status EXPORT_SYMBOL vmlinux 0x5b6a1284 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0x5b7bcd69 insert_inode_locked EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk EXPORT_SYMBOL vmlinux 0x5b89ff64 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x5bbef54c remap_pfn_range +EXPORT_SYMBOL vmlinux 0x5bbe8654 is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0x5bc8b6db cfb_fillrect EXPORT_SYMBOL vmlinux 0x5bc8bf57 acpi_notifier_call_chain EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order -EXPORT_SYMBOL vmlinux 0x5bd35746 fget EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create -EXPORT_SYMBOL vmlinux 0x5bd98907 i2c_verify_client EXPORT_SYMBOL vmlinux 0x5bdb3c38 __napi_alloc_skb EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub EXPORT_SYMBOL vmlinux 0x5bf66bc6 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x5c12a505 generic_file_read_iter EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout EXPORT_SYMBOL vmlinux 0x5c35ca4f ipmr_rule_default EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull EXPORT_SYMBOL vmlinux 0x5c48d9d5 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x5c4e9334 __break_lease EXPORT_SYMBOL vmlinux 0x5c97b0c7 flow_rule_match_basic EXPORT_SYMBOL vmlinux 0x5cad3c23 pci_find_resource EXPORT_SYMBOL vmlinux 0x5caea11a bio_chain EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks -EXPORT_SYMBOL vmlinux 0x5ce64b90 sock_create_lite +EXPORT_SYMBOL vmlinux 0x5cd715a9 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x5ce0a65d nd_region_release_lane EXPORT_SYMBOL vmlinux 0x5ced6673 alloc_fcdev EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor EXPORT_SYMBOL vmlinux 0x5cf9e89c blk_execute_rq @@ -8461,8 +8436,7 @@ EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry EXPORT_SYMBOL vmlinux 0x5d5b72bb ipv6_chk_prefix EXPORT_SYMBOL vmlinux 0x5d6b9e4a d_drop -EXPORT_SYMBOL vmlinux 0x5d75077f filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0x5d8463d0 __mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x5d7ed06b i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x5da935bd eth_header_cache_update EXPORT_SYMBOL vmlinux 0x5dc6038c devm_ioremap EXPORT_SYMBOL vmlinux 0x5e02c78b tcp_read_skb @@ -8476,13 +8450,14 @@ EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe EXPORT_SYMBOL vmlinux 0x5e382c98 fb_get_mode EXPORT_SYMBOL vmlinux 0x5e453dd3 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x5e4652e7 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x5e504103 phy_loopback -EXPORT_SYMBOL vmlinux 0x5e5340ed __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x5e52d39f generic_ro_fops EXPORT_SYMBOL vmlinux 0x5e61b883 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x5e698551 jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0x5e753937 __register_nls EXPORT_SYMBOL vmlinux 0x5e77a2a4 udp6_set_csum EXPORT_SYMBOL vmlinux 0x5e7c7a14 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x5e80f2cd mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask @@ -8493,21 +8468,17 @@ EXPORT_SYMBOL vmlinux 0x5ecc06ae rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0x5ecfc4e7 tcf_qevent_validate_change EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed31817 has_capability_noaudit EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun EXPORT_SYMBOL vmlinux 0x5ef3b9f3 param_get_invbool EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow EXPORT_SYMBOL vmlinux 0x5f41e22b input_register_handle -EXPORT_SYMBOL vmlinux 0x5f422edf flush_signals EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x5f5dec5d generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo -EXPORT_SYMBOL vmlinux 0x5fa0db4a mmc_get_card EXPORT_SYMBOL vmlinux 0x5fbc4553 pcim_iomap EXPORT_SYMBOL vmlinux 0x5fbc668f __skb_vlan_pop EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep @@ -8516,15 +8487,12 @@ EXPORT_SYMBOL vmlinux 0x5fcabf6a d_invalidate EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x5ffbc55e vfs_create_mount EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit -EXPORT_SYMBOL vmlinux 0x6009a30f cpufreq_get_policy EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create EXPORT_SYMBOL vmlinux 0x6033466f __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x60436d58 mmc_can_trim EXPORT_SYMBOL vmlinux 0x604bea26 dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent EXPORT_SYMBOL vmlinux 0x605898a1 neigh_sysctl_unregister @@ -8532,17 +8500,21 @@ EXPORT_SYMBOL vmlinux 0x60621bc9 inet6_protos EXPORT_SYMBOL vmlinux 0x6063736f remove_watch_from_object EXPORT_SYMBOL vmlinux 0x606a5fc2 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x607e39f8 locks_init_lock EXPORT_SYMBOL vmlinux 0x608614ea __neigh_set_probe_once EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609d5a68 generic_file_mmap EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off EXPORT_SYMBOL vmlinux 0x60af4f61 pnp_register_driver EXPORT_SYMBOL vmlinux 0x60bbb124 dma_fence_signal_locked EXPORT_SYMBOL vmlinux 0x60c79f63 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x60ca1c98 __check_sticky EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60ee29b0 netlink_set_err EXPORT_SYMBOL vmlinux 0x60f46631 input_copy_abs EXPORT_SYMBOL vmlinux 0x60f549e9 blk_queue_alignment_offset EXPORT_SYMBOL vmlinux 0x60f9f4e9 udp_sk_rx_dst_set @@ -8551,6 +8523,7 @@ EXPORT_SYMBOL vmlinux 0x610756b8 __x86_indirect_call_thunk_rdx EXPORT_SYMBOL vmlinux 0x6109d712 __skb_flow_dissect EXPORT_SYMBOL vmlinux 0x6115ea16 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x6117b119 migrate_folio EXPORT_SYMBOL vmlinux 0x6120d071 inet_getname EXPORT_SYMBOL vmlinux 0x61228961 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit @@ -8562,6 +8535,7 @@ EXPORT_SYMBOL vmlinux 0x6180eab7 page_pool_return_skb_page EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x618bcd35 fget_raw EXPORT_SYMBOL vmlinux 0x619371e9 sockopt_release_sock EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv @@ -8570,6 +8544,7 @@ EXPORT_SYMBOL vmlinux 0x61b843f0 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x61c77750 kmem_cache_alloc_lru EXPORT_SYMBOL vmlinux 0x61cbec46 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x61d24533 generic_copy_file_range EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer EXPORT_SYMBOL vmlinux 0x61f35bb4 rproc_elf_load_segments @@ -8578,37 +8553,29 @@ EXPORT_SYMBOL vmlinux 0x62175a43 xfrm_dev_state_flush EXPORT_SYMBOL vmlinux 0x6217aebb simple_nosetlease EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping -EXPORT_SYMBOL vmlinux 0x6226e15a filemap_fdatawait_range_keep_errors EXPORT_SYMBOL vmlinux 0x62276bb7 flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single EXPORT_SYMBOL vmlinux 0x62329462 simple_getattr EXPORT_SYMBOL vmlinux 0x6235d848 serial8250_register_8250_port EXPORT_SYMBOL vmlinux 0x623c4785 dquot_get_state -EXPORT_SYMBOL vmlinux 0x6249ce0b __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x62523c0c ptp_clock_index EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range -EXPORT_SYMBOL vmlinux 0x62804711 vme_irq_request +EXPORT_SYMBOL vmlinux 0x628361c1 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name EXPORT_SYMBOL vmlinux 0x628c0f8f dma_fence_add_callback EXPORT_SYMBOL vmlinux 0x62a7286b param_get_string -EXPORT_SYMBOL vmlinux 0x62bee233 get_vm_area -EXPORT_SYMBOL vmlinux 0x62c235a2 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x62d91a9a devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x62ce7b3b page_symlink EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x62fad53b devfreq_remove_device -EXPORT_SYMBOL vmlinux 0x6309d710 lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0x62ffdc7e __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x63007b1d submit_bio EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x6339008e open_exec EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x637113f5 filemap_flush EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx EXPORT_SYMBOL vmlinux 0x639e75cd I_BDEV EXPORT_SYMBOL vmlinux 0x63a046b4 dcb_getrewr_prio_dscp_mask_map EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region EXPORT_SYMBOL vmlinux 0x63a81d5f mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x63c8f734 i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0x63d36163 add_watch_to_object EXPORT_SYMBOL vmlinux 0x63d4dc96 gro_find_complete_by_type EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink @@ -8617,14 +8584,12 @@ EXPORT_SYMBOL vmlinux 0x64085995 mipi_dsi_dcs_read EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off EXPORT_SYMBOL vmlinux 0x64145bcf from_kprojid_munged -EXPORT_SYMBOL vmlinux 0x64216483 inode_permission -EXPORT_SYMBOL vmlinux 0x6423311b __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x64204136 vme_init_bridge EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout EXPORT_SYMBOL vmlinux 0x642ec1f9 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0x6430fdf6 phy_attached_info EXPORT_SYMBOL vmlinux 0x64313881 tty_port_init EXPORT_SYMBOL vmlinux 0x64436ae0 phy_ethtool_get_wol -EXPORT_SYMBOL vmlinux 0x6447a18f __nlmsg_put EXPORT_SYMBOL vmlinux 0x6448403d __x86_indirect_call_thunk_rcx EXPORT_SYMBOL vmlinux 0x644e53bf ip_tunnel_header_ops EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free @@ -8636,25 +8601,22 @@ EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c53b71 i2c_del_driver EXPORT_SYMBOL vmlinux 0x64c58601 d_instantiate_new EXPORT_SYMBOL vmlinux 0x64d11af1 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x64db4ee3 ww_mutex_unlock EXPORT_SYMBOL vmlinux 0x64ee3ac9 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x65055851 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x650d184d folio_set_bh +EXPORT_SYMBOL vmlinux 0x64f6429e nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651866b6 skb_pull_data +EXPORT_SYMBOL vmlinux 0x651948c5 finish_open EXPORT_SYMBOL vmlinux 0x651a4139 test_taint EXPORT_SYMBOL vmlinux 0x652032cb mac_pton -EXPORT_SYMBOL vmlinux 0x652caee8 __bread_gfp EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax -EXPORT_SYMBOL vmlinux 0x655030cb netlink_kernel_release EXPORT_SYMBOL vmlinux 0x655a9b4d unregister_framebuffer EXPORT_SYMBOL vmlinux 0x655b66c4 __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x65693efb release_pages EXPORT_SYMBOL vmlinux 0x656a483e phy_start_aneg EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf @@ -8664,11 +8626,9 @@ EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a7eff5 i2c_get_adapter EXPORT_SYMBOL vmlinux 0x65b0e595 md_bitmap_end_sync EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry EXPORT_SYMBOL vmlinux 0x65bcd48f register_qdisc -EXPORT_SYMBOL vmlinux 0x65bd7dda nd_btt_version EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end @@ -8677,13 +8637,14 @@ EXPORT_SYMBOL vmlinux 0x65eea4be arp_send EXPORT_SYMBOL vmlinux 0x65ef6d0f inet6_add_protocol EXPORT_SYMBOL vmlinux 0x65fb03b9 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x6603f32b to_nd_pfn EXPORT_SYMBOL vmlinux 0x660a4a66 inet_del_offload EXPORT_SYMBOL vmlinux 0x6626afca down EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status EXPORT_SYMBOL vmlinux 0x6635a470 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x6636c4c7 __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0x663ccbe2 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0x66453ad9 nla_reserve -EXPORT_SYMBOL vmlinux 0x665749f0 generic_file_direct_write EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt EXPORT_SYMBOL vmlinux 0x666c14c0 __traceiter_dma_fence_emit @@ -8692,19 +8653,19 @@ EXPORT_SYMBOL vmlinux 0x668a6503 unlock_new_inode EXPORT_SYMBOL vmlinux 0x668b19a1 down_read EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x66a0db03 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x66ae9727 vme_slot_num EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0x66b1d662 pcie_get_readrq EXPORT_SYMBOL vmlinux 0x66b39cad padata_do_serial EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0x66df19ae bdev_start_io_acct EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit EXPORT_SYMBOL vmlinux 0x6707797e mipi_dsi_turn_on_peripheral -EXPORT_SYMBOL vmlinux 0x6708b560 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0x670cbd70 sock_no_recvmsg EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx EXPORT_SYMBOL vmlinux 0x6713a8d2 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0x6717fde7 mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0x671b9fe0 devm_devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 EXPORT_SYMBOL vmlinux 0x672d9c45 param_ops_invbool EXPORT_SYMBOL vmlinux 0x6737cf1b get_user_pages_unlocked @@ -8712,25 +8673,22 @@ EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init EXPORT_SYMBOL vmlinux 0x6759f5c7 input_mt_get_slot_by_key EXPORT_SYMBOL vmlinux 0x676a1593 vga_con -EXPORT_SYMBOL vmlinux 0x677032aa __brelse -EXPORT_SYMBOL vmlinux 0x6778161e mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0x677c7c18 fscrypt_has_permitted_context EXPORT_SYMBOL vmlinux 0x677fd6d1 bdi_unregister EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc EXPORT_SYMBOL vmlinux 0x6797d568 intel_gmch_gtt_get EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b52c46 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read EXPORT_SYMBOL vmlinux 0x67cc9453 __x86_indirect_call_thunk_rax EXPORT_SYMBOL vmlinux 0x67e39999 configfs_depend_item EXPORT_SYMBOL vmlinux 0x67e76243 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x67eb33dc jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x67f95e30 __module_put_and_kthread_exit EXPORT_SYMBOL vmlinux 0x6822d558 __dst_destroy_metrics_generic EXPORT_SYMBOL vmlinux 0x682e591f sg_miter_skip EXPORT_SYMBOL vmlinux 0x6843b14e phy_ethtool_get_stats EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x68707723 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x687119ec __tracepoint_read_msr EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval EXPORT_SYMBOL vmlinux 0x689067dd dma_fence_chain_ops EXPORT_SYMBOL vmlinux 0x68a12ab8 rep_movs_alternative @@ -8742,15 +8700,14 @@ EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot EXPORT_SYMBOL vmlinux 0x69094b61 param_ops_long EXPORT_SYMBOL vmlinux 0x69120ccc skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x695ea5a5 __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x696df14c genphy_soft_reset EXPORT_SYMBOL vmlinux 0x696e5a0e ip6_output EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988b7e5 vme_register_bridge EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 -EXPORT_SYMBOL vmlinux 0x69917e03 mount_subtree EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy EXPORT_SYMBOL vmlinux 0x69d5d554 flow_rule_match_ipv6_addrs EXPORT_SYMBOL vmlinux 0x69d666ba fwnode_irq_get @@ -8758,9 +8715,11 @@ EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window EXPORT_SYMBOL vmlinux 0x69fe611b pci_disable_msi EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a2a6b5b ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x6a16f561 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x6a297767 __register_binfmt EXPORT_SYMBOL vmlinux 0x6a49026f pci_read_config_word EXPORT_SYMBOL vmlinux 0x6a497f09 input_free_device +EXPORT_SYMBOL vmlinux 0x6a5b6ebd vfs_create_mount EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask @@ -8768,19 +8727,22 @@ EXPORT_SYMBOL vmlinux 0x6a806f18 scsi_target_resume EXPORT_SYMBOL vmlinux 0x6a8d72c5 netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x6a959012 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x6a9eb5b8 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0x6a9edfd4 ip_cmsg_recv_offset EXPORT_SYMBOL vmlinux 0x6aa8fed9 tcp_peek_len EXPORT_SYMBOL vmlinux 0x6aaa6ace tc_setup_cb_replace EXPORT_SYMBOL vmlinux 0x6abaf228 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x6ad1eb10 generic_buffers_fsync EXPORT_SYMBOL vmlinux 0x6ad9ffa2 neigh_parms_alloc EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset EXPORT_SYMBOL vmlinux 0x6af980a9 from_kprojid -EXPORT_SYMBOL vmlinux 0x6b0f58c9 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user EXPORT_SYMBOL vmlinux 0x6b1d749a __tcf_em_tree_match EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b30c032 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x6b39db08 path_put EXPORT_SYMBOL vmlinux 0x6b5182f4 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable EXPORT_SYMBOL vmlinux 0x6b627328 inet_frag_destroy @@ -8790,24 +8752,29 @@ EXPORT_SYMBOL vmlinux 0x6b981fd1 km_policy_expired EXPORT_SYMBOL vmlinux 0x6ba7958e mmc_can_gpio_ro EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc5d944 sched_autogroup_create_attach EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method EXPORT_SYMBOL vmlinux 0x6be960ee skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x6bf0c014 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x6bf87016 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x6bfa704b generic_fillattr EXPORT_SYMBOL vmlinux 0x6bfadef2 tty_write_room EXPORT_SYMBOL vmlinux 0x6bff5116 crypto_sha512_update EXPORT_SYMBOL vmlinux 0x6c129a44 __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy EXPORT_SYMBOL vmlinux 0x6c343814 nf_unregister_net_hook EXPORT_SYMBOL vmlinux 0x6c52ee0e ip_local_deliver +EXPORT_SYMBOL vmlinux 0x6c551244 vfs_mknod EXPORT_SYMBOL vmlinux 0x6c566983 simple_transaction_release EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb EXPORT_SYMBOL vmlinux 0x6c67ee66 sg_miter_start EXPORT_SYMBOL vmlinux 0x6c6ab77a sock_common_setsockopt EXPORT_SYMBOL vmlinux 0x6c6bbe49 tso_build_data +EXPORT_SYMBOL vmlinux 0x6c8fb365 netlink_broadcast EXPORT_SYMBOL vmlinux 0x6c940de9 handshake_req_private EXPORT_SYMBOL vmlinux 0x6c9d850f mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x6c9d9190 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0x6ca27532 scsi_device_put EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep EXPORT_SYMBOL vmlinux 0x6cccaefb bdi_put @@ -8815,16 +8782,15 @@ EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable EXPORT_SYMBOL vmlinux 0x6d1b3262 mr_vif_seq_next EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d326634 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 EXPORT_SYMBOL vmlinux 0x6d43e4bb pskb_extract EXPORT_SYMBOL vmlinux 0x6d44b2a8 sock_no_listen EXPORT_SYMBOL vmlinux 0x6d58a4d9 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes EXPORT_SYMBOL vmlinux 0x6d5b503e param_get_ulong +EXPORT_SYMBOL vmlinux 0x6d5f47c7 __netlink_kernel_create EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged EXPORT_SYMBOL vmlinux 0x6d5fb4a5 __x86_indirect_jump_thunk_rsp -EXPORT_SYMBOL vmlinux 0x6d7037bf generic_file_write_iter EXPORT_SYMBOL vmlinux 0x6d717ee5 ps2_init EXPORT_SYMBOL vmlinux 0x6d7bca31 vma_set_file EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut @@ -8838,14 +8804,17 @@ EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header EXPORT_SYMBOL vmlinux 0x6ddfd09c unregister_sysctl_table EXPORT_SYMBOL vmlinux 0x6de99ee7 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x6deac688 blk_start_plug EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction EXPORT_SYMBOL vmlinux 0x6df31390 intel_gmch_gtt_clear_range EXPORT_SYMBOL vmlinux 0x6df956d2 dev_pm_opp_unregister_notifier EXPORT_SYMBOL vmlinux 0x6e145aaf clocksource_unregister +EXPORT_SYMBOL vmlinux 0x6e302ccf __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x6e32fe52 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0x6e3dd3ee eth_header_parse_protocol EXPORT_SYMBOL vmlinux 0x6e3fba53 xp_dma_map EXPORT_SYMBOL vmlinux 0x6e457bf7 skb_append -EXPORT_SYMBOL vmlinux 0x6e46df4d i2c_del_driver +EXPORT_SYMBOL vmlinux 0x6e55da12 jbd2_journal_start_commit EXPORT_SYMBOL vmlinux 0x6e5928ab of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run EXPORT_SYMBOL vmlinux 0x6e6a5b78 param_ops_int @@ -8866,24 +8835,27 @@ EXPORT_SYMBOL vmlinux 0x6f3efbf7 sk_alloc EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove +EXPORT_SYMBOL vmlinux 0x6f42ed20 folio_wait_bit_killable EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r EXPORT_SYMBOL vmlinux 0x6f55f6e6 phy_device_create EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address EXPORT_SYMBOL vmlinux 0x6f76e763 vc_resize EXPORT_SYMBOL vmlinux 0x6f7793a5 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x6f7b1013 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x6f8c6e3f scsi_is_host_device EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f945b24 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x6fb3e6b1 __f_setown +EXPORT_SYMBOL vmlinux 0x6fa79ac3 vfs_getattr EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert EXPORT_SYMBOL vmlinux 0x6fbef58e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x6fc1d2a0 folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6ff19169 __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0x6ff1f0fc fscrypt_ioctl_set_policy EXPORT_SYMBOL vmlinux 0x6ff988f5 pci_clear_master EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 EXPORT_SYMBOL vmlinux 0x700c6c17 key_create +EXPORT_SYMBOL vmlinux 0x70120fbf kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x701d0a4e follow_down EXPORT_SYMBOL vmlinux 0x7021819e init_pseudo EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen @@ -8893,7 +8865,6 @@ EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf EXPORT_SYMBOL vmlinux 0x706715cf xsk_tx_release -EXPORT_SYMBOL vmlinux 0x706fc53e jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x70ab4a88 device_get_ethdev_address EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup @@ -8903,8 +8874,8 @@ EXPORT_SYMBOL vmlinux 0x70da70ab neigh_seq_start EXPORT_SYMBOL vmlinux 0x70daa11e dma_fence_remove_callback EXPORT_SYMBOL vmlinux 0x70ddbcc6 simple_setattr -EXPORT_SYMBOL vmlinux 0x70e779e8 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x70e9d52a pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x70efe66c mdiobus_write EXPORT_SYMBOL vmlinux 0x7106361f unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x7109140a pci_get_subsys EXPORT_SYMBOL vmlinux 0x711c7917 d_alloc_parallel @@ -8918,32 +8889,27 @@ EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check EXPORT_SYMBOL vmlinux 0x718398b6 inet6_unregister_protosw EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x71989bda __SetPageMovable EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy EXPORT_SYMBOL vmlinux 0x71a9cfa6 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x71b42ccb vfs_get_fsid EXPORT_SYMBOL vmlinux 0x71bcd5e0 nla_put_nohdr EXPORT_SYMBOL vmlinux 0x71c392d8 netif_set_real_num_queues -EXPORT_SYMBOL vmlinux 0x71d5251d follow_down -EXPORT_SYMBOL vmlinux 0x71e5e4c6 unlock_buffer EXPORT_SYMBOL vmlinux 0x71fb6892 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x71ffb0d9 devm_devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev EXPORT_SYMBOL vmlinux 0x72130ae2 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0x7223c4bd mmc_can_erase EXPORT_SYMBOL vmlinux 0x723e7796 rproc_boot EXPORT_SYMBOL vmlinux 0x7242d5aa cdrom_ioctl EXPORT_SYMBOL vmlinux 0x72494920 nf_hook_slow EXPORT_SYMBOL vmlinux 0x7257bad8 mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0x7267e25d inet_add_offload EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x726ed6ba jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x728049ed mdiobus_read_nested EXPORT_SYMBOL vmlinux 0x729776de gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0x729d7a18 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn EXPORT_SYMBOL vmlinux 0x72cc696d padata_alloc_shell EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift -EXPORT_SYMBOL vmlinux 0x72d8572a blk_start_plug EXPORT_SYMBOL vmlinux 0x72e8b275 pps_lookup_dev EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type EXPORT_SYMBOL vmlinux 0x72f1367c max8925_reg_write @@ -8957,33 +8923,36 @@ EXPORT_SYMBOL vmlinux 0x73332b56 vlan_dev_vlan_id EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7366c5be kern_unmount_array +EXPORT_SYMBOL vmlinux 0x737c3d69 sock_register EXPORT_SYMBOL vmlinux 0x7380dffa argv_split EXPORT_SYMBOL vmlinux 0x738cc0fd show_init_ipc_ns EXPORT_SYMBOL vmlinux 0x739cdae6 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x739df3aa km_state_expired EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73d75445 kmalloc_node_trace +EXPORT_SYMBOL vmlinux 0x73b5e1ee freezing_slow_path +EXPORT_SYMBOL vmlinux 0x73cd0f6f console_start EXPORT_SYMBOL vmlinux 0x73dac48c xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e118fa pmem_sector_size EXPORT_SYMBOL vmlinux 0x73e182a9 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0x73fabce5 pin_user_pages EXPORT_SYMBOL vmlinux 0x74033187 _dev_printk -EXPORT_SYMBOL vmlinux 0x74064500 netlink_capable EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi EXPORT_SYMBOL vmlinux 0x740cfa36 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x740e43ee block_dirty_folio EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x741adf5a remove_arg_zero EXPORT_SYMBOL vmlinux 0x741e99e3 set_create_files_as EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 -EXPORT_SYMBOL vmlinux 0x742a5d74 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x742d5e64 module_put EXPORT_SYMBOL vmlinux 0x743ff4af _dev_info EXPORT_SYMBOL vmlinux 0x7442232d sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0x7443599f generic_file_llseek EXPORT_SYMBOL vmlinux 0x744c22fa nf_hook_slow_list EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74652874 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present EXPORT_SYMBOL vmlinux 0x749ef58d generic_delete_inode @@ -9001,19 +8970,18 @@ EXPORT_SYMBOL vmlinux 0x7507f34b pcie_capability_read_word EXPORT_SYMBOL vmlinux 0x751ef950 dev_get_by_index_rcu EXPORT_SYMBOL vmlinux 0x7520d3d2 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x7525b623 vme_irq_request EXPORT_SYMBOL vmlinux 0x752aaec3 sk_mc_loop EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr EXPORT_SYMBOL vmlinux 0x7535aeff tty_insert_flip_string_fixed_flag EXPORT_SYMBOL vmlinux 0x7538b132 agp_off EXPORT_SYMBOL vmlinux 0x753b8ab6 sock_queue_err_skb EXPORT_SYMBOL vmlinux 0x754d539c strlen -EXPORT_SYMBOL vmlinux 0x754de3f5 kmem_cache_create EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic EXPORT_SYMBOL vmlinux 0x7564873d skb_eth_push EXPORT_SYMBOL vmlinux 0x756ff586 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x75710120 vm_event_states EXPORT_SYMBOL vmlinux 0x75729d37 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x75775704 vme_master_mmap EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object EXPORT_SYMBOL vmlinux 0x7590c32f gnet_stats_finish_copy EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock @@ -9026,15 +8994,13 @@ EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump EXPORT_SYMBOL vmlinux 0x75d5ced3 pci_find_next_bus EXPORT_SYMBOL vmlinux 0x75e16aaa pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x75eadde0 nd_device_unregister EXPORT_SYMBOL vmlinux 0x7609686b set_pages_wb EXPORT_SYMBOL vmlinux 0x760a0f4f yield -EXPORT_SYMBOL vmlinux 0x76106504 vfs_link EXPORT_SYMBOL vmlinux 0x7622322b kset_unregister EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired -EXPORT_SYMBOL vmlinux 0x763e998a __filemap_set_wb_err EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq EXPORT_SYMBOL vmlinux 0x7651e4d3 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x765e503c path_put EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages EXPORT_SYMBOL vmlinux 0x766b79b9 deactivate_super @@ -9046,22 +9012,23 @@ EXPORT_SYMBOL vmlinux 0x769eff00 __ip4_datagram_connect EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check EXPORT_SYMBOL vmlinux 0x76ad461a security_d_instantiate -EXPORT_SYMBOL vmlinux 0x76bb5c1f i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x76c3affa begin_new_exec EXPORT_SYMBOL vmlinux 0x76cc5cde sock_efree -EXPORT_SYMBOL vmlinux 0x76cfc7c5 begin_new_exec -EXPORT_SYMBOL vmlinux 0x76d02867 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x76ccd7d7 default_llseek EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier EXPORT_SYMBOL vmlinux 0x77084810 netdev_features_change +EXPORT_SYMBOL vmlinux 0x7711bd66 user_path_create EXPORT_SYMBOL vmlinux 0x77135333 netdev_update_features EXPORT_SYMBOL vmlinux 0x773257fe ip_mc_inc_group EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x7742c17a vme_init_bridge EXPORT_SYMBOL vmlinux 0x77451886 sock_no_ioctl EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir EXPORT_SYMBOL vmlinux 0x7749b9af input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x7756178f brioctl_set +EXPORT_SYMBOL vmlinux 0x77694470 vme_bus_error_handler EXPORT_SYMBOL vmlinux 0x776b8720 dev_mc_init EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 EXPORT_SYMBOL vmlinux 0x77707369 ip6_frag_next @@ -9072,54 +9039,60 @@ EXPORT_SYMBOL vmlinux 0x77b14d87 phy_init_hw EXPORT_SYMBOL vmlinux 0x77bc13a0 strim EXPORT_SYMBOL vmlinux 0x77c44fd2 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x77c4d5df mapping_read_folio_gfp EXPORT_SYMBOL vmlinux 0x77c5f325 pci_scan_bridge EXPORT_SYMBOL vmlinux 0x77ce9b87 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x77d6b264 scsi_device_lookup EXPORT_SYMBOL vmlinux 0x77e56c2d param_get_dyndbg_classes EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt EXPORT_SYMBOL vmlinux 0x77f109c1 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x77f2f276 iterate_dir EXPORT_SYMBOL vmlinux 0x77f5f004 set_pages_array_wc EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle EXPORT_SYMBOL vmlinux 0x780b1ef9 nf_register_net_hook EXPORT_SYMBOL vmlinux 0x780c22b9 dma_sync_sg_for_cpu EXPORT_SYMBOL vmlinux 0x78161f39 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x782f2828 d_path EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r EXPORT_SYMBOL vmlinux 0x78599c25 from_kgid_munged -EXPORT_SYMBOL vmlinux 0x785c1f71 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x7867e56f generic_file_open EXPORT_SYMBOL vmlinux 0x786c177f fb_get_buffer_offset EXPORT_SYMBOL vmlinux 0x786e595b crypto_sha3_init -EXPORT_SYMBOL vmlinux 0x78875de6 noop_dirty_folio -EXPORT_SYMBOL vmlinux 0x789ac3b3 __starget_for_each_device EXPORT_SYMBOL vmlinux 0x789bdfd4 tty_driver_kref_put EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78ae5764 generic_setlease +EXPORT_SYMBOL vmlinux 0x78aff17d ptp_clock_event EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf EXPORT_SYMBOL vmlinux 0x78bb27e7 __blk_mq_end_request EXPORT_SYMBOL vmlinux 0x78d5752c reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x78da2b10 mmc_request_done EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x78efc715 set_bh_page +EXPORT_SYMBOL vmlinux 0x78f738b6 i2c_transfer EXPORT_SYMBOL vmlinux 0x78fbfdef __ip_options_compile EXPORT_SYMBOL vmlinux 0x79134bb1 dm_table_get_mode EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x7919b6a7 devfreq_add_device EXPORT_SYMBOL vmlinux 0x7925a5c2 page_pool_create +EXPORT_SYMBOL vmlinux 0x792641c5 vma_alloc_folio EXPORT_SYMBOL vmlinux 0x793cf0a1 dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0x793d8b98 sk_stream_wait_close EXPORT_SYMBOL vmlinux 0x7941c4ce inet_sock_destruct EXPORT_SYMBOL vmlinux 0x7944f454 tcp_conn_request EXPORT_SYMBOL vmlinux 0x7952ca3b scsi_device_set_state EXPORT_SYMBOL vmlinux 0x79577285 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x7959f5d6 mount_subtree EXPORT_SYMBOL vmlinux 0x79627494 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x79786bbf kernel_getsockname EXPORT_SYMBOL vmlinux 0x7984eefc key_update EXPORT_SYMBOL vmlinux 0x79892bc4 security_unix_may_send EXPORT_SYMBOL vmlinux 0x798a4814 ethtool_aggregate_phy_stats EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted EXPORT_SYMBOL vmlinux 0x79e4cbe8 override_creds +EXPORT_SYMBOL vmlinux 0x79ee4640 nd_btt_probe EXPORT_SYMBOL vmlinux 0x79f290dd iget_locked EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj EXPORT_SYMBOL vmlinux 0x7a346f2f scsi_register_interface -EXPORT_SYMBOL vmlinux 0x7a378097 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7a4fa587 kmem_cache_create_usercopy EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists EXPORT_SYMBOL vmlinux 0x7a72a3ff proc_create_single_data EXPORT_SYMBOL vmlinux 0x7a77af2e nexthop_res_grp_activity_update @@ -9131,14 +9104,12 @@ EXPORT_SYMBOL vmlinux 0x7aa86847 get_phy_device EXPORT_SYMBOL vmlinux 0x7ac10a48 xfrm_input_resume EXPORT_SYMBOL vmlinux 0x7aca8b9f klp_sched_try_switch_key +EXPORT_SYMBOL vmlinux 0x7acc153c mmc_command_done EXPORT_SYMBOL vmlinux 0x7acd906e pnp_start_dev EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae7712c ptp_clock_register -EXPORT_SYMBOL vmlinux 0x7aef6c3d write_inode_now EXPORT_SYMBOL vmlinux 0x7af4145f agp_collect_device_status EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x7b04a6b9 dump_skip_to EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store EXPORT_SYMBOL vmlinux 0x7b2cccf2 seq_puts EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit @@ -9148,29 +9119,29 @@ EXPORT_SYMBOL vmlinux 0x7b66dd1a redraw_screen EXPORT_SYMBOL vmlinux 0x7b6bacee sg_alloc_append_table_from_pages EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b831f8b __starget_for_each_device EXPORT_SYMBOL vmlinux 0x7b89b64f inc_nlink EXPORT_SYMBOL vmlinux 0x7b8a7465 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x7b8ef51c __vfs_getxattr EXPORT_SYMBOL vmlinux 0x7ba17fad proc_mkdir_mode EXPORT_SYMBOL vmlinux 0x7bae3ef2 sk_error_report EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids EXPORT_SYMBOL vmlinux 0x7bdfb1f4 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0x7beb7b77 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x7bf6f6db vfs_symlink EXPORT_SYMBOL vmlinux 0x7bf98491 _dev_emerg EXPORT_SYMBOL vmlinux 0x7c0cd469 backlight_device_unregister EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement EXPORT_SYMBOL vmlinux 0x7c1e4ba1 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x7c26a3c5 __tracepoint_rdpmc EXPORT_SYMBOL vmlinux 0x7c2d03a6 dma_fence_enable_sw_signaling EXPORT_SYMBOL vmlinux 0x7c3bc25a cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x7c3f6f3e __tracepoint_kfree EXPORT_SYMBOL vmlinux 0x7c411456 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x7c4420d2 do_splice_direct EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get EXPORT_SYMBOL vmlinux 0x7c47f4e9 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0x7c4aaa2e __scm_destroy EXPORT_SYMBOL vmlinux 0x7c55fff6 skb_find_text EXPORT_SYMBOL vmlinux 0x7c5af898 set_capacity +EXPORT_SYMBOL vmlinux 0x7c693ff7 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x7c6c37d3 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x7c71e10f bio_add_pc_page EXPORT_SYMBOL vmlinux 0x7c783dc4 genl_unregister_family @@ -9189,6 +9160,7 @@ EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d03bd67 generic_file_open EXPORT_SYMBOL vmlinux 0x7d0637d0 xfrm_state_insert EXPORT_SYMBOL vmlinux 0x7d08368e simple_lookup EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys @@ -9204,7 +9176,6 @@ EXPORT_SYMBOL vmlinux 0x7d6e0c74 pci_dev_driver EXPORT_SYMBOL vmlinux 0x7d6f3c14 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d78b8e1 i2c_put_adapter EXPORT_SYMBOL vmlinux 0x7d8fac6f netif_carrier_on EXPORT_SYMBOL vmlinux 0x7d933a62 rproc_alloc EXPORT_SYMBOL vmlinux 0x7da3ebf6 inode_newsize_ok @@ -9218,95 +9189,99 @@ EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe EXPORT_SYMBOL vmlinux 0x7df2cabb prepare_kernel_cred EXPORT_SYMBOL vmlinux 0x7e015201 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0x7e0799c4 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp EXPORT_SYMBOL vmlinux 0x7e24bbd1 genphy_read_lpa EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync EXPORT_SYMBOL vmlinux 0x7e47e94a proc_set_user EXPORT_SYMBOL vmlinux 0x7e558068 dev_set_alias EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e6fad80 filemap_splice_read -EXPORT_SYMBOL vmlinux 0x7e7832e3 vme_bus_type EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu EXPORT_SYMBOL vmlinux 0x7e925e43 ata_scsi_cmd_error_handler EXPORT_SYMBOL vmlinux 0x7ea71544 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x7eaad3f6 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x7eac1f13 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x7eb2bb93 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7ec36409 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x7ec9ebb6 nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0x7ee0bd3b security_path_mkdir EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table EXPORT_SYMBOL vmlinux 0x7f045ac4 phy_attach EXPORT_SYMBOL vmlinux 0x7f0990d2 param_set_ulong +EXPORT_SYMBOL vmlinux 0x7f126171 nd_region_to_nstype EXPORT_SYMBOL vmlinux 0x7f1c12a5 netdev_refcnt_read EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f325c4e no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x7f35a8cf param_get_long EXPORT_SYMBOL vmlinux 0x7f50e121 xp_can_alloc EXPORT_SYMBOL vmlinux 0x7f52071a net_dim EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8cdd74 try_to_writeback_inodes_sb EXPORT_SYMBOL vmlinux 0x7f9401fe cros_ec_get_host_event EXPORT_SYMBOL vmlinux 0x7fb529f0 devm_mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x7fde1fbc acpi_walk_resource_buffer EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node EXPORT_SYMBOL vmlinux 0x7feaaa33 is_bad_inode EXPORT_SYMBOL vmlinux 0x7feed7d0 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x7ff6391e __tracepoint_spi_transfer_stop EXPORT_SYMBOL vmlinux 0x80001497 mem_cgroup_from_task EXPORT_SYMBOL vmlinux 0x80005076 agp_generic_create_gatt_table EXPORT_SYMBOL vmlinux 0x800f425b input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x801f9342 to_nd_dax EXPORT_SYMBOL vmlinux 0x80246de8 pcie_capability_write_dword EXPORT_SYMBOL vmlinux 0x8025102e config_group_find_item EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x80403b94 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu EXPORT_SYMBOL vmlinux 0x80621da6 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x80704cf8 __generic_file_write_iter EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x809720df jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x80aae02a copy_string_kernel -EXPORT_SYMBOL vmlinux 0x80b67411 devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x80b6ef81 ipmi_platform_add EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd EXPORT_SYMBOL vmlinux 0x80ccb967 param_ops_byte EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80dda348 i2c_smbus_write_block_data EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e86dca generic_file_llseek EXPORT_SYMBOL vmlinux 0x80fef5d4 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8115658d vm_map_pages EXPORT_SYMBOL vmlinux 0x81172764 fs_param_is_s32 EXPORT_SYMBOL vmlinux 0x81188c30 match_string EXPORT_SYMBOL vmlinux 0x8125ab9f dev_disable_lro +EXPORT_SYMBOL vmlinux 0x813d139f module_refcount EXPORT_SYMBOL vmlinux 0x81491054 security_binder_transaction +EXPORT_SYMBOL vmlinux 0x814da621 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x8171486c filemap_invalidate_lock_two EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x819682c8 locks_copy_conflock EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81adc39f folio_migrate_flags EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x81ce559d lock_rename EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev EXPORT_SYMBOL vmlinux 0x81cf7af5 md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x81d6c28b acpi_buffer_to_resource EXPORT_SYMBOL vmlinux 0x81da154b dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81ea3619 __register_binfmt EXPORT_SYMBOL vmlinux 0x8202b5b9 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x82140390 jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x82203a34 dma_resv_fini EXPORT_SYMBOL vmlinux 0x8228568c tcp_sync_mss EXPORT_SYMBOL vmlinux 0x822c5a09 rproc_detach EXPORT_SYMBOL vmlinux 0x822e8f0e tcp_rcv_state_process EXPORT_SYMBOL vmlinux 0x823538ce rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x8242bef1 vme_dma_request EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk EXPORT_SYMBOL vmlinux 0x826ccd72 fwnode_mdiobus_register_phy EXPORT_SYMBOL vmlinux 0x827625b5 dev_driver_string +EXPORT_SYMBOL vmlinux 0x827bc568 lock_rename_child EXPORT_SYMBOL vmlinux 0x827f3725 tcf_action_exec EXPORT_SYMBOL vmlinux 0x828d099a pci_disable_device EXPORT_SYMBOL vmlinux 0x82955c17 dev_graft_qdisc @@ -9315,6 +9290,7 @@ EXPORT_SYMBOL vmlinux 0x82c06083 cdrom_dummy_generic_packet EXPORT_SYMBOL vmlinux 0x82c1dc4d inet_recvmsg EXPORT_SYMBOL vmlinux 0x82c3416a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x82c535e7 kernel_bind EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync EXPORT_SYMBOL vmlinux 0x82f0b74c ethtool_get_phc_vclocks @@ -9323,38 +9299,42 @@ EXPORT_SYMBOL vmlinux 0x831c9323 netdev_port_same_parent_id EXPORT_SYMBOL vmlinux 0x8328e1a6 tcp_stream_memory_free EXPORT_SYMBOL vmlinux 0x8342fcea cdev_del -EXPORT_SYMBOL vmlinux 0x834fd20e console_stop -EXPORT_SYMBOL vmlinux 0x83523d51 folio_end_private_2 EXPORT_SYMBOL vmlinux 0x83558539 tty_check_change EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle EXPORT_SYMBOL vmlinux 0x835c0338 devm_clk_put EXPORT_SYMBOL vmlinux 0x8363d882 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x836e001a jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x83802812 __bread_gfp EXPORT_SYMBOL vmlinux 0x838c52c9 d_lookup EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x83a4b984 mdiobus_alloc_size EXPORT_SYMBOL vmlinux 0x83b144b3 netif_device_attach -EXPORT_SYMBOL vmlinux 0x83b393dd vme_new_dma_list EXPORT_SYMBOL vmlinux 0x83b7e3e9 tcf_block_put_ext -EXPORT_SYMBOL vmlinux 0x83cab9a6 ata_print_version EXPORT_SYMBOL vmlinux 0x83ef9e92 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x83f8ceb0 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x83fdea3c vfs_create EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 EXPORT_SYMBOL vmlinux 0x842f477b inode_insert5 EXPORT_SYMBOL vmlinux 0x8432ef63 sock_no_socketpair EXPORT_SYMBOL vmlinux 0x844511ed iptun_encaps EXPORT_SYMBOL vmlinux 0x845e223c netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x84708e54 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x84856b58 jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare EXPORT_SYMBOL vmlinux 0x849535b7 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x849ec962 jbd2_transaction_committed EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node EXPORT_SYMBOL vmlinux 0x84b3b3fc skb_vlan_pop EXPORT_SYMBOL vmlinux 0x84baf325 phy_start_cable_test_tdr EXPORT_SYMBOL vmlinux 0x84ebecb0 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x84ff8aac scsi_track_queue_full EXPORT_SYMBOL vmlinux 0x84fff756 blk_mq_alloc_tag_set EXPORT_SYMBOL vmlinux 0x850783d6 gnet_stats_copy_rate_est EXPORT_SYMBOL vmlinux 0x850dc1ef blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x85146153 __SCK__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user EXPORT_SYMBOL vmlinux 0x8529b8c1 devm_backlight_device_register @@ -9368,15 +9348,14 @@ EXPORT_SYMBOL vmlinux 0x85800ed9 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity EXPORT_SYMBOL vmlinux 0x859488c8 genphy_handle_interrupt_no_ack -EXPORT_SYMBOL vmlinux 0x85a151bd finish_open EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c52144 kmalloc_node_trace EXPORT_SYMBOL vmlinux 0x85df9b6c strsep EXPORT_SYMBOL vmlinux 0x85e489e9 get_mem_cgroup_from_mm EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn EXPORT_SYMBOL vmlinux 0x85f4f245 tso_build_hdr EXPORT_SYMBOL vmlinux 0x85f596a4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x8610c321 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x86219e01 vlan_vids_del_by_dev EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node EXPORT_SYMBOL vmlinux 0x863a276a color_table @@ -9384,13 +9363,11 @@ EXPORT_SYMBOL vmlinux 0x86751489 tcp_v4_destroy_sock EXPORT_SYMBOL vmlinux 0x867c618c vga_switcheroo_init_domain_pm_ops EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x869572a5 sock_wake_async -EXPORT_SYMBOL vmlinux 0x86b3e1b4 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x86aff4cd posix_test_lock EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access -EXPORT_SYMBOL vmlinux 0x86f8bad8 ip6_mtu EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user EXPORT_SYMBOL vmlinux 0x87335a8d mptcp_subflow_reqsk_alloc EXPORT_SYMBOL vmlinux 0x87592cdd xfrm_input_register_afinfo @@ -9402,18 +9379,12 @@ EXPORT_SYMBOL vmlinux 0x878d43cd ipv6_dev_mc_inc EXPORT_SYMBOL vmlinux 0x87977121 __acpi_mdiobus_register EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds -EXPORT_SYMBOL vmlinux 0x87a6ceab vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x87b3c42c netlink_net_capable -EXPORT_SYMBOL vmlinux 0x87b5cdb6 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0x87c8c92f dma_fence_match_context EXPORT_SYMBOL vmlinux 0x87c95dff __nla_put EXPORT_SYMBOL vmlinux 0x87ce6c49 pcim_enable_device EXPORT_SYMBOL vmlinux 0x87fe5160 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x88019a45 pmem_sector_size EXPORT_SYMBOL vmlinux 0x88077699 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x880b6e3b kern_path EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x88156ddd remap_vmalloc_range EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit EXPORT_SYMBOL vmlinux 0x8823ef75 intel_gmch_gtt_insert_page @@ -9428,90 +9399,89 @@ EXPORT_SYMBOL vmlinux 0x88cf7eaa freeze_bdev EXPORT_SYMBOL vmlinux 0x88d420d3 configfs_register_default_group EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88dbb873 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free EXPORT_SYMBOL vmlinux 0x88e3ff43 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x89087961 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0x890a24af mdiobus_c45_write EXPORT_SYMBOL vmlinux 0x8911fa82 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x8915c050 filemap_check_errors EXPORT_SYMBOL vmlinux 0x891957d9 slab_build_skb EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order EXPORT_SYMBOL vmlinux 0x891e2069 phy_modify_paged EXPORT_SYMBOL vmlinux 0x89248395 seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x894004c0 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x894111bb sock_sendmsg EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8947edb4 input_inject_event EXPORT_SYMBOL vmlinux 0x894e61f4 acpi_get_hp_hw_control_from_firmware EXPORT_SYMBOL vmlinux 0x894f0593 sock_no_bind +EXPORT_SYMBOL vmlinux 0x897a7a5f devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x89853a17 dev_add_offload EXPORT_SYMBOL vmlinux 0x89867386 __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible EXPORT_SYMBOL vmlinux 0x899cdeda inet_offloads -EXPORT_SYMBOL vmlinux 0x89a797d3 netlink_unicast EXPORT_SYMBOL vmlinux 0x89c5b47b dquot_set_dqblk EXPORT_SYMBOL vmlinux 0x89ca12b0 nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0x89df4e76 devm_extcon_register_notifier -EXPORT_SYMBOL vmlinux 0x89e738e8 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0x89ebd730 blk_rq_count_integrity_sg EXPORT_SYMBOL vmlinux 0x8a0ae079 unload_nls EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a4ae109 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x8a4df16b vfs_statfs EXPORT_SYMBOL vmlinux 0x8a4e5512 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x8a4ec26d pci_release_region EXPORT_SYMBOL vmlinux 0x8a531f23 dec_node_page_state EXPORT_SYMBOL vmlinux 0x8a54670a __x86_indirect_jump_thunk_r14 EXPORT_SYMBOL vmlinux 0x8a5e5e25 devm_request_resource -EXPORT_SYMBOL vmlinux 0x8a6a09bd devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x8a5eff0f filemap_page_mkwrite EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory EXPORT_SYMBOL vmlinux 0x8a833583 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8a8d75e6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x8a8e1fdb i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x8a966e5d rproc_of_resm_mem_entry_init EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x8aa641c9 lookup_one EXPORT_SYMBOL vmlinux 0x8aaecd60 __put_cred EXPORT_SYMBOL vmlinux 0x8aaf23ce input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x8ab6c364 jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation EXPORT_SYMBOL vmlinux 0x8ad68011 bio_init EXPORT_SYMBOL vmlinux 0x8aef79ed tls_server_hello_psk EXPORT_SYMBOL vmlinux 0x8af126ad scm_fp_dup -EXPORT_SYMBOL vmlinux 0x8af2053e console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0x8af56197 nonseekable_open EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b2702eb iter_file_splice_write EXPORT_SYMBOL vmlinux 0x8b28e098 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x8b2a2ee7 generic_buffers_fsync_noflush EXPORT_SYMBOL vmlinux 0x8b2aa725 neigh_parms_release EXPORT_SYMBOL vmlinux 0x8b320638 blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x8b379e6e dev_pick_tx_zero -EXPORT_SYMBOL vmlinux 0x8b46971c kernel_tmpfile_open EXPORT_SYMBOL vmlinux 0x8b5ae952 netpoll_print_options EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid EXPORT_SYMBOL vmlinux 0x8b6785d0 ip_frag_init +EXPORT_SYMBOL vmlinux 0x8b6fbb14 do_splice_direct EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample EXPORT_SYMBOL vmlinux 0x8b95ea81 sb_min_blocksize EXPORT_SYMBOL vmlinux 0x8b966b63 sn_rtc_cycles_per_second EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9e6f76 jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x8ba1a277 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x8bab5750 send_sig_info EXPORT_SYMBOL vmlinux 0x8bbe06fb netdev_state_change EXPORT_SYMBOL vmlinux 0x8bbf4dea unregister_md_personality EXPORT_SYMBOL vmlinux 0x8bccc6c8 km_report EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be808af jbd2_journal_extend EXPORT_SYMBOL vmlinux 0x8c1ac389 vga_set_legacy_decoding EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c3a26e5 __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x8c5320da __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x8c38f6b9 mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0x8c545d24 netdev_reset_tc EXPORT_SYMBOL vmlinux 0x8c56333a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x8c62437a audit_log EXPORT_SYMBOL vmlinux 0x8c671ad7 seq_path EXPORT_SYMBOL vmlinux 0x8c6d7e20 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x8c7aa49a generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c91def5 buffer_migrate_folio EXPORT_SYMBOL vmlinux 0x8c95f7e2 pci_write_vpd EXPORT_SYMBOL vmlinux 0x8c9ac92b thaw_bdev EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error @@ -9522,44 +9492,46 @@ EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending EXPORT_SYMBOL vmlinux 0x8ce16975 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x8ce6ab59 filemap_splice_read EXPORT_SYMBOL vmlinux 0x8ceee477 netdev_lower_dev_get_private EXPORT_SYMBOL vmlinux 0x8cf303e1 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x8d053c10 __vfs_removexattr EXPORT_SYMBOL vmlinux 0x8d1ddb11 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit EXPORT_SYMBOL vmlinux 0x8d3b535a bio_split EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 -EXPORT_SYMBOL vmlinux 0x8d6ee054 mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x8d710155 kiocb_set_cancel_fn EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d8a7a00 vmf_insert_mixed EXPORT_SYMBOL vmlinux 0x8dafaf22 hdmi_avi_infoframe_pack EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8dc36b42 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8def3763 filemap_fault EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e25e3f2 i2c_smbus_write_byte EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e42aab4 vme_lm_request EXPORT_SYMBOL vmlinux 0x8e4ba5e8 dcb_getrewr EXPORT_SYMBOL vmlinux 0x8e50a5de kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x8e60161f netlink_kernel_release EXPORT_SYMBOL vmlinux 0x8e666c1e __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x8e706440 i2c_find_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0x8e8672e1 kmalloc_caches EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid EXPORT_SYMBOL vmlinux 0x8e96a3c2 inet_csk_reqsk_queue_add EXPORT_SYMBOL vmlinux 0x8ea1e843 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x8eaeef64 page_readlink EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler EXPORT_SYMBOL vmlinux 0x8ec41ff1 pci_request_regions EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key EXPORT_SYMBOL vmlinux 0x8ed905e5 mr_table_dump +EXPORT_SYMBOL vmlinux 0x8edbeb9d register_console EXPORT_SYMBOL vmlinux 0x8ee6f3e8 genphy_suspend EXPORT_SYMBOL vmlinux 0x8eef33b3 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x8ef39e13 to_ndd EXPORT_SYMBOL vmlinux 0x8efe0450 pci_get_class EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f1d0d15 dentry_path_raw EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus EXPORT_SYMBOL vmlinux 0x8f29e65c scsi_host_lookup EXPORT_SYMBOL vmlinux 0x8f4b8b88 tcp_recvmsg @@ -9579,6 +9551,7 @@ EXPORT_SYMBOL vmlinux 0x8ff8e43b crypto_sha1_update EXPORT_SYMBOL vmlinux 0x8fffd555 sock_set_reuseport EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x900aa09a generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0x90134c56 __destroy_inode EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy @@ -9593,20 +9566,17 @@ EXPORT_SYMBOL vmlinux 0x909ec77e remove_proc_entry EXPORT_SYMBOL vmlinux 0x90a2b5db xen_alloc_ballooned_pages EXPORT_SYMBOL vmlinux 0x90a97776 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x90aa6e25 nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0x90ca02ad inet_sk_get_local_port_range EXPORT_SYMBOL vmlinux 0x90d05de4 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x90f3a469 genphy_c45_eee_is_active EXPORT_SYMBOL vmlinux 0x910de6e7 security_tun_dev_attach EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x911a76e9 vme_master_request -EXPORT_SYMBOL vmlinux 0x91369ab9 vme_irq_handler EXPORT_SYMBOL vmlinux 0x913f2c3f cfb_copyarea EXPORT_SYMBOL vmlinux 0x9141c600 node_data EXPORT_SYMBOL vmlinux 0x914893f1 genphy_c37_read_status EXPORT_SYMBOL vmlinux 0x914aa5d2 reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x91502352 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0x915cc1e8 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x915d2056 vm_map_pages_zero EXPORT_SYMBOL vmlinux 0x915fe5fc scsi_eh_restore_cmnd EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb EXPORT_SYMBOL vmlinux 0x9166fada strncpy @@ -9632,15 +9602,12 @@ EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x9231c875 skb_unlink EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x923e31d6 folio_add_lru EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x926ea3f8 vme_register_driver EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x9279488d scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x92897e3d default_idle EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user -EXPORT_SYMBOL vmlinux 0x929394d3 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x92978709 dump_skip EXPORT_SYMBOL vmlinux 0x929878b2 posix_acl_to_xattr EXPORT_SYMBOL vmlinux 0x92a30856 blk_rq_init EXPORT_SYMBOL vmlinux 0x92a35bab clear_nlink @@ -9653,7 +9620,6 @@ EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq EXPORT_SYMBOL vmlinux 0x92dd4ba1 ppp_input_error EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout -EXPORT_SYMBOL vmlinux 0x92eba83c vfs_fileattr_get EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs EXPORT_SYMBOL vmlinux 0x92eedd98 scsi_done_direct EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach @@ -9661,62 +9627,58 @@ EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get EXPORT_SYMBOL vmlinux 0x930bba92 alloc_skb_with_frags EXPORT_SYMBOL vmlinux 0x930be505 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x930d08cf blk_put_queue EXPORT_SYMBOL vmlinux 0x93157405 fsync_bdev EXPORT_SYMBOL vmlinux 0x93162225 skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x932b83c7 pci_clear_mwi EXPORT_SYMBOL vmlinux 0x9333a265 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x93345021 __check_sticky -EXPORT_SYMBOL vmlinux 0x933b9c44 __tracepoint_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0x934f564b __x86_indirect_jump_thunk_r15 EXPORT_SYMBOL vmlinux 0x935c2bb9 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x93606c4b readahead_expand EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937a4708 prepare_to_swait_event EXPORT_SYMBOL vmlinux 0x937f0899 xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x93891a78 path_is_mountpoint EXPORT_SYMBOL vmlinux 0x938ae609 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x9397bf30 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x93b63e61 config_item_set_name +EXPORT_SYMBOL vmlinux 0x93b8fb87 netlink_ns_capable EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all EXPORT_SYMBOL vmlinux 0x93dd2360 md_register_thread +EXPORT_SYMBOL vmlinux 0x93e165e3 __bh_read_batch EXPORT_SYMBOL vmlinux 0x93ffbe39 jbd2_submit_inode_data EXPORT_SYMBOL vmlinux 0x940720f3 skb_try_coalesce EXPORT_SYMBOL vmlinux 0x941d91ba xsk_set_tx_need_wakeup -EXPORT_SYMBOL vmlinux 0x9421cdf6 file_open_root EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn EXPORT_SYMBOL vmlinux 0x942ac71b d_make_root EXPORT_SYMBOL vmlinux 0x943083fb rtnl_link_get_net EXPORT_SYMBOL vmlinux 0x94362ea6 pci_ep_cfs_add_epc_group EXPORT_SYMBOL vmlinux 0x9436ca2d pci_find_capability -EXPORT_SYMBOL vmlinux 0x9441fe40 __breadahead EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked EXPORT_SYMBOL vmlinux 0x945c8c72 pci_map_rom EXPORT_SYMBOL vmlinux 0x945cb2eb netdev_emerg +EXPORT_SYMBOL vmlinux 0x946dcf91 folio_wait_bit EXPORT_SYMBOL vmlinux 0x9493fc86 node_states EXPORT_SYMBOL vmlinux 0x94961283 vunmap EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 EXPORT_SYMBOL vmlinux 0x94bf5008 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x94fb2309 vfs_fileattr_get EXPORT_SYMBOL vmlinux 0x94fc3975 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x950058f8 __module_get EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user EXPORT_SYMBOL vmlinux 0x950b0eb2 mr_dump EXPORT_SYMBOL vmlinux 0x950e6eab posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x950e9cf4 jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0x95238e13 inet_csk_complete_hashdance EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp EXPORT_SYMBOL vmlinux 0x95443b20 register_key_type EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x95602a02 mmc_release_host -EXPORT_SYMBOL vmlinux 0x9569a9b4 kill_pgrp EXPORT_SYMBOL vmlinux 0x957c9ebf neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x959c15da devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x95a07a62 simple_statfs EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95bda289 jbd2_trans_will_send_data_barrier EXPORT_SYMBOL vmlinux 0x95efd25b tty_unlock EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block EXPORT_SYMBOL vmlinux 0x962fc515 __napi_schedule @@ -9727,50 +9689,53 @@ EXPORT_SYMBOL vmlinux 0x967a1727 invalidate_bdev EXPORT_SYMBOL vmlinux 0x96848186 scnprintf EXPORT_SYMBOL vmlinux 0x9689f135 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x96968b74 nd_integrity_init EXPORT_SYMBOL vmlinux 0x9697246f pnpacpi_protocol EXPORT_SYMBOL vmlinux 0x96992fec pci_dev_put +EXPORT_SYMBOL vmlinux 0x96a8d542 mdiobus_write_nested EXPORT_SYMBOL vmlinux 0x96b1e60a pci_biosrom_size EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string EXPORT_SYMBOL vmlinux 0x96d3cc79 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x96dabeeb vme_new_dma_list EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x9727d288 file_ns_capable +EXPORT_SYMBOL vmlinux 0x97049164 __traceiter_kmem_cache_free EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier EXPORT_SYMBOL vmlinux 0x9743e62a phy_disconnect +EXPORT_SYMBOL vmlinux 0x97449872 unregister_console EXPORT_SYMBOL vmlinux 0x974acab8 tcp_release_cb EXPORT_SYMBOL vmlinux 0x9752fae9 pci_set_master EXPORT_SYMBOL vmlinux 0x97579af7 param_set_hexint EXPORT_SYMBOL vmlinux 0x975a23c8 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x97635d33 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base -EXPORT_SYMBOL vmlinux 0x97671f0e mdiobus_read EXPORT_SYMBOL vmlinux 0x97796289 vm_node_stat EXPORT_SYMBOL vmlinux 0x9786929b __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x97879bcb gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x978b202d jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x9793535e dev_addr_mod -EXPORT_SYMBOL vmlinux 0x979ce9b9 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x979af9cf scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x97b46480 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list EXPORT_SYMBOL vmlinux 0x97c40a0a pci_choose_state EXPORT_SYMBOL vmlinux 0x97d6da36 pci_set_mwi EXPORT_SYMBOL vmlinux 0x97d8156e hmm_range_fault -EXPORT_SYMBOL vmlinux 0x97e2df9c mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0x97f8eba6 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x97fbe9ca __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x98041912 lookup_one EXPORT_SYMBOL vmlinux 0x98048979 tcp_add_backlog EXPORT_SYMBOL vmlinux 0x981256bc qdisc_hash_del EXPORT_SYMBOL vmlinux 0x981ec4e4 phy_write_paged -EXPORT_SYMBOL vmlinux 0x9827fd0f blk_finish_plug EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r EXPORT_SYMBOL vmlinux 0x984d9c39 cpumask_next_wrap EXPORT_SYMBOL vmlinux 0x98555a05 dma_fence_chain_walk EXPORT_SYMBOL vmlinux 0x9856150c phy_read_mmd EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x985d4cda kmalloc_caches EXPORT_SYMBOL vmlinux 0x989c9b9c input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x98ae7e07 get_fs_type EXPORT_SYMBOL vmlinux 0x98ba7866 pnp_release_card_device EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc EXPORT_SYMBOL vmlinux 0x98c8b858 security_task_getsecid_obj @@ -9790,27 +9755,34 @@ EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable EXPORT_SYMBOL vmlinux 0x99569750 phy_support_asym_pause EXPORT_SYMBOL vmlinux 0x9961d795 bio_free_pages +EXPORT_SYMBOL vmlinux 0x9978a875 vme_slave_request EXPORT_SYMBOL vmlinux 0x9979945d devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x997e11de is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x997bf58f block_truncate_page EXPORT_SYMBOL vmlinux 0x9980551f fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x998943fa netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x998ee9aa netlink_capable EXPORT_SYMBOL vmlinux 0x99955e8f input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x999683bd jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x999e8297 vfree EXPORT_SYMBOL vmlinux 0x99a88b4b netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x99cad753 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e9323a devfreq_remove_device EXPORT_SYMBOL vmlinux 0x99ee8b1c devm_of_iomap EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x99f7c290 kill_pid +EXPORT_SYMBOL vmlinux 0x99f794c8 __SCK__tp_func_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a14da9a fasync_helper +EXPORT_SYMBOL vmlinux 0x9a04dc74 i2c_smbus_write_i2c_block_data EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot EXPORT_SYMBOL vmlinux 0x9a267c3d crypto_sha3_final EXPORT_SYMBOL vmlinux 0x9a2c088f irq_stat +EXPORT_SYMBOL vmlinux 0x9a39ee14 folio_end_private_2 EXPORT_SYMBOL vmlinux 0x9a57700d nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a6ef0df i2c_transfer_buffer_flags EXPORT_SYMBOL vmlinux 0x9a79e8e4 netdev_set_tc_queue EXPORT_SYMBOL vmlinux 0x9a84e9f2 tcp_v4_mtu_reduced EXPORT_SYMBOL vmlinux 0x9a98cecb scsi_device_resume @@ -9818,17 +9790,19 @@ EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired -EXPORT_SYMBOL vmlinux 0x9ad9fe78 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9aef177a generic_copy_file_range EXPORT_SYMBOL vmlinux 0x9b0a57ce get_tree_bdev +EXPORT_SYMBOL vmlinux 0x9b15eedf sock_recvmsg EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b25fd48 posix_lock_file EXPORT_SYMBOL vmlinux 0x9b2932e8 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x9b2e1b98 vfs_iocb_iter_read EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier EXPORT_SYMBOL vmlinux 0x9b41dd19 passthru_features_check EXPORT_SYMBOL vmlinux 0x9b46ed09 __cgroup_bpf_run_filter_skb EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc EXPORT_SYMBOL vmlinux 0x9b62fe8b skb_copy_header +EXPORT_SYMBOL vmlinux 0x9b6d5cda kmem_cache_create EXPORT_SYMBOL vmlinux 0x9b715f44 dev_uc_init EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table EXPORT_SYMBOL vmlinux 0x9b739b09 md_check_recovery @@ -9836,14 +9810,13 @@ EXPORT_SYMBOL vmlinux 0x9b94f1ed napi_schedule_prep EXPORT_SYMBOL vmlinux 0x9bb44046 sock_set_keepalive EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bb5f120 set_bh_page EXPORT_SYMBOL vmlinux 0x9bc081a3 rfkill_alloc EXPORT_SYMBOL vmlinux 0x9bd014f6 __generic_file_fsync EXPORT_SYMBOL vmlinux 0x9bd01b86 scsi_vpd_lun_id EXPORT_SYMBOL vmlinux 0x9bd7fe82 flow_rule_match_ip EXPORT_SYMBOL vmlinux 0x9bddacdb t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c2428a3 devm_devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0x9c2590a6 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0x9c3cf179 ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x9c4698d1 pci_bus_read_dev_vendor_id EXPORT_SYMBOL vmlinux 0x9c4ca4e2 __napi_schedule_irqoff @@ -9857,40 +9830,34 @@ EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute EXPORT_SYMBOL vmlinux 0x9cd311dd tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x9cd8db23 acpi_register_debugger -EXPORT_SYMBOL vmlinux 0x9cde8ba1 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x9cdeb5f0 filemap_dirty_folio EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr -EXPORT_SYMBOL vmlinux 0x9cf093fd jbd2_journal_get_write_access EXPORT_SYMBOL vmlinux 0x9cff236e __icmp_send EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x9d2ae325 default_llseek EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key EXPORT_SYMBOL vmlinux 0x9d3c7bb4 __skb_checksum_complete EXPORT_SYMBOL vmlinux 0x9d453f62 fs_context_for_submount EXPORT_SYMBOL vmlinux 0x9d4ba633 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x9d591b44 mmc_detect_change EXPORT_SYMBOL vmlinux 0x9d5e1148 rtnl_set_sk_err EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl EXPORT_SYMBOL vmlinux 0x9d71ac38 netpoll_setup -EXPORT_SYMBOL vmlinux 0x9d71d73a kill_fasync EXPORT_SYMBOL vmlinux 0x9d7b8da9 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x9d82c9e8 __tracepoint_write_msr EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9d97eb29 sync_filesystem EXPORT_SYMBOL vmlinux 0x9da3c91e agp3_generic_tlbflush EXPORT_SYMBOL vmlinux 0x9da9934a serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0x9db25934 scsi_bios_ptable EXPORT_SYMBOL vmlinux 0x9db55598 rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0x9dcb7ff7 kmem_cache_alloc EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9de13a09 mdiobus_get_phy EXPORT_SYMBOL vmlinux 0x9df68b39 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits EXPORT_SYMBOL vmlinux 0x9e0699cc tcf_exts_dump -EXPORT_SYMBOL vmlinux 0x9e0882aa netlink_set_err EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle @@ -9900,12 +9867,14 @@ EXPORT_SYMBOL vmlinux 0x9e3e9217 dev_lstats_read EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy EXPORT_SYMBOL vmlinux 0x9e515ff3 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x9e5e0fa9 __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read EXPORT_SYMBOL vmlinux 0x9e681343 tty_port_tty_get EXPORT_SYMBOL vmlinux 0x9e682fbf devm_memunmap EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask EXPORT_SYMBOL vmlinux 0x9e6f1997 seq_open +EXPORT_SYMBOL vmlinux 0x9e773038 end_buffer_write_sync EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay EXPORT_SYMBOL vmlinux 0x9e833cc1 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x9e8b50c6 dev_activate @@ -9913,15 +9882,14 @@ EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup EXPORT_SYMBOL vmlinux 0x9eadd80c simple_open -EXPORT_SYMBOL vmlinux 0x9eb24823 sock_sendmsg EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask -EXPORT_SYMBOL vmlinux 0x9ec3725d block_write_begin EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ec73824 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x9ecb58c6 folio_end_writeback EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set EXPORT_SYMBOL vmlinux 0x9ed99b53 framebuffer_release EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x9ef1e91f vfs_dedupe_file_range_one EXPORT_SYMBOL vmlinux 0x9f0ed5dd blk_queue_max_write_zeroes_sectors EXPORT_SYMBOL vmlinux 0x9f26f482 register_netdevice EXPORT_SYMBOL vmlinux 0x9f37915e bioset_exit @@ -9931,7 +9899,7 @@ EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f92c6f3 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x9f61e84f bpf_link_put EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9f99ea11 dcache_dir_lseek EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync @@ -9946,19 +9914,18 @@ EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed EXPORT_SYMBOL vmlinux 0xa01a0fcf blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0xa01b4843 trace_raw_output_prep -EXPORT_SYMBOL vmlinux 0xa01b5f34 refresh_frequency_limits EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 EXPORT_SYMBOL vmlinux 0xa024ae4f dev_mc_sync EXPORT_SYMBOL vmlinux 0xa029f961 md_set_array_sectors EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock -EXPORT_SYMBOL vmlinux 0xa0310d5e locks_delete_block +EXPORT_SYMBOL vmlinux 0xa0334345 mdiobus_is_registered_device EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0400e3b dma_resv_init EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes EXPORT_SYMBOL vmlinux 0xa057953f md_error EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa07525b5 kmem_cache_size EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07b8c9f __skb_checksum EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup @@ -9966,7 +9933,7 @@ EXPORT_SYMBOL vmlinux 0xa08d7989 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable EXPORT_SYMBOL vmlinux 0xa098e7e7 fb_is_primary_device -EXPORT_SYMBOL vmlinux 0xa0a41de4 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xa0a936e5 vfs_get_fsid EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private @@ -9980,38 +9947,40 @@ EXPORT_SYMBOL vmlinux 0xa13d541c file_modified EXPORT_SYMBOL vmlinux 0xa13f27af rproc_add_subdev EXPORT_SYMBOL vmlinux 0xa167b00c netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0xa16c0aa3 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xa169750a jbd2_journal_set_triggers EXPORT_SYMBOL vmlinux 0xa16d4c9b pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0xa1859a26 finalize_exec EXPORT_SYMBOL vmlinux 0xa18a40f7 tty_port_open EXPORT_SYMBOL vmlinux 0xa19b34f0 fwnode_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0xa1a2a4dc agp_find_bridge EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters EXPORT_SYMBOL vmlinux 0xa1e51b25 complete_request_key +EXPORT_SYMBOL vmlinux 0xa1e75eaf vfs_rmdir EXPORT_SYMBOL vmlinux 0xa1f00322 inode_set_flags EXPORT_SYMBOL vmlinux 0xa1f9dbb1 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0xa2052508 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa208ee6f mmc_erase EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25cf415 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer EXPORT_SYMBOL vmlinux 0xa26f9cc4 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xa285f7a3 devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active EXPORT_SYMBOL vmlinux 0xa29a7635 dquot_operations EXPORT_SYMBOL vmlinux 0xa2a406dd sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0xa2a5d927 genphy_update_link +EXPORT_SYMBOL vmlinux 0xa2a96c2b __SCK__tp_func_write_msr EXPORT_SYMBOL vmlinux 0xa2b192f7 tcp_recv_skb +EXPORT_SYMBOL vmlinux 0xa2bc4218 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0xa2c350f5 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa2da7b43 vme_register_driver +EXPORT_SYMBOL vmlinux 0xa2fd84f9 inode_sub_bytes EXPORT_SYMBOL vmlinux 0xa307e569 blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0xa317c661 serio_interrupt EXPORT_SYMBOL vmlinux 0xa320b1e5 mmc_of_parse -EXPORT_SYMBOL vmlinux 0xa3280e76 __tracepoint_write_msr EXPORT_SYMBOL vmlinux 0xa32d4eb2 xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xa336bc44 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xa333b90e jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xa354cc28 security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xa35e831c mdiobus_free EXPORT_SYMBOL vmlinux 0xa36ea702 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0xa3769c3c task_work_add EXPORT_SYMBOL vmlinux 0xa38311f1 __hw_addr_ref_unsync_dev @@ -10024,10 +9993,11 @@ EXPORT_SYMBOL vmlinux 0xa3d622aa proto_unregister EXPORT_SYMBOL vmlinux 0xa3d7869a cdev_device_del EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3f7ca32 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xa3f87084 follow_up EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final EXPORT_SYMBOL vmlinux 0xa40b9f15 tls_handshake_cancel EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa4161195 block_invalidate_folio EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io EXPORT_SYMBOL vmlinux 0xa4293b4e agp_enable EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector @@ -10038,9 +10008,8 @@ EXPORT_SYMBOL vmlinux 0xa49f1360 vga_switcheroo_client_probe_defer EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep EXPORT_SYMBOL vmlinux 0xa4bc6bcb sock_rfree -EXPORT_SYMBOL vmlinux 0xa4bfae17 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xa4cf87fb netlink_rcv_skb EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush -EXPORT_SYMBOL vmlinux 0xa4f18b6b zap_page_range_single EXPORT_SYMBOL vmlinux 0xa4f9059f pm_vt_switch_unregister EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe EXPORT_SYMBOL vmlinux 0xa5028b47 tcp_mmap @@ -10071,28 +10040,26 @@ EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab EXPORT_SYMBOL vmlinux 0xa6257a2f complete EXPORT_SYMBOL vmlinux 0xa629a8ce scsi_print_command +EXPORT_SYMBOL vmlinux 0xa6301140 write_dirty_buffer EXPORT_SYMBOL vmlinux 0xa6457c89 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get EXPORT_SYMBOL vmlinux 0xa652cefd phy_error -EXPORT_SYMBOL vmlinux 0xa6564534 netlink_ack +EXPORT_SYMBOL vmlinux 0xa6658919 __task_pid_nr_ns EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6a316c5 xattr_supports_user_prefix EXPORT_SYMBOL vmlinux 0xa6aebac0 sk_stop_timer EXPORT_SYMBOL vmlinux 0xa6c0b899 inet_frag_kill -EXPORT_SYMBOL vmlinux 0xa6d0ddde blk_get_queue +EXPORT_SYMBOL vmlinux 0xa6d772ef __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa6df4cea add_to_pipe EXPORT_SYMBOL vmlinux 0xa6eaa461 current_in_userns EXPORT_SYMBOL vmlinux 0xa6fc4a82 ethtool_aggregate_pause_stats -EXPORT_SYMBOL vmlinux 0xa7068659 finish_swait EXPORT_SYMBOL vmlinux 0xa70a4abd phy_trigger_machine EXPORT_SYMBOL vmlinux 0xa70b27e5 ilookup5 EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0xa71aea98 vfs_get_link EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt -EXPORT_SYMBOL vmlinux 0xa735400f i2c_clients_command EXPORT_SYMBOL vmlinux 0xa7444a4b pneigh_enqueue EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock EXPORT_SYMBOL vmlinux 0xa768fa96 import_single_range @@ -10100,16 +10067,18 @@ EXPORT_SYMBOL vmlinux 0xa789fd41 mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa7c9c707 __block_write_begin EXPORT_SYMBOL vmlinux 0xa7cbb00b irq_domain_set_info EXPORT_SYMBOL vmlinux 0xa7cfe9ed tcp_close EXPORT_SYMBOL vmlinux 0xa7d0a6b5 pci_find_parent_resource EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy EXPORT_SYMBOL vmlinux 0xa7da3fa5 pci_scan_bus EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f0cc2d can_nice EXPORT_SYMBOL vmlinux 0xa7f2c81c devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0xa7fbb5ee filemap_fault EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock EXPORT_SYMBOL vmlinux 0xa81836e7 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xa8265302 mntput EXPORT_SYMBOL vmlinux 0xa82f53f2 dquot_destroy EXPORT_SYMBOL vmlinux 0xa82ff87a blk_pm_runtime_init EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs @@ -10123,8 +10092,8 @@ EXPORT_SYMBOL vmlinux 0xa85a66bc skb_ensure_writable EXPORT_SYMBOL vmlinux 0xa85c8a69 datagram_poll EXPORT_SYMBOL vmlinux 0xa86169b0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xa863dab8 __folio_cancel_dirty EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8730c8a pmem_should_map_pages EXPORT_SYMBOL vmlinux 0xa88fb408 xfrm_find_acq_byseq EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr @@ -10137,20 +10106,17 @@ EXPORT_SYMBOL vmlinux 0xa8d19961 netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xa8d3fb40 inet_unregister_protosw EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8ec0f8b folio_wait_private_2_killable -EXPORT_SYMBOL vmlinux 0xa8ef0e0a unregister_binfmt -EXPORT_SYMBOL vmlinux 0xa8f21e34 folio_wait_bit EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table EXPORT_SYMBOL vmlinux 0xa903a031 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0xa905bfae kernel_sendmsg -EXPORT_SYMBOL vmlinux 0xa90af976 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa9083556 generic_write_end EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work EXPORT_SYMBOL vmlinux 0xa90fe060 cdev_alloc +EXPORT_SYMBOL vmlinux 0xa914143a generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt EXPORT_SYMBOL vmlinux 0xa9237a81 genphy_read_status -EXPORT_SYMBOL vmlinux 0xa92e2070 mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xa93a0993 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xa927d661 touch_buffer +EXPORT_SYMBOL vmlinux 0xa930f22f jbd2_journal_clear_err EXPORT_SYMBOL vmlinux 0xa941dbb3 put_disk EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section EXPORT_SYMBOL vmlinux 0xa9558a55 flow_indr_block_cb_alloc @@ -10158,24 +10124,20 @@ EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map -EXPORT_SYMBOL vmlinux 0xa9c26370 generic_setlease EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9d5f9b0 i2c_add_adapter EXPORT_SYMBOL vmlinux 0xa9d87ee3 tcf_action_update_stats EXPORT_SYMBOL vmlinux 0xa9ef3fb6 sock_kfree_s EXPORT_SYMBOL vmlinux 0xa9f7b6fd agp_generic_enable EXPORT_SYMBOL vmlinux 0xa9fcbbf0 udp_ioctl EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction EXPORT_SYMBOL vmlinux 0xaa0226ac sock_setsockopt -EXPORT_SYMBOL vmlinux 0xaa0a40db vfs_setpos EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa2a7ec8 console_start +EXPORT_SYMBOL vmlinux 0xaa283b2d create_empty_buffers EXPORT_SYMBOL vmlinux 0xaa309bcd __cgroup_bpf_run_filter_sock_ops EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa44d547 vfs_fsync EXPORT_SYMBOL vmlinux 0xaa5cde2b max8925_set_bits -EXPORT_SYMBOL vmlinux 0xaa65f84d generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0xaa6c7d57 cont_write_begin EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name EXPORT_SYMBOL vmlinux 0xaa7b123c tcf_exts_change EXPORT_SYMBOL vmlinux 0xaa7bf8a8 unpin_user_pages_dirty_lock @@ -10185,6 +10147,8 @@ EXPORT_SYMBOL vmlinux 0xaa9c832b arp_create EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaab777c6 device_add_disk +EXPORT_SYMBOL vmlinux 0xaab7fa50 __breadahead +EXPORT_SYMBOL vmlinux 0xaabfef4f jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0xaacadb31 tty_lock EXPORT_SYMBOL vmlinux 0xaacbaca2 devm_backlight_device_unregister EXPORT_SYMBOL vmlinux 0xaacf03c1 dma_fence_signal @@ -10192,16 +10156,15 @@ EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function EXPORT_SYMBOL vmlinux 0xaadedc0c __sk_dst_check -EXPORT_SYMBOL vmlinux 0xaae049c7 devfreq_update_target EXPORT_SYMBOL vmlinux 0xaae1fdef skb_tx_error EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp EXPORT_SYMBOL vmlinux 0xab0c81a7 clear_inode EXPORT_SYMBOL vmlinux 0xab13644e md_integrity_add_rdev EXPORT_SYMBOL vmlinux 0xab1a8afd netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0xab1ef6d6 kernel_sendmsg_locked EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3be5fb jbd2_fc_begin_commit EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab651713 netdev_master_upper_dev_get_rcu @@ -10210,15 +10173,17 @@ EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options EXPORT_SYMBOL vmlinux 0xab8076ae disk_check_media_change -EXPORT_SYMBOL vmlinux 0xab87fe20 jbd2_journal_check_available_features EXPORT_SYMBOL vmlinux 0xab8a9f06 md_finish_reshape EXPORT_SYMBOL vmlinux 0xab938aba invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0xabb2d4e7 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xabae4983 mdiobus_read EXPORT_SYMBOL vmlinux 0xabb5a90c config_item_init_type_name EXPORT_SYMBOL vmlinux 0xabbfa196 blkdev_issue_secure_erase EXPORT_SYMBOL vmlinux 0xabde2339 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xabed09bd vfs_ioctl EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s EXPORT_SYMBOL vmlinux 0xabf53b48 rep_stos_alternative +EXPORT_SYMBOL vmlinux 0xabf931c9 vfs_rename +EXPORT_SYMBOL vmlinux 0xac16d626 vme_master_request EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd EXPORT_SYMBOL vmlinux 0xac3facf3 md_done_sync @@ -10229,27 +10194,26 @@ EXPORT_SYMBOL vmlinux 0xac80e542 __blockdev_direct_IO EXPORT_SYMBOL vmlinux 0xac887c0a blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xac8e2aca flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xac942b3a devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xac980b4d cpufreq_get_policy EXPORT_SYMBOL vmlinux 0xac9ef32d logfc EXPORT_SYMBOL vmlinux 0xac9fa5b5 iput EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacb3691c fget_raw EXPORT_SYMBOL vmlinux 0xacb445ea debugfs_create_automount EXPORT_SYMBOL vmlinux 0xacb5568f sync_blockdev_range -EXPORT_SYMBOL vmlinux 0xacc15c0b __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0xacb9cab9 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print -EXPORT_SYMBOL vmlinux 0xacf271a1 task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info EXPORT_SYMBOL vmlinux 0xacf81453 dma_set_mask EXPORT_SYMBOL vmlinux 0xacfcdabb devm_iounmap EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad081980 poll_freewait EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid EXPORT_SYMBOL vmlinux 0xad53a002 __x86_indirect_call_thunk_rbp -EXPORT_SYMBOL vmlinux 0xad54ed9b blk_queue_flag_clear -EXPORT_SYMBOL vmlinux 0xad55ee94 __filemap_get_folio EXPORT_SYMBOL vmlinux 0xad64148e inet_accept EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function @@ -10257,17 +10221,15 @@ EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadbdf442 rt6_lookup EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long EXPORT_SYMBOL vmlinux 0xadc799ee inet_dgram_connect -EXPORT_SYMBOL vmlinux 0xadcc443e __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd34cb3 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xadf05701 done_path_create EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae17c266 devfreq_monitor_resume EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled EXPORT_SYMBOL vmlinux 0xae2fe2c4 inode_update_time EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0xae52effc balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg EXPORT_SYMBOL vmlinux 0xae6efff2 blk_mq_delay_kick_requeue_list @@ -10282,23 +10244,25 @@ EXPORT_SYMBOL vmlinux 0xaebe3566 scsi_ioctl EXPORT_SYMBOL vmlinux 0xaec66fe9 pci_stop_and_remove_bus_device EXPORT_SYMBOL vmlinux 0xaecde1db flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xaed6d12a netlink_ns_capable EXPORT_SYMBOL vmlinux 0xaee129b6 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xaee493b3 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xaee91aae iov_iter_bvec EXPORT_SYMBOL vmlinux 0xaeff747c udp6_csum_init EXPORT_SYMBOL vmlinux 0xaf031da2 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xaf19dd45 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xaf1f9709 __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xaf232f0d phy_support_sym_pause -EXPORT_SYMBOL vmlinux 0xaf28ab47 kernel_listen EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level EXPORT_SYMBOL vmlinux 0xaf7566a5 security_dentry_init_security EXPORT_SYMBOL vmlinux 0xaf843ef0 tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0xaf84c2d5 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xaf9326c6 __mdiobus_read EXPORT_SYMBOL vmlinux 0xaf937505 mdio_device_reset EXPORT_SYMBOL vmlinux 0xaf956c47 xfrm_init_replay EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit EXPORT_SYMBOL vmlinux 0xafb63ce6 phy_print_status EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafb9f5bd mmc_release_host EXPORT_SYMBOL vmlinux 0xafbc31c5 unix_detach_fds EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error @@ -10306,16 +10270,15 @@ EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp EXPORT_SYMBOL vmlinux 0xafea18d2 neigh_carrier_down EXPORT_SYMBOL vmlinux 0xaffc92bf blk_rq_map_user -EXPORT_SYMBOL vmlinux 0xb00af790 vfs_llseek EXPORT_SYMBOL vmlinux 0xb00ec2ef dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xb01b4b1d nd_device_register EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq EXPORT_SYMBOL vmlinux 0xb01cb959 pm_vt_switch_required EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc -EXPORT_SYMBOL vmlinux 0xb03687f7 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xb0373b4c file_path EXPORT_SYMBOL vmlinux 0xb04533f2 security_inode_setsecctx EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic EXPORT_SYMBOL vmlinux 0xb050419f pci_release_resource -EXPORT_SYMBOL vmlinux 0xb0507ebd copy_splice_read EXPORT_SYMBOL vmlinux 0xb052bff1 flow_indr_dev_setup_offload EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max @@ -10325,12 +10288,16 @@ EXPORT_SYMBOL vmlinux 0xb076f8fa inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xb0971e93 dev_uc_sync EXPORT_SYMBOL vmlinux 0xb097f13f blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xb09b64dd starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb09fc41f mmc_cqe_recovery EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a140c7 unlock_buffer EXPORT_SYMBOL vmlinux 0xb0b76945 __x86_indirect_call_thunk_rsp EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return EXPORT_SYMBOL vmlinux 0xb0e10781 get_option EXPORT_SYMBOL vmlinux 0xb0e602eb memmove EXPORT_SYMBOL vmlinux 0xb0ecb264 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xb111dbb1 shmem_aops EXPORT_SYMBOL vmlinux 0xb11d4122 dma_resv_iter_next_unlocked EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on EXPORT_SYMBOL vmlinux 0xb125a25e tcf_exts_num_actions @@ -10338,10 +10305,9 @@ EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave EXPORT_SYMBOL vmlinux 0xb135355e rtc_add_group EXPORT_SYMBOL vmlinux 0xb136bf48 qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0xb13ab46e __SCK__tp_func_kmem_cache_free EXPORT_SYMBOL vmlinux 0xb1407e4b netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xb141061f i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14eea61 __getblk_gfp EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work EXPORT_SYMBOL vmlinux 0xb1591cff blk_rq_map_user_iov @@ -10356,16 +10322,14 @@ EXPORT_SYMBOL vmlinux 0xb19fc6b6 inet_bind EXPORT_SYMBOL vmlinux 0xb1a1b48b md_bitmap_update_sb EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress -EXPORT_SYMBOL vmlinux 0xb1d26b8a touch_buffer EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t EXPORT_SYMBOL vmlinux 0xb1e3ef80 tcp_read_sock EXPORT_SYMBOL vmlinux 0xb1e7441e jbd2_journal_start EXPORT_SYMBOL vmlinux 0xb1ef2d50 cred_fscmp EXPORT_SYMBOL vmlinux 0xb1f61104 migrate_vma_setup -EXPORT_SYMBOL vmlinux 0xb1f6ee99 block_write_full_page -EXPORT_SYMBOL vmlinux 0xb1fe31e7 __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xb2041a9d dma_resv_copy_fences EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb221cf71 vme_bus_type EXPORT_SYMBOL vmlinux 0xb22bf300 agp_generic_type_to_mask_type EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user @@ -10373,18 +10337,15 @@ EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal EXPORT_SYMBOL vmlinux 0xb2675f27 skb_condense EXPORT_SYMBOL vmlinux 0xb26cfd15 netif_device_detach -EXPORT_SYMBOL vmlinux 0xb27c9e63 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0xb281d4c6 genlmsg_multicast_allns EXPORT_SYMBOL vmlinux 0xb28a537f simple_fill_super EXPORT_SYMBOL vmlinux 0xb2a9cf10 neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0xb2abc39d set_nlink -EXPORT_SYMBOL vmlinux 0xb2b0107a poll_initwait -EXPORT_SYMBOL vmlinux 0xb2b5f75e __break_lease +EXPORT_SYMBOL vmlinux 0xb2add26f mark_buffer_dirty EXPORT_SYMBOL vmlinux 0xb2b86914 release_sock EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count EXPORT_SYMBOL vmlinux 0xb2cb36ba param_set_dyndbg_classes EXPORT_SYMBOL vmlinux 0xb2e790f7 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0xb2e83cfb vfs_copy_file_range EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on @@ -10396,18 +10357,20 @@ EXPORT_SYMBOL vmlinux 0xb313f987 sget_fc EXPORT_SYMBOL vmlinux 0xb321e0f1 mdio_device_register EXPORT_SYMBOL vmlinux 0xb32201be dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xb3248714 is_nd_btt EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb3278fc1 __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit EXPORT_SYMBOL vmlinux 0xb331e6cd phy_read_paged -EXPORT_SYMBOL vmlinux 0xb33c811e audit_log_start EXPORT_SYMBOL vmlinux 0xb34e3d7a dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xb352e4fb __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xb35710fe dentry_open EXPORT_SYMBOL vmlinux 0xb35e782f sk_ns_capable EXPORT_SYMBOL vmlinux 0xb361af33 tcp_disconnect -EXPORT_SYMBOL vmlinux 0xb364bf0b __splice_from_pipe EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock EXPORT_SYMBOL vmlinux 0xb36d804c twl6040_get_vibralr_status EXPORT_SYMBOL vmlinux 0xb37b38a6 path_has_submounts +EXPORT_SYMBOL vmlinux 0xb383df0b filemap_alloc_folio EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic @@ -10417,7 +10380,6 @@ EXPORT_SYMBOL vmlinux 0xb3eff514 mipi_dsi_dcs_get_pixel_format EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0xb3f2296d __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0xb3f2a406 vfs_ioctl EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop @@ -10425,7 +10387,6 @@ EXPORT_SYMBOL vmlinux 0xb3ffa18c seq_write EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method EXPORT_SYMBOL vmlinux 0xb414438b _dev_notice -EXPORT_SYMBOL vmlinux 0xb41f7cfc jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked EXPORT_SYMBOL vmlinux 0xb4270634 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0xb432fb40 amd_iommu_domain_direct_map @@ -10436,20 +10397,23 @@ EXPORT_SYMBOL vmlinux 0xb45429b8 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present EXPORT_SYMBOL vmlinux 0xb473b592 nf_log_trace -EXPORT_SYMBOL vmlinux 0xb47b5233 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic EXPORT_SYMBOL vmlinux 0xb485c592 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xb4863f29 blk_finish_plug EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4951a28 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer EXPORT_SYMBOL vmlinux 0xb4a0b699 input_match_device_id EXPORT_SYMBOL vmlinux 0xb4e3a3b1 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb4ef0467 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0xb4fc70bc from_kuid EXPORT_SYMBOL vmlinux 0xb5052e86 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0xb534fdc1 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xb5359b8f iterate_fd EXPORT_SYMBOL vmlinux 0xb53d6b6a dm_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb558b8ef mmc_put_card EXPORT_SYMBOL vmlinux 0xb55bcfb1 pci_iounmap +EXPORT_SYMBOL vmlinux 0xb560ac7c generic_write_checks_count EXPORT_SYMBOL vmlinux 0xb5617fbd udp_poll EXPORT_SYMBOL vmlinux 0xb56dd09e input_grab_device EXPORT_SYMBOL vmlinux 0xb5759012 pci_request_region @@ -10458,12 +10422,10 @@ EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5c4edb6 folio_account_redirty EXPORT_SYMBOL vmlinux 0xb5c66a17 ps2_interrupt EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work EXPORT_SYMBOL vmlinux 0xb5f866e1 security_inode_init_security EXPORT_SYMBOL vmlinux 0xb5faa4f0 dst_alloc -EXPORT_SYMBOL vmlinux 0xb60dc326 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xb611a00c xfrm_state_free EXPORT_SYMBOL vmlinux 0xb6156a44 blk_mq_stop_hw_queue EXPORT_SYMBOL vmlinux 0xb617a141 ndisc_mc_map @@ -10485,16 +10447,21 @@ EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt EXPORT_SYMBOL vmlinux 0xb67ce2df security_path_unlink EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb6913870 mmc_can_discard EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69db7e2 kernel_listen EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6aff735 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xb6c11446 i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit EXPORT_SYMBOL vmlinux 0xb6cf350c security_unix_stream_connect EXPORT_SYMBOL vmlinux 0xb6d1b484 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xb6d8e29c ip6_dst_check EXPORT_SYMBOL vmlinux 0xb6da6f4a __skb_free_datagram_locked EXPORT_SYMBOL vmlinux 0xb6dc4ef4 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb702955c console_force_preferred_locked +EXPORT_SYMBOL vmlinux 0xb709063d locks_remove_posix EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit @@ -10504,51 +10471,45 @@ EXPORT_SYMBOL vmlinux 0xb7676d2d sock_cmsg_send EXPORT_SYMBOL vmlinux 0xb7747789 cdev_add EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78e1400 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0xb79bab98 devm_rproc_alloc EXPORT_SYMBOL vmlinux 0xb79c312b skb_queue_tail EXPORT_SYMBOL vmlinux 0xb79efc5e devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0xb7a945b1 kernel_bind EXPORT_SYMBOL vmlinux 0xb7ae8688 dev_alloc_name EXPORT_SYMBOL vmlinux 0xb7b0cca7 cros_ec_prepare_tx -EXPORT_SYMBOL vmlinux 0xb7b0ffa5 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xb7b82628 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0xb7c0f443 sort EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags EXPORT_SYMBOL vmlinux 0xb7c840e4 load_nls_default EXPORT_SYMBOL vmlinux 0xb7d145e3 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xb7d7e3e2 generic_file_mmap EXPORT_SYMBOL vmlinux 0xb80b3a63 noop_qdisc EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound EXPORT_SYMBOL vmlinux 0xb80c4d75 cfb_imageblit EXPORT_SYMBOL vmlinux 0xb8144419 nf_log_set EXPORT_SYMBOL vmlinux 0xb8244e60 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0xb831214d vmf_insert_mixed_mkwrite EXPORT_SYMBOL vmlinux 0xb8372c31 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0xb85253fc kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xb86125c7 __block_write_full_folio EXPORT_SYMBOL vmlinux 0xb862f7ea __x86_indirect_jump_thunk_rbx EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var -EXPORT_SYMBOL vmlinux 0xb8724cf0 __tracepoint_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse EXPORT_SYMBOL vmlinux 0xb89c3b6b param_ops_ulong +EXPORT_SYMBOL vmlinux 0xb8aa76c8 folio_wait_private_2 EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link EXPORT_SYMBOL vmlinux 0xb8b0985a amd_iommu_flush_tlb EXPORT_SYMBOL vmlinux 0xb8c58228 __netif_napi_del EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 -EXPORT_SYMBOL vmlinux 0xb8f61016 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0xb903c829 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb90d2b01 d_obtain_root EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb9213edd folio_add_lru +EXPORT_SYMBOL vmlinux 0xb93abd3e free_task EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab -EXPORT_SYMBOL vmlinux 0xb9447955 i2c_register_driver EXPORT_SYMBOL vmlinux 0xb946cf08 make_kprojid EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only EXPORT_SYMBOL vmlinux 0xb952a43d make_kuid EXPORT_SYMBOL vmlinux 0xb9575109 eth_header_cache -EXPORT_SYMBOL vmlinux 0xb95b8e95 lease_get_mtime EXPORT_SYMBOL vmlinux 0xb95cd75a scsi_device_quiesce EXPORT_SYMBOL vmlinux 0xb95d7679 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xb9606386 genphy_config_eee_advert @@ -10556,18 +10517,20 @@ EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler EXPORT_SYMBOL vmlinux 0xb9825984 __klp_sched_try_switch -EXPORT_SYMBOL vmlinux 0xb9875c3b iterate_dir +EXPORT_SYMBOL vmlinux 0xb98e8afd mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0xb9929f35 trace_event_printf EXPORT_SYMBOL vmlinux 0xb9a09367 inet_twsk_deschedule_put EXPORT_SYMBOL vmlinux 0xb9a09ddd __x86_indirect_jump_thunk_rcx +EXPORT_SYMBOL vmlinux 0xb9aeffdb ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark EXPORT_SYMBOL vmlinux 0xb9cfd84f vga_switcheroo_client_fb_set EXPORT_SYMBOL vmlinux 0xb9db8ce2 tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9f90b26 jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0xba00daa2 dma_fence_allocate_private_stub EXPORT_SYMBOL vmlinux 0xba01ac9e mr_table_alloc +EXPORT_SYMBOL vmlinux 0xba0cd560 gpiochip_irq_reqres EXPORT_SYMBOL vmlinux 0xba0f24d6 sock_set_reuseaddr EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le EXPORT_SYMBOL vmlinux 0xba11a3cd gnet_stats_start_copy_compat @@ -10575,44 +10538,42 @@ EXPORT_SYMBOL vmlinux 0xba2ff2da tso_start EXPORT_SYMBOL vmlinux 0xba43fadb convert_art_to_tsc EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0xba59955a __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xba6f290c truncate_pagecache -EXPORT_SYMBOL vmlinux 0xba75af65 mdiobus_scan_c22 EXPORT_SYMBOL vmlinux 0xba77b168 __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0xba791372 dev_vprintk_emit EXPORT_SYMBOL vmlinux 0xba8595be netpoll_parse_options EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock EXPORT_SYMBOL vmlinux 0xbabf1b5d mdio_device_create +EXPORT_SYMBOL vmlinux 0xbac02ed9 dump_emit EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len EXPORT_SYMBOL vmlinux 0xbacbded2 iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0xbae61269 i2c_get_match_data EXPORT_SYMBOL vmlinux 0xbaf50292 fs_param_is_fd EXPORT_SYMBOL vmlinux 0xbaf950c3 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xbaf9d45c fixed_size_llseek EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start EXPORT_SYMBOL vmlinux 0xbb0195b3 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0xbb03bf8d vfs_fadvise EXPORT_SYMBOL vmlinux 0xbb03e0c5 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xbb049dd6 nlmsg_notify EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset EXPORT_SYMBOL vmlinux 0xbb08e59b tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0xbb0a7d2f amd_iommu_domain_clear_gcr3 EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb17d813 may_umount_tree EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb28adb6 __traceiter_kmem_cache_free EXPORT_SYMBOL vmlinux 0xbb43f75e cdrom_get_media_event EXPORT_SYMBOL vmlinux 0xbb4772ba inet_csk_init_xmit_timers EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer EXPORT_SYMBOL vmlinux 0xbb53f1de genphy_read_abilities -EXPORT_SYMBOL vmlinux 0xbb5995ba jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xbb704cab devfreq_register_opp_notifier EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock EXPORT_SYMBOL vmlinux 0xbbb22dae vlan_filter_drop_vids EXPORT_SYMBOL vmlinux 0xbbb28e1b devm_get_clk_from_child -EXPORT_SYMBOL vmlinux 0xbbceb009 nd_device_notify +EXPORT_SYMBOL vmlinux 0xbbd969ed __splice_from_pipe EXPORT_SYMBOL vmlinux 0xbbda18c4 dma_fence_free -EXPORT_SYMBOL vmlinux 0xbc14a3a9 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xbbdafb55 kern_path_create EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc308ff2 nd_device_unregister EXPORT_SYMBOL vmlinux 0xbc40ec3c devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0xbc5c2895 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0xbc6d8684 kobject_get @@ -10626,36 +10587,40 @@ EXPORT_SYMBOL vmlinux 0xbd00375c mmc_remove_host EXPORT_SYMBOL vmlinux 0xbd163da1 __folio_alloc EXPORT_SYMBOL vmlinux 0xbd25d1f0 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xbd2661d4 mdiobus_c45_write_nested EXPORT_SYMBOL vmlinux 0xbd35431a clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi EXPORT_SYMBOL vmlinux 0xbd3bfd9e dst_release_immediate EXPORT_SYMBOL vmlinux 0xbd3e1a41 padata_do_parallel EXPORT_SYMBOL vmlinux 0xbd44889a simple_transaction_read EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4b199a vfs_link EXPORT_SYMBOL vmlinux 0xbd4b3101 blk_mq_destroy_queue EXPORT_SYMBOL vmlinux 0xbd5c67a1 elv_rb_former_request EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 EXPORT_SYMBOL vmlinux 0xbd68ab76 simple_transaction_get EXPORT_SYMBOL vmlinux 0xbda1905d dev_set_threaded -EXPORT_SYMBOL vmlinux 0xbdab0dc3 bprm_change_interp EXPORT_SYMBOL vmlinux 0xbdb6cbee configfs_unregister_subsystem EXPORT_SYMBOL vmlinux 0xbdc23e7e sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0xbdce7eb9 done_path_create EXPORT_SYMBOL vmlinux 0xbddb8e6e tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0xbdec201b xfrm_trans_queue EXPORT_SYMBOL vmlinux 0xbdfa8e14 configfs_depend_item_unlocked EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe EXPORT_SYMBOL vmlinux 0xbe05fe79 touch_atime +EXPORT_SYMBOL vmlinux 0xbe0bf683 nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0xbe144437 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0xbe1e9ab3 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xbe2fb3b6 filemap_flush +EXPORT_SYMBOL vmlinux 0xbe31e90c jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4c1bac __mdiobus_c45_write EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state EXPORT_SYMBOL vmlinux 0xbe5ba994 security_socket_getpeersec_dgram EXPORT_SYMBOL vmlinux 0xbe663006 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe70ec0c generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0xbe7910ee __skb_wait_for_more_packets EXPORT_SYMBOL vmlinux 0xbe7920cf nf_unregister_net_hooks EXPORT_SYMBOL vmlinux 0xbe89eebb skb_realloc_headroom @@ -10665,23 +10630,32 @@ EXPORT_SYMBOL vmlinux 0xbeb8c816 pcie_set_readrq EXPORT_SYMBOL vmlinux 0xbecf3734 xfrm6_protocol_deregister EXPORT_SYMBOL vmlinux 0xbed005d3 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xbee34c3e __i2c_transfer EXPORT_SYMBOL vmlinux 0xbee44036 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xbeedbbe2 vme_unregister_driver EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf21e8cd jbd2_journal_check_used_features EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf365add lease_modify EXPORT_SYMBOL vmlinux 0xbf45078d cdev_device_add +EXPORT_SYMBOL vmlinux 0xbf49a4f9 iter_file_splice_write EXPORT_SYMBOL vmlinux 0xbf4a0487 forget_all_cached_acls EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init EXPORT_SYMBOL vmlinux 0xbf76180c mmc_retune_release EXPORT_SYMBOL vmlinux 0xbf7b287f scsi_host_get -EXPORT_SYMBOL vmlinux 0xbf8390a9 submit_bio EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb4415d devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xbfb47d94 __bh_read EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfcee021 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xbff0b0b6 mdio_find_bus EXPORT_SYMBOL vmlinux 0xbffbdf85 unregister_quota_format EXPORT_SYMBOL vmlinux 0xc00052ae input_set_min_poll_interval EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable -EXPORT_SYMBOL vmlinux 0xc03ca3f8 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xc04996c9 __folio_lock +EXPORT_SYMBOL vmlinux 0xc03b8ca2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xc04af624 kern_unmount +EXPORT_SYMBOL vmlinux 0xc053ca77 generic_permission EXPORT_SYMBOL vmlinux 0xc05ec5cb eth_platform_get_mac_address EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked @@ -10693,6 +10667,8 @@ EXPORT_SYMBOL vmlinux 0xc0c9e5f6 inet_rtx_syn_ack EXPORT_SYMBOL vmlinux 0xc0d7d8ec mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0xc0e90a4f ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xc0ea47b6 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc0fc2f9a noop_llseek EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor @@ -10701,25 +10677,28 @@ EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data -EXPORT_SYMBOL vmlinux 0xc14e3886 filemap_get_folios EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq EXPORT_SYMBOL vmlinux 0xc166b007 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xc1685cf6 jbd2_journal_init_jbd_inode EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1725b1e close_fd_get_file EXPORT_SYMBOL vmlinux 0xc1756ae1 backlight_device_register EXPORT_SYMBOL vmlinux 0xc17c9834 iov_iter_advance EXPORT_SYMBOL vmlinux 0xc19dfbe9 key_task_permission EXPORT_SYMBOL vmlinux 0xc1a7d0c9 unpin_user_page EXPORT_SYMBOL vmlinux 0xc1ae7a20 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc1af0d5c __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xc1b8955a super_setup_bdi_name EXPORT_SYMBOL vmlinux 0xc1cb419c __traceiter_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xc1ccf248 thaw_super EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1ddd074 input_flush_device EXPORT_SYMBOL vmlinux 0xc1dff02e zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc1e156a0 lookup_one_len EXPORT_SYMBOL vmlinux 0xc1f54b3f __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc1ff7ac8 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xc20040f1 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0xc201262e tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0xc226ec12 vfs_clone_file_range EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier EXPORT_SYMBOL vmlinux 0xc234eb66 amd_iommu_device_info EXPORT_SYMBOL vmlinux 0xc23d632c inet_proto_csum_replace4 @@ -10730,44 +10709,42 @@ EXPORT_SYMBOL vmlinux 0xc26689a5 mipi_dsi_dcs_get_display_brightness_large EXPORT_SYMBOL vmlinux 0xc272e8e9 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits -EXPORT_SYMBOL vmlinux 0xc290baa4 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xc2799364 mdiobus_free +EXPORT_SYMBOL vmlinux 0xc284f671 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a1d313 __netlink_dump_start EXPORT_SYMBOL vmlinux 0xc2a25067 pci_free_irq EXPORT_SYMBOL vmlinux 0xc2a56a2a inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0xc2ae3b41 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0xc2af8b03 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xc2b8d503 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order EXPORT_SYMBOL vmlinux 0xc2d1e9ae __lock_sock_fast -EXPORT_SYMBOL vmlinux 0xc2da3a03 jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices EXPORT_SYMBOL vmlinux 0xc2ea4a88 __alloc_pages EXPORT_SYMBOL vmlinux 0xc2fc363f udp_seq_ops EXPORT_SYMBOL vmlinux 0xc2fe4c1c simple_write_begin EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc306b210 con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xc30bd8fe read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0xc30c8b16 sockfd_lookup EXPORT_SYMBOL vmlinux 0xc310b981 strnstr EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc3204b6f __mmap_lock_do_trace_start_locking EXPORT_SYMBOL vmlinux 0xc32285bd xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0xc3265428 kernel_accept EXPORT_SYMBOL vmlinux 0xc327ffe1 dev_trans_start +EXPORT_SYMBOL vmlinux 0xc32c67ce file_ns_capable EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32e58ee ip6_mtu EXPORT_SYMBOL vmlinux 0xc347b7eb dquot_alloc_inode EXPORT_SYMBOL vmlinux 0xc355e637 inet_frag_queue_insert EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc35d3fbb fiemap_prep EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc3893493 nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer EXPORT_SYMBOL vmlinux 0xc3a12ea5 iov_iter_revert EXPORT_SYMBOL vmlinux 0xc3a5d7b9 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xc3a6b9b4 netlink_unicast EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq EXPORT_SYMBOL vmlinux 0xc3e91ce2 kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xc3ed1140 folio_migrate_copy EXPORT_SYMBOL vmlinux 0xc3f78aaf netdev_master_upper_dev_link EXPORT_SYMBOL vmlinux 0xc3fa3105 d_exact_alias EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock @@ -10776,39 +10753,39 @@ EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert EXPORT_SYMBOL vmlinux 0xc42a08b0 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc438ec37 balance_dirty_pages_ratelimited EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc47af9c2 thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0xc47b76aa bio_reset EXPORT_SYMBOL vmlinux 0xc47dadc5 xfrm_state_lookup_byaddr EXPORT_SYMBOL vmlinux 0xc4a210d6 pnp_get_resource EXPORT_SYMBOL vmlinux 0xc4ab1786 nf_log_register EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog EXPORT_SYMBOL vmlinux 0xc4c7548d phy_driver_unregister -EXPORT_SYMBOL vmlinux 0xc4d9c52c __bh_read_batch EXPORT_SYMBOL vmlinux 0xc4e5cae3 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xc4e7fee8 kmem_cache_shrink EXPORT_SYMBOL vmlinux 0xc4f8666c ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xc510bcb3 rproc_put EXPORT_SYMBOL vmlinux 0xc515f1cd __x86_indirect_jump_thunk_r13 +EXPORT_SYMBOL vmlinux 0xc51cbbcc kernel_accept EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc534abf9 __mdiobus_c45_read EXPORT_SYMBOL vmlinux 0xc538c0ff napi_gro_flush -EXPORT_SYMBOL vmlinux 0xc53b72f2 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xc54fd6cc block_write_end EXPORT_SYMBOL vmlinux 0xc558530d profile_pc EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc58367d1 i2c_clients_command EXPORT_SYMBOL vmlinux 0xc5863b90 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user EXPORT_SYMBOL vmlinux 0xc58d8017 __ip_dev_find EXPORT_SYMBOL vmlinux 0xc5940958 agp_generic_alloc_page EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c5f1a6 file_write_and_wait_range EXPORT_SYMBOL vmlinux 0xc5ca9ab7 eth_validate_addr -EXPORT_SYMBOL vmlinux 0xc5d4deed filemap_map_pages EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource EXPORT_SYMBOL vmlinux 0xc5eeb54c phy_device_register -EXPORT_SYMBOL vmlinux 0xc5ff131b add_to_pipe EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus EXPORT_SYMBOL vmlinux 0xc6126264 dma_alloc_attrs EXPORT_SYMBOL vmlinux 0xc616c142 get_user_pages_remote @@ -10829,16 +10806,15 @@ EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key EXPORT_SYMBOL vmlinux 0xc6f58585 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xc703375d pid_task EXPORT_SYMBOL vmlinux 0xc7047507 dquot_quota_on EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write EXPORT_SYMBOL vmlinux 0xc71089cc tty_port_close_start -EXPORT_SYMBOL vmlinux 0xc714292e wake_up_process EXPORT_SYMBOL vmlinux 0xc71a9d07 put_cmsg_scm_timestamping64 EXPORT_SYMBOL vmlinux 0xc71b4f27 scsi_is_target_device EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port EXPORT_SYMBOL vmlinux 0xc74c23e0 tty_port_close_end EXPORT_SYMBOL vmlinux 0xc74facf6 fwnode_iomap -EXPORT_SYMBOL vmlinux 0xc75670c4 lease_modify EXPORT_SYMBOL vmlinux 0xc75691b4 fwnode_graph_parse_endpoint EXPORT_SYMBOL vmlinux 0xc75d036a mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0xc761531a unregister_nls @@ -10855,49 +10831,49 @@ EXPORT_SYMBOL vmlinux 0xc7c7ea76 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0xc7cb4e2e cdrom_number_of_slots EXPORT_SYMBOL vmlinux 0xc7e3a8f9 dev_mc_add -EXPORT_SYMBOL vmlinux 0xc7e77c80 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc7e77f22 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xc7ea726f set_user_nice EXPORT_SYMBOL vmlinux 0xc7eeb0c0 inet6_getname EXPORT_SYMBOL vmlinux 0xc7fc5260 n_tty_ioctl_helper EXPORT_SYMBOL vmlinux 0xc7fdb5be pci_get_slot EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80d86e7 __tracepoint_mmap_lock_released EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check EXPORT_SYMBOL vmlinux 0xc84206a7 ip6_xmit EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu EXPORT_SYMBOL vmlinux 0xc856ae2e dns_query EXPORT_SYMBOL vmlinux 0xc856c7ec dquot_quota_off EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc877bcfe unregister_shrinker EXPORT_SYMBOL vmlinux 0xc87d60be ip_sock_set_tos EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd EXPORT_SYMBOL vmlinux 0xc893bf3f devm_rproc_add EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b4c5f7 unmap_mapping_range EXPORT_SYMBOL vmlinux 0xc8b4f85f dma_resv_add_fence EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table -EXPORT_SYMBOL vmlinux 0xc8c8dc08 setup_new_exec EXPORT_SYMBOL vmlinux 0xc8cbf751 tlbstate_untag_mask EXPORT_SYMBOL vmlinux 0xc8cc70a1 udp_seq_next EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc905fd98 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xc911c329 folio_unlock EXPORT_SYMBOL vmlinux 0xc921f4a5 fs_param_is_path EXPORT_SYMBOL vmlinux 0xc93489a9 twl6040_reg_write EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc93f93b0 inode_permission EXPORT_SYMBOL vmlinux 0xc943284a d_tmpfile EXPORT_SYMBOL vmlinux 0xc945eead vc_cons +EXPORT_SYMBOL vmlinux 0xc9488fd2 release_pages EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev EXPORT_SYMBOL vmlinux 0xc982533c flow_rule_match_arp EXPORT_SYMBOL vmlinux 0xc98f23d3 simple_rmdir -EXPORT_SYMBOL vmlinux 0xc99428d8 jbd2_journal_stop EXPORT_SYMBOL vmlinux 0xc9946880 tcp_mss_to_mtu EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev EXPORT_SYMBOL vmlinux 0xc9a1c8a4 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0xc9b41ef2 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xc9b48f48 dcache_dir_close -EXPORT_SYMBOL vmlinux 0xc9b56511 try_module_get EXPORT_SYMBOL vmlinux 0xc9c147c7 max8998_read_reg -EXPORT_SYMBOL vmlinux 0xc9c86270 cad_pid +EXPORT_SYMBOL vmlinux 0xc9c20200 vm_map_ram EXPORT_SYMBOL vmlinux 0xc9d23e73 pci_rebar_get_possible_sizes EXPORT_SYMBOL vmlinux 0xc9daf143 ip_output EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init @@ -10905,13 +10881,12 @@ EXPORT_SYMBOL vmlinux 0xc9fe1498 blk_pre_runtime_resume EXPORT_SYMBOL vmlinux 0xca00f453 pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xca0d753f netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0xca136c75 __folio_batch_release EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit EXPORT_SYMBOL vmlinux 0xca19ba43 fqdir_exit -EXPORT_SYMBOL vmlinux 0xca1adc8c nd_dax_probe +EXPORT_SYMBOL vmlinux 0xca19c411 writeback_inodes_sb_nr EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca24825f __SetPageMovable +EXPORT_SYMBOL vmlinux 0xca30724d block_dirty_folio EXPORT_SYMBOL vmlinux 0xca420241 fb_io_write EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function EXPORT_SYMBOL vmlinux 0xca701db3 scsi_scan_target @@ -10920,24 +10895,24 @@ EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store EXPORT_SYMBOL vmlinux 0xca9e017f key_link EXPORT_SYMBOL vmlinux 0xcac3b790 tls_client_hello_x509 -EXPORT_SYMBOL vmlinux 0xcacd6f92 mmc_is_req_done EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception EXPORT_SYMBOL vmlinux 0xcad2a81b param_set_bool EXPORT_SYMBOL vmlinux 0xcaee66b3 pcie_set_mps EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb0dfcf3 rw_verify_area EXPORT_SYMBOL vmlinux 0xcb114e06 serio_rescan EXPORT_SYMBOL vmlinux 0xcb1266be nf_log_unset EXPORT_SYMBOL vmlinux 0xcb1bdb5c eisa_driver_unregister EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xcb451c86 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb8e2eae vfs_iter_write +EXPORT_SYMBOL vmlinux 0xcba6f20c kernel_connect EXPORT_SYMBOL vmlinux 0xcbb0e414 tcf_action_dump_1 EXPORT_SYMBOL vmlinux 0xcbbc9f27 fb_pgprotect EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbc22e33 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic EXPORT_SYMBOL vmlinux 0xcbe30fba aperture_remove_conflicting_pci_devices +EXPORT_SYMBOL vmlinux 0xcbf094af folio_migrate_mapping EXPORT_SYMBOL vmlinux 0xcbf74c81 fs_param_is_blob EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev EXPORT_SYMBOL vmlinux 0xcc0d8a36 simple_release_fs @@ -10950,16 +10925,15 @@ EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup EXPORT_SYMBOL vmlinux 0xcc3f4be0 key_unlink EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp -EXPORT_SYMBOL vmlinux 0xcc491a97 vfs_path_parent_lookup EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible EXPORT_SYMBOL vmlinux 0xcc5771db __xfrm_route_forward EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc8186c5 nd_pfn_probe EXPORT_SYMBOL vmlinux 0xcc85f9d6 edac_mc_find EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id EXPORT_SYMBOL vmlinux 0xcca7b5a8 make_bad_inode EXPORT_SYMBOL vmlinux 0xcca7eab4 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xccaefe91 i2c_register_driver EXPORT_SYMBOL vmlinux 0xccaf0650 mmc_of_parse_voltage EXPORT_SYMBOL vmlinux 0xccaf994e dma_fence_set_deadline EXPORT_SYMBOL vmlinux 0xccbe334c add_to_page_cache_lru @@ -10969,25 +10943,25 @@ EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd12a649 vfs_fsync_range EXPORT_SYMBOL vmlinux 0xcd279169 nla_find EXPORT_SYMBOL vmlinux 0xcd4beba6 dev_get_mac_address EXPORT_SYMBOL vmlinux 0xcd5634b1 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xcd6d5534 write_dirty_buffer EXPORT_SYMBOL vmlinux 0xcd7a3528 handshake_req_cancel EXPORT_SYMBOL vmlinux 0xcd84bc3d dev_set_promiscuity EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd995e95 mmc_erase_group_aligned EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change EXPORT_SYMBOL vmlinux 0xcdb2412e xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0xcdc11069 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xcdbc2c78 mntget EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel EXPORT_SYMBOL vmlinux 0xcdcb212f legacy_pic EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev EXPORT_SYMBOL vmlinux 0xcdee74b1 neigh_table_init -EXPORT_SYMBOL vmlinux 0xce120ed3 vm_insert_pages +EXPORT_SYMBOL vmlinux 0xcdf4b383 pipe_lock EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake EXPORT_SYMBOL vmlinux 0xce2e5d1b tty_name EXPORT_SYMBOL vmlinux 0xce3a8993 freeze_super -EXPORT_SYMBOL vmlinux 0xce4cbf38 devm_devfreq_add_governor EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r EXPORT_SYMBOL vmlinux 0xce547cb9 skb_copy_expand @@ -10999,51 +10973,53 @@ EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table EXPORT_SYMBOL vmlinux 0xce807a25 up_write EXPORT_SYMBOL vmlinux 0xce81801e devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0xce8ea8fe splice_direct_to_actor EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu EXPORT_SYMBOL vmlinux 0xcea54204 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xcea7a729 lock_rename EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcecb8756 to_nd_btt EXPORT_SYMBOL vmlinux 0xceccdaa3 qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xcee68838 folio_wait_private_2 EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port EXPORT_SYMBOL vmlinux 0xcf1001f2 skb_udp_tunnel_segment EXPORT_SYMBOL vmlinux 0xcf227ff6 tcp_gro_complete EXPORT_SYMBOL vmlinux 0xcf25092a mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2a893b vme_dma_list_free EXPORT_SYMBOL vmlinux 0xcf2af657 bfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xcf2beeae xfrm_policy_unregister_afinfo EXPORT_SYMBOL vmlinux 0xcf378efb sock_no_getname -EXPORT_SYMBOL vmlinux 0xcf39151d try_lookup_one_len EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf5fe559 nvdimm_bus_lock EXPORT_SYMBOL vmlinux 0xcf6231a8 skb_recv_datagram EXPORT_SYMBOL vmlinux 0xcf70649b __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0xcf7758ff jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0xcf838ea8 udp_read_skb +EXPORT_SYMBOL vmlinux 0xcf8799cc __mark_inode_dirty EXPORT_SYMBOL vmlinux 0xcf963b28 request_firmware_into_buf EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos EXPORT_SYMBOL vmlinux 0xcfc33136 textsearch_prepare EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfda9f26 __wait_on_buffer EXPORT_SYMBOL vmlinux 0xcfdecd8f md_update_sb EXPORT_SYMBOL vmlinux 0xcfe01b5e kobject_init EXPORT_SYMBOL vmlinux 0xcfeb429c _dev_err EXPORT_SYMBOL vmlinux 0xd0189e16 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xd01edcd9 sockfd_lookup EXPORT_SYMBOL vmlinux 0xd027bf06 xfrm_init_state EXPORT_SYMBOL vmlinux 0xd02e794d sg_miter_next EXPORT_SYMBOL vmlinux 0xd0443435 dev_get_by_name -EXPORT_SYMBOL vmlinux 0xd0470a85 nd_device_register EXPORT_SYMBOL vmlinux 0xd048aa9a flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0xd04abdb0 folio_clear_dirty_for_io EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net EXPORT_SYMBOL vmlinux 0xd0590670 vga_switcheroo_register_handler EXPORT_SYMBOL vmlinux 0xd05e519b is_acpi_data_node EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd066e225 vm_map_pages EXPORT_SYMBOL vmlinux 0xd0683653 input_reset_device +EXPORT_SYMBOL vmlinux 0xd06fd62e folio_alloc EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd07ceb08 kern_path_create EXPORT_SYMBOL vmlinux 0xd080172a mfd_add_devices EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump EXPORT_SYMBOL vmlinux 0xd09561ce bio_integrity_alloc @@ -11052,27 +11028,29 @@ EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface EXPORT_SYMBOL vmlinux 0xd0c59c46 tcf_block_put EXPORT_SYMBOL vmlinux 0xd0d48511 dquot_release -EXPORT_SYMBOL vmlinux 0xd0dd205c __netlink_ns_capable EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk EXPORT_SYMBOL vmlinux 0xd0f4aa51 inet_frag_reasm_finish EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key EXPORT_SYMBOL vmlinux 0xd0ff87c2 md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize EXPORT_SYMBOL vmlinux 0xd136aaee simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xd137d37b splice_direct_to_actor EXPORT_SYMBOL vmlinux 0xd13b0025 tcp_set_rcvlowat EXPORT_SYMBOL vmlinux 0xd14fd05a tcp_get_cookie_sock EXPORT_SYMBOL vmlinux 0xd16671b6 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xd1775a7a io_uring_get_socket EXPORT_SYMBOL vmlinux 0xd186ac72 configfs_register_group EXPORT_SYMBOL vmlinux 0xd18b9790 skb_vlan_push EXPORT_SYMBOL vmlinux 0xd194bb15 __xfrm_init_state EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd1996faf jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd19972e5 end_buffer_async_write EXPORT_SYMBOL vmlinux 0xd199da0f dma_find_channel EXPORT_SYMBOL vmlinux 0xd1a09dfe seq_read EXPORT_SYMBOL vmlinux 0xd1ce1bf9 blk_mq_requeue_request EXPORT_SYMBOL vmlinux 0xd1cf6e49 proc_create EXPORT_SYMBOL vmlinux 0xd1d6e0b7 boot_cpu_data EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1ee01a3 follow_down_one EXPORT_SYMBOL vmlinux 0xd1f093e3 __genphy_config_aneg EXPORT_SYMBOL vmlinux 0xd1f3bd78 xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc @@ -11085,13 +11063,14 @@ EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item EXPORT_SYMBOL vmlinux 0xd224fb9b fs_bio_set EXPORT_SYMBOL vmlinux 0xd22b64f0 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0xd23b23e3 mmc_detect_card_removed EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook EXPORT_SYMBOL vmlinux 0xd25ed994 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xd2646a7c dma_fence_describe EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd2a3d63c dump_page +EXPORT_SYMBOL vmlinux 0xd282b6bd flush_signals +EXPORT_SYMBOL vmlinux 0xd2878f82 would_dump EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used @@ -11099,44 +11078,47 @@ EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep EXPORT_SYMBOL vmlinux 0xd2f7b946 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xd31282db i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0xd31a8675 mini_qdisc_pair_block_init EXPORT_SYMBOL vmlinux 0xd32f5af7 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xd3338399 vfs_symlink EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xd33dd121 bio_add_page -EXPORT_SYMBOL vmlinux 0xd342aabc page_symlink EXPORT_SYMBOL vmlinux 0xd352e7a6 fifo_set_limit EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd3675187 folio_account_redirty EXPORT_SYMBOL vmlinux 0xd367a6af skb_dequeue -EXPORT_SYMBOL vmlinux 0xd36b70b4 file_fdatawait_range EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd38e102c fget EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd3a4c6ba vfs_fsync_range EXPORT_SYMBOL vmlinux 0xd3bb402a inet_ioctl EXPORT_SYMBOL vmlinux 0xd3e389df pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0xd3e7d23a vme_register_error_handler EXPORT_SYMBOL vmlinux 0xd3f74fb1 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xd3fa642a filp_open EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal EXPORT_SYMBOL vmlinux 0xd41a9009 inet_csk_destroy_sock EXPORT_SYMBOL vmlinux 0xd426ec80 ip_setsockopt -EXPORT_SYMBOL vmlinux 0xd43b7312 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xd42aab22 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xd4424c71 pcpu_hot EXPORT_SYMBOL vmlinux 0xd4429055 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xd446249a vfs_copy_file_range EXPORT_SYMBOL vmlinux 0xd4596078 inet_pton_with_scope EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex EXPORT_SYMBOL vmlinux 0xd4633cce phy_remove_link_mode EXPORT_SYMBOL vmlinux 0xd4755281 rproc_da_to_va EXPORT_SYMBOL vmlinux 0xd479f5d4 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xd47b33e9 mdiobus_scan_c22 EXPORT_SYMBOL vmlinux 0xd4820e34 pm860x_page_bulk_read EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48a6563 vfs_statfs EXPORT_SYMBOL vmlinux 0xd48a9f15 softnet_data -EXPORT_SYMBOL vmlinux 0xd4982b3c vm_insert_page EXPORT_SYMBOL vmlinux 0xd4aabd95 bio_add_folio EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0xd4b5c763 __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cfa5ce invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table EXPORT_SYMBOL vmlinux 0xd4ec7d63 eisa_driver_register EXPORT_SYMBOL vmlinux 0xd4f1ec41 pfifo_fast_ops @@ -11144,10 +11126,8 @@ EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources EXPORT_SYMBOL vmlinux 0xd543e0d5 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xd565afbc nonseekable_open EXPORT_SYMBOL vmlinux 0xd574857e devm_arch_io_reserve_memtype_wc EXPORT_SYMBOL vmlinux 0xd59c919b drop_super_exclusive -EXPORT_SYMBOL vmlinux 0xd5a8ef52 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state EXPORT_SYMBOL vmlinux 0xd5c2c748 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xd5cdd5c7 devm_pci_remap_iospace @@ -11156,10 +11136,10 @@ EXPORT_SYMBOL vmlinux 0xd6098193 vga_client_register EXPORT_SYMBOL vmlinux 0xd6150dd0 t10_pi_type3_crc EXPORT_SYMBOL vmlinux 0xd61a01ba stop_tty -EXPORT_SYMBOL vmlinux 0xd62b7156 generic_buffers_fsync EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd64abff0 block_write_begin EXPORT_SYMBOL vmlinux 0xd658a679 proc_symlink EXPORT_SYMBOL vmlinux 0xd65ca7c8 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness @@ -11172,7 +11152,8 @@ EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz -EXPORT_SYMBOL vmlinux 0xd6bb9fb7 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xd6ccf1ef mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xd6da969f open_exec EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc EXPORT_SYMBOL vmlinux 0xd6f5dfef set_pages_array_wb @@ -11189,10 +11170,11 @@ EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd74945fb capable_wrt_inode_uidgid EXPORT_SYMBOL vmlinux 0xd7694209 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xd76cc8b7 jbd2_complete_transaction EXPORT_SYMBOL vmlinux 0xd76d99d9 mipi_dsi_dcs_enter_sleep_mode EXPORT_SYMBOL vmlinux 0xd77cd76d __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd77f03d8 i2c_smbus_read_block_data EXPORT_SYMBOL vmlinux 0xd7813409 neigh_seq_stop EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load EXPORT_SYMBOL vmlinux 0xd79d736b dm_io @@ -11208,7 +11190,6 @@ EXPORT_SYMBOL vmlinux 0xd80194fc scsi_print_sense EXPORT_SYMBOL vmlinux 0xd80c35f2 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0xd81907cd dst_init -EXPORT_SYMBOL vmlinux 0xd8206a71 mmc_start_request EXPORT_SYMBOL vmlinux 0xd820e7dd param_get_byte EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed EXPORT_SYMBOL vmlinux 0xd8406268 security_inet_conn_request @@ -11216,6 +11197,7 @@ EXPORT_SYMBOL vmlinux 0xd84d4b61 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xd85042d8 ethtool_aggregate_mac_stats EXPORT_SYMBOL vmlinux 0xd85622ec param_set_byte +EXPORT_SYMBOL vmlinux 0xd85ddcb7 vme_unregister_bridge EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font @@ -11224,7 +11206,6 @@ EXPORT_SYMBOL vmlinux 0xd8c0bc33 __kfree_skb EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk EXPORT_SYMBOL vmlinux 0xd8f7878c udp_seq_stop -EXPORT_SYMBOL vmlinux 0xd8fe2059 __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd900a814 phy_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user EXPORT_SYMBOL vmlinux 0xd921afc2 fscrypt_free_inode @@ -11238,25 +11219,25 @@ EXPORT_SYMBOL vmlinux 0xd951153f mmc_register_driver EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu EXPORT_SYMBOL vmlinux 0xd97454d6 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0xd979bbb9 filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xd9ac08b6 ip6tun_encaps EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9d407e5 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xda1bfc51 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xda13e2fb devfreq_add_governor EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4ca25e lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xda653389 pci_bus_find_capability EXPORT_SYMBOL vmlinux 0xda791b82 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0xda7b9e47 dev_uc_unsync EXPORT_SYMBOL vmlinux 0xda7deef1 ram_aops -EXPORT_SYMBOL vmlinux 0xda7e23ee generic_perform_write +EXPORT_SYMBOL vmlinux 0xda8f80e2 to_nd_dax EXPORT_SYMBOL vmlinux 0xdaa300f5 ethtool_rx_flow_rule_create EXPORT_SYMBOL vmlinux 0xdaabd1e7 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0xdab8880a filemap_fdatawait_keep_errors EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region EXPORT_SYMBOL vmlinux 0xdac9ffcb ethtool_notify EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d @@ -11266,7 +11247,7 @@ EXPORT_SYMBOL vmlinux 0xdb02fd83 skb_page_frag_refill EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg EXPORT_SYMBOL vmlinux 0xdb1edee6 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xdb275052 mmc_command_done +EXPORT_SYMBOL vmlinux 0xdb378f42 inode_get_bytes EXPORT_SYMBOL vmlinux 0xdb5a520d ip_mc_check_igmp EXPORT_SYMBOL vmlinux 0xdb5ce53c __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0xdb6418ff dma_ops @@ -11275,9 +11256,7 @@ EXPORT_SYMBOL vmlinux 0xdb7740b5 xfrm_replay_seqhi EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0xdba93f0e kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab -EXPORT_SYMBOL vmlinux 0xdbc96893 nd_btt_probe EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler EXPORT_SYMBOL vmlinux 0xdbd992cc rproc_add EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource @@ -11290,55 +11269,63 @@ EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems EXPORT_SYMBOL vmlinux 0xdc16cd37 dma_sync_wait EXPORT_SYMBOL vmlinux 0xdc27a84a register_netdev -EXPORT_SYMBOL vmlinux 0xdc39b78a ww_mutex_trylock EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc4db454 truncate_inode_pages_range EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier EXPORT_SYMBOL vmlinux 0xdc55bc75 da903x_query_status EXPORT_SYMBOL vmlinux 0xdc55ca39 qdisc_put EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc5d3d6e __traceiter_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xdc61ed20 unix_attach_fds EXPORT_SYMBOL vmlinux 0xdc913217 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xdc94f17f ww_mutex_lock EXPORT_SYMBOL vmlinux 0xdca140f5 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xdca3696a dump_align EXPORT_SYMBOL vmlinux 0xdca3e204 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xdcae80a9 scsi_device_get EXPORT_SYMBOL vmlinux 0xdcb61086 setattr_copy EXPORT_SYMBOL vmlinux 0xdcb86bfe netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0xdcd75953 update_devfreq +EXPORT_SYMBOL vmlinux 0xdcc1b154 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xdcc98973 bprm_change_interp EXPORT_SYMBOL vmlinux 0xdcdb774d netdev_master_upper_dev_get EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress EXPORT_SYMBOL vmlinux 0xdcdc8f18 netdev_notice +EXPORT_SYMBOL vmlinux 0xdcdd25a9 register_shrinker EXPORT_SYMBOL vmlinux 0xdce073e0 dev_mc_flush EXPORT_SYMBOL vmlinux 0xdcedcff7 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0xdd01c48e mdiobus_c45_read_nested EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd2a00f7 vfs_mknod EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2ceab1 sync_filesystem EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy EXPORT_SYMBOL vmlinux 0xdd66ac95 dev_add_pack +EXPORT_SYMBOL vmlinux 0xdd748ee1 __nlmsg_put EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddaee15b sock_from_file EXPORT_SYMBOL vmlinux 0xddc0006b qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xddcb09c3 submit_bio_noacct EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit EXPORT_SYMBOL vmlinux 0xddd3a887 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xdddba8c1 jbd2_journal_invalidate_folio EXPORT_SYMBOL vmlinux 0xdddda5e7 flow_block_cb_lookup -EXPORT_SYMBOL vmlinux 0xddf23a08 __bh_read EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done EXPORT_SYMBOL vmlinux 0xddf8d5d8 tty_devnum EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive EXPORT_SYMBOL vmlinux 0xde2bc3cf ilookup +EXPORT_SYMBOL vmlinux 0xde2e1e2b free_buffer_head EXPORT_SYMBOL vmlinux 0xde41a151 agp_generic_alloc_user EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0xde5a35f3 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xde501c1a ptp_find_pin EXPORT_SYMBOL vmlinux 0xde5b935f key_put EXPORT_SYMBOL vmlinux 0xde69f3d5 iw_handler_get_spy EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap EXPORT_SYMBOL vmlinux 0xde8e5d57 dev_open EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size EXPORT_SYMBOL vmlinux 0xde9c730f __nla_reserve +EXPORT_SYMBOL vmlinux 0xdea79498 fasync_helper +EXPORT_SYMBOL vmlinux 0xdea93f8a vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xdeb99119 dma_fence_init EXPORT_SYMBOL vmlinux 0xdec1c14b get_thermal_instance EXPORT_SYMBOL vmlinux 0xdec5d016 agp_generic_free_by_type @@ -11362,7 +11349,6 @@ EXPORT_SYMBOL vmlinux 0xdf5621fc vga_switcheroo_register_audio_client EXPORT_SYMBOL vmlinux 0xdf59b669 pnp_possible_config EXPORT_SYMBOL vmlinux 0xdf6b82de regset_get -EXPORT_SYMBOL vmlinux 0xdf735f12 vma_alloc_folio EXPORT_SYMBOL vmlinux 0xdf823449 single_open_size EXPORT_SYMBOL vmlinux 0xdf8734e6 kset_register EXPORT_SYMBOL vmlinux 0xdf8bda7e __ip_mc_dec_group @@ -11372,17 +11358,20 @@ EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdfa1bc14 nvdimm_namespace_locked EXPORT_SYMBOL vmlinux 0xdfa5f94d security_cred_getsecid EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream EXPORT_SYMBOL vmlinux 0xdfcc992c current_work EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy EXPORT_SYMBOL vmlinux 0xdfdce324 cpu_info +EXPORT_SYMBOL vmlinux 0xdfe9eeb8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xdff1bd3d console_stop EXPORT_SYMBOL vmlinux 0xdff8c22c jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free EXPORT_SYMBOL vmlinux 0xdffa0e12 xfrm_policy_byid EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xdffce9cc sync_inode_metadata EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xe0135649 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0xe0233c88 wireless_spy_update EXPORT_SYMBOL vmlinux 0xe0239cb2 phy_register_fixup EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq @@ -11391,8 +11380,6 @@ EXPORT_SYMBOL vmlinux 0xe03a0c61 phy_sfp_probe EXPORT_SYMBOL vmlinux 0xe03bad0c tcp_v4_send_check EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe05a668e mmc_put_card -EXPORT_SYMBOL vmlinux 0xe061687e jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0xe0684b55 vlan_uses_dev EXPORT_SYMBOL vmlinux 0xe074bbc0 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister @@ -11400,21 +11387,19 @@ EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0a62dae generic_write_checks_count EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0xe0c1b51c get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xe0c828d2 clean_bdev_aliases EXPORT_SYMBOL vmlinux 0xe0cec8cc serio_close EXPORT_SYMBOL vmlinux 0xe0e51234 inet_put_port EXPORT_SYMBOL vmlinux 0xe0ed8d34 devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0xe0eec9c0 mipi_dsi_host_unregister -EXPORT_SYMBOL vmlinux 0xe0ef30ee generic_write_checks EXPORT_SYMBOL vmlinux 0xe10d9d3b elv_rb_find +EXPORT_SYMBOL vmlinux 0xe1115774 jbd2_journal_grab_journal_head EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe118701c vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute -EXPORT_SYMBOL vmlinux 0xe12f6338 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0xe137d348 phy_attached_print EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch @@ -11422,7 +11407,6 @@ EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors EXPORT_SYMBOL vmlinux 0xe17568e3 dma_fence_signal_timestamp_locked EXPORT_SYMBOL vmlinux 0xe17cc903 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0xe1807690 block_page_mkwrite EXPORT_SYMBOL vmlinux 0xe19321ae pnp_disable_dev EXPORT_SYMBOL vmlinux 0xe193c6c3 acpi_dev_uid_to_integer EXPORT_SYMBOL vmlinux 0xe19c5867 keyring_search @@ -11430,8 +11414,9 @@ EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr EXPORT_SYMBOL vmlinux 0xe1c66b7c xfrm_state_flush EXPORT_SYMBOL vmlinux 0xe1d18007 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe1d4bbb7 vmf_insert_pfn EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe20067df i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xe1f611c5 netlink_ack EXPORT_SYMBOL vmlinux 0xe2011818 pci_wait_for_pending_transaction EXPORT_SYMBOL vmlinux 0xe204a713 get_agp_version EXPORT_SYMBOL vmlinux 0xe212e358 generic_parse_monolithic @@ -11439,11 +11424,9 @@ EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek EXPORT_SYMBOL vmlinux 0xe22e06c2 neigh_seq_next EXPORT_SYMBOL vmlinux 0xe22e5d61 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xe24e92e5 vfs_readlink EXPORT_SYMBOL vmlinux 0xe250ea14 xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0xe255c03f xfrm6_rcv_encap EXPORT_SYMBOL vmlinux 0xe26da199 memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xe2773fcb generic_file_llseek_size EXPORT_SYMBOL vmlinux 0xe28a7332 page_mapping EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up EXPORT_SYMBOL vmlinux 0xe29997c8 dma_map_sg_attrs @@ -11455,13 +11438,14 @@ EXPORT_SYMBOL vmlinux 0xe2de6669 kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr EXPORT_SYMBOL vmlinux 0xe2f71ace dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xe3132b85 __tracepoint_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xe31b9301 intel_gmch_gtt_flush EXPORT_SYMBOL vmlinux 0xe3201260 dquot_quotactl_sysfile_ops EXPORT_SYMBOL vmlinux 0xe321211c md_flush_request EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest EXPORT_SYMBOL vmlinux 0xe32c8fee flow_rule_match_control EXPORT_SYMBOL vmlinux 0xe330ad29 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xe33e2a35 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xe33c6fd6 __tracepoint_module_get EXPORT_SYMBOL vmlinux 0xe352b524 fb_show_logo EXPORT_SYMBOL vmlinux 0xe37ac969 netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0xe3800636 tty_port_alloc_xmit_buf @@ -11471,10 +11455,8 @@ EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next EXPORT_SYMBOL vmlinux 0xe3c36f76 proc_create_seq_private -EXPORT_SYMBOL vmlinux 0xe3c74a12 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xe3ccd913 page_pool_put_defragged_page EXPORT_SYMBOL vmlinux 0xe3d109ae skb_store_bits -EXPORT_SYMBOL vmlinux 0xe3d6caa7 folio_zero_new_buffers EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask EXPORT_SYMBOL vmlinux 0xe3df8319 is_free_buddy_page EXPORT_SYMBOL vmlinux 0xe3e0d29b tcf_exts_validate @@ -11482,7 +11464,6 @@ EXPORT_SYMBOL vmlinux 0xe3ef11df rtc_add_groups EXPORT_SYMBOL vmlinux 0xe3f417a8 dma_async_device_unregister EXPORT_SYMBOL vmlinux 0xe3f92a69 dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0xe3fade10 __SCK__tp_func_spi_transfer_stop EXPORT_SYMBOL vmlinux 0xe3faf198 __put_user_ns EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 @@ -11494,59 +11475,64 @@ EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be EXPORT_SYMBOL vmlinux 0xe420a84b devm_free_irq EXPORT_SYMBOL vmlinux 0xe4214834 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe42cc336 find_vma EXPORT_SYMBOL vmlinux 0xe447603b scsi_done +EXPORT_SYMBOL vmlinux 0xe44b3e14 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0xe468d16d devfreq_add_governor EXPORT_SYMBOL vmlinux 0xe470d02a dst_dev_put +EXPORT_SYMBOL vmlinux 0xe4856ad1 vm_map_pages_zero EXPORT_SYMBOL vmlinux 0xe49601af netdev_offload_xstats_enabled -EXPORT_SYMBOL vmlinux 0xe4964a52 bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0xe4a5e161 flow_rule_match_enc_opts EXPORT_SYMBOL vmlinux 0xe4a96453 set_cached_acl EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack EXPORT_SYMBOL vmlinux 0xe4ca4aa0 input_register_device EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable -EXPORT_SYMBOL vmlinux 0xe4de2ee2 folio_unlock EXPORT_SYMBOL vmlinux 0xe4df958c pci_write_config_word EXPORT_SYMBOL vmlinux 0xe4e2fc81 fs_context_for_reconfigure EXPORT_SYMBOL vmlinux 0xe4e37157 agp_allocate_memory EXPORT_SYMBOL vmlinux 0xe4ee031f rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xe511cf35 jbd2_fc_get_buf EXPORT_SYMBOL vmlinux 0xe517331b convert_art_ns_to_tsc EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq EXPORT_SYMBOL vmlinux 0xe5387337 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xe542aa93 fd_install +EXPORT_SYMBOL vmlinux 0xe5443f45 filemap_get_folios_tag EXPORT_SYMBOL vmlinux 0xe5557271 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xe5672892 filp_close +EXPORT_SYMBOL vmlinux 0xe5760269 jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet EXPORT_SYMBOL vmlinux 0xe58ce4d1 netdev_txq_to_tc EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end EXPORT_SYMBOL vmlinux 0xe59634a3 twl6040_get_pll EXPORT_SYMBOL vmlinux 0xe5991380 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xe5a22c55 __tracepoint_kmalloc EXPORT_SYMBOL vmlinux 0xe5a5ac67 inode_query_iversion -EXPORT_SYMBOL vmlinux 0xe5a664c5 __SCK__tp_func_kfree EXPORT_SYMBOL vmlinux 0xe5c16d62 page_pool_release_page EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen EXPORT_SYMBOL vmlinux 0xe5c863eb tcp_init_sock EXPORT_SYMBOL vmlinux 0xe5cee291 register_sysctl_mount_point EXPORT_SYMBOL vmlinux 0xe5d12d4f unlock_page +EXPORT_SYMBOL vmlinux 0xe5d3368a bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xe5f70f88 kernel_sendmsg EXPORT_SYMBOL vmlinux 0xe600137a kobject_put EXPORT_SYMBOL vmlinux 0xe613df67 cpu_rmap_update EXPORT_SYMBOL vmlinux 0xe61b912a security_binder_set_context_mgr EXPORT_SYMBOL vmlinux 0xe62d7a21 tty_unregister_driver EXPORT_SYMBOL vmlinux 0xe64144ad pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0xe646341f devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0xe64e418e ip_getsockopt EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe657362c page_get_link +EXPORT_SYMBOL vmlinux 0xe6588284 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0xe65a96d0 flow_rule_match_enc_ip -EXPORT_SYMBOL vmlinux 0xe6652246 may_umount_tree EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock EXPORT_SYMBOL vmlinux 0xe692e92c d_mark_dontcache EXPORT_SYMBOL vmlinux 0xe694bcb7 sk_dst_check -EXPORT_SYMBOL vmlinux 0xe699fbae may_umount +EXPORT_SYMBOL vmlinux 0xe69e0d76 generic_file_write_iter EXPORT_SYMBOL vmlinux 0xe6a08bf2 udp_prot EXPORT_SYMBOL vmlinux 0xe6a217a6 devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xe6b5d648 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xe6b7ec8d devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6e64501 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xe6f3509d set_page_dirty_lock EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler EXPORT_SYMBOL vmlinux 0xe71a1af4 dev_remove_pack @@ -11557,10 +11543,10 @@ EXPORT_SYMBOL vmlinux 0xe7480f4c tcp_child_process EXPORT_SYMBOL vmlinux 0xe752240c __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xe7770e3d neigh_ifdown -EXPORT_SYMBOL vmlinux 0xe779ca93 __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range EXPORT_SYMBOL vmlinux 0xe7a066dc mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xe7a08b57 locks_copy_lock EXPORT_SYMBOL vmlinux 0xe7aa2b06 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh EXPORT_SYMBOL vmlinux 0xe7b78488 param_set_bint @@ -11568,13 +11554,15 @@ EXPORT_SYMBOL vmlinux 0xe7d6351f dma_unmap_sg_attrs EXPORT_SYMBOL vmlinux 0xe7dbfa05 mipi_dsi_dcs_write EXPORT_SYMBOL vmlinux 0xe7e1bf1b skb_split -EXPORT_SYMBOL vmlinux 0xe7fdb4b0 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xe7e7d44d block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xe7e91ce2 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xe7faf5f3 kill_fasync +EXPORT_SYMBOL vmlinux 0xe80f6432 devfreq_add_device EXPORT_SYMBOL vmlinux 0xe8159646 seg6_hmac_info_del EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw EXPORT_SYMBOL vmlinux 0xe82bfa7d reuseport_select_sock EXPORT_SYMBOL vmlinux 0xe836dbae netif_tx_unlock EXPORT_SYMBOL vmlinux 0xe8493660 nla_append -EXPORT_SYMBOL vmlinux 0xe8576767 dump_align EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table EXPORT_SYMBOL vmlinux 0xe868fd8d vlan_dev_real_dev EXPORT_SYMBOL vmlinux 0xe86c375e inet_confirm_addr @@ -11582,13 +11570,14 @@ EXPORT_SYMBOL vmlinux 0xe89fa417 inet_stream_ops EXPORT_SYMBOL vmlinux 0xe8a8dec2 pcie_capability_read_dword EXPORT_SYMBOL vmlinux 0xe8b1242a pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xe8b8ffa7 vfs_unlink EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len EXPORT_SYMBOL vmlinux 0xe8d6b6fb genl_notify -EXPORT_SYMBOL vmlinux 0xe8df3ec0 tag_pages_for_writeback EXPORT_SYMBOL vmlinux 0xe8f8740e sock_edemux EXPORT_SYMBOL vmlinux 0xe8fb307d unregister_tcf_proto_ops EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90b88fa write_inode_now EXPORT_SYMBOL vmlinux 0xe914e41e strcpy EXPORT_SYMBOL vmlinux 0xe91dd82d xfrm_lookup EXPORT_SYMBOL vmlinux 0xe92b14eb param_set_short @@ -11596,6 +11585,7 @@ EXPORT_SYMBOL vmlinux 0xe93f4979 seq_open_private EXPORT_SYMBOL vmlinux 0xe94354eb inet_del_protocol EXPORT_SYMBOL vmlinux 0xe94e9a88 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xe950e474 mdiobus_unregister EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino EXPORT_SYMBOL vmlinux 0xe955a224 inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0xe95db836 rtnl_kfree_skbs @@ -11611,24 +11601,27 @@ EXPORT_SYMBOL vmlinux 0xe9fd1382 phy_config_aneg EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock EXPORT_SYMBOL vmlinux 0xea03b0a6 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0xea0bf59a noop_dirty_folio EXPORT_SYMBOL vmlinux 0xea3a23cc pci_read_vpd_any EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea3d65d2 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xea49a0f0 twl6030_mmc_card_detect EXPORT_SYMBOL vmlinux 0xea5c635a sock_set_priority EXPORT_SYMBOL vmlinux 0xea61e97f blk_queue_bounce_limit EXPORT_SYMBOL vmlinux 0xea65148e __inc_node_page_state EXPORT_SYMBOL vmlinux 0xea6e4cdd skb_checksum_trimmed EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea72ea05 jbd2_fc_release_bufs EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options EXPORT_SYMBOL vmlinux 0xea8609ea ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xea87e027 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xea8a1d1c rt_dst_alloc -EXPORT_SYMBOL vmlinux 0xea955876 page_readlink EXPORT_SYMBOL vmlinux 0xeaa17221 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xeab1735a get_vm_area EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict EXPORT_SYMBOL vmlinux 0xeabe7b4b sock_i_uid EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb0212ac finish_no_open EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc EXPORT_SYMBOL vmlinux 0xeb24b5ac inode_dio_wait @@ -11637,23 +11630,20 @@ EXPORT_SYMBOL vmlinux 0xeb3830e3 __fs_parse EXPORT_SYMBOL vmlinux 0xeb3b0062 register_cdrom EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact -EXPORT_SYMBOL vmlinux 0xeb467714 get_fs_type EXPORT_SYMBOL vmlinux 0xeb537e3e kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0xeb571869 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0xeb5bc492 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0xeb6f9c0b pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xeb704d2a generic_write_checks EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices EXPORT_SYMBOL vmlinux 0xeb860627 blk_queue_io_opt EXPORT_SYMBOL vmlinux 0xeb8c2aeb tcp_shutdown EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint EXPORT_SYMBOL vmlinux 0xeba68af1 key_alloc EXPORT_SYMBOL vmlinux 0xebbdc413 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0xebc3a5aa filp_open EXPORT_SYMBOL vmlinux 0xebcfe456 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xebe3ea0b phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0xec0202f0 neigh_event_ns EXPORT_SYMBOL vmlinux 0xec155e25 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0xec1cbe15 pipe_unlock EXPORT_SYMBOL vmlinux 0xec25aa4e request_key_rcu EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec2c60e0 new_inode @@ -11662,6 +11652,7 @@ EXPORT_SYMBOL vmlinux 0xec531c28 tls_client_hello_psk EXPORT_SYMBOL vmlinux 0xec550656 xfrm_unregister_km EXPORT_SYMBOL vmlinux 0xec5ed186 netdev_get_by_name +EXPORT_SYMBOL vmlinux 0xec71e66f filemap_release_folio EXPORT_SYMBOL vmlinux 0xec78c05a dmam_free_coherent EXPORT_SYMBOL vmlinux 0xec918a03 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0xec9cd48d md_write_inc @@ -11670,33 +11661,28 @@ EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy EXPORT_SYMBOL vmlinux 0xecad9118 pcim_iomap_table EXPORT_SYMBOL vmlinux 0xecaf1a72 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xecc05de5 __getblk_gfp EXPORT_SYMBOL vmlinux 0xecc7c868 __x86_indirect_jump_thunk_r9 -EXPORT_SYMBOL vmlinux 0xecdd95a6 starget_for_each_device EXPORT_SYMBOL vmlinux 0xece784c2 rb_first EXPORT_SYMBOL vmlinux 0xece951b2 tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0xecfbbde3 vfs_getattr_nosec EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf EXPORT_SYMBOL vmlinux 0xed130698 lock_sock_nested EXPORT_SYMBOL vmlinux 0xed1f5a1a set_anon_super_fc EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed63aa1f mmc_cqe_start_req EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable EXPORT_SYMBOL vmlinux 0xed7624e5 flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0xed779c37 phy_connect EXPORT_SYMBOL vmlinux 0xed963202 netif_tx_lock EXPORT_SYMBOL vmlinux 0xeda041d4 get_inode_acl EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xedb1d5f2 mdiobus_write EXPORT_SYMBOL vmlinux 0xedb368be __serio_register_port EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedc6c8e5 unregister_filesystem EXPORT_SYMBOL vmlinux 0xedc818c3 tty_port_put EXPORT_SYMBOL vmlinux 0xedc90db5 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xede9ee3e devfreq_monitor_start EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices EXPORT_SYMBOL vmlinux 0xee0bbb38 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xee1afa99 simple_get_link @@ -11710,6 +11696,7 @@ EXPORT_SYMBOL vmlinux 0xee48afbf pci_resize_resource EXPORT_SYMBOL vmlinux 0xee5318f8 phy_detach EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee67ca34 __traceiter_mmap_lock_released EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array @@ -11717,21 +11704,16 @@ EXPORT_SYMBOL vmlinux 0xee8c9f77 napi_enable EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee96b7b4 mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0xee9270d1 devfreq_update_status EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeeaca93e vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0xeeb4ed61 vlan_vid_add EXPORT_SYMBOL vmlinux 0xeee05fcb sys_copyarea -EXPORT_SYMBOL vmlinux 0xeee10926 __SCK__tp_func_module_get EXPORT_SYMBOL vmlinux 0xeee2b320 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0xeee642c3 __traceiter_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xef1507ac jbd2_journal_dirty_metadata EXPORT_SYMBOL vmlinux 0xef1c00ae unix_get_socket EXPORT_SYMBOL vmlinux 0xef1c6e4f bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0xef20cdbe seg6_push_hmac EXPORT_SYMBOL vmlinux 0xef36a848 __x86_indirect_jump_thunk_rdi EXPORT_SYMBOL vmlinux 0xef394702 pci_read_vpd -EXPORT_SYMBOL vmlinux 0xef3a3427 sock_create EXPORT_SYMBOL vmlinux 0xef4d7a61 md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0xef711dbd ip_frag_next EXPORT_SYMBOL vmlinux 0xef7b82d5 agp_generic_destroy_pages @@ -11740,6 +11722,7 @@ EXPORT_SYMBOL vmlinux 0xef9a7a5f acpi_dev_get_next_match_dev EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb618c1 dump_page EXPORT_SYMBOL vmlinux 0xefbdf42d blkdev_issue_zeroout EXPORT_SYMBOL vmlinux 0xefc2f1bd __sock_cmsg_send EXPORT_SYMBOL vmlinux 0xefca0240 generic_key_instantiate @@ -11755,24 +11738,29 @@ EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout EXPORT_SYMBOL vmlinux 0xf039adfa generic_file_fsync EXPORT_SYMBOL vmlinux 0xf041539f tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf04aa35f set_binfmt EXPORT_SYMBOL vmlinux 0xf056445d pci_request_regions_exclusive EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0xf06b4dbc __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xf06209a1 mmc_can_secure_erase_trim EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table EXPORT_SYMBOL vmlinux 0xf0910ebc nla_reserve_64bit EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0abdbb3 vfs_path_parent_lookup EXPORT_SYMBOL vmlinux 0xf0b5c3b1 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0xf0b82aea __inet_hash EXPORT_SYMBOL vmlinux 0xf0b9a4b9 commit_creds EXPORT_SYMBOL vmlinux 0xf0bed729 take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0xf0cfb397 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xf0d68171 vme_irq_generate EXPORT_SYMBOL vmlinux 0xf0de3f47 dcb_getapp EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf10004a6 update_devfreq EXPORT_SYMBOL vmlinux 0xf10247fb pci_match_id EXPORT_SYMBOL vmlinux 0xf109d727 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early EXPORT_SYMBOL vmlinux 0xf1295d80 blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0xf12aacdb __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf12d54ec mark_buffer_dirty_inode EXPORT_SYMBOL vmlinux 0xf14cd487 nf_register_net_hooks EXPORT_SYMBOL vmlinux 0xf177cfc6 genphy_c45_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler @@ -11781,8 +11769,8 @@ EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1a9ef3d __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xf1bc4f54 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0xf1c16b44 free_buffer_head EXPORT_SYMBOL vmlinux 0xf1d15474 keyring_alloc EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic @@ -11791,7 +11779,6 @@ EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback EXPORT_SYMBOL vmlinux 0xf2195ae3 __pskb_copy_fclone EXPORT_SYMBOL vmlinux 0xf2357ebe set_page_dirty -EXPORT_SYMBOL vmlinux 0xf236cdc4 __find_get_block EXPORT_SYMBOL vmlinux 0xf2394d0b blk_rq_unmap_user EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in EXPORT_SYMBOL vmlinux 0xf257e42f _copy_to_iter @@ -11805,9 +11792,12 @@ EXPORT_SYMBOL vmlinux 0xf2b1720d ip6_dst_hoplimit EXPORT_SYMBOL vmlinux 0xf2b67a40 find_inode_rcu EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2bdbf71 blk_get_queue +EXPORT_SYMBOL vmlinux 0xf2be37cc __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate EXPORT_SYMBOL vmlinux 0xf2c507da d_splice_alias EXPORT_SYMBOL vmlinux 0xf2d3424c neigh_lookup +EXPORT_SYMBOL vmlinux 0xf2d89efa stream_open EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts EXPORT_SYMBOL vmlinux 0xf2e9c057 phy_advertise_supported EXPORT_SYMBOL vmlinux 0xf2ea0789 sock_bind_add @@ -11817,7 +11807,6 @@ EXPORT_SYMBOL vmlinux 0xf3169391 flow_rule_match_enc_ports EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head EXPORT_SYMBOL vmlinux 0xf34757a6 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0xf34ef42c scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier EXPORT_SYMBOL vmlinux 0xf356a864 sb_set_blocksize EXPORT_SYMBOL vmlinux 0xf3611cb8 __mod_node_page_state @@ -11825,7 +11814,6 @@ EXPORT_SYMBOL vmlinux 0xf3663037 skb_put EXPORT_SYMBOL vmlinux 0xf36d3511 pci_alloc_irq_vectors_affinity EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf37a8618 follow_pfn EXPORT_SYMBOL vmlinux 0xf380f269 iov_iter_gap_alignment EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default @@ -11833,15 +11821,18 @@ EXPORT_SYMBOL vmlinux 0xf39b7be2 genphy_resume EXPORT_SYMBOL vmlinux 0xf39d8781 xfrm_lookup_route EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b91da9 ptp_schedule_worker EXPORT_SYMBOL vmlinux 0xf3c3cd3e ip_sock_set_recverr EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource EXPORT_SYMBOL vmlinux 0xf3e46856 blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0xf3e58196 eth_get_headlen EXPORT_SYMBOL vmlinux 0xf3f139bb sk_stream_error EXPORT_SYMBOL vmlinux 0xf3fc1c60 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xf41d365e page_get_link EXPORT_SYMBOL vmlinux 0xf4241d04 __zerocopy_sg_from_iter EXPORT_SYMBOL vmlinux 0xf437cd2c rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf4478562 filemap_range_has_page EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier EXPORT_SYMBOL vmlinux 0xf44d497a dma_pool_create EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid @@ -11853,48 +11844,43 @@ EXPORT_SYMBOL vmlinux 0xf49b5090 __dynamic_netdev_dbg EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4cf2668 kern_unmount -EXPORT_SYMBOL vmlinux 0xf4d7040a i2c_smbus_read_byte_data EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy EXPORT_SYMBOL vmlinux 0xf4ed1dd5 fs_param_is_u64 -EXPORT_SYMBOL vmlinux 0xf4eee285 nd_region_to_nstype EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock EXPORT_SYMBOL vmlinux 0xf5146f4b pci_scan_root_bus EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy EXPORT_SYMBOL vmlinux 0xf5568691 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xf55ae5fa __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0xf5845567 kernel_getpeername EXPORT_SYMBOL vmlinux 0xf58a2213 ppp_unit_number EXPORT_SYMBOL vmlinux 0xf58e1cd7 fscrypt_zeroout_range EXPORT_SYMBOL vmlinux 0xf593d455 ip6_route_me_harder EXPORT_SYMBOL vmlinux 0xf59c7f9c pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0xf59ee85c devfreq_update_interval EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc EXPORT_SYMBOL vmlinux 0xf5a8dba5 kthread_stop +EXPORT_SYMBOL vmlinux 0xf5d21dad nvdimm_namespace_disk_name EXPORT_SYMBOL vmlinux 0xf5d8528e dquot_transfer EXPORT_SYMBOL vmlinux 0xf5dcf929 __x86_indirect_jump_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf5e67af4 mdiobus_c45_read_nested EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5e97bef path_get -EXPORT_SYMBOL vmlinux 0xf5fd2fa0 locks_init_lock EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status EXPORT_SYMBOL vmlinux 0xf625a340 dput EXPORT_SYMBOL vmlinux 0xf6282bb9 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xf6380a4e __inode_sub_bytes EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 EXPORT_SYMBOL vmlinux 0xf65f1dbd __x86_indirect_jump_thunk_rsi EXPORT_SYMBOL vmlinux 0xf6615577 key_invalidate -EXPORT_SYMBOL vmlinux 0xf66191c9 do_clone_file_range EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module EXPORT_SYMBOL vmlinux 0xf6701562 udp6_seq_ops EXPORT_SYMBOL vmlinux 0xf67a3ee2 qdisc_watchdog_init_clockid EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xf6936608 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xf6a247a5 wrap_directory_iterator EXPORT_SYMBOL vmlinux 0xf6a6d07d pci_add_new_bus EXPORT_SYMBOL vmlinux 0xf6b4680f pci_restore_state EXPORT_SYMBOL vmlinux 0xf6bb7d0b dquot_file_open EXPORT_SYMBOL vmlinux 0xf6c49935 __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0xf6c650aa jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0xf6c75d21 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xf6d2074a __SCK__tp_func_read_msr EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit EXPORT_SYMBOL vmlinux 0xf6ebee55 tcp_fastopen_defer_connect EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free @@ -11905,28 +11891,29 @@ EXPORT_SYMBOL vmlinux 0xf709fbfd xfrm_parse_spi EXPORT_SYMBOL vmlinux 0xf7136bb7 dma_fence_chain_init EXPORT_SYMBOL vmlinux 0xf71ba2ac param_set_long -EXPORT_SYMBOL vmlinux 0xf71be088 send_sig_info EXPORT_SYMBOL vmlinux 0xf71cbfc8 tcf_em_tree_dump EXPORT_SYMBOL vmlinux 0xf722c677 blk_integrity_register EXPORT_SYMBOL vmlinux 0xf723934f __x86_indirect_jump_thunk_r11 EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0xf75b0db6 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf77387ff __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xf773f99b devfreq_register_notifier EXPORT_SYMBOL vmlinux 0xf77512b4 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xf776fe3b __f_setown EXPORT_SYMBOL vmlinux 0xf779f975 tty_port_block_til_ready EXPORT_SYMBOL vmlinux 0xf783b549 ipv6_skip_exthdr EXPORT_SYMBOL vmlinux 0xf785e1bc xfrm4_rcv EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block EXPORT_SYMBOL vmlinux 0xf7b2786e pci_release_selected_regions EXPORT_SYMBOL vmlinux 0xf7b28cbe sk_reset_timer +EXPORT_SYMBOL vmlinux 0xf7c825f2 mmc_get_card EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d947f8 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table -EXPORT_SYMBOL vmlinux 0xf7dd06f2 __ClearPageMovable -EXPORT_SYMBOL vmlinux 0xf7dd60cf close_fd_get_file EXPORT_SYMBOL vmlinux 0xf7e05d70 agp_create_memory EXPORT_SYMBOL vmlinux 0xf7e2c6ae kill_litter_super EXPORT_SYMBOL vmlinux 0xf7e967f2 skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0xf7ec0acc register_shrinker EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release EXPORT_SYMBOL vmlinux 0xf7f5915a skb_clone_sk EXPORT_SYMBOL vmlinux 0xf808d70b __xfrm_dst_lookup @@ -11937,16 +11924,20 @@ EXPORT_SYMBOL vmlinux 0xf824f102 pm860x_bulk_write EXPORT_SYMBOL vmlinux 0xf82a7671 genphy_c45_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83005b6 jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0xf8316d79 request_firmware EXPORT_SYMBOL vmlinux 0xf83da714 netif_receive_skb EXPORT_SYMBOL vmlinux 0xf846cbc7 md_write_end EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key EXPORT_SYMBOL vmlinux 0xf86e9f76 dget_parent +EXPORT_SYMBOL vmlinux 0xf87b519e mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xf885dd01 vfs_iter_read EXPORT_SYMBOL vmlinux 0xf88ecec4 kvmemdup -EXPORT_SYMBOL vmlinux 0xf890da32 setup_arg_pages EXPORT_SYMBOL vmlinux 0xf8a862fc md_integrity_register EXPORT_SYMBOL vmlinux 0xf8b3893c pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xf8b71365 kernel_read EXPORT_SYMBOL vmlinux 0xf8bab4fb fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xf8c44b9c vme_dma_list_add EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size EXPORT_SYMBOL vmlinux 0xf8d6e9f4 napi_complete_done @@ -11954,17 +11945,20 @@ EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var EXPORT_SYMBOL vmlinux 0xf904a60f input_release_device EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 -EXPORT_SYMBOL vmlinux 0xf9304dfe locks_remove_posix +EXPORT_SYMBOL vmlinux 0xf920a701 jbd2_journal_load EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt EXPORT_SYMBOL vmlinux 0xf94536c2 proc_dointvec EXPORT_SYMBOL vmlinux 0xf9463b35 xfrm4_protocol_deregister EXPORT_SYMBOL vmlinux 0xf9526201 xfrm6_rcv EXPORT_SYMBOL vmlinux 0xf96c3233 xfrm_user_policy EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97e3623 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0xf983f31c input_setup_polling +EXPORT_SYMBOL vmlinux 0xf9877b62 mmc_can_trim EXPORT_SYMBOL vmlinux 0xf98ebe98 crypto_sha256_update EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c1aa0d __tracepoint_spi_transfer_start EXPORT_SYMBOL vmlinux 0xf9c53ddf __insert_inode_hash EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked @@ -11977,27 +11971,27 @@ EXPORT_SYMBOL vmlinux 0xfa1e2e93 scsi_dma_unmap EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa4726cd __block_write_full_folio EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse EXPORT_SYMBOL vmlinux 0xfa4e3f16 fifo_create_dflt EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa66288c i2c_verify_client EXPORT_SYMBOL vmlinux 0xfa70407a pci_find_bus -EXPORT_SYMBOL vmlinux 0xfa7ea61e finish_no_open EXPORT_SYMBOL vmlinux 0xfa7f5caf netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0xfa8e00c9 pcim_pin_device -EXPORT_SYMBOL vmlinux 0xfaa1dad5 vfs_create EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaacf5ff generic_file_readonly_mmap EXPORT_SYMBOL vmlinux 0xfaadb081 dev_change_flags EXPORT_SYMBOL vmlinux 0xfab72305 pcie_print_link_status EXPORT_SYMBOL vmlinux 0xfab7d7a0 udp_disconnect EXPORT_SYMBOL vmlinux 0xfabb9554 inet_register_protosw EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max EXPORT_SYMBOL vmlinux 0xfacd2f03 proc_set_size -EXPORT_SYMBOL vmlinux 0xfacd678b to_nd_btt EXPORT_SYMBOL vmlinux 0xfadeee9d sync_file_create EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key EXPORT_SYMBOL vmlinux 0xfaede017 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xfaeef5ab filemap_get_folios_contig EXPORT_SYMBOL vmlinux 0xfb0c4c1d fddi_type_trans -EXPORT_SYMBOL vmlinux 0xfb241dbf generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable EXPORT_SYMBOL vmlinux 0xfb377869 mdio_device_free EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf @@ -12007,7 +12001,7 @@ EXPORT_SYMBOL vmlinux 0xfb7c5fae gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0xfb86647a md_unregister_thread EXPORT_SYMBOL vmlinux 0xfb8d9b66 max8998_write_reg -EXPORT_SYMBOL vmlinux 0xfb9551a6 file_path +EXPORT_SYMBOL vmlinux 0xfb957ba3 folio_wait_private_2_killable EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock @@ -12019,31 +12013,29 @@ EXPORT_SYMBOL vmlinux 0xfbd24166 twl6040_clear_bits EXPORT_SYMBOL vmlinux 0xfbd3307f ns_capable EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next -EXPORT_SYMBOL vmlinux 0xfbe5722c folio_create_empty_buffers EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index EXPORT_SYMBOL vmlinux 0xfbfdb4f1 folio_mapping EXPORT_SYMBOL vmlinux 0xfc03267d tty_register_device EXPORT_SYMBOL vmlinux 0xfc0fd966 bioset_integrity_create EXPORT_SYMBOL vmlinux 0xfc166002 input_register_handler EXPORT_SYMBOL vmlinux 0xfc18a527 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xfc1bc93c vfs_mkobj EXPORT_SYMBOL vmlinux 0xfc1f562d xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xfc220090 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xfc280f7d has_capability EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit EXPORT_SYMBOL vmlinux 0xfc33e36f skb_trim -EXPORT_SYMBOL vmlinux 0xfc376aa8 jbd2_journal_forget EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc39fb67 rt6_lookup EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue EXPORT_SYMBOL vmlinux 0xfc618856 dev_get_flags EXPORT_SYMBOL vmlinux 0xfc6bfc8b sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xfc6dcc91 block_commit_write EXPORT_SYMBOL vmlinux 0xfc6eb907 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0xfc734e5a devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xfc7025b2 mmc_wait_for_req_done EXPORT_SYMBOL vmlinux 0xfc80d230 xp_raw_get_dma -EXPORT_SYMBOL vmlinux 0xfc826b37 i2c_get_adapter_by_fwnode EXPORT_SYMBOL vmlinux 0xfc92b2d9 dmam_alloc_attrs -EXPORT_SYMBOL vmlinux 0xfc9bc3a0 unregister_console EXPORT_SYMBOL vmlinux 0xfcb65901 input_unregister_device EXPORT_SYMBOL vmlinux 0xfccc3934 pci_enable_link_state EXPORT_SYMBOL vmlinux 0xfcd0986c pci_request_selected_regions @@ -12051,19 +12043,21 @@ EXPORT_SYMBOL vmlinux 0xfcdbd343 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq EXPORT_SYMBOL vmlinux 0xfcfada86 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xfd140af9 free_task -EXPORT_SYMBOL vmlinux 0xfd58efdf nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xfd259faa kernel_tmpfile_open EXPORT_SYMBOL vmlinux 0xfd60fe59 agp_copy_info EXPORT_SYMBOL vmlinux 0xfd648920 netif_set_real_num_rx_queues EXPORT_SYMBOL vmlinux 0xfd6fe174 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xfd870caa __tracepoint_kfree EXPORT_SYMBOL vmlinux 0xfd8d1743 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xfd8d1794 __traceiter_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc EXPORT_SYMBOL vmlinux 0xfda0ad9b cdev_set_parent +EXPORT_SYMBOL vmlinux 0xfda67c94 __tracepoint_dma_fence_signaled EXPORT_SYMBOL vmlinux 0xfda9a3f1 intel_gmch_enable_gtt +EXPORT_SYMBOL vmlinux 0xfdb4682c i2c_smbus_write_byte_data EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdcce6b7 __traceiter_module_get EXPORT_SYMBOL vmlinux 0xfdd31a27 genphy_setup_forced EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource EXPORT_SYMBOL vmlinux 0xfdd6faa0 acpi_pm_device_sleep_state @@ -12073,15 +12067,16 @@ EXPORT_SYMBOL vmlinux 0xfe00159c genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi -EXPORT_SYMBOL vmlinux 0xfe0592f7 io_uring_get_socket EXPORT_SYMBOL vmlinux 0xfe07c3fa iov_iter_init EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update EXPORT_SYMBOL vmlinux 0xfe215b97 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0xfe352d82 kernel_connect +EXPORT_SYMBOL vmlinux 0xfe3c8d38 __SCK__tp_func_spi_transfer_start EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz EXPORT_SYMBOL vmlinux 0xfe696661 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xfe71ae99 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xfe7a685b jbd2_journal_blocks_per_page EXPORT_SYMBOL vmlinux 0xfe7cac8d dqget EXPORT_SYMBOL vmlinux 0xfe85d7e1 nf_reinject EXPORT_SYMBOL vmlinux 0xfe8a6b2d build_skb_around @@ -12091,6 +12086,8 @@ EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 EXPORT_SYMBOL vmlinux 0xfea635dd netif_tx_stop_all_queues EXPORT_SYMBOL vmlinux 0xfeb202e5 file_update_time +EXPORT_SYMBOL vmlinux 0xfeb7a0e0 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xfeba203e jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xfebcb7f9 param_ops_dyndbg_classes EXPORT_SYMBOL vmlinux 0xfed73186 tty_wait_until_sent EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu @@ -12105,22 +12102,25 @@ EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register EXPORT_SYMBOL vmlinux 0xff28757b netdev_change_features +EXPORT_SYMBOL vmlinux 0xff347968 mdiobus_register_device EXPORT_SYMBOL vmlinux 0xff43e658 iget5_locked EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xff550630 generic_permission EXPORT_SYMBOL vmlinux 0xff630c1b d_instantiate EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7e3314 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xff863b62 vm_insert_page EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff898f0a __mdiobus_write EXPORT_SYMBOL vmlinux 0xff9c6d19 vga_switcheroo_unlock_ddc -EXPORT_SYMBOL vmlinux 0xffa6b7cb ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xffb1e93d jbd2_journal_revoke EXPORT_SYMBOL vmlinux 0xffb509ff call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free EXPORT_SYMBOL vmlinux 0xffc08245 ip_tunnel_parse_protocol EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffc4f3fd task_lookup_next_fd_rcu EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffd1df3b is_nd_dax EXPORT_SYMBOL vmlinux 0xffe9c7ff dquot_writeback_dquots EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn EXPORT_SYMBOL_GPL arch/x86/crypto/aria-aesni-avx-x86_64 0x6790ca30 aria_aesni_avx_gfni_decrypt_16way @@ -12159,363 +12159,363 @@ EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00ed64d9 kvm_is_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02bcf82a __kvm_prepare_emulation_failure_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x050c7ee1 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0050c5ed gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01fa8fd7 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x021e9afc kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02b9c359 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02eab0e2 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02fcb86a kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x044a694b kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0492c448 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0519c0b8 __tracepoint_kvm_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05765c7c kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x060e80aa kvm_apic_write_nodecode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07c6e0cc __tracepoint_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07fec117 kvm_emulate_mwait -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0865b6fc __SCK__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09a79096 kvm_set_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0aa72e8d vcpu_load -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b303832 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x074379f7 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07ff23db kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0818f516 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x092ba54c kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09fce92e __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a24fcbf kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b28656a kvm_put_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0be519a7 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bb5d03a __traceiter_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ec71ab3 kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ef49af4 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f26ac89 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f8ea98b kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fd6fcea kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x103edf2a kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10a500cb kvm_release_page_clean EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11e6eead __SCK__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1283f713 hv_track_root_tdp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x131b1e4b __tracepoint_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1349e63f kvm_gpc_refresh -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13ee23c4 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1214d7a9 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x122db672 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1290adb2 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1405a501 kvm_emulate_monitor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1448d3dc kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15289d5d kvm_slot_page_track_add_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x160a63f0 kvm_hv_get_assist_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1650a8e9 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x168ad023 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17a83181 __SCK__tp_func_kvm_apicv_accept_irq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19af1531 kvm_requeue_exception -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a29c951 kvm_make_all_cpus_request -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ae8d74c kvm_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ba1b76f kvm_emulate_ap_reset_hold -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bf9bb33 kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cc3a445 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18127af8 __kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18212685 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a2c42b8 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a5c0be4 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a5ee1d7 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a9dbf70 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ae74c1e kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ba8170e __tracepoint_kvm_avic_unaccelerated_access EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d013832 kvm_enable_efer_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d13e667 kvm_post_set_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1b139a __SCT__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1da7ab95 kvm_cpu_has_injectable_intr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1db1c372 enable_vmware_backdoor EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1f8e9483 __SCT__tp_func_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20c927db kvm_arch_end_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21531c97 __tracepoint_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x227a7c7e kvm_mmu_gva_to_gpa_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22ca7587 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20996fd1 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20c2901b __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x21172fec __tracepoint_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23621eaf kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23723f56 kvm_cpu_has_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x260bd839 kvm_mmu_free_guest_mode_roots EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27e93b7e kvm_skip_emulated_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2868de7e kvm_service_local_tlb_flush_requests -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a417a49 __tracepoint_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a7dac76 kvm_arch_start_assignment -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c140b91 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x286600cd __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ae3f555 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c27c1be __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c753fa1 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2cc7cd7e __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d5442b0 kvm_vcpu_gfn_to_pfn_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2de968d6 handle_ud -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2dea3484 __tracepoint_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ff2900e kvm_set_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31fdeb15 kvm_find_cpuid_entry_index -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32856149 kvm_emulate_wbinvd -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32d0d291 kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3670310b __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f0c8413 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f7a26a1 kvm_x86_vendor_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f86cdf1 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30c102a5 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x34e0d087 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36e14be4 __tracepoint_kvm_ple_window_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a811349 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a9d524c kvm_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d41fa4d __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b66b504 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bd81b7b kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d1d1913 handle_fastpath_set_msr_irqoff EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e600cb7 kvm_mmu_invalidate_addr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3db461e1 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3dc296b1 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e21ceaf kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e5aa050 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ea67b75 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ed7036a kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f1168db gfn_to_page_many_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f823e37 __SCK__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ff917d8 __SCK__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4223adfb kvm_get_rflags -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x422a2db5 kvm_mtrr_get_guest_memory_type -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x428099ce kvm_mmu_reset_context -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43c840f1 __tracepoint_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x444fc4cb kvm_set_cr0 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x450105ac kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ffde60e kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4091690f kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4244df92 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43b3b451 kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47d1d7d8 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x473fb5a9 __tracepoint_kvm_skinit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48644036 __SCT__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x488fc983 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4895253a kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48eb2c63 kvm_emulate_xsetbv EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4942be67 __SCT__tp_func_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49d5f294 gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a80a018 kvm_arch_has_assigned_device -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b0dfb88 __tracepoint_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ba1ac36 kvm_sev_es_mmio_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bc7659d kvm_set_msi_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bc85637 kvm_alloc_apic_access_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d823a23 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b9623c8 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c4c1b09 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cc0d712 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d196d77 kvm_requeue_exception EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e60fb59 __SCK__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4efb5d2d kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f907f6e kvm_emulate_cpuid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x504f13d4 kvm_cpu_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5205e1ab kvm_emulate_rdpmc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52785a82 kvm_find_cpuid_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x536a4abe gfn_to_pfn_prot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x538910d4 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4fed2cb8 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x505088f3 kvm_lapic_readable_reg_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5143fe3c kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x519920f3 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51b0678e __tracepoint_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x539d57de kvm_put_kvm_no_destroy EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5439033b kvm_sev_es_mmio_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57dd1216 kvm_x86_vendor_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57e4febc kvm_read_l1_tsc -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57fa6b69 kvm_get_apic_mode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x583f0fb0 __SCK__tp_func_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55666b6f gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56470f8d kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56a15bfd __tracepoint_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59ab7cb2 kvm_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5bf7cde0 kvm_mmu_set_ept_masks EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c11e105 __traceiter_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c2e2bb3 kvm_are_all_memslots_empty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c9e1e10 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c8d0081 kvm_vcpu_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d3fbbf8 kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e9fc209 kvm_complete_insn_gp -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ee7ee6a kvm_requeue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f8681fd kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e0718bd kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f0472be kvm_valid_efer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60e14c35 kvm_hv_assist_page_enabled -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x612c109f __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60a24818 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x615773ee __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x615d5a2a kvm_gpc_deactivate EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61897302 kvm_slot_page_track_add_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62538d83 kvm_mmu_invlpg EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6303c089 kvm_calc_nested_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63f91f7d kvm_read_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64928328 kvm_init_shadow_npt_mmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64adf792 __tracepoint_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66399d4e kvm_lmsw -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6663f429 kvm_mmu_free_roots -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66845c6c kvm_get_kvm_safe -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66ee265c kvm_emulate_instruction -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66fb11bc __SCK__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6730f644 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63f99af7 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x659af908 kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65e80ceb kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66480375 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66aa6142 kvm_mmu_invalidate_addr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66bf7d88 kvm_get_apic_mode EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67da1079 kvm_emulate_xsetbv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67eae190 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x685354cc kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68592033 kvm_get_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x687b78fc kvm_x86_vendor_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x687fee32 kvm_inject_realmode_interrupt EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69741d23 kvm_emulate_wrmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6978f1f0 __SCK__tp_func_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69b64ea6 __tracepoint_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a032129 kvm_apic_update_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a4ce6dd __SCK__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a79be71 kvm_handle_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6adc9a2c kvm_get_dr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bb8acdc kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bb5db20 kvm_flush_remote_tlbs EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc792a4 kvm_caps EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ccacac4 __tracepoint_kvm_vmgexit_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d2c9437 __SCT__tp_func_kvm_nested_vmenter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d8e1c64 gfn_to_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fdf20e3 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e6e8b8a kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6eacc021 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f1c9981 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f71e749 kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6faf7f6f gfn_to_memslot EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70f16861 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x710f8e5b kvm_get_linear_rip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7151556a __tracepoint_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7252ce62 kvm_cpu_get_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x726d4f5a __SCK__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x734b765a kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7189bfbc kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74890f3f __tracepoint_kvm_vmgexit_msr_protocol_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74910627 __traceiter_kvm_nested_vmenter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7510a39a __traceiter_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7525a0a3 __SCK__tp_func_kvm_avic_kick_vcpu_slowpath EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x76921002 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x759875e3 kvm_vcpu_map EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7842fcb1 __tracepoint_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x787435fc hv_flush_remote_tlbs_range -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7901bbfc __tracepoint_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79098b97 hv_flush_remote_tlbs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79a12184 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78d18ea5 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78e409a8 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x796d2b79 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a2a0407 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a38ccd1 __kvm_set_memory_region EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3a0f8c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa874d4 kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7acb132f kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bc18fd4 kvm_vcpu_mark_page_dirty EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7dbf5e77 file_is_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e12b706 kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f48630b __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ccc45bc kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d39c676 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7df72865 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e018bb5 kvm_sev_es_mmio_read EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f51547e __traceiter_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fa4793d kvm_lapic_readable_reg_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fa01efe kvm_debugfs_dir EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fe19488 kvm_add_user_return_msr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff2a104 __SCT__tp_func_kvm_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x806778c6 kvm_emulate_hypercall -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x815d9d29 kvm_inject_emulated_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8164df49 __SCK__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81a59ab3 kvm_write_guest_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81abff55 kvm_emulate_rdmsr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x823fc8d2 kvm_write_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82f56b4b __kvm_request_immediate_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83b0a96e kvm_write_guest_virt_system -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84bac6f0 kvm_gpc_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8654b9c4 kvm_gpc_activate -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8775e056 gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8807116f kvm_vcpu_unmap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88670f51 __tracepoint_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x893f33e6 kvm_vcpu_halt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89c8d896 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8073f7cb kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80aa737a kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80bd47c0 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81e84036 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81f7417a __SCK__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82dfd8c4 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86a523aa __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x86e9fb5a kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x877a311f kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87c47086 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88702c8d kvm_lapic_expired_hv_timer EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cbd85e5 kvm_set_or_clear_apicv_inhibit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8dc81552 __tracepoint_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1f474b gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f036dc5 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c13aeb5 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f0cd16e __SCK__tp_func_kvm_nested_vmenter EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f3a890e __traceiter_kvm_vmgexit_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x900e6381 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f9ac679 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x910e990e __tracepoint_kvm_nested_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91579102 __SCK__tp_func_kvm_inj_virq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93496340 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x913d04b2 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x925bb391 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92bf1453 kvm_task_switch EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93bda4f7 kvm_page_track_unregister_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98b92f8a kvm_update_dr7 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a4b7db6 kvm_intr_is_single_vcpu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a715e44 kvm_get_msr_common -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9abcd8ca kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x948ef3c4 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94dca539 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x953fbee4 hv_flush_remote_tlbs_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9541a847 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x960e1aa1 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96909f4e __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98eec833 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99316720 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9baf0922 kvm_gpc_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c95049b __kvm_prepare_emulation_failure_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e09ae72 kvm_sev_es_string_io EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eb5fc14 __SCK__tp_func_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ee55ebd kvm_put_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6afcd5 kvm_lapic_find_highest_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0c73274 kvm_apic_has_interrupt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1baedc4 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa10e2ad9 kvm_destroy_vcpus EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2224351 kvm_get_kvm -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2472dbf kvm_irq_has_notifier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2ceb490 kvm_set_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa400be35 __tracepoint_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa40511f3 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3075fdb kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4dce4a0 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa532a3b8 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5695ff9 kvm_get_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6184e23 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa643febe mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa664ab6f kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6663f7a kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa677a67f kvm_arch_has_assigned_device EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6a50230 __traceiter_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6ebd879 kvm_io_bus_get_dev EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7022320 __traceiter_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa772fd59 __SCK__tp_func_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa84a2e73 __SCT__tp_func_kvm_write_tsc_offset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa86de2cf kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8df4883 __SCK__tp_func_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8f82afb kvm_vcpu_on_spin -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab0f7392 kvm_read_guest_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xace4783f kvm_gpc_check -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae08d62a __SCK__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf1a0f13 kvm_arch_unregister_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf70860d __kvm_vcpu_update_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafd7d776 __SCK__tp_func_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb063d258 load_pdptrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0e6484f kvm_apic_write_nodecode -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb146d2c3 kvm_queue_exception_e -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb175948b __tracepoint_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2a0adf0 kvm_vcpu_reset -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2d59e4f kvm_lapic_set_eoi -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2dcfe22 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb324e151 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa892d02e __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa8c6f5ff __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab3171ae __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xabaad9cc kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad3d6876 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xadb318d7 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae30c8f7 kvm_alloc_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaedf92bf kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb06e33c4 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2cac788 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb324ed66 kvm_emulate_invd EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4447a6b kvm_get_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4a8acad __tracepoint_kvm_avic_ga_log -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5a89c02 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb37ddc0b vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb456d5d1 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb45f08ce kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5490177 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5508c01 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb56c3bbc kvm_inject_emulated_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8ba8f56 kvm_arch_no_poll -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb90016dd __tracepoint_kvm_nested_vmexit_inject -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96432ae __traceiter_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbadef243 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb5ba827 __x86_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbe7b918 kvm_load_host_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc77fa4d kvm_apic_clear_irr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc99f8b1 gfn_to_pfn -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcdbbc32 kvm_arch_has_noncoherent_dma -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbce5234e __tracepoint_kvm_pi_irte_update -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9c26c1 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba455b8c kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba7dda70 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb34c2e8 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb6d998f kvm_mmu_gva_to_gpa_write EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbffb719b __SCK__tp_func_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbec95019 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbecebecc __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf4fc24d __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc02c88bb kvm_emulate_rdmsr EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1f50369 kvm_gpc_deactivate -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2c39269 kvm_mmu_page_fault -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3d8bb4f kvm_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4184a2b kvm_vcpu_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc437683c __tracepoint_kvm_apicv_accept_irq -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc46100c4 __tracepoint_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc560ec81 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0ee6fff __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc0f8b76f kvm_find_cpuid_entry_index +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1ec1206 __tracepoint_kvm_avic_doorbell +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4ae852b __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc59469b7 kvm_get_kvm_safe EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7b42cdc __traceiter_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7dffa16 kvm_apic_set_eoi_accelerated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7e1a4ff kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc61b7feb kvm_vcpu_deliver_sipi_vector EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7fe55ac __traceiter_kvm_avic_doorbell EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9b9894a kvm_get_cr8 -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcad5eac9 __SCK__tp_func_kvm_vmgexit_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb21a604 __tracepoint_kvm_vmgexit_msr_protocol_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd5a27d5 kvm_clear_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd77bd7d kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcad58771 kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbbbe56b __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce2b4b7d __tracepoint_kvm_nested_intr_vmexit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfb3ec76 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce8917db kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfb6aaf6 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd02702da hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd065d1aa __kvm_is_valid_cr4 EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd1158b3b kvm_msr_allowed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd23f03a8 kvm_fixup_and_inject_pf_error -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2dcd235 kvm_debugfs_dir -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd37d22b9 kvm_update_cpuid_runtime -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3a47b4a __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0c1650b kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd115ca72 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3c7f6c5 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd475c188 kvm_pmu_cap -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd56b1d49 kvm_load_guest_xsave_state -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd888e494 kvm_slot_page_track_remove_page -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdacd9484 kvm_write_guest_offset_cached -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdaedca72 kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc0fdb32 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd51c3edb kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5a1df77 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6fff72a __tracepoint_kvm_nested_vmenter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd75d4bb7 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7aaaeb9 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7f562a0 kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8d30510 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd90fda16 kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd98e97bc kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda681946 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb0b8b13 kvm_is_linear_rip EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd02d48e kvm_read_guest_virt -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd074933 __traceiter_kvm_entry -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddfde613 __SCK__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde120a1e kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdef481ed __traceiter_kvm_exit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe08477ca kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc76801e __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcb51ece __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd612f3e kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde8065c1 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfc37ef3 kvm_cpuid EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1345ce4 kvm_vcpu_kick -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1971f83 __tracepoint_kvm_avic_doorbell -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2a249c6 kvm_vcpu_deliver_sipi_vector -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe402c2ef handle_fastpath_set_msr_irqoff -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe40449ae __SCK__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe677dd8d __kvm_set_memory_region -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7389236 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2e90bc6 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe562e282 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5c49549 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe667f849 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe79318ee kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe857c47e __SCK__tp_func_kvm_inj_virq EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe93dfc8c __SCT__tp_func_kvm_nested_vmenter_failed -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe94cb469 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe9a0299b kvm_gpc_init EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb519934 kvm_pmu_trigger_event -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed02d313 kvm_valid_efer -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xede572aa kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedf1f07a kvm_write_guest -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee06654c kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecaa610c kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecdc9341 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed9f4621 kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeda84bab __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee788215 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee862451 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeeb78ddf __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeedea3f0 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeee837a0 file_is_kvm EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef19fa93 __SCK__tp_func_kvm_nested_vmexit -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef90ca32 __SCK__tp_func_kvm_pml_full EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1245d26 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf180beb6 __tracepoint_kvm_nested_vmexit_inject EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf31d6d18 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2efca88 kvm_prepare_emulation_failure_exit EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf45aecd3 kvm_emulate_halt_noskip -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4bd7f4a x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf393a0c6 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf493c6ba __tracepoint_kvm_page_fault EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf55b9455 kvm_mmu_gva_to_gpa_read -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5c4ccf8 kvm_apicv_activated -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8da3702 mark_page_dirty -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa80e181 kvm_handle_invpcid -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfaa2f0e0 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5ba73af kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf69f0962 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf81a9eb0 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf88a37d4 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8e24dff __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa6ea410 kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa972153 kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb405405 kvm_init -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb944fe7 kvm_io_bus_write -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbc0763a vcpu_put -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbc98fa4 __SCK__tp_func_kvm_nested_intercepts -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbcf594b kvm_fast_pio -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc74b7d8 __SCK__tp_func_kvm_invlpga -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe82392f kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfccb62c2 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd14ad09 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd2dccd1 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe97d489 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe98d8f6 hv_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfeb00498 kvm_gpc_refresh EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfec8202a kvm_cpu_caps -EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff02e404 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff02792a __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffa5b070 kvm_pmu_trigger_event EXPORT_SYMBOL_GPL crypto/af_alg 0x0156f6ed af_alg_release_parent EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb EXPORT_SYMBOL_GPL crypto/af_alg 0x3c874ff5 af_alg_count_tsgl @@ -12616,13 +12616,13 @@ EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block EXPORT_SYMBOL_GPL crypto/twofish_common 0x926a4df7 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x0bd49345 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3dafc48f acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x427a06f5 __acpi_nvdimm_notify EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499a10ac acpi_nfit_ctl EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7083b52c acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x8624828c acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xfdedddb3 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5b6b862e acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc9f409bb acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xd7c37129 __acpi_nfit_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register @@ -13226,6 +13226,7 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04e202fe gb_connection_destroy EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0585f9e6 greybus_data_rcvd EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0ad10a4e __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0ad79e3b greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b3f8dca __traceiter_gb_hd_in EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0d66fbe1 gb_operation_get EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in @@ -13239,9 +13240,9 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3df8b336 gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ac79167 gb_connection_disable_rx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e9f16fd gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50dad7e1 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x573d0145 __SCK__tp_func_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5abe85a4 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b8e00be greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5eee08e6 greybus_message_sent EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x665d2379 __tracepoint_gb_hd_create EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x709eed81 gb_hd_del @@ -13279,7 +13280,6 @@ EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed159be0 gb_operation_request_send_sync_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee1940ad __SCK__tp_func_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee1b9db9 gb_connection_disable_forced -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee51a1cd greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf256fc2c __tracepoint_gb_hd_release EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa0526e3 gb_operation_request_send EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa90fc68 gb_hd_output @@ -13676,130 +13676,130 @@ EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get 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/md/bcache/bcache 0x07837394 __tracepoint_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0be2a3da __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0c3b0209 __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0fcde2cf __traceiter_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10ee4877 __tracepoint_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x10fd0b3f __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1478ac12 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x02d17bc3 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05545033 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0ef655c7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1284ef61 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x130aa15c __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1351053d __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x136441d6 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16669463 __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x18558908 __traceiter_bcache_bypass_congested -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19c49290 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x195c39e7 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x19ae294d __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1a94a2cb __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b9563fb __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c90cc45 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x213697ad __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x237616b0 __SCK__tp_func_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x272737fa __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25f070af __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x264a094a __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e0a4254 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ac644a2 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2bd8b866 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3138ffa9 __tracepoint_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32d01404 __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x349887fc __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32aa1fe2 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x367dc9fe __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36a06e0c __tracepoint_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37f823f5 __traceiter_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3bdb2e64 __SCK__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3bffb50f __SCK__tp_func_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3db938be __tracepoint_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3dbf7775 __tracepoint_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3e608049 __tracepoint_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f1f6cb9 __SCK__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x419350c5 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3bfcf752 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f35502a __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4067090b __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x43b4a33c __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x497b36b8 __SCK__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51581b75 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59f0fcd2 __tracepoint_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5aa21b2b __traceiter_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5af16e22 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x471da949 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x472aaa68 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d1b5def __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d8f9d2e __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e94a30a __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f368e2f __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58589231 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59298793 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59531e4c __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x60292985 __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x629c9180 __SCT__tp_func_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6595d892 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x67ad3162 __SCK__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6b17ff48 __tracepoint_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d5536d7 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7038d98d __tracepoint_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70fb6a02 __SCK__tp_func_bcache_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x731dd6a8 __tracepoint_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x73b07efb __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x69c3768f __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6a65967a __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71e371f0 __tracepoint_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x75a1d35b __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7671bcaf __SCK__tp_func_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7cbe292b __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7ae10c8f __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7af391bc __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c688354 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7e7074ca __SCK__tp_func_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x817ad796 __SCT__tp_func_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81b0b4a0 __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x83d1fb88 __tracepoint_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x87d2a27a __SCK__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8a145c7e __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8bc2030b __SCK__tp_func_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d55abe7 __SCK__tp_func_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x947007bf __tracepoint_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x95a683a0 __tracepoint_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96be081c __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x891f39eb __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ca27c0a __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e8d7149 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8eac5b1e __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x90f3b08b __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94a0a0ff __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x950fd670 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x951b8b3c __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98dad744 __tracepoint_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9b301ea7 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9b65ba02 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c719d98 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9cbcf007 __SCK__tp_func_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e923fc1 __traceiter_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa146234b __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9f2f280e __tracepoint_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5ebad10 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5633b78 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5a3a462 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa934b549 __traceiter_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa99fc50c __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab407a6a __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaca9f240 __SCK__tp_func_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6a8be4 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae07916f __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae881893 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaee07efc __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1ddc464 __SCK__tp_func_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb77632ae __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7353714 __SCK__tp_func_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbc0b1df8 __traceiter_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbd1255d2 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb86d7f11 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba9a70d5 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb8793d9 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbdb414b5 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe23e10e __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbe2b2fa8 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc04849d8 __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc0610f4a __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4d5caf8 __SCK__tp_func_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc9a99e1c __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcccdb19e __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd66fc2a __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcfa2b43c __SCK__tp_func_bcache_btree_set_root -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd17c658c __SCK__tp_func_bcache_journal_entry_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1c41322 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd1e104a5 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd27b31d9 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd299e2da __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2d72dff __SCK__tp_func_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd3d9ed55 __SCK__tp_func_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd436894e __SCK__tp_func_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9bdeba3 __SCK__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda1c4aa3 __SCK__tp_func_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdabfd7cf __SCK__tp_func_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdaeb2c81 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd824a353 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb38de9e __tracepoint_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc45fe43 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde1bce92 __traceiter_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde97ebb2 __traceiter_bcache_invalidate -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7ddfb80 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe7ff16c2 __tracepoint_bcache_gc_start -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeaf4da81 __tracepoint_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb20b013 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd97b266 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdef91cca __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe28182cb __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2b1466e __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe398489f __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe4511e2f __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe74ea4d7 __tracepoint_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xece4012e __traceiter_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed1ba7e5 __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeefdc10d __tracepoint_bcache_btree_insert_key -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf49d7016 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6145ad3 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6c200cf __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7488006 __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb767f16 __SCT__tp_func_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc975169 __tracepoint_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfce76b1e __SCT__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfdd5c862 __SCK__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x09aa956c dm_cell_quiesce_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1c46f46a dm_cell_get_v2 @@ -14051,45 +14051,45 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x014e08c0 vb2_core_queue_init EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0bb352a7 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x14067f61 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c369ae0 __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1b2845de vb2_core_expbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x226d1210 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2ae91f08 __SCK__tp_func_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b5551d5 __SCT__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x32da27dd __SCK__tp_func_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3a4e276a vb2_core_poll EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c7d3fa7 vb2_thread_stop -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3dfe4152 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x44510dd3 vb2_request_object_is_buffer EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x46d2cfac vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x493c605c __tracepoint_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4a237caa vb2_request_buffer_cnt EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bfbb92a vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4c1caf3b __tracepoint_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4ed3fb1b __SCT__tp_func_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x535c3f60 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5c6547b6 __tracepoint_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5d460821 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x63991224 __tracepoint_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x67099787 vb2_mmap EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6a8005e3 vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6b5be611 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6de2e52a __SCK__tp_func_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e163919 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7d96a649 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x82fdda3d vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8a2e0a0c __tracepoint_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x95c2621d vb2_core_reqbufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x96a33a0d vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa0332cfc __traceiter_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa16b0b4e vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xad50f281 __tracepoint_vb2_buf_done EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0763049 vb2_core_queue_release EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc54c863e __SCT__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7920841 __SCT__tp_func_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc9d7c1ee vb2_read EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcd2f34cd vb2_plane_cookie EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd3da89fc vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdaa4a98c __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe47ba867 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd4da5670 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8ff2d52 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdc5d812b __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0de039d __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe7c74421 __SCK__tp_func_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf39ec370 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf4503f81 __tracepoint_vb2_buf_queue EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf49567be vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf568d924 __traceiter_vb2_dqbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x429a6bcc vb2_dma_contig_memops EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xbdbd326c vb2_dma_contig_set_max_seg_size EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xfea20fea vb2_dma_sg_memops @@ -14577,21 +14577,19 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa207e231 videobuf_dma_unmap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09b1dbb4 v4l2_pipeline_pm_put EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c1598e1 v4l2_src_change_event_subdev_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c86b7b5 __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10152d06 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14ceb86e v4l2_subdev_enable_streams EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17307f0b v4l2_fh_del EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x195d2ddf v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a5631c2 __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ad2d928 v4l2_fh_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f0cf11c v4l2_pipeline_link_notify EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20d9b76a v4l2_subdev_s_stream_helper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x214ee73d __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x211dd0ba __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x239d4ab9 v4l2_fh_is_singular EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x292a7c61 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b3ea225 __traceiter_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e58dc94 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e9b9174 __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e9d3d66 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x32530d8c __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33c8289a video_device_pipeline_alloc_start EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38a255b8 v4l2_event_subdev_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c174f6e __v4l2_subdev_init_finalize @@ -14601,6 +14599,8 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e6ea7a8 v4l2_subdev_cleanup EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f9088f7 v4l2_device_unregister EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51198e2e __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x540d5f6d __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54de9e19 v4l2_g_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54ea0b7d v4l2_subdev_set_routing_with_fmt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x558fbab2 v4l2_spi_new_subdev @@ -14611,16 +14611,15 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66dd82ba v4l2_event_queue_fh EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79f47e1e __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71cb9894 __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b6ee763 v4l2_event_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ba10ea3 v4l2_compat_ioctl32 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c94fd5d v4l2_fh_add EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f0d6159 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x814862cb __SCK__tp_func_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83950e85 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83e5d39c __tracepoint_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8774879f v4l2_create_fwnode_links EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c243c3e video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e1a3f53 __SCK__tp_func_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8eb0a687 v4l2_subdev_notify_event EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x982f301a __v4l2_device_register_subdev_nodes EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b4af70a v4l2_i2c_subdev_set_name @@ -14630,7 +14629,6 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa2750515 v4l2_pipeline_pm_get EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6aafaf5 video_device_pipeline_stop EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa75e904b v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa885e58f __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2cd8b v4l2_device_set_name EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae153e14 v4l2_event_queue @@ -14643,6 +14641,9 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5a337db v4l2_subdev_state_get_stream_compose EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6f62e45 video_device_pipeline EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7e3b0d5 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8119b5a __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe4dcbf4 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5719476 __tracepoint_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6b1af65 v4l2_subdev_get_privacy_led EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc86897a7 v4l2_subdev_state_get_stream_format EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue @@ -14659,14 +14660,14 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde6e37d9 __v4l2_subdev_state_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe175e22f v4l2_i2c_subdev_init EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5595cc5 __SCK__tp_func_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe56ace0e v4l2_subdev_has_pad_interdep EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5fb0533 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7d5128f __traceiter_vb2_v4l2_buf_queue EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe890f74d v4l2_subdev_get_fmt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9d9657f v4l2_device_register EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed6c9ccf v4l2_subdev_state_get_stream_crop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xedb1950b __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xede4b757 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeeb9ccb7 __tracepoint_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeffa42a8 v4l2_i2c_new_subdev_board EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf07c70d2 __video_device_pipeline_stop EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs @@ -14676,7 +14677,6 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4bc6e05 v4l2_event_pending EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8b8b712 v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8ec0873 __SCK__tp_func_vb2_v4l2_qbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc5ee766 v4l2_i2c_new_subdev EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd209dd3 v4l2_event_unsubscribe EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x21788a1f pm80x_pm_ops @@ -15965,6 +15965,7 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x132a9dc1 mt76_sta_state EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x181ebdc4 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1bb60304 __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26bdb734 mt76_release_buffered_frames EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x278300b3 mt76_txq_schedule_all @@ -15974,11 +15975,12 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d13c393 mt76_tx EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3064f1b3 mt76_put_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30ab5a55 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3314690b __tracepoint_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37b5e626 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38e0ca0b __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38ebc57a __traceiter_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39342a50 mt76_tx_status_lock EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39f3989b mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a8cf241 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c63b4ac __tracepoint_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d845263 mt76_rx EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e5b0f06 mt76_get_min_avg_rssi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e65776c mt76_sw_scan @@ -16011,28 +16013,26 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x942365a5 mt76_rx_token_consume EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9478f613 __mt76_set_tx_blocked EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x94f36e57 mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x99f0448e __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c6bf9e8 mt76_ethtool_page_pool_stats EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ce234f3 mt76_get_of_eeprom EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa049db91 mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa64bf3a5 __traceiter_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6c537e0 mt76_dma_cleanup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaed01fbd mt76_unregister_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xafd9be92 mt76_sw_scan_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb1512fd5 mt76_register_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb42547c1 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb813a5d4 __SCK__tp_func_dev_irq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9e95163 __mt76_mcu_msg_alloc EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc28d5df mt76_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbcc0218b __tracepoint_dev_irq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbdd58642 mt76_create_page_pool EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc16ab8a2 mt76_dma_rx_poll EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc2e692a4 mt76_mcu_get_response EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc37601b8 mt76_register_device EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5ec4d10 mt76_sta_pre_rcu_remove EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd4d7caa __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6789f7c __tracepoint_dev_irq EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xce2b0e5b mt76_txq_schedule EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcf187689 mt76_tx_status_skb_done EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfc9ac7e mt76_init_sar_power @@ -16597,6 +16597,16 @@ EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3937a0d wlcore_event_max_tx_failure EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9960eaf wlcore_alloc_hw EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd2c9f61 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x29dadda6 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x563dc034 wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x86b3761e wwan_port_rx +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x934da2d1 wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x9c939c87 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xeae59c24 wwan_get_debugfs_dir EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x218dfad3 nfc_mei_phy_alloc EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x7e52e0aa mei_phy_ops EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xd83c61d4 nfc_mei_phy_free @@ -16638,8 +16648,8 @@ 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/ntb/ntb_transport 0xfc626e61 ntb_transport_create_queue -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x18bffb4c async_pmem_flush -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x1971571e virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xac44ecfa virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd51e2959 async_pmem_flush EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge @@ -16656,68 +16666,68 @@ EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xefbe9c20 nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xffbfda7a nvme_auth_gen_shared_secret -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x049bfaac nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a1f2cd4 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0e341247 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x120432db nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x14f70226 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1527bd12 nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17cab464 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x19f13c4a nvme_cancel_admin_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e047347 nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x254f7b7e nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x07aaaccd nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x086b57fb nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x12960319 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x169d35aa nvme_unquiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fe6c75f nvme_unquiesce_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2627806e nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28106e77 __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x28f28ab3 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d881e53 nvme_alloc_io_tag_set EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2e300f24 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x309ca9ef nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ea0714d nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x331b8b81 nvme_complete_rq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x361cb586 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b1e775d nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bd24a1d nvme_start_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x40d86595 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x472c9175 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41f36008 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45c7cdd6 nvme_get_features EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4934f18f nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c4d9ef6 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4f5fc631 nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51f81602 nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x533dcadf nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49745e0f nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4b63a516 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50d82e08 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x510531ba nvme_init_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5896c82b nvme_auth_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5aad4cdf nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b22708e nvme_alloc_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ba90e74 nvme_start_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x695635db __SCK__tp_func_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b08133a nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c81139b nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x71e26c64 nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7cbff923 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6a8fdb7e nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b6d0337 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x72fbde7d nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x762ef764 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78411e52 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ae8cd28 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80d1a474 nvme_complete_async_event EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8161e93d __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8fa473b7 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x976ed66f nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85ccc08c nvme_remove_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8875f3ed nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x890261da nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8dc744e5 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e5e3e33 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9230d659 nvme_alloc_admin_tag_set EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x987d2e30 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9c3278d3 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9fa66072 nvme_quiesce_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99327668 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa2bac24b nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3082b92 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5f5f405 nvme_remove_io_tag_set EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa812e11d nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf5b0eac nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf47bf7b nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbfdf4e40 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1c13874 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbd007429 nvme_quiesce_admin_queue EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4e9e6a9 nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9770946 nvme_stop_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xce338cf0 nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2183e09 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2204e47 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc682d9fe nvme_uninit_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd8bd0f54 nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf24ffeb nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeac04b80 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3781f3a nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf8831491 nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9abfd21 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc425ae4 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdc753125 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe62e1b04 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe63eac01 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6499389 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6d4c650 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9f57704 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb3f1a37 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec58ec90 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2c1ba8d nvme_set_queue_count EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa2e76d7 nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdeff86c nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfeaf05e1 nvme_cancel_request EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0d1e88c7 nvmf_register_transport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0df5fc15 nvmf_reg_read64 EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x186080e3 nvmf_connect_io_queue @@ -16739,18 +16749,18 @@ EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcc8a2d78 nvme_fc_io_getuuid EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x21e92a32 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x37aa20de nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x011d4e85 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0dbb02e0 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x325d1744 nvmet_sq_init EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x428738f0 nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x467d0da3 nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x468774e7 nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4947b453 nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x61e26b63 nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6207ec6a nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9403cd67 nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbe4fea17 nvmet_req_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd97fbb7f nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6dbef3a2 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85d96d18 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa0aef642 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb051a782 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb48a08c4 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe3acc700 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe5046b34 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xefda3154 nvmet_ctrl_fatal_error EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x19a35c78 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host @@ -16765,8 +16775,8 @@ EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x0eec86b5 mcp23s08_probe_one EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9978a9f8 mcp23x17_regmap EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xa9030d17 mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x8e00f450 cros_ec_sensorhub_register_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xffdfe8bd cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x10ef83b8 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xda8b4e25 cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x112134ec wilco_ec_set_property @@ -16780,7 +16790,6 @@ EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x183553cc ssam_remove_clients EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1b97af2a ssam_bus_type EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2b9258ae ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x309656d1 ssam_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x380742dc ssam_request_write_data EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3fe44d16 __ssam_register_clients EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x488460db ssam_controller_event_enable @@ -16788,7 +16797,6 @@ EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x50f6c59a ssam_request_sync_alloc EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x53a2287e ssam_request_do_sync_with_buffer EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5ea3de5c __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x68db1a5a ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6901b27c ssam_device_get_match_data EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6c6fbba5 ssam_request_sync_submit EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x793df429 ssam_device_type @@ -16799,14 +16807,16 @@ EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa36505c2 ssam_request_do_sync EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa50d2d0c __ssam_device_driver_register EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa7eb9a82 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xad38d8b4 ssam_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb01991d5 ssam_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb262d3f1 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbc1900ef ssam_client_bind EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdb852e9d ssam_device_add EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xddd16f9a ssam_controller_device EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdea14d46 ssam_request_sync_init EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf1d30b7e ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfd22fcc2 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf809ce64 ssam_get_controller EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x8fbcd0e7 san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister @@ -17080,72 +17090,72 @@ EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf06626ef sas_clear_task_set EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf986b7b3 sas_execute_ata_cmd EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xeccf8c96 fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x00ad1033 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x040cfe58 __traceiter_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04544e63 __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0653b873 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c30435f iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x036882a1 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0675562a iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07d7b553 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0825101a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08730c3b __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x105eff74 iscsi_offload_mesg EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d1af34b __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fd8a52b iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ff64f6e iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21134e85 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21a65db4 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x269d7933 iscsi_conn_error_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x285fa0d3 __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a50a302 iscsi_create_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x322d8776 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x359c933a iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b79abcb iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dab014a __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4241307b iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x45ba7376 __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b61339e iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1fc800c3 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x279d59f5 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d127ddc iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x306d1d04 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x31b3c1f7 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37752e93 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x390b5b16 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42e9eb26 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4caacdff iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x503a523c __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x50a6613b iscsi_find_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x581b33f0 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b1abfb4 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d04669a iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e18fb79 iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f191d27 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69173fcb iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59177200 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e162881 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x610ae57f __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x680632dd iscsi_create_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7691e08c iscsi_get_port_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b702020 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7eb7b25a iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81346b38 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82466668 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82aa2bf5 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6decf27e iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f6dad16 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x730c48f0 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x742d5069 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74b3a2d3 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d2be55a iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84202733 __SCK__tp_func_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84e65525 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8621035e iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b94c6a6 iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94a02087 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94cbb37f __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x974d7381 iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9af0fb7c __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e285c55 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9efe67ee iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa282eef9 iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7c16017 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8580a38 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87f93355 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8cf4597c iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e5e70c1 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b357bdf iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b8baa3f iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ca6d0c2 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9fb02a61 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa720dbd2 iscsi_block_scsi_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa48524c iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaef8a4a1 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1abda46 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae7cd27b iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1ab30b9 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb232c24c iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb618ce85 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb77a3b39 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb83b4db6 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb0ca69b __traceiter_iscsi_dbg_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbcb5852e iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfd2ad33 iscsi_post_host_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc83dff42 iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf908c0f iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde2b0b80 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc43ae3c4 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4648f60 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5d9356a iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc81767d9 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce18c93d __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdcda215a iscsi_destroy_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf7f9dd2 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe148f41c iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4396a7c iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5909a97 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6255169 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeca7b415 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef0a02f6 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef8119d2 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeff14c38 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0365e4e iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3dc565f iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3f42098 iscsi_put_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9c6c1f0 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf944c9f1 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfe820c20 iscsi_conn_error_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6951dc42 sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x93be8b8d sas_disable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc836a8bb sas_tlr_supported @@ -17161,12 +17171,12 @@ EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb19dd124 srp_stop_rport_timers EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcd7cbad6 srp_remove_host EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf35d51cf srp_release_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x06b0e842 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x06dd4646 siox_master_alloc -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8f26fd0e siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb4881fdc siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xdec0f257 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xf8075bf4 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x101f6e0a siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x554c5875 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x91393352 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x98997e3f siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc476c6dd siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xe48fd098 siox_device_synced EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x11f51b2e slim_get_logical_addr EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1961daa0 slim_get_device EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30953ea0 slim_msg_response @@ -17208,25 +17218,25 @@ EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7b3a609b spi_test_execute_msg EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x998c15ea spi_test_run_tests EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xec16ba3a spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x21d96ce5 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32f6629e spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3b8047a7 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3cac8296 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x414adbcd __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x767ef2e5 spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7a235be0 spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90e3ee61 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa0431f20 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa1937cb3 spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa794b544 spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb04a0001 spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb1fd66f4 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbb746828 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbfa5055a spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd3b7d8f1 spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe329e9be spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5043930 spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfad9d89a spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x08c2cec5 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x148210a1 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x21142294 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x23e35fdb spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x24dd6171 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x451bf0c1 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x485314ce spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b2d6bfe spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d92fc01 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x72e642d4 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7429a1df spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7857303f spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x881b56db spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8c8107e0 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab796751 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbcba1ac3 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdf7a072f spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe9df691b __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf7569f36 spmi_ext_register_write EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x9ac59df6 ssb_pmu_spuravoid_pllupdate EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x21141a23 fieldbus_dev_unregister EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2adca23b fieldbus_dev_online_changed @@ -17272,13 +17282,13 @@ EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xa3868cd3 adt7316_pm_ops EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x559d9269 sp8870_attach EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b9b3376 target_stop_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2f7633a5 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4b671818 target_init_cmd EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d24150b target_free_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x9b305bf6 target_init_cmd -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb2a6c6b9 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x6fb7645d target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x85631f4d target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb4489234 target_wait_for_cmds -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xbb67612c target_submit_prep EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc65e34a6 target_alloc_cmd_counter +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe7ae36ac target_submit_prep EXPORT_SYMBOL_GPL drivers/tee/tee 0x14ec1fa7 tee_shm_alloc_priv_buf EXPORT_SYMBOL_GPL drivers/tee/tee 0x2770cc17 tee_shm_register_kernel_buf EXPORT_SYMBOL_GPL drivers/tee/tee 0x3b6a538e tee_device_register @@ -17358,38 +17368,38 @@ EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf15c5f08 tb_xdomain_request EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x062d03c3 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0b3b9440 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x10ea2a9e ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x13b0b330 ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x19c83dc6 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1ebc3b84 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2547526a ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c508d04 ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3166a929 ufshcd_uic_hibern8_enter -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x37617139 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0ddaf9df ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x11f4df2d ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x143e2480 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x185717d1 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x191ef39f ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1dd66d15 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c12bf18 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2c3a7c34 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2e2eec61 ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3117a4a2 ufshcd_fixup_dev_quirks EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3c48f722 ufshcd_mcq_poll_cqe_lock EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3d2d1ec2 ufshcd_mcq_write_cqis -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x411e395f ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4304f069 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4f583691 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x51c5bcac ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x614409e0 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x414c7d2a ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4478d3b0 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x468411c7 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4db0f4ee ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x58efa603 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6f2ee2f4 ufshcd_init EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x77313c2d ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9a88a5ec ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb9ebe1d1 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc022cd9f ufshcd_system_freeze -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc5ab7d62 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc7af4665 ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd12145af ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd6ca8a4b ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8431fa51 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8bea5def ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9ce2c988 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9d612a8e ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb24fbccc ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbe3dea86 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc3e76d60 ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xce8ebcac ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd4012d2b ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd928f63e ufshcd_update_evt_hist EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdae83b4e ufshcd_mcq_config_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdd1c4c5a ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xede9a834 ufshcd_system_thaw -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xeeaff225 ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf413e487 ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfabb0bd5 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe67b2b68 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf07056f8 ufshcd_system_freeze EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfe10d552 ufshcd_mcq_enable_esi EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x661c452e ufshcd_pltfrm_init @@ -17819,29 +17829,29 @@ EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xca76e4a1 vfio_pci_core_ioctl_feature EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe255f25d vfio_pci_core_release_dev EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf7c262aa vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x088e9c0d vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x08a3cfa8 _vfio_alloc_device EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0bc37699 vfio_unregister_iommu_driver EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1f3694f4 vfio_iommufd_physical_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x30815dc7 vfio_unregister_group_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x38c6c3e1 vfio_file_iommu_group EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3dde32a3 vfio_file_has_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5c63be8d vfio_register_emulated_iommu_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x61010b1a vfio_assign_device_set EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x68f6ef6f vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6df8ea51 _vfio_alloc_device EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x705f3ddf vfio_iommufd_physical_bind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8191a3a0 vfio_iommufd_emulated_attach_ioas EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x856801ef vfio_file_is_group EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8859592c vfio_virqfd_enable EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x88be1ae7 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8ca7ad84 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xabe0df1e vfio_unregister_group_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbd096bf5 vfio_file_set_kvm EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc324433a vfio_iommufd_emulated_bind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc80a8406 vfio_iommufd_emulated_unbind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd5796051 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xea4fc1b5 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf3617784 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe39f565f vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe960108f vfio_register_emulated_iommu_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfc836eeb vfio_file_enforced_coherent EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x062b0994 vhost_vq_work_queue EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10fda6af vhost_exceeds_weight @@ -17955,6 +17965,7 @@ EXPORT_SYMBOL_GPL fs/netfs/netfs 0xec19a09f netfs_extract_user_iter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00d0ad93 nfs_write_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0312a877 __SCK__tp_func_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03d205f7 nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0817652f nfs_path @@ -17964,7 +17975,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1110930f nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11712aad nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12227ec8 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x134b6844 __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1585ca22 nfs_drop_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1af14e47 nfs_initiate_pgio EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b364e2f nfs_file_read @@ -17973,17 +17984,20 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f230eb8 nfs_commit_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22e74cc2 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x234a99af __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2432ed60 __SCK__tp_func_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24ba2663 nfs_lookup EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x275b0087 nfs_reconfigure EXPORT_SYMBOL_GPL fs/nfs/nfs 0x294b4cb5 nfs_commitdata_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29c1ac8e nfs_init_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2af2fc92 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e295917 __tracepoint_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2efdde18 nfs_release_request EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f423fe6 nfs_post_op_update_inode_force_wcc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fb154e3 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30660fb7 __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30b3f898 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33775de5 __tracepoint_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3417a6b7 nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0x350c7a98 nfs_fscache_open_file EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3584f15e nfs_alloc_inode @@ -17996,6 +18010,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c2975ba nfs_file_set_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d28977d nfs_file_release EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3da7a270 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e149d5d __SCK__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40734167 nfs_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable @@ -18014,12 +18029,11 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52ce1e8a nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b650201 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c2d7d50 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x624ce590 nfs_zap_acl_cache EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6313bbf3 nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67391908 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x683c06cf __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68731434 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x691bf047 __SCK__tp_func_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c809176 nfs_writeback_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d62f4d2 nfs_may_open EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6db7bd34 nfs_dentry_operations @@ -18027,7 +18041,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71fd5db4 nfs_statfs EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7292b380 nfs_client_init_is_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73685364 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7445f4b5 __SCK__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74f1e499 nfs_server_remove_lists EXPORT_SYMBOL_GPL fs/nfs/nfs 0x769154f3 nfs_setattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76c6fa8a nfs_generic_pg_test @@ -18036,7 +18049,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dc195ea nfs_d_prune_case_insensitive_aliases EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e91fcda nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eff4fb1 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8161a1a8 __tracepoint_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82ddd303 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d05407 nfs_fhget EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr @@ -18044,10 +18056,8 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87f735e3 nfs_kill_super EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89acb982 nfs4_label_alloc EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a886774 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8aa9d643 __SCK__tp_func_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b639b2e nfs_pageio_init_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8df06f4a nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f08341b __traceiter_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f3b3dd1 nfs_file_write EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f41e193 nfs_symlink EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue @@ -18057,9 +18067,7 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9484f9cf nfs_sync_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95020883 nfs_sysfs_link_rpc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96e837ec nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9898042f __SCK__tp_func_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c3fa55a __tracepoint_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f91a885 nfs_init_cinfo EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3cf65b9 nfs_sysfs_add_server @@ -18076,8 +18084,10 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb730b2e6 nfs_rename EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb77838bd nfs_mark_client_ready EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c64c38 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb96999fd __traceiter_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbb5e977 nfs_wait_client_init_complete EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbccd1d7a nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcec43ab __tracepoint_nfs_xdr_bad_filehandle EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd0e087e nfs_lock EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1f4476d nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id @@ -18097,10 +18107,11 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd79dabce nfs_alloc_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde2bd3f6 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdebc4de5 __traceiter_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdef1f159 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf8f8b70 __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfccc79d unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe015e5be nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe185b51e __tracepoint_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1c31aac nfs_client_init_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe33f5d4f nfs_instantiate EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe413723b nfs_put_lock_context @@ -18109,7 +18120,6 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe61660ce nfs_get_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe65c7ddd nfs_request_remove_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe73d5797 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe95a9ecf __tracepoint_nfs_fsync_enter EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea37f705 nfs_wb_all EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed31753d nfs_scan_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef6c6057 nfs_mkdir @@ -18128,130 +18138,130 @@ EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfede635e nfs_inode_attach_open_context EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x21f8f418 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x027f152b __tracepoint_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03e9feeb pnfs_generic_layout_insert_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c8baae4 nfs4_init_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff24649 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10facb95 __tracepoint_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x114e279d nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1285d7dc pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12a1eaf0 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x130a3c62 __tracepoint_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1693e778 __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1839626a nfs4_pnfs_ds_connect EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x186093f7 pnfs_generic_pg_test EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18746ba0 pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20dea6e7 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2471bba0 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2516226a __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2522e035 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad704a __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a4595af __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bcd4b03 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d7116a4 __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e2eeb84 nfs4_decode_mp_ds_addr EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3039cbf8 nfs41_sequence_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32458b95 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3266b5b9 __tracepoint_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32cf7b9f nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37559443 __tracepoint_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39bc9138 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a4b5e76 __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ac8d0cd nfs4_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41bdd637 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f72c8c9 __SCK__tp_func_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4284e6a1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x433cfd22 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x435717bf __SCK__tp_func_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44283cd9 nfs4_schedule_lease_moved_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x460e39a4 nfs4_mark_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48453a64 nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48ce7769 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x495dad16 __tracepoint_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bc7189f __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x485183c6 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c9f8795 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cac08cb __SCK__tp_func_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e25713b nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f598557 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ff0525a __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5175fe84 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5181b263 __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5240d89c pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53058db3 __SCK__tp_func_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53f2d0f6 nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5488abb2 nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x552f893a __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x549855c9 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55a7c9d0 __SCK__tp_func_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x581f0cff pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58276070 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58d4149c __SCK__tp_func_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59d119c7 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a24b1bb nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c64d869 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dc226cf __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x604300fa pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61d8a0af pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62de010e __traceiter_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6416359d nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a051af2 __tracepoint_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a7bd32d __tracepoint_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6adcdbb2 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d5a7adf pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fa073e7 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f363b08 __tracepoint_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70a98eae pnfs_generic_commit_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x710e3e9a pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71af581c __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73ffc5e0 __traceiter_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7811fb85 pnfs_generic_pg_check_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78b040c2 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a48021d __tracepoint_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b6973b7 pnfs_layout_mark_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e1a19a8 pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x80e6ba7b pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8343059a __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8378dc44 __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86998163 pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e31314b pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f543c17 pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x951f4d5d __SCK__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96cc680d __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9de27b05 __traceiter_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa05bb2f9 pnfs_generic_ds_cinfo_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1c77ccb __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3fc5706 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2c39615 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4fb11bc __tracepoint_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa52e8a50 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8536f15 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa68d3158 __tracepoint_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb07ea5af __traceiter_nfs4_pnfs_commit_ds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb20d491e pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb22ede13 __SCK__tp_func_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb253bb7f nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4876aa6 pnfs_alloc_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb78f67d1 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb499e82f __traceiter_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc76f65a pnfs_generic_write_commit_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe0ea83e nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7cbe274 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc89cf791 __tracepoint_ff_layout_commit_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc94174ff pnfs_free_commit_array EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce6f8f70 __tracepoint_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf33a6b2 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd21ee475 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3a531f5 __tracepoint_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd63be4d2 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6de1ebf __traceiter_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd83d59ba nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd87a1377 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8a33bb1 __SCK__tp_func_pnfs_mds_fallback_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9dc460e pnfs_generic_pg_init_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdadb4c7e pnfs_generic_recover_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdae0d5bd nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbf65d1f __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdceae4b1 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd66eaf0 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb20aad1 __SCK__tp_func_pnfs_mds_fallback_read_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde07529d pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdff7afb6 __SCK__tp_func_ff_layout_read_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe720dc54 pnfs_generic_pg_readpages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe75c2eef pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeacc9911 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb8bf9d4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef676614 nfs4_pnfs_ds_add EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xefe70f0b pnfs_set_layoutcommit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf29412f1 pnfs_generic_pg_cleanup EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3e3a75c __traceiter_pnfs_mds_fallback_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5002c22 nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5f9f0a5 __tracepoint_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf6fa3c8a __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5667e82 __tracepoint_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9a4d380 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9f2695d __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbf6cb5b __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x196b72b4 locks_start_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x47634fd7 opens_in_grace @@ -18364,8 +18374,8 @@ EXPORT_SYMBOL_GPL net/802/mrp 0xe344fed8 mrp_request_join EXPORT_SYMBOL_GPL net/802/stp 0x0d03e1b7 stp_proto_register EXPORT_SYMBOL_GPL net/802/stp 0xb9bd3aeb stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x58b1f7b5 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0x92071ebe p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x387546fc p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9ea25b9c 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 0x78c1a26a ax25_register_pid @@ -18405,47 +18415,47 @@ EXPORT_SYMBOL_GPL net/bridge/bridge 0xd2296e87 br_multicast_has_querier_adjacent EXPORT_SYMBOL_GPL net/bridge/bridge 0xda73bc3d br_mst_get_info EXPORT_SYMBOL_GPL net/bridge/bridge 0xf72365a1 br_handle_frame_finish -EXPORT_SYMBOL_GPL net/dccp/dccp 0x1645ddd3 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1693b146 dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add EXPORT_SYMBOL_GPL net/dccp/dccp 0x20faa19f dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0x2617c946 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c2ab18e dccp_done EXPORT_SYMBOL_GPL net/dccp/dccp 0x2e8ba3af dccp_feat_signal_nn_change EXPORT_SYMBOL_GPL net/dccp/dccp 0x38781f42 dccp_sync_mss EXPORT_SYMBOL_GPL net/dccp/dccp 0x3cda6513 dccp_feat_nn_get EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e7be468 dccp_create_openreq_child EXPORT_SYMBOL_GPL net/dccp/dccp 0x4362f7c1 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x43f2ca7c dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45ad5b6b dccp_close EXPORT_SYMBOL_GPL net/dccp/dccp 0x47c31237 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48bc9657 dccp_destroy_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x542594ba inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x546bd5f3 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5697af0f dccp_poll EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b57ec13 dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x68dfddec dccp_destroy_sock -EXPORT_SYMBOL_GPL net/dccp/dccp 0x712773a1 dccp_close EXPORT_SYMBOL_GPL net/dccp/dccp 0x742b2666 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0x7496c4c1 dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x87f5969c dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ec365d8 dccp_recvmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8517a94 dccp_disconnect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa92c6a83 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaabb3a95 inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xaad6c427 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c327c8e dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e32514a dccp_sendmsg EXPORT_SYMBOL_GPL net/dccp/dccp 0xac737f80 dccp_parse_options EXPORT_SYMBOL_GPL net/dccp/dccp 0xad7ec447 dccp_send_sync EXPORT_SYMBOL_GPL net/dccp/dccp 0xaef223c5 dccp_check_req EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0dbf658 dccp_insert_option EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1062ef1 dccp_make_response EXPORT_SYMBOL_GPL net/dccp/dccp 0xb86c45a5 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbeb2a9f dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbff371ec dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0164ffe dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc88eec6 dccp_init_sock EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2c2b312 dccp_send_ack EXPORT_SYMBOL_GPL net/dccp/dccp 0xd65cbc42 dccp_ctl_make_reset EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdbe4b941 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee29f69c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4ec72d4 dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb4bd1fd dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xffc3644a dccp_shutdown EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x23d1d56e dccp_v4_connect EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4c149395 dccp_invalid_packet EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6be582c1 dccp_v4_request_recv_sock @@ -18596,27 +18606,27 @@ EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9b6f58df nf_tproxy_handle_time_wait6 EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xa9f2074f nft_fib6_eval EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc1e1f01a nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07edfafb l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d9b8840 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x27d7540e l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x30ba006d l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57b61404 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e208119 l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6627548d l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7168f014 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x749aae9f l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x83678d0a l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x85e02326 l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x922f29a2 l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa3133325 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa84d5548 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xad6f6cc8 l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbcce4770 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc61ec2b5 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcdacc38c l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe66d7056 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe6d7e4cd l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeaa82651 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14d992b6 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e080e92 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x20822f87 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x56d73254 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e981f17 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5f03be3c l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7078f09f l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x70931162 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82d0ca6a l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9d618a74 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa228b284 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb11d1b1c l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8f990ce l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0dd3c5e l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd23995a l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd8cdeda3 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe39c2f08 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe59ca719 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5ec9c92 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe7663ffe l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xead4990e l2tp_tunnel_create EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x367dc78b l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2135fe3d l2tp_nl_register_ops EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops @@ -19061,7 +19071,6 @@ EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbab83244 svcauth_gss_flavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbec29fe5 gss_mech_register EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04699f77 rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04efdfb1 rpc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0551ff22 sunrpc_destroy_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string @@ -19077,17 +19086,18 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c982a85 xdr_decode_word EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d250991 rpc_cancel_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f7eece4 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1017ed6d rpc_wake_up_first EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1139a36d xdr_inline_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11d15105 rpc_clnt_iterate_for_each_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1533e2bf rpc_prepare_reply_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15c240de auth_domain_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15fb009a xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16b9048f rpc_exit EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x183b70f6 svc_generic_rpcbind_set EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1946c4c5 rpc_count_iostats_metrics EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19546a44 svc_reserve EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x197f93ed rpc_switch_client_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19cb8803 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19dbeeb7 rpc_sleep_on EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c640299 csum_partial_copy_to_xdr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c6fa162 cache_seq_start_rcu EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor @@ -19095,7 +19105,6 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ef1982b xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa23bf0 rpc_call_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21d1df30 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2239bc95 rpc_malloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226e35ea svc_xprt_enqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x226f5086 rpc_mkpipe_data EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22716715 xprt_reserve_xprt_cong @@ -19111,19 +19120,23 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f4b2d4 xprt_request_get_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d57fead svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f53d1e3 rpc_sleep_on_priority_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x303bd5a7 rpc_proc_unregister EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x304bd60f rpc_clnt_show_stats EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30cb75af sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x313d74d2 rpc_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x324ed91a rpc_pipe_generic_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3416fe95 svc_exit_thread EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3494d121 svc_sock_update_bufs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349f0a66 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34afd86b rpc_malloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c85833 rpc_shutdown_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35697e03 svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3599f298 rpc_init_pipe_dir_object EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35bf1c05 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ae035d rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a700944 svc_proc_register EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e40f2db xdr_terminate_string @@ -19144,7 +19157,6 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4acf1a98 rpcauth_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b24c955 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf3f8ba rpc_put_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d9825c9 rpc_queue_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id @@ -19165,6 +19177,7 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x636ad9e4 xprt_complete_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x642c8406 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6564442e rpc_put_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65ba1f0c rpc_max_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6761a784 xprt_reconnect_delay @@ -19173,7 +19186,6 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a312695 gssd_running EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dc0311c svc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e485312 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f6525d2 rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b136fb svc_recv EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70f21d6e svc_set_num_threads EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x714e3025 rpc_run_task @@ -19186,6 +19198,7 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74c1cb8d xdr_init_encode_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7691837d svc_encode_result_payload EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78816619 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78bc8941 rpc_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b1fb119 xprt_unregister_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b224c9c svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c2cafc5 xprt_disconnect_done @@ -19202,17 +19215,18 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8623c4de rpc_clone_client_set_auth EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88ce4e4d xdr_read_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88dca730 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x890d2191 rpc_sleep_on_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89ba0148 rpc_task_release_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b1a68a5 svc_authenticate EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b400ebc xdr_stream_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b79f65b svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cd31b63 rpc_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ceaa4ce xprt_add_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e5288ea rpc_clnt_xprt_switch_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f3fe8df svc_generic_init_request EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa8c605 xprt_wake_up_backlog EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x908c8ca0 svc_drop EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90a657df xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x927ee7cb rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92bab492 bc_svc_process EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92d165f8 rpc_clnt_test_and_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9390c727 _copy_from_pages @@ -19230,6 +19244,7 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aec5b24 xprt_lookup_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c0902be rpc_clnt_xprt_switch_has_addr EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d373fcf xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d8f0631 rpc_sleep_on EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f08d71d svc_addsock EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b18bd1 xdr_buf_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d28ca3 svc_bind @@ -19246,6 +19261,7 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac8df347 xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf62da17 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc2d1e4 rpc_wake_up_queued_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1154834 xprt_pin_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4e8dff9 xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister @@ -19264,13 +19280,13 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfc530b8 svc_xprt_close EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12f7457 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5ddf827 rpc_setbufsize EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e58bc0 rpc_clnt_xprt_switch_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc71207fb read_bytes_from_xdr_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc98154ad svc_find_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb2a3d11 xdr_truncate_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb42df5 rpc_task_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc5d6330 xdr_set_pagelen EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcccb44c8 svc_rqst_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccf0b41c svc_xprt_put @@ -19285,7 +19301,6 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd38bbcad rpcauth_destroy_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6ded712 svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd71c5d40 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd735cf9f rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d366d4 svc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e1e11f xprt_alloc EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ebe7fd svc_seq_show @@ -19296,26 +19311,21 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdec35e08 rpc_unlink EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdedf0f3a sunrpc_init_cache_detail EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe14dcf3e cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe17d881d rpc_sleep_on_priority_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2603eab cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe436afff rpc_delay EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5d3e2c5 sunrpc_cache_pipe_upcall EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8996395 svc_rpcb_setup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a8e89b xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe94d9f21 rpc_wake_up_first EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea981eb7 rpc_sleep_on_timeout EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec3128e5 rpc_put_sb_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecaf56e1 rpc_clnt_xprt_switch_remove_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee7fbd70 xdr_init_decode EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf05d3c5e xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf092efda rpc_sleep_on_priority EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf213586e rpc_wait_for_completion_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf50c52b1 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5c3c1bc rpc_wake_up_queued_task EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf65b9e59 svc_rpcb_cleanup EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf72bee88 cache_create_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7724653 svc_unreg_xprt_class @@ -19323,6 +19333,7 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c866ca rpc_machine_cred EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8d9b827 svc_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9f122a2 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa9f61e3 rpc_wake_up_next EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfafbf84a xdr_encode_array2 EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc4c18a8 rpcauth_stringify_acceptor EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd1293da rpc_uaddr2sockaddr @@ -19330,48 +19341,47 @@ EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe08525b rpc_net_ns EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe667686 xdr_buf_trim EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff6225a0 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffd560b4 rpc_exit EXPORT_SYMBOL_GPL net/tls/tls 0x074d2ce0 tls_offload_tx_resync_request EXPORT_SYMBOL_GPL net/tls/tls 0x2e3ebe96 tls_validate_xmit_skb EXPORT_SYMBOL_GPL net/tls/tls 0x565a3691 tls_encrypt_skb EXPORT_SYMBOL_GPL net/tls/tls 0xeefe8073 tls_device_sk_destruct EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0403c61d virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0eb03dc2 virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10149128 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15a8e2a9 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x19fbf82d virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x25408296 virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x306ee882 virtio_transport_purge_skbs -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3a27aff7 virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41f178b3 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50a4292a virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5fc0efc2 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x638e5dcb virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x685ce165 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6ce4360f virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e018cb4 virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7596a3fc virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x774c7eff virtio_transport_notify_recv_pre_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x82c250dd virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x849a045a virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x901a6f3b virtio_transport_read_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x943ee288 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x97caff54 virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98d36344 virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9bc61976 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f033bb0 virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9f78cc72 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaf1430b0 virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb52ebeff virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb706fd5e virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x11e0250e virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x13ba34d2 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x14247501 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20491002 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x225b3ec6 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2e0235b7 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x32cc3b80 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b81711b virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f93889f virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46d75734 virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x471535b4 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4790b5a0 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47c01dc2 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47fa07df virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x584c5a04 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a65abcb virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7d03f0b0 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x81d08c0a virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x979190c4 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x98898c23 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c053350 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa228d055 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa527b15d virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8ca0b04 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac01c510 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb559b6b6 virtio_transport_deliver_tap_pkt EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc70b918f virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xde921a56 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe5fc488d virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9d7a7ca virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xee258396 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb3ab1d6 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xccc750de virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcf012465 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd6b25633 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd7cb05d virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdfa9a051 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xeba9bcc8 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecfe7dc3 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6c65cb4 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf87affa8 virtio_transport_dgram_enqueue EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00b2a067 vsock_find_connected_socket EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x124b315c vsock_remove_bound @@ -19522,19 +19532,19 @@ EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd6609c0a snd_ump_transmit EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump EXPORT_SYMBOL_GPL sound/core/snd-ump 0xeb6726f5 snd_ump_switch_protocol -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x14f0b277 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x19ed8a2d amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x299fbc4e amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x383465f1 amdtp_domain_stream_pcm_ack EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x40bc0138 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4657974d amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4f3a693e amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x660f8361 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x472d526f amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x688c3864 amdtp_domain_add_stream EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7192421e amdtp_am824_set_midi_position EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x735f12ca amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7e5fa2a2 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x738c2b34 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9174979d amdtp_domain_start EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa849e4bb amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdaecb3d5 amdtp_domain_init EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdb231e40 amdtp_am824_midi_trigger EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xea7db208 amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf04fb755 amdtp_domain_start EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x00e0e7f9 snd_hdac_ext_bus_link_set_stream_id EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0f015b7f snd_hdac_ext_stream_start EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0fd1182a snd_hdac_ext_bus_link_clear_stream_id @@ -19680,11 +19690,13 @@ EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc5bb397e snd_ak4113_build EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc7ff00d2 snd_ak4113_check_rate_and_errors EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00376cfd snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00af8fb7 azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x031b72c8 snd_hda_create_dig_out_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x031dc46f snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06289e6b azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06cb4139 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x072c6c03 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0820be78 azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x085a4362 snd_hda_apply_verbs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c0be5b8 snd_hda_jack_tbl_get_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ca27fce snd_hda_jack_poll_all @@ -19701,26 +19713,25 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x262f7d6d snd_hda_codec_amp_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b8511ae snd_hda_pick_pin_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c4858d9 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e68676c azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f399942 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x385617ec azx_get_position EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39e2ee1d snd_hda_codec_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b318c1b snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b5ac0c6 snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ccb717b snd_hda_jack_report_sync EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e574690 snd_hda_codec_register EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e99f6f1 snd_hda_set_vmaster_tlv EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f086536 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f4a923c azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4139d0d5 snd_hda_codec_set_power_save EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41b5ab5d snd_hda_codec_pcm_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4516ee4f snd_hda_codec_set_name EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47eee4c8 snd_hda_add_imux_item EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49949003 snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b3acc0e snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cb43821 snd_hda_multi_out_analog_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fc38eae snd_hda_mixer_amp_switch_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x504b9503 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x522affbc azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52431a3f azx_init_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52557c99 snd_hda_pick_fixup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58358abd hda_codec_driver_unregister EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59b3cd38 snd_hda_jack_bind_keymap @@ -19730,32 +19741,29 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63559825 snd_hda_jack_add_kctl_mst EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x639f0a6f snd_hda_codec_set_pincfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6713ea59 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x684db88f azx_codec_configure EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d215d37 snd_hda_spdif_ctls_unassign EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dc0e8ba snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ea71fe1 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x704e579e snd_hda_detach_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x728fd61f snd_hda_multi_out_dig_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d57e99 snd_hda_codec_pcm_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73dfdb0f snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74b34568 azx_free_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76295207 snd_hda_jack_unsol_event EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x786fcb96 snd_hda_jack_set_button_state EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x789bf1f4 snd_hda_mixer_amp_volume_get EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79ffdc0f _snd_hda_set_pin_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ec74060 __hda_codec_driver_register EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x805166c9 snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x866fa0d3 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86d37a47 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87abe783 snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bda0c31 snd_hda_get_hint EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e13c33c snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eb23ea9 azx_stop_chip EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9187616f snd_hda_get_conn_index EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93721d5d snd_hda_multi_out_dig_close EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x951b371e snd_hda_multi_out_dig_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x987b4abf snd_hda_codec_eapd_power_filter EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98898b4f snd_hda_codec_update_widgets EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99454b88 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99837366 azx_bus_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99bc7c60 snd_hda_get_pin_label EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a6257eb snd_hda_create_spdif_in_ctls EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9abd431f snd_hda_sync_vmaster_hook @@ -19771,25 +19779,25 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dfcee4c snd_hda_get_conn_list EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e99b9fb snd_hda_set_dev_select EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f8ed739 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fca92f2 azx_probe_codecs EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa19b7955 snd_hda_check_amp_caps EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3cc4e2d snd_hda_load_patch EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa491225a snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5232416 snd_hda_codec_load_dsp_prepare EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa76a44ff snd_hda_get_dev_select EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa84e4a10 snd_hda_multi_out_analog_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8e7560b __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaab96a77 azx_stop_all_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae47d65a snd_hda_find_mixer_ctl EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae4beec9 __snd_hda_codec_cleanup_stream EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae8577ca snd_hda_codec_set_power_to_all EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0fd784b snd_hda_attach_beep_device EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1e2e53d snd_hda_jack_pin_sense EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2d3108b snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb55f139e azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb82f6760 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb46622dc azx_init_streams EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8581f61 snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8f28f70 azx_get_pos_posbuf EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb4cbcef snd_hda_input_mux_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe5d6b21 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc349b80a snd_hda_codec_load_dsp_trigger EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6a2158d snd_hda_mixer_amp_switch_get_beep EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc864a81a snd_hda_codec_device_init EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfe90560 snd_hda_jack_tbl_get_from_tag @@ -19805,6 +19813,8 @@ EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe30af19c snd_hda_mixer_amp_switch_put EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea6422ae snd_hda_codec_device_new EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf10242b1 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1da3c75 azx_get_pos_lpib EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf238f0a7 snd_hda_mixer_amp_tlv EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2e73eca snd_hda_check_amp_list_power EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3e77625 snd_hda_codec_unregister @@ -20178,24 +20188,24 @@ EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xf05240d7 snd_soc_acpi_intel_mtl_sdw_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfa9a5df7 snd_soc_acpi_intel_kbl_machines EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfdc5143c snd_soc_acpi_intel_lnl_machines -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x081d237b sst_dsp_shim_update_bits_forced_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0a4907f0 sst_dsp_outbox_read EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x308dd8ac sst_dsp_shim_update_bits -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x361f72bf sst_dsp_mailbox_init -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x38ecdcfc sst_dsp_shim_update_bits_forced -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3f97a9cb sst_dsp_shim_update_bits_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x47a6ee98 sst_dsp_inbox_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6e2c7b7c sst_dsp_shim_read_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x80abd403 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1f59a05c sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2f375ba7 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x71c594fa sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x75218a04 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8470afb3 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8755039d sst_dsp_shim_update_bits EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x89956491 sst_dsp_shim_read -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa063441b sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9e6190bd sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xac381219 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb7a33874 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbccf9e30 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbf53dd73 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd6baa20a sst_dsp_outbox_read EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd72a34c2 sst_shim32_read64 -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd7f35ada sst_dsp_shim_write_unlocked -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe1824d50 sst_dsp_shim_write -EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe3474298 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe82ac7e4 sst_dsp_shim_read_unlocked EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe9c6de99 sst_shim32_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf4fb1e10 sst_dsp_shim_update_bits_unlocked EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x3178b956 sst_ipc_tx_message_nowait EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x49bda0bf sst_ipc_tx_message_wait EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x66ec722e sst_ipc_fini @@ -20242,25 +20252,30 @@ EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x48c4d20c snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x006aa562 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x009c92c8 snd_soc_daifmt_parse_clock_provider_raw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00ff20ad snd_soc_dai_digital_mute EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02408d5d snd_soc_dai_compr_set_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02a83e13 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03209fd4 snd_soc_find_dai_with_mutex EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04ba5e2a snd_soc_dapm_new_widgets EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x053e9698 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05b79150 snd_soc_of_put_dai_link_cpus EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x072a25f0 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x085a8e34 snd_soc_set_dmi_name EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x086c9ab6 snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08ac88f3 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a117de8 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8227ce snd_soc_register_card EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cc78995 dpcm_end_walk_at_be EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cc99181 snd_soc_dapm_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dd5283e snd_soc_info_volsw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dee44a6 snd_soc_dapm_force_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0df5ca55 snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e22df17 snd_soc_of_parse_pin_switches EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fa3e062 dapm_kcontrol_get_value EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1029430e snd_soc_component_compr_set_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10744e47 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12ff6b3f snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10db6c45 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11adccd5 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12330673 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13467f40 null_dailink_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1582b861 snd_soc_dai_action EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15fe3f3e snd_soc_component_set_sysclk EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1656f1d4 snd_soc_dpcm_get_substream @@ -20271,78 +20286,75 @@ EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d0c32c7 snd_soc_dai_link_set_capabilities EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e385698 snd_dmaengine_pcm_register EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e947613 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x224acd7c snd_soc_of_put_dai_link_cpus EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23abd9ed snd_soc_component_compr_free EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2430bd6f snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x245d29a8 snd_soc_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 0x25c6afe0 snd_soc_jack_report EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x272b3964 snd_soc_component_init_regmap EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27e9477e snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2896e69b snd_soc_of_get_dlc EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29a85bab snd_soc_component_set_pll EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a5e4a30 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b3c9e83 snd_soc_of_parse_audio_routing EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b8583ac snd_soc_component_compr_get_codec_caps EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d68a731 snd_soc_jack_notifier_register EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dea449b snd_soc_dapm_nc_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2df20644 snd_soc_put_volsw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fd88e26 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30ad6910 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3032076f snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32417d89 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x339984fe snd_soc_add_component_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34039563 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34ae1852 snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35063850 devm_snd_soc_register_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35e1c27c snd_soc_dapm_mixer_update_power EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x361a1673 snd_soc_info_volsw_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36fa9eeb snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3735e09c snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x387326e7 snd_soc_close_delayed_work EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38f20e39 snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a0aecb0 snd_soc_of_put_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a6bfcb9 snd_soc_bytes_info_ext EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b152272 snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b6406c3 snd_soc_of_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b85157f snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cb648f9 snd_soc_of_parse_audio_simple_widgets EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d8b41cb snd_soc_dai_compr_startup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4004aaac snd_soc_bytes_tlv_callback EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x403f274a snd_soc_dai_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4093a7e4 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x413759f0 snd_soc_find_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x416b5e32 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4261ab25 snd_soc_register_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x448c17c9 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x453e823d snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47314ebe snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47a116de snd_soc_link_compr_startup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4817cb26 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48abe7ac snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48f7602c snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49491e17 snd_soc_of_parse_tdm_slot EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x496b938c snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cb69685 snd_soc_get_dai_id EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52aecbf5 snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52d79f50 snd_soc_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53c1aa52 snd_soc_get_pcm_runtime EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54da3773 snd_soc_dpcm_can_be_prepared EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55b13a9d snd_soc_dapm_get_enum_double EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57e6116a devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x591a6423 snd_soc_remove_pcm_runtime EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59dccadc snd_soc_dai_compr_pointer EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a888e4c snd_soc_component_compr_copy EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ab3ab98 widget_in_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b937f7d snd_soc_component_update_bits EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bbfb5dd snd_soc_runtime_action EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e11ecd6 snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e2fd900 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e70b591 snd_soc_debugfs_root EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f0969b2 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fdade58 snd_soc_lookup_component_nolocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6302df76 snd_soc_component_enable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63bfceef snd_soc_dapm_mux_update_power EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63d25d20 snd_soc_dai_set_bclk_ratio EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66285caf snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x664beb32 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68781a03 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6892621b snd_soc_runtime_set_dai_fmt EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68a9e6da snd_soc_bytes_put EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a6a3b3d snd_soc_dapm_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ae59fbe snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bc02c61 snd_soc_component_test_bits EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e1622d2 dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e1deb89 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e2fe995 snd_soc_of_parse_node_prefix EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f06b983 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f89228f snd_soc_get_stream_cpu EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7103bdbe snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x713fd3f1 snd_soc_add_dai_controls EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x721390a0 snd_soc_dai_compr_ack EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x746aead9 soc_ac97_ops EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77b36b37 snd_soc_put_volsw_range @@ -20350,25 +20362,30 @@ EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77c4929f snd_soc_dapm_weak_routes EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78ea9917 snd_soc_get_enum_double EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x794642a2 snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79d13756 snd_soc_register_card EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a28b7fb snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a4bfc00 snd_soc_of_put_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a885e85 dapm_mark_endpoints_dirty EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e1535e0 dapm_regulator_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80f309d1 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x811d5822 snd_soc_debugfs_root EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x825af432 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8269bb1e snd_soc_resume EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82cee1ec snd_soc_dai_set_tdm_slot EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8343710f snd_soc_jack_add_gpiods EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8462fb58 snd_soc_dapm_get_pin_status EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x857d79e4 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85f24cea snd_soc_get_dlc EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x866c36b2 snd_dmaengine_pcm_unregister EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86f68bfa snd_soc_dai_compr_get_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x878b35ee snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8939a7e7 snd_soc_lookup_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89a3e7a0 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8be64143 snd_soc_close_delayed_work EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cbef98e snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d11e999 snd_soc_register_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e567abc snd_soc_component_get_jack_type EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ec96322 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f1d56b6 snd_soc_of_parse_pin_switches EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ff1b734 snd_soc_dapm_new_control EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90119a78 snd_soc_card_add_dai_link EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x902248d0 snd_soc_dapm_force_enable_pin @@ -20376,72 +20393,67 @@ EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91f8896c snd_soc_tplg_widget_bind_event EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x927162b1 snd_soc_component_notify_control EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94660ce7 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96c05db2 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9810a574 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96f1a4c2 snd_soc_of_parse_card_name EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x997539e3 snd_soc_jack_notifier_unregister EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a552e32 snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ac5c1be snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c2be3e0 snd_soc_register_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c2d2c3b snd_soc_dapm_del_routes EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cb31c69 snd_soc_dapm_dai_get_connected_widgets EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d54e788 devm_snd_soc_register_card EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d9648f9 snd_soc_bytes_info EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e8feac5 snd_soc_component_compr_ack EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9febc8d6 asoc_dummy_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa07e8bc5 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa29de94c snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2a1f3b8 snd_soc_rtdcom_lookup EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa35cabbd snd_soc_dapm_info_pin_switch EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4d9818d snd_soc_dai_compr_set_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa529caff snd_soc_dai_set_pll EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa57fec4c snd_soc_free_ac97_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6ae0c37 snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7132bce snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7170987 snd_soc_of_get_dai_link_cpus EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8b9133c snd_soc_dapm_sync_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa958e5fa snd_soc_dpcm_fe_can_update EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa14ec05 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa9c4ac1 snd_soc_component_initialize EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa9c9c66 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaad1c310 snd_soc_of_parse_tdm_slot EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xace8ef9c snd_soc_component_set_jack EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacf65a1f snd_soc_card_get_kcontrol EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb19b64c3 snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1eddcdf snd_soc_of_get_slot_mask EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb20d1a18 snd_soc_component_force_enable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb242e22b snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb282467d snd_soc_component_initialize EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2a3c395 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3620881 snd_soc_find_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb46574cb snd_soc_dai_set_fmt EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5cae48d snd_soc_component_compr_set_metadata EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb69f892d snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7d0a9e8 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6b5e221 snd_soc_cnew EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb981c220 snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd31cbd8 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb1663a7 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcdfc886 snd_soc_daifmt_parse_format EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe1879a0 snd_soc_bytes_get EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0152c2f snd_soc_info_volsw_range EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc35b3d37 snd_soc_of_parse_aux_devs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4886b83 snd_soc_dapm_stream_stop EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc48bbaec snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc645a031 snd_soc_of_parse_audio_simple_widgets EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb7ab5ec snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc95fe7c1 snd_soc_register_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbd6a3f6 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccfdf6a6 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcded6e10 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf5bbdac snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccaa5bbc snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf1c5167 snd_soc_unregister_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfdc2223 snd_soc_put_volsw_sx EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd037fa91 snd_soc_dapm_disable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0daeb2e snd_soc_dai_set_clkdiv EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd12d55a7 snd_soc_dapm_put_volsw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd162dc65 snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2bfaacd snd_soc_unregister_component_by_driver EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd386e664 snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3e78aca snd_soc_get_stream_cpu EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e2f93d snd_soc_dapm_update_dai EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5ed010f snd_soc_dai_compr_trigger EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd82d53a9 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8ab675a snd_soc_unregister_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd286417 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddee32fb snd_soc_suspend EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf6acae4 snd_soc_set_ac97_ops EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe154653b snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1d7869c snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe211ece8 snd_soc_pm_ops EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2869e9d snd_soc_component_disable_pin EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d0ea57 snd_soc_dai_compr_shutdown EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe30ad452 snd_soc_jack_add_pins @@ -20450,14 +20462,12 @@ EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe576ed07 snd_soc_component_compr_get_caps EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe82b0834 snd_soc_component_compr_get_params EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8f5e947 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe97e59d9 snd_soc_pm_ops EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9a6db58 snd_soc_component_async_complete -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb13d669 snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebb3fd14 snd_soc_dai_get_channel_map EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee25a9e5 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeebb3750 snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefd1e89f snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef64843c snd_soc_of_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefe4b467 snd_soc_poweroff EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf298d175 snd_soc_tplg_component_remove EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3e51bfd snd_soc_component_force_enable_pin_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf508df84 snd_soc_get_volsw_range @@ -20498,24 +20508,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x00025e68 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x00115e10 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable -EXPORT_SYMBOL_GPL vmlinux 0x0024e0f4 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x0027b8d4 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices EXPORT_SYMBOL_GPL vmlinux 0x0046f339 device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005bd46f alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x005d6735 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x006cf7f5 hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x007927c4 rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0x007fb36d pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc EXPORT_SYMBOL_GPL vmlinux 0x00861af2 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x00ae49c3 hid_bpf_disconnect_device EXPORT_SYMBOL_GPL vmlinux 0x00b7dcce fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x00d26f49 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval EXPORT_SYMBOL_GPL vmlinux 0x00df0eb1 phy_calibrate EXPORT_SYMBOL_GPL vmlinux 0x00f3b907 debugfs_create_str EXPORT_SYMBOL_GPL vmlinux 0x00fd6408 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x01198384 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x012e7f37 ata_host_init EXPORT_SYMBOL_GPL vmlinux 0x0131443f __auxiliary_driver_register EXPORT_SYMBOL_GPL vmlinux 0x0151e412 dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x01567830 regulator_map_voltage_linear @@ -20523,14 +20536,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x016b42cf dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x016eb8a7 devm_irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x017922ce pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x01797721 gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0199aa46 regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free EXPORT_SYMBOL_GPL vmlinux 0x01a20dfe spi_delay_to_ns EXPORT_SYMBOL_GPL vmlinux 0x01b8ad58 clk_gate_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x01be695d vring_create_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x01bf7bdc sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap EXPORT_SYMBOL_GPL vmlinux 0x01c849ad hid_bpf_device_init EXPORT_SYMBOL_GPL vmlinux 0x01d958eb power_supply_put_battery_info @@ -20544,34 +20556,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x0204d57d irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire EXPORT_SYMBOL_GPL vmlinux 0x0207ebce i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x021e0cec __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x022259e3 acpi_is_pnp_device EXPORT_SYMBOL_GPL vmlinux 0x0237b541 ata_sff_queue_pio_task EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise -EXPORT_SYMBOL_GPL vmlinux 0x023fc16a check_move_unevictable_folios EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x025e513a spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x02528244 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x02603c3e rio_mport_send_doorbell EXPORT_SYMBOL_GPL vmlinux 0x02666a51 usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0x027dc8a8 syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x0298e1de sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0x0299c1c6 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02b2aabe i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x02b44ece fwnode_get_phy_node EXPORT_SYMBOL_GPL vmlinux 0x02c4f81e crypto_dequeue_request EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table EXPORT_SYMBOL_GPL vmlinux 0x02c969f5 param_ops_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x02e3df94 udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x02e67fc6 __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x030065d1 irq_domain_add_legacy EXPORT_SYMBOL_GPL vmlinux 0x03026509 fat_get_dotdot_entry EXPORT_SYMBOL_GPL vmlinux 0x03042ff6 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x03050a3b regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x030f65e9 init_user_ns EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x032d81b9 regulator_disable EXPORT_SYMBOL_GPL vmlinux 0x03316710 devm_platform_get_irqs_affinity EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk -EXPORT_SYMBOL_GPL vmlinux 0x033912e9 __SCK__tp_func_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x033c9d7a unregister_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list EXPORT_SYMBOL_GPL vmlinux 0x03473809 pcie_bus_configure_settings @@ -20582,18 +20593,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x0372fb2c ftrace_set_notrace EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear EXPORT_SYMBOL_GPL vmlinux 0x037d992f __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0x0385f5e5 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x03902093 ata_sff_check_status EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe EXPORT_SYMBOL_GPL vmlinux 0x039ed7a5 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x03a7dda5 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03c64cd2 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d0727c __SCK__tp_func_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x03d924c2 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x03df5e63 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x03fe4345 pci_status_get_and_clear_errors EXPORT_SYMBOL_GPL vmlinux 0x03fe4f70 bio_trim EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc EXPORT_SYMBOL_GPL vmlinux 0x0404222c usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0405dfb4 __tracepoint_xhci_dbg_init EXPORT_SYMBOL_GPL vmlinux 0x040c214f __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x042280bc tcp_set_state EXPORT_SYMBOL_GPL vmlinux 0x042dc542 pinctrl_select_state @@ -20604,18 +20618,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x0446fd4a irq_get_domain_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x0457a466 regmap_irq_get_domain EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046ff7cc __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x04767311 regmap_raw_read EXPORT_SYMBOL_GPL vmlinux 0x0478d566 percpu_down_write EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk EXPORT_SYMBOL_GPL vmlinux 0x0492cd0f pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x049306bb __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0499e0c7 unmap_mapping_pages EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x04a5d12b shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x04ab6202 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x04ad7cff thermal_zone_get_temp EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c77a5e __SCK__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose EXPORT_SYMBOL_GPL vmlinux 0x04cd2078 devm_usb_get_phy_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04f2f771 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x050543ac __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch EXPORT_SYMBOL_GPL vmlinux 0x0528770f devm_pm_clk_create @@ -20624,6 +20644,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x054b9900 switchdev_handle_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt EXPORT_SYMBOL_GPL vmlinux 0x0557bedb pwm_lpss_bxt_info +EXPORT_SYMBOL_GPL vmlinux 0x0576ff5a nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0x05785cb4 mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x05788d69 genphy_c45_check_and_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0x0583bc0b irq_domain_associate @@ -20631,6 +20652,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources EXPORT_SYMBOL_GPL vmlinux 0x05ac0559 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x05adcb2a __tracepoint_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x05afc9f8 dev_pm_opp_disable EXPORT_SYMBOL_GPL vmlinux 0x05b2d18c virtqueue_detach_unused_buf EXPORT_SYMBOL_GPL vmlinux 0x05b6b255 extcon_set_property @@ -20640,21 +20662,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit EXPORT_SYMBOL_GPL vmlinux 0x05e37af7 pinctrl_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x05e8d054 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x05fc33df __synth_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x05fccf82 tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x0601e896 fb_deferred_io_open -EXPORT_SYMBOL_GPL vmlinux 0x060c5e83 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x0614b256 regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0x061e2126 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x06318e8d gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x063dc274 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x064121d8 __SCK__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0x064191ee kiocb_modified EXPORT_SYMBOL_GPL vmlinux 0x064ab20f __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x064b59a6 __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry EXPORT_SYMBOL_GPL vmlinux 0x064e6c46 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x066d7a96 msi_domain_get_virq @@ -20664,18 +20682,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x06aecfd1 cros_ec_check_features EXPORT_SYMBOL_GPL vmlinux 0x06cbd6ad ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06e11a18 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x06df02c1 __cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x06f40090 dev_pm_opp_put_opp_table EXPORT_SYMBOL_GPL vmlinux 0x06fa8ecd crypto_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x06fb9e42 dev_fill_forward_path EXPORT_SYMBOL_GPL vmlinux 0x0702f1dc devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x070517ea bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x071aeb42 usb_hcd_check_unlink_urb EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0x073867b3 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x073d13bf dw_pcie_host_deinit EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074e98c5 __SCK__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field EXPORT_SYMBOL_GPL vmlinux 0x0755abc1 __srcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off @@ -20683,8 +20700,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy EXPORT_SYMBOL_GPL vmlinux 0x076c8523 scsi_host_unblock EXPORT_SYMBOL_GPL vmlinux 0x0779c0fd devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x077a1c5e icc_get_name -EXPORT_SYMBOL_GPL vmlinux 0x07a91cde follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x0782ff8f __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x079bf131 devlink_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister EXPORT_SYMBOL_GPL vmlinux 0x07b64d81 hyperv_stop_tsc_emulation @@ -20695,19 +20712,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x07ec220e backing_file_real_path EXPORT_SYMBOL_GPL vmlinux 0x07fed016 ipv6_opt_accepted EXPORT_SYMBOL_GPL vmlinux 0x080925dd __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0x0811a107 __tracepoint_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache EXPORT_SYMBOL_GPL vmlinux 0x08284d4b fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0x0831ed20 sysfs_create_files EXPORT_SYMBOL_GPL vmlinux 0x08364ee2 nf_queue_entry_free -EXPORT_SYMBOL_GPL vmlinux 0x084b76ce regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x08481c6a access_process_vm EXPORT_SYMBOL_GPL vmlinux 0x085d510e __xenbus_register_backend EXPORT_SYMBOL_GPL vmlinux 0x086facc1 ohci_restart EXPORT_SYMBOL_GPL vmlinux 0x0872a191 iommu_unregister_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x0874a1c7 regcache_cache_bypass EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08831619 __tracepoint_xhci_dbg_init EXPORT_SYMBOL_GPL vmlinux 0x0887ba56 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x0894205c netlink_strict_get_check EXPORT_SYMBOL_GPL vmlinux 0x089f1519 crypto_register_rng EXPORT_SYMBOL_GPL vmlinux 0x08a32d46 clk_divider_ops EXPORT_SYMBOL_GPL vmlinux 0x08acaa77 devm_device_add_groups @@ -20730,14 +20746,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x093ac6c0 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0x094875bd sch_frag_xmit_hook EXPORT_SYMBOL_GPL vmlinux 0x094981da component_add_typed -EXPORT_SYMBOL_GPL vmlinux 0x096a177f __traceiter_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base EXPORT_SYMBOL_GPL vmlinux 0x096a9805 kstrdup_quotable_cmdline EXPORT_SYMBOL_GPL vmlinux 0x096bfa61 blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x09711ed6 __SCK__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page EXPORT_SYMBOL_GPL vmlinux 0x097c023e dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0983c98f __blk_trace_note_message EXPORT_SYMBOL_GPL vmlinux 0x09849edb irq_domain_free_fwnode EXPORT_SYMBOL_GPL vmlinux 0x0989fc62 pci_disable_sriov EXPORT_SYMBOL_GPL vmlinux 0x099a6db3 devm_extcon_dev_allocate @@ -20748,13 +20761,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x09ba7670 ping_rcv EXPORT_SYMBOL_GPL vmlinux 0x09d0e544 serdev_device_set_parity EXPORT_SYMBOL_GPL vmlinux 0x09e6923f ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x09ed08a2 thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0x09e8d6af of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x09f0e961 mmc_sanitize EXPORT_SYMBOL_GPL vmlinux 0x09f26be7 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x09f46309 pkcs7_validate_trust EXPORT_SYMBOL_GPL vmlinux 0x09fbbd18 bio_clone_blkg_association EXPORT_SYMBOL_GPL vmlinux 0x09fe14a6 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x0a119f9d wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x0a135d34 fscrypt_ioctl_get_nonce EXPORT_SYMBOL_GPL vmlinux 0x0a1d5745 vp_legacy_set_status EXPORT_SYMBOL_GPL vmlinux 0x0a3078c4 fuse_dev_alloc_install @@ -20764,62 +20776,59 @@ EXPORT_SYMBOL_GPL vmlinux 0x0a4e6e0a nf_hooks_lwtunnel_sysctl_handler EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a67248d ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x0a86344f __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x0a8894f4 mas_find_range_rev EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done EXPORT_SYMBOL_GPL vmlinux 0x0a920390 usb_reset_configuration EXPORT_SYMBOL_GPL vmlinux 0x0a9a41ce ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x0aa706dc crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0x0aabfef9 spi_split_transfers_maxsize EXPORT_SYMBOL_GPL vmlinux 0x0aba7ffc rio_map_inb_region EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has EXPORT_SYMBOL_GPL vmlinux 0x0ac60ff1 device_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address EXPORT_SYMBOL_GPL vmlinux 0x0ad906f6 pci_epf_add_vepf EXPORT_SYMBOL_GPL vmlinux 0x0adcc820 crypto_unregister_kpp -EXPORT_SYMBOL_GPL vmlinux 0x0af357e1 i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct EXPORT_SYMBOL_GPL vmlinux 0x0b0ffcb6 user_destroy EXPORT_SYMBOL_GPL vmlinux 0x0b1c26f0 regulator_get_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b3365d1 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x0b3b163f regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b60d821 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status EXPORT_SYMBOL_GPL vmlinux 0x0b73dc1f acpi_dev_state_d0 -EXPORT_SYMBOL_GPL vmlinux 0x0b7943ad spi_async +EXPORT_SYMBOL_GPL vmlinux 0x0b7ed0c4 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0b976c45 __SCK__tp_func_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x0b99219d dma_mmap_pages EXPORT_SYMBOL_GPL vmlinux 0x0bbc6a4a pm_generic_restore_noirq EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbdda3a perf_report_aux_output_id EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports -EXPORT_SYMBOL_GPL vmlinux 0x0bd3f62e cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x0bd8d20a regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x0bda6b70 tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0x0be3584b vcap_find_admin EXPORT_SYMBOL_GPL vmlinux 0x0be42f3f pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0x0be75d8d pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0c05f88c __tracepoint_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x0c0d30a9 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x0c13ed37 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x0c2661f5 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x0c35879a led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x0c3d169f pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x0c3ffc66 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c43271d mdiobus_c45_modify EXPORT_SYMBOL_GPL vmlinux 0x0c45985e pci_p2pdma_enable_store EXPORT_SYMBOL_GPL vmlinux 0x0c560b80 dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0x0c67979b fuse_sync_release EXPORT_SYMBOL_GPL vmlinux 0x0c6e11a4 iommu_page_response EXPORT_SYMBOL_GPL vmlinux 0x0c728a19 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x0c7ae1c1 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range EXPORT_SYMBOL_GPL vmlinux 0x0c82d832 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0c830caf register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x0c84fbb8 lwtunnel_encap_del_ops EXPORT_SYMBOL_GPL vmlinux 0x0c861936 pci_p2pdma_distance_many EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string EXPORT_SYMBOL_GPL vmlinux 0x0c984a32 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0ca95a1a register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x0cab439a pci_epc_add_epf EXPORT_SYMBOL_GPL vmlinux 0x0cbd39cb max8997_write_reg EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister @@ -20828,8 +20837,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x0ce2c94f pci_epc_bme_notify EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list EXPORT_SYMBOL_GPL vmlinux 0x0d09285a clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x0d147e49 ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x0d23e6bd get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x0d26d582 __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x0d270eac __fscrypt_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x0d358e21 umd_load_blob EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports @@ -20842,11 +20851,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x0d666bc1 device_destroy EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc EXPORT_SYMBOL_GPL vmlinux 0x0d6dea5c dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x0d94bedc devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d7d99f2 regulator_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x0d97c221 dma_opt_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x0d9b4ba5 thermal_remove_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0x0da095c5 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x0db8be87 __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x0dd93569 mptcp_diag_fill_info EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order @@ -20859,34 +20867,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x0e1c5743 serdev_device_break_ctl EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x0e224235 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x0e3dd026 regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x0e42e231 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x0e53ca24 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e71ef5d __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x0e6e9379 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x0e7cbcec spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x0e96cfd8 of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x0e96d3b6 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x0e9fdded synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x0ea059cd crypto_register_kpp EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eacbc50 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0eac7ec5 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0x0eb162b7 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x0eb28719 mdiobus_c45_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x0ebd02bd pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter EXPORT_SYMBOL_GPL vmlinux 0x0ec51428 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0x0ec5972b regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0x0ecdadc8 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x0ecf8f0f irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id EXPORT_SYMBOL_GPL vmlinux 0x0ed41b84 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x0ed42913 sched_show_task EXPORT_SYMBOL_GPL vmlinux 0x0ed63de9 sata_scr_valid EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted EXPORT_SYMBOL_GPL vmlinux 0x0ef7e152 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x0efd190c __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page EXPORT_SYMBOL_GPL vmlinux 0x0f1a0515 devm_extcon_dev_register EXPORT_SYMBOL_GPL vmlinux 0x0f20a869 devm_hwrng_register EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain -EXPORT_SYMBOL_GPL vmlinux 0x0f34f301 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x0f422012 devres_remove EXPORT_SYMBOL_GPL vmlinux 0x0f512744 tpm_pm_resume EXPORT_SYMBOL_GPL vmlinux 0x0f5a5047 edac_get_sysfs_subsys @@ -20894,9 +20904,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name EXPORT_SYMBOL_GPL vmlinux 0x0f801382 xfrm_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x0f866184 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x0f8f10f1 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x0f9a80e4 hsu_dma_remove EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype EXPORT_SYMBOL_GPL vmlinux 0x0fad5088 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x0fad9868 ata_cable_ignore EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read @@ -20904,7 +20916,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x0fd13848 platform_get_irq_byname EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj EXPORT_SYMBOL_GPL vmlinux 0x0fe2f064 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x0ffbb41f register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0fed5b52 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af87 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x1011ab92 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on @@ -20912,11 +20925,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names EXPORT_SYMBOL_GPL vmlinux 0x10455bc7 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x1050eb9d device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x105127c3 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x1063b505 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1073b35a dax_writeback_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x107f801e phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1089326a ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x10a2dde3 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0x10a68502 devm_gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash EXPORT_SYMBOL_GPL vmlinux 0x10bc1626 tcp_twsk_destructor @@ -20925,83 +20939,94 @@ EXPORT_SYMBOL_GPL vmlinux 0x10cbc8d5 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0x10d7be3c virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10dc3f9e tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x10dcf395 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x10dd5fe7 rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb EXPORT_SYMBOL_GPL vmlinux 0x10e02caf rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x10ec2423 dpm_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable EXPORT_SYMBOL_GPL vmlinux 0x10f0effb blk_mq_sched_mark_restart_hctx EXPORT_SYMBOL_GPL vmlinux 0x10fe3820 serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer EXPORT_SYMBOL_GPL vmlinux 0x110147f5 dma_request_chan EXPORT_SYMBOL_GPL vmlinux 0x1101f0be find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1106cd34 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x111c4257 usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0x11273afc shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x11336ac9 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x113b7df9 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x1134ae5e task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x11485c2f icc_node_del EXPORT_SYMBOL_GPL vmlinux 0x11564993 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x116490c9 nvdimm_region_delete EXPORT_SYMBOL_GPL vmlinux 0x11655275 input_ff_erase EXPORT_SYMBOL_GPL vmlinux 0x116c01db badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x11835adc gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0x11971c7f securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x11973560 devm_usb_get_phy_by_node EXPORT_SYMBOL_GPL vmlinux 0x119d02c4 virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0x119dd5e4 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x11a50e3a modify_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x11b1fe60 device_change_owner EXPORT_SYMBOL_GPL vmlinux 0x11bac933 devm_regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x11bc358a phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x11cba8c3 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x11d302ad genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x11d4513e __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x11daa92d vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0x11dccf40 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex EXPORT_SYMBOL_GPL vmlinux 0x11f3f0c7 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x11fe5b37 __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x12032428 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12044a5c tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1225209d vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0x122f3f91 vp_modern_set_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header EXPORT_SYMBOL_GPL vmlinux 0x123646b0 xdp_set_features_flag EXPORT_SYMBOL_GPL vmlinux 0x12376fdf __static_call_update -EXPORT_SYMBOL_GPL vmlinux 0x123774a4 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x123b3713 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x1261425b thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x126fedec register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1276d887 gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x128a7397 clkdev_hw_create EXPORT_SYMBOL_GPL vmlinux 0x129983de inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x129e8b44 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x129fd643 devm_regulator_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x12a4d959 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x12a1ee3f rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x12a69ac4 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x12bb556e clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0x12bef1c0 crypto_unregister_rng EXPORT_SYMBOL_GPL vmlinux 0x12db3a8b kvm_clock EXPORT_SYMBOL_GPL vmlinux 0x12e285ec is_uv_system -EXPORT_SYMBOL_GPL vmlinux 0x12e7159c i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f87602 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x12f23752 regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0x1306dd13 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x130c3404 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x1319ac86 vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x132a46a2 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x131e9eea __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x13288e6a trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x132b4cca mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x13381295 dw_pcie_wait_for_link EXPORT_SYMBOL_GPL vmlinux 0x13381eba unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x1343dd82 smp_ops EXPORT_SYMBOL_GPL vmlinux 0x134c3b9f serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x13578521 pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x135ee5ef ip6_datagram_recv_ctl EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x137d0c1e relay_close +EXPORT_SYMBOL_GPL vmlinux 0x13803d14 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1392a0c1 thermal_zone_device_id EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy EXPORT_SYMBOL_GPL vmlinux 0x13a990c8 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x13b32c60 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0x13b9e193 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x13bacb32 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0x13d80336 sata_sff_hardreset EXPORT_SYMBOL_GPL vmlinux 0x13e04b7d dw_pcie_find_capability @@ -21012,10 +21037,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x143884c1 usb_hcd_unmap_urb_setup_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x143c0cf9 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x14484204 sock_diag_register EXPORT_SYMBOL_GPL vmlinux 0x144fc2a0 fscrypt_prepare_new_inode EXPORT_SYMBOL_GPL vmlinux 0x1459b19a acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x1461a64b regulator_get_linear_step EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x1468c2a5 pci_common_swizzle EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key @@ -21023,15 +21048,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x148c61f1 crypto_unregister_aeads EXPORT_SYMBOL_GPL vmlinux 0x148eb7ce dev_pm_opp_remove EXPORT_SYMBOL_GPL vmlinux 0x14a30fe6 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x14af5198 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x14bbf864 blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x14c46758 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x14c60a5a bpf_prog_destroy EXPORT_SYMBOL_GPL vmlinux 0x14c6bbf6 pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0x14c9f83d pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x14d3547f __tracepoint_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x14d6726b sysfs_break_active_protection EXPORT_SYMBOL_GPL vmlinux 0x14dd9f1d unregister_ftrace_function EXPORT_SYMBOL_GPL vmlinux 0x14e8e7c1 led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x14eba8bf unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put EXPORT_SYMBOL_GPL vmlinux 0x14f71538 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node @@ -21040,49 +21065,50 @@ EXPORT_SYMBOL_GPL vmlinux 0x152f0522 skcipher_register_instance EXPORT_SYMBOL_GPL vmlinux 0x15340f2a sdio_writesb EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x1542690e __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x1549703d kernfs_get EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put EXPORT_SYMBOL_GPL vmlinux 0x155f1ece vcap_tc_flower_handler_portnum_usage EXPORT_SYMBOL_GPL vmlinux 0x15654ce9 pm_clk_runtime_suspend EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x157eb7be ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x159cdd77 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x159ee9b6 xdp_rxq_info_reg_mem_model EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15b1b040 pci_bus_add_device EXPORT_SYMBOL_GPL vmlinux 0x15b3135d ipv6_find_tlv EXPORT_SYMBOL_GPL vmlinux 0x15b518d4 da903x_read EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave -EXPORT_SYMBOL_GPL vmlinux 0x15c33d34 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15bf6fc5 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x15e26109 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0x15e6f667 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x15e7140b __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask -EXPORT_SYMBOL_GPL vmlinux 0x15f70cad clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x15f78f44 msg_zerocopy_realloc EXPORT_SYMBOL_GPL vmlinux 0x15fa9a8b rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x15fb07a2 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x15fb3df0 irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x1600ef43 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x16025033 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x16018b4a __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x1610f0dd ata_scsi_unlock_native_capacity EXPORT_SYMBOL_GPL vmlinux 0x16141bee fwnode_graph_get_remote_port_parent EXPORT_SYMBOL_GPL vmlinux 0x16184bbb fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0x1633f220 fat_update_time EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x164d7b14 __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed EXPORT_SYMBOL_GPL vmlinux 0x1652fbbc dm_internal_suspend_fast EXPORT_SYMBOL_GPL vmlinux 0x166482a8 hid_bpf_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x16664fd3 sched_numa_find_nth_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1666beeb regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0x1667684d sock_inuse_get EXPORT_SYMBOL_GPL vmlinux 0x166b7362 dst_cache_set_ip6 EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event EXPORT_SYMBOL_GPL vmlinux 0x167605c5 sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x168055b2 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0x1681c9b7 pci_epc_mem_exit EXPORT_SYMBOL_GPL vmlinux 0x1684ae53 fib4_rule_default EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169b453f regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0x169fc244 sk_msg_alloc EXPORT_SYMBOL_GPL vmlinux 0x16a67497 irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0x16bf12f8 register_fprobe_ips @@ -21100,7 +21126,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc EXPORT_SYMBOL_GPL vmlinux 0x17504c60 usb_remove_hcd -EXPORT_SYMBOL_GPL vmlinux 0x1752e747 vmf_insert_pfn_pmd EXPORT_SYMBOL_GPL vmlinux 0x175427e6 rt288x_setup EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub @@ -21111,10 +21136,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x1776ec49 irq_chip_set_wake_parent EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version EXPORT_SYMBOL_GPL vmlinux 0x177c6097 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x1781d8b3 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x17893be2 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x17939249 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x17c1faf0 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x17c8be68 put_pid EXPORT_SYMBOL_GPL vmlinux 0x17c92b11 ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0x17ca4ec7 __platform_register_drivers EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear @@ -21123,18 +21148,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x182c2574 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x182c4bc7 devm_clk_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x182ff092 spi_transfer_cs_change_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x1833f39b ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x18363eea debugfs_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x18403edc hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x184ad2dc ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x1856651d skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x187075f4 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x187261da rdev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x18793027 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x187a069d get_pid_task EXPORT_SYMBOL_GPL vmlinux 0x187b5f2a wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x187c8185 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x188dc856 iptunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x18903de8 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x1891352b dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x189a5dcc ipv4_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x18a9aba9 fsnotify EXPORT_SYMBOL_GPL vmlinux 0x18b1a2b3 lp8788_read_multi_bytes @@ -21143,108 +21170,98 @@ EXPORT_SYMBOL_GPL vmlinux 0x18c0dc56 fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0x18e1fb75 dev_pm_opp_set_rate EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x18f10387 ip6_route_lookup EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fb978c clk_hw_get_rate EXPORT_SYMBOL_GPL vmlinux 0x1902f33f blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x19143412 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x1917825c devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x191f8ec9 pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x193249aa ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0x193282ae acpi_dev_resource_ext_address_space EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state EXPORT_SYMBOL_GPL vmlinux 0x193f479d iommu_sva_bind_device -EXPORT_SYMBOL_GPL vmlinux 0x1945cbb5 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x1946d1f4 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1945550d device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x1949462c tpm1_do_selftest EXPORT_SYMBOL_GPL vmlinux 0x1959ea58 __devm_regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0x1962dc2d devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x196bae42 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x19790c26 irq_chip_release_resources_parent EXPORT_SYMBOL_GPL vmlinux 0x19882643 scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x1993073c ima_file_hash EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19bb5fa6 fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x19dfc0e8 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x1a08314a icc_disable EXPORT_SYMBOL_GPL vmlinux 0x1a0949a1 wm8350_reg_lock EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string EXPORT_SYMBOL_GPL vmlinux 0x1a2c0aef xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x1a3e7fcf shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x1a44468d iommu_present EXPORT_SYMBOL_GPL vmlinux 0x1a45e019 md_allow_write EXPORT_SYMBOL_GPL vmlinux 0x1a466460 devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x1a4ae57c nvmem_cell_read_u8 EXPORT_SYMBOL_GPL vmlinux 0x1a4b4ef5 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x1a57efd1 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x1a5de819 devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0x1a5e0ae4 virtqueue_get_buf_ctx -EXPORT_SYMBOL_GPL vmlinux 0x1a67fb0e ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a71ec0e nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x1a7d40e5 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x1a7fc948 ftrace_free_filter EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc EXPORT_SYMBOL_GPL vmlinux 0x1a891e74 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1a91ebbe i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x1a955675 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0x1abb41f5 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0x1ac02def crypto_type_has_alg EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x1adac090 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x1aed4c5c __SCK__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af48a17 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x1afaa2fd proc_dou8vec_minmax EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b084050 gpiod_get_array_value EXPORT_SYMBOL_GPL vmlinux 0x1b11e0ce io_cgrp_subsys EXPORT_SYMBOL_GPL vmlinux 0x1b2dccee extcon_get_state EXPORT_SYMBOL_GPL vmlinux 0x1b3b4b81 sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x1b3fe0dc xen_pci_frontend -EXPORT_SYMBOL_GPL vmlinux 0x1b449837 nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0x1b5c3e11 kthread_flush_worker EXPORT_SYMBOL_GPL vmlinux 0x1b5c5804 dev_pm_genpd_resume EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc EXPORT_SYMBOL_GPL vmlinux 0x1b62ceb0 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1b68ef39 devlink_dpipe_action_put EXPORT_SYMBOL_GPL vmlinux 0x1b6c0961 nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0x1b811fc1 blk_abort_request EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b89363c nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer EXPORT_SYMBOL_GPL vmlinux 0x1b9a805e debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid EXPORT_SYMBOL_GPL vmlinux 0x1ba5db0a crypto_clone_ahash -EXPORT_SYMBOL_GPL vmlinux 0x1baa5e46 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x1bb45193 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x1bbc11bf devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split EXPORT_SYMBOL_GPL vmlinux 0x1bd30dd7 __devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x1bddaf2f device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0x1bdf555f desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x1bf86d87 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1bd5ed9c __tracepoint_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x1c0c18c6 crypto_alloc_kpp EXPORT_SYMBOL_GPL vmlinux 0x1c0de9cc vp_legacy_get_queue_size EXPORT_SYMBOL_GPL vmlinux 0x1c0fb819 pci_epc_stop EXPORT_SYMBOL_GPL vmlinux 0x1c1e9d3c _copy_mc_to_iter EXPORT_SYMBOL_GPL vmlinux 0x1c2b319a crypto_register_acomp EXPORT_SYMBOL_GPL vmlinux 0x1c2d879b __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x1c3abbd7 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5f4551 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x1c77c66f phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x1c7c6358 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x1c7c67ab gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x1c7d973f crypto_remove_spawns EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c819c63 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x1c865dad thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c95886d regulator_put EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward EXPORT_SYMBOL_GPL vmlinux 0x1ca9c77a vfs_remove_acl EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value @@ -21255,28 +21272,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x1cc82bc0 ata_sas_tport_delete EXPORT_SYMBOL_GPL vmlinux 0x1cc9ff9e tty_buffer_set_limit EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral +EXPORT_SYMBOL_GPL vmlinux 0x1cea75e3 regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node EXPORT_SYMBOL_GPL vmlinux 0x1d0452cf of_phy_provider_unregister EXPORT_SYMBOL_GPL vmlinux 0x1d14afe6 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x1d167eab device_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x1d18d473 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d191171 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x1d1d8daa ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state EXPORT_SYMBOL_GPL vmlinux 0x1d2e6ffb sdio_readsb EXPORT_SYMBOL_GPL vmlinux 0x1d2f4d2f debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x1d3a5187 led_init_core EXPORT_SYMBOL_GPL vmlinux 0x1d6a7749 iommu_map -EXPORT_SYMBOL_GPL vmlinux 0x1d734a04 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x1d7604de crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x1d839178 regulator_count_voltages EXPORT_SYMBOL_GPL vmlinux 0x1d91d3ce of_hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1d99238b mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x1da1604e pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x1da5653c vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x1db22acc regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x1dc677bd hwmon_notify_event -EXPORT_SYMBOL_GPL vmlinux 0x1dd01518 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x1db5cb5a rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x1dcc1f1e thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1dd3185a to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0x1dd7427a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x1ddd4b4c bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x1df3eb51 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm EXPORT_SYMBOL_GPL vmlinux 0x1e028fe5 crypto_shash_finup EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release @@ -21291,31 +21310,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x1e54d762 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id EXPORT_SYMBOL_GPL vmlinux 0x1e5b9985 xenbus_frontend_closed -EXPORT_SYMBOL_GPL vmlinux 0x1e77bb8d bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart EXPORT_SYMBOL_GPL vmlinux 0x1e8f6195 disk_set_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize -EXPORT_SYMBOL_GPL vmlinux 0x1e99cc1b swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1ea33320 regulator_disable_deferred -EXPORT_SYMBOL_GPL vmlinux 0x1ead9d56 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x1eacd5cc __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x1eb49882 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x1eb526dd eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebb2fae regmap_might_sleep EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec6d1cd ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x1ec8b079 __SCK__tp_func_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0x1ecd49d8 ptdump_walk_pgd_level_debugfs EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr +EXPORT_SYMBOL_GPL vmlinux 0x1eee9385 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked EXPORT_SYMBOL_GPL vmlinux 0x1ef96a31 hvc_poll EXPORT_SYMBOL_GPL vmlinux 0x1f1798ed devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1f1a191c vfs_setlease EXPORT_SYMBOL_GPL vmlinux 0x1f2b1a3f public_key_subtype EXPORT_SYMBOL_GPL vmlinux 0x1f355ad6 component_add EXPORT_SYMBOL_GPL vmlinux 0x1f35abfa __devm_intel_scu_ipc_register EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3c50bc tracing_snapshot_cond EXPORT_SYMBOL_GPL vmlinux 0x1f3e14b1 debugfs_attr_write EXPORT_SYMBOL_GPL vmlinux 0x1f422149 irq_domain_create_simple EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms @@ -21324,36 +21343,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x1f6256d6 inet_twsk_hashdance EXPORT_SYMBOL_GPL vmlinux 0x1f63ee60 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x1f656b57 dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0x1f6ab17a devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x1f6cd584 efivar_reserved_space EXPORT_SYMBOL_GPL vmlinux 0x1f76e586 aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x1f800aa9 blk_queue_max_zone_append_sectors EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout EXPORT_SYMBOL_GPL vmlinux 0x1f86d3fe rio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x1f89fc71 of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x1f994cb6 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x1f8f4c2d nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x1fa0fbe3 ohci_hub_status_data EXPORT_SYMBOL_GPL vmlinux 0x1fa120fd xdp_features_clear_redirect_target EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fa29a6e hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x1fa48995 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1faa132b devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x1fafdd92 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1fcf3362 hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x1fe447e2 ata_sff_error_handler EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs EXPORT_SYMBOL_GPL vmlinux 0x1fe8e5a6 nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x1ff50228 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0x20005200 hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x2002a188 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x20270ec1 gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x202c1ca7 sysfs_update_group EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write EXPORT_SYMBOL_GPL vmlinux 0x203d2905 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2049accb get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x205b9984 iommu_set_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x205f3580 class_destroy EXPORT_SYMBOL_GPL vmlinux 0x2067df0e crypto_register_aeads EXPORT_SYMBOL_GPL vmlinux 0x2068e2fe driver_find +EXPORT_SYMBOL_GPL vmlinux 0x2070571d __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x2081cf48 nvdimm_has_flush EXPORT_SYMBOL_GPL vmlinux 0x208222f6 acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr EXPORT_SYMBOL_GPL vmlinux 0x209102ba xenbus_dev_suspend @@ -21362,20 +21381,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp EXPORT_SYMBOL_GPL vmlinux 0x20ac123f for_each_kernel_tracepoint EXPORT_SYMBOL_GPL vmlinux 0x20ac17d5 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x20b83784 cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0x20b9dc98 usb_hcd_unmap_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x20c7f3ea serial8250_em485_start_tx EXPORT_SYMBOL_GPL vmlinux 0x20ed203a pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0x20f6de57 acpi_bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x20fb4ea5 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x20f78975 blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0x20fb618f dma_async_device_channel_unregister EXPORT_SYMBOL_GPL vmlinux 0x21003da9 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x210ece1c devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x2113f64f pm_runtime_force_suspend EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x212e98ff of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x21349920 platform_get_irq_byname_optional EXPORT_SYMBOL_GPL vmlinux 0x213b032a __devm_regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x2150aa73 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0x215315ba usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x215dc495 devm_bitmap_alloc EXPORT_SYMBOL_GPL vmlinux 0x2164ab6d fsverity_ioctl_read_metadata @@ -21383,43 +21400,49 @@ EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg EXPORT_SYMBOL_GPL vmlinux 0x2181d9d0 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x218515de devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy EXPORT_SYMBOL_GPL vmlinux 0x21aeebed xen_xenbus_fops EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d8a7b3 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x21e1053f gnttab_end_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x21e1168e iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x21e3e93c __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x21e67920 unwind_next_frame EXPORT_SYMBOL_GPL vmlinux 0x21f473b0 devm_hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0x21f6db69 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x220082de pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x221b0660 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x22310137 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2231466e devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0x223c56c2 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x224ec9ec dmaengine_desc_attach_metadata EXPORT_SYMBOL_GPL vmlinux 0x2253c35b fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0x2264109c __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2267e3bb i2c_client_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x227b42fd fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x22853afc register_btf_kfunc_id_set EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x22936740 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x229723c0 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x22aa5ba9 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x22a33f2f ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x22aef11d virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x22af880e perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x22b8ebda __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x22b49203 swapcache_mapping EXPORT_SYMBOL_GPL vmlinux 0x22bacc24 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends -EXPORT_SYMBOL_GPL vmlinux 0x22e6bcab __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x22fd4c03 x86_vector_domain EXPORT_SYMBOL_GPL vmlinux 0x22fedb1e fscrypt_set_bio_crypt_ctx EXPORT_SYMBOL_GPL vmlinux 0x230ce57c palmas_ext_control_req_config EXPORT_SYMBOL_GPL vmlinux 0x230e63d1 vp_legacy_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0x2316d84a devfreq_event_enable_edev EXPORT_SYMBOL_GPL vmlinux 0x2319b020 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x2325b97d thermal_zone_device EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234d982d regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x234ef820 switchdev_handle_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0x23552f00 rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0x235b48cc xfrm_audit_policy_delete EXPORT_SYMBOL_GPL vmlinux 0x236ac27e __clk_hw_register_gate EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node @@ -21432,9 +21455,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features EXPORT_SYMBOL_GPL vmlinux 0x23c67fa9 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x23ca0613 free_vm_area EXPORT_SYMBOL_GPL vmlinux 0x23cb1f3a dma_map_sgtable EXPORT_SYMBOL_GPL vmlinux 0x23e12f23 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x23e48163 __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x23f7f88d sysfs_chmod_file EXPORT_SYMBOL_GPL vmlinux 0x23fae4c0 sock_diag_unregister_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x24067024 net_failover_create @@ -21447,42 +21470,35 @@ EXPORT_SYMBOL_GPL vmlinux 0x245333e1 led_stop_software_blink EXPORT_SYMBOL_GPL vmlinux 0x2454665d from_vfsuid EXPORT_SYMBOL_GPL vmlinux 0x245e1c3b tty_set_ldisc -EXPORT_SYMBOL_GPL vmlinux 0x245f8d30 nvdimm_pmem_region_create EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size -EXPORT_SYMBOL_GPL vmlinux 0x2466df40 clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem EXPORT_SYMBOL_GPL vmlinux 0x247aaf4c iommu_dev_disable_feature EXPORT_SYMBOL_GPL vmlinux 0x247d094e rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x247f3198 perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0x247f59a8 skb_cow_data EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray EXPORT_SYMBOL_GPL vmlinux 0x24949bea input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x2498d836 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24ae74f1 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x24b4008f walk_hmem_resources +EXPORT_SYMBOL_GPL vmlinux 0x24bafb06 devm_register_power_off_handler EXPORT_SYMBOL_GPL vmlinux 0x24d181c7 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended EXPORT_SYMBOL_GPL vmlinux 0x24e826b0 root_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f7e554 icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x2503a043 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0x25078d7a __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x250bffdb elv_register EXPORT_SYMBOL_GPL vmlinux 0x25115f51 phy_reset EXPORT_SYMBOL_GPL vmlinux 0x251e8a7a md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x2530128e devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0x252f2940 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2542a635 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x253c9778 wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x2546c23e skb_mpls_update_lse -EXPORT_SYMBOL_GPL vmlinux 0x254bfc46 regulator_set_load EXPORT_SYMBOL_GPL vmlinux 0x25672766 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x256c15c2 rcu_trc_cmpxchg_need_qs -EXPORT_SYMBOL_GPL vmlinux 0x25756112 __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x257da671 xenbus_map_ring_valloc EXPORT_SYMBOL_GPL vmlinux 0x25842ac5 ip_route_output_key_hash EXPORT_SYMBOL_GPL vmlinux 0x258a4035 inet_csk_listen_stop @@ -21490,16 +21506,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk EXPORT_SYMBOL_GPL vmlinux 0x25947f4a pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0x259a5a86 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x25a7a1e0 desc_to_gpio EXPORT_SYMBOL_GPL vmlinux 0x25aae5a6 ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x25b0bbb7 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0x25b1f0b1 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x25b22c6d regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data EXPORT_SYMBOL_GPL vmlinux 0x25d23743 sdio_set_block_size EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x2633d532 spi_target_abort EXPORT_SYMBOL_GPL vmlinux 0x2651642a kthread_park EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x265acf29 ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded EXPORT_SYMBOL_GPL vmlinux 0x265c8771 bsg_job_get @@ -21510,7 +21527,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x2678cb3d xenbus_register_driver_common EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu EXPORT_SYMBOL_GPL vmlinux 0x2681468f uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x2689a448 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x268b2665 __trace_trigger_soft_disabled EXPORT_SYMBOL_GPL vmlinux 0x269cd6ee fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x26a0abc0 __tracepoint_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0x26a7a5d3 edac_device_add_device EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 @@ -21518,15 +21538,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any EXPORT_SYMBOL_GPL vmlinux 0x26d9d197 fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x26de184f pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x26e675c1 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26e77fae netlink_remove_tap EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier EXPORT_SYMBOL_GPL vmlinux 0x26f3b3e6 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0x26fc7812 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x270408aa gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0x270725fe crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x273e1002 fpu_sync_guest_vmexit_xfd_state EXPORT_SYMBOL_GPL vmlinux 0x274c8f96 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x275198f9 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x27701ab6 rio_mport_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked EXPORT_SYMBOL_GPL vmlinux 0x27826dc5 usb_bulk_msg @@ -21537,7 +21557,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x27ae745a irq_gc_ack_set_bit EXPORT_SYMBOL_GPL vmlinux 0x27bd1b3d devm_regulator_get_optional EXPORT_SYMBOL_GPL vmlinux 0x27bfff92 pse_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x27c3e00b devlink_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x27c50e96 ata_link_offline EXPORT_SYMBOL_GPL vmlinux 0x27c82890 msi_domain_first_desc EXPORT_SYMBOL_GPL vmlinux 0x27d14f9b ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0x27d8f65d usb_kill_urb @@ -21560,7 +21580,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain EXPORT_SYMBOL_GPL vmlinux 0x28754d4b ata_sff_data_xfer EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288901dc __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x288c515e gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x28916736 tpm_chip_bootstrap EXPORT_SYMBOL_GPL vmlinux 0x28a75e20 blkcg_policy_unregister EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu @@ -21572,39 +21592,40 @@ EXPORT_SYMBOL_GPL vmlinux 0x28da0765 dev_coredumpsg EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices EXPORT_SYMBOL_GPL vmlinux 0x28ed99c8 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x29077dc1 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x291665d6 devl_params_register EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x29199abb devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x29277970 folio_alloc_buffers EXPORT_SYMBOL_GPL vmlinux 0x29312565 scsi_template_proc_dir EXPORT_SYMBOL_GPL vmlinux 0x29315727 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2934cd58 register_btf_fmodret_id_set +EXPORT_SYMBOL_GPL vmlinux 0x2937ab5e kill_pid_usb_asyncio EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x2951c26e devm_watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x295d5ec5 devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x29685781 pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x296db2f1 thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x2991dea0 phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x299b2559 pci_stop_root_bus EXPORT_SYMBOL_GPL vmlinux 0x299b7d84 devm_hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x29a2052f dm_get_md EXPORT_SYMBOL_GPL vmlinux 0x29a47677 acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0x29c29e6b buffer_migrate_folio_norefs +EXPORT_SYMBOL_GPL vmlinux 0x29a81545 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x29bd4dd6 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x29d45648 __devm_regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0x29d80369 devlink_port_type_eth_set -EXPORT_SYMBOL_GPL vmlinux 0x29d91c20 devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x29dadda6 wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x29e5140e regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x29e75c0c apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0x29eae5ea device_match_name EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async EXPORT_SYMBOL_GPL vmlinux 0x29f10bfc fat_scan EXPORT_SYMBOL_GPL vmlinux 0x29fb6e4a vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x29fdb96c __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x2a0055df vcap_tc_flower_handler_ipv4_usage -EXPORT_SYMBOL_GPL vmlinux 0x2a2a15a9 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x2a25da0e devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a2e3d72 mnt_want_write EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms EXPORT_SYMBOL_GPL vmlinux 0x2a302ca6 pci_epc_start EXPORT_SYMBOL_GPL vmlinux 0x2a3050db uart_get_rs485_mode EXPORT_SYMBOL_GPL vmlinux 0x2a30865f extcon_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x2a3de806 relay_reset EXPORT_SYMBOL_GPL vmlinux 0x2a50aed0 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0x2a55d5bd pm_wakeup_ws_event EXPORT_SYMBOL_GPL vmlinux 0x2a5d0a7a pci_restore_msi_state EXPORT_SYMBOL_GPL vmlinux 0x2a5d757c subsys_interface_register EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy @@ -21614,16 +21635,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x2a928856 __platform_driver_register EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto -EXPORT_SYMBOL_GPL vmlinux 0x2a9b7f23 ata_msleep EXPORT_SYMBOL_GPL vmlinux 0x2aaa36cd pm_generic_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x2aaa993c __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0x2aad3d1d pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update EXPORT_SYMBOL_GPL vmlinux 0x2ac34c3b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x2acba8b1 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x2ae1d569 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x2aee27c9 ata_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x2aefa36b regmap_get_raw_read_max -EXPORT_SYMBOL_GPL vmlinux 0x2af2f0a3 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2af48826 make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback EXPORT_SYMBOL_GPL vmlinux 0x2b1c9463 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0x2b24a198 bus_sort_breadthfirst @@ -21632,21 +21650,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update EXPORT_SYMBOL_GPL vmlinux 0x2b53f902 ip_icmp_error EXPORT_SYMBOL_GPL vmlinux 0x2b60a989 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b60f7a6 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init EXPORT_SYMBOL_GPL vmlinux 0x2b7e1fea component_compare_of EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9ab90b clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x2bb53278 pci_cfg_access_trylock EXPORT_SYMBOL_GPL vmlinux 0x2bb77ee9 acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0x2bbd0838 rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0x2bbf49b8 tracepoint_probe_register EXPORT_SYMBOL_GPL vmlinux 0x2bc6ec73 __device_reset EXPORT_SYMBOL_GPL vmlinux 0x2bcff508 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x2bd4d90d __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2be6f2f9 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2be316cd __SCK__tp_func_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x2bfc1253 __xenmem_reservation_va_mapping_update EXPORT_SYMBOL_GPL vmlinux 0x2bfd03cb soc_device_match EXPORT_SYMBOL_GPL vmlinux 0x2c139a02 acpi_dma_configure_id @@ -21654,6 +21673,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x2c32429b ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x2c50394a regmap_fields_read EXPORT_SYMBOL_GPL vmlinux 0x2c571bf1 xhci_check_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x2c5977b8 skcipher_walk_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x2c5c2274 iommu_fwspec_free @@ -21671,9 +21691,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x2c9eba95 pci_disable_ats EXPORT_SYMBOL_GPL vmlinux 0x2caadd57 pci_hp_remove_module_link EXPORT_SYMBOL_GPL vmlinux 0x2cac7b89 ata_eh_freeze_port -EXPORT_SYMBOL_GPL vmlinux 0x2cc7af97 __tracepoint_mc_event EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0x2ccfd771 __tracepoint_console +EXPORT_SYMBOL_GPL vmlinux 0x2cf3990a wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait @@ -21683,13 +21702,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts EXPORT_SYMBOL_GPL vmlinux 0x2d42cd0e bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x2d494174 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access EXPORT_SYMBOL_GPL vmlinux 0x2d7f9967 phy_select_page -EXPORT_SYMBOL_GPL vmlinux 0x2d8075da __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x2d86d9e0 __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x2da76b0f nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2dae1860 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2db32c0e dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x2db949f6 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x2dbcf545 clk_hw_unregister_gate EXPORT_SYMBOL_GPL vmlinux 0x2dc5b2c3 dispatch_hid_bpf_device_event @@ -21699,9 +21719,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2c6618 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap -EXPORT_SYMBOL_GPL vmlinux 0x2e35c550 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x2e648d71 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x2e65b188 unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x2e6e277a acpi_subsys_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing @@ -21715,28 +21734,36 @@ EXPORT_SYMBOL_GPL vmlinux 0x2ea4aa9b pktgen_xfrm_outer_mode_output EXPORT_SYMBOL_GPL vmlinux 0x2eb0e88a sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0x2eb31c04 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x2eb98f6a locks_release_private EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ec3947f __tracepoint_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x2ec8a27d device_show_int EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array EXPORT_SYMBOL_GPL vmlinux 0x2ecd7369 pm_generic_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7732b devl_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor EXPORT_SYMBOL_GPL vmlinux 0x2eedb267 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f192347 gpiochip_remove_pin_ranges EXPORT_SYMBOL_GPL vmlinux 0x2f1ce840 sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0x2f2c55dc regulator_get_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work EXPORT_SYMBOL_GPL vmlinux 0x2f44bb00 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2f458f19 devl_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f5ebcc4 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x2f602903 of_css EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier EXPORT_SYMBOL_GPL vmlinux 0x2f71d5f3 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0x2f80f357 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x2f82e133 devlink_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x2f91b575 vp_modern_get_queue_reset EXPORT_SYMBOL_GPL vmlinux 0x2f93b0f8 __fl6_sock_lookup EXPORT_SYMBOL_GPL vmlinux 0x2f9d9c49 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x2f9ddd99 thermal_zone_device_priv EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fce9e59 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x2fdf09d9 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0x2fe6f32b metadata_dst_free EXPORT_SYMBOL_GPL vmlinux 0x2ffedb6b hv_free_hyperv_page @@ -21744,20 +21771,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features EXPORT_SYMBOL_GPL vmlinux 0x3018871e ata_scsi_dma_need_drain EXPORT_SYMBOL_GPL vmlinux 0x301b713a pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x30236f46 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x30319a2d init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0x3031a44f dma_resv_iter_first -EXPORT_SYMBOL_GPL vmlinux 0x3043d124 trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0x305363ab acpi_dev_remove_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x3058e566 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0x305f7228 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x30603579 regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu EXPORT_SYMBOL_GPL vmlinux 0x30692911 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0x3084ad15 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3069c072 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x308b3631 failover_unregister EXPORT_SYMBOL_GPL vmlinux 0x30a4f544 serdev_device_write EXPORT_SYMBOL_GPL vmlinux 0x30a60c5f pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x30b08804 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x30b3131d of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x30c22958 generic_fh_to_parent EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys @@ -21766,40 +21791,38 @@ EXPORT_SYMBOL_GPL vmlinux 0x30e7dc23 acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk EXPORT_SYMBOL_GPL vmlinux 0x3106cc89 ata_sff_exec_command -EXPORT_SYMBOL_GPL vmlinux 0x310d994e regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x313b422f __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x3139f862 regulator_unregister EXPORT_SYMBOL_GPL vmlinux 0x314f3bc4 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x3151bacc devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x3153377f dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x315adb27 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x31650ab7 unregister_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x31790d1d __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x31819ea1 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x3183412c pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x31905756 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31affdc3 icc_set_tag EXPORT_SYMBOL_GPL vmlinux 0x31b73b89 driver_attach EXPORT_SYMBOL_GPL vmlinux 0x31bb7fea ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31c8a707 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e7500d trace_event_raw_init EXPORT_SYMBOL_GPL vmlinux 0x31e9074b key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x31fc3470 spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0x321bce5f xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x32265ed6 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config EXPORT_SYMBOL_GPL vmlinux 0x3231c59c acpi_device_get_match_data EXPORT_SYMBOL_GPL vmlinux 0x3243deb9 led_init_default_state_get EXPORT_SYMBOL_GPL vmlinux 0x32461e17 class_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0x324d5fe6 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x324eca61 __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 -EXPORT_SYMBOL_GPL vmlinux 0x3267bb1d dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor EXPORT_SYMBOL_GPL vmlinux 0x326eaee9 debugfs_create_file_unsafe EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi @@ -21808,10 +21831,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache EXPORT_SYMBOL_GPL vmlinux 0x329d4b02 virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0x32a04a85 switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x32a722ca devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32ac7631 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x32b35da2 devm_hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec EXPORT_SYMBOL_GPL vmlinux 0x32bdd4e0 __pm_runtime_disable EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register @@ -21829,49 +21849,56 @@ EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x332c5832 usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x333b934a __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x33406b15 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x33518fef tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x3352823d cppc_get_auto_sel_caps -EXPORT_SYMBOL_GPL vmlinux 0x3353c296 devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0x335a613c mas_next_range EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size EXPORT_SYMBOL_GPL vmlinux 0x336636bb clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x336aafda tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x338f2f3d pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x339d2187 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x33a25156 led_blink_set EXPORT_SYMBOL_GPL vmlinux 0x33b406b1 xdp_features_set_redirect_target EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery -EXPORT_SYMBOL_GPL vmlinux 0x33c97672 icc_node_create -EXPORT_SYMBOL_GPL vmlinux 0x33d02b82 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x33c97e5a cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x33d11730 css_next_descendant_pre EXPORT_SYMBOL_GPL vmlinux 0x33d153ff pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x33d3e39e param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0x33df4cc8 report_iommu_fault -EXPORT_SYMBOL_GPL vmlinux 0x33fe50e9 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x33f27d2e gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x33fa2a08 nvdimm_bus_unregister EXPORT_SYMBOL_GPL vmlinux 0x340c2838 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x340cbac8 bio_poll EXPORT_SYMBOL_GPL vmlinux 0x34108c18 crypto_unregister_skcipher EXPORT_SYMBOL_GPL vmlinux 0x341286d2 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x3414bb3a cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0x3427c761 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x342abf33 register_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x343ee7a3 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x343fead7 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete EXPORT_SYMBOL_GPL vmlinux 0x344d0d29 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x344d395d hsu_dma_probe EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x34556a49 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid EXPORT_SYMBOL_GPL vmlinux 0x3469e00d kill_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x347fc49c folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0x3489812f bdev_alignment_offset EXPORT_SYMBOL_GPL vmlinux 0x34901d57 dev_pm_domain_attach EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free EXPORT_SYMBOL_GPL vmlinux 0x349302c2 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x34a0eaea vfs_submount EXPORT_SYMBOL_GPL vmlinux 0x34b29292 dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0x34b3baa1 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x34d82de0 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x34db62bd fpu_enable_guest_xfd_features EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking EXPORT_SYMBOL_GPL vmlinux 0x34df3dfc unregister_kretprobes @@ -21880,7 +21907,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x34fa98f8 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait EXPORT_SYMBOL_GPL vmlinux 0x3510f0f8 fwnode_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x351ea114 devl_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x3516b0e3 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x3520840f shmem_read_mapping_page_gfp EXPORT_SYMBOL_GPL vmlinux 0x35256031 dev_pm_genpd_set_performance_state EXPORT_SYMBOL_GPL vmlinux 0x352773aa unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0x352a8271 iopf_queue_flush_dev @@ -21892,14 +21920,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x35387bd2 devres_add EXPORT_SYMBOL_GPL vmlinux 0x3538a939 pci_remove_root_bus EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x35445360 wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x3547c71b vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next EXPORT_SYMBOL_GPL vmlinux 0x3562e9a3 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table EXPORT_SYMBOL_GPL vmlinux 0x35666fc5 led_blink_set_nosleep EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x357d4d2a sched_set_fifo EXPORT_SYMBOL_GPL vmlinux 0x35823122 crypto_alloc_skcipher EXPORT_SYMBOL_GPL vmlinux 0x3586aca9 dm_disk EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate @@ -21907,13 +21933,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x35aa04e1 tty_kopen_shared EXPORT_SYMBOL_GPL vmlinux 0x35bdc8a7 fwnode_get_next_child_node EXPORT_SYMBOL_GPL vmlinux 0x35ca7fd2 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0x35ccea7c devl_param_driverinit_value_set EXPORT_SYMBOL_GPL vmlinux 0x35cfde87 fscrypt_prepare_symlink EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem EXPORT_SYMBOL_GPL vmlinux 0x35d4119c intel_pinctrl_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0x35d523ab gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x35d84d0c add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0x35d94dcc tpm_is_tpm2 EXPORT_SYMBOL_GPL vmlinux 0x35f55c19 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x35f8a27b __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x35f94061 pm_runtime_barrier EXPORT_SYMBOL_GPL vmlinux 0x35fbc976 usb_control_msg_send EXPORT_SYMBOL_GPL vmlinux 0x35fd6327 led_classdev_unregister @@ -21921,17 +21948,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process EXPORT_SYMBOL_GPL vmlinux 0x36381bc0 fuse_dev_install -EXPORT_SYMBOL_GPL vmlinux 0x3639ec9c __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x3640cf75 __skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0x3649c66c devl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x365079b2 __tracepoint_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x36530f78 pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x36567e4c trace_output_call EXPORT_SYMBOL_GPL vmlinux 0x365a5bf8 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x365bff8d dax_remap_file_range_prep EXPORT_SYMBOL_GPL vmlinux 0x366f3bdf pwm_lpss_tng_info EXPORT_SYMBOL_GPL vmlinux 0x367becc9 tracepoint_probe_register_prio_may_exist EXPORT_SYMBOL_GPL vmlinux 0x36813d68 ping_err EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x368d2146 ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x36986be1 hv_setup_dma_ops EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot EXPORT_SYMBOL_GPL vmlinux 0x36a28cdf virtqueue_get_used_addr @@ -21939,36 +21965,33 @@ EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled EXPORT_SYMBOL_GPL vmlinux 0x36cc80b7 od_register_powersave_bias_handler -EXPORT_SYMBOL_GPL vmlinux 0x36e8b5fb bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x36f8a232 __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x37024305 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x371c077b gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x371ce8a8 xfrm_unregister_translator EXPORT_SYMBOL_GPL vmlinux 0x37452ed3 kernfs_path_from_node EXPORT_SYMBOL_GPL vmlinux 0x37490b49 usb_pipe_type_check EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read EXPORT_SYMBOL_GPL vmlinux 0x37620dcf usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x376e5e5d gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state EXPORT_SYMBOL_GPL vmlinux 0x378f9a40 static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write EXPORT_SYMBOL_GPL vmlinux 0x37a1b25d ata_bmdma_post_internal_cmd -EXPORT_SYMBOL_GPL vmlinux 0x37a7b1df cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0x37a9c2bd devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0x37b21342 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x37b99159 __spi_register_driver EXPORT_SYMBOL_GPL vmlinux 0x37bbd001 rio_request_inb_mbox EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit EXPORT_SYMBOL_GPL vmlinux 0x37c70ec5 inet6_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x37caa45b badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x37cb4b6a __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x37e0b4d9 rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x37e2b672 genphy_c45_plca_get_status EXPORT_SYMBOL_GPL vmlinux 0x37ebfcab relay_buf_full EXPORT_SYMBOL_GPL vmlinux 0x380125ef fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x38061472 hwmon_device_register EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap EXPORT_SYMBOL_GPL vmlinux 0x3813651c bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x38190c65 __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x38200299 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x383278ce fs_dax_get_by_bdev @@ -21984,47 +22007,43 @@ EXPORT_SYMBOL_GPL vmlinux 0x387d04c4 debugfs_create_blob EXPORT_SYMBOL_GPL vmlinux 0x388264ea amd_clear_divider EXPORT_SYMBOL_GPL vmlinux 0x38874bf1 io_uring_cmd_import_fixed -EXPORT_SYMBOL_GPL vmlinux 0x388f96ee ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x389af1fc device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count -EXPORT_SYMBOL_GPL vmlinux 0x389b8d11 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x38a62908 of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38aedd73 perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0x38b4b115 __SCK__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38d4f7f9 __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x38d9ecc4 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap EXPORT_SYMBOL_GPL vmlinux 0x38ed47e3 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x390158ee __SCK__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x3903b11e fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0x3909b802 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x391e0519 blk_rq_poll -EXPORT_SYMBOL_GPL vmlinux 0x393405ef mdiobus_c45_modify EXPORT_SYMBOL_GPL vmlinux 0x39433cb8 usb_driver_claim_interface -EXPORT_SYMBOL_GPL vmlinux 0x39571518 __traceiter_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0x395a87cc ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x396b653c rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0x397e7fb7 dw_pcie_read_dbi EXPORT_SYMBOL_GPL vmlinux 0x3991e197 xenbus_probe_devices EXPORT_SYMBOL_GPL vmlinux 0x3996e295 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x39a1fd56 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39b0a263 __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x39bb0c8d spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x39bf59a9 init_node_memory_type EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find EXPORT_SYMBOL_GPL vmlinux 0x39db071f virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x39dddb12 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x39df6675 __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule +EXPORT_SYMBOL_GPL vmlinux 0x39ea7d62 nvdimm_badblocks_populate EXPORT_SYMBOL_GPL vmlinux 0x39f63440 ata_bmdma32_port_ops EXPORT_SYMBOL_GPL vmlinux 0x39fa477b ehci_suspend EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask -EXPORT_SYMBOL_GPL vmlinux 0x3a1a28b1 bpf_prog_add EXPORT_SYMBOL_GPL vmlinux 0x3a24d84c dev_pm_opp_free_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect EXPORT_SYMBOL_GPL vmlinux 0x3a258764 pinctrl_utils_free_map @@ -22040,27 +22059,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn EXPORT_SYMBOL_GPL vmlinux 0x3a7e3e0c __rio_local_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x3a826b75 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x3a897880 gpiochip_irqchip_add_domain EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial EXPORT_SYMBOL_GPL vmlinux 0x3a9c473f devm_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x3a9e8610 acpi_remove_cmos_rtc_space_handler EXPORT_SYMBOL_GPL vmlinux 0x3aacc054 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x3ab21a55 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x3aafb0d3 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3ab63ef1 __tracepoint_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location EXPORT_SYMBOL_GPL vmlinux 0x3ac11c9a pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ac6a026 gpiochip_get_data EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource EXPORT_SYMBOL_GPL vmlinux 0x3ad8f69e scsi_ioctl_block_when_processing_errors EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3af7c9db clk_hw_get_num_parents EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop EXPORT_SYMBOL_GPL vmlinux 0x3b0d1ed7 ata_scsi_slave_destroy EXPORT_SYMBOL_GPL vmlinux 0x3b221ee6 fib6_check_nexthop -EXPORT_SYMBOL_GPL vmlinux 0x3b392021 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x3b2a437a find_vpid EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4efb73 bio_poll -EXPORT_SYMBOL_GPL vmlinux 0x3b6293b2 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x3b6cf99d debugfs_create_u64 EXPORT_SYMBOL_GPL vmlinux 0x3b7707c4 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 @@ -22070,7 +22091,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x3b9b935b xhci_stop EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset EXPORT_SYMBOL_GPL vmlinux 0x3ba0fa34 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0x3ba7f80d __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0x3bb26b08 wm831x_reg_write EXPORT_SYMBOL_GPL vmlinux 0x3bb75102 tty_ldisc_deref EXPORT_SYMBOL_GPL vmlinux 0x3bd15091 gnttab_page_cache_put @@ -22079,14 +22099,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features EXPORT_SYMBOL_GPL vmlinux 0x3be8f352 usb_alloc_urb EXPORT_SYMBOL_GPL vmlinux 0x3be910eb key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x3bf0a178 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0x3bf1576c kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1d4046 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free EXPORT_SYMBOL_GPL vmlinux 0x3c3c75ab regulator_irq_map_event_simple EXPORT_SYMBOL_GPL vmlinux 0x3c3eed9a screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x3c3f6b07 regulator_put EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable @@ -22094,6 +22115,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x3c8165de usb_cache_string EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error EXPORT_SYMBOL_GPL vmlinux 0x3c893558 blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x3c8cf9a5 devm_hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x3c931e2e pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0x3c96be97 ata_sas_sync_probe EXPORT_SYMBOL_GPL vmlinux 0x3c9bfbd1 dma_release_channel @@ -22104,23 +22126,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x3ccc0c06 dw_pcie_setup_rc EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cddc3fe synth_event_trace EXPORT_SYMBOL_GPL vmlinux 0x3ce708d3 of_hte_req_count -EXPORT_SYMBOL_GPL vmlinux 0x3cead8f6 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0x3cec866b __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x3cf634bb gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3cfeedcd __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x3d1972a0 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0x3d2c2ef4 usb_put_hcd EXPORT_SYMBOL_GPL vmlinux 0x3d2e4f68 l3mdev_link_scope_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3d318744 devm_nvdimm_memremap -EXPORT_SYMBOL_GPL vmlinux 0x3d321d67 __tracepoint_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end EXPORT_SYMBOL_GPL vmlinux 0x3d40e0aa intel_pinctrl_get_soc_data -EXPORT_SYMBOL_GPL vmlinux 0x3d441f68 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5e3e31 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x3d6b1e46 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x3d6c3ffd fscrypt_fname_encrypted_size +EXPORT_SYMBOL_GPL vmlinux 0x3d71c16f handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x3d7691f5 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3d7c6860 gpiod_set_value EXPORT_SYMBOL_GPL vmlinux 0x3d85f906 ping_hash EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon EXPORT_SYMBOL_GPL vmlinux 0x3da5c41e fb_deferred_io_cleanup EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled EXPORT_SYMBOL_GPL vmlinux 0x3db6327f md_find_rdev_rcu @@ -22129,11 +22152,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x3dbb8f7d debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0x3dc0a3ee crypto_unregister_instance EXPORT_SYMBOL_GPL vmlinux 0x3dc71c99 dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x3dc7c4ce regmap_raw_write_async EXPORT_SYMBOL_GPL vmlinux 0x3dd05998 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x3dd9632c trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x3ddb4388 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df395a1 gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod EXPORT_SYMBOL_GPL vmlinux 0x3e107d08 iommu_domain_alloc @@ -22141,8 +22163,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x3e1a10c5 smpboot_unregister_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface EXPORT_SYMBOL_GPL vmlinux 0x3e53d690 dev_pm_genpd_get_next_hrtimer -EXPORT_SYMBOL_GPL vmlinux 0x3e5b0f24 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0x3e5b9ea7 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3e613288 i2c_parse_fw_timings EXPORT_SYMBOL_GPL vmlinux 0x3e6544d0 pci_epf_destroy EXPORT_SYMBOL_GPL vmlinux 0x3e67577c vcap_alloc_rule EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer @@ -22150,27 +22172,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms EXPORT_SYMBOL_GPL vmlinux 0x3e9168e6 sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0x3e931a19 io_uring_cmd_do_in_task_lazy +EXPORT_SYMBOL_GPL vmlinux 0x3e9423b4 __get_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup EXPORT_SYMBOL_GPL vmlinux 0x3ec652ab ata_common_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef40a1e __tracepoint_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x3f37d564 pci_epc_set_msi -EXPORT_SYMBOL_GPL vmlinux 0x3f3922f3 spi_target_abort EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset EXPORT_SYMBOL_GPL vmlinux 0x3f63c179 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x3f6922ca bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive EXPORT_SYMBOL_GPL vmlinux 0x3f8ffccc subsys_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0x3f947f7e ncsi_register_dev EXPORT_SYMBOL_GPL vmlinux 0x3fa03b41 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x3fa9fb34 regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index EXPORT_SYMBOL_GPL vmlinux 0x3fae8613 ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x3fbd1788 devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x3fc98d10 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3fbd7dae devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x3fc99913 devm_clk_bulk_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x3fda2819 regmap_bulk_write EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3feb6570 vchan_tx_desc_free EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns @@ -22179,13 +22199,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x40017308 inet6_hash EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release EXPORT_SYMBOL_GPL vmlinux 0x400b1ae1 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x4015f820 __tracepoint_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x4022acbf fwnode_graph_get_port_parent EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x40373ba8 dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x40382502 ata_sas_port_suspend EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4047dcd5 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x4063b9e9 device_release_driver EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution @@ -22199,6 +22220,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all EXPORT_SYMBOL_GPL vmlinux 0x40a5564e amd_iommu_is_attach_deferred EXPORT_SYMBOL_GPL vmlinux 0x40ae42ea irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x40d88f9c regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0x40effdcb acpi_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped @@ -22207,21 +22229,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x410a2058 da9052_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x410aaac1 alloc_dax_region EXPORT_SYMBOL_GPL vmlinux 0x410c1156 usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x41151c64 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x411228ac __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x411cefd8 free_fib_info EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x41366e3b register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x413d335c bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings EXPORT_SYMBOL_GPL vmlinux 0x41550592 usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0x4156fb85 dev_attr_em_message_type EXPORT_SYMBOL_GPL vmlinux 0x415840aa device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x416a5d5f xenbus_dev_remove EXPORT_SYMBOL_GPL vmlinux 0x416c4f9d crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x417284d5 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x41746ca8 balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x41747d24 mmc_cmdq_enable -EXPORT_SYMBOL_GPL vmlinux 0x417fe5d0 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval EXPORT_SYMBOL_GPL vmlinux 0x4183efe5 devlink_free EXPORT_SYMBOL_GPL vmlinux 0x419489fa dm_path_uevent @@ -22230,30 +22250,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x41a00a96 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x41a3e403 devl_health_reporter_create EXPORT_SYMBOL_GPL vmlinux 0x41b250bf dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x41b5fb7e wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x41bd43e6 regulator_register EXPORT_SYMBOL_GPL vmlinux 0x41c494b4 devm_regulator_get_enable_optional EXPORT_SYMBOL_GPL vmlinux 0x41c8eb33 netdev_walk_all_lower_dev EXPORT_SYMBOL_GPL vmlinux 0x41daab50 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421108d5 __tracepoint_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x4249b9f8 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x424e3614 gpiod_put EXPORT_SYMBOL_GPL vmlinux 0x4253ff99 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn EXPORT_SYMBOL_GPL vmlinux 0x4278a655 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0x427d8a7f gnttab_unmap_refs_async EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428c3398 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x428534f1 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0x42974a45 ftrace_set_filter_ips EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42abded2 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x42bb7461 acpi_fetch_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0x42bb9118 __traceiter_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del EXPORT_SYMBOL_GPL vmlinux 0x42ccae5f devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x42df8938 br_fdb_test_addr_hook @@ -22265,44 +22283,40 @@ EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event EXPORT_SYMBOL_GPL vmlinux 0x4313a47e blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0x43333014 nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0x4335b616 __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x43472c96 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x4349a50b set_primary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x434a4821 l3mdev_table_lookup_register EXPORT_SYMBOL_GPL vmlinux 0x4358fdc2 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x435d5200 cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x43609fc2 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x43680c0f ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit EXPORT_SYMBOL_GPL vmlinux 0x4371f2e1 espintcp_queue_out EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled EXPORT_SYMBOL_GPL vmlinux 0x437ee16f sdio_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get EXPORT_SYMBOL_GPL vmlinux 0x438de55c msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x4391d770 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0x439d172f disk_alloc_independent_access_ranges EXPORT_SYMBOL_GPL vmlinux 0x43a2b419 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x43a440fa __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x43a962ee pci_p2pdma_add_resource EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x43ab929e firmware_upload_register EXPORT_SYMBOL_GPL vmlinux 0x43b47ba9 mddev_unlock EXPORT_SYMBOL_GPL vmlinux 0x43b99fd2 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x43bf4706 receive_fd EXPORT_SYMBOL_GPL vmlinux 0x43c34545 tcp_plb_update_state EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43d70a76 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs EXPORT_SYMBOL_GPL vmlinux 0x43f951ab cpufreq_frequency_table_get_index -EXPORT_SYMBOL_GPL vmlinux 0x44009979 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44030de3 regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0x4406b3fe start_poll_synchronize_srcu EXPORT_SYMBOL_GPL vmlinux 0x441d23d6 usb_get_dr_mode EXPORT_SYMBOL_GPL vmlinux 0x4427a4fc transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x4427c725 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x44280199 nl_table EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x442fe241 genphy_c45_plca_get_cfg -EXPORT_SYMBOL_GPL vmlinux 0x4451d879 __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x445fa4f8 __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x44622860 dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop EXPORT_SYMBOL_GPL vmlinux 0x44741339 acpiphp_register_attention @@ -22312,9 +22326,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe EXPORT_SYMBOL_GPL vmlinux 0x448bb4a3 fib_nl_delrule EXPORT_SYMBOL_GPL vmlinux 0x4497ee09 devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0x44a5fe3d gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x44aad440 devl_trap_policers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x44aaf2f9 vfs_submount EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44bc85ac virtio_reset_device EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu @@ -22323,9 +22334,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats EXPORT_SYMBOL_GPL vmlinux 0x44e4e53c crypto_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0x44e85d6a ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x44f4e9a0 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0x44fb9ed5 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x44fbcef6 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x44fcf04d bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507c576 task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x45213c25 sysfs_create_link_nowarn @@ -22335,44 +22348,42 @@ EXPORT_SYMBOL_GPL vmlinux 0x45360202 __irq_domain_alloc_irqs EXPORT_SYMBOL_GPL vmlinux 0x453da07b iomap_invalidate_folio EXPORT_SYMBOL_GPL vmlinux 0x453dbd54 securityfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x4543a96c blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x45453a5b da903x_update EXPORT_SYMBOL_GPL vmlinux 0x454d0d21 class_find_device EXPORT_SYMBOL_GPL vmlinux 0x45502db3 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4550766e fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0x4552b518 kobject_move EXPORT_SYMBOL_GPL vmlinux 0x4553e038 ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x4554a903 pci_ats_supported EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x45629206 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0x45687b39 __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x45923bc1 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0x459b27c6 xfrm_audit_state_delete EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0x45b202db __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x45a74ee9 devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0x45bae3fd mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0x45cde8c7 nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get -EXPORT_SYMBOL_GPL vmlinux 0x45e8ea07 i2c_generic_scl_recovery EXPORT_SYMBOL_GPL vmlinux 0x45efff3c get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x45f0266b irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x45f4325b pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x45feed1a cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining EXPORT_SYMBOL_GPL vmlinux 0x46047827 __SCT__tp_func_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x4617870c crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0x4618477c __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x461a6d02 pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries EXPORT_SYMBOL_GPL vmlinux 0x46392ae9 devm_serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x463ae135 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x46489ef0 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0x4649f5a7 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x465d5481 gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0x465f2c15 dmaengine_unmap_put EXPORT_SYMBOL_GPL vmlinux 0x46600aae devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x466a7e50 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0x4679821e bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x46817557 __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4690b035 edac_pci_alloc_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x46980123 irq_get_default_host @@ -22381,23 +22392,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page EXPORT_SYMBOL_GPL vmlinux 0x46a85c97 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x46ac6757 ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x46ad6172 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0x46b042b7 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x46b137e0 devl_resource_register EXPORT_SYMBOL_GPL vmlinux 0x46c61de3 acpi_install_cmos_rtc_space_handler +EXPORT_SYMBOL_GPL vmlinux 0x46e14bbc ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x4704a5a1 vp_legacy_set_queue_address -EXPORT_SYMBOL_GPL vmlinux 0x470fdfce cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0x47144d40 regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request EXPORT_SYMBOL_GPL vmlinux 0x4726ba80 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x47273b9e regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x472c11f0 i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x472c19d4 devm_pinctrl_register_and_init EXPORT_SYMBOL_GPL vmlinux 0x473258b9 wm8350_block_write EXPORT_SYMBOL_GPL vmlinux 0x473ddf86 serial8250_rpm_get EXPORT_SYMBOL_GPL vmlinux 0x474c39e3 devm_usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x476b6396 blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0x47837d61 pci_enable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count @@ -22409,28 +22420,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x47bef4de crypto_grab_spawn EXPORT_SYMBOL_GPL vmlinux 0x47cf62fe devm_extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d22091 ata_qc_get_active EXPORT_SYMBOL_GPL vmlinux 0x47dac283 lwtunnel_output EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux EXPORT_SYMBOL_GPL vmlinux 0x47e163b8 rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0x47e640b2 component_release_of EXPORT_SYMBOL_GPL vmlinux 0x47e66fea device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x47f354d3 trace_event_reg EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind EXPORT_SYMBOL_GPL vmlinux 0x4806ec73 spi_mem_driver_register_with_owner EXPORT_SYMBOL_GPL vmlinux 0x480c3f42 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get -EXPORT_SYMBOL_GPL vmlinux 0x482547d0 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire EXPORT_SYMBOL_GPL vmlinux 0x483f1682 memunmap_pages EXPORT_SYMBOL_GPL vmlinux 0x484dbe2a register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x484e5f51 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x4855abb8 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x4864adae devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0x486af86a debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier EXPORT_SYMBOL_GPL vmlinux 0x4876c52f sata_scr_write EXPORT_SYMBOL_GPL vmlinux 0x487a450b usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x488c26c1 spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0x48977fbe sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4897c852 __regmap_init EXPORT_SYMBOL_GPL vmlinux 0x4899d260 screen_glyph EXPORT_SYMBOL_GPL vmlinux 0x489bc519 cpuidle_register_driver EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get @@ -22438,21 +22449,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x48afc1b2 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0x48b2b9a6 phy_package_join EXPORT_SYMBOL_GPL vmlinux 0x48c27f0f skcipher_walk_aead_decrypt -EXPORT_SYMBOL_GPL vmlinux 0x48cf4869 find_vpid EXPORT_SYMBOL_GPL vmlinux 0x48d463fb __blk_req_zone_write_lock EXPORT_SYMBOL_GPL vmlinux 0x48d4c1c2 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x48d7d839 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0x48e080b1 x86_virt_spec_ctrl EXPORT_SYMBOL_GPL vmlinux 0x49029e9d devm_pm_opp_set_config EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x490aae47 nvdimm_provider_data EXPORT_SYMBOL_GPL vmlinux 0x491c1da6 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x492f1b9b crypto_alloc_sync_skcipher EXPORT_SYMBOL_GPL vmlinux 0x4932e00d ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x493e694d regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x49535e82 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x495900c6 devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x495ea9c1 iommu_dev_enable_feature EXPORT_SYMBOL_GPL vmlinux 0x495fe486 switchdev_bridge_port_offload @@ -22461,11 +22472,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x496f7e2f devm_phy_create EXPORT_SYMBOL_GPL vmlinux 0x4972244c anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0x497bb7ef ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x497f8881 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x4984d616 thermal_zone_device_type EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister EXPORT_SYMBOL_GPL vmlinux 0x499580aa crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x499782e4 to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x499f7cdc xfrm_dev_offload_ok EXPORT_SYMBOL_GPL vmlinux 0x49aa31ed aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x49ac4fa5 iocb_bio_iopoll EXPORT_SYMBOL_GPL vmlinux 0x49b9184e vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue EXPORT_SYMBOL_GPL vmlinux 0x49d143bc device_property_read_string_array @@ -22474,24 +22489,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x49f21d21 devm_pm_runtime_enable EXPORT_SYMBOL_GPL vmlinux 0x49f821b9 device_del EXPORT_SYMBOL_GPL vmlinux 0x49fe78f6 mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x4a087dc2 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x4a0fc806 dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask EXPORT_SYMBOL_GPL vmlinux 0x4a37b087 mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data EXPORT_SYMBOL_GPL vmlinux 0x4a43b6af fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x4a49e087 nvdimm_delete EXPORT_SYMBOL_GPL vmlinux 0x4a4e72cf usb_match_id EXPORT_SYMBOL_GPL vmlinux 0x4a58d3f8 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x4a609f79 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x4a61f476 io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0x4a69100e __of_reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x4a6a454b ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x4a6e6ef7 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0x4a6fcbc6 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x4a71b52b __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0x4a753511 edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0x4a801b1e wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0x4aa2c0f9 devl_register -EXPORT_SYMBOL_GPL vmlinux 0x4aae9f1b devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x4aa6d4f5 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x4ab7e797 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x4ac0580e uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x4ac6cdd8 find_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x4adae604 uart_console_device EXPORT_SYMBOL_GPL vmlinux 0x4aee9c27 pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x4af91af8 dm_report_zones @@ -22503,21 +22519,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x4b332df8 hv_get_tsc_pfn EXPORT_SYMBOL_GPL vmlinux 0x4b33bf7a devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x4b34a0c1 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4b3aa9a3 __tracepoint_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x4b3f0060 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x4b4858a2 devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x4b49919c crypto_alloc_akcipher EXPORT_SYMBOL_GPL vmlinux 0x4b51210d devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x4b555bc3 tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase EXPORT_SYMBOL_GPL vmlinux 0x4b57ae85 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b5fc4b0 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x4b636133 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x4b659119 __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x4b743d32 __SCK__tp_func_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread EXPORT_SYMBOL_GPL vmlinux 0x4b7871e5 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x4b85094b spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x4b88e033 __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features EXPORT_SYMBOL_GPL vmlinux 0x4b99e9b2 acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0x4baef0f4 scsi_internal_device_unblock_nowait @@ -22526,45 +22539,46 @@ EXPORT_SYMBOL_GPL vmlinux 0x4bd2ce66 netdev_walk_all_lower_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be92f30 thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x4bea9b56 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x4bf4dc17 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x4bf58d19 genphy_c45_an_disable_aneg EXPORT_SYMBOL_GPL vmlinux 0x4bf6e454 fb_deferred_io_fsync EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep EXPORT_SYMBOL_GPL vmlinux 0x4c242b41 sata_pmp_qc_defer_cmd_switch -EXPORT_SYMBOL_GPL vmlinux 0x4c28af73 events_hybrid_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x4c453f1e governor_sysfs_ops EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5b9de9 __SCK__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x4c5f348e acpi_dev_filter_resource_type EXPORT_SYMBOL_GPL vmlinux 0x4c68fd2e device_get_dma_attr EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping EXPORT_SYMBOL_GPL vmlinux 0x4c78277e clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x4c7b03fa dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition EXPORT_SYMBOL_GPL vmlinux 0x4c9a49d7 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev EXPORT_SYMBOL_GPL vmlinux 0x4ca9b3fe devlink_flash_update_timeout_notify EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cc3f646 __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x4cdc1d22 show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0x4ce38db4 platform_device_add_data EXPORT_SYMBOL_GPL vmlinux 0x4cee7653 crypto_aead_encrypt EXPORT_SYMBOL_GPL vmlinux 0x4cf0a661 ip6_dst_lookup_tunnel EXPORT_SYMBOL_GPL vmlinux 0x4cf0c453 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0x4cf4cd54 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4cfb5e49 __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable EXPORT_SYMBOL_GPL vmlinux 0x4d1de44c devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0x4d20966f blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x4d390f88 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x4d6ca085 wait_for_stable_page EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d761465 regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0x4d77786a fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x4d8411b5 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x4d8dd80e serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x4d92f32f rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4d9710ea folio_mkclean EXPORT_SYMBOL_GPL vmlinux 0x4d988e19 failover_slave_unregister EXPORT_SYMBOL_GPL vmlinux 0x4d9bea0a vcap_tc_flower_handler_ip_usage EXPORT_SYMBOL_GPL vmlinux 0x4d9d3d6e xhci_resume @@ -22580,102 +22594,101 @@ EXPORT_SYMBOL_GPL vmlinux 0x4dedcd4a virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0x4df37297 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0x4df89a22 sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff EXPORT_SYMBOL_GPL vmlinux 0x4e009c06 handle_fasteoi_irq EXPORT_SYMBOL_GPL vmlinux 0x4e0464bc genphy_c45_an_config_aneg EXPORT_SYMBOL_GPL vmlinux 0x4e144a54 __SCT__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x4e2b0f04 fib_nexthop_info -EXPORT_SYMBOL_GPL vmlinux 0x4e2b75b7 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x4e30a01c sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0x4e40b65f ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x4e3dc47b regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x4e44fdbb usb_block_urb EXPORT_SYMBOL_GPL vmlinux 0x4e494acc attribute_container_find_class_device EXPORT_SYMBOL_GPL vmlinux 0x4e4afcd8 ata_sff_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e505a3c regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x4e528294 __SCK__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x4e601a5b debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e66c8ff event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop EXPORT_SYMBOL_GPL vmlinux 0x4e7fc7c0 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x4e920f3e __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x4e92e221 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0x4e97075a spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x4e9a5995 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x4ea8a8e2 bpf_prog_get_type_dev EXPORT_SYMBOL_GPL vmlinux 0x4eac268c pci_find_host_bridge EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt EXPORT_SYMBOL_GPL vmlinux 0x4eb5870c pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x4eb82b18 gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0x4ec3bf57 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x4ec406b8 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x4ec5ae49 vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x4ed7f060 pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x4ee48fc2 list_lru_count_one EXPORT_SYMBOL_GPL vmlinux 0x4eed2d4e crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x4eeee747 __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x4ef29ec5 dev_pm_opp_get_power EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize EXPORT_SYMBOL_GPL vmlinux 0x4f00676e get_net_ns EXPORT_SYMBOL_GPL vmlinux 0x4f0141e6 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f10415a sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x4f1c545b crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x4f1cdd61 linear_hugepage_index EXPORT_SYMBOL_GPL vmlinux 0x4f20d33f ip6_datagram_send_ctl EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f3dce41 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x4f46aad8 kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0x4f4b321b led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0x4f53e44a fwnode_create_software_node EXPORT_SYMBOL_GPL vmlinux 0x4f56dafb fpu_free_guest_fpstate EXPORT_SYMBOL_GPL vmlinux 0x4f638d55 regulator_set_active_discharge_regmap EXPORT_SYMBOL_GPL vmlinux 0x4f661059 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x4f661c4d gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0x4f664758 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options EXPORT_SYMBOL_GPL vmlinux 0x4f788788 mmc_regulator_set_vqmmc EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init EXPORT_SYMBOL_GPL vmlinux 0x4f8b7369 vring_notification_data -EXPORT_SYMBOL_GPL vmlinux 0x4f9080e3 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0x4f9a1e55 ata_acpi_cbl_80wire EXPORT_SYMBOL_GPL vmlinux 0x4faf82c4 do_unbind_con_driver EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax EXPORT_SYMBOL_GPL vmlinux 0x4fb79842 vcap_keyfieldset EXPORT_SYMBOL_GPL vmlinux 0x4fbc1f67 ata_sff_dev_select EXPORT_SYMBOL_GPL vmlinux 0x4fbefc4c __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4fbf21ab dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0x4fc99cad crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x4fc9f349 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x4fd39017 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdd83c8 rdev_get_name EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe9c438 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x4feaea21 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x4ff24af2 usb_get_status -EXPORT_SYMBOL_GPL vmlinux 0x4ff8927d ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi EXPORT_SYMBOL_GPL vmlinux 0x502d6582 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x5036f76c ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x505787eb usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x505a17d2 pcie_aspm_enabled EXPORT_SYMBOL_GPL vmlinux 0x505d2266 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x50672675 regmap_raw_write EXPORT_SYMBOL_GPL vmlinux 0x50725b15 ftrace_set_filter EXPORT_SYMBOL_GPL vmlinux 0x508380e4 ata_bmdma_port_start32 EXPORT_SYMBOL_GPL vmlinux 0x508b976b rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0x508df4c6 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start -EXPORT_SYMBOL_GPL vmlinux 0x5096fc76 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb EXPORT_SYMBOL_GPL vmlinux 0x50b9e299 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e0c299 gpiochip_enable_irq EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num EXPORT_SYMBOL_GPL vmlinux 0x50edc1fc edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x50f0f55d dma_request_chan_by_mask EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x50ff58d6 gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x5124f0a9 i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0x5136b653 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x51081a7d gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x51185f7a thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x51428c32 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x51574991 devm_memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x517e52f7 power_supply_unregister EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn @@ -22684,6 +22697,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x518e4d10 led_trigger_set EXPORT_SYMBOL_GPL vmlinux 0x518f01ae usb_free_coherent EXPORT_SYMBOL_GPL vmlinux 0x5192e23d usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x51991c1a __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x519be736 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x51a16d61 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x51ba8194 devm_clk_hw_register_fixed_factor_index @@ -22691,11 +22706,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x51c534da scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0x51d9122f sampling_rate_store EXPORT_SYMBOL_GPL vmlinux 0x51df7e97 fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0x51e15f81 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x51e913b5 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0x51f56941 __SCK__tp_func_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0x520b8437 i2c_recover_bus -EXPORT_SYMBOL_GPL vmlinux 0x52144b13 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x521ffc76 rio_release_dma EXPORT_SYMBOL_GPL vmlinux 0x52213722 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate @@ -22705,80 +22716,87 @@ EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit EXPORT_SYMBOL_GPL vmlinux 0x52678e7f seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5270cf06 __tracepoint_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x528cfdd6 devm_device_add_group EXPORT_SYMBOL_GPL vmlinux 0x52a89f0c msi_next_desc EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags EXPORT_SYMBOL_GPL vmlinux 0x52bfb9b8 crypto_akcipher_sync_prep EXPORT_SYMBOL_GPL vmlinux 0x52c15790 fib_add_nexthop EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x52cf450e gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x52c36953 nvdimm_in_overwrite EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x52f58254 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x52efb1ec nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x52f19bbb devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x530a7ae1 __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x530a9cce iomap_file_buffered_write EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy EXPORT_SYMBOL_GPL vmlinux 0x530fbdd3 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x5315bbf3 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x531d94d4 fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x53261f62 dma_vunmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x532b5f44 fscrypt_file_open EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x5330f6b7 devl_region_create EXPORT_SYMBOL_GPL vmlinux 0x533f8765 dev_pm_set_dedicated_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x5381bd79 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0x5388b1a0 amd_get_dr_addr_mask EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str EXPORT_SYMBOL_GPL vmlinux 0x539932b0 vcap_addr_keysets EXPORT_SYMBOL_GPL vmlinux 0x539c0608 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x539ceb4f regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late -EXPORT_SYMBOL_GPL vmlinux 0x53a08ed2 devl_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0x53a156b7 cpufreq_table_index_unsorted EXPORT_SYMBOL_GPL vmlinux 0x53a7b66e rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0x53ae540a xhci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c57dd3 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53de2f6d spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x53e03584 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x53e18463 fsnotify_find_mark -EXPORT_SYMBOL_GPL vmlinux 0x53f0cf22 spi_split_transfers_maxwords +EXPORT_SYMBOL_GPL vmlinux 0x53e59cb1 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x53e5b459 ata_wait_register EXPORT_SYMBOL_GPL vmlinux 0x53f0d30e fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x53f51bad __sock_recv_cmsgs EXPORT_SYMBOL_GPL vmlinux 0x540d3902 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x5411d245 __traceiter_br_fdb_update -EXPORT_SYMBOL_GPL vmlinux 0x5419205a __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x541b58bc __SCK__tp_func_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54291a43 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x543e8a2f spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x5440ca1c devm_hte_request_ts_ns EXPORT_SYMBOL_GPL vmlinux 0x54436a5d l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5462caee gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next EXPORT_SYMBOL_GPL vmlinux 0x5465429c percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x546aa30d regmap_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x547630a1 regmap_multi_reg_write_bypassed EXPORT_SYMBOL_GPL vmlinux 0x5486ac60 edac_pci_add_device EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549b07c6 dax_zero_range EXPORT_SYMBOL_GPL vmlinux 0x54b16b05 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x54b519cf devl_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x54c09b23 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0x54df3624 __pneigh_lookup EXPORT_SYMBOL_GPL vmlinux 0x54f01d1e debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0x54f0ae03 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x54f3d2e7 thermal_zone_device_disable EXPORT_SYMBOL_GPL vmlinux 0x54f74f6a fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x54fa21ed gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x54fdebd9 __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x55036eb1 thermal_zone_get_num_trips EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string EXPORT_SYMBOL_GPL vmlinux 0x5510a93b __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x551b1716 __tracepoint_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data EXPORT_SYMBOL_GPL vmlinux 0x553b8b19 pci_assign_unassigned_bridge_resources EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554626cd __SCK__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x555a5e28 sock_map_destroy EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate EXPORT_SYMBOL_GPL vmlinux 0x557187d4 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x55743c86 phy_destroy EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557966ff of_icc_get_from_provider EXPORT_SYMBOL_GPL vmlinux 0x5586d09c dma_free_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x55877193 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x55a1ff28 __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x55b24dd5 crypto_clone_shash EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55ccf0ef inet_bhash2_update_saddr @@ -22786,25 +22804,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x55cf42dd dev_pm_opp_get_required_pstate EXPORT_SYMBOL_GPL vmlinux 0x55d6468e ftrace_ops_set_global_filter EXPORT_SYMBOL_GPL vmlinux 0x55dbdf1a sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x55dfcf18 perf_pmu_migrate_context EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits EXPORT_SYMBOL_GPL vmlinux 0x561f0fb6 tcp_rate_check_app_limited -EXPORT_SYMBOL_GPL vmlinux 0x561f9d77 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5624f826 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status EXPORT_SYMBOL_GPL vmlinux 0x56337c58 usb_autopm_get_interface_async EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x563dc034 wwan_register_ops EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x56466a4d modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x564f3a45 gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0x56563d1d misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x5675a73b __pm_runtime_idle EXPORT_SYMBOL_GPL vmlinux 0x56780a05 pci_assign_unassigned_bus_resources EXPORT_SYMBOL_GPL vmlinux 0x568f5cbe pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0x5692863f extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current -EXPORT_SYMBOL_GPL vmlinux 0x56a800e3 handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0x56afd673 usb_control_msg EXPORT_SYMBOL_GPL vmlinux 0x56c4af01 lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0x56c80894 dev_coredumpm @@ -22812,29 +22829,23 @@ EXPORT_SYMBOL_GPL vmlinux 0x56faa02d nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers EXPORT_SYMBOL_GPL vmlinux 0x5703b552 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x5718145f __SCK__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0x571bad35 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x57260660 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x57286d74 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x572c5c1b usb_find_alt_setting -EXPORT_SYMBOL_GPL vmlinux 0x5732b23d __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0x573496bf crypto_alloc_ahash EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value EXPORT_SYMBOL_GPL vmlinux 0x57476529 bgpio_init EXPORT_SYMBOL_GPL vmlinux 0x57515d3b tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0x575ab246 vfs_splice_read EXPORT_SYMBOL_GPL vmlinux 0x575afc28 fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0x576a4dbc hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0x576bf9c9 fuse_free_conn EXPORT_SYMBOL_GPL vmlinux 0x576f6f8c class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x576f9efe bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x577be496 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0x577c4c13 __tracepoint_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x577de28e xenbus_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x5780a2f5 is_skb_forwardable EXPORT_SYMBOL_GPL vmlinux 0x57839e6b pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0x57861a5c gds_ucode_mitigated +EXPORT_SYMBOL_GPL vmlinux 0x57882277 regmap_get_device EXPORT_SYMBOL_GPL vmlinux 0x578ebf4d blk_mq_start_stopped_hw_queue EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove @@ -22842,24 +22853,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all EXPORT_SYMBOL_GPL vmlinux 0x57b88982 devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x57cb9c95 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x57cc16b3 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x57cfbc2d blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0x57cfee22 device_property_read_u8_array EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index EXPORT_SYMBOL_GPL vmlinux 0x57d5471f pinctrl_utils_add_map_mux EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase +EXPORT_SYMBOL_GPL vmlinux 0x57df67ce wakeup_source_register EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance EXPORT_SYMBOL_GPL vmlinux 0x57e94da7 pinctrl_utils_reserve_map EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point EXPORT_SYMBOL_GPL vmlinux 0x57fa4e3a ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x581df402 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x5808ba4f devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x580ed761 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x5815a77b __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x581eada8 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x58232d78 synth_event_trace_end EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583435c9 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x583aa9a3 __regmap_init_mmio_clk EXPORT_SYMBOL_GPL vmlinux 0x585821e5 devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x585dd8f7 __SCK__tp_func_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x5867432b adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x586a5cd0 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x586b3ba9 bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart EXPORT_SYMBOL_GPL vmlinux 0x58712ef9 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info @@ -22867,6 +22885,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x58a2fcaa __SCT__tp_func_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0x58a5ca8d switchdev_handle_fdb_event_to_device EXPORT_SYMBOL_GPL vmlinux 0x58b39ff3 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x58b9282f dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x58c61f31 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x58cd4490 fscrypt_mergeable_bio EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock @@ -22875,10 +22894,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x58e5020b crypto_register_akcipher EXPORT_SYMBOL_GPL vmlinux 0x58eb7e43 crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0x58f80916 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x5906d9b3 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x5911b138 device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x5913c86f devl_sb_register EXPORT_SYMBOL_GPL vmlinux 0x592339d1 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0x59278396 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x592924b8 dev_pm_opp_find_level_ceil EXPORT_SYMBOL_GPL vmlinux 0x5932e363 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0x5949bc4b alloc_memory_type @@ -22887,35 +22905,40 @@ EXPORT_SYMBOL_GPL vmlinux 0x5963c54d dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x5975aa86 pci_set_pcie_reset_state EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x599e2e87 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x59a1748f crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x59b02936 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b93946 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x59b7a784 perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x59d11fbd fwnode_get_next_available_child_node EXPORT_SYMBOL_GPL vmlinux 0x59d94371 device_find_child_by_name EXPORT_SYMBOL_GPL vmlinux 0x59e58cc0 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0x59e688b6 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59f13cc5 nfs_ssc_register EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x59fcac98 trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0x5a058909 iommu_attach_group EXPORT_SYMBOL_GPL vmlinux 0x5a128008 xenbus_dev_resume EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff EXPORT_SYMBOL_GPL vmlinux 0x5a29ef06 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x5a2f3611 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x5a33c527 nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0x5a3d4937 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x5a453cad get_governor_parent_kobj EXPORT_SYMBOL_GPL vmlinux 0x5a48b521 ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del EXPORT_SYMBOL_GPL vmlinux 0x5a549889 driver_register EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a709649 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x5a79b4a8 pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify EXPORT_SYMBOL_GPL vmlinux 0x5a831321 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5a943a6c __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a959c1d ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aa7e106 watchdog_init_timeout EXPORT_SYMBOL_GPL vmlinux 0x5aa95a0d __blkg_prfill_u64 EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner EXPORT_SYMBOL_GPL vmlinux 0x5ac50b37 nop_posix_acl_default @@ -22927,44 +22950,50 @@ EXPORT_SYMBOL_GPL vmlinux 0x5ad66cb8 phy_put EXPORT_SYMBOL_GPL vmlinux 0x5ad6a5f2 dm_table_device_name EXPORT_SYMBOL_GPL vmlinux 0x5ad79bf1 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x5adb7b6a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5ae87af8 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x5aea78a9 devlink_port_type_ib_set EXPORT_SYMBOL_GPL vmlinux 0x5b11b9fa ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x5b15377d blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek EXPORT_SYMBOL_GPL vmlinux 0x5b2db853 simple_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x5b3ac8f6 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x5b3bf119 pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0x5b49311d xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5b63710a set_cpus_allowed_ptr EXPORT_SYMBOL_GPL vmlinux 0x5b6ef413 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x5b87d8a4 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x5b8de299 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5b916039 devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x5b9fb90a max8997_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x5ba55b4d usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x5ba8fa91 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bb97f4e trace_event_ignore_this_pid EXPORT_SYMBOL_GPL vmlinux 0x5bbdc84a fat_sync_inode EXPORT_SYMBOL_GPL vmlinux 0x5bc55a2c badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0x5bc63adc irq_chip_mask_parent EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd996b0 blk_set_pm_only EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bdbfe88 __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x5bf1598c call_hid_bpf_rdesc_fixup EXPORT_SYMBOL_GPL vmlinux 0x5bf5164f ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x5bf782ce nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x5c02f3d0 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x5c167c4f regulator_is_equal EXPORT_SYMBOL_GPL vmlinux 0x5c18b283 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5c1afc67 vmf_insert_pfn_pud EXPORT_SYMBOL_GPL vmlinux 0x5c1c6b8e edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x5c1d947b adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x5c27bcef __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x5c2c5ae9 __crypto_alloc_tfmgfp EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec EXPORT_SYMBOL_GPL vmlinux 0x5c334bc1 sock_map_close EXPORT_SYMBOL_GPL vmlinux 0x5c3408c4 fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x5c377ad1 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x5c402341 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x5c48be39 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c5da2a3 virtqueue_get_vring @@ -22973,25 +23002,26 @@ EXPORT_SYMBOL_GPL vmlinux 0x5c6d39b1 spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free EXPORT_SYMBOL_GPL vmlinux 0x5c77af9a cpufreq_freq_attr_scaling_boost_freqs -EXPORT_SYMBOL_GPL vmlinux 0x5c8133c2 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0x5c9e896d dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0x5c9f2569 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0x5ca4c2ee sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cac6af9 bpf_trace_run2 EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cbab7a7 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x5cd2cfb8 __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0x5cdd6425 fwnode_device_is_available EXPORT_SYMBOL_GPL vmlinux 0x5cead98f __xenbus_register_frontend EXPORT_SYMBOL_GPL vmlinux 0x5ceb79dc inet_unhash EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0x5d0113e0 x86_pred_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5d0eb570 __tracepoint_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write EXPORT_SYMBOL_GPL vmlinux 0x5d1b85a3 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x5d22a13f __tracepoint_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x5d27dd41 regulator_get_voltage_sel_pickable_regmap EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d2bfe19 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x5d2e9204 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0x5d377b2b snp_issue_guest_request EXPORT_SYMBOL_GPL vmlinux 0x5d4febec dev_queue_xmit_nit EXPORT_SYMBOL_GPL vmlinux 0x5d61354a crypto_lookup_template @@ -23001,12 +23031,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x5d7e039e sysfs_groups_change_owner EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq -EXPORT_SYMBOL_GPL vmlinux 0x5d9439d8 bpf_map_inc_with_uref EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact EXPORT_SYMBOL_GPL vmlinux 0x5da955ae ptp_msg_is_sync EXPORT_SYMBOL_GPL vmlinux 0x5dab53cb clk_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0x5dad702d dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x5db413fe bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid EXPORT_SYMBOL_GPL vmlinux 0x5dbe82dc rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x5dc9bb48 xdp_return_buff @@ -23014,20 +23042,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x5df496da xen_xlate_remap_gfn_array EXPORT_SYMBOL_GPL vmlinux 0x5dfb17e1 __inet_inherit_port EXPORT_SYMBOL_GPL vmlinux 0x5dfe8390 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5e025e4b __tracepoint_console EXPORT_SYMBOL_GPL vmlinux 0x5e0e44b5 phy_get EXPORT_SYMBOL_GPL vmlinux 0x5e0fbc75 usb_intf_get_dma_device EXPORT_SYMBOL_GPL vmlinux 0x5e1528f7 nfs_ssc_client_tbl EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x5e1eb7ba dev_pm_opp_get_freq -EXPORT_SYMBOL_GPL vmlinux 0x5e25b580 spi_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x5e4431d0 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x5e4a9c48 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x5e4d2336 pci_reset_bus EXPORT_SYMBOL_GPL vmlinux 0x5e504b7d device_create_managed_software_node EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e53fe37 __tracepoint_neigh_update EXPORT_SYMBOL_GPL vmlinux 0x5e628375 ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0x5e67524e __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5e74301c icc_node_create EXPORT_SYMBOL_GPL vmlinux 0x5e7520ae proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0x5e777dfc thermal_acpi_active_trip_temp EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val @@ -23037,29 +23064,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume EXPORT_SYMBOL_GPL vmlinux 0x5e8728ee attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0x5e9576a3 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x5e967c81 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x5ea7fe2b xen_find_device_domain_owner EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared EXPORT_SYMBOL_GPL vmlinux 0x5eaf6db6 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5eb43d89 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0x5ebe0b3c folio_wait_writeback_killable EXPORT_SYMBOL_GPL vmlinux 0x5ecbd692 blk_mq_pci_map_queues EXPORT_SYMBOL_GPL vmlinux 0x5ecf355c compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5efea58a nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x5ef175e6 clk_gate_restore_context EXPORT_SYMBOL_GPL vmlinux 0x5eff1a45 dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x5f00a24c thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x5f0c6d2d serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x5f2f37bd devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate EXPORT_SYMBOL_GPL vmlinux 0x5f41fb21 tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x5f440a49 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x5f44f672 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x5f58ec70 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f5ef8cb devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private EXPORT_SYMBOL_GPL vmlinux 0x5f790628 handle_level_irq EXPORT_SYMBOL_GPL vmlinux 0x5f7e68f5 xen_remap_pfn -EXPORT_SYMBOL_GPL vmlinux 0x5f94a1dc rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x5f8604b6 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x5f922dc6 unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0x5f9e6a01 ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0x5fa2f47f driver_create_file EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point @@ -23073,60 +23101,53 @@ EXPORT_SYMBOL_GPL vmlinux 0x5fe8100d tty_register_device_attr EXPORT_SYMBOL_GPL vmlinux 0x5ff7f38e fpu_update_guest_xfd EXPORT_SYMBOL_GPL vmlinux 0x5ffbdb8c generic_handle_domain_irq -EXPORT_SYMBOL_GPL vmlinux 0x6006191f __tracepoint_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0x6007793d fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x601527a7 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x6019153f device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x60245576 ethtool_dev_mm_supported -EXPORT_SYMBOL_GPL vmlinux 0x6028e83d devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x60300fa4 blkcg_punt_bio_submit -EXPORT_SYMBOL_GPL vmlinux 0x60395d5c nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604f793d __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x6052a097 elv_rqhash_add EXPORT_SYMBOL_GPL vmlinux 0x605420a2 usb_alloc_dev EXPORT_SYMBOL_GPL vmlinux 0x605ea6a5 dw_pcie_upconfig_setup EXPORT_SYMBOL_GPL vmlinux 0x606779ef phy_driver_is_genphy EXPORT_SYMBOL_GPL vmlinux 0x606a9148 fscrypt_prepare_lookup_partial EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x606fdd96 housekeeping_affine EXPORT_SYMBOL_GPL vmlinux 0x607807eb ohci_suspend EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put EXPORT_SYMBOL_GPL vmlinux 0x607f5541 crypto_grab_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x60856171 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x608c7432 intel_cpu_collect_info EXPORT_SYMBOL_GPL vmlinux 0x608cd72e bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev -EXPORT_SYMBOL_GPL vmlinux 0x608f5999 wbt_enable_default EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0x6097451c sdio_memcpy_fromio EXPORT_SYMBOL_GPL vmlinux 0x609d62ab blk_queue_rq_timeout EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x60a19a40 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x60a72351 watchdog_register_device EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri EXPORT_SYMBOL_GPL vmlinux 0x60b86c98 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x60c15edd icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x60c616d3 devm_clk_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x60c7a051 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0x60d26dba noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x60d4a9a3 task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x60dc3a0b sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x60eb6c0e relay_subbufs_consumed EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare EXPORT_SYMBOL_GPL vmlinux 0x60f4bcfa fwnode_graph_get_endpoint_by_id -EXPORT_SYMBOL_GPL vmlinux 0x60f58b71 folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x6102153a __nvdimm_create EXPORT_SYMBOL_GPL vmlinux 0x61104e16 sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail EXPORT_SYMBOL_GPL vmlinux 0x611f88a3 __platform_create_bundle EXPORT_SYMBOL_GPL vmlinux 0x6127bbd4 __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612b01f4 devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status EXPORT_SYMBOL_GPL vmlinux 0x6134ebaf debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x613d1f8a usb_get_maximum_speed EXPORT_SYMBOL_GPL vmlinux 0x613f66c3 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0x614eeb85 clk_hw_get_flags -EXPORT_SYMBOL_GPL vmlinux 0x61503ddf synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x6151a830 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x61547d2a synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x615e0215 crypto_shash_digest EXPORT_SYMBOL_GPL vmlinux 0x61614ee5 inode_dax EXPORT_SYMBOL_GPL vmlinux 0x61639b5c sata_async_notification @@ -23135,7 +23156,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x617a76de devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add EXPORT_SYMBOL_GPL vmlinux 0x6184de44 dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0x61921c59 __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x619375dd ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher @@ -23145,8 +23165,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current EXPORT_SYMBOL_GPL vmlinux 0x61b5abcf usb_wakeup_notification EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x61ce9ad5 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x61d16517 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x61d23e0e gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x61d826c3 pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0x61eb1149 acpi_bind_one EXPORT_SYMBOL_GPL vmlinux 0x61f0d7c6 pinctrl_utils_add_config @@ -23155,6 +23175,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x61f9eefe shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x61fdf23f iomap_seek_data EXPORT_SYMBOL_GPL vmlinux 0x6200112b led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x6202ba02 device_wakeup_disable EXPORT_SYMBOL_GPL vmlinux 0x62046e5a lwtunnel_cmp_encap EXPORT_SYMBOL_GPL vmlinux 0x622108c1 tty_port_tty_wakeup EXPORT_SYMBOL_GPL vmlinux 0x622bf38e nfs_ssc_unregister @@ -23166,18 +23187,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context EXPORT_SYMBOL_GPL vmlinux 0x625ce2e5 fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0x6269ef6a gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0x62795ea9 pci_max_pasids -EXPORT_SYMBOL_GPL vmlinux 0x627e4129 icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0x62856bd7 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x6291987c __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x6291ee17 regulator_enable_regmap EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter EXPORT_SYMBOL_GPL vmlinux 0x62a1d205 ip6_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x62a60de9 pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bda6e7 regulator_set_voltage EXPORT_SYMBOL_GPL vmlinux 0x62bf1f93 inet6_cleanup_sock EXPORT_SYMBOL_GPL vmlinux 0x62d93f12 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x62e0f35f __SCK__tp_func_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0x62e67e85 device_driver_attach EXPORT_SYMBOL_GPL vmlinux 0x62e84d95 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0x62f6dc39 acomp_request_free @@ -23189,38 +23208,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake EXPORT_SYMBOL_GPL vmlinux 0x631b36e3 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x632523ed devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x632e5f3a devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x63302946 __SCK__tp_func_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x6336e57a devm_platform_get_and_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model EXPORT_SYMBOL_GPL vmlinux 0x63650d72 blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0x636751b8 hv_set_non_nested_register EXPORT_SYMBOL_GPL vmlinux 0x636c2eae irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x637e8a98 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x637f8ea9 blk_trace_startstop EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid EXPORT_SYMBOL_GPL vmlinux 0x638c75fe uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x6390cc88 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0x6393310c __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x63a33a87 thermal_zone_device_type EXPORT_SYMBOL_GPL vmlinux 0x63a3a4ae skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x63aedfb0 fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x63babe2c md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x63c07b59 powercap_register_zone EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare EXPORT_SYMBOL_GPL vmlinux 0x63ce305e wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x63d61ec8 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str EXPORT_SYMBOL_GPL vmlinux 0x63ecb0a6 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x63f9b397 sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x640f2dd5 ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x641da353 irq_gc_mask_disable_reg EXPORT_SYMBOL_GPL vmlinux 0x6425c1d2 phy_create EXPORT_SYMBOL_GPL vmlinux 0x642e2b2e xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0x6439b3bc gpiod_get_optional EXPORT_SYMBOL_GPL vmlinux 0x6445503d devl_trylock EXPORT_SYMBOL_GPL vmlinux 0x6447bb30 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x64511756 gpiochip_get_desc EXPORT_SYMBOL_GPL vmlinux 0x6456d570 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x645ed55b __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x64634ff9 __SCK__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x6463b4df vp_modern_set_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x6482df95 dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x64898720 pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f579f devm_kmalloc EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert @@ -23231,14 +23249,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x64aaa8bd device_find_any_child EXPORT_SYMBOL_GPL vmlinux 0x64b2dabb __xenmem_reservation_va_mapping_reset EXPORT_SYMBOL_GPL vmlinux 0x64b4e99e pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x64bcbb53 perf_aux_output_end EXPORT_SYMBOL_GPL vmlinux 0x64c3d46b fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0x64c7ef7a devm_reset_controller_register EXPORT_SYMBOL_GPL vmlinux 0x64cb79c2 udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x64d5cc01 driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f7eeeb clk_mux_determine_rate_flags EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x650e0f61 devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x65134f9c __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x65180e8b unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x651872cd blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x651b3023 fat_truncate_time EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns @@ -23246,48 +23267,49 @@ EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add EXPORT_SYMBOL_GPL vmlinux 0x6535e3d7 tpm_chip_stop -EXPORT_SYMBOL_GPL vmlinux 0x653a00ae spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain EXPORT_SYMBOL_GPL vmlinux 0x65530b9d iommu_attach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x65540875 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x655c30b4 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x655e24cf pm_generic_suspend EXPORT_SYMBOL_GPL vmlinux 0x65614cbc cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x65622e84 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x6562f174 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x6565514b __SCK__tp_func_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x656b462c xen_xlate_unmap_gfn_range EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x658891a6 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x65ad24a0 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x65b29265 ata_sff_qc_issue EXPORT_SYMBOL_GPL vmlinux 0x65b3e2e0 gnttab_unmap_refs EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65db02b4 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x65e91997 nvdimm_bus_register EXPORT_SYMBOL_GPL vmlinux 0x65f6ed9e crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x65ff72d5 kernel_file_open EXPORT_SYMBOL_GPL vmlinux 0x6607a6e2 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x661307bf regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol EXPORT_SYMBOL_GPL vmlinux 0x6619d264 uhci_reset_hc EXPORT_SYMBOL_GPL vmlinux 0x661c3009 led_set_brightness_nopm EXPORT_SYMBOL_GPL vmlinux 0x66207190 __reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663707b8 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x6639fbb7 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x663b82b4 platform_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663fdcce nvdimm_region_notify EXPORT_SYMBOL_GPL vmlinux 0x66402ea8 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x664f74d4 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle EXPORT_SYMBOL_GPL vmlinux 0x666018de led_put -EXPORT_SYMBOL_GPL vmlinux 0x6665cfe1 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0x666b501e dma_get_slave_caps EXPORT_SYMBOL_GPL vmlinux 0x6672681e inet_hash_connect EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x668934d8 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x668f4886 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x66969d76 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x66b5fd7f perf_event_read_value EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66ba0b3a gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0x66c119df gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x66c49175 clean_acked_data_enable EXPORT_SYMBOL_GPL vmlinux 0x66cc5839 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr -EXPORT_SYMBOL_GPL vmlinux 0x66e34e71 ip6_sk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x670a719d dw_pcie_ep_raise_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices EXPORT_SYMBOL_GPL vmlinux 0x670bedf0 ata_sff_data_xfer32 @@ -23296,14 +23318,15 @@ EXPORT_SYMBOL_GPL vmlinux 0x6729d33c phy_validate EXPORT_SYMBOL_GPL vmlinux 0x67370427 kobject_get_path EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67575125 __traceiter_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x6765e669 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0x6772fb6a regulator_set_voltage_sel_regmap EXPORT_SYMBOL_GPL vmlinux 0x67751b07 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x677c69f1 make_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a86c0c __traceiter_block_unplug EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x67d9cf8a clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash @@ -23315,37 +23338,40 @@ EXPORT_SYMBOL_GPL vmlinux 0x67fca922 irq_remove_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x680547c0 invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0x680cde1c usb_lock_device_for_reset -EXPORT_SYMBOL_GPL vmlinux 0x680d7ab8 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x68333c68 regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x687f95f4 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x688cc42b devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x68911d8a ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x68949543 regmap_write_async EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch EXPORT_SYMBOL_GPL vmlinux 0x68b3e869 platform_device_put EXPORT_SYMBOL_GPL vmlinux 0x68b907a4 inet_csk_route_child_sock EXPORT_SYMBOL_GPL vmlinux 0x68c31372 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x68cb3c3d regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0x68def494 regulator_set_current_limit_regmap EXPORT_SYMBOL_GPL vmlinux 0x6900686f vcap_find_actionfield EXPORT_SYMBOL_GPL vmlinux 0x69030415 __mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array EXPORT_SYMBOL_GPL vmlinux 0x69138506 pci_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0x691940dc devm_led_get +EXPORT_SYMBOL_GPL vmlinux 0x6926a0c9 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter EXPORT_SYMBOL_GPL vmlinux 0x69293136 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x692f5765 spi_alloc_device EXPORT_SYMBOL_GPL vmlinux 0x69395da9 virtqueue_get_vring_size EXPORT_SYMBOL_GPL vmlinux 0x693faeff iommu_unmap_fast EXPORT_SYMBOL_GPL vmlinux 0x69432900 dm_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x695776c5 seq_buf_do_printk EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696856b7 __SCK__tp_func_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation -EXPORT_SYMBOL_GPL vmlinux 0x69780a62 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0x69786f16 memremap_pages EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69aa20b0 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x698d1a63 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x698f4a2b ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x698fd785 filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0x69b79998 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x69ba6c0f edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0x69c55bef iommu_fwspec_init @@ -23364,13 +23390,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x6a2b6ab1 kset_find_obj EXPORT_SYMBOL_GPL vmlinux 0x6a3050f7 usb_phy_roothub_suspend EXPORT_SYMBOL_GPL vmlinux 0x6a3428db devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x6a3ca2ac __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize EXPORT_SYMBOL_GPL vmlinux 0x6a588534 ncsi_stop_dev EXPORT_SYMBOL_GPL vmlinux 0x6a64a861 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6a6ed95d ata_pci_device_do_resume EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8b24e3 yield_to EXPORT_SYMBOL_GPL vmlinux 0x6a9752d7 rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf @@ -23378,24 +23405,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via EXPORT_SYMBOL_GPL vmlinux 0x6ab3d870 mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x6ac301d4 intel_pmic_install_opregion_handler -EXPORT_SYMBOL_GPL vmlinux 0x6acfec3b cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x6ad21a8c devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x6ae4a6d8 gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x6aefb3b8 sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x6b0d2e7a __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x6afce9dc __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x6afeafac vfs_splice_read EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read +EXPORT_SYMBOL_GPL vmlinux 0x6b0f4a14 __traceiter_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x6b11b9d5 rt_mutex_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x6b2579ae sdio_get_host_pm_caps EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b40f8a4 wakeup_source_unregister EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b49976c __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x6b5448c3 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x6b5b1744 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x6b5c5ab0 usb_unpoison_urb EXPORT_SYMBOL_GPL vmlinux 0x6b5fc972 extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0x6b602787 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b8120d2 __page_file_index EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b82c4a3 irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0x6b9f232e __skb_get_hash_symmetric @@ -23410,16 +23440,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bd6389e __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x6bdcb6d1 gpiod_set_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x6bdcf422 usb_enable_intel_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler EXPORT_SYMBOL_GPL vmlinux 0x6c021ad0 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x6c12cba5 clk_hw_get_flags EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3dcfee inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c4acbaa synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x6c45cf3e dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert EXPORT_SYMBOL_GPL vmlinux 0x6c4f35ab uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0x6c50698a fib_nl_newrule @@ -23427,7 +23457,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x6c5d20ce devm_regulator_bulk_get_enable EXPORT_SYMBOL_GPL vmlinux 0x6c605a32 scsi_check_sense EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c759fda thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x6c75c005 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x6c79932b rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0x6c79d3c9 fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work EXPORT_SYMBOL_GPL vmlinux 0x6c8be3b6 virtio_check_mem_acc_cb @@ -23440,17 +23472,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x6ccfd679 devm_power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x6cd0c1e5 pm_runtime_set_autosuspend_delay EXPORT_SYMBOL_GPL vmlinux 0x6ce90882 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x6cf556d4 i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x6cfab41a xen_hvm_evtchn_do_upcall EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request EXPORT_SYMBOL_GPL vmlinux 0x6d110ae1 fwnode_property_get_reference_args -EXPORT_SYMBOL_GPL vmlinux 0x6d121d33 regulator_get_voltage -EXPORT_SYMBOL_GPL vmlinux 0x6d1d8be3 __inode_attach_wb -EXPORT_SYMBOL_GPL vmlinux 0x6d1f7a0d ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time EXPORT_SYMBOL_GPL vmlinux 0x6d217aaf usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x6d22d9c7 __traceiter_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0x6d28243e fsstack_copy_inode_size EXPORT_SYMBOL_GPL vmlinux 0x6d2abeda tcp_reno_cong_avoid EXPORT_SYMBOL_GPL vmlinux 0x6d2d25c1 __ip6_local_out @@ -23458,14 +23487,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list EXPORT_SYMBOL_GPL vmlinux 0x6d34a5bd ata_pci_bmdma_clear_simplex EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0x6d4e13d8 gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0x6d4e74d7 udp_abort -EXPORT_SYMBOL_GPL vmlinux 0x6d569029 dequeue_signal EXPORT_SYMBOL_GPL vmlinux 0x6d58a658 scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x6d664c7f usb_add_hcd EXPORT_SYMBOL_GPL vmlinux 0x6d68ce18 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any EXPORT_SYMBOL_GPL vmlinux 0x6d7586e8 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x6d76c2e0 __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save EXPORT_SYMBOL_GPL vmlinux 0x6d7e5d28 attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0x6d7e7dca ipv6_proxy_select_ident @@ -23475,25 +23503,30 @@ EXPORT_SYMBOL_GPL vmlinux 0x6d9eb7af pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0x6da9ca52 evtchn_make_refcounted EXPORT_SYMBOL_GPL vmlinux 0x6db24bd1 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0x6db9e7d6 irqd_cfg EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc88d30 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0x6dc89c4c generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x6dcd5fb4 ethnl_cable_test_amplitude EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd6b0d9 mdiobus_modify EXPORT_SYMBOL_GPL vmlinux 0x6ddf62e3 usb_mon_register EXPORT_SYMBOL_GPL vmlinux 0x6dfe57b8 split_page EXPORT_SYMBOL_GPL vmlinux 0x6e065790 devm_clk_get_enabled EXPORT_SYMBOL_GPL vmlinux 0x6e18092f virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x6e317880 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x6e228416 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6e32dbdb bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift -EXPORT_SYMBOL_GPL vmlinux 0x6e361ed4 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x6e353c85 __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x6e3e3b1e ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x6e3fadde __tracepoint_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e4455e2 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x6e4c1a00 rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0x6e55048c pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x6e656e5a do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x6e727afd __SCK__tp_func_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x6e738578 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x6e74b8f0 shmem_read_folio_gfp EXPORT_SYMBOL_GPL vmlinux 0x6e76371d i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi @@ -23501,16 +23534,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec27539 __traceiter_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x6ec7f8eb phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x6ece75a3 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 EXPORT_SYMBOL_GPL vmlinux 0x6f1860b9 pci_iomap_wc EXPORT_SYMBOL_GPL vmlinux 0x6f196c97 ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x6f1ff31f alloc_io_pgtable_ops EXPORT_SYMBOL_GPL vmlinux 0x6f2224ab devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x6f2bb41a __blk_trace_note_message EXPORT_SYMBOL_GPL vmlinux 0x6f2ecc53 acpi_dev_get_property EXPORT_SYMBOL_GPL vmlinux 0x6f34bc42 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x6f34c3a0 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f3c8074 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6f3d8ecf regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x6f413b91 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x6f4f4ad6 ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x6f58d1c1 inet_bhash2_reset_saddr EXPORT_SYMBOL_GPL vmlinux 0x6f5bd207 usb_phy_get_charger_current @@ -23522,74 +23560,78 @@ EXPORT_SYMBOL_GPL vmlinux 0x6f7b7abd pm_clk_add_notifier EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action EXPORT_SYMBOL_GPL vmlinux 0x6f8bbf17 em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0x6f8e5bdf gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa6c7cf clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0x6fa7fe22 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x6fb54f89 __SCK__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x6fc1b41d crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x6fc40a51 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x6fcb9b38 crypto_shoot_alg EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset EXPORT_SYMBOL_GPL vmlinux 0x6fd28596 dw_pcie_ep_reset_bar EXPORT_SYMBOL_GPL vmlinux 0x6fea74c4 virtio_require_restricted_mem_acc EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x6ff98ac4 __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x6ffce680 x86_cpu_has_min_microcode_rev EXPORT_SYMBOL_GPL vmlinux 0x6ffe1fe9 devm_pse_controller_register EXPORT_SYMBOL_GPL vmlinux 0x70027800 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x7005b8ca __tracepoint_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x70137371 xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x7016255c dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x70152d4b buffer_migrate_folio_norefs EXPORT_SYMBOL_GPL vmlinux 0x7020694d pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe -EXPORT_SYMBOL_GPL vmlinux 0x706f955f __tracepoint_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array EXPORT_SYMBOL_GPL vmlinux 0x707536e8 subsys_system_register EXPORT_SYMBOL_GPL vmlinux 0x707a506b __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x707c1d2d __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x7088aa56 __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x70b962ed xfrm_audit_state_notfound -EXPORT_SYMBOL_GPL vmlinux 0x70c2a1f7 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x70c23545 icc_provider_register EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq -EXPORT_SYMBOL_GPL vmlinux 0x70d7a4df watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x70df7a02 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x70e6f69e edac_mc_add_mc_with_groups EXPORT_SYMBOL_GPL vmlinux 0x70f315f4 wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x70f992b1 do_take_over_console EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x71009b99 rtnl_register_module -EXPORT_SYMBOL_GPL vmlinux 0x710131a6 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x7101be25 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x710a9d71 __traceiter_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711feb27 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x71207451 acpi_dev_resource_io EXPORT_SYMBOL_GPL vmlinux 0x7122460c usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0x7128f6c5 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712a298d dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x713c7a8c fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x713efb0d devm_i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0x714abc29 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7152c82e __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x7156add9 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x7158a8e0 sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x71677fd5 regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x716b9534 acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x71806fa6 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0x7184fe83 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71894d9c to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x71941c0d of_led_get EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71abd5a4 unregister_fprobe +EXPORT_SYMBOL_GPL vmlinux 0x71ad8ba1 gpiod_set_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now -EXPORT_SYMBOL_GPL vmlinux 0x71bf0bdb regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71c89061 thermal_zone_device_id EXPORT_SYMBOL_GPL vmlinux 0x71cf21ef genphy_c45_pma_read_abilities EXPORT_SYMBOL_GPL vmlinux 0x71de09fe devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x71e37abf nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x7210cc5c devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x72160f74 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x72249b25 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7217e572 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x721dea6c regulator_enable EXPORT_SYMBOL_GPL vmlinux 0x72498d05 ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x72514c0b __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x725284d7 regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum EXPORT_SYMBOL_GPL vmlinux 0x727003ef pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0x7270f290 switchdev_handle_port_obj_add_foreign @@ -23597,12 +23639,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu EXPORT_SYMBOL_GPL vmlinux 0x728cf171 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x729b47ee __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x72abe9c9 sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode EXPORT_SYMBOL_GPL vmlinux 0x72b2d653 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x72d23e42 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d9d87f devl_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x73046d58 devm_gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x73064e97 cgroup_path_ns EXPORT_SYMBOL_GPL vmlinux 0x730a37ff pci_doe EXPORT_SYMBOL_GPL vmlinux 0x730adaec rio_free_net EXPORT_SYMBOL_GPL vmlinux 0x7312067f acpi_subsys_runtime_suspend @@ -23612,16 +23656,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x73347409 class_is_registered EXPORT_SYMBOL_GPL vmlinux 0x73349eaa mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x73442798 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x736ab7a6 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x7356b0c1 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x7372b559 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0x737b5243 clk_fractional_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x73802726 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x737d5acc ata_host_alloc_pinfo EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x7383dca5 devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x738c6b43 ata_pci_sff_init_host EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket EXPORT_SYMBOL_GPL vmlinux 0x73904664 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x739a8b18 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0x739c89d7 xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports EXPORT_SYMBOL_GPL vmlinux 0x73b498bd fixed_phy_register_with_gpiod @@ -23641,7 +23683,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x7446bd40 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x7451e8c8 crypto_sig_verify EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x745f813d regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x7465bfb7 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x748a8e5b spi_split_transfers_maxwords EXPORT_SYMBOL_GPL vmlinux 0x748b3b90 soc_device_register EXPORT_SYMBOL_GPL vmlinux 0x748d6b54 debugfs_lookup EXPORT_SYMBOL_GPL vmlinux 0x748d6ba4 mptcp_pm_get_add_addr_accept_max @@ -23651,6 +23695,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x749af7ac irq_work_queue EXPORT_SYMBOL_GPL vmlinux 0x74a88f0c wm8350_block_read EXPORT_SYMBOL_GPL vmlinux 0x74ab8381 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x74b1c408 mmput EXPORT_SYMBOL_GPL vmlinux 0x74b3f75c pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on @@ -23662,15 +23707,18 @@ EXPORT_SYMBOL_GPL vmlinux 0x74ddea92 devm_regulator_bulk_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden EXPORT_SYMBOL_GPL vmlinux 0x74f0494e device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x74f20fb5 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x74f2370f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x74f4e097 balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0x75092a2b pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751be28f spi_setup EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status EXPORT_SYMBOL_GPL vmlinux 0x755f7add irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x756499f8 pci_disable_pcie_error_reporting EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x757c8466 __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key EXPORT_SYMBOL_GPL vmlinux 0x75aa3461 bpf_offload_dev_match @@ -23680,9 +23728,8 @@ EXPORT_SYMBOL_GPL vmlinux 0x75e96aa1 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled EXPORT_SYMBOL_GPL vmlinux 0x75eabc9c dev_pm_set_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x75f0d76e gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0x75f511c4 __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x75fadcef acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x7604f729 trace_define_field EXPORT_SYMBOL_GPL vmlinux 0x761b5007 iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x76270365 genphy_c45_pma_setup_forced @@ -23693,30 +23740,27 @@ EXPORT_SYMBOL_GPL vmlinux 0x7650e162 i2c_acpi_new_device_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance EXPORT_SYMBOL_GPL vmlinux 0x7651843c blkcg_policy_register -EXPORT_SYMBOL_GPL vmlinux 0x7653cbd2 is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub EXPORT_SYMBOL_GPL vmlinux 0x765cbb63 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0x7660fad1 ncsi_vlan_rx_add_vid EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove EXPORT_SYMBOL_GPL vmlinux 0x766d8c49 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x766e4b6b gpiod_get_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x767c1f59 bdi_dev_name EXPORT_SYMBOL_GPL vmlinux 0x767c6e61 dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x7681fbd9 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x76844887 cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x7687227b dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x768e0957 dax_zero_range EXPORT_SYMBOL_GPL vmlinux 0x7697ddd6 blk_freeze_queue_start EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic EXPORT_SYMBOL_GPL vmlinux 0x76a66bca ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x76ae4d55 unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0x76af3404 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x76b87a3d usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x76c4674f fl6_merge_options EXPORT_SYMBOL_GPL vmlinux 0x76c68f19 xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0x76c6e311 phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76da9124 devl_dpipe_headers_unregister EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback EXPORT_SYMBOL_GPL vmlinux 0x76ea8eec dm_send_uevents EXPORT_SYMBOL_GPL vmlinux 0x76ec32b1 priv_to_devlink @@ -23731,26 +23775,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x772ec956 hvc_instantiate EXPORT_SYMBOL_GPL vmlinux 0x77389754 srcu_batches_completed EXPORT_SYMBOL_GPL vmlinux 0x774f857f pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x7750aa2f regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x77521060 balance_dirty_pages_ratelimited_flags EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister EXPORT_SYMBOL_GPL vmlinux 0x775b7730 pci_p2pmem_free_sgl EXPORT_SYMBOL_GPL vmlinux 0x775f0eb2 nd_tbl EXPORT_SYMBOL_GPL vmlinux 0x77610ba2 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7770c4bb ata_host_register EXPORT_SYMBOL_GPL vmlinux 0x777990e5 edac_pci_del_device EXPORT_SYMBOL_GPL vmlinux 0x777e6836 xenbus_watch_pathfmt -EXPORT_SYMBOL_GPL vmlinux 0x778687e9 spi_write_then_read EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read -EXPORT_SYMBOL_GPL vmlinux 0x7794302c regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0x77a8f56c crypto_larval_alloc EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string EXPORT_SYMBOL_GPL vmlinux 0x77c44577 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x77cd83ae nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x77e129c1 regulator_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x77f39238 perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x77fa4b64 usb_hcd_pci_remove EXPORT_SYMBOL_GPL vmlinux 0x7800431a inet_csk_addr2sockaddr EXPORT_SYMBOL_GPL vmlinux 0x7802cece ip_local_out @@ -23770,19 +23810,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty EXPORT_SYMBOL_GPL vmlinux 0x789ade07 pm_clk_remove_clk EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a5fbdb sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x78ad4747 __SCK__tp_func_sched_util_est_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity EXPORT_SYMBOL_GPL vmlinux 0x78bbc458 spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x78c40e14 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x78ca3def __root_device_register EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e0c503 thermal_zone_bind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0x78e6e3ce xfrm_get_translator -EXPORT_SYMBOL_GPL vmlinux 0x79045b30 folio_wait_writeback -EXPORT_SYMBOL_GPL vmlinux 0x7905584d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x78eed5a3 i2c_unregister_device EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check EXPORT_SYMBOL_GPL vmlinux 0x7916343c __SCT__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x792a99e2 folio_alloc_buffers EXPORT_SYMBOL_GPL vmlinux 0x793ac193 __SCT__tp_func_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0x7944071e pm_runtime_set_memalloc_noio EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off @@ -23795,19 +23837,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x79ab83ac lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x79ba448e clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c2dfca gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x79c3caf9 iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0x79c667d1 device_unregister EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x79dccec9 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ea3d1f trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0x79efd45e device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x79f00ec3 dax_file_unshare EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress EXPORT_SYMBOL_GPL vmlinux 0x79f9e1e8 ata_eh_analyze_ncq_error EXPORT_SYMBOL_GPL vmlinux 0x7a2062b5 fscrypt_ioctl_get_policy_ex EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a55961e cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0x7a572f68 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7a580e05 gpiochip_lock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control EXPORT_SYMBOL_GPL vmlinux 0x7a6aae7d rio_register_mport EXPORT_SYMBOL_GPL vmlinux 0x7a6c38b0 tty_port_register_device_serdev @@ -23818,11 +23863,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x7a7e2fbf rio_dma_prep_xfer EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie EXPORT_SYMBOL_GPL vmlinux 0x7a834880 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x7a88b2d4 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x7a9050c8 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a90e312 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0x7a93a0c4 acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aa198d9 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x7aaaa176 __rt_mutex_init EXPORT_SYMBOL_GPL vmlinux 0x7ac1254b local_clock EXPORT_SYMBOL_GPL vmlinux 0x7ac5450b __irq_resolve_mapping @@ -23831,44 +23876,44 @@ EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings EXPORT_SYMBOL_GPL vmlinux 0x7ada8b02 misc_cg_try_charge EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x7b03d011 bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x7b19d4c4 acpi_find_child_device EXPORT_SYMBOL_GPL vmlinux 0x7b35ce82 iopf_queue_add_device EXPORT_SYMBOL_GPL vmlinux 0x7b367ffc tpm_pm_suspend EXPORT_SYMBOL_GPL vmlinux 0x7b378da1 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x7b408999 spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b74edfa hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval EXPORT_SYMBOL_GPL vmlinux 0x7b90c74e vcap_get_rule_count_by_cookie EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us EXPORT_SYMBOL_GPL vmlinux 0x7ba83cd1 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7bac5fe4 nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit +EXPORT_SYMBOL_GPL vmlinux 0x7bb5addc ata_host_put EXPORT_SYMBOL_GPL vmlinux 0x7bbda362 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0x7bc09d73 devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x7bc42ab3 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x7bd9051c pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7bde0636 events_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0x7bf1b1dd fpu_copy_guest_fpstate_to_uabi EXPORT_SYMBOL_GPL vmlinux 0x7bf75459 tpm_tis_resume EXPORT_SYMBOL_GPL vmlinux 0x7bfae0ed platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x7c186a0a kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7c1b7669 perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2beeaa perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x7c327495 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x7c398094 device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0x7c3a5728 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put EXPORT_SYMBOL_GPL vmlinux 0x7c4f700a vp_modern_config_vector EXPORT_SYMBOL_GPL vmlinux 0x7c57a830 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0x7c58f48c perf_event_create_kernel_counter EXPORT_SYMBOL_GPL vmlinux 0x7c610bcd mmc_send_status EXPORT_SYMBOL_GPL vmlinux 0x7c653008 usb_hub_claim_port EXPORT_SYMBOL_GPL vmlinux 0x7c65e06f skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0x7c91ce10 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7c806564 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x7c93f4ce usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare @@ -23890,25 +23935,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize EXPORT_SYMBOL_GPL vmlinux 0x7d0d13e4 dst_cache_get_ip6 EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x7d179958 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn EXPORT_SYMBOL_GPL vmlinux 0x7d1e92c4 clockevents_config_and_register EXPORT_SYMBOL_GPL vmlinux 0x7d2263d2 set_selection_kernel EXPORT_SYMBOL_GPL vmlinux 0x7d24d8c1 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x7d397e5c gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x7d48a446 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0x7d57a424 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d5ac1c8 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x7d5cbebd icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0x7d8ffc7f perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x7d76cb09 spi_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x7d936df3 __put_net EXPORT_SYMBOL_GPL vmlinux 0x7dafddc8 gov_attr_set_init EXPORT_SYMBOL_GPL vmlinux 0x7db19743 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x7db914ac bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x7dd43d94 dax_layout_busy_page EXPORT_SYMBOL_GPL vmlinux 0x7dd4414b of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7dde76ec __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7de1897f devlink_port_type_eth_set EXPORT_SYMBOL_GPL vmlinux 0x7de2878e irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table @@ -23922,37 +23963,28 @@ EXPORT_SYMBOL_GPL vmlinux 0x7e3b4745 rio_map_outb_region EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk EXPORT_SYMBOL_GPL vmlinux 0x7e4a7c16 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x7e4f0ddf nvdimm_bus_register EXPORT_SYMBOL_GPL vmlinux 0x7e582eab genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0x7e5b2d87 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time EXPORT_SYMBOL_GPL vmlinux 0x7e6504e4 bus_get_dev_root EXPORT_SYMBOL_GPL vmlinux 0x7e72a001 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x7e763ea5 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x7e7792ef netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty -EXPORT_SYMBOL_GPL vmlinux 0x7e90284a thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x7e97d22b __devm_spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x7e992edf regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x7ea059a3 devl_region_create -EXPORT_SYMBOL_GPL vmlinux 0x7ea60ba0 __tracepoint_map EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark EXPORT_SYMBOL_GPL vmlinux 0x7eb74e42 blk_rq_prep_clone EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu EXPORT_SYMBOL_GPL vmlinux 0x7ec09110 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x7ede61f8 gpiod_count EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async EXPORT_SYMBOL_GPL vmlinux 0x7ef3d971 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x7f01f564 devm_regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x7f074cd7 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7f2500b3 regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0x7f29cc4f regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7f174dbd __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x7f3d5828 pm_generic_suspend_late EXPORT_SYMBOL_GPL vmlinux 0x7f4441f5 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x7f481c3f cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0x7f5ae0e0 __spi_alloc_controller -EXPORT_SYMBOL_GPL vmlinux 0x7f69cf9c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x7f52dc5a find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x7f6c6760 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister @@ -23961,25 +23993,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next EXPORT_SYMBOL_GPL vmlinux 0x7fb7d443 sdio_enable_func -EXPORT_SYMBOL_GPL vmlinux 0x7fc45cf5 clk_hw_rate_is_protected EXPORT_SYMBOL_GPL vmlinux 0x7fc67b4b fwnode_graph_get_remote_port EXPORT_SYMBOL_GPL vmlinux 0x800553e1 bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x800714d1 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x800e8e88 mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x801257d5 dm_bio_from_per_bio_data EXPORT_SYMBOL_GPL vmlinux 0x8014a510 fb_deferred_io_release EXPORT_SYMBOL_GPL vmlinux 0x8021d936 da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x8021f515 ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0x80230c91 gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x802e279c cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0x80452de8 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x8045eee1 __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0x8046712e divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x805df56c acpi_get_acpi_dev EXPORT_SYMBOL_GPL vmlinux 0x8064ee51 led_classdev_resume EXPORT_SYMBOL_GPL vmlinux 0x8068ceed vp_modern_remove EXPORT_SYMBOL_GPL vmlinux 0x807612b5 rdev_clear_badblocks EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x807c9a88 trace_array_init_printk EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80879ac5 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock EXPORT_SYMBOL_GPL vmlinux 0x808ec135 usb_phy_roothub_alloc EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested @@ -23987,35 +24018,37 @@ EXPORT_SYMBOL_GPL vmlinux 0x809e7ea2 usb_set_wireless_status EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd EXPORT_SYMBOL_GPL vmlinux 0x80ae64e9 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x80af6a0d splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0x80b0e378 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x80bbda05 vfs_truncate EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close EXPORT_SYMBOL_GPL vmlinux 0x80c6b03e serdev_device_set_flow_control EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e0468b bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0x80eed519 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x81051037 register_trace_event EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger -EXPORT_SYMBOL_GPL vmlinux 0x811c2829 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num EXPORT_SYMBOL_GPL vmlinux 0x812d3bb5 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x813b771b wakeup_source_remove EXPORT_SYMBOL_GPL vmlinux 0x81423a2f sock_diag_put_meminfo EXPORT_SYMBOL_GPL vmlinux 0x8148823d dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8163096d page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x8167df6f dma_max_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x816928ae mbox_send_message EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x817e2f1e regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence EXPORT_SYMBOL_GPL vmlinux 0x818c5eaa devlink_register EXPORT_SYMBOL_GPL vmlinux 0x818c9289 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x8193d39c __tracepoint_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0x81b0421d ipv4_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x81b36a65 devm_hwspin_lock_free EXPORT_SYMBOL_GPL vmlinux 0x81c4fe01 isa_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x81c6ed41 devl_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x8200584f vp_modern_get_queue_size @@ -24023,11 +24056,9 @@ EXPORT_SYMBOL_GPL vmlinux 0x82022c39 ata_acpi_stm EXPORT_SYMBOL_GPL vmlinux 0x82047fbf handle_untracked_irq EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x8212315d __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0x821a3e78 xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings EXPORT_SYMBOL_GPL vmlinux 0x8226fac8 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x8234e314 pwm_get EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x824bf56b driver_remove_file EXPORT_SYMBOL_GPL vmlinux 0x82666aab pci_epc_map_addr @@ -24036,31 +24067,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog EXPORT_SYMBOL_GPL vmlinux 0x827e9cea balloon_page_list_dequeue EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x829413df regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x82965d66 intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x829c11cb regmap_parse_val EXPORT_SYMBOL_GPL vmlinux 0x829f9253 spi_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x82b47da7 pwm_capture EXPORT_SYMBOL_GPL vmlinux 0x82bd18b6 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x82bd7c78 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82f237f7 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x8336007c serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x834fac05 spi_bus_unlock EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8367f64c bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x837776fa nvmem_layout_unregister +EXPORT_SYMBOL_GPL vmlinux 0x837a1205 cpufreq_generic_init EXPORT_SYMBOL_GPL vmlinux 0x8382dbb8 usb_hcd_pci_shutdown EXPORT_SYMBOL_GPL vmlinux 0x8385c52c klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x83878af4 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0x83912daa __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x83afb903 ata_cable_sata EXPORT_SYMBOL_GPL vmlinux 0x83b4b5f7 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x83bfb9e1 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x83b669d2 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x83d41234 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x83d458dc devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0x83d58c48 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x83e30c4d __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x83e319de devm_ioremap_uc EXPORT_SYMBOL_GPL vmlinux 0x83e4a451 usb_ifnum_to_if EXPORT_SYMBOL_GPL vmlinux 0x83e6d873 i2c_acpi_client_count @@ -24072,23 +24103,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8437ca37 i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge EXPORT_SYMBOL_GPL vmlinux 0x8442d1b3 rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type EXPORT_SYMBOL_GPL vmlinux 0x84666e80 tpm2_probe EXPORT_SYMBOL_GPL vmlinux 0x847e9c46 rio_route_get_entry -EXPORT_SYMBOL_GPL vmlinux 0x8480dc1b regulator_sync_voltage EXPORT_SYMBOL_GPL vmlinux 0x8482e5aa irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x848619ed sata_std_hardreset EXPORT_SYMBOL_GPL vmlinux 0x848828ed virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x848bae00 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x8495a5f8 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x849a3ada trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id -EXPORT_SYMBOL_GPL vmlinux 0x84b60ffd icc_put +EXPORT_SYMBOL_GPL vmlinux 0x84b9fd24 ata_link_online EXPORT_SYMBOL_GPL vmlinux 0x84d1ee23 fixed_phy_register EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f7a328 ata_std_postreset EXPORT_SYMBOL_GPL vmlinux 0x84f98b55 destroy_memory_type EXPORT_SYMBOL_GPL vmlinux 0x84fe77ed irq_domain_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0x85068990 relay_open @@ -24102,14 +24130,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put EXPORT_SYMBOL_GPL vmlinux 0x856e95ca cookie_tcp_reqsk_alloc EXPORT_SYMBOL_GPL vmlinux 0x85827441 usb_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x858697f7 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x85876194 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x858790b0 __tracepoint_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder EXPORT_SYMBOL_GPL vmlinux 0x8591d9db rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x85952f10 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x859708b2 unregister_net_sysctl_table EXPORT_SYMBOL_GPL vmlinux 0x859a197f mmc_regulator_set_ocr EXPORT_SYMBOL_GPL vmlinux 0x85a5b0ea inet_splice_eof EXPORT_SYMBOL_GPL vmlinux 0x85a898d4 device_show_bool EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85bd7442 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0x85bfc5f9 __SCT__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq @@ -24118,13 +24149,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x85efabfb usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0x85f4e487 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x85ff36cd sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x8611cb28 spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init EXPORT_SYMBOL_GPL vmlinux 0x8622e6a3 nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x8639abc6 cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x863acf52 ncsi_start_dev EXPORT_SYMBOL_GPL vmlinux 0x8650d167 net_selftest EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start @@ -24132,7 +24161,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0x8677f369 pvclock_get_pvti_cpu0_va -EXPORT_SYMBOL_GPL vmlinux 0x8683691f thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get EXPORT_SYMBOL_GPL vmlinux 0x868aa537 pci_find_next_ht_capability @@ -24141,15 +24169,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x86975164 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x86a913fa irq_chip_set_vcpu_affinity_parent EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x86b3761e wwan_port_rx EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check EXPORT_SYMBOL_GPL vmlinux 0x86ca756d __mmu_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x86db5b51 xfrm_audit_state_replay -EXPORT_SYMBOL_GPL vmlinux 0x86e3313a devl_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x86e80f7a ata_eh_read_sense_success_ncq_log EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x870238b9 thermal_zone_device_priv EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared EXPORT_SYMBOL_GPL vmlinux 0x87149de2 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x8716bedc __platform_driver_probe @@ -24158,24 +24183,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier EXPORT_SYMBOL_GPL vmlinux 0x87360237 devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x8737527c to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0x873ad796 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x8742d5d9 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x8760d6e7 regulator_bulk_force_disable EXPORT_SYMBOL_GPL vmlinux 0x876a9e61 dma_run_dependencies EXPORT_SYMBOL_GPL vmlinux 0x878f2efe fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x878ff790 i2c_new_smbus_alert_device EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark EXPORT_SYMBOL_GPL vmlinux 0x87b210d0 clkdev_create EXPORT_SYMBOL_GPL vmlinux 0x87c0416d device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x87d2e182 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87e9a084 __traceiter_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x87f59f1b device_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x87fcdc69 iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0x87fd97f0 pci_free_p2pmem EXPORT_SYMBOL_GPL vmlinux 0x8816d138 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x88362cfa devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x8836c14a i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x881f56ad finish_rcuwait EXPORT_SYMBOL_GPL vmlinux 0x88391fa9 cpufreq_freq_attr_scaling_available_freqs EXPORT_SYMBOL_GPL vmlinux 0x883e307e phy_power_off EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit @@ -24188,24 +24211,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x88a2a855 usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active EXPORT_SYMBOL_GPL vmlinux 0x88aefca4 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x88b40feb __traceiter_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp EXPORT_SYMBOL_GPL vmlinux 0x88b4f5d7 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x88b5862d unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x88c943b4 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0x88cc4ced security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked -EXPORT_SYMBOL_GPL vmlinux 0x88d9dda2 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x88d8ad1d clk_hw_determine_rate_no_reparent EXPORT_SYMBOL_GPL vmlinux 0x88daffc8 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x88ea1536 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x88ea8561 vcap_keyset_name +EXPORT_SYMBOL_GPL vmlinux 0x88eb50d9 fs_kobj EXPORT_SYMBOL_GPL vmlinux 0x88ec8d08 pcie_update_link_speed EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x890689eb perf_aux_output_flag EXPORT_SYMBOL_GPL vmlinux 0x890d4cf9 virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames -EXPORT_SYMBOL_GPL vmlinux 0x891d55a4 devlink_linecard_nested_dl_set EXPORT_SYMBOL_GPL vmlinux 0x8920fbbd netdev_set_default_ethtool_ops EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state EXPORT_SYMBOL_GPL vmlinux 0x8928cd67 tps6586x_reads @@ -24218,24 +24241,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x8954913e usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x8954ed7d platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x895dbd45 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x896347ad posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0x89649e11 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x897e084c icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x896b1751 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x896c87a4 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x896cdad2 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x899ddb8e gpiochip_populate_parent_fwspec_twocell EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key EXPORT_SYMBOL_GPL vmlinux 0x89af06f4 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x89b37850 __SCK__tp_func_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x89b821b2 blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bbbb20 folio_mkclean EXPORT_SYMBOL_GPL vmlinux 0x89bf246d fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x89bf7a5d gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0x89d857d9 hwspin_lock_get_id EXPORT_SYMBOL_GPL vmlinux 0x89dbcebf modify_ftrace_direct_nolock EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89f54136 synth_event_trace_array EXPORT_SYMBOL_GPL vmlinux 0x89ff6621 vp_modern_get_features EXPORT_SYMBOL_GPL vmlinux 0x8a01b445 pm_generic_resume_early EXPORT_SYMBOL_GPL vmlinux 0x8a0d5198 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x8a1c1216 bind_interdomain_evtchn_to_irqhandler_lateeoi EXPORT_SYMBOL_GPL vmlinux 0x8a3968c7 dm_audit_log_ti EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low EXPORT_SYMBOL_GPL vmlinux 0x8a4234ff component_master_del @@ -24244,7 +24268,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x8a461116 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP EXPORT_SYMBOL_GPL vmlinux 0x8a5c1029 __SCT__tp_func_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0x8a5d3c90 icc_set_bw EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop EXPORT_SYMBOL_GPL vmlinux 0x8a7bcd38 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control @@ -24254,24 +24277,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts EXPORT_SYMBOL_GPL vmlinux 0x8a8e80d7 evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0x8aa91c9d fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x8aae1f60 __tracepoint_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0x8ab015bd debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x8ab3381f device_for_each_child EXPORT_SYMBOL_GPL vmlinux 0x8ab5350f devlink_is_reload_failed EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom EXPORT_SYMBOL_GPL vmlinux 0x8ac39638 pm_generic_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x8ac94598 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8ac6ea05 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list EXPORT_SYMBOL_GPL vmlinux 0x8adec087 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x8afacba3 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x8b0cb0ea tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0x8b143456 ehci_reset EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match -EXPORT_SYMBOL_GPL vmlinux 0x8b1e00ea ata_qc_complete -EXPORT_SYMBOL_GPL vmlinux 0x8b1f21a1 __SCK__tp_func_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc -EXPORT_SYMBOL_GPL vmlinux 0x8b42e560 nvdimm_region_delete EXPORT_SYMBOL_GPL vmlinux 0x8b430ed6 pci_d3cold_enable EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0x8b68e8c5 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x8b69a71f devl_dpipe_table_resource_set EXPORT_SYMBOL_GPL vmlinux 0x8b7fb506 pinctrl_find_and_add_gpio_range EXPORT_SYMBOL_GPL vmlinux 0x8b857095 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x8b878b3e hte_push_ts_ns @@ -24279,32 +24303,24 @@ EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8b9bd667 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0x8bbc2fe3 phy_init -EXPORT_SYMBOL_GPL vmlinux 0x8bbdf81f rtc_class_close EXPORT_SYMBOL_GPL vmlinux 0x8bbe4b92 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x8bd57224 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8bd9565a dax_remap_file_range_prep -EXPORT_SYMBOL_GPL vmlinux 0x8bdf211c __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x8bed44a2 sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x8bee12a2 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x8bf64de9 __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c194c66 devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0x8c275721 usb_hcd_map_urb_for_dma EXPORT_SYMBOL_GPL vmlinux 0x8c2aaf40 irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs -EXPORT_SYMBOL_GPL vmlinux 0x8c35b214 __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0x8c3756bd sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0x8c38d768 dev_pm_opp_find_bw_floor EXPORT_SYMBOL_GPL vmlinux 0x8c45c332 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x8c469874 vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x8c49dbea alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev -EXPORT_SYMBOL_GPL vmlinux 0x8c4e0184 mmput EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit EXPORT_SYMBOL_GPL vmlinux 0x8c720e5b crypto_register_shash EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status @@ -24313,22 +24329,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x8c837e4e devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off EXPORT_SYMBOL_GPL vmlinux 0x8c8d2374 dma_fence_unwrap_first -EXPORT_SYMBOL_GPL vmlinux 0x8c8d3172 vmf_insert_pfn_pud EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb -EXPORT_SYMBOL_GPL vmlinux 0x8c99c87c __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x8c9b6dd6 __fsverity_prepare_setattr EXPORT_SYMBOL_GPL vmlinux 0x8c9e363a sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext EXPORT_SYMBOL_GPL vmlinux 0x8ca69604 devm_blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0x8cbd1731 skb_complete_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x8cbd262e tpm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0x8cbdd8ed unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x8cd90c83 unregister_virtio_device EXPORT_SYMBOL_GPL vmlinux 0x8cdaa689 addrconf_add_linklocal EXPORT_SYMBOL_GPL vmlinux 0x8ce0ee03 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x8ce628ea ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ce4a5f2 __tracepoint_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0x8cf13d2d put_io_context EXPORT_SYMBOL_GPL vmlinux 0x8cf2c309 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x8cf83bf1 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x8d0bd3f3 usb_queue_reset_device EXPORT_SYMBOL_GPL vmlinux 0x8d0ef533 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x8d1c8134 devm_nvmem_device_get @@ -24337,22 +24351,22 @@ EXPORT_SYMBOL_GPL vmlinux 0x8d2f6d31 input_class EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x8d63b291 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x8d6afee1 devlink_port_init EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major EXPORT_SYMBOL_GPL vmlinux 0x8d815167 devm_regulator_get_enable EXPORT_SYMBOL_GPL vmlinux 0x8d8fd930 ethnl_cable_test_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8dabbd6a __SCK__tp_func_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x8dbbef93 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8db1c7ee gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x8dd17c28 devm_rtc_device_register EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd7feb5 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x8dd4a113 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x8dd87e4b __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x8df1ff91 tcp_enter_memory_pressure EXPORT_SYMBOL_GPL vmlinux 0x8df87cb9 usb_get_maximum_ssp_rate EXPORT_SYMBOL_GPL vmlinux 0x8df9bc61 register_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0x8e15152b mptcp_subflow_init_cookie_req EXPORT_SYMBOL_GPL vmlinux 0x8e1f4638 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x8e22228b cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x8e3335b5 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8e22d1bd tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0x8e3ade50 sysfs_update_groups EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free @@ -24360,17 +24374,13 @@ EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6ef5c2 pcc_mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e7ff155 regmap_noinc_read -EXPORT_SYMBOL_GPL vmlinux 0x8e8d497c shmem_read_folio_gfp -EXPORT_SYMBOL_GPL vmlinux 0x8e8f3272 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x8e9656a3 ata_qc_complete EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page EXPORT_SYMBOL_GPL vmlinux 0x8e9ffaa2 anon_inode_getfd EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8ec43700 hrtimer_init_sleeper EXPORT_SYMBOL_GPL vmlinux 0x8ecac1c6 ptp_classify_raw EXPORT_SYMBOL_GPL vmlinux 0x8ecbff1e xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x8ed52d56 vcap_tc_flower_handler_arp_usage -EXPORT_SYMBOL_GPL vmlinux 0x8ed5a478 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x8edfe051 ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0x8ee586e9 da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0x8eec8461 nvmem_cell_read_u16 @@ -24378,30 +24388,29 @@ EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x8f0005ca rio_mport_get_physefb EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start +EXPORT_SYMBOL_GPL vmlinux 0x8f05048b of_pwm_single_xlate EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches EXPORT_SYMBOL_GPL vmlinux 0x8f15c4a1 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8f164dfc dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0x8f1d0612 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x8f1ec1c1 pci_epc_map_msi_irq EXPORT_SYMBOL_GPL vmlinux 0x8f2495c2 crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x8f26b86e devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints EXPORT_SYMBOL_GPL vmlinux 0x8f322c11 tcp_reno_undo_cwnd -EXPORT_SYMBOL_GPL vmlinux 0x8f376d2d wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x8f38b12d vcap_del_rule EXPORT_SYMBOL_GPL vmlinux 0x8f39d817 mmc_regulator_get_supply EXPORT_SYMBOL_GPL vmlinux 0x8f420c10 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x8f4447c7 cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0x8f4bae56 key_type_logon EXPORT_SYMBOL_GPL vmlinux 0x8f51775b debugfs_file_get -EXPORT_SYMBOL_GPL vmlinux 0x8f554e23 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0x8f561f3b usb_autopm_put_interface_no_suspend EXPORT_SYMBOL_GPL vmlinux 0x8f58a39a acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x8f5dbcf6 pci_p2pdma_enable_show -EXPORT_SYMBOL_GPL vmlinux 0x8f681a3b __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8f622bd4 icc_provider_init EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative EXPORT_SYMBOL_GPL vmlinux 0x8f776bd4 tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f79be65 spi_finalize_current_transfer EXPORT_SYMBOL_GPL vmlinux 0x8f7a292c usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool EXPORT_SYMBOL_GPL vmlinux 0x8f927140 sysfs_remove_files @@ -24425,26 +24434,25 @@ EXPORT_SYMBOL_GPL vmlinux 0x9049d380 cpufreq_dbs_governor_start EXPORT_SYMBOL_GPL vmlinux 0x905e6cfa tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x9061f8b6 dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0x90697a4b devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0x906d1266 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x906e313f devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms EXPORT_SYMBOL_GPL vmlinux 0x9088d026 serial8250_rx_dma_flush EXPORT_SYMBOL_GPL vmlinux 0x90899361 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0x908a3cc9 __SCK__tp_func_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x909a8ce0 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0x909cbb83 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0x909e4051 perf_event_disable EXPORT_SYMBOL_GPL vmlinux 0x90a45161 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x90a6b019 __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90aeace2 filemap_read EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90bccded filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0x90bf0954 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x90c48b64 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x90c63782 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register EXPORT_SYMBOL_GPL vmlinux 0x90d1707b PageHuge EXPORT_SYMBOL_GPL vmlinux 0x90d8c180 blk_queue_max_discard_segments EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify EXPORT_SYMBOL_GPL vmlinux 0x90e30dd5 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x90fd4efa perf_pmu_unregister EXPORT_SYMBOL_GPL vmlinux 0x91077b61 get_device_system_crosststamp EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf @@ -24454,35 +24462,35 @@ EXPORT_SYMBOL_GPL vmlinux 0x912ae653 evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x913814b8 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x913f4546 __SCK__tp_func_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0x914573ad ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x914bc6d2 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x914aaa3b gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x9178868e debugfs_create_x8 EXPORT_SYMBOL_GPL vmlinux 0x917bc1cc ata_acpi_gtm_xfermask EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0x9189df5d fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91983c25 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0x919926dc cpufreq_dbs_governor_exit EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval EXPORT_SYMBOL_GPL vmlinux 0x91b9a4ba e820__mapped_any EXPORT_SYMBOL_GPL vmlinux 0x91c59e7e xhci_add_endpoint EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d29e07 nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean EXPORT_SYMBOL_GPL vmlinux 0x91f40047 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x91f99de9 cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl EXPORT_SYMBOL_GPL vmlinux 0x920efe9c debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x921c887b __tracepoint_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x92260721 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x9237a004 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x92225560 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object EXPORT_SYMBOL_GPL vmlinux 0x925579e0 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x92570a64 __SCK__tp_func_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0x92717586 fib_rules_seq_read EXPORT_SYMBOL_GPL vmlinux 0x92727674 vcap_tc_flower_handler_cvlan_usage -EXPORT_SYMBOL_GPL vmlinux 0x9298adf0 regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter EXPORT_SYMBOL_GPL vmlinux 0x92ac22b9 pci_bus_max_busnr EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg @@ -24495,6 +24503,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x92ef6b99 nf_queue_nf_hook_drop EXPORT_SYMBOL_GPL vmlinux 0x9301fd2e inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x93074591 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x93199177 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup @@ -24502,16 +24511,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x933cf298 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x93450e42 cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0x934b3e2e __tracepoint_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0x934da2d1 wwan_create_port EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get EXPORT_SYMBOL_GPL vmlinux 0x935f3c5c balloon_mops +EXPORT_SYMBOL_GPL vmlinux 0x935f4610 devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p -EXPORT_SYMBOL_GPL vmlinux 0x9361e0f1 gpiochip_find EXPORT_SYMBOL_GPL vmlinux 0x936234eb usb_asmedia_modifyflowcontrol EXPORT_SYMBOL_GPL vmlinux 0x9372c6bb led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x93903141 blk_clear_pm_only EXPORT_SYMBOL_GPL vmlinux 0x93a7c65d da9052_disable_irq_nosync -EXPORT_SYMBOL_GPL vmlinux 0x93c5493d __SCK__tp_func_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references EXPORT_SYMBOL_GPL vmlinux 0x93d7e50a unix_inq_len @@ -24522,17 +24529,20 @@ EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report EXPORT_SYMBOL_GPL vmlinux 0x940914fa usb_sg_wait EXPORT_SYMBOL_GPL vmlinux 0x9413cf1a serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x9415b289 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0x9418ea78 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942897ad perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x942ae12c set_online_page_callback EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94415eca clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9471b718 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x9473ff75 __pm_relax EXPORT_SYMBOL_GPL vmlinux 0x94754188 acpi_device_fix_up_power_extended EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible EXPORT_SYMBOL_GPL vmlinux 0x947c6849 platform_unregister_drivers @@ -24542,13 +24552,16 @@ EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x949fe2c8 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x94b416e8 devl_dpipe_table_unregister EXPORT_SYMBOL_GPL vmlinux 0x94bb6284 cpci_hp_register_bus EXPORT_SYMBOL_GPL vmlinux 0x94beb775 dst_cache_get EXPORT_SYMBOL_GPL vmlinux 0x94cc6e19 query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x94e0ae50 edac_pci_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop EXPORT_SYMBOL_GPL vmlinux 0x94f04a06 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x94f1d610 devm_nvdimm_memremap EXPORT_SYMBOL_GPL vmlinux 0x94f60596 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x94f8358a __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread EXPORT_SYMBOL_GPL vmlinux 0x9505ef5b fib_rule_matchall EXPORT_SYMBOL_GPL vmlinux 0x9508d9e2 __hwspin_unlock @@ -24556,6 +24569,7 @@ EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg EXPORT_SYMBOL_GPL vmlinux 0x951a835f rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x95277d4e __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x952fdae6 gpiochip_request_own_desc EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds EXPORT_SYMBOL_GPL vmlinux 0x954dbdb4 of_pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn @@ -24571,14 +24585,10 @@ EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x9599a6e2 irq_domain_xlate_twocell EXPORT_SYMBOL_GPL vmlinux 0x95a95797 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x95b527fd gpiochip_get_data -EXPORT_SYMBOL_GPL vmlinux 0x95b9b814 register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x95ba7670 nf_ip6_check_hbh_len -EXPORT_SYMBOL_GPL vmlinux 0x95bb0402 __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free EXPORT_SYMBOL_GPL vmlinux 0x95c4deb0 wm8350_set_bits EXPORT_SYMBOL_GPL vmlinux 0x95c5d34d hsu_dma_do_irq -EXPORT_SYMBOL_GPL vmlinux 0x95c990a1 shmem_file_setup_with_mnt EXPORT_SYMBOL_GPL vmlinux 0x95dd11e3 pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size EXPORT_SYMBOL_GPL vmlinux 0x95fdb34e rio_mport_get_efb @@ -24587,39 +24597,41 @@ EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt EXPORT_SYMBOL_GPL vmlinux 0x9615fdd4 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x961ef98d cpuidle_register EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x962a93da rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x962329e9 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0x962c19b7 pwm_put EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x96318d3e clean_acked_data_disable EXPORT_SYMBOL_GPL vmlinux 0x96341900 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x963deb04 raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x96472c6f gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x96484ecb shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x963fa671 __tracepoint_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0x964931d8 auxiliary_device_init EXPORT_SYMBOL_GPL vmlinux 0x964f1948 devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0x964fb792 fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9678594b acpi_dev_gpio_irq_wake_get_by EXPORT_SYMBOL_GPL vmlinux 0x967edd10 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x968d0778 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x96923c89 serdev_device_alloc EXPORT_SYMBOL_GPL vmlinux 0x969abcec fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy EXPORT_SYMBOL_GPL vmlinux 0x96ae842c debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x96c3989b devlink_dpipe_entry_ctx_append EXPORT_SYMBOL_GPL vmlinux 0x96db0e05 tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9720c3bf devl_trap_policers_unregister EXPORT_SYMBOL_GPL vmlinux 0x9721780d device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x9728acf6 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x97345221 gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x973fb2b9 da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup EXPORT_SYMBOL_GPL vmlinux 0x974948ae mmc_crypto_prepare_req EXPORT_SYMBOL_GPL vmlinux 0x974bff4e ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x97682e89 __SCK__tp_func_console EXPORT_SYMBOL_GPL vmlinux 0x977bb449 generic_online_page EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977e0eaf bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0x9782132d bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x97917c03 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x978a54d8 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0x9791d156 driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x97aab287 dma_resv_get_singleton EXPORT_SYMBOL_GPL vmlinux 0x97c7cfc3 __ata_ehi_push_desc @@ -24633,17 +24645,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x98158d24 devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec -EXPORT_SYMBOL_GPL vmlinux 0x983acde5 spi_controller_resume EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check EXPORT_SYMBOL_GPL vmlinux 0x98441d30 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x98499941 gpiod_direction_output_raw EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x985ffb5f clk_mux_val_to_index EXPORT_SYMBOL_GPL vmlinux 0x986a3e82 xenbus_free_evtchn EXPORT_SYMBOL_GPL vmlinux 0x98738196 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x987aaf90 rcuwait_wake_up EXPORT_SYMBOL_GPL vmlinux 0x9886e82a validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str @@ -24664,17 +24673,19 @@ EXPORT_SYMBOL_GPL vmlinux 0x993f5e6d power_supply_register EXPORT_SYMBOL_GPL vmlinux 0x99414b56 kobject_rename EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id -EXPORT_SYMBOL_GPL vmlinux 0x99515744 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x9947fd5e regulator_set_drvdata EXPORT_SYMBOL_GPL vmlinux 0x9953acdb pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x995a0c78 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x99570ccd sched_set_fifo_low EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on EXPORT_SYMBOL_GPL vmlinux 0x995e5e8c fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x995e8f31 devl_resource_size_get EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg EXPORT_SYMBOL_GPL vmlinux 0x99753c56 dev_attr_ncq_prio_enable EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x9999e7c2 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9992da97 __traceiter_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure EXPORT_SYMBOL_GPL vmlinux 0x99be1acd sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x99c7018c gpiochip_irq_unmap EXPORT_SYMBOL_GPL vmlinux 0x99e5f783 acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x99ede9cc of_phy_put EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read @@ -24682,8 +24693,6 @@ EXPORT_SYMBOL_GPL vmlinux 0x99f11981 wm831x_reg_read EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at EXPORT_SYMBOL_GPL vmlinux 0x99f4734a acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x99f95ab4 gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x99fcf04c gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x9a0643d9 __pci_hp_register EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name EXPORT_SYMBOL_GPL vmlinux 0x9a1ed1df fuse_conn_destroy @@ -24693,19 +24702,17 @@ EXPORT_SYMBOL_GPL vmlinux 0x9a4894fe devres_release_group EXPORT_SYMBOL_GPL vmlinux 0x9a4f66db da903x_write EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq -EXPORT_SYMBOL_GPL vmlinux 0x9a5a5260 page_cache_async_ra EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check EXPORT_SYMBOL_GPL vmlinux 0x9a6be5a4 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x9a7126bf __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x9a7641ac __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x9a8aa39b __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0x9a8d9f81 led_trigger_blink EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x9aaf8739 virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x9aafa4d7 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0x9ab32a09 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0x9ab7f8d5 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x9abae6b8 ksm_madvise EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops EXPORT_SYMBOL_GPL vmlinux 0x9acc4488 virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find @@ -24725,18 +24732,14 @@ EXPORT_SYMBOL_GPL vmlinux 0x9b3841f2 irq_domain_create_legacy EXPORT_SYMBOL_GPL vmlinux 0x9b489bc6 security_kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0x9b4a96dd kill_device -EXPORT_SYMBOL_GPL vmlinux 0x9b4eef6c task_cputime_adjusted EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle EXPORT_SYMBOL_GPL vmlinux 0x9b57f622 __io_uring_cmd_do_in_task -EXPORT_SYMBOL_GPL vmlinux 0x9b5eae7d register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring EXPORT_SYMBOL_GPL vmlinux 0x9b66d4e3 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x9b695805 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b742f53 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0x9b80d8e2 regmap_field_alloc EXPORT_SYMBOL_GPL vmlinux 0x9b87e36e devfreq_event_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x9b89bbf9 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x9b8b2a43 gpiod_set_config EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus @@ -24751,19 +24754,21 @@ EXPORT_SYMBOL_GPL vmlinux 0x9bf3da7b phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x9bf7ea7f virtio_device_freeze EXPORT_SYMBOL_GPL vmlinux 0x9bfd25c9 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x9bfe0264 regmap_write EXPORT_SYMBOL_GPL vmlinux 0x9c0446ea xfrm_state_afinfo_get_rcu EXPORT_SYMBOL_GPL vmlinux 0x9c07ada9 __fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x9c251102 regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0x9c2a09d8 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x9c3a614b i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x9c3c01ae gpiochip_line_is_open_drain EXPORT_SYMBOL_GPL vmlinux 0x9c431459 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x9c445ed6 folio_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x9c55dfd1 fixup_user_fault EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c721da6 bpf_trace_run10 EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on EXPORT_SYMBOL_GPL vmlinux 0x9c83ca20 acpi_subsys_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0x9c879cf7 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x9c8b29ca bpf_map_put -EXPORT_SYMBOL_GPL vmlinux 0x9c939c87 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x9c93e9ae clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid EXPORT_SYMBOL_GPL vmlinux 0x9c9ecced syscon_regmap_lookup_by_phandle_args EXPORT_SYMBOL_GPL vmlinux 0x9c9ecd5d thermal_acpi_hot_trip_temp @@ -24771,9 +24776,12 @@ EXPORT_SYMBOL_GPL vmlinux 0x9cbe96ed regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cda72c5 __traceiter_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals EXPORT_SYMBOL_GPL vmlinux 0x9cde2fbe power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x9ce06fa0 regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x9ce0adcb tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x9ce12e9f devl_dpipe_table_register EXPORT_SYMBOL_GPL vmlinux 0x9cf1b357 skb_append_pagefrags EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy EXPORT_SYMBOL_GPL vmlinux 0x9d093949 ata_std_error_handler @@ -24784,33 +24792,31 @@ EXPORT_SYMBOL_GPL vmlinux 0x9d2d3f5b pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x9d3369ad __ndisc_fill_addr_option EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x9d3be392 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0x9d3e0d54 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x9d474294 cpufreq_driver_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d4b9de1 regulator_set_voltage_time_sel EXPORT_SYMBOL_GPL vmlinux 0x9d52f0ac nfnl_ct_hook EXPORT_SYMBOL_GPL vmlinux 0x9d5ce3ed devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d72ea94 pid_vnr EXPORT_SYMBOL_GPL vmlinux 0x9d734739 elv_rqhash_del EXPORT_SYMBOL_GPL vmlinux 0x9d7374b7 pci_msix_alloc_irq_at +EXPORT_SYMBOL_GPL vmlinux 0x9d7907bf gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0x9d86ae40 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x9d8a614d dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d8c0fd8 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x9d8e9a8a mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio EXPORT_SYMBOL_GPL vmlinux 0x9d9ad1d5 usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x9d9e2e4c pci_num_vf EXPORT_SYMBOL_GPL vmlinux 0x9da0da3e balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x9da60a08 devlink_params_unregister EXPORT_SYMBOL_GPL vmlinux 0x9da61737 folio_test_hugetlb EXPORT_SYMBOL_GPL vmlinux 0x9dc595b2 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x9dc94e26 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0x9dcdb81c device_store_int EXPORT_SYMBOL_GPL vmlinux 0x9dd21878 fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x9dd75672 regulator_list_voltage_table EXPORT_SYMBOL_GPL vmlinux 0x9de433e6 crypto_register_ahashes EXPORT_SYMBOL_GPL vmlinux 0x9e13335b nvmem_add_one_cell EXPORT_SYMBOL_GPL vmlinux 0x9e1669a8 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x9e1f75df __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained EXPORT_SYMBOL_GPL vmlinux 0x9e25a6a5 skb_scrub_packet EXPORT_SYMBOL_GPL vmlinux 0x9e303cf4 platform_irq_count @@ -24819,11 +24825,11 @@ EXPORT_SYMBOL_GPL vmlinux 0x9e5d27a4 phy_start_machine EXPORT_SYMBOL_GPL vmlinux 0x9e6500a3 usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x9e6b97aa crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9e708378 devlink_resource_register EXPORT_SYMBOL_GPL vmlinux 0x9e78e038 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x9e82a76f netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0x9e8e1ad8 handle_simple_irq EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9ea6de31 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x9ecd971e blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier EXPORT_SYMBOL_GPL vmlinux 0x9edaf64b percpu_is_read_locked @@ -24831,65 +24837,69 @@ EXPORT_SYMBOL_GPL vmlinux 0x9ede7317 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new EXPORT_SYMBOL_GPL vmlinux 0x9ef61f0a ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x9f071706 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks EXPORT_SYMBOL_GPL vmlinux 0x9f09daf2 crypto_clone_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9f19ea21 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x9f1eda9f clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0x9f2b17d9 clocksource_verify_percpu -EXPORT_SYMBOL_GPL vmlinux 0x9f599220 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9f390d55 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x9f479218 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f7a4147 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x9f617215 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9f68b804 devl_traps_register EXPORT_SYMBOL_GPL vmlinux 0x9f85b6b9 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x9f8928f9 __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x9f9673fb sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x9fa1476f find_get_pid EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown EXPORT_SYMBOL_GPL vmlinux 0x9fa72e9e get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x9fae285d thermal_cooling_device_update -EXPORT_SYMBOL_GPL vmlinux 0x9fb7b085 __SCK__tp_func_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9fb7bcd2 __SCK__tp_func_non_standard_event EXPORT_SYMBOL_GPL vmlinux 0x9fbc303f anon_inode_getfile EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc02f97 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x9fc34f7b mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x9fce7b9a proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9ff1f659 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xa0088296 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0xa00a0a67 bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xa01755b8 acpi_device_update_power EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc EXPORT_SYMBOL_GPL vmlinux 0xa02991a6 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa02ed53b regmap_multi_reg_write EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock EXPORT_SYMBOL_GPL vmlinux 0xa0435d69 ata_bmdma_port_start EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock EXPORT_SYMBOL_GPL vmlinux 0xa063f0d6 dma_get_any_slave_channel -EXPORT_SYMBOL_GPL vmlinux 0xa07400d7 pid_nr_ns EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async EXPORT_SYMBOL_GPL vmlinux 0xa082be53 paste_selection EXPORT_SYMBOL_GPL vmlinux 0xa0839d13 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xa0861925 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xa0881fb5 __SCK__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xa098115b __SCT__tp_func_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xa09e7a25 __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0c8e0c4 backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0xa0cb1b92 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0xa0efc4f7 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0xa0f773a3 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xa0fced1d i2c_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xa107bee0 inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11adf5a of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa13313c6 icc_get_name EXPORT_SYMBOL_GPL vmlinux 0xa13412a0 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0xa15142d9 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa15ce48a gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xa15f196a tty_mode_ioctl EXPORT_SYMBOL_GPL vmlinux 0xa1617e38 wm831x_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0xa1725f36 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xa17420ab mmput_async EXPORT_SYMBOL_GPL vmlinux 0xa17cc8d2 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0xa1882e7b __traceiter_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xa18b3488 devm_regulator_put EXPORT_SYMBOL_GPL vmlinux 0xa18d5992 scsi_autopm_put_device EXPORT_SYMBOL_GPL vmlinux 0xa1a2cde2 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xa1b36bca __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xa1b8a8ce pci_iomap_wc_range EXPORT_SYMBOL_GPL vmlinux 0xa1bedf83 sdio_writew EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start @@ -24897,6 +24907,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing EXPORT_SYMBOL_GPL vmlinux 0xa1db5b4b tcp_register_ulp EXPORT_SYMBOL_GPL vmlinux 0xa1ef170d class_register +EXPORT_SYMBOL_GPL vmlinux 0xa1f36c56 __traceiter_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xa1f5af8d iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0xa1fdd0f3 vp_legacy_config_vector EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print @@ -24904,9 +24915,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xa2118afc usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0xa21e0630 serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa23537d9 __tracepoint_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa25f8e36 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa25cb9e5 cpufreq_register_driver EXPORT_SYMBOL_GPL vmlinux 0xa265dad3 serdev_device_close EXPORT_SYMBOL_GPL vmlinux 0xa268327e power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xa26c5e5c dev_pm_opp_config_clks_simple @@ -24924,7 +24934,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xa2dba009 clk_hw_register_fractional_divider EXPORT_SYMBOL_GPL vmlinux 0xa2e11909 i2c_dw_configure_master EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2ee8439 vfs_inode_has_locks EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported EXPORT_SYMBOL_GPL vmlinux 0xa31558b9 node_to_amd_nb EXPORT_SYMBOL_GPL vmlinux 0xa31b1c6a sysfs_file_change_owner @@ -24934,38 +24943,36 @@ EXPORT_SYMBOL_GPL vmlinux 0xa33a5500 pci_find_vsec_capability EXPORT_SYMBOL_GPL vmlinux 0xa33d22b0 mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0xa33ee918 __kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0xa3479765 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa34629e6 __traceiter_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xa353f839 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa36275f9 gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xa37b5203 ata_std_bios_param EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a8e25 devl_dpipe_headers_register EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xa38bbaad __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xa3965c24 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0xa3977df5 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xa3996169 __tracepoint_rpm_idle EXPORT_SYMBOL_GPL vmlinux 0xa39dc85b fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xa39f2216 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a23c68 filemap_add_folio EXPORT_SYMBOL_GPL vmlinux 0xa3a36c73 cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0xa3b938f1 bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bd0789 thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa3c04ed2 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0xa3c5a8cc ata_host_detach -EXPORT_SYMBOL_GPL vmlinux 0xa3c5fe82 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xa3d8b2a6 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xa3df811f virtqueue_enable_cb EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f0e4cd phy_restart_aneg EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40c6500 watchdog_set_restart_priority EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy EXPORT_SYMBOL_GPL vmlinux 0xa418ac6b devm_spi_mem_dirmap_create EXPORT_SYMBOL_GPL vmlinux 0xa41cfcd2 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0xa4281663 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa41d8252 pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xa42af52d iommu_device_register -EXPORT_SYMBOL_GPL vmlinux 0xa42d657f __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0xa42e569a mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xa42fd392 posix_clock_register EXPORT_SYMBOL_GPL vmlinux 0xa4352e2e virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0xa4408b87 crypto_register_scomp EXPORT_SYMBOL_GPL vmlinux 0xa442083b devm_hte_register_chip @@ -24976,7 +24983,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xa45b28f5 bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xa46cef0a __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xa4695291 __SCK__tp_func_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0xa474f4a5 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx EXPORT_SYMBOL_GPL vmlinux 0xa48fc8c5 exportfs_decode_fh_raw @@ -24989,45 +24996,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis EXPORT_SYMBOL_GPL vmlinux 0xa4c1c29f dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xa4d02482 regmap_field_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0xa4df4903 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0xa4e4b8b1 ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0xa4e73574 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0xa4e806e9 devlink_dpipe_table_counter_enabled EXPORT_SYMBOL_GPL vmlinux 0xa4fd6c14 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xa50888fd gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa50a91bb trace_event_buffer_lock_reserve EXPORT_SYMBOL_GPL vmlinux 0xa51c8161 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa5345a0e gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa5363689 nd_cmd_out_size EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear EXPORT_SYMBOL_GPL vmlinux 0xa54e4d85 dev_pm_genpd_suspend EXPORT_SYMBOL_GPL vmlinux 0xa5519cb1 hid_bpf_connect_device -EXPORT_SYMBOL_GPL vmlinux 0xa564e97b devl_params_register EXPORT_SYMBOL_GPL vmlinux 0xa5695fb5 ping_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0xa5713826 trace_array_get_by_name EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev EXPORT_SYMBOL_GPL vmlinux 0xa58f8dfa __regmap_init_spi -EXPORT_SYMBOL_GPL vmlinux 0xa5a47baf to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0xa5b2cb42 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported -EXPORT_SYMBOL_GPL vmlinux 0xa5cd2e4f blk_trace_setup EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint -EXPORT_SYMBOL_GPL vmlinux 0xa5d2371f eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name EXPORT_SYMBOL_GPL vmlinux 0xa5decbac exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5f77170 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa5fcda80 nvdimm_volatile_region_create EXPORT_SYMBOL_GPL vmlinux 0xa601459b debugfs_create_x64 EXPORT_SYMBOL_GPL vmlinux 0xa609c469 call_srcu EXPORT_SYMBOL_GPL vmlinux 0xa60e2b7a pse_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xa6117564 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa61c1163 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xa627f074 ata_pci_device_do_suspend EXPORT_SYMBOL_GPL vmlinux 0xa62bfc66 security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0xa63bd6e9 mmc_prepare_busy_cmd EXPORT_SYMBOL_GPL vmlinux 0xa65fe57c dev_pm_genpd_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xa6680748 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0xa675d007 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xa66ef0ba __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa6765602 trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0xa6776767 kthread_unpark EXPORT_SYMBOL_GPL vmlinux 0xa6785ea5 skb_gso_validate_mac_len EXPORT_SYMBOL_GPL vmlinux 0xa68285fc nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa68eccf4 blk_trace_remove EXPORT_SYMBOL_GPL vmlinux 0xa69c0bd0 hsu_dma_get_status EXPORT_SYMBOL_GPL vmlinux 0xa69fdf52 udp4_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name @@ -25038,11 +25044,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xa6c4319e sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0xa6c4ff44 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0xa6cb9f33 cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0xa6d83bb8 __SCK__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync EXPORT_SYMBOL_GPL vmlinux 0xa6e1c240 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0xa6e72021 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xa6f1604d devlink_region_snapshot_id_get EXPORT_SYMBOL_GPL vmlinux 0xa6f58470 reset_simple_ops EXPORT_SYMBOL_GPL vmlinux 0xa6f82d03 spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0xa6f9c17c dst_cache_set_ip4 @@ -25057,21 +25061,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity EXPORT_SYMBOL_GPL vmlinux 0xa7241959 pkcs7_supply_detached_data EXPORT_SYMBOL_GPL vmlinux 0xa727a75c driver_set_override -EXPORT_SYMBOL_GPL vmlinux 0xa72b5254 __tracepoint_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock EXPORT_SYMBOL_GPL vmlinux 0xa7547136 nvmem_device_find EXPORT_SYMBOL_GPL vmlinux 0xa75a6661 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0xa75ed863 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xa77abbce pm_generic_restore EXPORT_SYMBOL_GPL vmlinux 0xa78dfdd9 nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xa7976d61 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0xa7a33042 dax_writeback_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0xa7a5608a __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa7b97b74 rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0xa7c28b7c xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0xa7c83645 pci_p2pmem_find_many EXPORT_SYMBOL_GPL vmlinux 0xa7ccea0c fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0xa7cfacf5 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0xa7d0f487 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xa7e13dac regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa7eaf744 filemap_read EXPORT_SYMBOL_GPL vmlinux 0xa7ee7a11 register_asymmetric_key_parser EXPORT_SYMBOL_GPL vmlinux 0xa8102319 pci_p2pmem_alloc_sgl EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu @@ -25079,18 +25082,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xa84ca051 account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xa85bbe00 __SCT__tp_func_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xa8622ce5 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xa86269bf thermal_cooling_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xa869595c serial8250_do_set_divisor EXPORT_SYMBOL_GPL vmlinux 0xa86ba710 mptcp_pm_get_add_addr_signal_max EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next EXPORT_SYMBOL_GPL vmlinux 0xa89385ac blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xa898cb80 devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key EXPORT_SYMBOL_GPL vmlinux 0xa8a0f60d vcap_del_rules EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark EXPORT_SYMBOL_GPL vmlinux 0xa8aabe4c serial8250_em485_config EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic +EXPORT_SYMBOL_GPL vmlinux 0xa8c96284 synth_event_trace_start EXPORT_SYMBOL_GPL vmlinux 0xa8cc5125 component_bind_all EXPORT_SYMBOL_GPL vmlinux 0xa8d3e16c sock_diag_save_cookie EXPORT_SYMBOL_GPL vmlinux 0xa8ef354c tcp_get_syncookie_mss @@ -25110,10 +25111,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xa962e9ad crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0xa967e1c9 fwnode_handle_get EXPORT_SYMBOL_GPL vmlinux 0xa96c7001 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0xa96e39af devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa97cdfde regulator_allow_bypass EXPORT_SYMBOL_GPL vmlinux 0xa9850cf7 register_fprobe -EXPORT_SYMBOL_GPL vmlinux 0xa985723e bpf_trace_run11 EXPORT_SYMBOL_GPL vmlinux 0xa989859b genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0xa98c6fa4 nop_posix_acl_access EXPORT_SYMBOL_GPL vmlinux 0xa995d555 devm_nvmem_cell_get @@ -25122,55 +25122,58 @@ EXPORT_SYMBOL_GPL vmlinux 0xa9bb5b32 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0xa9c0f254 tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0xa9c37a6f usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xa9c94442 spi_take_timestamp_pre EXPORT_SYMBOL_GPL vmlinux 0xaa04ba28 umd_unload_blob -EXPORT_SYMBOL_GPL vmlinux 0xaa05d982 make_device_exclusive_range EXPORT_SYMBOL_GPL vmlinux 0xaa1b43ad genphy_c45_pma_baset1_setup_master_slave EXPORT_SYMBOL_GPL vmlinux 0xaa32d56f pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xaa380417 ata_dummy_port_info EXPORT_SYMBOL_GPL vmlinux 0xaa393cc6 mas_preallocate EXPORT_SYMBOL_GPL vmlinux 0xaa440ce8 __virtqueue_unbreak EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc -EXPORT_SYMBOL_GPL vmlinux 0xaa60b06b regulator_get_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush EXPORT_SYMBOL_GPL vmlinux 0xaa6d633e user_read -EXPORT_SYMBOL_GPL vmlinux 0xaa75c876 spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xaa771521 phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xaa78f7cd scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8e2427 __put_task_struct EXPORT_SYMBOL_GPL vmlinux 0xaaa38f42 fsverity_get_digest EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0xaabc2d96 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xaac88b0e spi_new_device EXPORT_SYMBOL_GPL vmlinux 0xaac99afe power_supply_put EXPORT_SYMBOL_GPL vmlinux 0xaad8aac2 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0xaaee3092 cpufreq_enable_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0xaaf5246d bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xab0bd631 sysfs_notify EXPORT_SYMBOL_GPL vmlinux 0xab0da23b transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0xab173e26 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xab1bc9ca perf_aux_output_skip EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab3083b4 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xab30ab4f regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xab348c88 class_create +EXPORT_SYMBOL_GPL vmlinux 0xab35b57b __tracepoint_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xab377c6a devm_mipi_dsi_attach EXPORT_SYMBOL_GPL vmlinux 0xab3d4194 mptcp_get_reset_option EXPORT_SYMBOL_GPL vmlinux 0xab3dc063 fuse_dev_fiq_ops EXPORT_SYMBOL_GPL vmlinux 0xab44c4fd pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0xab4aa427 ata_sff_thaw EXPORT_SYMBOL_GPL vmlinux 0xab595673 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xaba13b92 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xabb19dbd gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xabb207ed spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xabb81303 usb_role_switch_find_by_fwnode EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep +EXPORT_SYMBOL_GPL vmlinux 0xabca14fa bind_interdomain_evtchn_to_irq_lateeoi EXPORT_SYMBOL_GPL vmlinux 0xabd2257d lp8788_write_byte EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xabf5b9db sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0xabf7f689 perf_report_aux_output_id EXPORT_SYMBOL_GPL vmlinux 0xabfc2a57 usb_get_intf EXPORT_SYMBOL_GPL vmlinux 0xac56db8a driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0xac58179b rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xac5a6bf8 trace_remove_event_call EXPORT_SYMBOL_GPL vmlinux 0xac5e904e xfrm_audit_state_icvfail -EXPORT_SYMBOL_GPL vmlinux 0xac74801a __tracepoint_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xac8306e2 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xac82acc0 register_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0xac8d51a4 kthread_data EXPORT_SYMBOL_GPL vmlinux 0xaca1c2cc tty_ldisc_ref EXPORT_SYMBOL_GPL vmlinux 0xacaab013 irq_domain_free_irqs_parent @@ -25178,21 +25181,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xacc2be46 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now EXPORT_SYMBOL_GPL vmlinux 0xacffb5fd uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0xad06a7c7 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xad137335 gpio_to_desc EXPORT_SYMBOL_GPL vmlinux 0xad156d4f sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0xad1dbf67 ata_bmdma_port_ops EXPORT_SYMBOL_GPL vmlinux 0xad20161e ping_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0xad44e005 pm_clk_add_clk EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad56b1f7 ata_dev_next EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc EXPORT_SYMBOL_GPL vmlinux 0xad641dfc vfs_get_acl EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad769a4a devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict EXPORT_SYMBOL_GPL vmlinux 0xad9929c3 gpiod_export_link EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy EXPORT_SYMBOL_GPL vmlinux 0xadb912cc sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xadbed7be put_pid EXPORT_SYMBOL_GPL vmlinux 0xadc501bc sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0xadcdee4e crypto_larval_kill EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info @@ -25209,6 +25215,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xae8df8bf shash_ahash_finup EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask EXPORT_SYMBOL_GPL vmlinux 0xaeb19506 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xaec3c2fc __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xaecbad8a pinctrl_dev_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xaed97527 gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0xaeef3c13 device_link_del @@ -25216,29 +25223,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xaefc683a acpi_set_modalias EXPORT_SYMBOL_GPL vmlinux 0xaf04d892 mddev_resume EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf08c6fb regulator_get_error_flags EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1aa472 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xaf1c962b netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0xaf28184b regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0xaf2d2eba do_unregister_con_driver EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check EXPORT_SYMBOL_GPL vmlinux 0xaf428325 modify_ftrace_direct EXPORT_SYMBOL_GPL vmlinux 0xaf493935 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xaf4dc3d6 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xaf4f1acb tps6586x_update -EXPORT_SYMBOL_GPL vmlinux 0xaf5d3440 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xaf519bcb __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xaf69c246 wm831x_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device EXPORT_SYMBOL_GPL vmlinux 0xaf878288 usb_driver_release_interface EXPORT_SYMBOL_GPL vmlinux 0xaf96d220 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xafa002ca is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0xafc251e4 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0xafcd1cb1 vcap_chain_id_to_lookup EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string EXPORT_SYMBOL_GPL vmlinux 0xafe89b8f dev_set_name EXPORT_SYMBOL_GPL vmlinux 0xafef345a usb_deregister EXPORT_SYMBOL_GPL vmlinux 0xaff9912a vring_create_virtqueue_dma -EXPORT_SYMBOL_GPL vmlinux 0xb00db207 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xb01176ce __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xaffe4710 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xb00713e9 __tracepoint_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xb02af2d4 kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0xb02c5777 acpi_quirk_skip_serdev_enumeration @@ -25247,7 +25257,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xb04bd3b6 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0xb05c39e2 rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0xb0609888 devm_bitmap_zalloc -EXPORT_SYMBOL_GPL vmlinux 0xb06e457f gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0xb06ec77b iommu_sva_unbind_device EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress @@ -25256,11 +25265,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xb0989082 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xb0996b8d sk_msg_zerocopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0ba1ed0 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e79032 register_user_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xb0e7ab1f __traceiter_console EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed EXPORT_SYMBOL_GPL vmlinux 0xb0ecd58a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb0edda6b __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb0ff47d4 __SCK__tp_func_xhci_dbg_quirks EXPORT_SYMBOL_GPL vmlinux 0xb10163ba rio_release_inb_pwrite EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xb11cc43b __SCT__tp_func_br_fdb_update @@ -25273,21 +25284,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xb138d68b vcap_tc_flower_handler_ipv6_usage EXPORT_SYMBOL_GPL vmlinux 0xb13e1800 dax_recovery_write EXPORT_SYMBOL_GPL vmlinux 0xb14c06ac led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb14f0c24 clk_hw_forward_rate_request EXPORT_SYMBOL_GPL vmlinux 0xb15f7136 adp5520_set_bits EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put EXPORT_SYMBOL_GPL vmlinux 0xb170f888 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xb1764578 register_btf_id_dtor_kfuncs EXPORT_SYMBOL_GPL vmlinux 0xb17b03e6 regulator_desc_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xb180937b get_task_pid EXPORT_SYMBOL_GPL vmlinux 0xb1809631 __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xb18aa4ef trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0xb1924aef __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb188cc71 put_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xb19c6d4b pci_pasid_features EXPORT_SYMBOL_GPL vmlinux 0xb19cf7b3 devm_pinctrl_register EXPORT_SYMBOL_GPL vmlinux 0xb1a07346 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xb1ab3fea __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xb1b62f9d __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb1b7499e __tracepoint_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1c0a307 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xb1dfecea power_supply_battery_info_properties_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string @@ -25298,14 +25310,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xb2160402 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22c8c66 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq EXPORT_SYMBOL_GPL vmlinux 0xb240bcc6 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0xb247f3f1 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0xb2559509 find_get_pid EXPORT_SYMBOL_GPL vmlinux 0xb256be16 efivar_is_available -EXPORT_SYMBOL_GPL vmlinux 0xb25d9787 thermal_zone_device_update EXPORT_SYMBOL_GPL vmlinux 0xb2601ea3 tps6586x_write EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr @@ -25322,24 +25330,23 @@ EXPORT_SYMBOL_GPL vmlinux 0xb2bcb12d devm_clk_get_optional_enabled EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait EXPORT_SYMBOL_GPL vmlinux 0xb2c58803 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0xb2cf7c38 pm_relax EXPORT_SYMBOL_GPL vmlinux 0xb2d89a0e pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0xb2e67757 devl_linecard_create EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem -EXPORT_SYMBOL_GPL vmlinux 0xb2ef77bd gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb3182e53 watchdog_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init EXPORT_SYMBOL_GPL vmlinux 0xb33622dd ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xb34735f9 __tracepoint_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xb3483619 iommu_device_unlink -EXPORT_SYMBOL_GPL vmlinux 0xb34ecc38 __mmdrop EXPORT_SYMBOL_GPL vmlinux 0xb36b9111 of_devfreq_cooling_register_power EXPORT_SYMBOL_GPL vmlinux 0xb377de2e sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0xb37b3901 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xb38a56fb gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xb391f76f ata_host_detach EXPORT_SYMBOL_GPL vmlinux 0xb39665cc kgdb_register_io_module EXPORT_SYMBOL_GPL vmlinux 0xb3a27521 serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xb3b34112 rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb3baa5ba clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb3acc7eb clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0xb3be5213 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0xb3c92706 dev_err_probe EXPORT_SYMBOL_GPL vmlinux 0xb3e0baf9 skb_clone_tx_timestamp @@ -25347,31 +25354,31 @@ EXPORT_SYMBOL_GPL vmlinux 0xb3f3a860 fib_nh_common_release EXPORT_SYMBOL_GPL vmlinux 0xb3fcc3f0 rio_mport_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0xb400bda1 devl_rate_node_create EXPORT_SYMBOL_GPL vmlinux 0xb4096d8d component_del EXPORT_SYMBOL_GPL vmlinux 0xb411fe8f tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xb4161a58 regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0xb4165b90 inet_hash EXPORT_SYMBOL_GPL vmlinux 0xb41aa434 dev_pm_opp_adjust_voltage EXPORT_SYMBOL_GPL vmlinux 0xb420fe4f create_signature -EXPORT_SYMBOL_GPL vmlinux 0xb4385cfe regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb42ae782 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0xb43da8ba device_create_with_groups EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb450b5c3 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0xb46630d8 __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xb46db92e acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xb47bfd7f __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xb4802421 ata_cable_40wire EXPORT_SYMBOL_GPL vmlinux 0xb486cfa1 tcp_unregister_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb4a650ed regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xb4ab6f95 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xb4b4dc3f cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd265b vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0xb4d488ee pci_epc_get_msix EXPORT_SYMBOL_GPL vmlinux 0xb4d4cf15 xenbus_dev_probe EXPORT_SYMBOL_GPL vmlinux 0xb4dbebb8 pci_walk_bus EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length EXPORT_SYMBOL_GPL vmlinux 0xb4f500c2 irq_domain_translate_onecell -EXPORT_SYMBOL_GPL vmlinux 0xb4f89e00 __SCK__tp_func_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc EXPORT_SYMBOL_GPL vmlinux 0xb50784f4 raw_abort EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list @@ -25381,10 +25388,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xb52090ed crypto_alloc_sig EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge EXPORT_SYMBOL_GPL vmlinux 0xb5273cd1 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xb52e9afc devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xb537cf15 gpiod_disable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xb5440be9 crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats +EXPORT_SYMBOL_GPL vmlinux 0xb5580865 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xb55e9f1a pci_epc_unmap_addr EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul EXPORT_SYMBOL_GPL vmlinux 0xb562627c pinctrl_pm_select_default_state @@ -25397,9 +25403,8 @@ EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq EXPORT_SYMBOL_GPL vmlinux 0xb5b2b108 fwnode_graph_get_remote_endpoint EXPORT_SYMBOL_GPL vmlinux 0xb5b4fc51 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xb5b58c63 __SCK__tp_func_xhci_dbg_init EXPORT_SYMBOL_GPL vmlinux 0xb5e8b410 dst_cache_get_ip4 -EXPORT_SYMBOL_GPL vmlinux 0xb5ed1ee6 devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0xb5fc5bc9 __tracepoint_io_page_fault EXPORT_SYMBOL_GPL vmlinux 0xb5fe2575 iomap_seek_hole EXPORT_SYMBOL_GPL vmlinux 0xb600ddb1 scsi_alloc_request EXPORT_SYMBOL_GPL vmlinux 0xb6098f45 auxiliary_find_device @@ -25408,18 +25413,15 @@ EXPORT_SYMBOL_GPL vmlinux 0xb6293ac1 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xb62c014a bpf_prog_create_from_user EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb639a7eb i2c_client_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm EXPORT_SYMBOL_GPL vmlinux 0xb64a7211 phy_create_lookup EXPORT_SYMBOL_GPL vmlinux 0xb6500e3f crypto_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb66e0edc spi_sync EXPORT_SYMBOL_GPL vmlinux 0xb6714499 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0xb677c585 regcache_sync EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket EXPORT_SYMBOL_GPL vmlinux 0xb67dd786 sysfs_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb696b5e8 gpiochip_add_pingroup_range EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate EXPORT_SYMBOL_GPL vmlinux 0xb69ea526 scsi_unregister_device_handler EXPORT_SYMBOL_GPL vmlinux 0xb6a1f298 dma_get_slave_channel @@ -25428,20 +25430,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0xb6ef5e48 events_sysfs_show -EXPORT_SYMBOL_GPL vmlinux 0xb6f4f732 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xb6f547eb devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb6fa76ad regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0xb71d182f blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xb72d0807 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups EXPORT_SYMBOL_GPL vmlinux 0xb74176f8 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xb74329f0 __tracepoint_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xb7486809 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init -EXPORT_SYMBOL_GPL vmlinux 0xb75939f0 gpiod_is_active_low EXPORT_SYMBOL_GPL vmlinux 0xb75ff6a7 led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0xb763b239 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xb767273f bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xb7959025 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xb798d1f3 i2c_bus_type EXPORT_SYMBOL_GPL vmlinux 0xb79e0794 regulator_list_voltage_linear EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude EXPORT_SYMBOL_GPL vmlinux 0xb7af1da3 fat_time_unix2fat @@ -25462,7 +25464,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0xb85b4022 fib_info_nh_uses_dev EXPORT_SYMBOL_GPL vmlinux 0xb8686b0d unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb8773eb7 devl_linecard_create EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87b61ed regmap_noinc_write EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable EXPORT_SYMBOL_GPL vmlinux 0xb883d1d9 devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state @@ -25474,11 +25478,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xb8b8ec8d acpi_create_platform_device EXPORT_SYMBOL_GPL vmlinux 0xb8be56b6 clk_hw_register_composite EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put -EXPORT_SYMBOL_GPL vmlinux 0xb8cdd554 gpiochip_irq_domain_deactivate EXPORT_SYMBOL_GPL vmlinux 0xb8ce468c clk_hw_register_fixed_factor_parent_hw EXPORT_SYMBOL_GPL vmlinux 0xb8d8cc97 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0xb8e29104 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xb8e575fb thermal_zone_unbind_cooling_device EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc EXPORT_SYMBOL_GPL vmlinux 0xb8f40ccd crypto_unregister_skciphers EXPORT_SYMBOL_GPL vmlinux 0xb8f6e296 __nvmem_layout_register @@ -25492,12 +25494,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xb929f305 genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0xb939b1a0 rio_add_net EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb94fd59c clk_hw_forward_rate_request EXPORT_SYMBOL_GPL vmlinux 0xb95542c1 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0xb959ec6b __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xb95dfdc3 replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0xb966aadc __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb966bce6 wb_writeout_inc EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush EXPORT_SYMBOL_GPL vmlinux 0xb97ca0e3 usb_check_int_endpoints EXPORT_SYMBOL_GPL vmlinux 0xb98193f5 tty_get_icount @@ -25506,40 +25503,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch EXPORT_SYMBOL_GPL vmlinux 0xb9a2a087 xenbus_watch_path EXPORT_SYMBOL_GPL vmlinux 0xb9a6f60f debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb9ace70f dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bef884 dev_pm_qos_hide_flags EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xb9c6d054 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xb9cff8b5 hrtimer_sleeper_start_expires EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first EXPORT_SYMBOL_GPL vmlinux 0xb9d52ed8 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0xb9ea612f intel_pinctrl_probe_by_hid EXPORT_SYMBOL_GPL vmlinux 0xb9ef5a92 class_compat_remove_link EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba0381de gpiochip_reqres_irq EXPORT_SYMBOL_GPL vmlinux 0xba03ad0a pci_pri_supported EXPORT_SYMBOL_GPL vmlinux 0xba094957 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xba0e2a9d regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xba10cdf5 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xba1f7605 gpiochip_line_is_valid EXPORT_SYMBOL_GPL vmlinux 0xba20537a dm_device_name EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get EXPORT_SYMBOL_GPL vmlinux 0xba310dd8 phy_pm_runtime_put_sync -EXPORT_SYMBOL_GPL vmlinux 0xba315b84 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0xba34c58f fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xba493c86 devl_sb_register EXPORT_SYMBOL_GPL vmlinux 0xba539d15 dma_pci_p2pdma_supported EXPORT_SYMBOL_GPL vmlinux 0xba5625e9 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xba57ee99 regulator_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xba5ad8da irq_create_fwspec_mapping EXPORT_SYMBOL_GPL vmlinux 0xba63039d strp_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xba739bba regmap_field_bulk_free EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap -EXPORT_SYMBOL_GPL vmlinux 0xba9775ca regmap_get_val_bytes EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac796b3 clk_hw_get_name EXPORT_SYMBOL_GPL vmlinux 0xbac800df list_lru_walk_one EXPORT_SYMBOL_GPL vmlinux 0xbadc80b2 arch_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xbade3523 serial8250_set_defaults EXPORT_SYMBOL_GPL vmlinux 0xbaf1ae65 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xbaf29b7e __traceiter_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid -EXPORT_SYMBOL_GPL vmlinux 0xbafe9639 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xbb006021 __tracepoint_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register EXPORT_SYMBOL_GPL vmlinux 0xbb04407c devm_of_icc_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xbb069313 pci_iov_get_pf_drvdata @@ -25555,70 +25556,61 @@ EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xbb44e9e4 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xbb451eaa rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xbb47a91c gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbb50c207 thermal_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xbb51e191 __unwind_start EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id -EXPORT_SYMBOL_GPL vmlinux 0xbb56a830 task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xbb5ca605 extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0xbb5e5569 crypto_alloc_acomp_node EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb691f44 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn -EXPORT_SYMBOL_GPL vmlinux 0xbb7faf31 regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xbb731fcc regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xbb9d257a sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0xbbaaab23 fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0xbbab1ef2 __tracepoint_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xbbace938 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0xbbb1b8ad __hwspin_lock_timeout EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info -EXPORT_SYMBOL_GPL vmlinux 0xbbbe5cd5 css_next_descendant_pre -EXPORT_SYMBOL_GPL vmlinux 0xbbc782f5 devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0xbbd7194f perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xbbd82c93 gpiod_unexport EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID EXPORT_SYMBOL_GPL vmlinux 0xbbe97659 scsi_build_sense -EXPORT_SYMBOL_GPL vmlinux 0xbbef3427 regmap_get_val_endian EXPORT_SYMBOL_GPL vmlinux 0xbbf295d5 disk_uevent EXPORT_SYMBOL_GPL vmlinux 0xbbf7f0a1 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xbbfd4426 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0xbc055956 fscrypt_d_revalidate EXPORT_SYMBOL_GPL vmlinux 0xbc0d679e iommu_device_release_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xbc14c22b wm8400_reset_codec_reg_cache EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap EXPORT_SYMBOL_GPL vmlinux 0xbc31aedd unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xbc37fd8b __SCK__tp_func_block_split EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time EXPORT_SYMBOL_GPL vmlinux 0xbc4276f3 usb_string EXPORT_SYMBOL_GPL vmlinux 0xbc484cd2 pm_clk_remove EXPORT_SYMBOL_GPL vmlinux 0xbc495666 __fscrypt_encrypt_symlink EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel EXPORT_SYMBOL_GPL vmlinux 0xbc5c8e34 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xbc5dc8ba blk_add_driver_data EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus EXPORT_SYMBOL_GPL vmlinux 0xbc613fb3 serial8250_do_shutdown EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc6e7002 __tracepoint_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xbc7cd717 ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap EXPORT_SYMBOL_GPL vmlinux 0xbc95d82b srcu_notifier_chain_register EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbca17636 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0xbcaf6eae regmap_write EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbccd561c ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0xbcd48198 alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name EXPORT_SYMBOL_GPL vmlinux 0xbce12556 clk_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xbceeea89 ping_seq_start EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool EXPORT_SYMBOL_GPL vmlinux 0xbcfaaec3 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbd04ee85 clk_hw_set_rate_range EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd07443a perf_tp_event EXPORT_SYMBOL_GPL vmlinux 0xbd0acaec devm_kstrdup EXPORT_SYMBOL_GPL vmlinux 0xbd0cdf8a scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xbd195c03 __SCK__tp_func_console EXPORT_SYMBOL_GPL vmlinux 0xbd2991ae reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbd310fd3 vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq EXPORT_SYMBOL_GPL vmlinux 0xbd418856 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0xbd4e5348 fbcon_modechange_possible @@ -25626,22 +25618,26 @@ EXPORT_SYMBOL_GPL vmlinux 0xbd64613b spi_mem_adjust_op_size EXPORT_SYMBOL_GPL vmlinux 0xbd678291 ata_slave_link_init EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8b6a6d regulator_get_hardware_vsel_register EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle EXPORT_SYMBOL_GPL vmlinux 0xbda047da kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbda06f2f filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xbdabd3b3 gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdb5fbfe regulator_bulk_disable EXPORT_SYMBOL_GPL vmlinux 0xbdbbad04 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbdde91ca pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0xbdf8bf64 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xbdfcf044 regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0xbdfdf052 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbe057737 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xbe0d0971 ata_pci_device_suspend EXPORT_SYMBOL_GPL vmlinux 0xbe1b457a regulator_map_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xbe2449a1 sk_msg_return EXPORT_SYMBOL_GPL vmlinux 0xbe2cb122 skb_zerocopy_headlen EXPORT_SYMBOL_GPL vmlinux 0xbe2d545e devl_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xbe3afbcc i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbe3e5263 devm_i2c_add_adapter EXPORT_SYMBOL_GPL vmlinux 0xbe41fa81 pci_vpd_alloc EXPORT_SYMBOL_GPL vmlinux 0xbe4a6c9e iptunnel_handle_offloads EXPORT_SYMBOL_GPL vmlinux 0xbe4c411a usb_check_bulk_endpoints @@ -25653,7 +25649,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xbe748b1f intel_find_matching_signature EXPORT_SYMBOL_GPL vmlinux 0xbe79bc4f pci_sriov_configure_simple EXPORT_SYMBOL_GPL vmlinux 0xbe82be94 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xbe950159 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xbe93d0b8 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xbe9595f0 xenbus_dev_changed EXPORT_SYMBOL_GPL vmlinux 0xbe988a30 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write @@ -25666,9 +25662,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xbeebe273 crypto_sig_set_pubkey EXPORT_SYMBOL_GPL vmlinux 0xbefd1bcc fwnode_property_read_string_array EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0c350f __tracepoint_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xbf1cb4fb perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0xbf24979f of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0xbf287da2 platform_find_device_by_driver EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled EXPORT_SYMBOL_GPL vmlinux 0xbf4508e0 uart_console_write @@ -25676,36 +25672,37 @@ EXPORT_SYMBOL_GPL vmlinux 0xbf4805a7 exportfs_encode_fh EXPORT_SYMBOL_GPL vmlinux 0xbf485db3 phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0xbf4880e9 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xbf4baf3e events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xbf6d7bc7 __folio_lock_killable EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports EXPORT_SYMBOL_GPL vmlinux 0xbfc47478 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0xbfc49d9b __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0xbfd60e33 __tracepoint_napi_poll EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe6878f devlink_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp EXPORT_SYMBOL_GPL vmlinux 0xbff1e963 usb_alloc_streams EXPORT_SYMBOL_GPL vmlinux 0xbff3e519 proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0xbfff280e crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xc000b96d wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0xc0022486 devm_regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc009a093 user_describe EXPORT_SYMBOL_GPL vmlinux 0xc00dc09e bsg_job_put EXPORT_SYMBOL_GPL vmlinux 0xc010d253 __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0xc05520b5 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xc02c3d1f devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0xc05fbc94 genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0xc061f90c l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0xc074d8c0 devm_regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0xc085ae33 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xc07b80aa nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0xc0875f7a devlink_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0xc0889e34 __SCK__tp_func_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0xc08ae499 __netpoll_free EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0xc08c410d pci_p2pmem_virt_to_bus EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings EXPORT_SYMBOL_GPL vmlinux 0xc09938bd ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xc0a303bd __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 EXPORT_SYMBOL_GPL vmlinux 0xc0bc5f25 pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0xc0c3ab13 pm_runtime_no_callbacks -EXPORT_SYMBOL_GPL vmlinux 0xc0c97a7d clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name EXPORT_SYMBOL_GPL vmlinux 0xc0e046f2 devm_gpio_request EXPORT_SYMBOL_GPL vmlinux 0xc0e27f8e crypto_unregister_ahashes @@ -25715,10 +25712,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xc10c070f usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xc117a77f blk_execute_rq_nowait EXPORT_SYMBOL_GPL vmlinux 0xc11aa87a crypto_enqueue_request_head -EXPORT_SYMBOL_GPL vmlinux 0xc126810f dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xc1288028 phy_get_rate_matching EXPORT_SYMBOL_GPL vmlinux 0xc1320af3 devl_unlock EXPORT_SYMBOL_GPL vmlinux 0xc137aa27 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xc1577bd9 __tracepoint_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xc15a8621 serdev_controller_remove EXPORT_SYMBOL_GPL vmlinux 0xc167f217 pstore_unregister EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device @@ -25727,20 +25724,22 @@ EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids EXPORT_SYMBOL_GPL vmlinux 0xc190eeb6 md_start EXPORT_SYMBOL_GPL vmlinux 0xc192dd9a sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xc193fc72 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xc1a52327 __traceiter_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xc1a682be pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xc1b335da netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0xc1bc742a peernet2id_alloc EXPORT_SYMBOL_GPL vmlinux 0xc1cc3074 isa_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xc1e69770 blk_rq_is_poll EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc1eed42e gpiod_get_raw_value EXPORT_SYMBOL_GPL vmlinux 0xc1f7e77f __dev_fwnode_const EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf -EXPORT_SYMBOL_GPL vmlinux 0xc222cebf trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xc204008a __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xc20d5aaa regulator_register EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode -EXPORT_SYMBOL_GPL vmlinux 0xc249a515 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0xc2530d4f __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xc253c85d ima_file_check EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock @@ -25756,38 +25755,34 @@ EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc2c4b254 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0xc2c830a0 devm_clk_get_optional_prepared -EXPORT_SYMBOL_GPL vmlinux 0xc2ce84df spi_add_device -EXPORT_SYMBOL_GPL vmlinux 0xc2d931a7 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc2ca651d ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e548ba devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xc3004ade msi_device_has_isolated_msi EXPORT_SYMBOL_GPL vmlinux 0xc31084d5 pinctrl_enable -EXPORT_SYMBOL_GPL vmlinux 0xc3114f9a __tracepoint_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xc313c32f thermal_cooling_device_update EXPORT_SYMBOL_GPL vmlinux 0xc31769cc strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xc328e60c __SCK__tp_func_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xc32fdb0d __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0xc3386b89 crypto_aead_setauthsize EXPORT_SYMBOL_GPL vmlinux 0xc33ca570 fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc342700f __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0xc3472fb6 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xc35e09f7 kick_process EXPORT_SYMBOL_GPL vmlinux 0xc3652942 vp_modern_get_status EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc375ffdd __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xc377a946 devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xc37a8bbd ip6_append_data EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl EXPORT_SYMBOL_GPL vmlinux 0xc39b457b tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xc39e4892 __tracepoint_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0xc39f28fd kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0xc3a7ca39 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0xc3b0823c edac_device_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xc3b2e685 vfs_getxattr EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name EXPORT_SYMBOL_GPL vmlinux 0xc3c997b4 sdio_signal_irq EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name -EXPORT_SYMBOL_GPL vmlinux 0xc3ccdd43 gpiod_set_raw_value EXPORT_SYMBOL_GPL vmlinux 0xc3dda1be skcipher_walk_async EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status @@ -25795,10 +25790,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xc3faaadb __hvc_resize EXPORT_SYMBOL_GPL vmlinux 0xc3fc2ee8 rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xc4008d55 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xc403123f spi_take_timestamp_post EXPORT_SYMBOL_GPL vmlinux 0xc40910ef dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0xc40d9e0c regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xc40df8d1 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc413f38b replace_page_cache_folio EXPORT_SYMBOL_GPL vmlinux 0xc41a8113 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0xc41cff47 __traceiter_ata_bmdma_status EXPORT_SYMBOL_GPL vmlinux 0xc42069fa vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0xc4210077 get_cpu_device EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all @@ -25808,34 +25804,40 @@ EXPORT_SYMBOL_GPL vmlinux 0xc430820d param_set_uint_minmax EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf EXPORT_SYMBOL_GPL vmlinux 0xc4454c8e platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc4461313 __tracepoint_arm_event EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm EXPORT_SYMBOL_GPL vmlinux 0xc45fb8c3 n_tty_inherit_ops EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc46a65bb file_ra_state_init EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource EXPORT_SYMBOL_GPL vmlinux 0xc4846520 debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send EXPORT_SYMBOL_GPL vmlinux 0xc4ab7c04 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xc4b421c4 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xc4bef59d pm_genpd_remove_device EXPORT_SYMBOL_GPL vmlinux 0xc4c5191f vp_legacy_remove EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0xc4d5e0e8 acpi_gpio_get_irq_resource EXPORT_SYMBOL_GPL vmlinux 0xc4d935d9 blockdev_superblock EXPORT_SYMBOL_GPL vmlinux 0xc4db0e45 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc4e7fe6e cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset EXPORT_SYMBOL_GPL vmlinux 0xc5006349 usb_hub_release_port EXPORT_SYMBOL_GPL vmlinux 0xc502a68d register_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask EXPORT_SYMBOL_GPL vmlinux 0xc514237a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc51d93d4 cpufreq_cpu_get_raw EXPORT_SYMBOL_GPL vmlinux 0xc52277a5 sdio_readb EXPORT_SYMBOL_GPL vmlinux 0xc52ece8b powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0xc52f8202 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xc5326d70 extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xc545bf49 hvc_alloc EXPORT_SYMBOL_GPL vmlinux 0xc548f2fe l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xc550496d gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xc55ed06c thermal_zone_get_offset EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name @@ -25843,61 +25845,52 @@ EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array EXPORT_SYMBOL_GPL vmlinux 0xc57a0e37 regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xc5801386 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc58556cb trace_output_call EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy EXPORT_SYMBOL_GPL vmlinux 0xc58e8f70 __devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0xc594550e synth_event_create EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon EXPORT_SYMBOL_GPL vmlinux 0xc5a60a81 xhci_run EXPORT_SYMBOL_GPL vmlinux 0xc5aad560 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0xc5d4143c icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xc5e1bdb5 cpufreq_driver_target EXPORT_SYMBOL_GPL vmlinux 0xc5e4a2af reset_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc5e5311f gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xc5efe9f8 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0xc5f34aa6 sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xc5f3aa13 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0xc5f5b870 __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xc5fa5d1a vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xc602ebbf nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0xc61f6184 spi_controller_dma_unmap_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xc61f9b63 __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xc6292875 __tracepoint_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xc62cc05a acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0xc631e4e2 blkcg_print_blkgs EXPORT_SYMBOL_GPL vmlinux 0xc63eea6c led_trigger_register_simple EXPORT_SYMBOL_GPL vmlinux 0xc6411b5c fuse_dev_operations EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xc65188ea __tracepoint_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xc6569014 clk_fixed_rate_ops EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc666bf0e __SCK__tp_func_napi_poll EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata EXPORT_SYMBOL_GPL vmlinux 0xc66ca75a devm_regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xc66daccb usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0xc6745e2d sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted -EXPORT_SYMBOL_GPL vmlinux 0xc695c8d6 icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool EXPORT_SYMBOL_GPL vmlinux 0xc6a3c9b6 skb_consume_udp EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6bd29c3 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xc6c78d2e __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc6ce52dc regmap_noinc_read EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within EXPORT_SYMBOL_GPL vmlinux 0xc6e84a16 mf_dax_kill_procs EXPORT_SYMBOL_GPL vmlinux 0xc6fad95e __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6fb5d4e devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc705916c preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put EXPORT_SYMBOL_GPL vmlinux 0xc70c8e3c blk_crypto_profile_init EXPORT_SYMBOL_GPL vmlinux 0xc71bb27a anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0xc72d330b rtc_alarm_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0xc72df343 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xc7399133 nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0xc74c07ce cppc_get_epp_perf EXPORT_SYMBOL_GPL vmlinux 0xc74db05c component_compare_dev EXPORT_SYMBOL_GPL vmlinux 0xc7611678 iommu_get_domain_for_dev_pasid @@ -25913,13 +25906,16 @@ EXPORT_SYMBOL_GPL vmlinux 0xc7c94e54 srcu_torture_stats_print EXPORT_SYMBOL_GPL vmlinux 0xc7d6ab96 srcu_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xc7de238d sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc7e2cbae rcu_tasks_trace_qs_blkd EXPORT_SYMBOL_GPL vmlinux 0xc7e6063d xhci_dbg_trace EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer EXPORT_SYMBOL_GPL vmlinux 0xc7e89755 device_store_ulong EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc8122094 devm_of_icc_get EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec EXPORT_SYMBOL_GPL vmlinux 0xc81d9ca4 transport_class_register EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82fecca ata_dev_pair EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user EXPORT_SYMBOL_GPL vmlinux 0xc83e5426 usb_sg_init EXPORT_SYMBOL_GPL vmlinux 0xc851b2cf wm8350_reg_read @@ -25927,10 +25923,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xc865d920 usb_poison_urb EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc89a66a3 blk_queue_flag_test_and_set EXPORT_SYMBOL_GPL vmlinux 0xc8a946a7 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc8b35744 devl_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0xc8c4ae4c nf_ipv6_ops EXPORT_SYMBOL_GPL vmlinux 0xc8d6f7e8 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e3cf26 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xc8ea7aa3 crypto_unregister_acomp EXPORT_SYMBOL_GPL vmlinux 0xc8f0722c ehci_setup EXPORT_SYMBOL_GPL vmlinux 0xc900fd94 pci_device_is_present @@ -25945,109 +25944,108 @@ EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init EXPORT_SYMBOL_GPL vmlinux 0xc940d567 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xc941425e kern_mount EXPORT_SYMBOL_GPL vmlinux 0xc94bc0df blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0xc9526332 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xc9551aa7 scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist EXPORT_SYMBOL_GPL vmlinux 0xc95ccf37 synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0xc96242da srcu_init_notifier_head EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc977f83d dax_iomap_fault EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base EXPORT_SYMBOL_GPL vmlinux 0xc985c717 xfrm_audit_policy_add EXPORT_SYMBOL_GPL vmlinux 0xc99da118 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc99f5319 apply_to_existing_page_range EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0xc9b09f14 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xc9bec4dc spi_transfer_cs_change_delay_exec EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9cf4df4 devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xc9d49a98 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f2421b devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xc9f20fa3 __SCK__tp_func_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xc9f2d8b0 virtio_add_status EXPORT_SYMBOL_GPL vmlinux 0xc9f4bbb5 __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put EXPORT_SYMBOL_GPL vmlinux 0xc9fdbe45 pwm_lpss_byt_info -EXPORT_SYMBOL_GPL vmlinux 0xca3efe4f gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xca054841 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xca06f970 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xca12fbc1 gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops EXPORT_SYMBOL_GPL vmlinux 0xca47f8b8 ata_sas_tport_add EXPORT_SYMBOL_GPL vmlinux 0xca4b370d usb_store_new_id -EXPORT_SYMBOL_GPL vmlinux 0xca4b8000 trace_array_set_clr_event EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName EXPORT_SYMBOL_GPL vmlinux 0xca5f74f7 dev_pm_domain_start EXPORT_SYMBOL_GPL vmlinux 0xca610b23 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xca660962 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop EXPORT_SYMBOL_GPL vmlinux 0xca88b967 dw_pcie_find_ext_capability EXPORT_SYMBOL_GPL vmlinux 0xca8fd0f2 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca9508fa __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free EXPORT_SYMBOL_GPL vmlinux 0xca9bf9e6 iomap_fiemap EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures EXPORT_SYMBOL_GPL vmlinux 0xcaaa5874 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0xcab441be devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcab492ec cpufreq_freq_transition_end EXPORT_SYMBOL_GPL vmlinux 0xcabb6f55 dbs_update EXPORT_SYMBOL_GPL vmlinux 0xcabd0942 iommu_device_sysfs_remove EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock -EXPORT_SYMBOL_GPL vmlinux 0xcada6bc8 regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0xcae0dd3c pci_probe_reset_slot EXPORT_SYMBOL_GPL vmlinux 0xcaea4311 pci_bus_resource_n EXPORT_SYMBOL_GPL vmlinux 0xcaedb124 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xcaefeb22 regulator_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0xcaf0271f hv_get_register EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcafbf44c devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xcaf5897f hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xcb2f89c4 pci_host_probe EXPORT_SYMBOL_GPL vmlinux 0xcb349fa4 clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0xcb39d3c7 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xcb35ed11 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0xcb3dbe35 dax_truncate_page EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb582b05 devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcb5cf1c9 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xcb5fa9ec __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xcb6ce8b6 devlink_traps_register EXPORT_SYMBOL_GPL vmlinux 0xcb72a07f bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0xcb74add8 vcap_chain_offset EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup -EXPORT_SYMBOL_GPL vmlinux 0xcb8a5b1d rtc_initialize_alarm EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine EXPORT_SYMBOL_GPL vmlinux 0xcbabd73b xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xcbaf181d nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbc29a0e spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcbc86b4c __SCK__tp_func_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xcbc9e1cd acpi_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0xcbd981fa gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0xcbdd6962 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbf7c236 gpiochip_irq_map EXPORT_SYMBOL_GPL vmlinux 0xcc00fd1f crypto_alloc_aead EXPORT_SYMBOL_GPL vmlinux 0xcc0976cb generic_device_group EXPORT_SYMBOL_GPL vmlinux 0xcc1acfc6 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc2ba4c6 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xcc303c43 devlink_region_snapshot_id_put EXPORT_SYMBOL_GPL vmlinux 0xcc381e76 rio_mport_write_config_8 EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister EXPORT_SYMBOL_GPL vmlinux 0xcc41d5c4 xen_unmap_domain_gfn_range EXPORT_SYMBOL_GPL vmlinux 0xcc45567e blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0xcc5275c3 acpi_match_acpi_device EXPORT_SYMBOL_GPL vmlinux 0xcc55784d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xcc624bd4 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0xcc692edc pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0xcc69321c add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0xcc6f75d8 fb_deferred_io_init -EXPORT_SYMBOL_GPL vmlinux 0xcc71fa62 gpiod_get_array_optional EXPORT_SYMBOL_GPL vmlinux 0xcc82e847 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0xcc88a74c rio_mport_get_feature EXPORT_SYMBOL_GPL vmlinux 0xcc903fa1 __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable -EXPORT_SYMBOL_GPL vmlinux 0xcc927184 regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc EXPORT_SYMBOL_GPL vmlinux 0xcc9ae25d vp_modern_get_driver_features EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccc91935 spi_slave_abort EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdc7dce bpf_map_put EXPORT_SYMBOL_GPL vmlinux 0xcce213f5 ip_valid_fib_dump_req EXPORT_SYMBOL_GPL vmlinux 0xcce4fbbc ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xcce8806f nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0xccecbb47 bpf_offload_dev_netdev_register EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start EXPORT_SYMBOL_GPL vmlinux 0xccfae72c ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xcd010ef8 to_nd_region EXPORT_SYMBOL_GPL vmlinux 0xcd08c9f4 iomap_dio_bio_end_io EXPORT_SYMBOL_GPL vmlinux 0xcd098a3f __fscrypt_prepare_lookup EXPORT_SYMBOL_GPL vmlinux 0xcd204a1c pci_generic_config_read32 @@ -26055,8 +26053,11 @@ EXPORT_SYMBOL_GPL vmlinux 0xcd43f8ff __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0xcd504ecb switchdev_handle_port_obj_del_foreign EXPORT_SYMBOL_GPL vmlinux 0xcd5101b9 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xcd5aaa91 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xcd5b6c6f __tracepoint_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0xcd637979 fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7e3330 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq @@ -26068,6 +26069,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers EXPORT_SYMBOL_GPL vmlinux 0xcdb84219 unix_outq_len EXPORT_SYMBOL_GPL vmlinux 0xcdbf3d80 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xcdc3acdd regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0xcdc5df5a iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs EXPORT_SYMBOL_GPL vmlinux 0xcdd2f246 usb_register_dev @@ -26075,9 +26077,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory EXPORT_SYMBOL_GPL vmlinux 0xce15cc8e proc_create_net_single_write EXPORT_SYMBOL_GPL vmlinux 0xce1a1e59 usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xce241234 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xce25ada6 cpufreq_driver_resolve_freq EXPORT_SYMBOL_GPL vmlinux 0xce370b5b tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0xce5a9199 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xce38718e devl_trap_groups_unregister EXPORT_SYMBOL_GPL vmlinux 0xce65705d irq_domain_push_irq EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching EXPORT_SYMBOL_GPL vmlinux 0xce73d3ff serial8250_modem_status @@ -26085,8 +26087,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xce978ea6 metadata_dst_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0xce9c2f40 __fscrypt_prepare_readdir EXPORT_SYMBOL_GPL vmlinux 0xce9ecfe1 spi_mem_supports_op -EXPORT_SYMBOL_GPL vmlinux 0xcea2cc6d gpio_to_desc -EXPORT_SYMBOL_GPL vmlinux 0xcea4868e mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xceae9c58 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data EXPORT_SYMBOL_GPL vmlinux 0xceb46eeb verify_signature EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu @@ -26097,41 +26098,35 @@ EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xcf06b2f6 serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0xcf07b05d nvmem_layout_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xcf07b56f perf_event_sysfs_show EXPORT_SYMBOL_GPL vmlinux 0xcf0fcf1a device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xcf35629e __traceiter_ipi_send_cpumask EXPORT_SYMBOL_GPL vmlinux 0xcf3d9141 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xcf43c08a __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xcf4e4a24 tpm_try_get_ops EXPORT_SYMBOL_GPL vmlinux 0xcf4fc865 tty_port_unregister_device EXPORT_SYMBOL_GPL vmlinux 0xcf66275e virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0xcf6b658e crypto_enqueue_request EXPORT_SYMBOL_GPL vmlinux 0xcf748643 crypto_unregister_rngs EXPORT_SYMBOL_GPL vmlinux 0xcf78ec68 fpu_copy_uabi_to_guest_fpstate -EXPORT_SYMBOL_GPL vmlinux 0xcf7d1a3e synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xcf8080a3 __SCK__tp_func_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xcf8cf1d1 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0xcf9123c6 i2c_dw_validate_speed EXPORT_SYMBOL_GPL vmlinux 0xcf91dcc0 pm_generic_thaw_early EXPORT_SYMBOL_GPL vmlinux 0xcf99ba8d clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xcf9c6fd0 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0xcfa0c5cc wm831x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xcfab9998 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0xcfbb5c8f free_vm_area EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory EXPORT_SYMBOL_GPL vmlinux 0xcfdff4a3 strp_process -EXPORT_SYMBOL_GPL vmlinux 0xcfe0e361 receive_fd -EXPORT_SYMBOL_GPL vmlinux 0xcff09057 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xd00eed80 __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler -EXPORT_SYMBOL_GPL vmlinux 0xd017f8eb regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xd02869f3 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xd017dcd2 pwm_get EXPORT_SYMBOL_GPL vmlinux 0xd02d3cda tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate -EXPORT_SYMBOL_GPL vmlinux 0xd0479e2b icc_node_add EXPORT_SYMBOL_GPL vmlinux 0xd04a6e94 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd05d18c0 __tracepoint_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath @@ -26145,22 +26140,18 @@ EXPORT_SYMBOL_GPL vmlinux 0xd0abcd73 power_supply_powers EXPORT_SYMBOL_GPL vmlinux 0xd0c01719 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0cde399 icc_enable EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xd0d2c85a __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xd0e2a33d dm_put EXPORT_SYMBOL_GPL vmlinux 0xd0e44eb7 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0xd0f9c6ec spi_setup EXPORT_SYMBOL_GPL vmlinux 0xd0fa61db con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xd0fc4d40 bpf_trace_run5 EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister EXPORT_SYMBOL_GPL vmlinux 0xd0fe7c33 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xd10aa701 of_css EXPORT_SYMBOL_GPL vmlinux 0xd10b51e0 thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xd11bab18 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xd13121b1 regmap_fields_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xd134bc61 pci_acpi_set_companion_lookup_hook EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report @@ -26172,9 +26163,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xd15ccb08 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0xd15d30f4 md_find_rdev_nr_rcu EXPORT_SYMBOL_GPL vmlinux 0xd162de8f device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0xd19600c0 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xd17d441c gpiochip_remove EXPORT_SYMBOL_GPL vmlinux 0xd1a86d03 tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xd1bb925b dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd1bd35e8 gpiochip_line_is_open_source EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule EXPORT_SYMBOL_GPL vmlinux 0xd1c57d18 acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0xd1c59b2d device_add_software_node @@ -26186,13 +26178,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xd1eadaa4 dev_pm_genpd_synced_poweroff EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get EXPORT_SYMBOL_GPL vmlinux 0xd200256c pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0xd20bea46 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2034f53 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd219fdc2 gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21bfb6f __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd2207abd i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xd2265595 trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0xd22f5035 usb_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xd240c320 sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init @@ -26203,50 +26194,46 @@ EXPORT_SYMBOL_GPL vmlinux 0xd2780326 divider_recalc_rate EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd28ebb95 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0xd298aa38 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xd2896b8b devl_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xd29f9286 mbox_bind_client EXPORT_SYMBOL_GPL vmlinux 0xd2a0b2d5 usb_get_descriptor -EXPORT_SYMBOL_GPL vmlinux 0xd2a32f94 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0xd2ae993c __mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2ba442e mnt_want_write_file EXPORT_SYMBOL_GPL vmlinux 0xd2c67398 pci_epf_free_space -EXPORT_SYMBOL_GPL vmlinux 0xd2d14e43 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0xd2d6f46b gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e62288 __traceiter_sk_data_ready EXPORT_SYMBOL_GPL vmlinux 0xd2e86839 platform_device_register EXPORT_SYMBOL_GPL vmlinux 0xd302621b divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xd30377d8 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0xd3089ee3 __tracepoint_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xd308c72f iov_iter_extract_pages EXPORT_SYMBOL_GPL vmlinux 0xd30de944 nf_hook_entries_delete_raw EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts -EXPORT_SYMBOL_GPL vmlinux 0xd31af8bd __SCK__tp_func_pelt_thermal_tp EXPORT_SYMBOL_GPL vmlinux 0xd31f76f7 ata_port_classify EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar EXPORT_SYMBOL_GPL vmlinux 0xd326300f thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0xd34d2cfb regulator_list_hardware_vsel EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0xd3832037 simple_attr_read EXPORT_SYMBOL_GPL vmlinux 0xd3901d33 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0xd39c364d __tracepoint_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 EXPORT_SYMBOL_GPL vmlinux 0xd3a6c852 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd3bc2f70 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd3d46911 regulator_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xd3e85f45 ip6_local_out EXPORT_SYMBOL_GPL vmlinux 0xd3e94020 pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3eff7ed icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0xd3fa402f l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3fbebef ata_host_resume EXPORT_SYMBOL_GPL vmlinux 0xd3fe6ea5 pci_dev_unlock EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404c57d __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xd406888a blkg_conf_exit EXPORT_SYMBOL_GPL vmlinux 0xd4129190 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0xd416cfec perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0xd419b225 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xd422500c __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread EXPORT_SYMBOL_GPL vmlinux 0xd435695d pm_clk_init @@ -26260,32 +26247,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs EXPORT_SYMBOL_GPL vmlinux 0xd47914fc tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0xd48a9773 drop_reasons_register_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd49e7ccb gpiod_get_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd4b0f585 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq EXPORT_SYMBOL_GPL vmlinux 0xd4d04d87 tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0xd4d0ed9f dm_hold -EXPORT_SYMBOL_GPL vmlinux 0xd4d37e86 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0xd4deceda trace_array_put EXPORT_SYMBOL_GPL vmlinux 0xd4df5e83 pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4eb07cc acpi_driver_match_device EXPORT_SYMBOL_GPL vmlinux 0xd4f18410 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4f91e06 devm_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xd4fa3415 pci_epf_remove_vepf EXPORT_SYMBOL_GPL vmlinux 0xd51d134d kset_create_and_add EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd5372070 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xd54413ab netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xd538bcd9 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd56d4017 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xd55d4836 bpf_trace_run3 EXPORT_SYMBOL_GPL vmlinux 0xd5767b08 skb_zerocopy_iter_stream EXPORT_SYMBOL_GPL vmlinux 0xd57a9914 usb_unanchor_urb EXPORT_SYMBOL_GPL vmlinux 0xd57f7f30 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0xd5806ffd nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause EXPORT_SYMBOL_GPL vmlinux 0xd59abcc8 set_capacity_and_notify EXPORT_SYMBOL_GPL vmlinux 0xd59b2b2d xdp_return_frame_bulk @@ -26294,27 +26279,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xd5ab371c ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xd5b02baa rt_mutex_unlock EXPORT_SYMBOL_GPL vmlinux 0xd5b99363 power_supply_am_i_supplied -EXPORT_SYMBOL_GPL vmlinux 0xd5c33783 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0xd5c83d60 srcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0xd5cbb8fe __netpoll_setup EXPORT_SYMBOL_GPL vmlinux 0xd5e3cc89 usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0xd5e530df usb_hcd_is_primary_hcd EXPORT_SYMBOL_GPL vmlinux 0xd5ec8ab7 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xd5f15bf0 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted EXPORT_SYMBOL_GPL vmlinux 0xd5f48a1b crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0xd5f71af5 ip6_route_input_lookup EXPORT_SYMBOL_GPL vmlinux 0xd6026eca dev_pm_opp_find_level_exact EXPORT_SYMBOL_GPL vmlinux 0xd61e0c93 da903x_writes EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p EXPORT_SYMBOL_GPL vmlinux 0xd6501b61 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd6588884 __tracepoint_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0xd65ea023 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xd6601330 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0xd6649bb0 clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6754553 rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0xd6763380 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xd6865a21 thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0xd68711b0 dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xd6874fee mddev_init EXPORT_SYMBOL_GPL vmlinux 0xd687e7b0 irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xd69006f7 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd698f6b8 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xd6aaa6f9 __traceiter_udp_fail_queue_rcv_skb EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark @@ -26324,70 +26314,70 @@ EXPORT_SYMBOL_GPL vmlinux 0xd6e1102a devlink_remote_reload_actions_performed EXPORT_SYMBOL_GPL vmlinux 0xd6e7c715 devm_intel_scu_ipc_dev_get EXPORT_SYMBOL_GPL vmlinux 0xd6ed25f0 acpi_register_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd6ee04fe acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0xd6f3c1c1 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries EXPORT_SYMBOL_GPL vmlinux 0xd700dcf5 kthread_func EXPORT_SYMBOL_GPL vmlinux 0xd705e179 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0xd712db25 iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0xd7140e17 thermal_zone_device -EXPORT_SYMBOL_GPL vmlinux 0xd720e56e __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state EXPORT_SYMBOL_GPL vmlinux 0xd73631b8 get_device +EXPORT_SYMBOL_GPL vmlinux 0xd73ef7db __traceiter_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xd7421de2 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xd7493cdb vfs_removexattr EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0xd7671dbd kernel_file_open EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd783b162 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0xd78a25b0 usb_init_urb EXPORT_SYMBOL_GPL vmlinux 0xd78c1ea1 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xd78c267c badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xd79675a8 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xd79f33e2 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xd7a0800c bpf_trace_run9 EXPORT_SYMBOL_GPL vmlinux 0xd7a7a324 debugfs_attr_write_signed EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns EXPORT_SYMBOL_GPL vmlinux 0xd7b21543 ip6_datagram_connect_v6_only EXPORT_SYMBOL_GPL vmlinux 0xd7b265c4 phy_configure EXPORT_SYMBOL_GPL vmlinux 0xd7b9b83e dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0xd7c15e00 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xd7bb4e03 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xd7c185be tty_ldisc_ref_wait EXPORT_SYMBOL_GPL vmlinux 0xd7c33a07 sdio_release_irq -EXPORT_SYMBOL_GPL vmlinux 0xd7c41060 gpiochip_relres_irq EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7f76083 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xd800ba9f __devm_of_phy_provider_register EXPORT_SYMBOL_GPL vmlinux 0xd804cc1a kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xd8063bbe folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd809f485 rdev_get_dev EXPORT_SYMBOL_GPL vmlinux 0xd81e1fcd dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xd820b201 __SCK__tp_func_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xd82d4de5 tcp_abort EXPORT_SYMBOL_GPL vmlinux 0xd83d3ba3 blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd8583248 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0xd85b6878 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xd8614880 __traceiter_tcp_bad_csum EXPORT_SYMBOL_GPL vmlinux 0xd865cf0a acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0xd8765ebc devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd87539da perf_event_update_userpage EXPORT_SYMBOL_GPL vmlinux 0xd877bb04 iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0xd879d9b1 devlink_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0xd87cb8eb dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd882d2f5 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd88850be gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd894f4e8 __tracepoint_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xd89cc0e3 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd89ce8d0 bpf_map_inc EXPORT_SYMBOL_GPL vmlinux 0xd8a061da __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd8ae707a perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0xd8b07bb6 tty_save_termios -EXPORT_SYMBOL_GPL vmlinux 0xd8b45768 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0xd8bdc812 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd8bf1b77 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xd8bff181 regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xd8c1663e regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xd8c595f4 bpf_sk_storage_diag_put EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type EXPORT_SYMBOL_GPL vmlinux 0xd8d86302 pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0xd8d8759d vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0xd8da8712 devl_param_value_changed -EXPORT_SYMBOL_GPL vmlinux 0xd8f677c4 trace_event_buffer_commit EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8fd1db6 cpufreq_unregister_governor EXPORT_SYMBOL_GPL vmlinux 0xd8fd4e15 rio_enable_rx_tx_port -EXPORT_SYMBOL_GPL vmlinux 0xd9057948 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0xd9087fb5 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0xd910c81d aead_init_geniv EXPORT_SYMBOL_GPL vmlinux 0xd9125221 blk_update_request @@ -26399,12 +26389,12 @@ EXPORT_SYMBOL_GPL vmlinux 0xd943d739 umd_cleanup_helper EXPORT_SYMBOL_GPL vmlinux 0xd95ee1d0 serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd972ddd4 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 EXPORT_SYMBOL_GPL vmlinux 0xd9945b58 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo EXPORT_SYMBOL_GPL vmlinux 0xd9a41e2d __dev_change_net_namespace EXPORT_SYMBOL_GPL vmlinux 0xd9a68ad2 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd9b0debb __SCK__tp_func_pelt_irq_tp EXPORT_SYMBOL_GPL vmlinux 0xd9bb2c13 pkcs7_get_content_data EXPORT_SYMBOL_GPL vmlinux 0xd9cb0851 devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0xd9d0007d devm_regmap_add_irq_chip @@ -26418,15 +26408,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xda12fdaf firmware_request_cache EXPORT_SYMBOL_GPL vmlinux 0xda190019 acomp_request_alloc EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb -EXPORT_SYMBOL_GPL vmlinux 0xda2874fe devl_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0xda31393a devl_rate_leaf_create EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start EXPORT_SYMBOL_GPL vmlinux 0xda45f931 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xda5406ec cpufreq_cpu_put EXPORT_SYMBOL_GPL vmlinux 0xda57d107 gov_update_cpu_data EXPORT_SYMBOL_GPL vmlinux 0xda6c8aac md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event -EXPORT_SYMBOL_GPL vmlinux 0xda8793ed __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xda87b907 ata_platform_remove_one EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp EXPORT_SYMBOL_GPL vmlinux 0xdaa139dc tps6586x_clr_bits @@ -26435,39 +26424,40 @@ EXPORT_SYMBOL_GPL vmlinux 0xdaad0ea5 md_run EXPORT_SYMBOL_GPL vmlinux 0xdaae3610 acpi_dev_get_next_consumer_dev EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdad2fe9d nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0xdad67e5f ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0xdad79186 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdae4c788 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xdaea9634 bpf_prog_inc EXPORT_SYMBOL_GPL vmlinux 0xdaf454ac usb_free_urb EXPORT_SYMBOL_GPL vmlinux 0xdb04b804 acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0xdb05d7b8 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0xdb131b21 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xdb15dbc9 __SCK__tp_func_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page EXPORT_SYMBOL_GPL vmlinux 0xdb20e371 fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0xdb4c03ff dw_pcie_ep_raise_legacy_irq EXPORT_SYMBOL_GPL vmlinux 0xdb4d06bc bus_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xdb4e2c68 policy_has_boost_freq -EXPORT_SYMBOL_GPL vmlinux 0xdb580742 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0xdb60c969 iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0xdb62b571 devlink_flash_update_status_notify EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb64ddbf pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xdb77607b perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdbb20f5a icc_enable EXPORT_SYMBOL_GPL vmlinux 0xdbb4fde6 nf_checksum_partial -EXPORT_SYMBOL_GPL vmlinux 0xdbbe821c __traceiter_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xdbc34c02 handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0xdbc758b7 disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xdbca9a18 devlink_port_unregister EXPORT_SYMBOL_GPL vmlinux 0xdbd0f54d rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq EXPORT_SYMBOL_GPL vmlinux 0xdbe39235 ata_timing_compute EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create -EXPORT_SYMBOL_GPL vmlinux 0xdbe8f59f rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available -EXPORT_SYMBOL_GPL vmlinux 0xdc02f14f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xdc080c55 __SCK__tp_func_remove_device_from_group EXPORT_SYMBOL_GPL vmlinux 0xdc295194 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xdc3e203b ata_cable_80wire EXPORT_SYMBOL_GPL vmlinux 0xdc434752 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work @@ -26475,10 +26465,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xdc62e045 phy_save_page EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc68f16a gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xdc695dd6 clk_hw_unregister EXPORT_SYMBOL_GPL vmlinux 0xdc6c492d sysfs_unmerge_group EXPORT_SYMBOL_GPL vmlinux 0xdc6d6108 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xdc71648e regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc780f55 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key @@ -26488,47 +26478,50 @@ EXPORT_SYMBOL_GPL vmlinux 0xdcaab948 intel_pinctrl_suspend_noirq EXPORT_SYMBOL_GPL vmlinux 0xdcb32c7c skcipher_walk_done EXPORT_SYMBOL_GPL vmlinux 0xdcb46d3d vcap_is_last_chain +EXPORT_SYMBOL_GPL vmlinux 0xdcbd24c5 ata_wait_after_reset EXPORT_SYMBOL_GPL vmlinux 0xdcbf4928 xhci_hub_control EXPORT_SYMBOL_GPL vmlinux 0xdcc2b176 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xdccbd14f acpi_spi_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err EXPORT_SYMBOL_GPL vmlinux 0xdcf1ea92 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xdd04d02c __traceiter_ata_exec_command EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd160f3a get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0xdd17680a tracing_cond_snapshot_data -EXPORT_SYMBOL_GPL vmlinux 0xdd2c6a69 vfs_listxattr EXPORT_SYMBOL_GPL vmlinux 0xdd305445 devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0xdd3ecd89 locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd86454e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xdd6f2349 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdd6fb3e4 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd992b3f gpiod_get_direction EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh EXPORT_SYMBOL_GPL vmlinux 0xdd9f30eb dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0xddab5a69 gpiod_to_irq EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcac622 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield EXPORT_SYMBOL_GPL vmlinux 0xdddb3ec3 crypto_init_akcipher_ops_sig EXPORT_SYMBOL_GPL vmlinux 0xdde6b0c6 usb_hcd_start_port_resume EXPORT_SYMBOL_GPL vmlinux 0xddf01eab xdp_rxq_info_unreg -EXPORT_SYMBOL_GPL vmlinux 0xddf28236 eventfd_fget EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde134adc devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xde21cee9 dev_pm_qos_expose_latency_limit EXPORT_SYMBOL_GPL vmlinux 0xde29fb68 pci_alloc_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde31da59 __inode_attach_wb EXPORT_SYMBOL_GPL vmlinux 0xde367612 icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0xde39c6b8 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xde457d2c __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xde4b796c __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0xde515453 acct_bioset_exit EXPORT_SYMBOL_GPL vmlinux 0xde5574cf x509_load_certificate_list +EXPORT_SYMBOL_GPL vmlinux 0xde660705 devm_pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 EXPORT_SYMBOL_GPL vmlinux 0xde7534e8 wm831x_auxadc_read_uv EXPORT_SYMBOL_GPL vmlinux 0xde9236a9 platform_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm EXPORT_SYMBOL_GPL vmlinux 0xdea4699c tpmm_chip_alloc -EXPORT_SYMBOL_GPL vmlinux 0xdea4a7bf wakeup_source_create EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdeb84d27 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xdeb49d29 nd_region_dev EXPORT_SYMBOL_GPL vmlinux 0xdebe0262 ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0xdec4734a irq_gc_unmask_enable_reg EXPORT_SYMBOL_GPL vmlinux 0xded6c04e of_hwspin_lock_get_id_byname -EXPORT_SYMBOL_GPL vmlinux 0xdedc96a3 devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdef22fd0 gpiod_enable_hw_timestamp_ns EXPORT_SYMBOL_GPL vmlinux 0xdef92c3c tty_port_install EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xdf0234bd ata_bmdma_irq_clear @@ -26536,42 +26529,39 @@ EXPORT_SYMBOL_GPL vmlinux 0xdf08fcbc switchdev_handle_port_attr_set EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f36df locks_alloc_lock EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf17f00e __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova -EXPORT_SYMBOL_GPL vmlinux 0xdf1d4ee3 nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync EXPORT_SYMBOL_GPL vmlinux 0xdf248a27 nexthop_for_each_fib6_nh EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xdf2851d4 dev_pm_domain_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0xdf2bf0de irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xdf2d3342 gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties EXPORT_SYMBOL_GPL vmlinux 0xdf59a71c inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0xdf688a85 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xdf60cac9 bio_start_io_acct EXPORT_SYMBOL_GPL vmlinux 0xdf6e2454 __nf_ip6_route EXPORT_SYMBOL_GPL vmlinux 0xdf76dae1 serial8250_rpm_put EXPORT_SYMBOL_GPL vmlinux 0xdf7fb7e3 fsnotify_init_mark EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free -EXPORT_SYMBOL_GPL vmlinux 0xdfa8500d pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xdfb8787b blk_stat_disable_accounting EXPORT_SYMBOL_GPL vmlinux 0xdfca7da3 sk_setup_caps EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set EXPORT_SYMBOL_GPL vmlinux 0xdfe0f6d1 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0xdff55e52 scsi_free_sgtables EXPORT_SYMBOL_GPL vmlinux 0xdfff83bb extcon_set_property_capability -EXPORT_SYMBOL_GPL vmlinux 0xe019ad07 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe009f0cf dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xe00c4682 __SCK__tp_func_error_report_end EXPORT_SYMBOL_GPL vmlinux 0xe01a7c54 group_cpus_evenly -EXPORT_SYMBOL_GPL vmlinux 0xe02c99b7 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xe01c5c6d __SCK__tp_func_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow EXPORT_SYMBOL_GPL vmlinux 0xe03deec5 ncsi_vlan_rx_kill_vid EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0xe0520307 usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe063879e pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0xe068a14d pci_epc_raise_irq EXPORT_SYMBOL_GPL vmlinux 0xe06eca24 da9052_enable_irq EXPORT_SYMBOL_GPL vmlinux 0xe07b5741 xdp_rxq_info_is_reg @@ -26580,9 +26570,9 @@ EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved EXPORT_SYMBOL_GPL vmlinux 0xe0af7212 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0ba9de9 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq -EXPORT_SYMBOL_GPL vmlinux 0xe0cbeb07 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute EXPORT_SYMBOL_GPL vmlinux 0xe0d400e5 wm831x_device_shutdown EXPORT_SYMBOL_GPL vmlinux 0xe0e6ef02 perf_get_x86_pmu_capability @@ -26592,37 +26582,37 @@ EXPORT_SYMBOL_GPL vmlinux 0xe1023b23 usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0xe105343b fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe1236e5a backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0xe115bc68 __tracepoint_unmap EXPORT_SYMBOL_GPL vmlinux 0xe1377ea7 __fib_lookup EXPORT_SYMBOL_GPL vmlinux 0xe16ac47f da903x_set_bits EXPORT_SYMBOL_GPL vmlinux 0xe16b1690 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0xe16ca0ee pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0xe1712628 tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0xe18c3cff fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0xe19f9484 ata_pci_device_resume EXPORT_SYMBOL_GPL vmlinux 0xe1a52fe3 wp_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem EXPORT_SYMBOL_GPL vmlinux 0xe1a9c0d8 vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb EXPORT_SYMBOL_GPL vmlinux 0xe1b391e7 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xe1ba9ec9 smp_ops EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1beb6ff vfs_kern_mount EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off EXPORT_SYMBOL_GPL vmlinux 0xe1c947c1 device_add EXPORT_SYMBOL_GPL vmlinux 0xe1ca809d device_store_bool EXPORT_SYMBOL_GPL vmlinux 0xe1e9079f mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0xe1fcac5c sb800_prefetch EXPORT_SYMBOL_GPL vmlinux 0xe206ba93 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xe21416e4 pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0xe22ad149 tpm_transmit_cmd EXPORT_SYMBOL_GPL vmlinux 0xe2300f01 fixed_phy_unregister EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user EXPORT_SYMBOL_GPL vmlinux 0xe23a170b led_trigger_unregister_simple EXPORT_SYMBOL_GPL vmlinux 0xe23b1aae phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xe2420f1b bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust EXPORT_SYMBOL_GPL vmlinux 0xe267d7e7 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xe292f9c0 genphy_c45_plca_set_cfg -EXPORT_SYMBOL_GPL vmlinux 0xe2939d29 spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled EXPORT_SYMBOL_GPL vmlinux 0xe2a059da platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0xe2b2865b irq_domain_remove @@ -26631,30 +26621,32 @@ EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0xe2cf9af2 crypto_comp_compress EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule -EXPORT_SYMBOL_GPL vmlinux 0xe2d545bb devfreq_get_devfreq_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up EXPORT_SYMBOL_GPL vmlinux 0xe2f5fb16 msg_zerocopy_callback -EXPORT_SYMBOL_GPL vmlinux 0xe326465b register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xe32eace5 devlink_port_type_clear EXPORT_SYMBOL_GPL vmlinux 0xe332dc98 usb_unlocked_enable_lpm EXPORT_SYMBOL_GPL vmlinux 0xe338d95b serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0xe35451e0 i2c_dw_acpi_configure EXPORT_SYMBOL_GPL vmlinux 0xe3591276 clockevents_register_device EXPORT_SYMBOL_GPL vmlinux 0xe35ec49b irqchip_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0xe37acd18 vcap_tc_flower_handler_tcp_usage +EXPORT_SYMBOL_GPL vmlinux 0xe3819e75 i2c_new_dummy_device EXPORT_SYMBOL_GPL vmlinux 0xe382c581 dw_pcie_ep_init_complete EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral EXPORT_SYMBOL_GPL vmlinux 0xe39117a3 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3924b62 wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0xe395b245 pci_user_read_config_word EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe39d1eff __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b752ca bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe3baad35 devlink_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c8498d __traceiter_neigh_timer_handler EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner EXPORT_SYMBOL_GPL vmlinux 0xe3e52798 battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast -EXPORT_SYMBOL_GPL vmlinux 0xe3e93247 clk_hw_set_parent EXPORT_SYMBOL_GPL vmlinux 0xe3f4050c is_software_node EXPORT_SYMBOL_GPL vmlinux 0xe3f6d0e4 pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xe40a7da2 pci_epf_unregister_driver @@ -26662,22 +26654,20 @@ EXPORT_SYMBOL_GPL vmlinux 0xe40bbf22 clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0xe41b1a3e vchan_dma_desc_free_list EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe424d56b dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0xe42809f5 badblocks_store EXPORT_SYMBOL_GPL vmlinux 0xe42d0f1c devfreq_event_get_edev_count EXPORT_SYMBOL_GPL vmlinux 0xe42e3f99 pm_runtime_suspended_time EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume EXPORT_SYMBOL_GPL vmlinux 0xe4327880 ata_sas_async_probe EXPORT_SYMBOL_GPL vmlinux 0xe436e90c __dma_fence_unwrap_merge +EXPORT_SYMBOL_GPL vmlinux 0xe439d182 mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe43b36ba devl_rate_nodes_destroy EXPORT_SYMBOL_GPL vmlinux 0xe441c0fd dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0xe452f954 clk_fixed_factor_ops -EXPORT_SYMBOL_GPL vmlinux 0xe482e7fe tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0xe4835bd7 sdio_writel EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global EXPORT_SYMBOL_GPL vmlinux 0xe48af6d5 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0xe48d219c __tracepoint_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe49e992a dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xe4a3fe02 security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str @@ -26685,12 +26675,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm EXPORT_SYMBOL_GPL vmlinux 0xe4c82157 mddev_suspend EXPORT_SYMBOL_GPL vmlinux 0xe4d022ff of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe4d98be4 devlink_dpipe_match_put EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state EXPORT_SYMBOL_GPL vmlinux 0xe4ebb4d6 pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0xe4f2edb1 xenbus_switch_state EXPORT_SYMBOL_GPL vmlinux 0xe4f55199 inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xe4f66271 gnttab_dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xe50388b3 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe51ddb9f xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xe531234a pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0xe53d846a d_same_name EXPORT_SYMBOL_GPL vmlinux 0xe54ac14a device_match_any @@ -26698,23 +26690,24 @@ EXPORT_SYMBOL_GPL vmlinux 0xe55f5199 acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0xe55f98e7 vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0xe5781a2a fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe57d2048 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xe582cd85 __SCK__tp_func_block_unplug EXPORT_SYMBOL_GPL vmlinux 0xe58741d8 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xe587fe50 __tracepoint_ipi_send_cpumask EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister EXPORT_SYMBOL_GPL vmlinux 0xe5892724 power_supply_property_is_writeable EXPORT_SYMBOL_GPL vmlinux 0xe58c63f5 devm_kstrdup_const EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe59bc387 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xe5b36496 nf_ct_hook EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c1e353 ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0xe5c93bcc fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0xe5cb2240 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter EXPORT_SYMBOL_GPL vmlinux 0xe5d13a0f irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xe5d3b280 phy_speed_up EXPORT_SYMBOL_GPL vmlinux 0xe5d68d55 dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0xe5df94bf rio_inb_pwrite_handler EXPORT_SYMBOL_GPL vmlinux 0xe5e05ddf devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe5e8dbff rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xe5f6c80c iomap_ioend_try_merge EXPORT_SYMBOL_GPL vmlinux 0xe5f7ffaa phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work @@ -26722,11 +26715,10 @@ EXPORT_SYMBOL_GPL vmlinux 0xe62308bb edac_pci_handle_npe EXPORT_SYMBOL_GPL vmlinux 0xe62358a4 pcie_aspm_capable EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe6320c5a gpiod_direction_input EXPORT_SYMBOL_GPL vmlinux 0xe6322b8d register_kretprobes EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler EXPORT_SYMBOL_GPL vmlinux 0xe658854e device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe65b868e clk_hw_determine_rate_no_reparent +EXPORT_SYMBOL_GPL vmlinux 0xe6628f05 i2c_handle_smbus_host_notify EXPORT_SYMBOL_GPL vmlinux 0xe676202f ping_init_sock EXPORT_SYMBOL_GPL vmlinux 0xe67e98ed mmu_interval_read_begin EXPORT_SYMBOL_GPL vmlinux 0xe6875ac5 crypto_register_templates @@ -26734,45 +26726,37 @@ EXPORT_SYMBOL_GPL vmlinux 0xe68b0718 vring_transport_features EXPORT_SYMBOL_GPL vmlinux 0xe6b7198f pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0xe6c415e9 rio_request_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xe6c8ad0d gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0xe6d38bc5 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xe6cecf27 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6d871d4 page_cache_ra_unbounded EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fc71a2 gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0xe6fd7953 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0xe6ffc61b usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe70221d7 cppc_get_perf_caps EXPORT_SYMBOL_GPL vmlinux 0xe70740f8 serdev_device_write_buf -EXPORT_SYMBOL_GPL vmlinux 0xe70e4351 rtc_update_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xe70e7835 dev_pm_opp_find_freq_ceil EXPORT_SYMBOL_GPL vmlinux 0xe716c515 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xe7223ca6 synth_event_add_val EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe723bfa0 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0xe72a41d3 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0xe72ea210 crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0xe7465f43 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0xe74b4411 dw_pcie_link_up EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset -EXPORT_SYMBOL_GPL vmlinux 0xe776122d __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xe770d607 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask EXPORT_SYMBOL_GPL vmlinux 0xe781bc9f ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe78c8604 cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get EXPORT_SYMBOL_GPL vmlinux 0xe7a7cf56 skb_to_sgvec EXPORT_SYMBOL_GPL vmlinux 0xe7a8fb75 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 -EXPORT_SYMBOL_GPL vmlinux 0xe7c4b42d regmap_attach_dev EXPORT_SYMBOL_GPL vmlinux 0xe7c71a0f sysfs_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0xe7d416ea mmc_regulator_disable_vqmmc EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds EXPORT_SYMBOL_GPL vmlinux 0xe7e55916 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0xe7f0c750 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xe7f8a95a devl_trap_policers_register EXPORT_SYMBOL_GPL vmlinux 0xe80167a6 mmu_notifier_get_locked EXPORT_SYMBOL_GPL vmlinux 0xe8035e7c acpi_find_child_by_adr EXPORT_SYMBOL_GPL vmlinux 0xe8091c2d sk_msg_memcopy_from_iter @@ -26784,49 +26768,51 @@ EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports EXPORT_SYMBOL_GPL vmlinux 0xe8522d38 alloc_dax EXPORT_SYMBOL_GPL vmlinux 0xe852668e irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xe85932ed cpufreq_cpu_get EXPORT_SYMBOL_GPL vmlinux 0xe85f8e3e blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xe862a861 ata_cable_unknown EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start EXPORT_SYMBOL_GPL vmlinux 0xe864e68f device_initialize EXPORT_SYMBOL_GPL vmlinux 0xe86ed5e4 rio_lock_device EXPORT_SYMBOL_GPL vmlinux 0xe8979afb mas_prev_range +EXPORT_SYMBOL_GPL vmlinux 0xe898bfb0 event_triggers_post_call EXPORT_SYMBOL_GPL vmlinux 0xe8a4d7c6 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe8a649d0 __traceiter_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add EXPORT_SYMBOL_GPL vmlinux 0xe8b5d72b fwnode_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c409b8 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xe8d18451 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform -EXPORT_SYMBOL_GPL vmlinux 0xe8f77fa1 wbc_account_cgroup_owner EXPORT_SYMBOL_GPL vmlinux 0xe8f7ae3e __devm_reset_control_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xe905a241 __inet_lookup_listener EXPORT_SYMBOL_GPL vmlinux 0xe908e6c8 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe90a0453 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xe91121bf devlink_port_linecard_set EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe92ec993 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xe936b50b is_swiotlb_active EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xe94aa1ea blkcg_root -EXPORT_SYMBOL_GPL vmlinux 0xe94c5f21 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xe94d5d56 regulator_bulk_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xe987f41f __thermal_zone_get_trip EXPORT_SYMBOL_GPL vmlinux 0xe98a3227 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe98c8274 pwm_set_chip_data EXPORT_SYMBOL_GPL vmlinux 0xe9a5f58e clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0xe9b4305b ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0xe9c0cb02 input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available EXPORT_SYMBOL_GPL vmlinux 0xe9cfb952 fsl_mc_device_group EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap -EXPORT_SYMBOL_GPL vmlinux 0xe9da9217 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xe9ea415d ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xe9f26980 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe9f3505f scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea1047ba __clk_mux_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd EXPORT_SYMBOL_GPL vmlinux 0xea312c8c serdev_acpi_get_uart_resource EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries EXPORT_SYMBOL_GPL vmlinux 0xea414556 pci_ioremap_bar EXPORT_SYMBOL_GPL vmlinux 0xea466b60 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xea525d32 folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0xea585d43 cros_ec_cmd EXPORT_SYMBOL_GPL vmlinux 0xea5a186a extcon_set_state EXPORT_SYMBOL_GPL vmlinux 0xea6388fe usb_reset_endpoint @@ -26836,29 +26822,30 @@ EXPORT_SYMBOL_GPL vmlinux 0xea6caeb2 devm_acpi_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0xea76038e acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0xea79b572 edac_mc_alloc -EXPORT_SYMBOL_GPL vmlinux 0xea843431 to_nvdimm EXPORT_SYMBOL_GPL vmlinux 0xea8919e4 usb_match_one_id EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance EXPORT_SYMBOL_GPL vmlinux 0xeaa8d9a8 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0xeab31149 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0xeac0074e device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush -EXPORT_SYMBOL_GPL vmlinux 0xeae59c24 wwan_get_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0xeae5fc66 nf_queue EXPORT_SYMBOL_GPL vmlinux 0xeae8a5a6 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xeaec6ae6 regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0xeaedcc70 sata_set_spd EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be EXPORT_SYMBOL_GPL vmlinux 0xeb080053 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb12f4aa bpf_prog_free EXPORT_SYMBOL_GPL vmlinux 0xeb20016a sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0xeb2777b8 usb_create_shared_hcd EXPORT_SYMBOL_GPL vmlinux 0xeb43202d usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0xeb4a4842 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xeb507c14 nvdimm_kobj EXPORT_SYMBOL_GPL vmlinux 0xeb52f746 __SCT__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xeb59947a __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xeb531d3b rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xeb5da109 perf_event_enable EXPORT_SYMBOL_GPL vmlinux 0xeb6fad10 crypto_unregister_scomp EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices EXPORT_SYMBOL_GPL vmlinux 0xeb881373 device_register @@ -26866,7 +26853,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xeba78298 pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0xebac97f9 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0xebb1f830 acpi_quirk_skip_gpio_event_handlers -EXPORT_SYMBOL_GPL vmlinux 0xebc16c24 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xebccbf23 devm_spi_register_controller EXPORT_SYMBOL_GPL vmlinux 0xebd0f01a usb_add_phy EXPORT_SYMBOL_GPL vmlinux 0xebd2c398 crypto_unregister_akcipher EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms @@ -26877,89 +26864,88 @@ EXPORT_SYMBOL_GPL vmlinux 0xec27d1e2 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0xec2fa87c scsi_host_busy_iter EXPORT_SYMBOL_GPL vmlinux 0xec3653c7 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0xec53cead __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xec55efea spi_bus_lock EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask EXPORT_SYMBOL_GPL vmlinux 0xec6c9465 extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0xec6cc7bc thermal_zone_get_zone_by_name EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state EXPORT_SYMBOL_GPL vmlinux 0xec7947cd proc_create_net_data EXPORT_SYMBOL_GPL vmlinux 0xec87d8c0 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xec8fe179 nl_table EXPORT_SYMBOL_GPL vmlinux 0xec9d0f09 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xec9de8b7 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xecab6c70 __tracepoint_xdp_bulk_tx EXPORT_SYMBOL_GPL vmlinux 0xecb3a438 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xeccc06ec nvdimm_clear_poison EXPORT_SYMBOL_GPL vmlinux 0xecce5d8b dm_audit_log_bio EXPORT_SYMBOL_GPL vmlinux 0xecd591e4 vp_modern_map_vq_notify EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read EXPORT_SYMBOL_GPL vmlinux 0xecf2818a serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0xed0459df cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0xed0e201d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xed12f574 devl_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0xed1c3a96 init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0xed23eef4 rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse EXPORT_SYMBOL_GPL vmlinux 0xed3316a9 device_property_present EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID EXPORT_SYMBOL_GPL vmlinux 0xed3b7785 usb_get_hcd EXPORT_SYMBOL_GPL vmlinux 0xed3f341c devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xed43d3d9 icc_nodes_remove EXPORT_SYMBOL_GPL vmlinux 0xed4d5e6a pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0xed61b247 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xed64d915 pci_test_config_bits EXPORT_SYMBOL_GPL vmlinux 0xed84cd9d crypto_sig_set_privkey EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed953ad5 devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0xed9ba5dd tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0xeda9a2f7 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xeda1cd13 cpufreq_freq_transition_begin EXPORT_SYMBOL_GPL vmlinux 0xedacfd69 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0xedc425e6 sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0xedc45e67 __percpu_init_rwsem EXPORT_SYMBOL_GPL vmlinux 0xedc77106 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd1feee cpufreq_register_governor EXPORT_SYMBOL_GPL vmlinux 0xedd31aa1 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0xeddbc39f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xedde9bb8 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xede96218 spi_add_device EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup EXPORT_SYMBOL_GPL vmlinux 0xedec60b0 watchdog_set_last_hw_keepalive EXPORT_SYMBOL_GPL vmlinux 0xededc604 usb_choose_configuration EXPORT_SYMBOL_GPL vmlinux 0xee0a9f77 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0xee0fa0bf devlink_params_register EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 EXPORT_SYMBOL_GPL vmlinux 0xee2f57c5 dm_copy_name_and_uuid EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier EXPORT_SYMBOL_GPL vmlinux 0xee3f32dc tty_set_termios EXPORT_SYMBOL_GPL vmlinux 0xee41cd9b crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0xee42947a devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xee46f237 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xee4e43ba devm_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0xee6ac3cf vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xee77e6be gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xee8971ee gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0xeea76283 divider_ro_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xeed177f1 gpiochip_free_own_desc EXPORT_SYMBOL_GPL vmlinux 0xeed23f10 is_dock_device EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeede7613 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0xeee13abd spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent EXPORT_SYMBOL_GPL vmlinux 0xeee8f92f md_stop EXPORT_SYMBOL_GPL vmlinux 0xeeedd22f regulator_map_voltage_ascend EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xef064ff4 devlink_dpipe_entry_ctx_close EXPORT_SYMBOL_GPL vmlinux 0xef158071 bio_associate_blkg_from_css EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put EXPORT_SYMBOL_GPL vmlinux 0xef30cb0f fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xef33e16a devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef35db1c gpiod_set_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0xef391794 xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0xef3c2caa gpiod_set_consumer_name EXPORT_SYMBOL_GPL vmlinux 0xef40a367 edac_mc_free EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef484958 __SCK__tp_func_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0xef4d76c5 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0xef5c8a73 __tracepoint_rpm_suspend EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xef5f7303 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance EXPORT_SYMBOL_GPL vmlinux 0xef8fc95f kvm_async_pf_task_wait_schedule @@ -26967,7 +26953,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last EXPORT_SYMBOL_GPL vmlinux 0xef97c081 __xdp_rxq_info_reg EXPORT_SYMBOL_GPL vmlinux 0xef9bddfc fscrypt_get_symlink -EXPORT_SYMBOL_GPL vmlinux 0xef9c02db __traceiter_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xef9d4a1a dev_pm_opp_get_opp_count EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier EXPORT_SYMBOL_GPL vmlinux 0xefa6cf6c relay_file_operations @@ -26975,24 +26960,31 @@ EXPORT_SYMBOL_GPL vmlinux 0xefabc85c serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0xefaf5756 switchdev_port_obj_add EXPORT_SYMBOL_GPL vmlinux 0xefb66190 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xefd4d497 regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0xefdbfb29 rio_unregister_mport EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs EXPORT_SYMBOL_GPL vmlinux 0xefeb658f genphy_c45_config_aneg EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0xf000ba5c regmap_exit EXPORT_SYMBOL_GPL vmlinux 0xf000f8e4 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xf0275360 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xf012a4fa devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xf02bde5f devm_gpiod_put EXPORT_SYMBOL_GPL vmlinux 0xf02d27ba syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf03cca91 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xf042f977 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf043c215 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable EXPORT_SYMBOL_GPL vmlinux 0xf071c8e0 devl_assert_locked EXPORT_SYMBOL_GPL vmlinux 0xf0790a7e fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xf08f7518 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf07fcd54 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf083c6bc bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf08bf77b shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream EXPORT_SYMBOL_GPL vmlinux 0xf0c9b177 pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0xf0d097da ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf0d3ac74 dev_pm_qos_flags EXPORT_SYMBOL_GPL vmlinux 0xf0dfc80c netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0xf0e19581 __irq_set_handler EXPORT_SYMBOL_GPL vmlinux 0xf0eb9cd5 devm_thermal_add_hwmon_sysfs @@ -27000,50 +26992,50 @@ EXPORT_SYMBOL_GPL vmlinux 0xf0fd0b61 x86_perf_get_lbr EXPORT_SYMBOL_GPL vmlinux 0xf108d294 sata_link_hardreset EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate -EXPORT_SYMBOL_GPL vmlinux 0xf12974e2 dev_pm_qos_update_user_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0xf12f7e1a dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xf13aa8e6 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf147f4c7 dax_finish_sync_fault EXPORT_SYMBOL_GPL vmlinux 0xf14a8b58 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xf14ac79a gpiochip_generic_config EXPORT_SYMBOL_GPL vmlinux 0xf1624b90 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xf165c906 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xf175d9d5 em_dev_register_perf_domain EXPORT_SYMBOL_GPL vmlinux 0xf17c2a63 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xf184aa48 pwmchip_add EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf1854766 blk_mq_unfreeze_queue EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf18d7e17 perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0xf194eb96 pci_intx EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags EXPORT_SYMBOL_GPL vmlinux 0xf1d6e377 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xf1da90bc regulator_disable_deferred EXPORT_SYMBOL_GPL vmlinux 0xf1df7c84 __acpi_node_get_property_reference EXPORT_SYMBOL_GPL vmlinux 0xf1ec0c85 debugfs_create_dir EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset EXPORT_SYMBOL_GPL vmlinux 0xf1f245ed divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id EXPORT_SYMBOL_GPL vmlinux 0xf2032ab3 ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xf20a115e filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0xf2179aae regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf203387c trace_array_printk EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0xf226e290 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0xf237a3b3 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0xf24d674b devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xf24fab22 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xf251c947 crypto_unregister_shash EXPORT_SYMBOL_GPL vmlinux 0xf252ad63 __rio_local_read_config_8 EXPORT_SYMBOL_GPL vmlinux 0xf2711fc8 edac_device_handle_ce_count EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf28a235b clk_hw_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29b96cb devm_fwnode_pwm_get EXPORT_SYMBOL_GPL vmlinux 0xf29ece6f skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0xf2a01638 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0xf2afa440 devlink_port_attrs_pci_pf_set EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xf2b343f1 crypto_get_default_null_skcipher EXPORT_SYMBOL_GPL vmlinux 0xf2c1d20d pci_epf_create EXPORT_SYMBOL_GPL vmlinux 0xf2c41de2 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg EXPORT_SYMBOL_GPL vmlinux 0xf2d3536b mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xf2d361d1 __pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0xf2f44331 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0xf2f756e0 __traceiter_block_bio_remap EXPORT_SYMBOL_GPL vmlinux 0xf2fb3282 extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0xf2fb5af2 sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default @@ -27056,36 +27048,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xf31b7631 crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf340af06 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xf3425112 hte_ts_get EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xf3558a5d usb_hcd_link_urb_to_ep EXPORT_SYMBOL_GPL vmlinux 0xf3589884 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xf3607d70 perf_event_period EXPORT_SYMBOL_GPL vmlinux 0xf36149f2 wm8350_reg_unlock EXPORT_SYMBOL_GPL vmlinux 0xf374c54d strp_check_rcv EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit EXPORT_SYMBOL_GPL vmlinux 0xf37e8b42 __reset_control_get EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu EXPORT_SYMBOL_GPL vmlinux 0xf382910e alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xf38c1d7e devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xf395616e i2c_probe_func_quick_read EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove EXPORT_SYMBOL_GPL vmlinux 0xf3cab17d cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xf3d684e4 dev_pm_qos_remove_request EXPORT_SYMBOL_GPL vmlinux 0xf3f35744 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xf40523c1 __devm_spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule +EXPORT_SYMBOL_GPL vmlinux 0xf4303973 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xf4347103 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0xf43ab567 input_ff_flush EXPORT_SYMBOL_GPL vmlinux 0xf43af1c2 led_set_brightness EXPORT_SYMBOL_GPL vmlinux 0xf441e673 device_create EXPORT_SYMBOL_GPL vmlinux 0xf44ba3cc gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xf44df5eb __SCK__tp_func_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0xf456e302 raw_v6_match EXPORT_SYMBOL_GPL vmlinux 0xf458cbe5 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46ae26c follow_pte EXPORT_SYMBOL_GPL vmlinux 0xf46e913e xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit EXPORT_SYMBOL_GPL vmlinux 0xf485b74a adp5520_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xf4887699 blk_mq_update_nr_hw_queues EXPORT_SYMBOL_GPL vmlinux 0xf4890915 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0xf49057a9 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xf49e0f16 clk_hw_init_rate_request EXPORT_SYMBOL_GPL vmlinux 0xf4a0e07c crypto_aead_setkey EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal EXPORT_SYMBOL_GPL vmlinux 0xf4c0a81b usb_reset_device @@ -27093,56 +27093,57 @@ EXPORT_SYMBOL_GPL vmlinux 0xf4c9620c ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf50f5015 regulator_get_exclusive EXPORT_SYMBOL_GPL vmlinux 0xf515895d irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xf517da8d pwm_adjust_config -EXPORT_SYMBOL_GPL vmlinux 0xf522378e gpiochip_line_is_irq EXPORT_SYMBOL_GPL vmlinux 0xf5350f3c devres_find +EXPORT_SYMBOL_GPL vmlinux 0xf53fe1b2 __traceiter_neigh_event_send_dead EXPORT_SYMBOL_GPL vmlinux 0xf542d968 pingv6_ops EXPORT_SYMBOL_GPL vmlinux 0xf544151a __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf54b088c bio_end_io_acct_remapped EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54c09da __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xf54fa0b0 i2c_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock EXPORT_SYMBOL_GPL vmlinux 0xf55e1dca gnttab_page_cache_get -EXPORT_SYMBOL_GPL vmlinux 0xf577cbd6 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0xf5863f0b dummy_con -EXPORT_SYMBOL_GPL vmlinux 0xf5864699 devm_register_restart_handler EXPORT_SYMBOL_GPL vmlinux 0xf5878cc7 fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0xf5a02dd3 vfs_cancel_lock EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus EXPORT_SYMBOL_GPL vmlinux 0xf5aca61d blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xf5af2864 ata_link_next EXPORT_SYMBOL_GPL vmlinux 0xf5b52d5c hv_vp_assist_page EXPORT_SYMBOL_GPL vmlinux 0xf5b7fd3e __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xf5b8d10f filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0xf5b99a33 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf5d5aa0e spi_sync EXPORT_SYMBOL_GPL vmlinux 0xf5f214b9 thermal_clear_package_intr_status EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node EXPORT_SYMBOL_GPL vmlinux 0xf604f534 pci_generic_config_write32 EXPORT_SYMBOL_GPL vmlinux 0xf6063f22 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0xf6107c4d regmap_read EXPORT_SYMBOL_GPL vmlinux 0xf61176f3 encrypt_blob EXPORT_SYMBOL_GPL vmlinux 0xf6132089 ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xf615ddf9 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xf62571d3 to_nd_desc EXPORT_SYMBOL_GPL vmlinux 0xf62c5af6 devm_regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf63f003a acpi_gpio_get_io_resource EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf658d90a dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0xf6595d9c is_swiotlb_active -EXPORT_SYMBOL_GPL vmlinux 0xf65f4ad4 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xf650d1b6 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf65322c4 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync EXPORT_SYMBOL_GPL vmlinux 0xf6735373 pci_msi_prepare EXPORT_SYMBOL_GPL vmlinux 0xf676a9fc of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xf67d2b24 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xf683a3d3 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xf69e2c5a __traceiter_neigh_update EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects EXPORT_SYMBOL_GPL vmlinux 0xf6a50036 folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0xf6a68ce1 blk_lld_busy EXPORT_SYMBOL_GPL vmlinux 0xf6b2a01e __irq_domain_alloc_fwnode EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6ccb087 __SCK__tp_func_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0xf6daf630 devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0xf6db8ec0 __vfs_setxattr_locked EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge EXPORT_SYMBOL_GPL vmlinux 0xf6eef732 __pci_epc_create -EXPORT_SYMBOL_GPL vmlinux 0xf708bc40 regulator_get_error_flags -EXPORT_SYMBOL_GPL vmlinux 0xf70d5acc apply_to_page_range EXPORT_SYMBOL_GPL vmlinux 0xf711f4dc __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0xf712c386 ata_ehi_push_desc EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys @@ -27166,37 +27167,37 @@ EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync EXPORT_SYMBOL_GPL vmlinux 0xf7857111 platform_device_register_full EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf78cf96a __SCK__tp_func_extlog_mem_event EXPORT_SYMBOL_GPL vmlinux 0xf7914474 devm_request_pci_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0xf79747dc devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0xf79ae3f4 pwmchip_remove EXPORT_SYMBOL_GPL vmlinux 0xf79c7bcd irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0xf79e908d adp5520_write -EXPORT_SYMBOL_GPL vmlinux 0xf7a18a9b __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xf7a49045 __traceiter_devlink_trap_report EXPORT_SYMBOL_GPL vmlinux 0xf7a82900 acpi_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf7c8b6f6 __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xf7c7b208 rcu_trc_cmpxchg_need_qs EXPORT_SYMBOL_GPL vmlinux 0xf7cda565 hwspin_lock_unregister EXPORT_SYMBOL_GPL vmlinux 0xf7cfc128 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0xf7eb0b36 trace_get_event_file EXPORT_SYMBOL_GPL vmlinux 0xf7fae124 acpi_gpiochip_request_interrupts EXPORT_SYMBOL_GPL vmlinux 0xf8063013 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf80cc5f7 gpiochip_irqchip_irq_valid EXPORT_SYMBOL_GPL vmlinux 0xf8159f2b rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0xf817459e devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf817ced3 regulator_list_voltage EXPORT_SYMBOL_GPL vmlinux 0xf81c26e6 lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf81ee9f5 netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xf8231c8a badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0xf8253576 sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0xf825d45e tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu EXPORT_SYMBOL_GPL vmlinux 0xf8345e39 xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0xf83aac84 __traceiter_neigh_update_done EXPORT_SYMBOL_GPL vmlinux 0xf840ea85 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xf841ea2d i2c_add_numbered_adapter -EXPORT_SYMBOL_GPL vmlinux 0xf852f670 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf856a967 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf857367c __traceiter_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xf85af929 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xf85ea443 perf_get_aux EXPORT_SYMBOL_GPL vmlinux 0xf866a783 raw_hash_sk EXPORT_SYMBOL_GPL vmlinux 0xf86cdf96 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xf8776ebb da9052_regmap_config @@ -27206,44 +27207,51 @@ EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len EXPORT_SYMBOL_GPL vmlinux 0xf8a2b062 xenbus_probe_node EXPORT_SYMBOL_GPL vmlinux 0xf8a6e350 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xf8a8bdd2 bpf_trace_run6 EXPORT_SYMBOL_GPL vmlinux 0xf8a933fc crypto_grab_skcipher EXPORT_SYMBOL_GPL vmlinux 0xf8bc0beb clear_node_memory_type EXPORT_SYMBOL_GPL vmlinux 0xf8ce4119 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf8d68e4e __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0xf8d7c745 vcap_lookup_rule_by_cookie EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr EXPORT_SYMBOL_GPL vmlinux 0xf903b9cf tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xf9072204 regmap_check_range_table EXPORT_SYMBOL_GPL vmlinux 0xf90f01e7 cleanup_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0xf9101c9b __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf928bff7 __SCK__tp_func_suspend_resume EXPORT_SYMBOL_GPL vmlinux 0xf92f49e4 blk_mq_unquiesce_queue -EXPORT_SYMBOL_GPL vmlinux 0xf93b4428 __tracepoint_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xf949990f pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf95500d5 vcap_enable_lookups EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf97de8f3 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xf98e724c regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xf99cee25 __traceiter_block_rq_remap EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9d47809 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf9d3cb34 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xf9d82bb1 dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0xf9e91ce8 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf9ea3f7a bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xf9ef9569 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xf9f12a22 __SCK__tp_func_sched_overutilized_tp EXPORT_SYMBOL_GPL vmlinux 0xfa0c9826 serial8250_em485_stop_tx EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option EXPORT_SYMBOL_GPL vmlinux 0xfa224b96 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xfa25f5cc __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xfa269058 __tracepoint_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa38870a clk_register EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted EXPORT_SYMBOL_GPL vmlinux 0xfa4f3ddc fuse_init_fs_context_submount EXPORT_SYMBOL_GPL vmlinux 0xfa4fa497 __crypto_alloc_tfm EXPORT_SYMBOL_GPL vmlinux 0xfa56b695 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xfa57d7a9 regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa66f705 __clk_get_hw EXPORT_SYMBOL_GPL vmlinux 0xfa79bbda balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0xfa7b36c4 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xfa98c92d of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xfa9a9c06 netlink_add_tap EXPORT_SYMBOL_GPL vmlinux 0xfaa54b29 irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xfaa9b711 crypto_register_algs EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range @@ -27258,6 +27266,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax EXPORT_SYMBOL_GPL vmlinux 0xfadea21c p2sb_bar EXPORT_SYMBOL_GPL vmlinux 0xfaea5bb0 acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xfaec800b ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0xfafcdd02 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0xfb07f680 agp_add_bridge EXPORT_SYMBOL_GPL vmlinux 0xfb190a86 request_firmware_direct @@ -27266,17 +27275,14 @@ EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb35890a x509_cert_parse EXPORT_SYMBOL_GPL vmlinux 0xfb3aa750 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xfb48ac53 ata_host_register EXPORT_SYMBOL_GPL vmlinux 0xfb4cd197 switchdev_port_obj_del EXPORT_SYMBOL_GPL vmlinux 0xfb4f2c42 sata_link_debounce EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name EXPORT_SYMBOL_GPL vmlinux 0xfb746b1a iomap_get_folio EXPORT_SYMBOL_GPL vmlinux 0xfb74e910 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xfb80d3c9 regulator_set_voltage_time EXPORT_SYMBOL_GPL vmlinux 0xfb830233 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0xfb834677 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0xfb86caa7 clk_register EXPORT_SYMBOL_GPL vmlinux 0xfb89717a device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0xfb9e80d6 rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0xfb9fc975 vcap_find_keystream_keysets @@ -27288,8 +27294,7 @@ EXPORT_SYMBOL_GPL vmlinux 0xfbd50a00 device_create_file EXPORT_SYMBOL_GPL vmlinux 0xfbdc9a64 regmap_add_irq_chip_fwnode EXPORT_SYMBOL_GPL vmlinux 0xfbde4e1b tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0xfbfa9b4f __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0xfbfb192e rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xfbdfadd6 cgroup_get_from_id EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram EXPORT_SYMBOL_GPL vmlinux 0xfc0f5c40 decrypt_blob @@ -27298,49 +27303,44 @@ EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power EXPORT_SYMBOL_GPL vmlinux 0xfc497b40 devl_lock EXPORT_SYMBOL_GPL vmlinux 0xfc4df8cb genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xfc4e5fc0 __SCK__tp_func_powernv_throttle EXPORT_SYMBOL_GPL vmlinux 0xfc5957a9 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xfc85b1b2 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xfc792ee2 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xfc82f8e5 vfs_test_lock EXPORT_SYMBOL_GPL vmlinux 0xfc98c8dc xen_percpu_upcall EXPORT_SYMBOL_GPL vmlinux 0xfc9fabe6 dev_pm_opp_set_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0xfca03181 regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0xfca77270 dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0xfcaa0c76 xfer_to_guest_mode_handle_work EXPORT_SYMBOL_GPL vmlinux 0xfcadfcea __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xfcbf384f __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed EXPORT_SYMBOL_GPL vmlinux 0xfcc04718 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes EXPORT_SYMBOL_GPL vmlinux 0xfcc45eb0 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0xfcc6e1db gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe EXPORT_SYMBOL_GPL vmlinux 0xfcda4e5a xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0xfcde4d88 __get_task_comm EXPORT_SYMBOL_GPL vmlinux 0xfcde9b66 mbox_client_peek_data EXPORT_SYMBOL_GPL vmlinux 0xfce18b20 strp_done -EXPORT_SYMBOL_GPL vmlinux 0xfce1e9bd kern_mount EXPORT_SYMBOL_GPL vmlinux 0xfce7da2b crypto_akcipher_sync_decrypt EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown EXPORT_SYMBOL_GPL vmlinux 0xfd00e738 pstore_register EXPORT_SYMBOL_GPL vmlinux 0xfd07189b lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd07a94a ata_host_alloc EXPORT_SYMBOL_GPL vmlinux 0xfd182bc6 dma_vmap_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0xfd22630a debugfs_file_put EXPORT_SYMBOL_GPL vmlinux 0xfd232780 pci_epc_linkdown EXPORT_SYMBOL_GPL vmlinux 0xfd4eb4cb phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xfd54b86a devm_regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd756bfc devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd8847b1 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0xfd935496 regmap_field_read EXPORT_SYMBOL_GPL vmlinux 0xfd9da548 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xfd9df1ef ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfdbe05be netlink_has_listeners EXPORT_SYMBOL_GPL vmlinux 0xfdbf31c8 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0xfdc54960 irqd_cfg EXPORT_SYMBOL_GPL vmlinux 0xfdc62d6e kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0xfdd6d4fd fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfdf9bd94 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xfdfd4021 devlink_port_region_create EXPORT_SYMBOL_GPL vmlinux 0xfe02c037 pm_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0xfe089412 vp_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars @@ -27360,7 +27360,6 @@ EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine EXPORT_SYMBOL_GPL vmlinux 0xfe8b890e blk_crypto_reprogram_all_keys EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe8e9961 gpiod_get_value EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfec994b7 edac_mc_find_csrow_by_page EXPORT_SYMBOL_GPL vmlinux 0xfec9f628 genphy_c45_fast_retrain @@ -27376,19 +27375,17 @@ EXPORT_SYMBOL_GPL vmlinux 0xff052117 acpi_gpiochip_free_interrupts EXPORT_SYMBOL_GPL vmlinux 0xff059ae5 kernel_read_file EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xff085945 __tracepoint_ipi_send_cpu EXPORT_SYMBOL_GPL vmlinux 0xff089412 iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0xff0f657c acct_bioset_init -EXPORT_SYMBOL_GPL vmlinux 0xff129e9b devlink_sb_unregister EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff182a67 ip6_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0xff30b1cf _proc_mkdir EXPORT_SYMBOL_GPL vmlinux 0xff332db8 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff34b0a9 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xff370732 ata_std_qc_defer EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role EXPORT_SYMBOL_GPL vmlinux 0xff537417 iomap_file_buffered_write_punch_delalloc -EXPORT_SYMBOL_GPL vmlinux 0xff69f63d nvdimm_to_bus EXPORT_SYMBOL_GPL vmlinux 0xff6e45e1 regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff7fc364 anon_transport_class_unregister @@ -27397,10 +27394,13 @@ EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable EXPORT_SYMBOL_GPL vmlinux 0xff90f32a debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa69730 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies EXPORT_SYMBOL_GPL vmlinux 0xffbdb210 hwspin_lock_request_specific EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffccc3d3 __SCK__tp_func_unmap EXPORT_SYMBOL_GPL vmlinux 0xffd33469 thermal_acpi_passive_trip_temp +EXPORT_SYMBOL_GPL vmlinux 0xffea3dfc perf_aux_output_begin EXPORT_SYMBOL_GPL vmlinux 0xffeec10f __clocksource_register_scale EXPORT_SYMBOL_GPL vmlinux 0xfff776d2 pm_clk_add FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux @@ -27438,45 +27438,45 @@ GPIO_TANGIER EXPORT_SYMBOL_GPL 0x12d92138 tng_gpio_suspend drivers/gpio/gpio-tangier GPIO_TANGIER EXPORT_SYMBOL_GPL 0x3353630f devm_tng_gpio_probe drivers/gpio/gpio-tangier GPIO_TANGIER EXPORT_SYMBOL_GPL 0x4c7a1f3d tng_gpio_resume drivers/gpio/gpio-tangier -HWMON_THERMAL EXPORT_SYMBOL_GPL 0xf9d5b88d hwmon_device_register_for_thermal vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xe5502ef3 hwmon_device_register_for_thermal vmlinux I8255 EXPORT_SYMBOL_GPL 0xbec2b21d devm_i8255_regmap_register drivers/gpio/gpio-i8255 -I915_GVT EXPORT_SYMBOL_GPL 0x04d4eff7 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x0936d979 __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x0b49dc99 i915_reserve_fence drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x1171e1af i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x16e7ca0c i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x1f981f83 intel_context_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x2bd6cfde _i915_vma_move_to_active drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x2fdae493 __intel_context_do_pin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x3356d5d2 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0234ce57 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x09b252e3 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x09e15ceb shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0a6fd06b i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x11d1c2c8 i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1e39a280 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2080216c __intel_context_do_pin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2c60bd4b __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2d9c5908 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x38b91c5b i915_fence_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x3d60f6e1 intel_ring_begin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x449fc2a7 i915_gem_object_alloc drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x532ecfb9 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x5356b472 i915_unreserve_fence drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x5c3bbe74 i915_gem_prime_export drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x61706699 __px_dma drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x62f4d914 i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x772762f3 __intel_context_do_unpin drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x7f3d799d i915_gem_gtt_insert drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x84a665ed i915_gem_object_init drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x878b3674 __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x3ac2bf37 __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x3ce56341 i915_request_wait drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x3f5fe15f i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x42e954b4 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4b07b7d0 intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4cceeae7 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x515e7f0e i915_request_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x55bf94ef i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7bf92e6e intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7e15f7ea i915_gem_prime_export drivers/gpu/drm/i915/i915 I915_GVT EXPORT_SYMBOL_GPL 0x890fc889 i915_vm_release drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x89eea787 intel_runtime_pm_get drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x966ea6e2 i915_request_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0x9e4f86b2 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xb0b1580c i915_request_add drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xb66611af intel_gvt_set_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xb76cef82 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xbb68d5d6 shmem_unpin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xc8032d1a i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xdc08ed54 i915_request_wait drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xe07be888 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xe9b3edc1 i915_ppgtt_create drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xef68cf98 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xf1cbc0c4 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xf6ddeb80 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 -I915_GVT EXPORT_SYMBOL_GPL 0xfa4f1879 shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8f75876a intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x911a4fde intel_gvt_set_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x93428ca1 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x962f9890 shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x9f8a5dd2 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xa0535078 intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc59fbf12 __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc5c6455c i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xcb9bcd0c __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xcf561720 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd8f3b1d7 i915_ppgtt_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdb242eac i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdbc59721 i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdbd10728 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xeaaf2d8d i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xfef9bd5b intel_context_create drivers/gpu/drm/i915/i915 IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x60b2e814 idle_inject_register vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x85c2b7eb idle_inject_stop vmlinux @@ -27485,12 +27485,12 @@ IDLE_INJECT EXPORT_SYMBOL_GPL 0xc18575af idle_inject_set_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux -IDXD EXPORT_SYMBOL_GPL 0x2af7222b idxd_dmaengine_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0x319e5f6e __idxd_driver_register drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x3e86f2f5 dsa_bus_type drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0x5a9a1c8c idxd_user_drv drivers/dma/idxd/idxd -IDXD EXPORT_SYMBOL_GPL 0x77744271 idxd_driver_unregister drivers/dma/idxd/idxd_bus -IDXD EXPORT_SYMBOL_GPL 0xda025089 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x6a43be64 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x9c58b579 __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xdf5d7340 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xe2e69563 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xe5e7d50e dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xf496c182 idxd_driver_unregister drivers/dma/idxd/idxd_bus IIO_AD5592R EXPORT_SYMBOL_GPL 0x18e49a85 ad5592r_remove drivers/iio/dac/ad5592r-base IIO_AD5592R EXPORT_SYMBOL_GPL 0xfe0ef28f ad5592r_probe drivers/iio/dac/ad5592r-base IIO_AD5686 EXPORT_SYMBOL_GPL 0x20f64b97 ad5686_remove drivers/iio/dac/ad5686 @@ -27880,13 +27880,13 @@ NET_MANA EXPORT_SYMBOL 0x75e26706 mana_gd_send_request drivers/net/ethernet/microsoft/mana/mana NET_MANA EXPORT_SYMBOL 0x9dc2c706 mana_gd_destroy_dma_region drivers/net/ethernet/microsoft/mana/mana NET_MANA EXPORT_SYMBOL 0xab3abda8 mana_destroy_wq_obj drivers/net/ethernet/microsoft/mana/mana -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x200f5da7 nvme_passthru_start drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2a3ee916 nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2e60dc15 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x33d9b64e nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8bf44138 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa8c3c320 nvme_execute_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xde260f37 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x06ebe7cb nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0e597347 nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x20865368 nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3814f3db nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3dc42dc4 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xeac99ced nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xf57e0fe9 nvme_put_ns drivers/nvme/host/nvme-core PECI EXPORT_SYMBOL_GPL 0x00240a16 peci_request_status drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0x1110db13 peci_driver_unregister drivers/peci/peci PECI EXPORT_SYMBOL_GPL 0x21448f38 peci_xfer_ep_pci_cfg_readw drivers/peci/peci @@ -28151,7 +28151,7 @@ SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x453d3e37 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x56d14d07 sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x5d301566 sof_skl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common -SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x628e98f0 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x65a89da3 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x751e2a68 sof_skl_ops sound/soc/sof/intel/snd-sof-intel-hda-common SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x75c0ca54 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x822a0c1f hda_ops_free sound/soc/sof/intel/snd-sof-intel-hda-common diff -u linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle.modules linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle.modules --- linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle.modules +++ linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle.modules @@ -6106,6 +6106,7 @@ wp512 wpcm450-soc wusb3801 +wwan wwan_hwsim x25 x38_edac diff -u linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle.modules.builtin linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle.modules.builtin --- linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle.modules.builtin +++ linux-oracle-6.5-6.5.0/debian.oracle/abi/amd64/oracle.modules.builtin @@ -265,7 +265,6 @@ vivaldi-fmap vmgenid watchdog -wwan x509_key_parser xen-acpi-processor xen-blkfront diff -u linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle --- linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle +++ linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle @@ -1,145 +1,145 @@ ACPI EXPORT_SYMBOL_GPL 0xa6af1390 acpi_table_parse_cedt vmlinux -BRCMFMAC EXPORT_SYMBOL_GPL 0x1ab1ec90 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -BRCMFMAC EXPORT_SYMBOL_GPL 0xdefaea77 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac -COUNTER EXPORT_SYMBOL_GPL 0x090cd639 devm_counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x423e2c30 counter_priv drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x84fdb267 devm_counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0x890e029a counter_push_event drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xbd1db397 counter_unregister drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xc9af5e79 counter_add drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xe08209b9 counter_alloc drivers/counter/counter -COUNTER EXPORT_SYMBOL_GPL 0xec44bc26 counter_put drivers/counter/counter -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x1ed888fe otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x236bf92d otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x2bb0844b otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x3f2435b7 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x45fb53b7 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x72f5b84a otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x75cfc259 otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7d4a2661 otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7ee443ca cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8187b3a3 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa740b593 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb22a78d8 otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xbbe90998 cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xc32c86ed otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xc79f190b otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xd4bd011e otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xfd762115 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x27590af1 crypto_cipher_encrypt_one vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb6cd150f crypto_cipher_setkey vmlinux -CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xbedd5e14 crypto_cipher_decrypt_one vmlinux -CXL EXPORT_SYMBOL_GPL 0x014a2668 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0439a630 read_cdat_data drivers/cxl/core/cxl_core +BRCMFMAC EXPORT_SYMBOL_GPL 0x18027a03 brcmf_fwvid_register_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +BRCMFMAC EXPORT_SYMBOL_GPL 0x2698db73 brcmf_fwvid_unregister_vendor drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac +COUNTER EXPORT_SYMBOL_GPL 0x0a4de493 devm_counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x1cdf0c87 counter_push_event drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x1fbda55b devm_counter_add drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x7f67776d counter_priv drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0x8044e8ca counter_unregister drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xce6e7249 counter_alloc drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xd11de77b counter_put drivers/counter/counter +COUNTER EXPORT_SYMBOL_GPL 0xf4f60524 counter_add drivers/counter/counter +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x030d8b67 otx2_cpt_read_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x273d3bba otx2_cpt_send_ready_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x2d82148f otx2_cptlf_free_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x44af9525 otx2_cpt_send_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x6769e361 otx2_cptlf_register_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x7111962a otx2_cptlf_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x71b5ff55 cn10k_cptvf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x73fd529d otx2_cptlf_unregister_interrupts drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x810ac4e1 otx2_cpt_add_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8bcfcb9c otx2_cpt_send_af_reg_requests drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x8cf0d7c8 otx2_cptlf_set_irqs_affinity drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0x9fd2cfdd otx2_cpt_msix_offset_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xa53bf7c3 otx2_cptlf_shutdown drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xb6042f1c otx2_cpt_write_af_reg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xcb0c1e36 cn10k_cptpf_lmtst_init drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xe233bb4b otx2_cpt_sync_mbox_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_DEV_OCTEONTX2_CPT EXPORT_SYMBOL_GPL 0xff0d6345 otx2_cpt_detach_rsrcs_msg drivers/crypto/marvell/octeontx2/rvu_cptcommon +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3ebefc82 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa73aa867 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xb090a758 crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x032c536e cxl_pci_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x041a3113 cxl_mem_find_port drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux -CXL EXPORT_SYMBOL_GPL 0x06edb56f to_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0e82847d is_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x0f6318ad cxl_mem_get_event_records drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x11827ef4 cxl_probe_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x11a35622 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x131a7cc0 cxl_map_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1768517a cxl_dev_state_identify drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x1afb3afb cxl_decoder_add drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x20c524b7 cxl_cor_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x21eec1a6 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x22629825 cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2371cede cxl_internal_send_cmd drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x23d7e5f8 cxl_probe_component_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x2ee3d7b1 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x07063798 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x07153709 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x074b6fc5 cxl_memdev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x079c0071 to_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x08ba0159 cxl_map_pmu_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x09596965 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0a885ba3 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1852f93e cxl_find_regblock_instance drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1d90f870 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2072e5d6 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23326259 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29d44c11 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2d8528c3 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2f9c1c81 cxl_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x334a9418 cxl_count_regblock drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux -CXL EXPORT_SYMBOL_GPL 0x38a92936 cxl_add_to_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3a269d72 cxl_bus_type drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3e4ff210 set_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3e974293 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3eed65e1 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x3f6e2a6d is_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x47fc537e cxl_poison_state_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x48cbed9a is_cxl_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4e062b6e cxl_memdev_state_create drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4f9aff13 devm_cxl_setup_hdm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x4ffc61e6 cxl_port_to_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5165112b is_cxl_pmem_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5904a196 cxl_clear_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x59184001 cxl_find_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5a8c79a4 cxl_count_regblock drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5be5ecae to_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5d0cb67e cxl_mem_get_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x5dac0fe0 is_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x63614167 cxl_dpa_debug drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6842efa1 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6a108750 devm_cxl_add_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x6f293de2 cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x341d895d to_cxl_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x396cb156 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x40720c00 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x409ee365 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4b74260c cxl_cor_error_detected drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4ecf8313 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5574cf56 cxl_mem_sanitize drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x55ac765e cxl_mem_get_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x57be39a3 to_cxl_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5cb18526 cxl_hb_modulo drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5eb6985d is_switch_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x61d9b569 cxl_trigger_poison_list drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6653ac42 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x66f31232 read_cdat_data drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6a15b31b cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ac20fdb devm_cxl_dpa_reserve drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6bb54fb1 cxl_dpa_debug drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6f5a364d is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ffe8f88 cxl_root_decoder_alloc drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x701bbaad cxl_bus_rescan drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x72cb73e0 cxl_await_media_ready drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7344c787 cxl_error_detected drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x788e3f52 cxl_root_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x789cb2ec cxl_set_timestamp drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x7fa07178 to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7049215b cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x71df37a4 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x72349f87 cxl_inject_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7359d8f7 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x75e085be cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x763d28b8 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x77f1751c cxl_memdev_setup_fw_upload drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7c422921 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x7fa19cc4 alloc_free_mem_region vmlinux -CXL EXPORT_SYMBOL_GPL 0x7fd289bc cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x80fe3edf cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x80e8c3d8 is_cxl_nvdimm drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x84b45156 insert_resource_expand_to_fit vmlinux -CXL EXPORT_SYMBOL_GPL 0x86ffe2aa devm_cxl_add_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8a248c97 __cxl_driver_register drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8ab4a9a3 to_cxl_dax_region drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x8c7466bc cxl_trigger_poison_list drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x938de248 cxl_pci_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x93d30258 cxl_debugfs_create_dir drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x869b0061 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8837815e cxl_mem_get_event_records drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x88476471 cxl_setup_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8aa94df7 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8c21dd13 is_cxl_pmem_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8eb3fa5e devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x91601106 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x958f21a2 is_cxl_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x97fe3ea4 devm_cxl_pmu_add drivers/cxl/core/cxl_core CXL EXPORT_SYMBOL_GPL 0x98628ac8 cxl_bus_drain drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9c74a4bf cxl_decoder_add_locked drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0x9ff32650 cxl_hb_modulo drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa75e97e0 is_endpoint_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xa79e19b2 to_cxl_switch_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xaa9e8908 is_cxl_memdev drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xaaa11dff cxl_mem_create_range_info drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xae036aaf cxl_setup_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb3a037be is_cxl_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb3efae84 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb5a0a0dd to_cxl_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb5dcc8b6 cxl_find_regblock_instance drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb72ab738 cxl_map_pmu_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xb9755c5b devm_cxl_add_nvdimm drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xbe288b8b cxl_map_device_regs drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc07eba28 cxl_decoder_autoremove drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc2d16031 cxl_enumerate_cmds drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc3d5edf4 cxl_driver_unregister drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xc66e7bd7 devm_cxl_add_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcad50a08 devm_cxl_dpa_reserve drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcc1cb69e schedule_cxl_memdev_detach drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xcc2e247a cxl_mem_find_port drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd12d8906 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd22056a5 cxl_mem_sanitize drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xd73303b2 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xde017f28 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xdf400af2 to_cxl_root_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe0a995b9 cxl_inject_poison drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe3dab1ec cxl_hdm_decode_init drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xe429415c to_cxl_decoder drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xea88c050 find_cxl_root drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf7bc9f45 devm_cxl_add_rch_dport drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xf7c02724 cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core -CXL EXPORT_SYMBOL_GPL 0xfe3b332e devm_cxl_pmu_add drivers/cxl/core/cxl_core -DMA_BUF EXPORT_SYMBOL_GPL 0x11abd3e8 dma_buf_mmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x15b84806 dma_buf_map_attachment_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x294d87bc dma_buf_vunmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x34cc58f3 dma_buf_vmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x3cc8dd98 dma_buf_move_notify vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x3dd2969a dma_buf_fd vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x3e89af20 dma_buf_end_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x5d979b61 dma_buf_get vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x77536b9b dma_buf_detach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x79fdc99e dma_buf_begin_cpu_access vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x8542a9f6 dma_buf_unmap_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x964e9213 dma_buf_pin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0x9b1ed3a5 dma_buf_put vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xa46b903d dma_buf_dynamic_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xadd4c3e2 dma_buf_vmap vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xb4642dea dma_buf_export vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xb9588861 dma_buf_map_attachment vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xbc76019a dma_buf_unpin vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xc7d2928b dma_buf_attach vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xdcfa6b21 dma_buf_vunmap_unlocked vmlinux -DMA_BUF EXPORT_SYMBOL_GPL 0xed58c667 dma_buf_unmap_attachment_unlocked vmlinux +CXL EXPORT_SYMBOL_GPL 0x9a561dbd cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9cff0acb cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9f66a035 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa03c8138 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa059b4f5 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa0a56503 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa5fbedb5 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa7efd9c0 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab0ab687 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab71cc7f cxl_internal_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xae152b33 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb002eff5 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb12b4c7b devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb1b18c40 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbed65395 cxl_add_to_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc68625d0 is_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcb99aba8 cxl_clear_poison drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcf59b4e4 to_cxl_dax_region drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcfad5763 cxl_set_timestamp drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1fe7d99 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd278858e is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd4205d0a cxl_dvsec_rr_decode drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd4e3b73a cxl_rcd_component_reg_phys drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd89b9f95 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdc0eea50 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe482dced to_cxl_endpoint_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf039d97b cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf0cdb6f1 cxl_poison_state_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf5e0b666 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf7a8438f cxl_find_regblock drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x078513d8 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x25e2a3c5 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2dbd8051 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x35c35597 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4dd8edbe dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x500cd4b9 dma_buf_map_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x54cc0b06 dma_buf_vunmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x57beddf3 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x78782297 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x90f09a7d dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa17be79b dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa5f22056 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xaef291bf dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbcfa38d4 dma_buf_vmap_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc5614278 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc6e8fe2e dma_buf_unmap_attachment_unlocked vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd1a08ef5 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd8ce68b6 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe28646e8 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xea0ee383 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfcec14de dma_buf_map_attachment vmlinux DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x EFIVAR EXPORT_SYMBOL_GPL 0x02cfcd2e efivar_trylock vmlinux EFIVAR EXPORT_SYMBOL_GPL 0x11940489 efivar_set_variable vmlinux @@ -149,7 +149,7 @@ EFIVAR EXPORT_SYMBOL_GPL 0xc961bff7 efivar_unlock vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xee5240dc efivar_query_variable_info vmlinux EFIVAR EXPORT_SYMBOL_GPL 0xefc77711 efivar_set_variable_locked vmlinux -EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x31143b0a ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x4015ae57 ce_aes_setkey EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xb8c706a6 neon_aes_ctr_encrypt @@ -189,53 +189,53 @@ EXPORT_SYMBOL crypto/ecc 0xde867c29 ecc_is_pubkey_valid_partial EXPORT_SYMBOL crypto/ecc 0xeac9b99a vli_from_le64 EXPORT_SYMBOL crypto/ecc 0xed4ae15e ecc_make_pub_key -EXPORT_SYMBOL crypto/nhpoly1305 0x18bb70cb crypto_nhpoly1305_update_helper -EXPORT_SYMBOL crypto/nhpoly1305 0x25a9294b crypto_nhpoly1305_init -EXPORT_SYMBOL crypto/nhpoly1305 0x39226883 crypto_nhpoly1305_final -EXPORT_SYMBOL crypto/nhpoly1305 0x3bb30d2e crypto_nhpoly1305_update -EXPORT_SYMBOL crypto/nhpoly1305 0x9b0105ca crypto_nhpoly1305_setkey -EXPORT_SYMBOL crypto/nhpoly1305 0xe3adb058 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x1975ccae crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x733a3a56 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xb52a975c crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xc20a5fd1 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xecf58c4e crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xf09d9320 crypto_nhpoly1305_final EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid -EXPORT_SYMBOL drivers/acpi/video 0x3b1d99af acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x3a5bf47c acpi_video_get_levels EXPORT_SYMBOL drivers/acpi/video 0x45b61916 acpi_video_register_backlight EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses EXPORT_SYMBOL drivers/acpi/video 0x7de7bf50 __acpi_video_get_backlight_type EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register -EXPORT_SYMBOL drivers/acpi/video 0xa865c766 acpi_video_get_levels -EXPORT_SYMBOL drivers/atm/suni 0xe77f95d7 suni_init -EXPORT_SYMBOL drivers/bcma/bcma 0x0dafbadf bcma_core_irq -EXPORT_SYMBOL drivers/bcma/bcma 0x6cc6842b bcma_core_dma_translation +EXPORT_SYMBOL drivers/acpi/video 0x946617da acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0xfa745085 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x262c3c12 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xc6305ab7 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 0x4f242a8f btbcm_patchram -EXPORT_SYMBOL drivers/bluetooth/btrsi 0x36727905 rsi_bt_ops -EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x4b17d5a4 mhi_sync_power_up +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x67e85c5f btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xf30fc098 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xd730bedd mhi_sync_power_up EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x14d3f6c7 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2f499df6 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6cf170a5 ipmi_get_smi_info EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x84fa65e7 ipmi_smi_watcher_register EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x91aa9067 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8d4284ff ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9812717f ipmi_smi_watcher_unregister EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user -EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbe607486 ipmi_add_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr @@ -245,51 +245,51 @@ EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf5531bea ipmi_poll_interface EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfaaa4831 ipmi_set_my_address EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfe0f2369 ipmi_get_maintenance_mode -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x09418160 kcs_bmc_remove_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x29d968f4 kcs_bmc_write_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x3df4dc45 kcs_bmc_read_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x4ea5b755 kcs_bmc_enable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x5ed80e94 kcs_bmc_disable_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x668020f8 kcs_bmc_write_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x6b24e83f kcs_bmc_read_data -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa10a415a kcs_bmc_add_device -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa335db34 kcs_bmc_handle_event -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xb3e45771 kcs_bmc_update_status -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xdd75dc9d kcs_bmc_unregister_driver -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xfcca3507 kcs_bmc_update_event_mask -EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xffabd045 kcs_bmc_register_driver -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x010e7fcd st33zp24_pm_suspend -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x508b7887 st33zp24_remove -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x73eb085a st33zp24_pm_resume -EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd884c611 st33zp24_probe -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x32708014 xillybus_init_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7d745a5f xillybus_cleanup_chrdev -EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x91e2b874 xillybus_find_inode +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x118f99ee kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1832fe39 kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x32b6c86d kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x50d3a132 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x571c9c4f kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x5ed6d1e2 kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x6466fc17 kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x863275f1 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x97211e25 kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xa4ec7929 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xe1af47aa kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf1d2fe6b kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0xf8986108 kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x018310a7 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x0faf7205 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x1f709a7f st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6d95ede8 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x01b5829c xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x0f3490f9 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x9c9b428d xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x01c3d5dc xillybus_endpoint_remove EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x45c6b411 xillybus_init_endpoint -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x474857b1 xillybus_endpoint_remove -EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xdba232af xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x704ab6a8 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9d29b0c2 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x33162e46 atmel_i2c_enqueue EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x84e1c81b atmel_i2c_send_receive -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x8ba1a9b7 atmel_i2c_enqueue -EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xa39e031a atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xb6c854bb atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc3d0dd5e atmel_i2c_probe EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xec95668c atmel_i2c_send_receive EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd -EXPORT_SYMBOL drivers/crypto/caam/caam 0x154283b2 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0x0f35b740 caam_qi_enqueue EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 -EXPORT_SYMBOL drivers/crypto/caam/caam 0x4034f0a9 caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0x44ae4bc4 qi_cache_free -EXPORT_SYMBOL drivers/crypto/caam/caam 0xbd73e78d caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0xb65e998c caam_drv_ctx_rel EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam 0xc5dd503c caam_drv_ctx_init -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x11dcc122 caam_jr_alloc -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1549286e caam_jr_enqueue -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1925ccfc caam_jr_free -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x277c13c8 split_key_done -EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x71ab6662 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam 0xd4e16f77 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0xee83d22e caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7996db25 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbb6e3706 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe1bda083 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe2aeff23 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe3585445 gen_split_key EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly @@ -308,709 +308,709 @@ EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0xfdf7ec8f cnstr_shdsc_rfc4106_encap EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0xb5571dbf cnstr_shdsc_ahash -EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x825b3e25 dpaa2_caam_enqueue -EXPORT_SYMBOL drivers/crypto/caam/error 0x0d5516eb caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/dpaa2_caam 0x37165d31 dpaa2_caam_enqueue EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz EXPORT_SYMBOL drivers/crypto/caam/error 0x60dbc82a caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0x9791e7e4 caam_strstatus EXPORT_SYMBOL drivers/crypto/caam/error 0xa51f16c7 caam_little_end EXPORT_SYMBOL drivers/crypto/caam/error 0xbd67c092 caam_imx -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x0cd9bf6e xdma_disable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x5430c7e2 xdma_enable_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xb1ebeade xdma_get_user_irq -EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x4649f745 xilinx_vdma_channel_set_config -EXPORT_SYMBOL drivers/firewire/firewire-core 0x06978ad2 fw_core_remove_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0b5d0e33 fw_iso_resource_manage +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x13ee7918 xdma_enable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0x4b070194 xdma_disable_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xdma 0xf6355424 xdma_get_user_irq +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x2bbc7fa4 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dceab6 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0a35747a fw_core_handle_request EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor -EXPORT_SYMBOL drivers/firewire/firewire-core 0x0fdcacf1 fw_iso_context_create -EXPORT_SYMBOL drivers/firewire/firewire-core 0x11f62a1f fw_iso_context_flush_completions EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed -EXPORT_SYMBOL drivers/firewire/firewire-core 0x29eac851 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x33a4d21f fw_core_handle_bus_reset EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d70df55 fw_send_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0x524cb5ea fw_core_handle_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x65e85e45 fw_card_add -EXPORT_SYMBOL drivers/firewire/firewire-core 0x6d831c8d fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x46178027 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49194fb9 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4be66c46 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x50ab4868 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6585d6cd fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x66c043a3 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69549a30 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6be302a8 fw_core_remove_address_handler EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x75d5c4dc fw_card_initialize -EXPORT_SYMBOL drivers/firewire/firewire-core 0x7811ec2d fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ef05b3f fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x754cdfdc fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x79325241 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x84b25420 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x85f9e9b1 fw_send_response EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string -EXPORT_SYMBOL drivers/firewire/firewire-core 0x885dba32 fw_iso_context_queue -EXPORT_SYMBOL drivers/firewire/firewire-core 0x8b462165 fw_schedule_bus_reset -EXPORT_SYMBOL drivers/firewire/firewire-core 0x9393d9d9 fw_core_add_address_handler -EXPORT_SYMBOL drivers/firewire/firewire-core 0x99638b2c fw_cancel_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xa50eb1d3 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90063f4a fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9292e17d fw_iso_buffer_init EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region -EXPORT_SYMBOL drivers/firewire/firewire-core 0xb505259d fw_run_transaction -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1f4824c fw_iso_context_start -EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3e9e8ff fw_device_enable_phys_dma -EXPORT_SYMBOL drivers/firewire/firewire-core 0xd917e27a fw_fill_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xdb5208a4 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb1408ed8 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb39670fa fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcdcac98d fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf0dba6f fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd9e4819f fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xde0b65ae fw_iso_context_queue EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe556e3bd fw_iso_context_start EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xec762c7e fw_iso_context_stop -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf2d5a79c fw_iso_buffer_init -EXPORT_SYMBOL drivers/firewire/firewire-core 0xf7b057bd fw_core_handle_response -EXPORT_SYMBOL drivers/firewire/firewire-core 0xfbeb6a06 fw_iso_buffer_destroy EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xd549e5c4 imx_dsp_ring_doorbell -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xdf933582 imx_dsp_free_channel -EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xffad34c0 imx_dsp_request_channel -EXPORT_SYMBOL drivers/fpga/dfl 0x774b1aa5 __dfl_driver_register -EXPORT_SYMBOL drivers/fpga/dfl 0x9ac293cf dfl_driver_unregister -EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x4eadf546 sysconfig_probe +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x6ca9c7c2 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7738a7b7 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xa8abb8ba imx_dsp_request_channel +EXPORT_SYMBOL drivers/fpga/dfl 0xdcc61af5 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xf121973f __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/lattice-sysconfig 0x58194f5c sysconfig_probe +EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0b8fd374 amdgpu_xcp_drm_dev_alloc EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0x0ea5d74b amdgpu_xcp_drv_release -EXPORT_SYMBOL drivers/gpu/drm/amd/amdxcp/amdxcp 0xfab425bc amdgpu_xcp_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x004ec937 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01568568 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01bc68b9 drm_dp_dual_mode_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01f1773d drm_dp_mst_detect_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0461bd91 drm_dp_pcon_frl_prepare -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b4c4cef drm_dp_read_downstream_info -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0c43bd26 drm_dp_add_payload_part2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d8be60a drm_dp_aux_unregister -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f01a0d9 drm_dp_link_train_channel_eq_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x10c351e9 drm_dp_read_desc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1198cebc drm_dp_set_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14a2dd10 drm_dp_read_sink_count_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x16041500 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c9493f drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02384d83 drm_dp_mst_hpd_irq_send_new_request +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07049ec9 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0747fc61 drm_dp_mst_edid_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0829e058 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08a48994 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b27d0d2 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0bf463cf drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0ff02ff8 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x10491657 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12507cf1 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14d6f9dc drm_dp_downstream_debug EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18735b3a drm_dp_mst_topology_mgr_resume EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1bb1d265 drm_dp_mst_topology_mgr_suspend -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1dc56a8f drm_dp_mst_topology_state_funcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1dfe3731 drm_dp_mst_atomic_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f2cf3ae drm_dp_send_query_stream_enc_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20229aaf drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1cfeac44 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1ea95ed5 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f141990 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2102e1d1 drm_atomic_get_new_mst_topology_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24035a02 drm_dp_dual_mode_max_tmds_clock EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24ada755 drm_dsc_set_rc_buf_thresh +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x251b8e73 drm_dp_pcon_convert_rgb_to_ycbcr EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x282daefe drm_dp_mst_get_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2baffed2 drm_dp_dual_mode_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2bbc2514 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c5b6ff6 drm_dp_pcon_pps_override_param EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3067a13a drm_dp_read_lttpr_common_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34525479 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x30aae810 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34dbc968 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3576d95d drm_dp_pcon_hdmi_link_active EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x39c547e9 drm_lspcon_set_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a02efd4 drm_dp_downstream_id -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3c93fca9 drm_dp_mst_topology_mgr_set_mst -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d295906 drm_atomic_get_old_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40abf51a drm_dp_remove_payload -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x44c9779a drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a5803d0 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b0d15b3 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3ca215ac drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x406ff6af drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42a6d26e drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42efbe27 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x454f5a55 drm_dp_read_downstream_info EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4821e1f6 drm_dp_link_train_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x494a1564 drm_atomic_get_mst_payload_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4a20041c drm_dp_mst_hpd_irq_handle_event -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d1dbb6b drm_dp_aux_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53e2e81c drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49647570 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4cd422e0 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d68a27e drm_dp_add_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e0788bc drm_dp_mst_hpd_irq_handle_event +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4f702ff4 drm_dp_mst_detect_port EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x55ae3c11 drm_dp_send_power_updown_phy -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x55b56737 drm_dp_dpcd_read_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x563732d9 drm_dp_atomic_find_time_slots EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56a663e9 drm_dp_dsc_sink_line_buf_depth -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56cc6ac4 drm_dp_dual_mode_get_tmds_output EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x585ab3b5 drm_scdc_read EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a86f411 drm_dp_phy_name -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b157ac0 drm_dp_pcon_pps_override_buf -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5d62021a drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5abdf5d5 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e98a3a7 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ead27dd drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5f4b42c6 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fa221fb drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x61b917c1 drm_dp_mst_connector_late_register EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x627ba04b drm_dsc_set_const_params EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63ad7811 drm_hdmi_avi_infoframe_bars EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64c447ae drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x654c6874 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65ec6c73 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67f6e59a drm_dp_lttpr_link_train_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x695e008d drm_dp_pcon_frl_configure_2 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a26972b drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x69e1400d drm_dp_mst_atomic_setup_commit EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a51886c drm_dp_read_channel_eq_delay EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6af444ed drm_dp_cec_unset_edid EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d410283 drm_dp_pcon_reset_frl_config -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6eabb757 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e321fff drm_dp_atomic_release_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6fd93436 drm_dp_pcon_frl_prepare EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x737349a3 drm_dp_pcon_frl_configure_1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75b0bab8 drm_dp_cec_unset_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x761203a6 drm_dp_mst_topology_mgr_destroy EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7832cce7 drm_dp_read_lttpr_common_caps EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79008c7e drm_dsc_setup_rc_params -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7aa89226 drm_dp_cec_unregister_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7c5ab1fd drm_dp_mst_put_port_malloc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d4e0e6c drm_scdc_set_high_tmds_clock_ratio -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e4f813f drm_dp_128b132b_read_aux_rd_interval -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f43f5e8 drm_dp_pcon_hdmi_frl_link_error_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x80619da7 drm_dp_dual_mode_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8206bf67 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7c3448cd drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7db15f6a drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7ee9f8c6 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fbecbc1 drm_dp_pcon_pps_override_buf EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x829b6048 drm_dp_dsc_sink_max_slice_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x865c1416 drm_dp_dpcd_write -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87c40e69 drm_dp_mst_dsc_aux_for_port -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8c611697 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x83bd97b7 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x83c85a0e drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x83ce9577 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x893d5a30 drm_dp_atomic_find_time_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a5814f0 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8adc39c9 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b3ff02d drm_dp_mst_atomic_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8c1f5166 drm_dp_mst_put_port_malloc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8cd159f3 drm_dp_remote_aux_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x909cf609 drm_scdc_get_scrambling_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x917f8f08 drm_edp_backlight_enable EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9303254a drm_dp_pcon_frl_enable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9503ebc5 drm_dp_pcon_is_frl_ready EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95883bb4 drm_dsc_initial_scale_value -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x97dd0f58 drm_dp_check_act_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a054bf2 drm_dp_read_mst_cap -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a196483 drm_dp_cec_set_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa10cc058 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x95c20208 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x968f0e2b drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9702ba28 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9730938f drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x983bd0f4 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9c7e5394 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d91fae4 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f8d6421 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa049efed drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa17a9d5e drm_dp_pcon_frl_configure_2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2d6132f drm_edp_backlight_set_level -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa3d5e3f7 drm_dp_mst_atomic_enable_dsc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5470837 drm_dp_pcon_hdmi_link_mode -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6802413 drm_dp_get_vc_payload_bw -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa82acfc6 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa66e52e7 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7e744b2 drm_dp_mst_root_conn_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa82d5b6c drm_dp_read_desc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa843606e drm_dp_dsc_sink_supported_input_bpcs -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xad38c489 drm_dp_atomic_release_time_slots EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf83c39f drm_scdc_set_scrambling -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb1872646 drm_dp_stop_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5ab92b5 drm_dp_send_real_edid_checksum -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8444dbb drm_dp_cec_register_connector -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb94530ef drm_dp_dual_mode_max_tmds_clock -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb97dfde6 drm_edp_backlight_disable -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbd1a77f8 drm_dp_mst_get_edid -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbee3a2b2 drm_dp_mst_update_slots -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf0d11b8 drm_dp_cec_irq -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf28afa0 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb2b9a20e drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7e8669a drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb85e95c9 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbb0c39d2 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbb57d470 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf81d23a drm_dp_dual_mode_detect EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc10d805f drm_atomic_get_new_mst_topology_state -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc47326da drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc0388881 drm_dp_stop_crc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc80ea876 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc85f02ac drm_dp_dpcd_write EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce767d00 drm_dp_read_lttpr_phy_caps -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcfc83898 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd8e20f8 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce01dca6 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xceff8190 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf24aa50 drm_lspcon_set_mode EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0e95456 drm_dsc_get_bpp_int -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd1a757eb drm_dp_add_payload_part1 -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd3590f92 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd271a86e drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd4b42042 drm_dp_remove_payload EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd84d9488 drm_dp_mst_edid_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd9d96b8b drm_dp_dual_mode_set_tmds_output -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdbc114b2 drm_dp_dpcd_read -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdcfbca3d drm_dp_start_crc -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde48ecb6 drm_dp_dual_mode_detect -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe01fa850 drm_dp_mst_root_conn_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe0725f73 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd8684e65 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd98746ab drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdae42dab drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb683f65 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc3c5ed4 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd263888 drm_atomic_get_old_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde6d9b03 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1e2084c drm_dp_mst_atomic_enable_dsc EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2468a48 drm_dsc_flatness_det_thresh -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe28ba1d4 drm_hdmi_avi_infoframe_colorimetry -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe47ff225 drm_dp_pcon_pps_override_param -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4bb366f drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2bc8b8d drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4bc4502 drm_dp_pcon_is_frl_ready EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7e89d2a drm_hdmi_infoframe_set_hdr_metadata -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe8541db1 drm_dp_mst_hpd_irq_send_new_request -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe9847e33 drm_dp_read_sink_count -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe9ebba8f drm_dp_read_clock_recovery_delay -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb819baf drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe7628a66 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe8201f98 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xead277d1 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeae17b35 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xed5ccfef drm_atomic_get_mst_payload_state EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xee32cae6 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf1dd8257 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4463a4d drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf5a72284 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf5c4a911 drm_edp_backlight_init EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf7c45e50 drm_dp_mst_dump_topology -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfadfb70b drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf9d17b5e drm_dp_add_payload_part2 EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfbb47ed2 drm_dp_downstream_debug -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd515a66 drm_dp_dpcd_read_phy_link_status -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd6ef734 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd5b210d drm_dp_cec_register_connector EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters -EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff208711 drm_dp_mst_atomic_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x000d0c31 drm_file_get_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0x00d62ed4 drm_connector_create_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0310689c drm_atomic_get_old_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x031588f6 drm_syncobj_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0361caf1 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x008993f6 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0170e312 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01bc1e20 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01dc0c42 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02199540 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x032b17db drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03474491 drm_mode_find_dmt EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04181ab5 drm_framebuffer_unregister_private -EXPORT_SYMBOL drivers/gpu/drm/drm 0x04f48cd7 drm_vblank_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0516d0d6 drm_universal_plane_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a3e9d3 drm_syncobj_find_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0607b588 drm_crtc_wait_one_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a652b8 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x046f2b08 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x047f4865 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x054805e8 drm_gem_lru_move_tail_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05cf74c0 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05ebfaaf drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06533bd4 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06695500 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07d2eed9 drm_client_framebuffer_flush EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x080bdb8b drm_atomic_add_encoder_bridges -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0918d1b8 drm_framebuffer_plane_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b8298d drm_mode_create_from_cmdline_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a287d5d drm_panel_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a3d61d2 drm_atomic_private_obj_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a41658d drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x096f0b42 devm_drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b13fa3 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a38ab93 drm_connector_attach_tv_margin_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a7663a3 drm_client_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a8039e9 drm_mode_create_tv_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac80a11 drm_writeback_connector_init_with_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b92770d drm_of_component_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bbeba7c drm_connector_set_path_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c354f06 drm_writeback_cleanup_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5cb408 drm_debugfs_remove_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d42c79a drm_mode_create_hdmi_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d6bd76c drm_crtc_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d8d1a07 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a902f37 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0b8f43 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bd1d67a drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0be9d627 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ca5f6c4 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d055756 drm_edid_get_panel_id EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0da17121 drm_any_plane_has_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df024dc drm_get_edid_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f4dbc18 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f494f1c drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f786f47 drm_panel_prepare EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print 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 0x10869247 drm_privacy_screen_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x10e58f4b drm_crtc_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ef0869 drmm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x11f9a57e drm_connector_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1303cf0b drm_atomic_check_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0x136864f7 drm_atomic_bridge_chain_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x139289cb drm_gem_prime_import -EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b30ee drm_of_find_possible_crtcs -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a389d9 drm_object_property_get_default_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f41955 drm_connector_attach_dp_subconnector_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x156657c7 drm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x164a59a6 drm_modeset_unlock -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16a73617 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1116ba9d drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1213bd9f drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x168d2f8e drm_crtc_vblank_reset EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b809c8 drm_print_memory_stats -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d6e4c4 drm_gtf_mode_complex -EXPORT_SYMBOL drivers/gpu/drm/drm 0x16f4359c drm_plane_create_zpos_immutable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x178bc86a drm_plane_create_scaling_filter_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18492dbc drm_gem_map_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f52707 drm_crtc_send_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x18fede94 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18976c89 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x190712d3 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1976085b drm_analog_tv_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1f0c93 drm_gem_dmabuf_vunmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8a5e14 drm_edid_read_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b2fb181 drm_privacy_screen_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c1596e8 drm_dev_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5a3f65 drm_bridge_chain_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1b1da6 drm_hdmi_avi_infoframe_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd38138 drm_debugfs_add_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e494dfe drm_prime_sg_to_page_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e89ac72 drm_mode_find_dmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0x206f25cb drm_gem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x209eb70f drm_property_add_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a974e8 drm_add_modes_noedid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x20c772b2 drm_gem_unmap_dma_buf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x211deb46 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a63ac15 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ae0d195 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5dca8f drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b8aeb40 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c72efe1 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d9665b9 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e52c048 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e552e1e drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20191cab drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20ee7863 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21177bdd __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x212712ac drm_connector_list_update EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x232f85fa drm_property_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x236d11e7 drm_gem_dma_resv_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x23dce99b drm_atomic_get_old_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2458a407 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2188a1c7 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22eff8c6 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x235c2ca1 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x246284e2 drm_framebuffer_unregister_private EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf1ccb drmm_mode_config_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x25aa4750 drm_crtc_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2613cb57 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26daa53b drm_prime_gem_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2786495b drm_connector_set_orientation_from_panel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x278b60ef drm_crtc_init_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27958394 __drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c8391a drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2784304d drm_crtc_next_vblank_start +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2816861d drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x283e6555 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x284864c4 drm_framebuffer_plane_height EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf -EXPORT_SYMBOL drivers/gpu/drm/drm 0x28fafcf3 drm_master_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x291a49da drm_gem_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x299d8515 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ce4373 drm_atomic_state_default_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a0f9c58 drm_client_dev_hotplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a6d33c4 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a1a388f drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a29500f drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a464aef drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a4bd3d1 drm_mode_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af39a37 drm_send_event_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ba23f63 drm_gem_put_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2badebc8 drm_client_modeset_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d5bcbb9 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2af4f1a9 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b026fe0 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b0a9c28 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb0e721 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c03407e drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4008fd drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cdceb89 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e07db6a drm_mode_object_put EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f184833 drm_client_framebuffer_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fcdfb63 drm_panel_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x308b4b53 drm_dev_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31577628 drm_client_rotation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b3a462 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb3fe41 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe45474 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30b09bd2 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x319ea3d3 drm_send_event_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31de09fb drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e4d597 drm_edid_read_switcheroo EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits -EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c58d3e drm_crtc_vblank_helper_get_vblank_timestamp_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x336be145 drm_crtc_commit_wait -EXPORT_SYMBOL drivers/gpu/drm/drm 0x33c6d984 drm_crtc_vblank_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d13579 drm_aperture_remove_conflicting_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x350df7aa drm_connector_update_privacy_screen -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3538a2b2 drm_gem_lru_scan -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3540416c drm_atomic_get_old_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x354587a2 drm_privacy_screen_unregister_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x355c120b drm_event_reserve_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x356a4d18 drm_atomic_set_mode_prop_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3584b709 drm_property_create_bool -EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e7d1d3 drm_writeback_queue_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3794227c drm_hdmi_vendor_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e6986a drm_plane_create_blend_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3804d014 drm_mode_create_content_type_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x385e8671 drm_gem_lru_move_tail_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x333a7926 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e8a6cf drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x349c39d1 drm_debugfs_add_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a81d26 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35ad0d64 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x360971d6 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x364cf0b8 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x369ea47c drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3708a7f9 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3797dc6c drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3810f72e drm_mode_validate_ycbcr420 EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor -EXPORT_SYMBOL drivers/gpu/drm/drm 0x38858bea drm_property_create_signed_range EXPORT_SYMBOL drivers/gpu/drm/drm 0x397c3d27 drm_edid_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a4256c0 drm_connector_has_possible_encoder EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aef6b98 drm_of_component_probe EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b4f0a3e drm_vblank_work_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b95f5bb drm_mode_validate_ycbcr420 -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be5c904 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b144868 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b69285d drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bc28165 drm_encoder_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c8569a5 __drmm_universal_plane_alloc EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation -EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0fe15f drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d61cb6e drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e115307 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3f8442 drmm_connector_init EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0x40362a5f drm_atomic_bridge_chain_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x411734c0 drm_gem_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x421ace01 drm_gem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4247cb1d drm_connector_attach_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x43aa4a37 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f6cfea8 __drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbc7768 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40b23d1a drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x412b14f6 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4148a637 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41abd908 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41e7bf73 __drm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4238d0cb drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x426aaa7a drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x429dab49 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4326b3d3 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x434838c5 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43a7d35c drm_cvt_mode EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing EXPORT_SYMBOL drivers/gpu/drm/drm 0x4489a5e9 drm_edid_raw -EXPORT_SYMBOL drivers/gpu/drm/drm 0x44fb16ef drm_property_blob_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45185541 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44905455 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44ca3a34 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x455520ba drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x456546aa drm_syncobj_find EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4588e28f drm_modeset_lock_all_ctx -EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c18a40 drm_mode_put_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x46da38be drm_prime_gem_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x474bab87 drm_connector_attach_max_bpc_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x477f5598 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4576dbfa drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c89dc6 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4755af2d drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47a47b0f drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f041ac drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48295d36 drm_atomic_normalize_zpos EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48caec73 drm_privacy_screen_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x48efe3c7 drm_atomic_get_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49387794 drm_property_create_object -EXPORT_SYMBOL drivers/gpu/drm/drm 0x49671f2d drm_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a175026 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a94e5a drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f6e2e5 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f03426 drm_modeset_lock_single_interruptible EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a8ca3d1 drm_debugfs_add_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b3549bf drm_framebuffer_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b5e5e97 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6a769e drm_framebuffer_plane_width EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ca3efcb drm_connector_set_link_status_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d468869 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb112bb drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c089913 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cca30c8 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd9bded drm_color_lut_check EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e2a621e drm_prime_sg_to_dma_addr_array -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e8d70cc drm_send_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eb9e037 drm_connector_set_vrr_capable_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f4363bf drm_gem_private_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5032e65f drm_atomic_set_mode_for_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50528e62 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f3cd7b5 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8743c8 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5011d233 drm_aperture_remove_conflicting_framebuffers EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies -EXPORT_SYMBOL drivers/gpu/drm/drm 0x50765658 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x508f4977 drm_modeset_acquire_fini EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51c84e6b drm_plane_get_damage_clips EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts -EXPORT_SYMBOL drivers/gpu/drm/drm 0x526b3fec drm_vblank_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5284ae24 drm_crtc_set_max_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x528f67b7 drm_connector_has_possible_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e71b7a drm_mode_create_suggested_offset_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x542dc617 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x537e76fc devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53849e6e drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ee84bb drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x553c56ba drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e04928 drm_send_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eb38da drm_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0x574b144d drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562db2ba drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b56a89 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c22b02 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56ee241c drm_atomic_add_affected_connectors EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags -EXPORT_SYMBOL drivers/gpu/drm/drm 0x57d6f032 drm_crtc_vblank_on -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5823de75 drm_noop -EXPORT_SYMBOL drivers/gpu/drm/drm 0x58317f8e drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58702cf2 drm_edid_read_custom +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58cf8607 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e20dea drm_gem_prime_import EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node -EXPORT_SYMBOL drivers/gpu/drm/drm 0x598daca4 drm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x59a34c45 drm_connector_atomic_hdr_metadata_equal -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a72d024 drm_analog_tv_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a998b43 drm_show_fdinfo -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aab4f1e drm_crtc_vblank_off -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af3d0e1 drm_gem_prime_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b1c09bd drm_gem_private_object_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bb833f8 drm_crtc_vblank_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bef9f69 drm_mode_probed_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d59244d drm_atomic_get_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e6fc24c drm_gem_vm_close -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e81c1cf drm_connector_attach_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f2a8c60 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x596cf975 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5986c5f0 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5af9916e drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b829f2b drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bab09b8 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c83d21e drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c8b79db drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ca2dcc5 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e768bbd drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9fc5eb drm_privacy_screen_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block -EXPORT_SYMBOL drivers/gpu/drm/drm 0x610d58f0 drm_mode_create_tv_margin_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64217d3c drm_dev_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0x64ec68c2 drm_framebuffer_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x650c2f2d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fe699c2 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6000257c drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6235858f drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x625b579c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62974bd0 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62b8faa4 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62bf4281 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c03f48 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6514a6e5 drm_plane_get_damage_clips_count EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6625e676 drm_privacy_screen_call_notifier_chain -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c1ae31 drm_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0x66e4fdc4 drm_gem_vm_open -EXPORT_SYMBOL drivers/gpu/drm/drm 0x676d6a68 drm_gem_free_mmap_offset -EXPORT_SYMBOL drivers/gpu/drm/drm 0x67bb42d4 drm_cvt_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6836afd4 drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65fdf9bd drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6626d8fb drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67cc5541 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682ea602 drm_encoder_cleanup EXPORT_SYMBOL drivers/gpu/drm/drm 0x6910e4cd drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x692aca2d drm_plane_create_zpos_property EXPORT_SYMBOL drivers/gpu/drm/drm 0x69353664 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69389d44 drm_show_memory_stats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69bcf2f1 drm_sysfs_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e1bf40 drm_clflush_sg -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a81ce54 drm_atomic_bridge_chain_pre_enable EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b3ac3e2 drm_framebuffer_plane_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b7ec3a6 drm_crtc_accurate_vblank_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b85f8fc drm_connector_set_panel_orientation_with_quirk -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bb4cda4 drm_gem_objects_lookup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bb992c5 drm_av_sync_delay -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d381ab1 drm_connector_update_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f0ea7cf drm_property_lookup_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70178eed drm_mode_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0x70924208 drm_edid_connector_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7169464a drm_mode_crtc_set_gamma_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c9c012 drm_ioctl_kernel -EXPORT_SYMBOL drivers/gpu/drm/drm 0x72bf4798 drm_set_preferred_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x73b2060b of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bc33fd4 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bd94683 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bf5d308 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cdda40b drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d284c7f drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d3cae1c drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6db1207e drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd71167 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0896de drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ee61685 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fb75994 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70a6655f drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7131cfad __drmm_mutex_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71ef009d drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x720df7f1 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7304c558 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74b2084c drm_crtc_vblank_helper_get_vblank_timestamp EXPORT_SYMBOL drivers/gpu/drm/drm 0x74fc6fbd drm_format_info_block_width -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a0d87a drm_atomic_add_affected_connectors -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75af35d1 drm_plane_create_alpha_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0x75c64879 drm_client_modeset_commit_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x76539d5a drm_atomic_bridge_chain_post_disable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7786ba99 drm_atomic_get_connector_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78014e0e drm_clflush_pages -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a3b34a drm_writeback_prepare_job -EXPORT_SYMBOL drivers/gpu/drm/drm 0x78cf8f7e drm_color_lut_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7917321d drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75214e60 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75cf7d0b drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75e2511e __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7621047c drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x764c67f1 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x765930b3 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x777d5fad drm_gem_lru_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x787e5483 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x795960b0 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x797f752f drm_debugfs_create_files EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c00fa2 drm_edid_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a1d1f87 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b0559a3 drm_privacy_screen_get EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bba5006 drm_gem_dmabuf_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bbf6fea drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4ab4ca drm_gem_vmap EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d9cad drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c264fb9 drm_client_modeset_commit EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d69f777 drm_atomic_state_default_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dc61de8 drm_gem_lock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dd76986 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d075e82 drm_atomic_set_mode_for_crtc EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3277f8 ___drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9231dc drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e9c052d drm_master_internal_release EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate -EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff0b33c drm_privacy_screen_get_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x803ae1ed drm_sysfs_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0x803ec70f drm_compat_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x808fa341 drmm_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a879fe drm_display_mode_from_cea_vic -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d90662 drm_dev_enter -EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f48f1f drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b8859e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f2f141 drm_client_dev_hotplug EXPORT_SYMBOL drivers/gpu/drm/drm 0x820ac5c0 drm_vma_node_allow_once -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82612a8b drm_atomic_get_new_private_obj_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82971e8f drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f4a5ee drm_plane_get_damage_clips_count -EXPORT_SYMBOL drivers/gpu/drm/drm 0x831fd79b drm_ioctl -EXPORT_SYMBOL drivers/gpu/drm/drm 0x83ca8f65 drm_privacy_screen_register_notifier -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a6ddea drm_poll -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d3c9eb drm_atomic_bridge_chain_enable -EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d3ec10 drm_mode_validate_driver -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86a34ffd drm_encoder_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x86eb472f drm_modeset_backoff -EXPORT_SYMBOL drivers/gpu/drm/drm 0x87d9f4ea drm_property_blob_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0x880f7f9a drm_handle_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8820194f drm_event_reserve_init_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0x89ceab0b __drm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af8164e drm_writeback_signal_completion -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c04850d drm_client_buffer_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9b1041 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8260d1ff drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82aa4bbb drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83670905 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b97997 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x848bce8b drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85482f95 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86fa3dfa drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e2c9da drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8815e658 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8862e9ca drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88d92f29 drm_connector_set_orientation_from_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89009464 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8baaa0f0 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bc9df52 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c75f0e3 drm_connector_register EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72b51b drm_property_create_bitmask -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1ca20a drm_mode_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef1ec22 drmm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef4eb5e drm_aperture_remove_conflicting_pci_framebuffers -EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f77ff01 drm_connector_list_iter_begin -EXPORT_SYMBOL drivers/gpu/drm/drm 0x912155ee __drmm_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0x924ae3f5 drm_mode_object_find -EXPORT_SYMBOL drivers/gpu/drm/drm 0x94aeaf36 drm_framebuffer_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0x95cc36ef drm_debugfs_create_files -EXPORT_SYMBOL drivers/gpu/drm/drm 0x96f69a99 drm_atomic_nonblocking_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9778d03e drm_mode_get_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9815aaae drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ec4e3d5 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3ed566 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f7cb524 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ad1ce9 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9104c73a __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x919e9fa9 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92d9c707 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92e5af0f drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x944c52ba drm_edid_connector_add_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94704d23 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9472a2eb drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f3e958 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ba8175 drm_gem_lru_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95f817f4 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x969639d9 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96b27dd6 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9749f6bc drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x978657d1 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f829ea __drmm_crtc_alloc_with_planes EXPORT_SYMBOL drivers/gpu/drm/drm 0x982d09b3 drm_format_info_block_height -EXPORT_SYMBOL drivers/gpu/drm/drm 0x98cd9993 drm_mode_create_tile_group -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9992c4db drm_invalid_op -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a3381f8 drm_crtc_vblank_helper_get_vblank_timestamp -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aad45ca drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x986eb295 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98afabc6 drm_edid_read_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990236b8 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x991d5cb9 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9933f2f3 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab39d00 drm_syncobj_replace_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b421d08 devm_drm_bridge_add EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c83ac73 drm_syncobj_add_point -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8ff03e drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c06a63c drm_property_create EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dfe1e5d drm_object_property_set_value -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f461af5 drm_writeback_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd88340 drm_panel_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fe2d37c drm_connector_attach_edid_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1254a31 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d34b365 drm_gem_private_object_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d98eb85 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e43148f drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f31ec6f drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa02e18e9 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa04af8a0 drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa145d0b0 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1af0ddb drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa22d6eb6 drm_atomic_get_old_private_obj_state EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa26a2256 drm_bridge_chain_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29ec917 drm_atomic_state_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2adab8c drm_atomic_get_new_connector_for_encoder -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa30cedb3 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa26f3116 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2976f9f drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e61ee6 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa36a9195 drm_property_create_enum EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa473ed44 drm_gem_object_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67a04a3 drm_crtc_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f9cd83 drm_atomic_get_crtc_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7743cdf drm_property_create_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7fc0e1a drm_plane_enable_fb_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa83b6e47 drm_edid_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa88f24ac drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa419da21 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42fc0dd drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa434a4dc drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa48affba drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a3d6aa drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6281cec drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa709e990 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa857f4b8 drm_crtc_create_scaling_filter_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xa956955b drm_gem_lru_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9c3b01a drm_syncobj_get_fd -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa212f4f drm_connector_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6bdbeb drm_master_internal_acquire -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaadefd76 drm_dev_unregister -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab22d733 drm_mode_config_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xab43c947 drm_gem_dmabuf_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xac550de3 drm_atomic_set_crtc_for_connector -EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbffd6b drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa960852e drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa96c0601 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa1850b2 drm_atomic_get_new_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab839897 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac558baf drm_gem_vmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad45cbc5 drm_object_property_set_value EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n -EXPORT_SYMBOL drivers/gpu/drm/drm 0xade7130a drm_connector_attach_privacy_screen_provider -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae16a4a1 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xada95705 drm_mode_create_suggested_offset_properties EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xae312712 drm_client_framebuffer_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf7f2d4b drm_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm 0xafaf955f drm_probe_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xaff1047b drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae6149c7 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf014db5 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf73c820 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf98508f drm_debugfs_add_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0ec6518 drm_client_framebuffer_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb155e575 drm_gem_lru_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb186b137 drm_modeset_lock_single_interruptible -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c23966 drm_mode_set_config_internal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c41414 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb19d4c3c drm_gem_handle_delete EXPORT_SYMBOL drivers/gpu/drm/drm 0xb212dc3e drm_edid_dup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb259100c __devm_drm_dev_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb267d6b4 drm_edid_connector_add_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3455094 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c7de5d drm_mode_object_get EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3750192 drm_edid_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c12045 drm_edid_read_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb396e6f2 drm_crtc_vblank_on EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb440dd17 drm_bridge_chain_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb529668c drm_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5d7bd14 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb41298a2 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4d43161 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5a6ae41 drm_gtf_mode_complex EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6284d60 drm_plane_get_damage_clips -EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7e2645f drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a14cb4 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a9120a drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6bbeda5 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb807feaf drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8248645 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a96091 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9a8e893 drm_connector_attach_hdr_output_metadata_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba1b8004 drm_sysfs_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9ce776 drm_crtc_arm_vblank_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc975e9f drm_connector_attach_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcab460d drm_gem_vunmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdddee71 drm_mode_object_get -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeddb27b drm_gem_create_mmap_offset_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbee3d11d drm_connector_list_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm 0xbee59577 drm_mode_create_aspect_ratio_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc40a906d drm_connector_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc40aa8ed drm_atomic_state_default_clear -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc44185f3 drm_of_crtc_port_mask -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ef2600 drm_connector_init_with_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f1f991 drm_connector_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc55c427d drm_client_modeset_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc59129db of_drm_get_panel_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6f3628c drm_atomic_get_new_bridge_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc76ca577 drm_atomic_get_old_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba9ad92a drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad12ff4 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb46790e drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcbc8304 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeeb59de drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf6d1764 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbff82538 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2512e9d drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a57cc5 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc404f4c9 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63d208f drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63f3c19 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc74a9c6b drm_mode_create_content_type_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8001e3d drm_crtc_vblank_restore -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8033192 drm_crtc_next_vblank_start -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc88cd9cf drm_gem_prime_export -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc97f65be drm_get_format_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9d49a6c drm_gem_prime_fd_to_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xca9fc0e9 of_drm_find_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb4f6d4b drm_gem_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb5036fa __drmm_crtc_alloc_with_planes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc2767be drm_modeset_unlock_all -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc43fad2 drm_add_edid_modes -EXPORT_SYMBOL drivers/gpu/drm/drm 0xccf4ae05 drm_connector_attach_colorspace_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd28e86e drm_panel_of_backlight -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd3e0d65 drm_atomic_get_new_crtc_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8347f0b drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca16ec6b drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca949f65 drm_gem_lru_move_tail +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb329a22 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc50523d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccbc45bd drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc6673a drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc8af2d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4ac4e4 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4cf0a7 drm_property_destroy EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce1e8389 drm_plane_create_rotation_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4d0d08 drm_panel_remove -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcedecfb1 drm_gem_object_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf3ac2a5 drm_property_replace_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf631c8b drm_modeset_acquire_fini -EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf96afef drm_writeback_get_out_fence -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd06b1634 drm_modeset_drop_locks -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ec9fa7 drm_crtc_check_viewport -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ff9f0a drm_crtc_enable_color_mgmt -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1329b16 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05bf753 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd06aca20 drm_connector_attach_vrr_capable_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1dcb0d3 drm_connector_oob_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2361bae drm_privacy_screen_put -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd46c6138 drm_plane_from_index -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4887be2 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd209137a drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21bb6d5 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d9228f drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2e2f28f drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3492d33 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3aa3f4b drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5b75f19 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5be7623 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6254b65 drmm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd670e2aa drm_writeback_cleanup_job EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd71b266f drm_atomic_state_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd770292a drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd718dc43 drm_edid_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd786cf44 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd79db3f2 drm_connector_attach_edid_property EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8431d89 drm_gem_unlock_reservations -EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8d77c32 drm_dev_printk -EXPORT_SYMBOL drivers/gpu/drm/drm 0xda9c1f7c drm_client_framebuffer_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdab509a6 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda522ecc drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda790dfe drm_syncobj_find_fence EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad9c8b1 drm_prime_get_contiguous_size -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdae64fdd drm_gem_prime_handle_to_fd EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb320a08 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbba1691 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc3fb76e drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb060d7 drm_poll EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c6afa drm_mode_is_420_also -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd9d5046 drm_sysfs_connector_status_event -EXPORT_SYMBOL drivers/gpu/drm/drm 0xde009906 drm_property_replace_global_blob -EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea231a0 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd953527 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde34a5bd drm_crtc_vblank_count_and_time EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf498ecb drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4ee55a drm_mode_create_tv_properties_legacy EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe03684db drm_atomic_set_crtc_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe113668f drm_connector_attach_privacy_screen_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1b2e626 drm_atomic_private_obj_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1b58bc3 drm_client_modeset_check -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe30c6a98 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf6a07ea drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04123e3 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1155434 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe14f73a2 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1baf80d drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe247a348 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe25e4fc1 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2c08e80 drmm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d1d6da drm_privacy_screen_call_notifier_chain EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36f500e drm_plane_create_zpos_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3a994bc drm_mode_plane_set_obj_prop EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac15d5 drm_mode_is_420_only -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe472e784 drm_vblank_work_cancel_sync -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e54cc1 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3e609c7 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4f11218 drm_add_edid_modes EXPORT_SYMBOL drivers/gpu/drm/drm 0xe633a4cd drm_format_info_bpp -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe68df9c3 drm_read -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6d3ad07 drm_gem_handle_delete -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6dfde84 drm_hdmi_avi_infoframe_from_display_mode -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe76eae18 drm_release_noglobal -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7cbd46b drm_mode_create_tv_properties_legacy -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe856da66 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe78ed70c drm_gem_vunmap_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d56cda drm_atomic_set_crtc_for_connector EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8edb2d2 drm_client_buffer_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9d06d55 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9a79cb3 drm_invalid_op EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeab77b39 drm_syncobj_get_handle -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb439d06 __drmm_mutex_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb62b1ed drm_dev_unplug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xed8c830b drm_gem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xee4939b5 drm_edid_read_custom -EXPORT_SYMBOL drivers/gpu/drm/drm 0xefa81388 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea340c14 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea61ae9c drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecf9f9d5 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed359c16 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9d7c4a drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee2d995e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee3cdcb7 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeef8992c drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1217c2 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef32f302 drm_gem_evict EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf08874d9 drm_atomic_state_clear EXPORT_SYMBOL drivers/gpu/drm/drm 0xf095dc96 drm_get_tv_mode_from_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d4fda1 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0c80581 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf121f68e drm_connector_oob_hotplug_event EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1d7881d drm_connector_attach_hdr_output_metadata_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf213bb4c drm_connector_list_update -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2cd394e drm_crtc_vblank_reset -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf39cdb17 drm_edid_override_connector_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e1c630 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf20c8614 drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2770409 drm_show_fdinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf28d4f71 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf342ebc9 drm_modeset_lock_all_ctx EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf45c03f1 drm_warn_on_modeset_not_all_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4ac7ddd __drmm_universal_plane_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5358aeb drm_dev_has_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a05047 drm_atomic_set_fb_for_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e0c0c7 drm_client_framebuffer_flush -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7515f61 drm_send_event_timestamp_locked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf75f58d7 drm_plane_create_color_properties -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7701aae drm_gem_vmap_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7821cfc drm_gem_lru_move_tail -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf788c0f1 drm_client_modeset_probe -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf78f9caa drm_gem_handle_create -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e3ffbe drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a5998b drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5c7a939 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7292c94 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7c7aef0 drm_privacy_screen_unregister_notifier EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8abb6ef drm_gem_dmabuf_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8af9e12 drm_atomic_print_new_state -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf901cbb1 drm_edid_get_panel_id -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf951452f __drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm 0xf96487f9 drm_client_register -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa8138bf drm_mode_create_scaling_mode_property -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfac6fdc3 drm_atomic_commit -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbeb9085 drm_property_create_enum -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc196038 drm_gem_dmabuf_release -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc6e0587 drm_is_current_master -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8ed2be drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf893462b drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8dcacc1 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f4af19 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf99e7061 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9cdcdf5 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa009d82 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa0888ee drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa708d92 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbbcf731 drm_edid_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbef30b8 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc61fe4b drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd1fa9cd drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe8d92b4 drm_atomic_set_crtc_for_plane EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file -EXPORT_SYMBOL drivers/gpu/drm/drm 0xfee752e2 drm_driver_legacy_fb_format -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff3a728a drm_atomic_normalize_zpos -EXPORT_SYMBOL drivers/gpu/drm/drm 0xff5896c4 drm_bridge_attach EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy @@ -1020,449 +1020,449 @@ EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x18046931 drm_fbdev_dma_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x3d64af03 drm_gem_dma_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x3ddaa566 drm_gem_dma_prime_import_sg_table_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x002d1d7c drm_atomic_helper_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x076526f8 devm_drm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x095a9d2f drm_connector_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x111946e8 drm_panel_bridge_connector -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1143b9da drm_fb_helper_damage_area -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1197d0a6 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x3caacc3f drm_gem_dma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0x688561e2 drm_fbdev_dma_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_dma_helper 0xebe7112e drm_gem_dma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x010287aa drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01f750cf drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02481e55 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x047279c7 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x050d08a8 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0570901b drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06685453 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06956a0f drm_fb_build_fourcc_list +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08438155 drm_connector_helper_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x085670c3 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098d3722 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ae84bf5 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c0f013a drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e802904 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e8b3f00 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f3db971 drm_atomic_helper_check EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12f07851 devm_drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13bc0d8d drm_atomic_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x148ce5da drm_fb_helper_check_var -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a11e70e drm_helper_resume_force_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ad6d0ac drm_fb_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af58b5b drm_atomic_helper_swap_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b386277 drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d50a3a2 drm_helper_connector_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ddbc084 drm_kms_helper_connector_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e3771ca drm_plane_helper_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fca6450 drm_crtc_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x212688bb drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15652320 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1848f24d drm_fb_helper_release_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b821af1 drm_atomic_helper_check_wb_encoder_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20649158 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x212671b9 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x217d9bf1 devm_drm_of_get_bridge EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x231b16ae drm_kms_helper_hotplug_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24cfdec0 drm_atomic_helper_wait_for_fences -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c81449 drm_connector_helper_get_modes_from_ddc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x266be8c3 drm_helper_hpd_irq_event -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27d7e48f drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28e24263 __drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x293b7b3a drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d1d1c04 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22695341 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22777f75 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23658e4d drm_crtc_helper_mode_valid_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2415e09e drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x252ddb35 drm_fb_xrgb8888_to_xrgb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x261519de drm_connector_helper_get_modes_fixed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2737ca46 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27778f36 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ccc80d2 drm_atomic_helper_commit_duplicated_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e59a0fa drm_fb_helper_fill_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ec796b3 drm_fb_helper_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f743555 drm_atomic_helper_check_modeset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3023c6cb drm_fb_xrgb8888_to_argb8888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x327131a6 drm_atomic_helper_disable_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329b4122 drm_atomic_helper_damage_merged -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x337056ec drm_fb_xrgb8888_to_rgb332 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x344517f3 drm_i2c_encoder_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34d525f7 drm_fb_helper_damage_range -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x350c1832 drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35694a4c drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35ce8bc3 drm_panel_bridge_set_orientation -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x364d6cc6 drm_fb_helper_set_par -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3741aa11 drm_connector_helper_get_modes_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3915edbf __drm_atomic_helper_connector_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3befa18d drm_fb_xrgb8888_to_mono -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bfb7d90 drm_gem_simple_kms_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c55c1bb __drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c8f0d65 drm_gem_simple_kms_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3de68429 drm_connector_helper_tv_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4062da76 drm_plane_helper_disable_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4156b61c drm_fb_helper_unregister_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41c690cf drm_atomic_helper_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x427088aa drm_helper_mode_fill_fb_struct -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44631d1f __drmm_simple_encoder_alloc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x448df898 drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46c9e93f drm_panel_bridge_add_typed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4866342e drm_fb_xrgb8888_to_argb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bae6d14 drm_atomic_helper_bridge_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bc56d82 drm_atomic_helper_dirtyfb -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c12fb78 drm_atomic_helper_commit_hw_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f4bbb94 drm_crtc_helper_atomic_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ff3f87b drm_gem_begin_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x510d638e drm_fb_xrgb8888_to_rgba5551 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51e6a7fc drm_fb_helper_deferred_io -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x522b735b drm_i2c_encoder_mode_set -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52c86710 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2da3f570 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eb1f7ae drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed544c5 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31242a61 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31a9f06d drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ea58e2 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35976099 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36354785 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3705a954 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x402541d2 drm_crtc_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4069b0f7 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40b001d3 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43fe674c drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x448bd22e drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47759cbc drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a82b359 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c0cbcfe drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ddc7806 drm_atomic_helper_connector_tv_margins_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x505dd6f0 drm_fb_helper_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x523a4e34 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5368b190 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x543fc2be drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5507b978 drm_atomic_helper_connector_tv_reset EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55740ea4 drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55c85304 drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x564fe44b drm_fb_xrgb8888_to_xrgb2101010 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x570db2c4 drm_fb_blit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5760fddd drm_i2c_encoder_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x585ef01c drm_fb_helper_alloc_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x589b7b23 drm_helper_probe_single_connector_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a246d3a drm_kms_helper_poll_reschedule -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a3c84fd drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55ed6f69 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56187f63 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59a1e5b6 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59bc69a1 drmm_of_get_bridge EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bf198c6 drm_atomic_helper_wait_for_dependencies -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2ac233 drm_simple_display_pipe_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d74463f drm_atomic_helper_commit_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e1f22b9 drm_fb_helper_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e38c229 __drm_atomic_helper_private_obj_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62357073 drm_i2c_encoder_mode_fixup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x639e58fd drm_atomic_helper_check_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64bee8ff __drm_gem_reset_shadow_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66a7e6f4 __drm_atomic_helper_crtc_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x680e78ea drm_i2c_encoder_restore -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a3cd5a drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69043442 drm_atomic_helper_commit_modeset_enables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a6d6f71 drm_self_refresh_helper_update_avg_times -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6acfc183 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5adb1465 drm_fb_helper_damage_range +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c34d04d __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dd8c31d drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5edcdd73 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x612bd6f0 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63f16ea6 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64105e1f __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x659488e7 drm_plane_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6614904f drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68014a6e drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68cee40a drm_gem_simple_kms_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ab94430 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6acf4011 __drm_atomic_helper_plane_destroy_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cda8b29 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dea01c1 __drmm_simple_encoder_alloc EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f3a31d8 drm_fb_helper_initial_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7202ae2d __drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x769b2bee drm_fb_memcpy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77f51267 drm_fb_build_fourcc_list -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79ba4a75 drm_atomic_helper_shutdown -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ab5840b drm_gem_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fa4d4a8 drmm_of_get_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x836c4b9b drm_fb_helper_debug_enter -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83dfdba5 drm_atomic_helper_fake_vblank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83f10241 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ee14673 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x713bf19a __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73382c22 drm_fb_helper_alloc_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ff9844 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x752dd39f drm_panel_bridge_set_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75636ef9 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x756761d4 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7862e9f2 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b7ca55f drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c6efaad drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d4d0253 drm_kms_helper_poll_reschedule EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84c75c34 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8446aeaa drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8583e09f drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85ac9d54 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86bac221 __drm_gem_duplicate_shadow_plane_state EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87727d69 drm_atomic_helper_page_flip -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x880d277f drm_kms_helper_poll_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8811c051 __drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8acf6649 __drm_atomic_helper_connector_state_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8af738a2 drm_atomic_helper_setup_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c64fdce drm_plane_helper_update_primary -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e520d9a drm_i2c_encoder_dpms -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91df0223 drm_fb_xrgb8888_to_argb2101010 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8956c41d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b46f2f3 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d4fe04d drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d77c234 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d81a956 drm_connector_helper_tv_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8db81f78 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e32db59 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e60526d drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fa1496e drm_fb_xrgb8888_to_argb1555 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x906e3dc8 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90cacf84 drm_fb_blit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9188990b drm_fb_xrgb8888_to_xrgb2101010 EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92a9d30f drm_atomic_helper_connector_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x945970a8 drm_fb_helper_set_suspend_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96f38e41 drm_atomic_helper_wait_for_flip_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x978bd846 drm_atomic_helper_commit_tail -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97c05e80 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92831ecb drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95af3936 drm_connector_helper_get_modes_from_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96ca1ece drm_fb_xrgb8888_to_rgba5551 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97d343e7 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99e32a4c drm_atomic_helper_wait_for_flip_done EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d5ab951 drm_fb_helper_debug_leave -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f06b265 drm_helper_probe_detect -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1c39803 drm_atomic_helper_commit_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa20d6e6c __drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa32fc1c3 drm_kms_helper_poll_enable -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa366732e drm_gem_fb_destroy -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa49f542a drm_atomic_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa599c379 drm_atomic_helper_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9438b28 drm_atomic_helper_async_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa2537b6 drm_atomic_helper_wait_for_vblanks -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa268f24 drm_kms_helper_poll_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab6bceae drm_fb_helper_restore_fbdev_mode_unlocked -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab8e4351 __drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad6389d3 drm_helper_encoder_in_use -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae0ab897 drm_gem_fb_end_cpu_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf09dae0 drm_fb_helper_unprepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb050d28d drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a11e413 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a1f2523 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b9724be __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9be2a17c devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cf8a5a2 drmm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d53199f drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d62c209 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f12f110 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f61b1d6 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1efc192 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1f86795 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2690597 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa321b021 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3625d9f drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa53593bb drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6532f25 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa88ced6f drm_gem_simple_kms_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa97092cd drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa98abd14 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa98d79a drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab09fe48 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab8ff027 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadbcedfb drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaec6d6f6 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf644816 drm_kms_helper_poll_disable EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb07b8daf drm_atomic_helper_async_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1573071 __drm_atomic_helper_plane_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb19b2971 drm_atomic_helper_disable_planes_on_crtc -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2be9010 drm_gem_simple_kms_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb35c286e drm_atomic_helper_cleanup_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb54a7896 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb15c56ae drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2ae0a4f drm_atomic_helper_check_crtc_primary_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb46d68e9 drm_plane_helper_disable_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb54354af drm_i2c_encoder_prepare EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a6b711 drm_fb_clip_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb798f6de drm_i2c_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb824ac2a drm_connector_helper_get_modes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9142b03 drm_atomic_helper_set_config -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba372319 drm_atomic_helper_check_crtc_primary_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb66538e drm_mode_config_helper_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc3f7069 drm_simple_display_pipe_attach_bridge -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbdc2acd2 drm_atomic_helper_crtc_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbea4541c __drm_atomic_helper_connector_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfa594b2 drm_fb_xrgb8888_to_rgb888 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3d1601f drm_atomic_helper_commit_duplicated_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3dbdee1 drm_atomic_helper_crtc_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc58f6315 drm_fb_xrgb8888_to_gray8 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc619425f drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb93db050 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc4c8c63 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcc7a35f drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd9d0bab __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe02ba0c drm_fb_helper_unregister_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf042f72 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf6b29a2 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf79e3cb drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0a630c6 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b442f0 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3c87a46 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc512160b drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5d11cff drm_atomic_helper_connector_tv_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5dae075 drm_fb_helper_check_var EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc66f76b1 drm_i2c_encoder_save -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7cf9d9d drm_atomic_helper_prepare_planes -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc92cb0a1 drm_self_refresh_helper_cleanup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca17e6d8 drm_bridge_is_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6e3f9af drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6e7c44b drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc789d460 drm_gem_end_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7fe46a3 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8280815 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc89fcc8c drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8df3990 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc954d6a1 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca7c6e37 drm_atomic_helper_page_flip EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd4c17de drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbef52a7 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc6b2ab7 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcca1d889 drm_fb_helper_set_suspend EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf291286 __drm_atomic_helper_plane_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf2bebc6 drm_fb_helper_set_suspend -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0a15560 drm_fb_helper_blank -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2f66c67 drm_crtc_helper_mode_valid_fixed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd734e7b3 drm_helper_force_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9096d01 drm_fb_swab -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdade6455 drm_atomic_helper_plane_destroy_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc38b99f drm_atomic_helper_commit_tail_rpm -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddbaac67 drm_i2c_encoder_commit -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde23205d devm_drm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdff5a72b drm_atomic_helper_page_flip_target -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0442bdb drm_atomic_helper_commit_modeset_disables -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe16481de drm_gem_simple_kms_end_shadow_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe18a96c6 drm_kms_helper_poll_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1fad724 drm_mode_config_helper_resume -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2eaa675 drm_fb_xrgb8888_to_xrgb1555 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe334446d drmm_panel_bridge_add -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4abdaad drm_panel_bridge_remove -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4c76e3e drm_atomic_helper_calc_timestamping_constants -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5c73936 drm_atomic_helper_connector_tv_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6513683 drm_atomic_helper_check_wb_encoder_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe71cfe5d drm_fb_helper_release_info -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7392f0a drm_self_refresh_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe849d088 drm_simple_encoder_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9446ede drm_gem_fb_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9711359 drm_atomic_helper_bridge_duplicate_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea525a1d __drm_gem_duplicate_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea923406 drm_fb_xrgb8888_to_rgb565 -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea9efea3 drm_crtc_helper_set_mode -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed871a57 drm_atomic_helper_connector_tv_check -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedf82229 drm_atomic_helper_update_legacy_modeset_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf070819d drm_atomic_helper_crtc_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1feb76c drm_fb_helper_output_poll_changed -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf20a044f drm_gem_fb_create_handle -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf29cd8c4 drm_fb_helper_lastclose -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4a7fccf drm_atomic_helper_damage_iter_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf50cf129 drm_atomic_helper_disable_all -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6123816 __drm_gem_destroy_shadow_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9015b8e __drm_atomic_helper_bridge_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa7ae603 drm_i2c_encoder_prepare -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbb4fd70 drm_atomic_helper_commit_cleanup_done -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc17f8a9 drm_crtc_init -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc7bc095 drm_fbdev_generic_setup -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcf5f0df drm_fb_helper_setcmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd1cf848 drm_atomic_helper_connector_tv_margins_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff7bffac drm_gem_fb_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffe7f201 drm_fb_helper_pan_display -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x091851c5 mipi_dbi_poweron_conditional_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x16094ffd mipi_dbi_spi_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1c6fa2e3 mipi_dbi_poweron_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x22ff357e mipi_dbi_pipe_destroy_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x29c85b65 mipi_dbi_enable_flush -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3e5299e9 mipi_dbi_pipe_begin_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3f203261 mipi_dbi_command_read -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5321c617 mipi_dbi_display_is_on -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x548af0db mipi_dbi_dev_init_with_formats -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5e9d000f mipi_dbi_command_stackbuf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x65aba640 mipi_dbi_pipe_end_fb_access -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x77a2a5c5 mipi_dbi_pipe_duplicate_plane_state -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x96b4ba8e mipi_dbi_pipe_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9d93d45a mipi_dbi_pipe_reset_plane -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb6562b23 mipi_dbi_command_buf -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbd718c97 mipi_dbi_dev_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc7088ecd mipi_dbi_pipe_update -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe1cdf2e0 mipi_dbi_hw_reset -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe2afd1f8 mipi_dbi_pipe_disable -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe384328b mipi_dbi_buf_copy -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe5e15fe8 mipi_dbi_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf1d19dfc mipi_dbi_spi_transfer -EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf79b2eee mipi_dbi_spi_cmd_max_speed -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x226f460f drm_gem_shmem_madvise -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x4dd31baf drm_gem_shmem_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x86a4adf1 drm_gem_shmem_get_pages -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x86e6e141 drm_gem_shmem_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x8c55fc59 drm_gem_shmem_purge_locked -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa3da41be drm_gem_shmem_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc247d721 drm_gem_shmem_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc904bcd2 drm_gem_shmem_purge -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd36777a5 drm_gem_shmem_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xec84685f drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0258178 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1939aa3 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4a190c9 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7fbaa24 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8634d14 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9328062 drm_fb_helper_damage_area +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb41ecb4 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdda3bd24 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddb5d0bc drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdff31a12 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe014c2e2 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe01dd3d8 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe22e5dd2 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2e88624 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe582dcbc drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5e5b79f __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5e90649 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe68ddc54 drm_plane_helper_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe71b6969 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe75a03e4 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7824610 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8485ecf drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98d90e8 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea224b5f drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec5e4768 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef47afb7 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef548fd6 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefb0aa47 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf12f8c1f drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2cfa810 drm_gem_begin_shadow_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf32dd426 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3f3dd5f drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4b72bac drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf756a6c1 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7e4bb8b drm_fb_xrgb8888_to_argb8888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf82d85c3 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf83d33a7 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaa54cbe drm_plane_helper_update_primary +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc28dccd drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff166b2c drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2a2c6398 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2f2db365 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x32123992 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x36e99cda mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x384687df mipi_dbi_pipe_end_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3a5a4043 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3d198b33 mipi_dbi_pipe_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x53093e22 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5510663a mipi_dbi_pipe_reset_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x63bfb876 mipi_dbi_pipe_begin_fb_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6761780b mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6e425224 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7189d7e1 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7f1214e1 mipi_dbi_pipe_destroy_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fa12a1f mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x886d5368 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9ae5af52 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa9c57e57 mipi_dbi_pipe_duplicate_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb5ed82be mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc365e316 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd1362ce7 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xea615c57 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xed60829e mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x383dc525 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6177dfa6 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x996ab6d5 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x9a26d5c4 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa689a92f drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xb539d897 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xbf1a753b drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcf1b2c39 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf34a737b drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf9bb22d3 drm_gem_shmem_purge_locked EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x048a510f drm_suballoc_manager_init EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x0bad1988 drm_suballoc_new EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0x8debd4c9 drm_suballoc_free EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xcfea1bec drm_suballoc_dump_debug_info EXPORT_SYMBOL drivers/gpu/drm/drm_suballoc_helper 0xdd9c3522 drm_suballoc_manager_fini -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0ca9a09b drm_gem_ttm_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0de54da3 drm_gem_ttm_dumb_map_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x89eba8ce drm_gem_ttm_print_info -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd2c5dfd7 drm_gem_ttm_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xee65cabe drm_gem_ttm_mmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x06d8e49a drm_gem_vram_plane_helper_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x07521cbd drm_gem_vram_plane_helper_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0799b013 drm_gem_vram_offset -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1ee537fe drm_gem_vram_driver_dumb_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x220284be drmm_vram_helper_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x28a42144 drm_gem_vram_pin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x49f177f8 drm_gem_vram_fill_create_dumb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4ce1e75e drm_gem_vram_simple_display_pipe_prepare_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5fbad2d9 drm_gem_vram_put -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6e113bad drm_gem_vram_unpin -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x82660a34 drm_gem_vram_vmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x934c567e drm_gem_vram_create -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaf8e1d54 drm_gem_vram_vunmap -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xaff3edba drm_gem_vram_simple_display_pipe_cleanup_fb -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdf290feb drm_vram_mm_debugfs_init -EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xef760177 drm_vram_helper_mode_valid -EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x6d27185f rockchip_drm_wait_vact_end -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x00450f25 drm_sched_entity_push_job -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x03fc6e0c drm_sched_resubmit_jobs -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x059b86d4 drm_sched_stop -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1c274f9b drm_sched_job_add_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21e7c2a3 drm_sched_job_add_resv_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2506142f drm_sched_entity_flush -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2e99ebc5 drm_sched_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x30846dcf drm_sched_pick_best -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x36012638 drm_sched_entity_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x443dd8bb drm_sched_job_add_syncobj_dependency -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x531e8a50 drm_sched_suspend_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x53bc4f9c drm_sched_increase_karma -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x717cb053 drm_sched_entity_destroy -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7ea1c5b1 drm_sched_fault -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8735a226 drm_sched_job_add_implicit_dependencies -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x99b5fe0a drm_sched_fini -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9c74ab06 drm_sched_entity_modify_sched -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa3265ed5 drm_sched_start -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa4a96fbb drm_sched_job_init -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb81490f6 drm_sched_entity_error -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc2cb0437 to_drm_sched_fence -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc7312b69 drm_sched_job_arm -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcc91a229 drm_sched_job_cleanup -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd44f9cd7 drm_sched_resume_timeout -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdb3250a6 drm_sched_entity_set_priority -EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xff497b37 drm_sched_entity_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x38af7735 sun4i_rgb_init -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x40ba4d00 sun4i_dclk_create -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x4cebc134 sun4i_tcon_mode_set -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5bd01323 sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x085e314a drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4d0d9314 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9361ec58 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc92c9e2b drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf8e36eaa drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x04f22f3c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x504df7fd drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x51c70fda drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5cd14df6 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6d7aa482 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x74abb55b drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7ee63233 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x85eee798 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91334960 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x97b9bfbf drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa806f0f8 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb6d66cd5 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc0bbc247 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xce793949 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xdc4290c4 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf8aa19bd drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xcfa4d66d rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x019f9ac5 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x06fe3169 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d616dbe drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d876e54 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4183a702 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x473f0766 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x52114e2e drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5473e3e3 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x59959d01 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x656a6945 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6881e0e6 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6eb17941 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e97e6e4 drm_sched_job_add_resv_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x819b3a63 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8875835b drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x96f46b95 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbae14466 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbc44d17a drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc1375299 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc89dc4e4 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xce4267fb drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcf9611cc drm_sched_entity_error +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xede32f98 drm_sched_job_add_syncobj_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xee13d417 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf25372b4 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xff3afaab drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x20ebd90e sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x5a5b8d33 sun4i_tcon_enable_vblank EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6dce499d sun4i_dclk_free -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xaa31c9f7 sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x81ab6ff5 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x82aac1df sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xe1d5a5c9 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xfb09797d sun4i_tcon_mode_set EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xd0e90eff sun8i_tcon_top_set_hdmi_src -EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xd2debefd sun8i_tcon_top_de_config -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x057dcd59 ttm_pool_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0624842a ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xb4f275f4 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xfedd2c82 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0032006e ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0125b8b2 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07bfd3d5 ttm_bo_wait_ctx EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c231474 ttm_kmap_iter_iomap_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15ef6682 ttm_tt_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15f37d57 ttm_pool_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x162cfdf2 ttm_device_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17eb988d ttm_resource_manager_debug -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x197fafaf ttm_bo_vmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x199ce7ae ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x11bca2ca ttm_bo_validate EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23c8af7c ttm_glob -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2690e157 ttm_bo_vm_access -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2707fb49 ttm_resource_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c170c3b ttm_bo_kunmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x389d6df4 ttm_bo_vm_fault_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3998b4d3 ttm_kmap_iter_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43cd343a ttm_bo_set_bulk_move -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x469b8cb9 ttm_bo_unpin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47dcb4b7 ttm_bo_init_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49d5f308 ttm_bo_vm_close -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49edcab4 ttm_resource_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57039156 ttm_bo_vm_dummy_page -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5972f07d ttm_range_man_fini_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f9dd3de ttm_lru_bulk_move_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fbde4ac ttm_bo_init_reserved -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fcad4dc ttm_resource_manager_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61eba424 ttm_bo_vm_fault -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6504f1b3 ttm_bo_eviction_valuable -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x656b4c47 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a9a5abb ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x251d2b9b ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e44061b ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33c1a647 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3cc0fc7a ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43eb6cff ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45c91965 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48dff73b ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52f3855b ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53311a11 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x581a66bf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60542e97 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x648cadae ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66799411 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x677d196e ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67d932f7 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6921a049 ttm_pool_debugfs EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69cc2943 ttm_tt_pages_limit -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a15977e ttm_bo_move_memcpy -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b0dbe6e ttm_bo_pin -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7509ea18 ttm_bo_validate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x757016aa ttm_device_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7586145c ttm_eu_reserve_buffers -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x797248c3 ttm_resource_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7cf34c5a ttm_bo_kmap -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85945817 ttm_bo_vm_open -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bcbdfb0 ttm_bo_mmap_obj -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8ce88581 ttm_resource_manager_usage -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9044729f ttm_bo_unmap_virtual -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94a427a6 ttm_eu_backoff_reservation -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e825dfc ttm_bo_move_accel_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ebdf06a ttm_range_man_init_nocheck -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1f45290 ttm_device_swapout -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa49a2e3f ttm_bo_move_to_lru_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6f10c51 ttm_tt_init -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb43cde30 ttm_pool_free -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc11cf1b8 ttm_device_clear_dma_mappings -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc837cf6b ttm_bo_vm_reserve -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9c115f3 ttm_resource_manager_evict_all -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd29f22b2 ttm_eu_fence_buffer_objects -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd69380bf ttm_pool_fini -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde29bd03 ttm_pool_alloc -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe16004d2 ttm_resource_manager_create_debugfs -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe40f0671 ttm_bo_move_sync_cleanup -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe64ede2d ttm_bo_wait_ctx -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6b53e5f ttm_tt_populate -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3a2b29f ttm_lru_bulk_move_tail -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6df83bf ttm_bo_put -EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xffb86204 ttm_bo_vunmap -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0727d537 host1x_job_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x08848ffa __host1x_client_register -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f8b6230 host1x_channel_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x114f7226 host1x_job_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x116ae881 host1x_bo_pin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x17292410 host1x_device_init -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1b696962 host1x_client_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1c18720d host1x_syncpt_read_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x20d18a6d host1x_channel_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x260a7fc8 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72ab8427 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75783e26 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ecc0a36 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x807b6400 ttm_pool_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83140898 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b8b0f2d ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bb7abba ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d4ae9c8 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91b920e9 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e04b1f6 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa23c39c2 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5036e33 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa058495 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf5eefa9 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2a4bf33 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb50e1e92 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe98d060 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0677f33 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1a2d777 ttm_pool_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc751ab31 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca4e7d69 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbbf6740 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd24f9f99 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd341d678 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd50dcaea ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5e0f0cd ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd69aecc6 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde94e566 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe75dfd03 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe76ae3ea ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7c610b5 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7e27519 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0815765 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf81ec054 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf89bf83d ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa8851fb ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfae7b171 ttm_bo_init_validate +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1432c143 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x16c099ee host1x_client_unregister EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x27bb468c host1x_fence_create -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2f3d679a host1x_job_unpin -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2feac3a9 host1x_syncpt_get_by_id_noref -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x34009189 host1x_syncpt_get_base -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x38ef8e86 host1x_job_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3a8efd4f host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2defbb7d host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3c01bfdd host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3ccc5efa host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3f18842f host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x407af5b2 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x429d4bbc host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x47b128d0 host1x_syncpt_put EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5d96c8a8 host1x_client_resume -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6013890d host1x_client_suspend -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6a00312d host1x_syncpt_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6eeeaa8a host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x54acbc85 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x580ad690 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5895fe94 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5d847eaa host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5ddb6715 host1x_bo_pin EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7addc635 host1x_syncpt_incr_max -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x82c5c3bf host1x_syncpt_id -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x850e1edd host1x_syncpt_put -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x85665618 host1x_syncpt_get -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x88729590 host1x_job_submit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x88d37f22 host1x_device_exit -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9097c3c9 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x74886eaa host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x764ef5e2 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x77724006 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x81419b6b tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x81fb451a host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x85d2a08f host1x_job_get EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9a2ac899 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x99b11e5e host1x_client_suspend EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9f042942 host1x_fence_cancel -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa1101bc1 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa4345ffb host1x_client_resume EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb2075092 host1x_job_add_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb2bc79d0 host1x_channel_stop -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb51052eb host1x_channel_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb5cd760b host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaab14120 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb294adc3 host1x_syncpt_get EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd029beaa host1x_driver_register_full -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe1588b6d host1x_syncpt_wait -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe683c786 tegra_mipi_request -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xebcd8f86 host1x_syncpt_release_vblank_reservation -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xee7c98bb host1x_get_dma_mask -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xef508d70 host1x_syncpt_read -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xef620ebd host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc5742e20 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcaea9d27 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd10107e8 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd522cd86 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xda80653d host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdc306a40 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdc5e648b host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdd67108e host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdea74400 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdf5dc3a3 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe2cbfe31 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe807b8d8 host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf12618a9 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf6bfa784 host1x_syncpt_get_base EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf92fe1cd host1x_job_alloc -EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfd8db6ce host1x_syncpt_get_by_id -EXPORT_SYMBOL drivers/hid/hid 0x3bf57f33 hid_bus_type -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xc885e844 vmbus_sendpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf3748697 vmbus_recvpacket -EXPORT_SYMBOL drivers/hv/hv_vmbus 0xfb751321 vmbus_sendpacket_getid -EXPORT_SYMBOL drivers/hwmon/adt7x10 0xa6b85a88 adt7x10_dev_pm_ops +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf91bb545 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfaf5ef7e __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xfd80e9ac host1x_bo_unpin +EXPORT_SYMBOL drivers/hid/hid 0x12c97d2c hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x0476f62d vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xbcd3214f vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf17c5d96 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/adt7x10 0x212189d2 adt7x10_dev_pm_ops EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x2f9e7f8e vid_which_vrm EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x446615bd vid_from_reg -EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0xd0b0bac1 ltc2947_pm_ops +EXPORT_SYMBOL drivers/hwmon/ltc2947-core 0xcccab202 ltc2947_pm_ops EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x01568393 sch56xx_read_virtual_reg -EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x64754229 sch56xx_watchdog_register EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x96ec3b26 sch56xx_read_virtual_reg12 EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xaa17a737 sch56xx_write_virtual_reg EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xb37b9b81 sch56xx_read_virtual_reg16 -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1ba2844c i2c_bit_algo -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb4bdb7b7 i2c_bit_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe38c3725 i2c_bit_add_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x2b2fa506 i2c_pca_add_numbered_bus -EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x4b351b96 i2c_pca_add_bus -EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xc988378c amd756_smbus +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xd4e78704 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1788abc2 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x23e985df i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x40b92b50 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xbf318771 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xdf2b39e1 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x95bc050c amd756_smbus EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale @@ -1472,1025 +1472,1025 @@ EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x53546ecd qcom_adc5_avg_samples_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x70e6eca1 qcom_vadc_decimation_from_dt EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0xc61e7a34 qcom_adc5_prescaling_from_dt -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x14f08212 iio_triggered_buffer_cleanup -EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9945a5ba iio_triggered_buffer_setup_ext -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x6ba979f1 iio_kfifo_allocate -EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xdda8804b iio_kfifo_free -EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x5d7add60 fxos8700_regmap_config -EXPORT_SYMBOL drivers/iio/industrialio 0x089cf54c iio_trigger_unregister -EXPORT_SYMBOL drivers/iio/industrialio 0x1560df47 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x6e66dcfa iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xadc2c4dc iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3e210d7f iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9cc36838 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x0c6fa272 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/industrialio 0x054f8e89 __iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x13f88f3b iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x236ffe1d iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x239b2238 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x24499d67 iio_read_mount_matrix EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll -EXPORT_SYMBOL drivers/iio/industrialio 0x30258bc8 iio_trigger_validate_own_device -EXPORT_SYMBOL drivers/iio/industrialio 0x35973614 iio_trigger_set_immutable -EXPORT_SYMBOL drivers/iio/industrialio 0x4905dab2 iio_push_event -EXPORT_SYMBOL drivers/iio/industrialio 0x4e13c8bb iio_read_mount_matrix -EXPORT_SYMBOL drivers/iio/industrialio 0x5a876b8c iio_trigger_register -EXPORT_SYMBOL drivers/iio/industrialio 0x5ba256f5 iio_device_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x650591a2 iio_read_const_attr -EXPORT_SYMBOL drivers/iio/industrialio 0x6ff06452 __iio_trigger_alloc -EXPORT_SYMBOL drivers/iio/industrialio 0x86a7aece iio_trigger_notify_done -EXPORT_SYMBOL drivers/iio/industrialio 0x908851c8 iio_trigger_poll_nested -EXPORT_SYMBOL drivers/iio/industrialio 0x96ed5a52 iio_bus_type -EXPORT_SYMBOL drivers/iio/industrialio 0x9f52334f __iio_device_register -EXPORT_SYMBOL drivers/iio/industrialio 0xbed0c986 iio_device_get_clock -EXPORT_SYMBOL drivers/iio/industrialio 0xc13f8617 iio_get_time_ns -EXPORT_SYMBOL drivers/iio/industrialio 0xcd334aea iio_buffer_init -EXPORT_SYMBOL drivers/iio/industrialio 0xd4618bc3 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4fd1d5e0 iio_trigger_poll_nested +EXPORT_SYMBOL drivers/iio/industrialio 0x51bc7f73 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x59fe2ae6 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x6cdb1254 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x7a70e97e iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x85deefa4 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x8b2ceb20 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x8fd5e2e5 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x987dffb6 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x9ac6f554 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9bfac9c1 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xd42ae779 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd7c57164 iio_trigger_unregister EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time -EXPORT_SYMBOL drivers/iio/industrialio 0xe99f98c5 iio_trigger_using_own -EXPORT_SYMBOL drivers/iio/industrialio 0xf287d149 iio_device_free -EXPORT_SYMBOL drivers/iio/industrialio 0xfc367a35 iio_trigger_poll -EXPORT_SYMBOL drivers/iio/industrialio 0xfcc2a610 iio_trigger_free -EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x1cad8b98 iio_configfs_subsys -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x364794b9 iio_sw_device_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7a6f3779 iio_register_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7ec64ab6 iio_unregister_sw_device_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x880499f8 iio_sw_device_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0476de71 iio_unregister_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4cda62b2 iio_sw_trigger_create -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc111323a iio_sw_trigger_destroy -EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd407745a iio_register_sw_trigger_type -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x29af52e8 iio_triggered_event_cleanup -EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xb12e0469 iio_triggered_event_setup -EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xbb6d6d68 bmp280_dev_pm_ops -EXPORT_SYMBOL drivers/iio/trigger/stm32-lptimer-trigger 0x3c217acb is_stm32_lptim_trigger -EXPORT_SYMBOL drivers/iio/trigger/stm32-timer-trigger 0x17a27be4 is_stm32_timer_trigger -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0280f611 ib_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04c51078 ib_cm_notify -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x131f9047 ib_send_cm_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2595f0e6 ib_send_cm_rtu -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x364ea571 ib_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x37f939b0 ib_send_cm_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x436c4169 ib_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b82545b ib_send_cm_dreq -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x546f76b0 ib_cm_insert_listen +EXPORT_SYMBOL drivers/iio/industrialio 0xe0eb8796 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xe792b027 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xea856c03 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xf2ccbdf3 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xe2446801 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x666f7414 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xb5a83741 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf1beab26 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xf517d6e9 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x24d69bb5 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x4f194c45 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5e021373 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x8e73b958 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x570d9e8f iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x67a8d2b6 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7a647bb7 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/trigger/stm32-lptimer-trigger 0xd24dd153 is_stm32_lptim_trigger +EXPORT_SYMBOL drivers/iio/trigger/stm32-timer-trigger 0x91dd0147 is_stm32_timer_trigger +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x03e9713b ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0fd136e0 ib_send_cm_mra EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0eab03b ib_send_cm_rej -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5644e46 ib_send_cm_mra -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbcc6004c ib_send_cm_sidr_req -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc458dd55 ib_send_cm_sidr_rep -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf573af19 ib_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf6b27cc2 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6dfed586 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6f77cf32 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x85ef36cf ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa1fbb1bf ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb0fba406 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc8ff58ad ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf3fd9e5 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd0cefd1f ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xed7fabcf ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xef6a34d1 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf13673d5 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfc81c290 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd84158d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x004437d1 ib_mr_pool_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0101d8c8 ib_dealloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0167434e ib_set_vf_link_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02d3ac03 rdma_restrack_new -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0389a6cb ib_get_vf_config -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05a5d861 rdma_copy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05c6a772 rdma_alloc_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06bba51b ib_cq_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ac0d794 ib_free_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b981bab ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01117d30 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01519cd0 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01cc0421 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x022fb7f4 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c13bba ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02ee879a ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04053283 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0505c66f ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0666ca70 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06ad38a4 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08af574c ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0969e0d2 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a5f37ae ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0abd0f6f rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b0dec43 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b67f466 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c08842d ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c5e7f15 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c6948ed ib_get_vf_stats EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d8526b2 ib_port_unregister_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e9290a0 ib_alloc_mr_integrity -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f5bdde5 ib_destroy_wq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14d3c44d rdma_link_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16d35a98 rdma_user_mmap_entry_insert_range -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x170230f7 rdma_nl_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x178d6fee rdma_create_user_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x187623fa rdma_rw_ctx_post -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x189ab27e ib_dma_virt_map_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18e75cf1 ib_unregister_device_queued -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19cda0d8 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0def6102 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e9cf1e0 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11349405 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x128df045 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1401be9b ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x173b3af9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x186a8cdd rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18f0a23a ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18f2644c rdma_move_ah_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e7490f __rdma_block_iter_next -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a1d4014 rdma_copy_src_l2_addr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cfadcfc ib_destroy_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1db8780f ibnl_put_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e1682a3 ib_get_eth_speed -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2c953d ib_process_cq_direct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e40ad43 ib_register_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f39444d rdma_nl_unicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20e242ea ib_create_ah_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x220718cf ibdev_alert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2251ee15 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19fe36b7 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a13148f rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b92bf08 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c19c3ad rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ee8640f ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20757ec8 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x208f0d61 rdma_restrack_del EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23df7ff7 rdma_restrack_add -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2554f539 rdma_destroy_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x269b9a26 rdma_restrack_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27f049aa ib_free_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x282702cc ib_modify_qp_with_udata -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d5d1fde ib_create_qp_security -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ee0d900 rdma_restrack_set_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30059622 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2314b133 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x290590e8 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2beef5a9 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ca715ad ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e9886ce ibnl_put_msg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36d57587 rdma_rw_ctx_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39705e7d ib_rdmacg_uncharge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b570af2 ib_get_net_dev_by_params -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d32cadc ib_set_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d3f3864 ibdev_warn -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d89c5dc ib_free_recv_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e43c4f5 rdma_read_gid_hw_context -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f4230a3 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x306eed06 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31d317a7 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x330bc7ca ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x339f3506 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x381ed97d rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39435d1d rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b3690bb ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bf2ce3e rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c524253 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f01ad8b ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f91d2e2 ib_device_set_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40191fe9 rdma_rw_ctx_destroy_signature -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x416808e9 ib_unregister_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41bc31c2 ib_alloc_xrcd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4277864a rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40fb981b ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4127f4dc rdma_restrack_add EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x437acca1 ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44a54222 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4463110d rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4531a2ca ib_sa_path_rec_get EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47d1b1ed rdma_modify_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b840f77 rdma_nl_put_driver_string -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c5aa90a ib_create_srq_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cc81923 ib_sa_get_mcmember_rec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d237670 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x481cb637 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49a3299d ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cd8bcc6 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dafdbf7 ib_dma_virt_map_sg EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53c290f2 __ib_alloc_cq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d86214 ib_mr_pool_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d8b73b __ib_alloc_pd -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x550f050d ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ead1df0 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50eebd60 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51255e70 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5213a00f ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x524d8fcd ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52a600fd rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x545292cd ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5497c325 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5587d035 ib_unregister_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x571470da __rdma_block_iter_start -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5772f12e _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5795147d ib_unregister_device_and_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x590b34bf ib_modify_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a354282 rdma_hold_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a3f00e4 ib_post_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bcd0e28 ibnl_put_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bd4506b rdma_user_mmap_io -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c060d9f rdma_dev_access_netns -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5da052fa ib_init_ah_attr_from_wc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fd42560 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ad76bb8 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ef09af2 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f844849 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x600fc1f8 ib_get_vf_config EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6179b0f3 ib_dealloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x620efc05 ib_drain_sq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x640cb215 ib_get_rmpp_segment -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x676ab418 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62155bd3 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x632bd453 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63bec7eb rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63f0c236 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a12db5f ib_get_eth_speed EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ba326db ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cc18ae6 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d170ab0 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d8448b6 rdma_rw_ctx_destroy_signature EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70355bf7 ib_resize_cq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70807834 rdma_addr_size -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7124f0f0 ib_get_cached_subnet_prefix -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x739bd3ea __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7221e124 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x722f634d ib_detach_mcast EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7409cf86 ib_unregister_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74cb4be7 ib_qp_usecnt_inc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7545eceb ib_port_immutable_read -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7568ac5f ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x746a6b1d ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7596682f ib_dealloc_device EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77108e0d ibdev_emerg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x771cf966 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75eee819 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x767be3f1 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x767dce11 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x769fd811 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x772c3734 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78658d28 ib_cq_pool_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78fd9522 ib_register_mad_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7932efac ib_rdmacg_try_charge -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7985b2e8 ib_attach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a0996c2 rdma_replace_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a7897a3 ib_init_ah_attr_from_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c776091 ib_mr_pool_destroy -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f8b47f2 rdma_set_cq_moderation -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80bea7af ib_find_exact_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8104d170 ibdev_notice -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81394b0f ib_get_device_fw_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82abc166 ibdev_crit -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82e2ac1e rdma_user_mmap_entry_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83cf02b6 ib_close_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8571b0e9 ib_get_cached_port_state -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87d67656 rdma_rw_mr_factor -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a7d3d06 ib_set_device_ops -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b76a5a5 rdma_rw_ctx_signature_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c3b33ea rdma_nl_unicast_wait -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c942a3b ib_mad_kernel_rmpp_agent -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d4a0f50 ib_dispatch_event -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fb66832 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x791d438b ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79b0836f ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a055647 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b161b46 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d8beb12 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e595bf4 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80213a2d ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80c83afc rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82823d2a rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x847a3d7d rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x876df3a1 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8879c54e rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8940cbfd rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c0bcc04 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e190ada ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e21b8c4 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ed53501 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fa4dc12 ibdev_notice EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x927733fb ib_map_mr_sg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93311afe rdma_rw_ctx_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x953abb0c rdma_get_gid_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9560923d ib_query_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9613cbdb ib_drain_rq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98c71aee ib_drain_qp -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98e831a3 ib_port_sysfs_get_ibdev_kobj -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9984d11f ib_set_client_data -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99c80073 ib_find_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b36916a ib_port_register_client_groups -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b63876f rdma_nl_stat_hwcounter_entry -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cacf8fb rdma_init_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ee9c6e8 rdma_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fc82540 ib_query_srq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fd4562e rdma_find_gid_by_port -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa326b553 ib_unregister_event_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3570ef7 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93cfbad3 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94728c62 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x949193cd ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97b8d718 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97df8bcf ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98dcbd38 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x994cb969 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x998814ab ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cb82cfe ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0352325 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa16dabb4 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa180c058 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2db5759 ib_dereg_mr_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4f2c7aa rdma_nl_put_driver_u32 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57c8ac9 roce_gid_type_mask_support -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7dfbd12 ib_dereg_mr_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8ea87f3 ib_modify_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab347a6e rdma_user_mmap_entry_get_pgoff -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab6abc11 ib_dealloc_pd_user -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad1cde16 ib_detach_mcast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad386e0c ib_find_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad3c6855 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6b60fb3 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9870ebb ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa88e348 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab5163d1 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac022028 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae09dff0 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae4ef5f7 rdma_rw_ctx_signature_init EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb118c912 rdma_move_ah_attr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e26dfe rdma_user_mmap_entry_remove -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb262e299 ib_sa_guid_info_rec_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3daaf9c ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3a8ab95 ib_mad_kernel_rmpp_agent EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c40040 ib_sa_pack_path -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5da3d0c rdma_restrack_put EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb98b295e ib_mr_pool_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdf5186d ib_create_send_mad -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe673b94 ib_device_put -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf6cb859 ib_alloc_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf81c725 ib_modify_device -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc07e481b rdma_nl_put_driver_u32_hex -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc134de4f ib_register_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2ed469f ib_get_cached_lmc -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc30ecfdc rdma_user_mmap_entry_insert -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32eb268 rdma_query_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc410ed4f rdma_restrack_count -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc64ccea7 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8c2228c rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8fcb364 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb91ffeb3 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb928713b ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaf7a047 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb5a2be7 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbb70a2c rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc132422 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdbc06ef ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfee3d64 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0ebfc7f rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc18856c3 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6e685e8 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8af1e17 ib_reg_user_mr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc98f9380 ib_device_set_netdev -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca826371 ib_mr_pool_init -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc8d0bfb rdma_addr_cancel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd206356 rdma_rw_ctx_wrs -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd4a3d79 ib_advise_mr -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3d4959 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb5d02f8 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb9e2040 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce9784d0 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf47f934 ib_unregister_event_handler EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0478dc4 ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd124f5d9 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1e16ecc ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1ff0e39 ib_open_qp EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd21bb37a ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2d5f958 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd39567c0 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4fd2d72 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd559ef89 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd56d74ce rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd628c3af ib_process_cq_direct EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6bbac47 ib_create_wq -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6c35f2d ibdev_printk -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd98997c9 ib_create_qp_kernel -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0c91c8 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd722b627 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd863524f ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd92708b9 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd96f84d9 ib_device_get_by_netdev EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa15814 rdma_user_mmap_entry_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdadd2409 rdma_translate_ip -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc75f43a ibdev_info -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde400d0c ib_unregister_client -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf720af2 rdma_query_ah -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe42ebbf8 ibdev_err -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5327ae7 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde6b318b rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe24d507b ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe27cc9c2 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe282e1f4 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3e17c10 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4789979 rdma_user_mmap_entry_insert_range EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7860bbf ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6b6a8b5 ib_create_srq_user EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7e77f7a rdma_read_gid_l2_fields -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe938ef4f ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9261fa1 rdma_rw_ctx_wrs EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec26e14f rdma_link_register -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecf56fdb ib_sa_path_rec_get -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef14c3c5 ib_query_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefddbfa0 rdma_restrack_get_byid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1d06d54 rdma_restrack_parent_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3a0efba ib_sa_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4a2cf35 ib_map_mr_sg_pi -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5446b2b rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea1cea77 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea27c959 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea3f8325 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea8eb69a ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb18d42b rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedf86218 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef05c102 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefcdecac ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1065e0a ib_create_wq EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf62b6025 rdma_move_grh_sgid_attr EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6f240c5 rdma_nl_put_driver_u64 -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf788c04f rdma_read_gid_attr_ndev_rcu -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7ef7a78 ib_find_gid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf83cc6a7 ib_qp_usecnt_dec -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9f79133 ib_sg_to_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb639afd ib_get_vf_guid -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb65d1c6 ib_get_cached_pkey -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc0ccfce ib_device_get_by_name -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdec7d45 rdma_port_get_link_layer -EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff262e6b rdma_nl_multicast -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x010f16cf ib_umem_find_best_pgsz -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x069bc09f ib_umem_odp_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x08338a3e ib_uverbs_get_ucontext_file -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0ed7abb9 ib_uverbs_flow_resources_free -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1378b34f ib_umem_dmabuf_unmap_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16cc3e33 uverbs_finalize_uobj_create -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2e979837 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7502b1c ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7fe074f ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa412a8a ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa4c26a3 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb78e187 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcc00148 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09b07014 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1963597f uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x19a70b4d ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25a68f02 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x29129028 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2dce98c1 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34418244 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3597cfe7 uverbs_finalize_uobj_create EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c34dc6 ib_copy_path_rec_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3cc3e379 uverbs_destroy_def_handler -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3f54424f ib_umem_odp_unmap_dma_pages -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x40a0bc95 ib_umem_dmabuf_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51988ce2 ib_umem_copy_from -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5587b559 uverbs_copy_to -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56d97d2b ib_umem_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f82ed24 ib_copy_qp_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x627ddfe4 uverbs_uobject_fd_release -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x633ebc34 flow_resources_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d39e323 ib_umem_dmabuf_get_pinned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x71ff5a74 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d9314cc uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x47d66fe7 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x504691fe flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5266e2e1 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5eb6a26c uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x64e1a223 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x651af20b uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6f937bee uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x74d46462 _uverbs_alloc EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x754b0000 ib_copy_path_rec_from_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7833042a ib_copy_ah_attr_to_user -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x807452da ib_umem_odp_alloc_implicit -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x82c13eab _uverbs_get_const_unsigned -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8ea5c175 ib_umem_odp_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93de1c58 ib_umem_odp_map_dma_and_lock -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9f4bdfaa uverbs_uobject_put -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa71952ac ib_umem_odp_alloc_child -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb322a2e2 _uverbs_alloc -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb553b5da uverbs_get_flags64 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbd48944c flow_resources_add -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3a3974b uverbs_get_flags32 -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5e1834d _uverbs_get_const_signed -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd68ab3c6 ib_umem_get -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde24e545 uverbs_fd_class -EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf32f38cd ib_umem_dmabuf_map_pages -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6aaf25ec iw_create_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x791da1c1 iw_destroy_cm_id -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x830a2c8d iw_cm_reject -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xade71a45 iw_cm_connect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb1d6cfd8 iw_cm_listen -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc62a5266 iw_cm_disconnect -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd3166ba9 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x798deef4 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fb1a241 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x873f4425 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x87aab05c ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93c511f8 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x980f219f ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa781e465 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbb742c90 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0c360b0 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc93c7b02 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcdc9feb6 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe1d44d50 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe578d601 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe6d331e0 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf0a3a3ba ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf68b1252 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x228ccb06 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x557056b8 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x72dcd75f iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x79ce40cc iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8e27f525 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbae912dc iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf0d684c9 iw_cm_connect EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf94f74f9 iw_cm_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e74d3a8 rdma_set_afonly -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x10eef437 rdma_leave_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x13dda079 rdma_disconnect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x182c41d9 rdma_destroy_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19f7fb81 rdma_accept -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x200f6e86 rdma_accept_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x25e29444 __rdma_create_kernel_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c29b948 rdma_reject_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31aed7da rdma_resolve_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x33c3b966 rdma_destroy_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36dc465f rdma_init_qp_attr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3914806e rdma_connect_ece -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41ec9a01 rdma_join_multicast -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x583c7b6d rdma_resolve_route -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a56dd50 rdma_consumer_reject_data -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71b5da87 rdma_connect_locked -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7571a3d0 rdma_listen -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x758ea30c rdma_create_user_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76a8c687 rdma_set_ib_path -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78a319b3 rdma_res_to_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85fe998a rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfff8c956 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x072d3926 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07c8ac64 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2426d2d4 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3249186e rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ae7b7c9 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41cc2ec8 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x473540f2 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4908ab12 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x499e8d08 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c64f3d2 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ff02626 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x558575a1 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x560daa62 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x599d9422 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5e2eae1a rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5e90b6fc rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62647df1 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62e753ad rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6916b20d rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7ccddc1c rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8556fdd4 rdma_set_reuseaddr EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9541919a rdma_get_service_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e2b633f rdma_unlock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fdf0de0 rdma_lock_handler -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1126462 rdma_notify -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe76d21c rdma_iw_cm_id -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc18cbfdf rdma_reject -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc977e63e rdma_create_qp -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca445993 rdma_connect -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd30a6fb6 rdma_set_service_type -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe7f5a5e4 rdma_set_ack_timeout -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe801e58f rdma_bind_addr -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe8659ba4 rdma_set_min_rnr_timer -EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf7eff260 rdma_set_reuseaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x113b725e rtrs_clt_rdma_cq_direct -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x84338c54 rtrs_clt_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa85a6784 rtrs_clt_query -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xaa123cea rtrs_clt_get_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf40cb72d rtrs_clt_put_permit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf4db6ac6 rtrs_clt_request -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfa86ed76 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x913c6ae6 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1b36002 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6767e7a rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1719cb0 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb2d69371 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb42f1d3 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd8437816 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe4e0714b rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5141f94 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe7f89e2e rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe939d790 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf767d7f0 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf79570c6 rdma_connect +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x13d6af33 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3508ed9e rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x39da00b0 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4b004a01 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x62377baf rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xbd69fe43 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xee58fc26 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0adc02c5 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x22efe65c rtrs_rdma_dev_pd_deinit EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x544b8903 rtrs_rdma_dev_pd_deinit -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7c786d9a rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x436426e9 rtrs_ib_dev_put EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xbb0b93e1 rtrs_ib_dev_put -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xcc612f74 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xad998aa3 rtrs_ib_dev_find_or_add EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xe15357ef sockaddr_to_str -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0319b870 rtrs_srv_resp_rdma -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x53fc217c rtrs_srv_close -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5f56319a rtrs_srv_open -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x77e7721d rtrs_srv_get_queue_depth -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc6a9c26a rtrs_srv_get_path_name -EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdd2d3b80 rtrs_srv_set_sess_priv -EXPORT_SYMBOL drivers/input/gameport/gameport 0x0ba8628d gameport_set_phys -EXPORT_SYMBOL drivers/input/gameport/gameport 0x3e56e7d5 gameport_unregister_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0x4e70c0b2 gameport_close -EXPORT_SYMBOL drivers/input/gameport/gameport 0x50b286c0 gameport_open -EXPORT_SYMBOL drivers/input/gameport/gameport 0x7ffb806d __gameport_register_port -EXPORT_SYMBOL drivers/input/gameport/gameport 0xa275a324 gameport_unregister_driver -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb3277f95 gameport_stop_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xb59e857a gameport_start_polling -EXPORT_SYMBOL drivers/input/gameport/gameport 0xf16dd3ca __gameport_register_driver -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x292ca5af iforce_init_device -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x6944f676 iforce_process_packet -EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xeab1153d iforce_send_packet -EXPORT_SYMBOL drivers/input/matrix-keymap 0xbbf4594b matrix_keypad_build_keymap -EXPORT_SYMBOL drivers/input/misc/ad714x 0x6468dbae ad714x_probe -EXPORT_SYMBOL drivers/input/misc/ad714x 0x7729962e ad714x_pm +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0924bc47 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0d5fd722 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5789cf89 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x686b547d rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x6c7dc458 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7b1879c2 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x08edef3a __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x11148731 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x17ad7dde gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x38b70d07 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x74ea98f6 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9adce59e gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb5807a6e __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdb53474b gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xeafac2f9 gameport_close +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x14f443ae iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x3bf898b9 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xc60e1682 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xa3208d81 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x29b7619e ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9767d36f ad714x_pm +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x2727a1bc 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 0x9c538b37 cma3000_init EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend -EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xef6f22f1 rmi_unregister_transport_device -EXPORT_SYMBOL drivers/input/sparse-keymap 0x18104927 sparse_keymap_entry_from_scancode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b4fc17d sparse_keymap_entry_from_keycode -EXPORT_SYMBOL drivers/input/sparse-keymap 0x75537fd4 sparse_keymap_setup -EXPORT_SYMBOL drivers/input/sparse-keymap 0xd473d95c sparse_keymap_report_event -EXPORT_SYMBOL drivers/input/sparse-keymap 0xf959cb1c sparse_keymap_report_entry -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0975e822 ad7879_pm_ops -EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0cb12743 ad7879_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x0857c7c1 qnoc_probe -EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xfe93815b qnoc_remove -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1d80e53e capi_ctr_handle_message -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x44bcbf65 capi_ctr_ready -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e4ea078 attach_capi_ctr -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa2c8c557 capi_ctr_down -EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc5bc044d detach_capi_ctr +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x00f931c6 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x121c89f6 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x18fec2e7 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x214301ac sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5ba4c16e sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc3cd909c sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9c22cbe4 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xb7379536 ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x080a7cf2 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xfece3a68 qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x44d02b80 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e22349d attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa2a451b2 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb9813848 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc5d090a8 detach_capi_ctr EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0xef4ee223 isdnhdlc_encode -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x21733546 mISDNisac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2348ff32 mISDNipac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4197bd0e mISDNisac_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc6c9cec9 mISDNipac_init -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x26d58f42 mISDNisar_irq -EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcaf25bbe mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x344bf9db mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8259a51e mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x86d6b8d6 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc0add191 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd2193995 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe8113a51 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x038d821d mISDN_freedchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x17771755 recv_Dchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1aa27693 mISDN_freedchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x20c97aa4 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x07239ae5 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0e8cfe4f mISDN_initdchannel EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2ba4dff4 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2fcbba44 get_next_bframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b93ed87 mISDN_ctrl_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b9dfd0e recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40ff8242 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47e7242d mISDN_register_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x523f3cf6 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x73d672b4 mISDN_unregister_device -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f6b9528 get_next_dframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ff8dd7d recv_Bchannel_skb -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x94d7a4bc mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x60d7e305 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6547ba21 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75af7ab9 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8345ca2e bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x917320c2 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x964461a6 get_next_dframe EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa364bf46 queue_ch_frame -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa5d2a663 bchannel_senddata -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa68fa97b create_l1 -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa91fc80d mISDN_clear_bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9f70895 mISDN_freebchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbdfef3c6 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6cd4d33 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc1969700 mISDN_unregister_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc718336d mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc413af68 mISDNDevName4ch EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd2c02bb6 mISDN_unregister_Bprotocol EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8778c90 mISDN_initdchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe393c868 get_next_bframe -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe635f4a5 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd685440a bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xda453910 mISDN_register_device EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec5aa5f0 recv_Dchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf5e57a11 recv_Bchannel -EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa820e22 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xee7e1215 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeffd8339 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf575517e recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfcaf3f14 recv_Bchannel_skb EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1452db0c ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x1a84a5d8 ti_lmu_common_get_ramp_params EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp -EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x789a4432 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x764c3ae6 ti_lmu_common_get_brt_res EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness -EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xedbde46c cmdq_get_shift_pa -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x9645bc84 omap_mbox_disable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xd277f3c8 omap_mbox_enable_irq -EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe9f403c8 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x8dd5239c cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x334d53c7 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa681ea77 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xe2b3a53b omap_mbox_enable_irq EXPORT_SYMBOL drivers/md/dm-bio-prison 0x476d2454 dm_cell_key_has_valid_range -EXPORT_SYMBOL drivers/md/dm-log 0x4feee3d3 dm_dirty_log_create -EXPORT_SYMBOL drivers/md/dm-log 0x57807280 dm_dirty_log_type_register -EXPORT_SYMBOL drivers/md/dm-log 0x8ee46dad dm_dirty_log_type_unregister -EXPORT_SYMBOL drivers/md/dm-log 0xf4604cfc dm_dirty_log_destroy -EXPORT_SYMBOL drivers/md/dm-snapshot 0x12a6be0a dm_exception_store_type_unregister -EXPORT_SYMBOL drivers/md/dm-snapshot 0x38e63500 dm_snap_origin -EXPORT_SYMBOL drivers/md/dm-snapshot 0x4d222b7f dm_exception_store_create -EXPORT_SYMBOL drivers/md/dm-snapshot 0xb170e029 dm_snap_cow -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf4f58330 dm_exception_store_type_register -EXPORT_SYMBOL drivers/md/dm-snapshot 0xf814bc95 dm_exception_store_destroy -EXPORT_SYMBOL drivers/md/raid456 0x7b6c2963 r5c_journal_mode_set -EXPORT_SYMBOL drivers/md/raid456 0xdc4811f3 raid5_set_cache_size -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x045093fa flexcop_dump_reg -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3d07aea3 flexcop_device_initialize -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x54160dd6 flexcop_device_kmalloc -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x72f406f8 flexcop_i2c_request -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x75e78744 flexcop_pass_dmx_packets -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x90c4a79d flexcop_sram_set_dest -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb00bb6a9 flexcop_device_kfree -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xba23eb08 flexcop_pass_dmx_data -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcda5a300 flexcop_pid_feed_control -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe910599d flexcop_device_exit -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xef72b735 flexcop_sram_ctrl -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf0efabe3 flexcop_wan_set_speed -EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf20ba7da flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/md/dm-log 0x37893dc6 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x486b7ea8 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x5793efb1 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xeeed22eb dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1a7ae323 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x36f0dbb3 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3d023112 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6b5598c9 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x967ca354 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfc29de19 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x6e10489a raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0xa0616eba r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x17f5a7d7 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1bd3e673 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x435806c7 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4c4bed8f flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x69d4975a flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x704e4256 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x761d9766 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9af9bfdd flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa7f548a0 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb51bad26 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3e250e9 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4178a3f flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe9fdec80 flexcop_pid_feed_control EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu -EXPORT_SYMBOL drivers/media/common/cx2341x 0x4fc8c9b1 cx2341x_handler_set_busy EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls EXPORT_SYMBOL drivers/media/common/cx2341x 0x5b5cc43e cx2341x_ext_ctrls -EXPORT_SYMBOL drivers/media/common/cx2341x 0x5c860d8a cx2341x_handler_set_50hz EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults -EXPORT_SYMBOL drivers/media/common/cx2341x 0xba207836 cx2341x_handler_init -EXPORT_SYMBOL drivers/media/common/cx2341x 0xce447722 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8b3b40a6 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8fabc033 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x9ce50408 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb95067e7 cx2341x_handler_init EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status -EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x6b001cf1 cypress_load_firmware -EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x0e2ee68c ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x777b8820 cypress_load_firmware EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xdefcc952 ttpci_eeprom_parse_mac EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog -EXPORT_SYMBOL drivers/media/common/tveeprom 0x688cb650 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xa7dc7994 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x04517bb1 vb2_buffer_in_use EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x6145409a vb2_buffer_in_use -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x9327bb8b vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc2e28e5d vb2_verify_memory_type EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xc5e5573a frame_vector_to_pages EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xdffb744b frame_vector_to_pfns EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xe20dfe0f get_vaddr_frames -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1c2d88d9 vb2_dvb_register_bus -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x32a4bd20 vb2_dvb_get_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x364d4ae9 vb2_dvb_dealloc_frontends -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7c9bdf90 vb2_dvb_alloc_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x93e1129a vb2_dvb_find_frontend -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfdc1bcb0 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x18bf86c6 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x38fe340e vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7c8cfa3d vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa0b7febe vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa94a6f34 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf372c257 vb2_dvb_unregister_bus EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xc7c2b85f vb2_create_framevec EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec -EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x598021d5 vb2_querybuf +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xa41fb209 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0666f13d dvb_dmxdev_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x119843b9 dvb_unregister_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x178747a3 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09e220b2 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1628a503 dvb_generic_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28836726 dvb_ca_en50221_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28bfe012 dvb_dmxdev_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a568576 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2b180904 dvb_net_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33bac5d3 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x333787eb dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x34c3f408 dvb_generic_ioctl EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3dd34115 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5216f848 dvb_frontend_resume EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5cccff3b dvb_frontend_detach -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5df84db3 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56efe27b dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f04dbd3 dvb_ca_en50221_camchange_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6033bc74 dvb_unregister_adapter EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6b654d1f dvb_ca_en50221_camchange_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7767e3ff dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72a96760 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x771613de dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x886b88e3 dvb_ca_en50221_frda_irq EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8f404f48 dvb_unregister_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa16429fc dvb_device_get EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa59b5c3f dvb_register_adapter -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8ac9324 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa75fbaa dvb_dmxdev_init EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb59f422d dvb_frontend_reinitialise -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbdfbaedd dvb_register_device EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb6b7141 dvb_unregister_frontend -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbb1525c dvb_generic_release -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0aed359 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb4edd74 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe0b19da4 dvb_frontend_detach EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1852f2c dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe6e1db02 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7cf7229 dvb_generic_open EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed3eaf4b dvb_ca_en50221_frda_irq -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee6b9ad7 dvb_frontend_resume -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf10762c6 dvb_ca_en50221_init -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf9bb5a32 dvb_generic_ioctl -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfa265db0 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf29f7d13 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf2c7a99d dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf35cd7e2 dvb_ca_en50221_release EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free -EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfca20118 dvb_remove_device -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5e585c85 au8522_sleep -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9044303e au8522_get_state -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa449cbd0 au8522_init -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb11a70c4 au8522_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc153ca6a au8522_writereg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc4dcd7bc au8522_analog_i2c_gate_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd0031961 au8522_readreg -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe2544c3d au8522_led_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xee501401 au8522_release_state -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x428a2ab2 cx24113_agc_callback -EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x68650f6b cx24123_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa2931276 dib0070_get_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xc5ee0f52 dib0070_set_rf_output -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xec7bf257 dib0070_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf425ff88 dib0070_ctrl_agc_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1c848ac9 dib0090_update_tuning_table_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3abe1137 dib0090_pwm_gain_reset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x603525fb dib0090_get_wbd_offset -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64ccb92f dib0090_get_wbd_target -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c3b3c3a dib0090_dcc_freq -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9495c88d dib0090_update_rframp_7090 -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xab0cb608 dib0090_set_switch -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb9d3f203 dib0090_set_dc_servo -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc45734a6 dib0090_get_current_gain -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd57bc731 dib0090_gain_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdade1b23 dib0090_set_vga -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdc1f7ad6 dib0090_get_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfdfdce2c dib0090_set_tune_state -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4a6babf9 dib3000mc_set_config -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa436229a dib3000mc_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd8a2540a dib3000mc_pid_control -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xde279a9a dib3000mc_pid_parse -EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfef62e67 dib3000mc_get_tuner_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x05d143cf dib7000m_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x548c33cc dib7000m_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7f4d7085 dib7000m_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x20506905 dib9000_set_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x21550afd dib9000_fw_set_component_bus_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x27bae2e1 dib9000_get_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x297a55ed dib9000_set_slave_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x37651282 dib9000_set_gpio -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x38790edb dib9000_get_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x4b5f9ba3 dib9000_fw_pid_filter -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xac620fe1 dib9000_i2c_enumeration -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc52a509b dib9000_firmware_post_pll_init -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe601d4bd dib9000_fw_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfc5040a8 dib9000_get_tuner_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfd58a0b8 dib9000_get_component_bus_interface -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x49369b40 dibx000_i2c_set_speed -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x695e10f6 dibx000_init_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa67d451c dibx000_reset_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc705620b dibx000_get_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe63963bc dibx000_exit_i2c_master -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x133eb871 dvb_dummy_fe_ofdm_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x18e1fb8f dvb_dummy_fe_qam_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xb8f09c19 dvb_dummy_fe_qpsk_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x9bc0b3c0 lgs8gl5_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x06aa6f21 lnbh29_attach -EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x4ae1f019 m88ds3103_get_agc_pwm -EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7f8ae2f0 s5h1420_get_tuner_i2c_adapter -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3280e6dd zd1301_demod_get_dvb_frontend -EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x90b3a26f zd1301_demod_get_i2c_adapter -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x270a346b flexcop_dma_config_timer -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x354b8c1a flexcop_dma_control_timer_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4258e45b flexcop_dma_config -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5945bbb9 flexcop_dma_xfer_control -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6615cafc flexcop_dma_control_size_irq -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb6fc57f1 flexcop_dma_allocate -EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf5f526de flexcop_dma_free -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x071567e4 bt878_start -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7e72a609 bt878 -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb33946c5 bt878_stop -EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb669f587 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x049f0542 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x074c115f au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1ac08d7b au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3f7ff654 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x53cfa8e2 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6198fdbe au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7159a23a au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8df2cdec au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfd5d860a au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xfef7482d cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xeb173c0d cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x13ce9aac dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1eee70e9 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x22056a76 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x500690c8 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0cfe8edd dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x14ee597a dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x42b55d73 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x45877632 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5765b66c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x60621849 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6906a5ae dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6ff367fd dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x86c373a8 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaa1ba9c4 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcaa41f37 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd8b1dbb0 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdc484764 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0809912c dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x183584fc dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x501d6aea dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x84f46514 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe88088c1 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x117147a2 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa96de57b dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbb65b130 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1a5115f6 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x30214143 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x40c32d99 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x79573204 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7b86f573 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8134006e dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8887fdf0 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b622909 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb8bcede9 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd27c9fed dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe7314367 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf5eb695c dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0791b887 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4e274444 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6b2e3630 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x90583c11 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd01c1ab1 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3920de8d dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x76b5a25b dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x92eefae5 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x459e17a6 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x62bf798d lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x40bb8dc1 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfcf8d196 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x16ddafee zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xc9b7803a zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2309ab3b flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x29d75da7 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x87870bdb flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9b4010fd flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbb530b20 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd4d94d3d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf3e26201 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x541c393f bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x96de5b61 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc310ab1d bt878_device_control EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd978cc2f bt878_start EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x14763644 bttv_sub_unregister -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1cfc0b8f bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x26878599 bttv_get_pcidev EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9f106e6f bttv_sub_register EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2f5ffb6e dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xccf14b34 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xe35a0f05 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0b14c4d3 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3c55f4e1 dst_error_bailout EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6bfa399c dst_pio_disable -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7df79ad9 dst_error_recovery -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x843d878c read_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x87ce205b write_dst -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb37504ed dst_error_bailout -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcb30a840 rdc_reset_state -EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xccd4fd11 dst_wait_dst_ready -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1fcf4101 cx18_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2195045b cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4410584c rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa07f0b62 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe4dac990 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf2d76ad5 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfdb6c6f8 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfe45612f read_dst EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x315cd590 cx18_release_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x60d431dc cx18_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd764f573 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x6a7d65ba cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x80b73127 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x94718de9 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa6eb6021 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbae21978 cx18_release_stream EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc 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 0x0ec4e305 cx25821_sram_channel_setup_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x32e55605 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1f25a75b cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2841b067 cx25821_riscmem_alloc EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5668b653 cx25821_risc_databuffer_audio -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5e326b08 cx25821_riscmem_alloc -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdc50c12d cx25821_set_gpiopin_direction -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xddad60fb cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4b33cf23 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x87b40859 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb7422865 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb7f81629 cx25821_set_gpiopin_direction EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels -EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6d2ae45 cx25821_dev_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x71994394 vp3054_i2c_probe -EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x728a1e56 vp3054_i2c_remove -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x16646697 cx88_video_mux -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x26631f54 cx88_enum_input -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3b13a7c4 cx88_set_freq -EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4e99b1e0 cx88_querycap -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x24d00b08 cx8802_buf_queue -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x31b3f12d cx8802_register_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x32bded33 cx8802_cancel_buffers -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4f7ff4e7 cx8802_get_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x88b6cda0 cx8802_buf_prepare -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc18325f1 cx8802_unregister_driver -EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdf9e9976 cx8802_start_dma -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x000e9769 cx88_sram_channel_setup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x06b591ea cx88_set_scale -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1d63b0ac cx88_wakeup -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2645e6a7 cx88_dsp_detect_stereo_sap -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44979853 cx88_risc_databuffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x486f432a cx88_core_get -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f503600 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfbe85356 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x39ce2619 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x3add7bdb vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x43f7bb7e cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x56a533ac cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x841efef1 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9b1b23e4 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x616567ea cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6759ec26 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7f8fe2ef cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8fbf3633 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9d15d1c7 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc4c19756 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd0ede7de cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x012fc4a5 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0299a5dc cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x100ad635 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1aad7f9a cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25a8bcdb cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x361d31c1 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x47c5ca01 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5a7d48e2 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5d712e3f cx88_risc_buffer EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x601e4c8c cx88_reset EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6e5874cd cx88_risc_buffer -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7d176ae0 cx88_set_tvaudio -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7ea10b99 cx88_ir_stop -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fb3a30e cx88_set_tvnorm -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x864347e5 cx88_reset -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8abae3b6 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63a3fda4 cx88_core_get EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb6207f43 cx88_newstation -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xba52ac93 cx88_sram_channel_dump -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe822267 cx88_set_stereo -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc05bab7e cx88_vdev_init -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd0403aa8 cx88_shutdown -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe0e80790 cx88_ir_start -EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe98ba835 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9cd0a9d5 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac26c135 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xca18d106 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd5e6c39c cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7a55ec2 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd8fa81c4 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xea8f167b cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf0c7180d cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfeb6a8e4 cx88_wakeup EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2500d510 ivtv_api -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x43898807 ivtv_init_on_first_open -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4ad85e0c ivtv_udma_unmap -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4d1397c9 ivtv_vapi -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71d40bec ivtv_release_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x77741513 ivtv_clear_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7978fe23 ivtv_udma_prepare -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8a4a1e18 ivtv_firmware_check -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8fdf98c4 ivtv_ext_init -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x981f0abc ivtv_set_irq_mask -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa5f92ca0 ivtv_udma_alloc -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb1c9f41a ivtv_reset_ir_gpio -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb2e6a119 ivtv_udma_setup -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbfb9d930 ivtv_claim_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcfae8859 ivtv_stop_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe2850122 ivtv_start_v4l2_encode_stream -EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf645bd40 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2142fdb9 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x26a927f9 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x27fe005b ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x49abce88 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x638d7aec ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x77bda256 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x85fdde4b ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x887e9606 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8cac0840 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9758eaf3 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa00e2428 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xab957588 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb213f777 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf0ca86f ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc9c23856 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd3fbf6aa ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfe331ddb 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 0x3d6706a8 saa7134_dmasound_init -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x42c37c38 saa7134_ts_unregister -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4c90ec00 saa7134_pgtable_build -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6b9464b3 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2267b205 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4416fb44 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4732e4e4 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x588279ea saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x629ba5a2 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x69a1823e saa7134_tvaudio_setmute EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x78daa070 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7507fdad saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7843dddd saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x84ac5b9e saa7134_dmasound_init EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9224aed5 saa7134_pgtable_free -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9bacef33 saa7134_dmasound_exit -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa335a83c saa7134_pgtable_alloc -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc18880eb saa7134_set_dmabits -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd06adf08 saa7134_tvaudio_setmute -EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd482c57a saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd9239e48 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf824452d saa_dsp_writel EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name -EXPORT_SYMBOL drivers/media/radio/tea575x 0x14e9fa3b snd_tea575x_exit -EXPORT_SYMBOL drivers/media/radio/tea575x 0x1ae75fd8 snd_tea575x_s_hw_freq_seek -EXPORT_SYMBOL drivers/media/radio/tea575x 0x43f99f6b snd_tea575x_set_freq -EXPORT_SYMBOL drivers/media/radio/tea575x 0x514a9b35 snd_tea575x_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xb967de31 snd_tea575x_hw_init -EXPORT_SYMBOL drivers/media/radio/tea575x 0xd8d5ffce snd_tea575x_g_tuner -EXPORT_SYMBOL drivers/media/radio/tea575x 0xf1dd3ac2 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x03721ac7 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xaefc3ecd snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbcedde3a snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc3ca3e2d snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd5a6135e snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf9ec5b9d snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfe9edfa7 snd_tea575x_s_hw_freq_seek EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd -EXPORT_SYMBOL drivers/media/rc/rc-core 0x685a46d8 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x4759f2b1 ir_raw_handler_unregister EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xcdad70d2 ir_raw_handler_register EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester -EXPORT_SYMBOL drivers/media/rc/rc-core 0xe2aec4bb ir_raw_handler_register -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa119b632 fc0013_rc_cal_reset -EXPORT_SYMBOL drivers/media/tuners/fc0013 0xcc5ea72e fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1d64d4ad fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x968d58a0 fc0013_rc_cal_add EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x753db86c cx231xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xddcf46cc cx231xx_register_extension -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02419c82 dvb_usbv2_disconnect -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3d9ee74f dvb_usbv2_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x586cd1f9 dvb_usbv2_suspend -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7582cd3f dvb_usbv2_generic_rw_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x997f23ad dvb_usbv2_reset_resume -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9e76bcd8 dvb_usbv2_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa741e9e6 dvb_usbv2_generic_write_locked -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeee1841a dvb_usbv2_generic_write -EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf55773f7 dvb_usbv2_probe -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x56876d7d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x216f1b99 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x899de539 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x17fca76b dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1c73172a dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x517f5405 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5e5cca97 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x73e07c4f dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xba8b25e2 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd701b8ad dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe778a757 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe8dec360 dvb_usbv2_disconnect EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaf5adb4a dvb_usb_device_init -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc0bd1d06 dvb_usb_nec_rc_key_to_event -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe3a73fa1 usb_cypress_load_firmware -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe49172bf dvb_usb_generic_rw -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf8dcee45 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa7fd01d7 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xaf9e2918 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbc18329f dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xbd05f5ec dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc4e26c05 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfad4f0e0 usb_cypress_load_firmware EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x8823b924 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x8263b5b0 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 0x096d6da0 dibusb2_0_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x09a9922f dibusb_rc_query -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x14319637 dibusb_power_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x42cdb98c dibusb2_0_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4947335d dibusb_read_eeprom_byte -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4dfd6e3a dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44bfc342 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4abdc1f2 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x63354b29 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x691f90ea dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x71a44eae dibusb_rc_query EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc7e63b4a dibusb_pid_filter_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd073fddc dibusb_pid_filter -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xea4668e2 dibusb_streaming_ctrl -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xc26243fc dibusb_dib3000mc_tuner_attach -EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xe00db4de dibusb_dib3000mc_frontend_attach -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x6efc8fb8 em28xx_unregister_extension -EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd1d66128 em28xx_register_extension -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5717e0b6 go7007_read_interrupt -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5f321e61 go7007_read_addr -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7952047d go7007_register_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7b2f2868 go7007_snd_init -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x949e8887 go7007_snd_remove -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb12dfab1 go7007_boot_encoder -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xba05ee78 go7007_update_board -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcd713dc5 go7007_parse_video_stream -EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdcbc707b go7007_alloc -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x09c06b3d gspca_resume -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x20880778 gspca_suspend -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x548ac28d gspca_dev_probe -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x889e628d gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa4679545 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb93b6ed2 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbae68ae5 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec34122c dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x450d8da8 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x67627a8a dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7da3ebe4 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xc2890574 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x02f3c370 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0de9f956 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x40f2c2b3 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4b27a5cd go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x68fb977c go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x73c41728 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9c75b7c7 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xab96b6d2 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbd6cdfd3 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2b742426 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4ec0c9c6 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6497c1ab gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x735ec025 gspca_dev_probe2 EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9fa66376 gspca_dev_probe2 -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa45f9624 gspca_disconnect -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb3c7d3fb gspca_coarse_grained_expo_autogain -EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb7f237c2 gspca_frame_add -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd79e0e53 ttusbdecfe_dvbt_attach -EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xfc590f99 ttusbdecfe_dvbs_attach -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x07064c5e v4l2_async_subdev_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x288ee713 v4l2_async_nf_unregister -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2ed8d1b4 v4l2_async_unregister_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x48a3f5fc v4l2_async_nf_register -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4c73e1ed v4l2_async_nf_init -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbbc01b09 v4l2_async_register_subdev -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x08c442a0 v4l2_m2m_buf_done_and_job_finish -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2e439e32 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb87261de gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc2bae77b gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe35f34df gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe41ec03e gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xdc2391ce ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf7e49004 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6f1070c0 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x6f8d0db1 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7d289730 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8ea5c8f0 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xea58ce0e v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xfa08ba7d v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x3545c1fb 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 0x5352d022 v4l2_m2m_resume -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb6f92251 v4l2_m2m_get_vq -EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc1c150da v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x78c23244 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x942ba60b v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xdf50ed67 v4l2_m2m_buf_done_and_job_finish EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00722c67 video_devdata -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00ed4374 v4l2_g_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02486987 __v4l2_ctrl_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x040c3081 v4l2_ctrl_g_ctrl_int64 EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0643c12f v4l2_ctrl_notify EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10ce5f79 v4l2_ctrl_type_op_log +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c11d4e6 v4l2_s_ext_ctrls EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13b7d647 __video_register_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14402b2a v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x142614c4 __v4l2_ctrl_s_ctrl_string EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1688bd1d v4l2_s_ext_ctrls -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c70301b v4l2_ctrl_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d26e8fe v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e38138f v4l2_ctrl_handler_setup EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29928322 video_device_release -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ce9fb73 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x261e058a __v4l2_ctrl_modify_dimensions EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33869e5a v4l2_ctrl_radio_filter EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35ff98bf v4l2_format_info -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x364fbca5 v4l2_ctrl_activate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3aa76c7d v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37ef316c __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38f5957d video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3933ecea v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39392804 v4l2_ctrl_new_int_menu EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b86cd9a v4l2_ctrl_fill EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x455dd509 v4l2_s_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x463cc485 v4l2_ctrl_request_complete -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b2a4c59 v4l2_subdev_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c2c8417 v4l2_queryctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5fe4426f v4l2_ctrl_new_std_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6760ad90 v4l2_query_ext_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69e9b0ab v4l2_ctrl_handler_free -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ed4f941 v4l2_ctrl_new_std_compound -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x74e3c548 __v4l2_ctrl_modify_dimensions -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8104e077 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40f5ea59 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b0f91ba v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60a71c49 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6249795b video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6401f37f v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6544b0d4 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67aa4a36 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6bbba2d0 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6de9b307 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7487e404 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7985656c v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7da5a8ac v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f2752ef video_device_release_empty EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x876aca47 v4l2_ctrl_type_op_equal -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89a8aa15 v4l2_ctrl_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89c71dd3 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x814db99f v4l2_ctrl_type_op_validate EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c36ee7c v4l2_ctrl_new_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1cae1d1 v4l2_ctrl_type_op_validate -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6fe3b39 v4l2_ctrl_new_fwnode_properties -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa81d1ac5 v4l2_ctrl_subdev_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafe74d4e __v4l2_ctrl_s_ctrl_int64 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0d41005 video_device_alloc -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1022b6e v4l2_ctrl_new_std -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5f670fe v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bbde73d v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cdb66da v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ce56a1a __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8dfad2fd v4l2_ctrl_type_op_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9050b4d4 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x969e44cc v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a4015a5 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b37570b v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c5f76d3 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa541c275 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa8129068 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad74e6cc __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb019b24d v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb05053c0 v4l2_ctrl_type_op_equal EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8861a3a video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc2c0cb0 video_device_release EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdc9f860 v4l2_ctrl_request_setup -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7eca3cb v4l2_querymenu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9031ab9 v4l2_ctrl_find -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9089804 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc755220c v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca33d44f v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcaa802df v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb7fa51e v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd1f0e23 v4l2_ctrl_auto_cluster EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd045d9f1 video_ioctl2 -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd13e405b __v4l2_ctrl_s_ctrl_compound EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd73f9066 v4l2_subdev_call_wrappers -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda0dcaf6 __v4l2_ctrl_grab -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2557a8b __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd403163d v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6787100 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9f9a00d v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdaaa2dfe v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbbc8921 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde368627 v4l2_ctrl_radio_filter EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe520cfb1 v4l2_g_ctrl -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6191710 v4l2_ctrl_new_std_menu_items -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6c10fce v4l2_ctrl_auto_cluster -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea99dd7d video_device_release_empty -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec7e03d1 v4l2_ctrl_subdev_subscribe_event -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed6dcd84 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9afdfec __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb03262d v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefe0a0da v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1e4e91c v4l2_ctrl_handler_log_status EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6a0f3d7 v4l2_ctrl_handler_log_status -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7f7f6c9 video_unregister_device -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf808f589 v4l2_ctrl_type_op_init -EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc6c4419 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf73d7be6 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd143326 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd7e4704 v4l2_ctrl_type_op_log EXPORT_SYMBOL drivers/memory/omap-gpmc 0x389acf0c gpmc_configure EXPORT_SYMBOL drivers/memory/omap-gpmc 0x4f89c9de gpmc_cs_free EXPORT_SYMBOL drivers/memory/omap-gpmc 0xa964dd13 gpmc_cs_request -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x1181e596 rpcif_manual_xfer -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x4bdc2234 rpcif_sw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa3727440 rpcif_hw_init -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xb2977f8f rpcif_prepare -EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xd6750469 rpcif_dirmap_read -EXPORT_SYMBOL drivers/memstick/core/memstick 0x0c4a10ad memstick_alloc_host +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x34816903 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x34c4b6b3 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x4701395b rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x5a16c8b1 rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x8e2298cd rpcif_dirmap_read EXPORT_SYMBOL drivers/memstick/core/memstick 0x199305e6 memstick_init_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x1ac30cc2 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x245abf8b memstick_detect_change EXPORT_SYMBOL drivers/memstick/core/memstick 0x287277cb memstick_init_req_sg -EXPORT_SYMBOL drivers/memstick/core/memstick 0x39371f1a memstick_new_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x3c5cdf30 memstick_unregister_driver -EXPORT_SYMBOL drivers/memstick/core/memstick 0x4c68e8d0 memstick_next_req -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5406fde9 memstick_remove_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x5ebf9f72 memstick_resume_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0x83964f07 memstick_detect_change -EXPORT_SYMBOL drivers/memstick/core/memstick 0xb29fb172 memstick_set_rw_addr -EXPORT_SYMBOL drivers/memstick/core/memstick 0xd041fae6 memstick_free_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xdae16bbb memstick_suspend_host -EXPORT_SYMBOL drivers/memstick/core/memstick 0xea54f3f9 memstick_register_driver -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0536f362 mpt_verify_adapter -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0645aabd mpt_raid_phys_disk_pg1 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x093d815d mpt_Soft_Hard_ResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11cc7dd6 mpt_clear_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15b7991b mpt_alloc_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f511807 mpt_raid_phys_disk_get_num_paths -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35cb0a53 mptbase_sas_persist_operation -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3c0d9569 mpt_get_msg_frame -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f0f1c05 mpt_resume -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a3a38c9 mpt_findImVolumes +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3316d14f memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x778d0a6a memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7d2d9b37 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7e18755a memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8cfa4be0 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9efbef96 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa8105993 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7f0b827 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd0ffc4e memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf3ca0d65 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf9736ffe memstick_resume_host +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x009743e1 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05669dc7 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x11cb473b mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c4e4472 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b69cc86 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35de4062 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x438f3a2f mpt_detach EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53f0829b mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5719e67a mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b6106fe mpt_clear_taskmgmt_in_progress_flag EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71338329 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x677dc39e mpt_raid_phys_disk_pg0 EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x77926e2f mpt_print_ioc_summary -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x78a42e56 mpt_config -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7f733b4a mpt_free_fw_memory -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x845d61e8 mpt_event_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84877727 mpt_detach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f4cd86a mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76066acc mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76a0ee41 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8592264e mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x956bea7c mpt_free_msg_frame EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa7d9db7c mpt_send_handshake_request -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae74ca5d mpt_set_taskmgmt_in_progress_flag -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb25936a1 mpt_raid_phys_disk_pg0 -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbbbfdb39 mpt_GetIocState -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcdc1e1ed mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a2efa5b mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d2b4c28 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9fbcbfd1 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa37220b7 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaacba42c mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaba44a03 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaecc1e16 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb2460650 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb58a1f0e mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb994ff03 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9e832e3 mpt_raid_phys_disk_get_num_paths EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe0bfb0ee mpt_register -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe109312b mpt_halt_firmware -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe13ef492 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4d9b175 mpt_set_taskmgmt_in_progress_flag EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf1395415 mpt_attach -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf27fb6d1 mpt_suspend -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4011dd0 mpt_HardResetHandler -EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6af99a4 mpt_reset_register -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c230cd3 mptscsih_bus_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1141e31c mptscsih_abort -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f8f7416 mptscsih_host_attr_groups -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31f9b47f mptscsih_slave_destroy -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35953245 mptscsih_host_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c111aba mptscsih_taskmgmt_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3ddd81d0 mptscsih_raid_id_to_num -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x43f39801 mptscsih_IssueTaskMgmt -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x454f90d2 mptscsih_io_done -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e85212a mptscsih_resume -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59c28fc1 mptscsih_is_phys_disk -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e7c26db mptscsih_change_queue_depth -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b3eef27 mptscsih_shutdown -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d25e933 mptscsih_suspend -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71b8fad5 mptscsih_qcmd -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73e45c68 mptscsih_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7efea2fd mptscsih_ioc_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x833898f8 mptscsih_dev_reset -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c343101 mptscsih_show_info -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa13d42fa mptscsih_remove -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa55ccf7f mptscsih_taskmgmt_response_code -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7037ac4 mptscsih_event_process -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbcf94b4e mptscsih_flush_running_cmds -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc74eaeba mptscsih_slave_configure -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd45fcc5 mptscsih_bios_param -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd181f35c mptscsih_scandv_complete -EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd87b9b3b mptscsih_get_scsi_lookup -EXPORT_SYMBOL drivers/mfd/axp20x 0x303a76e8 axp20x_device_probe -EXPORT_SYMBOL drivers/mfd/axp20x 0xbe09419f axp20x_match_device -EXPORT_SYMBOL drivers/mfd/axp20x 0xf7506c3b axp20x_device_remove -EXPORT_SYMBOL drivers/mfd/dln2 0x7b09176f dln2_unregister_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x86103b9f dln2_register_event_cb -EXPORT_SYMBOL drivers/mfd/dln2 0x9df3f31b dln2_transfer -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x00516d2b mc13xxx_reg_rmw -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0ac60445 mc13xxx_irq_unmask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1790c319 mc13xxx_lock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x18a8623e mc13xxx_unlock -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1ce09192 mc13xxx_reg_write -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x55fb7519 mc13xxx_get_flags -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x914625a8 mc13xxx_irq_mask -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa0cc2a1c mc13xxx_irq_status -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd6e7a5c9 mc13xxx_irq_request -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe2078c0c mc13xxx_irq_free -EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe93a1cc8 mc13xxx_reg_read -EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0x8f4033d8 qcom_pmic_get +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xebfc2623 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf807510d mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06d20aa9 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08478731 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x085fc171 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a352563 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b84f787 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0d46d2c4 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1bb0e566 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2206dbf0 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ad040ec mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x339f7bc0 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3902aa03 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ac1f1a8 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5430edc5 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x662b1360 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66350ff2 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x689bf369 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x898d6c22 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94ab714d mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f41aff3 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa751184e mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac36a22f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb300727 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd083ad39 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd137bd1a mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf09cbfc mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb5ea1e2 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd33ed42 mptscsih_slave_configure +EXPORT_SYMBOL drivers/mfd/axp20x 0x3eb8036b axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x77e12ecf axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xb08b341c axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x0c7e5fd5 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe88e3c2c dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xfbac98cd dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x14e80758 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x380d6afa mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5683b158 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x59bb107f mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x64269c3c mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7d179269 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e2471a5 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x971c096b mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd290d6b6 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe5a45048 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf26a1455 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/qcom-spmi-pmic 0xd9c0ef15 qcom_pmic_get EXPORT_SYMBOL drivers/mfd/qcom_rpm 0xd520f912 qcom_rpm_write EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 @@ -2500,218 +2500,218 @@ 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 0x2e89c6ea wm8994_base_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0x532c7406 wm8994_irq_exit -EXPORT_SYMBOL drivers/mfd/wm8994 0x750116bf wm1811_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xb3753619 wm8994_irq_init -EXPORT_SYMBOL drivers/mfd/wm8994 0xd859af0b wm8994_regmap_config -EXPORT_SYMBOL drivers/mfd/wm8994 0xea631492 wm8958_regmap_config -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x1b36a1f5 ad_dpot_remove -EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe0df1841 ad_dpot_probe +EXPORT_SYMBOL drivers/mfd/wm8994 0x07e150bf wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x4db086be wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x53788c87 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7f8a3d27 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xd2d28493 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe7b812a0 wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x16854f73 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5eae2d4a ad_dpot_remove EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init -EXPORT_SYMBOL drivers/misc/c2port/core 0x583caed5 c2port_device_register -EXPORT_SYMBOL drivers/misc/c2port/core 0xc38a5029 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x23883311 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x3c7a6d60 c2port_device_unregister EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work -EXPORT_SYMBOL drivers/misc/tifm_core 0x1f14b322 tifm_alloc_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x6908a337 tifm_unmap_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0x6ddb6514 tifm_has_ms_pif -EXPORT_SYMBOL drivers/misc/tifm_core 0x70441bfb tifm_add_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0x71acc65f tifm_free_device -EXPORT_SYMBOL drivers/misc/tifm_core 0x8999d364 tifm_eject -EXPORT_SYMBOL drivers/misc/tifm_core 0x9dc7629a tifm_alloc_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xaaeef53c tifm_map_sg -EXPORT_SYMBOL drivers/misc/tifm_core 0xaf959048 tifm_register_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xb5f8c133 tifm_free_adapter -EXPORT_SYMBOL drivers/misc/tifm_core 0xb982f288 tifm_unregister_driver -EXPORT_SYMBOL drivers/misc/tifm_core 0xc01230ea tifm_remove_adapter -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0813d39f cqhci_deactivate -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0f6619d2 cqhci_resume -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4b8a747b cqhci_irq -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x73d7cb85 cqhci_init -EXPORT_SYMBOL drivers/mmc/host/cqhci 0x84340465 cqhci_pltfm_init -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x405efe4a dw_mci_runtime_resume -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x588c0d7a dw_mci_probe -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x972d6f21 dw_mci_runtime_suspend -EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xa153bd8c dw_mci_remove -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x21367e4e mmc_spi_put_pdata -EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x3a58b979 mmc_spi_get_pdata -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x090a7146 cfi_read_pri -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1f6bc07a cfi_fixup -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x595a2db4 cfi_varsize_frob -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5c79ab93 cfi_merge_status -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7f2c49de cfi_build_cmd -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb335ecc7 cfi_build_cmd_addr -EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xde3c548a cfi_send_gen_cmd +EXPORT_SYMBOL drivers/misc/tifm_core 0x29a021eb tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x36a4f794 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x428396a7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x5c37c663 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x72f3955c tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9fd19068 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa6c120d7 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xb74f4f94 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc2a5be4d tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe4ea6c60 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf2fd0ea0 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf3ea0b3f tifm_alloc_device +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0592fd4e cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x32da292f cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x61f5d4d8 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x66801e95 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x98d26e51 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x59097bdb dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x71da7620 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x8805c6d6 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x8e7aeab0 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x78c727e4 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xbbc65cfd mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x21ae1f77 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5a7c88fd cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x620f2e83 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7a23cbb9 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8d4369d7 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x964879ee cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xae168b9a cfi_build_cmd EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x588d9d78 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa60a70fb map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdbde2b3c do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe29e042a unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x4c189a03 mtd_do_chip_probe -EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x898a66a1 lpddr_cmdset -EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x0449fbbc simple_map_init -EXPORT_SYMBOL drivers/mtd/mtd 0x7290dee4 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x95e8d23c mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x71e2bf62 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x83afc9ed do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xcbf12630 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe69e0175 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x7fc0d4af mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x32166656 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xdc84151e simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x216f5059 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x6e99f53b mtd_concat_destroy EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable -EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xbd65ce82 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xa91c8430 of_mtk_ecc_get EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x182da25a nand_ecc_sw_bch_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x21dce913 nand_ecc_register_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x27a305f7 nand_ecc_sw_bch_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x490d6db2 nand_ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x61510895 nand_ecc_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x64ff83ae nand_ecc_is_strong_enough -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6a1ca209 nand_ecc_sw_bch_calculate -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82880247 nand_ecc_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82a97d39 nand_ecc_sw_bch_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x856fe552 nand_ecc_finish_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x902ed4fc nand_ecc_unregister_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa3280103 nand_ecc_get_sw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xae32ec6f nand_ecc_sw_hamming_get_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb4f2cf91 nand_ecc_sw_hamming_cleanup_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb944f16b nand_ecc_put_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbc4f12f3 of_get_nand_ecc_user_config -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcd5d5728 nand_ecc_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcf03f466 nand_ecc_prepare_io_req -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd764f11b nand_ecc_get_on_host_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd9786b07 nand_ecc_sw_hamming_init_ctx -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xda2dcf92 nand_ecc_get_on_die_hw_engine -EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdda4aca4 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x06281225 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0df39cc8 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0eebc734 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1b77ba4f nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2187e617 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2539dd9e nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x300da8fe of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x35064b66 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x38b0759c nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x411fed25 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x445b14ac nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x479f8dfc nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4941020e nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x553ad10a nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x579d31e1 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7a5da874 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9b4b7995 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xabe1bffa nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbb3295f8 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcbaf959b nand_ecc_register_on_host_hw_engine EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe8bd39a3 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xed13b298 nand_ecc_cleanup_ctx EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x7c5a03c3 flexonenand_region -EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xc59a332b onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x061cb4c6 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xa6e81153 flexonenand_region EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x51f04159 denali_remove -EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xcee6e6c6 denali_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2c8b6f9f rawnand_sw_bch_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x364130e1 rawnand_sw_bch_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x573f0105 rawnand_dt_parse_gpio_cs -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7fd4c011 nand_get_set_features_notsupp -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ddfcf1b nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x41e8b066 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xdefe17f9 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0a76ebc5 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0ed605b5 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x141c5acb rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1731fef3 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1f465d72 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x56ccd04f nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5e4fed4f rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6e337d69 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x710fc2cd nand_read_page_raw EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9316bdc0 rawnand_sw_bch_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9a026d4b nand_write_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa2fdc06d nand_read_oob_std -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa31b1305 nand_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xba61b4c9 nand_monolithic_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc931b714 nand_scan_with_ids -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd8623a0d nand_monolithic_read_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xda68ae7c rawnand_sw_hamming_correct -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe133b891 rawnand_sw_hamming_init -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe1d10b73 nand_write_page_raw -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe7a96438 rawnand_sw_hamming_cleanup -EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf48f61df rawnand_sw_hamming_calculate -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x2ec92644 elm_decode_bch_error_page -EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x8a56fe14 elm_config -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x135b4bcb arcnet_timeout -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x17aaaa6b alloc_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x43640099 arcnet_close -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x44c377d6 free_arcdev -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x61b67719 arcnet_unregister_proto +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9d05230f nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa192290f rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa2395f6f nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd46d9c0a nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd9a48dc5 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xda8b7211 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdf3e516c rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf989e0d5 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x29ff6512 elm_config +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xcfba479e elm_decode_bch_error_page +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x142f0c71 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x28a8b43d arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x41e15041 arcnet_timeout EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76d3c99a arc_proto_default -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x77bde298 arc_proto_map -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x953fed34 arc_raw_proto -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc2ef19fb arcnet_send_packet -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdb17fc53 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6cdcb29e arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x83ebc838 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x844cbf77 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x911b3219 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xda8117cb arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe8124980 arcnet_send_packet EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt -EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xef800bd3 arcnet_open -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1ec195eb com20020_found -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2370f775 com20020_netdev_ops -EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2979dda8 com20020_check -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x0518bcfc ctucan_probe_common -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x72d71eae ctucan_resume -EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xca1f56fe ctucan_suspend -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x64b5a8fe can_eth_ioctl_hwts -EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x76b1f45c can_ethtool_op_get_ts_info_hwts -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x085666b3 b53_disable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x12cf1ded b53_br_join -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e999544 b53_enable_port -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x339727b0 b53_vlan_filtering -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37e29ecf b53_br_fast_age -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x41cea733 b53_get_sset_count -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4328aadf b53_mdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x457a79cc b53_br_set_stp_state -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4fc9c9b4 b53_setup_devlink_resources -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50f002eb b53_get_tag_protocol -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57a50f77 b53_mdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x597bbaf7 b53_br_flags_pre -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5cd7ceaf b53_eee_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x71bc23ba b53_phylink_mac_link_down -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x757a7472 b53_switch_detect -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75aa21be b53_port_event -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x77f2015a b53_phylink_mac_link_up -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x83e22754 b53_set_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x84a9006a b53_switch_register -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8a87f449 b53_imp_vlan_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa98902bf b53_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9afded7 b53_br_leave -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaca7d954 b53_mirror_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1aa0b4c b53_get_strings -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbffea787 b53_vlan_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc2fc658f b53_vlan_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6c1a265 b53_eee_enable_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc826742f b53_get_ethtool_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd06a31d5 b53_phylink_mac_config -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd6b387f9 b53_get_ethtool_phy_stats -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc74c762 b53_fdb_dump -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde2650b9 b53_mirror_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf5650cb7 b53_brcm_hdr_setup -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf7a6a7bf b53_configure_vlan -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf922817f b53_fdb_del -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf9c4d1be b53_br_flags -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe103744 b53_get_mac_eee -EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xffffcf76 b53_fdb_add -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x02a40dc7 b53_serdes_phylink_get_caps -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x0e3276e5 b53_serdes_link_set -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x4d4bc9f0 b53_serdes_init -EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc360f038 b53_serdes_phylink_mac_select_pcs -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4b4f0189 lan9303_shutdown -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x89623c76 lan9303_probe +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf0d0d0da alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf8701a62 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x081861ef com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x2bb210e9 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6988dd21 com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x28eb9879 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x9023d029 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf7fe357e ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x09f89d54 can_ethtool_op_get_ts_info_hwts +EXPORT_SYMBOL drivers/net/can/dev/can-dev 0x639ca66d can_eth_ioctl_hwts +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x002f1af9 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x04509282 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x055da5dc b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x07d2f456 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0afe4353 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b6b0259 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x24f2c792 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2bdf2045 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2c03dc4d b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2e0cf344 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3a8156ec b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x41b36940 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x461ec969 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46a6b99b b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x58334a4d b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x66541fbc b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x685554ba b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6b66e1de b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c83c994 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7abf5d22 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d0a444d b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x859288d5 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8944ecee b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f99a2e7 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x932be553 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94ff3d06 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9625decf b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa53f3c8a b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb97ec6d b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5ea3a24 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc665fc7d b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc7da37a4 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc8ea3ff3 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd521b38a b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xde9106d3 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe9853341 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf86ecfd8 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf9dc074b b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x35ff3c63 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5fbde06a b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xcfdefaf3 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xdecd5213 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x0568c68a lan9303_shutdown EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set -EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xf20f863c lan9303_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x62fb41f0 ksz_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xb5b92412 ksz_switch_remove -EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xbee4a051 ksz_switch_register -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x06c9dc0d vsc73xx_remove -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8ee14267 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xbc28413f lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xcdd211f2 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0x3af9d6c7 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xd5fdadc7 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_switch 0xdea02984 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1060b89a vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x457eedf4 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x984826f0 vsc73xx_remove EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid -EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xdbff1709 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3aa4b1f4 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x48b0d40c xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7b53027f xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x83b7b667 xrs7003f_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x85e720a8 xrs700x_switch_register EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x8972bf7e xrs7004f_info EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb604f6db xrs700x_switch_remove EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf6d260bf xrs700x_switch_alloc -EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf7f34550 xrs700x_switch_shutdown -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x06e2f48b ei_close +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xfaf1c000 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x042939ca ei_close EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x214ef8f7 ei_netdev_ops -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x24678ab1 ei_start_xmit -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x421e6773 ei_open -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x521bb2ca ei_poll -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x62acc2e5 ei_get_stats -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x786db565 __alloc_ei_netdev -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbcf5979c NS8390_init -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc440bbda ei_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xefd3b6aa ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x40d5aa32 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x50d07f8b ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x60670fa4 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x63fbd27d ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xab00e1f3 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcbbcdf56 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd465e687 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe6350f98 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xed187beb ei_set_multicast_list EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x549aae9e bnxt_register_async_events -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x6b070dbb bnxt_register_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xbdad6f26 bnxt_unregister_dev -EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xfa483afe bnxt_send_msg -EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x58c74be1 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x6803a1d0 bnxt_send_msg +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xa817d89f bnxt_register_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xadc0ee45 bnxt_unregister_dev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xbf96a9e5 bnxt_register_async_events EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x05364ae5 cavium_ptp_get -EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xf0f6d190 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x94755fce cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x825d183c cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xa5dc5cf6 cavium_ptp_put EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x0d8be5fd bgx_lmac_rx_tx_enable EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x34eeb48a bgx_set_dmac_cam_filter EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0x42264715 bgx_get_lmac_count @@ -2729,393 +2729,392 @@ EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_bgx 0xff987a02 bgx_set_xcast_mode EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x13912e4b xcv_init_hw EXPORT_SYMBOL drivers/net/ethernet/cavium/thunder/thunder_xcv 0x4f739dc0 xcv_setup_link -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1c99f295 t3_l2t_send_slow -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2ca0d41c cxgb3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x48342319 dev2t3cdev -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5a0dc8c0 t3_l2e_free -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5bcd1973 cxgb3_insert_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x64e7b290 t3_register_cpl_handler -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x91a49ecc cxgb3_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb269652 cxgb3_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd522059 cxgb3_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce4f4171 t3_l2t_send_event -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdaa51d27 cxgb3_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdf0c59ff cxgb3_register_client -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe017dee0 cxgb3_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe29e7759 cxgb3_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe9947751 cxgb3_queue_tid_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf94f2254 t3_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x009a7f2f cxgb4_smt_alloc_switching -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04e479c7 cxgb4_write_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c5d5ec8 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x20ae3e9a cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2487c4a7 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2ad463c4 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3af8c0b5 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3d97b363 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x45044fd2 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ed05aa0 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67bd3e0c cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7498ddd7 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9c077470 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcbf0277c t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0571c09 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd978ee27 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe1294af5 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe8ef4e18 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0db84f2 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03a81e18 cxgb4_crypto_send EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x196fce69 cxgb4_iscsi_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23f36616 cxgb4_write_partial_sgl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x259842a3 cxgb4_get_tcp_stats -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x312c72c0 cxgb4_port_e2cchan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x345b216d cxgb4_ofld_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3509b5b1 cxgb4_clip_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x40814ab3 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15b1c4d9 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x215f3f6d cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a355a50 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a9ec8bd cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3abbfc48 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b05f2b0 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d0e0167 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x497416d7 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f9b428e cxgb4_get_srq_entry EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58c63913 t4_cleanup_clip_tbl -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ae0c93f cxgb4_pktgl_to_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ffabaac cxgb4_read_sge_timestamp -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6034b350 cxgb4_free_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x666537f3 cxgb4_port_idx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70e63340 cxgb4_sync_txq_pidx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x72773560 cxgb4_create_server6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7490f9c6 cxgb4_remove_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7834e028 cxgb4_flush_eq_cache -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7da8c992 cxgb4_create_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7f429b54 cxgb4_l2t_get -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x800eab38 cxgb4_alloc_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87fbe31b cxgb4_free_stid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c19b237 cxgb4_remove_server_filter -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90ba9a9d cxgb4_register_uld -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b3c423d cxgb4_update_root_dev_clip -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5685d8d cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x662ddf71 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6656ece9 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6a66e093 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x74f3dc95 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7584093e cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76a502f0 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x79c1af85 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b876554 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7d67258c cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x80dc1f0a cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x976abf68 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9961c319 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9bcd7e5d cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9edfa718 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa712458e cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa761a58e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa79aaa02 cxgb4_clip_get EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xab492745 cxgb4_map_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1337e87 cxgb4_immdata_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb57a9877 cxgb4_remove_tid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb90b7ad7 cxgb4_port_viid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9806910 cxgb4_inline_tx_skb -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd56bbb5 cxgb4_l2t_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcb253f08 cxgb4_l2t_send -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2d192d9 cxgb4_ring_tx_db -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd36fc574 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1aebed2 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb2ac3525 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb780d9f5 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9439255 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc30f9078 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc480200c cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7630d38 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcddddffd cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2125500 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd383ca23 cxgb4_write_partial_sgl EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6dccbcc cxgb4_select_ntuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb0498e7 cxgb4_get_srq_entry -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe513fff6 cxgb4_port_chan -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe67dac46 cxgb4_bar2_sge_qregs -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee380ab5 cxgb4_alloc_sftid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3d7403b cxgb4_check_l2t_valid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5572ee0 cxgb4_reclaim_completed_tx -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf83a55d7 cxgb4_create_server -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf84d1ed9 cxgb4_alloc_atid -EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa2ee088 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe161df8a cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe1666853 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4601894 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6022cdd cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xea8ae20f cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xee0ad766 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf58bdcb1 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff3b22ed cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff48ef77 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x01412dff cxgbi_ppm_ppod_release EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3f6a0902 cxgbi_ppm_ppods_reserve -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5a255bf5 cxgbi_ppm_init -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x643f9a4b cxgbi_ppm_ppod_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8708194c cxgbi_ppm_release -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x968a437f cxgb_find_route6 -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xac9817b9 cxgb_find_route -EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb497985b cxgbi_ppm_make_ppod_hdr -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x07e990bd vnic_dev_get_res -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x480eccad vnic_dev_get_pdev -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x59ee1f9d vnic_dev_register -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x76c8f169 enic_api_devcmd_proxy_by_index -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9e438ff0 vnic_dev_get_res_count -EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcef932d5 vnic_dev_unregister -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4c1e041a be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x78af1721 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x820387ce cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9fda7ca7 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcd92a956 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe0e0e21f cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfda11f12 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2746d2a7 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x539c9afe vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x764b268f vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7721a6e1 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8796f7f9 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf6d723da vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x27954ef7 be_roce_register_driver EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd -EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd2dc062b be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb9574cc6 be_roce_unregister_driver EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x4412391e dpaa2_phc_index -EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xf081b340 dpaa2_ptp -EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xc16df060 enetc_ierb_register_pf -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x22ffa9bf fun_dev_disable -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x4e01a473 fun_release_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xb6509d4f fun_reserve_irqs -EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xee5eeb7f fun_dev_enable -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x15544669 hnae_get_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x46ddd8aa hnae_ae_register -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x52e5a457 hnae_reinit_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5df7ac62 hnae_put_handle -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xaa75dd73 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0xdeb01641 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x2846e63d enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x15ffcd35 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x621c0f6d fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xa90beb81 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xedaef409 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x23802a37 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x2c922202 hnae_reinit_handle EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xd4025b26 hnae_ae_unregister EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xd750d6d0 hns_dsaf_roce_reset -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0513c537 hnae3_set_client_init_flag -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x13b89bd8 hnae3_unregister_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2b2255f6 hnae3_register_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x506b7157 hnae3_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x68f1bf79 hnae3_register_ae_dev -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa86987a3 hnae3_unregister_ae_algo_prepare -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xbeada614 hnae3_register_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc0e8b727 hnae3_unregister_ae_algo -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x162df041 iavf_unregister_client -EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xf61c1bbd iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe2016060 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xe3628a67 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x3d06eb2d hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x02d56adf hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1ee64e34 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2125a783 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x23af52b7 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x356b7300 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5a6c8322 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5dea4384 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x65af6a95 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x647292b3 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x8443794f iavf_register_client EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x07ddc3e8 __traceiter_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1171467d otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x07fcde95 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x206da5a4 otx2_mbox_regions_init EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x24ec38de __tracepoint_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2c72f3b3 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2670214e otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x30281512 otx2_mbox_reset EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3a2ac7ef otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4bebebb0 otx2_reply_invalid_msg -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4c4defcc __traceiter_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x58947e11 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x36fbaf12 otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3c73cf06 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5296acec otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x57210f93 otx2_reply_invalid_msg EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x65484a75 otx2_mbox_regions_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8a13d744 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6fe7d5e0 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x85e5be3c __traceiter_otx2_msg_alloc EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x999ae411 otx2_mbox_busy_poll_for_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa17de7d2 otx2_mbox_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb30932d1 otx2_mbox_destroy -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbd94c235 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x939836ec otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa1a1cda0 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb79610c8 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc448d04a otx2_mbox_check_rsp_msgs EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc619ea5d __tracepoint_otx2_msg_process EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc704095c __tracepoint_otx2_msg_interrupt -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xce4a02b7 otx2_mbox_check_rsp_msgs EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcef3985a __SCK__tp_func_otx2_msg_process -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe1c80339 __otx2_mbox_reset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe2195e6b otx2_mbox_alloc_msg_rsp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0048d363 otx2_alloc_mcam_entries -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x065defdb otx2_shutdown_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0fbb5cc8 mbox_handler_npa_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2250a087 otx2vf_set_ethtool_ops -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3e435dc0 otx2_get_mac_from_af -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x425967e6 otx2_handle_ntuple_tc_features -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5e66976f otx2_nix_config_bp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x66fb8b6d otx2_smq_flush -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6cde3257 otx2_mbox_up_handler_mcs_intr_notify -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x782b3c8a mbox_handler_msix_offset -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7895df9e otx2_mcam_flow_del -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7db22d9d otx2_select_queue -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7e32f8d2 otx2_detach_resources -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x80693e35 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xebcad1c4 __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfed3ba48 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x01992e1c otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x044a111e otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x060d4f74 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x078da31d mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x08478da7 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x090329b5 otx2_txschq_config +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1c276e64 otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x337bcdae otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x44ce4b50 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x46ab6fd2 otx2_select_queue +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4fa2e193 otx2_smq_flush +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x535cd672 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5b80f905 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5b868d0c otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5c705b07 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5f93ad96 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x61153cab otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x64d53758 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6a92f848 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6bb8c928 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x70d0045d otx2_config_hwtstamp EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x84e15aec otx2_get_maxflows -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x90a3526d otx2_setup_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x914920b4 otx2_ioctl -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x91f5d319 otx2_config_hwtstamp -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9ba53344 otx2_txschq_config -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa1beaf0d mbox_handler_nix_bp_enable -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa675f29a otx2_mbox_up_handler_cgx_link_event -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb4a05eb4 otx2_set_mac_address -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb69ac50f otx2_sq_append_skb -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xba87a750 otx2_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbb5deb41 otx2_stop -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc56a6589 otx2_tx_timeout -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd21f0c62 mbox_handler_nix_lf_alloc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd228bab9 otx2_txschq_free_one -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd4f2c145 otx2_set_real_num_queues -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd7c2d79d otx2vf_mcam_flow_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdc227cd6 otx2_init_tc -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe764e618 otx2_tc_alloc_ent_bitmap -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe9331a44 otx2_open -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf590a9c7 otx2_config_pause_frm -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf82f21d6 otx2_attach_npa_nix -EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xff95d182 cn10k_lmtst_init -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xa0d7c542 prestera_device_register -EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xdd16e976 prestera_device_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x005189bd mlx4_put_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0379ba35 mlx4_sync_pkey_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c11e689 mlx4_SET_PORT_general -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d2bd8c2 set_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x114201d3 mlx4_ALLOCATE_VPP_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16cc138b mlx4_get_cpu_rmap -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1deab15a mlx4_is_eq_vector_valid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e956446 mlx4_release_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x200cca3c mlx4_get_slave_node_guid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2237c425 mlx4_get_parav_qkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x312f6411 mlx4_is_eq_shared -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a20d99e mlx4_gen_slaves_port_mgt_ev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4961e5b8 mlx4_is_slave_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a472875 mlx4_SET_PORT_PRIO2TC -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aae2ae3 mlx4_SET_PORT_BEACON -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e66cf75 mlx4_SET_PORT_SCHEDULER -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x682b2ff2 set_and_calc_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71230fcd mlx4_gen_guid_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7297ddb5 mlx4_gen_pkey_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75212211 mlx4_SET_PORT_user_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ea1d95 mlx4_gen_port_state_change_eqe -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x784c6853 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x89c16989 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8c0e387d otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x903de578 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x90498998 otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9df60189 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa6a19ceb otx2_mbox_up_handler_mcs_intr_notify +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xafab907b otx2_txschq_free_one +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbeaaa455 otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbeb626b6 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd54a3ea9 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe5b01e6a otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe96b8fe6 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf4d1850f otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf99fdf80 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xa4168e4c prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xd9d7a278 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05e22102 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e0cd35d get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e701d00 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fc082d3 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1073bd7b mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16a0a837 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16cd1573 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e4f9b7b mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21ca1d57 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29449a27 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30e9b37a mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36326771 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3985f3bf mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c72c899 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x554c4d28 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56f89f50 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59849cfe mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68a91115 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ec16806 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ce4322 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b2de438 mlx4_get_cpu_rmap EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86592450 mlx4_get_is_vlan_offload_disabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bc59704 mlx4_SET_VPORT_QOS_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97938b6a mlx4_SET_PORT_fcs_check -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa08196df mlx4_SET_VPORT_QOS_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1f7e250 mlx4_get_slave_from_roce_gid -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa289383c mlx4_get_roce_gid_from_slave -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9183adc mlx4_SET_PORT_user_mtu -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaba8be01 mlx4_assign_eq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d7d027 get_phv_bit -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc4f41ec mlx4_max_tc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd716fa8 mlx4_test_async -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd14e3d5a mlx4_get_slave_pkey_gid_tbl_len -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd25557a6 mlx4_SET_MCAST_FLTR -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3239bcb mlx4_query_diag_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4e963a1 mlx4_SET_PORT_VXLAN -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd42e721 mlx4_get_eqs_per_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63dac1e mlx4_SET_PORT_qpn_calc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9c64fee mlx4_test_interrupt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee6690e1 mlx4_get_slave_port_state -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef968563 mlx4_get_module_info -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf51af8cb mlx4_ALLOCATE_VPP_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfae27b56 mlx4_tunnel_steer_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0181b0c6 mlx5_modify_header_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02902bd4 mlx5_core_roce_gid_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0596ef34 mlx5_core_dealloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06109021 mlx5_fpga_sbu_conn_sendmsg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x074a9463 mlx5_core_detach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07bae7d3 mlx5_lag_is_shared_fdb -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x088c0215 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x857719bc mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d777839 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x916382f8 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x925c8704 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92737672 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93467b10 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a0351c0 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a70a240 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fba6d6d mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5655ba4 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae552eb5 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf6b00f1 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb261a07c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7a3d603 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb93777a9 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1067866 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2d87f76 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca09d204 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdab3cc88 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe09ead07 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe241fbbb mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe90d1e54 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf92336a8 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00b7149f mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0139c5fd mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x021d223e mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03ffefdb mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04298ec9 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x043fad0e mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07b6e5b1 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07bc5572 mlx5_cmd_cleanup_async_ctx EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089f1089 __traceiter_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08c739f1 mlx5_core_create_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c058c1f mlx5_eswitch_uplink_get_proto_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d66ad22 mlx5_rl_add_rate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ee7bee3 mlx5_mpfs_del_mac -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fc167ba mlx5_fpga_mem_read -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1062aa9c mlx5_eswitch_add_send_to_vport_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10b00f3e mlx5_query_ib_port_oper -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x113c8faa mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x095a6432 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b4c9aff mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c399c51 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e724f87 mlx5_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0edeefb8 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ffb19ce mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11e127e9 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12060199 mlx5_eswitch_uplink_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12135c1c __tracepoint_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12c807f3 mlx5_core_alloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18742b87 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x132d9078 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14cf6f60 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x159e86e8 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a6ae132 mlx5_get_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d319486 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e8f0457 mlx5_core_alloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x200269a7 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22efd00f mlx5_mpfs_del_mac EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23bb3f50 mlx5_create_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2406a9ab mlx5_core_create_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24e31d22 mlx5_eq_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2561317f mlx5_cmd_create_vport_lag -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25a88fbc mlx5_lag_is_roce -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a0bdd9c mlx5_msix_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2af666d4 mlx5_fc_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db07bc5 mlx5_rdma_rn_get_params -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec2436b mlx5_eq_enable -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ed302df mlx5_lag_get_slave_port -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30739b8c mlx5_eq_destroy_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x311c4e6b mlx5_modify_header_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34707d9e mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24226b75 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25a658c5 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26c6da4e mlx5_msix_free +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a14ed81 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd46548 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ddf38b1 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f04923f mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3150ac86 mlx5_core_destroy_rqt EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37d69801 mlx5_eswitch_reg_c1_loopback_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38a5966e mlx5_core_modify_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a2e6916 mlx5_core_dealloc_pd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aae4f1e mlx5_lag_query_cong_counters -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c21af3d mlx5_fs_add_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4120da2c mlx5_lag_is_sriov -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e39aca mlx5_core_query_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x443d77b1 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x352b97c8 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36c5662d mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x377bcece mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x382b1aa7 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3bc10ae9 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cdeb70f mlx5_lag_mode_is_hash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee45214 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f3998e1 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40b02da8 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412e0d55 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e7b396 mlx5_cmd_create_vport_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b52e00 __tracepoint_mlx5_fs_del_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46c99acf mlx5_core_create_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a3df2b3 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46853752 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46c8e914 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48dd9430 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x494b8a46 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a46b9c9 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a8e6115 mlx5_core_uplink_netdev_event_replay +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b7443d8 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bb6d08d mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d404bc8 mlx5_modify_header_dealloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d62e046 __tracepoint_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ddc95e7 mlx5_vf_get_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50a410f4 mlx5_vf_put_core_dev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50e4b606 mlx5_core_query_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x525b480b mlx5_eswitch_get_vport_metadata_for_match -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53e370c8 mlx5_core_create_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5496cbc6 mlx5_lag_is_mpesw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5584a448 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4df055dc mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e2a82fc mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ef3abcb mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50244fcb mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x522572ad mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52dd1544 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b747ea mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x553d1c01 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5542897b mlx5_fc_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x559ac38d __SCK__tp_func_mlx5_fs_add_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x575b1bd4 mlx5_rl_remove_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x585835e6 mlx5_lag_mode_is_hash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5abec578 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x569e6d93 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x584b6ed2 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bf3cd50 mlx5_put_uars_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cad984e mlx5_lag_is_master -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de58bce mlx5_msix_free -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x603e0372 mlx5_cmd_exec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x610117e2 __traceiter_mlx5_fs_del_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62446299 mlx5_qp_debugfs_cleanup -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x629faf3e mlx5_get_flow_namespace -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64319676 mlx5_lag_is_active -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67dc2983 mlx5_core_query_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68d474bf mlx5_get_fdb_sub_ns -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a0b31c9 mlx5_comp_irq_get_affinity_mask -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a2b4380 mlx5_qp_debugfs_init -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8d59be mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x633c653a mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63ad3cd0 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x651c2e54 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6829cff5 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69c5fa23 mlx5_lag_is_mpesw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a8fdaa0 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6abdec2a mlx5_blocking_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cd5a182 __tracepoint_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ef26f60 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d9a5e19 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eedfafa mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f8ab9b7 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70049676 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7074c6db mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bae6ef mlx5_free_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72d2987b mlx5_nic_vport_disable_roce EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73fc1d8e __tracepoint_mlx5_fs_add_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76af34b4 mlx5_eswitch_vport_rep -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x773d66a1 mlx5_sriov_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7817e5b4 mlx5_get_uars_page -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78aafa95 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75ba0d43 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7918335b mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79abf34a mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ab3ace5 mlx5_lag_get_roce_netdev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c7d9419 mlx5_core_destroy_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ddd16c3 mlx5_eswitch_get_vport_metadata_for_set -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e6cde60 mlx5_sriov_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ea3258c mlx5_eswitch_get_encap_mode -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f365fb5 mlx5_core_uplink_netdev_event_replay -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81edb828 mlx5_debugfs_get_dev_root -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x833f4c3a mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c8e4f08 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f01fec2 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86ab7c6a mlx5_rl_remove_rate_raw EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87e68171 mlx5_del_flow_rules -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87f21e2d mlx5_eq_notifier_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x888a2246 mlx5_create_auto_grouped_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89a01f7c mlx5_core_attach_mcg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a05fd5d mlx5_core_modify_cq_moderation -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ad648c9 mlx5_cmd_init_async_ctx -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x901c48b1 mlx5_fc_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93ab8278 mlx5_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93e2fb65 mlx5_fs_remove_rx_underlay_qpn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9411b25c mlx5_rl_add_rate_raw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x952276c1 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89bd7656 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a1d050a mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b970eae mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dc7dd5c mlx5_lag_get_next_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e6c66ba mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93b38a75 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93b4276d mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x968091d2 mlx5_eq_update_ci EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a66f0cc mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96f7e17f mlx5_eswitch_vport_match_metadata_enabled EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d69a80c mlx5_packet_reformat_dealloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e5dc41f mlx5_comp_vectors_count -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9efd615b mlx5_debug_qp_add -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fdae542 mlx5_core_destroy_tir -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6979ccf mlx5_eswitch_vport_match_metadata_enabled -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8011699 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9dbcd9c8 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa228c6f2 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5049951 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6e363de mlx5_cmd_exec_polling EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85e04b7 mlx5_flow_table_id -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8e8965b mlx5_cmd_out_err -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8fd17bf mlx5_rsc_dump_cmd_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab51d5e9 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa95a9d2b mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaacd8b45 mlx5_packet_reformat_alloc EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabf2fa46 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaceddfc0 __traceiter_mlx5_fs_set_fte EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae3edbec mlx5_eq_create_generic -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeead464 mlx5_packet_reformat_alloc -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf60e62a mlx5_cmd_do -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb225b16e mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad8df3a7 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadbfe50d mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1e2dfec mlx5_eswitch_get_proto_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb28dbbe8 mlx5_destroy_flow_group -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb36ba032 mlx5_core_create_rq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb71fa26a mlx5_core_alloc_transport_domain -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7cd207e mlx5_blocking_notifier_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8cc54b7 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb93d8607 mlx5_rl_add_rate EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5c2f4f __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbab6dc50 mlx5_lag_get_num_ports EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb07ebdf __tracepoint_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd80c2f7 mlx5_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbee86f77 mlx5_core_get_terminate_scatter_list_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe662ee mlx5_core_query_mkey -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0114057 mlx5_core_destroy_tis -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc06ec2dd mlx5_eswitch_register_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc46ee156 mlx5_core_destroy_psv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6157a09 mlx5_vector2eqn -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc77d5cc7 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb58a1ce mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1879586 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc62bc8fc mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8862841 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca0dcf3b mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb783bda mlx5_alloc_bfreg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdeb9c79 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd9932e9 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfb2ed58 mlx5_msix_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfc03d9d mlx5_core_create_tir EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f98d7d mlx5_eq_update_ci -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd30283d3 mlx5_blocking_notifier_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd42ed677 mlx5_is_roce_on -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5d9e977 mlx5_rl_is_in_range -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7455437 mlx5_debug_qp_remove -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd775cb87 mlx5_core_modify_cq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd98b5139 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd338ce00 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd36d0196 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd42812f3 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd466888a mlx5_core_dealloc_transport_domain EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdae8aa4d __tracepoint_mlx5_fs_del_ft -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf3d235 mlx5_lag_get_next_peer_mdev -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd79ae77 mlx5_core_modify_sq -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde305eb9 mlx5_lag_get_num_ports -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0425c55 mlx5_rsc_dump_next -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0a0cb38 mlx5_core_destroy_rqt -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe24ca2a9 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcbc8444 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe196e8d7 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe243f67d mlx5_core_get_terminate_scatter_list_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe51be8a7 mlx5_eswitch_get_core_dev EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9a00fb4 mlx5_eswitch_unregister_vport_reps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea4131f2 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe688de1e mlx5_fs_remove_rx_underlay_qpn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec062b14 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebde0ea8 mlx5_core_dealloc_pd EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf06725b6 __tracepoint_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0cb9f59 mlx5_fpga_get_sbu_caps -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf263aa04 mlx5_fpga_sbu_conn_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2a7a0fd __traceiter_mlx5_fw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3ceb70b mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0f80d44 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1135779 mlx5_core_modify_sq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf52e1946 __tracepoint_mlx5_fs_set_fte -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7573fc1 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf585d284 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5a29b34 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5bb816a mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7a38232 mlx5_eswitch_unregister_vport_reps EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9549795 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa592333 mlx5_core_create_rq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc8e744e __SCK__tp_func_mlx5_fs_del_fg -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfebf1fcf mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd14de33 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeee1d69 mlx5_core_attach_mcg EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xc4d702d9 mlxfw_firmware_flash -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00b26d2c mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap @@ -3123,13 +3122,12 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0d0129fc mlxsw_afa_block_append_qos_ecn EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f4a209d mlxsw_core_read_utc_sec -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x13635e33 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1154c9e1 mlxsw_core_port_netdev_link EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14d6ca2e mlxsw_env_set_module_power_mode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16673aec mlxsw_afk_values_add_u32 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x16f4221d mlxsw_core_irq_event_handler_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x17a445d3 mlxsw_core_trap_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19fa5852 mlxsw_core_flush_owq EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1cb8f858 mlxsw_reg_trans_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set @@ -3137,14 +3135,14 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x299e2562 mlxsw_afk_values_add_buf EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2f303cd3 mlxsw_afa_block_append_qos_dsfield -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x32f6e967 mlxsw_core_port_netdev_link +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3399ea62 mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x383bc49a mlxsw_afa_block_append_qos_dscp -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x39da54e0 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3dc8c11d mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43f2056e mlxsw_core_traps_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4765b9f0 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x483cf7d4 mlxsw_core_trap_state_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4866767a mlxsw_env_get_module_eeprom_by_page EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ec8a06 mlxsw_afa_block_append_police @@ -3152,225 +3150,227 @@ EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x50359cc0 mlxsw_core_kvd_sizes_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x52a43cb4 mlxsw_core_rx_listener_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5bac2772 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x54998ef9 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57016635 mlxsw_core_skb_receive EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c73d5a4 mlxsw_core_sdq_supports_cqe_v2 EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5d55fb68 mlxsw_afk_encode EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x643fcc07 mlxsw_env_get_module_info EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65c7e645 mlxsw_afa_block_append_qos_switch_prio -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x68c28b16 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6807e1ea mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6ccdf21a mlxsw_env_reset_module EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x718d28f4 mlxsw_afa_block_append_vlan_modify EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7609ec6d mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f3f2b39 mlxsw_core_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x811aa0b7 mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x86817014 mlxsw_core_read_utc_nsec EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8f373f5f mlxsw_core_driver_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x980ff58c mlxsw_core_driver_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9cbf026d mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9d67ec87 mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa509fafd mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa5d033fa mlxsw_core_rx_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8e2509a mlxsw_afa_block_append_sampler EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xadc282de mlxsw_afa_create -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb42bb622 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaccdcfc1 mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb8534c34 mlxsw_core_rx_listener_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc8ebd80 mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbda212df mlxsw_core_irq_event_handlers_call -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbf6632ea mlxsw_env_get_module_eeprom EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc2276b9d mlxsw_core_trap_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc31fbb6a mlxsw_core_res_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5eacafe mlxsw_afa_block_append_l4port EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcd6f94f0 mlxsw_core_bus_device_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd111d3e8 mlxsw_core_irq_event_handler_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1bab622 mlxsw_afk_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd21722b4 mlxsw_core_max_lag EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd33d0c88 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd677a4c2 mlxsw_afa_create EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd888ffb3 mlxsw_afa_block_append_ip EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9f711ae mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdbef9f7b mlxsw_afa_block_append_mirror EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc5c95df mlxsw_core_resources_query -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdca620cd mlxsw_core_traps_register EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1860dde mlxsw_afa_block_append_fid_set EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe4d9ac5a mlxsw_afa_block_append_drop EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe532482a mlxsw_afk_key_info_get -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe934dff9 mlxsw_core_port_devlink_port_get EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf446732c mlxsw_afk_key_info_subset EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdcff553 mlxsw_core_ptp_transmitted EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff0b141d mlxsw_afa_block_append_fwd -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xb68db519 mlxsw_i2c_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xcfd1e5f4 mlxsw_i2c_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x19ecbe95 mlxsw_pci_driver_register -EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xac51ad98 mlxsw_pci_driver_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03bd51f1 ocelot_sb_occ_max_clear -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04140225 ocelot_mrp_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0503c3c7 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff458aee mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2a1d2d76 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x53417d9b mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x7976433d mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xcccb5030 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00648f2a ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02c95afc ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04cad162 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x058d7505 ocelot_mrp_add EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08791cd6 ocelot_wm_enc -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09eac9cd ocelot_port_inject_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a8f59bc ocelot_port_bridge_flags -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f086dee ocelot_mact_learn_streamdata -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1385b884 ocelot_port_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b3d8ada ocelot_ptp_rx_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b835b4a ocelot_deinit -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d23fe04 ocelot_pll5_init -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d3ca0e3 ocelot_port_mdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22fae7ac ocelot_devlink_sb_unregister -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29707fd8 ocelot_port_bridge_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ade883e ocelot_get_txtstamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2dcb13c2 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c5cd3ab ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e6e5b85 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15189029 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b764b5b ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1cdb63c7 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2168f494 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21ba6bed ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25d76b7a ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28683768 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c73fddc ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ddd77e0 ocelot_port_bridge_flags EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30ac0941 ocelot_xtr_poll_frame -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3312d2f3 ocelot_set_ageing_time -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b11974d ocelot_vcap_filter_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c1ac8e5 ocelot_sb_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3eca2064 ocelot_port_txtstamp_request -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x43193b24 ocelot_port_lag_change -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4425d45b ocelot_deinit_timestamp -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50715f61 ocelot_mrp_add_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51daaf8f ocelot_sb_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58e229ce ocelot_port_lag_leave -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a654804 ocelot_fdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60af78df ocelot_sb_occ_port_pool_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60ba1d00 ocelot_port_lag_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60d2d116 ocelot_fdb_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ab443e6 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34a7f6db ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42c398b5 ocelot_reset +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4535a0cd ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4820cc4b ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x487ea341 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c201721 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e714f20 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50a540cf ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x524e938e ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x545a23c5 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x59853fbc ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b36b73b ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60fd96d3 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63b6d023 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68bc9eba ocelot_vcap_filter_add EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ce19e2a vsc7514_vcap_props -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7077111a ocelot_bridge_stp_state_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x71543ec3 ocelot_ptp_verify -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7807c119 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72c93a53 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73a0c6f4 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73e6f115 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73e7240a ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x794ac9e8 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e583c49 ocelot_sb_pool_set EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5aec55 vsc7514_regfields -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f7c40f1 ocelot_ptp_settime64 -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87f4ada1 ocelot_port_bridge_join -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x880ac1ae ocelot_sb_tc_pool_bind_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x887120f1 ocelot_port_mdb_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a719a28 ocelot_mact_learn -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b932597 ocelot_port_set_maxlen -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c9bb5e4 ocelot_reset -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f79788a ocelot_can_inject -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92792a1a ocelot_get_max_mtu -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92bc9be0 ocelot_policer_validate -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98eb13c9 ocelot_mrp_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x99a74119 ocelot_deinit_port -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ab1d54c ocelot_ptp_enable -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c16b32c ocelot_sb_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e2dae26 ocelot_sb_tc_pool_bind_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa78460e9 ocelot_ptp_adjfine -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaaab858c ocelot_mrp_del_ring_role -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xafa07097 ocelot_get_ethtool_stats -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0938da9 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ecba0f8 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fca2d4d ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84d7cea4 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8510f7a0 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x87f50e26 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89c3209e ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a659d81 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8aaaa4e2 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x902fb9e6 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91db0951 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94f20ab8 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x991153b9 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x997264e9 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa331b996 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa535d483 ocelot_port_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac9108e8 ocelot_vcap_policer_add EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0fdd7fd ocelot_wm_dec -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6561183 ocelot_hwstamp_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb842dfff ocelot_port_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb93f1ccf ocelot_port_vlan_filtering -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc0e6bd3 ocelot_vcap_filter_replace -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbdecf09d ocelot_sb_port_pool_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc26ff05c ocelot_port_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3034d57 ocelot_mact_forget -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc85d66fa ocelot_vlan_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc939c619 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5900db5 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6c52aae ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbee1453c ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc59f5bd4 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc712e336 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbf0ff2b ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc7085e6 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd01a1959 ocelot_deinit_timestamp EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd27e6084 ocelot_ptp_adjtime -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda044842 ocelot_hwstamp_get -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda5d4b61 ocelot_vcap_policer_del -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda9965f5 ocelot_mact_lookup -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbb9c081 ocelot_get_ts_info -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc171780 ocelot_sb_occ_snapshot -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc1f0149 ocelot_devlink_sb_register -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc51569c ocelot_vlan_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe16e3161 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3645d2d ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd37bd355 ocelot_pll5_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4423edb ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5422df5 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5db761b ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde2130a4 ocelot_ptp_enable EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe30fc619 ocelot_wm_stat -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9842457 ocelot_vlan_prepare -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb31e54c ocelot_get_sset_count -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xec64fe9e ocelot_vcap_policer_add -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf108dc94 ocelot_get_strings -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf59777c9 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe472d46a ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee6be845 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf2acedf9 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf36a84d0 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf4736a1b ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf572209c ocelot_policer_validate EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf80fc88d vsc7514_regmap -EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb241506 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf84dac2f ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8b72989 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf97286fa ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff4068f4 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x3a46e97c qed_get_rdma_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x56b3f759 qed_get_eth_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd1ed15cd qed_get_eth_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd913af4c qed_get_rdma_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe73e9757 qed_get_iscsi_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfdb0f329 qed_get_fcoe_ops -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9050be04 qede_rdma_unregister_driver -EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xea93a567 qede_rdma_register_driver -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x01a5fb21 wx_vlan_rx_add_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x02b60f45 wx_disable_rx -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x073f71d5 wx_host_interface_command -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x0a35a971 wx_set_features -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x12d34d65 wx_reset_misc -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1b0c2c74 wx_start_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x1ccfb94a wx_misc_isb -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2464faca wx_get_stats64 -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x27d6fed1 wx_control_hw -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2d0a0c0a wx_stop_adapter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x37d97742 wx_intr_enable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3e0472ff wx_init_eeprom_params -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4614cc7e wx_read_ee_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x48a634f0 wx_get_pcie_msix_counts -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4955b0ed wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa7143285 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xed9c5216 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xa39ef1c7 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xd95deaa4 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x045944f8 wx_change_mtu +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x08d35ba8 wx_set_mac +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x13480633 wx_irq_disable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x13b6f676 wx_napi_disable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x17e0e327 wx_vlan_rx_add_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x245d0c32 wx_set_rx_mode +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x2cb522fe wx_host_interface_command +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3b5e2c94 wx_init_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3c2422d5 wx_configure +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3ca80688 wx_mac_set_default_filter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x3f00be60 wx_free_irq +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x41222260 wx_check_flash_load +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x493bacc6 wx_mng_present EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3398bd wx_msix_clean_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4b3e4e6f wx_mac_set_default_filter -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4ed4d1d5 wx_free_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5455f70b wx_clean_all_tx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5fc4ae30 wx_init_rx_addrs -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x61d8db31 wx_disable_pcie_master -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6288abf3 wx_configure_vectors -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6313c098 wx_reset_interrupt_capability -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x66305299 wx_vlan_rx_kill_vid -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6eaf1948 wx_setup_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7278f24a wx_set_rx_mode -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7bbc5b8b wx_flush_sw_mac_table -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x85ffd70a wx_clean_all_rx_rings -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x86f8ead2 wx_get_drvinfo -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x93f6bb4f wx_free_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9447b61d wx_irq_disable -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9e39313b wx_read_ee_hostif_buffer -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa18a08de wx_setup_isb_resources -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xadc32a89 wx_get_mac_addr -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb50403ed wx_clear_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbb2b92fb wx_configure -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcd5673c2 wx_napi_disable_all -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xce341ce8 wx_mng_present -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd05a5361 wx_check_flash_load -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd345cc6f wx_sw_init -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd4806cb0 wx_disable_rx_queue -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe1e03bd4 wx_free_irq -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe5bea920 wx_init_interrupt_scheme -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe84554c3 wx_reset_hostif -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xebf12866 wx_change_mtu -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xee1bc1cc wx_set_mac -EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfb092495 wx_xmit_frame -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x22c7df60 hdlcdrv_register -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x24633b57 hdlcdrv_unregister -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x455705aa hdlcdrv_transmitter -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x61e1ec97 hdlcdrv_arbitrate -EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x683b6f9f hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x4d163efb wx_free_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5040b636 wx_control_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x544a7c41 wx_sw_init +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5b1f52be wx_clean_all_rx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x5e8bacd2 wx_read_ee_hostif_buffer +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6be48659 wx_clear_interrupt_scheme +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x6f4ae4ed wx_reset_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x70754a9f wx_vlan_rx_kill_vid +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x7f6a8d6a wx_setup_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x85b9bf6b wx_disable_rx +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x8ab572bf wx_clean_all_tx_rings +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x90345461 wx_free_isb_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x91a131ed wx_get_drvinfo +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x95dcfd4b wx_reset_misc +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x97b53559 wx_napi_enable_all +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0x9c039c5a wx_start_hw +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xa6a10643 wx_intr_enable +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xaa05bc24 wx_stop_adapter +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb04f9cfc wx_setup_resources +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xb90bc2d1 wx_init_eeprom_params +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbc682e47 wx_configure_vectors +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbdf3452c wx_reset_interrupt_capability +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xbe47541b wx_misc_isb +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xc5046efd wx_get_pcie_msix_counts +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcbb69673 wx_read_ee_hostif +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xcf7f8e47 wx_xmit_frame +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xd8cb1e1e wx_init_rx_addrs +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xda55626e wx_get_mac_addr +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xdc7128cf wx_disable_rx_queue +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe2dfcbec wx_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe5b536c0 wx_set_features +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xe6d76b1f wx_disable_pcie_master +EXPORT_SYMBOL drivers/net/ethernet/wangxun/libwx/libwx 0xfcb3eba5 wx_flush_sw_mac_table +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5413c970 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5dc94a78 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x70a5204d hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa24b7222 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd9a31309 hdlcdrv_unregister EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe EXPORT_SYMBOL drivers/net/mdio 0x62eb612a mdio45_ethtool_ksettings_get_npage @@ -3378,1093 +3378,1093 @@ EXPORT_SYMBOL drivers/net/mdio 0xb79a54ee mdio45_nway_restart EXPORT_SYMBOL drivers/net/mdio 0xcdbdeca7 mdio45_ethtool_gset_npage EXPORT_SYMBOL drivers/net/mdio 0xdaceb7a6 mdio_mii_ioctl -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x0519872a cavium_mdiobus_write_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x4819da7f cavium_mdiobus_read_c45 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7c674c5e cavium_mdiobus_read_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xb5c53a15 cavium_mdiobus_write_c22 -EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xcccd08e4 mscc_miim_setup -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x13b18dfd xgene_mdio_rgmii_write -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x171138e0 xgene_mdio_rgmii_read -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x99eae588 xgene_enet_phy_register -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xf52a583a xgene_mdio_rd_mac -EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xfbda0d3c xgene_mdio_wr_mac -EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0x54fe1c2b mtk_pcs_lynxi_create +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x5b185f36 cavium_mdiobus_write_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x8cb9eb1b cavium_mdiobus_read_c22 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xa2b19461 cavium_mdiobus_write_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xa6c4bf5c cavium_mdiobus_read_c45 +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xc3db1ea6 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x22bf5be9 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x6dce368a xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x73ccac96 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x7c76048a xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xf8d8936c xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0x2e6f2f8c mtk_pcs_lynxi_create EXPORT_SYMBOL drivers/net/pcs/pcs-mtk-lynxi 0xe9221a05 mtk_pcs_lynxi_destroy -EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x74687f07 bcm54xx_auxctl_write -EXPORT_SYMBOL drivers/net/ppp/pppox 0x22aa734a pppox_unbind_sock -EXPORT_SYMBOL drivers/net/ppp/pppox 0x34f9c12f pppox_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0x993bfc43 pppox_compat_ioctl -EXPORT_SYMBOL drivers/net/ppp/pppox 0xa0c135ab register_pppox_proto +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x693276ee bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4a63431d pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbab52444 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xcf3ea4c0 pppox_unbind_sock EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto -EXPORT_SYMBOL drivers/net/sungem_phy 0xec625773 sungem_phy_probe -EXPORT_SYMBOL drivers/net/team/team 0x10184ecb team_mode_register -EXPORT_SYMBOL drivers/net/team/team 0x4ffb53c8 team_options_unregister -EXPORT_SYMBOL drivers/net/team/team 0x7f87716b team_modeop_port_enter -EXPORT_SYMBOL drivers/net/team/team 0x837d53b9 team_options_register -EXPORT_SYMBOL drivers/net/team/team 0xa67ee6cd team_modeop_port_change_dev_addr -EXPORT_SYMBOL drivers/net/team/team 0xb29603a7 team_options_change_check -EXPORT_SYMBOL drivers/net/team/team 0xb7c66806 team_option_inst_set_change -EXPORT_SYMBOL drivers/net/team/team 0xbe1c7d60 team_mode_unregister -EXPORT_SYMBOL drivers/net/usb/usbnet 0x478702d9 usbnet_device_suggests_idle -EXPORT_SYMBOL drivers/net/usb/usbnet 0x54249cb3 usbnet_manage_power -EXPORT_SYMBOL drivers/net/usb/usbnet 0x7be49fd4 usbnet_link_change -EXPORT_SYMBOL drivers/net/wan/hdlc 0x314bd222 hdlc_start_xmit -EXPORT_SYMBOL drivers/net/wan/hdlc 0x5a06d638 register_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x74a6032b hdlc_open -EXPORT_SYMBOL drivers/net/wan/hdlc 0x78c8d113 hdlc_ioctl -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8834f0a2 attach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0x8bd286d4 alloc_hdlcdev -EXPORT_SYMBOL drivers/net/wan/hdlc 0xbf46a8d4 detach_hdlc_protocol -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe2a70337 hdlc_close -EXPORT_SYMBOL drivers/net/wan/hdlc 0xe2ab9d6d unregister_hdlc_device -EXPORT_SYMBOL drivers/net/wan/hdlc 0xeb985d5c unregister_hdlc_protocol -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x046b0918 ath_regd_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0a7ea25c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe7a17e71 pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0xebbb57a3 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x26b614a4 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4835d404 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x51a783c9 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x834b250e team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x88b2270f team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x91cc43a2 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x9d2183b8 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd39a6ad1 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3f4a3242 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x81c2fc74 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x83ad0b45 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0190f9ae attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x14c5fa84 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x21ad743f alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4bf42a7b unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6bbfb6fd hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa05f1d02 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd2b723f8 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfa6aa11f register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfdb228bb unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfdbeb6e1 hdlc_close +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x067b3b21 ath_key_config EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1342ecd6 ath_hw_get_listen_time -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2c146463 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1d0ebc80 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x23090512 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x30fb796b ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x42a0f6f9 ath_hw_keysetmac EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x57fba4e2 ath_key_delete -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x72044f49 ath_hw_cycle_counters_update -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7ba6d077 ath_rxbuf_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7e8bcc55 ath_printk -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9c4cd188 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6b7e672b ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6f15a109 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7d035e50 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x84a99ae4 ath_hw_setbssidmask EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb71c1e57 dfs_pattern_detector_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc57a8500 ath_hw_keyreset -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe757bd42 ath_reg_notifier_apply -EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe3a2572 ath_is_mybeacon -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x004b9d57 ath10k_bmi_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00e4da98 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc7eecc6a dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe7e57fcf ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf29a50f5 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfcd377f1 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01193a45 ath10k_ce_completed_recv_next EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01aaab33 ath10k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06a38791 ath10k_htt_rx_hl_indication -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0bbdf738 __ath10k_ce_send_revert -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ff76998 ath10k_ce_alloc_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1080b407 ath10k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1408b74b ath10k_ce_enable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c06b823 ath10k_core_napi_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x289bdeb1 ath10k_ce_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29891add ath10k_ce_cancel_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a530bb8 ath10k_htc_rx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35603b35 ath10k_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38ea9414 ath10k_htt_t2h_msg_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39b31401 ath10k_ce_free_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x432ea64c ath10k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48e1873f ath10k_ce_dump_registers -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4aa2951c ath10k_ce_send_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4acd12f2 ath10k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4f6aa8d6 ath10k_ce_completed_send_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51272bb2 ath10k_ce_deinit_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5738389d ath10k_htc_process_trailer -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a906007 ath10k_core_free_board_files -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c1a6ccc ath10k_ce_completed_recv_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5ca1992a ath10k_ce_rx_update_write_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63e28718 ath10k_ce_completed_send_next_nolock -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6a03ba7b ath10k_htt_txrx_compl_task -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ddab846 ath10k_htt_hif_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6fceb756 ath10k_bmi_read_memory -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x71d522ce ath10k_htc_tx_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8448b08b ath10k_ce_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x851649c2 ath10k_core_napi_sync_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87b5d108 ath10k_ce_completed_recv_next -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8e792fe3 ath10k_coredump_get_mem_layout -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92b95af0 ath10k_core_fetch_board_file -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95cb995e ath10k_ce_num_free_src_entries -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95cce664 ath10k_htc_notify_tx_completion -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x98bba4b8 ath10k_ce_per_engine_service_any -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa89681cf ath10k_core_check_dt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa91defd0 ath10k_ce_disable_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9db8038 ath10k_ce_alloc_rri -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5e227dd ath10k_core_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb61e54e7 ath10k_core_start_recovery -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc9d6598 ath10k_ce_init_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc633b313 ath10k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca365c7a ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01b6060b ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05489e3a ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06bc2910 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07513b79 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11f85ff8 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x172f063c ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a4f3d23 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x257ab9a3 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28b60bf1 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b2f19a3 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c4e57f3 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d3e29c5 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34b582a8 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3683d05f ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40d88887 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49da8449 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c9962d4 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e190b05 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51edc4c6 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5211b7fc ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5370b1d4 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x540a5ab4 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55308964 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58e76e2c ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5cd7120f ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6119aad9 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62547d8d ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62c86188 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72af4787 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x740ece41 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b518e4b ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e76eda3 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82bf04cc ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8959685a __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x987a0c0c ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9bf64cf7 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8034476 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8ec960c ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa6f472a ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xade2895f ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb15669dc ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb657649d ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xba0e634d ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb478d9a ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe9f831c ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8f78c8d ath10k_ce_per_engine_service EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc20d178 __tracepoint_ath10k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce64f0f9 ath10k_coredump_new -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0ba61b3 ath10k_core_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8dd5886 ath10k_core_register -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdb157628 ath10k_print_driver_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe02cfeea __ath10k_ce_rx_num_free_bufs -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1477d21 ath10k_core_unregister -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe9fa9b98 ath10k_mac_tx_push_pending -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xed0dae79 ath10k_ce_send -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf04bb0de ath10k_htt_rx_pktlog_completion_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1548423 ath10k_ce_free_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x020e8b07 ath11k_hal_srng_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x03b75755 ath11k_pcic_init_msi_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0998444a ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcff85d63 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9a2a5c2 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdab68781 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe91f022f ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee6fc176 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1679e3b ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7af2faa ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8095b38 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfe505b60 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x015c3784 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x070975c2 ath11k_core_init EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0dae0eb8 __tracepoint_ath11k_log_dbg -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x10cf3716 ath11k_pci_enable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x14a089a0 ath11k_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x16cb8a23 ath11k_ce_per_engine_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1b6bdd14 ath11k_core_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1c230c49 ath11k_pcic_free_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2119b1dc ath11k_ce_rx_post_buf -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2784eda1 ath11k_pcic_ext_irq_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3136b890 ath11k_pcic_get_ce_msi_idx -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3be4d583 ath11k_ce_get_attr_flags -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3d210a9e ath11k_ce_get_shadow_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4683d273 ath11k_pcic_config_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x509046d8 ath11k_pcic_ext_irq_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5276fe3c ath11k_qmi_deinit_service -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x53e8cb3c ath11k_pcic_read -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60ed02d1 ath11k_ce_free_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7143dc88 ath11k_debugfs_soc_destroy -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x76ca3baa ath11k_ce_alloc_pipes -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x85004951 ath11k_dp_service_srng -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8501f34f ath11k_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x88a570f7 ath11k_pcic_ce_irqs_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8fd4805e ath11k_core_pre_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x923b50c6 ath11k_pcic_get_msi_address -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93566ae8 ath11k_core_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x996b6fcc ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x13e0e0c0 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1bfba78f ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x260cdba2 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2ed04ecb ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x30f7da1b ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39205683 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x46081db0 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x486b4323 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4dd2cf6a ath11k_pci_disable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4e06d506 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x54e9a995 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5740805e ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60adb74f ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6144993e ath11k_pcic_read +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6724506d ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71036916 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7991d541 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8885040b ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9601cbd5 ath11k_pcic_ext_irq_disable EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d35347b ath11k_core_suspend -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaa7e81fb ath11k_pcic_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb0b313f0 ath11k_pcic_get_user_msi_assignment -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb0d911f0 ath11k_pcic_ce_irq_disable_sync -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc814f335 ath11k_pcic_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd34fae80 ath11k_hal_srng_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd5e2ed9e ath11k_core_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdc345c09 ath11k_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdd8c4256 ath11k_pcic_map_service_to_pipe -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xde3ed258 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa14a1162 ath11k_pci_enable_ce_irqs_except_wake_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa9b2a37a ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xada62a3d ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2327121 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb6210770 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb70fa955 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb7ada14d ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc056f4df ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc2a1c547 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc9b10317 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcb8ad879 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcce106da ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcff9eb81 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd84b1152 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdf801d3f ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe010bd22 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe11560ac ath11k_pcic_ext_irq_enable EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf5ed6700 ath11k_core_resume -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf64654a6 ath11k_pcic_write32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf9268a7b ath11k_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfc57e91e ath11k_pci_disable_ce_irqs_except_wake_irq -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0459cc20 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf2af429f ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf706f407 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfecb1814 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x10120d62 ath6kl_core_cleanup EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x146a9d27 ath6kl_stop_txrx -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27105d33 ath6kl_core_create -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2ec14704 ath6kl_core_destroy EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x70c8dc77 ath6kl_hif_intr_bh_handler -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x723aee83 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3fb4fa8c ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x77df3e29 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x89078245 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8f2d0250 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 0xab86356a ath6kl_stop_txrx EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbdab68fd ath6kl_core_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe393e4b3 ath6kl_core_rx_complete -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeff7d345 ath6kl_core_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf9b22ebc ath6kl_read_tgt_stats -EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfc3e733c ath6kl_core_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0ac8bab2 ath9k_cmn_get_channel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c7c50ab ath9k_cmn_spectral_scan_config -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0dd7e768 ath9k_cmn_spectral_scan_trigger -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x154ae152 ath9k_cmn_process_rssi -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x179768db ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc2cf046f ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd1249923 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdedcdebd ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf4760a08 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfb556b47 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x106bdd95 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x167afae6 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x195277dd ath9k_cmn_setup_ht_cap EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a0aa030 ath9k_cmn_debug_stat_rx -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e73068c ath9k_cmn_debug_phy_err -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x20392b22 ath9k_cmn_debug_recv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2911f4da ath9k_cmn_init_crypto -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38a228ba ath9k_cmn_beacon_config_adhoc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3aecbda0 ath9k_cmn_beacon_config_sta -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x427b514b ath9k_cmn_update_txpow -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76885c24 ath9k_cmn_spectral_deinit_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7ea02469 ath9k_cmn_debug_base_eeprom -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x82180b24 ath9k_cmn_init_channels_rates -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x83a6bdf0 ath9k_cmn_get_hw_crypto_keytype -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8778d9b8 ath9k_cmn_rx_accept -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ba8631e ath9k_cmn_beacon_config_ap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbaef5459 ath9k_cmn_rx_skb_postprocess -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc14cf8e1 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2ce8be38 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4765af4b ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4b2364a7 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x605b7a22 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x72daa35b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x792f82e5 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7bd2e394 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d33ba1e ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8678fd68 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8b47455d ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c65ce91 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ee57f8f ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x95ec7635 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9fbd0ad8 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4edf8c7 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xab6aea34 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf87011d ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb4f1f283 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba98d070 ath9k_cmn_spectral_scan_trigger EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3e41676 ath9k_cmn_spectral_init_debug -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xed2b8463 ath9k_cmn_setup_ht_cap -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3696618 ath9k_cmn_process_rate -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfe9e92bd ath_cmn_process_fft -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x004b8baf ath9k_hw_set_gpio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04fdb935 ath9k_hw_wow_apply_pattern -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05e1b302 ath9k_hw_abortpcurecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09347b64 ath9k_hw_gpio_get -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a8007d5 ath_gen_timer_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d606bd3 ath9k_hw_loadnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e313463 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdd3fbd38 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x013b27a8 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01c22c30 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01c49bce ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04438fbb ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x045193d2 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0567e4b0 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a1a9546 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d93d540 ath_gen_timer_isr EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x107891a5 ath9k_hw_check_nav -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1393af6f ath9k_hw_computetxtime -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13ba4c1c ath9k_hw_btcoex_bt_stomp -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1472f7f9 ath9k_hw_setopmode -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x158b89cd ath9k_hw_btcoex_set_concur_txprio -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d304034 ath9k_hw_setup_statusring -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d9ba1e9 ath9k_hw_reset_calvalid -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f862880 ath9k_hw_set_rx_bufsize -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x207c75ee ath9k_hw_set_sta_beacon_timers -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x216c73e2 ath9k_hw_btcoex_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2275b9b0 ath9k_hw_getrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2343ced2 ath9k_hw_check_alive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x261e8a05 ath9k_hw_disable_mib_counters -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29f32c14 ath9k_hw_setpower -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a289456 ath9k_hw_reset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b3e7f71 ar9003_hw_disable_phy_restart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bb7ff22 ath_gen_timer_isr -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c231115 ar9003_hw_bb_watchdog_check -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c3ebf24 ath9k_hw_deinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c58b05e ath9k_hw_init_btcoex_hw -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x314c468f ar9003_paprd_is_done -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32e07f64 ar9003_mci_state -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3510b8e6 ath_gen_timer_alloc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38320f37 ath9k_hw_init -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38372f21 ath9k_hw_resume_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a2fc4d9 ath9k_hw_numtxpending -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b10c7e7 ath9k_hw_enable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x425c9102 ar9003_mci_get_next_gpm_offset -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x436a27a5 ath9k_hw_getnf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45ca401a ath9k_hw_intrpend -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ca139ac ath9k_hw_setuptxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ffcd9ff ath9k_hw_resettxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5273483e ath9k_hw_settsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54a8e797 ar9003_paprd_setup_gain_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55ec2112 ath9k_hw_name -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x560147b0 ath9k_hw_gen_timer_stop -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58d7e922 ath9k_hw_setrxabort -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5919e50e ath9k_hw_btcoex_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6012d401 ath9k_hw_releasetxqueue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a9a4fd6 ath9k_hw_wait -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ab0fb51 ath9k_hw_gpio_request_out -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b81931b ath9k_hw_beaconinit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e2c92f9 ar9003_mci_send_wlan_channels -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f47b96c ar9003_mci_set_bt_version -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x723e20a4 ath9k_hw_gettsf32 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77b0d596 ath9k_hw_btcoex_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79d08c66 ath9k_hw_rxprocdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83a1f051 ath9k_hw_set_txpowerlimit -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83aa958c ath9k_hw_gpio_free -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84027ae4 ar9003_mci_cleanup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86269492 ath9k_hw_phy_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x877dc9c7 ar9003_paprd_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x892b7f4f ath9k_hw_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89924717 ar9003_paprd_create_curve -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89bc5396 ath9k_hw_set_tsfadjust -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e093086 ath9k_hw_set_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x900098a9 ath9k_hw_write_associd -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91e6d3ce ath9k_hw_disable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x925f78d1 ath9k_hw_gen_timer_start -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94047293 ath9k_hw_btcoex_init_scheme -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94af39d2 ath9k_hw_updatetxtriglevel -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95beaf9b ath9k_hw_txstart -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9705901b ath9k_hw_setuprxdesc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99136e17 ar9003_hw_bb_watchdog_dbg_info -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bfa1ff7 ath9k_hw_btcoex_init_3wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6134402 ath9k_hw_stopdmarecv -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xada69534 ath9k_hw_gpio_request_in -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae1ec9ff ar9003_mci_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb055e41e ath9k_hw_addrxbuf_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb45b4941 ath9k_hw_get_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb56591a9 ath9k_hw_getchan_noise -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8b87cd1 ar9003_paprd_populate_single_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8be0d54 ath9k_hw_kill_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9d363bd ath9k_hw_puttxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcd125e3 ath9k_hw_init_global_settings -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd26b7a3 ath9k_hw_process_rxdesc_edma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3314cd2 ath9k_hw_set_txq_props -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6de0386 ath9k_hw_abort_tx_dma -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9f2d30e ath9k_hw_startpcureceive -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb0ff2ad ath9k_hw_wow_enable -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1b2fd6d ath9k_hw_btcoex_init_mci -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1d7eb03 ath9k_hw_stop_dma_queue -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9d855b7 ar9003_mci_get_interrupt -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc190001 ath9k_hw_setantenna -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdce6bc67 ath9k_hw_setrxfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd97f48b ar9003_mci_send_message -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddd725c2 ath9k_hw_gettxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfa4a58b ath9k_hw_bstuck_nfcal -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4048946 ath9k_hw_gettsf64 -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6aa741d ar9003_get_pll_sqsum_dvc -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe98dc614 ar9003_is_paprd_enabled -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecb39979 ath9k_hw_btcoex_set_weight -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefbc05e9 ath9k_hw_disable_interrupts -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0931da1 ath9k_hw_set_tx_filter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1b410df ath9k_hw_beaconq_setup -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4a48ccd ath9k_hw_btcoex_init_2wire -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf689f9c2 ar9003_paprd_init_table -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7a334da ath9k_hw_putrxbuf -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9afae1c ath9k_hw_setmcastfilter -EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfed8746f ath9k_hw_wow_wakeup -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9a934bc2 stop_atmel_card -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9d176073 atmel_open -EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc413de7e init_atmel_card -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0d7a5dd1 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x129641f3 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x174cf6e8 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1947efc1 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ca0d02a ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e162555 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25eeecf8 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27079d18 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27c69485 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28f9f07c ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31aa3a9c ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3256dd9b ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32f4b269 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34e5b569 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x365cbbc7 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37c04eeb ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38fff80b ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a230088 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4225f680 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45ab68a8 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48590e22 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49aba669 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a747b2d ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4be2a616 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d499230 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x501aef1f ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53418706 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x541a0ac6 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x541b8f2e ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x557044fb ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56399819 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56545755 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59918671 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e770e43 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f737106 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60307fba ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6130d4d9 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62b6e316 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x632c4e03 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63592764 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63dfb771 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b0e231f ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d4f7f82 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72c3595e ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7581f48b ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a238169 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b1eb2c6 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c86ee5c ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82b62b39 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82ba512c ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84caadce ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87ed4508 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8862d5ed ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8db1c460 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ea210e1 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8faed3f1 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90de93fa ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97c3fd9e ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ae308ea ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9af50f81 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cd29f2e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d91f10d ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa002bef0 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1662306 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa48f311b ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa69cfccf ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae534772 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaec47969 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaefd39c6 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf0f552d ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb03f45d3 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb624b2cb ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6a7dcda ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7c2f9ac ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb82433f5 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb91c31ed ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9cac20e ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc053df4b ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc08e5e7f ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0a85c97 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0d4643c ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0fa4f1b ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc220a324 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc24db2f4 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc25bb34f ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2e8af58 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3f90327 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6edcf24 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb4d5779 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2d11016 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4e9e0ab ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd53f3f31 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb805a54 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5e467e1 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7bd47da ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe86f03ee ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeea8d35b ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf46e57aa ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf937c2f5 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb747316 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x93f6a64c atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x94728dfd stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xbf057fd0 init_atmel_card EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x471cf12d brcmu_pktq_peek_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4ca47a7a brcmu_pktq_pdeq_match -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x741e83a5 brcmu_pkt_buf_free_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x908fcf18 brcmu_pktq_flush -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x97c7c12f brcmu_pktq_pdeq_tail -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x98ed2a7b brcmu_pkt_buf_get_skb -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9b6f2bc1 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3c319a97 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x42d68375 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4f474656 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5cbfec3e brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x623afe31 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x820fb17c brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8485a102 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x868f9b4e brcmu_pktq_peek_tail EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb451a2a7 brcmu_pktq_penq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd268e297 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xae73f8bc brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbdf1fefe brcmu_pktq_pdeq EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe4265373 brcmu_pktq_pdeq -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf56f2bf7 brcmu_pktq_penq_head -EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf74cf7e9 brcmu_pktq_pflush -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x4f271bac stop_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x60a36e5c init_airo_card -EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xd53d5b70 reset_airo_card -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x09cc9823 libipw_freq_to_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1053e82d libipw_networks_age -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x19a2c37c libipw_txb_free -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1abeb562 libipw_wx_get_scan -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1c925242 libipw_set_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x37a44a5f libipw_channel_to_freq -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x420b4595 libipw_wx_set_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x86cda752 libipw_channel_to_index -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8defa838 libipw_rx_mgt -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9140de00 libipw_get_channel_flags -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x91da8f09 libipw_is_valid_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x94ff944f libipw_wx_get_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9ced1790 alloc_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9e8daca3 libipw_rx -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc354f32d libipw_xmit -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc94e2ba3 libipw_get_channel -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xccc17036 libipw_wx_set_encode -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd76f7905 libipw_get_geo -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe2583d51 libipw_wx_get_encodeext -EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xec55eec0 free_libipw -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x00d34478 il_set_rxon_ht -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x06013319 il_alloc_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a11171e il_get_passive_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0dc435ed il_pm_ops -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0fbd1fc5 il_rx_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1088ab06 il_leds_exit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x110db20d il_get_single_channel_number -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1137bbea il_eeprom_query_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x14c6648c il_mac_add_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1549076e il_set_rxon_hwcrypto -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17c3a48d il_send_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x18545dee il_mac_sta_remove -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x185a7eff il_chswitch_done -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1aa7a9f8 il_setup_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21ced753 il_tx_cmd_complete -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x225b5354 il_send_add_sta -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x231e277c il_txq_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26bc773d il_init_scan_params -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28de2848 il_mac_bss_info_changed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x292b6dbc il_power_initialize -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a3277dd il_rx_queue_update_write_ptr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a4b4bfe il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xda1d70fd brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdcc6f602 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe81666a1 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x321ae671 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x6ed3555e reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xabe37b4e init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x063efd97 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x069f5b78 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x24019eff libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x28a7b0f0 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x56b41549 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x649e2516 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x70995489 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7b543202 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa3285a64 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa66d8553 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xac931acb libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xafc8b3de libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb77c853e alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc27ab149 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc2e0e040 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc77c0e95 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd5f7c81b libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe3d905f3 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfd0c2ed3 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfed875a4 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02cd5529 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0aa09035 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f904f17 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f970672 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0ff1fae8 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15134583 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19feedd5 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x207fee51 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21fe3e5e il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23552f70 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26198cd5 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26ddda62 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2772efcd il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a923899 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b26e5dc il_free_geos EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f2649ed il_cmd_queue_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fb85459 il_cmd_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31512456 il_send_lq_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x327a1be5 il_send_cmd_sync -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x355f561a il_update_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x373bd727 il_init_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d8d094d il_scan_cancel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eb272c9 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x309ac324 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30d6fe06 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34765150 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x35f53c65 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3800caa5 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39640fa1 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d1928fd il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3deb2c6c il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4100716b il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4130befa il_get_channel_info EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44f051c7 il_send_rxon_timing -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x45733cf2 il_free_channel_map -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4905a707 il_check_rxon_cmd -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x497fe3fb il_mac_conf_tx -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x501684fd il_is_ht40_tx_allowed -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50fb53fc il_eeprom_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x517a83f3 _il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x525042d2 il_cancel_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53cbe223 _il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5677826f il_full_rxon_required -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x571ce177 il_apm_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a23887e il_free_geos -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64162821 il_send_bt_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67013268 il_tx_queue_unmap -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x68bf1d72 il_hdl_pm_sleep -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a15d657 il_write_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b1f242e il_mac_reset_tsf -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75ab717a il_get_active_dwell_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b43f59f il_hdl_csa -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dbcd899 il_fill_probe_req -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e926bd0 il_setup_rx_scan_handlers -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e9522b5 il_connection_init_rx_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83820d34 il_mac_hw_scan -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83dd3d7d il_power_update_mode -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84abefe4 il_get_lowest_plcp -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8510fbad il_mac_config -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86a89ac6 il_eeprom_query16 -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89528eb2 il_irq_handle_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91f8bb68 il_hdl_pm_debug_stats -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93631435 il_mac_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93fa3942 il_tx_queue_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x973ad929 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42d2f622 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x463eba85 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x489de2b5 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4c8864ef il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50644df2 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50ce661d il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51a25bcd il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54b6d060 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5521ab48 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57b91a9f il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x582e001e il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59481d53 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x59b8366e _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e23244f il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ebd39fb il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x618dc6a4 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64693b3d il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64b9ce03 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6767e8b5 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x677f461c il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x69298385 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6ba2c45a il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6f1e96ea il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7028ba4a il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77045ebb il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a041359 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7b15c0ef il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c9f41e2 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dcc3f83 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84e93a0a il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x880b4097 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a522d02 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8cd326d4 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92808812 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x931974f0 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93235b9d il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x937fbeba il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93d5beb5 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95527405 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x998ce9bc il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99f519db il_send_add_sta EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cfc6578 il_usecs_to_beacons -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9bfdd48 il_force_reset -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xadd65a0f il_add_beacon_time -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb2808f06 il_set_rate -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb38d6527 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9e61905e il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9fa66f50 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa57aa054 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5d06622 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8e5fdd7 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab26b9ff il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0dd020e il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3e32033 il_pm_ops EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8dee293 il_leds_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbaee658c il_rd_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc123a3c6 il_poll_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1d86fac il_restore_stations -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9fa6112 il_read_targ_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd372cb46 il_tx_queue_init -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd47fcdf6 il_setup_scan_deferred_work -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4d50b80 il_free_txq_mem -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd83ab845 il_set_decrypted_flag -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd992cd57 il_set_rxon_channel -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda23d45d il_rx_queue_alloc -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd97c023 il_send_cmd_pdu -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xddb1c6d7 il_dbgfs_register -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdfe29087 il_wr_prph -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe65a31e9 il_send_stats_request -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe844fc68 il_set_tx_power -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9962842 il_get_channel_info -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9c5a508 il_tx_cmd_protection -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea868f86 il_scan_cancel_timeout -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeda89335 il_add_station_common -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeea302f2 il_eeprom_free -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeeeb13c4 il_send_cmd_pdu_async -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf0e10a70 il_mac_flush -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf34e9053 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9026a65 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb19153a il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfa62916 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc20d9ad0 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2880885 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc385e2a4 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc461c80e il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9db8f31 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd19e7ded il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6824b02 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe19437f6 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6381102 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe63fb48b il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe826dc83 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea11ab5b il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec0eb19e il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed7594c0 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf181ba72 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf52d2663 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf5ae8246 il_get_lowest_plcp EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7d834c8 il_set_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf90e2d35 il_apm_stop -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb51cb09 il_clear_bit -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfb5740a0 il_dbgfs_unregister -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc836848 il_set_flags_for_band -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdb1ccc9 il_hdl_error -EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdd64b76 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf78dcaf3 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf857e310 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf9a4d9a2 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfce0ab37 il_power_update_mode EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0fa4d950 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1758649b iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x264ba3b0 __traceiter_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5f407967 iwl_trans_pcie_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7f9ad2d7 __traceiter_iwlwifi_dev_ucode_wrap_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9828a56a __tracepoint_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d498b22 __traceiter_iwlwifi_dev_ucode_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9e03450f __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb396913a __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc2846daa __traceiter_iwlwifi_dev_ucode_cont_event EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event -EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xebdc9ddb __traceiter_iwlwifi_dev_ucode_wrap_event -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1814e6f7 hostap_set_word -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1a35c474 hostap_master_start_xmit -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x334decc1 hostap_free_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3a701c7a hostap_set_roaming -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4946d46d hostap_init_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x530ddf16 hostap_remove_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5a8455fb hostap_80211_ops -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6b52404e hostap_set_string -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6bbfc758 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x068e8069 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1cd8167e hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f61f3ae hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3b56202e hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x404b8558 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x444afe1e hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x48acf519 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4b996276 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4cb80e56 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d2d6064 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5cc359f7 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5fe9d810 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x623818f5 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6fa82d36 hostap_set_hostapd EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75f5e322 hostap_80211_rx EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa3447295 hostap_remove_interface -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa6daffe9 hostap_get_porttype -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa9f10778 prism2_update_comms_qual -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb398e786 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x83cb103d hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9e29f1f4 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa5785f4f hostap_80211_ops EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbf358c2e hostap_init_data -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc0e8dcce hostap_set_hostapd_sta -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc4dc1777 hostap_info_init -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc9cc60dc hostap_setup_dev -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xebd6b51c hostap_handle_sta_tx_exc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf117f95e hostap_set_encryption -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf2226e31 hostap_set_antsel -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf4966c23 hostap_init_ap_proc -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf5111dc7 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb67379c9 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbd2fef02 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbdb359f9 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc6d4d680 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe793cd95 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeab6d351 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xed09af49 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf0fdd82a hostap_init_proc EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfd57d0e2 hostap_check_sta_fw_version -EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfdf1f259 hostap_set_auth_algs -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x22c1c859 orinoco_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x289984bb free_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x33971e5b orinoco_tx_timeout -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6915b165 __orinoco_ev_info -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x782040f3 orinoco_process_xmit_skb -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fc6bf81 orinoco_if_add -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x867f066f orinoco_up -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8ecc9311 orinoco_open -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x913ecdec orinoco_stop -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x966c4d01 alloc_orinocodev -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x97032aab orinoco_change_mtu -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x98dfaca3 orinoco_if_del -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa4d8ffa1 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2d2eeb98 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x338e4154 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3a2236cc orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5c8e61e3 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x676f1faa orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x83c8694c free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x87093ee0 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x899025ae orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8f389e8b orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x96ce6ac2 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x98fb601d orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa63b35fb orinoco_tx_timeout EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc30d1080 __orinoco_ev_rx -EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcc3ef25d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xad1d5250 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd96b9ac9 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf696c006 __orinoco_ev_rx EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x041428d5 mt76_wcid_key_setup EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x327a9822 mt76_rx_signal -EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x4119b28a mt76_wcid_key_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd6830198 rtl_btc_get_ops_pointer -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04e33e09 rtl92c_firmware_selfreset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d5dbc8a rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x79ea3507 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05cb12de _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b1049ac rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f8827cc rtl92c_dm_watchdog EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2838c1ee rtl92c_dm_watchdog -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3629b6d0 rtl8192_phy_check_is_legal_rfpath -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41cb6f2b rtl92c_dm_bt_coexist -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42ce7609 rtl92c_dm_init_rate_adaptive_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c5f5c5e _rtl92c_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4ee8f162 rtl92c_phy_set_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5148e5d1 _rtl92c_phy_fw_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x521713e2 _rtl92c_phy_dbm_to_txpwr_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53321f8b rtl92c_dm_init_edca_turbo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a009f7b rtl92c_phy_set_io -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ef8aff3 rtl92c_phy_sw_chnl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6577c0b7 rtl92c_set_fw_pwrmode_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68802355 rtl92c_phy_query_bb_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e50fb34 _rtl92c_phy_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e5b1bba rtl92c_phy_rf_config -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x89d883b7 rtl92c_fill_h2c_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90c2d298 _rtl92c_phy_set_rf_sleep -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x91f95567 _rtl92c_phy_rf_serial_write -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a8091c9 rtl92c_phy_sw_chnl_callback -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9cb4a33a rtl92ce_phy_set_rf_on -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d49dccb rtl92c_phy_set_io_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb10992dc rtl92c_dm_check_txpower_tracking -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba87ee27 _rtl92c_phy_fw_rf_serial_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd3338e2 rtl92c_phy_lc_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7b37411 rtl92c_phy_ap_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7f41fb6 rtl92c_dm_write_dig -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc947ec5f _rtl92c_store_pwrindex_diffrate_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd05e61aa rtl92c_phy_update_txpower_dbm -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd761ff09 rtl92c_bt_rssi_state_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9002f00 rtl92c_dm_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb2fbb4c rtl92c_phy_iq_calibrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xddede771 rtl92c_download_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe77c3d06 rtl92c_set_fw_joinbss_report_cmd -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xee14518a rtl92c_phy_set_rfpath_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf088ce7d _rtl92c_phy_init_bb_rf_register_definition -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa1a116f rtl92c_phy_set_txpower_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb377bc8 rtl92c_phy_set_bw_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc022ea5 rtl92c_dm_rf_saving -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe8ed84c _rtl92c_phy_bb8192c_config_parafile -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x51ab2dab rtl_pci_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6664611c rtl_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa0494714 rtl_pci_resume -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd59fb0b3 rtl_pci_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1bdd7765 rtl_usb_suspend -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x54e86382 rtl_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x966e549e rtl_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xee8b8622 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3353d82b rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x355a798c rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3bf491ae _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e2ba36a rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45547d36 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47c08010 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49ebfd98 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6482f9a9 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x694849d1 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6b020da8 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6db07959 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x757e902b rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x767b8909 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x783bfc13 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82640fe3 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86b974fe rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x877130a6 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8a83dec0 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97ac29f4 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa77234ba _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab044518 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad3077eb rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xae30ed55 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaeb3c1d3 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xafd518bb _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6d89afa rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc738285f _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc93e3e6e _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd953c293 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdaff48b5 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe0d1192b rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe14e1201 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe7562dcb rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe78f9d1d rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea5d0153 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeeb0c922 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf044f994 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa3001a2 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x083bd88c rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xad25c5df rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xbf628281 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcab47526 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x55f07469 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8fbdfc4f rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbf4ecbb7 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xef9391c9 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x048f6573 rtl_ps_disable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13c0ffcd rtl_send_smps_action -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1917d42b rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c42f6f0 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x105a8e4e efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1663166c rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x192e9e65 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a4496f6 rtl_ps_enable_nic EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1fd69628 rtl_cam_del_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2df470d4 rtl_ps_enable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30920922 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x23c25bb1 rtl_cmd_send_packet EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x333f8351 rtl_ps_disable_nic -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x43851a1a rtl_phy_scan_operation_backup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45762595 rtl_rfreg_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b32fc3f rtl_bb_delay -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b80b6bf rtl_dm_diginit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b92b07e rtl_rx_ampdu_apply -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d56cfad rtl_init_sw_leds -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e219060 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x411439b5 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x468665c8 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x499a0824 efuse_power_switch EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ecd61b7 efuse_read_1byte -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6eec09b5 rtl_cam_mark_invalid -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d54b3b2 rtl_cam_empty_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80d64a31 rtl_signal_scale_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x852d4790 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ccee79e rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60188f16 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60295fb6 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6488b18d rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65d25217 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73a03511 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x754b3a97 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ae6298f rtl_init_sw_leds +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e8f0fa2 rtl_rx_ampdu_apply EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa167bd84 rtl_get_tcb_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa1c19640 rtl_cam_reset_all_entry -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb139aa6c rtl_process_phyinfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb174313a efuse_one_byte_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb66f008a rtl_hal_pwrseqcmdparsing -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9b164f9 rtl_cmd_send_packet -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1782172 rtl_init_rfkill -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcf312ae2 rtl_mrate_idx_to_arfr_id -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb6706fd efuse_shadow_read -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe1fd6422 rtl_efuse_shadow_map_update -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe4835e86 rtl_collect_scan_list -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7a8dabc rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f6b4a7a efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96717062 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9a269d72 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa15a6d33 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb41ef69e rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb0ccf8a rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce258af7 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd64d8200 rtl_efuse_shadow_map_update EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage -EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf02c6ed3 efuse_power_switch -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x70b24af5 rtw8723d_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xed723d78 rtw8821c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x9b523047 rtw8822b_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x74905b79 rtw8822c_hw_spec -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x006e0791 rtw_phy_get_tx_power_index -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x032a948c rtw_phy_load_tables -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03c165ee rtw_tx_fill_tx_desc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0c538355 rtw_bf_set_gid_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x120496f2 rtw_phy_pwrtrack_get_delta -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x132ce2ac check_hw_ready -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a4df06c rtw_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1aac34aa rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3c9f07b rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf655dd3c rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfad28e0e rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd100e47 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xe618cbc9 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x7bd8bc44 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x0df8b17b rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xe23ada45 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x00fb8d4b rtw_tx_queue_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01119a4f rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02772b68 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x02785277 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x062a70dd rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08b0a0e6 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b7330ea rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x110056f2 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x13a22aba rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x177002fe rtw_bf_set_gid_table EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dc2d072 rtw_tx_ac_to_hwq -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1ed54052 rtw_set_rx_freq_band -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x21b9bbde rtw_phy_write_rf_reg_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x247da128 __rtw_dbg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b33be02 rtw_regd_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e475893 rtw_read8_physical_efuse -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x312cd8ae rtw_phy_read_rf EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x34962a9d rtw_tx_fill_tx_desc EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x37acc238 rtw_tx_queue_mapping -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f585126 rtw_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41783273 rtw_tx_write_data_rsvd_page_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42e12fc6 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36cccd6c rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x39197c7c rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ef88a09 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x420f1d02 rtw_bf_remove_bfee_su EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x44474273 rtw_phy_write_rf_reg_mix -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49866cce rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x465706cd rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c5e406d rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ffa5ed8 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50cbedb8 rtw_phy_init EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ede47e0 rtw_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ff9c6df rtw_bf_remove_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6c605b7c rtw_unregister_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ec320c7 rtw_coex_read_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fa95685 rtw_coex_write_indirect_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x736e094a rtw_bf_phy_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77affc7b rtw_fw_c2h_cmd_isr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x78a7cd64 rtw_power_mode_change -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x827aeec9 rtw_register_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82ced91d rtw_phy_cfg_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85149a0f rtw_fw_inform_rfk_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a1047be rtw_fw_c2h_cmd_rx_irqsafe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8f217b20 rtw_phy_cfg_agc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x900efceb rtw_phy_cfg_bb -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x968293fd rtw_dump_reg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9854dd83 rtw_phy_pwrtrack_avg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9995e9ba rtw_rx_stats -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0f4c3e6 rtw_bf_enable_bfee_mu -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaadef567 rtw_dump_fw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xab283c1d rtw_parse_tbl_txpwr_lmt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaffcd4fd rtw_phy_pwrtrack_need_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb029e877 rtw_bf_cfg_csi_rate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2854a64 rtw_phy_parsing_cfo -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb7fbb161 rtw_fw_do_iqk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbb364bd1 rtw_bf_remove_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5547184 rtw_phy_read_rf_sipi -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc61a2c9b rtw_parse_tbl_bb_pg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd2f5a890 rtw_tx_write_data_h2c_get -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc9cb22b rtw_phy_pwrtrack_get_pwridx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe06c1d41 rtw_phy_pwrtrack_thermal_changed -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe14406aa rtw_phy_set_tx_power_level -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe43e3feb rtw_phy_set_edcca_th -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe52a5b8b rtw_parse_tbl_phy_cond -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xea747c04 rtw_tx_report_enqueue -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecac733a rtw_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xedd700ba rtw_set_channel_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf08856a5 rtw_phy_cfg_mac -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf98c4d27 rtw_bf_enable_bfee_su -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfc944980 rtw_phy_pwrtrack_need_lck -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd2dfd5f rtw_rx_fill_rx_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfdad44d3 rtw_phy_config_swing_table -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2bbef8ac rtw_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x5228b684 rtw_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xe23b534e rtw_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf31e1616 rtw_pci_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x25bef3ed rtw_sdio_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x53b32dde rtw_sdio_shutdown -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xc7b07084 rtw_sdio_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xffae10be rtw_sdio_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x48170a1e rtw_usb_disconnect -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x5d0f38f5 rtw_usb_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0xf4933dd4 rtw8851b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x3ec783ea rtw8852a_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x4959511a rtw8852b_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xd2fc1d75 rtw8852c_chip_info -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x021f6587 rtw89_btc_ntfy_wl_rfk -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x024538c5 rtw89_phy_set_txpwr_offset -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x063b9e9e rtw89_core_unregister -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06935ffc rtw89_phy_read_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x088dcda5 rtw89_core_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0befc6e3 rtw89_btc_set_policy_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c311664 rtw89_encode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x10f186a2 rtw89_mac_coex_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x19117edd rtw89_phy_set_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1a99857f rtw89_phy_write_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x239733e1 rtw89_phy_set_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2408765f rtw89_phy_load_txpwr_byrate -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x24a49127 rtw89_core_napi_start -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x24dd1304 rtw89_phy_config_rf_reg_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x30d03835 rtw89_mac_disable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3141fad4 rtw89_phy_read32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3324ed92 rtw89_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3dfd4be6 rtw89_mac_get_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45893fb1 rtw89_mac_cfg_ctrl_path_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45c1f812 rtw89_core_register -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4651d634 rtw89_chip_info_setup -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x470916a4 rtw89_decode_chan_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d5cc2d6 rtw89_mac_stop_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4dc1e7dc rtw89_alloc_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5458172d rtw89_core_query_rxdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x56b6a74b rtw89_mac_cfg_gnt_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5752dbd6 rtw89_fw_h2c_rf_ntfy_mcc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x582fecb5 rtw89_free_ieee80211_hw -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5da62666 rtw89_rfk_parser -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6133ce43 rtw89_mac_write_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x68fc689d rtw89_core_rx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b92242f __rtw89_debug -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x72690b0e rtw89_read_efuse_ver -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x728c4315 rtw89_core_napi_deinit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7426705c rtw89_core_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x78f5cce5 rtw89_phy_set_txpwr_limit_ru -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8240d034 rtw89_mac_resume_sch_tx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a19865e rtw89_btc_set_policy -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x915fa2ef rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b0fa5a9 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6144cb34 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64ef63e2 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x667aba72 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a1c9f99 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6bf59aa4 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ea8fed0 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6fa3310c rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x712dd9f3 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74da1d6f rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7935bf52 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c41ff73 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e12b01f rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x81b984b9 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x855570d9 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8bea7734 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9541f98d rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95a2e8ae rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x98347353 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9bc9ed19 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa28860f5 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa29bccaf rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5263b8c rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6c0900c rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa91d9f17 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb106439b rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb2465e55 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba70d533 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc8b4df5 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbdd61683 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc58c5d34 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc98ed199 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf79c0b8 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1b95d73 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd35e6bcd rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda05ecf8 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xda16f5e8 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7efba13 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xea6c61f2 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeebe8bfe rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2892a63 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfff7b539 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0f90fe62 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3c770f14 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x83ee8b88 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd73010d8 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0x06876e68 rtw_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xa46f020a rtw_sdio_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xbe3c6d3d rtw_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_sdio 0xf7b7f2e8 rtw_sdio_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0x490f1df5 rtw_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_usb 0xc3ee92ad rtw_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8851b 0xb97610de rtw8851b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x7322aee0 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852b 0x04bc7c10 rtw8852b_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x9f19307f rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x019d08ab rtw89_free_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x035bdd63 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04bc8b6d rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0c143bc6 rtw89_btc_set_policy_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x144d4af8 rtw89_phy_set_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1781a7b4 rtw89_decode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x195253b0 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1a0ffb2f rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1c731c0c rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1fe3322a rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28811544 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2b3ea70b rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2d949442 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2ecb07c4 rtw89_phy_set_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3075ff02 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x359f41dc rtw89_phy_set_txpwr_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x37d84dbd rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x396a24b4 rtw89_read_efuse_ver +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x39efee8a rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3ff2e6d1 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x442d5ffc rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f2fb5fc rtw89_phy_set_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x513f29bb rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x58033131 rtw89_mac_read_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5f6f6049 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5f897a80 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6066a79e rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66a0b82b rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d3eb45b rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x73179fc2 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x766ded21 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7d167539 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7de34fb3 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x832ec265 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a2a2c6e rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8aa97b8f rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b53738c rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8d052eca rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8de27b7b rtw89_btc_set_policy EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9ac85705 rtw89_mac_size -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa16a3508 rtw89_mac_cfg_gnt -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa1d6f3cf rtw89_core_fill_txdesc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3f4c04b rtw89_mac_cfg_ppdu_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa999a8dd rtw89_phy_write_reg3_tbl -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9fef6ef rtw89_mac_enable_bb_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb232caa1 rtw89_phy_read_rf_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb2794043 rtw89_phy_tssi_ctrl_set_bandedge_cfg -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb367ee24 rtw89_fw_h2c_dctl_sec_cam_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb832bc55 rtw89_phy_write_rf -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbfdaae86 rtw89_mac_read_xtal_si -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcc1a960f rtw89_mac_get_txpwr_cr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcc37a041 rtw89_phy_read_txpwr_limit -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd1c486a rtw89_core_fill_txdesc_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd3af6722 rtw89_ser_notify -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xddc9059f rtw89_mac_cfg_ctrl_path -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdfe7e301 rtw89_phy_get_txsc -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe12c42ab rtw89_core_napi_init -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe359163d rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa4ec25d8 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa835c52c rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa8f4da94 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xab72b954 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac69c4f0 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb131c18b rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb2c6c9b7 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb89ea6b5 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbc81d6a4 rtw89_phy_read32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc9732d2d rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4549a07 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdf21f91c rtw89_encode_chan_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe2de7320 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f2603a rtw89_mac_resume_sch_tx EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xecb79ec4 rtw89_mac_resume_sch_tx_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0d50e8f rtw89_phy_write32_idx -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf5db20ee rtw89_core_napi_stop -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfa12409b rtw89_mac_set_err_status -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd582f5c rtw89_mac_coex_init_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x080235f6 rtw89_pci_ltr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x15780319 rtw89_pci_enable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2500f095 rtw89_pm_ops -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x299e9c70 rtw89_pci_probe -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x62883878 rtw89_pci_fill_txaddr_info_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x63a61ef2 rtw89_pci_disable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x67b0a53c rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe663c02a rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe71422cb rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe81435e2 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe843a13f rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xea395118 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xebdb2d84 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee4582ab rtw89_alloc_ieee80211_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xee8ec1f3 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfe6bfd1b rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0a6df963 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1bb9ea54 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x30a8bb6e rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x47c125e0 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x49b97eb0 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5964587f rtw89_pci_disable_intr EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6efd9f2c rtw89_bd_ram_table_dual EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71162055 rtw89_bd_ram_table_single -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x84468271 rtw89_pci_disable_intr -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x89773645 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8f18dd41 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x955dd982 rtw89_pci_recognize_intrs_v1 EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xaa0b3a9e rtw89_pci_config_intr_mask_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb53796c4 rtw89_pci_remove -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbe808649 rtw89_pci_recognize_intrs_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc69b305a rtw89_pci_enable_intr_v1 -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xcd7194b7 rtw89_pci_config_intr_mask -EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe7fd1c5a rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa1848c31 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa2aa698e rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb33316b9 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbe84c4fc rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc85ad917 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xce361cfb rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd449b890 rtw89_pci_config_intr_mask EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 -EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe33b8aee rsi_config_wowlan -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x06e5dc6a wl1271_free_tx_id -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x59535bf2 wlcore_tx_complete -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8c5accfb wl12xx_is_dummy_packet -EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf89dac00 wlcore_calc_packet_alignment -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x205d0e8e fdp_nci_probe -EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5a120105 fdp_nci_remove -EXPORT_SYMBOL drivers/nfc/microread/microread 0x87a63e3b microread_probe -EXPORT_SYMBOL drivers/nfc/microread/microread 0x9c09e53a microread_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1d5a24dd nxp_nci_remove -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4560c67d nxp_nci_probe -EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc62c3cc3 nxp_nci_fw_recv_frame -EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x1b24c487 pn533_recv_frame -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3c74d03d pn544_hci_remove -EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x452e8667 pn544_hci_probe -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x269f8c12 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x346e45c9 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6a68889e wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x89ad6ed2 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa7cae3fd wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa816dd9e wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x525247f4 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x530ad6c8 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x9d2b1712 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xf8eb5425 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x19e19d0b nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd53b62fe nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xddc77e12 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x2ba26b6b pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x58966122 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5fa3af4e pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2b22496c s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x35d57b3f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6af41007 s3fwrn5_phy_power_ctrl EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xacd14c8b s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa74d205a s3fwrn5_recv_frame EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf54821f0 s3fwrn5_remove -EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf6b75295 s3fwrn5_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x00f224c2 ndlc_remove -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a0a9f9e ndlc_open -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x32561765 ndlc_probe -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8a540f8c ndlc_send -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8c0fda0a st_nci_se_init -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbb614ada ndlc_close -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdc6dfa77 st_nci_se_deinit -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe30f4290 ndlc_recv -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf0d6f3fc st_nci_se_io -EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf6019a99 st_nci_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0458178d st21nfca_vendor_cmds_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a8c258f st21nfca_se_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2287b4a1 st21nfca_hci_disable_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2563ecbc st21nfca_apdu_reader_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3cda46ad st21nfca_hci_se_io -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x47aa0cbf st21nfca_dep_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x50d9f9eb st21nfca_hci_probe -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x599250c7 st21nfca_hci_discover_se -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5f3fb55a st21nfca_im_send_atr_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x71c472b9 st21nfca_connectivity_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x71ff2802 st21nfca_tm_send_dep_res -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x74f5fdc4 st21nfca_dep_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9488f14e st21nfca_se_init -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa96093dd st21nfca_hci_loopback_event_received -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb050dfd3 st21nfca_hci_remove -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc427a8f0 st21nfca_dep_deinit -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4819178 st21nfca_im_send_dep_req -EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfc91260e st21nfca_hci_enable_se -EXPORT_SYMBOL drivers/ntb/ntb 0x1a0d1dc6 ntbm_msi_request_threaded_irq -EXPORT_SYMBOL drivers/ntb/ntb 0x1f77bb24 ntb_msi_clear_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x24417a6a ntb_msi_peer_trigger -EXPORT_SYMBOL drivers/ntb/ntb 0x2a0a9a36 ntb_unregister_device -EXPORT_SYMBOL drivers/ntb/ntb 0x63cb4089 ntb_default_peer_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0x6ea964c4 ntb_msi_setup_mws -EXPORT_SYMBOL drivers/ntb/ntb 0x709610ab ntb_default_peer_port_idx -EXPORT_SYMBOL drivers/ntb/ntb 0x78cabea0 ntb_msg_event -EXPORT_SYMBOL drivers/ntb/ntb 0x9288445f ntb_set_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0x9e613240 ntbm_msi_free_irq -EXPORT_SYMBOL drivers/ntb/ntb 0xa0843d26 ntb_db_event -EXPORT_SYMBOL drivers/ntb/ntb 0xb09534a0 ntb_default_port_number -EXPORT_SYMBOL drivers/ntb/ntb 0xc8136d43 ntb_msi_init -EXPORT_SYMBOL drivers/ntb/ntb 0xd03bc4ff ntb_msi_peer_addr -EXPORT_SYMBOL drivers/ntb/ntb 0xd1145539 ntb_default_peer_port_count -EXPORT_SYMBOL drivers/ntb/ntb 0xd1f11524 ntb_unregister_client -EXPORT_SYMBOL drivers/ntb/ntb 0xd2a10b63 ntb_clear_ctx -EXPORT_SYMBOL drivers/ntb/ntb 0xe4489ca4 ntb_register_device -EXPORT_SYMBOL drivers/ntb/ntb 0xe834a348 ntb_link_event -EXPORT_SYMBOL drivers/ntb/ntb 0xf911507c __ntb_register_client -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd486f935 nvdimm_namespace_detach_btt -EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xfc3dbc1e nvdimm_namespace_attach_btt -EXPORT_SYMBOL drivers/parport/parport 0x0256451e __parport_register_driver -EXPORT_SYMBOL drivers/parport/parport 0x0301bb30 parport_claim_or_block -EXPORT_SYMBOL drivers/parport/parport 0x040b2ced parport_write -EXPORT_SYMBOL drivers/parport/parport 0x106251b3 parport_ieee1284_ecp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x132b5730 parport_release -EXPORT_SYMBOL drivers/parport/parport 0x15089019 parport_unregister_device -EXPORT_SYMBOL drivers/parport/parport 0x2690d6b3 parport_ieee1284_read_byte -EXPORT_SYMBOL drivers/parport/parport 0x2a411713 parport_ieee1284_read_nibble -EXPORT_SYMBOL drivers/parport/parport 0x30ec2581 parport_ieee1284_epp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0x3b71cc5f parport_register_port +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1cf0a0b8 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1d32ab95 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x23efb53a ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4ab4f826 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9d96b70e st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa6a1c58d ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xafdc5881 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbc597ed1 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe4f4318b st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfe9e9fcc st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x101e5dab st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2348bda0 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x29478e89 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2b8b1b82 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2ca372d2 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3d70e1d8 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x61e2e854 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e34bdd0 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e6e9490 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76a545d5 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x78d19ff1 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a0bbdbb st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa0c519ef st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xce08cf04 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4b26ecc st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe3dbfcaf st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe418f138 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf06a4051 st21nfca_se_init +EXPORT_SYMBOL drivers/ntb/ntb 0x1d97aab0 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x1e06d20b ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x25a3c3af ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x6fd80deb ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x72daaee7 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7763e739 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x8c7d2836 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x8fc8766c ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x946c5edc ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x968f1212 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xa2c8836a ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xb195d348 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xb55dde47 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb921e1ab ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc0fd4d11 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xcb7be7a2 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xe4fb57e5 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xedfc49af ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xf17b9e4a ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xf3c840fc __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x65cabbd9 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x95c4bf56 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x00b042fe parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x19cc9066 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x1e962dad parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x26beabbd parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x2a6f6a1d parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x2ea1ed29 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x361bad16 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x361fb1ba parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x398f7fc5 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x4b49b882 parport_ieee1284_epp_write_addr EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt -EXPORT_SYMBOL drivers/parport/parport 0x564ec54f parport_wait_event -EXPORT_SYMBOL drivers/parport/parport 0x5d5be180 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x5893cd9c parport_get_port EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler -EXPORT_SYMBOL drivers/parport/parport 0x666a8612 parport_announce_port -EXPORT_SYMBOL drivers/parport/parport 0x78ac1519 parport_ieee1284_epp_read_addr -EXPORT_SYMBOL drivers/parport/parport 0x840e95d2 parport_wait_peripheral -EXPORT_SYMBOL drivers/parport/parport 0x88ed032c parport_register_dev_model -EXPORT_SYMBOL drivers/parport/parport 0x90186dc5 parport_ieee1284_epp_write_data -EXPORT_SYMBOL drivers/parport/parport 0x9c8ac6cd parport_negotiate -EXPORT_SYMBOL drivers/parport/parport 0xa66091f7 parport_get_port -EXPORT_SYMBOL drivers/parport/parport 0xb09619f7 parport_ieee1284_ecp_write_addr -EXPORT_SYMBOL drivers/parport/parport 0xb1cd8c4a parport_ieee1284_write_compat -EXPORT_SYMBOL drivers/parport/parport 0xb9e60a5e parport_claim -EXPORT_SYMBOL drivers/parport/parport 0xc8f2badd parport_find_base -EXPORT_SYMBOL drivers/parport/parport 0xcf9beab4 parport_del_port -EXPORT_SYMBOL drivers/parport/parport 0xdc71a40d parport_ieee1284_ecp_read_data -EXPORT_SYMBOL drivers/parport/parport 0xdda62c75 parport_read -EXPORT_SYMBOL drivers/parport/parport 0xe1dbb24e parport_set_timeout -EXPORT_SYMBOL drivers/parport/parport 0xe71276a3 parport_remove_port -EXPORT_SYMBOL drivers/parport/parport 0xe7166a0f parport_put_port -EXPORT_SYMBOL drivers/parport/parport 0xfce1d85e parport_find_number -EXPORT_SYMBOL drivers/parport/parport 0xfe95b11b parport_ieee1284_epp_read_data -EXPORT_SYMBOL drivers/parport/parport_pc 0x18bc8bfb parport_pc_probe_port -EXPORT_SYMBOL drivers/parport/parport_pc 0xa66d1d60 parport_pc_unregister_port -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x3d90f6e9 iproc_pcie_setup -EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xec34163d iproc_pcie_remove +EXPORT_SYMBOL drivers/parport/parport 0x6bc7ccb0 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x78826817 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x85aba1f0 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x8dae88ac parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x92a1dee1 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x9d47268f parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xa32b2108 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xb0092957 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xb301cd08 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xb5220a21 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb767410b parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xbcf137ef parport_read +EXPORT_SYMBOL drivers/parport/parport 0xca681149 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xcb3384f4 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xce9d2813 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xdc5fd903 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xebbdf0c6 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xf01eac80 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xf039d6b0 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xfebbcc15 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x444b5f85 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xfd21b829 parport_pc_probe_port +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xead7c8f8 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xf7cf8c02 iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x03805c62 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1ba706b4 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1ef49378 pcmcia_reset_card EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x35d61f33 pcmcia_parse_uevents -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5814efac pcmcia_reset_card -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5d477a60 pcmcia_unregister_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6bc128b9 pcmcia_get_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6fcf0157 pcmcia_put_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x732cad85 pcmcia_socket_class -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x96f00a97 pcmcia_get_socket_by_nr -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc739e564 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x292f7d83 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4ad6529f pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x54fdca3a pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6ab1a5f1 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x85aba2f0 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb7642852 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcee9a1e8 pcmcia_parse_uevents EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf1845486 pcmcia_register_socket -EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf8bfe2b9 pcmcia_parse_events EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem -EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xef13fc48 pccard_static_ops -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1d5cec6c cros_ec_register -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3c547054 cros_ec_resume -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xb4256588 cros_ec_suspend -EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf009b57e cros_ec_unregister +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x4ce138d4 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1eef395e cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5ac3e9a8 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xd2b2fc74 cros_ec_resume EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread -EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xde947310 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf3ba604c cros_ec_register +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x24e77255 rohm_regulator_set_dvs_levels EXPORT_SYMBOL drivers/rpmsg/qcom_glink 0xd7119b40 qcom_glink_native_rx -EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x520374e0 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x91fc888c qcom_smd_register_edge EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0xadc8e61f qcom_smd_unregister_edge -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x5bac6f19 rpmsg_chrdev_eptdev_destroy -EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x7e87248d rpmsg_chrdev_eptdev_create -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x075c37ba rpmsg_find_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0bc1be6b rpmsg_register_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1e0e35aa rpmsg_release_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x26020e58 rpmsg_sendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2f491e78 unregister_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x42f1e8af rpmsg_poll -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5860d64d rpmsg_send_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7bdcd74c rpmsg_create_channel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7e22d4ca rpmsg_unregister_device -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xae8efe9e rpmsg_trysend -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2cb480a rpmsg_trysend_offchannel -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb3211756 rpmsg_destroy_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb3d5899a rpmsg_trysendto -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb3e7605e rpmsg_create_ept -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb791fa34 rpmsg_class -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xca82152c __register_rpmsg_driver -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd8a65d6e rpmsg_get_mtu -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xefe33d44 rpmsg_register_device_override -EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf7116314 rpmsg_send -EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x60af5710 rpmsg_ns_register_device -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2bcc63ca scsi_esp_template +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x0e47860a rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xc7a8e885 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x396dd993 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x442a94b8 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4d40aa70 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x52cbf16f rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa0be3947 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa4e81337 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaab583e0 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xae1555a9 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb308d29b rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc71c76ad rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc75b7e40 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcf6f590f rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd3c647d4 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd6d7ef67 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd95adfaf rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe9809819 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xef313b3d __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf78ac823 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfa2949b3 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x5c82bd8d rpmsg_ns_register_device +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x07d60d51 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x480ebcf0 scsi_esp_template EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr -EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5b4eb88c scsi_esp_cmd -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc61e3395 scsi_esp_register -EXPORT_SYMBOL drivers/scsi/esp_scsi 0xeb02acf6 scsi_esp_unregister -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x106b40f0 fcoe_transport_detach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x618cac43 fcoe_ctlr_els_send -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7b08e7c3 fcoe_transport_attach -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9102bfed fcoe_ctlr_destroy -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa6cea5d1 fcoe_ctlr_recv -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaea2899b fcoe_ctlr_link_up -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc528c855 fcoe_ctlr_link_down -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd2984bf8 fcoe_ctlr_set_fip_mode -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd6c9fb39 fcoe_fcf_get_selected -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeac84b08 fcoe_ctlr_recv_flogi -EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf7d80998 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcb0d4689 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe611d9ea scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19729c52 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1fe9e576 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x33bb8f20 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x58d82813 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5a9b3226 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x885d7658 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9cd33397 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb7fd402e fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc69e1696 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe26da039 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe3d73796 fcoe_ctlr_link_down EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0072234d fc_seq_set_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x011d9ed4 fc_lport_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06a54925 fc_eh_host_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b401c1a fc_seq_assign -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c8109cb fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0bf6670d libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f7ef851 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x107a372b fc_fcp_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x261f82e7 fc_fcp_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ecf27f3 fc_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f99ab32 fc_exch_mgr_reset -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x341ef13a fc_elsct_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f024683 fc_vport_id_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40f24d2e fc_exch_mgr_free -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43980ff3 libfc_vport_create -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ddec1d5 fc_rport_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fd94252 fc_fcp_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56625e06 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27234874 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x284fd97e fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a92c44d fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49b5b0ca fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b38d25f fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4cf7a451 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x511251bd fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54ade518 fc_disc_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x599a5067 fc_lport_logo_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59f5da08 fc_exch_mgr_add -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5bcaa84d fc_rport_recv_req -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60c5d5fd fc_exch_seq_send -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64bc7e41 fc_exch_mgr_list_clone -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69dba641 fc_disc_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b5face6 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ebeebad fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60585aa4 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63572a35 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6677c5b0 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70d4a105 fc_rport_logoff EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x725fa7f3 fc_lport_flogi_resp -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7487116a fc_lport_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74c3f393 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x734dffa3 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x776c2e7d fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79bcf79e fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d840e77 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7dc19639 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7efca130 fc_exch_seq_send EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d80f603 fc_fabric_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e248012 fc_linkup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f5b0aa0 fc_get_host_speed -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50c259 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x822d22ad fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9083c7a5 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x917420e1 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9357ebaa fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94aa415a fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x962aa0a0 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x992da791 fc_elsct_init EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e29564d fc_frame_alloc_fill EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2469f5f fc_frame_crc_check -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8fcb696 fc_fc4_register_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa98eb568 fc_linkdown -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9a0218a fc_rport_logoff -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9a784e9 fc_fc4_deregister_provider -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae8eeec5 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4e7e99f fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7a7972e fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab95da15 fc_get_host_speed EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb147ff9a fc_fabric_login -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb455cc31 fc_set_mfs -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5168772 fc_lport_iterate -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba2fa915 fc_rport_lookup -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbcd347b4 fc_exch_recv -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf82f430 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9876270 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb9a1fd5 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfce7e82 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc269bfe3 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3328d9c fc_fc4_deregister_provider EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5d3c86f fc_fill_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc68ed2e8 fc_elsct_init -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc839d9bb fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9f19186 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcae500cf fc_get_host_port_state EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb34db88 fc_fill_reply_hdr -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4977438 fc_vport_setlink -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9b05e36 fc_set_rport_loss_tmo -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdc220414 fc_lport_set_local_id -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd8e57d4 fc_lport_destroy -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde687cc5 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd187f56b fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd223837a fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0218149 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5c8661b fc_exch_mgr_reset EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5c9e2e0 _fc_frame_alloc EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7d464c7 fc_rport_terminate_io -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebef6ee3 fc_exch_mgr_alloc -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee2bd07a fc_get_host_port_state -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf487d2df fc_exch_update_stats -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf738a131 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9e13761 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb782862 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee7fbc43 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeee48ae3 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf62dc011 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8a2a149 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf903e8c4 fc_lport_set_local_id EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release -EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb449ce6 fc_lport_reset -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x43e9aa69 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0da6fbb4 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x36ceee82 sas_suspend_ha EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6139b41f sas_prep_resume_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xdc077680 sas_suspend_ha -EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe76f63b6 sas_resume_ha_no_sync -EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x6ed2f769 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8bf02c1d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa920326b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0e18050a mraid_mm_register_adp EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x25e0ff1e qlt_xmit_tm_rsp -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3dd98509 qlt_enable_vha -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ebac2ae qlt_free_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x48efde97 qlt_abort_cmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5875be91 qlt_lport_register -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x73f36ba4 qlt_free_mcmd -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d64df3e qlt_xmit_response -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb193bfb3 qlt_stop_phase1 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc0ab4f0c qlt_stop_phase2 -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xef68ee75 qlt_lport_deregister -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf302a9f0 qlt_rdy_to_xfer -EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf38a9290 qlt_unreg_sess -EXPORT_SYMBOL drivers/scsi/raid_class 0x06dc06d1 raid_class_release -EXPORT_SYMBOL drivers/scsi/raid_class 0x21fcc523 raid_class_attach -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0b614717 fc_host_post_fc_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x11cce581 fc_vport_terminate -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x126d3a2b fc_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x13ff9250 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1835b1c8 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f057cc2 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2525bc95 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3739e1a0 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5e7b26f4 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x612a751a qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6e3d8c7d qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x72006532 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8f94e1a9 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9ec8cbf2 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa0b10e4e qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe89dd7cb qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x2a566f48 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xe4bba69c raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0f89dec9 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x103c2e67 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1f0b36de fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2985c91f fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a198cbc fc_host_post_fc_event EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3caf0758 fc_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43700d4b fc_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x69619284 fc_host_post_vendor_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6971b5f6 fc_remote_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x759c07a6 fc_find_rport_by_wwpn -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9a1c94e0 scsi_is_fc_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb2aaa5d2 fc_eh_timed_out -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc34960ea fc_remote_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcca2df8f fc_vport_create -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdcfc9044 fc_block_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdde902e0 fc_host_post_event -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdf3c7611 fc_remote_port_rolechg -EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfa1d629f fc_block_scsi_eh -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00747ce8 scsi_is_sas_rphy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x016b0501 sas_get_address -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12ff4e00 sas_port_add_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2339fa1e sas_port_mark_backlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32845b21 sas_phy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3370e5e3 sas_rphy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39511beb sas_rphy_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a2bfe68 sas_remove_children -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4baa23b2 sas_port_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d80236f sas_port_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4db5f6bf sas_phy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x51e57ec3 sas_port_alloc_num -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60ea83e4 sas_read_port_mode_page -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x646231aa scsi_is_sas_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68a3fab7 sas_port_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7967bd81 sas_rphy_add -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ef3f56e sas_end_device_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81ac1265 sas_phy_delete -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x84608cef sas_expander_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8989cf35 sas_port_get_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8b009caa sas_port_free -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa331136c sas_port_delete_phy -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb0ebf021 sas_remove_host -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf861443 scsi_is_sas_port -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3818f63 sas_phy_alloc -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4609f3c sas_rphy_unlink -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd89fe0da sas_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd154e10 sas_rphy_remove -EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8b8bd83 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x41680582 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x450d0ded fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x47250bf2 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x667c9147 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7632b12f fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e620d24 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa4900369 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc18f9ac5 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcd2806d4 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xde629a4a fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe20fac83 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xef046e85 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x102c3f27 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15545919 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1fa56f33 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2c1977b1 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2fca5a05 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31fd6d15 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36d1b4dd sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a86b6eb sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4bdc1747 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d98f154 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66c48cf8 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x711cb642 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x718395c7 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73235fb8 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77b929d8 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a568e94 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a7e84eb sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x842e7fec scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85f9fd99 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8b21d0fe sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x94332567 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e12db6f sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb87e745b sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc67774b4 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca37d541 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xccef51fa sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd925d0f6 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xde247d05 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfac85007 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x011920db spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x05524d76 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3228b470 spi_dv_device EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x50283312 spi_display_xfer_agreement -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x59cb718b spi_release_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaf944114 spi_schedule_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd16364ee spi_attach_transport -EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe0cd3f60 spi_dv_device -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x0fa93be4 srp_rport_put -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x11c60cb1 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7d71ca04 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf7fc85bb spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2f1090f2 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x317fa7a7 srp_rport_put EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x848582f0 srp_reconnect_rport -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9ee6e9d8 srp_start_tl_fail_timers -EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe80fab68 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x70ce7f5e srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa030759b srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xba531eb3 srp_reconnect_rport EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x21e76a68 dpaa2_io_get_adaptive_coalescing EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2bc276ca dpaa2_io_update_net_dim @@ -4477,466 +4477,466 @@ EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xfa0aedff dpaa2_io_set_adaptive_coalescing EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x07564e82 cmdq_pkt_assign EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x081d1a1a cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x197fb8f1 cmdq_mbox_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x1f3ed632 cmdq_pkt_jump -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x27fa0f18 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x2c4eca25 cmdq_mbox_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3f6fab3f cmdq_pkt_write_s_mask_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x3fc19424 cmdq_pkt_write EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x45dae4fc cmdq_pkt_poll +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x473d9cc7 cmdq_pkt_create EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x578699c0 cmdq_pkt_finalize EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x58cdc788 cmdq_pkt_poll_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5a123a5e cmdq_pkt_write_s_mask EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x5bfd584c cmdq_pkt_set_event -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x60fad969 cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x83441e73 cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8aa532b3 cmdq_pkt_write_s_value EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x8ab965b5 cmdq_pkt_wfe EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x9194f23f cmdq_pkt_flush_async EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa40c93c8 cmdq_pkt_clear_event EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xd529f27b cmdq_pkt_destroy EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xdf8340fe cmdq_pkt_write_s -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe9c5d741 cmdq_pkt_create -EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf14a8f9d cmdq_dev_get_client_reg EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xfec2df2b cmdq_pkt_read_s -EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x99c636b2 of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xc53d76b1 ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xcf46ea7f of_get_ocmem EXPORT_SYMBOL drivers/soc/qcom/ocmem 0xf9b05967 ocmem_free EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x1c76ea4d pdr_restart_pd EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x432975e6 pdr_add_lookup EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0x47b2ed49 pdr_handle_alloc EXPORT_SYMBOL drivers/soc/qcom/pdr_interface 0xf618ca5b pdr_handle_release -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0794bb8d geni_icc_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1a8c2565 geni_icc_disable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x21e91069 geni_icc_set_tag -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x222a0aa9 geni_se_resources_off -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2a1b4157 geni_se_rx_init_dma -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x34507290 geni_se_tx_init_dma -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5354e572 geni_se_resources_on -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x53bdec29 geni_se_select_mode -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x57be9315 geni_se_rx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5ce86e89 geni_icc_set_bw -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5fc26a09 geni_se_init -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6cd5adc1 geni_se_tx_dma_unprep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x73864c70 geni_se_clk_freq_match -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7de1a538 geni_se_clk_tbl_get -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x979c7fdb geni_icc_enable -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x980b45b8 geni_se_tx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa6abfbb3 geni_se_rx_dma_prep -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf3dcdb4b geni_se_get_qup_hw_version -EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf8276746 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0f707f36 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1374faa0 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1b8206b3 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2522b8b8 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2f7d1251 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x37d650fa geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x68cee135 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x71b21b16 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x76bb6a83 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7e0e90ed geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x827c854c geni_se_rx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x827e418d geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9c37b68b geni_se_tx_init_dma +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xbac60a44 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc4b269da geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xde86aed4 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf2da747f geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf83c29eb geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xffd9570e geni_se_rx_dma_unprep EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put -EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x64bbc331 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x323b1ffc qmp_get EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x28ac2fd2 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3700a4d5 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x42e15735 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x42f4dfdc qmi_send_indication EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4cd2fe40 qmi_response_type_v01_ei -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5e8646e5 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5dc84ce8 qmi_txn_init EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6051451d qmi_decode_message -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x697b22c9 qmi_send_response -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6c77b0df qmi_txn_cancel -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8f084c4c qmi_send_indication -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8f92bd52 qmi_add_lookup -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb4f264f3 qmi_send_request -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xb643db9a qmi_handle_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe5232b5f qmi_txn_wait -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xed4826bd qmi_txn_init -EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfa734eb2 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x626241b7 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6706d4cf qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8a34295f qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x92b30903 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xba8f92f5 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc523403f qmi_txn_cancel EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write -EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x95b671ed qcom_wcnss_open_channel -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x09082fce sdw_bus_prep_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x10da2566 sdw_nread_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x15207baf sdw_slave_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x15f17058 sdw_nread +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x2f0757a8 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0850bfee sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0a1edc21 sdw_write EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1b95741f sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1ba4b521 sdw_master_read_prop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x22bfac2a sdw_stream_remove_slave -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3977107e sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1ebe2121 sdw_nread_no_pm EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3be6c70d sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b6fae79 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4828548b sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x48facb64 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4a9eb280 sdw_bus_exit_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4d7c1661 sdw_update -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x588aeec0 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6070c134 sdw_nwrite EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x69551a4a sdw_bread_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f414706 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x67c2f8e5 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x684d837a sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6a7ef673 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6c5f8201 sdw_bwrite_no_pm_unlocked EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x78528772 sdw_bus_master_delete -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x81e051ba sdw_bus_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88c87caa sdw_read_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x975fd9b8 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x821afd80 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8ed2d896 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9c121533 sdw_slave_add EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa0c5e41f sdw_update_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa12dafc2 sdw_slave_add -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa15c7178 sdw_bwrite_no_pm_unlocked -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xacbc1bdf sdw_bus_exit_clk_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb6493ab1 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e702e2d sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa7178185 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa7dc2f21 sdw_nwrite_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaf0e7076 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb82d3ef6 sdw_compare_devid EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc2019747 sdw_master_read_prop -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc39ea250 sdw_extract_slave_id -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc7b7fdc8 sdw_read -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd77605f3 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc1367480 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc1ad59f4 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc43d805e sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd296c340 sdw_stream_add_slave EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5cf48c sdw_write_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeb2d86d4 sdw_write -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xebb3ef73 sdw_show_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe5e94d90 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xeadef83f sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xef2a8691 sdw_bus_prep_clk_stop EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf9e1264e sdw_stream_remove_master -EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfedbfe6b sdw_nwrite_no_pm -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x150f347b sdw_cdns_check_self_clearing_bits -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x21e562c2 cdns_bus_conf -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2702722f sdw_cdns_alloc_pdi -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2cb5f9b5 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x00431406 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1974bd39 cdns_read_ping_status +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x20661c9f sdw_cdns_config_update +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2082b620 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x28991484 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2a7482cd sdw_cdns_config_update_set_wait +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3323b05c sdw_cdns_clock_stop EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x386911ad sdw_cdns_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3fa2d07b cdns_xfer_msg -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x42461d3c sdw_cdns_config_update_set_wait -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x4854836e sdw_cdns_config_update -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x63795f10 cdns_set_sdw_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x68718bf7 sdw_cdns_probe -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8878cda7 cdns_xfer_msg_defer -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x99929114 sdw_cdns_is_clock_stop -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc37e7222 sdw_cdns_init -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc927af2a sdw_cdns_enable_interrupt -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc9648569 cdns_read_ping_status -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd29853b4 sdw_cdns_config_stream -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf55a3299 sdw_cdns_exit_reset -EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfac56f4f sdw_cdns_clock_restart -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xd96c3ee2 sdw_compute_params -EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xf48d57f2 sdw_compute_slave_ports -EXPORT_SYMBOL drivers/ssb/ssb 0x037ce3c1 ssb_bus_powerup -EXPORT_SYMBOL drivers/ssb/ssb 0x05496361 ssb_clockspeed -EXPORT_SYMBOL drivers/ssb/ssb 0x0f4e0452 ssb_pcicore_dev_irqvecs_enable -EXPORT_SYMBOL drivers/ssb/ssb 0x184f3bb2 __ssb_driver_register -EXPORT_SYMBOL drivers/ssb/ssb 0x1aa34256 ssb_device_disable -EXPORT_SYMBOL drivers/ssb/ssb 0x2c5c1870 ssb_device_is_enabled -EXPORT_SYMBOL drivers/ssb/ssb 0x2eab69ea ssb_pmu_set_ldo_paref -EXPORT_SYMBOL drivers/ssb/ssb 0x3f071332 ssb_dma_translation -EXPORT_SYMBOL drivers/ssb/ssb 0x5d845dfc ssb_bus_may_powerdown -EXPORT_SYMBOL drivers/ssb/ssb 0x63d358ab ssb_bus_sdiobus_register -EXPORT_SYMBOL drivers/ssb/ssb 0x790c9064 ssb_chipco_gpio_control -EXPORT_SYMBOL drivers/ssb/ssb 0x7adc3bbd ssb_set_devtypedata -EXPORT_SYMBOL drivers/ssb/ssb 0x8c0a5f28 ssb_bus_suspend -EXPORT_SYMBOL drivers/ssb/ssb 0xa6e4f8a1 ssb_driver_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xaf99f2c1 ssb_pcihost_register -EXPORT_SYMBOL drivers/ssb/ssb 0xc2376cd3 ssb_bus_unregister -EXPORT_SYMBOL drivers/ssb/ssb 0xc63168c5 ssb_device_enable +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x490bffd0 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8dd703c3 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9d68ad68 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa7132e2f sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xab4cedd3 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc26d0edb sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc3fdb893 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf18fcebe sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf1a00ee5 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf4199f0b cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xfb1876bd cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x4c7240e5 sdw_compute_slave_ports +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x8ced3b7c sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x0785d043 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x081a3b3e ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x087cd216 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1b41307c ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x28ab9543 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x346034c5 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x4bd0191c ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x5058374d ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x7a5d073e ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7fedf860 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8bf293db ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa09381fe ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xa1a5dfc9 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xa3d44c21 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xb32068c6 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xbd23088c ssb_clockspeed EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size -EXPORT_SYMBOL drivers/ssb/ssb 0xe8325ca0 ssb_commit_settings -EXPORT_SYMBOL drivers/ssb/ssb 0xf008d52a ssb_pmu_set_ldo_voltage -EXPORT_SYMBOL drivers/ssb/ssb 0xf3ba72f1 ssb_bus_resume -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f0e1fa9 fbtft_write_gpio16_wr_latched -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b28276c fbtft_write_vmem16_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2561effc fbtft_framebuffer_release -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2fceacac fbtft_unregister_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38ce1a62 fbtft_framebuffer_alloc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e357a16 fbtft_write_vmem8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x63a96439 fbtft_init_display -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x65c3dea6 fbtft_register_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7ac8144e fbtft_read_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ffb8171 fbtft_register_framebuffer -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c5179a6 fbtft_write_reg8_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xabdb8460 fbtft_unregister_backlight -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb1483579 fbtft_write_buf_dc -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6129611 fbtft_write_vmem16_bus8 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc18331ba fbtft_write_vmem16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4a3a5bb fbtft_dbg_hex -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc51b4993 fbtft_write_spi_emulate_9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca4ee0b3 fbtft_write_gpio8_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdadd5e58 fbtft_write_reg16_bus16 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2765388 fbtft_probe_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe521d456 fbtft_write_reg8_bus9 -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeddfb674 fbtft_write_gpio16_wr -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5cb3912 fbtft_write_spi -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8afa92b fbtft_remove_common -EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf983302a fbtft_write_reg16_bus8 -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x07f5159e gbaudio_module_update -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x3de3f7cd gbaudio_register_module -EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x49f62b2d gbaudio_unregister_module -EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x71ca046b adt7316_probe -EXPORT_SYMBOL drivers/staging/nvec/nvec 0x236243ff nvec_write_sync -EXPORT_SYMBOL drivers/staging/nvec/nvec 0xc03091b0 nvec_write_async -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08decf4a rtllib_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a849207 rtllib_EnableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0dd43da5 rtllib_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x138981c8 rtllib_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x147f0357 rtllib_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e1a1176 rtllib_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e7c074e rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/ssb/ssb 0xe5ee3611 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xe66524b1 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xf439bfd0 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf535959d ssb_driver_unregister +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x05ba24dc fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x119c1c19 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x40a779a6 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5867fac2 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e0d405d fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ead84de fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60347d80 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x645a17fe fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x87fdf25a fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x967fa004 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b5f1626 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa88095a1 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8017854 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd0fa35c7 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4dce303 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7171b3b fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb894a23 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xddd9130f fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf11320a fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb593aa2 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xedd3fb89 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf34db5c4 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf437ea53 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe8d5faa fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe98a903 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x1036605a gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x8015666e gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf400ba8e gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x3b677f43 adt7316_probe +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x642c92c0 nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xa36cb43f nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0264b362 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x059231fd rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09e85443 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f58fd12 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17c50ec3 rtllib_wx_get_wap EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22df8e9f rtllib_xmit -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x272f7c56 rtllib_DisableIntelPromiscuousMode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f3ac27b rtllib_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x318997c0 free_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34418182 rtllib_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x394398b6 HT_update_self_and_peer_setting -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cf7bd02 rtllib_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ea3f7af rtllib_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fda82f5 rtllib_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41e15f0b rtllib_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4617dd94 rtllib_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f8dba2c rtllib_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f73f853 rtllib_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x698e79ca rtllib_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d6345f2 rtllib_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e7d10be rtllib_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8035e766 rtllib_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81ae6bd6 rtllib_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8658e949 rtllib_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89415f68 rtllib_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8cd74fdf rtllib_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f290b70 rtllib_sta_ps_send_null_frame -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa49c04f1 rtllib_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa56ff065 rtllib_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb13db950 rtllib_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4db5529 notify_wx_assoc_event -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6cb3bcf rtllib_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9720eee rtllib_stop_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc562c1f8 rtllib_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf744ef9 rtllib_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfcb753e rtllib_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd2baa13a rtllib_act_scanning -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd3c23712 rtllib_rx -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd61912ac rtllib_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe53b96ba rtllib_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe573c54c RemovePeerTS -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb756259 rtllib_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef146e07 alloc_rtllib -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf31f4aa3 dot11d_channel_map -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4c70a9b rtllib_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf743139b rtllib_MgntDisconnect -EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe52c2e6 dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cb051ff ieee80211_wx_set_gen_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x176cf3df ieee80211_wx_get_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19782212 ieee80211_wpa_supplicant_ioctl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d7ec1ce ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2536eb56 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2df700d3 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32f761e4 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3501e37b rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x373040d7 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41517ad6 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x442aa0c3 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bdecd18 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56629c88 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x582c686b rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62f6dc33 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66752349 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66cced8e free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6b239a9e rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71ab8eec rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71c47c17 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73e3c4b5 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7c927f0c rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e9ea0be rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x88a72bb1 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c8388c7 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91ca77e4 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9c63c849 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0d08bfa rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0ecfbfb dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7260965 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad250d7c rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xad431b44 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xada173be dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb139f514 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb87c578 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe8d3797 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc008b077 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcbb71663 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd241a8c rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd26976c2 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde3a4fc0 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe28fcca4 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7cc37f3 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea656c34 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xec2af261 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2b85539 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf54ed7a6 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcd4b01e rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07d7693d ieee80211_rx_mgt +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1191abe1 ieee80211_softmac_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c6c1b42 ieee80211_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c9a3273 ieee80211_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ed79da7 ieee80211_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22715a12 ieee80211_wx_get_rts EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x232e7944 ieee80211_wlan_frequencies -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b56b4d6 rtl8192u_dot11d_init -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2bad498a ieee80211_start_scan_syncro -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ed869a0 to_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35e29883 ieee80211_wx_get_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36d460e8 ieee80211_stop_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43ea712e HTUpdateSelfAndPeerSetting -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a506952 dot11d_update_country_ie -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fd369c1 ieee80211_wx_get_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50f64ef7 ieee80211_softmac_start_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5415c6d6 ieee80211_wx_get_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x552f5562 ieee80211_stop_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57f6057f ieee80211_wx_get_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5897b3cd ieee80211_wx_get_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ad2a9c5 ieee80211_wx_get_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5feb5f0b dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c097f5f ieee80211_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x315cfb8a ieee80211_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3535801e ieee80211_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37709a16 ieee80211_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39b7f505 ieee80211_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a5436ac ieee80211_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4aad52ac ieee80211_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fb27933 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5840ab50 ieee80211_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5df019f0 ieee80211_disassociate EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6651f895 ieee80211_is_shortslot -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b89d907 ieee80211_wake_queue_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71ce2891 ieee80211_wx_set_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72123a27 ieee80211_softmac_xmit -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7375ae74 ieee80211_wx_set_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x784ca4ec ieee80211_get_beacon -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ac3f338 ieee80211_rx_mgt -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cae17c0 notify_wx_assoc_event_rsl -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80134d64 ieee80211_txb_free -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81861044 ieee80211_wx_get_essid -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86d28d8c ieee80211_wx_set_scan -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88303d0e ieee80211_wx_set_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e070298 ieee80211_wx_set_wap -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e08456a ieee80211_start_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ffc45f0 ieee80211_reset_queue -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91b14f73 dot11d_scan_complete -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9571bf9c ieee80211_wx_get_name -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95c1ad8f ieee80211_wx_set_rts -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa45ce6d0 ieee80211_wx_set_rate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6b1591b ieee80211_disassociate -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa640dfd ieee80211_wx_set_power -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae1bfe1c ieee80211_wx_get_encode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1df2f11 ieee80211_ps_tx_ack -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc4ae708 ieee80211_wx_get_encode_ext -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0165cbf ieee80211_wx_set_rawtx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5117ebd ieee80211_wx_set_auth -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6487b2c ieee80211_wx_set_freq -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca1dbb61 ieee80211_stop_send_beacons -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb6cd796 ieee80211_wx_set_mode -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7483fb4 ieee80211_softmac_stop_protocol -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe122eb0e ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6af00f98 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cd818d2 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71fd0fa3 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74bd051b ieee80211_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75490581 ieee80211_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7acec00c ieee80211_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87ef572b notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8c80d8dd ieee80211_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e6e1794 ieee80211_txb_free +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x90c899ec ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa45eefa6 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4aa1fe0 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6cee445 ieee80211_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabb70e1c ieee80211_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabea48ff ieee80211_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xadb46f6c ieee80211_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae6e1589 ieee80211_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0bbf36f HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb4fec261 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbac646a8 ieee80211_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3b9cdcf ieee80211_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7c63e2e ieee80211_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9fed503 ieee80211_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd952003 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd017f43d rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd08edbda ieee80211_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0ec0961 ieee80211_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1e8d4db ieee80211_wx_get_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8cd91fb ieee80211_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1812ed3 ieee80211_get_beacon EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3372510 ieee80211_is_54g -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe65e9ed4 dot11d_get_max_tx_pwr_in_dbm -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf52ef686 ieee80211_rx -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6feb313 is_legal_channel -EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb698073 SendDisassociation_rsl -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x325b057d vchiq_queue_kernel_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x350da0c7 vchiq_use_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x39609d28 vchiq_bulk_transmit -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x5a1fc470 vchiq_release_message -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x74f4039f vchiq_msg_queue_push -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x772c5796 vchiq_close_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x93a4a37c vchiq_connect -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa949f3d0 vchiq_get_peer_version -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb2828d2a vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3a5314b ieee80211_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5920edd ieee80211_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe63f8125 ieee80211_softmac_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb70be5f ieee80211_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec242397 ieee80211_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8639e5c ieee80211_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf8d38c4f ieee80211_wx_get_name +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x36a1b7e2 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x3cc246a8 vchiq_shutdown +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x44143645 vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x62b1397b vchiq_bulk_transmit +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6d12e9c1 vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x6defd513 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x72e78424 vchiq_use_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x88e1e786 vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x95772cad vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x995488b0 vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xa8410faf vchiq_close_service EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbca0c1c0 vchiq_add_connected_callback -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc2740c15 vchiq_shutdown -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc8cabb8c vchiq_bulk_receive -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xdebeac53 vchiq_release_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xee6db14f vchiq_open_service -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xf1c3312f vchiq_initialise -EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xf742b7c5 vchiq_msg_hold -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07f58dff iscsit_setup_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ac93cab iscsit_handle_snack -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c4c1012 iscsit_thread_check_cpumask -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12fccdd0 iscsit_set_unsolicited_dataout -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1304eeee iscsit_setup_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c0d3f8e iscsit_unregister_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2117b395 iscsit_build_r2ts_for_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24a07f3c iscsit_setup_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c946dad iscsit_process_nop_out -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ee5e960 iscsit_find_cmd_from_itt -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x34818fbf iscsit_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x350244d8 iscsit_release_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b424133 iscsi_change_param_sprintf -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b7b24b4 iscsit_free_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3bd0bbb8 iscsit_tmr_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44b7d90b iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x494461ef iscsit_allocate_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a9aa2da iscsit_process_scsi_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5108bac0 iscsit_cause_connection_reinstatement -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52e722b1 iscsi_target_check_login_request -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x56a4704d iscsit_response_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x56b3f6d2 iscsit_check_dataout_payload -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x56d9b91c iscsit_build_rsp_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ba0f56a iscsit_logout_post_handler -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6038f179 iscsit_build_text_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61bf6f88 iscsit_sequence_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64b16ca7 iscsit_add_reject -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x81f358f6 __iscsit_check_dataout_hdr -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dac704d iscsit_handle_logout_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa2960913 iscsit_build_datain_pdu -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa3b81aa iscsit_aborted_task -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa5e70a4 iscsit_find_cmd_from_itt_or_dump -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad8b978e iscsit_register_transport -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0eaeb87 iscsit_build_logout_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb783faec iscsit_add_cmd_to_immediate_queue -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe76a763 iscsit_increment_maxcmdsn -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc168e6f9 iscsit_stop_dataout_timer -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc63e31b3 iscsit_build_nopin_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd5708c18 iscsit_get_datain_values -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda408fff iscsit_process_text_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe1c7ebfd iscsit_reject_cmd -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7cc09a4 iscsit_build_task_mgt_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8aca3e4 iscsit_queue_rsp -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea993768 iscsit_build_reject +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xd3d82a4f vchiq_msg_queue_push +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe2045fc6 vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe2407f8a vchiq_get_peer_version +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xfd33eda0 vchiq_release_message +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ff16409 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1349d4c6 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15946746 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b984718 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1dc94656 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2408c45b iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x256042f9 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x264edc29 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f91e7d9 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32677c50 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x37ff9179 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39ebb8d7 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e141c43 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3eb5e9ee iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f8ad0fe iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40f9f632 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4186c068 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x459ade73 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47dec72d iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x490017c8 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5e7665b2 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6012afd7 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x645bb44f iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x685eaefd iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cfa4d6f iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f12db5b iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72068053 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7401ad03 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c22cba0 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83c367b2 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fff726d iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9043e64d iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98d05358 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9cb3d59f iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac4fee56 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6cec55d iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9205f86 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc202219a iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcac8f90b iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcf94444c iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda75b140 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe54b9634 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf10f96a7 iscsit_build_rsp_pdu EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key -EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd56ecc7 iscsit_handle_task_mgt_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x037d1a4a spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x0651c680 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x06609c49 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfc96d102 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfe962a6d iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x04ad0bce target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x07bdc62f target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x080e1eaa target_complete_cmd_with_sense EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x09201485 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x0b3e4eda target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x119f27b3 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x12934723 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x090c193f transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cf8a272 target_lun_is_rdonly EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x162b8f99 passthrough_pr_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x180cf604 transport_wait_for_tasks -EXPORT_SYMBOL drivers/target/target_core_mod 0x1a10c593 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x1d2a27a5 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x1dc18dc4 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x1fd18ecc transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x2a810792 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x3163dd50 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x23586d89 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x23728d29 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x26770811 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b211542 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x31f0c54b target_complete_cmd_with_length EXPORT_SYMBOL drivers/target/target_core_mod 0x3350d87b core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x3913d3a0 target_show_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x41957f40 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x4aabe1d6 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x4f91ec0b sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x4fdbd29e transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x52e14b2b target_cmd_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x54a71a4d target_send_busy -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ab031bc transport_copy_sense_to_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x5ba1b2d5 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ca4fad7 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fdf826c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x43c5c7de passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x45e9acd9 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x46c9ea3b sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a89fea2 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ffd91c9 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x50dc8b61 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x51583d5e target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a5107b7 sbc_attrib_attrs EXPORT_SYMBOL drivers/target/target_core_mod 0x5bdb610a target_free_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0x5c422d98 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x5d48436b core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x6475b989 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x79e38753 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x7c8a27b1 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x7ef79adc core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x7f0e65cf transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x84c182e3 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x86ad5427 target_remove_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x8793bd65 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x886ed3ea core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d2c43f9 __target_init_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x8d72eb51 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x8f258ca7 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x96ebf3a2 target_cmd_init_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x997bac72 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x9e5dd6cc target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xa781db5a target_setup_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xac58bbb0 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0xae7023f8 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d832248 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6355ca53 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x648c4a46 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x64c8041d __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x65cffb27 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x68ccdea7 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cbd1613 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d8cbfda target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ecde976 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fc08677 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x773f7b6b core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ddbd87e target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e7c739e transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f8952c2 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x80ea4b6a target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x82c2dc49 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x85d4968e transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x8977f56d transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b220f16 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x8cf33ade transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x92f04032 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x94c24bda transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cdf0397 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xa02138f1 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xa18bdfa0 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1903385 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xa32bce37 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xa683716e transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xa691455f spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xa94b9dbe core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xace7408a transport_generic_free_cmd EXPORT_SYMBOL drivers/target/target_core_mod 0xaefbcacd target_alloc_sgl -EXPORT_SYMBOL drivers/target/target_core_mod 0xb498e4b7 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0xc1f9e934 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xc275d895 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0xc7bbbac4 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0xc906c45b transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xcba6d5cc transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0xcd80d16d target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd1fc7693 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0xd9b8c073 transport_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xdac0a6be core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0xdb1d7d38 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0xdfb214ea transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0xe2a11faa target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6937e28 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xe6b52402 target_set_cmd_data_length -EXPORT_SYMBOL drivers/target/target_core_mod 0xea981078 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xec353a1c sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0xed8608ec transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0xf02ac0a5 target_stop_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xf25eaafd transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0xf3bceb9d target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8a37df4 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xb94f32d6 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xba570a25 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd5f8df0 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xc07ae9b4 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xc44d3fad core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9d174ee target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xce621012 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd64c65c8 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd79a8930 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7e1a7a8 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xddd2a85d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf2ef9b0 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe426845d transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe60b5cfd target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8ec9dc4 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xef2baaf2 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf08a0e8d transport_alloc_session EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0xf5e0bba8 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0xf6bc2861 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xf85d0ad9 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0xfbd3ed9c target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0xff42db6b transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0xffadde86 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0xffe4d7d5 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x0159ed80 ufshcd_alloc_host -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x0ab60ae7 ufshcd_system_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5029311f ufshcd_runtime_resume -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x629e6608 ufshcd_get_local_unipro_ver -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7aa368d3 ufshcd_system_suspend -EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc99f8dc6 ufshcd_runtime_suspend -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x8e4e39f6 tc_dwc_g210_config_40_bit -EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xfe1de455 tc_dwc_g210_config_20_bit -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x438c3742 ufshcd_dwc_dme_set_attrs -EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x7fbadab8 ufshcd_dwc_link_startup_notify -EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x61c8781c usb_cdc_wdm_register -EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x1c30aa91 usb_os_desc_prepare_interf_dir -EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3e57e52b sl811h_driver -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x031d70b0 usb_wwan_chars_in_buffer -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2cdf4390 usb_wwan_write -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4f3db234 usb_wwan_open -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x61a68282 usb_wwan_close -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7b99f87f usb_wwan_suspend -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb0c5947f usb_wwan_resume -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc508b522 usb_wwan_write_room -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd0cc7f4d usb_wwan_port_remove -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd6554bdf usb_wwan_tiocmset -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xda91ba41 usb_wwan_dtr_rts -EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe660c60c usb_wwan_tiocmget -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc2912c69 usb_serial_suspend -EXPORT_SYMBOL drivers/usb/serial/usbserial 0xfd478b91 usb_serial_resume -EXPORT_SYMBOL drivers/vdpa/vdpa 0x045dd640 vdpa_set_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5fb11c3 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb842a32 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd67b88f target_stop_session +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x594da4b2 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7fb73a61 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xa71b9ac2 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc8cb366c ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xf4ec05c3 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xfd923cf9 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x0bd10eb0 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x7b82d313 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x2a1780a1 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x97e5dc97 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xd5b67124 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xc112fa97 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xb31f1db9 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1144cf7f usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x133375e1 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3a6cf4c6 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x46215c5c usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5365ba02 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x65d482a1 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x700dc92c usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x95707f90 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9d960d12 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xba2451ba usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd4be7f6e usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x068e0fb6 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xe4e7895a usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x6ef9496f vdpa_set_status EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x52a15fca vfio_dma_rw EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability -EXPORT_SYMBOL drivers/vfio/vfio 0x9e32db64 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x8fd04d04 vfio_pin_pages EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare -EXPORT_SYMBOL drivers/vfio/vfio 0xf05f46a3 vfio_pin_pages -EXPORT_SYMBOL drivers/vfio/vfio 0xf2051cd4 vfio_dma_rw -EXPORT_SYMBOL drivers/vhost/vhost 0xc9c0f2b3 vhost_chr_poll -EXPORT_SYMBOL drivers/vhost/vhost 0xd3bdbfed vhost_chr_write_iter +EXPORT_SYMBOL drivers/vfio/vfio 0xe59df427 vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x71027e34 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xce35f1d9 vhost_chr_write_iter EXPORT_SYMBOL drivers/vhost/vringh 0x22535a6e vringh_abandon_user EXPORT_SYMBOL drivers/vhost/vringh 0x22f44e7d vringh_getdesc_iotlb EXPORT_SYMBOL drivers/vhost/vringh 0x31848eae vringh_notify_enable_user @@ -4968,131 +4968,131 @@ EXPORT_SYMBOL drivers/vhost/vringh 0xd8535ad6 vringh_init_kern EXPORT_SYMBOL drivers/vhost/vringh 0xde804bb9 vringh_iov_pull_kern EXPORT_SYMBOL drivers/vhost/vringh 0xe08ccbed vringh_notify_disable_iotlb -EXPORT_SYMBOL drivers/video/backlight/lcd 0x29812b44 devm_lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0x51e0fb1f lcd_device_register -EXPORT_SYMBOL drivers/video/backlight/lcd 0xcddf7824 devm_lcd_device_unregister -EXPORT_SYMBOL drivers/video/backlight/lcd 0xe85f6a66 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x0652bb32 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x31c6df8c lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcf4d7795 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd9a95985 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x168881b3 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x16c656b2 svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1ae800a7 svga_tilefill EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x39a4c986 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x295cbaf5 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3e5546a2 svga_tileblit EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x751f0007 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83a41489 svga_set_timings EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c337c2 svga_wcrt_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x84c97d2a svga_match_format -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x983d7e90 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9fccf1b4 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb06d4a80 svga_tilecursor EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xbc803895 svga_tilefill -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc2e7d416 svga_settile -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc790531d svga_get_tilemax EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs -EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf6b43b01 svga_get_caps 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 0x955b3b21 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs -EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x22cfa6ab mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xe4931801 cyber2000fb_attach EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x3458ed45 mac_find_mode EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x0926dd0b matroxfb_g450_setpll_cond -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb652ddd6 g450_mnp2f -EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xeb474640 matroxfb_g450_setclk -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3108f8c8 DAC1064_global_restore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x805a0b77 DAC1064_global_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xad6b519b matrox_G100 -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf3268eac matrox_mystique -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x5b6e80a5 matrox_millennium -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x50cc5d5b matrox_cfbX_init -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x03e1848c matroxfb_register_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7cd7f135 matroxfb_wait_for_sync -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x943e1ae9 matroxfb_unregister_driver -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xade7de6f matroxfb_enable_irq -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x01f58625 matroxfb_g450_connect -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf8757b03 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x152bc6f3 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbb68b5d6 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf74a5db8 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x37df932a DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6a73fcb4 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x868d6095 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb071c89a matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x677e91b9 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xaa028f47 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x02a91f4d matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x72bdd38d matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8aa4e68d matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe5624de8 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0722edc7 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xfea210e1 matroxfb_g450_shutdown EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3f6d02af matroxfb_vgaHWrestore -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4bd6f047 matroxfb_DAC_in -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x96ee3c6b matroxfb_vgaHWinit -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9803167c matroxfb_read_pins -EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc67311af matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x39ba694d matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x41b6f100 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4a100003 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9ed47d9e matroxfb_read_pins EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdfff701e matroxfb_DAC_out EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x24e362be is_virtio_dma_buf -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x36bb6c2c virtio_dma_buf_get_uuid -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa0c9df42 virtio_dma_buf_export -EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xbe829f9f virtio_dma_buf_attach -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x0b789038 w1_ds2780_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xeb20fb84 w1_ds2780_eeprom_cmd -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1595f475 w1_ds2781_io -EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x60184922 w1_ds2781_eeprom_cmd -EXPORT_SYMBOL drivers/w1/wire 0x15c9bd3d w1_register_family -EXPORT_SYMBOL drivers/w1/wire 0x35fa67aa w1_unregister_family -EXPORT_SYMBOL drivers/w1/wire 0x93a9d2a7 w1_remove_master_device -EXPORT_SYMBOL drivers/w1/wire 0xee5bfea6 w1_add_master_device -EXPORT_SYMBOL fs/fscache/fscache 0x05c41020 fscache_withdraw_volume -EXPORT_SYMBOL fs/fscache/fscache 0x0abd61b2 fscache_wait_for_operation -EXPORT_SYMBOL fs/fscache/fscache 0x11c156f2 __fscache_clear_page_bits +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa0707a9b virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb46d5dfc is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xc0bf618f virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xe9154aaa virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x532b39e1 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd6d8141c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x4dc65dac w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x5de0a6ba w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x2d62ec6e w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5090c06f w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9c89f61d w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xbcba2c8a w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x04317493 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x126bea8a __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x143a6ee2 fscache_relinquish_cache EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume EXPORT_SYMBOL fs/fscache/fscache 0x2b389369 __tracepoint_fscache_access_cache EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0x3a1bd591 __fscache_resize_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x3da6fa95 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x32b28541 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x36bd8a62 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x381659d1 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x3c1e022f __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x415445d4 __fscache_invalidate EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space -EXPORT_SYMBOL fs/fscache/fscache 0x47a36590 fscache_dirty_folio EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0x4cc6d98c __fscache_use_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x510d7a18 __fscache_relinquish_volume -EXPORT_SYMBOL fs/fscache/fscache 0x54a11404 fscache_end_volume_access EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem -EXPORT_SYMBOL fs/fscache/fscache 0x591c00cd fscache_io_error -EXPORT_SYMBOL fs/fscache/fscache 0x607a8efe fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x64af0460 __fscache_begin_read_operation EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume -EXPORT_SYMBOL fs/fscache/fscache 0x70b3ee49 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x7190db70 fscache_withdraw_cookie EXPORT_SYMBOL fs/fscache/fscache 0x71fb0e58 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x761e5513 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x76aebc6f fscache_cookie_lookup_negative EXPORT_SYMBOL fs/fscache/fscache 0x77e19a42 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x77f419f8 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x78e77c0d fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x79804717 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x843cc88c fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x89201a26 __fscache_clear_page_bits EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled -EXPORT_SYMBOL fs/fscache/fscache 0x95a5a4b8 __fscache_relinquish_cookie -EXPORT_SYMBOL fs/fscache/fscache 0x9ef5571a __fscache_unuse_cookie EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read -EXPORT_SYMBOL fs/fscache/fscache 0xa3c0836d __fscache_begin_read_operation -EXPORT_SYMBOL fs/fscache/fscache 0xaa37566c fscache_resume_after_invalidation -EXPORT_SYMBOL fs/fscache/fscache 0xab3e9d52 fscache_withdraw_cache -EXPORT_SYMBOL fs/fscache/fscache 0xae38594f fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xab684c2f fscache_dirty_folio EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache -EXPORT_SYMBOL fs/fscache/fscache 0xaf5f8017 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xae9764cc __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xaf254ffb fscache_get_cookie EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq -EXPORT_SYMBOL fs/fscache/fscache 0xbde8625b fscache_add_cache -EXPORT_SYMBOL fs/fscache/fscache 0xbeefc01a __fscache_begin_write_operation -EXPORT_SYMBOL fs/fscache/fscache 0xc171a3b1 __fscache_invalidate -EXPORT_SYMBOL fs/fscache/fscache 0xc91aa6a3 fscache_relinquish_cache EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xd2024655 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xd42f36bf fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdb945c91 __fscache_write_to_cache EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access -EXPORT_SYMBOL fs/fscache/fscache 0xdd6752dd __fscache_acquire_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xe915085d fscache_withdraw_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xebed3def fscache_get_cookie -EXPORT_SYMBOL fs/fscache/fscache 0xee2b6f42 fscache_cookie_lookup_negative -EXPORT_SYMBOL fs/fscache/fscache 0xef9c478d fscache_put_cookie -EXPORT_SYMBOL fs/netfs/netfs 0x2a323c5a netfs_subreq_terminated -EXPORT_SYMBOL fs/netfs/netfs 0x3338c72e netfs_readahead -EXPORT_SYMBOL fs/netfs/netfs 0x4c1fff13 netfs_stats_show -EXPORT_SYMBOL fs/netfs/netfs 0x8e5b8f25 netfs_read_folio -EXPORT_SYMBOL fs/netfs/netfs 0xf9c5ff24 netfs_write_begin +EXPORT_SYMBOL fs/fscache/fscache 0xded541fc fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0xe5c9345a __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xe6a049f5 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xea2c90e1 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xefef320f fscache_withdraw_volume +EXPORT_SYMBOL fs/netfs/netfs 0x4868b4e8 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x4c7ee53a netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x6a70c950 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x85763557 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xf2454262 netfs_stats_show EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x00e624bf qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x5ecec509 qtree_get_next_id -EXPORT_SYMBOL fs/quota/quota_tree 0x72eb0d2e qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x762a6121 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x9618dfb3 qtree_write_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0xf8dec25b qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x0ab700fe qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x64711d16 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xca01d457 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xea85be6c qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xee44d263 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf81721cd qtree_get_next_id EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table @@ -5116,11 +5116,11 @@ EXPORT_SYMBOL lib/lru_cache 0x0cb562e6 lc_put EXPORT_SYMBOL lib/lru_cache 0x12de578e lc_committed EXPORT_SYMBOL lib/lru_cache 0x1d2ebc6a lc_get -EXPORT_SYMBOL lib/lru_cache 0x2332c845 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x2675693b lc_del +EXPORT_SYMBOL lib/lru_cache 0x381d69d8 lc_seq_dump_details EXPORT_SYMBOL lib/lru_cache 0x75e88edc lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x76dc7ed8 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0x96d40a48 lc_try_get -EXPORT_SYMBOL lib/lru_cache 0xa0cec655 lc_seq_printf_stats EXPORT_SYMBOL lib/lru_cache 0xa79000a0 lc_is_used EXPORT_SYMBOL lib/lru_cache 0xaeb959aa lc_create EXPORT_SYMBOL lib/lru_cache 0xbf18a077 lc_reset @@ -5164,873 +5164,873 @@ EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul -EXPORT_SYMBOL net/6lowpan/6lowpan 0x09060f35 lowpan_register_netdev -EXPORT_SYMBOL net/6lowpan/6lowpan 0x1cdd173b lowpan_nhc_del -EXPORT_SYMBOL net/6lowpan/6lowpan 0x6c1ec3d6 lowpan_unregister_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x72eca586 lowpan_register_netdevice -EXPORT_SYMBOL net/6lowpan/6lowpan 0x8aa39330 lowpan_nhc_add -EXPORT_SYMBOL net/6lowpan/6lowpan 0xf73753e7 lowpan_unregister_netdev -EXPORT_SYMBOL net/802/p8022 0x881f31f9 register_8022_client -EXPORT_SYMBOL net/802/p8022 0x99d32d32 unregister_8022_client -EXPORT_SYMBOL net/802/psnap 0x47587755 unregister_snap_client -EXPORT_SYMBOL net/802/psnap 0x5f58b773 register_snap_client -EXPORT_SYMBOL net/9p/9pnet 0x04e25c21 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x07aaf9ed p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x116ef788 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x157e7929 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x18a20e53 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x2300bacd p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x23020cae p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x27387c56 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x273f0ea0 p9_show_client_options -EXPORT_SYMBOL net/9p/9pnet 0x275082b2 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x288d9657 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x2e16017d do_trace_9p_fid_get -EXPORT_SYMBOL net/9p/9pnet 0x36e08fd8 p9_tag_lookup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x4988d0e4 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5e446a11 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb3df2b4a lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc56dfa20 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc83581f9 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdff654ef lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x5baa7b8e register_8022_client +EXPORT_SYMBOL net/802/p8022 0xe406f1f6 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x3a8dab91 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x9de48282 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x04f82b76 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x0bee541f p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x11c08959 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x1278901b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x15e10ffa p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x1b5d28ab p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x21ca2b19 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x220f18e0 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x2254c139 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x29482249 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x2c58b04c p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2f91b85c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x3214c081 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x325afcc5 do_trace_9p_fid_put +EXPORT_SYMBOL net/9p/9pnet 0x3bf298a5 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x3c61c6b6 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x3d09750e p9_client_create EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x3d8ca4fa p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3e9b6106 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x40c66135 p9_client_stat EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x439529cb p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x485817e6 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x49f1591f p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x4b8fe76e p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x4270109e p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x4730e8bc __traceiter_9p_fid_ref +EXPORT_SYMBOL net/9p/9pnet 0x48386c07 p9_client_create_dotl EXPORT_SYMBOL net/9p/9pnet 0x4ba99359 p9_fcall_fini -EXPORT_SYMBOL net/9p/9pnet 0x4bf7a6b6 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x4d1154d4 __traceiter_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0x508e593b p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x53fe245b p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x69c9e899 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x6fc3c7c4 p9_client_read_once -EXPORT_SYMBOL net/9p/9pnet 0x741829a8 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x746b8729 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x75395ce5 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x50c4bb49 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5b826ac8 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x5f1e55dd p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x6292b67e p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x679bf63f p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x67c5f911 p9_client_fsync EXPORT_SYMBOL net/9p/9pnet 0x761cad64 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x8e185329 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x9017b19c p9_client_getattr_dotl EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x9d8f5401 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x9f3a735a p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0xa291218f v9fs_unregister_trans -EXPORT_SYMBOL net/9p/9pnet 0xa9d61b26 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0xafe056ff p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x9c38422d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xa02cc929 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xa13e4db1 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa2e3329d do_trace_9p_fid_get +EXPORT_SYMBOL net/9p/9pnet 0xb013bd0d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xb38cfea3 p9_client_destroy EXPORT_SYMBOL net/9p/9pnet 0xb55ae777 __SCK__tp_func_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xbc26b005 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc4228b06 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0xc513d985 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0xcd1b1912 do_trace_9p_fid_put -EXPORT_SYMBOL net/9p/9pnet 0xd29ca2b0 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0xd34cfa43 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xbdcc1362 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xc5be7225 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xc7590e53 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xca39e31f p9_client_rename EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0xdd062868 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0xe2e20cb6 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd978f6e1 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xde2833b3 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe1141b0c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe4023a39 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe531c0f0 p9_client_read EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0xe79b0e5b p9_client_cb EXPORT_SYMBOL net/9p/9pnet 0xee437897 __tracepoint_9p_fid_ref -EXPORT_SYMBOL net/9p/9pnet 0xf07642da p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0xf1b77f56 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0xf28821c5 p9_client_rename -EXPORT_SYMBOL net/appletalk/appletalk 0x11e1228b aarp_send_ddp -EXPORT_SYMBOL net/appletalk/appletalk 0x7c903f6f atalk_find_dev_addr -EXPORT_SYMBOL net/appletalk/appletalk 0xabbcb513 atrtr_get_dev -EXPORT_SYMBOL net/appletalk/appletalk 0xbc6c1143 alloc_ltalkdev -EXPORT_SYMBOL net/atm/atm 0x05bdac46 register_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x26e1151f atm_init_aal5 +EXPORT_SYMBOL net/9p/9pnet 0xff914249 p9_client_renameat +EXPORT_SYMBOL net/appletalk/appletalk 0x315238ac aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x4735fd6c alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x6489beb7 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x8fc2ee55 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0f9e0ac5 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x282c53fc register_atm_ioctl EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x37781190 atm_charge EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock -EXPORT_SYMBOL net/atm/atm 0x62a7e90f vcc_release_async -EXPORT_SYMBOL net/atm/atm 0x70783a9d deregister_atm_ioctl -EXPORT_SYMBOL net/atm/atm 0x73f2dc2b atm_dev_signal_change -EXPORT_SYMBOL net/atm/atm 0x9610e056 atm_dev_deregister -EXPORT_SYMBOL net/atm/atm 0x9f70842c vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x533e15e1 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x5de9c527 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x72e453a6 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x7b343b2a atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x8b1b2504 atm_dev_deregister EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats -EXPORT_SYMBOL net/atm/atm 0xa14a46a2 atm_dev_register EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats -EXPORT_SYMBOL net/atm/atm 0xb1371189 atm_charge -EXPORT_SYMBOL net/atm/atm 0xc199b515 vcc_process_recv_queue -EXPORT_SYMBOL net/atm/atm 0xdc67ed53 atm_dev_release_vccs -EXPORT_SYMBOL net/atm/atm 0xe4aa3706 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xbd17519c atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xc16c2801 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xe4e8e916 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xe8e6aacf atm_init_aal5 EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal -EXPORT_SYMBOL net/atm/atm 0xfc3b5ef3 atm_alloc_charge -EXPORT_SYMBOL net/ax25/ax25 0x01a6cd9e ax25_send_frame -EXPORT_SYMBOL net/ax25/ax25 0x0674d5c8 ax25_header_ops +EXPORT_SYMBOL net/atm/atm 0xfc3efb78 atm_dev_register EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy -EXPORT_SYMBOL net/ax25/ax25 0x39840471 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4454c9fe ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x44b0ccb6 ax25_send_frame EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax -EXPORT_SYMBOL net/ax25/ax25 0x4c0cf652 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x464ea494 ax25_listen_register EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc -EXPORT_SYMBOL net/ax25/ax25 0x56e38f44 ax25_linkfail_register -EXPORT_SYMBOL net/ax25/ax25 0x6b3a3a9c ax25_find_cb EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release -EXPORT_SYMBOL net/ax25/ax25 0xbb8e8cca ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8eea003f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x94057929 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xb3e2929a ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc4442c2f ax25_listen_release EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address -EXPORT_SYMBOL net/ax25/ax25 0xd462a98f ax25_ip_xmit EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xf36e8c05 ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01f0aaa0 hci_devcd_append +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04f632a5 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x051cefbc bt_procfs_init EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bafeee4 hci_unregister_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x124ecdce hci_conn_check_secure -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a44a7f1 hci_resume_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dfd0458 __hci_cmd_send -EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e7fedb2 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08135eef __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13340ccc hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13acce6a __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20b7129f hci_release_dev EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn -EXPORT_SYMBOL net/bluetooth/bluetooth 0x21e4cee0 hci_mgmt_chan_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x27bd194d bt_sock_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e06ef43 hci_recv_diag -EXPORT_SYMBOL net/bluetooth/bluetooth 0x31ac1ef0 hci_devcd_complete -EXPORT_SYMBOL net/bluetooth/bluetooth 0x403d0d95 bt_sock_link -EXPORT_SYMBOL net/bluetooth/bluetooth 0x40feebaa bt_accept_dequeue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x443758e2 hci_release_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d954f50 bt_accept_enqueue -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f656a58 bt_accept_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f6c9ce2 bt_sock_unlink -EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fa7e95c __hci_cmd_sync_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x559cc356 hci_mgmt_chan_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x57381d7d hci_free_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0x59411112 hci_set_fw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c45a33a bt_sock_reclassify_lock -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ca7bca6 hci_set_hw_info -EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f418acb hci_devcd_abort -EXPORT_SYMBOL net/bluetooth/bluetooth 0x67b8e2f7 __hci_cmd_sync_status_sk -EXPORT_SYMBOL net/bluetooth/bluetooth 0x69ce6907 l2cap_conn_get -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c8aa9c0 l2cap_chan_close -EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ffbad8a l2cap_unregister_user -EXPORT_SYMBOL net/bluetooth/bluetooth 0x73a39fcf bt_sock_ioctl -EXPORT_SYMBOL net/bluetooth/bluetooth 0x75a96464 hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33b85700 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36554759 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x39f7fae2 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42247dd7 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46ab7b98 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49675693 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ad5e1da hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ba302cd bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c0d4a8a l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4cfd945a l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53e74a73 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ed4b8b9 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x64f6dd3d hci_cmd_sync_submit +EXPORT_SYMBOL net/bluetooth/bluetooth 0x697350d5 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f2fa499 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77017712 bt_sock_wait_ready EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ba9c69e bt_accept_enqueue EXPORT_SYMBOL net/bluetooth/bluetooth 0x7bd9427a bt_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x850b2a6d hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e674b45 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ec4ed8c hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8950434d hci_devcd_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89adb8c5 __hci_cmd_sync_ev EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister -EXPORT_SYMBOL net/bluetooth/bluetooth 0x935d9122 hci_devcd_append_pattern -EXPORT_SYMBOL net/bluetooth/bluetooth 0x984d920a __hci_cmd_sync_status -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9944c9b4 bt_sock_stream_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b4afb5d hci_register_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9dd29f5d bt_sock_wait_ready -EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fdc135d hci_reset_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0046c62 hci_devcd_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xa32582c2 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92bb0982 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a4b7909 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a962a74 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e17614d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0ed82f4 hci_devcd_complete +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0fb2091 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa19db053 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa2f1bdd2 bt_accept_unlink EXPORT_SYMBOL net/bluetooth/bluetooth 0xa36d67be hci_devcd_rx EXPORT_SYMBOL net/bluetooth/bluetooth 0xa60137a1 hci_devcd_timeout -EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa6b1df3 hci_suspend_dev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xac4ae68b hci_unregister_cb -EXPORT_SYMBOL net/bluetooth/bluetooth 0xad783128 bt_sock_wait_state -EXPORT_SYMBOL net/bluetooth/bluetooth 0xae29e07f bt_sock_poll -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1b73968 __hci_cmd_sync_ev -EXPORT_SYMBOL net/bluetooth/bluetooth 0xb68fdf8b hci_cmd_sync_cancel -EXPORT_SYMBOL net/bluetooth/bluetooth 0xbafb889d hci_devcd_append -EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7f2c1e1 hci_cmd_sync_queue -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc236a18 bt_procfs_cleanup -EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfd1d6c5 hci_alloc_dev_priv -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd091a25b bt_sock_recvmsg -EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6af2494 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaecc2124 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf77afc4 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0106e12 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf0ac3b0 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3050a34 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8248f1e hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb72ce06 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcdc222aa hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce0016cf hci_devcd_abort +EXPORT_SYMBOL net/bluetooth/bluetooth 0xceeb578e hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2d029ec hci_devcd_append_pattern +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6039b51 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6ad78b8 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd6f677ac hci_alloc_dev_priv EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited -EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7a21bef hci_conn_security -EXPORT_SYMBOL net/bluetooth/bluetooth 0xeac7df78 l2cap_is_socket -EXPORT_SYMBOL net/bluetooth/bluetooth 0xed7a8b92 l2cap_conn_put -EXPORT_SYMBOL net/bluetooth/bluetooth 0xedf870ff hci_devcd_register -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf22cc528 hci_cmd_sync -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf368b08d hci_get_route -EXPORT_SYMBOL net/bluetooth/bluetooth 0xf65e92b6 bt_procfs_init -EXPORT_SYMBOL net/bluetooth/bluetooth 0xfdbaac7d hci_conn_switch_role -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x082bfff6 ebt_register_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2eb0d0b8 ebt_unregister_table_pre_exit -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3af2fad7 ebt_unregister_template -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb6484f65 ebt_do_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe0d96546 ebt_register_table -EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfeb5f4f1 ebt_unregister_table +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe18b6010 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6a2c42b bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf01a09fa hci_devcd_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf39da011 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5a91d44 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf831220b bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb5c5920 hci_reset_dev +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5aac49a3 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7589b35f ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x98ccb0b9 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa060d8a8 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa58c9716 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb3f9b520 ebt_register_table EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt -EXPORT_SYMBOL net/caif/caif 0x24482163 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x251059fb 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 0x3c603e78 cfcnfg_add_phy_layer EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head -EXPORT_SYMBOL net/caif/caif 0x420e2084 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative -EXPORT_SYMBOL net/caif/caif 0x4bba9f9d caif_enroll_dev -EXPORT_SYMBOL net/caif/caif 0x7ca27764 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x6eaf7cb1 get_cfcnfg EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x86a30f41 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x97fb2670 caif_connect_client EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0x9f05dc6a caif_enroll_dev EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client -EXPORT_SYMBOL net/can/can 0x21743654 can_rx_unregister -EXPORT_SYMBOL net/can/can 0x3a37c12d can_proto_register -EXPORT_SYMBOL net/can/can 0x98424edb can_rx_register -EXPORT_SYMBOL net/can/can 0xa44d7fa2 can_sock_destruct -EXPORT_SYMBOL net/can/can 0xc3f7bee5 can_send -EXPORT_SYMBOL net/can/can 0xfe380fad can_proto_unregister -EXPORT_SYMBOL net/ceph/libceph 0x00df70eb osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x0477ce12 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/can/can 0x1a2d5607 can_send +EXPORT_SYMBOL net/can/can 0x4b95771f can_proto_register +EXPORT_SYMBOL net/can/can 0x7b0a7950 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x8f9ab99f can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa2c7e82f can_sock_destruct +EXPORT_SYMBOL net/can/can 0xb9b2d1e2 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x01f2472a ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x02965d86 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x03659e61 ceph_msg_data_add_bvecs EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x04ea8597 osd_req_op_extent_dup_last -EXPORT_SYMBOL net/ceph/libceph 0x054784e0 ceph_parse_param -EXPORT_SYMBOL net/ceph/libceph 0x062b5fa0 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x06c22eb2 ceph_msg_data_add_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x071acfa1 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x099fdc17 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x0a2a04e8 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x12ee5d12 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0627f1f5 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0686b7cd osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x0759ce46 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x0a513fef ceph_reset_client_addr EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x171948b3 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x1782e016 osd_req_op_extent_osd_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x19543edd ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x1c74c283 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1d81aa2b __ceph_alloc_sparse_ext_map +EXPORT_SYMBOL net/ceph/libceph 0x1ee3a80f ceph_osdc_sync EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy -EXPORT_SYMBOL net/ceph/libceph 0x22705f44 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x23631976 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x288c1bad ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x29a9fbee ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2394481a osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x244843fd ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x24d53ae0 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x259a5d67 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x25f10cb0 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x27f0c62f ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x295ff228 osd_req_op_cls_init EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x2b7bd19d ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x2f2f1fdc ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x32cd7c9e ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x2b4bf42c ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x2d1c2795 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x36cec692 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents -EXPORT_SYMBOL net/ceph/libceph 0x3a85e07f osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x3c429a18 osd_req_op_extent_osd_data_bio EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects -EXPORT_SYMBOL net/ceph/libceph 0x3d7f098e ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x3d9de393 osd_req_op_cls_request_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0x3faa0f57 osd_req_op_extent_osd_data_bvec_pos -EXPORT_SYMBOL net/ceph/libceph 0x411d6732 ceph_osdc_wait_request EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy -EXPORT_SYMBOL net/ceph/libceph 0x427ef7ed ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x448573e1 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x448d256e ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x434ec13b ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x437141e2 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x43ec8f13 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x449c1e19 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x45777fe1 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x4599b637 ceph_cls_assert_locked EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid -EXPORT_SYMBOL net/ceph/libceph 0x4c8754e6 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x4d8c5e03 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x4df514c4 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x4edc4097 ceph_reset_client_addr -EXPORT_SYMBOL net/ceph/libceph 0x5055b2fe ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x4bf951f0 ceph_osdc_alloc_messages EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec -EXPORT_SYMBOL net/ceph/libceph 0x55544756 ceph_monc_blocklist_add -EXPORT_SYMBOL net/ceph/libceph 0x563c956e osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x50c99e28 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x53f866ec ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x546a46c6 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x556fea77 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x56b75b0a ceph_monc_validate_auth EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x5823e949 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x59d9a619 ceph_osdc_start_request EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf -EXPORT_SYMBOL net/ceph/libceph 0x5b09dbfa ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x60584598 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5c3820fa ceph_osdc_update_epoch_barrier EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x6550493c ceph_osdc_clear_abort_err -EXPORT_SYMBOL net/ceph/libceph 0x665d49a1 ceph_osdc_abort_requests -EXPORT_SYMBOL net/ceph/libceph 0x69bfc387 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x64b8d40d ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x6675d61f osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x66e89d96 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x678671d2 __ceph_auth_get_authorizer EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x6ad04a3b osd_req_op_copy_from_init -EXPORT_SYMBOL net/ceph/libceph 0x6b24f701 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x6dde8441 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x6f4dfe52 ceph_wait_for_latest_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x711c0d03 ceph_auth_handle_svc_reply_more -EXPORT_SYMBOL net/ceph/libceph 0x71c036b3 __ceph_alloc_sparse_ext_map -EXPORT_SYMBOL net/ceph/libceph 0x85f8f916 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x6b9a5ad4 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6ff610a8 osd_req_op_extent_osd_iter +EXPORT_SYMBOL net/ceph/libceph 0x7199e5db ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x71a36b8a osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x73453068 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x739dc49d ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x764003e6 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x76c32d00 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x80914c36 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x81c358c0 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x820c263f ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x82c2a0e3 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x84987341 osd_req_op_cls_request_data_pagelist EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x8936438f ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x8ee209c6 __ceph_auth_get_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x8f886110 ceph_osdc_maybe_request_map -EXPORT_SYMBOL net/ceph/libceph 0x90242f7c osd_req_op_extent_osd_iter -EXPORT_SYMBOL net/ceph/libceph 0x92731441 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x92b63383 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x8a19ed30 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x8a64da1a ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x8d419778 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x8e4e3b29 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x911a5fcc ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x9176baef ceph_cls_break_lock EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags -EXPORT_SYMBOL net/ceph/libceph 0x96a4b703 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x9349eb46 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x9395459c ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x9583cd78 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x95a0876d ceph_auth_handle_svc_reply_done EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options -EXPORT_SYMBOL net/ceph/libceph 0x9acdc426 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x9b41cdf7 ceph_osdc_maybe_request_map EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x9ec967c6 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x9f654266 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9e02997e ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x9f790d25 ceph_osdc_unwatch EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0xa63d6a36 ceph_cls_set_cookie EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers -EXPORT_SYMBOL net/ceph/libceph 0xa72792a3 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xa7b13bc6 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xa7b430be osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xabb7dcb4 osd_req_op_alloc_hint_init EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0xada64ca5 ceph_cls_lock_info EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0xafce0e0b ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0xb3e5d0a8 ceph_monc_want_map -EXPORT_SYMBOL net/ceph/libceph 0xb435668d ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0xb47823e3 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xb0f33347 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xb10ee3f4 ceph_con_open EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5897487 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xb666c524 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xb6aacb79 ceph_msg_new2 EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0xbb9e5d8d ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0xbc3235aa ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb77cf110 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xb920ae09 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xbbd40fa6 ceph_auth_verify_authorizer_reply EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe85fb53 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xc0feba40 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xc23951a6 osd_req_op_raw_data_in_pages EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0xc39874ce ceph_msg_new2 -EXPORT_SYMBOL net/ceph/libceph 0xc64fdf9b ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xc9aa155b ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xc731bea8 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xc8a1ba2c ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xc9a4d643 osd_req_op_extent_osd_data_bvecs EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file -EXPORT_SYMBOL net/ceph/libceph 0xcce20fe0 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0xce2d68b3 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0xd14e6936 ceph_auth_add_authorizer_challenge -EXPORT_SYMBOL net/ceph/libceph 0xd17ec65e ceph_cls_unlock -EXPORT_SYMBOL net/ceph/libceph 0xd41bbba2 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xcdfcf9d6 ceph_con_init EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr -EXPORT_SYMBOL net/ceph/libceph 0xdaf43313 ceph_osdc_unwatch -EXPORT_SYMBOL net/ceph/libceph 0xdbcae782 ceph_osdc_call -EXPORT_SYMBOL net/ceph/libceph 0xdddb336b ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0xde62f3ef ceph_monc_get_version_async -EXPORT_SYMBOL net/ceph/libceph 0xde96cd54 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0xdea9856a ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xd6c5b8a8 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xd6fe2cf1 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xd851afb1 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xdae4c454 ceph_monc_stop EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdf9c6f36 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xdfb368f1 ceph_osdc_new_request EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name -EXPORT_SYMBOL net/ceph/libceph 0xe1131b88 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xe0210143 ceph_auth_invalidate_authorizer EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg -EXPORT_SYMBOL net/ceph/libceph 0xe386cd8f ceph_osdc_notify -EXPORT_SYMBOL net/ceph/libceph 0xe60a02f9 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0xe671525f ceph_msg_get EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc -EXPORT_SYMBOL net/ceph/libceph 0xe7d5cfcb __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0xe88bda31 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xe97942e7 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0xe9a5f004 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0xed06c301 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xea8d14fd ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xeca4eb88 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xedcdd183 ceph_monc_do_statfs EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents -EXPORT_SYMBOL net/ceph/libceph 0xef50e752 ceph_auth_handle_bad_authorizer EXPORT_SYMBOL net/ceph/libceph 0xefce3c3b ceph_pagelist_reserve EXPORT_SYMBOL net/ceph/libceph 0xefce991c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xefd031db ceph_cls_lock EXPORT_SYMBOL net/ceph/libceph 0xf03fe862 ceph_pagelist_set_cursor EXPORT_SYMBOL net/ceph/libceph 0xf254297e ceph_addr_is_blank -EXPORT_SYMBOL net/ceph/libceph 0xf2c4d377 ceph_osdc_update_epoch_barrier -EXPORT_SYMBOL net/ceph/libceph 0xf360fb96 osd_req_op_extent_osd_data_bvecs -EXPORT_SYMBOL net/ceph/libceph 0xf36fccdb osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0xf47e4c3f ceph_client_gid -EXPORT_SYMBOL net/ceph/libceph 0xf6203e41 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0xf73357c4 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0xfa0f9c0d ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0xfc00eeac ceph_monc_get_version -EXPORT_SYMBOL net/ceph/libceph 0xfdadd171 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0xff1ab2e0 ceph_cls_assert_locked -EXPORT_SYMBOL net/ceph/libceph 0xffff8fc6 ceph_alloc_page_vector -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x148fc6b7 dccp_req_err -EXPORT_SYMBOL net/dccp/dccp_ipv4 0x20661daa dccp_syn_ack_timeout -EXPORT_SYMBOL net/hsr/hsr 0x1e470e10 hsr_get_version -EXPORT_SYMBOL net/hsr/hsr 0x3a04f8c2 is_hsr_master -EXPORT_SYMBOL net/ieee802154/ieee802154 0x0f6649f8 wpan_phy_free -EXPORT_SYMBOL net/ieee802154/ieee802154 0x1e2dbbc4 wpan_phy_new -EXPORT_SYMBOL net/ieee802154/ieee802154 0x26fbc492 wpan_phy_register -EXPORT_SYMBOL net/ieee802154/ieee802154 0x9a36998b wpan_phy_for_each -EXPORT_SYMBOL net/ieee802154/ieee802154 0xdf8957f9 wpan_phy_unregister -EXPORT_SYMBOL net/ieee802154/ieee802154 0xe317c775 wpan_phy_find -EXPORT_SYMBOL net/ipv4/fou 0x16ceb7df __fou_build_header +EXPORT_SYMBOL net/ceph/libceph 0xf41b43d7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf4602aa3 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xf4a4fe39 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf57823d8 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xf77ad43a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xf9c74733 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfd6c5ce3 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xff830e2a ceph_con_keepalive +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd6f17c16 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xdc196b22 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x38cf3583 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xebf1cbc8 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1bebdef5 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3276539f wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3fcebbf6 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x47e8723f wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7a119c16 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe2994d9e wpan_phy_unregister EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen -EXPORT_SYMBOL net/ipv4/fou 0xd97726e7 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x67dbcd57 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xa8625c6f __fou_build_header EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen -EXPORT_SYMBOL net/ipv4/gre 0x7f1d2656 gre_parse_header -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x04ec23a0 ip_tunnel_md_udp_encap -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x5098e102 ip_tunnel_encap_add_ops -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x57ce82c1 ip_tunnel_get_link_net -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7c2f96eb ip_tunnel_get_iflink -EXPORT_SYMBOL net/ipv4/ip_tunnel 0x892f9cd3 ip_tunnel_encap_del_ops -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0503ee6f arpt_do_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x156972c8 arpt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4ee47577 arpt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdeb4897b arpt_unregister_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1ad25eab ipt_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x76f1c4a7 ipt_register_table -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8f2632ce ipt_unregister_table_exit -EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf29a32c2 ipt_do_table -EXPORT_SYMBOL net/ipv4/tunnel4 0x7433492a xfrm4_tunnel_deregister -EXPORT_SYMBOL net/ipv4/tunnel4 0xf423f81d xfrm4_tunnel_register -EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa4e500c7 udp_sock_create4 -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2364fc0d ip6_tnl_encap_del_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2f68d13b ip6_tnl_change_mtu -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4272a7cb ip6_tnl_get_link_net -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x47886c3a ip6_tnl_encap_add_ops -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9439db1a ip6_tnl_rcv -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xce4a5ef5 ip6_tnl_get_iflink -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe50b3f8c ip6_tnl_parse_tlv_enc_lim -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xebb6fc0e ip6_tnl_get_cap -EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xed3d2f74 ip6_tnl_xmit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x49cd31b1 ip6t_unregister_table_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7359b1a0 ip6t_unregister_table_pre_exit -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x887b5a7c ip6t_do_table -EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc997eecd ip6t_register_table -EXPORT_SYMBOL net/ipv6/tunnel6 0x749eba95 xfrm6_tunnel_deregister -EXPORT_SYMBOL net/ipv6/tunnel6 0xcbc95f10 xfrm6_tunnel_register -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x017dcfbe xfrm6_tunnel_spi_lookup -EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7d85158a xfrm6_tunnel_alloc_spi -EXPORT_SYMBOL net/lapb/lapb 0x12781ea2 lapb_data_request -EXPORT_SYMBOL net/lapb/lapb 0x5192bd8b lapb_unregister -EXPORT_SYMBOL net/lapb/lapb 0x7666c26d lapb_connect_request -EXPORT_SYMBOL net/lapb/lapb 0x782f79f3 lapb_register -EXPORT_SYMBOL net/lapb/lapb 0x935d0c1e lapb_setparms -EXPORT_SYMBOL net/lapb/lapb 0xbbfc769a lapb_getparms -EXPORT_SYMBOL net/lapb/lapb 0xd766e68b lapb_disconnect_request -EXPORT_SYMBOL net/lapb/lapb 0xde4f9b37 lapb_data_received -EXPORT_SYMBOL net/llc/llc 0x07b3aff0 llc_add_pack +EXPORT_SYMBOL net/ipv4/gre 0x515f3424 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0a788a60 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x946b5d41 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbdd2e453 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd3cff7b1 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf0a11ac2 ip_tunnel_md_udp_encap +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1a7a6c40 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8a2a904c arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8e38abf6 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdf451036 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2fa08d2c ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4bf8d196 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb851602b ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xba54e149 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x748f091a xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf49fb82d xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x54aadd30 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x03e88ca6 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x59640b30 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5e1e509e ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8e4b089a ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x96ab1644 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb03fa7ed ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe975e3c2 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xeb809709 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf2478673 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x507914f0 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6aed94e1 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x87767680 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf48f657d ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x1620452a xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xa977a0af xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7545f5a9 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd0cfc047 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x2aa6ced5 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x3374fe17 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x8ba6ea33 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xac5295d5 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xc20d47e0 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xd250d924 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xfaf1a3a0 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xff437b82 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x180abc8a llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x2b286f71 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 0x5ac97fe6 llc_sap_close -EXPORT_SYMBOL net/llc/llc 0x75270e48 llc_set_station_handler -EXPORT_SYMBOL net/llc/llc 0x9ffb2694 llc_sap_find -EXPORT_SYMBOL net/llc/llc 0xb6ea826a llc_mac_hdr_init -EXPORT_SYMBOL net/llc/llc 0xf815af9b llc_build_and_send_ui_pkt -EXPORT_SYMBOL net/llc/llc 0xfed2f0d4 llc_sap_open -EXPORT_SYMBOL net/mac80211/mac80211 0x01273b0e ieee80211_alloc_hw_nm -EXPORT_SYMBOL net/mac80211/mac80211 0x0b9bc931 ieee80211_next_txq -EXPORT_SYMBOL net/mac80211/mac80211 0x0d5dee1a ieee80211_rx_ba_timer_expired -EXPORT_SYMBOL net/mac80211/mac80211 0x11f79c9d ieee80211_free_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x134492f7 ieee80211_rx_napi -EXPORT_SYMBOL net/mac80211/mac80211 0x1579f366 ieee80211_find_sta -EXPORT_SYMBOL net/mac80211/mac80211 0x19216f6d ieee80211_txq_airtime_check +EXPORT_SYMBOL net/llc/llc 0x6ad31024 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xd45c0643 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xd6cbb93e llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xf41ffd9f llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xf5ec59db llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x039352f4 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x04f47013 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x0b55070a ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x0b7adc19 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0d73e58e ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x0d94a49b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1269e358 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x147e383c ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x16a22dac ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x16c9f498 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x172d1680 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x180a8fc4 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x1909a52b ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x199e34f2 __ieee80211_get_radio_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x1c7fc991 ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x1a762156 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x1cad8fee __ieee80211_get_assoc_led_name EXPORT_SYMBOL net/mac80211/mac80211 0x1cf75d45 ieee80211_get_tkip_p1k_iv -EXPORT_SYMBOL net/mac80211/mac80211 0x20023ac0 ieee80211_handle_wake_tx_queue -EXPORT_SYMBOL net/mac80211/mac80211 0x218b6d51 ieee80211_radar_detected -EXPORT_SYMBOL net/mac80211/mac80211 0x23ce8c22 ieee80211_chswitch_done -EXPORT_SYMBOL net/mac80211/mac80211 0x243daf19 ieee80211_stop_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0x28124638 ieee80211_send_eosp_nullfunc -EXPORT_SYMBOL net/mac80211/mac80211 0x29bede8e ieee80211_stop_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x2b23453b ieee80211_ctstoself_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x30311d0d ieee80211_sched_scan_results -EXPORT_SYMBOL net/mac80211/mac80211 0x30e89687 ieee80211_queue_work -EXPORT_SYMBOL net/mac80211/mac80211 0x317e83d1 wiphy_to_ieee80211_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x31b4d841 ieee80211_channel_switch_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0x35755d5d ieee80211_unreserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x36c27f84 ieee80211_tx_prepare_skb -EXPORT_SYMBOL net/mac80211/mac80211 0x37754854 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x1d6dda79 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x20750bf8 ieee80211_beacon_free_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0x22e13529 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x25f22421 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x26542861 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x295afcb1 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x2bc09176 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2c2952ce ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x2e5219e4 ieee80211_beacon_get_template_ema_index +EXPORT_SYMBOL net/mac80211/mac80211 0x31406bd5 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x32b2eae5 ieee80211_tx_dequeue EXPORT_SYMBOL net/mac80211/mac80211 0x391eda45 ieee80211_get_tkip_rx_p1k -EXPORT_SYMBOL net/mac80211/mac80211 0x3af259d0 ieee80211_rts_duration -EXPORT_SYMBOL net/mac80211/mac80211 0x40d11795 __ieee80211_get_radio_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4303831d ieee80211_sched_scan_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x45e2ac89 __ieee80211_get_assoc_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x4b828b39 ieee80211_start_tx_ba_cb_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x4c18c212 ieee80211_nan_func_match -EXPORT_SYMBOL net/mac80211/mac80211 0x4dce2722 ieee80211_tx_status_ext -EXPORT_SYMBOL net/mac80211/mac80211 0x53b6b422 ieee80211_ctstoself_get -EXPORT_SYMBOL net/mac80211/mac80211 0x54db87fc __ieee80211_get_tx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0x5805e679 ieee80211_reserve_tid -EXPORT_SYMBOL net/mac80211/mac80211 0x58e568e8 ieee80211_beacon_get_template_ema_list -EXPORT_SYMBOL net/mac80211/mac80211 0x5e6bf72a ieee80211_queue_stopped -EXPORT_SYMBOL net/mac80211/mac80211 0x6491d1af ieee80211_sta_register_airtime -EXPORT_SYMBOL net/mac80211/mac80211 0x69d95af6 ieee80211_iter_keys -EXPORT_SYMBOL net/mac80211/mac80211 0x6e4ad784 ieee80211_cqm_rssi_notify -EXPORT_SYMBOL net/mac80211/mac80211 0x75637c93 ieee80211_txq_may_transmit -EXPORT_SYMBOL net/mac80211/mac80211 0x75b73038 __ieee80211_create_tpt_led_trigger -EXPORT_SYMBOL net/mac80211/mac80211 0x7a3b2a74 ieee80211_sta_set_buffered -EXPORT_SYMBOL net/mac80211/mac80211 0x7be877e0 ieee80211_unregister_hw -EXPORT_SYMBOL net/mac80211/mac80211 0x7c59d79d ieee80211_ap_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0x7dde502f ieee80211_nan_func_terminated -EXPORT_SYMBOL net/mac80211/mac80211 0x80d7e0b9 ieee80211_sta_eosp -EXPORT_SYMBOL net/mac80211/mac80211 0x80f0a5cf ieee80211_csa_finish -EXPORT_SYMBOL net/mac80211/mac80211 0x81977e74 ieee80211_tx_status_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0x831a4640 ieee80211_report_wowlan_wakeup -EXPORT_SYMBOL net/mac80211/mac80211 0x85e5670b ieee80211_beacon_loss -EXPORT_SYMBOL net/mac80211/mac80211 0x8781e514 ieee80211_nullfunc_get -EXPORT_SYMBOL net/mac80211/mac80211 0x8c649034 ieee80211_disable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0x8d52f534 ieee80211_rate_control_unregister -EXPORT_SYMBOL net/mac80211/mac80211 0x8e2dca07 ieee80211_send_bar -EXPORT_SYMBOL net/mac80211/mac80211 0x90599614 ieee80211_proberesp_get -EXPORT_SYMBOL net/mac80211/mac80211 0x90dec9bc ieee80211_get_unsol_bcast_probe_resp_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0x9121b623 ieee80211_sta_recalc_aggregates -EXPORT_SYMBOL net/mac80211/mac80211 0x9393d5fe rate_control_set_rates -EXPORT_SYMBOL net/mac80211/mac80211 0x9398f86b ieee80211_tdls_oper_request -EXPORT_SYMBOL net/mac80211/mac80211 0x93aba83a ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x482c0b26 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x4af3b58f rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4c6c3412 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x4f32b6d2 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x513bf75c ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x52ffe996 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x55103c17 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x56a6d6d4 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x5846462f ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x59633f8f ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5bb0e5ca ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x5c918822 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x5d4fd092 ieee80211_refresh_tx_agg_session_timer +EXPORT_SYMBOL net/mac80211/mac80211 0x5e14faa6 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x5e166071 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x627bc83a ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x628f4a0a ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x63d2a7d6 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x66993eb8 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x6834e3c6 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6ca49f2c ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x73aad4d1 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x74489c3a ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x77f37103 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x79104057 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7a0b12ea ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x7d52c9b6 ieee80211_sta_recalc_aggregates +EXPORT_SYMBOL net/mac80211/mac80211 0x81ff43ce ieee80211_handle_wake_tx_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x830204c8 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x87208e4a ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x8836c84f __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x88848641 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8d3de8fd ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x8de2b598 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8eb6c39b ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9494b662 ieee80211_start_tx_ba_cb_irqsafe EXPORT_SYMBOL net/mac80211/mac80211 0x95febea6 ieee80211_get_bssid -EXPORT_SYMBOL net/mac80211/mac80211 0x96057054 ieee80211_beacon_cntdwn_is_complete EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa -EXPORT_SYMBOL net/mac80211/mac80211 0x99af87bd ieee80211_get_buffered_bc -EXPORT_SYMBOL net/mac80211/mac80211 0x9aa652b6 ieee80211_pspoll_get -EXPORT_SYMBOL net/mac80211/mac80211 0x9c63c5df ieee80211_free_txskb -EXPORT_SYMBOL net/mac80211/mac80211 0x9ef9c257 ieee80211_sta_block_awake -EXPORT_SYMBOL net/mac80211/mac80211 0xa1afc856 ieee80211_register_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xa7ee0bb9 ieee80211_manage_rx_ba_offl -EXPORT_SYMBOL net/mac80211/mac80211 0xa8e54c58 ieee80211_stop_rx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xaa38be8b ieee80211_get_fils_discovery_tmpl -EXPORT_SYMBOL net/mac80211/mac80211 0xab8b7ae9 ieee80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/mac80211/mac80211 0xac0dc6ce ieee80211_beacon_update_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xac212296 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x9af5c40d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa4266cf7 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa44d452c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa49967fe ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xaa633fa8 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xac0d4ed8 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xae4795b0 ieee80211_manage_rx_ba_offl EXPORT_SYMBOL net/mac80211/mac80211 0xaeb9a917 ieee80211_get_key_rx_seq -EXPORT_SYMBOL net/mac80211/mac80211 0xb21406ca ieee80211_refresh_tx_agg_session_timer -EXPORT_SYMBOL net/mac80211/mac80211 0xb4d3ad6d ieee80211_beacon_get_template -EXPORT_SYMBOL net/mac80211/mac80211 0xb92db3d4 ieee80211_tx_rate_update -EXPORT_SYMBOL net/mac80211/mac80211 0xb9e3fb44 ieee80211_mark_rx_ba_filtered_frames -EXPORT_SYMBOL net/mac80211/mac80211 0xbb252295 ieee80211_beacon_get_template_ema_index -EXPORT_SYMBOL net/mac80211/mac80211 0xbeab2c73 ieee80211_restart_hw -EXPORT_SYMBOL net/mac80211/mac80211 0xc07c13b6 __ieee80211_schedule_txq -EXPORT_SYMBOL net/mac80211/mac80211 0xc3728496 ieee80211_report_low_ack -EXPORT_SYMBOL net/mac80211/mac80211 0xc5606253 ieee80211_rx_irqsafe -EXPORT_SYMBOL net/mac80211/mac80211 0xc5c18798 ieee80211_disconnect -EXPORT_SYMBOL net/mac80211/mac80211 0xc652be26 ieee80211_stop_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xc686c0fd ieee80211_rx_list -EXPORT_SYMBOL net/mac80211/mac80211 0xc7e724f1 ieee80211_wake_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xcb942769 ieee80211_stop_queues -EXPORT_SYMBOL net/mac80211/mac80211 0xcf93e41c ieee80211_wake_queue -EXPORT_SYMBOL net/mac80211/mac80211 0xd104f804 ieee80211_tx_dequeue -EXPORT_SYMBOL net/mac80211/mac80211 0xd179eb28 __ieee80211_get_rx_led_name -EXPORT_SYMBOL net/mac80211/mac80211 0xd1b58614 ieee80211_probereq_get -EXPORT_SYMBOL net/mac80211/mac80211 0xd421d6cc ieee80211_generic_frame_duration -EXPORT_SYMBOL net/mac80211/mac80211 0xd715f87e ieee80211_beacon_set_cntdwn -EXPORT_SYMBOL net/mac80211/mac80211 0xd841982b ieee80211_txq_schedule_start -EXPORT_SYMBOL net/mac80211/mac80211 0xd8b52814 ieee80211_tx_status -EXPORT_SYMBOL net/mac80211/mac80211 0xdc75bc8e ieee80211_get_tkip_p2k -EXPORT_SYMBOL net/mac80211/mac80211 0xe5e7476b ieee80211_enable_rssi_reports -EXPORT_SYMBOL net/mac80211/mac80211 0xe65d86d8 ieee80211_sta_ps_transition -EXPORT_SYMBOL net/mac80211/mac80211 0xe733e4b9 ieee80211_rts_get -EXPORT_SYMBOL net/mac80211/mac80211 0xea1f91c9 ieee80211_start_tx_ba_session -EXPORT_SYMBOL net/mac80211/mac80211 0xea86d792 ieee80211_scan_completed -EXPORT_SYMBOL net/mac80211/mac80211 0xedf6ee3b ieee80211_iter_keys_rcu -EXPORT_SYMBOL net/mac80211/mac80211 0xef1f3187 ieee80211_get_tx_rates -EXPORT_SYMBOL net/mac80211/mac80211 0xf3b7a61e ieee80211_queue_delayed_work -EXPORT_SYMBOL net/mac80211/mac80211 0xf7165fb0 ieee80211_connection_loss -EXPORT_SYMBOL net/mac80211/mac80211 0xfad15239 ieee80211_sta_pspoll -EXPORT_SYMBOL net/mac80211/mac80211 0xffb848ef ieee80211_beacon_get_tim -EXPORT_SYMBOL net/mac802154/mac802154 0x4b114f95 ieee802154_free_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x5a0b1927 ieee802154_unregister_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x6b62591a ieee802154_xmit_hw_error -EXPORT_SYMBOL net/mac802154/mac802154 0x73a15c86 ieee802154_xmit_complete -EXPORT_SYMBOL net/mac802154/mac802154 0x8787a37a ieee802154_rx_irqsafe -EXPORT_SYMBOL net/mac802154/mac802154 0x8e1ee812 ieee802154_alloc_hw -EXPORT_SYMBOL net/mac802154/mac802154 0x933b800b ieee802154_configure_durations -EXPORT_SYMBOL net/mac802154/mac802154 0xb9a32230 ieee802154_register_hw -EXPORT_SYMBOL net/mac802154/mac802154 0xfc1ff6d8 ieee802154_xmit_error -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x07fda0a1 ip_vs_tcp_conn_listen -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1aa0ca89 ip_vs_conn_put -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x230d1ac0 ip_vs_proto_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x244f7c17 ip_vs_conn_new -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3a91b720 unregister_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x68a9e07d ip_vs_new_conn_out -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x84bf8d04 ip_vs_conn_out_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x87a7990b ip_vs_nfct_expect_related -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9247d2df register_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaec03404 register_ip_vs_scheduler -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc1d27758 unregister_ip_vs_app -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc885a366 ip_vs_conn_in_get -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc969d30d ip_vs_scheduler_err -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0c13957 ip_vs_proto_data_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb171fe0c wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb2c58e94 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb37c75b7 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xb3f9d87a ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb6e81d42 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xb83ef727 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xb8600c99 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xba1d68f2 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xba388240 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc28bd44b ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc3f66381 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc5cc03a3 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xc7499060 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xcb667941 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xce39878a ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd13d6900 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd77fdb3c ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xdb8692d6 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xdc00bf4b ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xde02d82a ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdf88b759 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xdf9f5107 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xe3c678bf ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xe5bb0fef ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xe86695da __ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xf3366364 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xf34d53cf ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf3f649c5 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf6a8e3d5 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfa77befa ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xfbfaf1ac ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfd5e6284 ieee80211_beacon_get_template_ema_list +EXPORT_SYMBOL net/mac80211/mac80211 0xfd7368e9 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xff627c3e ieee80211_csa_finish +EXPORT_SYMBOL net/mac802154/mac802154 0x36fa6cbe ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x47754c52 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x54c32e7a ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x566f1ae0 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5b862cb9 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0xb5c721f7 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe05a6580 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xe0a8705f ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xfcccb255 ieee802154_xmit_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x00e1d249 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14abe3a7 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x203976f9 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40eaf775 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5c0b0dcc ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5db79d5d ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x853fa244 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x881dc944 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a1124db ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8de9d711 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb468f5dd unregister_ip_vs_scheduler EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name -EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf5031774 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd9e311fc ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xebb59038 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf9c18b5d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc02599c ip_vs_conn_in_get EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x69011b55 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find -EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa5dca495 nf_ct_ext_add EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name -EXPORT_SYMBOL net/netfilter/nf_nat 0x02c7a7b7 nf_nat_follow_master -EXPORT_SYMBOL net/netfilter/nf_nat 0x3f9f8ca9 nf_nat_setup_info -EXPORT_SYMBOL net/netfilter/nf_nat 0xd3686042 __nf_nat_mangle_tcp_packet -EXPORT_SYMBOL net/netfilter/nf_nat 0xf725f8b9 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x42c40e0a nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x4c1a113d nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x77780225 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdccb9722 nf_nat_setup_info EXPORT_SYMBOL net/netfilter/nft_fib 0x46170f23 nft_fib_policy EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x2e0bc371 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x17b326cf xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x1cfbc08d xt_unregister_matches EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks -EXPORT_SYMBOL net/netfilter/x_tables 0x419a717d xt_unregister_target -EXPORT_SYMBOL net/netfilter/x_tables 0x41cedd4e xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x47943bc6 xt_register_matches EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0x58e66d4a xt_find_table -EXPORT_SYMBOL net/netfilter/x_tables 0x7564383a xt_unregister_matches -EXPORT_SYMBOL net/netfilter/x_tables 0x78bb3bcc xt_find_match -EXPORT_SYMBOL net/netfilter/x_tables 0x7ea1adbf xt_unregister_targets -EXPORT_SYMBOL net/netfilter/x_tables 0x92b8b29e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x5499c24f xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x624163ff xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x65954bd2 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x6b566b3b xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x84c0bc31 xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info -EXPORT_SYMBOL net/netfilter/x_tables 0x9ff45a5c xt_register_targets EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets -EXPORT_SYMBOL net/netfilter/x_tables 0xa263eb58 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb163a01c xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb734f459 xt_unregister_match EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset -EXPORT_SYMBOL net/nfc/hci/hci 0x07d33f00 nfc_hci_send_cmd_async -EXPORT_SYMBOL net/nfc/hci/hci 0x101f7012 nfc_hci_disconnect_all_gates -EXPORT_SYMBOL net/nfc/hci/hci 0x132f9b23 nfc_hci_set_param -EXPORT_SYMBOL net/nfc/hci/hci 0x232af051 nfc_hci_unregister_device -EXPORT_SYMBOL net/nfc/hci/hci 0x28f303f4 nfc_hci_allocate_device -EXPORT_SYMBOL net/nfc/hci/hci 0x2cbd1cfa nfc_llc_stop -EXPORT_SYMBOL net/nfc/hci/hci 0x486a87e1 nfc_hci_driver_failure -EXPORT_SYMBOL net/nfc/hci/hci 0x57274695 nfc_hci_connect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x594c3997 nfc_hci_target_discovered -EXPORT_SYMBOL net/nfc/hci/hci 0x6046eab1 nfc_hci_send_cmd -EXPORT_SYMBOL net/nfc/hci/hci 0x62c98c4c nfc_hci_recv_frame -EXPORT_SYMBOL net/nfc/hci/hci 0x67a7e4d8 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x0057700d nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x0e31e07b nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x1b0ab700 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x277cb6a2 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2a2f95a3 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x32edc525 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x375ac6db nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x55f4239d nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x6046165e nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x6f088306 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x70f82187 nfc_hci_target_discovered EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno -EXPORT_SYMBOL net/nfc/hci/hci 0x75995155 nfc_hci_reset_pipes -EXPORT_SYMBOL net/nfc/hci/hci 0x8505ae53 nfc_hci_send_event -EXPORT_SYMBOL net/nfc/hci/hci 0x99920eb9 nfc_hci_disconnect_gate -EXPORT_SYMBOL net/nfc/hci/hci 0x9b3de187 nfc_hci_set_clientdata -EXPORT_SYMBOL net/nfc/hci/hci 0xd08e659c nfc_hci_get_param -EXPORT_SYMBOL net/nfc/hci/hci 0xd1c2e8a4 nfc_hci_register_device -EXPORT_SYMBOL net/nfc/hci/hci 0xdc91cba5 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x807f984b nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x82ec4f9a nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x83270f53 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xa170f3ab nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb02616a9 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xcb656069 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xd594ae57 nfc_hci_unregister_device EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol -EXPORT_SYMBOL net/nfc/hci/hci 0xf42f14ac nfc_hci_reset_pipes_per_host -EXPORT_SYMBOL net/nfc/hci/hci 0xf88fbe7d nfc_hci_get_clientdata -EXPORT_SYMBOL net/nfc/nci/nci 0x058cd354 nci_hci_set_param -EXPORT_SYMBOL net/nfc/nci/nci 0x07b0b756 nci_recv_frame -EXPORT_SYMBOL net/nfc/nci/nci 0x0a608dd9 nci_nfcc_loopback -EXPORT_SYMBOL net/nfc/nci/nci 0x0abc7664 nci_hci_get_param -EXPORT_SYMBOL net/nfc/nci/nci 0x0f73fbe0 nci_unregister_device -EXPORT_SYMBOL net/nfc/nci/nci 0x1afb25b5 nci_nfcee_mode_set -EXPORT_SYMBOL net/nfc/nci/nci 0x1d09d0cc nci_core_reset -EXPORT_SYMBOL net/nfc/nci/nci 0x6c448b15 nci_hci_connect_gate -EXPORT_SYMBOL net/nfc/nci/nci 0x6c53777f nci_register_device -EXPORT_SYMBOL net/nfc/nci/nci 0x754fdb39 nci_conn_max_data_pkt_payload_size -EXPORT_SYMBOL net/nfc/nci/nci 0x7da40579 nci_hci_dev_session_init -EXPORT_SYMBOL net/nfc/nci/nci 0x7fdbeabb nci_get_conn_info_by_dest_type_params -EXPORT_SYMBOL net/nfc/nci/nci 0x80c47dee nci_hci_send_event -EXPORT_SYMBOL net/nfc/nci/nci 0x901526f0 nci_allocate_device -EXPORT_SYMBOL net/nfc/nci/nci 0x9361f9ba nci_hci_open_pipe -EXPORT_SYMBOL net/nfc/nci/nci 0x955b6d3d nci_send_data -EXPORT_SYMBOL net/nfc/nci/nci 0x98aab7a7 nci_set_config -EXPORT_SYMBOL net/nfc/nci/nci 0x9e48f14d nci_req_complete -EXPORT_SYMBOL net/nfc/nci/nci 0x9fb601b0 nci_free_device -EXPORT_SYMBOL net/nfc/nci/nci 0xa01fcf20 nci_hci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xba32713a nci_core_conn_close +EXPORT_SYMBOL net/nfc/hci/hci 0xdd9b0cbc nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xde9e3c90 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xe6a12e14 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/nci/nci 0x096005be nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x17dede98 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x248a0e62 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x357d7c64 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x3f68a92f nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x47aa82fd nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x55d0a9d1 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x6176b126 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x684e8245 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x70b021d8 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7f136235 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x852e17c4 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x880bf3d3 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x8e8d06ad nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x9545de99 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x959157d9 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x96bd32dc nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9b76c47d nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xa7c12d63 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xa7de8e2d nci_hci_open_pipe EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno -EXPORT_SYMBOL net/nfc/nci/nci 0xc0696ebd nci_nfcee_discover -EXPORT_SYMBOL net/nfc/nci/nci 0xc6900c0b nci_send_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xce9c2301 nci_send_frame -EXPORT_SYMBOL net/nfc/nci/nci 0xdd482ec4 nci_core_init -EXPORT_SYMBOL net/nfc/nci/nci 0xdd9ca784 nci_hci_clear_all_pipes -EXPORT_SYMBOL net/nfc/nci/nci 0xeed9d02c nci_prop_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xf24750ae nci_core_cmd -EXPORT_SYMBOL net/nfc/nci/nci 0xfe2dbecd nci_core_conn_create -EXPORT_SYMBOL net/nfc/nfc 0x05049fd5 nfc_add_se -EXPORT_SYMBOL net/nfc/nfc 0x0ad18b57 nfc_se_connectivity -EXPORT_SYMBOL net/nfc/nfc 0x1438e9a0 nfc_proto_register -EXPORT_SYMBOL net/nfc/nfc 0x14e82724 nfc_allocate_device -EXPORT_SYMBOL net/nfc/nfc 0x1ffa78d5 nfc_get_local_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x219260c2 nfc_targets_found -EXPORT_SYMBOL net/nfc/nfc 0x27117951 nfc_se_transaction -EXPORT_SYMBOL net/nfc/nfc 0x384bf8de nfc_tm_data_received -EXPORT_SYMBOL net/nfc/nfc 0x476bea71 nfc_target_lost -EXPORT_SYMBOL net/nfc/nfc 0x48683909 nfc_register_device -EXPORT_SYMBOL net/nfc/nfc 0x4eb7cae0 __nfc_alloc_vendor_cmd_reply_skb -EXPORT_SYMBOL net/nfc/nfc 0x4f3dabbe nfc_alloc_recv_skb -EXPORT_SYMBOL net/nfc/nfc 0x651c57ac nfc_set_remote_general_bytes -EXPORT_SYMBOL net/nfc/nfc 0x6f19b3ef nfc_dep_link_is_up -EXPORT_SYMBOL net/nfc/nfc 0x80913be5 nfc_vendor_cmd_reply -EXPORT_SYMBOL net/nfc/nfc 0x87abda24 nfc_proto_unregister -EXPORT_SYMBOL net/nfc/nfc 0xa4612212 nfc_tm_deactivated -EXPORT_SYMBOL net/nfc/nfc 0xc34d4490 nfc_unregister_device -EXPORT_SYMBOL net/nfc/nfc 0xcc117cd2 nfc_tm_activated -EXPORT_SYMBOL net/nfc/nfc 0xe07c835a nfc_remove_se -EXPORT_SYMBOL net/nfc/nfc 0xe583686b nfc_send_to_raw_sock -EXPORT_SYMBOL net/nfc/nfc 0xe59e20c7 nfc_driver_failure -EXPORT_SYMBOL net/nfc/nfc 0xee736056 nfc_class -EXPORT_SYMBOL net/nfc/nfc 0xf63048bf nfc_find_se -EXPORT_SYMBOL net/nfc/nfc 0xfefce7ba nfc_fw_download_done -EXPORT_SYMBOL net/nfc/nfc_digital 0x17cd41ac nfc_digital_allocate_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x4836097a nfc_digital_free_device -EXPORT_SYMBOL net/nfc/nfc_digital 0x52fb04df nfc_digital_register_device -EXPORT_SYMBOL net/nfc/nfc_digital 0xc218de56 nfc_digital_unregister_device -EXPORT_SYMBOL net/phonet/phonet 0x0bc87874 phonet_proto_unregister -EXPORT_SYMBOL net/phonet/phonet 0x12cc20c1 phonet_proto_register -EXPORT_SYMBOL net/phonet/phonet 0x20d4252b phonet_header_ops -EXPORT_SYMBOL net/phonet/phonet 0x9485dcef pn_sock_get_port -EXPORT_SYMBOL net/phonet/phonet 0xae991ef3 pn_sock_hash -EXPORT_SYMBOL net/phonet/phonet 0xb7f65834 phonet_stream_ops -EXPORT_SYMBOL net/phonet/phonet 0xc4b2ac97 pn_sock_unhash -EXPORT_SYMBOL net/phonet/phonet 0xde1a536c pn_skb_send -EXPORT_SYMBOL net/rxrpc/rxrpc 0x017cdca0 rxrpc_kernel_get_peer -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0268e4cd rxrpc_kernel_get_epoch -EXPORT_SYMBOL net/rxrpc/rxrpc 0x05094eac rxrpc_kernel_charge_accept -EXPORT_SYMBOL net/rxrpc/rxrpc 0x0defe7ed rxrpc_sock_set_min_security_level -EXPORT_SYMBOL net/rxrpc/rxrpc 0x14574625 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0x264a496f rxrpc_kernel_abort_call +EXPORT_SYMBOL net/nfc/nci/nci 0xbde78a30 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xd76f78ad nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xdef24acf nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xe43e1f9c nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xf01748dd nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xf4d6192a nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xf7d0ad40 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xfa1d0c4a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xfa754f4d nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x088b5a99 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x123ae97c nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x191b34d9 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x1a1b007e nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x3c3db7f0 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x4159b6c4 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x472bd55c nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x493a32e5 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x4bc16d4d nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x4cd89178 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x5a945a9d nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x71ff608f nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x82289dfc nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x913e7de7 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xa3aa13ea nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xafae8474 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xc5afb492 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xca6fda2a nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xdfa99137 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xebcff853 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xf4bd8f06 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xf6121b65 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xf7326d99 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xf98a5696 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xfc259088 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc_digital 0x460df245 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa6fcf1d3 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcc232569 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xd6ee28cc nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x29267b1d pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x430dc979 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x4db50fbc pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x651acd7f pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7fd1d219 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x9bb7b2aa phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xea827d58 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xf38625ed phonet_proto_unregister +EXPORT_SYMBOL net/rxrpc/rxrpc 0x265d5ada key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2f5e6fe9 rxrpc_kernel_check_life EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id -EXPORT_SYMBOL net/rxrpc/rxrpc 0x639fd924 rxrpc_kernel_new_call_notification -EXPORT_SYMBOL net/rxrpc/rxrpc 0x748d6bf2 rxrpc_kernel_get_srtt -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8195f33a rxrpc_kernel_check_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d415cce rxrpc_kernel_recv_data -EXPORT_SYMBOL net/rxrpc/rxrpc 0x99f0997d rxrpc_kernel_set_tx_length -EXPORT_SYMBOL net/rxrpc/rxrpc 0xa60078ef rxrpc_sock_set_security_keyring -EXPORT_SYMBOL net/rxrpc/rxrpc 0xbd42215f rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc44a4cf5 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/rxrpc 0xc690e383 rxrpc_kernel_set_max_life -EXPORT_SYMBOL net/rxrpc/rxrpc 0xce41effb rxrpc_kernel_shutdown_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xd2fc5e28 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/rxrpc 0xdf594169 rxrpc_kernel_put_call -EXPORT_SYMBOL net/rxrpc/rxrpc 0xe7c669fd rxrpc_kernel_send_data -EXPORT_SYMBOL net/sctp/sctp 0x70002cef sctp_do_peeloff +EXPORT_SYMBOL net/rxrpc/rxrpc 0x36c0f985 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5366e42c rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6bf2f8c3 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7a7428c2 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x910d7860 rxrpc_kernel_put_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x96684c2d rxrpc_sock_set_security_keyring +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa592e881 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa78075f8 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa8149690 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xae593828 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbbdc437d rxrpc_kernel_shutdown_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc88b057c rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc067f95 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd9f8ea62 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xef870dcb rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf4c756f5 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf8a3bcc5 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/sctp/sctp 0x0484a85f sctp_do_peeloff EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x35dcdd2d __traceiter_smcr_link_down EXPORT_SYMBOL net/smc/smc 0x76da5303 __tracepoint_smc_rx_recvmsg -EXPORT_SYMBOL net/smc/smc 0x80f2600a __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x8197de97 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x834a6a63 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x877536ed __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xa053541c __tracepoint_smcr_link_down -EXPORT_SYMBOL net/smc/smc 0xb24da661 __traceiter_smc_switch_to_fallback EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg -EXPORT_SYMBOL net/smc/smc 0xc27810c0 __traceiter_smc_rx_recvmsg EXPORT_SYMBOL net/smc/smc 0xd24addfc __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xe46ad2ef __traceiter_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down EXPORT_SYMBOL net/smc/smc 0xf47b4ee2 __tracepoint_smc_tx_sendmsg EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x276e5b1f gss_pseudoflavor_to_service -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc3200d96 gss_mech_get -EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd6f7ec2e gss_mech_put -EXPORT_SYMBOL net/sunrpc/sunrpc 0x1196ff60 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x7736e3f4 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0xac0ae0e0 xdr_truncate_encode -EXPORT_SYMBOL net/tipc/tipc 0x8403f601 tipc_sk_fill_sock_diag -EXPORT_SYMBOL net/tipc/tipc 0xbf4f14e2 tipc_dump_done -EXPORT_SYMBOL net/tipc/tipc 0xc3ee8326 tipc_nl_sk_walk -EXPORT_SYMBOL net/tipc/tipc 0xd9ba3fd4 tipc_dump_start -EXPORT_SYMBOL net/tls/tls 0xb7d896c4 tls_get_record -EXPORT_SYMBOL net/wireless/cfg80211 0x05514655 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2917143a gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7477902a gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xaf8a75db gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x37f8ad1b xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3ea0270d svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd62914fe xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x044436df tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x2d07db4e tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x37257e23 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x62b11de9 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x8148eff3 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0017ef0f cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x01083209 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x01831d1f cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x0321e836 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x03e0aa72 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x055b61d3 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x05dfe13f cfg80211_nan_func_terminated EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create -EXPORT_SYMBOL net/wireless/cfg80211 0x0752c363 ieee80211_get_hdrlen_from_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x0aef0ac2 cfg80211_cqm_rssi_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x0b5bad02 cfg80211_update_owe_info_event -EXPORT_SYMBOL net/wireless/cfg80211 0x0b7778f6 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x082eae84 cfg80211_rx_spurious_frame EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0cd1420b cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x0ed87eac cfg80211_links_removed +EXPORT_SYMBOL net/wireless/cfg80211 0x1077901c wiphy_register EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x118d8733 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x12010ea6 cfg80211_scan_done EXPORT_SYMBOL net/wireless/cfg80211 0x13c58e52 ieee80211_get_8023_tunnel_proto -EXPORT_SYMBOL net/wireless/cfg80211 0x13f28d10 cfg80211_tdls_oper_request -EXPORT_SYMBOL net/wireless/cfg80211 0x14c0592a cfg80211_cqm_pktloss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x17de26ec cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header -EXPORT_SYMBOL net/wireless/cfg80211 0x1a31586e cfg80211_ft_event EXPORT_SYMBOL net/wireless/cfg80211 0x1b82a85a cfg80211_valid_disable_subchannel_bitmap -EXPORT_SYMBOL net/wireless/cfg80211 0x1cc89369 ieee80211_is_valid_amsdu EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm -EXPORT_SYMBOL net/wireless/cfg80211 0x1d102b96 cfg80211_nan_func_terminated -EXPORT_SYMBOL net/wireless/cfg80211 0x21051f28 cfg80211_pmksa_candidate_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x210b490c cfg80211_cac_event -EXPORT_SYMBOL net/wireless/cfg80211 0x210bd70a cfg80211_background_cac_abort -EXPORT_SYMBOL net/wireless/cfg80211 0x2187a701 cfg80211_assoc_failure -EXPORT_SYMBOL net/wireless/cfg80211 0x257c0009 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x23b2f1a3 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x245cc5ef cfg80211_rx_unexpected_4addr_frame EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric -EXPORT_SYMBOL net/wireless/cfg80211 0x2802cfc6 __cfg80211_alloc_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0x2a12b58b regulatory_set_wiphy_regd_sync -EXPORT_SYMBOL net/wireless/cfg80211 0x2a5fd576 cfg80211_ch_switch_started_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x2cba1dc5 cfg80211_sched_scan_stopped_locked -EXPORT_SYMBOL net/wireless/cfg80211 0x2d7efb8f wiphy_rfkill_start_polling -EXPORT_SYMBOL net/wireless/cfg80211 0x321852fb cfg80211_register_netdevice -EXPORT_SYMBOL net/wireless/cfg80211 0x326d9e18 __cfg80211_radar_event -EXPORT_SYMBOL net/wireless/cfg80211 0x350d0995 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x2d282f60 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x2f05fe76 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2ff4000a __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x304918fe cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x311f2760 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x31e209b2 cfg80211_get_iftype_ext_capa +EXPORT_SYMBOL net/wireless/cfg80211 0x325d08e3 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x32a8ca2a wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x33dae979 cfg80211_new_sta EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class -EXPORT_SYMBOL net/wireless/cfg80211 0x37506d91 cfg80211_sched_scan_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0x39b78fe2 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x36e9aa2e cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x39be9592 wiphy_apply_custom_regulatory EXPORT_SYMBOL net/wireless/cfg80211 0x3aca71a1 cfg80211_get_ies_channel_number -EXPORT_SYMBOL net/wireless/cfg80211 0x3bb2153a cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x3bc707a4 cfg80211_notify_new_peer_candidate EXPORT_SYMBOL net/wireless/cfg80211 0x3c744e95 cfg80211_calculate_bitrate EXPORT_SYMBOL net/wireless/cfg80211 0x3c86019a cfg80211_sinfo_alloc_tid_stats -EXPORT_SYMBOL net/wireless/cfg80211 0x3f2276bf cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x3cf96f67 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x403e58b6 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x4066d43b cfg80211_get_drvinfo EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init -EXPORT_SYMBOL net/wireless/cfg80211 0x447d255b cfg80211_get_drvinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x450c3415 cfg80211_send_layer2_update -EXPORT_SYMBOL net/wireless/cfg80211 0x458bfc58 cfg80211_inform_bss_frame_data -EXPORT_SYMBOL net/wireless/cfg80211 0x48aa0574 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x44a62711 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x44d8a7bb ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x48a0f044 cfg80211_unlink_bss EXPORT_SYMBOL net/wireless/cfg80211 0x4abed7d4 ieee80211_mandatory_rates -EXPORT_SYMBOL net/wireless/cfg80211 0x4ac851db cfg80211_notify_new_peer_candidate -EXPORT_SYMBOL net/wireless/cfg80211 0x4e7d4901 cfg80211_new_sta -EXPORT_SYMBOL net/wireless/cfg80211 0x4fc3d50c cfg80211_get_station -EXPORT_SYMBOL net/wireless/cfg80211 0x556be89a wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x4cdda62c cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x4ee0c803 cfg80211_roamed EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x55b95e96 cfg80211_chandef_dfs_required -EXPORT_SYMBOL net/wireless/cfg80211 0x596dab87 wiphy_free -EXPORT_SYMBOL net/wireless/cfg80211 0x59d7474e cfg80211_control_port_tx_status -EXPORT_SYMBOL net/wireless/cfg80211 0x5a7eaf74 cfg80211_unlink_bss -EXPORT_SYMBOL net/wireless/cfg80211 0x5f491566 cfg80211_inform_bss_data -EXPORT_SYMBOL net/wireless/cfg80211 0x60dfa836 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x591bd4b9 nl80211_send_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x5a5d3feb cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x5a5d81c5 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x5d40f414 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x63cecd48 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x677bdd7f cfg80211_rx_mgmt_ext +EXPORT_SYMBOL net/wireless/cfg80211 0x67ad57e4 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x693b17e5 cfg80211_port_authorized EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel -EXPORT_SYMBOL net/wireless/cfg80211 0x6c5d0ca8 cfg80211_bss_color_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x6e49b0d0 cfg80211_check_station_change -EXPORT_SYMBOL net/wireless/cfg80211 0x70f395b5 cfg80211_rx_control_port -EXPORT_SYMBOL net/wireless/cfg80211 0x73383a57 cfg80211_tx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x741cf428 ieee80211_strip_8023_mesh_hdr -EXPORT_SYMBOL net/wireless/cfg80211 0x741e26dd cfg80211_scan_done -EXPORT_SYMBOL net/wireless/cfg80211 0x751966f7 cfg80211_port_authorized -EXPORT_SYMBOL net/wireless/cfg80211 0x7535fc4a regulatory_pre_cac_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0x76bc7b25 cfg80211_rx_unprot_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0x76c83588 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x6d9435eb cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7069cfb5 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7983192c cfg80211_conn_failed EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7ab1b0f1 cfg80211_rx_unprot_mlme_mgmt EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss -EXPORT_SYMBOL net/wireless/cfg80211 0x7ced4441 nl80211_send_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x7c8f6d1f cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7eed86b1 cfg80211_assoc_failure EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen -EXPORT_SYMBOL net/wireless/cfg80211 0x7f7278bc wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x80f2d8d3 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8513e3c1 cfg80211_get_station EXPORT_SYMBOL net/wireless/cfg80211 0x85de3f6f wiphy_delayed_work_timer -EXPORT_SYMBOL net/wireless/cfg80211 0x864558fd cfg80211_stop_iface -EXPORT_SYMBOL net/wireless/cfg80211 0x8670eaaf cfg80211_report_wowlan_wakeup -EXPORT_SYMBOL net/wireless/cfg80211 0x86cd380a cfg80211_ibss_joined -EXPORT_SYMBOL net/wireless/cfg80211 0x8726f21a cfg80211_chandef_usable -EXPORT_SYMBOL net/wireless/cfg80211 0x8876483e cfg80211_del_sta_sinfo -EXPORT_SYMBOL net/wireless/cfg80211 0x89fda058 cfg80211_probe_status -EXPORT_SYMBOL net/wireless/cfg80211 0x8d9fc983 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x8aa4447c ieee80211_is_valid_amsdu +EXPORT_SYMBOL net/wireless/cfg80211 0x8af28e4b cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8b4d753c get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x8c39bcea regulatory_pre_cac_allowed EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func -EXPORT_SYMBOL net/wireless/cfg80211 0x94f04e43 cfg80211_cqm_txe_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9954ec25 cfg80211_report_obss_beacon_khz -EXPORT_SYMBOL net/wireless/cfg80211 0x9a11c3f2 cfg80211_cqm_beacon_loss_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9b8b359b __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x90fe4f26 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x9c8e34c0 cfg80211_update_owe_info_event EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match -EXPORT_SYMBOL net/wireless/cfg80211 0x9e7582c4 cfg80211_ch_switch_notify -EXPORT_SYMBOL net/wireless/cfg80211 0x9eeb596c wiphy_new_nm -EXPORT_SYMBOL net/wireless/cfg80211 0x9f198a71 wiphy_read_of_freq_limits -EXPORT_SYMBOL net/wireless/cfg80211 0x9f8c2924 cfg80211_rx_unexpected_4addr_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xa4356737 cfg80211_ready_on_channel -EXPORT_SYMBOL net/wireless/cfg80211 0xac331552 cfg80211_links_removed -EXPORT_SYMBOL net/wireless/cfg80211 0xac897111 ieee80211_amsdu_to_8023s -EXPORT_SYMBOL net/wireless/cfg80211 0xad56ffab cfg80211_iftype_allowed -EXPORT_SYMBOL net/wireless/cfg80211 0xaf10c85c cfg80211_assoc_comeback -EXPORT_SYMBOL net/wireless/cfg80211 0xb379fa84 freq_reg_info -EXPORT_SYMBOL net/wireless/cfg80211 0xb3fe424f cfg80211_rx_spurious_frame -EXPORT_SYMBOL net/wireless/cfg80211 0xb4c0c8cc cfg80211_put_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xbf0a9fc1 cfg80211_get_iftype_ext_capa -EXPORT_SYMBOL net/wireless/cfg80211 0xbf45328a cfg80211_auth_timeout -EXPORT_SYMBOL net/wireless/cfg80211 0xc25fcdf7 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa1a98b4b wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa35240af cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xa536b116 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0xa61e97fc cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa659bc11 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xaa601708 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xaa6887e2 ieee80211_strip_8023_mesh_hdr +EXPORT_SYMBOL net/wireless/cfg80211 0xad3ee1c5 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xada6ba6a cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xadafc856 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xb0b10e86 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xb23eb9e9 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xb60ac9ef cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb647828e cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xbd8375aa cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xbedcc142 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xbf11ab76 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xbfdc9748 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc0439593 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xc2d73663 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xc3a3e43f cfg80211_check_combinations EXPORT_SYMBOL net/wireless/cfg80211 0xc3fb97ca ieee80211_get_response_rate EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid -EXPORT_SYMBOL net/wireless/cfg80211 0xc8ed2e8b regulatory_set_wiphy_regd -EXPORT_SYMBOL net/wireless/cfg80211 0xc9f396a0 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc55a64ce cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xc570c16a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc6c41d7d cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xc748553c cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xca4e15fa cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcb9454e9 cfg80211_iftype_allowed EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited -EXPORT_SYMBOL net/wireless/cfg80211 0xcfe7a176 cfg80211_rx_mgmt_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xd39c6548 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xce55ac5d cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xcf3da025 cfg80211_mgmt_tx_status_ext +EXPORT_SYMBOL net/wireless/cfg80211 0xd2872e12 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0xd46186e5 cfg80211_register_netdevice EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd5badb43 wiphy_rfkill_start_polling EXPORT_SYMBOL net/wireless/cfg80211 0xd6c87a05 cfg80211_defragment_element -EXPORT_SYMBOL net/wireless/cfg80211 0xd8649e05 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd84e35b7 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd926b0a9 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd926fbef cfg80211_gtk_rekey_notify EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xd9cff7c6 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0xd9fb18e8 cfg80211_bss_color_notify EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name -EXPORT_SYMBOL net/wireless/cfg80211 0xdc343140 get_wiphy_regdom -EXPORT_SYMBOL net/wireless/cfg80211 0xe50079d0 cfg80211_unregister_wdev -EXPORT_SYMBOL net/wireless/cfg80211 0xe6340ca4 cfg80211_connect_done -EXPORT_SYMBOL net/wireless/cfg80211 0xe82ad5da cfg80211_roamed -EXPORT_SYMBOL net/wireless/cfg80211 0xe8b3b0d0 wiphy_register -EXPORT_SYMBOL net/wireless/cfg80211 0xea816596 cfg80211_mgmt_tx_status_ext -EXPORT_SYMBOL net/wireless/cfg80211 0xeb345439 ieee80211_get_channel_khz -EXPORT_SYMBOL net/wireless/cfg80211 0xeb69be98 cfg80211_tx_mgmt_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xebebfdb5 cfg80211_classify8021d -EXPORT_SYMBOL net/wireless/cfg80211 0xee644f4e cfg80211_any_usable_channels -EXPORT_SYMBOL net/wireless/cfg80211 0xeec57936 cfg80211_ref_bss -EXPORT_SYMBOL net/wireless/cfg80211 0xf3268da8 __cfg80211_send_event_skb -EXPORT_SYMBOL net/wireless/cfg80211 0xf3cb3fac cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xde3f2602 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xdf663a96 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xe36578ff cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe9c08d7f cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeffdc22b cfg80211_pmksa_candidate_notify EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band -EXPORT_SYMBOL net/wireless/cfg80211 0xf43a9166 cfg80211_bss_flush EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr -EXPORT_SYMBOL net/wireless/cfg80211 0xf576c32f wdev_chandef -EXPORT_SYMBOL net/wireless/cfg80211 0xf6d8b26d cfg80211_remain_on_channel_expired -EXPORT_SYMBOL net/wireless/cfg80211 0xf97e9a1d cfg80211_crit_proto_stopped -EXPORT_SYMBOL net/wireless/cfg80211 0xfb75fb63 cfg80211_rx_mlme_mgmt -EXPORT_SYMBOL net/wireless/cfg80211 0xfbbf708a cfg80211_iter_combinations -EXPORT_SYMBOL net/wireless/cfg80211 0xfedceb20 wiphy_apply_custom_regulatory -EXPORT_SYMBOL net/wireless/lib80211 0x98ab595f lib80211_register_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xb42f541f lib80211_crypt_info_init -EXPORT_SYMBOL net/wireless/lib80211 0xb6ccc69a lib80211_get_crypto_ops -EXPORT_SYMBOL net/wireless/lib80211 0xbdea07da lib80211_crypt_delayed_deinit -EXPORT_SYMBOL net/wireless/lib80211 0xc8f87e40 lib80211_crypt_info_free -EXPORT_SYMBOL net/wireless/lib80211 0xd3fa0250 lib80211_unregister_crypto_ops -EXPORT_SYMBOL sound/ac97_bus 0xd8cfc4df ac97_bus_type -EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xe729a904 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL net/wireless/cfg80211 0xf5d1e846 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xf78d5a8d freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xf869af1f cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xfb3fb30d ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xfc1b2606 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfdd2db48 regulatory_hint +EXPORT_SYMBOL net/wireless/lib80211 0x32be5ff9 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x4afcce30 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x79ef04f6 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7d1b9de3 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xa4b45598 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xc20aa575 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0x40197923 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xb4b1af60 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 0x23738926 snd_seq_dump_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x47560848 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 0x7aaaf1f1 snd_seq_event_port_attach EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach EXPORT_SYMBOL sound/core/seq/snd-seq 0x85cd59a8 snd_seq_kernel_client_dispatch -EXPORT_SYMBOL sound/core/seq/snd-seq 0x8833772b snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq 0xa6e19f8e snd_seq_expand_var_event EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo -EXPORT_SYMBOL sound/core/seq/snd-seq 0xdb8d191b snd_seq_create_kernel_client -EXPORT_SYMBOL sound/core/seq/snd-seq 0xfe35dcf6 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd711352b snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xfee5ec36 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xff6c34f5 snd_seq_kernel_client_write_poll EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x74769de9 snd_midi_process_event EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear @@ -6042,436 +6042,436 @@ EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb8620ad8 snd_midi_event_reset_decode EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xdd935c83 snd_midi_event_free EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe9e6c50c snd_midi_event_new -EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x13b378c7 snd_virmidi_new -EXPORT_SYMBOL sound/core/snd 0x00ebe1ed snd_ctl_notify -EXPORT_SYMBOL sound/core/snd 0x0207fe4f snd_jack_report -EXPORT_SYMBOL sound/core/snd 0x0833afa3 snd_info_create_card_entry -EXPORT_SYMBOL sound/core/snd 0x0860834e snd_ctl_new1 -EXPORT_SYMBOL sound/core/snd 0x0da1f711 snd_ctl_boolean_mono_info -EXPORT_SYMBOL sound/core/snd 0x17593513 snd_card_register +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x0181973e snd_virmidi_new EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data -EXPORT_SYMBOL sound/core/snd 0x1cf1e3f3 snd_ctl_notify_one -EXPORT_SYMBOL sound/core/snd 0x249844c4 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x2025cadc snd_ctl_register_ioctl_compat EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line -EXPORT_SYMBOL sound/core/snd 0x2a5c3a67 snd_ctl_rename_id -EXPORT_SYMBOL sound/core/snd 0x2ac0369f snd_register_oss_device -EXPORT_SYMBOL sound/core/snd 0x2c1e8467 snd_card_file_remove -EXPORT_SYMBOL sound/core/snd 0x2d106145 snd_unregister_oss_device -EXPORT_SYMBOL sound/core/snd 0x2dfa4847 snd_jack_set_parent -EXPORT_SYMBOL sound/core/snd 0x2dfaae5a snd_component_add -EXPORT_SYMBOL sound/core/snd 0x2f406fab snd_info_free_entry -EXPORT_SYMBOL sound/core/snd 0x30840df4 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x27ac909e snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x29d6905d snd_ctl_unregister_ioctl EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio -EXPORT_SYMBOL sound/core/snd 0x3831e52e snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x35441845 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x35746814 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x38ff4bf1 snd_unregister_device EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit -EXPORT_SYMBOL sound/core/snd 0x3ff7c9bd snd_ctl_free_one -EXPORT_SYMBOL sound/core/snd 0x463aab2d snd_unregister_device -EXPORT_SYMBOL sound/core/snd 0x48d3fb8d snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x39d4233f snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x3a95b271 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x3c254354 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x3f5ca42c snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x4020b989 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x40ea65ec snd_card_register +EXPORT_SYMBOL sound/core/snd 0x44989b38 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x48c168d5 snd_device_new EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card -EXPORT_SYMBOL sound/core/snd 0x4b72ca10 snd_ctl_replace -EXPORT_SYMBOL sound/core/snd 0x53f85ca6 snd_ctl_find_numid -EXPORT_SYMBOL sound/core/snd 0x59e256e2 snd_ctl_boolean_stereo_info -EXPORT_SYMBOL sound/core/snd 0x628f59d6 snd_ctl_register_ioctl -EXPORT_SYMBOL sound/core/snd 0x62c738eb snd_card_free_when_closed -EXPORT_SYMBOL sound/core/snd 0x62f748ba snd_card_free -EXPORT_SYMBOL sound/core/snd 0x6a850907 snd_mixer_oss_notify_callback -EXPORT_SYMBOL sound/core/snd 0x6e6773c0 snd_power_wait -EXPORT_SYMBOL sound/core/snd 0x6f04b5ea snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x4da5dd1b snd_device_register +EXPORT_SYMBOL sound/core/snd 0x4e3ec8d4 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x50510538 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x5153d04c snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x5356caa8 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x55ec9f6d snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x5b990d7c snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x695db9cf snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x6b7fda06 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x6f803189 snd_ctl_find_numid EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id -EXPORT_SYMBOL sound/core/snd 0x74d933fc snd_ctl_remove_id -EXPORT_SYMBOL sound/core/snd 0x788d782f snd_seq_root -EXPORT_SYMBOL sound/core/snd 0x800c13f3 snd_ctl_find_id -EXPORT_SYMBOL sound/core/snd 0x8da2b502 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x76b440c4 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x7cc867bb snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8028f495 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x81789a8b snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x8b653c42 snd_jack_add_new_kctl EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major -EXPORT_SYMBOL sound/core/snd 0x9b918791 snd_device_new -EXPORT_SYMBOL sound/core/snd 0x9c5ed095 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x8fcbe626 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x90472d2b snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x9079a458 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x96f7f6e6 snd_ctl_rename EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0f3c6bd snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xa306892d snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xadfd8ef3 snd_info_create_module_entry EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data -EXPORT_SYMBOL sound/core/snd 0xb48c417f snd_card_disconnect -EXPORT_SYMBOL sound/core/snd 0xc1aee90a snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb43514a2 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xba741843 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xbef130ca snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xc3ad4c8f snd_jack_report EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource -EXPORT_SYMBOL sound/core/snd 0xc5f664ea snd_ctl_rename -EXPORT_SYMBOL sound/core/snd 0xc7cde5e9 snd_device_register -EXPORT_SYMBOL sound/core/snd 0xc8c505c2 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xc6166e52 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xcbd80c4d snd_ctl_notify_one EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info -EXPORT_SYMBOL sound/core/snd 0xd70a8fd5 snd_ctl_make_virtual_master -EXPORT_SYMBOL sound/core/snd 0xd93ef25a snd_device_free -EXPORT_SYMBOL sound/core/snd 0xdf1d05fa snd_card_file_add -EXPORT_SYMBOL sound/core/snd 0xe43f77b7 snd_info_register -EXPORT_SYMBOL sound/core/snd 0xe4e7f4c1 snd_ctl_add -EXPORT_SYMBOL sound/core/snd 0xef794af3 snd_info_create_module_entry -EXPORT_SYMBOL sound/core/snd 0xf5a8f941 snd_ctl_unregister_ioctl -EXPORT_SYMBOL sound/core/snd 0xfc5ba3c0 snd_ctl_register_ioctl_compat -EXPORT_SYMBOL sound/core/snd 0xff6e270b snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xd066b441 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xddf4c77a snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xe33f1180 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xf423bc30 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xf5dcf448 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xf74528de snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xf85b9ef1 snd_ctl_remove_id EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio -EXPORT_SYMBOL sound/core/snd-compress 0xdf5ee784 snd_compr_malloc_pages -EXPORT_SYMBOL sound/core/snd-compress 0xedf4f26a snd_compr_free_pages -EXPORT_SYMBOL sound/core/snd-hwdep 0xb82ef1e9 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-compress 0xc6e87ccd snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0xd43f9c06 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x02c7eaee snd_hwdep_new EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x0374e806 snd_pcm_hw_rule_add EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine -EXPORT_SYMBOL sound/core/snd-pcm 0x05ba6cf3 snd_pcm_hw_constraint_list -EXPORT_SYMBOL sound/core/snd-pcm 0x0602e151 snd_pcm_lib_free_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params -EXPORT_SYMBOL sound/core/snd-pcm 0x18187da9 snd_pcm_set_sync -EXPORT_SYMBOL sound/core/snd-pcm 0x1a0c716c snd_pcm_lib_preallocate_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x1b488fd0 snd_pcm_hw_constraint_ranges EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed -EXPORT_SYMBOL sound/core/snd-pcm 0x222dfc6c snd_pcm_lib_get_vmalloc_page -EXPORT_SYMBOL sound/core/snd-pcm 0x2234394d snd_pcm_hw_constraint_integer -EXPORT_SYMBOL sound/core/snd-pcm 0x248bc962 snd_pcm_hw_param_first -EXPORT_SYMBOL sound/core/snd-pcm 0x2538c37e snd_pcm_set_managed_buffer_all -EXPORT_SYMBOL sound/core/snd-pcm 0x2a81d7f2 snd_pcm_new_internal -EXPORT_SYMBOL sound/core/snd-pcm 0x2ce56a0d snd_pcm_hw_constraint_step -EXPORT_SYMBOL sound/core/snd-pcm 0x2f8a1b02 snd_pcm_suspend_all -EXPORT_SYMBOL sound/core/snd-pcm 0x3733dd2b snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x21878d20 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x29bcce93 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x2dfcf416 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x348a7c24 snd_sgbuf_get_page EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty -EXPORT_SYMBOL sound/core/snd-pcm 0x419527ef snd_pcm_new -EXPORT_SYMBOL sound/core/snd-pcm 0x46005709 snd_pcm_hw_constraint_ratdens -EXPORT_SYMBOL sound/core/snd-pcm 0x4b6fc752 __snd_pcm_lib_xfer -EXPORT_SYMBOL sound/core/snd-pcm 0x4edb1665 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3bdbf809 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4561ca9c snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x45c01dad snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4bf07de6 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x4dfca6a5 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x4ec72f25 snd_dma_alloc_dir_pages 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 0x56391f07 snd_pcm_lib_malloc_pages -EXPORT_SYMBOL sound/core/snd-pcm 0x58eef863 snd_pcm_create_iec958_consumer -EXPORT_SYMBOL sound/core/snd-pcm 0x59ed2cf3 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x57fa5a97 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x5bac87ca snd_pcm_period_elapsed_under_stream_lock EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x6041710c snd_pcm_hw_constraint_integer EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x66dd47ed snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x686533d2 snd_dma_buffer_mmap EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6de347dd _snd_pcm_lib_alloc_vmalloc_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear -EXPORT_SYMBOL sound/core/snd-pcm 0x6f3bb837 snd_pcm_hw_constraint_ratnums -EXPORT_SYMBOL sound/core/snd-pcm 0x70b33cff snd_pcm_hw_constraint_msbits -EXPORT_SYMBOL sound/core/snd-pcm 0x7386b8f5 snd_pcm_stop -EXPORT_SYMBOL sound/core/snd-pcm 0x78ff5814 snd_pcm_hw_constraint_minmax -EXPORT_SYMBOL sound/core/snd-pcm 0x7b161d54 snd_sgbuf_get_chunk_size -EXPORT_SYMBOL sound/core/snd-pcm 0x801503c8 snd_sgbuf_get_addr -EXPORT_SYMBOL sound/core/snd-pcm 0x80b392dd snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x7149fb40 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x74b2e641 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x7547521b snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x78a0109d snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x7b3fc344 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x7f521c02 snd_pcm_set_managed_buffer EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size -EXPORT_SYMBOL sound/core/snd-pcm 0x86d221df snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x868cb0c2 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x86e70245 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x87a95265 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x8c424749 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8c70bc51 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x922be8b1 snd_pcm_stop EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list -EXPORT_SYMBOL sound/core/snd-pcm 0xa1d0ce0b snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9d7f998a snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xa0b3732e snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xa223a17e snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa3e7c7ca snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xa581f7b1 snd_pcm_open_substream 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 0xb36b3b9d snd_pcm_open_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xb7ae3d05 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xad6bfa7d snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb429290c __snd_pcm_lib_xfer EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit -EXPORT_SYMBOL sound/core/snd-pcm 0xc553f826 snd_pcm_period_elapsed_under_stream_lock -EXPORT_SYMBOL sound/core/snd-pcm 0xc9b6de23 snd_pcm_hw_constraint_mask64 -EXPORT_SYMBOL sound/core/snd-pcm 0xcc0ca250 snd_pcm_hw_rule_add -EXPORT_SYMBOL sound/core/snd-pcm 0xcc6a75a3 snd_pcm_hw_param_last -EXPORT_SYMBOL sound/core/snd-pcm 0xce92939b snd_pcm_release_substream -EXPORT_SYMBOL sound/core/snd-pcm 0xcebcaee5 snd_pcm_kernel_ioctl -EXPORT_SYMBOL sound/core/snd-pcm 0xd42c0833 _snd_pcm_lib_alloc_vmalloc_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xd50f020a snd_pcm_period_elapsed -EXPORT_SYMBOL sound/core/snd-pcm 0xd92733a8 snd_pcm_new_stream -EXPORT_SYMBOL sound/core/snd-pcm 0xd9846860 snd_pcm_hw_constraint_pow2 -EXPORT_SYMBOL sound/core/snd-pcm 0xda817b1c snd_dma_buffer_mmap -EXPORT_SYMBOL sound/core/snd-pcm 0xdf758a3d snd_dma_alloc_dir_pages -EXPORT_SYMBOL sound/core/snd-pcm 0xe3d2ddac snd_pcm_set_managed_buffer -EXPORT_SYMBOL sound/core/snd-pcm 0xe4304741 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xbc7517ee snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xbfa1b80d snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xc96631e1 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xcb9076fc snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xcd3af911 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xd4b54810 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xd7dacfda snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xdbb65bae snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xe0b3ef55 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xe401162f snd_pcm_hw_constraint_ratnums EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width -EXPORT_SYMBOL sound/core/snd-pcm 0xf1a64a20 snd_pcm_hw_refine -EXPORT_SYMBOL sound/core/snd-pcm 0xfcae8572 snd_pcm_lib_preallocate_free_for_all -EXPORT_SYMBOL sound/core/snd-pcm 0xfda03f36 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xed4ffe0d snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf4ef3a3f snd_dma_alloc_pages_fallback EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0108b14b snd_rawmidi_kernel_write -EXPORT_SYMBOL sound/core/snd-rawmidi 0x0aa3564a snd_rawmidi_transmit_ack -EXPORT_SYMBOL sound/core/snd-rawmidi 0x150176ee snd_rawmidi_input_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0x2cbc8f23 snd_rawmidi_drop_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0x344ecb97 snd_rawmidi_proceed -EXPORT_SYMBOL sound/core/snd-rawmidi 0x37726a25 snd_rawmidi_kernel_release -EXPORT_SYMBOL sound/core/snd-rawmidi 0x385ff980 snd_rawmidi_receive -EXPORT_SYMBOL sound/core/snd-rawmidi 0x38bbfbe8 snd_rawmidi_kernel_open -EXPORT_SYMBOL sound/core/snd-rawmidi 0x49f29eee snd_rawmidi_drain_input -EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a8790fa snd_rawmidi_kernel_read -EXPORT_SYMBOL sound/core/snd-rawmidi 0x7126230c snd_rawmidi_drain_output -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa07bd1e0 snd_rawmidi_transmit_empty -EXPORT_SYMBOL sound/core/snd-rawmidi 0xa54869c0 snd_rawmidi_new -EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6535a64 snd_rawmidi_set_ops -EXPORT_SYMBOL sound/core/snd-rawmidi 0xbd6fc2c3 snd_rawmidi_output_params -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd460ab5c snd_rawmidi_transmit_peek -EXPORT_SYMBOL sound/core/snd-rawmidi 0xd89909a9 snd_rawmidi_info_select -EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf950acc snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bf87ed0 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x19bc1235 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d3ce8cd snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x39958c58 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4cc395e1 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7a0a90cc snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x890121d8 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x90896b52 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9383dfc2 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xab576220 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1d2a618 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb47ff083 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbb89dba6 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbc8f2601 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbf8a5113 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xee3f8abb snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf6ac7ae0 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf6cdce0f snd_rawmidi_drop_output EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x2186cbd3 snd_seq_device_new EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers -EXPORT_SYMBOL sound/core/snd-seq-device 0x7c315c19 snd_seq_device_new -EXPORT_SYMBOL sound/core/snd-timer 0x0f941df4 snd_timer_continue -EXPORT_SYMBOL sound/core/snd-timer 0x57efd787 snd_timer_global_free -EXPORT_SYMBOL sound/core/snd-timer 0x5b187f83 snd_timer_close -EXPORT_SYMBOL sound/core/snd-timer 0x613b29f0 snd_timer_start -EXPORT_SYMBOL sound/core/snd-timer 0x63d59924 snd_timer_global_register -EXPORT_SYMBOL sound/core/snd-timer 0x6502a2a7 snd_timer_interrupt -EXPORT_SYMBOL sound/core/snd-timer 0x850fc9ee snd_timer_notify -EXPORT_SYMBOL sound/core/snd-timer 0x980df474 snd_timer_instance_free -EXPORT_SYMBOL sound/core/snd-timer 0x994a40ad snd_timer_new -EXPORT_SYMBOL sound/core/snd-timer 0xa2be1441 snd_timer_global_new -EXPORT_SYMBOL sound/core/snd-timer 0xb9a4a6aa snd_timer_open -EXPORT_SYMBOL sound/core/snd-timer 0xcc3b1172 snd_timer_instance_new -EXPORT_SYMBOL sound/core/snd-timer 0xcdaa0f59 snd_timer_resolution -EXPORT_SYMBOL sound/core/snd-timer 0xd84390d4 snd_timer_stop -EXPORT_SYMBOL sound/core/snd-timer 0xdb3184f5 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x13430c50 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x28a3424c snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x2bd1566d snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x3e38c9e0 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x4b7e53fd snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x6b9f32cd snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x7f441d5e snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x9dbbde95 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x9fae256f snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xa4081ee8 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xa88ab93a snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xc4ec65a1 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xdc5f1393 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xe8433632 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xfc06db4d snd_timer_continue EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx -EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x7c342262 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x8ac66c76 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 0x133099ff snd_opl3_init -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2c49a648 snd_opl3_interrupt -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2cf24024 snd_opl3_find_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5cca7cea snd_opl3_reset -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x682804e7 snd_opl3_create -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x71a0e1af snd_opl3_load_patch -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x75254c1b snd_opl3_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7e228baa snd_opl3_hwdep_new -EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9dc67de7 snd_opl3_timer_new -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x00b8e3dc snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x46ba1653 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x58e50f5c snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x83906feb snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8866c218 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8b14e796 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x90634ea4 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa8122b43 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcc6a8afe snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf943f50d snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1a0e6df0 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 0x48985d95 snd_vx_check_reg_bit -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x69e33403 snd_vx_setup_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7ca9cfa4 snd_vx_create -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x828a9f17 snd_vx_load_boot_image -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9a131902 snd_vx_suspend -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa74deef7 snd_vx_free_firmware -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb61f300a snd_vx_resume -EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe657d316 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3944f253 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3b236d65 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7ed321f1 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x90b40103 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xabeb189f snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbcb8280b snd_vx_resume EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c65be64 fw_iso_resources_free -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12102be1 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf7ea28a7 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfce15d3a snd_vx_dsp_load +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x05fad6d9 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0863b73b amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c9886e1 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d1599e7 amdtp_stream_update EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x230e9994 amdtp_stream_pcm_prepare -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23214c58 fw_iso_resources_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bc1825d avc_general_get_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30d6a1de avc_general_get_plug_info -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34d636b5 snd_fw_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35480b52 iso_packets_buffer_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c57c715 amdtp_stream_get_max_payload -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52a3db72 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23dc74dd fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28be59c7 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29257b4b cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3336c67b fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x35efdcc1 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d46a93d amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x480ac049 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a5d2be5 iso_packets_buffer_destroy EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64a36bba amdtp_stream_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7288dab0 avc_general_set_sig_fmt -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78da8fe5 amdtp_stream_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x82fca269 fw_iso_resources_allocate -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8395ea63 fw_iso_resources_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x83c7d518 cmp_connection_break -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85183fc8 amdtp_stream_add_pcm_hw_constraints -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x89bc6fb9 cmp_connection_init -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x987dfbe8 amdtp_stream_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xafc8afb4 fcp_avc_transaction -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xafecf1ca cmp_connection_establish -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8219c65 cmp_connection_release -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc265bed3 cmp_connection_destroy -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc5ce644d cmp_connection_check_used -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1a771c9 fw_iso_resources_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd211a98c cmp_connection_reserve -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe67301ec amdtp_stream_set_parameters -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xedfabca7 cmp_connection_update -EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf65062a8 iso_packets_buffer_destroy -EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x22cb8cda intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x564fcdaf avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56cb3673 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x65482dc3 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x70ace736 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f7f496b fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9b6eda58 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c4b02fd cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e23f182 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa7a2d5d2 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb3d40089 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdde96936 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe60f204b cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb074b56 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1c24de4 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd2abf9b snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfe1ebb70 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xffcbdad0 amdtp_stream_pcm_abort EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb7b836b3 intel_nhlt_ssp_mclk_mask -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2effb9e6 snd_ak4113_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xbc55ae0e snd_ak4113_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x27396dda snd_ak4114_reg_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3fe161d0 snd_ak4114_external_rate -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5a941a1f snd_ak4114_check_rate_and_errors -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x62b76b35 snd_ak4114_create -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7acb06b7 snd_ak4114_build -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8665f9bf snd_ak4114_suspend -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa872f8da snd_ak4114_resume -EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcd5521b3 snd_ak4114_reinit -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x236b6ef4 snd_akm4xxx_init -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8bffb4ba snd_akm4xxx_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9a84cb0d snd_akm4xxx_write -EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc715904f snd_akm4xxx_reset -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xa52c0df3 snd_pt2258_build_controls -EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf3002555 snd_pt2258_reset -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2efc4d0b snd_cs8427_iec958_active -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x36108b37 snd_cs8427_reg_write -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x44f4b4b0 snd_cs8427_iec958_pcm -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x46b4807a snd_cs8427_iec958_build -EXPORT_SYMBOL sound/i2c/snd-cs8427 0x649b5d39 snd_cs8427_init -EXPORT_SYMBOL sound/i2c/snd-cs8427 0xab03009b snd_cs8427_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3de02593 snd_i2c_sendbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0x3e080ebe snd_i2c_device_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0x44cb6411 snd_i2c_probeaddr -EXPORT_SYMBOL sound/i2c/snd-i2c 0x88668a77 snd_i2c_bus_create -EXPORT_SYMBOL sound/i2c/snd-i2c 0xd738d10f snd_i2c_readbytes -EXPORT_SYMBOL sound/i2c/snd-i2c 0xea2c49a0 snd_i2c_device_free -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x089f8eac snd_ac97_pcm_assign -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1dabbd28 snd_ac97_update_power -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2b69f1d2 snd_ac97_mixer -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x56e95c91 snd_ac97_suspend -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5cdf8abd snd_ac97_tune_hardware -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x66456711 snd_ac97_write -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6bea3aab snd_ac97_write_cache -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7ecc5da9 snd_ac97_bus -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8d09fb63 snd_ac97_pcm_open -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x932fef27 snd_ac97_set_rate -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x957170b5 snd_ac97_read -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa2062f20 snd_ac97_pcm_close -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbd1724d5 snd_ac97_resume -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbdc375bb snd_ac97_update_bits -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd486fe5a snd_ac97_get_short_name -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf0f29107 snd_ac97_pcm_double_rate_rules -EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfaf0918f snd_ac97_update -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2dadeb93 snd_emu10k1_synth_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x35ba723e snd_emu10k1_synth_copy_from_user -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x45da663c snd_emu10k1_voice_free -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5ea5703e snd_emu10k1_synth_bzero -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fa7e321 snd_emu10k1_memblk_map -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbc898168 snd_emu10k1_ptr_write_multiple -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xce106b8d snd_emu10k1_ptr_read -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdd1376e0 snd_emu10k1_synth_alloc -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdfd15853 snd_emu10k1_ptr_write -EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf7fafc4b snd_emu10k1_voice_alloc -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x79190aae snd_ice1712_akm4xxx_free -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaccbf8e1 snd_ice1712_akm4xxx_build_controls -EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc830f012 snd_ice1712_akm4xxx_init -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x13ec27ee oxygen_read16 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x292a1c1f oxygen_write_i2c -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x45e7f006 oxygen_pci_pm -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x62f9d728 oxygen_write32_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64c13849 oxygen_write_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x779e0e75 oxygen_write_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7cda8f7a oxygen_write_spi -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8cb16cd7 oxygen_update_dac_routing -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8df289a9 oxygen_pci_probe -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x94d5242b oxygen_read32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa1aaf5eb oxygen_reset_uart -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad134cde oxygen_write_ac97_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaf151222 oxygen_write32 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc25c900e oxygen_read_ac97 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc910e510 oxygen_write8_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd60059fc oxygen_pci_shutdown -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xed11af57 oxygen_read8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf09eaee0 oxygen_write16_masked -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf66a6270 oxygen_write8 -EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfccf8b87 oxygen_write16 -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x08b6bc15 snd_trident_stop_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0f0ef986 snd_trident_alloc_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8ab1ea8e snd_trident_start_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xba32ce80 snd_trident_free_voice -EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbfddbde8 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xbc8013ac intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5cd4697d snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xce7e7e95 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x64141d98 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x96a05dfb snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaef6a7d4 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd5249b0f snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdd9085f7 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf3878492 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf7e34568 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfd141689 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x09bb709a snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x13b475b2 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x39b5ad29 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa12faad4 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x1660e7ec snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x404ccf4a snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5600dfef snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8c4541b3 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9711112a snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xaf1f1b7f snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdb9ab5ea snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe5f060b5 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x50858607 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5c5f1e8d snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa5d10c1d snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xba5d729b snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xcb80f6ca snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf0d0dc34 snd_i2c_bus_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x14de13e3 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x22cd71d2 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25b2fff1 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25f8d6bb snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2f622c68 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x304fdb67 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4c23257e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5ad030db snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5b0668b3 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6397425d snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6970761b snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7704c5c7 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x862add16 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xae7efe28 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb3d7daf6 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce4c87b5 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf41312eb snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x057fed39 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5b5dc561 snd_emu10k1_ptr_write_multiple +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9ba91dad snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa5104510 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb084235c snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc1e771f2 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc28afced snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd76a8ad3 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xed004e16 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf98a698b snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4a4bb144 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x67cf8cc0 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9f99430b snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x109a54ab oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1219a709 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d1a3e6c oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x41c33eac oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x45ccf6b8 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x472d5580 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x50e57742 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5e4e18d2 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6188054c oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64882323 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64d371e9 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x732a6c24 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9514f42c oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a75ab9a oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2820e8a oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd9db88a oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1183b47 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe0b0df53 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe3b120e6 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfd52b2df oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x26b2afdb snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x43fd1c49 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x68ada5c1 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6d42d6a9 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa4b5f940 snd_trident_start_voice EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x8c7922a8 snd_soc_acpi_amd_rmb_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xa07c6def snd_soc_acpi_amd_sof_machines -EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xb158247d snd_amd_acp_find_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xd946a547 adau1372_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xf4e0cd2a wsa_macro_set_spkr_mode -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x0a37ebce pcm3060_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x73e412c4 pcm3060_probe +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x622402ab snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x6e9963f0 snd_soc_acpi_amd_rmb_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x8d0bb117 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xcf5cf458 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xac82f0a0 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x677ec781 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa56366b3 pcm3060_regmap EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x0723170d tlv320aic23_regmap -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6d09c07a tlv320aic23_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7a2537f6 aic32x4_probe -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xac1505aa aic32x4_regmap_config -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xf258763a aic32x4_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7077975f aic3x_remove -EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xcfc28e1b aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6109a100 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xef25c1b6 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x150ab884 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xce6d834c aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xe82a1ae9 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x5043c929 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x972559e1 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x060c5edf wcd_mbhc_start EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x704b21ac wcd_mbhc_start -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x706a9d13 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x525cbc68 wcd_mbhc_init EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type -EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x9f7a14b7 wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xb0d1229a wcd_dt_parse_mbhc_data EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x23d86fef fsl_asoc_get_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x788d3633 fsl_asoc_reparent_pll_clocks -EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x856bd743 fsl_asoc_get_dma_channel -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x33e463fb mt8192_afe_gpio_init -EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xb28a1033 mt8192_afe_gpio_request -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x5261fdc7 q6afe_unvote_lpass_core_hw -EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xa5ee88a8 q6afe_vote_lpass_core_hw -EXPORT_SYMBOL sound/soc/snd-soc-core 0xc39b3088 snd_soc_alloc_ac97_component -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x73ce0c9d imx8_dump -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x7891eaa4 imx8_parse_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x8d44450f imx8_disable_clocks -EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xe8526526 imx8_enable_clocks -EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x59ca96b7 mtk_adsp_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0026cdec sof_mailbox_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x01af0d80 snd_sof_runtime_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x06218853 sof_io_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x09dc0ef8 snd_sof_suspend -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f3d3e1f snd_sof_runtime_idle -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1695db21 snd_sof_ipc_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1924bec1 sof_block_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x198e3976 sof_print_oops_and_stack -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x21773d73 sof_ipc3_do_rx_work -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x246a1a2c sof_widget_free -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x25e67f67 sof_machine_check -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x292102d4 snd_sof_runtime_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x31ce5d90 sof_compressed_ops -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34675f7b snd_sof_complete -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35c1befd snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x277b6a64 fsl_asoc_get_dma_channel +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x6972412a fsl_asoc_get_pll_clocks +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0x6e97672c fsl_asoc_reparent_pll_clocks +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x277eb6be mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xb250256a mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xabe0a1bd q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xf53b1184 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/snd-soc-core 0xc61c8349 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x111ee069 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x6445fbe2 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x7408c040 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x81dd6feb imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x4e4161c8 mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b6d18e7 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0c4ab9d2 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d55eac2 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0f07ae5b sof_ipc3_do_rx_work +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x110ce47d snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1274ec9f snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18ded200 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x19c442c9 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1be45e1f sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c79c6cb sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x24c4b686 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28b56f54 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2a568519 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2cb6547f snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2cb7b5fe snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2d2baca9 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2f0ae48c snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x33c2f118 sof_ipc_tx_message EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x371f5799 snd_sof_resume -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a1c5854 sof_io_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42b7e24e snd_sof_dsp_update_bits_forced -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4583e0a9 snd_sof_load_topology -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x484883d7 snd_sof_device_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x53e03580 sof_set_stream_data_offset -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x567fa29c sof_block_read -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5c07857d sof_mailbox_write -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5c4fc32a snd_sof_device_probe_completed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x617c298c sof_stream_pcm_open -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x68dd7efa snd_sof_dsp_update_bits_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6a9134ef snd_sof_ipc_init -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x75e852cd sof_machine_register -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7885e047 snd_sof_pci_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x84d4ed02 sof_dai_get_mclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x855a6767 snd_sof_dsp_dbg_dump -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x86a171a6 snd_sof_dsp_panic -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8ed5570d snd_sof_pcm_period_elapsed -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9625a28c sof_ipc_set_get_data -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96a13a5f sof_ipc_tx_message -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98921d62 snd_sof_device_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9ea1921f snd_sof_run_firmware -EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9fc97165 snd_sof_prepare -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa63ae377 snd_sof_dsp_update_bits -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa85f4dec snd_sof_handle_fw_exception -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb45ca0fb snd_sof_dsp_update_bits64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb9a7d03b sof_dai_get_bclk -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4e91621 sof_machine_unregister -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc82d5039 snd_sof_fw_unload -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcaa63f5d sof_ipc_tx_message_no_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcd95be06 snd_sof_ipc_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd0d0fe1d sof_io_write64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3efc7f8 snd_sof_ipc_get_reply -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd51f6fd6 sof_io_read64 -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6b66c20 sof_set_fw_state -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdef807ac snd_sof_load_firmware_raw -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xea04f4f5 snd_sof_dsp_update_bits64_unlocked -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xebf5278a snd_sof_load_firmware_memcpy -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xed057576 snd_sof_device_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf28616b1 sof_pcm_dai_link_fixup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf887f9d2 sof_stream_pcm_close -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfbd0c22a sof_widget_setup -EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfecb2031 sof_ipc_msg_data -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x1d08eb00 sof_of_pm -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xa243864e sof_of_remove -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xc0a4278b sof_of_probe -EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xe2c4f249 sof_of_shutdown -EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x878a8e62 snd_sof_create_page_table -EXPORT_SYMBOL sound/soundcore 0x1ce95259 register_sound_special_device -EXPORT_SYMBOL sound/soundcore 0x39acaabb register_sound_special -EXPORT_SYMBOL sound/soundcore 0x73ed0af8 sound_class +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3e6038c1 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44265afc sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44ff9a91 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4857152f sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4fb43f5f sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x559be352 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x58e75163 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5a4ffda2 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x60c0d750 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x624eeeeb snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6270b0f4 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fc5f41a sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6fd78a13 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x70256116 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x72c70266 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ae6c509 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7e39ad72 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f5b5bdf sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8d06667a snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98d12264 sof_ipc_set_get_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9ea66361 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9fee1660 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa46f2bf3 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa55c1d0f sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa734f232 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaae51af3 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab256d7e sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaca4bf17 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb448ea69 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb68a4a36 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbaa2ca63 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbec2fc9b snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcbc408df sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xda0dc31a sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe47c16f6 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe506c97f snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe629d090 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec8738ed sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2fceb19 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf93b070e sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x9781bf0b sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xb5e16ac9 sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xca43a267 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xf5661ece sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xfd5ba0e0 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x12932220 sound_class +EXPORT_SYMBOL sound/soundcore 0x6a9abd60 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x781720e3 register_sound_special_device EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9e3f9028 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xb815ea05 register_sound_mixer EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xcd0987f3 register_sound_dsp -EXPORT_SYMBOL sound/soundcore 0xeb23fdde register_sound_mixer -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x61c0bebe snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x15114804 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2812d9d0 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 0x70fbdef2 snd_emux_lock_voice -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x75cf5baa snd_emux_new -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x81e19a13 snd_emux_terminate_all -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb9251dc7 snd_emux_register -EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xde6fa147 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x779ce284 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x801d4468 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x91262424 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf083e5e7 snd_emux_register EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free @@ -6481,5845 +6481,5845 @@ EXPORT_SYMBOL sound/synth/snd-util-mem 0xc59655e4 snd_util_mem_avail EXPORT_SYMBOL sound/synth/snd-util-mem 0xd28dc0da __snd_util_mem_alloc EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start -EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x182b69e9 __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x31a63d3b __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 0x00148653 vsnprintf -EXPORT_SYMBOL vmlinux 0x0029344c netdev_lower_state_changed -EXPORT_SYMBOL vmlinux 0x0029da91 inet_frag_reasm_finish -EXPORT_SYMBOL vmlinux 0x002c671e i2c_smbus_read_i2c_block_data_or_emulated -EXPORT_SYMBOL vmlinux 0x00961826 netif_tx_lock -EXPORT_SYMBOL vmlinux 0x009c8b40 may_umount +EXPORT_SYMBOL vmlinux 0x00154f3a scsi_target_resume +EXPORT_SYMBOL vmlinux 0x00156b25 generic_setlease +EXPORT_SYMBOL vmlinux 0x001e5975 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x002c2baa console_start +EXPORT_SYMBOL vmlinux 0x00528eb4 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x007658ba register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x00844f80 eth_header +EXPORT_SYMBOL vmlinux 0x0087c803 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x00a385be generic_remap_file_range_prep EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00b6dadc blk_post_runtime_resume -EXPORT_SYMBOL vmlinux 0x00ba5ac1 skb_tx_error -EXPORT_SYMBOL vmlinux 0x00c22984 inet_protos EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count -EXPORT_SYMBOL vmlinux 0x00e319f5 md_handle_request EXPORT_SYMBOL vmlinux 0x01000e51 schedule -EXPORT_SYMBOL vmlinux 0x010ea11d napi_gro_flush EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded -EXPORT_SYMBOL vmlinux 0x011db0c4 put_cmsg -EXPORT_SYMBOL vmlinux 0x01291807 init_net +EXPORT_SYMBOL vmlinux 0x0120e921 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x0124143b security_unix_may_send EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012b6f6c rt_mutex_base_init EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x013c6a12 dev_change_flags EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on -EXPORT_SYMBOL vmlinux 0x01478fe3 mr_mfc_find_any_parent -EXPORT_SYMBOL vmlinux 0x014c8381 inet6_release +EXPORT_SYMBOL vmlinux 0x014c1a99 wake_up_process EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc -EXPORT_SYMBOL vmlinux 0x0157751c mntget EXPORT_SYMBOL vmlinux 0x016f123e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x016f2e71 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x016f3ec5 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x01711cb5 register_filesystem +EXPORT_SYMBOL vmlinux 0x0172cd5e __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x01857c9f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x0187d3c0 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent -EXPORT_SYMBOL vmlinux 0x018eb0a8 migrate_vma_pages -EXPORT_SYMBOL vmlinux 0x019e8786 devm_clk_put -EXPORT_SYMBOL vmlinux 0x01a0b7ad gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x01a72807 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x01aebe05 send_sig EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark -EXPORT_SYMBOL vmlinux 0x01b85324 dqget EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note -EXPORT_SYMBOL vmlinux 0x01db495e kmalloc_trace +EXPORT_SYMBOL vmlinux 0x01c75069 bio_split_to_limits EXPORT_SYMBOL vmlinux 0x01dc8a99 qman_update_cgr_safe +EXPORT_SYMBOL vmlinux 0x01dcb7dd tcp_read_skb EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc -EXPORT_SYMBOL vmlinux 0x02241eea iov_iter_npages -EXPORT_SYMBOL vmlinux 0x0240cdcb inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x02279fcc vfs_create_mount +EXPORT_SYMBOL vmlinux 0x022a878f generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x0234a78a fb_io_write EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x0252fd8d __mmap_lock_do_trace_released -EXPORT_SYMBOL vmlinux 0x025e75c0 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x026d7c55 blk_mq_tagset_wait_completed_request -EXPORT_SYMBOL vmlinux 0x026f9c47 xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0x02548104 of_iomap +EXPORT_SYMBOL vmlinux 0x02574026 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x0263d415 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x026fe6fc vmalloc_to_page EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x0288c33b request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x0285fe34 devm_register_reboot_notifier EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate -EXPORT_SYMBOL vmlinux 0x02976ce1 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x02a661d6 pm860x_bulk_read -EXPORT_SYMBOL vmlinux 0x02b7fb5e genphy_c37_config_aneg -EXPORT_SYMBOL vmlinux 0x02bb31ab inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x02a3a525 __skb_checksum_complete_head EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng -EXPORT_SYMBOL vmlinux 0x02e2bbe3 seg6_hmac_validate_skb -EXPORT_SYMBOL vmlinux 0x03026786 rproc_set_firmware -EXPORT_SYMBOL vmlinux 0x030a2899 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x031b6d09 param_set_bool -EXPORT_SYMBOL vmlinux 0x032e52a0 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x02c5f12c devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x02ee2b9f sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x02eeac1a phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x02f7daf4 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x03173b45 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x032e42a4 clk_hw_get_clk EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x03364475 eth_type_trans -EXPORT_SYMBOL vmlinux 0x033bfd27 nf_register_net_hooks -EXPORT_SYMBOL vmlinux 0x03418e19 fs_lookup_param EXPORT_SYMBOL vmlinux 0x0349726f tegra194_miscreg_mask_serror -EXPORT_SYMBOL vmlinux 0x03546467 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x034ead50 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x0357b7b0 sock_no_socketpair EXPORT_SYMBOL vmlinux 0x035d25ab memcg_kmem_online_key -EXPORT_SYMBOL vmlinux 0x036006cb napi_gro_frags EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x036a18c9 kernel_param_unlock EXPORT_SYMBOL vmlinux 0x036cce78 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x03711569 __serio_register_port +EXPORT_SYMBOL vmlinux 0x0371483d dquot_operations EXPORT_SYMBOL vmlinux 0x037a0cba kfree -EXPORT_SYMBOL vmlinux 0x037fed40 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x037a2f1e tty_lock EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity -EXPORT_SYMBOL vmlinux 0x03836eb7 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x0397264d bio_uninit EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs -EXPORT_SYMBOL vmlinux 0x03a5aadb devm_rproc_add -EXPORT_SYMBOL vmlinux 0x03b4e354 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x03b814ca bpf_dispatcher_xdp_func -EXPORT_SYMBOL vmlinux 0x03d6f110 seg6_hmac_info_del -EXPORT_SYMBOL vmlinux 0x03f6fb7f key_payload_reserve +EXPORT_SYMBOL vmlinux 0x03cd07df of_match_node EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x0401b5d0 scsi_print_command -EXPORT_SYMBOL vmlinux 0x0413a83e qdisc_watchdog_cancel -EXPORT_SYMBOL vmlinux 0x041ff242 phy_attach -EXPORT_SYMBOL vmlinux 0x042f3af3 simple_rmdir -EXPORT_SYMBOL vmlinux 0x04385e48 mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0x04005c60 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x0406f4a5 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x041180be scsi_device_get +EXPORT_SYMBOL vmlinux 0x04155eab netpoll_send_skb EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x0446d06c tcp_sock_set_user_timeout EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator EXPORT_SYMBOL vmlinux 0x044f0ad9 get_random_u16 -EXPORT_SYMBOL vmlinux 0x04507308 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x045144d2 pci_enable_device +EXPORT_SYMBOL vmlinux 0x044f9988 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x04586197 pnp_request_card_device EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x046adb2b __sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x04783baa devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu -EXPORT_SYMBOL vmlinux 0x0480aec3 jbd2_journal_begin_ordered_truncate EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x048841f3 generic_write_checks -EXPORT_SYMBOL vmlinux 0x048f1e52 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x0491c057 sock_set_priority -EXPORT_SYMBOL vmlinux 0x0493ea9e mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x04992648 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x048e8ae8 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x04916b23 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x049b972b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x049e1930 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x04bb3533 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x04c7b800 dquot_acquire +EXPORT_SYMBOL vmlinux 0x04c9a38c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x04cf68c1 pci_msix_vec_count EXPORT_SYMBOL vmlinux 0x04d24402 iwe_stream_add_point -EXPORT_SYMBOL vmlinux 0x04d3f193 vfs_readlink EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize -EXPORT_SYMBOL vmlinux 0x04eeccf3 devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match -EXPORT_SYMBOL vmlinux 0x050be804 genphy_aneg_done -EXPORT_SYMBOL vmlinux 0x051916d7 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x050da4d4 mmc_gpiod_request_ro EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x0526353e pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x052ec98a sock_init_data_uid -EXPORT_SYMBOL vmlinux 0x0533d3b1 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x05251ef4 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x053656e9 genphy_check_and_restart_aneg EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x0546ffbd misc_deregister -EXPORT_SYMBOL vmlinux 0x0548ccbc dcbnl_cee_notify -EXPORT_SYMBOL vmlinux 0x05506850 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x05579b41 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x0551988d cfb_fillrect +EXPORT_SYMBOL vmlinux 0x05596825 filemap_release_folio EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 EXPORT_SYMBOL vmlinux 0x0562dc30 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x056aa27a jbd2_journal_release_jbd_inode EXPORT_SYMBOL vmlinux 0x056bcf7b dm_read_arg -EXPORT_SYMBOL vmlinux 0x0576fc30 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x05c55a83 devm_free_irq -EXPORT_SYMBOL vmlinux 0x05c61659 seq_dentry -EXPORT_SYMBOL vmlinux 0x05e4e40c max8998_write_reg -EXPORT_SYMBOL vmlinux 0x05f0bc58 netdev_adjacent_change_commit -EXPORT_SYMBOL vmlinux 0x05f38194 d_instantiate_anon -EXPORT_SYMBOL vmlinux 0x06018411 read_cache_folio +EXPORT_SYMBOL vmlinux 0x0571b69a xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x058e8dfa xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x05a2dfb9 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x05a3d9d5 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x05c55870 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x05e1995b inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x05f27baf qdisc_offload_query_caps EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061d87e6 get_user_pages_remote EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x063d710a generic_file_open -EXPORT_SYMBOL vmlinux 0x063fdb8b pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x06409ac9 dcache_readdir +EXPORT_SYMBOL vmlinux 0x06419a1a phy_ethtool_nway_reset EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul -EXPORT_SYMBOL vmlinux 0x066c3356 current_in_userns -EXPORT_SYMBOL vmlinux 0x0671cce1 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x0684ea24 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x0673f99b block_write_end +EXPORT_SYMBOL vmlinux 0x067595a2 security_sock_graft +EXPORT_SYMBOL vmlinux 0x067ac2ac starget_for_each_device +EXPORT_SYMBOL vmlinux 0x0687b4c3 skb_split +EXPORT_SYMBOL vmlinux 0x06886c91 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x069403f3 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x0696d970 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x06b4f166 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x06b95c94 of_get_compatible_child EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x06cc9f1f unregister_key_type +EXPORT_SYMBOL vmlinux 0x06c5e702 xsk_tx_peek_release_desc_batch EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x06d86516 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x06ee47bb register_filesystem -EXPORT_SYMBOL vmlinux 0x07009948 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x06d7c840 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x06f13938 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x07096b7d read_cache_folio EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc -EXPORT_SYMBOL vmlinux 0x07106bd2 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x070bb37e generic_fill_statx_attr EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm -EXPORT_SYMBOL vmlinux 0x0714dce4 inet_recvmsg EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw -EXPORT_SYMBOL vmlinux 0x073a1c18 module_refcount -EXPORT_SYMBOL vmlinux 0x0743b533 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x073c8c37 blk_queue_max_segment_size EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase -EXPORT_SYMBOL vmlinux 0x07673267 tcf_classify -EXPORT_SYMBOL vmlinux 0x077c4efd finalize_exec +EXPORT_SYMBOL vmlinux 0x0750c343 dma_set_mask +EXPORT_SYMBOL vmlinux 0x0754818e is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x07574d7a dma_fence_describe +EXPORT_SYMBOL vmlinux 0x078054cd rt_dst_clone EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl -EXPORT_SYMBOL vmlinux 0x0791e467 new_inode -EXPORT_SYMBOL vmlinux 0x0792c43d netlink_set_err -EXPORT_SYMBOL vmlinux 0x07969d7c skb_clone +EXPORT_SYMBOL vmlinux 0x07a09781 bio_kmalloc EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap -EXPORT_SYMBOL vmlinux 0x07be5778 bpf_prog_get_type_path -EXPORT_SYMBOL vmlinux 0x07c696b2 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x07b9b284 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x07c03c7a __mdiobus_c45_write EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ce60c0 ps2_init EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x07d19b93 i2c_add_adapter EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07dc58d0 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x07e1c17b tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x07eb2936 param_get_long EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fe7d6b tcf_exts_dump_stats EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched -EXPORT_SYMBOL vmlinux 0x0800ad4b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x0801664c vfs_copy_file_range EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks -EXPORT_SYMBOL vmlinux 0x082488a0 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x082653b0 skb_push -EXPORT_SYMBOL vmlinux 0x08276d75 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x081827e8 set_bh_page +EXPORT_SYMBOL vmlinux 0x081f0182 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x082884a0 filemap_get_folios_contig EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08356d2f xsk_tx_peek_desc EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister -EXPORT_SYMBOL vmlinux 0x085a8ab1 input_set_keycode -EXPORT_SYMBOL vmlinux 0x0863dbb7 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x08644c57 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x0868eabd xfrm_register_type +EXPORT_SYMBOL vmlinux 0x086c2c8f scsi_device_lookup EXPORT_SYMBOL vmlinux 0x0870efe3 jent_testing_exit -EXPORT_SYMBOL vmlinux 0x087893c6 ptp_clock_index -EXPORT_SYMBOL vmlinux 0x0882e5d3 mr_mfc_find_any -EXPORT_SYMBOL vmlinux 0x088e3586 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x089415c1 ndisc_send_skb -EXPORT_SYMBOL vmlinux 0x089d881a dm_register_target -EXPORT_SYMBOL vmlinux 0x08a05157 phy_support_asym_pause -EXPORT_SYMBOL vmlinux 0x08a785bd sk_mc_loop -EXPORT_SYMBOL vmlinux 0x08ab0cfd bio_split -EXPORT_SYMBOL vmlinux 0x08b42d36 genphy_suspend -EXPORT_SYMBOL vmlinux 0x08b87c18 sock_efree +EXPORT_SYMBOL vmlinux 0x08a94487 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x08c1ce87 mount_single +EXPORT_SYMBOL vmlinux 0x08ceec72 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x08d8fd2f init_pseudo EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr -EXPORT_SYMBOL vmlinux 0x08fac530 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x090b3134 t10_pi_type1_ip -EXPORT_SYMBOL vmlinux 0x09266c03 rproc_of_parse_firmware -EXPORT_SYMBOL vmlinux 0x0929c041 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x08ef0c6d qdisc_reset +EXPORT_SYMBOL vmlinux 0x0905d105 ps2_command +EXPORT_SYMBOL vmlinux 0x09081e65 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x091d4cd4 fs_bio_set EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x09610cde of_get_mac_address +EXPORT_SYMBOL vmlinux 0x09476efc ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x095f8212 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x0960ef38 tcf_qevent_init EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap -EXPORT_SYMBOL vmlinux 0x09a81a36 dma_map_page_attrs -EXPORT_SYMBOL vmlinux 0x09cb38e1 dev_pm_opp_register_notifier -EXPORT_SYMBOL vmlinux 0x09ce9f51 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x09b3ef4e param_get_ushort EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d6fd9a __of_get_address EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark -EXPORT_SYMBOL vmlinux 0x09dfee0c fault_in_iov_iter_writeable -EXPORT_SYMBOL vmlinux 0x09f076b6 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x09e13f4f vme_irq_generate EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch -EXPORT_SYMBOL vmlinux 0x0a02c9c5 freeze_super +EXPORT_SYMBOL vmlinux 0x0a0df5d1 fscrypt_free_inode EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg -EXPORT_SYMBOL vmlinux 0x0a1632fb unpin_user_page +EXPORT_SYMBOL vmlinux 0x0a1b39f9 security_sk_classify_flow EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash -EXPORT_SYMBOL vmlinux 0x0a2ea751 ppp_unit_number -EXPORT_SYMBOL vmlinux 0x0a312540 bio_integrity_trim -EXPORT_SYMBOL vmlinux 0x0a356398 hdmi_infoframe_log -EXPORT_SYMBOL vmlinux 0x0a4b6f63 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x0a6d3bbd inet6_offloads +EXPORT_SYMBOL vmlinux 0x0a21f94a sock_register +EXPORT_SYMBOL vmlinux 0x0a2987ba unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x0a3e30ab netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x0a702131 phy_ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a773d1e vif_device_init +EXPORT_SYMBOL vmlinux 0x0a7dbe84 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x0a7e1707 blk_set_queue_depth EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a93fd0f of_root EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x0aa41759 dev_add_offload +EXPORT_SYMBOL vmlinux 0x0aa75b24 seq_read EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace -EXPORT_SYMBOL vmlinux 0x0ab56393 fs_param_is_blob -EXPORT_SYMBOL vmlinux 0x0acdd018 keyring_clear +EXPORT_SYMBOL vmlinux 0x0ab7a600 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x0ab9490d sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x0abe2f16 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x0ac2f08c param_set_int +EXPORT_SYMBOL vmlinux 0x0accbf0e unregister_filesystem EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all -EXPORT_SYMBOL vmlinux 0x0ae45d67 security_sb_mnt_opts_compat -EXPORT_SYMBOL vmlinux 0x0ae963df unpin_user_pages_dirty_lock -EXPORT_SYMBOL vmlinux 0x0af3ed94 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x0afdc291 of_graph_get_next_endpoint -EXPORT_SYMBOL vmlinux 0x0b0810c9 nexthop_res_grp_activity_update -EXPORT_SYMBOL vmlinux 0x0b178cec mipi_dsi_dcs_set_tear_off -EXPORT_SYMBOL vmlinux 0x0b1b61c0 kern_unmount +EXPORT_SYMBOL vmlinux 0x0aeeaa22 ps2_interrupt EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x0b4d0e28 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x0b580c17 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x0b5b9482 mdiobus_scan_c22 -EXPORT_SYMBOL vmlinux 0x0b66a734 ip_sock_set_tos -EXPORT_SYMBOL vmlinux 0x0b72ebb4 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x0b49f389 kobject_add EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol -EXPORT_SYMBOL vmlinux 0x0b81799d vfs_dup_fs_context -EXPORT_SYMBOL vmlinux 0x0b8492d6 qman_get_qm_portal_config -EXPORT_SYMBOL vmlinux 0x0b88773d end_page_writeback -EXPORT_SYMBOL vmlinux 0x0b973f87 inet6_getname +EXPORT_SYMBOL vmlinux 0x0b7923bf skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x0b85708a seq_printf +EXPORT_SYMBOL vmlinux 0x0b88fa30 devm_clk_get +EXPORT_SYMBOL vmlinux 0x0b95c846 wrap_directory_iterator +EXPORT_SYMBOL vmlinux 0x0b9f6359 dcbnl_cee_notify EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk -EXPORT_SYMBOL vmlinux 0x0ba8f188 finish_open EXPORT_SYMBOL vmlinux 0x0bb5dd4a dma_fence_chain_find_seqno -EXPORT_SYMBOL vmlinux 0x0bc0e500 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x0bb72899 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x0bba9b4e skb_copy EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x0bc4a734 rproc_detach +EXPORT_SYMBOL vmlinux 0x0bc515e0 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x0bc5cc6b rproc_shutdown +EXPORT_SYMBOL vmlinux 0x0bc6ddc8 ethtool_op_get_ts_info EXPORT_SYMBOL vmlinux 0x0bd394d8 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x0beb6b43 xsk_tx_peek_release_desc_batch -EXPORT_SYMBOL vmlinux 0x0bed6e64 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x0be1a728 inode_init_always +EXPORT_SYMBOL vmlinux 0x0bef4905 dev_addr_add EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x0bf76aa9 qdisc_warn_nonwc EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user -EXPORT_SYMBOL vmlinux 0x0c001946 blk_start_plug -EXPORT_SYMBOL vmlinux 0x0c0dcd0a key_validate -EXPORT_SYMBOL vmlinux 0x0c1baa4e gpiochip_irq_reqres -EXPORT_SYMBOL vmlinux 0x0c1d3807 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x0bfc62ca forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x0c10655a mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x0c17ad3c lease_get_mtime +EXPORT_SYMBOL vmlinux 0x0c20c9fe dst_release_immediate EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq -EXPORT_SYMBOL vmlinux 0x0c3b3f6d eth_gro_complete -EXPORT_SYMBOL vmlinux 0x0c3e8497 register_md_personality +EXPORT_SYMBOL vmlinux 0x0c2ba24e unregister_console +EXPORT_SYMBOL vmlinux 0x0c38b1c9 dm_get_device +EXPORT_SYMBOL vmlinux 0x0c3a64e1 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0c400429 tcf_idrinfo_destroy EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write -EXPORT_SYMBOL vmlinux 0x0c5e136e dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x0c5f14b9 __bio_advance +EXPORT_SYMBOL vmlinux 0x0c59151c input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x0c5d54f1 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x0c650913 mapping_read_folio_gfp +EXPORT_SYMBOL vmlinux 0x0c670a76 sock_wake_async EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read -EXPORT_SYMBOL vmlinux 0x0c77cf0a dma_map_resource -EXPORT_SYMBOL vmlinux 0x0c7e1c2a mdio_bus_type -EXPORT_SYMBOL vmlinux 0x0c8365be vfs_rmdir -EXPORT_SYMBOL vmlinux 0x0c91cbf7 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x0c708788 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x0c87103b always_delete_dentry +EXPORT_SYMBOL vmlinux 0x0ca8f1a9 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x0cae8f50 sk_common_release EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb87e9f sb_set_blocksize EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false -EXPORT_SYMBOL vmlinux 0x0ccb2838 mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive -EXPORT_SYMBOL vmlinux 0x0cda2bdc unregister_console EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason -EXPORT_SYMBOL vmlinux 0x0cddada3 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x0cf92811 nvdimm_bus_unlock -EXPORT_SYMBOL vmlinux 0x0d01160e netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x0ce55f3a input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x0ce5ee4d serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x0ce79081 of_n_addr_cells EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x0d10869c sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d2d7614 genphy_c45_ethtool_set_eee EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream -EXPORT_SYMBOL vmlinux 0x0d382657 __nlmsg_put EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm -EXPORT_SYMBOL vmlinux 0x0d43342b ethtool_aggregate_rmon_stats -EXPORT_SYMBOL vmlinux 0x0d4728e0 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x0d41ba2d try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x0d4c271b neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x0d4f00bd truncate_inode_pages EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x0d6da250 i2c_smbus_read_byte_data -EXPORT_SYMBOL vmlinux 0x0d8c7d06 devm_mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x0da2d72c single_open +EXPORT_SYMBOL vmlinux 0x0d5c108e devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0d7f1954 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x0d8578b3 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x0d958138 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x0da0420a unix_detach_fds EXPORT_SYMBOL vmlinux 0x0da37acd dma_fence_array_first -EXPORT_SYMBOL vmlinux 0x0da40d69 handshake_req_private -EXPORT_SYMBOL vmlinux 0x0dbddb8c seq_open_private -EXPORT_SYMBOL vmlinux 0x0dca1bdf genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x0db61976 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x0de5fab5 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x0de886c9 bh_uptodate_or_lock EXPORT_SYMBOL vmlinux 0x0deb72fc __traceiter_dma_fence_enable_signal -EXPORT_SYMBOL vmlinux 0x0dec4fd4 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x0dfaf66e rproc_resource_cleanup -EXPORT_SYMBOL vmlinux 0x0e052745 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x0dfb1ede elevator_alloc +EXPORT_SYMBOL vmlinux 0x0e08b15b pcix_get_mmrbc EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 -EXPORT_SYMBOL vmlinux 0x0e310c9a find_inode_rcu -EXPORT_SYMBOL vmlinux 0x0e3a04c7 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x0e1eda44 devm_free_irq EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned -EXPORT_SYMBOL vmlinux 0x0e54f161 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x0e66dcf9 of_phy_connect -EXPORT_SYMBOL vmlinux 0x0e67ef1a netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x0e827870 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x0e87a45e ipv4_specific -EXPORT_SYMBOL vmlinux 0x0e8be161 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x0e8e6649 fscrypt_decrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0x0e8f0b7e mod_node_page_state +EXPORT_SYMBOL vmlinux 0x0e4845b2 fb_show_logo +EXPORT_SYMBOL vmlinux 0x0e5102c9 fb_set_var +EXPORT_SYMBOL vmlinux 0x0e58796b dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x0e72379d generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x0e8cbd46 tty_port_init +EXPORT_SYMBOL vmlinux 0x0e9decef pci_free_irq_vectors EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init -EXPORT_SYMBOL vmlinux 0x0eac6711 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x0ead5490 of_match_device EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint -EXPORT_SYMBOL vmlinux 0x0eb9522f generic_file_llseek +EXPORT_SYMBOL vmlinux 0x0ebcb1ad pci_clear_mwi EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free -EXPORT_SYMBOL vmlinux 0x0ece70c7 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x0ed253a4 xfrm_trans_queue -EXPORT_SYMBOL vmlinux 0x0ed823ca tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x0ed95700 __dec_node_page_state -EXPORT_SYMBOL vmlinux 0x0ef66d20 vc_resize -EXPORT_SYMBOL vmlinux 0x0efd82c1 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x0ecbef7e ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x0ecd925a tso_start +EXPORT_SYMBOL vmlinux 0x0ecd9be0 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x0ed6f5db filp_open +EXPORT_SYMBOL vmlinux 0x0ee3f6a3 handshake_req_cancel +EXPORT_SYMBOL vmlinux 0x0ee87c17 get_user_pages +EXPORT_SYMBOL vmlinux 0x0ef15f1f inet_select_addr +EXPORT_SYMBOL vmlinux 0x0f06328c netpoll_cleanup EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f184229 md_reload_sb EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu -EXPORT_SYMBOL vmlinux 0x0f368460 fb_set_suspend EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero -EXPORT_SYMBOL vmlinux 0x0f37ee7f folio_wait_bit -EXPORT_SYMBOL vmlinux 0x0f39a34a simple_link -EXPORT_SYMBOL vmlinux 0x0f441a3b pci_iomap_range -EXPORT_SYMBOL vmlinux 0x0f464c50 fasync_helper -EXPORT_SYMBOL vmlinux 0x0f4f56d7 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x0f4480d7 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x0f45eb90 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x0f567541 neigh_table_init +EXPORT_SYMBOL vmlinux 0x0f57b8d2 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x0f5ec9fb netlink_set_err EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x0f79cc67 xsk_tx_completed -EXPORT_SYMBOL vmlinux 0x0f7e8d5e request_key_tag +EXPORT_SYMBOL vmlinux 0x0f69fdb4 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x0f725a4f lease_modify +EXPORT_SYMBOL vmlinux 0x0f7c21cc __sock_i_ino EXPORT_SYMBOL vmlinux 0x0f811fc7 jent_raw_hires_entropy_store -EXPORT_SYMBOL vmlinux 0x0f845820 phy_print_status EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f999cb6 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x0f9bceb6 md_flush_request EXPORT_SYMBOL vmlinux 0x0f9fe992 sockopt_ns_capable -EXPORT_SYMBOL vmlinux 0x0fa65ed1 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x0fa801b9 phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 -EXPORT_SYMBOL vmlinux 0x0fbb48b1 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x0fd7b56a generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x0fd3ae3d security_sctp_sk_clone EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create -EXPORT_SYMBOL vmlinux 0x0ff73285 ps2_drain -EXPORT_SYMBOL vmlinux 0x0ffc4428 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x0fd997cb param_ops_byte +EXPORT_SYMBOL vmlinux 0x0fe5c1d9 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x0fe77a4d dquot_release EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm EXPORT_SYMBOL vmlinux 0x10017aa5 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x100439d6 inet_release +EXPORT_SYMBOL vmlinux 0x1004aaf2 tcp_rcv_established EXPORT_SYMBOL vmlinux 0x100bddf8 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x100ec81c sock_wfree -EXPORT_SYMBOL vmlinux 0x10197fee pci_match_id +EXPORT_SYMBOL vmlinux 0x10148beb simple_transaction_set EXPORT_SYMBOL vmlinux 0x101d7ff5 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x101f38c0 filemap_splice_read +EXPORT_SYMBOL vmlinux 0x10234567 devm_of_find_backlight EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed -EXPORT_SYMBOL vmlinux 0x1027a546 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x10261033 security_skb_classify_flow EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region -EXPORT_SYMBOL vmlinux 0x104e3929 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x1050a34e cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x1038462d flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x1042b88f ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x105169d4 ptp_find_pin_unlocked EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105854a8 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x10624483 of_cpu_device_node_get EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x107ae46c security_sb_remount EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x1081d08f jbd2_journal_inode_ranged_write -EXPORT_SYMBOL vmlinux 0x1086cf7c init_pseudo -EXPORT_SYMBOL vmlinux 0x1096e18b jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x10a1c9b5 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x10a5849a simple_transaction_get -EXPORT_SYMBOL vmlinux 0x10cf96ad tso_build_data -EXPORT_SYMBOL vmlinux 0x10d88783 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x1086ea57 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x10935843 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x10d0732d pneigh_lookup EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x10dcc39e phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x10e17df3 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x10e3e0c0 __block_write_begin EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ff7fb5 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x11059307 phy_do_ioctl_running EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype -EXPORT_SYMBOL vmlinux 0x110bc957 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x110c425b skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x110e2f31 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x111a79bf mdio_driver_register -EXPORT_SYMBOL vmlinux 0x111b5bc7 send_sig_mceerr -EXPORT_SYMBOL vmlinux 0x111daca7 ata_scsi_cmd_error_handler -EXPORT_SYMBOL vmlinux 0x11483c2e inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x115da800 netdev_txq_to_tc -EXPORT_SYMBOL vmlinux 0x1169b5e4 simple_unlink -EXPORT_SYMBOL vmlinux 0x116dd07a vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x112ebee2 inet6_release +EXPORT_SYMBOL vmlinux 0x1130170f xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x11501cfe rproc_add_subdev EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init -EXPORT_SYMBOL vmlinux 0x1174e84a i2c_get_match_data -EXPORT_SYMBOL vmlinux 0x118a343b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x117fabac mod_node_page_state +EXPORT_SYMBOL vmlinux 0x1188708a of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x118ba66d napi_gro_flush +EXPORT_SYMBOL vmlinux 0x118e2b95 alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x1197497d reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x119a03b3 bdi_put +EXPORT_SYMBOL vmlinux 0x11aefeca of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x11b50dd2 dquot_disable +EXPORT_SYMBOL vmlinux 0x11b68163 tcf_block_get EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic -EXPORT_SYMBOL vmlinux 0x11e5bd02 __blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x11e69932 netpoll_poll_enable -EXPORT_SYMBOL vmlinux 0x11fee93f ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x11f96fac dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx -EXPORT_SYMBOL vmlinux 0x1207ecb8 ptp_find_pin EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120f51aa bio_reset EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset -EXPORT_SYMBOL vmlinux 0x1223c074 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x122293c6 simple_dentry_operations EXPORT_SYMBOL vmlinux 0x122c3a7e _printk -EXPORT_SYMBOL vmlinux 0x122c736e tcp_seq_start -EXPORT_SYMBOL vmlinux 0x1236e530 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x123ba7ca xfrm_state_check_expire EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool -EXPORT_SYMBOL vmlinux 0x12592ec0 bpf_link_put -EXPORT_SYMBOL vmlinux 0x125bab71 lookup_one_len_unlocked -EXPORT_SYMBOL vmlinux 0x1262dda3 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x1268e310 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x1274ddcd __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x124bcff3 tcf_register_action +EXPORT_SYMBOL vmlinux 0x124ff370 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x125aada5 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x125bc5ed netif_set_tso_max_segs EXPORT_SYMBOL vmlinux 0x127d83ea security_locked_down -EXPORT_SYMBOL vmlinux 0x1296461c blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x1284d1c4 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x128e71e3 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x12a27fca user_path_create EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user -EXPORT_SYMBOL vmlinux 0x12a75a6e may_umount_tree -EXPORT_SYMBOL vmlinux 0x12b74486 tcf_block_netif_keep_dst -EXPORT_SYMBOL vmlinux 0x12ba9f7d inet6_del_offload -EXPORT_SYMBOL vmlinux 0x12beb051 udplite_prot -EXPORT_SYMBOL vmlinux 0x12c6d76b icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x12bb8d05 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x12bbc7ac d_exact_alias +EXPORT_SYMBOL vmlinux 0x12bcb3a8 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x12c32804 iput +EXPORT_SYMBOL vmlinux 0x12c4f4cc phy_ethtool_get_strings EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 -EXPORT_SYMBOL vmlinux 0x12e2d683 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x12eff843 blk_mq_start_stopped_hw_queues EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fd5d2c nd_pfn_validate EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x130cc05f fb_validate_mode EXPORT_SYMBOL vmlinux 0x13110126 request_resource -EXPORT_SYMBOL vmlinux 0x131910f3 sock_create_lite EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark -EXPORT_SYMBOL vmlinux 0x132dedeb md_wait_for_blocked_rdev -EXPORT_SYMBOL vmlinux 0x13491682 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x137add58 sg_miter_next -EXPORT_SYMBOL vmlinux 0x13801f12 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x132f86c5 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x138bec32 single_open_size +EXPORT_SYMBOL vmlinux 0x139df4cd dquot_mark_dquot_dirty EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x13bee788 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x13a5e4bb key_unlink +EXPORT_SYMBOL vmlinux 0x13a78e66 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x13ab5e2c of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x13afb050 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x13b5af4a jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x13c8c8a9 of_iommu_get_resv_regions EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x13ebe9ef block_invalidate_folio -EXPORT_SYMBOL vmlinux 0x13f438f6 filemap_get_folios +EXPORT_SYMBOL vmlinux 0x13eae6a3 register_netdevice +EXPORT_SYMBOL vmlinux 0x13f9aa57 dma_map_resource +EXPORT_SYMBOL vmlinux 0x1404f72a slab_build_skb +EXPORT_SYMBOL vmlinux 0x14108c85 tcf_chain_put_by_act EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found -EXPORT_SYMBOL vmlinux 0x14171b9d unlock_rename -EXPORT_SYMBOL vmlinux 0x141ab9b7 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x14264db6 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x1437a888 kthread_create_worker -EXPORT_SYMBOL vmlinux 0x143801e2 sock_pfree -EXPORT_SYMBOL vmlinux 0x14498c86 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x14288b34 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x142d0bf6 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x1442bcd7 add_to_pipe +EXPORT_SYMBOL vmlinux 0x144a2c93 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x144d83cc sock_ioctl_inout +EXPORT_SYMBOL vmlinux 0x14591044 acpi_bus_unregister_driver EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc -EXPORT_SYMBOL vmlinux 0x1460aa92 scsi_remove_device EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table -EXPORT_SYMBOL vmlinux 0x14702558 dcb_ieee_setapp -EXPORT_SYMBOL vmlinux 0x14732f78 msm_pinctrl_dev_pm_ops -EXPORT_SYMBOL vmlinux 0x147b8d63 tcf_idr_check_alloc -EXPORT_SYMBOL vmlinux 0x147b92cd dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x1481488d md_check_no_bitmap -EXPORT_SYMBOL vmlinux 0x1486da5f sock_edemux -EXPORT_SYMBOL vmlinux 0x1496f823 ppp_channel_index -EXPORT_SYMBOL vmlinux 0x14989edd flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x14710541 param_ops_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x147b0c99 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0x1480eef8 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x14867bcd clkdev_drop +EXPORT_SYMBOL vmlinux 0x14a23e56 tcp_splice_read EXPORT_SYMBOL vmlinux 0x14a64a87 acpi_install_address_space_handler_no_reg -EXPORT_SYMBOL vmlinux 0x14b7a2a2 gro_cells_init +EXPORT_SYMBOL vmlinux 0x14b50ad0 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x14b682b9 netdev_lower_get_next EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled -EXPORT_SYMBOL vmlinux 0x14cacfed security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x14cff3e2 devm_devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x14d7477f console_list_unlock -EXPORT_SYMBOL vmlinux 0x14e4153a nd_pfn_validate -EXPORT_SYMBOL vmlinux 0x14ece6cb devfreq_add_device +EXPORT_SYMBOL vmlinux 0x14d93314 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x14e493d8 ip_mc_join_group EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool -EXPORT_SYMBOL vmlinux 0x14f79a25 mfd_add_devices -EXPORT_SYMBOL vmlinux 0x14fb36b7 flush_signals +EXPORT_SYMBOL vmlinux 0x1502f25d dquot_quota_on +EXPORT_SYMBOL vmlinux 0x151a31ea of_cpu_node_to_id EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x152353f6 set_disk_ro EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight -EXPORT_SYMBOL vmlinux 0x1537e2c2 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x1537829c cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x15434043 skb_checksum_setup EXPORT_SYMBOL vmlinux 0x1548d970 __kfifo_dma_out_prepare_r EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy -EXPORT_SYMBOL vmlinux 0x154ced52 vma_alloc_folio -EXPORT_SYMBOL vmlinux 0x15670d8b sock_wmalloc -EXPORT_SYMBOL vmlinux 0x1569d0db skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x156e49b6 mmc_detect_change -EXPORT_SYMBOL vmlinux 0x156ef302 tc_setup_cb_add -EXPORT_SYMBOL vmlinux 0x158ff05e pnp_get_resource -EXPORT_SYMBOL vmlinux 0x15999066 blk_mq_delay_run_hw_queue -EXPORT_SYMBOL vmlinux 0x15b76a0f xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1552f76b update_region +EXPORT_SYMBOL vmlinux 0x1560278d has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x15693343 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x156b22ea scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x15717dd0 dma_pool_create +EXPORT_SYMBOL vmlinux 0x1577452c neigh_ifdown +EXPORT_SYMBOL vmlinux 0x158fee4a __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x15904006 udp_seq_next EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c44ca6 pci_enable_device_mem EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init -EXPORT_SYMBOL vmlinux 0x15e393ec xfrm6_rcv_encap -EXPORT_SYMBOL vmlinux 0x15e432bb elv_bio_merge_ok -EXPORT_SYMBOL vmlinux 0x15ed2bba dma_sync_single_for_device EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init -EXPORT_SYMBOL vmlinux 0x161674a5 mini_qdisc_pair_block_init -EXPORT_SYMBOL vmlinux 0x1617bcaf nf_register_sockopt -EXPORT_SYMBOL vmlinux 0x1622bf3a nd_device_notify +EXPORT_SYMBOL vmlinux 0x160b446f inet_sk_rebuild_header EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1635d92e dcb_ieee_getapp_default_prio_mask EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off -EXPORT_SYMBOL vmlinux 0x163f8ace dma_sync_wait -EXPORT_SYMBOL vmlinux 0x16593d1a to_nd_btt -EXPORT_SYMBOL vmlinux 0x1662b048 skb_store_bits -EXPORT_SYMBOL vmlinux 0x16728327 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x163df08b ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x163ec419 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x1641b93e uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x16501a2e bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x16603f11 padata_alloc EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167c6fe3 gro_cells_init +EXPORT_SYMBOL vmlinux 0x16840d1e node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x16941021 flow_rule_match_control EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string -EXPORT_SYMBOL vmlinux 0x169b11a0 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x16a0d2bf of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x16a119d5 page_symlink_inode_operations EXPORT_SYMBOL vmlinux 0x16a7b16f __traceiter_kmalloc -EXPORT_SYMBOL vmlinux 0x16b79ad5 folio_mapping -EXPORT_SYMBOL vmlinux 0x16caa97c scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x16ad8ff5 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x16b9804a __lock_buffer +EXPORT_SYMBOL vmlinux 0x16cd1172 jbd2_journal_inode_ranged_wait EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table -EXPORT_SYMBOL vmlinux 0x16d91cca dm_put_device +EXPORT_SYMBOL vmlinux 0x16df98ae __break_lease EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait -EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits -EXPORT_SYMBOL vmlinux 0x16f1d7ef scsi_remove_host -EXPORT_SYMBOL vmlinux 0x17032a3f inet_frag_find -EXPORT_SYMBOL vmlinux 0x17077266 inet_select_addr -EXPORT_SYMBOL vmlinux 0x17098b7d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x16f7a06b security_inode_setsecctx EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x172df19e dqput -EXPORT_SYMBOL vmlinux 0x1738cb25 md_bitmap_cond_end_sync -EXPORT_SYMBOL vmlinux 0x173b1e18 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x174a177d __mmap_lock_do_trace_acquire_returned -EXPORT_SYMBOL vmlinux 0x174b4a78 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x1765fb83 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x171934f9 generic_file_open +EXPORT_SYMBOL vmlinux 0x172f442f make_kprojid +EXPORT_SYMBOL vmlinux 0x173dfae2 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x17449ecc sock_init_data_uid +EXPORT_SYMBOL vmlinux 0x17520e28 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x176e449a posix_test_lock EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware -EXPORT_SYMBOL vmlinux 0x17b3635c tcp_sock_set_syncnt -EXPORT_SYMBOL vmlinux 0x17def409 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x17e411cd rproc_remove_subdev -EXPORT_SYMBOL vmlinux 0x17eff3c2 pci_choose_state -EXPORT_SYMBOL vmlinux 0x1813bdd0 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x181405ce d_exact_alias +EXPORT_SYMBOL vmlinux 0x1791447a jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x1793f03e dquot_scan_active +EXPORT_SYMBOL vmlinux 0x17ac4693 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x17b3d9b6 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x17bb475c netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x17c587ba of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x17c79205 seq_putc +EXPORT_SYMBOL vmlinux 0x17c912d2 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x17dc09e2 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x17dc65f1 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x17fdc809 fiemap_prep +EXPORT_SYMBOL vmlinux 0x17fe2fa1 rproc_del EXPORT_SYMBOL vmlinux 0x1819a3f5 register_sysctl -EXPORT_SYMBOL vmlinux 0x1825079e vfs_llseek -EXPORT_SYMBOL vmlinux 0x182b1990 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x18213f16 kernel_read +EXPORT_SYMBOL vmlinux 0x1825c612 jbd2_journal_destroy EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1848fcc5 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x186527ce tcf_block_get_ext EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x1897a857 tty_port_put -EXPORT_SYMBOL vmlinux 0x18a67d62 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x1897144a del_gendisk +EXPORT_SYMBOL vmlinux 0x189770bc md_wait_for_blocked_rdev EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io -EXPORT_SYMBOL vmlinux 0x18cf6b71 generic_perform_write -EXPORT_SYMBOL vmlinux 0x18d1980d devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x18d3c46b jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x18dfc2a9 user_revoke +EXPORT_SYMBOL vmlinux 0x18e39d68 flow_rule_match_vlan EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start -EXPORT_SYMBOL vmlinux 0x18e675f0 netdev_crit -EXPORT_SYMBOL vmlinux 0x18f539df tcf_block_put -EXPORT_SYMBOL vmlinux 0x18f564fa __quota_error -EXPORT_SYMBOL vmlinux 0x18ff7691 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x19061350 free_mdio_bitbang -EXPORT_SYMBOL vmlinux 0x191f84af config_group_find_item -EXPORT_SYMBOL vmlinux 0x193cf038 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x193e1169 file_path -EXPORT_SYMBOL vmlinux 0x1945a12f vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x18ea564f mr_table_dump +EXPORT_SYMBOL vmlinux 0x18f841ad input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x1914094b iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x191e3ab7 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x1922be18 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x192750b1 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x192cf39a fman_get_mem_region EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create -EXPORT_SYMBOL vmlinux 0x19599986 _copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x196239e7 config_item_get -EXPORT_SYMBOL vmlinux 0x1967279a __ip_dev_find +EXPORT_SYMBOL vmlinux 0x1955beef pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x195ab055 mmc_gpiod_request_cd_irq EXPORT_SYMBOL vmlinux 0x197d5b60 dma_fence_default_wait EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x199292c6 genphy_read_abilities -EXPORT_SYMBOL vmlinux 0x199a2cc3 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x199e235b __fput_sync EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x19a991a2 km_policy_notify -EXPORT_SYMBOL vmlinux 0x19af7739 handshake_genl_put -EXPORT_SYMBOL vmlinux 0x19b3f7d5 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x199f40b5 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x199f64b0 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x19a05b5d skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x19ab2749 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x19adf572 register_netdev +EXPORT_SYMBOL vmlinux 0x19bac6d6 skb_copy_and_hash_datagram_iter EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec -EXPORT_SYMBOL vmlinux 0x19c4aaf7 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x19c5ecf6 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x19cfa612 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x19d351c7 vma_set_file -EXPORT_SYMBOL vmlinux 0x19e77ec3 flow_rule_match_ports_range -EXPORT_SYMBOL vmlinux 0x19e81a0a brioctl_set -EXPORT_SYMBOL vmlinux 0x19edbae8 from_kgid -EXPORT_SYMBOL vmlinux 0x1a0546e9 vm_insert_pages -EXPORT_SYMBOL vmlinux 0x1a16d91d pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x1a3e7f27 handshake_req_submit -EXPORT_SYMBOL vmlinux 0x1a40842f filp_open -EXPORT_SYMBOL vmlinux 0x1a44a535 bdi_put +EXPORT_SYMBOL vmlinux 0x19c4306a register_console +EXPORT_SYMBOL vmlinux 0x19d1667d rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x19e55482 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x19f0dddd uart_suspend_port +EXPORT_SYMBOL vmlinux 0x19fb13ba nf_log_unregister +EXPORT_SYMBOL vmlinux 0x1a023442 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x1a105e01 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x1a118c7e blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x1a414a6d to_nd_dax EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled -EXPORT_SYMBOL vmlinux 0x1a4a59e2 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x1a56b492 pci_read_config_byte -EXPORT_SYMBOL vmlinux 0x1a63571f dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x1a65443f dev_mc_add -EXPORT_SYMBOL vmlinux 0x1a816b47 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x1a695fcb iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x1a79bcff dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x1a7e6353 blk_integrity_compare EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state -EXPORT_SYMBOL vmlinux 0x1ac4e790 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x1ab3edf9 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x1ac3e627 migrate_vma_pages EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn -EXPORT_SYMBOL vmlinux 0x1acf2c42 dev_addr_mod -EXPORT_SYMBOL vmlinux 0x1ad91af7 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x1ac9cae6 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x1ad6562c padata_do_serial +EXPORT_SYMBOL vmlinux 0x1ae1efe8 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x1ae6754a jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x1af08433 sock_kzfree_s EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x1b06952a key_type_keyring -EXPORT_SYMBOL vmlinux 0x1b069b2f param_ops_hexint -EXPORT_SYMBOL vmlinux 0x1b1f0553 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x1b0314d1 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x1b05b503 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x1b0d8294 sock_no_getname +EXPORT_SYMBOL vmlinux 0x1b128fc2 skb_prepare_seq_read EXPORT_SYMBOL vmlinux 0x1b335af2 __tracepoint_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x1b4783d3 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x1b43b4c7 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x1b4e44da uart_add_one_port EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all -EXPORT_SYMBOL vmlinux 0x1b5f63e4 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x1b5fd990 nonseekable_open EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b633a75 sock_create_lite +EXPORT_SYMBOL vmlinux 0x1b71b530 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x1b74686c arp_create EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device -EXPORT_SYMBOL vmlinux 0x1b7e4e22 d_lookup -EXPORT_SYMBOL vmlinux 0x1b807025 tc_setup_offload_action -EXPORT_SYMBOL vmlinux 0x1b8a8c73 md_bitmap_close_sync -EXPORT_SYMBOL vmlinux 0x1b9facf7 nf_log_set +EXPORT_SYMBOL vmlinux 0x1b79dcfc acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x1b91d247 cpufreq_generic_suspend EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info -EXPORT_SYMBOL vmlinux 0x1bc1313b dump_skip -EXPORT_SYMBOL vmlinux 0x1bc3570e blk_integrity_compare -EXPORT_SYMBOL vmlinux 0x1bc53ca8 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1bbc6f59 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x1bcbe4a1 __destroy_inode +EXPORT_SYMBOL vmlinux 0x1bd38899 mipi_dsi_dcs_set_tear_on EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent EXPORT_SYMBOL vmlinux 0x1be00271 __nla_reserve -EXPORT_SYMBOL vmlinux 0x1be61fc0 input_close_device -EXPORT_SYMBOL vmlinux 0x1be63057 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x1c15b560 pps_event -EXPORT_SYMBOL vmlinux 0x1c2cf7cd xfrm_register_type -EXPORT_SYMBOL vmlinux 0x1c30afd0 input_setup_polling -EXPORT_SYMBOL vmlinux 0x1c4fc86a dcb_ieee_delapp -EXPORT_SYMBOL vmlinux 0x1c55a46c genphy_read_status +EXPORT_SYMBOL vmlinux 0x1bf24329 pci_iomap +EXPORT_SYMBOL vmlinux 0x1c1f6bc2 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x1c307e28 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x1c3aa9a5 inode_nohighmem +EXPORT_SYMBOL vmlinux 0x1c5403c2 ethtool_notify EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5aca5e mipi_dsi_dcs_set_display_brightness_large EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s -EXPORT_SYMBOL vmlinux 0x1c7045ba pci_irq_vector -EXPORT_SYMBOL vmlinux 0x1c7b501d of_find_device_by_node -EXPORT_SYMBOL vmlinux 0x1c8441e7 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x1c8a707c phy_start +EXPORT_SYMBOL vmlinux 0x1c5ef8f4 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x1c625792 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x1c7296a3 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x1c8b1815 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x1c941f75 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x1caf0f96 jbd2_journal_ack_err EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x1cb9be6f netdev_offload_xstats_enabled EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x1cc1d9be ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x1cceddc7 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x1cd77e68 neigh_xmit EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdbf283 tegra_ivc_init EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cdd5c30 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1ce560ff seq_put_decimal_ull EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id -EXPORT_SYMBOL vmlinux 0x1cfe24b4 skb_copy_bits EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d08c193 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x1d16ed09 mipi_dsi_compression_mode EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x1d2265e6 fiemap_prep +EXPORT_SYMBOL vmlinux 0x1d1ed91f sg_miter_next EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d28b0ae neigh_seq_next +EXPORT_SYMBOL vmlinux 0x1d2a1432 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x1d313be2 _dev_alert +EXPORT_SYMBOL vmlinux 0x1d3912e2 mdiobus_c45_read_nested +EXPORT_SYMBOL vmlinux 0x1d3bd517 rfkill_alloc EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each -EXPORT_SYMBOL vmlinux 0x1d51d0c3 mode_strip_sgid -EXPORT_SYMBOL vmlinux 0x1d75907b xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x1d47ca41 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x1d6312ab vfs_fsync EXPORT_SYMBOL vmlinux 0x1d794855 __tracepoint_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x1d7bcc56 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x1d82a4df neigh_destroy +EXPORT_SYMBOL vmlinux 0x1d8c8be5 key_link EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable -EXPORT_SYMBOL vmlinux 0x1daf11ce mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x1da8c5e2 param_ops_bint +EXPORT_SYMBOL vmlinux 0x1dab587e page_pool_get_stats EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd9e9aa mmc_wait_for_req EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1dfd95c0 of_get_property +EXPORT_SYMBOL vmlinux 0x1e00e464 dmaengine_get_unmap_data EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable -EXPORT_SYMBOL vmlinux 0x1e09ab47 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x1e051e40 inet_release EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0afa83 mipi_dsi_detach EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data -EXPORT_SYMBOL vmlinux 0x1e1c273c invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x1e1dd269 framebuffer_alloc -EXPORT_SYMBOL vmlinux 0x1e2c09c6 backlight_device_get_by_name -EXPORT_SYMBOL vmlinux 0x1e5d8761 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x1e103308 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x1e141bb5 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x1e397bff mntget +EXPORT_SYMBOL vmlinux 0x1e43cffc dump_emit +EXPORT_SYMBOL vmlinux 0x1e524a6b fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x1e545f22 vm_map_pages +EXPORT_SYMBOL vmlinux 0x1e5598f5 mode_strip_sgid +EXPORT_SYMBOL vmlinux 0x1e645395 scsi_remove_host EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr -EXPORT_SYMBOL vmlinux 0x1e70eab9 skb_ext_add -EXPORT_SYMBOL vmlinux 0x1e74057b dcb_getrewr -EXPORT_SYMBOL vmlinux 0x1e907fac __do_once_sleepable_done +EXPORT_SYMBOL vmlinux 0x1e78ea6f crypto_sha3_final +EXPORT_SYMBOL vmlinux 0x1e7ae9a3 proto_register +EXPORT_SYMBOL vmlinux 0x1e7d51da send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x1e8c1202 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x1e8e177b neigh_parms_release +EXPORT_SYMBOL vmlinux 0x1e9057a8 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x1e924811 scsi_print_sense EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x1ebfb43d ps2_init -EXPORT_SYMBOL vmlinux 0x1ec53a75 page_pool_alloc_pages -EXPORT_SYMBOL vmlinux 0x1eccc9ba tcp_recv_skb -EXPORT_SYMBOL vmlinux 0x1ed9b9f6 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x1eab389c __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x1eb3574f i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x1eb5163d ethtool_aggregate_pause_stats +EXPORT_SYMBOL vmlinux 0x1eb77be7 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x1ec1b48d tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x1ec28cfe pnp_register_driver +EXPORT_SYMBOL vmlinux 0x1ec600d5 generic_buffers_fsync +EXPORT_SYMBOL vmlinux 0x1ecde459 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x1ed0f24c jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x1ed20a80 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x1eda08a4 param_ops_int EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edb9fb3 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x1edc6725 set_capacity +EXPORT_SYMBOL vmlinux 0x1eec4248 vfs_statfs EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format -EXPORT_SYMBOL vmlinux 0x1ef5b844 devm_of_find_backlight -EXPORT_SYMBOL vmlinux 0x1f041d50 inet_ioctl -EXPORT_SYMBOL vmlinux 0x1f227f77 netif_device_attach -EXPORT_SYMBOL vmlinux 0x1f22bbe1 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x1f26ee97 param_ops_charp -EXPORT_SYMBOL vmlinux 0x1f302e77 component_match_add_typed -EXPORT_SYMBOL vmlinux 0x1f317069 zap_page_range_single -EXPORT_SYMBOL vmlinux 0x1f3d50ee ps2_command -EXPORT_SYMBOL vmlinux 0x1f4fbc41 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x1f06e875 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1f1bb349 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x1f2d9630 cdev_del +EXPORT_SYMBOL vmlinux 0x1f48d3b7 vfs_fileattr_set EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr -EXPORT_SYMBOL vmlinux 0x1f5fa69b mii_check_link -EXPORT_SYMBOL vmlinux 0x1f6a14f5 proc_set_size -EXPORT_SYMBOL vmlinux 0x1f70868b devfreq_register_opp_notifier -EXPORT_SYMBOL vmlinux 0x1f74b39d devm_mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x1f95296d pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x1fa2278c sockopt_release_sock -EXPORT_SYMBOL vmlinux 0x1fa68f4c __sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x1fbb3793 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x1f6ac339 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x1f89e5f5 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x1f92f5a1 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x1f9cbd03 load_nls_default +EXPORT_SYMBOL vmlinux 0x1fa35dfe __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1fab5263 fscrypt_free_bounce_page EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio EXPORT_SYMBOL vmlinux 0x1fc1109e proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x1fced3df scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1fcd6db2 block_write_begin EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul -EXPORT_SYMBOL vmlinux 0x200a12fa kernel_getsockname -EXPORT_SYMBOL vmlinux 0x200a24b3 submit_bio_wait EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any -EXPORT_SYMBOL vmlinux 0x20249e64 skb_seq_read -EXPORT_SYMBOL vmlinux 0x2044f829 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x20180e36 kobject_get +EXPORT_SYMBOL vmlinux 0x2018ff92 phy_loopback +EXPORT_SYMBOL vmlinux 0x201e3846 gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x205cd25b elv_rb_del -EXPORT_SYMBOL vmlinux 0x20607763 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x2063a9bb tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x20792095 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x2080e6e1 clean_bdev_aliases -EXPORT_SYMBOL vmlinux 0x208c431d pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x20a78520 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x205452df __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x20596b56 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x2067f047 d_add +EXPORT_SYMBOL vmlinux 0x207b7ec7 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x207bda29 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x2097b221 sock_recv_errqueue EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x20b10685 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x20bbb880 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x20c3bcf2 generic_setlease -EXPORT_SYMBOL vmlinux 0x20c6d49f sock_sendmsg +EXPORT_SYMBOL vmlinux 0x20abe777 scsi_report_device_reset EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x20d1a7b1 tc_setup_cb_call EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode -EXPORT_SYMBOL vmlinux 0x20e4a362 set_bh_page +EXPORT_SYMBOL vmlinux 0x20d8bebf jbd2_journal_set_features EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x20edd80b migrate_folio -EXPORT_SYMBOL vmlinux 0x20ee6446 pm_vt_switch_required -EXPORT_SYMBOL vmlinux 0x20f514fc unregister_nls -EXPORT_SYMBOL vmlinux 0x2111a48c vme_irq_free -EXPORT_SYMBOL vmlinux 0x212aaf0e security_sock_graft -EXPORT_SYMBOL vmlinux 0x212d42f6 netdev_info -EXPORT_SYMBOL vmlinux 0x213402a0 seq_printf -EXPORT_SYMBOL vmlinux 0x213807da security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x20ec0976 sock_enable_timestamps EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc -EXPORT_SYMBOL vmlinux 0x213d350e pci_alloc_dev EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id -EXPORT_SYMBOL vmlinux 0x21460ee1 init_task -EXPORT_SYMBOL vmlinux 0x2152fd89 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x21669bf8 netdev_set_num_tc -EXPORT_SYMBOL vmlinux 0x21693c60 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x216fe061 devm_pci_alloc_host_bridge -EXPORT_SYMBOL vmlinux 0x217e7ae0 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x21431fb2 netif_device_attach +EXPORT_SYMBOL vmlinux 0x2144985e inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x2159c1b1 kobject_init +EXPORT_SYMBOL vmlinux 0x2167e180 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x217830e7 input_inject_event +EXPORT_SYMBOL vmlinux 0x217f337c flow_block_cb_alloc EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x21a7d70b folio_mark_dirty -EXPORT_SYMBOL vmlinux 0x21afe88f rdmacg_uncharge -EXPORT_SYMBOL vmlinux 0x21b13667 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x21a01318 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x21a78734 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x21ae581d config_item_put EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21c7a681 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x21d323da security_d_instantiate EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x21e182eb scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0x21ea5251 __bitmap_weight -EXPORT_SYMBOL vmlinux 0x21ee8032 ip_route_input_noref EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x21fcf819 devm_clk_get_optional -EXPORT_SYMBOL vmlinux 0x2212752c aperture_remove_conflicting_pci_devices -EXPORT_SYMBOL vmlinux 0x22233f43 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x21ffcf8d flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x2211860f ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x222dac82 seq_read_iter EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq -EXPORT_SYMBOL vmlinux 0x223462e2 put_watch_queue EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x224648f7 migrate_folio EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2252aedd mipi_dsi_dcs_read -EXPORT_SYMBOL vmlinux 0x22671683 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x22712eef mr_vif_seq_idx -EXPORT_SYMBOL vmlinux 0x2278b011 mmc_free_host -EXPORT_SYMBOL vmlinux 0x22791d36 devfreq_monitor_start -EXPORT_SYMBOL vmlinux 0x228a6a74 would_dump +EXPORT_SYMBOL vmlinux 0x2254e6da __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x2255d8a2 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x2257225c inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x225f6eeb xfrm4_udp_encap_rcv +EXPORT_SYMBOL vmlinux 0x2264f795 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x2271890c dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x228ccfb6 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x2293c13c key_task_permission +EXPORT_SYMBOL vmlinux 0x229cc2eb may_setattr +EXPORT_SYMBOL vmlinux 0x22a6984b bio_split EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound -EXPORT_SYMBOL vmlinux 0x22bc0b65 build_skb_around -EXPORT_SYMBOL vmlinux 0x22cda242 security_sb_remount -EXPORT_SYMBOL vmlinux 0x22d65553 xudma_get_device -EXPORT_SYMBOL vmlinux 0x22f02576 genphy_setup_forced -EXPORT_SYMBOL vmlinux 0x22fed5a8 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x23078d51 rtnl_notify -EXPORT_SYMBOL vmlinux 0x230b0b17 phy_free_interrupt -EXPORT_SYMBOL vmlinux 0x230fd377 dst_release_immediate -EXPORT_SYMBOL vmlinux 0x2317dce5 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x2327fa0a param_set_copystring -EXPORT_SYMBOL vmlinux 0x2335ff36 __skb_wait_for_more_packets -EXPORT_SYMBOL vmlinux 0x234ece4e __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x22b5f1b9 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x22dbb190 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x2304bdb0 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x230d079c skb_store_bits +EXPORT_SYMBOL vmlinux 0x23178350 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x232e7cbe vfs_rmdir +EXPORT_SYMBOL vmlinux 0x23381652 folio_alloc +EXPORT_SYMBOL vmlinux 0x2339c3da cfb_copyarea EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq -EXPORT_SYMBOL vmlinux 0x23605be1 of_get_parent -EXPORT_SYMBOL vmlinux 0x2363147d xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x2355b586 phy_set_asym_pause EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init -EXPORT_SYMBOL vmlinux 0x2368b8c8 mipi_dsi_dcs_set_pixel_format -EXPORT_SYMBOL vmlinux 0x2372ebf1 phy_reset_after_clk_enable -EXPORT_SYMBOL vmlinux 0x23798822 blk_mq_delay_run_hw_queues -EXPORT_SYMBOL vmlinux 0x237a8abe netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x236e8c97 dma_mmap_attrs EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short -EXPORT_SYMBOL vmlinux 0x239197cd skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x238e9413 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x23912497 proc_create_data EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat -EXPORT_SYMBOL vmlinux 0x2393b4e1 vfs_dedupe_file_range_one -EXPORT_SYMBOL vmlinux 0x23a4b69a genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x239fefc2 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x23ab8cce param_get_int EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path -EXPORT_SYMBOL vmlinux 0x23cc20c7 iunique -EXPORT_SYMBOL vmlinux 0x23d40c28 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x23ba4892 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x23c6dbba udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x23cfd42e simple_unlink +EXPORT_SYMBOL vmlinux 0x23d06067 from_kuid_munged EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet -EXPORT_SYMBOL vmlinux 0x23dafcd8 rtc_add_groups EXPORT_SYMBOL vmlinux 0x23dc7f6c hdmi_avi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x23ea43c5 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x23edb6cc dma_set_mask EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node -EXPORT_SYMBOL vmlinux 0x24082cd3 qdisc_reset -EXPORT_SYMBOL vmlinux 0x240b362f rpmh_write -EXPORT_SYMBOL vmlinux 0x241a925c mmc_can_erase -EXPORT_SYMBOL vmlinux 0x242f39e6 tcp_connect +EXPORT_SYMBOL vmlinux 0x240a2a8b rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x243044bf ipv6_select_ident EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x2444f51a hmm_range_fault -EXPORT_SYMBOL vmlinux 0x24497d97 flow_rule_match_ipv4_addrs -EXPORT_SYMBOL vmlinux 0x244f0beb inode_get_bytes -EXPORT_SYMBOL vmlinux 0x245960c4 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x244f1968 __icmp_send EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x247566d6 free_task -EXPORT_SYMBOL vmlinux 0x247da312 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x247446ec sock_alloc_send_pskb EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x2487dfec seq_pad -EXPORT_SYMBOL vmlinux 0x248abc2f netpoll_setup -EXPORT_SYMBOL vmlinux 0x248e478c xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x2498741b page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x249b345f __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x249dea10 copy_page_from_iter_atomic -EXPORT_SYMBOL vmlinux 0x24aea992 kern_path_create -EXPORT_SYMBOL vmlinux 0x24bb17c5 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x24c01131 pcim_set_mwi -EXPORT_SYMBOL vmlinux 0x24c0a5ae pci_request_region +EXPORT_SYMBOL vmlinux 0x2484d938 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x24a2f483 of_get_parent +EXPORT_SYMBOL vmlinux 0x24ce181e __hw_addr_ref_sync_dev EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer EXPORT_SYMBOL vmlinux 0x24d808a6 __nla_reserve_nohdr EXPORT_SYMBOL vmlinux 0x24e1b558 seg6_hmac_compute -EXPORT_SYMBOL vmlinux 0x24e39d42 phy_request_interrupt -EXPORT_SYMBOL vmlinux 0x24e6f18a kfree_skb_reason -EXPORT_SYMBOL vmlinux 0x24ef400e tcf_exts_validate_ex -EXPORT_SYMBOL vmlinux 0x24ef5de7 mmc_start_request -EXPORT_SYMBOL vmlinux 0x24f42e56 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x24f7c910 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x24ff1a41 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x24e4b07f input_register_handler +EXPORT_SYMBOL vmlinux 0x24ee3e12 param_get_byte +EXPORT_SYMBOL vmlinux 0x24f8d965 seq_open_private +EXPORT_SYMBOL vmlinux 0x25017a6a __tcp_md5_do_lookup EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x251a4387 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x250a792c jbd2_journal_lock_updates EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2530ab46 nexthop_res_grp_activity_update EXPORT_SYMBOL vmlinux 0x25321eef prepare_creds -EXPORT_SYMBOL vmlinux 0x255d5e39 unregister_fib_notifier -EXPORT_SYMBOL vmlinux 0x25611029 param_set_uint -EXPORT_SYMBOL vmlinux 0x256ae312 is_bad_inode -EXPORT_SYMBOL vmlinux 0x257ec5b8 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x25449267 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x2545cc55 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x254e037d _dev_crit +EXPORT_SYMBOL vmlinux 0x25514ac7 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x255d80e0 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x255fd866 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x256e734d skb_recv_datagram EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x25859adf __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x258383d3 inet_proto_csum_replace4 EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion EXPORT_SYMBOL vmlinux 0x2598c6c0 __tracepoint_kmem_cache_free -EXPORT_SYMBOL vmlinux 0x25a05b7e rproc_coredump_set_elf_info -EXPORT_SYMBOL vmlinux 0x25c3753e pci_find_capability -EXPORT_SYMBOL vmlinux 0x25dca62c kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x25dfeb49 handshake_req_alloc -EXPORT_SYMBOL vmlinux 0x25e2b3f6 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x25abe874 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x25b2cdb8 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x25cebf15 md_check_recovery +EXPORT_SYMBOL vmlinux 0x25d2c2ec request_key_rcu +EXPORT_SYMBOL vmlinux 0x25e0d5e5 eth_header_parse EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free -EXPORT_SYMBOL vmlinux 0x25f1bcaf __vlan_find_dev_deep_rcu -EXPORT_SYMBOL vmlinux 0x25f58530 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x25f6a4a5 mr_fill_mroute -EXPORT_SYMBOL vmlinux 0x25f99875 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x26028263 block_dirty_folio -EXPORT_SYMBOL vmlinux 0x2605420b reuseport_attach_prog EXPORT_SYMBOL vmlinux 0x26060d14 set_groups -EXPORT_SYMBOL vmlinux 0x262171ab configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x260f0373 tcf_classify +EXPORT_SYMBOL vmlinux 0x261233ec jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x261a4933 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x262b5a5e fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x263304c6 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x2636b6b6 build_skb +EXPORT_SYMBOL vmlinux 0x263b028e __register_chrdev +EXPORT_SYMBOL vmlinux 0x263b5072 blk_queue_max_discard_sectors EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions EXPORT_SYMBOL vmlinux 0x263c3152 bcmp EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod -EXPORT_SYMBOL vmlinux 0x264c7113 dmaenginem_async_device_register -EXPORT_SYMBOL vmlinux 0x26523881 retire_super -EXPORT_SYMBOL vmlinux 0x2660bae0 register_console -EXPORT_SYMBOL vmlinux 0x26877ef5 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x2646e3d3 proc_set_user +EXPORT_SYMBOL vmlinux 0x265d75fc scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x26610793 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x2674ecc5 tcf_block_netif_keep_dst EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x26931c60 sock_wake_async -EXPORT_SYMBOL vmlinux 0x26a0f4df __mmc_claim_host -EXPORT_SYMBOL vmlinux 0x26ace3d3 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x26d91a28 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x26d9be79 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x26dd5d6f kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x2689c749 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x268ca5ee md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x269a8ee6 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x26be760f cdrom_open +EXPORT_SYMBOL vmlinux 0x26d9e2ee xfrm_policy_byid EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier -EXPORT_SYMBOL vmlinux 0x26e5c29b copy_page_to_iter_nofault +EXPORT_SYMBOL vmlinux 0x26e9a764 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x26f27dc5 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x27096d9a inet6_del_protocol EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl -EXPORT_SYMBOL vmlinux 0x27129343 flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272f08d7 kill_block_super +EXPORT_SYMBOL vmlinux 0x27301367 scsi_block_when_processing_errors EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x2740a5a5 arp_create +EXPORT_SYMBOL vmlinux 0x2738c7cc dump_skip +EXPORT_SYMBOL vmlinux 0x273bfb7e read_cache_page +EXPORT_SYMBOL vmlinux 0x274664c3 netif_rx EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp -EXPORT_SYMBOL vmlinux 0x2750f421 rproc_get_by_phandle -EXPORT_SYMBOL vmlinux 0x275d8cb9 tcp_seq_next EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275e5e5d mipi_dsi_dcs_set_page_address EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2764baa5 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x276526c8 seq_dentry EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string -EXPORT_SYMBOL vmlinux 0x27757ea6 __d_drop -EXPORT_SYMBOL vmlinux 0x27794aa9 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x27801be5 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x27766e5c netdev_upper_dev_link EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init EXPORT_SYMBOL vmlinux 0x27864d57 memparse -EXPORT_SYMBOL vmlinux 0x2787dd24 __netif_schedule -EXPORT_SYMBOL vmlinux 0x27885fa4 eth_header_parse -EXPORT_SYMBOL vmlinux 0x279aafbb md_bitmap_unplug_async +EXPORT_SYMBOL vmlinux 0x278a2041 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x2797a6f9 acpi_dev_uid_to_integer +EXPORT_SYMBOL vmlinux 0x2799dbe9 inet_sk_get_local_port_range +EXPORT_SYMBOL vmlinux 0x27b5429e skb_kill_datagram EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bfca0c pcim_iounmap +EXPORT_SYMBOL vmlinux 0x27c25a13 pci_get_subsys EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid -EXPORT_SYMBOL vmlinux 0x27cc95b7 register_netdev EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image -EXPORT_SYMBOL vmlinux 0x27ef91f0 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x27e13bdd pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x27f8a7e9 fib6_info_hw_flags_set EXPORT_SYMBOL vmlinux 0x2801a22f proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x2802d68d unregister_shrinker -EXPORT_SYMBOL vmlinux 0x2813d77c tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x280ec2f6 rtc_add_groups EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x281f198c tcp_sock_set_user_timeout -EXPORT_SYMBOL vmlinux 0x28210af8 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x282495b9 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x28249933 debugfs_create_automount EXPORT_SYMBOL vmlinux 0x282c7e12 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x283c0877 register_framebuffer EXPORT_SYMBOL vmlinux 0x28500e13 proc_douintvec -EXPORT_SYMBOL vmlinux 0x286207f2 crypto_sha1_finup -EXPORT_SYMBOL vmlinux 0x2862faab reuseport_detach_sock -EXPORT_SYMBOL vmlinux 0x286dc552 vme_dma_request -EXPORT_SYMBOL vmlinux 0x286f0699 mount_nodev -EXPORT_SYMBOL vmlinux 0x2871b75c user_revoke +EXPORT_SYMBOL vmlinux 0x285c1f82 km_policy_expired +EXPORT_SYMBOL vmlinux 0x2861c22a acpi_dev_get_first_match_dev EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x28851170 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x287adb1b qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x287e5854 release_pages EXPORT_SYMBOL vmlinux 0x28864fef __tracepoint_module_get -EXPORT_SYMBOL vmlinux 0x288fdc27 make_bad_inode -EXPORT_SYMBOL vmlinux 0x28975b1b tcp_sock_set_cork -EXPORT_SYMBOL vmlinux 0x28abacef cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x28cb9cf4 iov_iter_discard -EXPORT_SYMBOL vmlinux 0x28e768e8 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x28ec6173 sock_init_data -EXPORT_SYMBOL vmlinux 0x28efb27a noop_qdisc +EXPORT_SYMBOL vmlinux 0x28886b91 inet6_getname +EXPORT_SYMBOL vmlinux 0x28945a59 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x289edf83 default_llseek +EXPORT_SYMBOL vmlinux 0x28c1839f balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x28c2bd2c ps2_drain +EXPORT_SYMBOL vmlinux 0x28c7c4b4 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x28cdcbc3 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x28e2c70e rt_dst_alloc EXPORT_SYMBOL vmlinux 0x28f264d7 __tracepoint_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0x28f814be __dev_get_by_flags EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable -EXPORT_SYMBOL vmlinux 0x291d27da poll_freewait -EXPORT_SYMBOL vmlinux 0x294a66e5 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x28fe9953 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x29079a9c pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x290b3bd7 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x29141daf tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x291b16ae md_write_inc +EXPORT_SYMBOL vmlinux 0x291bff86 _copy_from_iter_nocache EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop -EXPORT_SYMBOL vmlinux 0x296720ed pm860x_page_bulk_read -EXPORT_SYMBOL vmlinux 0x29673716 param_get_short EXPORT_SYMBOL vmlinux 0x296b8bbf __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x296d9a2f grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x29bd3ff3 filp_close -EXPORT_SYMBOL vmlinux 0x29d91a0c xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x297213f4 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x297c7cce page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x299a86e6 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x29a96d43 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x29c5ec41 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x29c711a6 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x29d47bac twl6040_reg_write EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack -EXPORT_SYMBOL vmlinux 0x29f1e1ed configfs_unregister_group -EXPORT_SYMBOL vmlinux 0x29f9edea xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x2a14dd57 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x2a206fc1 dma_find_channel -EXPORT_SYMBOL vmlinux 0x2a20ce95 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x2a224216 sock_no_bind -EXPORT_SYMBOL vmlinux 0x2a24e5c7 genphy_read_master_slave -EXPORT_SYMBOL vmlinux 0x2a28216e __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x29e42451 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x29f0e12d skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x2a1da36f consume_skb +EXPORT_SYMBOL vmlinux 0x2a2f4e88 compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature -EXPORT_SYMBOL vmlinux 0x2a35bd83 vga_set_legacy_decoding -EXPORT_SYMBOL vmlinux 0x2a35dab8 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x2a387a57 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x2a4babe6 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x2a5840d2 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x2a604bc2 __alloc_skb +EXPORT_SYMBOL vmlinux 0x2a65b088 mipi_dsi_picture_parameter_set EXPORT_SYMBOL vmlinux 0x2a6a5aac sockopt_capable -EXPORT_SYMBOL vmlinux 0x2a7f87ff dm_table_run_md_queue_async -EXPORT_SYMBOL vmlinux 0x2a8bdcf9 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x2a835e02 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x2a8414d9 ppp_register_channel EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9d5a5f nf_ct_attach +EXPORT_SYMBOL vmlinux 0x2a9e442d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2a9f6976 set_posix_acl EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa54647 input_register_handle EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array -EXPORT_SYMBOL vmlinux 0x2aadb823 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x2ab09990 pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id -EXPORT_SYMBOL vmlinux 0x2acc2426 __xfrm_dst_lookup -EXPORT_SYMBOL vmlinux 0x2ad7237e tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x2ade1b14 param_get_uint -EXPORT_SYMBOL vmlinux 0x2ae94db9 rproc_mem_entry_init -EXPORT_SYMBOL vmlinux 0x2aea6638 i2c_smbus_write_byte_data -EXPORT_SYMBOL vmlinux 0x2aea9ad5 ip_fraglist_init -EXPORT_SYMBOL vmlinux 0x2aeb0ecb nf_register_queue_handler -EXPORT_SYMBOL vmlinux 0x2b0869ca mmc_gpiod_request_ro -EXPORT_SYMBOL vmlinux 0x2b119914 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x2aba0e69 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x2ac9944a inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x2acac878 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x2ae9173f mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x2af2fd09 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x2afe53ad vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x2b0f24f3 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x2b0fabbb dquot_initialize_needed EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 -EXPORT_SYMBOL vmlinux 0x2b5714e8 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x2b1bb82f qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x2b1e05fe uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x2b21ebf2 kthread_stop +EXPORT_SYMBOL vmlinux 0x2b2702af xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x2b3453d3 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x2b38866f __mdiobus_write +EXPORT_SYMBOL vmlinux 0x2b41b084 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x2b4c46c1 scmd_printk EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner -EXPORT_SYMBOL vmlinux 0x2b7268a9 __fput_sync -EXPORT_SYMBOL vmlinux 0x2b748e85 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x2b7f648a pci_request_regions -EXPORT_SYMBOL vmlinux 0x2b80d70a sock_create_kern +EXPORT_SYMBOL vmlinux 0x2b6028f4 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x2b62478a is_nd_btt +EXPORT_SYMBOL vmlinux 0x2b67cf10 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x2b6c4a8f unregister_qdisc +EXPORT_SYMBOL vmlinux 0x2b787a70 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x2b994689 param_set_ushort EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock -EXPORT_SYMBOL vmlinux 0x2b9ddd3c crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x2ba77606 vfs_parse_fs_param_source -EXPORT_SYMBOL vmlinux 0x2bad4403 i2c_verify_adapter EXPORT_SYMBOL vmlinux 0x2bae204e mt_find EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock -EXPORT_SYMBOL vmlinux 0x2bb95704 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x2bbef17d __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x2bb87a44 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x2bbb8c88 qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x2bbce3b9 netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset -EXPORT_SYMBOL vmlinux 0x2bfa86e9 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x2bd6a937 sock_create +EXPORT_SYMBOL vmlinux 0x2bdb2f05 zap_page_range_single +EXPORT_SYMBOL vmlinux 0x2be50e8e dev_lstats_read EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove -EXPORT_SYMBOL vmlinux 0x2c20e8d0 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x2c0373c5 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x2c066c09 bdi_register +EXPORT_SYMBOL vmlinux 0x2c067e74 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x2c1b46f7 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x2c2359d7 mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2d72a0 pci_set_master EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up -EXPORT_SYMBOL vmlinux 0x2c45ffd6 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x2c36919c tcf_block_put +EXPORT_SYMBOL vmlinux 0x2c3a0787 devm_iounmap +EXPORT_SYMBOL vmlinux 0x2c4d6910 unload_nls EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x2c6928f7 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x2c681333 prepare_to_swait_exclusive EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet -EXPORT_SYMBOL vmlinux 0x2c8454fd dcb_getrewr_prio_pcp_mask_map -EXPORT_SYMBOL vmlinux 0x2c886d17 tty_write_room EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x2ca11766 input_get_keycode -EXPORT_SYMBOL vmlinux 0x2cb0c7e5 fman_port_bind -EXPORT_SYMBOL vmlinux 0x2cbab581 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x2c964df3 seq_open +EXPORT_SYMBOL vmlinux 0x2c997da8 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x2caa59d2 udp_lib_getsockopt EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd4bfe9 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x2cdb4a58 scsi_is_target_device EXPORT_SYMBOL vmlinux 0x2cf0c910 sg_init_table EXPORT_SYMBOL vmlinux 0x2cf56265 __dynamic_pr_debug -EXPORT_SYMBOL vmlinux 0x2cf8c0c1 flow_rule_match_eth_addrs -EXPORT_SYMBOL vmlinux 0x2d05df9f dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x2d0637bb devm_backlight_device_register -EXPORT_SYMBOL vmlinux 0x2d0abc09 pci_free_host_bridge -EXPORT_SYMBOL vmlinux 0x2d0c3edc tty_lock +EXPORT_SYMBOL vmlinux 0x2cf8546f sock_gettstamp +EXPORT_SYMBOL vmlinux 0x2d0343fe __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x2d08c1f9 kmalloc_node_trace EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock -EXPORT_SYMBOL vmlinux 0x2d24bbe7 __genphy_config_aneg -EXPORT_SYMBOL vmlinux 0x2d2d62eb sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x2d22083e finish_no_open +EXPORT_SYMBOL vmlinux 0x2d25924d sock_set_priority EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d346888 mmc_can_erase EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup -EXPORT_SYMBOL vmlinux 0x2d493ae0 tc_setup_cb_destroy EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font -EXPORT_SYMBOL vmlinux 0x2d5c1aae mipi_dsi_dcs_exit_sleep_mode -EXPORT_SYMBOL vmlinux 0x2d7a8cc4 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x2d7c4e7e filemap_splice_read -EXPORT_SYMBOL vmlinux 0x2d7d9b18 tcp_close -EXPORT_SYMBOL vmlinux 0x2d83dce1 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x2d87b966 fb_blank -EXPORT_SYMBOL vmlinux 0x2d881e7b qdisc_put_unlocked -EXPORT_SYMBOL vmlinux 0x2d8b8666 register_netdevice -EXPORT_SYMBOL vmlinux 0x2d8ec6ae mdio_find_bus +EXPORT_SYMBOL vmlinux 0x2d75f370 blkdev_get_by_path EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr -EXPORT_SYMBOL vmlinux 0x2d9bf3d3 skb_pull -EXPORT_SYMBOL vmlinux 0x2db4c6dc udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x2dbf84a4 of_get_mac_address_nvmem +EXPORT_SYMBOL vmlinux 0x2dce19b2 set_blocksize EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dcef383 rproc_add +EXPORT_SYMBOL vmlinux 0x2dd5290d sock_wmalloc +EXPORT_SYMBOL vmlinux 0x2dd74c13 blackhole_netdev EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align -EXPORT_SYMBOL vmlinux 0x2de3e3b7 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x2e09be5e tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x2de849fd node_data +EXPORT_SYMBOL vmlinux 0x2de9cc0e inet_recvmsg +EXPORT_SYMBOL vmlinux 0x2e007616 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x2e04eaad flow_rule_match_meta EXPORT_SYMBOL vmlinux 0x2e0a637d acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x2e0b4249 fman_get_mem_region -EXPORT_SYMBOL vmlinux 0x2e0c1662 is_acpi_device_node EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e24078b skb_vlan_pop EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw -EXPORT_SYMBOL vmlinux 0x2e3015f0 d_alloc_name -EXPORT_SYMBOL vmlinux 0x2e306ef9 xfrm_parse_spi -EXPORT_SYMBOL vmlinux 0x2e33db95 serio_rescan +EXPORT_SYMBOL vmlinux 0x2e31d125 truncate_pagecache_range EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk -EXPORT_SYMBOL vmlinux 0x2e44f85f tty_devnum -EXPORT_SYMBOL vmlinux 0x2e503e97 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x2e454837 ip_setsockopt EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range -EXPORT_SYMBOL vmlinux 0x2e6b9075 tegra_ivc_init -EXPORT_SYMBOL vmlinux 0x2e6e30ae __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x2e88e2cc input_unregister_handle -EXPORT_SYMBOL vmlinux 0x2eac1395 acpi_dev_hid_uid_match -EXPORT_SYMBOL vmlinux 0x2ec42fb0 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x2e64e49a input_allocate_device +EXPORT_SYMBOL vmlinux 0x2e6c2956 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x2e700cef __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x2e724e29 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x2e7c9ce0 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x2e7f112a ppp_input +EXPORT_SYMBOL vmlinux 0x2ebfc4c1 jbd2__journal_restart EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set -EXPORT_SYMBOL vmlinux 0x2ecc5a6b io_uring_destruct_scm -EXPORT_SYMBOL vmlinux 0x2eec6ade vc_cons -EXPORT_SYMBOL vmlinux 0x2ef0413e dup_iter +EXPORT_SYMBOL vmlinux 0x2ec90994 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x2ec988be iproc_msi_init +EXPORT_SYMBOL vmlinux 0x2ef45633 xfrm_state_lookup_byspi EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc -EXPORT_SYMBOL vmlinux 0x2f048fd9 get_tree_keyed -EXPORT_SYMBOL vmlinux 0x2f0e0413 tcp_read_sock EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init -EXPORT_SYMBOL vmlinux 0x2f1fce86 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x2f1988f8 noop_qdisc EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x2f39bae6 flush_dcache_folio -EXPORT_SYMBOL vmlinux 0x2f40b995 bio_integrity_add_page -EXPORT_SYMBOL vmlinux 0x2f5188c4 mmc_run_bkops -EXPORT_SYMBOL vmlinux 0x2f5c3a48 mdiobus_alloc_size -EXPORT_SYMBOL vmlinux 0x2f650186 skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free -EXPORT_SYMBOL vmlinux 0x2f9a57ce xp_set_rxq_info -EXPORT_SYMBOL vmlinux 0x2fb851b6 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x2fd0ec54 vfs_fileattr_get -EXPORT_SYMBOL vmlinux 0x2fda6d02 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x2f7a6943 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x2f82e72e redraw_screen +EXPORT_SYMBOL vmlinux 0x2f88ba9b sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2f8a66eb tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x2f908503 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x2f951a39 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x2fa5a1d1 bio_put +EXPORT_SYMBOL vmlinux 0x2fbbbd3a cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x2fbfa748 bioset_init +EXPORT_SYMBOL vmlinux 0x2fc81433 neigh_update EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x2ff377c5 rtnl_offload_xstats_notify -EXPORT_SYMBOL vmlinux 0x2ffa63a0 kernel_connect -EXPORT_SYMBOL vmlinux 0x300b5ee7 pm860x_page_reg_write -EXPORT_SYMBOL vmlinux 0x301bc433 jbd2_fc_wait_bufs -EXPORT_SYMBOL vmlinux 0x3021aa89 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x3035678d pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x303a164e input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x303aa9cc invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x3050a804 rproc_of_resm_mem_entry_init -EXPORT_SYMBOL vmlinux 0x3056258c netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x30576028 __dynamic_ibdev_dbg -EXPORT_SYMBOL vmlinux 0x305d0232 phy_modify_paged_changed -EXPORT_SYMBOL vmlinux 0x3071ebd6 of_find_matching_node_and_match -EXPORT_SYMBOL vmlinux 0x30794522 scsi_device_put +EXPORT_SYMBOL vmlinux 0x2fe36aeb pci_find_capability +EXPORT_SYMBOL vmlinux 0x2fe93f91 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x2fff6ad8 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x300bab9f mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x303936e6 sync_file_create +EXPORT_SYMBOL vmlinux 0x303f1319 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3071dbb2 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x30799fdd param_ops_short +EXPORT_SYMBOL vmlinux 0x307c51f9 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x308cb013 md_write_end +EXPORT_SYMBOL vmlinux 0x3090da4d device_match_acpi_dev EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3098de53 i2c_smbus_xfer EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30aba950 folio_redirty_for_writepage EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 -EXPORT_SYMBOL vmlinux 0x30dc16aa ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x310a9a43 ethtool_rx_flow_rule_destroy -EXPORT_SYMBOL vmlinux 0x311ee186 pci_find_resource -EXPORT_SYMBOL vmlinux 0x31247e55 dquot_resume -EXPORT_SYMBOL vmlinux 0x31266105 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x30b24abb tls_client_hello_x509 +EXPORT_SYMBOL vmlinux 0x31008f3e vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x310f0a47 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x311a5df4 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x31234b82 write_inode_now +EXPORT_SYMBOL vmlinux 0x3123f37c netdev_lower_state_changed EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 -EXPORT_SYMBOL vmlinux 0x3128dca3 single_open_size +EXPORT_SYMBOL vmlinux 0x312a17e8 ilookup5_nowait EXPORT_SYMBOL vmlinux 0x312ed932 verify_spi_info -EXPORT_SYMBOL vmlinux 0x313b4db6 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x3143a931 kobject_put -EXPORT_SYMBOL vmlinux 0x31443add vfs_setpos -EXPORT_SYMBOL vmlinux 0x3153ff16 tcf_em_unregister -EXPORT_SYMBOL vmlinux 0x317d33ad ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x318df8bd xsk_tx_release +EXPORT_SYMBOL vmlinux 0x3134a718 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x314f39d2 init_net +EXPORT_SYMBOL vmlinux 0x31629e30 seq_puts +EXPORT_SYMBOL vmlinux 0x316c1f89 ata_print_version +EXPORT_SYMBOL vmlinux 0x31877634 device_add_disk +EXPORT_SYMBOL vmlinux 0x3189fca9 simple_transaction_get EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available -EXPORT_SYMBOL vmlinux 0x31ae2218 pskb_extract -EXPORT_SYMBOL vmlinux 0x31b75efb xen_alloc_unpopulated_pages -EXPORT_SYMBOL vmlinux 0x31bd6d66 mdiobus_read_nested -EXPORT_SYMBOL vmlinux 0x31ff14f8 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x31b7de30 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x31c46d7c pci_set_mwi +EXPORT_SYMBOL vmlinux 0x31f71f3c xen_free_ballooned_pages EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock -EXPORT_SYMBOL vmlinux 0x3216fcb2 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x3217b7e3 blk_mq_stop_hw_queues EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset -EXPORT_SYMBOL vmlinux 0x322b1d03 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x32283569 scsi_change_queue_depth EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd -EXPORT_SYMBOL vmlinux 0x32468ef6 unload_nls -EXPORT_SYMBOL vmlinux 0x324bde8b mmc_card_alternative_gpt_sector -EXPORT_SYMBOL vmlinux 0x32722790 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x3274b906 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x3262b2cd input_event +EXPORT_SYMBOL vmlinux 0x3262f175 __dec_zone_page_state EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3280534d gro_find_receive_by_type EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32a87cf2 skb_checksum +EXPORT_SYMBOL vmlinux 0x32a97ad5 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x32c503af submit_bh +EXPORT_SYMBOL vmlinux 0x32c523b1 netif_set_xps_queue EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x32e3efbd security_path_mkdir EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string EXPORT_SYMBOL vmlinux 0x32e8cfea mtree_load -EXPORT_SYMBOL vmlinux 0x32e8d161 vlan_uses_dev -EXPORT_SYMBOL vmlinux 0x32e97fb8 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x3300c8ef pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x32e9e0a0 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x32ec8cb2 kernel_tmpfile_open +EXPORT_SYMBOL vmlinux 0x32f18a37 security_dentry_create_files_as EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl -EXPORT_SYMBOL vmlinux 0x3319ef54 phy_ethtool_ksettings_get -EXPORT_SYMBOL vmlinux 0x332749ab module_layout +EXPORT_SYMBOL vmlinux 0x3318f56d phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x3320fb43 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x332ab844 pci_try_set_mwi EXPORT_SYMBOL vmlinux 0x333bfca1 hdmi_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x3342d531 inet_shutdown -EXPORT_SYMBOL vmlinux 0x33691030 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x336076cb netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x3365b13a netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x33690649 blkdev_issue_secure_erase EXPORT_SYMBOL vmlinux 0x3369ea44 mtree_insert_range -EXPORT_SYMBOL vmlinux 0x336b0ea7 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x337179d0 inet_stream_connect EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc -EXPORT_SYMBOL vmlinux 0x33a5e6ff phy_aneg_done -EXPORT_SYMBOL vmlinux 0x33a60bc7 __hw_addr_ref_sync_dev -EXPORT_SYMBOL vmlinux 0x33aa4d2f mmc_cqe_recovery -EXPORT_SYMBOL vmlinux 0x33cf787f unpin_user_page_range_dirty_lock -EXPORT_SYMBOL vmlinux 0x33da8416 pmem_sector_size -EXPORT_SYMBOL vmlinux 0x33e419ac inet_del_offload +EXPORT_SYMBOL vmlinux 0x338897c6 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x33b511f4 pci_restore_state +EXPORT_SYMBOL vmlinux 0x33dca063 twl6040_set_pll EXPORT_SYMBOL vmlinux 0x33ef0118 __cpuhp_setup_state EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f5f90e netdev_upper_dev_unlink EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x3401e45f tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x3402578d jbd2_journal_init_inode EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field -EXPORT_SYMBOL vmlinux 0x340ac445 vga_get -EXPORT_SYMBOL vmlinux 0x3414c7a7 param_set_long -EXPORT_SYMBOL vmlinux 0x341c3273 sock_no_linger -EXPORT_SYMBOL vmlinux 0x34363b96 kill_litter_super -EXPORT_SYMBOL vmlinux 0x3442a823 of_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x344375af crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x344c575d pcim_iounmap -EXPORT_SYMBOL vmlinux 0x3450edda tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x345b502b devm_alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x345d8e83 fb_io_read -EXPORT_SYMBOL vmlinux 0x346715c7 device_match_acpi_dev -EXPORT_SYMBOL vmlinux 0x34854534 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x340a05e4 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x3439e676 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x34475578 __inet_hash +EXPORT_SYMBOL vmlinux 0x344af3de fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x3467ecbb __bforget +EXPORT_SYMBOL vmlinux 0x346ea286 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x3476ffa0 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x3493e3f0 udp_read_skb EXPORT_SYMBOL vmlinux 0x349cba85 strchr EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd -EXPORT_SYMBOL vmlinux 0x34a220ff page_get_link -EXPORT_SYMBOL vmlinux 0x34ab5be1 max8998_bulk_write -EXPORT_SYMBOL vmlinux 0x34b7d3f1 seq_open +EXPORT_SYMBOL vmlinux 0x34aa1640 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x34aaefe0 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x34b632bb __i2c_transfer +EXPORT_SYMBOL vmlinux 0x34c59465 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x34c5d85f neigh_seq_start EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev -EXPORT_SYMBOL vmlinux 0x34c97d5b param_set_ulong -EXPORT_SYMBOL vmlinux 0x34d2a7aa devm_devfreq_add_governor -EXPORT_SYMBOL vmlinux 0x34d2c6c0 iproc_msi_exit -EXPORT_SYMBOL vmlinux 0x34daaaea tcp_read_skb -EXPORT_SYMBOL vmlinux 0x34e3d8dd __find_get_block -EXPORT_SYMBOL vmlinux 0x34ea44c8 kernel_read +EXPORT_SYMBOL vmlinux 0x34dce789 fsl_ifc_ctrl_dev EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue -EXPORT_SYMBOL vmlinux 0x35032ccb tegra_ivc_notified -EXPORT_SYMBOL vmlinux 0x350a5d97 input_set_min_poll_interval -EXPORT_SYMBOL vmlinux 0x351112ea __sk_dst_check +EXPORT_SYMBOL vmlinux 0x350624c6 __skb_pad EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x35199b4d iget5_locked -EXPORT_SYMBOL vmlinux 0x351f9145 vme_bus_error_handler -EXPORT_SYMBOL vmlinux 0x352d4e37 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x352eeda8 register_key_type +EXPORT_SYMBOL vmlinux 0x3533722f jbd2_journal_force_commit_nested EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy -EXPORT_SYMBOL vmlinux 0x35457fe6 seq_escape_mem EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x356fab97 nd_btt_probe -EXPORT_SYMBOL vmlinux 0x3596d111 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x3582e27a phy_write_paged +EXPORT_SYMBOL vmlinux 0x35880228 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x358b253c scsi_add_device +EXPORT_SYMBOL vmlinux 0x35a3c903 input_grab_device +EXPORT_SYMBOL vmlinux 0x35a4f274 sock_bindtoindex EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x35aaf20c kobject_add -EXPORT_SYMBOL vmlinux 0x35af92a0 flow_rule_match_enc_opts -EXPORT_SYMBOL vmlinux 0x35b335b5 param_get_ulong -EXPORT_SYMBOL vmlinux 0x35c8c959 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x35d241be phys_mem_access_prot -EXPORT_SYMBOL vmlinux 0x35d2db7f param_ops_invbool -EXPORT_SYMBOL vmlinux 0x35ee89dd ptp_clock_event -EXPORT_SYMBOL vmlinux 0x35f1c493 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x35ad2c15 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x35ae08e2 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x35ae905b scsi_remove_target +EXPORT_SYMBOL vmlinux 0x35cba542 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x35ee0da5 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x35fa4980 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x3605bb36 __folio_batch_release EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask -EXPORT_SYMBOL vmlinux 0x3611cbe8 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x3612ee9a jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x3613126b dev_set_mac_address_user -EXPORT_SYMBOL vmlinux 0x36206f58 phy_write_mmd -EXPORT_SYMBOL vmlinux 0x36242649 vme_unregister_bridge -EXPORT_SYMBOL vmlinux 0x3638e9f3 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x36203d9a __mmap_lock_do_trace_acquire_returned EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked -EXPORT_SYMBOL vmlinux 0x36548c3e serio_unregister_child_port -EXPORT_SYMBOL vmlinux 0x3658078d _dev_printk +EXPORT_SYMBOL vmlinux 0x36510860 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x36550284 block_invalidate_folio EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 -EXPORT_SYMBOL vmlinux 0x365d4eac pci_read_config_word +EXPORT_SYMBOL vmlinux 0x365b3823 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x365e6c02 pci_scan_single_device EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const -EXPORT_SYMBOL vmlinux 0x366009cb __filemap_set_wb_err -EXPORT_SYMBOL vmlinux 0x36651efa param_set_charp EXPORT_SYMBOL vmlinux 0x366707c9 jent_testing_init -EXPORT_SYMBOL vmlinux 0x36769c73 dma_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x36928f10 tcf_get_next_proto -EXPORT_SYMBOL vmlinux 0x36abfc69 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x3672f675 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x367d467a dump_skip_to +EXPORT_SYMBOL vmlinux 0x36895b39 simple_rmdir +EXPORT_SYMBOL vmlinux 0x3697eecc pcie_get_mps EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable -EXPORT_SYMBOL vmlinux 0x36ba0f2a __mmap_lock_do_trace_start_locking -EXPORT_SYMBOL vmlinux 0x36bb0f6f scsi_host_busy -EXPORT_SYMBOL vmlinux 0x36ec1a7d input_set_capability -EXPORT_SYMBOL vmlinux 0x36fc0e57 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x36bfc969 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x36c1b985 inet_offloads +EXPORT_SYMBOL vmlinux 0x36c9d7c5 sys_imageblit +EXPORT_SYMBOL vmlinux 0x36e25f8d phy_error +EXPORT_SYMBOL vmlinux 0x36eb8b6e __of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x36fe1401 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x370cc78a kobject_put EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371a6a39 sock_no_sendmsg EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait -EXPORT_SYMBOL vmlinux 0x372ea51e d_delete -EXPORT_SYMBOL vmlinux 0x373427a2 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x3740212c proc_set_user +EXPORT_SYMBOL vmlinux 0x371e2555 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x372545b1 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x3729fc15 phy_get_eee_err EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374945c4 mdiobus_c45_write +EXPORT_SYMBOL vmlinux 0x374e5bd8 dev_kfree_skb_any_reason EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe -EXPORT_SYMBOL vmlinux 0x3775d927 phy_sfp_probe -EXPORT_SYMBOL vmlinux 0x377d7b5a dquot_get_state +EXPORT_SYMBOL vmlinux 0x37635db3 genphy_resume +EXPORT_SYMBOL vmlinux 0x37735442 xfrm_input_register_afinfo EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error -EXPORT_SYMBOL vmlinux 0x377f1655 config_group_init_type_name -EXPORT_SYMBOL vmlinux 0x37a66f01 pcim_iomap -EXPORT_SYMBOL vmlinux 0x37b869fe jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x378ae8f8 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x37a8a0cb input_set_timestamp EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bb5148 rt6_lookup EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x37c8dad0 ppp_register_net_channel -EXPORT_SYMBOL vmlinux 0x37cfd5a8 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x37c94d30 netdev_name_in_use EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date -EXPORT_SYMBOL vmlinux 0x37f285f1 freeze_bdev -EXPORT_SYMBOL vmlinux 0x37f96dc1 phy_device_create -EXPORT_SYMBOL vmlinux 0x38008557 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x3805f267 jbd2_fc_release_bufs -EXPORT_SYMBOL vmlinux 0x380dda5b of_get_cpu_node -EXPORT_SYMBOL vmlinux 0x3813685d napi_build_skb +EXPORT_SYMBOL vmlinux 0x37dc247f mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x37f5cf21 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x380169fb dev_deactivate +EXPORT_SYMBOL vmlinux 0x38174cc3 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x38189a69 dst_cow_metrics_generic EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus -EXPORT_SYMBOL vmlinux 0x3828b925 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x3831e9d5 pipe_lock -EXPORT_SYMBOL vmlinux 0x38473135 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x384bd1a6 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x384bd5bd blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x38531b49 security_sb_mnt_opts_compat EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll -EXPORT_SYMBOL vmlinux 0x3858c24b clkdev_drop +EXPORT_SYMBOL vmlinux 0x385a631c truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x385a8525 phy_detach EXPORT_SYMBOL vmlinux 0x385c7481 __tracepoint_mmap_lock_start_locking -EXPORT_SYMBOL vmlinux 0x38654d29 fman_set_mac_max_frame -EXPORT_SYMBOL vmlinux 0x38858236 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x38621d2f ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x3870e6fc mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x38850570 dma_async_device_register EXPORT_SYMBOL vmlinux 0x38869d88 kstat EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok -EXPORT_SYMBOL vmlinux 0x38934fcb kernel_write EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue -EXPORT_SYMBOL vmlinux 0x389b17a4 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x38a4a7f4 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x38a4fcbb dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x38a6bd8c skb_tunnel_check_pmtu EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x38b05c00 fuse_mount_destroy -EXPORT_SYMBOL vmlinux 0x38d71411 task_lookup_next_fd_rcu -EXPORT_SYMBOL vmlinux 0x38e1e965 seq_read_iter +EXPORT_SYMBOL vmlinux 0x38bc00b8 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x38be28c4 skb_queue_head +EXPORT_SYMBOL vmlinux 0x38c1e261 inet_add_offload +EXPORT_SYMBOL vmlinux 0x38e06743 of_find_node_with_property EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit -EXPORT_SYMBOL vmlinux 0x38e6b5ab is_nd_dax -EXPORT_SYMBOL vmlinux 0x38f97e6f mdiobus_is_registered_device -EXPORT_SYMBOL vmlinux 0x38fa0ed4 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x38faa8d8 i2c_find_device_by_fwnode -EXPORT_SYMBOL vmlinux 0x39090f90 register_quota_format -EXPORT_SYMBOL vmlinux 0x3910ad94 of_get_child_by_name -EXPORT_SYMBOL vmlinux 0x3917c5e2 mdiobb_write_c45 +EXPORT_SYMBOL vmlinux 0x390172e4 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x390d2ac9 tls_handshake_cancel +EXPORT_SYMBOL vmlinux 0x391c515b pci_map_rom +EXPORT_SYMBOL vmlinux 0x391dd991 skb_copy_datagram_from_iter EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key -EXPORT_SYMBOL vmlinux 0x3927bd22 dquot_commit -EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x3937020d __skb_flow_get_ports EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p -EXPORT_SYMBOL vmlinux 0x3948ee19 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach -EXPORT_SYMBOL vmlinux 0x394c5e25 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x394d5c3f nf_log_packet -EXPORT_SYMBOL vmlinux 0x3952ba49 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x394ef680 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x394f9857 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x39548775 put_ipc_ns EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x396487ec generic_file_mmap -EXPORT_SYMBOL vmlinux 0x396a3c91 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x396fe265 serio_interrupt -EXPORT_SYMBOL vmlinux 0x3973b6d3 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x39767b8b sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x397d4f55 tls_client_hello_x509 -EXPORT_SYMBOL vmlinux 0x398fc09f cdev_del +EXPORT_SYMBOL vmlinux 0x3957bef4 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3959b0a1 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x39742ef8 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x39943122 disk_stack_limits EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x399b212c tcf_qevent_handle -EXPORT_SYMBOL vmlinux 0x39b0f401 iov_iter_advance EXPORT_SYMBOL vmlinux 0x39b12223 __acpi_handle_debug EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39be9914 inet_shutdown EXPORT_SYMBOL vmlinux 0x39c74235 dm_read_arg_group -EXPORT_SYMBOL vmlinux 0x39c9fdff fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x39d3853b tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x39d4b807 skb_copy_and_csum_bits EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream -EXPORT_SYMBOL vmlinux 0x39e4c663 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x39f9ac36 inode_init_once -EXPORT_SYMBOL vmlinux 0x3a1c2436 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x3a2e842a of_count_phandle_with_args -EXPORT_SYMBOL vmlinux 0x3a360f11 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x3a3d20cd __mdiobus_write +EXPORT_SYMBOL vmlinux 0x39f7d762 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x3a07a256 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x3a16447b skb_eth_gso_segment EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a511245 invalidate_inode_buffers EXPORT_SYMBOL vmlinux 0x3a516709 __cpuhp_setup_state_cpuslocked -EXPORT_SYMBOL vmlinux 0x3a55f3a0 dget_parent -EXPORT_SYMBOL vmlinux 0x3a5a962f tty_port_hangup -EXPORT_SYMBOL vmlinux 0x3a6b0d73 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x3a70d7fd eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x3a93bb33 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x3a88201a gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x3a8df339 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x3a926f7c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x3a9c5c5b __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x3a9ed30d ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x3aa499ed __scm_destroy +EXPORT_SYMBOL vmlinux 0x3aa937a8 genl_register_family +EXPORT_SYMBOL vmlinux 0x3aaab4ad __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x3ab147ff phy_support_sym_pause EXPORT_SYMBOL vmlinux 0x3ab28948 console_srcu_read_lock -EXPORT_SYMBOL vmlinux 0x3ab550cf devm_extcon_register_notifier EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer -EXPORT_SYMBOL vmlinux 0x3ab82242 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x3abf0e78 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x3ac09198 submit_bio +EXPORT_SYMBOL vmlinux 0x3ad1e5be _dev_info +EXPORT_SYMBOL vmlinux 0x3ad3bec8 rproc_elf_get_boot_addr EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x3ad8e204 skb_copy_datagram_iter EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx -EXPORT_SYMBOL vmlinux 0x3aea4f2d max8998_update_reg -EXPORT_SYMBOL vmlinux 0x3aeda03b bio_copy_data +EXPORT_SYMBOL vmlinux 0x3ae796c0 kset_unregister EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b0b4778 skb_vlan_untag EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma -EXPORT_SYMBOL vmlinux 0x3b105310 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x3b190b7e of_clk_get -EXPORT_SYMBOL vmlinux 0x3b2e3ded ip6_frag_init EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode -EXPORT_SYMBOL vmlinux 0x3b581db9 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x3b62ae3d netdev_warn +EXPORT_SYMBOL vmlinux 0x3b582f7d io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x3b5d3f5a cdev_device_add +EXPORT_SYMBOL vmlinux 0x3b5e5742 file_modified EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x3b6451c0 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x3b64604c uart_match_port -EXPORT_SYMBOL vmlinux 0x3b66fddd read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x3b68dde3 generic_update_time EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner -EXPORT_SYMBOL vmlinux 0x3b79c905 iptun_encaps +EXPORT_SYMBOL vmlinux 0x3b7ffa42 input_match_device_id EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x3bd60f4d tcp_seq_stop -EXPORT_SYMBOL vmlinux 0x3bd6db09 __do_once_done -EXPORT_SYMBOL vmlinux 0x3beb9858 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x3bb33fdc scsi_device_resume +EXPORT_SYMBOL vmlinux 0x3bc5c5f6 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x3bc7a6af sk_stream_error +EXPORT_SYMBOL vmlinux 0x3be2fa0e genphy_update_link +EXPORT_SYMBOL vmlinux 0x3beaaabc tcp_sock_set_syncnt EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr -EXPORT_SYMBOL vmlinux 0x3c3ad245 __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf -EXPORT_SYMBOL vmlinux 0x3c56132a __lock_sock_fast -EXPORT_SYMBOL vmlinux 0x3c569dfb pmem_should_map_pages -EXPORT_SYMBOL vmlinux 0x3c6859ce uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x3c8a03cc udp_pre_connect -EXPORT_SYMBOL vmlinux 0x3c915b19 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x3caf9df3 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x3c522823 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x3c6d9c94 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x3c7476b0 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x3c85b0a8 finish_open +EXPORT_SYMBOL vmlinux 0x3c87639f mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x3c990f6f tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x3c9b3968 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3ca19c00 dm_table_get_md EXPORT_SYMBOL vmlinux 0x3cb23db3 console_srcu_read_unlock -EXPORT_SYMBOL vmlinux 0x3cba007d msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x3cb2826d msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x3cb3355b would_dump EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream -EXPORT_SYMBOL vmlinux 0x3cd33655 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x3cd2bc40 inet_frag_kill EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw -EXPORT_SYMBOL vmlinux 0x3cde79dc i2c_smbus_read_word_data EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq -EXPORT_SYMBOL vmlinux 0x3ce68756 vfs_get_fsid -EXPORT_SYMBOL vmlinux 0x3cee4270 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x3d011aaa fb_io_write -EXPORT_SYMBOL vmlinux 0x3d01cb42 vfs_unlink +EXPORT_SYMBOL vmlinux 0x3cec7126 blk_rq_init +EXPORT_SYMBOL vmlinux 0x3cfcb0df xfrm_input EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align -EXPORT_SYMBOL vmlinux 0x3d32508c ip_sock_set_pktinfo -EXPORT_SYMBOL vmlinux 0x3d387f9a sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x3d3f386a dec_node_page_state -EXPORT_SYMBOL vmlinux 0x3d4dd53e dev_activate +EXPORT_SYMBOL vmlinux 0x3d26446b filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x3d39f171 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x3d3fbecd md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x3d4406bb devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x3d59b35b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3d5cbeaa tty_port_close_start +EXPORT_SYMBOL vmlinux 0x3d6257a2 dquot_resume +EXPORT_SYMBOL vmlinux 0x3d6ecda2 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x3d7055ff ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x3d73865c dm_register_target EXPORT_SYMBOL vmlinux 0x3d7bac46 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x3d9128d4 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x3d7e6a35 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x3d7eb27b irq_domain_set_info EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d985a29 acpi_device_set_power EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page EXPORT_SYMBOL vmlinux 0x3da092b8 dma_fence_get_stub -EXPORT_SYMBOL vmlinux 0x3da95a47 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x3daaa5b2 edac_mc_find EXPORT_SYMBOL vmlinux 0x3daae96c dma_fence_signal_timestamp EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dad876a page_cache_prev_miss EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3db8153c security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x3dc0536a dquot_reclaim_space_nodirty EXPORT_SYMBOL vmlinux 0x3dc4cd68 __nla_put_64bit EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked -EXPORT_SYMBOL vmlinux 0x3dc8694c of_phy_is_fixed_link EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x3dcf2a46 bio_integrity_prep EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id -EXPORT_SYMBOL vmlinux 0x3dd83ca1 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x3de844b0 qdisc_class_hash_grow EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc7988 __find_get_block EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x3dff5724 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x3e04a901 devm_devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x3e107c87 rpmh_write_batch -EXPORT_SYMBOL vmlinux 0x3e254ba7 write_inode_now -EXPORT_SYMBOL vmlinux 0x3e2e6dde flow_indr_dev_unregister -EXPORT_SYMBOL vmlinux 0x3e345c98 iw_handler_set_spy -EXPORT_SYMBOL vmlinux 0x3e35472f xfrm_input +EXPORT_SYMBOL vmlinux 0x3e06d5f2 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x3e09169d netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x3e093e0a xp_alloc +EXPORT_SYMBOL vmlinux 0x3e1685c6 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x3e17f46a pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x3e1c1ef2 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x3e2e8b15 scsi_host_busy EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x3e5244be genphy_soft_reset -EXPORT_SYMBOL vmlinux 0x3e6c01d9 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x3e4e3aa3 page_pool_create +EXPORT_SYMBOL vmlinux 0x3e52275b twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x3e5a9ff6 __devm_request_region +EXPORT_SYMBOL vmlinux 0x3e76e9ca __tty_alloc_driver EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc -EXPORT_SYMBOL vmlinux 0x3e9862bb xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x3e9a6f63 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x3eb81fe7 devm_extcon_unregister_notifier_all -EXPORT_SYMBOL vmlinux 0x3ec482c3 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x3ec94ce1 skb_put +EXPORT_SYMBOL vmlinux 0x3e9e40e6 pci_select_bars +EXPORT_SYMBOL vmlinux 0x3ea35d6b unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x3ea5145d seq_lseek +EXPORT_SYMBOL vmlinux 0x3ebbcdea tcf_exts_init_ex EXPORT_SYMBOL vmlinux 0x3eccbe2c __find_nth_bit -EXPORT_SYMBOL vmlinux 0x3ed2e0b2 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x3ee4a275 dev_mc_del +EXPORT_SYMBOL vmlinux 0x3ef50ab4 __devm_release_region EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3efef31a unregister_nls EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update -EXPORT_SYMBOL vmlinux 0x3f245299 __vfs_removexattr -EXPORT_SYMBOL vmlinux 0x3f2de315 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x3f0feec1 phy_init_eee EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f39c7e7 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x3f3c7934 __bh_read_batch +EXPORT_SYMBOL vmlinux 0x3f3eff73 mdio_device_create EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f48111e phy_resume EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f6099d2 config_item_get_unless_zero EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access -EXPORT_SYMBOL vmlinux 0x3fa44ced tcp_make_synack -EXPORT_SYMBOL vmlinux 0x3fabf5dc of_find_all_nodes -EXPORT_SYMBOL vmlinux 0x3fb7fc1d flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x3f91c83c xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x3f9588c9 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x3fa723b3 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x3fb8ed5c devm_devfreq_add_device EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd72f04 nosteal_pipe_buf_ops EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight -EXPORT_SYMBOL vmlinux 0x3fe761b7 of_translate_dma_address -EXPORT_SYMBOL vmlinux 0x3ff8493a tcf_qevent_dump -EXPORT_SYMBOL vmlinux 0x40256eb9 security_inode_getsecctx -EXPORT_SYMBOL vmlinux 0x4034a952 seq_file_path -EXPORT_SYMBOL vmlinux 0x4074abc0 udp_seq_ops -EXPORT_SYMBOL vmlinux 0x407f08c9 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x3ff047ca security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x3ff19c40 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x4033c96f inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x404582b5 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x4045bc27 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x404aec78 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x4064a691 skb_splice_from_iter +EXPORT_SYMBOL vmlinux 0x406f04e0 give_up_console EXPORT_SYMBOL vmlinux 0x40863ba1 ioremap_prot -EXPORT_SYMBOL vmlinux 0x408a4c12 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x408bcce5 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x408cd30b nvdimm_namespace_capacity EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x409e9f04 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x4097a381 vfs_rename EXPORT_SYMBOL vmlinux 0x40a62432 __nla_validate EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc -EXPORT_SYMBOL vmlinux 0x40b6764f param_ops_bint -EXPORT_SYMBOL vmlinux 0x40bdd3e6 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x40b1859c acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x40b38f08 skb_push EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x40dbf5a0 get_vm_area -EXPORT_SYMBOL vmlinux 0x40f190ef skb_vlan_push -EXPORT_SYMBOL vmlinux 0x40f5b662 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x40e2eca6 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x40e45d9d jbd2_journal_get_create_access EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc -EXPORT_SYMBOL vmlinux 0x40fced83 tcf_idr_search -EXPORT_SYMBOL vmlinux 0x410f1c85 vm_map_ram +EXPORT_SYMBOL vmlinux 0x40f8c55a __bio_advance +EXPORT_SYMBOL vmlinux 0x40fd8e7d fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x410726ac scsi_scan_target +EXPORT_SYMBOL vmlinux 0x411bf9a5 tcp_connect +EXPORT_SYMBOL vmlinux 0x4123a757 iommu_put_resv_regions EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin -EXPORT_SYMBOL vmlinux 0x41365c0b blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x4137cc59 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x41431791 neigh_parms_release EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue -EXPORT_SYMBOL vmlinux 0x4161403e bio_put +EXPORT_SYMBOL vmlinux 0x415a1de7 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x415d690e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x41811642 dns_query EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x418ab674 iw_handler_set_thrspy -EXPORT_SYMBOL vmlinux 0x418d1381 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x41914829 md_error -EXPORT_SYMBOL vmlinux 0x419587be touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x419154fc inet6_ioctl +EXPORT_SYMBOL vmlinux 0x4195fd77 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x419a7221 mdiobus_setup_mdiodev_from_board_info EXPORT_SYMBOL vmlinux 0x41a30bef mtree_store_range -EXPORT_SYMBOL vmlinux 0x41acc90a skb_condense -EXPORT_SYMBOL vmlinux 0x41bc7746 kset_unregister -EXPORT_SYMBOL vmlinux 0x41bd34d3 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x41c27b28 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x41c9f165 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x41dd21ec set_cached_acl EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41ee6927 uart_get_divisor EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x41f30e68 platform_get_ethdev_address -EXPORT_SYMBOL vmlinux 0x41f53f78 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x41fa513e dev_mc_init -EXPORT_SYMBOL vmlinux 0x4200b977 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x421a15ba show_init_ipc_ns -EXPORT_SYMBOL vmlinux 0x4220e506 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x422d4424 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x422eb4f5 rpmh_write_async -EXPORT_SYMBOL vmlinux 0x423672e8 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x41f37acb dm_io +EXPORT_SYMBOL vmlinux 0x420b0044 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x423ebc1e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x42450cc1 xfrm_state_add EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x4255bf4a __ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x42564f12 of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type -EXPORT_SYMBOL vmlinux 0x42666f9b param_get_dyndbg_classes -EXPORT_SYMBOL vmlinux 0x4267353d sget -EXPORT_SYMBOL vmlinux 0x427fb8d2 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x42813856 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x429b1058 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x42a5a51f pcie_print_link_status -EXPORT_SYMBOL vmlinux 0x42a92315 rt_dst_alloc -EXPORT_SYMBOL vmlinux 0x42bd067c blk_put_queue +EXPORT_SYMBOL vmlinux 0x426050db _dev_notice +EXPORT_SYMBOL vmlinux 0x42633753 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x42669f93 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x426f3666 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x4270ef78 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x4275d74e i2c_del_driver +EXPORT_SYMBOL vmlinux 0x42a8a3fe inode_needs_sync +EXPORT_SYMBOL vmlinux 0x42bd6077 fs_param_is_enum EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock -EXPORT_SYMBOL vmlinux 0x42ca97dc tcp_sock_set_keepcnt -EXPORT_SYMBOL vmlinux 0x42cbbf70 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x42da1191 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x42dfa7bc register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x42e05ce5 neigh_seq_stop EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer -EXPORT_SYMBOL vmlinux 0x42f3986e mipi_dsi_device_register_full -EXPORT_SYMBOL vmlinux 0x42f773a4 pci_release_regions +EXPORT_SYMBOL vmlinux 0x42fa74ab tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x42fc6844 d_find_alias EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages -EXPORT_SYMBOL vmlinux 0x431d8fd1 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x432eeea0 qdisc_offload_query_caps +EXPORT_SYMBOL vmlinux 0x4322053e d_move +EXPORT_SYMBOL vmlinux 0x4327286e padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x43319c7f dev_mc_init +EXPORT_SYMBOL vmlinux 0x43343478 unregister_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x433b0b34 fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x43426c4e tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x43426d89 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x4345a177 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x4350d1a9 fb_pan_display EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid -EXPORT_SYMBOL vmlinux 0x4353a472 i2c_transfer +EXPORT_SYMBOL vmlinux 0x4354486a pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x4369119b textsearch_register EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x4385ad1e flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x437c1161 xfrm_policy_flush EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security -EXPORT_SYMBOL vmlinux 0x438d3d07 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x4394c83c phy_ethtool_get_sset_count -EXPORT_SYMBOL vmlinux 0x4395106c seg6_hmac_info_lookup -EXPORT_SYMBOL vmlinux 0x43a75ee8 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x43865be3 folio_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x439960e4 pci_request_irq +EXPORT_SYMBOL vmlinux 0x439f6381 key_move +EXPORT_SYMBOL vmlinux 0x43a29719 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x43a7ea54 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x43ab873c genphy_read_status EXPORT_SYMBOL vmlinux 0x43babd19 sg_init_one -EXPORT_SYMBOL vmlinux 0x43bf6256 phy_ethtool_ksettings_set EXPORT_SYMBOL vmlinux 0x43ca69f1 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x43d04b20 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x43ca6ab8 __blk_rq_map_sg EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d28918 mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x43d7f281 kernel_bind +EXPORT_SYMBOL vmlinux 0x43d86b59 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x43db0161 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x43edda6b tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x43f4b25b pci_fixup_device +EXPORT_SYMBOL vmlinux 0x43f89d0e hmm_range_fault EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x43fd5fae sync_dirty_buffer EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control -EXPORT_SYMBOL vmlinux 0x4412eaab skb_dequeue -EXPORT_SYMBOL vmlinux 0x441525d1 udp_ioctl -EXPORT_SYMBOL vmlinux 0x441951cf vlan_vids_add_by_dev -EXPORT_SYMBOL vmlinux 0x4436a6b8 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x44462a06 file_modified +EXPORT_SYMBOL vmlinux 0x441f3725 inet_del_protocol EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table -EXPORT_SYMBOL vmlinux 0x4457a8bd misc_register -EXPORT_SYMBOL vmlinux 0x446149b2 nf_log_unset EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq -EXPORT_SYMBOL vmlinux 0x44640176 deactivate_super -EXPORT_SYMBOL vmlinux 0x4478d17c neigh_connected_output -EXPORT_SYMBOL vmlinux 0x4484263b bio_reset +EXPORT_SYMBOL vmlinux 0x44634bcb tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x44678c45 of_node_put +EXPORT_SYMBOL vmlinux 0x44735197 serio_rescan +EXPORT_SYMBOL vmlinux 0x4482d767 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x4486c5c9 pcie_capability_clear_and_set_dword EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp -EXPORT_SYMBOL vmlinux 0x44a627dc dentry_open -EXPORT_SYMBOL vmlinux 0x44acf861 dm_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x44b9a124 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x449d588c sock_no_accept +EXPORT_SYMBOL vmlinux 0x44bd2496 fman_port_get_device EXPORT_SYMBOL vmlinux 0x44d98015 nla_put_64bit EXPORT_SYMBOL vmlinux 0x44e9a829 match_token -EXPORT_SYMBOL vmlinux 0x44f04c9c mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x44f23434 devm_backlight_device_unregister -EXPORT_SYMBOL vmlinux 0x44fb338b audit_log_start EXPORT_SYMBOL vmlinux 0x45006cee default_red EXPORT_SYMBOL vmlinux 0x450639ab sg_last +EXPORT_SYMBOL vmlinux 0x4506ea56 devm_extcon_unregister_notifier EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id -EXPORT_SYMBOL vmlinux 0x450f97ac xfrm_init_state -EXPORT_SYMBOL vmlinux 0x4517c432 acpi_dev_uid_to_integer EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453bc383 mdio_device_reset EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x453d68aa gro_cells_receive -EXPORT_SYMBOL vmlinux 0x454c80bc generic_write_checks_count -EXPORT_SYMBOL vmlinux 0x454f41e0 nd_region_acquire_lane EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update -EXPORT_SYMBOL vmlinux 0x455fa770 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x456aac44 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x456d9fe9 cont_write_begin -EXPORT_SYMBOL vmlinux 0x4574972b md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x456c7b01 jbd2_journal_inode_ranged_write EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x45821971 mdiobus_unregister_device -EXPORT_SYMBOL vmlinux 0x4590e3b9 netif_inherit_tso_max -EXPORT_SYMBOL vmlinux 0x4596cebb pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x45996e7c rt_dst_clone -EXPORT_SYMBOL vmlinux 0x459fd48c ip6tun_encaps -EXPORT_SYMBOL vmlinux 0x45aff512 twl6040_power -EXPORT_SYMBOL vmlinux 0x45b0c484 dquot_get_next_dqblk -EXPORT_SYMBOL vmlinux 0x45d0b30c sys_imageblit -EXPORT_SYMBOL vmlinux 0x45e04a9f mmc_cqe_post_req -EXPORT_SYMBOL vmlinux 0x460e203f blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x45b657f6 keyring_alloc +EXPORT_SYMBOL vmlinux 0x45c59983 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x45c82111 sock_no_connect +EXPORT_SYMBOL vmlinux 0x45cc7d69 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x45e7c5ef cont_write_begin EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x464310e3 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x461386b8 register_qdisc EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x465f54d2 generic_file_llseek_size EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466cb196 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x466e25f6 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x467807c5 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x467baad2 devfreq_unregister_opp_notifier EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x4680cf4c padata_set_cpumask -EXPORT_SYMBOL vmlinux 0x46955caa security_path_rename EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46b60ca1 __mdiobus_read EXPORT_SYMBOL vmlinux 0x46bd5d6e video_get_options EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance -EXPORT_SYMBOL vmlinux 0x46d97c13 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x46f28621 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x46c60a66 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x46fb9e27 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x46fc5d3e gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x46fce91c xp_dma_map +EXPORT_SYMBOL vmlinux 0x46ff0fb3 mdio_bus_type EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset -EXPORT_SYMBOL vmlinux 0x4706c99f padata_free_shell +EXPORT_SYMBOL vmlinux 0x4709dd09 dquot_commit_info EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table -EXPORT_SYMBOL vmlinux 0x471934d8 ata_std_end_eh -EXPORT_SYMBOL vmlinux 0x471dcdd0 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x471f0325 unregister_nexthop_notifier -EXPORT_SYMBOL vmlinux 0x472a4371 dev_load -EXPORT_SYMBOL vmlinux 0x472b8f9e tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x473b9a5a blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x47576afd inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x475784a9 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x47386f6f udp6_csum_init +EXPORT_SYMBOL vmlinux 0x4741f47c zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x4748e134 mdiobb_write_c22 EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom -EXPORT_SYMBOL vmlinux 0x47604ba1 scsi_scan_host EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x4782f051 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x478a4c36 del_gendisk -EXPORT_SYMBOL vmlinux 0x478c7d6b configfs_undepend_item EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x47a39ee7 max8998_read_reg -EXPORT_SYMBOL vmlinux 0x47a5818b proc_remove -EXPORT_SYMBOL vmlinux 0x47aa3e66 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x47b0941f md_cluster_ops +EXPORT_SYMBOL vmlinux 0x47bbb2a3 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c6da28 blk_queue_max_secure_erase_sectors EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read -EXPORT_SYMBOL vmlinux 0x47ec5101 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x47dee6ee skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x47e4b8c0 dev_open +EXPORT_SYMBOL vmlinux 0x47f5fc82 sock_set_mark +EXPORT_SYMBOL vmlinux 0x48039930 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x4812e098 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x4813a115 xfrm_policy_alloc EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open EXPORT_SYMBOL vmlinux 0x4829a47e memcpy EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x48338b10 seq_release_private EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x483b68f2 mmc_can_discard EXPORT_SYMBOL vmlinux 0x4841bdee strnchr -EXPORT_SYMBOL vmlinux 0x4848bbc4 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x48486336 __netif_napi_del EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 -EXPORT_SYMBOL vmlinux 0x4850f0ad pci_enable_atomic_ops_to_root -EXPORT_SYMBOL vmlinux 0x4856785a mnt_set_expiry EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc -EXPORT_SYMBOL vmlinux 0x4876c830 blk_rq_count_integrity_sg -EXPORT_SYMBOL vmlinux 0x487b4c92 ip_output +EXPORT_SYMBOL vmlinux 0x4862dab1 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x4865f8d4 param_set_hexint +EXPORT_SYMBOL vmlinux 0x487ed216 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x48869c72 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x488ac1f5 kernel_write +EXPORT_SYMBOL vmlinux 0x489cc899 complete_request_key EXPORT_SYMBOL vmlinux 0x489eda10 memset32 EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim -EXPORT_SYMBOL vmlinux 0x48a14bb5 devm_rproc_alloc -EXPORT_SYMBOL vmlinux 0x48a53b47 dns_query -EXPORT_SYMBOL vmlinux 0x48a66a33 hid_bpf_ops +EXPORT_SYMBOL vmlinux 0x48a55a4d dst_destroy EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size -EXPORT_SYMBOL vmlinux 0x48aa92af find_vma -EXPORT_SYMBOL vmlinux 0x48b6d312 fib_notifier_ops_unregister -EXPORT_SYMBOL vmlinux 0x48b7ecda __ip_options_compile +EXPORT_SYMBOL vmlinux 0x48ad568f folio_mapping +EXPORT_SYMBOL vmlinux 0x48b3efad __dev_direct_xmit EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0x48cc0f05 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x48c82fdf vme_bus_type +EXPORT_SYMBOL vmlinux 0x48c8f283 xfrm_state_register_afinfo EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects EXPORT_SYMBOL vmlinux 0x48d3fa27 kmalloc_large_node -EXPORT_SYMBOL vmlinux 0x48dd340b cpumask_any_distribute -EXPORT_SYMBOL vmlinux 0x48ddb32c elevator_alloc -EXPORT_SYMBOL vmlinux 0x48fdf782 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x48e05356 pipe_lock EXPORT_SYMBOL vmlinux 0x48ffbb87 mtree_alloc_range +EXPORT_SYMBOL vmlinux 0x49025a65 fb_find_mode EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert EXPORT_SYMBOL vmlinux 0x4909a790 dma_fence_get_status -EXPORT_SYMBOL vmlinux 0x4927fb84 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x492ca97d of_graph_get_endpoint_by_regs -EXPORT_SYMBOL vmlinux 0x4941986c kernel_accept -EXPORT_SYMBOL vmlinux 0x494b58ed mipi_dsi_dcs_set_display_brightness_large -EXPORT_SYMBOL vmlinux 0x494fe085 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0x49327f96 fb_get_mode +EXPORT_SYMBOL vmlinux 0x49382f51 __page_frag_cache_drain EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 -EXPORT_SYMBOL vmlinux 0x495d2252 thaw_super EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x4972582a iterate_dir EXPORT_SYMBOL vmlinux 0x4977c498 stack_depot_get_extra_bits -EXPORT_SYMBOL vmlinux 0x497e6f40 netdev_adjacent_change_prepare -EXPORT_SYMBOL vmlinux 0x49804aca phy_ethtool_get_stats -EXPORT_SYMBOL vmlinux 0x4980ccff pm860x_set_bits -EXPORT_SYMBOL vmlinux 0x4991a674 rproc_vq_interrupt -EXPORT_SYMBOL vmlinux 0x49924a32 folio_clear_dirty_for_io -EXPORT_SYMBOL vmlinux 0x49935507 input_flush_device -EXPORT_SYMBOL vmlinux 0x499a92a1 fscrypt_setup_filename EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x49e46340 scmd_printk -EXPORT_SYMBOL vmlinux 0x49e7c347 mini_qdisc_pair_swap -EXPORT_SYMBOL vmlinux 0x4a0e4268 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x4a1677d4 __neigh_create -EXPORT_SYMBOL vmlinux 0x4a21a79d register_netdevice_notifier_dev_net -EXPORT_SYMBOL vmlinux 0x4a226fe5 tty_hangup -EXPORT_SYMBOL vmlinux 0x4a32ca53 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x49c76991 sget +EXPORT_SYMBOL vmlinux 0x49ccd2fe _dev_warn +EXPORT_SYMBOL vmlinux 0x49d1bed8 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x49d2d65f rtnl_notify +EXPORT_SYMBOL vmlinux 0x49d884bb phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x49d8ada2 mr_dump +EXPORT_SYMBOL vmlinux 0x49dd9cfc tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x49dd9ef1 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x4a002d3c of_node_get +EXPORT_SYMBOL vmlinux 0x4a12687f jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x4a243ecd tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x4a26e860 free_cgroup_ns EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x4a5453f9 dquot_initialize_needed -EXPORT_SYMBOL vmlinux 0x4a54e06a d_set_d_op -EXPORT_SYMBOL vmlinux 0x4a582a41 vme_dma_list_free -EXPORT_SYMBOL vmlinux 0x4a5c3b37 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x4a7cbdf9 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x4a7d2345 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x4a88144d scm_detach_fds +EXPORT_SYMBOL vmlinux 0x4a681aab vc_cons +EXPORT_SYMBOL vmlinux 0x4a6e1f24 follow_up EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free -EXPORT_SYMBOL vmlinux 0x4a93785b mmc_of_parse EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest -EXPORT_SYMBOL vmlinux 0x4ab777c0 of_graph_get_remote_endpoint -EXPORT_SYMBOL vmlinux 0x4ad05010 of_platform_bus_probe -EXPORT_SYMBOL vmlinux 0x4ad0d8c4 fman_set_port_params -EXPORT_SYMBOL vmlinux 0x4add7921 max8925_reg_read -EXPORT_SYMBOL vmlinux 0x4addf580 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x4ac7d95e generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x4ad3c792 folio_add_lru +EXPORT_SYMBOL vmlinux 0x4ae76973 xp_dma_sync_for_cpu_slow EXPORT_SYMBOL vmlinux 0x4ae90d8e hdmi_avi_infoframe_check EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af48a1f pnp_register_card_driver EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue -EXPORT_SYMBOL vmlinux 0x4b058906 mipi_dsi_dcs_set_tear_scanline -EXPORT_SYMBOL vmlinux 0x4b06d01b devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x4afbdade tty_vhangup +EXPORT_SYMBOL vmlinux 0x4b07a962 mipi_dsi_attach EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities -EXPORT_SYMBOL vmlinux 0x4b25a941 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x4b2a22aa pci_save_state +EXPORT_SYMBOL vmlinux 0x4b0eff66 iov_iter_zero EXPORT_SYMBOL vmlinux 0x4b401817 iwe_stream_add_value -EXPORT_SYMBOL vmlinux 0x4b4ff4fe dquot_commit_info +EXPORT_SYMBOL vmlinux 0x4b510c3e netdev_notice EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg -EXPORT_SYMBOL vmlinux 0x4b84b1f7 devfreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x4b8fbb04 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x4b9d11d8 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x4bb1cca6 devm_of_iomap -EXPORT_SYMBOL vmlinux 0x4bb6b51c flow_rule_match_ports -EXPORT_SYMBOL vmlinux 0x4bb769cc of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x4b79ed4f dev_add_pack +EXPORT_SYMBOL vmlinux 0x4b98838d watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x4b9c9973 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x4bc4d9a6 dquot_quota_sync EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node -EXPORT_SYMBOL vmlinux 0x4bddad34 input_set_poll_interval -EXPORT_SYMBOL vmlinux 0x4bdf3d12 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x4be619bf rc5t583_ext_power_req_config -EXPORT_SYMBOL vmlinux 0x4bed2d4d blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x4beec252 of_device_unregister +EXPORT_SYMBOL vmlinux 0x4bd0bbd5 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x4bd1c395 kernel_connect +EXPORT_SYMBOL vmlinux 0x4bd9c775 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x4beaee99 genphy_read_mmd_unsupported EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid -EXPORT_SYMBOL vmlinux 0x4bfa0aa0 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x4c049192 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x4bf9c7d2 send_sig_info EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance -EXPORT_SYMBOL vmlinux 0x4c104dc8 phy_set_asym_pause -EXPORT_SYMBOL vmlinux 0x4c3b2d5f devm_extcon_unregister_notifier -EXPORT_SYMBOL vmlinux 0x4c3ee957 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x4c113b55 genlmsg_put +EXPORT_SYMBOL vmlinux 0x4c27363c __sk_dst_check +EXPORT_SYMBOL vmlinux 0x4c2e9f08 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x4c31e922 pps_lookup_dev EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast -EXPORT_SYMBOL vmlinux 0x4c528acc skb_pull_data -EXPORT_SYMBOL vmlinux 0x4c731011 km_report -EXPORT_SYMBOL vmlinux 0x4c7c5361 md_done_sync -EXPORT_SYMBOL vmlinux 0x4ccc4797 nf_log_unbind_pf -EXPORT_SYMBOL vmlinux 0x4ccf6680 fb_show_logo -EXPORT_SYMBOL vmlinux 0x4ce55d99 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x4cf05dda uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x4cf1d746 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x4cf4d21d blk_pre_runtime_suspend -EXPORT_SYMBOL vmlinux 0x4d061fde of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x4c41705e iterate_supers_type +EXPORT_SYMBOL vmlinux 0x4c75312d jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x4c7b6cf9 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x4ca7f16e fc_mount +EXPORT_SYMBOL vmlinux 0x4cab0fd9 km_state_expired +EXPORT_SYMBOL vmlinux 0x4cbb75e1 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x4ccdd224 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x4ce1845f devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x4cf2d4ce bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x4cf518d1 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x4d005563 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4d019643 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x4d0699bf setattr_should_drop_suidgid EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d0dc293 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x4d19da3b module_put +EXPORT_SYMBOL vmlinux 0x4d2a69e1 padata_do_parallel EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info -EXPORT_SYMBOL vmlinux 0x4d384331 register_cdrom -EXPORT_SYMBOL vmlinux 0x4d3e6161 iov_iter_gap_alignment -EXPORT_SYMBOL vmlinux 0x4d4410a3 i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0x4d4e460d fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x4d2fb143 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x4d36d34a disk_check_media_change +EXPORT_SYMBOL vmlinux 0x4d37e349 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x4d431637 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x4d587dea devm_alloc_etherdev_mqs EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x4d740cb0 neigh_table_init -EXPORT_SYMBOL vmlinux 0x4d76e4eb blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x4d78cbdf pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x4d7b85a4 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x4d8076e4 splice_direct_to_actor EXPORT_SYMBOL vmlinux 0x4d924f20 memremap -EXPORT_SYMBOL vmlinux 0x4d928c4d devfreq_remove_governor EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase -EXPORT_SYMBOL vmlinux 0x4d9e3408 fsl_ifc_ctrl_dev EXPORT_SYMBOL vmlinux 0x4da278d9 cpu_rmap_put EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq -EXPORT_SYMBOL vmlinux 0x4db3b158 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x4dbacac2 mii_ethtool_sset -EXPORT_SYMBOL vmlinux 0x4dcb80e3 flow_rule_match_enc_keyid -EXPORT_SYMBOL vmlinux 0x4ddd2da6 iw_handler_get_thrspy -EXPORT_SYMBOL vmlinux 0x4de7c4c1 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4db1a752 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4dbade4c input_unregister_device +EXPORT_SYMBOL vmlinux 0x4dccd87f ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x4dd8ea32 dec_zone_page_state EXPORT_SYMBOL vmlinux 0x4de995ec gen_pool_dma_alloc_algo EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read -EXPORT_SYMBOL vmlinux 0x4df3692c devm_ioremap +EXPORT_SYMBOL vmlinux 0x4df6c92a devm_get_clk_from_child EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock -EXPORT_SYMBOL vmlinux 0x4e0a6f60 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x4e1491c0 shmem_aops -EXPORT_SYMBOL vmlinux 0x4e1fa1ab vme_irq_generate +EXPORT_SYMBOL vmlinux 0x4e007274 vfs_readlink EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e21aa0b datagram_poll EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl -EXPORT_SYMBOL vmlinux 0x4e30f117 generic_update_time EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int -EXPORT_SYMBOL vmlinux 0x4e3639db inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x4e36b6e6 rproc_add_carveout EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow -EXPORT_SYMBOL vmlinux 0x4e53407d qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x4e48b913 of_device_unregister +EXPORT_SYMBOL vmlinux 0x4e4db65d tty_register_driver EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller -EXPORT_SYMBOL vmlinux 0x4e5eee49 rproc_add -EXPORT_SYMBOL vmlinux 0x4e6540ab remove_watch_from_object EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console -EXPORT_SYMBOL vmlinux 0x4e7ce39a pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x4e758bdf passthru_features_check +EXPORT_SYMBOL vmlinux 0x4e7d1611 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x4e84c240 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x4e84e3e3 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x4e87cb8e pci_pme_capable +EXPORT_SYMBOL vmlinux 0x4e8d83cb con_copy_unimap EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea53c80 drop_super_exclusive EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx EXPORT_SYMBOL vmlinux 0x4eb2b066 hdmi_avi_infoframe_init -EXPORT_SYMBOL vmlinux 0x4ebe87e8 pci_disable_device EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 -EXPORT_SYMBOL vmlinux 0x4ecc2039 dma_fence_chain_init -EXPORT_SYMBOL vmlinux 0x4edf3f7e eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x4ef07300 nd_device_register -EXPORT_SYMBOL vmlinux 0x4f1ac387 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x4ecec55c submit_bio_wait +EXPORT_SYMBOL vmlinux 0x4ed49364 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x4ee60aef blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x4f0e50e7 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x4f146314 netdev_state_change EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1f2ab4 serial8250_do_set_termios EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x4f2b1ead mipi_dsi_compression_mode -EXPORT_SYMBOL vmlinux 0x4f314e3f posix_lock_file +EXPORT_SYMBOL vmlinux 0x4f28b34d module_layout +EXPORT_SYMBOL vmlinux 0x4f4ad77c __inet_stream_connect EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x4f65dcf8 md_cluster_ops -EXPORT_SYMBOL vmlinux 0x4faaa813 udp_poll -EXPORT_SYMBOL vmlinux 0x4fb1c339 mpage_readahead -EXPORT_SYMBOL vmlinux 0x4fb7c698 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x4fcbb491 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x4fd1f74e simple_open +EXPORT_SYMBOL vmlinux 0x4f6a60a7 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x4fa23b58 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x4fad656b tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x4fbb9416 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x4fc1f65b udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x4fca7f6d of_match_device +EXPORT_SYMBOL vmlinux 0x4fced405 drop_nlink +EXPORT_SYMBOL vmlinux 0x4fe3c5d0 xp_raw_get_data EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x50090b77 inet_bind EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security EXPORT_SYMBOL vmlinux 0x5009c71d glob_match -EXPORT_SYMBOL vmlinux 0x5014e071 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x500a1b7e sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x501eb0cc dm_table_event +EXPORT_SYMBOL vmlinux 0x502184b8 sk_stop_timer EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex -EXPORT_SYMBOL vmlinux 0x5039615b request_firmware_into_buf -EXPORT_SYMBOL vmlinux 0x503af06c set_cached_acl -EXPORT_SYMBOL vmlinux 0x5043bb84 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x5028469a sock_alloc +EXPORT_SYMBOL vmlinux 0x503b08de napi_get_frags +EXPORT_SYMBOL vmlinux 0x5043ae36 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x505737d2 open_exec EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x5063e4d6 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x506a5f4d pci_bus_read_config_dword EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5079f18b dev_addr_del +EXPORT_SYMBOL vmlinux 0x5084f30b __lock_sock_fast EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check -EXPORT_SYMBOL vmlinux 0x508f86d8 dev_change_flags -EXPORT_SYMBOL vmlinux 0x5092d483 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu -EXPORT_SYMBOL vmlinux 0x5096063d i2c_put_adapter EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a81aa6 skb_checksum_help EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x50bb9533 inet_csk_clear_xmit_timers EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c2266a md_check_no_bitmap EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf -EXPORT_SYMBOL vmlinux 0x50efadb6 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x50d6d647 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x50e56b4f security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x50f7084b scsi_rescan_device EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq -EXPORT_SYMBOL vmlinux 0x5111848e dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x51145612 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x5124eb2a unlock_buffer -EXPORT_SYMBOL vmlinux 0x512b8365 fs_param_is_fd -EXPORT_SYMBOL vmlinux 0x51326c6a buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0x5110f60a cdev_init +EXPORT_SYMBOL vmlinux 0x5120e830 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x5123e175 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x5136b8af pci_free_host_bridge EXPORT_SYMBOL vmlinux 0x513b28f4 first_ec -EXPORT_SYMBOL vmlinux 0x513e447c pnp_is_active +EXPORT_SYMBOL vmlinux 0x513bdee4 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex -EXPORT_SYMBOL vmlinux 0x51583fed pcibus_to_node EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod -EXPORT_SYMBOL vmlinux 0x51602a6e netdev_has_upper_dev_all_rcu -EXPORT_SYMBOL vmlinux 0x5163d9e7 of_get_property +EXPORT_SYMBOL vmlinux 0x5163c432 dst_release EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend -EXPORT_SYMBOL vmlinux 0x516b8bef truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x516c0f56 generic_remap_file_range_prep -EXPORT_SYMBOL vmlinux 0x518464f3 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x518b089f tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x51adb0c9 fwnode_iomap -EXPORT_SYMBOL vmlinux 0x51b97979 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x51c7605f xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x517c9269 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x51862096 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x51b3790b bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x51b9b430 kobject_del EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x51d45917 ppp_input -EXPORT_SYMBOL vmlinux 0x51d4cb10 qdisc_hash_del -EXPORT_SYMBOL vmlinux 0x51ed40ec eth_mac_addr -EXPORT_SYMBOL vmlinux 0x51f309f2 i2c_smbus_write_block_data -EXPORT_SYMBOL vmlinux 0x5200eda1 udpv6_sendmsg +EXPORT_SYMBOL vmlinux 0x51d70ee9 config_item_get EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready -EXPORT_SYMBOL vmlinux 0x5207f089 dm_io -EXPORT_SYMBOL vmlinux 0x520abbf2 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x520b1b74 backlight_device_set_brightness EXPORT_SYMBOL vmlinux 0x520e97c4 proc_dostring -EXPORT_SYMBOL vmlinux 0x520f7aaa d_path -EXPORT_SYMBOL vmlinux 0x522e1453 _copy_to_iter -EXPORT_SYMBOL vmlinux 0x522e87cd vfs_ioctl -EXPORT_SYMBOL vmlinux 0x525186dd sock_rfree -EXPORT_SYMBOL vmlinux 0x525aff6a tcp_stream_memory_free -EXPORT_SYMBOL vmlinux 0x526e84aa scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x5231d6ea skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x5257ec3a jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x5258f645 request_key_tag EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack -EXPORT_SYMBOL vmlinux 0x526f91b2 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x52944d8e xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x5275ea1a skb_copy_bits EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write -EXPORT_SYMBOL vmlinux 0x529c0205 vfs_rename -EXPORT_SYMBOL vmlinux 0x52a2978e __sock_create -EXPORT_SYMBOL vmlinux 0x52a62742 unregister_framebuffer -EXPORT_SYMBOL vmlinux 0x52ac3fe4 input_get_poll_interval -EXPORT_SYMBOL vmlinux 0x52af1cac crypto_sha3_init -EXPORT_SYMBOL vmlinux 0x52c72466 param_ops_byte +EXPORT_SYMBOL vmlinux 0x52bac751 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x52c7e6a3 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x52c84598 security_unix_stream_connect EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend -EXPORT_SYMBOL vmlinux 0x530dc522 inet_proto_csum_replace16 EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum EXPORT_SYMBOL vmlinux 0x5322663e acpi_get_handle -EXPORT_SYMBOL vmlinux 0x532af8e6 datagram_poll -EXPORT_SYMBOL vmlinux 0x532f0389 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x5328cbf8 blk_pre_runtime_suspend EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf -EXPORT_SYMBOL vmlinux 0x534dcd7e blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x5340b824 blk_queue_update_dma_alignment EXPORT_SYMBOL vmlinux 0x534f2aa4 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x53556817 start_tty -EXPORT_SYMBOL vmlinux 0x5389df64 tcp_read_done -EXPORT_SYMBOL vmlinux 0x538df9d0 vme_master_request +EXPORT_SYMBOL vmlinux 0x5355ada3 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x535bef21 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x536c8c63 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x5377e7ce __of_parse_phandle_with_args EXPORT_SYMBOL vmlinux 0x53a1e8d9 _find_next_bit -EXPORT_SYMBOL vmlinux 0x53a2d0bf netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x53b954a2 up_read -EXPORT_SYMBOL vmlinux 0x53ca2fc4 vme_register_bridge -EXPORT_SYMBOL vmlinux 0x53d2e50c zpool_unregister_driver -EXPORT_SYMBOL vmlinux 0x53d30559 key_alloc -EXPORT_SYMBOL vmlinux 0x53d710b7 jbd2_wait_inode_data -EXPORT_SYMBOL vmlinux 0x53da3393 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x53e22c1c dcache_dir_open -EXPORT_SYMBOL vmlinux 0x53ef4670 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x53ce2753 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x53dadaa2 blk_queue_virt_boundary EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x53f97d49 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x53fa9bc7 mpage_read_folio EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair -EXPORT_SYMBOL vmlinux 0x5421aa46 sync_filesystem -EXPORT_SYMBOL vmlinux 0x543a039e security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x541eb6d0 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x542cb0b3 dec_node_page_state EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x5456a748 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x545990cf twl6040_clear_bits -EXPORT_SYMBOL vmlinux 0x54666c90 rproc_report_crash -EXPORT_SYMBOL vmlinux 0x54670639 phy_register_fixup_for_id -EXPORT_SYMBOL vmlinux 0x546dbb9e netpoll_print_options -EXPORT_SYMBOL vmlinux 0x5478e2eb close_fd_get_file -EXPORT_SYMBOL vmlinux 0x548326d5 rproc_get_by_child -EXPORT_SYMBOL vmlinux 0x5484f36c neigh_destroy -EXPORT_SYMBOL vmlinux 0x5496187b cdev_alloc -EXPORT_SYMBOL vmlinux 0x549e4d36 dev_set_threaded -EXPORT_SYMBOL vmlinux 0x54af4aea qdisc_put -EXPORT_SYMBOL vmlinux 0x54b03088 sync_blockdev +EXPORT_SYMBOL vmlinux 0x546cacf4 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x547ca135 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x548b1d75 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x54a363ed __put_user_ns +EXPORT_SYMBOL vmlinux 0x54a82594 of_get_cpu_node EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value EXPORT_SYMBOL vmlinux 0x54b23e67 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x54c45b97 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x54cb473b keyring_clear EXPORT_SYMBOL vmlinux 0x54cfacd5 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x54df5af7 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x54de61be jbd2_journal_finish_inode_data_buffers EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags -EXPORT_SYMBOL vmlinux 0x55036ae7 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x54eb6b63 dquot_commit EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire -EXPORT_SYMBOL vmlinux 0x550ebfe2 netpoll_send_skb EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x551cb92d block_truncate_page -EXPORT_SYMBOL vmlinux 0x551f7d54 input_copy_abs -EXPORT_SYMBOL vmlinux 0x5526deca phy_mii_ioctl EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested -EXPORT_SYMBOL vmlinux 0x5530b4ee of_find_backlight_by_node -EXPORT_SYMBOL vmlinux 0x55396ece neigh_direct_output -EXPORT_SYMBOL vmlinux 0x553c128b blackhole_netdev -EXPORT_SYMBOL vmlinux 0x553fc4e3 tcp_v4_do_rcv EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched -EXPORT_SYMBOL vmlinux 0x554b9716 of_translate_address -EXPORT_SYMBOL vmlinux 0x55513805 mipi_dsi_dcs_write -EXPORT_SYMBOL vmlinux 0x556dfadf bdev_end_io_acct -EXPORT_SYMBOL vmlinux 0x55864034 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x554f4a1e mdiobb_read_c22 +EXPORT_SYMBOL vmlinux 0x5553d7ae napi_build_skb +EXPORT_SYMBOL vmlinux 0x555af1b9 d_instantiate +EXPORT_SYMBOL vmlinux 0x555f0b5c xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x5575c96c msi_desc_to_pci_dev EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey -EXPORT_SYMBOL vmlinux 0x5590d43d mmc_release_host -EXPORT_SYMBOL vmlinux 0x5593d4bf blk_set_queue_depth -EXPORT_SYMBOL vmlinux 0x559a5abe xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x55a74c93 inet_frag_queue_insert -EXPORT_SYMBOL vmlinux 0x55a94dea of_find_net_device_by_node -EXPORT_SYMBOL vmlinux 0x55c42d6d xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x55cf5f49 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x55c5ef81 md_set_array_sectors EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 -EXPORT_SYMBOL vmlinux 0x5607db37 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x55e793ed crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x5606b5ad __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5614eae9 kill_anon_super EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh -EXPORT_SYMBOL vmlinux 0x5620f2da sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x5615ca6c inet_frags_fini EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563601e5 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x563afb18 inet6_bind +EXPORT_SYMBOL vmlinux 0x5640f8ba dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk -EXPORT_SYMBOL vmlinux 0x5649a415 textsearch_register EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register EXPORT_SYMBOL vmlinux 0x565caca8 abort_creds -EXPORT_SYMBOL vmlinux 0x566d4299 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x566d93d7 __module_get -EXPORT_SYMBOL vmlinux 0x566f42ab param_get_string -EXPORT_SYMBOL vmlinux 0x5677cc01 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x565d0ecc phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x565d99c8 locks_free_lock +EXPORT_SYMBOL vmlinux 0x566a7a0c dqget EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x568329c7 fget_raw -EXPORT_SYMBOL vmlinux 0x568fecf1 input_unregister_device -EXPORT_SYMBOL vmlinux 0x5690d5e7 netif_receive_skb_core -EXPORT_SYMBOL vmlinux 0x56a5b81d dev_kfree_skb_irq_reason -EXPORT_SYMBOL vmlinux 0x56b1d93c iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x56b68d9e xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x568c6761 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x56986398 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x56bf82cc ipv6_dev_mc_dec EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x5700f819 crypto_sha256_finup -EXPORT_SYMBOL vmlinux 0x571cfcb8 mii_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x571f32d8 fqdir_exit -EXPORT_SYMBOL vmlinux 0x572078ee sys_copyarea -EXPORT_SYMBOL vmlinux 0x57211002 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x572d2008 qdisc_hash_add -EXPORT_SYMBOL vmlinux 0x573645f7 drop_super +EXPORT_SYMBOL vmlinux 0x56e436ed qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x56ee0fb0 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x5703e40a proc_symlink +EXPORT_SYMBOL vmlinux 0x57070628 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x57094022 km_new_mapping +EXPORT_SYMBOL vmlinux 0x57153f58 clear_inode +EXPORT_SYMBOL vmlinux 0x571aaf88 file_path +EXPORT_SYMBOL vmlinux 0x571bb89a try_module_get +EXPORT_SYMBOL vmlinux 0x574a0e66 genphy_suspend EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575b9ff5 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x575e7207 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x5764a379 skb_clone_sk EXPORT_SYMBOL vmlinux 0x576567f8 putname EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x5775b32a devfreq_get_freq_range -EXPORT_SYMBOL vmlinux 0x5782110f simple_transaction_release EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy -EXPORT_SYMBOL vmlinux 0x57a48376 dcb_setapp -EXPORT_SYMBOL vmlinux 0x57b4fe4e phy_driver_register EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write -EXPORT_SYMBOL vmlinux 0x57da5bbe unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x57c03132 tty_check_change +EXPORT_SYMBOL vmlinux 0x57d34ddc devm_clk_put EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize -EXPORT_SYMBOL vmlinux 0x57e8db61 tcf_block_get_ext -EXPORT_SYMBOL vmlinux 0x57ea009f blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x57ea79fc phy_get_pause -EXPORT_SYMBOL vmlinux 0x57eacfe0 kill_fasync -EXPORT_SYMBOL vmlinux 0x57ebd509 nf_getsockopt EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info -EXPORT_SYMBOL vmlinux 0x57f6da8b kobject_del -EXPORT_SYMBOL vmlinux 0x5800348c load_nls_default -EXPORT_SYMBOL vmlinux 0x580cf79d genlmsg_put -EXPORT_SYMBOL vmlinux 0x580d268e scsi_partsize +EXPORT_SYMBOL vmlinux 0x57f4ea91 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x57fa5ad9 __skb_recv_datagram EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x581d9e07 peernet2id EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x5828a3e5 ipv6_chk_addr EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x584d52bc md_bitmap_start_sync EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic -EXPORT_SYMBOL vmlinux 0x58607369 phy_ethtool_set_eee -EXPORT_SYMBOL vmlinux 0x5865d48d fman_register_intr -EXPORT_SYMBOL vmlinux 0x5869bee9 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x587a0b33 simple_get_link EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key -EXPORT_SYMBOL vmlinux 0x588335a4 genphy_write_mmd_unsupported -EXPORT_SYMBOL vmlinux 0x588598ff pci_clear_master -EXPORT_SYMBOL vmlinux 0x588e57d5 phy_trigger_machine -EXPORT_SYMBOL vmlinux 0x589709a9 filemap_get_folios_tag +EXPORT_SYMBOL vmlinux 0x587fbb2d pci_match_id +EXPORT_SYMBOL vmlinux 0x588cd2b2 vme_lm_request EXPORT_SYMBOL vmlinux 0x5897a680 __find_nth_and_andnot_bit -EXPORT_SYMBOL vmlinux 0x58a496b9 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x58a71272 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x589fd943 kmem_cache_free_bulk EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard -EXPORT_SYMBOL vmlinux 0x58d14f8f blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x58db9b4a set_nlink -EXPORT_SYMBOL vmlinux 0x58e10b17 netdev_bind_sb_channel_queue -EXPORT_SYMBOL vmlinux 0x58e1470e flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x58b7b08e inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x58ced252 sock_no_linger +EXPORT_SYMBOL vmlinux 0x58cf7f88 ww_mutex_trylock EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io -EXPORT_SYMBOL vmlinux 0x58e729fd blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x58eaa553 wireless_send_event -EXPORT_SYMBOL vmlinux 0x58f65b05 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x58f723ad vfs_mknod -EXPORT_SYMBOL vmlinux 0x58f7b12e capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x5914cfb2 dst_discard_out +EXPORT_SYMBOL vmlinux 0x58f9c49a xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x5912d3f1 dev_get_stats +EXPORT_SYMBOL vmlinux 0x591c8557 kern_path +EXPORT_SYMBOL vmlinux 0x59261387 udp_ioctl EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq -EXPORT_SYMBOL vmlinux 0x59434826 devfreq_update_status -EXPORT_SYMBOL vmlinux 0x5945523f xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x595b92d9 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x59361ba0 inet6_protos +EXPORT_SYMBOL vmlinux 0x59560157 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x595647f7 reuseport_stop_listen_sock EXPORT_SYMBOL vmlinux 0x5968dc6d proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x5973b9e3 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x598e347d generic_fillattr +EXPORT_SYMBOL vmlinux 0x597a4196 has_capability +EXPORT_SYMBOL vmlinux 0x597d0452 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x59847c65 dma_async_tx_descriptor_init EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node EXPORT_SYMBOL vmlinux 0x59a2f0ee packing -EXPORT_SYMBOL vmlinux 0x59a82b35 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x59b0f20e pci_pme_active EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x59ba5f28 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x59bc2a31 bio_init -EXPORT_SYMBOL vmlinux 0x59c5899c __blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x59dbbc32 __f_setown -EXPORT_SYMBOL vmlinux 0x59f73c75 skb_find_text -EXPORT_SYMBOL vmlinux 0x5a0aa9e5 sock_no_connect +EXPORT_SYMBOL vmlinux 0x59c11d7d md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x59c5dfa8 phy_find_first +EXPORT_SYMBOL vmlinux 0x59cc5c0c vc_resize +EXPORT_SYMBOL vmlinux 0x59dafb11 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x59e34237 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x59e66fa1 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x59eb4825 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x59f21194 dcb_setrewr +EXPORT_SYMBOL vmlinux 0x5a02a2df add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x5a07769b nf_reinject EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1e9358 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x5a25b6c7 skb_abort_seq_read EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0x5a3bdebd tcp_mss_to_mtu -EXPORT_SYMBOL vmlinux 0x5a426728 edac_mc_find +EXPORT_SYMBOL vmlinux 0x5a2b0103 sk_stream_wait_connect EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq -EXPORT_SYMBOL vmlinux 0x5a4c7057 dcb_getapp EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle -EXPORT_SYMBOL vmlinux 0x5a58a839 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 -EXPORT_SYMBOL vmlinux 0x5a610f07 udp_seq_next +EXPORT_SYMBOL vmlinux 0x5a6805ef locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x5a8ad041 pci_read_config_byte EXPORT_SYMBOL vmlinux 0x5a921311 strncmp -EXPORT_SYMBOL vmlinux 0x5a93f2bb mr_rtm_dumproute EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove -EXPORT_SYMBOL vmlinux 0x5aa307f8 pci_enable_msi -EXPORT_SYMBOL vmlinux 0x5aa71769 tcf_action_update_hw_stats -EXPORT_SYMBOL vmlinux 0x5ab013ab nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x5aa82698 arp_xmit +EXPORT_SYMBOL vmlinux 0x5aab31b7 of_mdiobus_phy_device_register EXPORT_SYMBOL vmlinux 0x5ac01b95 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x5ac310ac rio_query_mport -EXPORT_SYMBOL vmlinux 0x5ad729b4 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x5ac156b7 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x5ac38b03 generic_perform_write +EXPORT_SYMBOL vmlinux 0x5ad4858b kill_fasync +EXPORT_SYMBOL vmlinux 0x5ad5d0bb md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x5adff89c param_set_bint EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree -EXPORT_SYMBOL vmlinux 0x5af584a0 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x5b150c2b alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x5aedc9f2 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x5af5cb54 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x5b055411 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x5b11a803 register_quota_format +EXPORT_SYMBOL vmlinux 0x5b181195 tcf_action_update_hw_stats EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr -EXPORT_SYMBOL vmlinux 0x5b339c48 sock_register +EXPORT_SYMBOL vmlinux 0x5b3abd7a tcf_exts_change EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b54c14f pci_free_irq EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap -EXPORT_SYMBOL vmlinux 0x5b5d245c input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x5bb036fe ip6_route_me_harder -EXPORT_SYMBOL vmlinux 0x5bc4d50d touch_atime +EXPORT_SYMBOL vmlinux 0x5b6050cf mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x5b691a84 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x5b7d7c97 km_state_notify +EXPORT_SYMBOL vmlinux 0x5b8c22c6 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x5b9c1931 folio_set_bh +EXPORT_SYMBOL vmlinux 0x5bae29a2 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x5bb57ccc blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x5bbdc932 nf_log_trace EXPORT_SYMBOL vmlinux 0x5bcea5f1 sgl_free_n_order EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd81ebf security_path_mknod EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub -EXPORT_SYMBOL vmlinux 0x5c1848db dev_uc_add +EXPORT_SYMBOL vmlinux 0x5beb8fc1 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x5bf07d39 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x5c14063c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x5c211215 inet_accept EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x5c2b5e75 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x5c349f24 phy_do_ioctl_running -EXPORT_SYMBOL vmlinux 0x5c3c4e54 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x5c37cb11 of_find_backlight_by_node EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull -EXPORT_SYMBOL vmlinux 0x5c55a50f __break_lease -EXPORT_SYMBOL vmlinux 0x5c6319c0 nd_integrity_init -EXPORT_SYMBOL vmlinux 0x5c81a992 of_device_get_match_data -EXPORT_SYMBOL vmlinux 0x5c96c25f sock_no_accept -EXPORT_SYMBOL vmlinux 0x5ca9b302 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x5cbc0701 phy_config_aneg -EXPORT_SYMBOL vmlinux 0x5cce1760 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x5c439b52 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x5c726b13 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x5c82f374 fman_get_revision +EXPORT_SYMBOL vmlinux 0x5c8e670d locks_init_lock +EXPORT_SYMBOL vmlinux 0x5c942058 mount_nodev +EXPORT_SYMBOL vmlinux 0x5c9ccb0a __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x5cb84ab3 handshake_req_alloc +EXPORT_SYMBOL vmlinux 0x5ccdc6b8 seq_write +EXPORT_SYMBOL vmlinux 0x5cce4433 dev_close EXPORT_SYMBOL vmlinux 0x5cd2ddf3 ethtool_intersect_link_masks EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor -EXPORT_SYMBOL vmlinux 0x5cf94f25 bio_add_pc_page EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d0073cc netlink_ack +EXPORT_SYMBOL vmlinux 0x5d01276e mmc_retune_release +EXPORT_SYMBOL vmlinux 0x5d0603f2 ip_defrag EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio -EXPORT_SYMBOL vmlinux 0x5d1eadcc ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x5d336eff rt6_lookup +EXPORT_SYMBOL vmlinux 0x5d1434ab ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x5d1e5d60 d_splice_alias +EXPORT_SYMBOL vmlinux 0x5d3c95fa jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x5d43f5ad scsicam_bios_param EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry -EXPORT_SYMBOL vmlinux 0x5d8a8519 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x5d938966 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x5d9a0a69 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x5d49d80e genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x5d51ff20 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x5d80c953 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x5d8f5faa serio_unregister_port +EXPORT_SYMBOL vmlinux 0x5da08a9f netdev_master_upper_dev_get_rcu EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh -EXPORT_SYMBOL vmlinux 0x5dc75cc2 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x5dc88a3e md_wakeup_thread -EXPORT_SYMBOL vmlinux 0x5dd0ce31 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x5deb3678 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x5e039a30 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x5dce731e validate_slab_cache EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform -EXPORT_SYMBOL vmlinux 0x5e118249 skb_append -EXPORT_SYMBOL vmlinux 0x5e2849e0 of_graph_is_present -EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e0ea62f security_sctp_assoc_request EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe -EXPORT_SYMBOL vmlinux 0x5e55b613 io_uring_get_socket -EXPORT_SYMBOL vmlinux 0x5e5f7947 __mdiobus_register -EXPORT_SYMBOL vmlinux 0x5e619100 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x5e66247b forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x5e3fae9c sg_miter_stop +EXPORT_SYMBOL vmlinux 0x5e50bfc4 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x5e54dba8 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x5e61e847 netdev_printk EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e83b46d sync_mapping_buffers EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align -EXPORT_SYMBOL vmlinux 0x5e8bfffd thread_group_exited EXPORT_SYMBOL vmlinux 0x5e934fc7 sgl_alloc EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator -EXPORT_SYMBOL vmlinux 0x5e9e1273 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x5ead0459 input_release_device +EXPORT_SYMBOL vmlinux 0x5ea00c85 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x5ebeef74 blk_get_queue EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecbbd75 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch -EXPORT_SYMBOL vmlinux 0x5ed2fb02 mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun -EXPORT_SYMBOL vmlinux 0x5edd82cd reuseport_stop_listen_sock -EXPORT_SYMBOL vmlinux 0x5edf53cd tcp_child_process -EXPORT_SYMBOL vmlinux 0x5ee651a2 cros_ec_get_next_event -EXPORT_SYMBOL vmlinux 0x5ee8c81b skb_eth_pop +EXPORT_SYMBOL vmlinux 0x5ee042e4 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x5ee4da31 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x5ee9fd99 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5ef3ac37 devm_request_threaded_irq EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk -EXPORT_SYMBOL vmlinux 0x5ef76c2f __of_mdiobus_register -EXPORT_SYMBOL vmlinux 0x5efcc878 bprm_change_interp EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f1e798d backlight_device_register EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow -EXPORT_SYMBOL vmlinux 0x5f2c6ecc copy_page_to_iter EXPORT_SYMBOL vmlinux 0x5f30e7a7 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x5f4986c1 arp_tbl +EXPORT_SYMBOL vmlinux 0x5f4d6580 flow_rule_match_pppoe EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption -EXPORT_SYMBOL vmlinux 0x5f6a618e pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x5f5f9dd4 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x5f6a2038 get_cached_acl EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa -EXPORT_SYMBOL vmlinux 0x5f70055c __ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x5f7092a4 xp_alloc -EXPORT_SYMBOL vmlinux 0x5f8e9b6a blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x5f8f3033 is_subdir +EXPORT_SYMBOL vmlinux 0x5f708d99 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x5f924db9 single_release EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package -EXPORT_SYMBOL vmlinux 0x5f9c0832 phy_stop -EXPORT_SYMBOL vmlinux 0x5fa59ea2 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x5fae5ea2 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x5fa0bba8 kobject_set_name +EXPORT_SYMBOL vmlinux 0x5fad3e18 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x5fbeb242 __scsi_device_lookup_by_target EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x5fdb2c79 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x5fe504e8 mmc_put_card -EXPORT_SYMBOL vmlinux 0x5ff97665 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x5fce4faf tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x5fd121a4 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x5fd1963e __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x5fd28653 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x5fdbaaba device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x5fe5d6fd seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x5fee4998 inc_zone_page_state EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x601a0e23 md_reap_sync_thread EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6026f0c7 new_inode +EXPORT_SYMBOL vmlinux 0x60276c8c pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x60285c06 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x604fc055 devfreq_remove_device EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x607c6f71 sk_common_release +EXPORT_SYMBOL vmlinux 0x6082d144 __skb_gro_checksum_complete EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6090c2bb fsync_bdev EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add -EXPORT_SYMBOL vmlinux 0x60b6324e phy_resume -EXPORT_SYMBOL vmlinux 0x60bac009 unmap_mapping_range EXPORT_SYMBOL vmlinux 0x60bbb124 dma_fence_signal_locked -EXPORT_SYMBOL vmlinux 0x60d4ff35 framebuffer_release +EXPORT_SYMBOL vmlinux 0x60d630fc task_work_add EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get -EXPORT_SYMBOL vmlinux 0x60d9ea41 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x60e9fca4 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x61058cab md_bitmap_cond_end_sync EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x61102865 pci_dev_put +EXPORT_SYMBOL vmlinux 0x610c10e2 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x61232d85 scsi_vpd_tpg_id EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6131d823 devm_devfreq_unregister_notifier EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get -EXPORT_SYMBOL vmlinux 0x614830f9 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x614bb64e unlock_page -EXPORT_SYMBOL vmlinux 0x615458a6 md_bitmap_endwrite -EXPORT_SYMBOL vmlinux 0x61563f16 filemap_map_pages EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set EXPORT_SYMBOL vmlinux 0x615977f5 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x616ba1da __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x616cf4f5 xfrm_policy_walk EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag EXPORT_SYMBOL vmlinux 0x618911fc numa_node -EXPORT_SYMBOL vmlinux 0x618dd1f2 md_check_recovery EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x61a2c63b __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x61a689b7 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x61ac67ee genphy_soft_reset EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull -EXPORT_SYMBOL vmlinux 0x61cece70 clear_nlink -EXPORT_SYMBOL vmlinux 0x61e1c65c fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x61c347b1 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x61dc8f65 mark_buffer_async_write EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e33bc3 vme_bus_num EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer -EXPORT_SYMBOL vmlinux 0x62132dda clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x61f8c6c3 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x61f8edc7 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x6206ffb8 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x620dbd34 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x62120631 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x6212c01e security_dentry_init_security EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier -EXPORT_SYMBOL vmlinux 0x621568c7 skb_dump -EXPORT_SYMBOL vmlinux 0x62252588 udp6_set_csum EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single -EXPORT_SYMBOL vmlinux 0x6229f2cc nf_log_register -EXPORT_SYMBOL vmlinux 0x622bac0c dquot_release -EXPORT_SYMBOL vmlinux 0x6230e6db jbd2_journal_put_journal_head -EXPORT_SYMBOL vmlinux 0x623a1fe4 __traceiter_spi_transfer_start -EXPORT_SYMBOL vmlinux 0x6263beb7 flow_block_cb_priv -EXPORT_SYMBOL vmlinux 0x6269d32d sync_file_create +EXPORT_SYMBOL vmlinux 0x625614b7 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x625c5686 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x625f7467 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x626c7253 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x6273079b __kfree_skb EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627590c7 sched_autogroup_detach EXPORT_SYMBOL vmlinux 0x6276af56 migrate_device_range +EXPORT_SYMBOL vmlinux 0x62787efe can_nice +EXPORT_SYMBOL vmlinux 0x62795e40 mipi_dsi_host_register EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name -EXPORT_SYMBOL vmlinux 0x62894400 pci_bus_write_config_byte EXPORT_SYMBOL vmlinux 0x628c0f8f dma_fence_add_callback -EXPORT_SYMBOL vmlinux 0x62a9aa7d mmc_of_parse_clk_phase -EXPORT_SYMBOL vmlinux 0x62ac6577 backlight_force_update -EXPORT_SYMBOL vmlinux 0x62af24f6 dev_close -EXPORT_SYMBOL vmlinux 0x62b199aa nf_unregister_net_hook -EXPORT_SYMBOL vmlinux 0x62cac120 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x62cb7900 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x62d33925 config_item_set_name -EXPORT_SYMBOL vmlinux 0x62d59dc6 param_array_ops +EXPORT_SYMBOL vmlinux 0x62912301 i2c_get_match_data +EXPORT_SYMBOL vmlinux 0x62935584 __mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0x62a012ff udp_seq_ops +EXPORT_SYMBOL vmlinux 0x62b14976 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x62b79ca2 tty_register_device +EXPORT_SYMBOL vmlinux 0x62d147ff pskb_extract EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal -EXPORT_SYMBOL vmlinux 0x62deb4c5 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x62f17280 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x62e1a92c pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x62e1f069 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x62e9600d vm_insert_pages +EXPORT_SYMBOL vmlinux 0x62f70711 bpf_prog_get_type_path EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable -EXPORT_SYMBOL vmlinux 0x6312584f udp6_csum_init +EXPORT_SYMBOL vmlinux 0x62fabe51 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x630806c6 devfreq_remove_device EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params -EXPORT_SYMBOL vmlinux 0x6316529e param_get_bool -EXPORT_SYMBOL vmlinux 0x63186223 __devm_request_region -EXPORT_SYMBOL vmlinux 0x63271a49 unregister_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x6332e7d6 xfrm_replay_seqhi -EXPORT_SYMBOL vmlinux 0x63543040 simple_empty -EXPORT_SYMBOL vmlinux 0x63548e0b balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x6367b1f9 qdisc_watchdog_schedule_range_ns -EXPORT_SYMBOL vmlinux 0x63913c29 eth_header_cache -EXPORT_SYMBOL vmlinux 0x6392e322 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x63a15a01 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x633d009b __block_write_full_folio +EXPORT_SYMBOL vmlinux 0x6347a4bb may_umount_tree +EXPORT_SYMBOL vmlinux 0x63505434 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x635831fb __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x635889a6 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x6374b137 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x63a56c13 xsk_tx_release EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x63aafbe6 request_key_rcu -EXPORT_SYMBOL vmlinux 0x63aec1ed __sock_i_ino -EXPORT_SYMBOL vmlinux 0x63bd71cb kmalloc_node_trace -EXPORT_SYMBOL vmlinux 0x63cad836 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x63b6352b vfs_mkobj +EXPORT_SYMBOL vmlinux 0x63ca22b2 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x63d5d9e8 folio_unlock EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink -EXPORT_SYMBOL vmlinux 0x63ecb2d7 page_symlink -EXPORT_SYMBOL vmlinux 0x63f6356f of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x63eda154 pci_iounmap EXPORT_SYMBOL vmlinux 0x6402c8df sha512_block_data_order +EXPORT_SYMBOL vmlinux 0x640a23da ethtool_op_get_link EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x641cd95e genphy_update_link +EXPORT_SYMBOL vmlinux 0x641b0f4c page_pool_destroy +EXPORT_SYMBOL vmlinux 0x641d475a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x642c6679 iommu_dma_get_resv_regions EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout -EXPORT_SYMBOL vmlinux 0x64365487 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus -EXPORT_SYMBOL vmlinux 0x64544a2e simple_dentry_operations EXPORT_SYMBOL vmlinux 0x6455298a security_xfrm_policy_free -EXPORT_SYMBOL vmlinux 0x645ce7b9 simple_write_begin -EXPORT_SYMBOL vmlinux 0x646292bb dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x6458ace3 copy_highpage +EXPORT_SYMBOL vmlinux 0x645e0f14 input_free_device +EXPORT_SYMBOL vmlinux 0x64650fa3 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x6466511e pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x646b7680 thaw_bdev +EXPORT_SYMBOL vmlinux 0x6475659c sk_mc_loop EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list -EXPORT_SYMBOL vmlinux 0x64a711ee pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x64a8865e kobject_get_unless_zero EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ab3840 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x64b7a529 scsi_is_sdev_device EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape -EXPORT_SYMBOL vmlinux 0x64c11477 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x64c08cf0 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x64cc7d73 blk_start_plug EXPORT_SYMBOL vmlinux 0x64d11af1 dma_fence_wait_timeout -EXPORT_SYMBOL vmlinux 0x64d12f67 __scm_destroy -EXPORT_SYMBOL vmlinux 0x64eda974 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x650e2f6b skb_pull EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651c0bda sg_miter_start EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6525bc7d param_set_invbool EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp -EXPORT_SYMBOL vmlinux 0x6535e926 tcp_filter -EXPORT_SYMBOL vmlinux 0x653cda2a mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x65304de0 aperture_remove_conflicting_pci_devices EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob EXPORT_SYMBOL vmlinux 0x654449c3 memset16 -EXPORT_SYMBOL vmlinux 0x654f64af phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x65659862 inet_frag_find +EXPORT_SYMBOL vmlinux 0x6568bdb0 uart_update_timeout EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf -EXPORT_SYMBOL vmlinux 0x65733896 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x6582edf3 devm_memremap EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset EXPORT_SYMBOL vmlinux 0x65929cae ns_to_timespec64 -EXPORT_SYMBOL vmlinux 0x6596d9f3 pcie_capability_write_word EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc -EXPORT_SYMBOL vmlinux 0x65a2b200 devfreq_resume_device -EXPORT_SYMBOL vmlinux 0x65ab9a4d pci_get_device -EXPORT_SYMBOL vmlinux 0x65c0fe2f tcp_poll +EXPORT_SYMBOL vmlinux 0x65b2115a add_watch_to_object +EXPORT_SYMBOL vmlinux 0x65bddd6e dev_alloc_name +EXPORT_SYMBOL vmlinux 0x65c46dfc irq_set_chip +EXPORT_SYMBOL vmlinux 0x65cfcb5d devfreq_suspend_device EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning 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 0x65e2a6c0 stop_tty -EXPORT_SYMBOL vmlinux 0x65e3c574 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x65e47b62 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x65e77496 ilookup5 -EXPORT_SYMBOL vmlinux 0x65ed91be dump_page -EXPORT_SYMBOL vmlinux 0x65f937c3 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x66191b5a acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x65e35540 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x65ec6de5 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x660510b4 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x6618109d configfs_register_subsystem EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6628b16f is_bad_inode EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr -EXPORT_SYMBOL vmlinux 0x6655da01 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x664d760d bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x665b3a41 I_BDEV EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x66673033 fscrypt_put_encryption_info EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin -EXPORT_SYMBOL vmlinux 0x666ba92c sock_set_keepalive EXPORT_SYMBOL vmlinux 0x666c14c0 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x666f7917 __blkdev_issue_discard EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset -EXPORT_SYMBOL vmlinux 0x667acc6d tty_port_close_end -EXPORT_SYMBOL vmlinux 0x667bb8e8 pcie_get_speed_cap EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x6687cfde configfs_unregister_group EXPORT_SYMBOL vmlinux 0x668b19a1 down_read -EXPORT_SYMBOL vmlinux 0x669bfee2 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x66923dbc iget5_locked EXPORT_SYMBOL vmlinux 0x669c191b dm_consume_args -EXPORT_SYMBOL vmlinux 0x66ab5f9f truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x669d426d vme_register_driver +EXPORT_SYMBOL vmlinux 0x669e1b85 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x66a34ad8 registered_fb EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup -EXPORT_SYMBOL vmlinux 0x66cb7102 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x66cb73b1 alloc_pages +EXPORT_SYMBOL vmlinux 0x66ebc9c4 __d_drop EXPORT_SYMBOL vmlinux 0x66edfc78 _find_next_or_bit -EXPORT_SYMBOL vmlinux 0x66f6fdd6 netdev_alert -EXPORT_SYMBOL vmlinux 0x6705c67f locks_init_lock -EXPORT_SYMBOL vmlinux 0x67082b35 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x670c379d tty_name -EXPORT_SYMBOL vmlinux 0x670dd57b of_device_alloc -EXPORT_SYMBOL vmlinux 0x670f808e xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x672feb2e netdev_offload_xstats_get -EXPORT_SYMBOL vmlinux 0x6738b07e xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x673d0638 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x674011c5 iproc_msi_init +EXPORT_SYMBOL vmlinux 0x66ef7e0d dma_find_channel +EXPORT_SYMBOL vmlinux 0x66f3bf3c iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x66f96c19 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x6713c3bf vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x6719d5e7 iterate_fd +EXPORT_SYMBOL vmlinux 0x671f5f20 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x672878ac tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x6739ab56 kmem_cache_create EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x674617b3 seq_release +EXPORT_SYMBOL vmlinux 0x67490c14 of_translate_address EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init -EXPORT_SYMBOL vmlinux 0x674cec24 pci_request_irq -EXPORT_SYMBOL vmlinux 0x674efd4d path_put -EXPORT_SYMBOL vmlinux 0x677321f7 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x677bd35f xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x678a17eb rtc_add_group -EXPORT_SYMBOL vmlinux 0x678b5165 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x67540d53 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x6756192f flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x6772ef35 do_SAK +EXPORT_SYMBOL vmlinux 0x6773c186 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x677e5246 max8925_bulk_read EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x67a4a675 phy_detach +EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x679179f4 inode_insert5 +EXPORT_SYMBOL vmlinux 0x679d5087 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x67a957c8 wireless_send_event EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios -EXPORT_SYMBOL vmlinux 0x67b482a4 tty_flip_buffer_push EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read -EXPORT_SYMBOL vmlinux 0x67cabcc5 console_start -EXPORT_SYMBOL vmlinux 0x67db4598 kern_unmount_array -EXPORT_SYMBOL vmlinux 0x67e8e9b0 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x67f404dc fscrypt_zeroout_range -EXPORT_SYMBOL vmlinux 0x68048bbb input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x6805502e vfs_symlink -EXPORT_SYMBOL vmlinux 0x680b7d28 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x68231e0e blk_mq_rq_cpu -EXPORT_SYMBOL vmlinux 0x682f5a30 md_bitmap_end_sync -EXPORT_SYMBOL vmlinux 0x683c89c1 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x6850c0af padata_free -EXPORT_SYMBOL vmlinux 0x6855d1a1 rproc_shutdown -EXPORT_SYMBOL vmlinux 0x6867843f xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x6872a75e param_ops_int +EXPORT_SYMBOL vmlinux 0x67cadfd9 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x67dd59bc kill_pgrp +EXPORT_SYMBOL vmlinux 0x681231cf wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x6837ad71 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x6854bafe rproc_detach +EXPORT_SYMBOL vmlinux 0x687150c1 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x68735726 fman_reset_mac EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval EXPORT_SYMBOL vmlinux 0x689067dd dma_fence_chain_ops -EXPORT_SYMBOL vmlinux 0x68929d55 get_tree_single_reconf -EXPORT_SYMBOL vmlinux 0x6893d879 __mdiobus_c45_write -EXPORT_SYMBOL vmlinux 0x689baa50 keyring_search -EXPORT_SYMBOL vmlinux 0x689d7ee3 genphy_resume -EXPORT_SYMBOL vmlinux 0x68a0b4f9 tty_kref_put -EXPORT_SYMBOL vmlinux 0x68acf894 seg6_hmac_net_exit -EXPORT_SYMBOL vmlinux 0x68c4cf0f ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x68c7dbd7 __acpi_mdiobus_register -EXPORT_SYMBOL vmlinux 0x68c81d27 arp_tbl -EXPORT_SYMBOL vmlinux 0x68db7472 mmc_cqe_start_req -EXPORT_SYMBOL vmlinux 0x68df05af nvdimm_bus_lock -EXPORT_SYMBOL vmlinux 0x68ecba3e migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x6895ca1e nlmsg_notify +EXPORT_SYMBOL vmlinux 0x68a4365e netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x68a65216 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x68a9bfc6 dev_trans_start +EXPORT_SYMBOL vmlinux 0x68dc7b2e reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x68f9a270 nf_log_set EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s -EXPORT_SYMBOL vmlinux 0x68fbbb20 tcp_v4_md5_hash_skb EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot -EXPORT_SYMBOL vmlinux 0x690b6e41 dquot_acquire -EXPORT_SYMBOL vmlinux 0x692496ad mii_link_ok -EXPORT_SYMBOL vmlinux 0x692c3078 ip6_fraglist_init -EXPORT_SYMBOL vmlinux 0x692e04bf register_netdevice_notifier_net -EXPORT_SYMBOL vmlinux 0x69405a1c __traceiter_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x69456cdf pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x6906ff45 lock_rename +EXPORT_SYMBOL vmlinux 0x6911cdef blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x6916825e fwnode_iomap +EXPORT_SYMBOL vmlinux 0x69189738 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x691e9be1 ps2_end_command +EXPORT_SYMBOL vmlinux 0x6922c62b devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x69295ac1 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x694dd24a blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x69575f98 configfs_unregister_default_group EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days EXPORT_SYMBOL vmlinux 0x6972e413 __bitmap_weight_and +EXPORT_SYMBOL vmlinux 0x6974ed55 phy_start_aneg EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad -EXPORT_SYMBOL vmlinux 0x6988c9ba __neigh_event_send -EXPORT_SYMBOL vmlinux 0x6998b331 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x69ab0f4d inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x69ac4cb3 mii_check_media -EXPORT_SYMBOL vmlinux 0x69c51e69 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x69c94ee7 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x69cc16dc proc_symlink +EXPORT_SYMBOL vmlinux 0x69802ef5 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x69aed186 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x69b3c443 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x69b6c8df empty_aops +EXPORT_SYMBOL vmlinux 0x69c8abab neigh_connected_output EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69fbeafa get_inode_acl +EXPORT_SYMBOL vmlinux 0x69fcca1e notify_change +EXPORT_SYMBOL vmlinux 0x69fce151 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x6a0153fd udp_gro_complete EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree -EXPORT_SYMBOL vmlinux 0x6a07d6d1 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x6a23e724 udp_gro_receive -EXPORT_SYMBOL vmlinux 0x6a36f8a6 uart_resume_port +EXPORT_SYMBOL vmlinux 0x6a097816 ppp_input_error +EXPORT_SYMBOL vmlinux 0x6a12396b rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6a12c320 softnet_data +EXPORT_SYMBOL vmlinux 0x6a21c311 kthread_bind +EXPORT_SYMBOL vmlinux 0x6a22e6e3 mdio_device_register +EXPORT_SYMBOL vmlinux 0x6a236bab cdev_device_del +EXPORT_SYMBOL vmlinux 0x6a28a280 genphy_loopback EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a3cda4d unregister_cdrom +EXPORT_SYMBOL vmlinux 0x6a48c180 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x6a499f46 discard_new_inode EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages -EXPORT_SYMBOL vmlinux 0x6a5cc5e8 kfree_skb_partial EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask -EXPORT_SYMBOL vmlinux 0x6a6437e2 max8925_bulk_write -EXPORT_SYMBOL vmlinux 0x6a6b1886 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x6a6d57b5 vme_dma_list_exec EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 -EXPORT_SYMBOL vmlinux 0x6a6f9d1f mdiobus_write -EXPORT_SYMBOL vmlinux 0x6a81bfb0 __folio_alloc +EXPORT_SYMBOL vmlinux 0x6a7f3b44 fget_raw EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq -EXPORT_SYMBOL vmlinux 0x6a95ce5d wrap_directory_iterator -EXPORT_SYMBOL vmlinux 0x6a995100 __traceiter_module_get -EXPORT_SYMBOL vmlinux 0x6aa1c2a0 vlan_for_each +EXPORT_SYMBOL vmlinux 0x6a9a5165 devm_request_resource +EXPORT_SYMBOL vmlinux 0x6ada0391 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x6adb02ad rproc_coredump_set_elf_info EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device -EXPORT_SYMBOL vmlinux 0x6ae6cd12 take_dentry_name_snapshot EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x6af112fc cdrom_release -EXPORT_SYMBOL vmlinux 0x6b15d727 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x6afa6001 dcb_getrewr_prio_pcp_mask_map +EXPORT_SYMBOL vmlinux 0x6aff0290 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x6b077943 f_setown EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3ba5d6 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x6b3c5f46 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x6b519fdd simple_release_fs EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable -EXPORT_SYMBOL vmlinux 0x6b5732d6 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x6b6aaed3 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x6b627db9 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x6b78252f __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6b796620 try_lookup_one_len EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list -EXPORT_SYMBOL vmlinux 0x6ba32a79 pci_free_irq -EXPORT_SYMBOL vmlinux 0x6bb4f0b2 trace_event_printf -EXPORT_SYMBOL vmlinux 0x6bb8a9af insert_inode_locked +EXPORT_SYMBOL vmlinux 0x6ba6e9ba folio_wait_bit EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc9ae68 pcim_iomap_regions_request_all EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bd98f2c seg6_hmac_validate_skb EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method -EXPORT_SYMBOL vmlinux 0x6bff3794 ptp_find_pin_unlocked -EXPORT_SYMBOL vmlinux 0x6c0590a8 param_set_ullong -EXPORT_SYMBOL vmlinux 0x6c165fee backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6be227b3 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x6bf1947f rtnl_unicast +EXPORT_SYMBOL vmlinux 0x6c1c3fab pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x6c1e9665 get_tree_keyed EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy -EXPORT_SYMBOL vmlinux 0x6c4b8c6a iommu_put_resv_regions -EXPORT_SYMBOL vmlinux 0x6c52bb00 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x6c56287f netdev_emerg +EXPORT_SYMBOL vmlinux 0x6c2b9ddb __skb_ext_del +EXPORT_SYMBOL vmlinux 0x6c3e4aed vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x6c423d37 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x6c548538 path_has_submounts EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb -EXPORT_SYMBOL vmlinux 0x6c7ce04c pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x6c9fd73b dst_init +EXPORT_SYMBOL vmlinux 0x6ca1c29c xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x6ca745fe block_dirty_folio EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user -EXPORT_SYMBOL vmlinux 0x6cd6738e tcp_prot -EXPORT_SYMBOL vmlinux 0x6cd683ba __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x6cd7976e skb_headers_offset_update -EXPORT_SYMBOL vmlinux 0x6cd7a036 xp_free -EXPORT_SYMBOL vmlinux 0x6ce59edf netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x6cc5718d crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x6cec33aa xfrm_unregister_km EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums -EXPORT_SYMBOL vmlinux 0x6cf622d6 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x6d08aad1 fman_get_qman_channel_id -EXPORT_SYMBOL vmlinux 0x6d0c2693 mount_subtree -EXPORT_SYMBOL vmlinux 0x6d10fed8 of_n_size_cells -EXPORT_SYMBOL vmlinux 0x6d12b1b4 of_find_compatible_node -EXPORT_SYMBOL vmlinux 0x6d14894c sock_kfree_s EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x6d31964d free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x6d3a8fe4 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x6d4b7c8c dev_pm_opp_unregister_notifier -EXPORT_SYMBOL vmlinux 0x6d53c7a2 bio_uninit +EXPORT_SYMBOL vmlinux 0x6d4dbb2a xfrm_policy_insert EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6c68f0 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x6d6daec8 set_nlink EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw -EXPORT_SYMBOL vmlinux 0x6d74fbca tcf_em_tree_validate -EXPORT_SYMBOL vmlinux 0x6d76d2e8 genphy_c45_ethtool_get_eee EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut -EXPORT_SYMBOL vmlinux 0x6d881613 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x6d8b39a1 param_set_short EXPORT_SYMBOL vmlinux 0x6d933508 lynx_pcs_destroy -EXPORT_SYMBOL vmlinux 0x6da42787 netif_rx +EXPORT_SYMBOL vmlinux 0x6d964095 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x6d9ea9c8 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x6da0c220 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x6da26434 register_cdrom EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory -EXPORT_SYMBOL vmlinux 0x6db38660 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x6db99ac3 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x6da67fee dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x6da730cd dev_set_mac_address_user EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbed356 proto_unregister EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete -EXPORT_SYMBOL vmlinux 0x6dc4967f ___pskb_trim +EXPORT_SYMBOL vmlinux 0x6dc3b07a netdev_has_any_upper_dev EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x6ddcd6d2 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x6dd3ed91 find_inode_by_ino_rcu EXPORT_SYMBOL vmlinux 0x6ddfd09c unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x6de68bf5 __check_sticky EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x6df51e53 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x6e2dcb8d tcp_get_cookie_sock -EXPORT_SYMBOL vmlinux 0x6e33398b mipi_dsi_dcs_get_display_brightness_large -EXPORT_SYMBOL vmlinux 0x6e36ff86 tcp_set_rcvlowat -EXPORT_SYMBOL vmlinux 0x6e41ae98 sock_set_mark +EXPORT_SYMBOL vmlinux 0x6dfb12aa security_inode_init_security +EXPORT_SYMBOL vmlinux 0x6e57c0aa inet_stream_ops +EXPORT_SYMBOL vmlinux 0x6e591dc2 udp_disconnect EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6aeba4 rproc_resource_cleanup EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x6e7812f7 tcf_exts_dump_stats -EXPORT_SYMBOL vmlinux 0x6e841e1f ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x6e7a794d __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x6e870e3b pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x6e8977b9 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x6e8a8efe dev_addr_mod +EXPORT_SYMBOL vmlinux 0x6e8bfc64 tcp_md5_key_copy +EXPORT_SYMBOL vmlinux 0x6e935e3c tcp_sock_set_keepcnt EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea37347 seq_escape_mem EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig -EXPORT_SYMBOL vmlinux 0x6eaa8450 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x6ebb4ebe tcf_register_action -EXPORT_SYMBOL vmlinux 0x6ec3f315 get_user_pages -EXPORT_SYMBOL vmlinux 0x6ecd2168 bioset_init -EXPORT_SYMBOL vmlinux 0x6ed15908 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x6eb942b2 is_nd_dax EXPORT_SYMBOL vmlinux 0x6eecfaf4 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x6efdc7a8 d_alloc -EXPORT_SYMBOL vmlinux 0x6f0579a7 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x6f0699e9 clk_hw_register_clkdev -EXPORT_SYMBOL vmlinux 0x6f110b9c phy_init_eee +EXPORT_SYMBOL vmlinux 0x6f009a54 fb_blank +EXPORT_SYMBOL vmlinux 0x6f01ec2a amba_request_regions +EXPORT_SYMBOL vmlinux 0x6f031d3b unpin_user_page +EXPORT_SYMBOL vmlinux 0x6f0c337b mount_subtree +EXPORT_SYMBOL vmlinux 0x6f13d3d2 sk_stream_wait_memory EXPORT_SYMBOL vmlinux 0x6f14e9db console_list_lock -EXPORT_SYMBOL vmlinux 0x6f2eb3e5 __of_get_address -EXPORT_SYMBOL vmlinux 0x6f3de151 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x6f25874f i2c_smbus_read_i2c_block_data_or_emulated EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource EXPORT_SYMBOL vmlinux 0x6f41a639 irq_cpu_rmap_remove +EXPORT_SYMBOL vmlinux 0x6f4689a9 inet_frags_init EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r -EXPORT_SYMBOL vmlinux 0x6f57be14 reuseport_detach_prog EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address -EXPORT_SYMBOL vmlinux 0x6f623522 dev_set_alias -EXPORT_SYMBOL vmlinux 0x6f681da4 __dev_queue_xmit EXPORT_SYMBOL vmlinux 0x6f7793a5 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x6f88379f vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x6f80d2db qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x6f894a27 setattr_copy EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats -EXPORT_SYMBOL vmlinux 0x6f9c8e6d mmc_cqe_request_done -EXPORT_SYMBOL vmlinux 0x6fa17d1b pci_dev_driver -EXPORT_SYMBOL vmlinux 0x6fb16bcf put_fs_context -EXPORT_SYMBOL vmlinux 0x6fb479e8 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x6fb19dc4 clocksource_change_rating EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x6fc44772 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x6fc6dab2 __mod_node_page_state -EXPORT_SYMBOL vmlinux 0x6fc78dd5 tcf_exts_init_ex EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog -EXPORT_SYMBOL vmlinux 0x6fd1f036 sync_blockdev_range -EXPORT_SYMBOL vmlinux 0x6fe80e8c tcf_em_tree_dump -EXPORT_SYMBOL vmlinux 0x6fea3ed9 free_buffer_head -EXPORT_SYMBOL vmlinux 0x6ff77818 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x6fcd840c __register_binfmt +EXPORT_SYMBOL vmlinux 0x6fd16b4e skb_unlink +EXPORT_SYMBOL vmlinux 0x6fd79e28 mmc_is_req_done EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700252a4 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7007a196 pmem_sector_size EXPORT_SYMBOL vmlinux 0x700c6c17 key_create EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x70242666 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen -EXPORT_SYMBOL vmlinux 0x70349db5 __zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x704703b0 config_item_put +EXPORT_SYMBOL vmlinux 0x70367a60 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x7041ab1c pci_get_class +EXPORT_SYMBOL vmlinux 0x7057e8d1 input_flush_device +EXPORT_SYMBOL vmlinux 0x705de023 kthread_create_worker_on_cpu EXPORT_SYMBOL vmlinux 0x7060d475 kern_sys_bpf -EXPORT_SYMBOL vmlinux 0x70a635e2 locks_delete_block -EXPORT_SYMBOL vmlinux 0x70aa7c5c setattr_should_drop_suidgid +EXPORT_SYMBOL vmlinux 0x70649911 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x709239d3 to_ndd +EXPORT_SYMBOL vmlinux 0x70976318 security_task_getsecid_obj EXPORT_SYMBOL vmlinux 0x70ac2c1a blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x70ac63bc devfreq_recommended_opp EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x70ad76bb seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x70ad8531 page_pool_put_page_bulk -EXPORT_SYMBOL vmlinux 0x70c9d044 tc_setup_cb_replace -EXPORT_SYMBOL vmlinux 0x70cab89f ip_defrag +EXPORT_SYMBOL vmlinux 0x70ae9817 d_make_root EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool EXPORT_SYMBOL vmlinux 0x70daa11e dma_fence_remove_callback -EXPORT_SYMBOL vmlinux 0x70e681cb dev_alloc_name +EXPORT_SYMBOL vmlinux 0x7103c360 phy_get_internal_delay EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc -EXPORT_SYMBOL vmlinux 0x71316036 lease_modify -EXPORT_SYMBOL vmlinux 0x71320529 eth_header -EXPORT_SYMBOL vmlinux 0x713e246d input_open_device +EXPORT_SYMBOL vmlinux 0x712aef98 tty_driver_flush_buffer EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb -EXPORT_SYMBOL vmlinux 0x714823b9 sys_fillrect -EXPORT_SYMBOL vmlinux 0x714fd79b mmc_wait_for_req -EXPORT_SYMBOL vmlinux 0x71537ade md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x714e08a5 skb_copy_and_csum_dev EXPORT_SYMBOL vmlinux 0x7155bcf8 sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x71592775 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x7159890f pci_scan_root_bus EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk -EXPORT_SYMBOL vmlinux 0x715b66ae fb_get_buffer_offset -EXPORT_SYMBOL vmlinux 0x7166500b set_binfmt +EXPORT_SYMBOL vmlinux 0x7165051a flow_rule_match_ports_range EXPORT_SYMBOL vmlinux 0x7171121c overflowgid -EXPORT_SYMBOL vmlinux 0x717503d1 netdev_state_change -EXPORT_SYMBOL vmlinux 0x7179ccc1 scsi_report_bus_reset EXPORT_SYMBOL vmlinux 0x717d1f96 hdmi_infoframe_check -EXPORT_SYMBOL vmlinux 0x717d395c blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x717e7ad5 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x718887cb of_graph_get_remote_node -EXPORT_SYMBOL vmlinux 0x718b1daa _dev_err -EXPORT_SYMBOL vmlinux 0x7197f083 key_link -EXPORT_SYMBOL vmlinux 0x71994d7c key_reject_and_link -EXPORT_SYMBOL vmlinux 0x71a06bf9 blkdev_compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0x71a454ef ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x719a980b pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x719f25ee pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x71a0fff1 dev_set_mac_address EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x71b5ffea pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x71bf9983 is_nd_btt -EXPORT_SYMBOL vmlinux 0x71e5be29 of_get_cpu_state_node -EXPORT_SYMBOL vmlinux 0x71f7d4c4 device_add_disk +EXPORT_SYMBOL vmlinux 0x71edee96 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x71efeac8 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x71f235a7 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x71f3eb06 of_clk_get_by_name EXPORT_SYMBOL vmlinux 0x71fb6892 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x7200c4bf generic_error_remove_page EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev -EXPORT_SYMBOL vmlinux 0x72179a8e folio_unlock -EXPORT_SYMBOL vmlinux 0x72307076 register_qdisc -EXPORT_SYMBOL vmlinux 0x72435852 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x723db3a0 devm_ioremap_resource EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x72845c5e backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7285afdc blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x728ee5bf input_set_poll_interval EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable -EXPORT_SYMBOL vmlinux 0x72b64eaa dev_open +EXPORT_SYMBOL vmlinux 0x72a7e444 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x72b7e249 xfrm_lookup EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn -EXPORT_SYMBOL vmlinux 0x72cef5f1 mmc_retune_unpause -EXPORT_SYMBOL vmlinux 0x72d5f50b flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x72e87cd8 blk_mq_init_allocated_queue EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type -EXPORT_SYMBOL vmlinux 0x72f09004 pci_write_config_dword EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x72f6a03d jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x72fcea66 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x73084eec xfrm_register_km +EXPORT_SYMBOL vmlinux 0x730ef9df jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x730f73db mmc_get_card +EXPORT_SYMBOL vmlinux 0x73102ba3 fwnode_phy_find_device EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type -EXPORT_SYMBOL vmlinux 0x732be45c vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0x732dd326 groups_free -EXPORT_SYMBOL vmlinux 0x735a0a10 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x733cbe13 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x73423f4e mii_nway_restart +EXPORT_SYMBOL vmlinux 0x734ac932 rproc_coredump_add_segment EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x736f0b8d dma_async_device_register +EXPORT_SYMBOL vmlinux 0x7368e37d udp_sendmsg +EXPORT_SYMBOL vmlinux 0x736d6aa9 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x736e72f7 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x7370c1fc xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x7370c7ad sockopt_release_sock +EXPORT_SYMBOL vmlinux 0x7379ec5f scsi_device_quiesce EXPORT_SYMBOL vmlinux 0x7380dffa argv_split -EXPORT_SYMBOL vmlinux 0x73834fe2 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x73925f82 dma_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x7392c82f dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x7384f363 pagecache_get_page EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get -EXPORT_SYMBOL vmlinux 0x73a528db __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x73a1ecb1 migrate_vma_setup EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range -EXPORT_SYMBOL vmlinux 0x73b20a08 md_write_start -EXPORT_SYMBOL vmlinux 0x73b33292 jbd2_transaction_committed -EXPORT_SYMBOL vmlinux 0x73b6adc2 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x73cb6254 t10_pi_type3_ip -EXPORT_SYMBOL vmlinux 0x73d5290d sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x73f4ea60 sock_bind_add -EXPORT_SYMBOL vmlinux 0x73f525fa vfs_parse_fs_string -EXPORT_SYMBOL vmlinux 0x73f784bf con_is_bound +EXPORT_SYMBOL vmlinux 0x73c45a9f __serio_register_driver +EXPORT_SYMBOL vmlinux 0x73cc4c47 from_kuid +EXPORT_SYMBOL vmlinux 0x73dec687 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x73e5abc7 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x73ec0fee bio_add_page +EXPORT_SYMBOL vmlinux 0x73f5687a gro_cells_receive +EXPORT_SYMBOL vmlinux 0x74072ad8 create_empty_buffers EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x741ddd3c call_netdevice_notifiers EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes -EXPORT_SYMBOL vmlinux 0x7427e89f of_device_is_big_endian EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init -EXPORT_SYMBOL vmlinux 0x74450711 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x7450b50e generic_file_read_iter EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx -EXPORT_SYMBOL vmlinux 0x746e326b rproc_del +EXPORT_SYMBOL vmlinux 0x746dff3a tcp_prot EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x747d938e begin_new_exec EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present -EXPORT_SYMBOL vmlinux 0x749c7eab jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x749e9ec7 lookup_one_positive_unlocked -EXPORT_SYMBOL vmlinux 0x74b69cda dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x74a4f621 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x74ab74f6 dm_kcopyd_copy EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x74c6ba2e mdiobb_read_c45 -EXPORT_SYMBOL vmlinux 0x74cfdef4 md_write_end +EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask EXPORT_SYMBOL vmlinux 0x74da064a set_security_override EXPORT_SYMBOL vmlinux 0x74dd9e0b dma_fence_wait_any_timeout EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x750d8f34 param_get_charp -EXPORT_SYMBOL vmlinux 0x7525af0e inet6_bind -EXPORT_SYMBOL vmlinux 0x752e61aa pm860x_reg_write -EXPORT_SYMBOL vmlinux 0x752e943c netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x74fc57e9 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x74ff2909 page_pool_unlink_napi +EXPORT_SYMBOL vmlinux 0x7509c62d skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x750f77fd tcp_time_wait +EXPORT_SYMBOL vmlinux 0x75435f0b dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x75534ca2 i2c_add_adapter EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic -EXPORT_SYMBOL vmlinux 0x7578cbec ipv6_push_frag_opts -EXPORT_SYMBOL vmlinux 0x757eb880 tcf_qevent_init -EXPORT_SYMBOL vmlinux 0x7584f5fe generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x75861704 flow_rule_match_arp EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x759d6edb __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x75ab2566 phy_find_first -EXPORT_SYMBOL vmlinux 0x75b858ab pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x75968466 scsi_print_command +EXPORT_SYMBOL vmlinux 0x75aa1c53 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x75ada49d tcp_md5_hash_key EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump -EXPORT_SYMBOL vmlinux 0x75d584ba tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x75d8e4b1 vfs_fadvise -EXPORT_SYMBOL vmlinux 0x75e69a7c posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x75d80a7b proc_create_single_data +EXPORT_SYMBOL vmlinux 0x75dac697 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x75e55415 mmc_add_host EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760d6831 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x7621cfa1 serio_interrupt EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x762f513a d_add_ci EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765517c9 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x765c9059 skb_put +EXPORT_SYMBOL vmlinux 0x765d43b7 stream_open EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766c3059 inet_frag_destroy EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow EXPORT_SYMBOL vmlinux 0x768ee329 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x7691cbaf blk_set_runtime_active -EXPORT_SYMBOL vmlinux 0x769ed760 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x769237b4 netdev_adjacent_change_prepare EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check -EXPORT_SYMBOL vmlinux 0x76a2e615 flow_rule_match_tcp -EXPORT_SYMBOL vmlinux 0x76ad1d9a scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x76c178af phy_ethtool_nway_reset -EXPORT_SYMBOL vmlinux 0x76c21f43 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x76ae6f3e gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x76b0127c d_delete +EXPORT_SYMBOL vmlinux 0x76c8787a of_find_property +EXPORT_SYMBOL vmlinux 0x76c9762a d_alloc_name EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode -EXPORT_SYMBOL vmlinux 0x76e50f9f flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x76e9232f dev_set_threaded +EXPORT_SYMBOL vmlinux 0x76ef4f9f tcp_add_backlog EXPORT_SYMBOL vmlinux 0x76efc249 _atomic_dec_and_raw_lock_irqsave -EXPORT_SYMBOL vmlinux 0x771db145 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x76f75267 fqdir_init +EXPORT_SYMBOL vmlinux 0x770455a4 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x7720daf7 of_get_next_available_child EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource -EXPORT_SYMBOL vmlinux 0x773cc39e param_set_byte +EXPORT_SYMBOL vmlinux 0x77390e46 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x773952a1 udp_skb_destructor EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x77422b51 phy_read_paged EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir -EXPORT_SYMBOL vmlinux 0x77655140 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x774c2c96 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x7759d8be ip_queue_xmit EXPORT_SYMBOL vmlinux 0x776ca93a __clzdi2 +EXPORT_SYMBOL vmlinux 0x7773c81e dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x7775a1f1 tty_write_room +EXPORT_SYMBOL vmlinux 0x777cab3b rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x778aac89 tc_setup_cb_add EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div -EXPORT_SYMBOL vmlinux 0x77a718b8 vme_slave_request -EXPORT_SYMBOL vmlinux 0x77b12566 keyring_alloc +EXPORT_SYMBOL vmlinux 0x77a1ba6f devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x77a3d4b6 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x77b888e7 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x77bc13a0 strim -EXPORT_SYMBOL vmlinux 0x77cead78 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x77d46916 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x77e4b1af netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x77c69375 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x77cbe6ae nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x77d3add1 d_path +EXPORT_SYMBOL vmlinux 0x77e34bb8 ihold EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt -EXPORT_SYMBOL vmlinux 0x77fdd76f xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x7807c817 _dev_emerg +EXPORT_SYMBOL vmlinux 0x77ea5320 sock_bind_add +EXPORT_SYMBOL vmlinux 0x77fa55c6 vma_set_file +EXPORT_SYMBOL vmlinux 0x7800c789 tcp_req_err EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle -EXPORT_SYMBOL vmlinux 0x78148298 bdev_start_io_acct EXPORT_SYMBOL vmlinux 0x78161f39 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x781bc607 phy_drivers_register -EXPORT_SYMBOL vmlinux 0x7830544a __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x784123a2 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x7842bea3 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x781820d6 console_stop +EXPORT_SYMBOL vmlinux 0x782c5b07 pci_find_resource +EXPORT_SYMBOL vmlinux 0x782ea08d fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x783ff0d8 secure_tcpv6_ts_off EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x7852b5b7 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x786edd6a __phy_read_mmd -EXPORT_SYMBOL vmlinux 0x7896d5bf touch_buffer +EXPORT_SYMBOL vmlinux 0x78486a54 qdisc_put +EXPORT_SYMBOL vmlinux 0x7848999e flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x785d5cb6 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x786b484d __module_get +EXPORT_SYMBOL vmlinux 0x786d1d35 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x7881faba update_devfreq +EXPORT_SYMBOL vmlinux 0x78891419 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x7899ae91 dev_uc_del +EXPORT_SYMBOL vmlinux 0x789e8e08 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x78a0cd73 devm_devfreq_remove_device EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt -EXPORT_SYMBOL vmlinux 0x78a1e636 nf_register_net_hook -EXPORT_SYMBOL vmlinux 0x78b728ae tcp_timewait_state_process EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf -EXPORT_SYMBOL vmlinux 0x78b9b6a7 d_make_root -EXPORT_SYMBOL vmlinux 0x78d30b7f fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x78c19944 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x78cf25fe jbd2_journal_get_undo_access EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices -EXPORT_SYMBOL vmlinux 0x791632e1 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x78e41539 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x78f376c2 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x79113ee0 find_vma EXPORT_SYMBOL vmlinux 0x7919b383 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x7926dbc0 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x79356db0 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x791d3e65 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x79271c19 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x793a42cb super_setup_bdi +EXPORT_SYMBOL vmlinux 0x794f5975 component_match_add_typed EXPORT_SYMBOL vmlinux 0x7984eefc key_update -EXPORT_SYMBOL vmlinux 0x798746e1 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x79855e93 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x798d78e0 dump_page +EXPORT_SYMBOL vmlinux 0x79919bc3 generic_pipe_buf_try_steal EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size -EXPORT_SYMBOL vmlinux 0x79a3f43a blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x79b620f0 tty_check_change -EXPORT_SYMBOL vmlinux 0x79c0962f jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x79c4c912 xsk_get_pool_from_qid -EXPORT_SYMBOL vmlinux 0x79c72c08 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x79cc0695 register_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0x79d693ca blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x79d930d7 find_vma_intersection -EXPORT_SYMBOL vmlinux 0x79d9b4d8 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x79d83967 serial8250_set_isa_configurator EXPORT_SYMBOL vmlinux 0x79e4cbe8 override_creds -EXPORT_SYMBOL vmlinux 0x79f482aa __breadahead +EXPORT_SYMBOL vmlinux 0x79f121da path_is_under EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble -EXPORT_SYMBOL vmlinux 0x7a2391d3 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x7a2607c8 vfs_create -EXPORT_SYMBOL vmlinux 0x7a2626d7 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x7a29d91d rdmacg_uncharge EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number -EXPORT_SYMBOL vmlinux 0x7a2c96d0 skb_expand_head -EXPORT_SYMBOL vmlinux 0x7a2f5f95 mmc_calc_max_discard EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj -EXPORT_SYMBOL vmlinux 0x7a401d0b mmc_of_parse_voltage -EXPORT_SYMBOL vmlinux 0x7a477afc fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x7a3d60b7 md_update_sb +EXPORT_SYMBOL vmlinux 0x7a40b1c3 iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x7a4d98f0 ata_std_end_eh EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists -EXPORT_SYMBOL vmlinux 0x7a64d8cb register_fib_notifier +EXPORT_SYMBOL vmlinux 0x7a76973a ppp_unregister_compressor EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx -EXPORT_SYMBOL vmlinux 0x7a9f1759 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x7a98e054 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x7a9978f6 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x7a9997ea __folio_put EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree -EXPORT_SYMBOL vmlinux 0x7aa96730 of_phy_deregister_fixed_link -EXPORT_SYMBOL vmlinux 0x7ab2e4d3 netdev_err -EXPORT_SYMBOL vmlinux 0x7ab7a2df fib_default_rule_add -EXPORT_SYMBOL vmlinux 0x7ab87b63 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x7aaa379e follow_down_one +EXPORT_SYMBOL vmlinux 0x7aab999e scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x7aac94c2 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x7ab7d1df max8998_update_reg EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad37440 pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu -EXPORT_SYMBOL vmlinux 0x7ae40203 param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x7ae127df dqput +EXPORT_SYMBOL vmlinux 0x7ae460d7 genphy_config_eee_advert EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum -EXPORT_SYMBOL vmlinux 0x7aee24a7 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x7aef501a xsk_set_rx_need_wakeup -EXPORT_SYMBOL vmlinux 0x7af292a5 elv_rb_add -EXPORT_SYMBOL vmlinux 0x7b02a908 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x7b03c1c0 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x7ae6bca7 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x7af5a367 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x7b0bec7c dm_kobject_release EXPORT_SYMBOL vmlinux 0x7b0f1d0a mtree_store -EXPORT_SYMBOL vmlinux 0x7b20d9dd dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x7b274a8a __tcp_md5_do_lookup -EXPORT_SYMBOL vmlinux 0x7b34bbf8 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x7b24d345 textsearch_find_continuous EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x7b4c9966 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x7b420827 config_group_find_item +EXPORT_SYMBOL vmlinux 0x7b45b057 vlan_vids_add_by_dev EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem EXPORT_SYMBOL vmlinux 0x7b54f270 posix_acl_valid EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update -EXPORT_SYMBOL vmlinux 0x7b8134eb mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x7b644e1f inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x7b6d7ed1 framebuffer_alloc EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace -EXPORT_SYMBOL vmlinux 0x7b94f0ee dcbnl_ieee_notify -EXPORT_SYMBOL vmlinux 0x7b9e875b blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x7b951fa0 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x7ba23305 sync_inode_metadata EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids -EXPORT_SYMBOL vmlinux 0x7bc43741 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x7bd65ac9 generic_write_end -EXPORT_SYMBOL vmlinux 0x7bde2c07 ps2_sendbyte -EXPORT_SYMBOL vmlinux 0x7c13b13a blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x7c161ad9 dcb_delrewr +EXPORT_SYMBOL vmlinux 0x7bbf3d99 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x7bcce820 find_vma_intersection +EXPORT_SYMBOL vmlinux 0x7bd7dbaa tcp_child_process +EXPORT_SYMBOL vmlinux 0x7be0aec4 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0x7beb6b43 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x7c06203b phy_ethtool_set_wol EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1bd29a of_device_is_available EXPORT_SYMBOL vmlinux 0x7c2d03a6 dma_fence_enable_sw_signaling -EXPORT_SYMBOL vmlinux 0x7c3ea65f __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7c449409 flow_rule_alloc EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get -EXPORT_SYMBOL vmlinux 0x7c5856b2 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x7c59ac1e __fs_parse -EXPORT_SYMBOL vmlinux 0x7c5cda9d pci_read_vpd -EXPORT_SYMBOL vmlinux 0x7c633548 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x7c6eeacf padata_do_serial -EXPORT_SYMBOL vmlinux 0x7c91370a __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x7c502e08 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x7c559c08 inc_nlink +EXPORT_SYMBOL vmlinux 0x7c5a95ca genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x7c62a4c0 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7c878651 inode_permission +EXPORT_SYMBOL vmlinux 0x7c8aae5d blk_put_queue +EXPORT_SYMBOL vmlinux 0x7c8cc8a1 phy_reset_after_clk_enable EXPORT_SYMBOL vmlinux 0x7cbe0cd2 drop_reasons_by_subsys EXPORT_SYMBOL vmlinux 0x7cc18181 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x7cc44281 can_nice -EXPORT_SYMBOL vmlinux 0x7cc8438f __inet_hash +EXPORT_SYMBOL vmlinux 0x7cced04d __cgroup_bpf_run_filter_sock_addr EXPORT_SYMBOL vmlinux 0x7cd9fd0a migrate_device_pages -EXPORT_SYMBOL vmlinux 0x7cda9e56 vme_bus_num EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce5562b set_create_files_as EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc -EXPORT_SYMBOL vmlinux 0x7ce96b75 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x7cf325c1 simple_getattr +EXPORT_SYMBOL vmlinux 0x7cf01315 kfree_skb_reason EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation -EXPORT_SYMBOL vmlinux 0x7d0542bd d_instantiate_new -EXPORT_SYMBOL vmlinux 0x7d09b855 param_get_ullong EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d0e0626 genphy_setup_forced EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent -EXPORT_SYMBOL vmlinux 0x7d20f9cb ip_frag_next -EXPORT_SYMBOL vmlinux 0x7d271f43 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x7d174180 ip_fraglist_prepare EXPORT_SYMBOL vmlinux 0x7d27e504 dm_shift_arg -EXPORT_SYMBOL vmlinux 0x7d47fa4e ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x7d31faa4 input_mt_drop_unused EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d500aba iget_failed +EXPORT_SYMBOL vmlinux 0x7d5895b7 set_anon_super +EXPORT_SYMBOL vmlinux 0x7d59b868 of_range_to_resource EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x7d60d1ca pin_user_pages_remote -EXPORT_SYMBOL vmlinux 0x7d637e85 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7d71088d blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x7d7241c8 security_sb_clone_mnt_opts EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x7d7783c6 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x7d7f44a1 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7d7a23f4 param_get_invbool +EXPORT_SYMBOL vmlinux 0x7d7c0761 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x7d807e72 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7d8b20e2 param_get_hexint +EXPORT_SYMBOL vmlinux 0x7da8825f posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x7dabd1d5 tcf_action_set_ctrlact EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable -EXPORT_SYMBOL vmlinux 0x7dc8e95c phy_driver_unregister EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert -EXPORT_SYMBOL vmlinux 0x7dd2f796 kthread_bind -EXPORT_SYMBOL vmlinux 0x7de0f700 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x7de6f1ab bio_chain -EXPORT_SYMBOL vmlinux 0x7df62519 phy_connect_direct -EXPORT_SYMBOL vmlinux 0x7e06fbf4 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x7df92e01 mdio_device_free EXPORT_SYMBOL vmlinux 0x7e0b255f hdmi_audio_infoframe_pack_for_dp -EXPORT_SYMBOL vmlinux 0x7e153270 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x7e24f1b4 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7e2ec01b device_get_mac_address EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x7e493a43 netdev_core_stats_alloc -EXPORT_SYMBOL vmlinux 0x7e4a0d49 of_get_next_parent EXPORT_SYMBOL vmlinux 0x7e4c3df5 efi -EXPORT_SYMBOL vmlinux 0x7e4cdebb dst_release -EXPORT_SYMBOL vmlinux 0x7e51228c dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x7e59a464 phy_advertise_supported EXPORT_SYMBOL vmlinux 0x7e5c9cbd migrate_device_finalize -EXPORT_SYMBOL vmlinux 0x7e61b2e2 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x7e65dbea jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x7e79d5e6 security_sb_clone_mnt_opts -EXPORT_SYMBOL vmlinux 0x7e9bbd72 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x7e7baa0c folio_mark_dirty EXPORT_SYMBOL vmlinux 0x7ea0d4ca tegra_sku_info -EXPORT_SYMBOL vmlinux 0x7ea1259e __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x7eac76bc vm_mmap -EXPORT_SYMBOL vmlinux 0x7eb24529 devm_request_resource -EXPORT_SYMBOL vmlinux 0x7eb7252e of_pci_range_to_resource -EXPORT_SYMBOL vmlinux 0x7ec99f9b disk_stack_limits -EXPORT_SYMBOL vmlinux 0x7ee5baac dev_get_port_parent_id -EXPORT_SYMBOL vmlinux 0x7ef1c24c uart_get_divisor +EXPORT_SYMBOL vmlinux 0x7ea8e664 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x7ea9ace3 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x7ead0f55 proc_remove +EXPORT_SYMBOL vmlinux 0x7eae8572 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x7eb46688 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7ec2c18e udp_gro_receive +EXPORT_SYMBOL vmlinux 0x7ecddd8c xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7ee94fc2 mpage_writepages EXPORT_SYMBOL vmlinux 0x7ef4bddc __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7efced16 sk_stream_kill_queues EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table -EXPORT_SYMBOL vmlinux 0x7f05529f devm_arch_phys_wc_add -EXPORT_SYMBOL vmlinux 0x7f09b0ed xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x7f0a6f78 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x7f0d327e scsi_target_resume +EXPORT_SYMBOL vmlinux 0x7f1e0999 crypto_sha512_update EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f270f13 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x7f4b2070 sdev_prefix_printk EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f57bb7e inet_getname EXPORT_SYMBOL vmlinux 0x7f62eaa4 sgl_free -EXPORT_SYMBOL vmlinux 0x7f6b3da9 input_free_device -EXPORT_SYMBOL vmlinux 0x7f721dd5 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x7f72d34e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7f64279a pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x7f715c19 keyring_search +EXPORT_SYMBOL vmlinux 0x7f7c235d skb_csum_hwoffload_help EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable -EXPORT_SYMBOL vmlinux 0x7f8d2e26 pci_ep_cfs_remove_epc_group -EXPORT_SYMBOL vmlinux 0x7fa0836f get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x7fa6c5ec pci_alloc_irq_vectors_affinity -EXPORT_SYMBOL vmlinux 0x7fafaf92 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x7fbc180d t10_pi_type1_crc -EXPORT_SYMBOL vmlinux 0x7fbe9fdd key_unlink -EXPORT_SYMBOL vmlinux 0x7fc25718 netlbl_calipso_ops_register -EXPORT_SYMBOL vmlinux 0x7fc3283a jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x7fc79e12 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x7f84bf00 sk_alloc +EXPORT_SYMBOL vmlinux 0x7f85d91e put_cmsg +EXPORT_SYMBOL vmlinux 0x7fb1ae94 reuseport_add_sock EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size EXPORT_SYMBOL vmlinux 0x7fde1fbc acpi_walk_resource_buffer EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node -EXPORT_SYMBOL vmlinux 0x8016341a skb_trim +EXPORT_SYMBOL vmlinux 0x80015480 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x80220e73 param_get_dyndbg_classes +EXPORT_SYMBOL vmlinux 0x80272d83 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x8033f515 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8034cb32 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x803cc843 pci_get_device EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create EXPORT_SYMBOL vmlinux 0x8041d948 __cpuhp_remove_state -EXPORT_SYMBOL vmlinux 0x804a30a4 netlink_unicast -EXPORT_SYMBOL vmlinux 0x805ae38d iov_iter_init -EXPORT_SYMBOL vmlinux 0x8068525e bio_endio +EXPORT_SYMBOL vmlinux 0x804b30aa _copy_from_iter +EXPORT_SYMBOL vmlinux 0x8058a00b folio_wait_private_2 EXPORT_SYMBOL vmlinux 0x80762048 _atomic_dec_and_raw_lock EXPORT_SYMBOL vmlinux 0x80816f26 get_user_ifreq -EXPORT_SYMBOL vmlinux 0x80883a72 udp6_seq_ops -EXPORT_SYMBOL vmlinux 0x808b1805 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x808cf164 skb_expand_head +EXPORT_SYMBOL vmlinux 0x80a6348f sk_send_sigurg EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80c97549 __hw_addr_ref_unsync_dev EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd -EXPORT_SYMBOL vmlinux 0x80cddf09 do_clone_file_range -EXPORT_SYMBOL vmlinux 0x80cef7f9 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x80cb0677 phy_init_hw EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq -EXPORT_SYMBOL vmlinux 0x80fdbf6e scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x80febf24 bio_kmalloc -EXPORT_SYMBOL vmlinux 0x810eb769 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x80f186e0 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x80f6a408 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x80fa82ec blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x80fafc8e jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x8102e765 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x8104c82d mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x810ea592 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x8116fdd8 lookup_one_len EXPORT_SYMBOL vmlinux 0x81188c30 match_string -EXPORT_SYMBOL vmlinux 0x811a1c88 _dev_warn -EXPORT_SYMBOL vmlinux 0x81326049 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x812afd78 vm_map_ram +EXPORT_SYMBOL vmlinux 0x8131ccd1 __scm_send +EXPORT_SYMBOL vmlinux 0x8134ca7d tcp_init_sock +EXPORT_SYMBOL vmlinux 0x813fd478 __folio_alloc EXPORT_SYMBOL vmlinux 0x81491054 security_binder_transaction -EXPORT_SYMBOL vmlinux 0x814c56c8 tcp_sock_set_keepintvl EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x8157daf0 jbd2_fc_wait_bufs EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page -EXPORT_SYMBOL vmlinux 0x816b612c netdev_offload_xstats_enable -EXPORT_SYMBOL vmlinux 0x817cb0e4 setattr_prepare +EXPORT_SYMBOL vmlinux 0x816997dc vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x816c0278 fman_set_port_params EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x8186333b cpumask_next_wrap EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x818fc69e fman_bind EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand -EXPORT_SYMBOL vmlinux 0x81b32f1b tcf_idrinfo_destroy -EXPORT_SYMBOL vmlinux 0x81b81176 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x81c46658 kmalloc_trace EXPORT_SYMBOL vmlinux 0x81c51d19 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x81cc3dac scsi_device_resume +EXPORT_SYMBOL vmlinux 0x81ceb712 make_kgid EXPORT_SYMBOL vmlinux 0x81d6c28b acpi_buffer_to_resource EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dd9827 gnet_stats_start_copy_compat EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info -EXPORT_SYMBOL vmlinux 0x81fd4808 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x820fc85f arp_send -EXPORT_SYMBOL vmlinux 0x821873e4 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x81ec34c8 block_truncate_page +EXPORT_SYMBOL vmlinux 0x81ecee7c free_netdev +EXPORT_SYMBOL vmlinux 0x81ef0753 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x8207d14d of_device_register +EXPORT_SYMBOL vmlinux 0x8231237d skb_seq_read EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock -EXPORT_SYMBOL vmlinux 0x823e90dd file_fdatawait_range -EXPORT_SYMBOL vmlinux 0x823f3f12 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x823f6d07 vlan_dev_vlan_proto -EXPORT_SYMBOL vmlinux 0x824dfa24 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x8257f100 finish_no_open -EXPORT_SYMBOL vmlinux 0x825861c3 jbd2_journal_errno EXPORT_SYMBOL vmlinux 0x825971ad phy_mipi_dphy_get_default_config_for_hsclk -EXPORT_SYMBOL vmlinux 0x8269d439 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x8289b9be mmc_gpio_set_cd_irq -EXPORT_SYMBOL vmlinux 0x82b61501 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x8260d842 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x8270274d remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x82971497 register_mii_timestamper EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes -EXPORT_SYMBOL vmlinux 0x82ed6d39 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x82d337ab i2c_transfer EXPORT_SYMBOL vmlinux 0x82ee90dc timer_delete_sync -EXPORT_SYMBOL vmlinux 0x82f013af mr_table_dump -EXPORT_SYMBOL vmlinux 0x83066851 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x830bd8a4 ethtool_rx_flow_rule_create -EXPORT_SYMBOL vmlinux 0x8329155b pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x8332f001 blk_mq_delay_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x8338109e tcf_idr_release +EXPORT_SYMBOL vmlinux 0x830d1a3c do_splice_direct +EXPORT_SYMBOL vmlinux 0x830f4e1f of_n_size_cells +EXPORT_SYMBOL vmlinux 0x831112e0 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x83298011 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x833de244 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle -EXPORT_SYMBOL vmlinux 0x8362ffbf __bforget -EXPORT_SYMBOL vmlinux 0x836fe68e par_io_of_config -EXPORT_SYMBOL vmlinux 0x8370bfbd bio_free_pages -EXPORT_SYMBOL vmlinux 0x8380265a sock_set_sndtimeo -EXPORT_SYMBOL vmlinux 0x8385840b ppp_unregister_compressor -EXPORT_SYMBOL vmlinux 0x838cb34b nd_dax_probe +EXPORT_SYMBOL vmlinux 0x83629802 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x8385c3e8 nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 -EXPORT_SYMBOL vmlinux 0x83ac0396 phy_set_sym_pause -EXPORT_SYMBOL vmlinux 0x83d6abd2 folio_migrate_flags -EXPORT_SYMBOL vmlinux 0x83e2192e dm_unregister_target -EXPORT_SYMBOL vmlinux 0x83e2389d crypto_kdf108_ctr_generate -EXPORT_SYMBOL vmlinux 0x83e30514 ipv6_dev_mc_inc -EXPORT_SYMBOL vmlinux 0x840e5ca0 tegra_ivc_write_get_next_frame -EXPORT_SYMBOL vmlinux 0x84435991 ethtool_aggregate_mac_stats -EXPORT_SYMBOL vmlinux 0x84492f6a cdev_add -EXPORT_SYMBOL vmlinux 0x84545a16 kill_anon_super -EXPORT_SYMBOL vmlinux 0x845e1dbd gnet_stats_copy_basic_hw -EXPORT_SYMBOL vmlinux 0x84629e6c pci_disable_msix -EXPORT_SYMBOL vmlinux 0x8475e8e3 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x839906dc msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x83ac2bfb register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x83b942b5 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x83ba65bc fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x83c7699b devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x83e0c7da ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x83f022ed unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x83f3880a devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x8413d239 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x8420ea90 md_done_sync +EXPORT_SYMBOL vmlinux 0x843fa953 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x8448b397 xfrm6_rcv EXPORT_SYMBOL vmlinux 0x847ce6cb mt_find_after -EXPORT_SYMBOL vmlinux 0x848029b4 fman_reset_mac EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy -EXPORT_SYMBOL vmlinux 0x8490ac7e tcp_time_wait +EXPORT_SYMBOL vmlinux 0x8490cd3d tcf_exts_terse_dump EXPORT_SYMBOL vmlinux 0x84914079 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x8492e42c pci_release_region -EXPORT_SYMBOL vmlinux 0x84a00c66 sock_no_getname EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node -EXPORT_SYMBOL vmlinux 0x84a6b705 mmc_wait_for_cmd -EXPORT_SYMBOL vmlinux 0x84a86b4c pipe_unlock -EXPORT_SYMBOL vmlinux 0x84b54d61 fs_param_is_enum -EXPORT_SYMBOL vmlinux 0x84c17b34 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x84c84098 __cgroup_bpf_run_filter_skb -EXPORT_SYMBOL vmlinux 0x84e02bc4 phy_ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x84e6ccc0 netif_napi_add_weight -EXPORT_SYMBOL vmlinux 0x84f1e01f call_fib_notifiers -EXPORT_SYMBOL vmlinux 0x850a859c qman_start_using_portal -EXPORT_SYMBOL vmlinux 0x85116af2 console_force_preferred_locked -EXPORT_SYMBOL vmlinux 0x85116cd0 vm_map_pages +EXPORT_SYMBOL vmlinux 0x84a8bc50 seq_pad +EXPORT_SYMBOL vmlinux 0x84bfdbbb dev_driver_string +EXPORT_SYMBOL vmlinux 0x84ca483e __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x84cb5d78 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x84cb6880 bmap +EXPORT_SYMBOL vmlinux 0x84ce3a50 serio_reconnect +EXPORT_SYMBOL vmlinux 0x84d22934 phy_device_create +EXPORT_SYMBOL vmlinux 0x84d375b7 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x84d67f69 dquot_initialize +EXPORT_SYMBOL vmlinux 0x84eb511e crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x84ef3bd1 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x84f27905 inode_update_time EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base -EXPORT_SYMBOL vmlinux 0x852d02ab fscrypt_has_permitted_context -EXPORT_SYMBOL vmlinux 0x85319948 nvdimm_namespace_locked -EXPORT_SYMBOL vmlinux 0x853a5789 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x8525df3b param_set_byte +EXPORT_SYMBOL vmlinux 0x8532cc83 devm_arch_phys_wc_add EXPORT_SYMBOL vmlinux 0x85416d23 getname_kernel +EXPORT_SYMBOL vmlinux 0x8541f90d rproc_report_crash +EXPORT_SYMBOL vmlinux 0x85485333 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x854aa454 __serio_register_port +EXPORT_SYMBOL vmlinux 0x854b0b83 udp_flush_pending_frames EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x8568a3b6 inet_bind -EXPORT_SYMBOL vmlinux 0x856ca902 security_path_mknod -EXPORT_SYMBOL vmlinux 0x8574b2d9 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x8577a540 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x8576f508 drop_super EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85968577 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x859f3df6 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x85aa1c23 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x85ab8473 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x85ad47ac __netif_rx EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bb5577 mr_fill_mroute EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region -EXPORT_SYMBOL vmlinux 0x85d959f9 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x85bdbc0e __skb_checksum +EXPORT_SYMBOL vmlinux 0x85c9239b to_nd_pfn EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e53229 netlink_capable +EXPORT_SYMBOL vmlinux 0x85ee368b dev_uc_init EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn -EXPORT_SYMBOL vmlinux 0x85f3e99d get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x85f16ea0 no_seek_end_llseek_size EXPORT_SYMBOL vmlinux 0x85f596a4 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x860102a7 tcf_action_check_ctrlact -EXPORT_SYMBOL vmlinux 0x8604cc12 netpoll_poll_disable -EXPORT_SYMBOL vmlinux 0x860b04da __register_nls -EXPORT_SYMBOL vmlinux 0x86164b8b ip6_xmit +EXPORT_SYMBOL vmlinux 0x8609edec unregister_binfmt +EXPORT_SYMBOL vmlinux 0x86125eee remap_pfn_range +EXPORT_SYMBOL vmlinux 0x861fef20 udp_lib_unhash EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node -EXPORT_SYMBOL vmlinux 0x86308327 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x862fbb2a dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8630ad29 flow_rule_match_ipv4_addrs EXPORT_SYMBOL vmlinux 0x863a276a color_table -EXPORT_SYMBOL vmlinux 0x8641a138 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x863fb202 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x8640bd7b dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x86563371 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x8668f110 sockfd_lookup EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init -EXPORT_SYMBOL vmlinux 0x8683e1f3 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x867ceca2 rtc_add_group +EXPORT_SYMBOL vmlinux 0x86847142 fbcon_update_vcs EXPORT_SYMBOL vmlinux 0x868acba5 get_options -EXPORT_SYMBOL vmlinux 0x86d1b990 bdi_alloc +EXPORT_SYMBOL vmlinux 0x86b2f4ea nf_log_register +EXPORT_SYMBOL vmlinux 0x86bae3a0 input_release_device +EXPORT_SYMBOL vmlinux 0x86c3637d dev_remove_offload +EXPORT_SYMBOL vmlinux 0x86d50dbf kfree_skb_list_reason EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dcd253 xfrm_sad_getinfo EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable -EXPORT_SYMBOL vmlinux 0x86f8106b ihold EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x8707b508 prepare_to_swait_event -EXPORT_SYMBOL vmlinux 0x8709ca8f eth_header_parse_protocol -EXPORT_SYMBOL vmlinux 0x8711c088 inode_init_owner -EXPORT_SYMBOL vmlinux 0x871c0cba __traceiter_kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x8725fbca dev_uc_init -EXPORT_SYMBOL vmlinux 0x87497746 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x874b2b01 pci_restore_state -EXPORT_SYMBOL vmlinux 0x874ec186 fs_param_is_u32 -EXPORT_SYMBOL vmlinux 0x87540856 bio_copy_data_iter -EXPORT_SYMBOL vmlinux 0x875d4394 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x86fe62e4 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x87149391 param_get_charp +EXPORT_SYMBOL vmlinux 0x871d1675 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x8721ec57 __napi_schedule +EXPORT_SYMBOL vmlinux 0x87278e5e of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x8750f43d kernel_listen +EXPORT_SYMBOL vmlinux 0x8756d38f cros_ec_prepare_tx EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed -EXPORT_SYMBOL vmlinux 0x876ccdc6 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x877cedca xen_alloc_ballooned_pages EXPORT_SYMBOL vmlinux 0x87809aeb put_user_ifreq -EXPORT_SYMBOL vmlinux 0x878a8ee3 vme_irq_handler -EXPORT_SYMBOL vmlinux 0x87a1aa0c of_device_register EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a8a23f ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x87a9e247 __invalidate_device +EXPORT_SYMBOL vmlinux 0x87afe04a xfrm_register_type_offload EXPORT_SYMBOL vmlinux 0x87c8c92f dma_fence_match_context -EXPORT_SYMBOL vmlinux 0x87cf1df3 ata_print_version -EXPORT_SYMBOL vmlinux 0x87d482b1 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x880122d0 console_stop +EXPORT_SYMBOL vmlinux 0x87c906e0 kill_pid +EXPORT_SYMBOL vmlinux 0x87e339de __skb_get_hash +EXPORT_SYMBOL vmlinux 0x87e76869 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x87eaa4c4 phy_device_register +EXPORT_SYMBOL vmlinux 0x87f24bdd rproc_coredump_add_custom_segment EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit -EXPORT_SYMBOL vmlinux 0x8810cf95 __sk_mem_reclaim EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit -EXPORT_SYMBOL vmlinux 0x881c63f0 ps2_sliced_command -EXPORT_SYMBOL vmlinux 0x88208de7 get_task_cred -EXPORT_SYMBOL vmlinux 0x8821ac2e mmc_alloc_host -EXPORT_SYMBOL vmlinux 0x8834d27a in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x885921d3 tty_port_init -EXPORT_SYMBOL vmlinux 0x88633242 i2c_smbus_write_byte -EXPORT_SYMBOL vmlinux 0x886df246 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x887522ba tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x88762929 dst_dev_put -EXPORT_SYMBOL vmlinux 0x88783bfb sock_no_listen +EXPORT_SYMBOL vmlinux 0x88310dde lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x883878b7 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x8869fec2 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x88732679 __splice_from_pipe EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 -EXPORT_SYMBOL vmlinux 0x88920850 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x889c7402 phy_start_cable_test -EXPORT_SYMBOL vmlinux 0x88a2ff69 copy_splice_read -EXPORT_SYMBOL vmlinux 0x88ba701e dentry_path_raw -EXPORT_SYMBOL vmlinux 0x88be55fb iterate_dir -EXPORT_SYMBOL vmlinux 0x88da0117 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x88a2a64b eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x88a53c0b vfs_create +EXPORT_SYMBOL vmlinux 0x88b1e0aa tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x88c5eb71 import_single_range +EXPORT_SYMBOL vmlinux 0x88d143be tcf_idr_create_from_flags EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88de215f nvdimm_bus_unlock EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free -EXPORT_SYMBOL vmlinux 0x88e9a172 mmc_wait_for_req_done -EXPORT_SYMBOL vmlinux 0x88ee158f xp_dma_sync_for_cpu_slow -EXPORT_SYMBOL vmlinux 0x88fde73c simple_rename -EXPORT_SYMBOL vmlinux 0x890e3229 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x89144f66 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x88e7649b __breadahead +EXPORT_SYMBOL vmlinux 0x88e909cb tcp_poll +EXPORT_SYMBOL vmlinux 0x88f4a9d9 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x88f61de2 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x88fcba4e ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x8912779d flow_rule_match_eth_addrs EXPORT_SYMBOL vmlinux 0x891dbb8f sgl_free_order +EXPORT_SYMBOL vmlinux 0x892135ed filemap_check_errors +EXPORT_SYMBOL vmlinux 0x892298cd uart_register_driver EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy -EXPORT_SYMBOL vmlinux 0x896d27f2 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x896f8eab serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x8982e30f __sk_queue_drop_skb -EXPORT_SYMBOL vmlinux 0x89866f50 stream_open -EXPORT_SYMBOL vmlinux 0x898f7ea4 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x894aea11 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x8951c4ba km_report +EXPORT_SYMBOL vmlinux 0x89552ec7 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x89581a70 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8959f79b dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x8960f1bf inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x89671888 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x897e3013 inode_query_iversion EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x8995cce6 d_find_alias -EXPORT_SYMBOL vmlinux 0x899fd9b1 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x89a4cb45 tty_port_open -EXPORT_SYMBOL vmlinux 0x89b0e367 release_sock -EXPORT_SYMBOL vmlinux 0x89c3ca0f tcp_sock_set_keepidle -EXPORT_SYMBOL vmlinux 0x89c772de vfs_getattr -EXPORT_SYMBOL vmlinux 0x89caaaf1 fb_find_mode -EXPORT_SYMBOL vmlinux 0x89d169f7 iget_locked -EXPORT_SYMBOL vmlinux 0x89e17be5 mipi_dsi_dcs_set_display_off -EXPORT_SYMBOL vmlinux 0x89e848cc tcf_chain_put_by_act -EXPORT_SYMBOL vmlinux 0x8a0999e6 fsync_bdev -EXPORT_SYMBOL vmlinux 0x8a213162 twl6040_reg_read -EXPORT_SYMBOL vmlinux 0x8a434250 elv_rb_find +EXPORT_SYMBOL vmlinux 0x899b826e alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x89b1e592 netdev_warn +EXPORT_SYMBOL vmlinux 0x89bb02ef mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x89cd96a7 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x89cfe6be acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x89dad088 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x8a1bd13e tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x8a238c31 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x8a23d4c1 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x8a34bd48 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x8a3735c6 input_reset_device +EXPORT_SYMBOL vmlinux 0x8a3f7965 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x8a423c5d phy_start EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state -EXPORT_SYMBOL vmlinux 0x8a5ad58b flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x8a4c6d2c of_find_compatible_node EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags -EXPORT_SYMBOL vmlinux 0x8a747d07 add_to_pipe -EXPORT_SYMBOL vmlinux 0x8a77916a cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x8a7122ba xfrm_lookup_with_ifid EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory EXPORT_SYMBOL vmlinux 0x8a833583 dma_fence_array_ops -EXPORT_SYMBOL vmlinux 0x8a8b3b37 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x8a8c4f37 mipi_dsi_dcs_write_buffer -EXPORT_SYMBOL vmlinux 0x8a93b89e path_has_submounts +EXPORT_SYMBOL vmlinux 0x8a8a8edb rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x8a8ef51a blk_mq_destroy_queue EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab EXPORT_SYMBOL vmlinux 0x8aaecd60 __put_cred -EXPORT_SYMBOL vmlinux 0x8ab3540b __folio_put -EXPORT_SYMBOL vmlinux 0x8ab69ead _dev_notice +EXPORT_SYMBOL vmlinux 0x8abe0ea8 rtnl_kfree_skbs EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation -EXPORT_SYMBOL vmlinux 0x8ad15c49 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x8af129b9 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x8afee786 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x8acba3f6 pps_register_source +EXPORT_SYMBOL vmlinux 0x8acc8866 sys_fillrect +EXPORT_SYMBOL vmlinux 0x8ad15585 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x8aea2a43 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x8aec2022 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x8af3886f twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x8af4c462 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x8af703fb xfrm_if_register_cb EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict -EXPORT_SYMBOL vmlinux 0x8b1abfe5 __block_write_begin -EXPORT_SYMBOL vmlinux 0x8b27ce26 i2c_find_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask -EXPORT_SYMBOL vmlinux 0x8b321dcd genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x8b3916e5 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x8b3b00e8 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x8b417a2a cookie_timestamp_decode -EXPORT_SYMBOL vmlinux 0x8b572574 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x8b5a5a98 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x8b0810c2 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x8b08b7c1 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x8b0cc425 init_task +EXPORT_SYMBOL vmlinux 0x8b17866a scsi_done_direct +EXPORT_SYMBOL vmlinux 0x8b223cd4 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x8b268cc1 kernel_accept +EXPORT_SYMBOL vmlinux 0x8b2d0ebf seq_bprintf +EXPORT_SYMBOL vmlinux 0x8b3303b5 put_cmsg_scm_timestamping EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid -EXPORT_SYMBOL vmlinux 0x8b6b92ec key_revoke EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b869fa0 md_register_thread +EXPORT_SYMBOL vmlinux 0x8b8faaed genphy_read_status_fixed EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b979229 cdrom_release EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup -EXPORT_SYMBOL vmlinux 0x8b9c218d tcp_check_req -EXPORT_SYMBOL vmlinux 0x8bc9a7c8 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x8bd07eff unregister_binfmt +EXPORT_SYMBOL vmlinux 0x8b9f61ec user_path_at_empty +EXPORT_SYMBOL vmlinux 0x8bb565b0 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x8bb780d2 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x8bb943c2 thread_group_exited +EXPORT_SYMBOL vmlinux 0x8bbac2ca cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x8bbcfb90 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x8bc5934a sock_recvmsg EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable -EXPORT_SYMBOL vmlinux 0x8bf50a9f copy_highpage -EXPORT_SYMBOL vmlinux 0x8c02687e xfrm_trans_queue_net -EXPORT_SYMBOL vmlinux 0x8c118fa0 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x8bf560e4 brioctl_set +EXPORT_SYMBOL vmlinux 0x8c00866b mini_qdisc_pair_swap EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x8c2e0a10 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x8c2ed212 tso_build_hdr EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound -EXPORT_SYMBOL vmlinux 0x8c399131 phy_attached_print -EXPORT_SYMBOL vmlinux 0x8c5a89a7 ip_tunnel_parse_protocol -EXPORT_SYMBOL vmlinux 0x8c65d534 unregister_mii_timestamper -EXPORT_SYMBOL vmlinux 0x8c6eb37c rproc_alloc -EXPORT_SYMBOL vmlinux 0x8c702073 __i2c_transfer -EXPORT_SYMBOL vmlinux 0x8c73078b dquot_drop +EXPORT_SYMBOL vmlinux 0x8c346aed pci_find_bus +EXPORT_SYMBOL vmlinux 0x8c3be2a3 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x8c4b0bbf pnp_device_attach +EXPORT_SYMBOL vmlinux 0x8c4dc28a cdev_set_parent +EXPORT_SYMBOL vmlinux 0x8c5b84dc of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x8c82c24a nf_setsockopt EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint -EXPORT_SYMBOL vmlinux 0x8c990483 flow_rule_match_enc_control EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error -EXPORT_SYMBOL vmlinux 0x8cab4847 d_hash_and_lookup EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid -EXPORT_SYMBOL vmlinux 0x8cb823d5 seq_puts -EXPORT_SYMBOL vmlinux 0x8cbcbd12 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x8cc4c3d6 tegra_ahb_enable_smmu EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin -EXPORT_SYMBOL vmlinux 0x8cc5fc12 mmc_can_trim -EXPORT_SYMBOL vmlinux 0x8cd1aeeb fman_port_get_device EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending -EXPORT_SYMBOL vmlinux 0x8cfafff2 get_tree_single -EXPORT_SYMBOL vmlinux 0x8d0d6a28 skb_checksum -EXPORT_SYMBOL vmlinux 0x8d1740f1 flow_rule_match_enc_ipv6_addrs -EXPORT_SYMBOL vmlinux 0x8d2dc9dc mipi_dsi_dcs_nop -EXPORT_SYMBOL vmlinux 0x8d302d86 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8d163010 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x8d1c102f dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x8d27218e nf_hook_slow EXPORT_SYMBOL vmlinux 0x8d33e672 __find_nth_andnot_bit EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var -EXPORT_SYMBOL vmlinux 0x8d4b75db __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x8d4ec7db inc_nlink -EXPORT_SYMBOL vmlinux 0x8d52d147 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x8d472b70 of_phy_connect +EXPORT_SYMBOL vmlinux 0x8d473de8 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x8d4d67aa acpi_processor_register_performance EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq -EXPORT_SYMBOL vmlinux 0x8d5c2bba flow_block_cb_decref -EXPORT_SYMBOL vmlinux 0x8d72e08d block_read_full_folio +EXPORT_SYMBOL vmlinux 0x8d5b20a9 tcp_close +EXPORT_SYMBOL vmlinux 0x8d6832c8 jbd2_journal_force_commit EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper -EXPORT_SYMBOL vmlinux 0x8d732a52 request_firmware_nowait -EXPORT_SYMBOL vmlinux 0x8d786822 __mdiobus_c45_read -EXPORT_SYMBOL vmlinux 0x8d791bec setattr_copy -EXPORT_SYMBOL vmlinux 0x8d9974cb tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x8da08592 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x8d7856d0 simple_link +EXPORT_SYMBOL vmlinux 0x8d988da3 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x8d9b31b2 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x8d9c981a address_space_init_once EXPORT_SYMBOL vmlinux 0x8dafaf22 hdmi_avi_infoframe_pack -EXPORT_SYMBOL vmlinux 0x8db7b19b __phy_resume -EXPORT_SYMBOL vmlinux 0x8dc8d22c noop_dirty_folio -EXPORT_SYMBOL vmlinux 0x8dca7a42 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x8ddd8363 cad_pid EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout -EXPORT_SYMBOL vmlinux 0x8de1c6f6 rproc_coredump_using_sections -EXPORT_SYMBOL vmlinux 0x8def9c0c copy_string_kernel EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null -EXPORT_SYMBOL vmlinux 0x8e05b596 filemap_fdatawait_range_keep_errors -EXPORT_SYMBOL vmlinux 0x8e12ccaa default_llseek -EXPORT_SYMBOL vmlinux 0x8e13287e sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x8dfead3f xattr_full_name +EXPORT_SYMBOL vmlinux 0x8dfefbfc from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x8e054269 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x8e08bfd1 kmem_cache_size EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy -EXPORT_SYMBOL vmlinux 0x8e29e789 dma_resv_iter_first_unlocked -EXPORT_SYMBOL vmlinux 0x8e3c6375 vm_iomap_memory EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable -EXPORT_SYMBOL vmlinux 0x8e452a49 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x8e4a73bf kset_register EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma -EXPORT_SYMBOL vmlinux 0x8e569f7e skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x8e8243d9 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x8e82b23a sk_reset_timer +EXPORT_SYMBOL vmlinux 0x8e514914 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x8e5b9dd3 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x8e5be316 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x8e6a1fd1 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x8e6daac0 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x8e732cbe mii_link_ok +EXPORT_SYMBOL vmlinux 0x8e7a4855 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x8e862855 netlink_unicast +EXPORT_SYMBOL vmlinux 0x8e87070a mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x8e8f9e68 finalize_exec EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid -EXPORT_SYMBOL vmlinux 0x8e983168 rproc_add_carveout -EXPORT_SYMBOL vmlinux 0x8eb8e1e6 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8ea455a2 to_nd_btt +EXPORT_SYMBOL vmlinux 0x8ea9153e configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x8eb2fbf9 pci_release_region +EXPORT_SYMBOL vmlinux 0x8ebc14a5 mmc_free_host +EXPORT_SYMBOL vmlinux 0x8ec0b33b neigh_app_ns +EXPORT_SYMBOL vmlinux 0x8ec0d7cc pci_bus_assign_resources EXPORT_SYMBOL vmlinux 0x8ec760b0 cgroup_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0x8ed19112 alloc_file_pseudo -EXPORT_SYMBOL vmlinux 0x8eeffaa6 __nd_driver_register -EXPORT_SYMBOL vmlinux 0x8ef22ddd thaw_bdev -EXPORT_SYMBOL vmlinux 0x8ef9cd42 unregister_netdev +EXPORT_SYMBOL vmlinux 0x8ed7aaaf ppp_channel_index +EXPORT_SYMBOL vmlinux 0x8eeea3da __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8ef06e04 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x8ef155c7 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x8ef927f9 skb_clone EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask -EXPORT_SYMBOL vmlinux 0x8f0de1fb sock_set_reuseport -EXPORT_SYMBOL vmlinux 0x8f151ea2 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x8f28d8b7 filemap_flush -EXPORT_SYMBOL vmlinux 0x8f31d668 sock_bindtoindex -EXPORT_SYMBOL vmlinux 0x8f4af28c generic_permission -EXPORT_SYMBOL vmlinux 0x8f4b84e6 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x8f633f51 param_get_invbool -EXPORT_SYMBOL vmlinux 0x8f67966f read_cache_page -EXPORT_SYMBOL vmlinux 0x8f923c47 param_get_hexint -EXPORT_SYMBOL vmlinux 0x8f97cac0 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x8f10a4f0 param_get_ullong +EXPORT_SYMBOL vmlinux 0x8f1665f8 eth_type_trans +EXPORT_SYMBOL vmlinux 0x8f19501f con_is_visible +EXPORT_SYMBOL vmlinux 0x8f2db00b ping_prot +EXPORT_SYMBOL vmlinux 0x8f2ebc89 skb_condense +EXPORT_SYMBOL vmlinux 0x8f3ecb82 make_bad_inode +EXPORT_SYMBOL vmlinux 0x8f44a613 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x8f751c4d dev_uc_add +EXPORT_SYMBOL vmlinux 0x8f7a610f i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x8f971ff8 sock_set_rcvbuf EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find -EXPORT_SYMBOL vmlinux 0x8fbda110 file_update_time -EXPORT_SYMBOL vmlinux 0x8fc14933 udp_read_skb -EXPORT_SYMBOL vmlinux 0x8fc9127b mdiobus_free +EXPORT_SYMBOL vmlinux 0x8faa12cc dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x8fbb82a6 devfreq_register_notifier EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content -EXPORT_SYMBOL vmlinux 0x8fce0777 sk_page_frag_refill EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush -EXPORT_SYMBOL vmlinux 0x900698e5 serio_unregister_driver -EXPORT_SYMBOL vmlinux 0x9010f8cc lookup_one_qstr_excl +EXPORT_SYMBOL vmlinux 0x90073c25 ip_output +EXPORT_SYMBOL vmlinux 0x9008a660 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x902065bf neigh_event_ns +EXPORT_SYMBOL vmlinux 0x9023eb6d sk_error_report EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy -EXPORT_SYMBOL vmlinux 0x9046609f folio_end_private_2 -EXPORT_SYMBOL vmlinux 0x90477fbe neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x904bbef6 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x90351c54 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x90362151 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x903e2bc4 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x904436b7 free_buffer_head EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user -EXPORT_SYMBOL vmlinux 0x906cb623 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x9062f318 scsi_execute_cmd +EXPORT_SYMBOL vmlinux 0x906abd98 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x906e1b09 md_write_start +EXPORT_SYMBOL vmlinux 0x906ff5dd ppp_unit_number +EXPORT_SYMBOL vmlinux 0x90746ec5 mdiobus_free +EXPORT_SYMBOL vmlinux 0x9084abcb i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x90921cb8 devm_nvmem_cell_put EXPORT_SYMBOL vmlinux 0x9092defd proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x909ff264 tcp_req_err -EXPORT_SYMBOL vmlinux 0x90a32499 tegra_dfll_resume -EXPORT_SYMBOL vmlinux 0x90c41be5 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x90c747bc sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x90d9f626 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x90f20a56 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x9102077b input_reset_device -EXPORT_SYMBOL vmlinux 0x910c1cb9 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x9097b2e1 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x909fb1a8 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x90b23bb1 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x90b43aea sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x90bcb9d1 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x90d595a3 clear_nlink +EXPORT_SYMBOL vmlinux 0x90f4ee24 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x9100f0de __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x91072fd8 rio_query_mport +EXPORT_SYMBOL vmlinux 0x910f4e3b param_get_bool +EXPORT_SYMBOL vmlinux 0x911075bb mmc_alloc_host EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc -EXPORT_SYMBOL vmlinux 0x912b1911 mipi_dsi_set_maximum_return_packet_size -EXPORT_SYMBOL vmlinux 0x913d2d52 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x91163704 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x912ccc1f shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x912d7ff9 dcb_delrewr +EXPORT_SYMBOL vmlinux 0x913665bb mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x913d3df4 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x914fe3d4 elv_rb_del +EXPORT_SYMBOL vmlinux 0x91539be3 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x91640335 mr_mfc_find_any_parent EXPORT_SYMBOL vmlinux 0x9166fada strncpy EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x916d3adc md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x91755cbe seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x917e681b neigh_for_each +EXPORT_SYMBOL vmlinux 0x91896cea put_watch_queue +EXPORT_SYMBOL vmlinux 0x91899e7b folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x919a6974 noop_llseek EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919ccce2 dst_discard_out EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x91a5ff95 phy_validate_pause EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove -EXPORT_SYMBOL vmlinux 0x91ae25e1 set_capacity EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz -EXPORT_SYMBOL vmlinux 0x91e912ab begin_new_exec EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x92026be0 folio_wait_private_2 -EXPORT_SYMBOL vmlinux 0x9204625d of_device_is_available -EXPORT_SYMBOL vmlinux 0x92088648 devm_clk_get -EXPORT_SYMBOL vmlinux 0x920c4730 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x92149757 mipi_dsi_dcs_set_page_address -EXPORT_SYMBOL vmlinux 0x921943c7 d_drop +EXPORT_SYMBOL vmlinux 0x91fbc9e1 tls_client_hello_anon +EXPORT_SYMBOL vmlinux 0x91fd8268 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x9214b65c __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0x9228b7e9 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x922bfd9b netpoll_print_options EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get -EXPORT_SYMBOL vmlinux 0x9245222f sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x925215c8 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x924225d8 scsi_done EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only EXPORT_SYMBOL vmlinux 0x926ca7b7 vm_event_states -EXPORT_SYMBOL vmlinux 0x92763ddd param_ops_uint +EXPORT_SYMBOL vmlinux 0x9272f515 submit_bio_noacct EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool -EXPORT_SYMBOL vmlinux 0x927fb598 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x92843260 ppp_input_error +EXPORT_SYMBOL vmlinux 0x928059c2 tcp_v4_send_check EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user EXPORT_SYMBOL vmlinux 0x929878b2 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x9299ae63 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x929a340d phy_attached_print +EXPORT_SYMBOL vmlinux 0x929c1013 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x929d8956 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x92a055b4 tcf_em_tree_validate EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name EXPORT_SYMBOL vmlinux 0x92c856a3 iwe_stream_add_event EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq -EXPORT_SYMBOL vmlinux 0x92da4b8e dev_addr_del EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs -EXPORT_SYMBOL vmlinux 0x92f3f323 amba_request_regions -EXPORT_SYMBOL vmlinux 0x92f782ae cdrom_open +EXPORT_SYMBOL vmlinux 0x92f0d614 ipv6_dev_find EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x9302d1aa __sock_queue_rcv_skb EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get -EXPORT_SYMBOL vmlinux 0x93063c70 ppp_unregister_channel -EXPORT_SYMBOL vmlinux 0x930d9248 rtnl_kfree_skbs -EXPORT_SYMBOL vmlinux 0x9321235c dmaengine_get_unmap_data -EXPORT_SYMBOL vmlinux 0x9324bb02 skb_unlink -EXPORT_SYMBOL vmlinux 0x93336ba0 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x935d866a tty_do_resize -EXPORT_SYMBOL vmlinux 0x9361302f sock_alloc +EXPORT_SYMBOL vmlinux 0x93066107 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x930bbd6d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x932c12b2 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x9334be35 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x93366edb tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x9344eae2 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x9358b9ce vfs_symlink EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid -EXPORT_SYMBOL vmlinux 0x9390af70 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x93783967 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x93828fa3 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x939005de fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x93a45d1a thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule -EXPORT_SYMBOL vmlinux 0x93b10c40 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x93a9c4b7 xfrm_state_unregister_afinfo EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x93ca1a13 neigh_for_each +EXPORT_SYMBOL vmlinux 0x93b5caab dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x93cc5b65 logfc EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all -EXPORT_SYMBOL vmlinux 0x93ebfd3a xfrm_register_type_offload -EXPORT_SYMBOL vmlinux 0x93f0bb1d vmf_insert_pfn_prot -EXPORT_SYMBOL vmlinux 0x93f9fcb5 dma_resv_reserve_fences -EXPORT_SYMBOL vmlinux 0x9415855d mii_nway_restart +EXPORT_SYMBOL vmlinux 0x93dd4d9c netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x93f8e767 set_binfmt +EXPORT_SYMBOL vmlinux 0x93fd7f85 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x93fe0959 netdev_info +EXPORT_SYMBOL vmlinux 0x941a95a7 eth_header_cache_update EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x94451b8c simple_statfs +EXPORT_SYMBOL vmlinux 0x9448b6fa tcf_exts_validate EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked -EXPORT_SYMBOL vmlinux 0x946698cc xfrm6_rcv_tnl -EXPORT_SYMBOL vmlinux 0x946bc0de udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x947a63e3 twl6040_get_vibralr_status -EXPORT_SYMBOL vmlinux 0x94859550 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x9473cdc7 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x9494e35c tegra_ahb_enable_smmu EXPORT_SYMBOL vmlinux 0x94961283 vunmap -EXPORT_SYMBOL vmlinux 0x94b43cf3 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x94a85389 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x94a95676 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x94ac752e pci_dev_put EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x94c03730 __register_chrdev -EXPORT_SYMBOL vmlinux 0x94d6a2c8 pps_lookup_dev -EXPORT_SYMBOL vmlinux 0x94e039f4 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x950407cd dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x94e48537 netdev_change_features +EXPORT_SYMBOL vmlinux 0x94efa6f0 input_handler_for_each_handle EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user -EXPORT_SYMBOL vmlinux 0x950dc9f4 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x95125563 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x9512fde6 register_mii_tstamp_controller -EXPORT_SYMBOL vmlinux 0x9518193f scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x95229a41 fman_get_revision -EXPORT_SYMBOL vmlinux 0x952ab299 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x95219fac csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x95252485 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x953484d6 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x9534fd2a pci_write_config_word +EXPORT_SYMBOL vmlinux 0x953c8e42 tcp_ioctl EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp -EXPORT_SYMBOL vmlinux 0x9541e4de __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x9546ae5b netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x9541809d inet_protos +EXPORT_SYMBOL vmlinux 0x9548d56a rproc_alloc EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc EXPORT_SYMBOL vmlinux 0x954f099c idr_preload -EXPORT_SYMBOL vmlinux 0x955a0fd3 sock_from_file -EXPORT_SYMBOL vmlinux 0x95714e91 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x95729cce scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x957afdc0 blkdev_get_by_dev EXPORT_SYMBOL vmlinux 0x957c9ebf neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x957e180b netif_receive_skb -EXPORT_SYMBOL vmlinux 0x9582341a napi_get_frags -EXPORT_SYMBOL vmlinux 0x9588abf2 __SetPageMovable -EXPORT_SYMBOL vmlinux 0x959bc3e0 block_write_full_page +EXPORT_SYMBOL vmlinux 0x958401b4 proc_set_size +EXPORT_SYMBOL vmlinux 0x958b8fda stop_tty +EXPORT_SYMBOL vmlinux 0x959bb0fb __dquot_transfer EXPORT_SYMBOL vmlinux 0x959c9b73 __tracepoint_spi_transfer_stop -EXPORT_SYMBOL vmlinux 0x959e6cae fput +EXPORT_SYMBOL vmlinux 0x959fe785 mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0x95a07bb5 acpi_execute_reg_methods -EXPORT_SYMBOL vmlinux 0x95a42c42 __hw_addr_unsync_dev EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table -EXPORT_SYMBOL vmlinux 0x95eae3d7 vfs_parse_fs_param -EXPORT_SYMBOL vmlinux 0x9638c5a5 irq_domain_set_info -EXPORT_SYMBOL vmlinux 0x963f0cdf blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x965b48c0 pci_write_config_word -EXPORT_SYMBOL vmlinux 0x966f7dad serio_bus -EXPORT_SYMBOL vmlinux 0x9676038d netdev_get_by_index +EXPORT_SYMBOL vmlinux 0x95b181ac pid_task +EXPORT_SYMBOL vmlinux 0x95db9b7f sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x95ef93c0 dquot_file_open +EXPORT_SYMBOL vmlinux 0x95f92b82 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x960cd139 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x9620a64d pnp_device_detach +EXPORT_SYMBOL vmlinux 0x9624b189 deactivate_super +EXPORT_SYMBOL vmlinux 0x9627994e xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x9633ce8b vfs_setpos +EXPORT_SYMBOL vmlinux 0x96357b26 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x964e42f2 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x96526a06 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x965281c8 pin_user_pages +EXPORT_SYMBOL vmlinux 0x965e5407 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x96708028 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x96711f7d scsi_host_get EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x96880ea5 file_check_and_advance_wb_err EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr -EXPORT_SYMBOL vmlinux 0x96a64fcf blk_mq_kick_requeue_list EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp -EXPORT_SYMBOL vmlinux 0x96c0858e __traceiter_mmap_lock_start_locking EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode -EXPORT_SYMBOL vmlinux 0x96c3cddc thermal_zone_device_critical EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string -EXPORT_SYMBOL vmlinux 0x96dda8b8 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x96d908b6 ethtool_aggregate_phy_stats EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo -EXPORT_SYMBOL vmlinux 0x96ec94d7 of_mdiobus_child_is_phy -EXPORT_SYMBOL vmlinux 0x96f19bcf rproc_boot EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top -EXPORT_SYMBOL vmlinux 0x97005af1 of_get_next_child -EXPORT_SYMBOL vmlinux 0x97016f73 set_page_dirty -EXPORT_SYMBOL vmlinux 0x970aacf3 ping_prot -EXPORT_SYMBOL vmlinux 0x970d12be lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x971bc62f do_SAK -EXPORT_SYMBOL vmlinux 0x972cf1bc netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x973ca0d8 param_set_invbool +EXPORT_SYMBOL vmlinux 0x96fc19da scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x96fc2179 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x97024697 km_policy_notify +EXPORT_SYMBOL vmlinux 0x970b01c3 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x973a8254 key_validate EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x974ef2ab noop_fsync -EXPORT_SYMBOL vmlinux 0x979661ff qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x974d082c generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x9757036b i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x97651e87 tty_name +EXPORT_SYMBOL vmlinux 0x9767356a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x976b8ad3 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x9773d639 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x9786936f iget_locked +EXPORT_SYMBOL vmlinux 0x9791650a page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x979d7247 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x97a38b03 handshake_genl_put EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b1de99 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x97b57382 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x97b63fde phy_connect EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x97bfa366 __folio_batch_release -EXPORT_SYMBOL vmlinux 0x97bfbaf1 __check_sticky -EXPORT_SYMBOL vmlinux 0x97c577ab notify_change -EXPORT_SYMBOL vmlinux 0x97cc30b0 __alloc_pages -EXPORT_SYMBOL vmlinux 0x97dac1a3 sk_capable -EXPORT_SYMBOL vmlinux 0x97fd470f ptp_schedule_worker -EXPORT_SYMBOL vmlinux 0x980607c0 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x9809ad3f seq_release -EXPORT_SYMBOL vmlinux 0x9817b453 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x97c80e18 fman_port_bind +EXPORT_SYMBOL vmlinux 0x97d43ce8 serio_close +EXPORT_SYMBOL vmlinux 0x97d54020 uart_match_port +EXPORT_SYMBOL vmlinux 0x97ef0da6 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x97f312de padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x9815bbcd __getblk_gfp +EXPORT_SYMBOL vmlinux 0x98184a1c locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x98292535 vlan_dev_vlan_proto EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask -EXPORT_SYMBOL vmlinux 0x9834cc0f tls_client_hello_anon -EXPORT_SYMBOL vmlinux 0x983715ed param_ops_ushort -EXPORT_SYMBOL vmlinux 0x983d413c i2c_register_driver -EXPORT_SYMBOL vmlinux 0x98435e3b param_ops_short +EXPORT_SYMBOL vmlinux 0x983476b5 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x98360f09 md_bitmap_unplug_async +EXPORT_SYMBOL vmlinux 0x983649f8 nf_log_unset +EXPORT_SYMBOL vmlinux 0x983e7058 rpmh_write EXPORT_SYMBOL vmlinux 0x98555a05 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x98563e3f setattr_prepare EXPORT_SYMBOL vmlinux 0x9858f364 get_random_u8 -EXPORT_SYMBOL vmlinux 0x985e8474 inode_io_list_del -EXPORT_SYMBOL vmlinux 0x985f11f9 dst_destroy -EXPORT_SYMBOL vmlinux 0x98647a39 fb_get_mode -EXPORT_SYMBOL vmlinux 0x986c3e45 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x9875e9d6 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x9880b595 tegra_ivc_write_advance -EXPORT_SYMBOL vmlinux 0x98875744 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x9864eb00 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x9866a74f tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x986a5319 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x98a90b0b netdev_bonding_info_change EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98c99de3 tty_kref_put EXPORT_SYMBOL vmlinux 0x98cb878e proc_dobool EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen -EXPORT_SYMBOL vmlinux 0x98d34855 pci_set_master +EXPORT_SYMBOL vmlinux 0x98dfc76d dquot_get_next_dqblk EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning -EXPORT_SYMBOL vmlinux 0x98f6e7d1 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x99021185 netdev_offload_xstats_push_delta EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available -EXPORT_SYMBOL vmlinux 0x9922c906 inet_frag_reasm_prepare -EXPORT_SYMBOL vmlinux 0x992612f1 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x9912378a path_put +EXPORT_SYMBOL vmlinux 0x99178c5e single_open EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x993639d1 tcp_v4_conn_request EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier -EXPORT_SYMBOL vmlinux 0x994fa68c key_task_permission +EXPORT_SYMBOL vmlinux 0x9943860c udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x994c1401 phy_print_status EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x995f2bad dquot_file_open -EXPORT_SYMBOL vmlinux 0x9965a8bc skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x99867dca security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x9964e0a9 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x99718fc6 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x99778554 dev_get_flags +EXPORT_SYMBOL vmlinux 0x9984b631 pcim_pin_device EXPORT_SYMBOL vmlinux 0x999e8297 vfree -EXPORT_SYMBOL vmlinux 0x99a5cb75 generic_fill_statx_attr -EXPORT_SYMBOL vmlinux 0x99bf0714 d_instantiate -EXPORT_SYMBOL vmlinux 0x99bf6c94 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x99a5dd9a pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x99aa81d7 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x99b8e7b8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x99bf40bf eth_gro_receive EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d49b03 no_seek_end_llseek EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node -EXPORT_SYMBOL vmlinux 0x99daf737 lookup_one -EXPORT_SYMBOL vmlinux 0x99ebcd6a km_state_notify -EXPORT_SYMBOL vmlinux 0x99f1c9d0 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x99f7072a ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x99dd0636 unregister_md_personality EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align -EXPORT_SYMBOL vmlinux 0x9a09ce10 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x9a12d007 mipi_dsi_device_unregister -EXPORT_SYMBOL vmlinux 0x9a137140 inode_init_always +EXPORT_SYMBOL vmlinux 0x99ff0ec4 skb_find_text +EXPORT_SYMBOL vmlinux 0x9a1bdf0d mdiobb_read_c45 EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x9a4f3797 mmc_command_done -EXPORT_SYMBOL vmlinux 0x9a51f6a1 set_posix_acl +EXPORT_SYMBOL vmlinux 0x9a385858 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x9a3891a9 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x9a3fd41f tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x9a53e966 netpoll_send_udp EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk -EXPORT_SYMBOL vmlinux 0x9a5aa03f ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x9a5e3a2c iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x9a6b9ae6 devm_kvasprintf EXPORT_SYMBOL vmlinux 0x9a6e3380 tegra_io_pad_power_enable -EXPORT_SYMBOL vmlinux 0x9a71490f pci_enable_wake -EXPORT_SYMBOL vmlinux 0x9a8d4db1 rproc_free -EXPORT_SYMBOL vmlinux 0x9a994ce7 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x9a9f654f remove_proc_entry +EXPORT_SYMBOL vmlinux 0x9a7e45ea scsi_register_interface +EXPORT_SYMBOL vmlinux 0x9a8d0513 uart_resume_port +EXPORT_SYMBOL vmlinux 0x9aa3f27c insert_inode_locked EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns -EXPORT_SYMBOL vmlinux 0x9ac67f3f vm_insert_page +EXPORT_SYMBOL vmlinux 0x9ad84e4b __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x9ae2b172 inet_put_port EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit -EXPORT_SYMBOL vmlinux 0x9aee243e netif_device_detach -EXPORT_SYMBOL vmlinux 0x9af2445d set_user_nice -EXPORT_SYMBOL vmlinux 0x9b06ea5e __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x9b09bcb2 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x9ae674d2 dquot_destroy +EXPORT_SYMBOL vmlinux 0x9ae95eba hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x9afe94a0 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x9b025c4c locks_remove_posix +EXPORT_SYMBOL vmlinux 0x9b092bf7 elv_bio_merge_ok EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1cd04f __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x9b1d92ad thaw_super EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b3262f8 fault_in_iov_iter_readable EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier -EXPORT_SYMBOL vmlinux 0x9b43bd7c mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x9b340b10 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x9b37f620 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x9b3bba32 d_prune_aliases EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x9b52c495 discard_new_inode -EXPORT_SYMBOL vmlinux 0x9b53b26a __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x9b6768cd of_graph_parse_endpoint -EXPORT_SYMBOL vmlinux 0x9b6b65e7 netdev_unbind_sb_channel EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b6e7464 remove_watch_from_object EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x9b8151ef tty_register_device -EXPORT_SYMBOL vmlinux 0x9b871adf __scm_send -EXPORT_SYMBOL vmlinux 0x9b91816e scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x9ba03b61 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x9be5738b __blk_mq_alloc_disk -EXPORT_SYMBOL vmlinux 0x9c0ba3da alloc_fddidev +EXPORT_SYMBOL vmlinux 0x9b95518b udp_set_csum +EXPORT_SYMBOL vmlinux 0x9bbbca17 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x9bfd41f4 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x9c094db8 simple_fill_super +EXPORT_SYMBOL vmlinux 0x9c111bfb xfrm_input_resume EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node -EXPORT_SYMBOL vmlinux 0x9c17b5be locks_lock_inode_wait EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x9c42c6d9 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x9c4a37b2 ethtool_aggregate_ctrl_stats +EXPORT_SYMBOL vmlinux 0x9c2acd9e free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x9c43e1b0 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x9c51c1da block_is_partially_uptodate EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5a34b0 vfs_dedupe_file_range EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 -EXPORT_SYMBOL vmlinux 0x9c7cfbe4 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x9c865ea1 proto_register +EXPORT_SYMBOL vmlinux 0x9c6213a6 cad_pid +EXPORT_SYMBOL vmlinux 0x9c77e3cd of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x9c7b86c1 mii_ethtool_set_link_ksettings EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags EXPORT_SYMBOL vmlinux 0x9c9aa3b9 parse_int_array_user -EXPORT_SYMBOL vmlinux 0x9ca2bddb tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x9c9b6f80 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x9ca8f9a6 __devm_of_mdiobus_register EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cac22be regset_get +EXPORT_SYMBOL vmlinux 0x9cc26007 fs_param_is_string EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute -EXPORT_SYMBOL vmlinux 0x9ccfcd5c jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x9cd50ae6 dev_kfree_skb_irq_reason EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net -EXPORT_SYMBOL vmlinux 0x9ce58c7f drop_super_exclusive -EXPORT_SYMBOL vmlinux 0x9d0adb16 param_ops_string +EXPORT_SYMBOL vmlinux 0x9cf6b0ed mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x9d0349b6 pcibus_to_node EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0fa6aa phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x9d12294a ip6_output EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key -EXPORT_SYMBOL vmlinux 0x9d33483a copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x9d3a19fc blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x9d40029d napi_schedule_prep -EXPORT_SYMBOL vmlinux 0x9d4d3868 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x9d568495 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x9d597c7c netdev_adjacent_change_commit EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x9d6dd941 mipi_dsi_dcs_set_display_brightness -EXPORT_SYMBOL vmlinux 0x9d8008ee tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x9d9155e1 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x9d64f68e fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x9d6d5fdc task_lookup_next_fd_rcu +EXPORT_SYMBOL vmlinux 0x9d761a2f pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x9d87dd2d fifo_set_limit +EXPORT_SYMBOL vmlinux 0x9d928e3f blk_rq_map_integrity_sg EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x9daff8e6 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x9dc2063a nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x9d931973 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x9d95ee5b tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x9db9bf4c mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x9dbcb1ff mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x9dd0589b xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x9dd1e1df simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0x9dd9df13 dm_kcopyd_client_create -EXPORT_SYMBOL vmlinux 0x9dda1583 __vfs_getxattr EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel EXPORT_SYMBOL vmlinux 0x9df995fb stack_depot_set_extra_bits -EXPORT_SYMBOL vmlinux 0x9e027a5d simple_dir_inode_operations EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 -EXPORT_SYMBOL vmlinux 0x9e11c8e1 dma_unmap_page_attrs EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle -EXPORT_SYMBOL vmlinux 0x9e22761e tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x9e16acaa padata_free +EXPORT_SYMBOL vmlinux 0x9e1c8c0d param_set_ullong +EXPORT_SYMBOL vmlinux 0x9e24b9b9 sk_ns_capable EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x9e2897e0 file_open_root -EXPORT_SYMBOL vmlinux 0x9e2d607e netlink_ack +EXPORT_SYMBOL vmlinux 0x9e396b0a vga_get +EXPORT_SYMBOL vmlinux 0x9e399c6f dquot_quota_off +EXPORT_SYMBOL vmlinux 0x9e4234c2 tty_port_put EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy -EXPORT_SYMBOL vmlinux 0x9e54c4fd uart_register_driver -EXPORT_SYMBOL vmlinux 0x9e5c3d58 __post_watch_notification -EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e5c600b unregister_mii_timestamper EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable -EXPORT_SYMBOL vmlinux 0x9e621fe4 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x9e622a94 mr_vif_seq_next -EXPORT_SYMBOL vmlinux 0x9e68d866 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x9e6d8ea7 wake_up_process -EXPORT_SYMBOL vmlinux 0x9e70cd10 file_ns_capable -EXPORT_SYMBOL vmlinux 0x9e732c0d sockopt_lock_sock -EXPORT_SYMBOL vmlinux 0x9e76ac50 tcp_md5_key_copy EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay -EXPORT_SYMBOL vmlinux 0x9e904c34 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x9e994ef4 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x9e91f96a of_graph_is_present +EXPORT_SYMBOL vmlinux 0x9e947b3b xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap -EXPORT_SYMBOL vmlinux 0x9ea8cef2 pci_dev_get -EXPORT_SYMBOL vmlinux 0x9eacf4e4 nd_btt_version EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup -EXPORT_SYMBOL vmlinux 0x9eaf3370 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x9eaf223b generic_delete_inode EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9ebfd6a9 mdiobb_write_c45 EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec3d493 pci_bus_size_bridges EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 -EXPORT_SYMBOL vmlinux 0x9ece50dd devfreq_update_target -EXPORT_SYMBOL vmlinux 0x9ed039af ppp_dev_name +EXPORT_SYMBOL vmlinux 0x9ecc1cfd dcache_readdir +EXPORT_SYMBOL vmlinux 0x9ece492b sk_ioctl EXPORT_SYMBOL vmlinux 0x9ed12e20 kmalloc_large -EXPORT_SYMBOL vmlinux 0x9ed5f9f6 fwnode_get_phy_id EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set -EXPORT_SYMBOL vmlinux 0x9ee934d3 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x9f20e860 mdiobus_read -EXPORT_SYMBOL vmlinux 0x9f269b09 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x9edd5cbf flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x9ef2575a netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x9ef98feb eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x9f2af10e kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x9f3c8a49 cpumask_any_distribute EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f48eac5 inode_get_bytes EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54280e lookup_one_len EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy -EXPORT_SYMBOL vmlinux 0x9f6be810 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x9f66397a dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x9f6ce311 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x9f6fc0b2 __skb_try_recv_datagram EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw -EXPORT_SYMBOL vmlinux 0x9f92c400 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x9f922504 param_set_short EXPORT_SYMBOL vmlinux 0x9f984513 strrchr EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x9fabc280 inet_sk_rx_dst_set EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta -EXPORT_SYMBOL vmlinux 0x9fbfed2a max8925_set_bits -EXPORT_SYMBOL vmlinux 0x9fc92039 mmc_detect_card_removed -EXPORT_SYMBOL vmlinux 0x9fc97d01 mr_table_alloc -EXPORT_SYMBOL vmlinux 0x9fcfe862 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x9fb6a43e flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x9fb9f641 genl_notify +EXPORT_SYMBOL vmlinux 0x9fc10734 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x9fcc95e8 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x9fd30e4c d_genocide EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x9fe469ff configfs_depend_item_unlocked -EXPORT_SYMBOL vmlinux 0x9fedecbc register_key_type EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce -EXPORT_SYMBOL vmlinux 0x9feffd67 i2c_smbus_write_i2c_block_data -EXPORT_SYMBOL vmlinux 0x9ff3e1ca get_unmapped_area +EXPORT_SYMBOL vmlinux 0x9ff66a9b pci_wake_from_d3 EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed -EXPORT_SYMBOL vmlinux 0xa01451af inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0xa0185594 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xa00f8c8c mmc_retune_timer_stop EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 -EXPORT_SYMBOL vmlinux 0xa0271972 twl6040_get_sysclk -EXPORT_SYMBOL vmlinux 0xa02a13ac phy_error EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa03163b4 __wait_on_buffer EXPORT_SYMBOL vmlinux 0xa033d747 next_arg EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0xa0472f2c ptp_cancel_worker_sync EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh -EXPORT_SYMBOL vmlinux 0xa05163a8 kmem_cache_destroy EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass -EXPORT_SYMBOL vmlinux 0xa0590fb5 sock_i_uid -EXPORT_SYMBOL vmlinux 0xa059a820 inet_proto_csum_replace_by_diff EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute -EXPORT_SYMBOL vmlinux 0xa06f94ed d_rehash -EXPORT_SYMBOL vmlinux 0xa079c4bd lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa06e96d2 xsk_uses_need_wakeup EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 -EXPORT_SYMBOL vmlinux 0xa0aec86e sb_set_blocksize -EXPORT_SYMBOL vmlinux 0xa0af937e md_integrity_register EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 -EXPORT_SYMBOL vmlinux 0xa0b097a2 __tcf_em_tree_match -EXPORT_SYMBOL vmlinux 0xa0b2b0ce inet6_protos -EXPORT_SYMBOL vmlinux 0xa0d14730 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xa0b8a7e5 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xa0bcc7ef blkdev_issue_discard EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0xa0dbd92f phy_suspend -EXPORT_SYMBOL vmlinux 0xa0ddf735 single_release +EXPORT_SYMBOL vmlinux 0xa0e201f0 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xa0e48342 pcim_enable_device EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check EXPORT_SYMBOL vmlinux 0xa0f10085 __sg_free_table -EXPORT_SYMBOL vmlinux 0xa0f148b0 submit_bh EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1072bc5 mipi_dsi_generic_read EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0xa109cfe7 scsi_register_interface EXPORT_SYMBOL vmlinux 0xa115da49 __tracepoint_kfree -EXPORT_SYMBOL vmlinux 0xa11dfef8 from_kprojid -EXPORT_SYMBOL vmlinux 0xa120afd0 tcp_md5_do_add -EXPORT_SYMBOL vmlinux 0xa13a7653 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0xa14a072b inet_stream_connect -EXPORT_SYMBOL vmlinux 0xa155383b d_prune_aliases -EXPORT_SYMBOL vmlinux 0xa15e51bb __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0xa1914434 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0xa193ce42 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0xa1aa6958 pci_assign_resource -EXPORT_SYMBOL vmlinux 0xa1e1b034 phy_get_eee_err -EXPORT_SYMBOL vmlinux 0xa1f5a1e6 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0xa20585f6 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xa1562698 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xa16e2e64 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xa18beffa vm_insert_page +EXPORT_SYMBOL vmlinux 0xa1a49d8f __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xa1d7a9bf devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xa1e2d74f inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xa2009558 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xa201def7 neigh_lookup EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp -EXPORT_SYMBOL vmlinux 0xa219efcc bio_integrity_alloc -EXPORT_SYMBOL vmlinux 0xa2259e5a fs_param_is_s32 -EXPORT_SYMBOL vmlinux 0xa230ac92 security_sk_clone +EXPORT_SYMBOL vmlinux 0xa2256569 param_ops_ullong EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa2366203 vfs_iocb_iter_write EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort -EXPORT_SYMBOL vmlinux 0xa2407e82 ps2_end_command -EXPORT_SYMBOL vmlinux 0xa2492245 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xa24867a7 udp_seq_start EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer -EXPORT_SYMBOL vmlinux 0xa275905b phy_device_remove -EXPORT_SYMBOL vmlinux 0xa27e1059 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0xa27f7372 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xa272f710 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0xa273b1a0 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xa278654a phy_do_ioctl EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active -EXPORT_SYMBOL vmlinux 0xa2a65b45 of_xudma_dev_get -EXPORT_SYMBOL vmlinux 0xa2a6c2bc input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0xa2b02082 phy_device_free -EXPORT_SYMBOL vmlinux 0xa2b721ed unix_attach_fds -EXPORT_SYMBOL vmlinux 0xa2be8bc4 request_partial_firmware_into_buf -EXPORT_SYMBOL vmlinux 0xa2c5ccb7 xfrm_dev_state_flush -EXPORT_SYMBOL vmlinux 0xa2cf0148 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xa2ba5275 genphy_c45_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xa2caad90 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xa2cdd44b file_fdatawait_range EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free -EXPORT_SYMBOL vmlinux 0xa2e25a22 build_skb -EXPORT_SYMBOL vmlinux 0xa3304a9b pci_fixup_device +EXPORT_SYMBOL vmlinux 0xa2de5d96 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xa2e50fc2 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xa2e86ba3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa2fadb90 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xa2fd76c0 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xa323ff9f tty_unthrottle +EXPORT_SYMBOL vmlinux 0xa336d39a mmc_hw_reset EXPORT_SYMBOL vmlinux 0xa3394ba7 nla_reserve -EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa33c410d start_tty EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np -EXPORT_SYMBOL vmlinux 0xa36e2465 jbd2_journal_grab_journal_head -EXPORT_SYMBOL vmlinux 0xa3766ca0 get_thermal_instance -EXPORT_SYMBOL vmlinux 0xa38366a9 of_translate_dma_region -EXPORT_SYMBOL vmlinux 0xa3a3bea2 security_skb_classify_flow -EXPORT_SYMBOL vmlinux 0xa3a84f84 set_page_writeback -EXPORT_SYMBOL vmlinux 0xa3ae0155 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xa37a2416 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xa397eb91 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xa3ad3ca3 copy_splice_read +EXPORT_SYMBOL vmlinux 0xa3b7a03a rproc_elf_sanity_check EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cdbc37 reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update -EXPORT_SYMBOL vmlinux 0xa3f13049 sock_ioctl_inout -EXPORT_SYMBOL vmlinux 0xa3f3c754 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0xa3f70bd8 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xa3d27010 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xa3ddc1d8 mnt_set_expiry EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40e1014 invalidate_disk EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0xa423f4a1 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0xa42a3408 inet_add_offload -EXPORT_SYMBOL vmlinux 0xa431cd59 mr_dump -EXPORT_SYMBOL vmlinux 0xa433450a simple_release_fs +EXPORT_SYMBOL vmlinux 0xa4242ea5 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xa42590a0 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xa4262cc1 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xa4397467 pskb_expand_head EXPORT_SYMBOL vmlinux 0xa440d121 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0xa446790d reuseport_has_conns_set EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key -EXPORT_SYMBOL vmlinux 0xa45a2234 phy_disconnect -EXPORT_SYMBOL vmlinux 0xa4602e01 inet_del_protocol -EXPORT_SYMBOL vmlinux 0xa462b411 __phy_write_mmd -EXPORT_SYMBOL vmlinux 0xa4794606 dma_fence_describe -EXPORT_SYMBOL vmlinux 0xa47eee71 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0xa4a73c61 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0xa4b9c4c2 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0xa4baa810 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xa4bbf0dc ip_options_compile -EXPORT_SYMBOL vmlinux 0xa4c77322 key_put -EXPORT_SYMBOL vmlinux 0xa4d41b38 is_nvdimm_bus_locked -EXPORT_SYMBOL vmlinux 0xa4dc220b generic_error_remove_page -EXPORT_SYMBOL vmlinux 0xa4f3e186 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0xa4f462ce memory_cgrp_subsys -EXPORT_SYMBOL vmlinux 0xa4f7d4f8 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa459a515 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xa47453dd tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xa47596f4 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xa4765e0e param_get_string +EXPORT_SYMBOL vmlinux 0xa4765f3b tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xa481a80b tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xa48f44fb netif_device_detach +EXPORT_SYMBOL vmlinux 0xa4b02471 pcie_capability_clear_and_set_word_unlocked +EXPORT_SYMBOL vmlinux 0xa4b61c1e mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xa4b9fb7d nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xa4c4fa07 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xa4dd6453 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xa4e1b564 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xa4f326bb netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xa4f695da simple_empty EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock -EXPORT_SYMBOL vmlinux 0xa4fd1824 nf_unregister_net_hooks -EXPORT_SYMBOL vmlinux 0xa50dc6ac mii_ethtool_gset -EXPORT_SYMBOL vmlinux 0xa50ffc3d proc_create_single_data -EXPORT_SYMBOL vmlinux 0xa51eb405 kernel_bind EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply -EXPORT_SYMBOL vmlinux 0xa54088dc pin_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0xa54a118d simple_get_link +EXPORT_SYMBOL vmlinux 0xa534ae2e kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xa53f22f6 dmam_free_coherent EXPORT_SYMBOL vmlinux 0xa54b9063 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0xa550bc0a tcf_em_register +EXPORT_SYMBOL vmlinux 0xa550eb6e serio_open EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color -EXPORT_SYMBOL vmlinux 0xa563f9ac csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0xa591ed5b mdiobb_read_c22 +EXPORT_SYMBOL vmlinux 0xa56daade phy_aneg_done +EXPORT_SYMBOL vmlinux 0xa582d33a key_invalidate EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock -EXPORT_SYMBOL vmlinux 0xa5b6e847 clk_get -EXPORT_SYMBOL vmlinux 0xa5bac0f1 dump_align -EXPORT_SYMBOL vmlinux 0xa5e93fa0 page_pool_destroy -EXPORT_SYMBOL vmlinux 0xa5ec6d2d dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0xa5f793e5 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask -EXPORT_SYMBOL vmlinux 0xa5f885e3 __tty_insert_flip_char -EXPORT_SYMBOL vmlinux 0xa5faf759 __scsi_add_device -EXPORT_SYMBOL vmlinux 0xa60e383c configfs_remove_default_groups -EXPORT_SYMBOL vmlinux 0xa60e648b clear_inode -EXPORT_SYMBOL vmlinux 0xa613d567 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xa59a03ef tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xa5a5068f mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xa5bc9c68 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xa5cac40e filemap_get_folios +EXPORT_SYMBOL vmlinux 0xa5e5158e scm_fp_dup +EXPORT_SYMBOL vmlinux 0xa5f60e2d copy_string_kernel EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab -EXPORT_SYMBOL vmlinux 0xa6234de2 sock_set_rcvbuf -EXPORT_SYMBOL vmlinux 0xa62375b2 sk_dst_check +EXPORT_SYMBOL vmlinux 0xa620119d i2c_register_driver +EXPORT_SYMBOL vmlinux 0xa621fa3c dquot_alloc EXPORT_SYMBOL vmlinux 0xa6257a2f complete -EXPORT_SYMBOL vmlinux 0xa62957e2 sockfd_lookup -EXPORT_SYMBOL vmlinux 0xa633c118 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xa63a91e5 netdev_core_stats_alloc EXPORT_SYMBOL vmlinux 0xa6457c89 hdmi_infoframe_pack EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get -EXPORT_SYMBOL vmlinux 0xa655d755 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xa65bb8c4 pm860x_set_bits EXPORT_SYMBOL vmlinux 0xa65c6def alt_cb_patch_nops -EXPORT_SYMBOL vmlinux 0xa67753c1 dump_skip_to +EXPORT_SYMBOL vmlinux 0xa66055f4 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0xa6690ac7 register_netdevice_notifier_net EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid -EXPORT_SYMBOL vmlinux 0xa6afae40 nonseekable_open -EXPORT_SYMBOL vmlinux 0xa6bb9efa __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0xa6d22c85 f_setown -EXPORT_SYMBOL vmlinux 0xa6da95d2 filemap_check_errors -EXPORT_SYMBOL vmlinux 0xa6dacd25 inode_maybe_inc_iversion +EXPORT_SYMBOL vmlinux 0xa6a6c5f2 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xa6cacc07 dev_add_offload +EXPORT_SYMBOL vmlinux 0xa6d13a60 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0xa6d32df5 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xa6ee2bd5 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xa702c624 done_path_create EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available EXPORT_SYMBOL vmlinux 0xa70ed9dc tcp_hashinfo -EXPORT_SYMBOL vmlinux 0xa716e591 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa7117490 inode_init_owner EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config -EXPORT_SYMBOL vmlinux 0xa71e0e54 mmc_erase EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa73a3dd2 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xa740f7b6 __f_setown EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock -EXPORT_SYMBOL vmlinux 0xa7652429 mipi_dsi_generic_read -EXPORT_SYMBOL vmlinux 0xa7682ba0 ethtool_notify +EXPORT_SYMBOL vmlinux 0xa75933a0 dst_dev_put +EXPORT_SYMBOL vmlinux 0xa7664a58 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xa772275c fput EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier -EXPORT_SYMBOL vmlinux 0xa78d96aa icmp_ndo_send -EXPORT_SYMBOL vmlinux 0xa7b358a8 sget_fc -EXPORT_SYMBOL vmlinux 0xa7ccf30a __block_write_full_folio +EXPORT_SYMBOL vmlinux 0xa788b877 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa793f537 bio_init +EXPORT_SYMBOL vmlinux 0xa796bc81 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy -EXPORT_SYMBOL vmlinux 0xa7eafd26 of_io_request_and_map EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper -EXPORT_SYMBOL vmlinux 0xa800f1aa d_add_ci -EXPORT_SYMBOL vmlinux 0xa82846e1 pskb_trim_rcsum_slow -EXPORT_SYMBOL vmlinux 0xa833bf03 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xa7f34b13 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xa7f85e37 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xa80c1c9a fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xa813439f truncate_setsize +EXPORT_SYMBOL vmlinux 0xa8201333 nd_btt_version +EXPORT_SYMBOL vmlinux 0xa8259a23 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xa8353266 phy_driver_register EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0xa8469d60 refresh_frequency_limits -EXPORT_SYMBOL vmlinux 0xa84bfbde blk_get_queue EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84ffee3 page_mapping EXPORT_SYMBOL vmlinux 0xa853396b xa_extract EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load -EXPORT_SYMBOL vmlinux 0xa85ddf82 simple_lookup +EXPORT_SYMBOL vmlinux 0xa85bb820 setup_new_exec +EXPORT_SYMBOL vmlinux 0xa863212c deactivate_locked_super EXPORT_SYMBOL vmlinux 0xa8676398 __tracepoint_dma_fence_emit EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0xa8715307 blk_rq_append_bio -EXPORT_SYMBOL vmlinux 0xa87fe0f4 seq_lseek -EXPORT_SYMBOL vmlinux 0xa883a03c prepare_to_swait_exclusive -EXPORT_SYMBOL vmlinux 0xa88c6e9e pneigh_lookup -EXPORT_SYMBOL vmlinux 0xa891954e blk_queue_physical_block_size EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr -EXPORT_SYMBOL vmlinux 0xa89e855d of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xa8a687aa tegra_ivc_notified EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end -EXPORT_SYMBOL vmlinux 0xa8afb795 folio_account_redirty -EXPORT_SYMBOL vmlinux 0xa8b1d1a6 security_inode_init_security -EXPORT_SYMBOL vmlinux 0xa8b671db iov_iter_get_pages2 -EXPORT_SYMBOL vmlinux 0xa8b68f20 security_path_unlink -EXPORT_SYMBOL vmlinux 0xa8c6e439 param_set_bint EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all EXPORT_SYMBOL vmlinux 0xa8ceedca revert_creds -EXPORT_SYMBOL vmlinux 0xa8db5824 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xa8d36ed8 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xa8e27a1d __pskb_pull_tail EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present -EXPORT_SYMBOL vmlinux 0xa8e8e0a6 __ps2_command +EXPORT_SYMBOL vmlinux 0xa8f34c16 ip6_fraglist_prepare EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0xa902dc86 inode_insert5 +EXPORT_SYMBOL vmlinux 0xa8f84032 mii_check_media +EXPORT_SYMBOL vmlinux 0xa8ffdcfd udpv6_sendmsg EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work -EXPORT_SYMBOL vmlinux 0xa913c1bd folio_zero_new_buffers EXPORT_SYMBOL vmlinux 0xa916b694 strnlen EXPORT_SYMBOL vmlinux 0xa917c1de blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0xa921322a uart_write_wakeup -EXPORT_SYMBOL vmlinux 0xa92a2011 pcie_relaxed_ordering_enabled -EXPORT_SYMBOL vmlinux 0xa9385e53 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0xa940d605 __aperture_remove_legacy_vga_devices +EXPORT_SYMBOL vmlinux 0xa929c394 input_open_device EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section -EXPORT_SYMBOL vmlinux 0xa94c506e md_update_sb -EXPORT_SYMBOL vmlinux 0xa95ffa7e tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0xa960f47a vfs_get_link +EXPORT_SYMBOL vmlinux 0xa95dc032 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xa961bdd4 pcibios_resource_to_bus EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value -EXPORT_SYMBOL vmlinux 0xa96a06d1 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xa97375b8 flow_rule_match_enc_ip EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap -EXPORT_SYMBOL vmlinux 0xa9958417 mdiobb_write_c22 -EXPORT_SYMBOL vmlinux 0xa9a1cee0 inet_pton_with_scope -EXPORT_SYMBOL vmlinux 0xa9b9a54d skb_copy -EXPORT_SYMBOL vmlinux 0xa9d9b453 pci_select_bars +EXPORT_SYMBOL vmlinux 0xa98dec7a eth_get_headlen +EXPORT_SYMBOL vmlinux 0xa9905fe8 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xa9942ebc ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xa99a5b79 netdev_get_by_index +EXPORT_SYMBOL vmlinux 0xa9be81e0 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xa9c4d4d5 register_netdevice_notifier_dev_net EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl -EXPORT_SYMBOL vmlinux 0xa9f21f15 rw_verify_area -EXPORT_SYMBOL vmlinux 0xa9fc4b98 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa9fa9d73 vm_mmap EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol -EXPORT_SYMBOL vmlinux 0xaa1ab7f7 __napi_schedule -EXPORT_SYMBOL vmlinux 0xaa1c5c2c iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xaa247c65 put_disk +EXPORT_SYMBOL vmlinux 0xaa2d12e8 sock_diag_put_filterinfo EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception -EXPORT_SYMBOL vmlinux 0xaa3613bf inet_getname -EXPORT_SYMBOL vmlinux 0xaa4bc2fd pcie_capability_clear_and_set_word_unlocked -EXPORT_SYMBOL vmlinux 0xaa503c97 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0xaa6c5187 folio_mark_accessed -EXPORT_SYMBOL vmlinux 0xaa6d6d7d sk_alloc +EXPORT_SYMBOL vmlinux 0xaa347440 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xaa353e5f netdev_crit +EXPORT_SYMBOL vmlinux 0xaa364c7b finish_swait +EXPORT_SYMBOL vmlinux 0xaa5ad134 ipv4_specific +EXPORT_SYMBOL vmlinux 0xaa6375be of_find_mipi_dsi_device_by_node EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name -EXPORT_SYMBOL vmlinux 0xaa78c735 watchdog_register_governor -EXPORT_SYMBOL vmlinux 0xaa78d302 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xaa7601ba capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xaa786b20 jbd2_journal_start_reserved EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb -EXPORT_SYMBOL vmlinux 0xaa816d32 pci_bus_type -EXPORT_SYMBOL vmlinux 0xaa85e5f2 netdev_change_features -EXPORT_SYMBOL vmlinux 0xaa8653e4 kernel_param_lock -EXPORT_SYMBOL vmlinux 0xaa8aa7b3 kthread_stop -EXPORT_SYMBOL vmlinux 0xaa8b710a nf_ct_get_tuple_skb EXPORT_SYMBOL vmlinux 0xaa8f1b71 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xaa9cb91d skb_eth_push +EXPORT_SYMBOL vmlinux 0xaaa04553 get_thermal_instance EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change -EXPORT_SYMBOL vmlinux 0xaabcec35 registered_fb -EXPORT_SYMBOL vmlinux 0xaacc1c09 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xaaaf2ed5 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xaab90a4e serio_unregister_driver EXPORT_SYMBOL vmlinux 0xaacf03c1 dma_fence_signal EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0xaad1e654 inet_frag_kill EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function -EXPORT_SYMBOL vmlinux 0xaade804b skb_flow_dissect_hash -EXPORT_SYMBOL vmlinux 0xaae65699 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xaade4126 unregister_quota_format EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0xaae91e84 mipi_dsi_dcs_soft_reset EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaaf9adb3 sk_wait_data EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe7dfb simple_transaction_read +EXPORT_SYMBOL vmlinux 0xab08c25e tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xab0d1550 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xab27ce9e netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xab2b4d8c sock_sendmsg EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute -EXPORT_SYMBOL vmlinux 0xab5c4e76 rproc_elf_find_loaded_rsc_table -EXPORT_SYMBOL vmlinux 0xab5c7645 get_watch_queue +EXPORT_SYMBOL vmlinux 0xab4a379f dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xab4ad6b0 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xab4b67ef bio_chain +EXPORT_SYMBOL vmlinux 0xab596433 i2c_clients_command EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init -EXPORT_SYMBOL vmlinux 0xab6b824b input_mt_sync_frame EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin -EXPORT_SYMBOL vmlinux 0xab6e4e43 dev_get_stats -EXPORT_SYMBOL vmlinux 0xab73325a lease_get_mtime +EXPORT_SYMBOL vmlinux 0xab7335a6 netdev_notify_peers EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options -EXPORT_SYMBOL vmlinux 0xab7af234 super_setup_bdi -EXPORT_SYMBOL vmlinux 0xab7f1ef0 i2c_get_adapter_by_fwnode -EXPORT_SYMBOL vmlinux 0xab9d0726 vlan_dev_real_dev -EXPORT_SYMBOL vmlinux 0xabd4358d rpmh_invalidate -EXPORT_SYMBOL vmlinux 0xabec08b1 proc_mkdir +EXPORT_SYMBOL vmlinux 0xab85991f dev_activate +EXPORT_SYMBOL vmlinux 0xab942278 vfs_get_link +EXPORT_SYMBOL vmlinux 0xab9c3562 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xabab12c8 skb_copy_header +EXPORT_SYMBOL vmlinux 0xabc7ade1 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xabdd6c67 unpin_user_page_range_dirty_lock EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0xabf4fa07 dev_uc_del -EXPORT_SYMBOL vmlinux 0xac019c0d of_match_node -EXPORT_SYMBOL vmlinux 0xac16502b flow_rule_match_vlan -EXPORT_SYMBOL vmlinux 0xac174b97 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xac05bb8d mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xac0f9402 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0xac0f9e0b unregister_key_type +EXPORT_SYMBOL vmlinux 0xac1290cd jbd2_journal_errno EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0xac30f51c get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xac1f3850 vme_master_request +EXPORT_SYMBOL vmlinux 0xac22f298 sock_release +EXPORT_SYMBOL vmlinux 0xac28b730 __mdiobus_register EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0xac421bfd inet_sk_get_local_port_range -EXPORT_SYMBOL vmlinux 0xac4acdf2 from_kgid_munged -EXPORT_SYMBOL vmlinux 0xac530249 of_range_to_resource +EXPORT_SYMBOL vmlinux 0xac3eb15b blkdev_put +EXPORT_SYMBOL vmlinux 0xac498f26 pci_get_slot +EXPORT_SYMBOL vmlinux 0xac4a8fdb tc_setup_offload_action EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton -EXPORT_SYMBOL vmlinux 0xac827e7e mdiobus_c45_read_nested -EXPORT_SYMBOL vmlinux 0xaca28f9c sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xac601431 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xac78113a rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xac7c90e8 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xac939087 fasync_helper +EXPORT_SYMBOL vmlinux 0xac9ace5d iov_iter_get_pages2 +EXPORT_SYMBOL vmlinux 0xaca4d331 sys_copyarea +EXPORT_SYMBOL vmlinux 0xaca985d0 phy_get_c45_ids EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0xacafcd67 genphy_loopback +EXPORT_SYMBOL vmlinux 0xacb7a43c is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xacc09d78 scsi_track_queue_full EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index -EXPORT_SYMBOL vmlinux 0xacf17218 __kfree_skb EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info -EXPORT_SYMBOL vmlinux 0xacf7c960 cdc_parse_cdc_header EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex -EXPORT_SYMBOL vmlinux 0xad3c11c1 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xad159f28 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xad2c8792 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xad391771 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xad3e2f88 vmf_insert_pfn_prot EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove -EXPORT_SYMBOL vmlinux 0xad55f50c kill_pgrp -EXPORT_SYMBOL vmlinux 0xad56a3d4 devm_register_netdev -EXPORT_SYMBOL vmlinux 0xad5e111b filemap_fault -EXPORT_SYMBOL vmlinux 0xad61280f no_seek_end_llseek_size -EXPORT_SYMBOL vmlinux 0xad613eb5 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0xad6702ac filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xad4f83ee dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xad5e5905 sk_free EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function -EXPORT_SYMBOL vmlinux 0xad7dc133 path_get -EXPORT_SYMBOL vmlinux 0xad7e893d param_ops_dyndbg_classes -EXPORT_SYMBOL vmlinux 0xad81b1dc bioset_integrity_create -EXPORT_SYMBOL vmlinux 0xad88831d scsi_report_device_reset EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align -EXPORT_SYMBOL vmlinux 0xadabf03e __register_binfmt +EXPORT_SYMBOL vmlinux 0xadab6f49 __skb_gso_segment EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final -EXPORT_SYMBOL vmlinux 0xadb2f3ea ptp_clock_register -EXPORT_SYMBOL vmlinux 0xadbc2d59 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xadb180c7 __xfrm_state_destroy EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc361f9 simple_write_begin EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed -EXPORT_SYMBOL vmlinux 0xadd415b5 reuseport_alloc -EXPORT_SYMBOL vmlinux 0xaddce263 scsi_register_driver -EXPORT_SYMBOL vmlinux 0xade29d0c dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0xade7506b phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xadfbe80a generic_write_end +EXPORT_SYMBOL vmlinux 0xadfcc296 clk_bulk_get_all EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc -EXPORT_SYMBOL vmlinux 0xae050082 km_new_mapping +EXPORT_SYMBOL vmlinux 0xae0d4ad9 mipi_dsi_dcs_set_column_address EXPORT_SYMBOL vmlinux 0xae1d2c5e fb_modesetting_disabled +EXPORT_SYMBOL vmlinux 0xae22ff64 pci_alloc_dev EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair -EXPORT_SYMBOL vmlinux 0xae342b73 i2c_verify_client -EXPORT_SYMBOL vmlinux 0xae3baa3b kern_path -EXPORT_SYMBOL vmlinux 0xae3f3fc1 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0xae538898 dev_driver_string +EXPORT_SYMBOL vmlinux 0xae3e0295 __scsi_iterate_devices EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0xae623694 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xae63d5cb xfrm_dev_policy_flush EXPORT_SYMBOL vmlinux 0xae66472b scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0xae6dea6d handshake_req_cancel -EXPORT_SYMBOL vmlinux 0xae6f99b6 simple_transaction_read -EXPORT_SYMBOL vmlinux 0xae9f1898 ip_sock_set_recverr -EXPORT_SYMBOL vmlinux 0xae9f77cb of_platform_device_create EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid -EXPORT_SYMBOL vmlinux 0xaeb92986 dev_add_pack +EXPORT_SYMBOL vmlinux 0xaeb6620c input_setup_polling EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name -EXPORT_SYMBOL vmlinux 0xaec925da dev_deactivate -EXPORT_SYMBOL vmlinux 0xaed7f943 file_write_and_wait_range -EXPORT_SYMBOL vmlinux 0xaf02914c pci_scan_bus -EXPORT_SYMBOL vmlinux 0xaf051855 xattr_full_name -EXPORT_SYMBOL vmlinux 0xaf1f402f jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0xaf21ea65 complete_request_key +EXPORT_SYMBOL vmlinux 0xaededcca xp_free +EXPORT_SYMBOL vmlinux 0xaeeb95af inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xaefb52b8 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xaf03f44a pci_pme_active +EXPORT_SYMBOL vmlinux 0xaf0e61de dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xaf0fcfc5 inet_del_offload +EXPORT_SYMBOL vmlinux 0xaf13d134 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xaf19b312 fd_install +EXPORT_SYMBOL vmlinux 0xaf1ff0ac put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xaf203d09 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xaf3b36d7 may_umount EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level -EXPORT_SYMBOL vmlinux 0xaf407336 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0xaf514c02 bmap +EXPORT_SYMBOL vmlinux 0xaf40f6b4 nd_device_unregister +EXPORT_SYMBOL vmlinux 0xaf532ee3 generic_write_checks_count EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings -EXPORT_SYMBOL vmlinux 0xaf59a280 __filemap_get_folio -EXPORT_SYMBOL vmlinux 0xaf76c9e3 vlan_filter_drop_vids -EXPORT_SYMBOL vmlinux 0xaf775e39 set_create_files_as -EXPORT_SYMBOL vmlinux 0xaf804505 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0xaf8377c4 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0xaf903324 phy_queue_state_machine -EXPORT_SYMBOL vmlinux 0xafa050c0 mipi_dsi_detach -EXPORT_SYMBOL vmlinux 0xafa25992 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xaf5fdcf7 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xaf6ba5b2 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xaf76efd8 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xaf786aaa input_copy_abs +EXPORT_SYMBOL vmlinux 0xaf86bb1f textsearch_unregister +EXPORT_SYMBOL vmlinux 0xafaa4b40 file_open_root EXPORT_SYMBOL vmlinux 0xafaa6031 _find_next_and_bit EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave -EXPORT_SYMBOL vmlinux 0xafb8c56e ethtool_aggregate_phy_stats EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc2bd25 pipe_unlock EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error -EXPORT_SYMBOL vmlinux 0xaff56d04 devm_devfreq_unregister_opp_notifier -EXPORT_SYMBOL vmlinux 0xaffb29a7 I_BDEV -EXPORT_SYMBOL vmlinux 0xb00956aa _copy_from_iter +EXPORT_SYMBOL vmlinux 0xafce06df t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xafd0ea78 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xb0163d93 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xb019c10e sock_dequeue_err_skb EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0xb0364501 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0xb03b2af7 folio_alloc -EXPORT_SYMBOL vmlinux 0xb03b46a1 fscrypt_encrypt_block_inplace -EXPORT_SYMBOL vmlinux 0xb03d1eca genphy_c37_read_status -EXPORT_SYMBOL vmlinux 0xb046189c pci_request_selected_regions_exclusive EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic -EXPORT_SYMBOL vmlinux 0xb05315d9 km_state_expired -EXPORT_SYMBOL vmlinux 0xb0571314 bdi_register EXPORT_SYMBOL vmlinux 0xb058ca07 dim_calc_stats EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06161e2 blk_rq_map_user_io EXPORT_SYMBOL vmlinux 0xb0617db4 wait_for_completion_state -EXPORT_SYMBOL vmlinux 0xb07a6c93 igrab -EXPORT_SYMBOL vmlinux 0xb08631cc reuseport_migrate_sock -EXPORT_SYMBOL vmlinux 0xb087680d page_pool_update_nid -EXPORT_SYMBOL vmlinux 0xb09b087f devm_release_resource +EXPORT_SYMBOL vmlinux 0xb068f690 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xb07b593d napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xb08a09d3 dquot_drop +EXPORT_SYMBOL vmlinux 0xb096cc42 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xb098ad87 unregister_netdev +EXPORT_SYMBOL vmlinux 0xb09c3d98 ip_frag_init +EXPORT_SYMBOL vmlinux 0xb09fe62b phy_ethtool_get_eee EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation -EXPORT_SYMBOL vmlinux 0xb0a1fcc2 tcf_exts_change -EXPORT_SYMBOL vmlinux 0xb0a24d76 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0xb0b43c9e fscrypt_encrypt_pagecache_blocks -EXPORT_SYMBOL vmlinux 0xb0c54655 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb0a513f6 key_alloc +EXPORT_SYMBOL vmlinux 0xb0af7e27 pci_enable_device +EXPORT_SYMBOL vmlinux 0xb0b6c4b7 cros_ec_get_host_event EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return -EXPORT_SYMBOL vmlinux 0xb0c8cec1 fman_bind -EXPORT_SYMBOL vmlinux 0xb0cd2a45 validate_slab_cache -EXPORT_SYMBOL vmlinux 0xb0cf607e dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0xb0dc48cd __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xb0c617e6 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xb0cd3fe9 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xb0d10661 _dev_emerg +EXPORT_SYMBOL vmlinux 0xb0da094d tegra_dfll_resume EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb1113a6d dev_set_alias +EXPORT_SYMBOL vmlinux 0xb1136ed4 seq_path EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on -EXPORT_SYMBOL vmlinux 0xb126ae70 iterate_fd -EXPORT_SYMBOL vmlinux 0xb12af900 of_iomap +EXPORT_SYMBOL vmlinux 0xb12a18f7 nd_region_to_nstype EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client -EXPORT_SYMBOL vmlinux 0xb136fe49 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xb12ddf68 security_sk_clone +EXPORT_SYMBOL vmlinux 0xb1309d41 udplite_prot +EXPORT_SYMBOL vmlinux 0xb1419c5a acpi_device_hid +EXPORT_SYMBOL vmlinux 0xb143ba14 dev_pick_tx_cpu_id EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init -EXPORT_SYMBOL vmlinux 0xb14cc392 hash_and_copy_to_iter EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb150d04a neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xb15156e1 neigh_changeaddr EXPORT_SYMBOL vmlinux 0xb1518e15 cancel_work -EXPORT_SYMBOL vmlinux 0xb153d84a dev_mc_unsync -EXPORT_SYMBOL vmlinux 0xb197eac7 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0xb1a87a1e netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xb159ea02 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xb1624c08 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xb164e91a kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xb168b3a8 security_path_rename +EXPORT_SYMBOL vmlinux 0xb16f753a __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xb182fa9a framebuffer_release +EXPORT_SYMBOL vmlinux 0xb19db24f __mod_zone_page_state EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c84433 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xb1d45032 d_invalidate +EXPORT_SYMBOL vmlinux 0xb1d580ed touch_atime +EXPORT_SYMBOL vmlinux 0xb1d80fcb pci_back_from_sleep EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1def02b __sock_create +EXPORT_SYMBOL vmlinux 0xb1e0b410 d_instantiate_new +EXPORT_SYMBOL vmlinux 0xb1e4cbe3 pci_dev_get EXPORT_SYMBOL vmlinux 0xb1ef2d50 cred_fscmp -EXPORT_SYMBOL vmlinux 0xb1ef3e48 dquot_free_inode -EXPORT_SYMBOL vmlinux 0xb20474e6 of_find_property +EXPORT_SYMBOL vmlinux 0xb1f79ec6 xattr_supports_user_prefix +EXPORT_SYMBOL vmlinux 0xb20bc610 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xb2131212 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xb22bd163 phy_request_interrupt EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0xb24b0391 md_register_thread -EXPORT_SYMBOL vmlinux 0xb290887c kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xb2382ea5 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xb2649ca1 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xb270417c fman_register_intr EXPORT_SYMBOL vmlinux 0xb2a9cf10 neigh_proc_dointvec_ms_jiffies EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0xb2cc7104 devm_mfd_add_devices -EXPORT_SYMBOL vmlinux 0xb2ccaea3 devfreq_suspend_device EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr -EXPORT_SYMBOL vmlinux 0xb2f1603e init_special_inode EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 -EXPORT_SYMBOL vmlinux 0xb2fae8bd neigh_xmit EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on EXPORT_SYMBOL vmlinux 0xb306ec50 __sg_alloc_table EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken -EXPORT_SYMBOL vmlinux 0xb30971c8 fb_set_cmap EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set -EXPORT_SYMBOL vmlinux 0xb315239d netdev_adjacent_change_abort EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init -EXPORT_SYMBOL vmlinux 0xb33cb162 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xb32bbb47 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xb33df3a0 rproc_put +EXPORT_SYMBOL vmlinux 0xb34236a0 twl6040_power EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg -EXPORT_SYMBOL vmlinux 0xb3587f72 ip_frag_init -EXPORT_SYMBOL vmlinux 0xb3599ca7 qdisc_offload_dump_helper -EXPORT_SYMBOL vmlinux 0xb35c7b77 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb360356c netdev_has_upper_dev EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0xb36d052f bfifo_qdisc_ops -EXPORT_SYMBOL vmlinux 0xb37f0dd6 trace_raw_output_prep EXPORT_SYMBOL vmlinux 0xb3867e6d mtree_insert EXPORT_SYMBOL vmlinux 0xb386e0fd nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xb394616d nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xb38d06de module_refcount +EXPORT_SYMBOL vmlinux 0xb39f7d2c filemap_get_folios_tag EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc -EXPORT_SYMBOL vmlinux 0xb3b3f82d inode_needs_sync -EXPORT_SYMBOL vmlinux 0xb3b4b0b1 phy_write_paged -EXPORT_SYMBOL vmlinux 0xb3bec79a simple_setattr +EXPORT_SYMBOL vmlinux 0xb3bc4063 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xb3d10480 of_get_next_child EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string -EXPORT_SYMBOL vmlinux 0xb3d72676 of_cpu_device_node_get +EXPORT_SYMBOL vmlinux 0xb3d9ee2e generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xb3e831cd current_in_userns +EXPORT_SYMBOL vmlinux 0xb3ef1e47 fscrypt_encrypt_block_inplace EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop EXPORT_SYMBOL vmlinux 0xb3f985a8 sg_alloc_table -EXPORT_SYMBOL vmlinux 0xb4018bb5 input_unregister_handler EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0xb404a451 flow_block_cb_incref -EXPORT_SYMBOL vmlinux 0xb40f715e netdev_sk_get_lowest_dev EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked -EXPORT_SYMBOL vmlinux 0xb43122ea phy_attached_info_irq -EXPORT_SYMBOL vmlinux 0xb4428891 tcf_exts_dump -EXPORT_SYMBOL vmlinux 0xb445fd25 freezing_slow_path -EXPORT_SYMBOL vmlinux 0xb44a2cc8 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xb42e2b77 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xb4360ede zero_fill_bio EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present -EXPORT_SYMBOL vmlinux 0xb46b1a89 proc_create_data -EXPORT_SYMBOL vmlinux 0xb46dbf55 tcp_sock_set_quickack -EXPORT_SYMBOL vmlinux 0xb47e4561 of_get_next_cpu_node -EXPORT_SYMBOL vmlinux 0xb48d4c2a genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xb48306ca lookup_one_unlocked EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts EXPORT_SYMBOL vmlinux 0xb49601a1 sg_zero_buffer -EXPORT_SYMBOL vmlinux 0xb49d955d kernel_tmpfile_open -EXPORT_SYMBOL vmlinux 0xb4a35e91 mmc_can_gpio_ro -EXPORT_SYMBOL vmlinux 0xb4c974b4 dcb_setrewr -EXPORT_SYMBOL vmlinux 0xb4d0f95c lookup_one_unlocked -EXPORT_SYMBOL vmlinux 0xb4d4f9ef ip_fraglist_prepare -EXPORT_SYMBOL vmlinux 0xb4f1928c __folio_cancel_dirty -EXPORT_SYMBOL vmlinux 0xb4f48256 of_mdio_find_device -EXPORT_SYMBOL vmlinux 0xb50d19e5 page_pool_unlink_napi -EXPORT_SYMBOL vmlinux 0xb5193196 genl_register_family -EXPORT_SYMBOL vmlinux 0xb51df250 crypto_sha3_update -EXPORT_SYMBOL vmlinux 0xb5251f8e unpin_user_pages -EXPORT_SYMBOL vmlinux 0xb53d3489 __ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0xb53db1a2 config_group_init +EXPORT_SYMBOL vmlinux 0xb4b8567e block_commit_write +EXPORT_SYMBOL vmlinux 0xb4c0aeaf __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xb4c6ad03 ether_setup +EXPORT_SYMBOL vmlinux 0xb4cb2cb1 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xb4d5127d bpf_link_put +EXPORT_SYMBOL vmlinux 0xb50577ba qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xb5133518 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xb517898d mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xb5270774 inet_frag_reasm_prepare EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0xb56dce48 kernel_listen -EXPORT_SYMBOL vmlinux 0xb571d784 cdev_device_add -EXPORT_SYMBOL vmlinux 0xb573cf74 scsi_print_result -EXPORT_SYMBOL vmlinux 0xb5763927 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0xb57818d5 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xb546b3ac scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xb54aa4b8 dup_iter +EXPORT_SYMBOL vmlinux 0xb556d506 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xb576d9a0 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xb5785851 blkdev_compat_ptr_ioctl EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable -EXPORT_SYMBOL vmlinux 0xb5812a11 tcp_sock_set_nodelay -EXPORT_SYMBOL vmlinux 0xb5911484 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xb58fcce4 sock_no_bind +EXPORT_SYMBOL vmlinux 0xb598c21a alloc_file_pseudo EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags -EXPORT_SYMBOL vmlinux 0xb5c4e656 twl6040_get_pll -EXPORT_SYMBOL vmlinux 0xb5d172d9 inet_accept +EXPORT_SYMBOL vmlinux 0xb5c34736 phy_free_interrupt EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work -EXPORT_SYMBOL vmlinux 0xb5ead981 simple_recursive_removal -EXPORT_SYMBOL vmlinux 0xb5f0d28d task_work_add -EXPORT_SYMBOL vmlinux 0xb613b585 ilookup +EXPORT_SYMBOL vmlinux 0xb60c1768 dm_unregister_target EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible -EXPORT_SYMBOL vmlinux 0xb6200719 set_blocksize -EXPORT_SYMBOL vmlinux 0xb626ecb9 cdrom_dummy_generic_packet -EXPORT_SYMBOL vmlinux 0xb62741b1 filemap_invalidate_lock_two -EXPORT_SYMBOL vmlinux 0xb631d8ac pid_task +EXPORT_SYMBOL vmlinux 0xb6293498 lookup_one_qstr_excl EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable -EXPORT_SYMBOL vmlinux 0xb6453631 scsi_unblock_requests EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0xb658627a blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0xb6635921 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xb66098e4 pnp_is_active +EXPORT_SYMBOL vmlinux 0xb6628a98 noop_fsync EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67f1c49 ethtool_aggregate_rmon_stats EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse -EXPORT_SYMBOL vmlinux 0xb68c0bba __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xb68f837b skb_copy_expand EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin -EXPORT_SYMBOL vmlinux 0xb6a56786 is_nd_pfn -EXPORT_SYMBOL vmlinux 0xb6a8df56 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xb69cd1aa xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xb6ab0bf2 gnet_stats_copy_basic EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach -EXPORT_SYMBOL vmlinux 0xb6beb14d tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xb6b831d8 dput +EXPORT_SYMBOL vmlinux 0xb6c2d8df pcie_capability_clear_and_set_word_locked EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit EXPORT_SYMBOL vmlinux 0xb6cf91fc nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb6d168f6 kern_unmount EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0xb6eed752 vme_register_error_handler -EXPORT_SYMBOL vmlinux 0xb6f33555 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xb6f1b190 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb6f4361c tty_port_lower_dtr_rts EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd -EXPORT_SYMBOL vmlinux 0xb70471d5 sock_recvmsg -EXPORT_SYMBOL vmlinux 0xb7101088 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xb70833d7 fqdir_exit +EXPORT_SYMBOL vmlinux 0xb7092295 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xb7104507 dcb_getrewr_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xb713fe85 dm_put_device EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71c2f71 param_ops_charp EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0xb721f822 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0xb724e734 bpf_map_get -EXPORT_SYMBOL vmlinux 0xb72ed8c4 key_move +EXPORT_SYMBOL vmlinux 0xb72b2d26 generic_cont_expand_simple EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit -EXPORT_SYMBOL vmlinux 0xb73f4201 dquot_quota_on -EXPORT_SYMBOL vmlinux 0xb73f8f45 netpoll_poll_dev -EXPORT_SYMBOL vmlinux 0xb73fbb0b mmc_gpiod_request_cd -EXPORT_SYMBOL vmlinux 0xb7459cad fs_context_for_reconfigure -EXPORT_SYMBOL vmlinux 0xb764575c vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xb7533451 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb7608a55 sock_kfree_s EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init -EXPORT_SYMBOL vmlinux 0xb76a8520 make_kgid -EXPORT_SYMBOL vmlinux 0xb77c319c seq_release_private -EXPORT_SYMBOL vmlinux 0xb77df39f may_setattr +EXPORT_SYMBOL vmlinux 0xb7771577 dcb_getapp +EXPORT_SYMBOL vmlinux 0xb77c22b0 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xb780bdb3 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0xb78cc9d1 folio_migrate_copy EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict -EXPORT_SYMBOL vmlinux 0xb795640b of_find_node_by_phandle -EXPORT_SYMBOL vmlinux 0xb7985080 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xb78f61f3 seq_file_path EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c2ce16 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xb7c42f1a fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xb7c59a7a get_vm_area EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0xb7cacded tcf_block_get -EXPORT_SYMBOL vmlinux 0xb7cfeece mark_info_dirty -EXPORT_SYMBOL vmlinux 0xb7d7f69e __bread_gfp -EXPORT_SYMBOL vmlinux 0xb7e8e6c1 seq_read -EXPORT_SYMBOL vmlinux 0xb7e8f1b9 seq_putc -EXPORT_SYMBOL vmlinux 0xb7ea1aa1 jbd2_fc_begin_commit -EXPORT_SYMBOL vmlinux 0xb7fe0d1f scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0xb80a375c blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xb7e0e5bb tty_port_close EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound -EXPORT_SYMBOL vmlinux 0xb82f7131 dquot_initialize -EXPORT_SYMBOL vmlinux 0xb833f932 mdiobus_get_phy -EXPORT_SYMBOL vmlinux 0xb8393e53 pcie_capability_clear_and_set_word_locked -EXPORT_SYMBOL vmlinux 0xb83f49a5 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xb819d5ff vfs_getattr +EXPORT_SYMBOL vmlinux 0xb81a397c of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xb81d4dd8 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xb83b688c vfs_mknod EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available -EXPORT_SYMBOL vmlinux 0xb85a2a59 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0xb85f6b66 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb84e7f00 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xb859beb4 napi_gro_receive EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key -EXPORT_SYMBOL vmlinux 0xb87eef59 qdisc_watchdog_init -EXPORT_SYMBOL vmlinux 0xb8878d71 import_single_range +EXPORT_SYMBOL vmlinux 0xb86e6d90 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xb86f55cc pnp_get_resource +EXPORT_SYMBOL vmlinux 0xb876ad18 bpf_map_get +EXPORT_SYMBOL vmlinux 0xb87c8461 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xb87f8348 tegra_ivc_read_get_next_frame EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse -EXPORT_SYMBOL vmlinux 0xb89fdc3d mmc_hw_reset -EXPORT_SYMBOL vmlinux 0xb8a94c7a send_sig -EXPORT_SYMBOL vmlinux 0xb8ad1af9 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0xb8aea057 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xb8a063eb param_set_dyndbg_classes +EXPORT_SYMBOL vmlinux 0xb8a4ba12 __fs_parse EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link -EXPORT_SYMBOL vmlinux 0xb8bd565a simple_statfs -EXPORT_SYMBOL vmlinux 0xb8bf9e41 security_inode_listsecurity -EXPORT_SYMBOL vmlinux 0xb8d47a76 fb_pan_display -EXPORT_SYMBOL vmlinux 0xb8e80bbc ip_sock_set_freebind -EXPORT_SYMBOL vmlinux 0xb9012a64 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xb8c3dfe4 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0xb8d16e01 nf_log_packet +EXPORT_SYMBOL vmlinux 0xb8f558a5 of_pci_range_to_resource EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max -EXPORT_SYMBOL vmlinux 0xb9158cee d_alloc_parallel -EXPORT_SYMBOL vmlinux 0xb91b08f8 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xb9199b5c vfs_link +EXPORT_SYMBOL vmlinux 0xb91bfd1c configfs_depend_item EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table -EXPORT_SYMBOL vmlinux 0xb9323f56 nf_reinject -EXPORT_SYMBOL vmlinux 0xb93facb0 dquot_disable +EXPORT_SYMBOL vmlinux 0xb9224dbf end_page_writeback +EXPORT_SYMBOL vmlinux 0xb926a47e twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xb92b7efa netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xb92f18f3 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xb933702d of_find_mipi_dsi_host_by_node EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only -EXPORT_SYMBOL vmlinux 0xb95c5d8f nd_pfn_probe -EXPORT_SYMBOL vmlinux 0xb96a30a6 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xb95dd3dc _dev_err +EXPORT_SYMBOL vmlinux 0xb965ed7a vme_irq_request EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse -EXPORT_SYMBOL vmlinux 0xb972f03a nd_device_unregister -EXPORT_SYMBOL vmlinux 0xb97e98ef sock_no_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xb994743c mmc_is_req_done EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark -EXPORT_SYMBOL vmlinux 0xb9baec12 unix_detach_fds -EXPORT_SYMBOL vmlinux 0xb9d8091e dma_resv_add_fence -EXPORT_SYMBOL vmlinux 0xb9e21113 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xb9cb791e __ip_options_compile +EXPORT_SYMBOL vmlinux 0xb9d9160f inc_node_page_state +EXPORT_SYMBOL vmlinux 0xb9de1e1f __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xb9e662f1 pci_unregister_driver EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0xb9ec68f3 vme_lm_request +EXPORT_SYMBOL vmlinux 0xb9f083bc padata_free_shell EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req EXPORT_SYMBOL vmlinux 0xba00daa2 dma_fence_allocate_private_stub EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba072ed9 vmap EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le -EXPORT_SYMBOL vmlinux 0xba31c3cc xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0xba428b58 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xba30d5c8 pnp_release_card_device EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4b46ff tty_hangup +EXPORT_SYMBOL vmlinux 0xba4bcdd7 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xba5939f0 pci_disable_link_state_locked EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk -EXPORT_SYMBOL vmlinux 0xba7ce471 param_set_hexint -EXPORT_SYMBOL vmlinux 0xba92f3c4 tty_vhangup -EXPORT_SYMBOL vmlinux 0xbaa60e91 textsearch_unregister -EXPORT_SYMBOL vmlinux 0xbab8a065 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xba7ad230 audit_log +EXPORT_SYMBOL vmlinux 0xba7e44ca xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xba98d622 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xba9fe656 dcb_setapp +EXPORT_SYMBOL vmlinux 0xbaa111a0 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xbabd26af mipi_dsi_dcs_set_tear_off EXPORT_SYMBOL vmlinux 0xbac8aeea sg_nents_for_len -EXPORT_SYMBOL vmlinux 0xbacca5e1 neigh_seq_start -EXPORT_SYMBOL vmlinux 0xbae61624 file_remove_privs -EXPORT_SYMBOL vmlinux 0xbaf68bae pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xbacfc629 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xbaf6d9b0 dev_pick_tx_zero EXPORT_SYMBOL vmlinux 0xbafa632e __do_once_sleepable_start -EXPORT_SYMBOL vmlinux 0xbaff8f40 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0xbb02d660 param_ops_long +EXPORT_SYMBOL vmlinux 0xbb03d994 reuseport_alloc EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset -EXPORT_SYMBOL vmlinux 0xbb115158 pci_disable_link_state_locked -EXPORT_SYMBOL vmlinux 0xbb161139 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xbb1a6850 param_ops_bool +EXPORT_SYMBOL vmlinux 0xbb20df8b udp_prot EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command -EXPORT_SYMBOL vmlinux 0xbb2db9f5 from_kuid +EXPORT_SYMBOL vmlinux 0xbb30790c kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xbb3bd53b bpf_link_get_from_fd EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb626e07 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xbb65c6d2 tcp_openreq_init_rwin EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool -EXPORT_SYMBOL vmlinux 0xbb6f1ec6 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0xbb79e455 __skb_ext_del -EXPORT_SYMBOL vmlinux 0xbb9640ab load_nls +EXPORT_SYMBOL vmlinux 0xbb6fa31a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xbb7cbae7 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xbb89c739 mark_info_dirty EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock -EXPORT_SYMBOL vmlinux 0xbb9f4b5f skb_csum_hwoffload_help -EXPORT_SYMBOL vmlinux 0xbba07193 sk_ioctl -EXPORT_SYMBOL vmlinux 0xbbd35eb9 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0xbbd9eac3 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xbbb05764 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xbbb71059 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xbbca3584 of_graph_get_remote_port_parent EXPORT_SYMBOL vmlinux 0xbbda18c4 dma_fence_free -EXPORT_SYMBOL vmlinux 0xbbe332cb sock_release -EXPORT_SYMBOL vmlinux 0xbbf5db5b unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0xbc044388 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xbbfedb37 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xbc158a79 tty_unregister_ldisc EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit -EXPORT_SYMBOL vmlinux 0xbc2bb436 audit_log -EXPORT_SYMBOL vmlinux 0xbc413ac1 dm_table_get_size -EXPORT_SYMBOL vmlinux 0xbc8cfa9d inet_confirm_addr -EXPORT_SYMBOL vmlinux 0xbca0108a bioset_exit -EXPORT_SYMBOL vmlinux 0xbca78a38 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xbc52b15b pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xbc61010c mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xbc6adcbc n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xbc816d11 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xbc8f0aba tty_port_hangup +EXPORT_SYMBOL vmlinux 0xbc9b1bf8 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xbc9b2bff key_type_keyring EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf -EXPORT_SYMBOL vmlinux 0xbcb85084 amba_driver_unregister -EXPORT_SYMBOL vmlinux 0xbcc916ac end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0xbcd22483 tty_register_driver -EXPORT_SYMBOL vmlinux 0xbcf8baaa amba_driver_register -EXPORT_SYMBOL vmlinux 0xbcfccb37 input_match_device_id -EXPORT_SYMBOL vmlinux 0xbd08c3ca pci_ep_cfs_add_epf_group -EXPORT_SYMBOL vmlinux 0xbd1e37bf vme_init_bridge +EXPORT_SYMBOL vmlinux 0xbcb87600 i2c_find_adapter_by_fwnode +EXPORT_SYMBOL vmlinux 0xbcc8d9c7 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xbcf133af dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xbcf7c826 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xbcf87b91 sock_rfree +EXPORT_SYMBOL vmlinux 0xbd0f4509 sock_i_ino +EXPORT_SYMBOL vmlinux 0xbd1ecc19 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xbd229449 ethtool_aggregate_mac_stats +EXPORT_SYMBOL vmlinux 0xbd425dd0 icmp6_send +EXPORT_SYMBOL vmlinux 0xbd42b554 mmc_start_request EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init -EXPORT_SYMBOL vmlinux 0xbd5854d0 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0xbd58e792 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xbd66eb0f devm_backlight_device_register EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 -EXPORT_SYMBOL vmlinux 0xbd79fae2 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0xbd803d7f follow_down_one -EXPORT_SYMBOL vmlinux 0xbd82637b page_readlink -EXPORT_SYMBOL vmlinux 0xbd86daae security_dentry_create_files_as -EXPORT_SYMBOL vmlinux 0xbda01c92 generic_listxattr -EXPORT_SYMBOL vmlinux 0xbdb22a61 ethtool_aggregate_pause_stats -EXPORT_SYMBOL vmlinux 0xbdb5c000 pci_iomap -EXPORT_SYMBOL vmlinux 0xbdbacf19 mipi_dsi_shutdown_peripheral -EXPORT_SYMBOL vmlinux 0xbdbde14b of_find_node_by_type -EXPORT_SYMBOL vmlinux 0xbdbf6174 of_root -EXPORT_SYMBOL vmlinux 0xbdd8bdc6 inet_offloads -EXPORT_SYMBOL vmlinux 0xbdec42cb module_put -EXPORT_SYMBOL vmlinux 0xbe2f1d35 pci_bus_claim_resources -EXPORT_SYMBOL vmlinux 0xbe3430bb page_cache_prev_miss -EXPORT_SYMBOL vmlinux 0xbe3671fe rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xbd7abbdb alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xbd7f63d7 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xbd87d926 simple_lookup +EXPORT_SYMBOL vmlinux 0xbd8e7a14 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xbdf01eab napi_complete_done +EXPORT_SYMBOL vmlinux 0xbdff38a4 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xbe06239d bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xbe198066 inode_set_flags +EXPORT_SYMBOL vmlinux 0xbe20e520 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xbe296bd5 sync_blockdev +EXPORT_SYMBOL vmlinux 0xbe3624a2 pci_request_region EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe4f12c6 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xbe525981 pci_request_regions EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state -EXPORT_SYMBOL vmlinux 0xbe679ca0 netif_skb_features +EXPORT_SYMBOL vmlinux 0xbe64bc25 tcp_sock_set_nodelay EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound -EXPORT_SYMBOL vmlinux 0xbe8abdcb mdiobus_c45_write -EXPORT_SYMBOL vmlinux 0xbec8a89d con_set_default_unimap -EXPORT_SYMBOL vmlinux 0xbec904ba blk_post_runtime_suspend -EXPORT_SYMBOL vmlinux 0xbed58fd6 drop_nlink -EXPORT_SYMBOL vmlinux 0xbeebd53d kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xbe6e93b9 sk_capable +EXPORT_SYMBOL vmlinux 0xbe7b2388 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xbea984e1 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xbeb9a5ca shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xbecdfff6 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xbed0614d __ps2_command +EXPORT_SYMBOL vmlinux 0xbee29e44 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xbee6f246 vme_slave_request +EXPORT_SYMBOL vmlinux 0xbeeba7df __xfrm_dst_lookup EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner -EXPORT_SYMBOL vmlinux 0xbefa78db acpi_dev_get_next_match_dev -EXPORT_SYMBOL vmlinux 0xbf099c1c filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0xbf238ec1 path_is_mountpoint -EXPORT_SYMBOL vmlinux 0xbf5775f2 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xbf091fda skb_queue_tail +EXPORT_SYMBOL vmlinux 0xbf115163 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xbf1b3b80 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xbf254a1f tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbf36c6f9 phy_attached_info +EXPORT_SYMBOL vmlinux 0xbf51f6d9 handshake_req_submit EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init -EXPORT_SYMBOL vmlinux 0xbf725a4c eth_get_headlen -EXPORT_SYMBOL vmlinux 0xbf8d8eb9 free_netdev -EXPORT_SYMBOL vmlinux 0xbfa2d340 generic_copy_file_range -EXPORT_SYMBOL vmlinux 0xbfa84f1d sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0xbfae8536 pci_get_class +EXPORT_SYMBOL vmlinux 0xbf6c0eba mmc_put_card +EXPORT_SYMBOL vmlinux 0xbf7fb204 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xbf89c811 misc_register +EXPORT_SYMBOL vmlinux 0xbf9aa448 backlight_device_get_by_type EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate -EXPORT_SYMBOL vmlinux 0xbfaed79d put_ipc_ns -EXPORT_SYMBOL vmlinux 0xbfcaf569 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xbfafedbb ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0xbfb5f319 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xbfbbe587 tcp_select_initial_window EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block -EXPORT_SYMBOL vmlinux 0xbfdfabec skb_vlan_untag -EXPORT_SYMBOL vmlinux 0xc00aebb5 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0xc01088e0 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xc016e6a7 security_inode_invalidate_secctx -EXPORT_SYMBOL vmlinux 0xc02abf2a filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xbfd151bb jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xbfda6389 mipi_dsi_dcs_get_display_brightness_large +EXPORT_SYMBOL vmlinux 0xc014f105 blk_mq_alloc_disk_for_queue EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get -EXPORT_SYMBOL vmlinux 0xc06b4693 __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xc0749d2a dentry_path_raw EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb -EXPORT_SYMBOL vmlinux 0xc082c3de get_tree_nodev -EXPORT_SYMBOL vmlinux 0xc084872a sock_kzfree_s -EXPORT_SYMBOL vmlinux 0xc0881500 security_socket_getpeersec_dgram -EXPORT_SYMBOL vmlinux 0xc09ffa42 pps_unregister_source -EXPORT_SYMBOL vmlinux 0xc0ad9080 netlink_net_capable -EXPORT_SYMBOL vmlinux 0xc0bb8768 inode_permission -EXPORT_SYMBOL vmlinux 0xc0cea34b seq_path -EXPORT_SYMBOL vmlinux 0xc0ea28dc ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xc0807a18 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xc08f9159 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xc0b60f02 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xc0ed5f81 rtnl_offload_xstats_notify EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor -EXPORT_SYMBOL vmlinux 0xc1005438 udp_gro_complete -EXPORT_SYMBOL vmlinux 0xc10992b9 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xc0ffcdbf __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xc101788a skb_flow_dissect_tunnel_info EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq -EXPORT_SYMBOL vmlinux 0xc124dd54 __i2c_smbus_xfer -EXPORT_SYMBOL vmlinux 0xc12bab32 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0xc143b448 try_module_get +EXPORT_SYMBOL vmlinux 0xc141d6e7 free_task EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc152b348 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xc1545afe get_phy_device +EXPORT_SYMBOL vmlinux 0xc155a30d page_readlink EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable -EXPORT_SYMBOL vmlinux 0xc157fa33 flow_rule_alloc -EXPORT_SYMBOL vmlinux 0xc15cc679 sunxi_sram_release -EXPORT_SYMBOL vmlinux 0xc160b95b bdi_set_max_ratio EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0xc17ad074 __devm_mdiobus_register -EXPORT_SYMBOL vmlinux 0xc185097b scsi_device_get -EXPORT_SYMBOL vmlinux 0xc18cb924 sk_free -EXPORT_SYMBOL vmlinux 0xc1b093e6 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xc1728fc7 buffer_migrate_folio +EXPORT_SYMBOL vmlinux 0xc176a176 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xc17cdb89 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xc18e88c4 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xc1918226 d_alloc +EXPORT_SYMBOL vmlinux 0xc19e1aa1 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xc1b74262 __dev_get_by_name EXPORT_SYMBOL vmlinux 0xc1cb419c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xc1d1cb26 rpmh_write_batch EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on -EXPORT_SYMBOL vmlinux 0xc1e5824b genl_notify -EXPORT_SYMBOL vmlinux 0xc1ec5291 mmc_request_done -EXPORT_SYMBOL vmlinux 0xc2028500 scsi_print_sense_hdr EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp -EXPORT_SYMBOL vmlinux 0xc206b15d scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0xc2121f09 tcf_unregister_action -EXPORT_SYMBOL vmlinux 0xc219149c pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0xc21ff562 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0xc22aa59a ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xc20c2ddd input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xc20d398f folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xc22ca2bb crypto_sha3_init +EXPORT_SYMBOL vmlinux 0xc22cce73 seq_put_decimal_ll EXPORT_SYMBOL vmlinux 0xc22f6693 call_fib_notifier -EXPORT_SYMBOL vmlinux 0xc2302683 poll_initwait EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl -EXPORT_SYMBOL vmlinux 0xc2445c18 dev_uc_flush -EXPORT_SYMBOL vmlinux 0xc25204eb __dev_direct_xmit -EXPORT_SYMBOL vmlinux 0xc2525897 vmap -EXPORT_SYMBOL vmlinux 0xc25ac5f0 fb_validate_mode -EXPORT_SYMBOL vmlinux 0xc2613b40 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0xc2672302 tcf_chain_get_by_act -EXPORT_SYMBOL vmlinux 0xc26a63c4 padata_alloc -EXPORT_SYMBOL vmlinux 0xc26ac1e9 nf_ct_attach -EXPORT_SYMBOL vmlinux 0xc26c494e filemap_fdatawrite_wbc -EXPORT_SYMBOL vmlinux 0xc28b4656 seq_bprintf -EXPORT_SYMBOL vmlinux 0xc28c6e10 lock_rename_child +EXPORT_SYMBOL vmlinux 0xc238d7c8 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xc249d4cb fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xc26218f3 xfrm_init_replay EXPORT_SYMBOL vmlinux 0xc29bf967 strspn -EXPORT_SYMBOL vmlinux 0xc2a1d49a devm_pci_remap_iospace -EXPORT_SYMBOL vmlinux 0xc2a84e3c input_set_abs_params -EXPORT_SYMBOL vmlinux 0xc2a86826 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xc2a32274 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xc2c7ba06 ip6_xmit EXPORT_SYMBOL vmlinux 0xc2cb862e sgl_alloc_order -EXPORT_SYMBOL vmlinux 0xc2d04b40 neigh_update -EXPORT_SYMBOL vmlinux 0xc2d6faf1 netif_tx_unlock -EXPORT_SYMBOL vmlinux 0xc2db35a6 pcibios_bus_to_resource EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou -EXPORT_SYMBOL vmlinux 0xc2e1f689 genphy_c45_ethtool_set_eee EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices -EXPORT_SYMBOL vmlinux 0xc2ed22b7 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc2ec53ac flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xc2ef7adc dev_uc_sync EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 -EXPORT_SYMBOL vmlinux 0xc2fa095b vfs_fsync EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state EXPORT_SYMBOL vmlinux 0xc310b981 strnstr EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr -EXPORT_SYMBOL vmlinux 0xc32b5ba9 mdiobus_register_device EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier -EXPORT_SYMBOL vmlinux 0xc331986a dquot_load_quota_inode -EXPORT_SYMBOL vmlinux 0xc33a28f8 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xc33a78a6 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xc351adad skb_pull_data EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc3635c36 cros_ec_cmd_xfer_status EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc378050d dma_resv_init EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy -EXPORT_SYMBOL vmlinux 0xc3834f61 clocksource_unregister EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer -EXPORT_SYMBOL vmlinux 0xc3917534 submit_bio_noacct -EXPORT_SYMBOL vmlinux 0xc3b1390e genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xc3af0561 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc3b659d6 security_sb_set_mnt_opts EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb -EXPORT_SYMBOL vmlinux 0xc3d0e54a sg_miter_stop -EXPORT_SYMBOL vmlinux 0xc3fe659f mpage_writepages +EXPORT_SYMBOL vmlinux 0xc3d08ef4 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xc3e45996 register_md_personality +EXPORT_SYMBOL vmlinux 0xc3f09ff7 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xc3f1f839 input_close_device +EXPORT_SYMBOL vmlinux 0xc3fe810a locks_delete_block EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock -EXPORT_SYMBOL vmlinux 0xc40f0de0 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xc4068601 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xc41006bc bdi_unregister +EXPORT_SYMBOL vmlinux 0xc41a7b1e mdiobus_write EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert -EXPORT_SYMBOL vmlinux 0xc425e04b backlight_device_register EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0xc4327399 noop_llseek -EXPORT_SYMBOL vmlinux 0xc438020d neigh_event_ns -EXPORT_SYMBOL vmlinux 0xc4401c31 dma_async_device_unregister -EXPORT_SYMBOL vmlinux 0xc447cb02 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0xc450a6b7 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc43a8ba2 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xc441b209 __devm_mdiobus_register EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp -EXPORT_SYMBOL vmlinux 0xc457a0f8 tcp_md5_hash_skb_data -EXPORT_SYMBOL vmlinux 0xc45a6a1c regset_get -EXPORT_SYMBOL vmlinux 0xc45c370e vfs_clone_file_range -EXPORT_SYMBOL vmlinux 0xc4628de1 input_inject_event -EXPORT_SYMBOL vmlinux 0xc46a412b __netdev_notify_peers -EXPORT_SYMBOL vmlinux 0xc46ae1fb md_unregister_thread -EXPORT_SYMBOL vmlinux 0xc46c1ded nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xc454a4c3 tty_port_destroy EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 -EXPORT_SYMBOL vmlinux 0xc4a87619 __devm_of_mdiobus_register -EXPORT_SYMBOL vmlinux 0xc4ac9179 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xc478adec dquot_transfer +EXPORT_SYMBOL vmlinux 0xc47c025f param_set_charp EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog -EXPORT_SYMBOL vmlinux 0xc4b0d0e7 to_nd_dax EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal -EXPORT_SYMBOL vmlinux 0xc4cb708e ip_setsockopt -EXPORT_SYMBOL vmlinux 0xc4cdfb86 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xc4b75e8e of_get_mac_address +EXPORT_SYMBOL vmlinux 0xc4bf339c phy_attach +EXPORT_SYMBOL vmlinux 0xc4d2271a uart_write_wakeup EXPORT_SYMBOL vmlinux 0xc4d9ef9b system_cpucaps -EXPORT_SYMBOL vmlinux 0xc4e12acd simple_transaction_set -EXPORT_SYMBOL vmlinux 0xc510b172 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xc4eb3d4b netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xc4f0b794 mmc_request_done +EXPORT_SYMBOL vmlinux 0xc5107e4d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc517e1f0 netdev_update_features +EXPORT_SYMBOL vmlinux 0xc5247693 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xc527cd07 of_device_alloc EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0xc542ca04 simple_fill_super -EXPORT_SYMBOL vmlinux 0xc544930a fd_install -EXPORT_SYMBOL vmlinux 0xc54dd90c tcf_exts_num_actions -EXPORT_SYMBOL vmlinux 0xc55ddd5e tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0xc53c4e62 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xc55e2908 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xc56a911c xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xc56b2950 textsearch_prepare EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset -EXPORT_SYMBOL vmlinux 0xc56dd912 crypto_kdf108_setkey -EXPORT_SYMBOL vmlinux 0xc57b5e27 tcp_v4_connect EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next -EXPORT_SYMBOL vmlinux 0xc57fe5b4 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0xc5854fad fs_param_is_string +EXPORT_SYMBOL vmlinux 0xc585cc81 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xc58911ff request_firmware EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0xc5946e2e __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59a6713 __quota_error +EXPORT_SYMBOL vmlinux 0xc5a43ee1 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xc5ab5f23 filemap_fault +EXPORT_SYMBOL vmlinux 0xc5ae850f xfrm_unregister_type EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on -EXPORT_SYMBOL vmlinux 0xc5be785a fixed_size_llseek -EXPORT_SYMBOL vmlinux 0xc5d3ef52 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0xc5d4b2e2 bio_split_to_limits -EXPORT_SYMBOL vmlinux 0xc5d99a03 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xc5c77470 con_is_bound +EXPORT_SYMBOL vmlinux 0xc5cf7c6c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc5d27658 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xc5d889fb phy_register_fixup +EXPORT_SYMBOL vmlinux 0xc5e5e4bc locks_copy_lock EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource -EXPORT_SYMBOL vmlinux 0xc5ef3991 netdev_features_change +EXPORT_SYMBOL vmlinux 0xc5f4e1dd set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xc5fcefef block_write_full_page +EXPORT_SYMBOL vmlinux 0xc5fe6b60 file_remove_privs +EXPORT_SYMBOL vmlinux 0xc60c2111 pnp_disable_dev EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc60ddb02 param_set_long +EXPORT_SYMBOL vmlinux 0xc61a5ae6 of_property_read_reg +EXPORT_SYMBOL vmlinux 0xc61c7117 __mod_lruvec_page_state EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc62617e5 noop_dirty_folio EXPORT_SYMBOL vmlinux 0xc631580a console_unlock EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup -EXPORT_SYMBOL vmlinux 0xc6367639 __invalidate_device -EXPORT_SYMBOL vmlinux 0xc659ba91 folio_redirty_for_writepage -EXPORT_SYMBOL vmlinux 0xc659f78a inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc636bbd5 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xc648bc47 set_page_dirty EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif -EXPORT_SYMBOL vmlinux 0xc68727da tcf_em_tree_destroy -EXPORT_SYMBOL vmlinux 0xc68e46c3 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0xc694f486 __lock_buffer +EXPORT_SYMBOL vmlinux 0xc669f952 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xc6753036 from_kprojid +EXPORT_SYMBOL vmlinux 0xc691962b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xc69e9baa mr_vif_seq_idx EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle -EXPORT_SYMBOL vmlinux 0xc6c74b83 lynx_pcs_create_mdiodev +EXPORT_SYMBOL vmlinux 0xc6a403b6 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xc6a5c776 ptp_clock_index EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ce07a0 bio_init_clone +EXPORT_SYMBOL vmlinux 0xc6d061fe param_set_ulong EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware -EXPORT_SYMBOL vmlinux 0xc6dd2f41 tty_unlock -EXPORT_SYMBOL vmlinux 0xc6e13dad vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0xc6e625ed flow_block_cb_lookup EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key -EXPORT_SYMBOL vmlinux 0xc705f4cd of_chosen +EXPORT_SYMBOL vmlinux 0xc6f7aa0a inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xc6fab0ab grab_cache_page_write_begin EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write -EXPORT_SYMBOL vmlinux 0xc7136c62 pci_setup_cardbus EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port -EXPORT_SYMBOL vmlinux 0xc72585c9 dma_async_tx_descriptor_init -EXPORT_SYMBOL vmlinux 0xc74cd8f5 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xc743dedf ip_getsockopt +EXPORT_SYMBOL vmlinux 0xc74eafbf __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xc76100a8 put_fs_context +EXPORT_SYMBOL vmlinux 0xc76a518c i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xc778fc99 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xc77d7517 pcix_get_max_mmrbc EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xc789fe04 inet_sk_set_state -EXPORT_SYMBOL vmlinux 0xc794c44d sock_recv_errqueue EXPORT_SYMBOL vmlinux 0xc7975de0 trace_seq_acquire -EXPORT_SYMBOL vmlinux 0xc7a21421 mipi_dsi_dcs_get_power_mode EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7aa2910 param_get_ulong EXPORT_SYMBOL vmlinux 0xc7ae1903 security_lock_kernel_down -EXPORT_SYMBOL vmlinux 0xc7bc64b4 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xc7b23802 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xc7bad0cd skb_append EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe -EXPORT_SYMBOL vmlinux 0xc7c6e488 neigh_app_ns -EXPORT_SYMBOL vmlinux 0xc7e14799 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0xc7fca0e2 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0xc7fee684 mdio_driver_unregister -EXPORT_SYMBOL vmlinux 0xc809e977 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xc7ca45c3 __folio_lock +EXPORT_SYMBOL vmlinux 0xc7de21e1 __alloc_pages +EXPORT_SYMBOL vmlinux 0xc7e385ac generic_ro_fops +EXPORT_SYMBOL vmlinux 0xc7f5b313 phy_get_pause +EXPORT_SYMBOL vmlinux 0xc8005993 jbd2_journal_free_reserved EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one -EXPORT_SYMBOL vmlinux 0xc80bf86a page_pool_create +EXPORT_SYMBOL vmlinux 0xc80b19e2 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xc81e97eb __neigh_create +EXPORT_SYMBOL vmlinux 0xc82aa2de dev_get_by_name_rcu EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 EXPORT_SYMBOL vmlinux 0xc839afed hdmi_audio_infoframe_check -EXPORT_SYMBOL vmlinux 0xc83e526c of_graph_get_port_parent -EXPORT_SYMBOL vmlinux 0xc8449653 locks_free_lock +EXPORT_SYMBOL vmlinux 0xc83c8706 generic_read_dir +EXPORT_SYMBOL vmlinux 0xc8446937 filemap_fdatawrite_range EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0xc84c3cde ram_aops -EXPORT_SYMBOL vmlinux 0xc85bd2de tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xc85e5390 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xc861af7c netdev_err EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0xc8789dca seq_write -EXPORT_SYMBOL vmlinux 0xc879ccfa kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xc874ec0c fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xc87c4bf2 mipi_dsi_dcs_set_display_brightness EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals -EXPORT_SYMBOL vmlinux 0xc88e7ee9 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xc883e8a2 skb_trim EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89791f7 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xc8981b9e i2c_find_device_by_fwnode EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc89cff4b genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xc89f828e __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc8a30f2c truncate_pagecache EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread -EXPORT_SYMBOL vmlinux 0xc8b213b9 input_allocate_device -EXPORT_SYMBOL vmlinux 0xc8bce266 tty_port_close -EXPORT_SYMBOL vmlinux 0xc8c6e6b5 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xc8ababda pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xc8b524cd fault_in_iov_iter_writeable EXPORT_SYMBOL vmlinux 0xc8c85086 sg_free_table +EXPORT_SYMBOL vmlinux 0xc8d3e475 proc_mkdir +EXPORT_SYMBOL vmlinux 0xc8dca6c9 clk_hw_register_clkdev EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc -EXPORT_SYMBOL vmlinux 0xc8efb2e7 put_cmsg_scm_timestamping64 -EXPORT_SYMBOL vmlinux 0xc8f006ea devm_arch_io_reserve_memtype_wc -EXPORT_SYMBOL vmlinux 0xc906ee2f scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xc8df937d get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xc8e2f7e5 inode_init_once +EXPORT_SYMBOL vmlinux 0xc90810a9 dev_mc_add +EXPORT_SYMBOL vmlinux 0xc90a4518 shmem_aops +EXPORT_SYMBOL vmlinux 0xc9137e6d flow_rule_match_enc_ipv4_addrs EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc -EXPORT_SYMBOL vmlinux 0xc92901be vfs_copy_file_range -EXPORT_SYMBOL vmlinux 0xc93610fd dec_zone_page_state -EXPORT_SYMBOL vmlinux 0xc93673fa tso_start +EXPORT_SYMBOL vmlinux 0xc91862c2 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xc9229337 skb_ext_add +EXPORT_SYMBOL vmlinux 0xc9316842 rawv6_mh_filter_unregister EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0xc94053c0 folio_migrate_copy -EXPORT_SYMBOL vmlinux 0xc9407489 netpoll_cleanup -EXPORT_SYMBOL vmlinux 0xc9448527 security_tun_dev_attach -EXPORT_SYMBOL vmlinux 0xc94cf300 dev_addr_add -EXPORT_SYMBOL vmlinux 0xc94dca23 tcf_action_update_stats -EXPORT_SYMBOL vmlinux 0xc95038cf __seq_open_private -EXPORT_SYMBOL vmlinux 0xc951b36b sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0xc95f0d82 dst_init +EXPORT_SYMBOL vmlinux 0xc9544413 phy_stop +EXPORT_SYMBOL vmlinux 0xc9554792 arp_send EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0xc9730f06 ip6_err_gen_icmpv6_unreach -EXPORT_SYMBOL vmlinux 0xc977276d end_buffer_async_write -EXPORT_SYMBOL vmlinux 0xc9797619 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xc97731dc mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xc9778e4f xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xc97ceb07 mnt_drop_write_file EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev -EXPORT_SYMBOL vmlinux 0xc996b520 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc9878bf7 tty_do_resize +EXPORT_SYMBOL vmlinux 0xc988275d tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xc99dc085 __xfrm_policy_check EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev -EXPORT_SYMBOL vmlinux 0xc9b488a5 generic_pipe_buf_try_steal -EXPORT_SYMBOL vmlinux 0xc9b6fad2 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xc9b433e6 amba_driver_register +EXPORT_SYMBOL vmlinux 0xc9c6b3c8 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xc9c94aef inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xc9d52549 vga_remove_vgacon EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned -EXPORT_SYMBOL vmlinux 0xc9f2da8c cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0xca0b1a7d blk_queue_flag_set -EXPORT_SYMBOL vmlinux 0xca163eb5 seq_vprintf +EXPORT_SYMBOL vmlinux 0xc9f02b78 ip_options_compile +EXPORT_SYMBOL vmlinux 0xc9f34b2f tcp_make_synack +EXPORT_SYMBOL vmlinux 0xc9f4d9c8 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xc9fb3981 simple_symlink_inode_operations EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx EXPORT_SYMBOL vmlinux 0xca17ac01 _find_next_andnot_bit +EXPORT_SYMBOL vmlinux 0xca1e6b2b skb_free_datagram EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free -EXPORT_SYMBOL vmlinux 0xca3e5860 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xca3edbd1 mdiobus_scan_c22 EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca44a757 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xca484084 peernet2id +EXPORT_SYMBOL vmlinux 0xca4ce4ca tcp_conn_request EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp -EXPORT_SYMBOL vmlinux 0xca740ece page_pool_get_stats -EXPORT_SYMBOL vmlinux 0xca7442c9 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xca70dae8 __brelse +EXPORT_SYMBOL vmlinux 0xca744b20 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xca7ab056 inet_csk_accept EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next -EXPORT_SYMBOL vmlinux 0xca96c651 iommu_get_msi_cookie EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store -EXPORT_SYMBOL vmlinux 0xcaa7f898 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0xcaa99053 devm_aperture_acquire_for_platform_device -EXPORT_SYMBOL vmlinux 0xcabc4034 setattr_should_drop_sgid -EXPORT_SYMBOL vmlinux 0xcac707af md_write_inc +EXPORT_SYMBOL vmlinux 0xcac01082 ipv6_find_hdr EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception -EXPORT_SYMBOL vmlinux 0xcaf4ee81 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xcae72b73 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xcaef5c20 param_array_ops +EXPORT_SYMBOL vmlinux 0xcafe6ac4 tegra_ivc_write_get_next_frame EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu -EXPORT_SYMBOL vmlinux 0xcb1cdc2b nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0xcb25b5a1 always_delete_dentry -EXPORT_SYMBOL vmlinux 0xcb2abe16 sock_set_reuseaddr -EXPORT_SYMBOL vmlinux 0xcb2c108a pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xcb28ae5e vga_put +EXPORT_SYMBOL vmlinux 0xcb2e5798 vlan_for_each EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xcb6a702a dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xcb4f36e5 ip6tun_encaps EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0xcb767183 __folio_lock -EXPORT_SYMBOL vmlinux 0xcb816fce genphy_read_mmd_unsupported -EXPORT_SYMBOL vmlinux 0xcba952c7 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xcb8049c7 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xcb8b9635 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xcbb32f78 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xcbba548c mdiobus_c45_write_nested +EXPORT_SYMBOL vmlinux 0xcbbae70f folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xcbbb6467 textsearch_destroy EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context -EXPORT_SYMBOL vmlinux 0xcbbfb59d fqdir_init -EXPORT_SYMBOL vmlinux 0xcbce513b __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0xcbcfb4ec napi_disable EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic -EXPORT_SYMBOL vmlinux 0xcbeca965 inet_addr_type +EXPORT_SYMBOL vmlinux 0xcbdddc6d tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xcbe1a32a elv_rb_add +EXPORT_SYMBOL vmlinux 0xcbe4b8ad phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xcbed9216 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xcbf3e9dc nvdimm_namespace_common_probe EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev -EXPORT_SYMBOL vmlinux 0xcbffc706 of_node_name_eq +EXPORT_SYMBOL vmlinux 0xcc088b22 tcp_check_req +EXPORT_SYMBOL vmlinux 0xcc145446 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xcc172088 amba_release_regions +EXPORT_SYMBOL vmlinux 0xcc1b3e47 xudma_get_device EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul -EXPORT_SYMBOL vmlinux 0xcc1bcdd9 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xcc222929 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xcc22d330 kernel_sock_ip_overhead EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0xcc25dfc3 blk_rq_map_kern EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class -EXPORT_SYMBOL vmlinux 0xcc36a14f rtnl_unicast +EXPORT_SYMBOL vmlinux 0xcc37e17f __ethtool_get_link_ksettings EXPORT_SYMBOL vmlinux 0xcc392eea kmalloc_size_roundup EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc4cf71e get_tree_single EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible -EXPORT_SYMBOL vmlinux 0xcc5ae440 empty_aops EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock -EXPORT_SYMBOL vmlinux 0xcc6bf862 udp_skb_destructor -EXPORT_SYMBOL vmlinux 0xcc736d5d request_firmware -EXPORT_SYMBOL vmlinux 0xcc8dea4f get_tree_bdev +EXPORT_SYMBOL vmlinux 0xcc715e2d xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xcc82fbc9 file_ns_capable +EXPORT_SYMBOL vmlinux 0xcc831047 bio_add_folio +EXPORT_SYMBOL vmlinux 0xcc86bd7e dev_printk_emit +EXPORT_SYMBOL vmlinux 0xcc8bef94 sock_i_uid +EXPORT_SYMBOL vmlinux 0xcc928f1b pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xcc92d8b0 tls_server_hello_psk +EXPORT_SYMBOL vmlinux 0xcc979465 rw_verify_area +EXPORT_SYMBOL vmlinux 0xcc9a2a8c sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xcca1552c key_revoke EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id -EXPORT_SYMBOL vmlinux 0xccad634b generic_read_dir EXPORT_SYMBOL vmlinux 0xccaf994e dma_fence_set_deadline -EXPORT_SYMBOL vmlinux 0xccbab28b vm_map_pages_zero -EXPORT_SYMBOL vmlinux 0xccd6c77b page_pool_release_page -EXPORT_SYMBOL vmlinux 0xcce15749 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xccbbee28 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xccbd4e85 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xccce16f1 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xcccfb31b inet_sendmsg +EXPORT_SYMBOL vmlinux 0xccd573e4 vme_new_dma_list EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data EXPORT_SYMBOL vmlinux 0xcd279169 nla_find -EXPORT_SYMBOL vmlinux 0xcd512eba clkdev_add -EXPORT_SYMBOL vmlinux 0xcd547edf qdisc_tree_reduce_backlog -EXPORT_SYMBOL vmlinux 0xcd6c398d configfs_unregister_subsystem -EXPORT_SYMBOL vmlinux 0xcd7e2f50 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xcd35b71a flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xcd3b0e03 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xcd3c06fc pci_resize_resource +EXPORT_SYMBOL vmlinux 0xcd723981 pcim_iomap +EXPORT_SYMBOL vmlinux 0xcd867afa import_iovec EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception -EXPORT_SYMBOL vmlinux 0xcd912171 udp_prot EXPORT_SYMBOL vmlinux 0xcd9c13a3 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0xcd9dfb36 finish_swait +EXPORT_SYMBOL vmlinux 0xcda85146 devm_rproc_add EXPORT_SYMBOL vmlinux 0xcdaced8a qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0xcdb7a538 qman_get_qm_portal_config EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel -EXPORT_SYMBOL vmlinux 0xcdd37df0 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xcddc83c8 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xcde66b19 par_io_of_config +EXPORT_SYMBOL vmlinux 0xcde776dd netdev_lower_get_next_private EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev -EXPORT_SYMBOL vmlinux 0xcdeee09a pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0xcdf0b6e7 devfreq_register_notifier -EXPORT_SYMBOL vmlinux 0xcdfbff25 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xcdfce35f pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xcdff1dd9 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0xcdfffcac input_register_device +EXPORT_SYMBOL vmlinux 0xce0c6f5b kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0xce3a743c sg_miter_start +EXPORT_SYMBOL vmlinux 0xce2b3f0c eth_gro_complete +EXPORT_SYMBOL vmlinux 0xce382f42 skb_tx_error +EXPORT_SYMBOL vmlinux 0xce461bf4 phy_trigger_machine EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0xce53b316 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xce53e90d pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xce578890 readahead_expand EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize -EXPORT_SYMBOL vmlinux 0xce65de6f xp_can_alloc +EXPORT_SYMBOL vmlinux 0xce6bf6a1 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xce6f5e53 phy_mac_interrupt EXPORT_SYMBOL vmlinux 0xce720f28 mtree_destroy EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table EXPORT_SYMBOL vmlinux 0xce807a25 up_write -EXPORT_SYMBOL vmlinux 0xce914f28 arp_xmit -EXPORT_SYMBOL vmlinux 0xcea98390 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xce894e0c fddi_type_trans +EXPORT_SYMBOL vmlinux 0xce939074 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xce9ec813 tcp_v4_connect EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul -EXPORT_SYMBOL vmlinux 0xceb7362b mdio_device_free -EXPORT_SYMBOL vmlinux 0xcebf3295 component_match_add_release +EXPORT_SYMBOL vmlinux 0xcece7c44 phy_register_fixup_for_uid EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create -EXPORT_SYMBOL vmlinux 0xceeb1e7f skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xced21e4d __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xcedb3ed2 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xcee8c508 follow_down +EXPORT_SYMBOL vmlinux 0xcef44b95 of_node_name_eq EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0xcf03c55a netdev_set_tc_queue -EXPORT_SYMBOL vmlinux 0xcf23f33e register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xceffda6c md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xcf192d0a mfd_add_devices +EXPORT_SYMBOL vmlinux 0xcf28556f devfreq_monitor_stop EXPORT_SYMBOL vmlinux 0xcf2a6966 up EXPORT_SYMBOL vmlinux 0xcf2ea86b __tracepoint_mmap_lock_acquire_returned -EXPORT_SYMBOL vmlinux 0xcf379bd5 fget EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0xcf3ce960 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0xcf3f82cc sched_autogroup_create_attach -EXPORT_SYMBOL vmlinux 0xcf490060 param_ops_ulong -EXPORT_SYMBOL vmlinux 0xcf4f04e8 __netif_rx +EXPORT_SYMBOL vmlinux 0xcf419ef1 of_find_node_by_type EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0xcf629373 cpufreq_generic_suspend -EXPORT_SYMBOL vmlinux 0xcf6b5280 netdev_get_xmit_slave -EXPORT_SYMBOL vmlinux 0xcf715fb9 __skb_get_hash -EXPORT_SYMBOL vmlinux 0xcf736df0 sock_create -EXPORT_SYMBOL vmlinux 0xcf758bfe tcp_parse_options -EXPORT_SYMBOL vmlinux 0xcf9b04bd mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xcf5a24ad ptp_clock_event +EXPORT_SYMBOL vmlinux 0xcf688e70 param_ops_uint +EXPORT_SYMBOL vmlinux 0xcf754f7b devm_of_iomap +EXPORT_SYMBOL vmlinux 0xcf7babdd __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xcf8379c5 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xcf8a56ca input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xcf8f3955 page_pool_alloc_frag EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos -EXPORT_SYMBOL vmlinux 0xcfb62d28 crypto_sha1_update -EXPORT_SYMBOL vmlinux 0xcfbcaed7 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xcfa6c7c6 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xcfb881a7 dma_get_sgtable_attrs EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0xcfcea03a bdi_unregister -EXPORT_SYMBOL vmlinux 0xcfd44aba sock_alloc_file -EXPORT_SYMBOL vmlinux 0xcfd452dc phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xcfca73f2 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xcfce4fe3 dump_align EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned -EXPORT_SYMBOL vmlinux 0xcfdb7157 xfrm_unregister_type_offload -EXPORT_SYMBOL vmlinux 0xcfe95a06 alloc_pages -EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance -EXPORT_SYMBOL vmlinux 0xcfebdd95 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0xcfeca7e0 of_device_is_compatible -EXPORT_SYMBOL vmlinux 0xcff7708c pci_ep_cfs_remove_epf_group -EXPORT_SYMBOL vmlinux 0xd01d9ce3 vga_put -EXPORT_SYMBOL vmlinux 0xd0268e03 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0xd0388900 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xcfd9255c fb_io_read +EXPORT_SYMBOL vmlinux 0xd00011df blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xd00d03ad nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xd0137fa0 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xd0170136 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0xd02c0e15 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xd03b46dd tcp_parse_options EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd04c6849 tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0xd055b604 bprm_change_interp EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0737bea init_special_inode +EXPORT_SYMBOL vmlinux 0xd075e1c4 filemap_flush EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive -EXPORT_SYMBOL vmlinux 0xd0888066 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xd079929a netdev_offload_xstats_disable EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump -EXPORT_SYMBOL vmlinux 0xd08e85e0 fs_bio_set -EXPORT_SYMBOL vmlinux 0xd094ce44 mr_mfc_seq_idx -EXPORT_SYMBOL vmlinux 0xd0a59cfc jbd2_journal_inode_ranged_wait -EXPORT_SYMBOL vmlinux 0xd0aaf84a mmc_sw_reset -EXPORT_SYMBOL vmlinux 0xd0adee6a rproc_put +EXPORT_SYMBOL vmlinux 0xd0aa206e tcf_action_exec EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface -EXPORT_SYMBOL vmlinux 0xd0bc4327 folio_wait_bit_killable -EXPORT_SYMBOL vmlinux 0xd0ca9ed6 inc_node_page_state -EXPORT_SYMBOL vmlinux 0xd0e281b3 block_commit_write -EXPORT_SYMBOL vmlinux 0xd0f137b8 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0xd106d032 netlink_capable -EXPORT_SYMBOL vmlinux 0xd1094244 iommu_dma_get_resv_regions -EXPORT_SYMBOL vmlinux 0xd11b7df1 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xd0bae4ea vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xd0c1c9f4 touch_buffer +EXPORT_SYMBOL vmlinux 0xd0c29465 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd0e80957 sget_fc +EXPORT_SYMBOL vmlinux 0xd10c4f5a from_kgid +EXPORT_SYMBOL vmlinux 0xd1122bd5 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xd11995b4 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xd121764d of_get_next_parent +EXPORT_SYMBOL vmlinux 0xd12d1d6c poll_freewait EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13ee6af param_set_copystring EXPORT_SYMBOL vmlinux 0xd15cb96e nla_put -EXPORT_SYMBOL vmlinux 0xd1882ac4 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xd16cb6e1 tcp_recv_skb EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0xd19aff9b twl6030_mmc_card_detect -EXPORT_SYMBOL vmlinux 0xd1a58be6 follow_down -EXPORT_SYMBOL vmlinux 0xd1b2906b param_get_int -EXPORT_SYMBOL vmlinux 0xd1c1991a ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0xd1d672f5 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xd195d509 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd1d672ea devm_extcon_unregister_notifier_all EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string -EXPORT_SYMBOL vmlinux 0xd1d98be6 mfd_remove_devices_late -EXPORT_SYMBOL vmlinux 0xd1dda528 sock_i_ino -EXPORT_SYMBOL vmlinux 0xd1e3e935 skb_flow_dissect_ct -EXPORT_SYMBOL vmlinux 0xd1e5869f pci_iounmap -EXPORT_SYMBOL vmlinux 0xd1ea987f xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xd1f3ec01 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xd1f66861 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xd1f7549d ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xd1fca440 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xd2049b25 mipi_dsi_device_register_full EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down -EXPORT_SYMBOL vmlinux 0xd20793c1 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0xd217cad7 acpi_dev_get_first_match_dev EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0xd22a6bb6 devm_extcon_register_notifier_all -EXPORT_SYMBOL vmlinux 0xd23891e2 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xd237bd3a pnp_possible_config +EXPORT_SYMBOL vmlinux 0xd23b58af flow_rule_match_l2tpv3 EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd24992cb __phy_resume EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook -EXPORT_SYMBOL vmlinux 0xd2684827 fb_class -EXPORT_SYMBOL vmlinux 0xd2702d10 con_is_visible +EXPORT_SYMBOL vmlinux 0xd26f7efd mr_mfc_seq_idx EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy -EXPORT_SYMBOL vmlinux 0xd296e76d nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xd285821d pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xd29e6d24 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xd2a5e1ff inet_dgram_connect EXPORT_SYMBOL vmlinux 0xd2b46a3c vme_unregister_error_handler -EXPORT_SYMBOL vmlinux 0xd2b4cdd9 input_event -EXPORT_SYMBOL vmlinux 0xd2be87dc dma_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0xd2ca2cc8 follow_pfn -EXPORT_SYMBOL vmlinux 0xd2cf6749 sk_net_capable +EXPORT_SYMBOL vmlinux 0xd2d196c4 mmc_remove_host EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2d97463 netlink_kernel_release EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a384 request_partial_firmware_into_buf EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only -EXPORT_SYMBOL vmlinux 0xd2ea1ed2 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0xd2f05ec1 dma_pool_create -EXPORT_SYMBOL vmlinux 0xd2feffec netif_schedule_queue -EXPORT_SYMBOL vmlinux 0xd30ddcb1 vfs_create_mount -EXPORT_SYMBOL vmlinux 0xd31bb89b __put_user_ns +EXPORT_SYMBOL vmlinux 0xd2f6c57a vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xd2f786e0 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xd2fb8fd7 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xd2fd3d94 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xd30577a2 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xd306e8f8 mmc_erase EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible -EXPORT_SYMBOL vmlinux 0xd33045ff devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd31d8e97 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xd32b00d1 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xd341011e mmc_wait_for_cmd EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd356ca8a imx_scu_enable_general_irq_channel EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0xd35bcd13 dma_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0xd3636a72 pci_reenable_device -EXPORT_SYMBOL vmlinux 0xd36935a0 insert_inode_locked4 EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0xd38a013e __d_lookup_unhash_wake +EXPORT_SYMBOL vmlinux 0xd37a3331 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xd387f4a5 d_drop EXPORT_SYMBOL vmlinux 0xd38ee2c7 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0xd3ab06af of_phy_find_device -EXPORT_SYMBOL vmlinux 0xd3c1466e blk_finish_plug -EXPORT_SYMBOL vmlinux 0xd3d5159f is_acpi_data_node -EXPORT_SYMBOL vmlinux 0xd3de1ca0 md_finish_reshape -EXPORT_SYMBOL vmlinux 0xd3e274bf pci_set_power_state -EXPORT_SYMBOL vmlinux 0xd3ee3142 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0xd3f96dca inet_put_port +EXPORT_SYMBOL vmlinux 0xd391d67f dcache_dir_close +EXPORT_SYMBOL vmlinux 0xd3a5bfbd request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xd3ace6bc dev_get_iflink +EXPORT_SYMBOL vmlinux 0xd3ba7fb0 ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xd3c41b60 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xd3e18ccc unlock_page +EXPORT_SYMBOL vmlinux 0xd3e86d17 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xd3eaed8e invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd3f13189 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xd3f5430d tcf_exts_num_actions EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal -EXPORT_SYMBOL vmlinux 0xd40a2f89 vme_dma_list_exec -EXPORT_SYMBOL vmlinux 0xd42597f0 vme_register_driver -EXPORT_SYMBOL vmlinux 0xd426e57f fddi_type_trans -EXPORT_SYMBOL vmlinux 0xd43deaa3 skb_copy_header -EXPORT_SYMBOL vmlinux 0xd457b7c2 kobject_get +EXPORT_SYMBOL vmlinux 0xd417ccae simple_setattr +EXPORT_SYMBOL vmlinux 0xd425b679 netdev_alert +EXPORT_SYMBOL vmlinux 0xd4328d68 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xd43bf275 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd44192eb __acpi_mdiobus_register EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex EXPORT_SYMBOL vmlinux 0xd469bccc __tracepoint_mmap_lock_released -EXPORT_SYMBOL vmlinux 0xd47189bd genphy_read_status_fixed -EXPORT_SYMBOL vmlinux 0xd47571c4 find_inode_by_ino_rcu -EXPORT_SYMBOL vmlinux 0xd475ec8a create_empty_buffers EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system -EXPORT_SYMBOL vmlinux 0xd499fd43 tls_handshake_cancel -EXPORT_SYMBOL vmlinux 0xd49ae888 proc_create_seq_private EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam EXPORT_SYMBOL vmlinux 0xd4afea5d free_irq_cpu_rmap EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain -EXPORT_SYMBOL vmlinux 0xd4c2677f ip6_output -EXPORT_SYMBOL vmlinux 0xd4c7a2a5 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xd4cba69a param_ops_string EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table -EXPORT_SYMBOL vmlinux 0xd4d51b31 pci_read_vpd_any -EXPORT_SYMBOL vmlinux 0xd4dabd91 xfrm_if_register_cb -EXPORT_SYMBOL vmlinux 0xd4e24e88 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0xd4efb93b scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0xd5070c1e jbd2_fc_end_commit -EXPORT_SYMBOL vmlinux 0xd51f8cbf logfc -EXPORT_SYMBOL vmlinux 0xd5216d25 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xd4d4a6aa netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xd4d6c20c config_group_init +EXPORT_SYMBOL vmlinux 0xd4f04b14 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xd4f68ba3 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xd4ffe909 dev_load +EXPORT_SYMBOL vmlinux 0xd508d74d d_lookup +EXPORT_SYMBOL vmlinux 0xd51d8d23 vfs_llseek EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0xd5282ff4 set_disk_ro +EXPORT_SYMBOL vmlinux 0xd52ae418 vlan_vid_add EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0xd549fea6 dev_lstats_read -EXPORT_SYMBOL vmlinux 0xd5529531 vme_master_mmap -EXPORT_SYMBOL vmlinux 0xd56e9d29 dst_alloc -EXPORT_SYMBOL vmlinux 0xd57aee62 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xd53e4477 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xd547d983 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd54be4b4 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xd55c841d phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xd562606e of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xd56abe25 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xd5761cf7 scsi_partsize +EXPORT_SYMBOL vmlinux 0xd576d8c5 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd59929cf tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xd59e207e generic_permission EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state -EXPORT_SYMBOL vmlinux 0xd5cf2878 neigh_carrier_down -EXPORT_SYMBOL vmlinux 0xd5d706a1 bio_add_page -EXPORT_SYMBOL vmlinux 0xd5e7f594 _dev_alert -EXPORT_SYMBOL vmlinux 0xd5fa7d46 generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0xd5d09473 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xd5dcd646 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xd5e4c90d serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xd5e6225c tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xd5e6851b devm_aperture_acquire_for_platform_device +EXPORT_SYMBOL vmlinux 0xd5ee5571 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xd5f2447c inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xd5f24f46 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xd5f6a5c3 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xd5f9d332 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xd5fc9aa5 skb_flow_dissect_ct EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k -EXPORT_SYMBOL vmlinux 0xd60d3fbf skb_recv_datagram -EXPORT_SYMBOL vmlinux 0xd60f0511 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0xd6120f9c phy_register_fixup_for_uid -EXPORT_SYMBOL vmlinux 0xd62d4015 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xd6089340 inet_csk_reqsk_queue_drop_and_put EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63235e5 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xd633ec21 lynx_pcs_create_mdiodev +EXPORT_SYMBOL vmlinux 0xd636a448 genphy_handle_interrupt_no_ack EXPORT_SYMBOL vmlinux 0xd642f3f6 video_firmware_drivers_only EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0xd6516176 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xd65527ae pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xd65de773 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xd65dfe93 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xd66abf2f iov_iter_init EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness -EXPORT_SYMBOL vmlinux 0xd67a6861 make_kuid -EXPORT_SYMBOL vmlinux 0xd67f678c d_obtain_root +EXPORT_SYMBOL vmlinux 0xd66fff91 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xd686a9ce blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xd6895192 __free_pages EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource -EXPORT_SYMBOL vmlinux 0xd69739db inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xd6962711 tty_port_free_xmit_buf EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read -EXPORT_SYMBOL vmlinux 0xd6aee6a0 disk_check_media_change -EXPORT_SYMBOL vmlinux 0xd6b0aac7 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0xd6b24b56 migrate_vma_finalize -EXPORT_SYMBOL vmlinux 0xd6cace11 input_register_device -EXPORT_SYMBOL vmlinux 0xd6dad26f tcf_action_exec -EXPORT_SYMBOL vmlinux 0xd6e446bd flow_rule_match_pppoe +EXPORT_SYMBOL vmlinux 0xd6cf1be2 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xd6dfdea3 generic_write_checks EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc -EXPORT_SYMBOL vmlinux 0xd6f722b7 param_get_byte EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced -EXPORT_SYMBOL vmlinux 0xd7033e19 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xd6fe2541 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xd700c728 dentry_open +EXPORT_SYMBOL vmlinux 0xd70354bd __traceiter_kmem_cache_alloc EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute EXPORT_SYMBOL vmlinux 0xd71104b3 vm_node_stat -EXPORT_SYMBOL vmlinux 0xd71a2981 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xd719f100 __do_once_sleepable_done EXPORT_SYMBOL vmlinux 0xd7356c1c ns_capable_setid EXPORT_SYMBOL vmlinux 0xd73653c4 freezer_active -EXPORT_SYMBOL vmlinux 0xd737b8d8 vme_irq_request EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid EXPORT_SYMBOL vmlinux 0xd73a294f mtree_erase EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers -EXPORT_SYMBOL vmlinux 0xd73cb2f1 ps2_begin_command -EXPORT_SYMBOL vmlinux 0xd745d498 devfreq_update_interval EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc -EXPORT_SYMBOL vmlinux 0xd7546a58 get_inode_acl -EXPORT_SYMBOL vmlinux 0xd76559ea d_tmpfile -EXPORT_SYMBOL vmlinux 0xd77b6901 mdiobus_c45_read +EXPORT_SYMBOL vmlinux 0xd74da330 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xd7780c8c param_set_uint +EXPORT_SYMBOL vmlinux 0xd787a2ec xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xd7941a4e bpf_empty_prog_array EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load -EXPORT_SYMBOL vmlinux 0xd7bcaf31 max8925_bulk_read -EXPORT_SYMBOL vmlinux 0xd7c711cc crypto_sha3_final +EXPORT_SYMBOL vmlinux 0xd7a544a3 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xd7bed8ad vga_client_register +EXPORT_SYMBOL vmlinux 0xd7d1a103 inode_maybe_inc_iversion EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete -EXPORT_SYMBOL vmlinux 0xd7d6ebe6 __skb_vlan_pop -EXPORT_SYMBOL vmlinux 0xd7d708a7 __dquot_free_space -EXPORT_SYMBOL vmlinux 0xd7dfa4eb fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xd7dbeaf5 scsi_print_result EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll EXPORT_SYMBOL vmlinux 0xd7e637a3 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0xd7e71e52 eth_header_cache +EXPORT_SYMBOL vmlinux 0xd7e80018 ipv6_getsockopt EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f31d96 netdev_class_remove_file_ns EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 -EXPORT_SYMBOL vmlinux 0xd803b6f1 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xd8104f68 acpi_dev_hid_uid_match EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range -EXPORT_SYMBOL vmlinux 0xd8148794 phy_device_register -EXPORT_SYMBOL vmlinux 0xd81c133c dentry_create -EXPORT_SYMBOL vmlinux 0xd81c77d8 napi_enable +EXPORT_SYMBOL vmlinux 0xd8174df7 tcf_idr_search EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd836a4c2 jbd2_journal_unlock_updates EXPORT_SYMBOL vmlinux 0xd83898d5 nf_hooks_needed -EXPORT_SYMBOL vmlinux 0xd8669abc xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0xd86e202c mdio_device_create -EXPORT_SYMBOL vmlinux 0xd8722e59 of_node_get -EXPORT_SYMBOL vmlinux 0xd87b920a folio_create_empty_buffers -EXPORT_SYMBOL vmlinux 0xd87ebdfb sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xd83fad15 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xd842793a freeze_super +EXPORT_SYMBOL vmlinux 0xd85abf8a unix_get_socket +EXPORT_SYMBOL vmlinux 0xd85b0a01 nd_dax_probe EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone -EXPORT_SYMBOL vmlinux 0xd89f39d7 compat_ptr_ioctl -EXPORT_SYMBOL vmlinux 0xd8a68f19 pm8606_osc_disable EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font EXPORT_SYMBOL vmlinux 0xd8b6d96f __find_nth_and_bit -EXPORT_SYMBOL vmlinux 0xd8bd6805 cfb_copyarea -EXPORT_SYMBOL vmlinux 0xd8d2d148 remap_pfn_range -EXPORT_SYMBOL vmlinux 0xd8d43938 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0xd8dbbed0 inet_add_protocol -EXPORT_SYMBOL vmlinux 0xd8dcdf00 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xd8c707b1 param_get_uint EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk -EXPORT_SYMBOL vmlinux 0xd8e86ab0 nvdimm_namespace_disk_name -EXPORT_SYMBOL vmlinux 0xd8f7d4a5 lookup_positive_unlocked EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user -EXPORT_SYMBOL vmlinux 0xd921f0a1 mmc_add_host EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd93a8ebb generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xd93ec4be fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xd9439742 dst_alloc EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy -EXPORT_SYMBOL vmlinux 0xd96cfec9 mdio_device_register -EXPORT_SYMBOL vmlinux 0xd9805a2c param_set_ushort -EXPORT_SYMBOL vmlinux 0xd982b9c4 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0xd9836da7 tls_client_hello_psk +EXPORT_SYMBOL vmlinux 0xd953f027 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xd96077e5 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xd98341d2 audit_log_start EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages -EXPORT_SYMBOL vmlinux 0xd9899b01 blk_sync_queue -EXPORT_SYMBOL vmlinux 0xd9a39c89 xfrm_spd_getinfo EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get -EXPORT_SYMBOL vmlinux 0xd9b870ee gnet_stats_copy_app EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled -EXPORT_SYMBOL vmlinux 0xd9c4e7b3 kobject_set_name -EXPORT_SYMBOL vmlinux 0xd9c6e0aa tegra_ivc_reset -EXPORT_SYMBOL vmlinux 0xd9d7eb3d pagecache_get_page EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox -EXPORT_SYMBOL vmlinux 0xda0c8371 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xd9e0784f tso_build_data +EXPORT_SYMBOL vmlinux 0xd9eaa149 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xd9f9d49e tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xda034cf7 dquot_get_state EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id -EXPORT_SYMBOL vmlinux 0xda118a5c tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0xda18dde1 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0xda21fb0c nf_log_trace -EXPORT_SYMBOL vmlinux 0xda350246 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xda2ce6b8 filp_close EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open EXPORT_SYMBOL vmlinux 0xda3f8a71 nla_append -EXPORT_SYMBOL vmlinux 0xda51ca4c rfkill_alloc -EXPORT_SYMBOL vmlinux 0xda585f62 of_graph_get_endpoint_count -EXPORT_SYMBOL vmlinux 0xda683fdc seg6_hmac_info_add -EXPORT_SYMBOL vmlinux 0xda7a91b8 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0xda95f531 config_item_get_unless_zero -EXPORT_SYMBOL vmlinux 0xdaae317a vfs_statfs -EXPORT_SYMBOL vmlinux 0xdab82cde of_find_node_opts_by_path -EXPORT_SYMBOL vmlinux 0xdabf27d5 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xda64e061 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xda736218 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xda7ccd1e pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xda7f52da iptun_encaps +EXPORT_SYMBOL vmlinux 0xda850066 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xda8bd8ee genphy_c45_eee_is_active +EXPORT_SYMBOL vmlinux 0xda9b5d4a dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xda9cc224 sock_from_file +EXPORT_SYMBOL vmlinux 0xda9d1bb9 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xdaa55cfc prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xdaa6ca95 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xdab19b55 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xdabaf0a5 cdev_alloc EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac5d280 sk_stop_timer_sync EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream -EXPORT_SYMBOL vmlinux 0xdae11d1f iget_failed -EXPORT_SYMBOL vmlinux 0xdaf2ef31 zero_fill_bio -EXPORT_SYMBOL vmlinux 0xdafcca05 dma_free_attrs -EXPORT_SYMBOL vmlinux 0xdb00b357 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0xdb0a72e5 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xdaf2592a blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xdaf31ed6 page_symlink +EXPORT_SYMBOL vmlinux 0xdafed7f0 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xdb03294e read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xdb1a08aa get_task_cred EXPORT_SYMBOL vmlinux 0xdb1edee6 hdmi_infoframe_unpack -EXPORT_SYMBOL vmlinux 0xdb3cfcbf input_register_handler -EXPORT_SYMBOL vmlinux 0xdb44675a try_lookup_one_len -EXPORT_SYMBOL vmlinux 0xdb56d650 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xdb2cb88c blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xdb4c432f pci_choose_state +EXPORT_SYMBOL vmlinux 0xdb67b0ca __dquot_free_space EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy -EXPORT_SYMBOL vmlinux 0xdb6945e0 fwnode_irq_get -EXPORT_SYMBOL vmlinux 0xdb720078 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xdb6bc81b is_nvdimm_bus_locked EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free -EXPORT_SYMBOL vmlinux 0xdb76c1d3 skb_split -EXPORT_SYMBOL vmlinux 0xdb7e76b5 tcp_shutdown -EXPORT_SYMBOL vmlinux 0xdb7eb2d1 nf_setsockopt -EXPORT_SYMBOL vmlinux 0xdb85b27e has_capability -EXPORT_SYMBOL vmlinux 0xdb8cd52e cros_ec_get_host_event -EXPORT_SYMBOL vmlinux 0xdba09171 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xdb7878df tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xdb7e2bb3 param_get_short +EXPORT_SYMBOL vmlinux 0xdb81d4d1 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xdb8ee745 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xdb9f6c27 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xdba184a2 bio_add_pc_page EXPORT_SYMBOL vmlinux 0xdba20e12 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xdbac3bf3 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xdbb5e3c8 dquot_load_quota_sb EXPORT_SYMBOL vmlinux 0xdbc43e6a qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xdbcaeef9 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xdbcd144d max8925_reg_read EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbcf8781 pnp_start_dev EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource -EXPORT_SYMBOL vmlinux 0xdbe2953e ppp_register_compressor -EXPORT_SYMBOL vmlinux 0xdbfd6495 netpoll_parse_options -EXPORT_SYMBOL vmlinux 0xdc037602 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xdbe6daa4 __register_nls +EXPORT_SYMBOL vmlinux 0xdbedc753 sync_filesystem +EXPORT_SYMBOL vmlinux 0xdbfe1e92 pcie_bandwidth_available EXPORT_SYMBOL vmlinux 0xdc0e4855 timer_delete EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems -EXPORT_SYMBOL vmlinux 0xdc270854 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0xdc2af494 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xdc14f0b2 mount_bdev +EXPORT_SYMBOL vmlinux 0xdc1b5483 inode_io_list_del EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3e407d dma_resv_fini EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0xdc429d99 pci_release_resource +EXPORT_SYMBOL vmlinux 0xdc3ffdc9 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xdc47d2f1 __bh_read EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier -EXPORT_SYMBOL vmlinux 0xdc60606a ndisc_ns_create -EXPORT_SYMBOL vmlinux 0xdc60e7bd ps2_interrupt -EXPORT_SYMBOL vmlinux 0xdc6819ba tty_unregister_device -EXPORT_SYMBOL vmlinux 0xdc6972f0 md_reload_sb -EXPORT_SYMBOL vmlinux 0xdca5909b ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xdc6cecd6 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xdc77fdbf vfs_path_parent_lookup +EXPORT_SYMBOL vmlinux 0xdc8fa6c9 page_get_link +EXPORT_SYMBOL vmlinux 0xdc945b8e tcf_idr_release +EXPORT_SYMBOL vmlinux 0xdc97da6e config_item_set_name +EXPORT_SYMBOL vmlinux 0xdc9fe09f tcp_seq_next +EXPORT_SYMBOL vmlinux 0xdca57bb0 handshake_req_private EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb -EXPORT_SYMBOL vmlinux 0xdcaf4a25 dev_pick_tx_cpu_id -EXPORT_SYMBOL vmlinux 0xdcaffce5 dev_pre_changeaddr_notify EXPORT_SYMBOL vmlinux 0xdcb764ad memset EXPORT_SYMBOL vmlinux 0xdcbeba1d sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xdccbcddf proc_create +EXPORT_SYMBOL vmlinux 0xdccebbc6 lock_rename_child +EXPORT_SYMBOL vmlinux 0xdcd25164 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xdcd30483 unlock_buffer +EXPORT_SYMBOL vmlinux 0xdcd45f7a refresh_frequency_limits EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress -EXPORT_SYMBOL vmlinux 0xdcf04246 pci_pme_capable -EXPORT_SYMBOL vmlinux 0xdcfe32da wait_for_key_construction -EXPORT_SYMBOL vmlinux 0xdd04fa23 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xdce61772 inode_to_bdi +EXPORT_SYMBOL vmlinux 0xdcfad4f2 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xdd0af531 pci_release_resource +EXPORT_SYMBOL vmlinux 0xdd0dfa72 qdisc_tree_reduce_backlog EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0xdd283a67 security_binder_transfer_file EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create -EXPORT_SYMBOL vmlinux 0xdd3518d3 jbd2_fc_get_buf -EXPORT_SYMBOL vmlinux 0xdd3fbe84 skb_splice_from_iter -EXPORT_SYMBOL vmlinux 0xdd5417e0 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xdd537e3c xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xdd592a59 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xdd5dae2b sock_edemux EXPORT_SYMBOL vmlinux 0xdd5e4cea rtnl_nla_parse_ifinfomsg EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd68d389 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xdd6bdeac freeze_bdev +EXPORT_SYMBOL vmlinux 0xdd753058 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xdd75f4f5 netdev_get_by_name EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0xdd95b62e __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xdd8f3a98 mmc_release_host EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0xddb429b7 __skb_pad -EXPORT_SYMBOL vmlinux 0xddd1dd32 __bh_read +EXPORT_SYMBOL vmlinux 0xddb008d5 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xddb07e1d skb_dump +EXPORT_SYMBOL vmlinux 0xddbff7b8 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xddc4e70d tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xddcb0b3e mr_table_alloc +EXPORT_SYMBOL vmlinux 0xddd3aeca simple_rename +EXPORT_SYMBOL vmlinux 0xdddedfe0 tcf_em_register +EXPORT_SYMBOL vmlinux 0xdde9ef6d end_buffer_write_sync EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddf6c267 simple_recursive_removal EXPORT_SYMBOL vmlinux 0xddfdb8ac tcp_md5_needed -EXPORT_SYMBOL vmlinux 0xddffa715 neigh_ifdown -EXPORT_SYMBOL vmlinux 0xde03ec63 padata_do_parallel -EXPORT_SYMBOL vmlinux 0xde1629c0 scsi_alloc_sgtables -EXPORT_SYMBOL vmlinux 0xde180a1c devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0xde1e63a4 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xde0a5145 mmc_retune_unpause EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0xde2d9eb3 md_set_array_sectors -EXPORT_SYMBOL vmlinux 0xde4db92e d_genocide +EXPORT_SYMBOL vmlinux 0xde2dd145 tty_devnum +EXPORT_SYMBOL vmlinux 0xde37343e seq_vprintf +EXPORT_SYMBOL vmlinux 0xde384ed2 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xde3b7b60 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xde484f04 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xde56723d handle_edge_irq +EXPORT_SYMBOL vmlinux 0xde5bde85 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xde604752 devm_memunmap EXPORT_SYMBOL vmlinux 0xde67419e sg_split -EXPORT_SYMBOL vmlinux 0xde6db2fd pci_disable_ptm -EXPORT_SYMBOL vmlinux 0xde713194 kthread_associate_blkcg -EXPORT_SYMBOL vmlinux 0xde74f384 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0xde881012 udp_set_csum -EXPORT_SYMBOL vmlinux 0xde94ea4c linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0xde9d5f4f __brelse +EXPORT_SYMBOL vmlinux 0xde6939f9 kern_path_create +EXPORT_SYMBOL vmlinux 0xde73325c blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xde7c0fc2 secpath_set +EXPORT_SYMBOL vmlinux 0xde815cfe __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xde8563d0 netdev_emerg +EXPORT_SYMBOL vmlinux 0xdeaacdd6 pci_bus_claim_resources EXPORT_SYMBOL vmlinux 0xdeb99119 dma_fence_init -EXPORT_SYMBOL vmlinux 0xdebbbc06 regset_get_alloc -EXPORT_SYMBOL vmlinux 0xdebbfc47 generic_mii_ioctl -EXPORT_SYMBOL vmlinux 0xdec3ef20 kfree_skb_list_reason -EXPORT_SYMBOL vmlinux 0xded06986 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xdecbc047 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xded009dc netdev_rx_csum_fault EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator -EXPORT_SYMBOL vmlinux 0xdee4b736 xfrm_state_lookup EXPORT_SYMBOL vmlinux 0xdef68d34 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0xdef6f0de set_user_nice EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode -EXPORT_SYMBOL vmlinux 0xdf204e8c skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xdef9c297 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xdefe17dd proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xdf04630f mmc_command_done EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last -EXPORT_SYMBOL vmlinux 0xdf2cbae7 get_phy_device -EXPORT_SYMBOL vmlinux 0xdf352527 phy_init_hw EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after -EXPORT_SYMBOL vmlinux 0xdf3935c4 km_query -EXPORT_SYMBOL vmlinux 0xdf47669f submit_bio -EXPORT_SYMBOL vmlinux 0xdf4b9037 xfrm_alloc_spi EXPORT_SYMBOL vmlinux 0xdf521442 _find_next_zero_bit +EXPORT_SYMBOL vmlinux 0xdf531cdd vme_slot_num EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0xdf6406f7 mfd_remove_devices -EXPORT_SYMBOL vmlinux 0xdf6a3d7a of_iommu_get_resv_regions +EXPORT_SYMBOL vmlinux 0xdf8095cb fb_class EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf955b4a tcp_getsockopt EXPORT_SYMBOL vmlinux 0xdf9734a7 sg_nents -EXPORT_SYMBOL vmlinux 0xdf9dad37 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xdf9c5b4f netif_receive_skb EXPORT_SYMBOL vmlinux 0xdfa5f94d security_cred_getsecid -EXPORT_SYMBOL vmlinux 0xdfa6c216 mipi_dsi_dcs_get_pixel_format -EXPORT_SYMBOL vmlinux 0xdfb5507f pci_bus_read_config_word EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfc5794e get_ipc_ns_exported EXPORT_SYMBOL vmlinux 0xdfcc992c current_work -EXPORT_SYMBOL vmlinux 0xdfcf3d38 __udp_disconnect EXPORT_SYMBOL vmlinux 0xdfd8110c flow_block_cb_is_busy -EXPORT_SYMBOL vmlinux 0xdfd97f8a ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xdfe10403 pldmfw_flash_image EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free -EXPORT_SYMBOL vmlinux 0xdffad2b0 nd_dev_to_uuid EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes -EXPORT_SYMBOL vmlinux 0xdffeec24 mark_buffer_write_io_error -EXPORT_SYMBOL vmlinux 0xe01922ab dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xe014f7bf jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xe0153a26 __seq_open_private +EXPORT_SYMBOL vmlinux 0xe025541f invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xe02a5d5b scsi_command_normalize_sense EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase -EXPORT_SYMBOL vmlinux 0xe02d81fe blk_mq_tagset_busy_iter EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 -EXPORT_SYMBOL vmlinux 0xe0474407 gpiochip_irq_relres -EXPORT_SYMBOL vmlinux 0xe04bb7d9 pci_map_rom -EXPORT_SYMBOL vmlinux 0xe052c868 flow_rule_match_mpls -EXPORT_SYMBOL vmlinux 0xe069d6f4 of_get_mac_address_nvmem -EXPORT_SYMBOL vmlinux 0xe06f6a4d inet_frag_destroy -EXPORT_SYMBOL vmlinux 0xe073d98d clk_add_alias +EXPORT_SYMBOL vmlinux 0xe047d1c1 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xe06b735b flush_dcache_folio EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister -EXPORT_SYMBOL vmlinux 0xe08003a9 pci_alloc_host_bridge EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range -EXPORT_SYMBOL vmlinux 0xe08b06d1 pcie_set_mps -EXPORT_SYMBOL vmlinux 0xe09174a7 mipi_dsi_dcs_set_display_on EXPORT_SYMBOL vmlinux 0xe091c977 list_sort -EXPORT_SYMBOL vmlinux 0xe0a67208 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xe09a049a security_path_mkdir EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free -EXPORT_SYMBOL vmlinux 0xe0b7e1a6 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0xe0b8cafb cdev_init EXPORT_SYMBOL vmlinux 0xe0b9065b security_xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0xe0bb6071 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xe0bd9a59 pskb_trim_rcsum_slow EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco -EXPORT_SYMBOL vmlinux 0xe0c166f7 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0xe0c8e5a9 phy_attached_info -EXPORT_SYMBOL vmlinux 0xe0d34279 of_property_read_reg -EXPORT_SYMBOL vmlinux 0xe0e22f97 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0xe0e4cea3 devm_iounmap -EXPORT_SYMBOL vmlinux 0xe0efb11c blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0xe0f83ffb twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xe0d1577f of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xe0db6b8c __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xe0de5a53 make_kuid +EXPORT_SYMBOL vmlinux 0xe0e91b1d skb_copy_expand +EXPORT_SYMBOL vmlinux 0xe0f4a3cf phys_mem_access_prot EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11c20b0 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe11d1139 __blk_alloc_disk EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute EXPORT_SYMBOL vmlinux 0xe1317694 __kfifo_dma_in_prepare_r EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors -EXPORT_SYMBOL vmlinux 0xe13ce841 blk_integrity_register -EXPORT_SYMBOL vmlinux 0xe14a1e89 pci_scan_root_bus_bridge -EXPORT_SYMBOL vmlinux 0xe16b7a16 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xe15562fa unlock_new_inode EXPORT_SYMBOL vmlinux 0xe17568e3 dma_fence_signal_timestamp_locked -EXPORT_SYMBOL vmlinux 0xe17ec51f __dynamic_dev_dbg -EXPORT_SYMBOL vmlinux 0xe18903bc pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0xe1a296fd get_fs_type -EXPORT_SYMBOL vmlinux 0xe1c5a09a get_cached_acl +EXPORT_SYMBOL vmlinux 0xe17deaa9 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xe18f973c clkdev_add +EXPORT_SYMBOL vmlinux 0xe1903795 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xe1966453 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xe1b4eee8 pfifo_qdisc_ops EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format -EXPORT_SYMBOL vmlinux 0xe1e17e75 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xe1f1238f d_rehash +EXPORT_SYMBOL vmlinux 0xe2003d4e path_get +EXPORT_SYMBOL vmlinux 0xe206a7d4 t10_pi_type1_crc EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek -EXPORT_SYMBOL vmlinux 0xe24814fa key_invalidate -EXPORT_SYMBOL vmlinux 0xe25875e8 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0xe2677b5d page_pool_alloc_frag -EXPORT_SYMBOL vmlinux 0xe28b33f2 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xe220fe21 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xe2224e50 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xe243c7af security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xe26983d7 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xe2699b09 write_cache_pages +EXPORT_SYMBOL vmlinux 0xe26c6089 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xe27f36c8 generic_block_bmap EXPORT_SYMBOL vmlinux 0xe2964344 __wake_up -EXPORT_SYMBOL vmlinux 0xe29f8198 dcb_ieee_getapp_prio_dscp_mask_map -EXPORT_SYMBOL vmlinux 0xe2a101d6 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0xe2a2dd4a __serio_register_driver -EXPORT_SYMBOL vmlinux 0xe2a74dc6 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0xe2b20826 vme_new_dma_list -EXPORT_SYMBOL vmlinux 0xe2b52cad i2c_clients_command EXPORT_SYMBOL vmlinux 0xe2bbfa56 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xe2ccfa2a netpoll_setup EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp -EXPORT_SYMBOL vmlinux 0xe2e246dc tcp_inbound_md5_hash -EXPORT_SYMBOL vmlinux 0xe2e741d6 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0xe2f82046 of_n_addr_cells -EXPORT_SYMBOL vmlinux 0xe2ffa5c5 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xe3015adf mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xe30db4e2 key_put +EXPORT_SYMBOL vmlinux 0xe3131f64 scsi_host_lookup EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest -EXPORT_SYMBOL vmlinux 0xe32ce7ab udp_disconnect -EXPORT_SYMBOL vmlinux 0xe32cf1bc __inc_node_page_state -EXPORT_SYMBOL vmlinux 0xe3371017 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0xe338a176 clk_bulk_get -EXPORT_SYMBOL vmlinux 0xe33e193f pci_ep_cfs_add_epc_group -EXPORT_SYMBOL vmlinux 0xe343deb2 __alloc_skb -EXPORT_SYMBOL vmlinux 0xe3499e9f i2c_smbus_read_byte -EXPORT_SYMBOL vmlinux 0xe359c566 vga_remove_vgacon -EXPORT_SYMBOL vmlinux 0xe35e8a4b tcp_rcv_established -EXPORT_SYMBOL vmlinux 0xe372c6cc sock_no_shutdown -EXPORT_SYMBOL vmlinux 0xe382cc04 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xe33f08f4 md_handle_request +EXPORT_SYMBOL vmlinux 0xe346e823 generic_fillattr +EXPORT_SYMBOL vmlinux 0xe3784a43 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xe37fc79e ip6_frag_next EXPORT_SYMBOL vmlinux 0xe392bb00 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0xe394614a iunique EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 -EXPORT_SYMBOL vmlinux 0xe3a135d3 neigh_lookup -EXPORT_SYMBOL vmlinux 0xe3acb726 scsi_host_put +EXPORT_SYMBOL vmlinux 0xe3a1d592 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xe3ac3cff generic_pipe_buf_release EXPORT_SYMBOL vmlinux 0xe3ad3046 __sg_page_iter_dma_next -EXPORT_SYMBOL vmlinux 0xe3c5869e timestamp_truncate -EXPORT_SYMBOL vmlinux 0xe3d873d7 iput -EXPORT_SYMBOL vmlinux 0xe3e6b8ec vif_device_init +EXPORT_SYMBOL vmlinux 0xe3bed343 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xe3df01da sock_set_reuseport EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0xe3f9bf2f nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xe3ec71c2 inet_listen +EXPORT_SYMBOL vmlinux 0xe3ee869d remove_arg_zero EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40af8cd __netif_schedule EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock -EXPORT_SYMBOL vmlinux 0xe40f8375 cdev_device_del -EXPORT_SYMBOL vmlinux 0xe41cf858 dma_fence_array_create -EXPORT_SYMBOL vmlinux 0xe420d017 folio_add_lru -EXPORT_SYMBOL vmlinux 0xe42dda2d cros_ec_cmd_xfer_status -EXPORT_SYMBOL vmlinux 0xe44301b1 rproc_elf_sanity_check -EXPORT_SYMBOL vmlinux 0xe4438cb8 dm_table_get_mode -EXPORT_SYMBOL vmlinux 0xe4571645 kobject_init -EXPORT_SYMBOL vmlinux 0xe45ac2bb netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0xe48a4fa5 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0xe48ec8de alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0xe4911748 con_copy_unimap -EXPORT_SYMBOL vmlinux 0xe493dd3b input_set_timestamp -EXPORT_SYMBOL vmlinux 0xe499e3cd msm_pinctrl_remove -EXPORT_SYMBOL vmlinux 0xe49d56cb folio_set_bh -EXPORT_SYMBOL vmlinux 0xe49fd6ec consume_skb -EXPORT_SYMBOL vmlinux 0xe4b80518 phy_connect +EXPORT_SYMBOL vmlinux 0xe41da780 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xe4247eec scsi_device_put +EXPORT_SYMBOL vmlinux 0xe45bf456 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xe461e644 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xe46bbf55 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0xe471216e nf_getsockopt +EXPORT_SYMBOL vmlinux 0xe47d3120 mdiobus_read +EXPORT_SYMBOL vmlinux 0xe484f222 fib_notifier_ops_register EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack -EXPORT_SYMBOL vmlinux 0xe4ce71c4 follow_up -EXPORT_SYMBOL vmlinux 0xe4d6c787 mount_single -EXPORT_SYMBOL vmlinux 0xe4d84d93 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0xe4e3045f __generic_file_fsync -EXPORT_SYMBOL vmlinux 0xe4e52b1d mmc_set_data_timeout -EXPORT_SYMBOL vmlinux 0xe4eb56c3 __qdisc_calculate_pkt_len -EXPORT_SYMBOL vmlinux 0xe51007b3 ip6_frag_next -EXPORT_SYMBOL vmlinux 0xe51a1fa0 tcf_qevent_validate_change -EXPORT_SYMBOL vmlinux 0xe5226f75 dquot_transfer +EXPORT_SYMBOL vmlinux 0xe4cddc4e tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xe4d45a59 of_clk_get +EXPORT_SYMBOL vmlinux 0xe4dcbf94 posix_lock_file +EXPORT_SYMBOL vmlinux 0xe4e80c08 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xe4ecfd99 md_integrity_register +EXPORT_SYMBOL vmlinux 0xe4ef610a pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xe4f123cf xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xe4f3d007 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xe4fa9bc0 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xe4fca666 tcp_filter +EXPORT_SYMBOL vmlinux 0xe5091011 unregister_netdevice_queue EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq -EXPORT_SYMBOL vmlinux 0xe52e20df secpath_set -EXPORT_SYMBOL vmlinux 0xe52f96c5 skb_flow_dissect_tunnel_info -EXPORT_SYMBOL vmlinux 0xe563d3c2 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0xe5643225 tegra_ivc_cleanup -EXPORT_SYMBOL vmlinux 0xe57df7db generic_parse_monolithic -EXPORT_SYMBOL vmlinux 0xe57ec76f tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xe526f06f fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xe52fe90b bdi_alloc +EXPORT_SYMBOL vmlinux 0xe5333293 inet6_offloads +EXPORT_SYMBOL vmlinux 0xe54dfdc3 devm_release_resource +EXPORT_SYMBOL vmlinux 0xe54e05f9 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xe5554cb1 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xe5587f4c close_fd_get_file +EXPORT_SYMBOL vmlinux 0xe55ad4bc flow_rule_match_arp +EXPORT_SYMBOL vmlinux 0xe5620346 release_sock +EXPORT_SYMBOL vmlinux 0xe56a132d mipi_dsi_generic_write EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe5823cdc ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xe5872dd0 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xe587eae3 netif_set_real_num_tx_queues EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end -EXPORT_SYMBOL vmlinux 0xe5a026e4 unix_get_socket -EXPORT_SYMBOL vmlinux 0xe5a3787e device_get_ethdev_address -EXPORT_SYMBOL vmlinux 0xe5a709a2 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xe5a55911 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xe5a60520 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xe5a94c0f follow_pfn +EXPORT_SYMBOL vmlinux 0xe5acfc51 cdev_add +EXPORT_SYMBOL vmlinux 0xe5b803b4 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xe5bccb62 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xe5bd0815 vfs_unlink EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c76360 jbd2_journal_put_journal_head EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen -EXPORT_SYMBOL vmlinux 0xe5c7b0ea scsi_dma_map -EXPORT_SYMBOL vmlinux 0xe5c96655 readahead_expand EXPORT_SYMBOL vmlinux 0xe5cee291 register_sysctl_mount_point -EXPORT_SYMBOL vmlinux 0xe5d3ea38 ip_local_deliver -EXPORT_SYMBOL vmlinux 0xe5ed9234 send_sig_info -EXPORT_SYMBOL vmlinux 0xe5f48c69 vfs_link -EXPORT_SYMBOL vmlinux 0xe604dbfd param_ops_bool +EXPORT_SYMBOL vmlinux 0xe5e6455d trace_event_printf +EXPORT_SYMBOL vmlinux 0xe5eb2aad bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xe5f10a73 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xe6118154 sock_efree EXPORT_SYMBOL vmlinux 0xe61b912a security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xe61c65cd param_ops_long +EXPORT_SYMBOL vmlinux 0xe63f46f7 tcf_idr_check_alloc EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold -EXPORT_SYMBOL vmlinux 0xe66dbdcf md_bitmap_update_sb -EXPORT_SYMBOL vmlinux 0xe67a0958 skb_free_datagram -EXPORT_SYMBOL vmlinux 0xe69f9075 phy_loopback -EXPORT_SYMBOL vmlinux 0xe6a97070 to_ndd -EXPORT_SYMBOL vmlinux 0xe6ad5d0e ip6mr_rule_default -EXPORT_SYMBOL vmlinux 0xe6b764cc set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0xe6b8d587 icmp6_send -EXPORT_SYMBOL vmlinux 0xe6c997ed of_mdiobus_phy_device_register -EXPORT_SYMBOL vmlinux 0xe6ceeef2 inet_frags_init +EXPORT_SYMBOL vmlinux 0xe657dcef mmc_of_parse +EXPORT_SYMBOL vmlinux 0xe6768b69 kill_litter_super +EXPORT_SYMBOL vmlinux 0xe6b9df68 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xe6cf1b38 rproc_mem_entry_init EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack -EXPORT_SYMBOL vmlinux 0xe6d7add2 filemap_release_folio -EXPORT_SYMBOL vmlinux 0xe6e873d4 mpage_read_folio +EXPORT_SYMBOL vmlinux 0xe6d8ffc2 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xe6f4ef4c napi_disable EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock -EXPORT_SYMBOL vmlinux 0xe703f610 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0xe710478f pci_irq_get_affinity -EXPORT_SYMBOL vmlinux 0xe71bdddf update_devfreq +EXPORT_SYMBOL vmlinux 0xe711dda2 backlight_force_update +EXPORT_SYMBOL vmlinux 0xe716989a ptp_clock_register +EXPORT_SYMBOL vmlinux 0xe717824f neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe71ee757 pps_event EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range -EXPORT_SYMBOL vmlinux 0xe72a07ae __put_devmap_managed_page_refs -EXPORT_SYMBOL vmlinux 0xe72d2594 scsi_host_get -EXPORT_SYMBOL vmlinux 0xe731f5d0 xfrm_dev_policy_flush -EXPORT_SYMBOL vmlinux 0xe7376fdb ip_sock_set_mtu_discover -EXPORT_SYMBOL vmlinux 0xe7395764 da903x_query_status -EXPORT_SYMBOL vmlinux 0xe7621a85 generic_block_bmap -EXPORT_SYMBOL vmlinux 0xe77019d9 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0xe787db51 dm_get_device +EXPORT_SYMBOL vmlinux 0xe78e0a73 generic_listxattr +EXPORT_SYMBOL vmlinux 0xe79196df __nlmsg_put EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range -EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask -EXPORT_SYMBOL vmlinux 0xe7baaa38 bpf_empty_prog_array -EXPORT_SYMBOL vmlinux 0xe7c3f74c tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xe7adcda3 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xe7b49a91 __bread_gfp +EXPORT_SYMBOL vmlinux 0xe7b66c20 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xe7bd1fb9 tcp_seq_start EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next -EXPORT_SYMBOL vmlinux 0xe806ffad touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xe7e7f4e4 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xe7f35131 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xe8118cd8 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe811cc0e console_force_preferred_locked EXPORT_SYMBOL vmlinux 0xe816048f tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0xe8260bd0 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0xe8294457 genphy_c45_eee_is_active -EXPORT_SYMBOL vmlinux 0xe82d9e94 mntput -EXPORT_SYMBOL vmlinux 0xe8462a96 folio_end_writeback -EXPORT_SYMBOL vmlinux 0xe8467332 tcf_idr_create_from_flags -EXPORT_SYMBOL vmlinux 0xe856d064 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xe845926d scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe85176c2 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xe855d237 jbd2_journal_wipe EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table -EXPORT_SYMBOL vmlinux 0xe865efa1 user_path_create -EXPORT_SYMBOL vmlinux 0xe870bef4 bio_init_clone +EXPORT_SYMBOL vmlinux 0xe8886ebb scsi_ioctl +EXPORT_SYMBOL vmlinux 0xe88c32f2 simple_getattr +EXPORT_SYMBOL vmlinux 0xe88cf5a5 input_set_keycode +EXPORT_SYMBOL vmlinux 0xe89d20b1 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xe8ab3e83 tty_unlock +EXPORT_SYMBOL vmlinux 0xe8bf3f59 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe8c23909 netif_inherit_tso_max EXPORT_SYMBOL vmlinux 0xe8d285b2 nla_policy_len -EXPORT_SYMBOL vmlinux 0xe8dc5235 vfs_mkdir -EXPORT_SYMBOL vmlinux 0xe8dc7eac ucc_of_parse_tdm -EXPORT_SYMBOL vmlinux 0xe8f12766 slab_build_skb -EXPORT_SYMBOL vmlinux 0xe8fadd53 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xe8ea0ffd hid_bpf_ops +EXPORT_SYMBOL vmlinux 0xe8f03295 __ip_queue_xmit EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf -EXPORT_SYMBOL vmlinux 0xe9103de7 inet_listen +EXPORT_SYMBOL vmlinux 0xe90ed216 block_read_full_folio EXPORT_SYMBOL vmlinux 0xe914e41e strcpy -EXPORT_SYMBOL vmlinux 0xe92f22b4 file_check_and_advance_wb_err -EXPORT_SYMBOL vmlinux 0xe93d31d7 mipi_dsi_driver_unregister -EXPORT_SYMBOL vmlinux 0xe940372b input_set_max_poll_interval -EXPORT_SYMBOL vmlinux 0xe94b2068 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xe9258560 mdio_find_bus EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino -EXPORT_SYMBOL vmlinux 0xe95d5fad mipi_dsi_driver_register_full -EXPORT_SYMBOL vmlinux 0xe972f3c3 of_find_mipi_dsi_device_by_node -EXPORT_SYMBOL vmlinux 0xe97f0d0f open_exec -EXPORT_SYMBOL vmlinux 0xe984b1f1 blk_rq_init -EXPORT_SYMBOL vmlinux 0xe9962881 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0xe999bcfe mipi_dsi_dcs_get_display_brightness -EXPORT_SYMBOL vmlinux 0xe9a4808c i2c_del_adapter -EXPORT_SYMBOL vmlinux 0xe9a59d1f tcf_exts_destroy -EXPORT_SYMBOL vmlinux 0xe9acb347 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xe954f76c clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xe961ada6 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xe978160f configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xe97cbcca netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xe99a1669 fman_get_bmi_max_fifo_size EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark -EXPORT_SYMBOL vmlinux 0xe9be6afa dev_loopback_xmit EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name -EXPORT_SYMBOL vmlinux 0xe9e4c950 of_graph_get_port_by_id EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fe1a66 km_query EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock -EXPORT_SYMBOL vmlinux 0xe9fff200 block_write_end -EXPORT_SYMBOL vmlinux 0xea03051a proc_create -EXPORT_SYMBOL vmlinux 0xea113958 phy_ethtool_get_eee -EXPORT_SYMBOL vmlinux 0xea1a8bc8 dquot_alloc -EXPORT_SYMBOL vmlinux 0xea1c01ab ether_setup EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int -EXPORT_SYMBOL vmlinux 0xea4497af security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xea44c6d8 input_get_keycode +EXPORT_SYMBOL vmlinux 0xea4ff958 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xea55d52d mmc_can_trim EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled EXPORT_SYMBOL vmlinux 0xea7daa08 __video_get_options -EXPORT_SYMBOL vmlinux 0xea934034 __of_parse_phandle_with_args -EXPORT_SYMBOL vmlinux 0xea963532 from_kprojid_munged -EXPORT_SYMBOL vmlinux 0xea997e6b pci_get_subsys -EXPORT_SYMBOL vmlinux 0xeab639e5 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xea823006 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xea851960 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xea8c890f nd_device_notify +EXPORT_SYMBOL vmlinux 0xea8e8f9d serio_bus +EXPORT_SYMBOL vmlinux 0xeaa3cbd8 amba_device_register +EXPORT_SYMBOL vmlinux 0xeaab1904 pcie_set_mps EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0xeabb16be blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0xeac90f11 ipv6_dev_mc_dec -EXPORT_SYMBOL vmlinux 0xead0bf72 __destroy_inode +EXPORT_SYMBOL vmlinux 0xeacbf2bd get_watch_queue +EXPORT_SYMBOL vmlinux 0xeacf3832 touchscreen_report_pos EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid -EXPORT_SYMBOL vmlinux 0xeae0f3e1 blkdev_put +EXPORT_SYMBOL vmlinux 0xeadafbde pcie_capability_read_word EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay -EXPORT_SYMBOL vmlinux 0xeaf3bce2 passthru_features_check +EXPORT_SYMBOL vmlinux 0xeaf81e34 of_translate_dma_region EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0xeb0235a4 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xeb206c94 nvdimm_check_and_set_ro EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc -EXPORT_SYMBOL vmlinux 0xeb23f04c unregister_tcf_proto_ops -EXPORT_SYMBOL vmlinux 0xeb3195d5 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xeb27daf1 ps2_sendbyte EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end -EXPORT_SYMBOL vmlinux 0xeb38fe5e netdev_next_lower_dev_rcu -EXPORT_SYMBOL vmlinux 0xeb42f564 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xeb39335c scsi_host_put +EXPORT_SYMBOL vmlinux 0xeb423709 __scsi_device_lookup EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb55cc41 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xeb57115e blk_integrity_register +EXPORT_SYMBOL vmlinux 0xeb5b9d10 vme_dma_request EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb736f7a genphy_read_lpa EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices -EXPORT_SYMBOL vmlinux 0xeb893f9d d_move +EXPORT_SYMBOL vmlinux 0xeb8ccc3a generic_file_write_iter EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint -EXPORT_SYMBOL vmlinux 0xebac66c1 sk_stop_timer_sync -EXPORT_SYMBOL vmlinux 0xebaef694 mount_bdev -EXPORT_SYMBOL vmlinux 0xebc44021 filemap_fdatawait_keep_errors -EXPORT_SYMBOL vmlinux 0xebe418e5 param_ops_ullong -EXPORT_SYMBOL vmlinux 0xebf5f170 dcb_ieee_getapp_default_prio_mask -EXPORT_SYMBOL vmlinux 0xebfd7667 mipi_dsi_dcs_set_tear_on -EXPORT_SYMBOL vmlinux 0xec043c90 backlight_device_get_by_type -EXPORT_SYMBOL vmlinux 0xec145618 __free_pages -EXPORT_SYMBOL vmlinux 0xec18db76 dump_emit +EXPORT_SYMBOL vmlinux 0xeba3d400 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xebaadbcc vlan_vid_del +EXPORT_SYMBOL vmlinux 0xebae7310 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xebcf01ba phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xebd4cd9b pci_bus_type +EXPORT_SYMBOL vmlinux 0xebd78002 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xebda8afe pci_scan_slot +EXPORT_SYMBOL vmlinux 0xebef8bd7 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xec102f16 input_get_timestamp EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start -EXPORT_SYMBOL vmlinux 0xec38609f configfs_register_group +EXPORT_SYMBOL vmlinux 0xec35c698 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xec40367f bio_copy_data EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range -EXPORT_SYMBOL vmlinux 0xec47dfb7 md_flush_request EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys -EXPORT_SYMBOL vmlinux 0xec4dcd7f scsi_add_device -EXPORT_SYMBOL vmlinux 0xec66c4c3 scm_fp_dup -EXPORT_SYMBOL vmlinux 0xec7339e5 simple_pin_fs -EXPORT_SYMBOL vmlinux 0xec74d4ae sk_send_sigurg -EXPORT_SYMBOL vmlinux 0xec8206ea d_add -EXPORT_SYMBOL vmlinux 0xec8ba83b mr_mfc_seq_next -EXPORT_SYMBOL vmlinux 0xec93a9c3 pps_register_source -EXPORT_SYMBOL vmlinux 0xec96f45c phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xec68b24e inet_register_protosw +EXPORT_SYMBOL vmlinux 0xec72d597 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xec7ba20a pci_clear_master +EXPORT_SYMBOL vmlinux 0xec7d1c0b tty_unregister_device +EXPORT_SYMBOL vmlinux 0xec891390 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xeca8effd rproc_elf_find_loaded_rsc_table EXPORT_SYMBOL vmlinux 0xeca957d1 __bitmap_and -EXPORT_SYMBOL vmlinux 0xecaa6b70 of_phy_register_fixed_link -EXPORT_SYMBOL vmlinux 0xecb2a3e8 netdev_printk -EXPORT_SYMBOL vmlinux 0xecc341fe put_cmsg_scm_timestamping -EXPORT_SYMBOL vmlinux 0xeccfcc38 pldmfw_op_pci_match_record -EXPORT_SYMBOL vmlinux 0xecdae74e inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xecc2a236 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xecda70b4 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xecdd383f tcp_mmap +EXPORT_SYMBOL vmlinux 0xece2de02 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xece31037 security_socket_socketpair EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfcc81b i2c_get_adapter_by_fwnode EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf -EXPORT_SYMBOL vmlinux 0xed0f4dc3 __skb_checksum -EXPORT_SYMBOL vmlinux 0xed16a2a1 tcf_exts_terse_dump -EXPORT_SYMBOL vmlinux 0xed21f276 inode_nohighmem -EXPORT_SYMBOL vmlinux 0xed2587f9 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0xed3727a6 scsi_execute_cmd +EXPORT_SYMBOL vmlinux 0xed30da85 vfs_dup_fs_context EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0xed59f285 pm8606_osc_enable -EXPORT_SYMBOL vmlinux 0xed5a589c scsi_done EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable -EXPORT_SYMBOL vmlinux 0xed8469ea xfrm_lookup_with_ifid -EXPORT_SYMBOL vmlinux 0xed89f6e3 dev_mc_del +EXPORT_SYMBOL vmlinux 0xed704e6d of_platform_device_create +EXPORT_SYMBOL vmlinux 0xed75b331 forget_cached_acl EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 -EXPORT_SYMBOL vmlinux 0xed917220 textsearch_prepare -EXPORT_SYMBOL vmlinux 0xed98cd0b _dev_crit +EXPORT_SYMBOL vmlinux 0xed93c512 generic_fadvise EXPORT_SYMBOL vmlinux 0xeda2e038 scsi_cmd_allowed -EXPORT_SYMBOL vmlinux 0xeda811b1 cdev_set_parent -EXPORT_SYMBOL vmlinux 0xedb42efa input_grab_device +EXPORT_SYMBOL vmlinux 0xedb25ce4 d_set_d_op +EXPORT_SYMBOL vmlinux 0xedb45e52 bio_free_pages +EXPORT_SYMBOL vmlinux 0xedb6d487 timestamp_truncate EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp -EXPORT_SYMBOL vmlinux 0xedbd6f0d lock_rename EXPORT_SYMBOL vmlinux 0xedc03953 iounmap -EXPORT_SYMBOL vmlinux 0xedcb166f make_kprojid -EXPORT_SYMBOL vmlinux 0xedcd8679 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xedc5ccf9 dev_get_by_name EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout -EXPORT_SYMBOL vmlinux 0xeddeaf92 fwnode_mdio_find_device -EXPORT_SYMBOL vmlinux 0xede63508 alloc_mdio_bitbang -EXPORT_SYMBOL vmlinux 0xedeeca2c security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xede0225d ip_local_deliver +EXPORT_SYMBOL vmlinux 0xede5e651 nd_device_register EXPORT_SYMBOL vmlinux 0xee0118df aperture_remove_conflicting_devices -EXPORT_SYMBOL vmlinux 0xee020dd2 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0xee126c9d acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xee09a360 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xee225c4d filemap_fdatawait_range EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable -EXPORT_SYMBOL vmlinux 0xee2e9a3b rawv6_mh_filter_unregister -EXPORT_SYMBOL vmlinux 0xee45072f pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xee38a548 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xee489914 blk_post_runtime_suspend EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode -EXPORT_SYMBOL vmlinux 0xee747562 udp_seq_stop -EXPORT_SYMBOL vmlinux 0xee77498d dma_resv_init -EXPORT_SYMBOL vmlinux 0xee77df5d pnp_release_card_device -EXPORT_SYMBOL vmlinux 0xee7d3aa5 xp_dma_map +EXPORT_SYMBOL vmlinux 0xee6cccec d_obtain_root EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee8362f9 md_unregister_thread EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8ca597 scsi_test_unit_ready EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs -EXPORT_SYMBOL vmlinux 0xee8eb052 serio_reconnect EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder -EXPORT_SYMBOL vmlinux 0xee92033c config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xeea4e271 inet_addr_type_dev_table EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap -EXPORT_SYMBOL vmlinux 0xeead0984 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xeeacb3b1 bio_endio +EXPORT_SYMBOL vmlinux 0xeeb7ac7d gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xeeb7deae netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xeecf9bc0 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xeedaac28 netlbl_calipso_ops_register EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init -EXPORT_SYMBOL vmlinux 0xef15b534 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0xef279cd8 vfs_iter_write -EXPORT_SYMBOL vmlinux 0xef496969 phy_do_ioctl -EXPORT_SYMBOL vmlinux 0xef501357 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0xef5e9d31 release_pages -EXPORT_SYMBOL vmlinux 0xef6e1a2c pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xeeffa171 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0xef0c11cd rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xef1452bd xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xef164536 sk_dst_check +EXPORT_SYMBOL vmlinux 0xef26d603 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xef2e15b5 unlock_rename +EXPORT_SYMBOL vmlinux 0xef503de3 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xef5a1eed nexthop_bucket_set_hw_flags EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xefa24083 ndo_dflt_fdb_add EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work -EXPORT_SYMBOL vmlinux 0xefc6faec filemap_range_has_page -EXPORT_SYMBOL vmlinux 0xefcd2101 irq_set_chip +EXPORT_SYMBOL vmlinux 0xefb7bd11 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xefc2b2a2 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xefc33d9a genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xefc58303 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefdc2cd8 lookup_one EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit -EXPORT_SYMBOL vmlinux 0xeff09952 flow_rule_match_cvlan -EXPORT_SYMBOL vmlinux 0xeff99a70 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xeff79db7 phy_read_paged +EXPORT_SYMBOL vmlinux 0xeffc619d dentry_create EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list -EXPORT_SYMBOL vmlinux 0xf008f093 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0xf012453f i2c_get_adapter -EXPORT_SYMBOL vmlinux 0xf0278602 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xf0035380 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xf0090786 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xf009cbc3 input_set_capability +EXPORT_SYMBOL vmlinux 0xf0106442 clk_get +EXPORT_SYMBOL vmlinux 0xf0173542 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xf01923ed devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xf025cef9 ip_frag_next EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0xf03a710a flow_rule_match_ct -EXPORT_SYMBOL vmlinux 0xf03fea7c tcf_exts_validate -EXPORT_SYMBOL vmlinux 0xf04ae750 d_invalidate -EXPORT_SYMBOL vmlinux 0xf0706cd1 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xf0320794 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xf047dfda md_error +EXPORT_SYMBOL vmlinux 0xf0487f3c ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xf05bfc90 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xf0738e8e ilookup5 +EXPORT_SYMBOL vmlinux 0xf07448cf jbd2_journal_try_to_free_buffers EXPORT_SYMBOL vmlinux 0xf07b07f6 sg_free_append_table -EXPORT_SYMBOL vmlinux 0xf0818040 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xf07b5810 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xf08adf84 __set_page_dirty_nobuffers EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page -EXPORT_SYMBOL vmlinux 0xf0a01230 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xf0a5dc54 file_update_time EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data EXPORT_SYMBOL vmlinux 0xf0b9a4b9 commit_creds -EXPORT_SYMBOL vmlinux 0xf0b9ef92 msm_pinctrl_probe -EXPORT_SYMBOL vmlinux 0xf0ce6fbf dquot_operations -EXPORT_SYMBOL vmlinux 0xf0dcb646 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xf0bf1eae inet_addr_type +EXPORT_SYMBOL vmlinux 0xf0d2c7cb get_fs_type +EXPORT_SYMBOL vmlinux 0xf0e2ae4f phy_modify_paged +EXPORT_SYMBOL vmlinux 0xf0ed652c nd_integrity_init EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail -EXPORT_SYMBOL vmlinux 0xf10e336c fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xf10271ac param_set_bool +EXPORT_SYMBOL vmlinux 0xf11b31ed tty_port_alloc_xmit_buf EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early -EXPORT_SYMBOL vmlinux 0xf124b326 blkdev_issue_secure_erase -EXPORT_SYMBOL vmlinux 0xf1310cfd dma_resv_fini -EXPORT_SYMBOL vmlinux 0xf13aa217 vme_bus_type -EXPORT_SYMBOL vmlinux 0xf1493a5c security_sctp_assoc_request -EXPORT_SYMBOL vmlinux 0xf15773f2 mr_mfc_find_parent -EXPORT_SYMBOL vmlinux 0xf16e71fb dcb_getrewr_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xf1338808 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf137bb4d __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xf13c5702 dget_parent +EXPORT_SYMBOL vmlinux 0xf142d65e page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xf1458662 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xf158e162 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xf163365c nd_btt_probe +EXPORT_SYMBOL vmlinux 0xf174ad4a dcb_ieee_delapp EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb -EXPORT_SYMBOL vmlinux 0xf1933ea5 vmalloc_to_page EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0xf19d138e pci_write_vpd_any -EXPORT_SYMBOL vmlinux 0xf1a625ef mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xf19f05ca devm_mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xf1a0a632 mfd_remove_devices_late EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream -EXPORT_SYMBOL vmlinux 0xf1aa55f1 inode_update_time -EXPORT_SYMBOL vmlinux 0xf1c583da mmc_retune_release -EXPORT_SYMBOL vmlinux 0xf1d45283 dm_table_event -EXPORT_SYMBOL vmlinux 0xf1d710b9 seg6_push_hmac EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e6308d pci_ep_cfs_add_epf_group EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun EXPORT_SYMBOL vmlinux 0xf1f88a0e dm_kcopyd_prepare_callback -EXPORT_SYMBOL vmlinux 0xf2072bc8 _dev_info -EXPORT_SYMBOL vmlinux 0xf208ee05 iw_handler_get_spy -EXPORT_SYMBOL vmlinux 0xf216bc27 mmc_register_driver -EXPORT_SYMBOL vmlinux 0xf2278a35 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xf1ff382f devm_ioremap +EXPORT_SYMBOL vmlinux 0xf20720ee security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xf21b01f5 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xf23877a4 udp_poll EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in -EXPORT_SYMBOL vmlinux 0xf24111de skb_flow_dissect_meta -EXPORT_SYMBOL vmlinux 0xf246027c xsk_uses_need_wakeup -EXPORT_SYMBOL vmlinux 0xf246f873 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xf2416951 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xf2537e84 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xf25b89de key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xf25f55a5 __do_once_done EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier -EXPORT_SYMBOL vmlinux 0xf281c62b serio_open +EXPORT_SYMBOL vmlinux 0xf26788ea vfs_fadvise +EXPORT_SYMBOL vmlinux 0xf2773cb3 of_chosen EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf28e3965 of_graph_get_remote_endpoint EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf2958399 da903x_query_status +EXPORT_SYMBOL vmlinux 0xf2a1cc2c sockopt_lock_sock EXPORT_SYMBOL vmlinux 0xf2a8efae dm_kcopyd_do_callback -EXPORT_SYMBOL vmlinux 0xf2b2a1be input_register_handle -EXPORT_SYMBOL vmlinux 0xf2b79949 nf_hook_slow -EXPORT_SYMBOL vmlinux 0xf2c13e1d of_node_put +EXPORT_SYMBOL vmlinux 0xf2c0e104 mmc_gpio_set_cd_wake EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate -EXPORT_SYMBOL vmlinux 0xf2cda58e xp_alloc_batch -EXPORT_SYMBOL vmlinux 0xf2d7f776 node_data +EXPORT_SYMBOL vmlinux 0xf2e19cb0 set_page_writeback +EXPORT_SYMBOL vmlinux 0xf2e48abf tcp_read_done EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts -EXPORT_SYMBOL vmlinux 0xf2f165f8 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xf2eb4739 pci_enable_link_state EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free -EXPORT_SYMBOL vmlinux 0xf31fc72e mmc_set_blocklen -EXPORT_SYMBOL vmlinux 0xf329a940 amba_release_regions -EXPORT_SYMBOL vmlinux 0xf3347f08 __devm_release_region +EXPORT_SYMBOL vmlinux 0xf326b12f block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf32adeb4 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xf32c34d2 dquot_set_dqblk EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head -EXPORT_SYMBOL vmlinux 0xf34e0856 flow_block_cb_alloc -EXPORT_SYMBOL vmlinux 0xf352a675 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xf34f605b dcb_getrewr EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier -EXPORT_SYMBOL vmlinux 0xf357a680 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xf361012f vme_irq_free EXPORT_SYMBOL vmlinux 0xf3621fe2 mtree_alloc_rrange EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress -EXPORT_SYMBOL vmlinux 0xf37037f5 pci_find_bus -EXPORT_SYMBOL vmlinux 0xf3706950 bio_alloc_clone -EXPORT_SYMBOL vmlinux 0xf3746bbf filemap_dirty_folio -EXPORT_SYMBOL vmlinux 0xf374831e write_cache_pages -EXPORT_SYMBOL vmlinux 0xf3863027 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xf3731c13 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xf3846643 simple_open +EXPORT_SYMBOL vmlinux 0xf38c3732 inode_dio_wait EXPORT_SYMBOL vmlinux 0xf390f6f1 __bitmap_andnot EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused -EXPORT_SYMBOL vmlinux 0xf3a32f91 pci_enable_link_state EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3a797ba generic_buffers_fsync_noflush +EXPORT_SYMBOL vmlinux 0xf3a8e301 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xf3bf8d11 folio_create_empty_buffers EXPORT_SYMBOL vmlinux 0xf3cfa76a __nla_put -EXPORT_SYMBOL vmlinux 0xf3dcab2a device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xf3d4abff sock_alloc_file EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource -EXPORT_SYMBOL vmlinux 0xf40b87ed tcp_mmap -EXPORT_SYMBOL vmlinux 0xf40ffb2e scsi_done_direct -EXPORT_SYMBOL vmlinux 0xf415fc03 devm_pci_remap_cfg_resource -EXPORT_SYMBOL vmlinux 0xf42a55e2 get_bitmap_from_slot -EXPORT_SYMBOL vmlinux 0xf430a272 bio_add_folio +EXPORT_SYMBOL vmlinux 0xf412887e retire_super EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface -EXPORT_SYMBOL vmlinux 0xf442b891 get_mem_cgroup_from_mm -EXPORT_SYMBOL vmlinux 0xf446e4bf devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xf43eb0eb register_shrinker EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier -EXPORT_SYMBOL vmlinux 0xf44dd502 current_time EXPORT_SYMBOL vmlinux 0xf44f852a phy_check_valid -EXPORT_SYMBOL vmlinux 0xf45fe26e pci_disable_msi +EXPORT_SYMBOL vmlinux 0xf45b7d4e vme_master_mmap +EXPORT_SYMBOL vmlinux 0xf46446ab mmc_gpio_set_cd_irq +EXPORT_SYMBOL vmlinux 0xf467f9a4 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xf46c9743 flow_rule_match_ports EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const -EXPORT_SYMBOL vmlinux 0xf485796e fc_mount -EXPORT_SYMBOL vmlinux 0xf48725f7 devm_memunmap -EXPORT_SYMBOL vmlinux 0xf48dd8e2 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0xf492976d __ip_select_ident -EXPORT_SYMBOL vmlinux 0xf499bd3b netdev_get_by_name +EXPORT_SYMBOL vmlinux 0xf47bb676 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xf485dfe4 netif_skb_features +EXPORT_SYMBOL vmlinux 0xf48aeede sock_init_data +EXPORT_SYMBOL vmlinux 0xf4928fa3 phy_validate_pause EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0xf4b9873d tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xf4bdb4a5 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xf4c54c93 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xf4cfdeb3 tls_server_hello_x509 EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy -EXPORT_SYMBOL vmlinux 0xf4e99515 block_write_begin -EXPORT_SYMBOL vmlinux 0xf4f0b8a1 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xf4e5ef38 pci_alloc_irq_vectors EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock -EXPORT_SYMBOL vmlinux 0xf4f6233f serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0xf4fb1747 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0xf50c7b72 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0xf5119239 kset_register -EXPORT_SYMBOL vmlinux 0xf5234e5a flow_indr_dev_register -EXPORT_SYMBOL vmlinux 0xf5392419 put_disk +EXPORT_SYMBOL vmlinux 0xf523dd23 ilookup +EXPORT_SYMBOL vmlinux 0xf5272c78 napi_enable +EXPORT_SYMBOL vmlinux 0xf53a329c scsi_eh_finish_cmd EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy -EXPORT_SYMBOL vmlinux 0xf540a4d4 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0xf55024fe tcp_conn_request -EXPORT_SYMBOL vmlinux 0xf551574b netdev_rx_csum_fault -EXPORT_SYMBOL vmlinux 0xf55a9c08 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0xf55f7eb4 setup_new_exec -EXPORT_SYMBOL vmlinux 0xf56fb828 kill_block_super -EXPORT_SYMBOL vmlinux 0xf5763c72 pm860x_reg_read -EXPORT_SYMBOL vmlinux 0xf59a785f fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xf5618605 rproc_boot +EXPORT_SYMBOL vmlinux 0xf5783215 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xf5841f2f iov_iter_get_pages_alloc2 +EXPORT_SYMBOL vmlinux 0xf5876960 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xf588ad85 clk_add_alias +EXPORT_SYMBOL vmlinux 0xf59cf691 processors EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc -EXPORT_SYMBOL vmlinux 0xf5bb585e netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0xf5d42595 configfs_register_subsystem -EXPORT_SYMBOL vmlinux 0xf5d5a916 fb_set_var +EXPORT_SYMBOL vmlinux 0xf5dbd079 ram_aops EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 -EXPORT_SYMBOL vmlinux 0xf5f23593 param_get_long -EXPORT_SYMBOL vmlinux 0xf614c6c6 textsearch_destroy -EXPORT_SYMBOL vmlinux 0xf61ec9e8 xfrm_state_free -EXPORT_SYMBOL vmlinux 0xf61fffd9 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0xf62523b0 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xf5eaaf74 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xf5f0dba6 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xf5ff6762 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xf6094951 pci_release_regions +EXPORT_SYMBOL vmlinux 0xf6163529 mmc_card_is_blockaddr EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 -EXPORT_SYMBOL vmlinux 0xf65ff42f give_up_console +EXPORT_SYMBOL vmlinux 0xf64a8ab2 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xf65b9fea pcie_print_link_status EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module -EXPORT_SYMBOL vmlinux 0xf6790eca pin_user_pages +EXPORT_SYMBOL vmlinux 0xf66e4524 phy_set_max_speed EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0xf68fb52c tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0xf69a2092 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xf69f0535 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xf6b84733 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xf6e2da3c xp_raw_get_dma EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit -EXPORT_SYMBOL vmlinux 0xf6ef420c dev_remove_pack -EXPORT_SYMBOL vmlinux 0xf6f6e25c vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xf6f47d9c inet_ioctl +EXPORT_SYMBOL vmlinux 0xf6f8cc98 tty_port_open EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor -EXPORT_SYMBOL vmlinux 0xf70d4149 update_region -EXPORT_SYMBOL vmlinux 0xf7251dab input_get_timestamp -EXPORT_SYMBOL vmlinux 0xf72686ba dput -EXPORT_SYMBOL vmlinux 0xf72aa293 dquot_destroy -EXPORT_SYMBOL vmlinux 0xf73381a8 proto_unregister +EXPORT_SYMBOL vmlinux 0xf710a5d7 setattr_should_drop_sgid +EXPORT_SYMBOL vmlinux 0xf71fe4b0 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xf7240a90 is_subdir +EXPORT_SYMBOL vmlinux 0xf727bf55 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xf72b64a0 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xf730edf1 mmc_can_gpio_cd EXPORT_SYMBOL vmlinux 0xf7370f56 system_state EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier -EXPORT_SYMBOL vmlinux 0xf748921b mmc_can_discard -EXPORT_SYMBOL vmlinux 0xf756de2f vga_client_register -EXPORT_SYMBOL vmlinux 0xf7640738 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf7436d44 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xf75a37db of_count_phandle_with_args EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio -EXPORT_SYMBOL vmlinux 0xf77e630c twl6040_reg_write -EXPORT_SYMBOL vmlinux 0xf77fbafb qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0xf7ac047f blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xf77a13cd fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xf77c56f6 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf792e9df poll_initwait +EXPORT_SYMBOL vmlinux 0xf7b16e91 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xf7c306f1 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xf7c3fb4a tcp_seq_stop EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e04e50 build_skb_around EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash -EXPORT_SYMBOL vmlinux 0xf809cad5 mmc_get_card +EXPORT_SYMBOL vmlinux 0xf7fb0fc9 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xf8081c88 mii_check_link EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q EXPORT_SYMBOL vmlinux 0xf812cff6 memscan -EXPORT_SYMBOL vmlinux 0xf8175732 rproc_coredump_add_segment -EXPORT_SYMBOL vmlinux 0xf818988c skb_queue_head EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev -EXPORT_SYMBOL vmlinux 0xf8300bde skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0xf8374fe1 configfs_register_default_group -EXPORT_SYMBOL vmlinux 0xf8428d75 register_shrinker EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key -EXPORT_SYMBOL vmlinux 0xf853c14a vme_slot_num -EXPORT_SYMBOL vmlinux 0xf86491a5 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0xf86ddfdf dma_get_sgtable_attrs -EXPORT_SYMBOL vmlinux 0xf87e87ae mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xf85b20aa __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xf8789971 mntput +EXPORT_SYMBOL vmlinux 0xf8838f32 skb_dequeue EXPORT_SYMBOL vmlinux 0xf88ecec4 kvmemdup -EXPORT_SYMBOL vmlinux 0xf89bd62e amba_device_register -EXPORT_SYMBOL vmlinux 0xf8a7bbc9 mini_qdisc_pair_init -EXPORT_SYMBOL vmlinux 0xf8a8e9c9 udp_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0xf8af0937 pci_alloc_irq_vectors -EXPORT_SYMBOL vmlinux 0xf8b5ae5d processors +EXPORT_SYMBOL vmlinux 0xf8909db6 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xf8947cdd bioset_exit +EXPORT_SYMBOL vmlinux 0xf8a84216 nf_ip6_checksum EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 -EXPORT_SYMBOL vmlinux 0xf8d1181d address_space_init_once -EXPORT_SYMBOL vmlinux 0xf8d19959 dma_set_coherent_mask EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size -EXPORT_SYMBOL vmlinux 0xf8d86127 bd_abort_claiming -EXPORT_SYMBOL vmlinux 0xf8dbec29 param_set_int -EXPORT_SYMBOL vmlinux 0xf8de3379 tty_unthrottle -EXPORT_SYMBOL vmlinux 0xf8e38c64 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0xf8e9e708 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0xf8f57d59 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xf8da3ec0 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xf8e51ef7 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xf8e7fc88 elv_rb_find EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf903d258 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xf905d19e mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xf90b21ff __neigh_for_each_release EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct -EXPORT_SYMBOL vmlinux 0xf91c8706 set_anon_super -EXPORT_SYMBOL vmlinux 0xf91cb06b cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xf91d507b rproc_free +EXPORT_SYMBOL vmlinux 0xf9279804 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xf931ea9f __ip_select_ident EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9447d30 cdrom_get_media_event EXPORT_SYMBOL vmlinux 0xf94536c2 proc_dointvec -EXPORT_SYMBOL vmlinux 0xf951cd11 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance -EXPORT_SYMBOL vmlinux 0xf96a0dd8 register_framebuffer +EXPORT_SYMBOL vmlinux 0xf94b4078 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xf95d2b05 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xf96750bf lookup_one_positive_unlocked EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write -EXPORT_SYMBOL vmlinux 0xf9824791 netdev_notice -EXPORT_SYMBOL vmlinux 0xf9965e42 truncate_setsize -EXPORT_SYMBOL vmlinux 0xf99690d1 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xf993d08f tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xf99b9e4f blk_mq_run_hw_queues EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c2d075 rproc_elf_load_segments EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user EXPORT_SYMBOL vmlinux 0xf9cdddc3 __cpuhp_remove_state_cpuslocked -EXPORT_SYMBOL vmlinux 0xf9e61cdc phy_modify_paged -EXPORT_SYMBOL vmlinux 0xf9f23c10 pci_get_slot +EXPORT_SYMBOL vmlinux 0xf9d14547 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xf9d21e81 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xf9ec8fb3 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xf9ec9c64 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xf9efb051 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xfa025df5 cpu_rmap_update EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa07eb53 inet_csk_reqsk_queue_drop EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end -EXPORT_SYMBOL vmlinux 0xfa0d2b61 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0xfa255825 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xfa0b21ee __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xfa1c2655 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xfa24f88a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xfa270200 netdev_upper_get_next_dev_rcu EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec -EXPORT_SYMBOL vmlinux 0xfa389a08 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0xfa3a7903 posix_test_lock -EXPORT_SYMBOL vmlinux 0xfa3c5a2a pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xfa346e2e pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xfa3e871b current_time +EXPORT_SYMBOL vmlinux 0xfa40bd1d pci_disable_device EXPORT_SYMBOL vmlinux 0xfa4d2f03 __nla_parse -EXPORT_SYMBOL vmlinux 0xfa50ebb4 skb_eth_push EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0xfa6fd462 neigh_seq_next -EXPORT_SYMBOL vmlinux 0xfa7b7ef1 filemap_get_folios_contig -EXPORT_SYMBOL vmlinux 0xfa8a5d8e netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xfa8d8273 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xfa91fcae sock_pfree +EXPORT_SYMBOL vmlinux 0xfa97ca01 fget +EXPORT_SYMBOL vmlinux 0xfa9c3090 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xfaa1a660 proc_mkdir_mode EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled -EXPORT_SYMBOL vmlinux 0xfaad0321 mipi_dsi_attach -EXPORT_SYMBOL vmlinux 0xfabb692a softnet_data EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0xfad5a006 sk_wait_data -EXPORT_SYMBOL vmlinux 0xfada1e59 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xfad3a9d1 flush_signals +EXPORT_SYMBOL vmlinux 0xfad53d50 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xfadc0ce4 jbd2_journal_init_dev EXPORT_SYMBOL vmlinux 0xfaecb308 memcg_bpf_enabled_key -EXPORT_SYMBOL vmlinux 0xfaef029d scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0xfaff1b35 md_integrity_add_rdev -EXPORT_SYMBOL vmlinux 0xfb0336ab __bh_read_batch -EXPORT_SYMBOL vmlinux 0xfb05812d of_cpu_node_to_id -EXPORT_SYMBOL vmlinux 0xfb134868 invalidate_disk -EXPORT_SYMBOL vmlinux 0xfb1ea018 sock_setsockopt -EXPORT_SYMBOL vmlinux 0xfb29c6e7 mdiobus_c45_write_nested -EXPORT_SYMBOL vmlinux 0xfb345021 __icmp_send +EXPORT_SYMBOL vmlinux 0xfb00bf9d io_uring_destruct_scm +EXPORT_SYMBOL vmlinux 0xfb2e162e configfs_register_group EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable -EXPORT_SYMBOL vmlinux 0xfb37a79d mmc_gpio_set_cd_isr EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf -EXPORT_SYMBOL vmlinux 0xfb3d457d xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0xfb4623e1 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0xfb5b0272 nd_region_release_lane -EXPORT_SYMBOL vmlinux 0xfb5f72cc mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xfb45f060 security_path_unlink +EXPORT_SYMBOL vmlinux 0xfb4abcda __skb_warn_lro_forwarding EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending -EXPORT_SYMBOL vmlinux 0xfb6d80fc page_cache_next_miss -EXPORT_SYMBOL vmlinux 0xfb7235cd path_is_under -EXPORT_SYMBOL vmlinux 0xfb768135 netdev_update_features +EXPORT_SYMBOL vmlinux 0xfb71636a kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xfb768900 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xfb786d1a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xfb7b3553 sk_net_capable +EXPORT_SYMBOL vmlinux 0xfb8bdcac platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xfb8e5954 netdev_features_change +EXPORT_SYMBOL vmlinux 0xfba40164 phy_disconnect EXPORT_SYMBOL vmlinux 0xfba7a5f5 __get_random_u32_below EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaa360a copy_page_to_iter_nofault EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock -EXPORT_SYMBOL vmlinux 0xfbaaf3eb param_get_ushort EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad -EXPORT_SYMBOL vmlinux 0xfbc3ef71 __netlink_ns_capable EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout EXPORT_SYMBOL vmlinux 0xfbd3307f ns_capable -EXPORT_SYMBOL vmlinux 0xfbd90be3 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xfbdeeecc sync_blockdev_range EXPORT_SYMBOL vmlinux 0xfbe215e4 sg_next EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0xfc073011 sk_stream_error -EXPORT_SYMBOL vmlinux 0xfc09b9b4 kernel_sendmsg_locked -EXPORT_SYMBOL vmlinux 0xfc11bd64 inode_set_flags -EXPORT_SYMBOL vmlinux 0xfc1620ab __hw_addr_ref_unsync_dev -EXPORT_SYMBOL vmlinux 0xfc27e06f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xfc06c8de get_unmapped_area +EXPORT_SYMBOL vmlinux 0xfc0ac924 load_nls EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue -EXPORT_SYMBOL vmlinux 0xfc513e1a page_mapping EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown -EXPORT_SYMBOL vmlinux 0xfc5839dc d_mark_dontcache -EXPORT_SYMBOL vmlinux 0xfc7795eb kthread_create_worker_on_cpu -EXPORT_SYMBOL vmlinux 0xfc7a564d dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0xfc7ff4d6 tc_setup_cb_reoffload -EXPORT_SYMBOL vmlinux 0xfc8247f5 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xfc7058fb fscrypt_fname_disk_to_usr EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset -EXPORT_SYMBOL vmlinux 0xfc905b8c napi_complete_done +EXPORT_SYMBOL vmlinux 0xfc8f4727 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xfc9207dd inet_get_local_port_range EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available -EXPORT_SYMBOL vmlinux 0xfca10e87 pci_claim_resource -EXPORT_SYMBOL vmlinux 0xfca61f35 generic_fadvise -EXPORT_SYMBOL vmlinux 0xfcb91f4e vlan_filter_push_vids -EXPORT_SYMBOL vmlinux 0xfcc49cd0 udp_seq_start -EXPORT_SYMBOL vmlinux 0xfcca508a watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xfca7395d of_platform_bus_probe EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable -EXPORT_SYMBOL vmlinux 0xfcceb7f0 vlan_dev_vlan_id -EXPORT_SYMBOL vmlinux 0xfcd07ffe mq_change_real_num_tx EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq -EXPORT_SYMBOL vmlinux 0xfcf10b4c sk_error_report -EXPORT_SYMBOL vmlinux 0xfd00245d km_policy_expired -EXPORT_SYMBOL vmlinux 0xfd00db5d tls_server_hello_x509 -EXPORT_SYMBOL vmlinux 0xfd081dd9 iov_iter_get_pages_alloc2 -EXPORT_SYMBOL vmlinux 0xfd1f4e3a ipv6_select_ident -EXPORT_SYMBOL vmlinux 0xfd38fa7c skb_queue_purge -EXPORT_SYMBOL vmlinux 0xfd3ee923 dev_kfree_skb_any_reason -EXPORT_SYMBOL vmlinux 0xfd5a2986 cpumask_any_and_distribute -EXPORT_SYMBOL vmlinux 0xfd670787 fman_get_bmi_max_fifo_size -EXPORT_SYMBOL vmlinux 0xfd77869c dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0xfd912eb9 jbd2_submit_inode_data -EXPORT_SYMBOL vmlinux 0xfd94b6ea serio_close -EXPORT_SYMBOL vmlinux 0xfd99e59d netlink_kernel_release -EXPORT_SYMBOL vmlinux 0xfdae03c0 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xfd08de4a get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xfd175734 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xfd2022c5 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xfd207d1d devfreq_update_status +EXPORT_SYMBOL vmlinux 0xfd4e03d2 phy_device_free +EXPORT_SYMBOL vmlinux 0xfd52cd39 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xfd54e940 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xfd556c64 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xfd6171f9 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xfd6882aa mpage_readahead +EXPORT_SYMBOL vmlinux 0xfd8bb30b phy_device_remove +EXPORT_SYMBOL vmlinux 0xfd90e319 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xfd94c528 crypto_sha3_update +EXPORT_SYMBOL vmlinux 0xfd9c88ef sock_create_kern +EXPORT_SYMBOL vmlinux 0xfdb18c99 end_buffer_read_sync EXPORT_SYMBOL vmlinux 0xfdba919d __nla_reserve_64bit -EXPORT_SYMBOL vmlinux 0xfdbc9fc5 filemap_invalidate_unlock_two -EXPORT_SYMBOL vmlinux 0xfdc41cfa import_iovec -EXPORT_SYMBOL vmlinux 0xfdcada6a mdio_device_remove +EXPORT_SYMBOL vmlinux 0xfdbb3eed alloc_netdev_mqs EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line -EXPORT_SYMBOL vmlinux 0xfdcb6f90 generic_buffers_fsync EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display -EXPORT_SYMBOL vmlinux 0xfdcd7a4a tc_cleanup_offload_action -EXPORT_SYMBOL vmlinux 0xfddc74ef redraw_screen -EXPORT_SYMBOL vmlinux 0xfde671c8 phy_attach_direct -EXPORT_SYMBOL vmlinux 0xfdec65ec __mdiobus_read +EXPORT_SYMBOL vmlinux 0xfde1c5d7 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xfde9662f pci_claim_resource +EXPORT_SYMBOL vmlinux 0xfdeedb7d d_tmpfile EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe1bf282 rpmh_write_async EXPORT_SYMBOL vmlinux 0xfe1c9ea5 sg_pcopy_from_buffer EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update EXPORT_SYMBOL vmlinux 0xfe215b97 proc_do_large_bitmap -EXPORT_SYMBOL vmlinux 0xfe28fa40 inetdev_by_index -EXPORT_SYMBOL vmlinux 0xfe29859c devm_memremap -EXPORT_SYMBOL vmlinux 0xfe460470 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xfe3f4900 inet_reqsk_alloc EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry -EXPORT_SYMBOL vmlinux 0xfe59f09d __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xfe56240e __xfrm_state_delete EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz -EXPORT_SYMBOL vmlinux 0xfe618ed0 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0xfe61f3e7 dev_trans_start -EXPORT_SYMBOL vmlinux 0xfe6e1e37 netif_carrier_off -EXPORT_SYMBOL vmlinux 0xfe76057c inode_query_iversion +EXPORT_SYMBOL vmlinux 0xfe6da35f igrab +EXPORT_SYMBOL vmlinux 0xfe8ec9fb _dev_printk EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe97a596 fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xfe989f11 misc_deregister EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0xfea8f2d6 d_splice_alias -EXPORT_SYMBOL vmlinux 0xfed53352 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xfea73550 sock_wfree +EXPORT_SYMBOL vmlinux 0xfeaca59b sk_reset_timer +EXPORT_SYMBOL vmlinux 0xfed16648 sock_no_listen +EXPORT_SYMBOL vmlinux 0xfed9a995 inet_addr_type_table EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0xfedcf8a5 kill_pid -EXPORT_SYMBOL vmlinux 0xfede8c42 rtnl_create_link -EXPORT_SYMBOL vmlinux 0xfee4ca9e __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0xfeeadfd8 to_nd_pfn EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute -EXPORT_SYMBOL vmlinux 0xff0ca0a1 done_path_create +EXPORT_SYMBOL vmlinux 0xff02449d kernel_param_lock +EXPORT_SYMBOL vmlinux 0xff183eaa component_match_add_release +EXPORT_SYMBOL vmlinux 0xff1d071e tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xff1d2b23 mfd_remove_devices EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start -EXPORT_SYMBOL vmlinux 0xff2712a8 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xff25fa7f phy_suspend EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register -EXPORT_SYMBOL vmlinux 0xff2a4924 pci_write_vpd EXPORT_SYMBOL vmlinux 0xff41a709 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xff4b9850 ip6_dst_alloc EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6f342e unregister_shrinker EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff80eadc blk_sync_queue EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0xff9347ef cros_ec_query_all -EXPORT_SYMBOL vmlinux 0xffa2f73c security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xff9ed689 inet_frag_pull_head EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free -EXPORT_SYMBOL vmlinux 0xffbca174 phy_start_aneg EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffc9401e dma_map_sg_attrs EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt -EXPORT_SYMBOL vmlinux 0xffee3365 blk_rq_map_user_io +EXPORT_SYMBOL vmlinux 0xffd4185f pci_save_state EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0xfff013c8 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0xffff4f1d ndo_dflt_fdb_add -EXPORT_SYMBOL_GPL crypto/af_alg 0x1bad113c af_alg_get_rsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x1e289daf af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x17b41553 af_alg_accept EXPORT_SYMBOL_GPL crypto/af_alg 0x27e92408 af_alg_async_cb -EXPORT_SYMBOL_GPL crypto/af_alg 0x2ed5c4bf af_alg_pull_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x389a9ea4 af_alg_free_resources -EXPORT_SYMBOL_GPL crypto/af_alg 0x3f3904f0 af_alg_register_type -EXPORT_SYMBOL_GPL crypto/af_alg 0x4dabe22a af_alg_release -EXPORT_SYMBOL_GPL crypto/af_alg 0x53bef9ba af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3ffee6a0 af_alg_sendmsg EXPORT_SYMBOL_GPL crypto/af_alg 0x634264a9 af_alg_free_sg -EXPORT_SYMBOL_GPL crypto/af_alg 0x6d066cd6 af_alg_alloc_areq -EXPORT_SYMBOL_GPL crypto/af_alg 0x74f48a50 af_alg_count_tsgl -EXPORT_SYMBOL_GPL crypto/af_alg 0x8c55c1b2 af_alg_wmem_wakeup -EXPORT_SYMBOL_GPL crypto/af_alg 0x8d5182a5 af_alg_accept -EXPORT_SYMBOL_GPL crypto/af_alg 0xac7fcf2f af_alg_sendmsg -EXPORT_SYMBOL_GPL crypto/af_alg 0xaddea023 af_alg_wait_for_data -EXPORT_SYMBOL_GPL crypto/af_alg 0xe2f9bd20 af_alg_release_parent -EXPORT_SYMBOL_GPL crypto/aria_generic 0x485df02e aria_set_key +EXPORT_SYMBOL_GPL crypto/af_alg 0x86b0eb17 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x8b20a696 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x8c79ccf9 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x8f841e8a af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x910d82f9 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xa0b4754c af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xb236bc27 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xc17d05f4 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xc5463293 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xca047815 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xe2d5b06b af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xe7a75bdc af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/aria_generic 0x395c6573 aria_set_key EXPORT_SYMBOL_GPL crypto/aria_generic 0x4a61978a aria_encrypt EXPORT_SYMBOL_GPL crypto/aria_generic 0xbdad6df6 aria_decrypt -EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xcdd276b0 async_memcpy -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb8c13435 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xca89a6ce async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x30f61f86 async_raid6_datap_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8f3e92c0 async_raid6_2data_recov -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x06b822c5 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1fb191c5 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x30944f7e async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb63ae88d __async_tx_find_channel -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x361200d2 async_xor_offs -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7c0859a5 async_xor_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x938b9e56 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x99b8f5ac async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x5348ffbb async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9a258dfd async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xca5e9818 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0aaf9de8 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x35c32c0b async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3a1e3cf4 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7caf8834 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x942528fb async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb60bbb54 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6b1824a3 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x85cd137b async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd2ef40de async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe9605dfb async_xor_offs EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys -EXPORT_SYMBOL_GPL crypto/blowfish_common 0x2959df29 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xad7a6e9e blowfish_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt -EXPORT_SYMBOL_GPL crypto/cast5_generic 0xbf02d4ad cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xce0341f0 cast5_setkey EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x15beab78 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt -EXPORT_SYMBOL_GPL crypto/cast6_generic 0x64bf3e25 cast6_setkey EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 -EXPORT_SYMBOL_GPL crypto/cryptd 0x225745e7 cryptd_shash_desc -EXPORT_SYMBOL_GPL crypto/cryptd 0x3402ee90 cryptd_aead_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x439a6e31 cryptd_free_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x4938d0e5 cryptd_ahash_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0x4dafdb9b cryptd_alloc_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0x63e1849b cryptd_alloc_skcipher -EXPORT_SYMBOL_GPL crypto/cryptd 0x64be8b0e cryptd_free_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0x88879c99 cryptd_ahash_child -EXPORT_SYMBOL_GPL crypto/cryptd 0x9f73f8f0 cryptd_skcipher_child -EXPORT_SYMBOL_GPL crypto/cryptd 0xb1fe2e56 cryptd_skcipher_queued -EXPORT_SYMBOL_GPL crypto/cryptd 0xb70265f0 cryptd_alloc_aead -EXPORT_SYMBOL_GPL crypto/cryptd 0xc8c6caf1 cryptd_free_ahash -EXPORT_SYMBOL_GPL crypto/cryptd 0xd427e830 cryptd_aead_child -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x065a4e47 crypto_engine_start -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x31f4a895 crypto_transfer_kpp_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x36268714 crypto_finalize_kpp_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4d1ccf48 crypto_transfer_skcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7afec39f crypto_transfer_aead_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x85e11884 crypto_finalize_hash_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9001b636 crypto_engine_stop -EXPORT_SYMBOL_GPL crypto/crypto_engine 0x91b58427 crypto_finalize_skcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xacc98793 crypto_finalize_aead_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb6327cd6 crypto_finalize_akcipher_request -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcca00bfe crypto_engine_exit -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd2ed1966 crypto_transfer_hash_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf528ed17 crypto_engine_alloc_init -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfb58fd2c crypto_transfer_akcipher_request_to_engine -EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfe53f340 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/cryptd 0x042998d7 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x051f9396 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x081e0c50 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x230d7de8 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x5a6f6ce5 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x73a782a4 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x78085526 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x843144af cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x8de2cc96 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xaa7843be cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xab350586 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xecc7b460 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf9045a3a cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x319e5a7b crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x52a6bdaa crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x61fb8208 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x67c2cabb crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7cf78770 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7d29364d crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x891f513b crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x985cf813 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaaa0a553 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xba1b8f23 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc305d973 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc3e385e4 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc4fd45db crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc8bb00b4 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe651d9b8 crypto_engine_alloc_init_and_set EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key EXPORT_SYMBOL_GPL crypto/polyval-generic 0x1936413e polyval_mul_non4k EXPORT_SYMBOL_GPL crypto/polyval-generic 0x49dece42 polyval_update_non4k -EXPORT_SYMBOL_GPL crypto/serpent_generic 0x35d2ef20 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x44d37a7d serpent_setkey EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey -EXPORT_SYMBOL_GPL crypto/sm2_generic 0x85b94150 sm2_compute_z_digest +EXPORT_SYMBOL_GPL crypto/sm2_generic 0xc60aa96c sm2_compute_z_digest EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block -EXPORT_SYMBOL_GPL crypto/twofish_common 0xca82215e twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xbb83b403 twofish_setkey EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x004af519 __acpi_nvdimm_notify -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x1babdea7 acpi_nfit_desc_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x2113885c acpi_nfit_init -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x3c2ac063 acpi_nfit_ctl EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id -EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xdb2b5593 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x6ae5557d acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x7a00164d __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xa2471fe7 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe5de781b acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xff95e5af __acpi_nfit_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0x67927a0d platform_profile_notify EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xbfe36436 platform_profile_remove EXPORT_SYMBOL_GPL drivers/acpi/platform_profile 0xcac33cd4 platform_profile_register -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x2302887e pata_parport_unregister_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0xf208ff1e pata_parport_register_driver -EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x4737a624 __pata_platform_probe -EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x811f0b35 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0x19dbdd13 pata_parport_unregister_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_parport/pata_parport 0xc8d1aa73 pata_parport_register_driver +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x2b9c2377 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x53ed9b42 sis_info133_for_sata EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x09917359 charlcd_poke EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x6fd9cc4a charlcd_register EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x8b45326c charlcd_alloc @@ -12347,165 +12347,166 @@ 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/auxdisplay/line-display 0x12b772f2 linedisp_register -EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xcdfb9280 linedisp_unregister -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x426b968b regmap_ac97_default_volatile -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x6a580d5c __regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xc1a6ab08 __devm_regmap_init_ac97 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xd664c943 __devm_regmap_init_i3c -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x0b2ec2c6 __devm_regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xa29048f9 __regmap_init_sccb -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x5c62f612 __devm_regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xfc0f6334 __regmap_init_sdw -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x3f72747a __regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x47764881 __devm_regmap_init_sdw_mbq -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x1f56b6b2 __regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x3c08b322 __devm_regmap_init_slimbus -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x4a8e02f9 __devm_regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7ada2e36 __regmap_init_spi_avmm -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x25e64f2d __devm_regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x4c3bf582 __regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x62876a26 __regmap_init_spmi_ext -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xdbae4d2f __devm_regmap_init_spmi_base -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8c1a4865 __devm_regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xcce14b48 __regmap_init_w1 -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ef46b2a bcma_chipco_pll_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1d877165 bcma_host_pci_up -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c2b3424 bcma_chipco_regctl_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e60a8e5 bcma_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x30f0a343 bcma_core_disable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x31c7195d bcma_chipco_gpio_outen -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5e38a968 bcma_chipco_get_alp_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x82c9b840 bcma_chipco_pll_maskset -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x86a2a527 bcma_chipco_gpio_out -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x874a8549 bcma_chipco_gpio_control -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x886287c2 bcma_pmu_get_bus_clock -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8cf805ad __bcma_driver_register -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8fd56c28 bcma_core_pci_power_save -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99c5071d bcma_core_enable -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99c78fdf bcma_host_pci_down -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa45dfcab bcma_core_is_enabled -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb2636678 bcma_chipco_b_mii_write -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbaba0807 bcma_core_set_clockmode -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc254c53d bcma_chipco_pll_read -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc7f8470e bcma_driver_unregister -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd26ba593 bcma_host_pci_irq_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdd519bc8 bcma_core_pll_ctl -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe70228e5 bcma_find_core_unit -EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeb6b9f33 bcma_chipco_chipctl_maskset -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x036b53ce btbcm_finalize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x34e2ef86 btbcm_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6f2037ed btbcm_read_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7ed31c4b btbcm_setup_patchram -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb7bfb1c4 btbcm_write_pcm_int_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbde77784 btbcm_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdf8e1616 btbcm_setup_apple -EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe1addb0b btbcm_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x03a3779e btintel_regmap_init -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x309bb817 btintel_secure_send_result -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x55ea39af btintel_check_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5dc20030 btintel_load_ddc_config -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x674c4cb9 btintel_version_info -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8293f633 btintel_bootup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x86a22df2 btintel_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8901a8b9 btintel_exit_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x94effb97 btintel_configure_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x970ab85f btintel_read_boot_params -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb8682733 btintel_set_quality_report -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc679c91d btintel_set_event_mask_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcffb199e btintel_read_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd9461146 btintel_send_intel_reset -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd9d9e39e btintel_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfe59a363 btintel_set_diag -EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xffb6bdc0 btintel_enter_mfg -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6fc6058b btmrvl_enable_hs -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x80727c08 btmrvl_send_module_cfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x80cb543a btmrvl_check_evtpkt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xad8aa263 btmrvl_pscan_window_reporting -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb9afd0f6 btmrvl_enable_ps -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd6d15ae3 btmrvl_interrupt -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe2cfd730 btmrvl_remove_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe4a04fec btmrvl_register_hdev -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf4735aee btmrvl_process_event -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf5744276 btmrvl_send_hscfg_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfdbfcd79 btmrvl_add_card -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x86012a5e btmtk_setup_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xb5b15efc btmtk_setup_firmware_79xx -EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xcf7715b9 btmtk_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0b4ed240 qca_set_bdaddr_rome -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6c834860 qca_set_bdaddr -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x88e3e4bb qca_send_pre_shutdown_cmd -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc8183df3 qca_read_soc_version -EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe2fca148 qca_uart_setup -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x10867fa7 btrtl_initialize -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x18cc506d btrtl_set_quirks -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x43950b9c btrtl_download_firmware -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x55d299fb btrtl_get_uart_settings -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x594a8f06 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x9dc6e037 linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xb1472761 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x10eabd27 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xbb141b73 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xc843eb4c regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xa4f50889 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x9bab64e6 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd311c288 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x2af5a6cd __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x5e3f4949 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x74633b3a __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xd29b072a __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x2b0d42cf __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xef8d240a __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x51a8308d __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x61fc1c42 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0fd4c6fd __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x48b5e3f6 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x66097c52 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf19cc4ff __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xadd1e33e __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xdad1fac1 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0094a800 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x082a775f bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0eab2237 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x14235689 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1558423d __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b73258e bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33d4608d bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x414ef93b bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x51de2eb3 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6b0252c7 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d8171fa bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8f436ddf bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac43e25f bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb24681d0 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb3ece553 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7c21baf bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbea7eb4b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf4fcb25 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc50e0781 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd363fd9e bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe19e6eca bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeca0c5d8 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf53a3687 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfad1ecdd bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x109bdcfc btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x51feb743 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5ef22630 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x66770b0b btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8fe51bbc btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x90feb94e btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb1c6d6a1 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xee7dae26 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x01827e54 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0df1569f btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22d53fde btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x39a2142a btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3d5e8d56 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x47b3fa04 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5eaec16d btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x636ee816 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6a45742d btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ff63574 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x90dd71fa btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x95e9d871 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaa4313b1 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcc662f30 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd66455ef btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf4f24502 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf7c847b7 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x329b9086 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3fde4b25 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x46239e52 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x81f575b0 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x86c9144d btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9c20dd6d btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa56c0cd8 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb1d80306 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb2d7999e btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb4b80142 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe9b79e58 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x448292f7 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x747c3784 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x7732e655 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x19a278bf qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x52a48f0a qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x56fa58a8 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xb045f07d qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd7886a5d qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x23623297 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4aab4cdd btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9e82efa0 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaaa23852 btrtl_shutdown_realtek EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free -EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb943fb89 btrtl_setup_realtek -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6e9fbc78 hci_uart_unregister_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x74aae791 h4_recv_buf -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7733be2b hci_uart_register_device -EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x865ecca5 hci_uart_tx_wakeup -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x022ead15 mhi_ep_queue_is_empty -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0792fa45 mhi_ep_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x149bd973 mhi_ep_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4814eb21 mhi_ep_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4bcf0ab7 __mhi_ep_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5f7da31d mhi_ep_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8be5c978 mhi_ep_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc31c3ea9 mhi_ep_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0187912d mhi_prepare_for_transfer_autoqueue -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x021290f8 __mhi_driver_register -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x02f8d474 mhi_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x175a47b0 mhi_pm_resume -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3646b73e mhi_driver_unregister -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4ead91a4 mhi_async_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5ade5cae mhi_queue_dma -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7749e20e mhi_device_get_sync -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x83685bcd mhi_unregister_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x88f2d061 mhi_force_rddm_mode -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x90f36401 mhi_register_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x99f39691 mhi_pm_resume_force -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9ee59566 mhi_free_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9fd9450f mhi_queue_skb -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa1c965ee mhi_get_exec_env -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa3eed66f mhi_soc_reset -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa8e5f4bf mhi_queue_is_full -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaa505425 mhi_unprepare_after_power_down -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xacb5cdd3 mhi_prepare_for_power_up -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb272c4f4 mhi_device_get -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb46fe264 mhi_get_free_desc_count -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb81bc880 mhi_get_mhi_state -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb9d8cde6 mhi_queue_buf -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbadd38f9 mhi_pm_suspend -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc95a0efb mhi_device_put -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xca347bec mhi_unprepare_from_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xde8bd230 mhi_alloc_controller -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf5a5d8f1 mhi_prepare_for_transfer -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf6d14c01 mhi_download_rddm_image -EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xff72a803 mhi_notify -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7372ba50 __moxtet_register_driver -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9c65583c moxtet_device_read -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xce987c40 moxtet_device_write -EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd04d4bde moxtet_device_written -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x5a94fab9 __devm_regmap_init_sunxi_rsb -EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x91830f51 sunxi_rsb_driver_register -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x7d4fcf9f meson_clk_phase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xcbb03e9d meson_sclk_ws_inv_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xeacbaf26 meson_clk_triphase_ops -EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x75c1384c meson_sclk_div_ops +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xbad3a0f5 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe18afb04 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x0daca7ca h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x108c5c7d hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x591168a6 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xccae5734 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x1f2c61fb mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x27068d18 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6ce0f776 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8b56b2d7 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb8789d13 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc1ca4f9f mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc9c3a393 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe498f0a5 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x03cb7aab mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05cb3539 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05d4fde8 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09e0c89d mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0c2ef70e mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x11a339a5 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x14d5bb18 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x23f36110 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2516f8e6 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x26fa5380 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x34db3ae4 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x39c3f67f __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3fc9bd16 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5ebd43e7 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x69658b68 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x715ea231 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7305461a mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x87270fc6 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8b7d2cc9 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9d4c131d mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaaa86cb4 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xac155ed6 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb03dcc1c mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb6227a6f mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb8b6acdb mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbbd8d9cc mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbc286cc2 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc0f013c3 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc143456d mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd28afadd mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x32e0a2cc moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4309d461 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7ec8b12e moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xb80d92d2 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x81e9f862 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0xcc1eb5d0 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x65970e4b meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x85d5fff7 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x9ef57c4a meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0xac79ffc4 meson_sclk_div_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03351dae clk_rcg_floor_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x03e7eb9a clk_alpha_pll_stromer_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x046c500f qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0509a95c clk_fabia_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x071d19d6 qcom_cc_register_rcg_dfs EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x07935d8b clk_alpha_pll_postdiv_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ae351c4 clk_alpha_pll_fabia_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0ed823f3 clk_alpha_pll_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x156832e5 devm_clk_register_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1b28da5e clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1c6fe7d3 qcom_cc_register_sleep_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d0f06af clk_byte2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1de81c63 clk_pll_configure_sr_hpm_lp EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1ea782c8 clk_alpha_pll_huayra_ops @@ -12517,18 +12518,18 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x37dafc55 clk_rivian_evo_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x38229fba clk_alpha_pll_reset_lucid_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3e1bdf30 gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45180f77 clk_dyn_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x45226263 clk_gfx3d_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x468b22ce clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x49be4abb clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4a930432 clk_branch_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b25a9a3 qcom_cc_register_board_clk -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5590f678 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4d375cc8 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x53bc7b4c gdsc_gx_do_nothing_enable EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x59eabda5 mux_div_set_src_div EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c035f38 clk_alpha_pll_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5c3e75ee clk_pll_vote_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5f18e967 clk_stromer_pll_configure -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64a9bb36 qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5f5ea565 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x64b8755d clk_alpha_pll_fixed_lucid_5lpe_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6610661f clk_alpha_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x66580ca3 clk_regmap_mux_closest_ops @@ -12539,24 +12540,21 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x708a435d clk_alpha_pll_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7319e51c clk_alpha_pll_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x787e8234 qcom_find_freq +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b1c149d qcom_find_cfg_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7b87fe3e clk_alpha_pll_postdiv_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7bee9360 clk_disable_regmap -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7c480025 qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7dfa4f12 clk_alpha_pll_postdiv_lucid_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e69e953 clk_alpha_pll_postdiv_trion_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x82afa55e clk_regmap_phy_mux_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x88c0add9 clk_rcg_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8e4c395e clk_edp_pixel_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9102a654 clk_is_enabled_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9123fa67 clk_zonda_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x93bc2a64 clk_ops_hfpll EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c464a3 clk_rcg2_floor_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x953b97b7 clk_alpha_pll_postdiv_lucid_evo_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x958bb027 clk_enable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9821a599 clk_rcg_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x9c401604 clk_rcg_esc_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa0755dc3 clk_alpha_pll_fixed_trion_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa54e3330 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa7db69fc clk_disable_regmap EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa95ed447 clk_rcg2_shared_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaea28295 clk_rcg_bypass2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaf105ec4 clk_branch2_ops @@ -12564,119 +12562,121 @@ EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8694bf5 clk_rcg2_mux_closest_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb8d0697b clk_lucid_evo_pll_configure EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbb2b9610 clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xbd05f99d qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0126fe0 clk_pll_sr2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc0d2ecb0 clk_regmap_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc32ee647 qcom_cc_really_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc9cb9fbf clk_alpha_pll_zonda_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcb2d25f8 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcd838cbb qcom_cc_register_board_clk EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd2ec30a3 clk_dp_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd98fe91b clk_alpha_pll_fixed_fabia_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xdf98eb70 qcom_cc_probe_by_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe4d191e1 clk_rcg_lcc_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6956eec qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe669257c qcom_cc_map EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe8c0478b clk_byte_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xeec69605 clk_rcg2_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf2522383 clk_alpha_pll_rivian_evo_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf3bf69c3 clk_pixel_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf439f21a clk_alpha_pll_agera_ops -EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf6634623 qcom_cc_probe EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf84b8d59 clk_regmap_div_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xf920c147 qcom_find_src_index EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfafc1469 clk_branch2_aon_ops EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfbd6578d clk_alpha_pll_hwfsm_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x07a4e410 sprd_comp_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x1d3e6f09 sprd_clk_probe -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x2a717a1c sprd_div_helper_recalc_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3efacc2c sprd_mux_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x429a8ab0 sprd_div_helper_set_rate -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x7565dab6 sprd_mux_helper_set_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9d1266c3 sprd_mux_helper_get_parent -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa025db6a sprd_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb3457146 sprd_pll_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xbbc140cd sprd_div_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeddde510 sprd_clk_regmap_init -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xee9fed1b sprd_gate_ops -EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf77dbeb6 sprd_pll_sc_gate_ops -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x02c7cf94 comedi_check_chanlist -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x04769cf8 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0127225e sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x247e8d20 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3df443db sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x487db9be sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4c2d6917 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x5677d5fd sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xab1e53de sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb04bfeb1 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb8cfcf3a sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xcd45842b sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe667458a sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe9fc60ea sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeebb5a61 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x001155df comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0be252ea comedi_legacy_detach EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e092f61 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0d47db69 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1505ee5a comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x198edc9c comedi_driver_unregister EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26c1e25d comedi_dio_update_state -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x295c9343 comedi_inc_scan_progress -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2cb5a8fe comedi_buf_read_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e213d9b __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26354740 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2b826ae3 comedi_buf_read_n_available EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2fe5a3c4 comedi_alloc_subdev_readback -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x35cd8b02 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x35739dcf comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3c87c9c3 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d359a06 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x41fc4d84 comedi_driver_register EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x43259b1d comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x45173509 comedi_alloc_subdevices EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x61b07524 comedi_handle_events -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6476babc comedi_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x742bf23d comedi_load_firmware -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x743a02bf comedi_dev_put -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7bedf3da comedi_readback_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7c4da770 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x531af0a3 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5e31f530 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x634bf171 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x659727de comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x66d7eff4 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x67331991 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6a074c3c comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x71ef8d9b comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x744a0e46 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x75e92134 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x76089a5f comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b40613e comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7f87b834 comedi_bytes_per_scan_cmd EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8eb31167 comedi_timeout -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8eb9c4e3 comedi_buf_read_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x91db6766 comedi_set_hw_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x940163de comedi_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa1ababdc comedi_set_spriv_auto_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb2985746 comedi_dio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb2beb57d comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x916c5b68 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9296ca6f comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x977ff1d2 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa6378ad9 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb6470b49 comedi_handle_events EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb95a91d4 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb6ca74ad comedi_dev_put EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbe98ad73 comedi_bytes_per_scan -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc4128d40 comedi_legacy_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcb6d2f65 comedi_is_subdevice_running -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcc73f2c6 comedi_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcdc2c373 comedi_buf_write_free -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd881a85d comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc787fe5c comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcd37103e comedi_check_chanlist EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdcf940bd comedi_buf_write_alloc -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe2ab22dc comedi_alloc_spriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeaa028d3 comedi_alloc_subdevices -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xed2d21fe comedi_event -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf3fc0bcc comedi_dev_get_from_minor -EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf76d0aec comedi_alloc_devpriv -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x059c8ac3 comedi_to_pci_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5b85843c comedi_pci_disable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9275305b comedi_pci_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x94280b33 comedi_pci_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xbabc007f comedi_pci_enable -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc75a97cc comedi_pci_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xca118efc comedi_pci_detach -EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xea65d637 comedi_pci_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1f1d21c8 comedi_usb_driver_register -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2d42bfef comedi_usb_auto_config -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5c87ce37 comedi_to_usb_dev -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x873fd213 comedi_usb_driver_unregister -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x8a02dd1e comedi_to_usb_interface -EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9a43afa4 comedi_usb_auto_unconfig -EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x6b5e4607 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdd1af096 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdff31d03 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfa486712 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0523eb37 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x23e02668 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x40a7ba0b comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x97a2c00c comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa19e3e48 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc4d05cf3 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd133b0cb comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd20f1044 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x58bbfadb comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x797010e3 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9280fb84 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xaddc0055 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb0cdb5d0 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc0990900 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x593de0bd addi_watchdog_init EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset -EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x09f5cd21 amplc_pc236_common_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x13691669 subdev_8255_regbase -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x50533204 subdev_8255_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x7de22319 subdev_8255_mm_init -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x03cbd9a5 mite_bytes_in_transit -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x09accfec mite_ack_linkc -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x19bc30d9 mite_sync_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1b7d8903 mite_init_ring_descriptors -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1e0c9de9 mite_free_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2653470c mite_buf_change -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x271b096d mite_dma_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2d221fa9 mite_dma_disarm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4ba40db0 mite_detach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x70e0172d mite_request_channel_in_range -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x75644593 mite_done -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x88895a63 mite_prep_dma -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xad0bcb04 mite_alloc_ring -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb21de2a3 mite_attach -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xcf775555 mite_release_channel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf00be3df mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x12e0e5d6 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x3c9de072 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xd475dd30 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xf9c4cc2d subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0e6fd3c4 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2e763a69 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3fe4cdf5 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x44830395 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x495e9fdc mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x56d6c492 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5bf5d13d mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x75cb4168 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7cc0fa42 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x85e2132c mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9cee3161 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa132c3e4 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xab0bd520 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xafb5ef4e mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf34d8f1a mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfdfe6932 mite_attach EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest @@ -12687,323 +12687,323 @@ EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8ab47ba4 ni_route_set_has_source EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x8f0f0901 ni_find_route_set EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0xb3e302a3 ni_route_to_register -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1881760e ni_tio_arm -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3ade70f6 ni_tio_unset_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x40385af1 ni_tio_get_soft_copy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5a500c14 ni_tio_set_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x66698ccf ni_tio_get_routing -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6d2d684d ni_gpct_device_construct -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7760d3e2 ni_tio_insn_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x819e0e30 ni_tio_insn_config -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8cce0bbe ni_tio_insn_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa8ddff2a ni_tio_read -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa9080957 ni_tio_set_bits -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc5b59b83 ni_tio_set_gate_src_raw -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xca8ebb8f ni_tio_init_counter -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcaac87e1 ni_tio_write -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcf19630d ni_tio_set_gate_src -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf6baf9d9 ni_gpct_device_destroy -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x08c9cbe9 ni_tio_handle_interrupt -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x20c255c2 ni_tio_acknowledge -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x53f467b3 ni_tio_cmdtest -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x714a3645 ni_tio_cmd -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x8bed1265 ni_tio_cancel -EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xab9274bf ni_tio_set_mite_channel -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x48d173e0 comedi_get_n_channels -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x52a0247f comedi_find_subdevice_by_type -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x883c83c7 comedi_close -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb3774188 comedi_dio_get_config -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd9127853 comedi_open -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdc78347e comedi_dio_bitfield2 -EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xec3e0938 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x03c94a92 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x04215b00 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x18d2c06e ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x246e905b ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2662db89 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2cce2307 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x37a584f5 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5a465df3 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x78d96c62 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7d62ada3 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x86cc75ff ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x88ab9b75 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8b9c7071 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb2a3f828 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc27c1576 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc4fd81b6 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x42de6e88 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x741b89e6 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa6bd4828 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd3ff48bc ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdf34ce41 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf19e7782 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x23befbb2 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x23de4ea8 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x253d2ba6 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x47cc5c6d comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x60ee1324 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa862697f comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf4fbe4de comedi_find_subdevice_by_type EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present -EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x1f44e27f ccp_enqueue_cmd EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x05cb32f1 hisi_qm_wait_mb_ready -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x05d89ff5 hisi_qm_debug_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0e3becb7 hisi_qm_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x11b3f0bc hisi_qm_reset_prepare -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x381bf4d4 hisi_qm_dev_slot_reset -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3d60f4aa hisi_qm_sriov_disable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3d97a7dd hisi_qm_dev_err_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x44a44e70 hisi_qm_suspend -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x489cedee hisi_qm_dev_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4c321261 hisi_qm_stop_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5191b8e8 hisi_qm_free_qps -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5878828d hisi_qm_get_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5a52db95 hisi_qm_pm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5b3ff411 hisi_qm_start_qp -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5bd0f1db hisi_qm_stop -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x67d98f49 hisi_qm_acc_diff_regs_dump -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x697ed978 hisi_qm_alloc_qps_node -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x75c1acf2 hisi_qm_put_dfx_access -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x79a7458b hisi_qm_resume -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8993e860 hisi_acc_create_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8d1d349f hisi_qp_send -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x913c4c6f hisi_qm_debug_regs_clear -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x97deabcd hisi_qm_mb -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9fd696bd hisi_acc_sg_buf_unmap -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb19fbec9 hisi_qm_reset_done -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb1e3035d hisi_qm_alg_unregister -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb7576354 hisi_qm_sriov_enable -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbe237bdd hisi_qm_pm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc388bdb4 hisi_qm_wait_task_finish -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc4b5511d hisi_qm_regs_debugfs_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd292f948 hisi_qm_start -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd537c6de hisi_qm_dev_err_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdc646440 hisi_qm_get_hw_info -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xddfc8cfd hisi_acc_sg_buf_map_to_hw_sgl -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdf361432 hisi_qm_uninit -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdfc63049 hisi_qm_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xeb5c52ae hisi_qm_dev_err_detected -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf27aa1fb hisi_acc_free_sgl_pool -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfd7aa5c9 hisi_qm_regs_debugfs_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfdb1ecde hisi_qm_alg_register -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfdbf84f2 hisi_qm_init -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x4ba86898 hisi_hpre_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0xe9169707 hisi_sec_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x76351421 hisi_zip_get_pf_driver -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x022e58ec adf_gen2_get_num_aes -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x03ec2342 adf_dev_restart -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x057855e9 adf_dev_put -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0a1be6fe adf_gen2_get_accel_cap -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0a378ed0 adf_gen2_enable_error_correction -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0b4fa02c adf_enable_vf2pf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0b8b82e1 adf_send_admin_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0dc5349f adf_dbgfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0e6a23cd adf_gen2_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x15faf0ff adf_init_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x188fcd05 adf_gen2_init_vf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x21c625a7 adf_devmgr_pci_to_accel_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x27538e9f adf_vf2pf_notify_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2a0d7c12 adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x9b86ed27 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x047ef2c5 hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0615256c hisi_qm_get_hw_info +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0dda5edd hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x117e3d1d hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1249e051 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x178ade12 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1ab231c5 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1cea191a hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x248b60af hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3515c89d hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3586cbf1 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3b3f1093 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3e83d155 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x40a7e317 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x433e9338 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5069eea1 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5243b7b9 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x62100dc1 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x68d98f2c hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7dd0c0de hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x836e0d88 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x87a42051 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x895335fd hisi_qm_regs_debugfs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x928ca059 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x93bd8ac0 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9b135ee6 hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa37956e4 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa948b494 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xaf8faba2 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb63217f1 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xba743c8d hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc84db0d4 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd4c1bbe9 hisi_qm_regs_debugfs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd727781e hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xda839564 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdadd64cc hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdd26aaf2 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe8a43505 hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf5aee8de hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfb2cd9dd hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfcb8ccfc hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x8fbad3fd hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x4be71b64 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x05c4c9d8 hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0056b446 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x01110dd3 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x09ecc753 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0a3c1e4d adf_gen2_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0b538a43 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x0ca4ff7b adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2316231f adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x289dd0dc adf_init_admin_comms EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x2be4e269 adf_gen2_get_arb_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x39634d11 adf_pfvf_comms_disabled -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x39a05c4e adf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3abfed8e adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3363471c adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x33c0d610 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x345310b6 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x35f731b7 adf_dev_restart +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x378dbc1a adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3881c434 adf_dev_up +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3bde266a adf_dbgfs_init EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x3e707f37 adf_gen2_get_admin_info -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x41029ace adf_gen4_ring_pair_reset -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x468598f9 adf_flush_vf_wq -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x481e7c3b adf_cfg_dev_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4890c83f adf_gen4_init_pf_pfvf_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4acddf78 adf_sriov_configure -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4f00a780 adf_gen2_enable_ints -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5a1ec92f adf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5c5ff151 adf_dev_in_use -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5e61adfe adf_disable_pf2vf_interrupts -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x67cbc31a adf_init_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x686d14ec adf_vf_isr_resource_free -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6c4030d9 adf_enable_pf2vf_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x78dbafdc adf_reset_flr -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7cb97a9c adf_disable_sriov -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7f636049 adf_dbgfs_exit -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x82a97334 adf_dev_up -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8e44fd5d adf_vf2pf_notify_shutdown -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9263edaf adf_devmgr_update_class_index -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x978ff633 adf_gen2_dev_config -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa6ea7427 adf_cfg_section_add -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa9ae9c0f adf_devmgr_add_dev -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xad286ad6 adf_gen4_enable_pm -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xaea11841 adf_exit_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb430969f adf_exit_admin_comms -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb4c94555 adf_gen2_cfg_iov_thds -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xbe9f9fa8 adf_gen2_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc11ef6a9 adf_cleanup_etr_data -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc21e27f7 adf_dev_started -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc4443caa adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4419b3ea adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x44dd9127 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x44fa7425 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x454df538 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x45619d16 adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x497872bc adf_dbgfs_exit +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x4aa26869 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x5cad1ed7 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x68059d59 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x6a44e3a4 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x76355ed7 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x779e2105 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7b42368f adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x7e056ece adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x88491881 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8b414865 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x8d49c7e2 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9025cb12 adf_dev_down +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x91500a0d adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0x9b337823 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa413b430 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xa7ca53bb adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xab3042a4 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb12fbd73 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xb733679c adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc10eb1d6 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc112ee9b adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc3d24580 adf_disable_pf2vf_interrupts EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc501ac82 adf_gen4_init_hw_csr_ops +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc572398e adf_sysfs_init +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xc7ad2151 adf_isr_resource_alloc EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xcc3b167a adf_clean_vf_map -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xccfde24c adf_err_handler -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd2a514b7 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd178d445 adf_gen4_handle_pm_interrupt EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd64519f1 adf_gen2_init_hw_csr_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xd99bba74 adf_init_arb -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdaae409e adf_cfg_get_param_value -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xde0619cb adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdb367087 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdd81902a adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xdea5d1c3 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe130b849 adf_gen4_init_pf_pfvf_ops EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe327f1f1 adf_gen4_init_dc_ops EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe45f3512 adf_gen2_init_dc_ops -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe6f1def1 adf_vf_isr_resource_alloc -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe763c6b0 adf_gen4_handle_pm_interrupt -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf30f2236 adf_gen2_get_num_accels -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf3692b7b adf_sysfs_init -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf865745a adf_gen4_set_ssm_wdtimer -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfd1ccf71 adf_cfg_add_key_value_param -EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xff6e4440 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xe4be0642 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf1c98c6e adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf25f2e5f adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf2b092e7 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf4053502 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xf5defc92 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfa72f099 adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/intel/qat/qat_common/intel_qat 0xfb668559 adf_exit_admin_comms EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type -EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x70f75b9b otx_cpt_eng_grp_has_eng_type -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xcd681e0e dw_edma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xea50d4d7 dw_edma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1aae85aa dw_dma_filter -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x583c5ba9 idma32_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x648fe99a do_dw_dma_disable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8693bf05 dw_dma_remove -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc50ff31d idma32_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc6bb5750 do_dw_dma_enable -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdfd25d15 dw_dma_probe -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfc8f735f dw_dma_acpi_controller_free -EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfe9982bb dw_dma_acpi_controller_register -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x1305898f dpdmai_enable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x25ede39f dpdmai_get_tx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x2d7d6961 dpdmai_close -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x49ac8b5c dpdmai_destroy -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5adcbc36 dpdmai_get_attributes -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8dfa37c5 dpdmai_disable -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x901b616a dpdmai_open -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xe82046c9 dpdmai_get_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf3440e26 dpdmai_reset -EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xfbe99934 dpdmai_set_rx_queue -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x278b8368 fsl_edma_prep_dma_cyclic -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3e48ed33 fsl_edma_terminate_all -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x402fea14 fsl_edma_issue_pending -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x48b2aac0 fsl_edma_chan_mux -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4db84e2d fsl_edma_disable_request -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4df9a9bd fsl_edma_tx_status -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x93c7b1f0 fsl_edma_pause -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9a2b79a7 fsl_edma_xfer_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa3827cc7 fsl_edma_setup_regs -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xaefcb6bc fsl_edma_prep_slave_sg -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xca9b5a40 fsl_edma_free_desc -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcd2a5fa5 fsl_edma_alloc_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd13ffa95 fsl_edma_free_chan_resources -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdd089c2d fsl_edma_prep_memcpy -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xddb6806f fsl_edma_cleanup_vchan -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe9fdcd49 fsl_edma_resume -EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf42c4597 fsl_edma_slave_config -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x8155074f hidma_mgmt_setup -EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xbf91d59d hidma_mgmt_init_sys -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x818838b0 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x7b7a127c otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x4a9dcbea dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x6da50133 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0782743d idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1eb407d2 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x90a65b70 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9ab1dc89 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb092062b dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbc80b918 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdda23d05 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdfb4cce1 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe9d3e43b dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x00e79c02 dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x01fa211b dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x16592366 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x7f4418f8 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x8bc8c112 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xa5121f8b dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xbb12a461 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc9aab370 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xdfc3465c dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xe1bba6b2 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0b91af14 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x205491a7 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3465faec fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x39528787 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x39e95f0d fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x473580a0 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x47b993eb fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7ee6edc0 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x92a96719 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x94dddb44 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x9b321c9c fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb7973023 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xca303511 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd6259021 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xee7a6887 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xeee7a7fd fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf2220809 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x8df34e2e hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xbed44589 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x6a098558 fw_card_read_cycle_time EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xbb07c550 __fw_send_request EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release -EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xfa236d3c __fw_send_request -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x05395b13 ffa_bus_type -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x31d17b42 ffa_device_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x3f1ab374 ffa_device_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x48bef414 ffa_driver_unregister -EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x6fd9a25b ffa_driver_register -EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xd49f1db8 get_scpi_ops -EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x2a1bb27d mtk_adsp_ipc_send -EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0d321e54 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x1c0f4a15 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x3087b73d ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x3ec92819 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xa3c7825f ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xacecc7e0 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0xf1d8cdc2 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x854cad19 mtk_adsp_ipc_send EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xb753fa06 stratix10_svc_request_channel_byname EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send -EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xaea75663 alt_pr_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2d5d3818 dfl_fpga_dev_feature_uinit -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2efbacfe dfl_fpga_port_ops_add -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3bdbc5d6 dfl_fpga_port_ops_put -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x42fc72b1 dfl_fpga_enum_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x47b5f0fd dfl_fpga_port_ops_get -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4d332512 dfl_fpga_enum_info_add_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4f6169a2 dfh_find_param -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5161c511 dfl_fpga_dev_ops_register -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x56f03f35 dfl_feature_ioctl_set_irq -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5cfb7c90 dfl_fpga_port_ops_del -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x603e6b8e dfl_fpga_cdev_release_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8260cac1 dfl_fpga_enum_info_add_dfl -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8e5d1fb9 dfl_feature_ioctl_get_num_irqs -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb79eefc1 dfl_fpga_feature_devs_remove -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc8ba4e0 dfl_fpga_dev_feature_init -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb9da885 dfl_fpga_check_port_id -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd11e18e6 __dfl_fpga_cdev_find_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd1f3209c dfl_fpga_cdev_config_ports_vf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd4771394 dfl_fpga_cdev_assign_port -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xddae4858 dfl_fpga_dev_ops_unregister -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe16ea967 dfl_fpga_enum_info_free -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xee41731c dfl_fpga_set_irq_triggers -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf31c588c dfl_fpga_cdev_config_ports_pf -EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xff01c9aa dfl_fpga_feature_devs_enumerate -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x044896ff fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xbf76bd61 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x00ae195b dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x01b837f2 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0f9d5a58 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1d4dd414 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2954fbe9 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x35d0375e dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3800b715 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x420b54e4 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x48be9aec dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4e7442af dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x59cf6359 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5b542b87 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x61abd088 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x63ae77f5 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x76b760dd __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x80678cf5 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x81994f44 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x841d7c4c dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9aa67468 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc7048f1b dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xce09c904 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf1604b61 dfh_find_param +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfd112470 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xff6e2a18 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x035c4f21 fpga_bridge_register EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x24dcca31 fpga_bridge_get EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2cd558cf fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5b0fdcc0 fpga_bridge_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x61823636 fpga_bridge_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x70894791 of_fpga_bridge_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x766081c5 of_fpga_bridge_get_to_list -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa5def8a9 fpga_bridge_enable -EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa8dd303f fpga_bridge_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x064af836 fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4631df54 fpga_mgr_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5aceeeb7 devm_fpga_mgr_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x60cc00e9 fpga_image_info_alloc -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x83feaa29 fpga_mgr_load -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8f10d9ad devm_fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x90b9a022 fpga_image_info_free -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x97eb79d4 fpga_mgr_put -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb61f7e2a fpga_mgr_unlock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb636b04d fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf346868d fpga_mgr_lock -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf366856f of_fpga_mgr_get -EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf9d442b5 fpga_mgr_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x347b33e7 fpga_region_register -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9fe7cd36 fpga_region_register_full -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa98110e7 fpga_region_class_find -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xb75709ec fpga_region_unregister -EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xf5f88577 fpga_region_program_fpga -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x01ff4d19 fsi_get_new_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x20b71b80 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x37ebd439 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3ae81caf fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x48b234f1 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5052b544 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5206e92a fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x86719e3b of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9b7e72f9 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc43938c6 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x027837ee devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x349a05db fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x355d6dc9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x54a20075 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x56e11fbb fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x802a3410 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9e7f42e2 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb6074b6d fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc573ccb7 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc7eb98b8 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcf31418b fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd2ad2e34 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe487cb49 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x30825eb1 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x722dd22a fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc9a51ff7 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe329956e fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xedfd2717 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1056befa fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2d8a7fde fsi_master_register EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x572d8973 fsi_bus_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x576ab05c fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x404b6167 fsi_device_read EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x71b10280 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5b5fcb5b fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6640feca fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x6f10f4c1 fsi_get_new_minor EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x90d108a6 fsi_cdev_type -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xaa068447 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x79961e3d fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7a4142cf fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc292989f fsi_master_unregister EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdfaef0b4 fsi_master_unregister -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe6a00dad fsi_master_rescan -EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xf48e3a98 fsi_master_register -EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xd5aad334 fsi_occ_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x36a4cea8 sbefifo_submit -EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x59e41aa3 sbefifo_parse_status -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x416623b4 gnss_put_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4d9bec3b gnss_register_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x8e98f04b gnss_allocate_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xca2516ee gnss_insert_raw -EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcd2cbff7 gnss_deregister_device -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4d6c99e0 gnss_serial_allocate -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x63e528bd gnss_serial_free -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x739fe4b1 gnss_serial_deregister -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x965be0c5 gnss_serial_register -EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf00adafe gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe84913f4 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xa098e37d fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xe49d2ca7 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xf263f9ad sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x265fea79 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x832cfa18 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xa6e8b9b5 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xaa15763a gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc1e1f403 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x440f88c4 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x547544c8 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6ba5817f gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xa1cb8cb0 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf640999e gnss_serial_pm_ops EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x5d0e4276 idio_16_set EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x6495f119 idio_16_get_multiple EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x68830314 idio_16_state_init EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0x70e2b625 idio_16_get EXPORT_SYMBOL_GPL drivers/gpio/gpio-idio-16 0xae1139f5 idio_16_set_multiple -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x10b898fe __max730x_probe -EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x560cbf7a __max730x_remove -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x3bc273e3 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x2f87cd26 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x830a4009 __max730x_remove EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata -EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xa7347422 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x4faee601 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xa15b3d68 devm_gpio_regmap_register EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x088ebb6f analogix_dp_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x11557765 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x06b9ea36 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x07d9c2cf analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1c9b2787 analogix_dp_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4bb3e418 analogix_dp_stop_crc -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x96d8485e analogix_dp_suspend -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb0c4c5c4 analogix_dp_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xbd64ac08 analogix_dp_resume -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd529af06 analogix_dp_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf13a5543 analogix_dp_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x05cd14d5 ldb_bridge_disable_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x3f01703e ldb_channel_is_single_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x4ee8c9b7 ldb_bridge_atomic_check_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x50037eef ldb_find_next_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x617ace61 ldb_channel_is_split_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x846933b3 ldb_bridge_mode_set_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x96907eb8 ldb_add_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xa48fb376 ldb_remove_bridge_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xdfd9a9cc ldb_init_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xe7675643 ldb_bridge_enable_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xec4055f1 ldb_bridge_attach_helper -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x64fde1d2 samsung_dsim_pm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x80ce53c7 samsung_dsim_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xb65781bf samsung_dsim_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5d3f51b2 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x64025a8b analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb9a54ee2 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd1e84dec analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xfa54a9ba analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x0d0bdeeb ldb_channel_is_split_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x13a103d7 ldb_bridge_attach_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x19d895f3 ldb_add_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x265a0f9b ldb_bridge_disable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x3259b9ef ldb_find_next_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x4729fbb0 ldb_bridge_mode_set_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x537060b4 ldb_channel_is_single_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0x68b250c7 ldb_bridge_atomic_check_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xbd836ecc ldb_init_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xc4f04d0d ldb_bridge_enable_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/imx/imx-ldb-helper 0xc6d57476 ldb_remove_bridge_helper +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x60e3452d samsung_dsim_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0x98a2e0ee samsung_dsim_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/samsung-dsim 0xae3b3296 samsung_dsim_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status @@ -13015,618 +13015,620 @@ EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x77e9cd02 dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8ae7face dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b549149 dw_hdmi_bind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xa388df26 dw_hdmi_set_plugged_cb EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xcc746a7e dw_hdmi_probe EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd13eaa41 dw_hdmi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd32faf88 dw_hdmi_set_high_tmds_clock_ratio EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x374f725c dw_mipi_dsi_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x3a90f486 dw_mipi_dsi_bind EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x41361ae4 dw_mipi_dsi_set_slave EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x42ac3b2e dw_mipi_dsi_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x9aa661a8 drm_hdcp_check_ksvs_revoked -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x1587f6ce dp_aux_dp_driver_unregister -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x9159e73d of_dp_aux_depopulate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x9941345b devm_of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xe3fd0e8f __dp_aux_dp_driver_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xfa62b3bc of_dp_aux_populate_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0c4f847c accel_open -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x222c65ea drm_of_lvds_get_data_mapping -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2faa5fac of_get_drm_panel_display_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x51b47aec drm_of_encoder_active_endpoint -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x52e4c2b3 drm_bridge_hpd_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x538ddddd drmm_kstrdup -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x558b3c9b drm_of_lvds_get_dual_link_pixel_order -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x59cd6002 drm_bridge_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x60460290 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x44d64e8d dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0xed8082b3 dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x25bad25b drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x322e8967 of_dp_aux_depopulate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x989a47d4 of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xa82b71bb dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xc6bf2aa4 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xfbb9c033 devm_of_dp_aux_populate_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x05fb2a6a drm_of_get_data_lanes_count_ep +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0724dc30 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x323dbc10 drm_of_get_dsi_bus +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e48b916 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x403f2f44 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x414fee08 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x41ed9133 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x47103f9d drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x49248a3b drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4f4a58c2 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5322262d drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x54c4248a drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x569bd693 of_get_drm_display_mode EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7625122d drm_bridge_hpd_notify -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77dd4f0d drm_bridge_get_modes -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7de6ac28 drm_do_get_edid -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x828344dd drm_bridge_hpd_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9d4df090 drm_of_component_match_add -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9dbd3a2a drm_class_device_register -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9e03995a of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x829e8127 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x89786967 drm_bridge_get_edid EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xae49999a drm_of_get_dsi_bus -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc52774a0 drm_of_get_data_lanes_count_ep -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcbf01b88 drm_bridge_detect -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdc7d3aa3 drm_gem_dumb_map_offset -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7f581b6 drm_of_find_panel_or_bridge -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xea251a78 drm_crtc_add_crc_entry -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf7dfbc94 drm_of_get_data_lanes_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaf41ac9f drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc6156a8 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbdc417fe drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc0b96bd4 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc3f5f591 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc8bd458b drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf43f5db8 accel_open +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf9b154fb drm_of_get_data_lanes_count EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0ce26262 drm_gem_dma_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x251339d6 drm_gem_dma_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x2c6e8786 drm_gem_dma_dumb_create_internal -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4a9557d8 drm_fb_dma_get_gem_addr -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x70f58b34 drm_gem_dma_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8021c36f drm_gem_dma_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8a049eaf drm_gem_dma_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x8b7b023a drm_gem_dma_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xa70d2e16 drm_gem_dma_vmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xb48cba5f drm_fb_dma_get_gem_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xcc9ebafa drm_gem_dma_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xef7a33b4 drm_fb_dma_sync_non_coherent -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x11db459a drm_gem_fb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x250c58d7 drm_gem_plane_helper_prepare_fb -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2b81dbeb drm_gem_fb_afbc_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3c51e1f7 drm_gem_fb_init_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x47732cdc drm_gem_fb_create_with_dirty -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x70530ffd drm_bridge_connector_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7a03b4b0 drm_gem_fb_create_with_funcs -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x9ac482cc drm_gem_fb_get_obj -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6700352a drm_gem_shmem_get_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6e3acba3 drm_gem_shmem_dumb_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x788769ac drm_gem_shmem_get_pages_sgt -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xbc407e77 drm_gem_shmem_prime_import_sg_table -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xdd1dedb4 drm_gem_shmem_free -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe26d6394 drm_gem_shmem_vm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xf7b178df drm_gem_shmem_mmap -EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xfdc54eaf drm_gem_shmem_create -EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/dcss/imx-dcss 0x0d02ae3a dcss_dev_pm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x0f7e4397 meson_venc_mipi_dsi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x0aeef968 drm_fb_dma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x1284a9c8 drm_gem_dma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x205a9afa drm_gem_dma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x26d5b83d drm_gem_dma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4716fc7c drm_gem_dma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x48f5aa73 drm_gem_dma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x4e9f258f drm_gem_dma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x5fe002ee drm_fb_dma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x90572278 drm_fb_dma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0x9c26649d drm_gem_dma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xedae6740 drm_gem_dma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_dma_helper 0xee9fb35a drm_gem_dma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x02cff08b drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x37f03c51 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x59d2b8d7 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x97de334f drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x983008bc drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xaec3b7a2 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd3ae4c90 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe9c6101e drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x3dce32ad drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8626e3d6 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x94a57dfb drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x97d55e37 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa8f3333e drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc561773f drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xdae62bb9 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xec522a6b drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/dcss/imx-dcss 0x8857639d dcss_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1a0220b4 meson_vclk_dmt_supported_freq EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x42ea83ca meson_vclk_dmt_supported_freq -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6914ad79 meson_venc_hdmi_mode_set -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x875aa8bf meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x868331ca meson_venc_mipi_dsi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x874dd112 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x90eed851 meson_vclk_vic_supported_freq EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode -EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x9e38b70f meson_vclk_setup EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x321fbc7b s6e63m0_remove -EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x8276b8c0 s6e63m0_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0xcf960386 panfrost_pm_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x3da2753d pl111_versatile_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x5cdf9fef rcar_cmm_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x69324d65 rcar_cmm_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x7a96e206 rcar_cmm_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xd7ff6041 rcar_cmm_setup -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x0872c815 rcar_lvds_dual_link -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x8248170a rcar_lvds_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xbf76eb8d rcar_lvds_is_connected -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xf73a2a83 rcar_lvds_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0xb4368be4 rcar_mipi_dsi_pclk_disable -EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0xf19db092 rcar_mipi_dsi_pclk_enable -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x47184b22 vop_component_ops -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x47fe0b9b rockchip_rgb_init -EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc4b13939 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xf2f05933 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x126691af s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x944f263e s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panfrost/panfrost 0xb343e0fc panfrost_pm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x801c7d4e pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x8c0f1faf rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0x9fabb0cc rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xa282af76 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_cmm 0xaa466246 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x5bbe2d2f rcar_lvds_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0x6beb227c rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xdcef01e4 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_lvds 0xe6d8eab1 rcar_lvds_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x24cd81a5 rcar_mipi_dsi_pclk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi 0x631678b3 rcar_mipi_dsi_pclk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x18c3beaa rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x940a666b vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xcb62d220 vop2_component_ops EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x03569ce0 ssd130x_probe -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x781967d8 ssd130x_shutdown -EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x92937299 ssd130x_remove -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x11c3fb20 host1x_memory_context_get -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x9d15fd43 host1x_memory_context_put -EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xfda147a3 host1x_memory_context_alloc -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1346f798 __traceiter_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13c75e80 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x3c8bf751 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xb075a354 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xd601e210 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x66ae375f host1x_memory_context_put +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0x7d7d2cf4 host1x_memory_context_alloc +EXPORT_SYMBOL_GPL drivers/gpu/host1x/host1x 0xea78313c host1x_memory_context_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01a976b7 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0902d01e gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x12d51c7d gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1397b31f gb_operation_response_alloc EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1b0daf99 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2178eb92 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x261be9cd gb_connection_latency_tag_enable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2df663a5 __tracepoint_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2ee18a8e gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31dd35aa gb_operation_create_flags -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x410ed200 gb_connection_enable_tx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x45ad7418 gb_operation_request_send -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x46da0fed gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x475f17bb gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x48df3215 gb_operation_cancel -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49eb8f4c gb_operation_put -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ce956f0 greybus_message_sent -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5121d546 gb_connection_create_offloaded -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5a9046a9 gb_connection_latency_tag_disable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c18f430 gb_svc_intf_set_power_mode -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c7c1151 gb_hd_cport_reserve -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6191b4c0 gb_operation_result -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6217cc48 __traceiter_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x665732d3 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32c92011 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x34911a44 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ee6bf7b gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x430026d9 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x55d57572 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x593c0825 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5f36e934 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x60d2282c gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x68374081 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x69f62c89 greybus_register_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6f0833cc gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6f67e24c greybus_message_sent EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6fa01fda __tracepoint_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x703657ba gb_connection_destroy -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b9fb932 gb_connection_disable_rx -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e850c49 __traceiter_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x817706af greybus_data_rcvd -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81b0d5c8 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ae48834 gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89ee9490 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x84e635c6 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x857343e6 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85d877fe gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8974048b gb_svc_intf_set_power_mode EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c20d9c9 gb_operation_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2a4ae3a __traceiter_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa4fc946f __traceiter_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa8d30b05 gb_interface_request_mode_switch -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae5c0bea gb_connection_latency_tag_enable -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb83db6e1 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8d381be7 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98baec3e greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b0bd2b1 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa0d29dc5 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3065b5a gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb6781fe5 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb8d43ef0 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb9ae76be greybus_deregister_driver EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbf2c07db __tracepoint_gb_hd_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc53128ac gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc9493027 gb_connection_enable_tx EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xca574fcc __tracepoint_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcc9e7cbd gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcbf3da3e gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0efbb93 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1fbacd1 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd2d7a48e gb_connection_latency_tag_disable EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd33373a8 __tracepoint_gb_hd_add -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd53592a7 __traceiter_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5e4ba28 gb_operation_request_send_sync_timeout -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd88199b1 gb_connection_create -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4d558ad gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd398c066 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe74fd1eb gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe8b0b837 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xea6d2ca9 __traceiter_gb_message_submit EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf07d25c9 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee10d0f4 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xefe117f1 gb_operation_unidirectional_timeout EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf2a36a13 gb_operation_get_payload_size_max EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf357c63d __tracepoint_gb_message_submit -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf6e79c52 gb_hd_shutdown -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf8d112c9 gb_hd_cport_release_reserved -EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa9d3ad2 gb_operation_unidirectional_timeout -EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e5f5f70 hid_hw_close -EXPORT_SYMBOL_GPL drivers/hid/hid 0x10850a84 hid_lookup_quirk -EXPORT_SYMBOL_GPL drivers/hid/hid 0x15fe02b2 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3d85b15 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf871b59d gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/hid/hid 0x00cb35f7 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x06c56f7c hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c704965 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0dbba558 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11f1ce88 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13cf60cf hid_input_report EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit -EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c052552 hid_hw_stop -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2295288c hidinput_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x22edfd72 __hid_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x251736ee hid_dump_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fa1299d hidraw_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x30dd5186 hid_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3238ba54 hid_alloc_report_buf -EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f24a862 hid_hw_raw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x41c64286 hid_hw_request -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cd10c67 hid_register_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d53eaa3 hid_driver_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0x501a57aa hid_dump_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x519dcb36 hidinput_get_led_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x56ed13ba hid_resolv_usage -EXPORT_SYMBOL_GPL drivers/hid/hid 0x5bfc3991 hidinput_count_leds -EXPORT_SYMBOL_GPL drivers/hid/hid 0x62b3dd88 hid_setup_resolution_multiplier -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6603375d hid_compare_device_paths -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6990661e hidraw_disconnect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c74457f hid_hw_output_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e8c0328 hid_allocate_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x702e7fb8 hid_destroy_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0x71b89e8f hid_set_field -EXPORT_SYMBOL_GPL drivers/hid/hid 0x720ce6be hid_hw_start -EXPORT_SYMBOL_GPL drivers/hid/hid 0x75701ff5 hid_input_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x774eb1b2 hid_report_raw_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x80e3cb50 hid_ignore -EXPORT_SYMBOL_GPL drivers/hid/hid 0x816e69e2 hid_debug_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0x82a0efed hid_validate_values -EXPORT_SYMBOL_GPL drivers/hid/hid 0x842c6867 hid_parse_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b107f2d hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b8626c1 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x20ffd364 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x235b1fc9 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26ee1a4b hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26f52708 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ed65583 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x336f9e03 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ba2080f hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5258f8b1 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60ab441f hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6875e4f3 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ae8a993 hid_match_id +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ea75c62 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72b9ff2e hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x786a8439 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x79f83af9 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82ccdd45 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8579ccc4 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89d1953a hid_connect EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c2996c1 hid_field_extract -EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c58b7c2 hid_hw_open -EXPORT_SYMBOL_GPL drivers/hid/hid 0x98f3de3a hidinput_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0x99343814 hidraw_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa211048b __hid_register_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xa245d7b6 hid_check_keys_pressed -EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa66a53d hid_open_report -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbaa7bde7 hidinput_calc_abs_res -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb72bd57 hid_dump_input -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe31c89a hid_unregister_driver -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfdddc1f hid_driver_suspend -EXPORT_SYMBOL_GPL drivers/hid/hid 0xbffc1c36 hid_driver_reset_resume -EXPORT_SYMBOL_GPL drivers/hid/hid 0xc361a544 hid_match_device -EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8866c4d hid_connect -EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4622bf8 hid_match_id -EXPORT_SYMBOL_GPL drivers/hid/hid 0xec38c62a hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9096a767 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c1688b1 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6080aa0 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xabc8da1f hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xae06aab9 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb292cd1b hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba013ef6 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1c06896 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc9a4274d hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca0d638e hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf177f16 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd47d17e8 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd76929ba hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd76fbba4 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd92a8102 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe0394523 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebf75cb8 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee205fbd hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee8a2568 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf231fabe hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf72edfda hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf77c5a8d hid_alloc_report_buf EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init -EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe2a7d1b hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfcbdfd8d hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd56836f hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfee359b5 hid_parse_report EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xf21dfe14 roccat_connect -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x28cb6345 roccat_common2_device_init_struct -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3f952624 roccat_common2_send -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x60f64a4d roccat_common2_sysfs_write -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x71f74f93 roccat_common2_send_with_status -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc3aa0232 roccat_common2_receive -EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf794d411 roccat_common2_sysfs_read -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1e860d95 hid_sensor_get_usage_index -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2a8706ca sensor_hub_input_get_attribute_info -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x45b03a89 sensor_hub_input_attr_get_raw_value -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6fc7eb0d sensor_hub_device_open -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7867aba2 sensor_hub_remove_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x819c58c5 sensor_hub_device_close -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd3916fae sensor_hub_set_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe9282c9e sensor_hub_register_callback -EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfd1a732d sensor_hub_get_feature -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x840b1f2f vivaldi_attribute_groups -EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xd50e3169 vivaldi_feature_mapping -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1bf6f4ed i2c_hid_core_probe -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x5a1954f4 i2c_hid_core_shutdown -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa236f141 i2c_hid_core_pm -EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xc22b6844 i2c_hid_core_remove -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x121c26cb surface_hid_device_destroy -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x782396a3 surface_hid_device_add -EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xebe8d0ea surface_hid_pm_ops -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa4a808ed hid_is_usb -EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd0109b98 hiddev_hid_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x15bc89a0 hsi_get_channel_id_by_name -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1c2f9720 hsi_port_unregister_clients -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1d600e14 hsi_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4e8580ba hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x48ac5632 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x363468e9 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3dd71b58 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4a4b7412 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x634beee8 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7856015e roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa06da028 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x00b1e7d1 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x482f0f44 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x654a1985 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x85052294 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa3ada8ab sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa674bc8c sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xab8e3e17 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdcd977fc sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe3021089 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xa3120dae vivaldi_attribute_groups +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xb3b14e53 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x05520f4c i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3ee03b83 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x97a215c0 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x9d6033fc i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x83ee60f1 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xc6e4002e surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xe9d1d099 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x283b8ad8 hid_is_usb +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd5a6da1d hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0e933dd1 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x13d125d3 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1cfbeed2 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x24ef2158 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b796803 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2f06727c hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x38f6b8cb hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x42df90c3 hsi_register_client_driver EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x56b3e22a hsi_claim_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5d0a5072 hsi_release_port -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x63329ccc hsi_async -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x634f1280 hsi_register_port_event -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6cfc7d54 hsi_put_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x709ff4f4 hsi_remove_client -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x73f5a53b hsi_alloc_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x76d98358 hsi_free_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7ac5b5d1 hsi_add_clients_from_dt -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ec4f596 hsi_register_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbd396938 hsi_unregister_controller -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd542fee0 hsi_register_client_driver -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6eb45b1 hsi_alloc_msg -EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe6c92172 hsi_new_client -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x042754a7 vmbus_sendpacket_mpb_desc -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x09525ccf vmbus_disconnect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x177d9618 vmbus_sendpacket_pagebuffer -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x223c8dc0 vmbus_open -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2a0ca0f6 vmbus_request_addr -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2cfcce6d vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f3acaca hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61ee6f88 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6651a708 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8ad08a61 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x93c70500 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa4b73294 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbc413dd0 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbdd28db2 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd36cb7b6 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfec36610 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x042b5092 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x067c7eec vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0aa6098d vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x13192e82 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1ed75f08 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2918ffc4 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2dd6d892 vmbus_request_addr EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3457ef89 vmbus_set_sc_create_callback -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x350cfb8c vmbus_connect_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x37da498f hv_pkt_iter_first -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x40153936 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x355c3ede vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x38c11edc vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3d16c399 vmbus_connect_ring EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4f30d878 vmbus_recvpacket_raw -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4f779f71 vmbus_alloc_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x59e50464 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4d380379 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4de2c707 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x55569764 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5916364b vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5e3f7c00 vmbus_send_modifychannel EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x68fb85f1 vmbus_next_request_id -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x751c346f vmbus_setevent -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x763b8874 __hv_pkt_iter_next -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x80bf29ef vmbus_establish_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x84dc84d7 __vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8f7413c4 vmbus_request_addr_match -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x97d6d062 vmbus_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9c17f87a hv_pkt_iter_close -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9cbfb57d vmbus_hvsock_device_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa7a71ca0 vmbus_driver_unregister -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xab87e015 hv_ringbuffer_spinlock_busy -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb68af713 vmbus_free_ring -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc330e44d vmbus_allocate_mmio -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc3440092 vmbus_set_event -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xee5d94f3 vmbus_teardown_gpadl -EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfa866ef5 vmbus_connection -EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9249c6a5 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6bde8224 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6f21fd95 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x80190b3b vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8572e918 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x92bd2ded __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9915bafe vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc01333d1 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc0bb7ed6 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc4484dfd vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc92208e9 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcbd21bc9 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xea8e3cb8 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xee9fa43c vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf7832bbe hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf3298e0c adt7x10_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x5195d3ef nct6775_update_device -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x524d2ad0 nct6775_probe -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc5a8e0d4 nct6775_store_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xce31caa3 nct6775_show_beep -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xd1c3637b nct6775_reg_is_word_sized -EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xfba035db nct6775_show_alarm -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x03392424 intel_th_trace_disable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e450e33 intel_th_driver_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e65c75a intel_th_trace_switch -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x197ae30a intel_th_trace_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x302ecb11 intel_th_output_enable -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6cc5ba93 intel_th_free -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x862451a2 intel_th_set_output -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa9821048 intel_th_alloc -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd3beec93 intel_th_driver_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x109aa77a intel_th_msc_window_unlock -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x2005945a intel_th_msu_buffer_register -EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x36945eec intel_th_msu_buffer_unregister -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x186c6499 stm_data_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1cc68f0c to_pdrv_policy_node -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x310520df stm_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x49098265 stm_source_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x91a00734 stm_source_register_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9466ccf1 stm_unregister_device -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa47e87c0 stm_unregister_protocol -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd9c7b679 stm_source_write -EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe3af59c4 stm_register_protocol -EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x8792d814 i2c_new_ccgx_ucsi -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x09b892b1 i2c_mux_add_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb3864045 i2c_mux_alloc -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcc9bbf22 i2c_root_adapter -EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcf58102c i2c_mux_del_adapters -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0277c02d i2c_register_spd -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8aec333c i2c_handle_smbus_alert -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x98b61bfa i2c_free_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xbe5e638e i2c_new_slave_host_notify_device -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0a7e69bf i3c_master_get_free_addr -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1c42120d i3c_master_defslvs_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2165d0b7 i3c_generic_ibi_alloc_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x256aca6b i3c_device_free_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3379d664 i3c_generic_ibi_get_free_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x349a7e9c i3c_device_disable_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3988f49e i3c_master_set_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3c8a89e6 i3c_master_entdaa_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5960cef9 i3cdev_to_dev -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6055748a i3c_master_do_daa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74348b1a i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x30c724b2 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x84af5946 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xb13ea63e nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe4c52898 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xf5ebaeab nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xff5bf4d9 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1a075bf9 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2f0c8729 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x425239fc intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x49185b6c intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4f0eda82 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5811fed2 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x618beded intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbc700f4d intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xee6c29ca intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x89947cf7 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xab0d0d71 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xbf7ad304 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x38ecdaea stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4d2fd4a1 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7bd2d8f2 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x86dd84a9 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x92637f8f stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa1b6cef4 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa3f0693d stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc10c5aad stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf3a3a88a stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xb628bcec i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x08599425 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0ae75a1b i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2211a905 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa6e344e7 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xb19e659c i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xeaa2ed78 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf6735cca i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf8f8c5be i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x05f8ad3d i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1194f8cd i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x14a4beec i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x386b3390 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4a47b243 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x61f1cf62 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x636612bf i3c_device_do_setdasa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x66541dfc i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6679a7fb i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x68b796bc i3c_master_get_free_addr EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7a72f669 i3c_master_register -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8474e544 i3c_driver_register_with_owner -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x85827616 i3c_device_request_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa0159826 i3c_master_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaa8b4f8f i3c_master_queue_ibi -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb0ca49f7 i3c_device_get_info -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbe8c144c i3c_device_match_id -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbf0f7d12 i3c_master_enec_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xccb02863 i3c_driver_unregister -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd0391aa0 i3c_master_add_i3c_dev_locked -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd7d73475 i3c_device_do_setdasa -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe026c658 i3c_device_do_priv_xfers -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfc563207 i3c_generic_ibi_recycle_slot -EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfefb5cd8 i3c_master_disec_locked -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x1629b128 dw_i3c_common_probe -EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0x90d897df dw_i3c_common_remove -EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x63dd40af stm32_dfsdm_get_buff_cb -EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0xfbadeac1 stm32_dfsdm_release_buff_cb +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x802b5856 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x824ac554 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x883baf2c i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x91dbeca1 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa8f334c7 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xab8e3679 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaeeb8413 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb2f0e5a3 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb944a70e i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc085add0 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc9070773 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd4e45240 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdce01740 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xdd4f9b3c i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xef1fa5d9 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0xa073e975 dw_i3c_common_remove +EXPORT_SYMBOL_GPL drivers/i3c/master/dw-i3c-master 0xeec0b082 dw_i3c_common_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x4cdc7a13 stm32_dfsdm_release_buff_cb +EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-adc 0x6988242f stm32_dfsdm_get_buff_cb EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-core 0xa81a1502 stm32_dfsdm_stop_dfsdm EXPORT_SYMBOL_GPL drivers/iio/adc/stm32-dfsdm-core 0xb2f7302a stm32_dfsdm_start_dfsdm 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 0x468219ab iio_channel_cb_get_iio_dev EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7a711aef iio_channel_start_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x92ae7ddf iio_channel_cb_get_channels EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xa43c43b8 iio_channel_cb_get_iio_dev -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xe5b021dc iio_channel_get_all_cb -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x025bd83e iio_dma_buffer_block_list_abort -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x06def966 iio_dma_buffer_read -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4a8c881a iio_dma_buffer_request_update -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6507b3d8 iio_dma_buffer_set_length -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9f089127 iio_dma_buffer_release -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa07f0df9 iio_dma_buffer_data_available -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb1e9c24e iio_dma_buffer_exit -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb53a800f iio_dma_buffer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc8c20abe iio_dma_buffer_init -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcb68b040 iio_dma_buffer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd0649ad1 iio_dma_buffer_block_done -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf98bd462 iio_dma_buffer_set_bytes_per_datum -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x0cef483b devm_iio_dmaengine_buffer_setup -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2adc0f53 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xc91e93c4 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xf3ee3772 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0878337d iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0be76069 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0c2de392 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x129564cf iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1ad3659b iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2d25d470 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x762a0332 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x892a3362 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa07017f1 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd37e1589 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe114e58a iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfd9f46e0 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x2de89f3d devm_iio_dmaengine_buffer_setup EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x3391543d iio_hw_consumer_disable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x8a0cf187 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x6be3e955 devm_iio_hw_consumer_alloc EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x9671bc15 iio_hw_consumer_free EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xbf358fa9 iio_hw_consumer_enable -EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x205f8db4 devm_iio_triggered_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xf5ffe702 devm_iio_kfifo_buffer_setup_ext -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x29758a7d cros_ec_sensors_ext_info -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x49358499 cros_ec_motion_send_host_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x493ac0e4 cros_ec_sensors_push_data -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5bb10de4 cros_ec_sensors_read_lpc -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x637916f9 cros_ec_sensors_core_init -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x77c89f22 cros_ec_sensors_read_cmd -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7c6710b9 cros_ec_sensors_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x84b95e23 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xcb331781 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x87874b77 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x51955362 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1d4d9e8d cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x39908ad8 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4e6a6ce5 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5e2c05be cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6213fe23 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x849adf36 cros_ec_sensors_ext_info EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9971dac4 cros_ec_sensors_capture -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xa2c2d3ff cros_ec_sensors_core_register -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc3b833b9 cros_ec_sensors_core_read -EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xe07afd0f cros_ec_sensors_core_write -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa2f67b90 bmg160_pm_ops -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xbb5cf9e9 bmg160_core_probe -EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf63de182 bmg160_core_remove -EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x6c274f58 fxos8700_core_probe -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00023dfa iio_dealloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0733d4b8 iio_read_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b86c990 iio_write_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c633fbf iio_buffer_put -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e26e1dd iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0f9b2004 iio_get_channel_type -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x168b7be6 iio_channel_release -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a9d0d78 iio_pop_from_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2197990c iio_write_channel_ext_info -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x250d2904 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x99c1ef4c cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x9ec1d6d7 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc7bfc146 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf162dcdd cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf8fed621 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x68959873 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xbe88c71c bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xed015752 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0xd2266d9b fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x00047d72 fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01f5c86b iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02d006a1 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d97d7fa iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1081b26c iio_device_claim_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x14b8ccfb iio_device_release_buffer_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x156cb5af iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x15a84c89 iio_channel_get EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b3ae1ca iio_device_id -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30166899 iio_show_mount_matrix -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3067490f devm_iio_device_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3215facb iio_device_release_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3388f609 iio_read_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x362c845c iio_device_claim_buffer_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d78dab2 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x27411138 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28b00efd devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2aeb4b13 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b29273a iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2bd51956 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b3ed098 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4251ce4e iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4668b0d9 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d222b2b iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4d98f64b iio_read_channel_scale EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x534079d4 iio_buffer_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x557f1815 iio_read_channel_processed_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a44a3a6 devm_iio_map_array_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5bc1e90f devm_fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f233716 iio_read_channel_average_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f3b5cd7 iio_map_array_unregister -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f4addb3 iio_read_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5f4c25f0 iio_read_avail_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60978055 iio_channel_release_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60c586e9 iio_device_claim_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64fcf87e iio_device_release_direct_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6923850d iio_read_avail_channel_attribute -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fcf166c __devm_iio_device_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72295aa9 iio_push_to_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93af1c2f iio_get_channel_ext_info_count -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x94e71495 iio_read_max_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95447491 iio_enum_available_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x966a8c8d iio_device_attach_buffer -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x994d4ebe iio_read_channel_processed -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9d8b3448 iio_write_channel_raw -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f419012 iio_enum_write -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb32c6ebb iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb433b465 iio_validate_own_trigger -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5c15148 iio_alloc_pollfunc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6caab86 iio_read_channel_scale -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc05d6c82 iio_buffer_enabled -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc47e60ca __devm_iio_trigger_alloc -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc79729ed iio_validate_scan_mask_onehot -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca4e2b36 iio_device_get_current_mode -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd993328 iio_push_to_buffers_with_ts_unaligned -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd019b76b iio_enum_read -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd28e25ae devm_iio_trigger_register -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda054ec3 iio_update_buffers -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe619a710 devm_iio_channel_get -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf021f119 iio_get_debugfs_dentry -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf8bfcce3 devm_iio_channel_get_all -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf90a1ab1 fwnode_iio_channel_get_by_name -EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfa2648f1 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55239977 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x55a6c8e4 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57c95d58 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x58646137 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5b11f07a iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5c1e23f1 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5dd48db7 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x614f05e7 iio_validate_own_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6836e48b iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x824f37d1 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x844993c8 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89a4b38a iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b328e76 devm_fwnode_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e7b3b32 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97fa8798 devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb47b6d7e iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf97135c iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc62a877f iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8064ce2 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb26f8c8 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd289b5de __devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5811c6b devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd616f2d3 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda30c699 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdadf7b9a iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6456c0d iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6f05ab2 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe73af904 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8acdc77 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xea1d1e0d iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec8532bb iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xecda3179 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xece31d06 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xececd81e iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf05311cc iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7bc52be iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb559d9a iio_alloc_pollfunc EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x02fdfcf9 rtrs_stop_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x034f8ef5 rtrs_post_recv_empty -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b6c69eb rtrs_start_hb -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x261622a5 rtrs_iu_post_send -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4cd9be64 rtrs_iu_post_rdma_write_imm -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6441de5c rtrs_iu_post_recv -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x662b0a9b rtrs_iu_alloc -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x97263059 rtrs_send_hb_ack -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa2449189 rtrs_cq_qp_create -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa355b006 rtrs_cq_qp_destroy -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xba5a9a2e rtrs_iu_free -EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xffa752a7 rtrs_init_hb -EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x8b825f49 input_ff_create_memless -EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x450284ca matrix_keypad_parse_properties -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7e9dc95d adxl34x_probe -EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x9d617853 adxl34x_pm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0101e09e rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x55c720e8 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6ab9a942 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x73283c50 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x74a47253 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7a2ef95f rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbda1f64e rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc8576df3 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeda04139 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf41912ab rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfb64c14f rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xff6265e2 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x2af1a4af input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x29a77b05 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x9c5a4710 adxl34x_pm +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe1dd2f22 adxl34x_probe EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0282ccb9 __rmi_register_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1f7b9ae6 rmi_set_attn_data -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x45138262 rmi_dbg -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4c248137 rmi_driver_resume -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5089fe24 rmi_2d_sensor_rel_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6d12de55 rmi_2d_sensor_of_probe -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x704b8f11 rmi_2d_sensor_abs_report -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7a9d59d2 rmi_register_transport_device -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8805eddd rmi_unregister_function_handler -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9a10686e rmi_2d_sensor_abs_process -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc6b33539 rmi_2d_sensor_configure_input -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcad9cb97 rmi_driver_suspend -EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcf824ab7 rmi_of_property_read_u32 -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4590a2e8 cyttsp4_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6537a008 cyttsp4_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb3d39038 cyttsp4_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x27fc9b3a cyttsp_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6070bfb5 cyttsp_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0f2f0856 cyttsp_i2c_write_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x697bcdec cyttsp_i2c_read_block_data -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x3bf1b60d tsc200x_pm_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5018a0f2 tsc200x_probe -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5db85d44 tsc200x_regmap_config -EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc4a9308d tsc200x_remove -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0d48dccf wm97xx_config_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x17643414 wm9713_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2e782777 wm97xx_read_aux_adc -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x37b163e7 wm97xx_get_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3fb6c0cc wm97xx_register_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4d8863ed wm97xx_set_gpio -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5053d80f wm97xx_reg_write -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc5af17c4 wm97xx_unregister_mach_ops -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc67029d0 wm9705_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcd047c97 wm97xx_reg_read -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdbce348a wm9712_codec -EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe9a55158 wm97xx_set_suspend_mode -EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x1d65ec83 icc_clk_register -EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0xe2fee26c icc_clk_unregister -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x4efa10ad imx_icc_register -EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x5fc2184d imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x13feb14b rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1e2e3ddc rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4e5c1882 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5e96778b rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x612f9432 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74f8e900 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x950b4ae5 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb4cd90f4 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdb2588bc rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xef0fa915 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf2005233 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf205a3a0 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfb033220 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5b489086 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x5ef01ae8 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xea9e274f cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3135cd54 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa9f7e577 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x59ec544e cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x8311c15f cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0d7e9140 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6268e42c tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x63f64a10 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7bb3bc1f tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1028edb3 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x21d8c3a6 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x32955841 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3489c07c wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3c66defc wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4fbd276a wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5b745281 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x68337925 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe4b12cad wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xea9df2c3 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xed72c338 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf354b653 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x35507f67 icc_clk_register +EXPORT_SYMBOL_GPL drivers/interconnect/icc-clk 0x93ff7731 icc_clk_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x04492c3d imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x9d2076e7 imx_icc_unregister EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x936a7e97 qcom_icc_bcm_voter_add -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0xcc47eafb of_bcm_voter_get -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x2fa491e5 qcom_icc_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x59a38d89 qcom_icc_rpmh_probe -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xa80aa64d qcom_icc_rpmh_remove -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xcef755af qcom_icc_pre_aggregate -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe7e0a1a5 qcom_icc_set -EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xfdde6a51 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x99e166fe of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x35c688c2 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x5260da73 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x65713cf4 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x94d81730 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xd8584e0c qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xe8251e59 qcom_icc_bcm_init EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x81e513ad qcom_icc_rpm_smd_available EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0xe8dbdc6c qcom_icc_rpm_smd_send -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x466aa436 ipack_device_add -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x470a25b4 ipack_device_del -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x79e397a1 ipack_driver_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9eac55c1 ipack_get_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa170fe94 ipack_driver_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa3535352 ipack_bus_register -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbabd8aac ipack_bus_unregister -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd0e5bdff ipack_put_device -EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf720d535 ipack_device_init -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1d703028 led_get_flash_fault -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5b657cbf devm_led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x65ccc764 led_set_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7d450707 led_update_flash_brightness -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x83b55b25 led_classdev_flash_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x916a4ac4 devm_led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x942183a8 led_set_flash_timeout -EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb2144f06 led_classdev_flash_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1c2cf223 devm_led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x5f101b9f led_mc_calc_color_components -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6a12f7b2 led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6f24212c devm_led_classdev_multicolor_register_ext -EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe4b924fb led_classdev_multicolor_unregister -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0afe4f48 lp55xx_init_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5a3da080 lp55xx_deinit_device -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6508aa33 lp55xx_unregister_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6ad96296 lp55xx_read -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x72b2e1c6 lp55xx_write -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8239aec7 lp55xx_is_extclk_used -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8efcac27 lp55xx_update_bits -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xba422e36 lp55xx_register_sysfs -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd0c6d390 lp55xx_register_leds -EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xed35af9f lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x05cbf81d ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x220e90d7 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4b821023 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x74c78d3e ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x92246056 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9344e1d4 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe3601557 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe4399926 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xee6b5187 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x00abe299 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x236c1cae led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3d644210 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x57928091 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5d1bc235 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x85cbe5af led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x98c3c890 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd2815862 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1c6d0bb9 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xc47ecf91 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xcd7c98f1 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf1d73928 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xf4e1efb6 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x040566d3 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3b306c60 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x54c6891b lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7abc50ee lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa320c699 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa87f4be0 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa9945471 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xce8e7c6d lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdc016894 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe47ae865 lp55xx_register_sysfs EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get 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/md/bcache/bcache 0x01876d46 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x04b25810 __tracepoint_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05058957 __tracepoint_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x063306f1 __tracepoint_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x088c1a0e __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07e93442 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x09dfb705 __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0fb10ff0 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13a52902 __traceiter_bcache_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1adc82ab __traceiter_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x265d4358 __traceiter_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26ffeff6 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x253238fe __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25a9efe4 __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ba613f3 __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x362eda19 __tracepoint_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37808fd7 __tracepoint_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37b31e4f __tracepoint_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a3eb678 __tracepoint_bcache_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ec44a08 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3a3edd3b __traceiter_bcache_journal_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3feb7def __tracepoint_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x449589ec __traceiter_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x44bb87a3 __tracepoint_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x46c66897 __SCK__tp_func_bcache_btree_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x47b2af54 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48867a4a __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4b96c8a0 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4eae41d9 __traceiter_bcache_btree_node_split EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x54978ad0 __traceiter_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5d9c8fc8 __SCK__tp_func_bcache_cache_insert EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f9386a1 __tracepoint_bcache_gc_copy EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5fd7c423 __SCK__tp_func_bcache_write @@ -13635,43 +13637,39 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64e39418 __traceiter_bcache_writeback_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x66232cfe __tracepoint_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6697827f __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x677e9797 __traceiter_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e7df078 __tracepoint_bcache_writeback -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f2d1883 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x705d3158 __traceiter_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71a90620 __tracepoint_bcache_request_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71c82b24 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x73c14d6f __traceiter_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7c47f037 __traceiter_bcache_btree_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d91623a __traceiter_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dce5656 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80b525c6 __traceiter_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x81d4d2d1 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x831b2f6c __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x895cf5d2 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8b9fa1d8 __tracepoint_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8bba9251 __tracepoint_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f7308be __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9339c0cd __traceiter_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x93c8c39b __tracepoint_bcache_btree_node_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x98e817aa __traceiter_bcache_journal_entry_full EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9e8d6fc1 __traceiter_bcache_read_retry EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa09a6b09 __tracepoint_bcache_btree_write EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa187023e __SCK__tp_func_bcache_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa7a775cc __traceiter_bcache_btree_cache_cannibalize EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb185d259 __traceiter_bcache_alloc_fail -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5851eae __traceiter_bcache_btree_set_root EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb9efe79c __traceiter_bcache_btree_node_free EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbcea5d4c __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbd9b96e9 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc7ea5805 __traceiter_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcf8acadd __traceiter_bcache_btree_node_free -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4fc4fe1 __traceiter_bcache_journal_write -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5da7aeb __traceiter_bcache_gc_end EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8aa1746 __tracepoint_bcache_btree_read -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9459573 __traceiter_bcache_bypass_sequential -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9b2b43f __traceiter_bcache_invalidate EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd9f63855 __tracepoint_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd1455a7 __tracepoint_bcache_journal_entry_full @@ -13680,41 +13678,44 @@ EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec29e22a __traceiter_bcache_gc_copy_collision EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec3327c6 __tracepoint_bcache_btree_node_alloc EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xec92a163 __SCK__tp_func_bcache_btree_cache_cannibalize -EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedd4b100 __traceiter_bcache_bypass_congested EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf021519f __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf1abf173 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3ef3e0f __traceiter_bcache_gc_start EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6249e5f __SCK__tp_func_bcache_journal_replay_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc0a0b57 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfc5407df __traceiter_bcache_btree_node_compact EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd5d057b __tracepoint_bcache_bypass_sequential EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfed8327b __tracepoint_bcache_journal_full -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0e4a8402 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x00714b35 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0421bd23 dm_cell_release EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x243fe055 dm_cell_error EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x38d48108 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x63bdcd3d dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x677ab984 dm_bio_detain EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x74187da9 dm_cell_get_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x785f9f57 dm_bio_prison_free_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x789fcb11 dm_bio_prison_alloc_cell_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x85485208 dm_bio_prison_alloc_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c951506 dm_cell_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x947bce1a dm_cell_get_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9e555411 dm_bio_detain -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa13150b5 dm_cell_lock_promote_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xac910714 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x86fe2c27 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x886f6fda dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c9a6d6f dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x92ed9a35 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x964b331c dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa1c933b2 dm_cell_lock_promote_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 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 0xc3f688e8 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 0xcb5bdc37 dm_cell_promote_or_release -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcc117330 dm_cell_put_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcf8755df dm_cell_lock_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd0a20eb5 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd752bdef dm_bio_prison_alloc_cell_v2 EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdbb75e20 dm_cell_quiesce_v2 -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf201b3cc dm_get_cell -EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf5bf5973 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xefa5b4f9 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf0c6a820 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfc07ed3a dm_cell_visit_release EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2926c581 dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x656100cc dm_bufio_client_reset EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6a2f40e1 dm_bufio_mark_partial_buffer_dirty @@ -13723,7 +13724,6 @@ EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d83826d dm_bufio_get_block_size EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data -EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7ebd418f dm_bufio_client_create EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x91f00abc dm_bufio_set_minimum_buffers EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers @@ -13741,8 +13741,8 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1c852cab btracker_nr_demotions_queued EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x23ddc5ab dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x32a0770f dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x37ef59a5 dm_cache_policy_get_name -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3dc2a304 dm_cache_policy_unregister EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x481a0b15 btracker_create EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x4becb830 dm_cache_policy_get_hint_size EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x50b3c64c dm_cache_policy_create @@ -13751,31 +13751,31 @@ EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete -EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xda7658b9 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd5148cb2 dm_cache_policy_register EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf9f3e74b dm_cache_policy_destroy -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xbbe723c2 dm_unregister_path_selector -EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf034a678 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xbc0a0b87 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf7d98e3d 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 0x175aa943 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x197048da dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x33f27fc6 dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector 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 0x51be763c dm_rh_bio_to_region -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x550305ed dm_rh_delay EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7ac3e7a2 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 0x7d5e1815 dm_rh_get_region_key -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9bec2704 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7e7e9473 dm_rh_delay 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 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd5459fb9 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 0xe22903e9 dm_rh_dirty_log EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd01636b dm_rh_inc_pending EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight -EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfe380e27 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 0x01f7c2b0 dm_btree_cursor_begin EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0211c39e dm_tm_with_runs @@ -13802,13 +13802,13 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x418204e4 dm_array_set_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x46c56110 dm_bitset_empty EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x48e323be dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f13edbc dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f2c653e dm_btree_insert_notify EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x4f477261 dm_bm_checksum EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x51005cef dm_bitset_cursor_skip EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5375ca71 dm_bm_write_lock EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5475ba9e dm_block_location EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x563946a0 dm_btree_remove_leaves -EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x59ec0ea2 dm_block_manager_create EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x5b04d3fe dm_bitset_clear_bit EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x67c6c5b9 dm_array_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x68f34c27 dm_array_cursor_next @@ -13851,73 +13851,73 @@ EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xedf5036f dm_bitset_flush EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf2b4509a dm_btree_cursor_get_value EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf71f197e dm_btree_cursor_next -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x18acc6a2 cec_allocate_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x317e983b cec_transmit_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3c4b3b33 cec_transmit_attempt_done_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x407dc568 cec_s_conn_info -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b0b0124 cec_transmit_msg -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x788e5539 cec_notifier_cec_adap_register -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x81339bb9 cec_queue_pin_5v_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x950aaed1 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x03e13d1e cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0f6c71a9 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x20eb6e98 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x262945a6 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3358c2d7 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3f8bb337 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x44d7e327 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4b70199e cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x71169c0c cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x85e4f323 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8bb4ac61 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9295ea10 cec_allocate_adapter EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xad057c77 cec_transmit_done_ts EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb12f1dcc cec_notifier_parse_hdmi_phandle -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb18a6470 cec_queue_pin_hpd_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb3bd6e59 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb1b73099 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb8ae6a93 cec_transmit_attempt_done_ts EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc131a8af cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbf255560 cec_notifier_conn_register EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc9d2a80c cec_received_msg_ts -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd77ee366 cec_unregister_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd88732c6 cec_queue_pin_cec_event -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdc4b67ac cec_s_log_addrs -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xde74b049 cec_notifier_cec_adap_unregister -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xee3b6027 cec_s_phys_addr -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf1def40a cec_register_adapter -EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xffbfacc7 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc85bea16 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xde14a1df cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe6a93bb9 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf7334baa cec_notifier_parse_hdmi_phandle EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0404a36f saa7146_pgtable_free -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1506daa7 saa7146_vmalloc_build_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1b64ae7e saa7146_wait_for_debi_done -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3e556de3 saa7146_pgtable_alloc -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x61b51ba8 saa7146_i2c_adapter_prepare -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa5d5aa6e saa7146_register_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xadce58f9 saa7146_unregister_extension -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc5e334bc saa7146_pgtable_build_single -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd0db700b saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0e84c5ec saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x17b5d2c3 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1976f621 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x232738ad saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2d7a4a2d saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x82a170d6 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8cb5ea64 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe1743676 saa7146_register_extension EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf9bb1c94 saa7146_vfree_destroy_pgtable -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x26e95712 saa7146_vv_release -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3818eb2c saa7146_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6389c943 saa7146_vv_init -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7c7eed4b saa7146_register_device -EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc14f073a saa7146_set_hps_source_and_sync -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x029d7fd9 sms_board_setup -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0f00a7e4 smscore_get_device_mode -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13c79336 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe96fc4e1 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf99c8972 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x42ff5d67 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x720bd91c saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x823e4278 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xadf9cb3c saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd80eac0a saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1014b8dc smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13ea9aa0 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x17012e23 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21c78cc3 smscore_get_board_id EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x243eecd0 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x28192248 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3279ca4c smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3968039e smscore_register_client EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45dca7b2 smscore_get_board_id -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4d97a709 smscore_register_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x52a096f5 sms_board_event -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6acaaf69 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x51d2cfa1 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x668654a8 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6b1b8c95 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 0x77dac89a smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x77dcb847 smscore_getbuffer EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x818bd7a0 smscore_onresponse EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x886090e2 smscore_start_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x889b9914 smscore_register_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96b0515b sms_board_power EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa84f8579 smscore_unregister_hotplug -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xad43e9b3 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa4af4a66 smscore_unregister_device EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc0b46117 smscore_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xef7bbcb2 sms_board_lna_control -EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf7e649f5 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc428d576 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd463dc7a smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec7bbb93 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf5cc9aac smscore_unregister_hotplug EXPORT_SYMBOL_GPL drivers/media/common/uvc 0x08c5db3e uvc_format_by_guid EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x21bfae4e tpg_gen_text @@ -13936,527 +13936,527 @@ EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf064e392 tpg_fillbuffer EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7a5f765 tpg_calc_text_basep EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf7ec0949 tpg_reset_source -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x023d1300 vb2_core_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0518d85a vb2_core_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x06069726 vb2_core_streamoff EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16175154 vb2_core_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1f1f51d4 vb2_discard_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x250082d6 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x15caeed9 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x20596279 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x29784949 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x32678e11 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3567a5e7 vb2_core_streamoff EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c22713a __tracepoint_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4cb2c785 __traceiter_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4e7ff15f vb2_core_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4f534e40 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x47af4183 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x47d709b1 vb2_plane_cookie EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50a1bb4a __tracepoint_vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5958a584 vb2_core_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5cd126ee __traceiter_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x688fe282 vb2_core_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c2202b5 vb2_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6ec347db __traceiter_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6ef963a8 vb2_core_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6fbf7ee0 vb2_core_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x772819cd vb2_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7a4739e3 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52288d90 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x599114a4 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5b017ffe vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5bbdae8f vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5beed043 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x66c08d6d vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x78956245 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7c33e81b vb2_core_create_bufs EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ee32286 __tracepoint_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fda5e29 vb2_plane_vaddr -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xaf77db0c vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x89048006 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x90598907 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa98212f1 vb2_core_querybuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc38cdc51 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xba3de82d vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc5af6012 vb2_core_poll EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcba0249e vb2_buffer_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcc875fc8 vb2_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcef5e755 vb2_plane_cookie -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdc7db8b8 vb2_wait_for_all_buffers -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe0cf1f28 vb2_core_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe613f387 vb2_thread_start -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xef1c3e01 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xca924518 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcb8a4561 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd46a41e9 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6a807b5 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6b6483c __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe974f1e1 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf41185ec vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6f8b0cd vb2_plane_vaddr EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf97a7c84 __tracepoint_vb2_buf_done -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfbd0d870 vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x2d18abf1 vb2_dma_contig_set_max_seg_size -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xcbf87c68 vb2_dma_contig_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x071ec8d2 vb2_dma_sg_memops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x69c4e6b0 vb2_common_vm_ops -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01b47991 vb2_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x062e37fd vb2_request_validate -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x080b5246 vb2_streamoff -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18012a5f vb2_fop_write -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1a29a9b0 vb2_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1ea983b5 vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2028dfc5 vb2_queue_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x23362fd6 _vb2_fop_release -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2c6dff07 vb2_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34816a55 vb2_fop_read -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x34a02a3f vb2_find_buffer -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3e335499 vb2_queue_init_name -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3ec5e663 vb2_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x555dccd0 vb2_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x635ba1d9 vb2_ops_wait_prepare -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6821dcf9 vb2_ops_wait_finish -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d687621 vb2_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d83f182 vb2_request_queue -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x76778f33 vb2_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7cb69b89 vb2_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x807bd186 vb2_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8a2bc43d vb2_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8d80fb89 vb2_queue_change_type -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8dfb2570 vb2_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8f671bcd vb2_fop_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x91836506 vb2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9373a5b0 vb2_qbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb78d631f vb2_queue_init -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbca581c8 vb2_expbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc0b0a613 vb2_fop_mmap -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd1ef75a3 vb2_video_unregister_device -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdfd19cad vb2_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf2b3cf97 vb2_poll -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf69c2469 vb2_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x1107d70d vb2_vmalloc_memops -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0896cf2e dvb_create_media_graph -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x100b4239 dvb_module_probe -EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xb8951e3a dvb_module_release -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xba5509ad as102_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0xb396710b ascot2e_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0xe126dd04 atbm8830_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0x0699e123 au8522_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xdda7db53 bcm3510_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0xc238af4c cx22700_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0x8cdb9b07 cx22702_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0xd928e523 cx24110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x22808405 cx24113_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0x829415a0 cx24116_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x170a857a cx24117_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x4594dd8b cx24120_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0xee71d755 cx24123_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0x1829e734 cxd2820r_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x0d0aafa3 cxd2841er_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x59ae1927 cxd2841er_attach_t_c -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x76f4afed cxd2880_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x9ae21c9d dib0070_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xb0a7454e dib0090_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xce35e7f7 dib0090_fw_register -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0x59dbb50c dib3000mb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0x059c8a1e dib3000mc_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0xefb50efb dib7000m_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0xdeb57cbd dib7000p_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0x7718dd82 dib8000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0x9b9f1b90 dib9000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xd09db118 drx39xxj_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x78982810 drxd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xb1f88f3d drxk_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x49228880 ds3000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0x65cef881 dvb_pll_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0xa00ae120 ec100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x426ce66c gp8psk_fe_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x27191ff3 helene_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x790deec8 helene_attach_s -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x0c041b00 horus3a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x8f920ab7 isl6405_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0xb15fb9dd isl6421_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0xd537b69a isl6423_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0x415762bf itd1000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0x797a3766 ix2505v_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x855838e3 l64781_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x653093d2 lg2160_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0xcc239b1c lgdt3305_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x2d1ce7d8 lgdt3306a_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x49e9c43a lgdt330x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0xdbddcdb1 lgs8gxx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0x0fd39c49 lnbh25_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x29ac5d63 lnbh24_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x563079d8 lnbp21_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x1125e190 lnbp22_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0xb43e5701 m88ds3103_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0xdd78d813 m88rs2000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x25493d64 mb86a16_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x0253b6b2 mb86a20s_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0xbb767785 mt312_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0xa5d4d29c mt352_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x297a56c3 mxl5xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0xb1d3f2d3 nxt200x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0xb5642944 nxt6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0x5360820f or51132_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xac3b8398 or51211_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x52a315f1 s5h1409_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0xb3d0d290 s5h1411_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0xcb855b6e s5h1420_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0xbd61ff4c s5h1432_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0x59ab4958 s921_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0x8230578d si21xx_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0x6ace832c sp887x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0x3f89b949 stb0899_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0x1404a566 stb6000_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0x1ebdb87a stb6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x9325e1f9 stv0288_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x132ef23e stv0297_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x58f6a07d stv0299_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x01271518 stv0367cab_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x8015ef75 stv0367ter_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xb0e5f14f stv0367ddb_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x63e891b0 stv0900_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x0bb2fb94 stv090x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0xca99306f stv0910_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0xbf8b4e1d stv6110_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0x0e9e34a8 stv6110x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xb1e5a6b1 stv6111_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x82ce43c6 tda10021_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0x4db46c79 tda10023_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x04ac21ad tda10048_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x4f21289e tda10045_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x74ac37ea tda10046_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x84230157 tda10086_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x10f3ce67 tda18271c2dd_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0x955018ce tda665x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0xad395b0a tda8083_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x59523f45 tda8261_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0xdd479f05 tda826x_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x33630eaf ts2020_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x86c89582 tua6100_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x3628e2cb ves1820_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x17ec8df5 ves1x93_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xa4b44e90 zl10036_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0x772c0d07 zl10039_attach -EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x7e8de210 zl10353_attach -EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xcb3d3121 aptina_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xbeb76ca8 ccs_pll_calculate -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x00782fbf max9271_configure_gmsl_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0cc32a0e max9271_disable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x132b5f64 max9271_wake_up -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x254a0861 max9271_enable_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2cb8481c max9271_set_translation -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x454bb769 max9271_set_address -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4d65bfca max9271_clear_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5069de8d max9271_configure_i2c -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x60dea356 max9271_verify_id -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6263698d max9271_set_high_threshold -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa6057cc9 max9271_set_gpios -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa9347607 max9271_set_serial_link -EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf906eee2 max9271_set_deserializer_address -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x011efaa5 media_request_object_unbind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07c3cb30 __media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0a48b11d media_create_ancillary_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0e150f5d media_devnode_remove -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1a6d8507 __media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1be7d319 media_device_pci_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1c44eb9c media_create_pad_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x238e6dc2 media_entity_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2566edbd media_devnode_create -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x263861e7 media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x289d2ec4 media_device_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2cd9da62 media_request_object_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2f0bc5ec media_graph_walk_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3426c523 media_create_pad_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35843ce1 media_graph_walk_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x39d34f5d __media_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3c466989 media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43902936 media_device_unregister -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43db6e72 media_device_unregister_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43ffba19 media_request_put -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x49b04749 __media_pipeline_entity_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x571b2ef6 media_entity_find_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e3f8bec media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfeb2d1cb vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xbd29d257 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc665bef0 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xe6b7f8d9 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xf0c34eb7 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0498f906 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0d526658 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1822f8ce vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1e031daf vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2871632b vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2a7f86c2 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3da8d1be vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3eea934a vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x41481661 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x421fb5f7 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x42ba05e9 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4e155de9 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x56c86696 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x58a3d165 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70b44e7d vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x78f43e2a _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7e3a357e vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8c39bdf8 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9a1ad41a vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9fccb5b8 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa1968a98 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa1c8238c vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaaecf7b8 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xade53e67 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb2337602 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbee1c948 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc85a8059 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd623cdcc vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd6d20099 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd99eb07d vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe891bfe1 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe99f89a4 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xeea71dd5 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf3db5b66 vb2_find_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x8634a7b5 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x95ecf3d7 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd8dbc07e dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xfdeff52b dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x921b06af as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ascot2e 0x9ab49221 ascot2e_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/atbm8830 0x19b7adbd atbm8830_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/au8522_dig 0xf063e497 au8522_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/bcm3510 0xbc648607 bcm3510_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22700 0x1c660b2a cx22700_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx22702 0xcbf02cb7 cx22702_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24110 0x07764145 cx24110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24113 0x83a77159 cx24113_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24116 0xd653c4b5 cx24116_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xc954211c cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24120 0x6144dfeb cx24120_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24123 0xf58a1bde cx24123_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2820r 0x3e02f268 cxd2820r_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0x4004bcfd cxd2841er_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2841er 0xf928652d cxd2841er_attach_t_c +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cxd2880/cxd2880 0x37d1ad46 cxd2880_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0070 0x81643307 dib0070_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0x6ea71f7a dib0090_fw_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib0090 0xb2aa877c dib0090_register +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mb 0xb948242b dib3000mb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib3000mc 0xd4947b70 dib3000mc_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000m 0x0199a0c7 dib7000m_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib7000p 0xd6a4c9e8 dib7000p_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib8000 0xa51d207b dib8000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dib9000 0xdaaaa5a5 dib9000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x1ab183af drx39xxj_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxd 0x37c24340 drxd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/drxk 0xd1bd14be drxk_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ds3000 0x4cf94d71 ds3000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/dvb-pll 0xb611b746 dvb_pll_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ec100 0x87bc2212 ec100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xf19d1546 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0x893f67e7 helene_attach_s +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/helene 0xe5e75896 helene_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/horus3a 0x2526f82a horus3a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6405 0x64ab3d18 isl6405_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6421 0xb48c3181 isl6421_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/isl6423 0x7b2be93d isl6423_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/itd1000 0xd82fad51 itd1000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ix2505v 0xc8a294bd ix2505v_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/l64781 0x6a45d82e l64781_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lg2160 0x95e83616 lg2160_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3305 0x1aff7da8 lgdt3305_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt3306a 0x1d23f46b lgdt3306a_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgdt330x 0x56bdc92a lgdt330x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lgs8gxx 0xf3389acd lgs8gxx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbh25 0xd0d7669c lnbh25_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x0c95315b lnbp21_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp21 0x1eadcda6 lnbh24_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/lnbp22 0x41573238 lnbp22_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88ds3103 0x49282aa6 m88ds3103_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/m88rs2000 0x3d0db771 m88rs2000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a16 0x7c7d614e mb86a16_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mb86a20s 0x7ceddaab mb86a20s_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt312 0x64728d50 mt312_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mt352 0x3d6b108f mt352_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x4c78ca9f mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt200x 0x126ea81f nxt200x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/nxt6000 0x01f8ff61 nxt6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51132 0xf0ddd8c3 or51132_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/or51211 0xf11df883 or51211_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1409 0x8d4f045d s5h1409_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1411 0x8c9b7b85 s5h1411_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1420 0x42dcb61b s5h1420_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s5h1432 0x822a5659 s5h1432_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/s921 0xd08d0fa4 s921_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/si21xx 0xc51be03d si21xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/sp887x 0xaf960881 sp887x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb0899 0xc392b2b8 stb0899_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6000 0xbcf5eae3 stb6000_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stb6100 0xd8f8a1e8 stb6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0288 0x33a39df3 stv0288_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0297 0x12744a5c stv0297_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0299 0x64a8895d stv0299_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0x58134932 stv0367cab_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xd921b35f stv0367ter_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0367 0xe9d1ad65 stv0367ddb_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0900 0x1d081411 stv0900_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv090x 0x2002c2a3 stv090x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x9c8cd7a0 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110 0x3e422a5c stv6110_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6110x 0xc50c61d3 stv6110x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x2775761c stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10021 0x330e8c7a tda10021_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10023 0xadc1031b tda10023_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10048 0x73dfc0ac tda10048_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x49e70b50 tda10046_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda1004x 0x726a1424 tda10045_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda10086 0x35fba28c tda10086_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x6418b9b5 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda665x 0xdf924048 tda665x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8083 0x7367ff6c tda8083_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda8261 0x23239e21 tda8261_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda826x 0xa028a8ec tda826x_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ts2020 0x5326952c ts2020_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tua6100 0x2e39da07 tua6100_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1820 0x900b0efe ves1820_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/ves1x93 0x6952e1ec ves1x93_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10036 0xa0024ed6 zl10036_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10039 0xe1bcddaa zl10039_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/zl10353 0x4eb93606 zl10353_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x3a1b1702 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xb75c97b5 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x013d92e9 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x09139a4a max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1c31f3ae max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x409b072d max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5242114b max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x69122542 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8e4b7432 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x99150ec1 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9d1804e9 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb55ec3c1 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc6e2152a max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xea5d51ea max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfdbe8800 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x083273a3 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d093eab media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x107bfb4e __media_pipeline_pad_iter_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1324e521 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x14b8cc75 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x15123a81 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1810dd5b __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1a72eb7f media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1cba8dd7 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24f2b274 media_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x317dad10 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3947b953 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x415f6f81 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x44af3a1c media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b0d9dac media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4bc6d281 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x51962238 media_pipeline_entity_iter_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x57885487 media_pad_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6172b062 media_request_object_bind EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65dd67e0 media_pipeline_entity_iter_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74f0ebf6 media_get_pad_index -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79885f7a media_device_register_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fe733e5 media_device_unregister_entity -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x80589b51 media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x81f6b3f8 media_entity_enum_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83bd67b6 media_device_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x86a612d6 media_remove_intf_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8732fb57 __media_entity_next_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8bedb400 media_device_delete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9260cd09 media_entity_get_fwnode_pad -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x92610d87 __media_device_usb_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9684bc2e __media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x99ee247c media_request_object_bind -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f580c8b __media_pipeline_pad_iter_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa24d2b6d __media_entity_setup_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaa19e049 media_request_object_complete -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaa66d301 media_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaf3a3f79 media_entity_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaff2a89b media_entity_pads_init -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb3c08853 media_create_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb8dcc0b6 __media_device_register -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb35da52 __media_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc11b7e8 media_pad_remote_pad_first -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc552b3f4 media_entity_remove_links -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc6221a52 media_graph_walk_next -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdaa56d63 media_graph_walk_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde733f29 media_pad_remote_pad_unique -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe078be11 media_device_usb_allocate -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe2fa4c89 media_request_get_by_fd -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe37a4968 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x688e3f9d media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x688f9704 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x68c05e93 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d1a38d2 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7257f6b8 media_pad_remote_pad_first +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x76a45810 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x84548541 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x845a34ee __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8479a99b __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8957aa45 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94f9e472 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9843a923 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9c79b0c4 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f893bd4 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa117a22a media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa49101d9 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa8ac0092 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac9aa19f __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb032262a media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb5d6289c media_pad_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7472e28 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7bd973b media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbab6406f __media_entity_next_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbb70ddb7 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe1ef8d4 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe3273f3 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf3775ed media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc2813f92 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc4286658 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8cb853b media_entity_pipeline +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd53f7401 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9b3d506 media_entity_remote_pad_unique +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdcd285ab media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe2cdee64 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe4d32c09 __media_pipeline_entity_iter_next EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe61a5ee8 media_remove_intf_link -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef047c2f media_device_register_entity_notify -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xef24bc5d media_pad_pipeline -EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff699916 media_request_object_put -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0xffdbae85 dst_attach -EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x49eef260 dst_ca_attach -EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x8d51ed6f cx88_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x5f36144e ddbridge_dummy_fe_qam_attach -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x056ca186 mantis_dma_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0be399fd mantis_ca_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1420a498 mantis_pci_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1f5a9727 mantis_frontend_power -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2a7f0903 mantis_get_mac -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x35026585 mantis_dma_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3706bfad mantis_input_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x40d1fd9b mantis_pci_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x44c88033 mantis_gpio_set_bits -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4be1de8f mantis_i2c_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50f7fe13 mantis_uart_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51fbb976 mantis_input_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x60fda58d mantis_uart_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7b8f1a8c mantis_i2c_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8beb5fe2 mantis_dvb_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9805aad6 mantis_frontend_soft_reset -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbb859be1 mantis_dvb_exit -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcfb89de7 mantis_ca_init -EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe69541ab mantis_stream_control -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0ef48166 saa7134_s_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10b6520c saa7134_enum_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3ed059f6 saa7134_ts_buffer_init -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4d600fcc saa7134_g_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x525bf4dc saa7134_querystd -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x530212c1 saa7134_s_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e65b621 saa7134_ts_queue_setup -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x68a80601 saa7134_ts_start_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f66c46b saa7134_ts_buffer_prepare -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x80867f86 saa7134_ts_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x89e62a37 saa7134_s_tuner -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x956e3852 saa7134_s_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x978976f9 saa7134_g_frequency -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa28db4f3 saa7134_vb2_buffer_queue -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaf23000b saa7134_g_std -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcebaa4c6 saa7134_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb933e2a saa7134_ts_qops -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8338d52 saa7134_g_input -EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xff83aeb7 saa7134_querycap -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x75034e81 ttpci_budget_debiwrite -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7517560b ttpci_budget_debiread -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x77300c13 ttpci_budget_irq10_handler -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x77d1e680 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7d28ff1 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf07509d9 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf92f4513 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst 0x44323f2c dst_attach +EXPORT_SYMBOL_GPL drivers/media/pci/bt8xx/dst_ca 0x40d79ebb dst_ca_attach +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xfa21b6fc cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x058d4dba ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02219cd0 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c55eea2 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2dd8bad2 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2de2dc7c mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x59e5bcd4 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x690784c8 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x698b78d7 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a658de3 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7aa8e879 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x829d82b8 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x99ef3db9 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa2b1daae mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa981f9ba mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb297d926 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc81f2e36 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd76242b0 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe70c86b3 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe983bec8 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf64083ad mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x09db73b8 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x17d21765 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x184f5b07 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x212a251b saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x21f5c244 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2a8c4aee saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x49f9c69a saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7b232dbc saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8412b602 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x99663667 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9f9e9ee2 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1d3b33a saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa2c3a006 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb43bf1dc saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf3b0001 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdcec5d1f saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe0313b16 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea8b8ebe saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeaaae3b2 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x04380d5b ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3c615131 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x53ddff55 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x61965fcd ttpci_budget_deinit EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9f559707 ttpci_budget_deinit -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa7bfa741 ttpci_budget_init -EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdd3443fa ttpci_budget_set_video_port -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x16ba7615 nal_hevc_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x205a7626 nal_h264_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x20e25b80 nal_hevc_write_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x48739b6d nal_hevc_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4c703982 nal_h264_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4eca63ff nal_h264_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x6b35c98e nal_h264_write_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x7432d9ba nal_h264_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8675511f nal_hevc_read_filler -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa5f42207 nal_hevc_write_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xb212a05c nal_hevc_read_pps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xccb8852b nal_hevc_read_vps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe6705081 nal_hevc_read_sps -EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe8b1c627 nal_h264_write_filler -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x5d009af9 mccic_register -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x5d8c140e mccic_irq -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x64acf29e mccic_shutdown -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xc9a6aab4 mccic_resume -EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xf2648eae mccic_suspend -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x218ed857 vpu_ipi_register -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x40cc5d5f vpu_get_plat_device -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x5246f923 vpu_load_firmware -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x56db3aae vpu_wdt_reg_handler -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x76867ce7 vpu_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x9db14cd1 vpu_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xa0755125 vpu_ipi_send -EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xf341c685 vpu_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x05189ac9 venus_helper_vb2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x061d6b86 venus_helper_set_multistream -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07320a90 venus_helper_release_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x07e569cd venus_helper_intbufs_realloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x13cb75b2 venus_helper_change_dpb_owner -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x18f48270 venus_helper_find_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1a8202d5 venus_helper_process_initial_out_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1e262097 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x852f4873 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x89122e4a ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9e84a175 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x09720188 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x27f92dcf nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x33cd25f1 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4af6730e nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x7a1aef54 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x7ca317c6 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8351fb86 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xa36029a4 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xb2a5ddb4 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xcf4a6600 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdc614a8c nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdf97fb5a nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe7ed5430 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xf8ea4404 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x07a6e092 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x3e0a88f5 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x916e9ca2 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xaaacb8b8 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xfa369df5 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x5982e40a vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x6a6ebed6 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x6aa582d3 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7d4261ce vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x939662b5 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xccc02ed1 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xdc455e68 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xeb22b109 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x05386c03 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0e210992 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0efcaadb venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x15d2c355 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x181597b7 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1cb9f84a venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2196dcfc venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21b17cf7 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27a563e9 hfi_session_get_property EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x27b12c5f venus_helper_m2m_device_run +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x28af539f venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2a94b161 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2ba8423a venus_helper_vb2_buf_prepare EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2d693ecb venus_helper_m2m_job_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x371b154e hfi_session_process_buf -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3b82f1a0 hfi_session_destroy -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x434793dc venus_helper_set_stride -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4771fb26 venus_helper_set_format_constraints -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x48bf82f7 venus_helper_set_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x491c44da venus_helper_get_opb_size -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4d561e05 venus_helper_set_color_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4f0e5a22 hfi_session_abort -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4fc57698 venus_helper_vb2_stop_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5449e9b0 venus_helper_free_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x54ad5fc2 venus_helper_check_codec -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5ac60795 venus_helper_set_input_resolution -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5d7066d3 venus_helper_intbufs_alloc -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5f4b842d venus_helper_vb2_start_streaming -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x608ab88c venus_helper_vb2_buf_prepare -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6dcaa2fb venus_helper_set_dyn_bufmode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7b239f97 venus_helper_init_instance -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8058f5ea venus_helper_check_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x85b77755 venus_helper_intbufs_free -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x88f7166a venus_helper_vb2_buf_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ae45ee4 venus_helper_queue_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8deddda9 venus_helper_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x926a7754 venus_helper_vb2_queue_error -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x959c06ec venus_helper_set_raw_format -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9ad66cd3 venus_helper_unregister_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9db1f10b venus_helper_set_work_mode -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9e4a2e8c venus_helper_buffers_done -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9f285b38 hfi_session_continue -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa0ee2ba5 venus_helper_get_ts_metadata -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaa44dac5 hfi_session_init -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xae07cfdf venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2dd2dd49 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2f14afe6 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x30c5cd86 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x32aece6a venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3309c7d0 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3aa29b8c venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3cc37196 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x47d2e68d hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4e3a607f venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x61b472ad hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x63dd5273 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6490f22d venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x69fba157 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6f5d3799 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7000e090 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x723a5c81 venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x73d0f107 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7624eb55 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7b0ab617 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x857c82cf venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x867220f9 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8c49e564 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9530c367 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x97a36d48 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb054d808 venus_helper_set_num_bufs EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb5da1da9 venus_helper_get_framesz_raw -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb797ce45 hfi_session_flush -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb7c4695c venus_helper_process_initial_cap_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xba6d0520 venus_helper_set_bufsize -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc1300de0 hfi_session_create -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcb420b47 venus_helper_alloc_dpb_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcd95ee45 hfi_session_deinit -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcedb5bcc hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbd0e0b7f venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbe9d3e0b venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc2174a51 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc21b5c10 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc2c6d436 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc3d5ecdc venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd1cb0b59 hfi_session_set_property EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd21da2e4 venus_helper_get_framesz -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd72b2aff hfi_session_start -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xda52e2ce venus_helper_get_out_fmts -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdff16def hfi_session_unload_res -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe18db140 venus_helper_get_profile_level -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xebf37a65 hfi_session_stop -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf5394794 venus_helper_set_num_bufs -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfa1f9422 venus_helper_acquire_buf_ref -EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xff4d2652 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd65a074a venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdeae97b4 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe32fc6ca hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe7b54218 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe86ec447 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xede6499d venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xef09599f venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf0684219 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf832e8e5 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xff3b6ba8 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x0e7f80dc rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x462696f0 rcar_fcp_get_device EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x5f5660e1 vsp1_du_atomic_begin -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x63fe5a23 vsp1_du_map_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xa18ad6e9 vsp1_du_atomic_update -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xa77ba964 vsp1_du_unmap_sg -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xd6877a9b vsp1_du_atomic_flush -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe81eb142 vsp1_du_init -EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xf42945a1 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x4afab41c vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x50cbc34d vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x58346f22 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9cb19c65 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9e7c3f0d vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc8679c96 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xe83736fb vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2a3afde8 xvip_of_get_format EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32a020d5 xvip_set_format_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5919e469 xvip_clr_and_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5a316d08 xvip_enum_frame_size -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x737a1d7b xvip_cleanup_resources -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x96766db3 xvip_of_get_format -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x99ee1860 xvip_enum_mbus_code -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa4738354 xvip_clr_or_set -EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa95519cd xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x366317db xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4aad5ebf xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x90825a09 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9b03f0a5 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa56a2879 xvip_enum_frame_size EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcdc119b9 xvip_enum_mbus_code EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_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 0x5f93b3cf xvtc_of_get EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xcf48dcd1 radio_tea5777_exit -EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfc2604f1 radio_tea5777_init -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x30cda490 si470x_stop -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5ce8e840 si470x_ctrl_ops -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xad619b8f si470x_viddev_template -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xc9fe92bc si470x_start -EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xfda074e6 si470x_set_freq -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2426467d rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xe3df2394 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2688aa49 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xa077d026 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x17791214 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5602d144 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6f678a2d si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe23f9107 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xee4a2438 si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0345f006 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2753e2b8 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e4855e4 rc_keyup EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x38aa2721 rc_keydown_notimeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65778992 devm_rc_allocate_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ddf7050 rc_keydown -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ea0977c ir_raw_event_set_idle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7653f700 ir_raw_event_store_edge -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7c8c9287 ir_raw_event_store_with_timeout -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8750dc15 ir_raw_event_store_with_filter -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9e102262 lirc_scancode_event -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa1647535 rc_keyup -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb10398fe ir_raw_event_store -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb57b8f07 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3394cb0e rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3516b4ed ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3a57afd6 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3c08eac8 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x42d872a5 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5556c39f ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a66658d devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5ea0775a rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7226b5c9 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7402d99d lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8e1657b7 devm_rc_allocate_device EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xba38df7f devm_rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcb8ebdf rc_repeat -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcdf45274 rc_free_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd18c578b rc_register_device -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda7ae34e ir_raw_event_handle -EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xedacc805 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcd409eaf ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd5b3fed3 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf440e374 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf899be94 ir_raw_event_store_with_timeout EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0xe8b0960e fc0011_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0xcd275840 fc0012_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0x5ba8d9ce fc0013_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x7a080dc7 max2165_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xdefdd833 mc44s803_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x23af04ae mt2060_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x80330e02 mt2063_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xc46c964a microtune_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x3e3396a6 mt2131_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0xd38593b0 mt2266_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0x8fcf767c mxl5005s_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x37af3b53 mxl5007t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x7e93c0b4 qt1010_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x2008c3bd r820t_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0xfaa0816f tda18218_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x86016ad3 tda18271_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xdea8a4e6 tda827x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4c1ba217 tda829x_probe -EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x654a668e tda829x_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x63773856 tda9887_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x77bd9796 tea5761_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xca2a28cb tea5761_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1b6c0dfa tea5767_autodetection -EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x73b11361 tea5767_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x1239e1ee simple_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0x93381f0e xc2028_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x39f66b7b xc4000_attach -EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x9edb7ea9 xc5000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0011 0x2ad6a966 fc0011_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0012 0x9b7b2bcb fc0012_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/fc0013 0xb7595adb fc0013_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/max2165 0x7518a9ca max2165_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mc44s803 0xbae8ce9f mc44s803_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2060 0x41d33e84 mt2060_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xe42618ae mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x591610aa microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2131 0x5c4fac8c mt2131_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2266 0xfc5419f4 mt2266_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5005s 0xef8aedff mxl5005s_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x45b5747d mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/qt1010 0x51424af0 qt1010_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x250738b3 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18218 0x7b69e52e tda18218_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x760338d3 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x0e0b6057 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x3258e4a2 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x56a06ba1 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xf5e7e8fb tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5cbaf866 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6d065e20 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x01d7c44c tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe521c3cc tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9b1fa712 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc2028 0x7dbc9524 xc2028_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc4000 0x06bdc26e xc4000_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/xc5000 0x178293dc xc5000_attach EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1134d275 cx231xx_uninit_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e820f85 cx231xx_init_bulk -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3313a9d6 cx231xx_send_gpio_cmd -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5014b055 cx231xx_uninit_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57f96fab is_fw_load -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5c9427cd cx231xx_send_usb_command -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5d5a0ae9 cx231xx_enable_i2c_port_3 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x629493f9 cx231xx_set_alt_setting -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x713a5364 cx231xx_demod_reset -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x72d016eb cx231xx_uninit_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77e454f0 cx231xx_init_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x791c76d8 cx231xx_unmute_audio -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7bcb83cf cx231xx_dev_uninit -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7cc7fac7 cx231xx_disable656 -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8aacfa3b cx231xx_dev_init -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9de6400f cx231xx_init_vbi_isoc -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd80952f cx231xx_capture_start -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdf475e33 cx231xx_get_i2c_adap -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe048064c cx231xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe754099 cx231xx_enable656 -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x1202bb5a mxl111sf_demod_attach -EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x6b7df068 mxl111sf_tuner_attach -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x16fe4b6e em28xx_read_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1bf57365 em28xx_audio_setup -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1f201838 em28xx_init_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x336641c3 em28xx_init_camera -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3384a09f em28xx_gpio_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3385b221 em28xx_write_reg -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x55388c6d em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x115338a2 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x161d70de cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x35ae70ec cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4f7b2bab cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x50735a82 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x579e857c is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5bc61e08 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x61fe8ac5 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x642506da cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x690cf307 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6a32eaf6 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x715db9b3 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7bac6918 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8acb10ec cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8b29bc92 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x97eea3fd cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaa6fa51e cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb76f178f cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe697bc84 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfebac54a cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x2922030b mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xe388a43a mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x04e7fa46 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x06d63541 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x09b00613 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1afdc347 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2c073f02 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4523332f em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x52576fbe em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5e00dd0b em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62c85625 em28xx_write_ac97 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x763c4e33 em28xx_read_ac97 EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x85d3dfd2 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d00d0b8 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8faadae0 em28xx_stop_urbs EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9c26dc40 em28xx_audio_analog_set -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa51da0e4 em28xx_write_reg_bits -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa89b8c09 em28xx_alloc_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc314c379 em28xx_uninit_usb_xfer -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd04c253a em28xx_write_regs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd17c9aaa em28xx_stop_urbs -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd507c26f em28xx_setup_xc3028 -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd935947 em28xx_set_mode -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde076af3 em28xx_find_led -EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xef24c9a9 em28xx_write_ac97 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x03c840d2 v4l2_async_nf_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1121fd97 __v4l2_async_nf_add_fwnode_remote -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1cd9d424 __v4l2_async_nf_add_fwnode -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x26dfb913 __v4l2_async_nf_add_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x3f5b346d __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbe692dad em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc2f09c0a em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd0dffa58 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd8d413e1 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe87760dd em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf6f0fae3 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x1442edd2 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5dea15b3 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb095d864 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb8565b60 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc11e69cf v4l2_async_nf_cleanup EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr @@ -14474,20 +14474,20 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xd034392d v4l2_match_dv_timings EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xf56238f4 v4l2_find_dv_timings_cea861_vic EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0xff585440 v4l2_dv_timings_aspect_ratio -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x99819daf v4l2_flash_indicator_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd8e5c2cb v4l2_flash_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf70ef400 v4l2_flash_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x00fbb8ff v4l2_fwnode_connector_add_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0ead6372 v4l2_fwnode_device_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2645d0cd v4l2_async_register_subdev_sensor -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x432b2f08 v4l2_fwnode_endpoint_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x45bc09f1 v4l2_fwnode_parse_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x46a3a8d7 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x051133dd v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x1d09dca3 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xb7ddabba v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x0fc8b828 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x116f246f v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x16483bf6 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x196c6ab3 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2082952b v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2483457e v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4e757722 v4l2_async_register_subdev_sensor EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x69e21316 v4l2_fwnode_put_link -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7ce4c0b8 v4l2_async_nf_parse_fwnode_endpoints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x82551f8c v4l2_fwnode_connector_parse -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd0d7c6a9 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa22c3258 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xb2f72b00 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd5e1c92e v4l2_fwnode_parse_link EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists @@ -14496,53 +14496,53 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8956e3f v4l2_jpeg_parse_huffman_tables EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xe8f40f9e v4l2_jpeg_parse_header EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0xf8ffd565 v4l2_jpeg_parse_quantization_tables -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x055ccee5 v4l2_m2m_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0ad94739 v4l2_m2m_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11304a52 v4l2_m2m_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d359410 v4l2_m2m_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f5ac25c v4l2_m2m_try_schedule -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x204f1dda v4l2_m2m_buf_copy_metadata -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29a96aae v4l2_m2m_update_stop_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2ea878e4 v4l2_m2m_ioctl_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36efbbfc v4l2_m2m_ioctl_stateless_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37e40ac1 v4l2_m2m_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x45f50b27 v4l2_m2m_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x469231b9 v4l2_m2m_ioctl_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4745396f v4l2_m2m_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a89af3a v4l2_m2m_buf_remove -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f7c5fef v4l2_m2m_ioctl_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ff626a6 v4l2_m2m_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x56c2aeb9 v4l2_m2m_next_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59e499fe v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cc645f8 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d1c9acb v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d20e4cc v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17691f84 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1cceae62 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c2e7372 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ed29e90 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x413d9068 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43debd04 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ff33260 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x53699d50 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5678d3c1 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5afbbe82 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5afca161 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d23a782 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63424f8b v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6b58626b v4l2_m2m_last_buffer_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x776fcb8d v4l2_m2m_fop_poll -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x78baaad1 v4l2_m2m_encoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b03aaf6 v4l2_m2m_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7cf52bb5 v4l2_m2m_ioctl_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e60f6c6 v4l2_m2m_ctx_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e94d033 v4l2_m2m_ioctl_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f4d15f8 v4l2_m2m_prepare_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9056f043 v4l2_m2m_last_buffer_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94d431d8 v4l2_m2m_ioctl_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x96f00bee v4l2_m2m_ctx_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3745e7b v4l2_m2m_request_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa6b3d662 v4l2_m2m_buf_remove_by_buf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafa6398a v4l2_m2m_ioctl_stateless_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb73c7c9c v4l2_m2m_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe98967d v4l2_m2m_ioctl_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3707a51 v4l2_m2m_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc3cae93d v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a7b07d3 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7e0763bb v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f465134 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x83db51ff v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86ce6694 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89080984 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8efc3a1b v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f3f14c7 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9043a05d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x92de8fb7 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9a408ddc v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9dfc7162 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa12ff243 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf251ece v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb567f104 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba1765b7 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 0xcc7b7898 v4l2_m2m_ioctl_try_decoder_cmd -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1f21fbf v4l2_m2m_ioctl_expbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xda2f452c v4l2_m2m_ioctl_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe18b4478 v4l2_m2m_update_start_streaming_state -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe36cfaff v4l2_m2m_ioctl_create_bufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe3c3c896 v4l2_m2m_register_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe4fca44f v4l2_m2m_buf_remove_by_idx -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee6c8f0b v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0ea659f v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6232474 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe63b0638 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6c67346 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe8edf05c v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeaabb177 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xef281d10 v4l2_m2m_ioctl_prepare_buf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfaf5e7fa v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf4688e74 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5cd0e4b v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf7150112 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa4f9a82 v4l2_m2m_last_buf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled @@ -14552,366 +14552,366 @@ EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x05c4cee2 videobuf_queue_to_vaddr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1dfefaaa videobuf_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27bc5133 videobuf_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27c1d152 videobuf_read_one -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x288c738e videobuf_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3fe0b512 videobuf_querybuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b4b25bb videobuf_queue_is_busy -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x679598db videobuf_queue_cancel -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6bd6ac63 videobuf_alloc_vb -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6d9212cd videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x84722a35 videobuf_streamon -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa10022c5 videobuf_reqbufs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa331feda __videobuf_mmap_setup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5cbf986 videobuf_mmap_mapper -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb5d56a21 videobuf_read_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbf78883c videobuf_read_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc18e80f7 videobuf_read_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc6d73eab videobuf_queue_core_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcbadf86a videobuf_iolock -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcf8b1500 videobuf_mmap_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2ea37b3 videobuf_next_field -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea573ae7 videobuf_poll_stream -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf27f5d71 videobuf_waiton -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf29edaa2 videobuf_streamoff -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x537000de videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x090530c1 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x117358f1 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1434bb89 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x35db8da1 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x41b2be0c videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x461cdb94 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56db81ba videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5bec796f videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63acf1b4 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6de68905 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8314ac49 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8e73030b videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9c0e72b8 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa11bbd1a videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa7fcf3e7 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb67b8656 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb7ad337a videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9fd9412 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd1e82026 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xda97579e __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdb45c23b videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0572e59 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe9ab623c videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeae2822f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x073d1cba videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2058ab63 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 0x6551e96c videobuf_dma_free -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x8711f0d1 videobuf_to_dma -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xdfa35529 videobuf_dma_unmap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00da221a v4l2_fh_open -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0312c652 video_device_pipeline -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f85f045 v4l2_event_unsubscribe_all -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1158ab32 v4l2_spi_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x118af5b1 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x72d7dd61 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcf77408f videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x087d1261 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x08b24962 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x104dbbeb v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11e0e4ff v4l2_create_fwnode_links EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1550d2ed v4l2_fh_add -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x167bd8c5 video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2167a3c3 __video_device_pipeline_stop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21e89620 v4l2_subdev_set_routing -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29628650 video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12c8ac30 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13ec090e v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1e52c818 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27c94571 v4l2_subdev_routing_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b6856cd __tracepoint_vb2_v4l2_dqbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c53c7f6 v4l2_subdev_get_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cba9552 __traceiter_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d003611 v4l2_spi_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x377e91d1 v4l2_i2c_subdev_init -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x387306ce v4l2_subdev_put_privacy_led -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3d2e8f89 v4l2_i2c_subdev_addr -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x409cc08b v4l2_event_queue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40e0dc91 __v4l2_device_register_subdev_nodes -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x430873d3 v4l2_pipeline_pm_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x478c8615 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ccc6870 v4l2_subdev_set_routing +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e094d17 v4l2_subdev_put_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35bae370 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40e64a2a v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42dc82c4 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x43a4dca9 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4447d33b v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x445ed70e __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x469c2964 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x485b5036 v4l2_g_parm_cap EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4894cd55 v4l2_subdev_state_xlate_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4cd75a9e v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x498e0899 __traceiter_vb2_v4l2_buf_done EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5074e573 v4l2_fraction_to_interval -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52010dbd v4l2_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5aad92ed v4l2_event_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5dc85404 v4l2_i2c_new_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5debd8b4 v4l2_src_change_event_subscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62299330 v4l2_subdev_routing_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63328bc1 v4l2_device_unregister_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x648f2b41 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53f0b9ec v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x569ca209 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5714d27c __video_device_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a9b645e v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5bd4ecfa v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f76d55d v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60161655 v4l2_subdev_enable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x624f0b5e v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x632ced52 video_device_pipeline_alloc_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64602fd1 v4l2_subdev_has_pad_interdep EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65d7839c v4l2_subdev_state_get_opposite_stream_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x68e1c406 __v4l2_subdev_init_finalize -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6994ce83 v4l2_fh_exit -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6adba929 v4l2_subdev_enable_streams EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71e3bbc9 v4l2_device_unregister -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f4aa0c8 v4l2_subdev_has_pad_interdep -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8764e338 v4l2_g_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b47ac1e v4l2_i2c_subdev_set_name -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b6bd4a5 v4l_vb2q_enable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c9b6fa7 v4l2_s_parm_cap -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fdb845e v4l2_pipeline_pm_get -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x922d0714 v4l2_ctrl_request_hdl_ctrl_find -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x955c7af3 v4l2_create_fwnode_links_to_pad -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x957156ef v4l2_subdev_set_routing_with_fmt -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x994b517f v4l2_subdev_get_fwnode_pad_1_to_1 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9db0a7f5 v4l2_subdev_link_validate -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e0018c5 v4l2_subdev_link_validate_default -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ec014f3 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x740df512 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x76cd3996 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78e6a0cb v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78e70599 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ce62efd v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82cd0c88 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x830cba1e v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83c55757 video_device_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x844b015c v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x898c1835 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b33432a video_device_pipeline +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c35bda7 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f8e52ae v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x996e6fd5 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d9e21ff v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e5e9e0c v4l2_subdev_link_validate EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3010639 v4l2_fh_release -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa592a570 v4l2_get_link_freq -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa666035f v4l2_fh_del -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab2e4dac v4l2_fh_is_singular -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab9f1a10 v4l2_device_put -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac837f29 v4l2_subdev_disable_streams -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad3d9490 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1158616 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5d8d183 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa64ec055 v4l2_subdev_disable_streams +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac92e3bf v4l2_src_change_event_subdev_subscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xad5c3c93 v4l2_simplify_fraction EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3dd8d6 __v4l2_subdev_next_active_route -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb028d333 v4l2_pipeline_link_notify -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2c8cd20 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae910ef1 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3969fc8 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb433e544 video_device_pipeline_start EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb48cf8aa __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb4d92c51 __video_device_pipeline_stop EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5a337db v4l2_subdev_state_get_stream_compose -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7577d32 v4l2_event_subdev_unsubscribe -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb76136f9 __v4l2_subdev_state_alloc -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbaa085f4 v4l2_device_register -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbafc9e19 v4l2_event_pending -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbeed4254 v4l2_device_register_subdev -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc1607ac5 v4l2_event_dequeue -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc724d632 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb86be020 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8e3f5b5 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb47df49 v4l2_subdev_get_privacy_led +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbdd6e146 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5194878 v4l2_subdev_get_fwnode_pad_1_to_1 EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc86897a7 v4l2_subdev_state_get_stream_format -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca45b168 __video_device_pipeline_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb128a8a v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca89ba4f v4l2_subdev_cleanup EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd9fce97 v4l2_event_unsubscribe_all EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf754c8f v4l2_subdev_routing_find_opposite_end -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd679d72a v4l2_compat_ioctl32 -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdcf3f196 v4l2_subdev_cleanup -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdda0e336 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0c54ccb v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4469295 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd68ebe9b v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd85f18d4 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdce148bf v4l2_event_subdev_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde6e37d9 __v4l2_subdev_state_free EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdef3dffd __tracepoint_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf40bcb7 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdfb10d5d v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0b98a71 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1df5feb v4l2_subdev_s_stream_helper EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2e9f0ce v4l2_ctrl_request_hdl_find EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe7e4e46e v4l2_subdev_s_stream_helper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5aa73bb v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9bf7a83 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xea9fddc3 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed16f4ff v4l2_subdev_get_fmt EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed6c9ccf v4l2_subdev_state_get_stream_crop -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf12a5cec v4l2_event_queue_fh -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf22bc6b2 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xedd9979a v4l2_event_unsubscribe EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf379f35e __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf43daaf2 v4l2_subdev_set_routing_with_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf56b6e4c v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5b3322c v4l_enable_media_source EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf69262c0 video_device_pipeline_alloc_start -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf817d4a8 __traceiter_vb2_v4l2_buf_done -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc7d3000 v4l_disable_media_source -EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe808a35 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8cb1084 __v4l2_subdev_init_finalize EXPORT_SYMBOL_GPL drivers/memory/omap-gpmc 0x1bc40a8d gpmc_omap_get_nand_ops -EXPORT_SYMBOL_GPL drivers/memory/omap-gpmc 0x7242095c gpmc_omap_onenand_set_timings -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x358fd458 pm80x_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4ff0a632 pm80x_regmap_config -EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x968cb9f1 pm80x_init +EXPORT_SYMBOL_GPL drivers/memory/omap-gpmc 0xfbdfcdd4 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2756caf4 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa5cc6b1b pm80x_regmap_config EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf6c267b5 pm80x_init EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x02b2fecf cs47l24_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x051a9395 wm8997_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x08b45e05 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0cc3632a wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0f792f36 cs47l24_spi_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1949d8fa wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e4ad41b wm5102_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3501187e wm5110_irq EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x39419a43 wm8997_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3f67977d wm5102_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4add55f0 wm8997_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6dad80c5 wm8998_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7c5f5631 wm5102_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x810c020c wm5110_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x82e06f1e arizona_set_irq_wake -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88d4e540 cs47l24_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x91d3baa4 arizona_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9451eb4f arizona_dev_init -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xabb9c618 cs47l24_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xac75a9f8 arizona_request_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc0723424 wm5110_patch -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc1797b3a arizona_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc234c340 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x41b27d41 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4465b24e cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5bf01696 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x61553c83 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6d721557 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x73019382 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7c80c3a3 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x88a7a564 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9021416a wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9d41a13b arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa60849fd arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc84ae885 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc9abc49b wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3198026 wm5110_i2c_regmap EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd3fee6a6 wm5110_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xddbd847a arizona_dev_exit EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdfbe649b wm8997_aod -EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe6f46cbc arizona_clk32k_disable -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x6448e01d atc260x_device_probe -EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x82c944b6 atc260x_match_device -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x22b6372f da9150_read_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3988743a da9150_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x71257458 da9150_bulk_read -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7b660dd6 da9150_write_qif -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x832c2135 da9150_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb3a4f4b9 da9150_bulk_write -EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdf6c8919 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xefe426c8 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x82f28e0e atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x8d0b5512 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x283991cb da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3a31b2ad da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x63349d2d da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x74320bb2 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x809c5ee5 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9f6a97de da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd5e70a69 da9150_reg_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xa142a524 gsc_read EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0xb7abd1c4 gsc_write EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x20b34854 kempld_get_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5a51e476 kempld_read16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x65e871ea kempld_release_mutex -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x817b1424 kempld_write8 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9d96c4f0 kempld_read32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa366191e kempld_write32 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd5a91f3f kempld_write16 -EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf64975ed kempld_read8 -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x725af71f lm3533_update -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x827d1809 lm3533_read -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xbbf1f72d lm3533_write -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0fa099d2 lm3533_ctrlbank_set_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3b2062a9 lm3533_ctrlbank_get_pwm -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x53701758 lm3533_ctrlbank_enable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x72c9386b lm3533_ctrlbank_disable -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd24f5903 lm3533_ctrlbank_get_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd97487e3 lm3533_ctrlbank_set_brightness -EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfa91ff7e lm3533_ctrlbank_set_max_current -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x80d972c9 lp3943_update_bits -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xa2b363ab lp3943_read_byte -EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd6c2ce4c lp3943_write_byte -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x01f074d3 cs47l92_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x01fda893 cs47l92_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x05856c6d madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x27ff0e10 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x67bc4044 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8be79f8b kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x95a1a4ef kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x98fdb933 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd0fa9d51 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe0382e96 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xee32bf12 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x11a61c9a lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1e21b1d1 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xecd88974 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x388be3ea lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x75004af1 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x87560067 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9c6f715b lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa6ef2f54 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd2a46c9a lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xee5ffddb lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x49848b1c lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9c3e4baf lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xea163bc4 lp3943_write_byte EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1cd683e6 cs47l35_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1cdb5fa6 cs47l35_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x28f401ab cs47l90_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ea4189e cs47l85_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ea9c4de cs47l85_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x358fa568 cs47l15_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x36716f2e cs47l90_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x367cb36e cs47l90_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42c569df cs47l92_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42c8b59f cs47l92_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4a56f450 madera_dev_exit -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x504e710c cs47l85_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5fe39eea cs47l35_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5fee42aa cs47l35_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6d910592 cs47l85_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6d9cd9d2 cs47l85_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x75447222 cs47l90_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7549ae62 cs47l90_16bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x81912ea4 cs47l92_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x95203426 cs47l15_16bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0x952de866 cs47l15_32bit_i2c_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa599ddd6 cs47l35_patch -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc6c951e3 madera_pm_ops -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd615292a cs47l15_32bit_spi_regmap -EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd618f56a cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x15311622 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x25733234 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x257eee74 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3139e550 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x66462f38 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x664bf378 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x85276e9c cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8622693c cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x862fb57c cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x985cca5f cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9ef71e8c cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9efac2cc cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xac8585f4 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xac8859b4 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb1a372c1 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb1aeae81 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb52da799 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc5177430 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc51aa870 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xddc20380 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xddcfdfc0 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe0e6baf8 cs47l85_patch EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x00fe088c mc13xxx_common_exit -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x08dd83cc mc13xxx_variant_mc34708 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1ad276a4 mc13xxx_variant_mc13783 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1d67ea81 mc13xxx_common_init -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5a683d84 mc13xxx_variant_mc13892 -EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc42d3693 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeca6679f madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xefb098f8 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xefbd44b8 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf2966fcd cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf29bb38d cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfafe3fa4 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x43dd05ed mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4be7364c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x567ed441 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xaf0e11e0 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbd01e488 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfdbbafa8 mc13xxx_variant_mc13892 EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x208b8104 pcf50633_reg_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2eb75ed8 pcf50633_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x37792850 pcf50633_irq_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6718a0b9 pcf50633_register_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6ea89ccf pcf50633_irq_mask_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7ae75b85 pcf50633_pm -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb393b829 pcf50633_irq_unmask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc10afa16 pcf50633_free_irq -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca999f10 pcf50633_read_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5770c71 pcf50633_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdd8eac09 pcf50633_reg_set_bit_mask -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe61a5304 pcf50633_write_block -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xac460528 pcf50633_adc_async_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xdf578405 pcf50633_adc_sync_read -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2565ade6 pcf50633_gpio_power_supply_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x289fab3a pcf50633_gpio_invert_get -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4ebd2ffe pcf50633_gpio_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4ed688ab pcf50633_gpio_invert_set -EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x80842273 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1410a7dc pcf50633_pm +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3ed21599 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x504ff046 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x514f34a8 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6703a106 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6b4ebc88 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x864a3fc1 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x91707340 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9eb231fd pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaac9f3d5 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd4248d96 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe3e9317f pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6c8f0b4d pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd148d344 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x40c9dfea pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x69b60d37 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x78e5226c pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8a625cf6 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd0feab25 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x22313f2e devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec -EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x5d1aa84f devm_rave_sp_register_event_notifier EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0xa074c8b6 retu_write -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x2027d656 rk8xx_resume -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x7b45aa92 rk8xx_suspend -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xa6a225d5 rk8xx_shutdown -EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xac26261f rk8xx_probe -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0786126e si476x_core_cmd_fm_rds_blockcount -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b38e2b3 si476x_core_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d1081ad si476x_core_cmd_fm_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16ae3f29 si476x_core_has_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1f0ade13 si476x_core_cmd_dig_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20ceae5a si476x_core_set_power_state -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x248efaa6 si476x_core_is_a_secondary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x450ce0e7 si476x_core_cmd_am_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4cea78c4 devm_regmap_init_si476x -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4dd80c63 si476x_core_cmd_fm_rsq_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x526eb0c6 si476x_core_cmd_power_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x74477b19 si476x_core_cmd_fm_phase_diversity -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x754c3bd7 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7872092e si476x_core_has_am -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e0e756f si476x_core_cmd_am_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fbc4a31 si476x_core_is_powered_up -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a2f32e9 si476x_core_stop -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8a50a4da si476x_core_cmd_power_down -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e55e090 si476x_core_cmd_zif_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f2d73e9 si476x_core_cmd_agc_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8fcc6cde si476x_core_cmd_get_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9b9e88e5 si476x_core_cmd_ana_audio_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab6be916 si476x_core_cmd_fm_phase_div_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac03b1f2 si476x_core_cmd_fm_seek_start -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6b16b67 si476x_core_is_a_primary_tuner -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba2b9273 si476x_core_cmd_set_property -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc506d44 si476x_core_is_in_am_receiver_mode -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc46f5f61 si476x_core_i2c_xfer -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3509f0c si476x_core_cmd_fm_rds_status -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe81bb2e1 si476x_core_cmd_fm_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xec436b57 si476x_core_cmd_func_info -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee23dd7e si476x_core_cmd_intb_pin_cfg -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2810564 si476x_core_cmd_am_tune_freq -EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xffeb426d si476x_core_cmd_am_acf_status -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2d55303b sm501_find_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4b76a0d4 sm501_set_clock -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x73945d02 sm501_modify_reg -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa7a00239 sm501_misc_control -EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa87a1ddc sm501_unit_power -EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x8f10ed72 sprd_pmic_detect_charger_type -EXPORT_SYMBOL_GPL drivers/mfd/stm32-timers 0x33d1c804 stm32_timers_dma_burst_read -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x1dfa6f3a stmfx_function_disable -EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xa38da195 stmfx_function_enable -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1cafa19e am335x_tsc_se_adc_done -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3543cafc am335x_tsc_se_set_once -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x70ec2cfa am335x_tsc_se_clr -EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xec5916b5 am335x_tsc_se_set_cache -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x13022cd7 tps65217_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x73510b38 tps65217_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x94f88aee tps65217_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xad85ba04 tps65217_reg_read -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1238da22 tps65218_set_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x391c57d9 tps65218_reg_write -EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8522114a tps65218_clear_bits -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x2b97362a tps6594_device_init -EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x67dcfb0c tps6594_is_volatile_reg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2fe3c668 alcor_read32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5a5a10d0 alcor_read32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x67c6570b alcor_write32 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcc1e91e9 alcor_write16 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd7e1fe2a alcor_write8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdb5da3e0 alcor_write32be -EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe4165fd8 alcor_read8 -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x093e2aa7 rtsx_pci_card_pull_ctl_disable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x12674a63 rtsx_pci_stop_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x18378f33 rtsx_pci_card_power_on -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2c9d750c rtsx_pci_card_power_off -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3b7e8557 rtsx_pci_dma_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3bf44be1 rtsx_pci_start_run -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3cbb8bca rtsx_pci_switch_output_voltage -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4e221f4e rtsx_pci_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x697db3b9 rtsx_pci_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6b31111e rtsx_pci_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6bf3dda3 rtsx_pci_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6ecd423c rtsx_pci_send_cmd_no_wait -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8e641156 rtsx_pci_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8fa1e335 rtsx_pci_dma_map_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaea41eaf rtsx_pci_complete_unfinished_transfer -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaecc70a6 rtsx_pci_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb429f1cd rtsx_pci_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb5c35635 rtsx_pci_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb64ecc10 rtsx_pci_read_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc8a06fd0 rtsx_pci_card_pull_ctl_enable -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcccc6034 rtsx_pci_dma_unmap_sg -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xddcce704 rtsx_pci_card_exist -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xedd741a5 rtsx_pci_write_phy_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf312de2c rtsx_pci_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x08fa3459 rtsx_usb_transfer_data -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3282eb34 rtsx_usb_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3a9c4fc5 rtsx_usb_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x56e82114 rtsx_usb_get_card_status -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5c23a7dd rtsx_usb_switch_clock -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7a770715 rtsx_usb_ep0_read_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x93267200 rtsx_usb_ep0_write_register -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xadb967cd rtsx_usb_write_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xbde03013 rtsx_usb_card_exclusive_check -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc13aec8e rtsx_usb_add_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd02042ee rtsx_usb_read_ppbuf -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd4054bcd rtsx_usb_send_cmd -EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf84f4096 rtsx_usb_get_rsp -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1ad9ab3f cb710_sg_dwiter_write_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc6f1e05d cb710_pci_update_config_reg -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd4caba7c cb710_sg_dwiter_read_next_block -EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf13fc974 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0x6f758418 rk8xx_shutdown +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xb2920b5f rk8xx_suspend +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xb8e76c30 rk8xx_probe +EXPORT_SYMBOL_GPL drivers/mfd/rk8xx-core 0xe9f0779b rk8xx_resume +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x02219c75 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x023292d2 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x03f71f4b si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05fcd1cd si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x094ce750 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b23f3cf si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x15318474 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d4fb15f si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30a0fd91 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30bb1709 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37d506da si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5058a1c1 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x52b0c4f7 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ece615a si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x644268a1 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ceea4d5 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7aa4415b si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x83364c2f si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89381606 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e597b64 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa04b0737 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4c1b5d2 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4d40c70 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaec6702a si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba674c3a si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0b2cc76 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc610f6b8 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xccf1f09b si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd9e9b72 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd12b72ea si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0798a3d si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2ad390c si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee2fa961 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfaad091d si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2b61d385 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x49e5d5d8 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4d42436a sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x56736c20 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf894b166 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x375bd640 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stm32-timers 0xc2bc4740 stm32_timers_dma_burst_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x15106aa3 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xab67a40c stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x331919ea am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x533aecbb am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x76b6ffec am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xea03c5a3 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x221bcef3 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xaf9f66a6 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xcfcc4149 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xf6fec27c tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x47442e22 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7044e008 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfb7a68b1 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0x54bca14b tps6594_device_init +EXPORT_SYMBOL_GPL drivers/mfd/tps6594-core 0xe20f6d6f tps6594_is_volatile_reg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3cea3bed alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x46ece0c4 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4953ed55 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x51afd2cd alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb4d575af alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf71fa25d alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xfa77142f alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x13ad3fbb rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1f9da589 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1fcdfa78 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3a3e3e39 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5580e435 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x590984fe rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5cfccd2b rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f0737e4 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x88ff393b rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8ab39b9c rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x95597130 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa79ea9a4 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa82ed12b rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9688fcf rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xab2e3438 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xadec376b rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xaf6e6b77 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbc9e480b rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcf5a1a9b rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd7f1fef2 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdc0692dc rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xde53bf0f rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeb43522a rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfbf0e0a4 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2905e202 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x40aba967 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x549cc721 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6430c30a rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7f670e56 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8352a7f9 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x90047e80 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa2807e09 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb13e1305 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc1589759 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xcba74bd8 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd6dd3393 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe817e96f rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x70ef64b3 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x96f948a1 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9725382b cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb94e72cc cb710_sg_dwiter_read_next_block EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create @@ -14925,47 +14925,46 @@ EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x884deb9d eeprom_93cx6_read EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xc9c6bb25 eeprom_93cx6_readb EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0xff7a0fdf eeprom_93cx6_multiread -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1bccc5dd enclosure_add_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5457adbc enclosure_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x645decdf enclosure_unregister -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7f129694 enclosure_component_register -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7f9d831a enclosure_component_alloc -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x970973a1 enclosure_remove_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe6fcd030 enclosure_for_each_device -EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfd6af57f enclosure_find -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x09defff2 lis3lv02d_joystick_enable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x19ebd6b8 lis3lv02d_poweroff -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x46d5791e lis3lv02d_init_device -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x49ce7609 lis3lv02d_joystick_disable -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x86a086d0 lis3lv02d_poweron -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa0e88b1d lis3_dev -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfae8b443 lis3lv02d_init_dt -EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfe350337 lis3lv02d_remove_fs -EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x20f5bee3 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0aabe275 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1beb16b7 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x272717fd enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x52db852f enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8981fac1 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x919e5bde enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xba2dd707 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfb0ed884 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3525f058 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3a3eff4f lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x56dc86a0 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6a1b5ffe lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7a2e76b4 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x89183d05 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8dc58a71 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf5500f96 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x303ba144 devm_pvpanic_probe EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7a67653c st_register EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xf1f33992 st_unregister -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0c2f37fd uacce_register -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x72c2f922 uacce_alloc -EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe99266e7 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x1e6807f4 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x5812e74c uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xfbd556ee uacce_register EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x0ac4c00f vmci_qpair_enquev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x494b54c5 vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x746d6af7 vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue -EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x8422dbc8 vmci_qpair_peekv EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb904e5fa vmci_qpair_dequev EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner @@ -14975,1775 +14974,1786 @@ EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x92437582 dw_mci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xaf108bc6 dw_mci_pltfm_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xb78b3e25 dw_mci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x60d67a5d mmc_hsq_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xcf1a7e78 mmc_hsq_init -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe64581dd mmc_hsq_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe7a0a748 mmc_hsq_finalize_request -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x3403759d renesas_sdhi_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xb6c6db1c renesas_sdhi_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0edec6cc sdhci_end_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x137c10dc sdhci_dumpregs -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x145019fa sdhci_adma_write_desc -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1dfc59dc sdhci_reset_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1fdc47a3 sdhci_alloc_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x20a3725e sdhci_enable_v4_mode -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x252ef58b sdhci_get_cd_nogpio -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29f4c098 sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x32e934cf __sdhci_set_timeout -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4067de29 sdhci_setup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a55a52c __sdhci_read_caps -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4ece3bea sdhci_free_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5291441b __sdhci_add_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b8c4f5a sdhci_start_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5dec4a13 sdhci_set_power -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x66ca93c3 sdhci_abort_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6897e60b sdhci_request -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6cee9847 sdhci_runtime_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x742e490b sdhci_remove_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8216c98b sdhci_request_atomic -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d76454d sdhci_cqe_disable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9963e800 sdhci_execute_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9bb5c976 sdhci_cqe_enable -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c2cce20 sdhci_reset -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa89db4e1 sdhci_suspend_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb2d47723 sdhci_set_ios -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6c37ba2 sdhci_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc73c6f4 sdhci_cqe_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc0bceaf3 sdhci_runtime_resume_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc7107ba6 sdhci_send_tuning -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcde0fad0 sdhci_set_uhs_signaling -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd46488fc sdhci_enable_sdio_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd46fe7c4 sdhci_set_power_noreg -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4b67a0d sdhci_set_power_and_bus_voltage -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd7bdc778 sdhci_cleanup_host -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9b9b804 sdhci_set_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xec687575 sdhci_enable_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0711565 sdhci_set_data_timeout_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf39de277 sdhci_switch_external_dma -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf54751cc sdhci_set_bus_width -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf71eb772 sdhci_calc_clk -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfa6a9d02 sdhci_start_signal_voltage_switch -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x311439a5 sdhci_pltfm_init -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x36b01172 sdhci_pltfm_resume -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x86a9c7d7 sdhci_pltfm_suspend -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x91c83a1d sdhci_pltfm_pmops -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9cb630f8 sdhci_pltfm_unregister -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb2dcace3 sdhci_get_property -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdc171a1e sdhci_pltfm_clk_get_max_clock -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf02bcf64 sdhci_pltfm_register -EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf8f9695e sdhci_pltfm_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x031dbeb8 tmio_mmc_enable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x09489803 tmio_mmc_host_probe -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1d534fb0 tmio_mmc_host_alloc -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x3233c84e tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xfa8b7130 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x2f4603d8 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x41f3f0cc dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x9ee8143f dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x6f5622da mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x72bfb41a mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xeb34d4c9 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xf42c4f9a mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x61d082cb renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xca0034af renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x08b62a9e sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1893f826 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2d5024a8 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ebcd3ba sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38fe4b0b sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c6d5e44 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x434d2ddd sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a8797ac sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x58634d64 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5d13e29e sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5e233c8e sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f46fca3 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75f92bf7 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7c2b9289 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7cf20f40 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d996d04 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x82dbfc17 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x85c7d323 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x873e017b sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa51ea2d6 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xabb74715 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xacdb8c06 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae43b831 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb05cd666 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb941dd27 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbb9b297f sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc025711a sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc22459a4 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc30251f9 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc4331c61 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcb73eb62 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd4b4afdf sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd90a55a3 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4656627 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe50e5ff0 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe8b6f3a5 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb5d7fc9 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xecf1ee9c sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf5a83f5e sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf62cc0e0 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf8ac89e0 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfdc4d67b sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x161a1254 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3006b28f sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x48fbb102 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4c5b3470 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5369124e sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5c3fd7e9 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x72554bf2 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x801f642a sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8cb2bfd6 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2c7f665e tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x301f6ebf tmio_mmc_host_remove EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6e63c8be tmio_mmc_disable_mmc_irqs -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x73c9d7d5 tmio_mmc_do_data_irq -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7b4a9ec3 tmio_mmc_host_free -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x91583253 tmio_mmc_host_remove -EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa43d86bf tmio_mmc_host_runtime_resume -EXPORT_SYMBOL_GPL drivers/most/most_core 0x0e5624c9 most_register_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0x3188ba89 most_register_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0x40523d94 most_deregister_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0x688b9799 most_submit_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0x6b1c18cb most_start_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0x7aadfd09 most_deregister_configfs_subsys -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa3f413a7 most_stop_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xa61e73b5 most_deregister_component -EXPORT_SYMBOL_GPL drivers/most/most_core 0xb4bb15fb most_stop_channel -EXPORT_SYMBOL_GPL drivers/most/most_core 0xbc7c7ee4 most_resume_enqueue -EXPORT_SYMBOL_GPL drivers/most/most_core 0xd219415e most_register_interface -EXPORT_SYMBOL_GPL drivers/most/most_core 0xdce262d8 most_put_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf12b66ae most_get_mbo -EXPORT_SYMBOL_GPL drivers/most/most_core 0xf376449c channel_has_mbo -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x5c150cc3 cfi_cmdset_0003 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x633c292b cfi_cmdset_0001 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa10b2955 cfi_cmdset_0200 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3dd3d5e7 cfi_cmdset_0006 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x43819e37 cfi_cmdset_0002 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb07851b1 cfi_cmdset_0701 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xd246f8b0 cfi_cmdset_0020 -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8e93ab88 cfi_qry_mode_off -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x90d7aa24 cfi_qry_present -EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf0c0839c cfi_qry_mode_on -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf72100fb hyperbus_register_device -EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xfa24fa22 hyperbus_unregister_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00bb33ed mtd_ooblayout_set_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x05795806 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x059b6531 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x05fc02e4 mtd_wunit_to_pairing_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0879604e mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b3c9414 of_get_mtd_device_by_node -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c855708 mtd_ooblayout_free -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e578c74 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14cf2720 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a1875e6 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23c34b3b mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x249077df mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29ad8add mtd_ooblayout_find_eccregion -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x315bd2d0 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c6bd126 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x427d6fb9 mtd_erase_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x43fd22d0 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d0bdd62 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e81f3af mtd_ooblayout_get_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f0c50f3 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fb416b9 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ff33c3a mtd_write +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x381cd482 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x41011058 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xa80fc4ef tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xae129a73 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd28e8b39 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xda0dc22f tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xff639666 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1ac3232e most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1add980f most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x20e27c06 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2adc7380 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x31eed85c most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x559a1382 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6bc73b86 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7623893b channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x829424fc most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x82f9c90d most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x88885fe4 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9d71a44e most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xaeb46d4e most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xee49d56c most_start_channel +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0bf978f8 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc9ce7886 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf6e75d6e cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1a8a001c cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9721844a cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe973cf9a cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x78b4a91d cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x21fa41d8 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5fa969cc cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x77f69ab3 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x33e977e7 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x3eec8d3e hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x057df279 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0671142a mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x075f4cb9 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0fbdf0b8 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ab007b4 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fadf511 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2048ada0 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x21515c04 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x22c3e4a4 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x276dde3c mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d7601f6 of_get_mtd_device_by_node +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2dd0ec63 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3593ee16 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c233a7c get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42a7f111 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a43850d mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ce5f60a mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x504bc16e mtd_ooblayout_count_eccbytes EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60ed3b40 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68a3f7a0 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x706eae97 mtd_write_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7324d176 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73fd9442 mtd_ooblayout_set_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75bb4100 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7825f83a mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7d4bf4e3 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84d09d34 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x907e94c7 mtd_pairing_info_to_wunit -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa61cef3f mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab3ae669 mtd_ooblayout_count_eccbytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb12d528c mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6146d0dd mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7ae56f6c register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f12faac mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x84acec5f mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8855f671 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8eca6607 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f7a3817 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91e92d3f mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x927a17ea mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9bcdcc5c mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2fe9ce0 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5b0284e mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7e16cc5 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab133fb6 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac954ad2 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0109b3f mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb456c6c8 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb65713e3 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb67afa65 mtd_device_unregister EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb87acd61 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf281b45 get_tree_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5796741 mtd_ooblayout_ecc -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5c5fca5 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc712c68a mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9374c10 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcee2c911 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf43aad6 __register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd326965c mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe42f80a6 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4dcd216 mtd_pairing_groups -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed5b724e mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee4b6512 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8a4bec9 mtd_ooblayout_get_databytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8fbc13f mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa9b0320 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfdd7f3ab mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe0cd57e mtd_ooblayout_count_freebytes -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfeb22efb get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x55095817 deregister_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x728220b4 register_mtd_blktrans -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x76391500 mtd_blktrans_cease_background -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9a640c66 add_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf7782d76 del_mtd_blktrans_dev -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1f1d9791 nanddev_bbt_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x24743504 nand_ecc_init_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x29ee7e71 nand_get_small_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4bd5228f nanddev_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x51876456 nanddev_ecc_engine_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x53e47338 nanddev_ecc_engine_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6b0997f5 mxic_ecc_get_pipelined_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6c01a49c nanddev_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6fdc8806 nand_ecc_restore_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x72c44fce nanddev_markbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7dee6395 mxic_ecc_process_data_pipelined -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x82af19a8 nanddev_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x84c7281a nanddev_isbad -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ae08e08 mxic_ecc_get_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8d4be53a nanddev_bbt_get_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8f2e85e1 nanddev_mtd_max_bad_blocks -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9c234b7f mxic_ecc_put_pipelined_engine -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9d971449 nand_get_large_page_hamming_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa0f6c76b nanddev_bbt_set_block_status -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb041fbde nand_ecc_tweak_req -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdd054635 nand_ecc_cleanup_req_tweaking -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe87cb023 nanddev_mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf70f0357 nanddev_bbt_update -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf747f4ac nand_get_large_page_ooblayout -EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfb9e850a nanddev_bbt_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x4e1aa7f0 onenand_scan -EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xecb0c98a onenand_release -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x3f6bd995 brcmnand_probe -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4437a86f brcmnand_pm_ops -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xf7b13a52 brcmnand_remove -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x33da0486 denali_chip_init -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x05eb0d26 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8527a40 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb85390de mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb913b838 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbdc8d088 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc891318e mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0e437c3 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7e4b1b1 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde26a2d7 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfd3c020 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2af8a90 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4e61f3b mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe97b4d8d mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xee91ee75 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2a5e994 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf38fdc43 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf80ccc9b mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf9241977 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x28843156 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x45981046 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa9c50920 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xcf41a355 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe8cadbf6 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0eeda3a5 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x118f3e6b nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x24a80570 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x25317d51 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x289d3729 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x33cbe07a nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x59c00a26 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5b8085f3 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7158b5dd nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x77dc3f07 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7b4db95a nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x904c7cd6 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x935f2d9c nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9e51108a nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa356a89d nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaec5c605 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc3b9cd20 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc5f2b33d mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcd3b8cb5 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xddc5de5b nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xde9d34fe nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdfa6c935 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe78c59bf nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe7e284fc mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf634bdf4 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xac24b804 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xecaae014 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4a6ca089 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xa82262dc brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xf6509cee brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x8124bc8a denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x044665f4 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0cbc6642 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0f64514c nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x10c8c706 nand_prog_page_begin_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1763b3d4 nand_read_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1b27e9a7 nand_deselect_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1e598ed6 nand_read_page_hwecc_oob_first -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x236bfbc7 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x159307db nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1bfcce93 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x22a63f90 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x23b0dcf3 nand_deselect_target EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x37f36418 nand_reset_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x45adb733 nand_soft_waitrdy -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x550e3553 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3ee0024f nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4a8f3120 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4be0bdf2 nand_status_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7247d4ec nand_reset -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x89ad0154 nand_cleanup -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8f37a6aa nand_erase_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8f7dcfe1 nand_ecc_choose_conf -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8fb9c74f nand_write_data_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x94d85a81 nand_readid_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9e74cd06 nand_status_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa69ec60b nand_decode_ext_id -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb70cc56e nand_op_parser_exec_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc32612c2 nand_select_target -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc6672eb2 nand_prog_page_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc91f357b nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x61eacb7f nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6a20544a nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b748b56 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7b936b86 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8676c4ce nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x938d7c25 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9e09f35f nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa9e6e708 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb13a3400 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcaabf9eb nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcc4d5f1e nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd2cd9213 nand_change_read_column_op EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe285dec4 nand_change_read_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe84febfb nand_prog_page_begin_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xefff6f1f nand_read_oob_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfd600b46 nand_change_write_column_op -EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x608c2207 sm_register_device -EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x541c9532 spi_nor_scan -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x34baf0f6 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdf9cc84d nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x06d04db1 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd548de01 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x13e638e7 ubi_leb_unmap EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3b2199a7 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3b4a7a8e ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3e224bdd ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x40a7fdf6 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x40b1241d ubi_open_volume_path EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x532298c8 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x65425ea0 ubi_close_volume EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x67fb35e7 ubi_leb_map EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x906e7ff1 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9fb5f22e ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb2d86719 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc430193f ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe0a6eb3f ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf2d07843 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x971af4a9 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x98e2e1ab ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xae24df05 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb097add3 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8e93a3f ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc6d3bbaa ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7fa232e ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe35d9d77 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7d7aaa8 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xec3dce6e ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf388ec4f ubi_leb_write EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb047215 ubi_leb_write EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1b6d837c mux_control_put -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2141d58d devm_mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2e10b104 mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x52629b89 mux_control_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x58b32078 mux_control_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x58c53d6e mux_control_get -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6302f625 mux_chip_unregister -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x631697d2 mux_chip_free -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6fa98069 mux_control_states -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x75bd60d3 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0b37909b mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x39426251 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x46c5433b mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x46d122cc mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6ac82f6a mux_control_try_select_delay EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8d0252b6 mux_control_try_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8d83b95d devm_mux_chip_alloc -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd61e371e devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x83b8bb1b devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x95545240 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa54b3a65 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xab17564b devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb5a8e655 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd68af144 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd8618c1e mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe1905155 mux_control_states EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay -EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfda63900 mux_chip_register -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x3ec6e0ac devm_arcnet_led_init -EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd0158d95 arcnet_led_event -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x15a8118f free_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x477e6bcb c_can_power_up -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x65aa77d6 c_can_power_down -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8a0ebfc5 alloc_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xae1d911f register_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb365ffbf unregister_c_can_dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x07b5e531 unregister_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x760cb294 free_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc8cb2121 register_cc770dev -EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf5f05a4c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfe14f561 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x63670ee7 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xd33d97ba devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x05d6f245 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x14beea4e c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x366af653 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x64bc8c17 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc2716227 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdf090c87 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x07182f0c free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x48232590 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x76a178a9 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb9dfbcb9 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x02cb7d73 can_rx_offload_threaded_irq_finish EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1d33ad6a can_get_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x20a54e47 free_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2158ced9 can_rx_offload_add_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d06d954 safe_candev_priv -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2df93f04 open_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2f779e18 can_rx_offload_queue_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x35a88501 can_rx_offload_threaded_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4178f663 alloc_canxl_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x440e7b4a can_rx_offload_add_manual -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x47a3c170 can_free_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x504b0a2e alloc_can_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b7405ac can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25dddb93 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x35e77f2d free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x363b645d can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38bb0e6e open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3e75c463 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4e68fd9f can_dropped_invalid_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4ecf4658 alloc_canxl_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x55a741bf can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x591a2588 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5feb1786 can_rx_offload_del EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6888eff4 can_rx_offload_del -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e1a73c3 can_bus_off -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e79ddfa can_rx_offload_irq_offload_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8760b315 can_rx_offload_irq_finish -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x89010efc can_rx_offload_add_fifo -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8a21b4c9 can_rx_offload_enable -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8cac6d4e can_rx_offload_irq_offload_timestamp -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x988a3d7c can_put_echo_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9bc389b9 close_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9e3b3fe2 can_change_mtu -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa560ad4d can_skb_get_frame_len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa5dd1018 unregister_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8aeea08 can_dropped_invalid_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0ead424 register_candev -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd274ef3 can_change_state -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd81a8e6 alloc_candev_mqs -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbf10c379 alloc_can_err_skb -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbfe99f10 of_can_transceiver -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe805846e can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6be3a407 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b5842a9 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7f4db789 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x80e573c5 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8e81b8d3 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x944016d4 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x96aaf0db can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x983507f7 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0f49619 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa5a8e54e register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa690aff1 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa6ecd1b1 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaaabae7a of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb0034b67 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb09f2172 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8b34e70 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xba04d7eb alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbab571e0 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd424cbb can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe1ab327f can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe5c598a2 can_put_echo_skb EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len -EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf6f23cb5 alloc_canfd_skb -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5d2df349 m_can_class_allocate_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6a9b5b03 m_can_class_resume -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x71efc577 m_can_class_unregister -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbf9a5f90 m_can_class_get_clocks -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbf9aae76 m_can_class_register -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcc467cde m_can_class_suspend -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe4a472cd m_can_class_free_dev -EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xfdac6705 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0d83bc1c m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x15082d62 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1508dc84 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x17d7b4f6 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3400ee48 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x573ee411 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xab5e9bc1 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdb7d4663 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0905c1f5 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0b4be6b4 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2f7a3cb7 free_sja1000dev EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5e6ea12f free_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x78115c6d unregister_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xaeda87eb register_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe67cbdd9 alloc_sja1000dev -EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xf7b29dd4 lan9303_indirect_phy_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x1ba05b52 ksz_switch_chips -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x038f58a0 mt7530_remove_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x52364bbc mt753x_table -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xb71b772f mt7530_probe_common -EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xfac1270c mt7530_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x6a5fc556 felix_port_to_netdev -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x73afbcb2 felix_switch_ops -EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xedfc5edb felix_netdev_to_port -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x428370ea rtl8365mb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x08139217 rtl8366rb_variant -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0ccb2be1 rtl8366_get_ethtool_stats -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0f67a942 rtl8366_enable_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3a54f3dc rtl8366_reset_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3dbf7db5 rtl8366_get_strings -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8580e3e7 rtl8366_set_pvid -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8a84f28f rtl8366_vlan_add -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x97d064ad rtl8366_enable_vlan4k -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb3e72ee4 rtl8366_mc_is_used -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb9554639 rtl8366_vlan_del -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd019872b rtl8366_set_vlan -EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdb921c4d rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdfce1a73 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xdc2c5744 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_switch 0x48589cbe ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x2b3d9ed5 mt753x_table +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x55e0f07f mt7530_probe_common +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0x6f509b80 mt7530_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/mt7530 0xe174dff0 mt7530_remove_common +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0x9a7ece83 felix_netdev_to_port +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xa2b0271a felix_port_to_netdev +EXPORT_SYMBOL_GPL drivers/net/dsa/ocelot/mscc_felix_dsa_lib 0xe536b35a felix_switch_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x6aa43167 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x017915e8 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x18ea4bff rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2034d39a rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x44cdbdad rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5570a1b3 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x61ff2c2a rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x63a7b745 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x68ede390 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x824be655 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9be4cc8f rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf05a2e7f rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfe52b4d0 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x009f0adc pdsc_adminq_post +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x1a08eaf3 pdsc_get_pf_struct EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x45b87b4f pdsc_register_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x47502cb2 pds_client_adminq_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0x72540405 pds_client_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xb5f3ea0b pdsc_get_pf_struct +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xab1a6225 pds_client_unregister EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xce714617 pdsc_unregister_notify -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xd19872aa pds_client_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xfdaa848c pdsc_adminq_post -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x6b0dbb30 arc_emac_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xfe36da37 arc_emac_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x02e1b10b octeon_register_reqtype_free_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x044f81c7 octeon_droq_process_packets -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0648a2d5 cn23xx_vf_ask_pf_to_do_flr -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x129b9db8 octeon_pci_write_core_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x14210dc0 octeon_allocate_ioq_vector -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x156e0c3c octeon_alloc_soft_command_resp -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x164f83be lio_enable_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19b0b136 octeon_wait_for_ddr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xd149a89f pds_client_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/amd/pds_core/pds_core 0xfdeb9165 pds_client_adminq_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x100f020f arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x364ac352 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x00e6c35a octeon_delete_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0de4a1de octnet_send_nic_data_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0f1a5353 octeon_get_tx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x0f8aef6f liquidio_get_speed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x113e04fb octeon_setup_instr_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x13934178 octeon_register_reqtype_free_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x13b37c97 lio_setup_cn66xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x14a82072 lio_enable_irq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x150ac4f7 octeon_wait_for_ddr_init EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x19cb4e69 liquidio_link_ctrl_cmd_completion -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1c41db1f octeon_setup_output_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1cdc0522 lio_delete_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1d7269cc lio_process_ordered_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x234b6bd1 cn23xx_fw_loaded +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1a2feac0 octeon_delete_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1ba9a23a octeon_free_device_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1e9e30ef octeon_get_rx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x1fce7bb7 octeon_init_dispatch_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x23469de0 octeon_write_device_mem32 EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x241a2a6c lio_fetch_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x337ef3a0 lio_wait_for_instr_fetch -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3905d353 lio_get_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x39998a48 lio_wait_for_clean_oq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3d239263 cn23xx_tell_vf_its_macaddr_changed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x425c78c8 setup_rx_oom_poll_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x48348cc1 liquidio_change_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4ec8cfa2 octeon_setup_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x52d872fc lio_pci_writeq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x52f636f6 octeon_free_sc_buffer_pool -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x53de0f46 liquidio_setup_io_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5709df99 liquidio_set_feature -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5adb5434 setup_cn23xx_octeon_pf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5bb3672e octeon_register_dispatch_fn -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5f8e619e octeon_set_io_queues_off -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x612b7009 lio_setup_glists -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x617cea9d octeon_prepare_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x627895cc octeon_send_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x65c2c015 octeon_delete_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x69605613 cleanup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x27b48314 octeon_ring_doorbell_locked +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2beccced octeon_setup_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x2d3620ce octeon_register_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x324f6be1 octeon_free_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x37d235b9 octeon_free_sc_buffer_pool +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3a8d2ab6 liquidio_change_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3aaa62d1 octeon_set_io_queues_off +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3ab58fa0 octeon_droq_check_hw_for_pkts +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x3b67429a octeon_alloc_soft_command_resp +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x42c1ef5a octeon_delete_instr_queue +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x4ed1b792 lio_pci_readq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x52ee4970 liquidio_get_fec +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x53a26a7a cn23xx_octeon_pfvf_handshake +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x565af0ef lio_wait_for_instr_fetch +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5bd7638b lio_process_ordered_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5cbd8907 lio_wait_for_clean_oq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5d88d7ee octeon_setup_response_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5db5bc5a cn23xx_tell_vf_its_macaddr_changed +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x5decfab8 octeon_delete_droq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x60876a13 cn23xx_setup_octeon_vf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6a549d44 octeon_send_soft_command EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d0d28ef octeon_init_device_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x710eeaa4 octeon_read_device_mem64 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x741a07b4 octeon_setup_instr_queues -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7aea78f8 octeon_init_dispatch_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7e8da175 octeon_free_device_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x84860dc3 octnet_send_nic_ctrl_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x850e0973 octeon_delete_droq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8859b160 liquidio_get_fec -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8ccc1213 liquidio_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x8d057fc9 octeon_free_sc_done_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x96334459 lio_pci_readq -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x974c3047 octeon_free_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x99a03710 octeon_write_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9a231c91 octeon_delete_instr_queue -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x9ce6c6de octeon_deregister_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa14c7e19 lio_setup_cn66xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa3886229 octeon_unregister_droq_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa42e0640 octeon_register_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa8d0e84e octeon_delete_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa8d7ca33 octeon_droq_check_hw_for_pkts -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xaa9c10a5 octeon_setup_interrupt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xab8291ba octeon_read_device_mem32 -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb56064d4 octeon_free_sc_zombie_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb79248ed octeon_pci_read_core_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbdb3e12d octeon_get_conf -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc50d117e lio_setup_cn68xx_octeon_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc67cc324 octeon_get_rx_qsize +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x6d9a48f0 octeon_read_device_mem64 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x702aac43 octeon_register_dispatch_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x727ee36e octeon_setup_interrupt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x77b4ae1c octeon_droq_process_packets +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x77f213f0 lio_setup_cn68xx_octeon_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7965d850 octeon_setup_output_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x7b6a91e2 octeon_unregister_droq_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x85547a4c cn23xx_vf_ask_pf_to_do_flr +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x894635f8 liquidio_set_feature +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x897a3424 octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0x90654e1a setup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xa057b348 cn23xx_fw_loaded +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb4257a98 octeon_prepare_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xb71633ee octeon_read_device_mem32 +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbb5960c1 cleanup_rx_oom_poll_fn +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbcede44f octeon_mem_access_ok +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xbe30dc3d octeon_pci_read_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc66bfd32 lio_delete_glists EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc6abc5b1 octeon_core_drv_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xc7da9bbf octeon_allocate_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcbba8d1a lio_process_iq_request_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcf57c6e2 octeon_send_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd0beb2e3 cn23xx_octeon_pfvf_handshake -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd0bf1dd5 octnet_send_nic_data_pkt -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd53d177f liquidio_get_speed -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd7f8a098 octeon_get_tx_qsize -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd9c9e700 octeon_mem_access_ok -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe39bb28a cn23xx_setup_octeon_vf_device -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe94f45cb octeon_alloc_soft_command -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec5e376b octeon_free_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xcc90ea46 octeon_pci_write_core_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xccc3fe0b octeon_allocate_ioq_vector +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd044679b octeon_free_sc_zombie_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd2a6d6a6 liquidio_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd2ea0378 lio_process_iq_request_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd5758b20 octeon_alloc_soft_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd897e262 octeon_get_conf +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd98f5b3d lio_pci_writeq +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xd9c78cad setup_cn23xx_octeon_pf_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe2858e07 lio_get_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xe8217c86 octeon_free_sc_done_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xeb5d906a cn23xx_get_vf_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xec7f00a5 lio_get_state_string -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xef77d560 octeon_setup_response_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfb5ebf3d cn23xx_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xff5670df octeon_ring_doorbell_locked -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x069c15f6 enetc_get_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x10407d9f enetc_xdp_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x11cf8927 enetc_setup_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2028f44b enetc_mm_link_state_update -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x20fd8114 enetc_port_mac_wr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2158ccfa enetc_free_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf08db7f3 octnet_send_nic_ctrl_pkt +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf168a233 octeon_send_command +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf4cd52fb lio_setup_glists +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xf9c2c591 octeon_deregister_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfb628829 octeon_allocate_device +EXPORT_SYMBOL_GPL drivers/net/ethernet/cavium/liquidio/liquidio-core 0xfe014c58 liquidio_setup_io_queues +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x13184646 enetc_set_fs_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x156e35ba enetc_pci_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x220f6678 enetc_configure_si +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2338cced enetc_set_features +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x251ce8b7 enetc_get_stats EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x290512bd enetc_set_rss_key -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3806d9e1 enetc_set_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3a49d7fd enetc_close -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3f0dfa58 enetc_ioctl -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x45986d0f enetc_teardown_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x51444251 enetc_set_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x55593a0b enetc_start -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x6162b03a enetc_port_mac_rd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x68539d2d enetc_configure_si -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x713f7fa7 enetc_setup_bpf -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x914a2c4d enetc_alloc_si_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x92002eb7 enetc_open -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9e1ea2b4 enetc_get_rss_table -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa27a7596 enetc_send_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa3e2b5dd enetc_xmit -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb220260f enetc_alloc_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb50cc0f6 enetc_init_si_rings_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xb5bc2fca enetc_setup_cbdr -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xbd75969e enetc_get_si_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xbdd9f4d3 enetc_set_ethtool_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc2715dd4 enetc_pci_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcb2e0ea3 enetc_set_features -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd13b7d1c enetc_set_fs_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xd8caaa9b enetc_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xe1917dc7 enetc_reset_tc_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xedc711f2 enetc_clear_mac_flt_entry -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xee3376c5 enetc_free_msix -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xfaea460f enetc_pci_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x047e53e2 enetc_mdio_read_c22 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x693976a2 enetc_hw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x6f332263 enetc_mdio_read_c45 -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd33b2913 enetc_mdio_write_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2b68004b enetc_port_mac_wr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2b7e911a enetc_get_si_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x2fa8e0f3 enetc_get_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3060272b enetc_set_ethtool_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x35dcc6ed enetc_open +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x3f7693be enetc_send_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x464d959d enetc_reset_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x48115ae7 enetc_ioctl +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x4e17ce38 enetc_xdp_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x53404bdf enetc_setup_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x61dc0f6f enetc_mm_link_state_update +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x67202486 enetc_xmit +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x6aaf56a6 enetc_setup_bpf +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x6b0437af enetc_free_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x749f86b1 enetc_clear_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x78fc79a7 enetc_port_mac_rd +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x7f1642c1 enetc_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9d953fa7 enetc_close +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9daff6cd enetc_set_rss_table +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0x9e5a88d4 enetc_pci_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xa46f8d90 enetc_free_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc173ed3a enetc_set_mac_flt_entry +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xc1cc37bd enetc_teardown_cbdr +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xcefc347c enetc_setup_tc_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xdb16d718 enetc_alloc_si_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf285d251 enetc_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xf87cdd5a enetc_alloc_msix +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-core 0xff503ba3 enetc_init_si_rings_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x0d5e8c63 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x309c3510 enetc_mdio_read_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x8c943e60 enetc_mdio_write_c22 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd18a2284 enetc_mdio_write_c45 EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock -EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xfc1476a7 enetc_mdio_write_c45 +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xe493aa21 enetc_mdio_read_c22 EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x02100ed5 fun_serv_restart -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0aafaee4 fun_submit_admin_sync_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x44dd77bd fun_get_res_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x58e83917 fun_sq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x606a3092 fun_serv_stop -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6438d79f fun_cq_create -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x70321e6a fun_bind -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x78bf65d5 fun_alloc_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8fd71e6f fun_free_ring_mem -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb02590cd fun_serv_sched -EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd451556a fun_res_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x65120611 i40e_client_device_unregister -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xe508c237 i40e_client_device_register -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6888b110 ice_del_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x72a731eb ice_rdma_update_vsi_filter -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xafa14de3 ice_add_rdma_qset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd9d6ebf1 ice_rdma_request_reset -EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xe6e3c5a3 ice_get_qos_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x2b992022 otx2_ptp_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x578d045e otx2_ptp_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x5b07dc48 otx2_ptp_tstamp2time -EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x9928c44e otx2_ptp_clock_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x002e239c mlx4_get_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ca8f70 mlx4_mr_hw_put_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02124542 mlx4_update_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0252bb4d mlx4_get_active_ports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0969740a mlx4_mtt_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ce123c5 mlx4_mr_hw_change_access -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de45e04 __mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e21ecd1 mlx4_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f412e34 mlx4_srq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11ffe5bb mlx4_alloc_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12f925ee __mlx4_cmd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x135c73bd mlx4_get_counter_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14c3ddce mlx4_srq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18f7a56f mlx4_vf_set_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b54e4da mlx4_set_vf_spoofchk -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2108baf5 mlx4_config_dev_retrieval -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22ee0a81 mlx4_qp_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24ade557 mlx4_map_sw_to_hw_steering_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28525c69 mlx4_mr_rereg_mem_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dcb7e34 mlx4_phys_to_slaves_pport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3055891e mlx4_buf_write_mtt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32c693b5 __mlx4_replace_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33f37724 mlx4_flow_steer_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x359a18c8 mlx4_unbond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37df4426 mlx4_mr_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x380e34a4 mlx4_set_vf_link_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3818310f mlx4_hw_rule_sz -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e1baa61 mlx4_srq_arm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41750753 mlx4_pd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45ae493b mlx4_bf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bba3a26 mlx4_pd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cb09e35 mlx4_buf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e4f7eb1 mlx4_config_roce_v2_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f0fa498 mlx4_srq_lookup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5101ab2d mlx4_unregister_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x535833db mlx4_unicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54309c4c mlx4_srq_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x568ab895 mlx4_unregister_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a057d50 mlx4_ACCESS_PTYS_REG -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a2679ec mlx4_mr_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a2cd209 mlx4_set_admin_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ae7dc01 mlx4_unicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ca03c27 mlx4_qp_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cc04ffb mlx4_register_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ec44f3d mlx4_get_base_gid_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65519f28 mlx4_mtt_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6718bdaf mlx4_find_cached_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6acf3388 mlx4_counter_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b2c8f02 mlx4_get_vf_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cfedc03 mlx4_wol_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7194ed2e mlx4_vf_get_enable_smi_admin -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72b23bad mlx4_unregister_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74095249 mlx4_uar_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74cd5b3c mlx4_find_cached_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75baf5a6 mlx4_replace_zero_macs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77c2ea1f mlx4_bond -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ed92f84 mlx4_get_internal_clock_params -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83846433 mlx4_qp_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x841a8cbb mlx4_qp_reserve_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84a6dba0 mlx4_xrcd_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84ac599a mlx4_mtt_cleanup -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a48a3a1 __mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cdf8409 mlx4_alloc_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8da7e707 mlx4_qp_query -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fddd5da mlx4_get_default_counter_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93fdf703 mlx4_unicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95bd4a7e mlx4_port_map_set -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x960c0eb4 mlx4_mr_hw_write_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x978e05d1 mlx4_vf_smi_enabled -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97cd327b mlx4_multicast_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c10008d mlx4_flow_detach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d0a7000 mlx4_uar_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f5a2c31 mlx4_mr_rereg_mem_write -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa01b6a48 mlx4_flow_steer_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2836701 mlx4_slave_convert_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8202aec mlx4_mw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9a98712 mlx4_flow_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa1c624d mlx4_buf_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb170bddf mlx4_mw_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1cb94b6 mlx4_INIT_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1cd4b7d mlx4_register_interface -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3f5de66 mlx4_map_sw_to_hw_steering_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4b9a217 mlx4_cq_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb532d2ab mlx4_set_vf_rate -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7debd1a mlx4_register_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8046b41 mlx4_db_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8932741 mlx4_get_vf_config -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb96255d3 mlx4_get_devlink_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbddfe2a2 mlx4_mr_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf5f2570 mlx4_get_protocol_dev -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc58a556b mlx4_xrcd_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1aa892e mlx4_CLOSE_PORT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2655ba6 mlx4_multicast_promisc_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3f08895 mlx4_qp_modify -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd40c6b29 mlx4_multicast_attach -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6e691fa mlx4_multicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd931dff4 mlx4_FLOW_STEERING_IB_UC_QP_RANGE -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd942665f mlx4_cq_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd96f2f2e mlx4_SYNC_TPT -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda082ca4 mlx4_set_vf_mac -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb59afed mlx4_get_slave_default_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbc82c34 mlx4_read_clock -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc03903b mlx4_free_cmd_mailbox -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde248a1b mlx4_phys_to_slave_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde5825f6 mlx4_mr_hw_get_mpt -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2d083ef mlx4_config_vxlan_port -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe34b6ce8 mlx4_cq_resize -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4e8218e mlx4_get_base_qpn -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4f31d1f mlx4_cq_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4f3466a mlx4_phys_to_slaves_pport_actv -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe884007f mlx4_qp_release_range -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xece346bb mlx4_wol_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee98903f mlx4_mw_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeecd831a mlx4_counter_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeef13778 mlx4_bf_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef3e6a6c mlx4_qp_to_ready -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef810169 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x11fb4ac3 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x23d6b927 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3bd1d2f3 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5c1690e9 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6cc9241b fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x72917e8d fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x87d3206b fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x89e44ceb fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb96a4f71 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xbcb992c8 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xeb9e72ac fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xaa847438 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xcf7d9534 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x22ec57e0 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x4085e628 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7e1d43ce ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb934bf3d ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xbf7d2d94 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x3d677e46 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x41735a3a otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x8fd69a2a otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xd6e5d439 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0304324e mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06288159 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0975a641 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a7d1bc4 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bee923e mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c723b3d mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cd63fc3 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0daf775e mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1182a075 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x135685b4 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x145254e2 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18f815fd mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19825979 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a961437 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ce74da9 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1da10189 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e0dae23 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21f4bba9 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2412f75f mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24d3fb4c mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27807791 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x298b1ce1 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a3afb51 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ba694d5 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bda90ae mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38a5d064 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38c079ca mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e55ffb9 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x416076a3 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44db053a mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x488335ec mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a706495 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aaebd84 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bd0d61d mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e088c0b mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e79c09f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e7de958 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fa0dc1b mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51e69a67 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52453a42 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b5f4360 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c88059a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eaa07f7 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5eb7c5cf mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5feaddde mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x618f7c9f mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6199e768 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61aa11c5 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62aa58a9 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x651fddef mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65d88546 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67a09aff mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68323231 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dc3fddb mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72e5fa70 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x756ee9c8 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77bf2a7e mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79e29812 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ca5ecd2 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa3df54 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8014de57 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x823d0baf mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87fabea6 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88a9f7ef mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x898734e5 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89dffd92 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89e4d0bb mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cf579cb mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e803688 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90d9a205 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93b1ffff mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9443a2e6 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97defe85 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9936ef6e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c79946c mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ef346ba mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f38ac9c mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa12eedf0 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa18a2022 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1d0cf74 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa211eca5 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7410110 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabfcf6e8 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac457c0d mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacb4557b mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad723290 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae27e144 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae76ed24 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf84062d mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb25fc6b1 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb38bb7e8 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb792b5e6 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb85aa6c5 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcbaa5b6 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc14ff068 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc828ec33 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc878fef4 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9d2436d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb754077 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbb60e40 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd11d516 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce8f36ad mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd06a5a29 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd11430f2 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd15ca446 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd49a9a2a mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd627f88c mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8129346 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbeb3d14 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddcf4686 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf983d79 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0bd701c mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0e4931b mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe23294b5 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea47feac mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeeaffaf1 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf13167b2 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf289d31f mlx4_multicast_promisc_remove EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b0999f mlx4_put_qp -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf533e6a3 mlx4_unicast_promisc_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd5b4a72 mlx4_mr_hw_change_pd -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdfa3dec mlx4_free_hwq_res -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe2326dd mlx4_set_vf_vlan -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0042792d mlx5_query_hca_vport_gid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x011382d1 mlx5_set_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02ab3627 mlx5_query_module_eeprom -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0467f56d mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf60a1943 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf65ab4b7 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe28fa5c mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01a76a23 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x059ad5d0 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x063cea88 mlx5_query_nic_vport_mac_list EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a3bdc84 mlx5_query_nic_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b0bad2d mlx5_query_nic_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc1bdf1 mlx5_eswitch_mode -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e0d7440 mlx5_modify_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e6944ea mlx5_nic_vport_unaffiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11edb404 mlx5_query_port_oper_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1afa3ed3 mlx5_modify_nic_vport_vlans -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x234c7e05 mlx5_set_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24052932 mlx5_query_port_max_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3100436e mlx5_vport_get_other_func_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x338608c7 mlx5_eswitch_get_total_vports -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35458e1c mlx5_set_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x363c4b84 mlx5_core_reserved_gids_count -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cdb505d mlx5_modify_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ee5cb77 mlx5_set_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45b84df7 mlx5_query_hca_vport_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a5127f4 mlx5_frag_buf_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dda7851 mlx5_db_free -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e30192a mlx5_db_alloc_node -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x523f1b58 mlx5_nic_vport_query_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x561aec08 mlx5_query_nic_vport_qkey_viol_cntr -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x569aee0f mlx5_nic_vport_update_local_lb -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d48d94f mlx5_set_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x650e4ae9 mlx5_core_query_vport_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x685fb2d5 mlx5_query_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a137157 mlx5_dm_sw_icm_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b96ac3f mlx5_query_port_tc_group -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76043ee0 mlx5_query_min_inline -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x760fcdf5 mlx5_modify_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x792bb525 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0976f2fc mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0afec7ef mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c3347cf mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4410e9 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x194de0f0 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f19bcec mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20ae401a mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x346648a1 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34e3d702 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3622b654 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3939d4f5 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a84f433 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f1a5b8f mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4018758f mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40324b49 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x425e55d1 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48fd830c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a13cd75 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x560450e5 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a0c500c mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a693cc7 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ac40f88 mlx5_vport_get_other_func_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7094c272 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x791ff399 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a9280e3 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81209bc5 mlx5_toggle_port_link EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x841225fb mlx5_query_port_vl_hw_cap -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x848490a2 mlx5_query_port_wol -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87240a8b mlx5_modify_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d2ab967 mlx5_query_port_tc_bw_alloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x938491ca mlx5_set_port_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947c2041 mlx5_set_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94a4184b mlx5_query_nic_vport_promisc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99f29ce7 mlx5_core_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bfd944e mlx5_query_module_eeprom_by_page -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0e654c1 mlx5_query_hca_vport_node_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3f1fbb0 mlx5_query_port_ets_rate_limit -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa46b8a11 mlx5_core_modify_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac0a73ed mlx5_query_nic_vport_mtu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf96096e mlx5_query_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb24ca063 mlx5_query_nic_vport_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb77aeb2a mlx5_query_port_pfc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb15bdd5 mlx5_set_port_prio_tc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb2f978e mlx5_toggle_port_link -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3f347cc mlx5_core_query_sq_state -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4f57062 mlx5_access_reg -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6a24c9a mlx5_nic_vport_affiliate_multiport -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2aaebf1 mlx5_set_port_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3dd197e mlx5_query_port_admin_status -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9dd4810 mlx5_query_mac_address -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb7a26e5 mlx5_dm_sw_icm_dealloc -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4b99dc6 mlx5_query_hca_vport_pkey -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed582774 mlx5_query_port_ptys -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefdd93d8 mlx5_modify_nic_vport_mac_list -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37c69cb mlx5_nic_vport_enable_roce -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5c95b24 mlx5_query_hca_vport_context -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf96db069 mlx5_query_nic_system_image_guid -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe067cc1 mlx5_ipsec_device_caps -EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea0feb3 mlx5_query_port_pause -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x090876e6 ks8851_probe_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5bd5bd6d ks8851_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x9321817d ks8851_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xe05d893a ks8851_remove_common -EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x0fde69a3 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x843dbcc7 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85edb503 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cd5299f mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dbcf1a9 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f9b02be mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x971dd339 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9762ac8c mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b101224 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa28a31ba mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa29b0b10 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3ab7ab9 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa442b5ef mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7ffaa4b mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88cfe4e mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8ae5bdc mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8cb3aef mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab4ef385 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabff5254 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae699996 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4a2410d mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7656f8b mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9b1c398 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb7a09f1 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcb5ba9f mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc121c7b2 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc362bc22 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9736580 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca4c309b mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbdb80ff mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdf66bfe mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe10d9e98 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec28ebca mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5d526fc mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf64b15b0 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf969ebda mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd3ed804 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfda17424 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff8a4a35 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6bf2443b ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa306782b ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc046a49d ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd07a706c ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6e663094 devm_regmap_init_encx24j600 EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01a751cb ocelot_port_set_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0721dcd2 ocelot_cls_flower_replace -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e534c75 ocelot_port_get_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ed5dfdd ocelot_bond_get_id -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12ccbdc1 ocelot_cls_flower_destroy -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20ae3f17 ocelot_port_get_eth_mac_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x219fbff2 ocelot_migrate_mdbs -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x228984f9 __ocelot_bulk_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x285cde5e ocelot_port_get_rmon_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a497225 ocelot_port_setup_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x311a2180 ocelot_bridge_num_find -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35b1356a ocelot_port_add_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x385e96af ocelot_phylink_mac_link_up -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x438055b1 ocelot_regmap_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46bd226b ocelot_port_set_mm -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50d8e9b3 ocelot_phylink_mac_link_down -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50f26977 ocelot_get_bridge_fwd_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5209909f ocelot_port_unassign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5595cb29 ocelot_port_get_eth_phy_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5df56b7b ocelot_port_mqprio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x63a33fb6 ocelot_port_get_pause_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x681e5d29 ocelot_mm_irq -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x840e009b ocelot_cls_flower_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ccc54f0 ocelot_port_configure_serdes -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x925dd12c ocelot_port_get_eth_ctrl_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93ef4c53 __ocelot_rmw_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x951e9590 ocelot_lag_fdb_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb02bc0b0 ocelot_port_del_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0349bbe ocelot_port_get_default_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5e0b3b3 ocelot_port_readl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc67c90fe ocelot_port_assigned_dsa_8021q_cpu_mask -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc7b75d01 ocelot_port_teardown_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbefd28d ocelot_port_mirror_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd563ebf ocelot_port_get_dscp_prio -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfca0728 ocelot_port_mirror_add -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2a7dec9 ocelot_port_assign_dsa_8021q_cpu -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3da6073 ocelot_port_get_mm_stats -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8db3e70 ocelot_mact_flush -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2cabde4 ocelot_regfields_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4d9af25 __ocelot_write_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee91bbaa __ocelot_read_ix -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf8407c69 ocelot_lag_fdb_del -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf987c284 ocelot_port_writel -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd66ecd5 ocelot_port_rmwl -EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfdef4b28 ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x059b5a4c ocelot_port_get_mm_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0648d41d ocelot_port_set_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0987fc61 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x264cb2a9 ocelot_port_get_eth_ctrl_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x276f92ef ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36dc7706 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39023c7f ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a738deb ocelot_port_get_eth_mac_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3bf9c597 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d66e41c ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x400627d9 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4142dec5 ocelot_port_setup_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4edc867f ocelot_bond_get_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f4879d5 ocelot_port_get_eth_phy_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5182b870 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55aefd5a ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55eb46ca ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d5ffe95 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6066f988 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68630250 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68e632b2 ocelot_port_get_pause_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73d3dae6 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73eac992 ocelot_phylink_mac_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x83fb5033 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x972d53be ocelot_port_mqprio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f237e9f __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa24001e7 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4926d24 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacbcf1e1 ocelot_port_teardown_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad773c1e ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2cd029e ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3d09290 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc2011c1c ocelot_port_get_rmon_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4184daa ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6c49a83 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd812764a ocelot_port_get_mm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb3f375e ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe17df5c4 ocelot_port_configure_serdes +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2b7141c ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3605d35 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe90fda32 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9f6d042 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeea5b9ca ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1775f9d ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfc21902b ocelot_mm_irq EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0d22c0fd stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0f825a72 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1c42c731 stmmac_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x68584481 stmmac_dvr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8a2509bc stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x79acbaaa stmmac_bus_clks_config EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xaa90050d stmmac_resume -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb950984e stmmac_suspend -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe2b82b25 stmmac_init_tstamp_counter -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x194667f8 stmmac_pltfr_exit -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2ba398c5 stmmac_pltfr_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x722a4075 stmmac_pltfr_init -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x9a8f6416 stmmac_remove_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcb1afc64 stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd7870292 devm_stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdf10b128 devm_stmmac_pltfr_probe -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe2336abb stmmac_pltfr_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf1c1e593 stmmac_pltfr_remove_no_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf9ed118a stmmac_get_platform_resources -EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xffd31364 stmmac_probe_config_dt -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x1675f64f am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xcd4a1bfe stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd27a7537 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfd6cb647 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0761111d stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1a0138ef stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x20f3f051 stmmac_pltfr_remove_no_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5d834176 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x81c44dac devm_stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x84a812f3 stmmac_pltfr_exit +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x95ce00e0 stmmac_pltfr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa59e4841 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcb864dd9 devm_stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xefc4357e stmmac_pltfr_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfa918d07 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x087357ef am65_cpts_prep_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x62a5574b am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x48c1f6fd am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x6ab9a4a1 am65_cpts_release +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x7ca3f6eb am65_cpts_tx_timestamp EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x828c824a am65_cpts_suspend EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x91fd3558 am65_cpts_rx_enable -EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb311232a am65_cpts_create EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xb60b988a am65_cpts_estf_disable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xbfc83e4d am65_cpts_estf_enable EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xe0cbdf78 am65_cpts_resume EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x758cefbe w5100_remove -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe2411dca w5100_pm_ops -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xfcff3d6a w5100_ops_priv -EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xfdd030cb w5100_probe -EXPORT_SYMBOL_GPL drivers/net/geneve 0x804c2056 geneve_dev_create_fb -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x34deb593 ipvlan_link_new -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x34f10cd5 ipvlan_link_setup -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x69e07e37 ipvlan_link_delete -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xae76f7db ipvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfe8bb453 ipvlan_count_rx -EXPORT_SYMBOL_GPL drivers/net/macsec 0x52a01615 macsec_pn_wrapped -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1280dead macvlan_common_newlink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2c49b4bc macvlan_link_register -EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3725c536 macvlan_dellink -EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd3583822 macvlan_common_setup -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x06a01dd6 mdio_i2c_alloc -EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xcf0f4fe5 devm_mdio_regmap_register -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x316f4551 xpcs_config_eee -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3834c9c3 xpcs_get_an_mode -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x89e3bd4f xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x553075ed w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x59005b5b w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xee13d9f0 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xfc57f398 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x5931736b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0195245c ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x9b80013f ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc11b89e4 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xebed4be4 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf5aa8d62 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0xd724b8bb macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x423c37d9 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x42875a32 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x75bc3922 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe2564242 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xd8fa761b mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-regmap 0xe2555711 devm_mdio_regmap_register +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x07935f4d xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x400036e6 xpcs_create_mdiodev +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x44fcd9d9 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4826eb5f xpcs_get_an_mode EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9b430bc5 xpcs_link_up -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa396f1ca xpcs_get_interfaces -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xdf489544 xpcs_create_mdiodev -EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf7b4b2ed xpcs_destroy -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0571a20d bcm_phy_set_eee -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x09b2d6df bcm_phy_set_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0a53e92d bcm_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0fb52bf3 bcm_phy_read_shadow -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10fef831 bcm_phy_cable_test_start -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x16bde08c __bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1fd24f5f __bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x255f3f95 bcm_phy_cable_test_start_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28502f8a bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2db313ab bcm_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31d1b99e bcm_phy_get_strings -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32706d16 bcm_phy_write_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x342dcaf7 bcm_phy_enable_apd -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x379d2868 bcm_phy_cable_test_get_status -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x39b5e263 bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3a95fbe3 bcm_phy_enable_jumbo -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5399a7d7 bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x53ae891f bcm_phy_r_rc_cal_reset -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5bd22424 bcm_phy_modify_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x72dd7f5e bcm_phy_get_sset_count -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74da26cb __bcm_phy_modify_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x782352f0 bcm_phy_read_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d0b04e9 bcm54xx_auxctl_read -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80a25bc1 bcm_phy_downshift_get -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83a88cd6 bcm_phy_downshift_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86b7f6dc __bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e97a342 __bcm_phy_write_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9efadff3 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa931e25a xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd384d356 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x10506906 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x130907bf bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x189daff0 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x233ecbe0 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x26169df9 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29c1c70a bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c3db463 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31239f47 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x350a2663 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x409f8169 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44cfd64f __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x47d229cd bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4ec3ae3e bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x54a8b2e3 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5818edbb bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5b5a37c5 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x68deff75 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7273ee69 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7c4d36ed bcm_phy_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x83a0d61a bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93cdaaab __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9aa81752 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d4e563c bcm_phy_downshift_get EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa0f0ddfd bcm_phy_wol_isr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa299d96e bcm_phy_get_stats -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc149af14 bcm_phy_get_wol -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca0232e8 bcm_phy_28nm_a0b0_afe_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc3cc92d bcm_phy_ack_intr -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xccaaf91e bcm_phy_cable_test_get_status_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc3f52e6 bcm_phy_led_brightness_set -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe146eb73 bcm_phy_read_rdb -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf55e2b1f __bcm_phy_write_exp -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf8d5558d bcm_phy_read_misc -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x88cc9608 bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa88f24b0 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9c0b2d4 bcm_phy_led_brightness_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaeb1df75 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb4b64f26 bcm_phy_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb5a015bd bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xba5b7263 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbe659ac8 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7c7d3fa bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xddaa6fcc __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe58f5c64 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe80422f6 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe83ed6c9 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf8cfd115 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xffd429ea bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0x9ef6c8f5 bcm_ptp_config_init EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe54c4503 bcm_ptp_stop -EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xf1c83b82 bcm_ptp_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x3826ff01 smsc_phy_handle_interrupt -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x441d6db1 lan87xx_read_status -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xadc579b7 smsc_phy_probe -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xb642a922 smsc_phy_config_init -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xc2f296d0 smsc_phy_config_intr -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xc33a816f smsc_phy_set_tunable -EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xce07c2b2 smsc_phy_get_tunable -EXPORT_SYMBOL_GPL drivers/net/tap 0x0415400e tap_get_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0x053628bc tap_del_queues -EXPORT_SYMBOL_GPL drivers/net/tap 0x60d7baaa tap_handle_frame -EXPORT_SYMBOL_GPL drivers/net/tap 0x61e60efa tap_get_ptr_ring -EXPORT_SYMBOL_GPL drivers/net/tap 0x8e02309d tap_create_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xbbd0de08 tap_get_socket -EXPORT_SYMBOL_GPL drivers/net/tap 0xdc5198ca tap_free_minor -EXPORT_SYMBOL_GPL drivers/net/tap 0xe14b52b1 tap_destroy_cdev -EXPORT_SYMBOL_GPL drivers/net/tap 0xe8fb74a4 tap_queue_resize -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x05d3b4bf usbnet_cdc_zte_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x09a65aa7 usbnet_ether_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x15a7f033 usbnet_generic_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3143deb4 usbnet_cdc_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4c7ae024 usbnet_cdc_bind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8046152a usbnet_cdc_update_filter -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf77fd9da usbnet_cdc_status -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1e6120f5 cdc_ncm_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1ef8671f cdc_ncm_rx_verify_nth16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2b9f1e29 cdc_ncm_select_altsetting -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4e0883ad cdc_ncm_rx_verify_ndp16 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x528a8644 cdc_ncm_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5e8e1756 cdc_ncm_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6c9c3845 cdc_ncm_rx_verify_ndp32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x85a20ba8 cdc_ncm_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x92a61ed8 cdc_ncm_rx_verify_nth32 -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa71341be cdc_ncm_fill_tx_frame -EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb85bca8a cdc_ncm_bind_common -EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x94e45753 rtl8152_get_version -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6ff0ff90 rndis_command -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa818e7c6 generic_rndis_bind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb4fda5ab rndis_rx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xcf07dc1e rndis_unbind -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe4a38321 rndis_tx_fixup -EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xfe29d85e rndis_status -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x06ab19c2 usbnet_suspend -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08f225d0 usbnet_get_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0982d37d usbnet_nway_reset -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16ca125e usbnet_unlink_rx_urbs -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f1aa4b4 usbnet_change_mtu -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20326f98 usbnet_purge_paused_rxq -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2eed6dd9 usbnet_open -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d8cafd5 usbnet_read_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e0faf21 usbnet_read_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c361711 usbnet_set_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7ad7e225 usbnet_get_link_ksettings_mii -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7af1ca34 usbnet_resume_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8268b1a4 usbnet_start_xmit -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x830bcdf7 usbnet_status_start -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x839b3911 usbnet_skb_return -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bc6cdb5 usbnet_tx_timeout -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ffca0ec usbnet_get_link_ksettings_internal -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa377203d usbnet_defer_kevent -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xada8fe6c usbnet_get_ethernet_addr -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb574079c usbnet_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb967ee86 usbnet_resume -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbea73653 usbnet_get_drvinfo -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd034c7f9 usbnet_write_cmd_nopm -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd358596c usbnet_pause_rx -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd55b315a usbnet_get_link -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde118547 usbnet_write_cmd -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe051db7a usbnet_set_msglevel -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3c5ea7e usbnet_probe -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xea0f827a usbnet_update_max_qlen -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee1a39d4 usbnet_get_endpoints -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee409d43 usbnet_set_rx_mode -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf08db494 usbnet_write_cmd_async -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb0067b4 usbnet_status_stop -EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb386d03 usbnet_disconnect -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x15a731c0 vxlan_fdb_clear_offload -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa5f3153e vxlan_fdb_find_uc -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf0eedae0 vxlan_dev_create -EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf99e6092 vxlan_fdb_replay -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xd1786113 libipw_rx_any -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cba3069 il_mac_tx_last_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa15966fa il_remove_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3eb79fe il_prep_station -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf18b592c _il_grab_nic_access -EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfec17fb9 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-ptp 0xe7f2657f bcm_ptp_probe +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x2ca64273 smsc_phy_set_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x3c948fcf smsc_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x4824b03d smsc_phy_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x53a360a8 smsc_phy_probe +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x5c99a30c smsc_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0x8d0b92aa smsc_phy_get_tunable +EXPORT_SYMBOL_GPL drivers/net/phy/smsc 0xba7b74ae lan87xx_read_status +EXPORT_SYMBOL_GPL drivers/net/tap 0x02ed9cea tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x4c57a007 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x4d74c8b5 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x4e47514a tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x74c8a5b2 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x77103602 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x95301071 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xa19afc1f tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xe22ad69f tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4603eb87 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x708f339c usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x78b91116 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x87c0e603 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9bc14c97 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbf256210 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc21c5c80 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x04fd0731 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1aff4ca7 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x212f98a3 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x386bf74f cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x533e5c05 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x630b855c cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x88c04ced cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9a9059a8 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd85e3844 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdcec3ae0 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdf6025c2 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x93788c01 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0a44cf7e generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2442f3b4 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x416160ba rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x79d93218 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa876fda8 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc9970002 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x020063e8 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1183631c usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x140f3ddb usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x151da7c1 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19b61062 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19c2d4af usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x244f9584 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c4a7cd7 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f1491c2 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3d459919 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x547dbe53 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x607c8570 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x63cde853 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74200b1d usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3d7680c usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbcb43499 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfc2f88a usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3675a8f usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6c6509d usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc8198ecc usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc8d6dffc usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9a62951 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd02abf5d usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd08fecf3 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd4849243 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd74a39b0 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb04ea4a usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6779135 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xefb96158 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf188eb89 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7f34add usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf9d60863 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfce99666 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfef19cb8 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x1143997b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x3afc0e20 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7b7976f4 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x86038c43 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xe03d7e6e libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x808e348e _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86e4f80a il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fc4121b il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab0ad64b il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xab2ab2b7 il_remove_station EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x13863121 iwl_fw_lookup_cmd_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x443a0ac3 iwl_fw_lookup_notif_ver EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0f7a3e94 p54_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x45938121 p54_parse_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6b00de57 p54_free_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9d1b8054 p54_free_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa2f2e4ee p54_parse_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa8f62c27 p54_register_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb9f8109b p54_unregister_common -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc262be6c p54_read_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd14f7c8d p54_init_common -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x29135ed9 lbs_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3b820775 lbs_start_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4dfa2f31 lbs_host_to_card_done -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x50af9d94 lbs_get_firmware_async -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5277771e lbs_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x61016e61 lbs_get_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x626b3c82 lbs_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x631e7b0d lbs_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x667c97d2 __lbs_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x84aabc43 lbs_host_sleep_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8a1903b1 lbs_stop_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc118a65a lbs_notify_command_response -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdc8e655f lbs_queue_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdf8b8b61 lbs_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe9855ab9 lbs_process_rxed_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf58d9ac9 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x275aa288 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3ce15d46 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4320424b p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x9b9aad06 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb9a37d34 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc239d3c3 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc8e0b950 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xd33544db p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe6da430c p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x16cdc7a2 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x389c81f3 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x38f6638a lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x58828369 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x63c79e6c lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6d64eb5a lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x768b584a lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x896d674e lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9b1eea75 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb264f281 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd0845cb9 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd2c92ddb __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdcc13c38 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe0981725 lbs_remove_card EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0e6eec40 lbtf_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x46d21133 lbtf_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4a49c43f lbtf_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb1764113 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xff154f0a lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xffb59845 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0b175dfd lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x341ad462 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x43b99126 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x43da5642 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6edae88d lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc5ac1072 __lbtf_cmd EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xdede918d lbtf_cmd_response_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe42cfd48 lbtf_cmd_copyback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xed7053af lbtf_bcn_sent -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf15f89ac lbtf_send_tx_feedback -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x06fecf22 mwifiex_drv_info_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x20ede919 mwifiex_enable_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x247a03ad mwifiex_process_hs_config -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x266a36c3 mwifiex_prepare_fw_dump_info -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ac1977d mwifiex_disable_auto_ds -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x306d97e4 mwifiex_remove_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55884db1 mwifiex_process_sleep_confirm_resp -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x65538471 mwifiex_queue_main_work -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x657d06d3 mwifiex_cancel_hs -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7bf6aef9 _mwifiex_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ff82f72 mwifiex_main_process -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8470c20d mwifiex_write_data_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8c21cbea mwifiex_reinit_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8f42e43d mwifiex_add_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8fdb4ffc mwifiex_upload_device_dump -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb3a4b25e mwifiex_del_virtual_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb8b6457c mwifiex_multi_chan_resync -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc2a25a42 mwifiex_fw_dump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca4c701b mwifiex_shutdown_sw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcd0bc481 mwifiex_init_shutdown_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd1f4fd9c mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd7046b8d lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe4aaa9af lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x098cb18d mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1baf80d2 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1f8b10aa mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x232bcdef mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3f1fe94b mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4619091b mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x52607359 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x59348680 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5b706550 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5cb2a218 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6803fe06 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x690b1656 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d1da7da mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x81576315 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x821ca3b1 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x857e6ae5 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x868b4905 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa88e5fcb _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb3d94280 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb5c0ed83 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb63a6995 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc87dd7a2 mwifiex_add_virtual_intf EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xed33cb9b mwifiex_dnld_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xee0508e4 mwifiex_add_card -EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf09139f1 mwifiex_deauthenticate_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x07075aed mt76_register_debugfs_fops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f1ed8f2 mt76_sw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1030a9ae mt76_get_min_avg_rssi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12810ecb mt76_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16283158 __mt76_set_tx_blocked -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16a2b905 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3ad5672 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf5531b31 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03145fd9 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05f8ec86 mt76_create_page_pool +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0be1d1e8 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0cb4eb8e mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d37207a mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13a90b12 mt76_set_stream_caps EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18853bdf mt76_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18ad8c84 mt76_register_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ace88f1 mt76_put_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c913eb4 mt76_set_stream_caps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d37b8f6 mt76_get_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ea66a60 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ba76975 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ca11144 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1cb7eb05 mt76_calculate_default_rate EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20d5264e mt76_tx_worker_run -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x233a753c mt76_tx_status_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x247b794c mt76_calculate_default_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x262b98a6 mt76_ethtool_page_pool_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a787662 mt76_tx_status_unlock -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2cc0515f __mt76_mcu_msg_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33567a1f mt76_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35a2f70c mt76_dma_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x37871a8d mt76_mcu_skb_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38bec960 __mt76_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x39817b61 mt76_tx_status_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a28d747 __mt76_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f9a4d25 mt76_free_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42d13dc0 __traceiter_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48c56627 ____mt76_poll_msec -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49e77322 mt76_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x504c961e mt76_mmio_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x536b489a mt76_rx_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5429019a mt76_create_page_pool -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x547e2e1b mt76_csa_finish -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56cf5878 mt76_free_pending_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e46e110 __mt76_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f38d5d4 mt76_txq_schedule_all -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5f4db3ac mt76_alloc_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6687e155 mt76_get_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66f9807c mt76_queue_tx_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ac235e3 mt76_csa_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72cfa071 mt76_get_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7326ed98 mt76_wake_tx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x744990f4 mt76_unregister_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x755600b8 mt76_mcu_send_and_get_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7749a7ed mt76_get_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x783106cc mt76_update_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78435ddd mt76_alloc_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x789bbe59 mt76_sta_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7a4dd1cd mt76_eeprom_override -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7adaebdf mt76_txq_schedule -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c58feac mt76_rx_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ed1ac15 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23124a57 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x290111b8 mt76_put_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3175bf57 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x381bfb25 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x383bf903 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3bfc8f89 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3cd7c054 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d1b490e mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d419bf0 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e3708c8 mt76_rx_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3fca536e mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x420cd8c0 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4308291c mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x431f1ff7 ____mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43c310e0 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44c43bca mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45676f09 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47f5e560 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b846b50 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4c256c57 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4f247e53 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x52d94d87 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x552d506f mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56d1e0c6 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ce8469c mt76_dma_wed_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x629e795c mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6bbd0a0f mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6da592f9 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x72f58a44 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x764c83f2 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x773ecd3d mt76_mcu_get_response EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x857c85da mt76_pci_disable_aspm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c93996f mt76_dma_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d643b67 __mt76_mcu_send_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97d7bc67 mt76_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x97ebc7d5 mt76_put_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x983471c3 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8187ae63 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x83c2406a mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8954034f mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8bceae04 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c02f203 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c270314 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c39411d mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8cda52f3 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d38c459 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d6a4ba9 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8fc4934b mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90ba70b9 mt76_get_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x927298cb mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9816f729 __mt76_mcu_send_firmware EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d28c26e __tracepoint_mac_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa61a8916 mt76_release_buffered_frames -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6ffd627 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d99031c mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ee3f1c2 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4245e9c mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6545dbc mt76_ethtool_page_pool_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8e97ddd mt76_register_phy EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xab9d88b8 mt76_ethtool_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0af655c mt76_init_sar_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0c7eaa4 mt76_mcu_get_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb47dd3cf mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xabf910eb mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad371964 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb4064e19 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb572b5fc mt76_csa_check EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb608bb75 __tracepoint_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb68e4ad4 mt76_init_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb7a52903 mt76_token_release -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8feaaaa mt76_skb_adjust_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3c74292 mt76_tx_check_agg_ssn -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5c0bd59 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9440b12 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe89c749 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc55c563b mt76_eeprom_init EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc84443e7 mt76_dma_rx_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc60c80e mt76_phy_dfs_state -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd036e2c mt76_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd19be584 mt76_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd3890f62 mt76_rx_aggr_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd55e2e4c mt76_get_rate_power_limits -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7044f8f mt76_has_tx_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd802c8be mt76_update_survey_active_time -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd99f6457 __traceiter_dev_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdaa4e2f8 mt76_unregister_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe087471b mt76_tx_status_skb_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2bd8431 mt76_tx_status_skb_done -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe30b9a7d mt76_dma_wed_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb0ebd98 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc3510dd mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd111097f mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5f41269 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd76be16d mt76_free_pending_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdeb67550 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe02acd3a mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe2c9c69a mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe3f1ece4 mt76_queue_tx_complete EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe459b417 mt76_tx_status_skb_get -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe607a9f5 mt76_get_of_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe623c2cd mt76_set_irq_mask -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8785ecb mt76_seq_puts_array -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebd00d18 mt76_insert_ccmp_hdr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2212b90 mt76_sta_pre_rcu_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7cd38c8 mt76_token_consume -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xff5cd676 mt76_rx_aggr_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x019ea5fa mt76_connac2_reverse_frag0_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x033bdd51 mt76_connac_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x068d01c7 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6b26dff mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe766f688 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe7ae66fa mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe970546a mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec08ecdc mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefaf4aff mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0dfe6aa mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf27fac05 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf66bc907 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf84b7124 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfab8717b mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x014ad242 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0954e2a1 mt76_connac2_mac_write_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a25337f mt76_connac_gen_ppe_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0aed0e0a mt76_connac_txp_skb_unmap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b7a59e2 mt76_connac_mcu_alloc_wtbl_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x153c903c mt76_connac_mcu_wtbl_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x175e0f08 mt76_connac_mcu_wtbl_smps_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x18831f18 mt76_connac_mcu_set_mac_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1ab071c8 mt76_connac_mcu_sta_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1fd13f99 mt76_connac_pm_queue_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x20f54b4a mt76_connac_mcu_set_rts_thresh -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2256725b mt76_connac_sta_state_dp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b433652 mt76_connac_mcu_add_nested_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e959dd1 mt76_connac2_mac_fill_rx_rate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33edf2eb mt76_connac_mcu_start_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3446446c mt76_connac_mcu_bss_ext_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x347a9e5d mt76_connac_mcu_bss_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x34bc19a8 mt76_connac_get_eht_phy_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x38db5025 mt76_connac_mcu_sched_scan_enable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x391d6feb mt76_connac_mcu_set_suspend_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ae9cef2 mt76_connac_power_save_sched -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ba23b3c __mt76_connac_mcu_alloc_sta_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c37bcf9 mt76_connac_mcu_init_download -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3cbe850f mt76_connac_mcu_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3cf63190 mt76_connac_mcu_wtbl_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3f4e5819 mt76_connac_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x40663fc9 mt76_connac_mcu_get_nic_capability -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4471eb52 mt76_connac2_mac_add_txs_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47b57d91 mt76_connac_mcu_sta_ba -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x491516a3 mt76_connac_mcu_set_channel_domain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49798faf mt76_connac_mcu_uni_set_chctx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a18d510 mt76_connac2_load_patch -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d32c4eb mt76_connac_mcu_sta_wed_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x54cded6d mt76_connac_mcu_bss_omac_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55f1a397 mt76_connac_mcu_sta_uapsd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5b0a7a32 mt76_connac_free_pending_tx_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d11be79 mt76_connac_mcu_wtbl_ht_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x647ea239 mt76_connac_mcu_rdd_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x66432391 mt76_connac_mcu_set_hif_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x67169587 mt76_connac_mcu_patch_sem_ctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x698ca6fb mt76_connac2_mac_fill_txs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e38c9ce mt76_connac2_mac_decode_he_radiotap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e7170cd mt76_connac_mcu_wtbl_generic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ff7a34d mt76_connac_mcu_set_pm -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72aeadf2 mt76_connac2_load_ram -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79eb927d mt76_connac2_mcu_fill_message -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8963d8f5 mt76_connac_mcu_start_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8adcdddf mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0a7050ab mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0b1228bd mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0de978b0 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e69bb29 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x13b843e2 mt76_connac_write_hw_txp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c9b3626 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1dce8030 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2142a776 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25512cff mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x288b027d mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28a89daf mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x30862a62 mt76_connac_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x38a7e185 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3ad36de0 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x47e698a1 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x488d4837 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b54c2af mt76_connac_mcu_uni_set_chctx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4faeae6b mt76_connac_get_phy_mode_ext +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x54da814d mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58488b6e mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5d370ee7 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5da9a827 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x614f966c mt76_connac_init_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69c505a5 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6bb5c860 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6c995e33 mt76_connac2_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d073b42 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6eac494a mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f5e636b mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70c64b47 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76902d29 mt76_connac2_load_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76a28dc8 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7974d422 mt76_connac2_load_ram +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a11c042 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7eb449aa mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84765bfa mt76_connac2_mac_decode_he_radiotap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8fd6c29a mt76_connac_mcu_coredump_event EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x93bcefb4 mt76_connac_mcu_chip_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9459adcc mt76_connac_mcu_sta_update_hdr_trans -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9677fc42 mt76_connac_get_phy_mode_ext -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9abd1c87 mt76_connac_mcu_set_deep_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d139886 mt76_connac_mcu_uni_add_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xab1711fe mt76_connac_mcu_update_arp_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xac3b53fe mt76_connac_mcu_beacon_loss_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaff8b4d0 mt76_connac_mcu_reg_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb96f8b47 mt76_connac_mcu_coredump_event -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbbbf646b mt76_connac_mcu_sched_scan_req -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbe84217b mt76_connac_mcu_sta_basic_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbeed3a8c mt76_connac_mcu_sta_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3a050dc mt76_connac_mcu_sta_ba_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc5023d07 mt76_connac_mcu_set_p2p_oppps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc55b9da2 mt76_connac_pm_dequeue_skbs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb8916cd mt76_connac_mcu_set_vif_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xceb7f5d5 mt76_connac_mcu_set_rate_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd298b6e0 mt76_connac_mcu_reg_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbc23a8f mt76_connac2_mac_tx_rate_val -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdbdfad1d mt76_connac_mcu_uni_add_bss -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf3d21c2 mt76_connac_get_phy_mode -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe2c98a4b mt76_connac_write_hw_txp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed79e2cc mt76_connac_mcu_cancel_hw_scan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf38cf4e0 mt76_connac_mcu_update_gtk_rekey -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7c2280a mt76_connac_pm_wake -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7c63678 mt76_connac_mcu_wtbl_hdr_trans_tlv -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf94f55ee mt76_connac_mcu_add_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfaa6a3ae mt76_connac2_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x02fb893d mt76s_read_pcr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1737e812 mt76s_sdio_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2b75fa8e mt76s_txrx_worker -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2c69f9db mt76s_alloc_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3546ea79 mt76s_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4b7db098 mt76s_rmw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x74af5a83 mt76s_alloc_rx_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x75dbb55b mt76s_txqs_empty -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x79dd80df mt76s_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x82e89c7b mt76s_rd_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa36b4900 mt76s_hw_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc2713851 mt76s_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd24891a5 mt76s_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xde857628 mt76s_wr_rp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe0248c1e mt76s_write_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe338f0e5 mt76s_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x02ac8ab6 mt76u_read_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4645a3cb __mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x540803e0 mt76u_queues_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x656b619a mt76u_alloc_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x67d1fd10 mt76u_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6ffd7a31 mt76u_alloc_mcu_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8292142d ___mt76u_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9b1fc26a mt76u_resume_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa4b1ca65 __mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb116bdfa ___mt76u_rr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb70da163 mt76u_stop_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbbc0d975 mt76u_stop_rx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc6bbd608 mt76u_single_wr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xea0a9aea mt76u_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0228fbeb mt7615_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ad7fa5f mt7615_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b31b4eb mt7615_unregister_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1cb9d159 mt7615_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2040eec2 mt7615_led_set_brightness -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x212f9e1b mt7615_init_work -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x292c5ee6 mt7615_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x33ad6a5d mt7615_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x46e9ddfc mt7615_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4f631a49 mt7615_led_set_blink -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x52c27b59 mt7615_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x79a9e0e5 mt7615_mcu_exit -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x879053dc mt7615_register_ext_phy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x88d98e11 mt7615_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ce0b8d5 mt7615_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x970a5d3f mt7615_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d8e31be mt7615_mac_enable_rtscts -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa4ef83e6 mt7622_trigger_hif_int -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xad9a290e mt7615_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb02decfb mt7615_mcu_fill_msg -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb193189f mt7615_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb49d06d7 mt7615_mcu_restart -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbc3cdd8e mt7615_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbeeb7c5a mt7615_wait_for_mcu_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc56e84f0 mt7615_thermal_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcee613e8 __mt7663_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd1202f89 mt7615_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe13cd79b mt7615_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe26e0238 mt7615_mac_set_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf5d7a29b mt7615_tx_token_put -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x3814c757 mt7615_dma_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x137f0f0a mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9370bb1a mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9d5c8ff4 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f00b964 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa0023864 mt76_connac2_reverse_frag0_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7f33f6c mt76_connac_mcu_sta_wed_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaa4e5c84 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xadb865ef mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb08265fd mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb407d867 mt76_connac_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6936eb8 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9fe5d08 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbae958f5 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbca82807 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbdd33cbd mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbedcf0d6 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc715b2d5 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9943556 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcce57878 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcfc5813b mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd1c05b0f mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd41ca530 mt76_connac_get_eht_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd489da7e mt76_connac2_mac_fill_rx_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd5222502 mt76_connac2_mac_fill_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6a312f7 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6be8565 mt76_connac2_mac_tx_rate_val +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd72d84a5 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda0b4b51 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdb5d3c08 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd338061 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe130bf26 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe15a0083 mt76_connac2_mac_add_txs_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe384b1dd mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5279ec3 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe86a0007 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf170160a mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf58c077d mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc3a7059 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x14013e51 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1c97d834 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x20bc567e mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2c221793 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4e399a7d mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5acdea21 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x68c77cda mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6f6dd28d mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x80ea1fcb mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x86a5756c mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xae786f2d mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb7577c8f mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xceb2b443 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xee44577f mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf4c87e3c mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf9e54219 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0e9ec0ba mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x177f8da0 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x529e6f1d mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x580874b6 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x63fd0d67 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6ad469b3 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x80f8afe4 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8b286a4c ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8c35d7f2 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x99948af4 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa69c8765 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xaceacced mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb4cc52e4 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe827d7ea mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0128481f mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x09e8d44d mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0de318bd mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1e924de9 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x27e9626f mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x28a0bfa2 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3ff442d6 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4145e628 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x438b3b48 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x57f82724 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x585a1fa4 mt7615_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6517b543 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e9f225b __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8156afa8 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8526e1ad mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x892967a5 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8a998c8c mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8e43cf69 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x99b1bdc1 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xac0a060e mt7615_led_set_brightness +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbb488558 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbba37841 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc3a69420 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc3fd9968 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xca07756d mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd9d0d156 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeb68c52a mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xee597cbf mt7615_mac_enable_rtscts +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf469479a mt7615_led_set_blink +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4809c3c mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x0a483a17 mt7615_dma_reset EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x930c66a1 mt7663_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb14be017 mt7663_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf5ce8003 mt7663_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x20ec4c65 mt76x0_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x325707ca mt76x0_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5ca4e115 mt76x0_chip_onoff -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x5de2cecc mt76x0_init_hardware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x71d07661 mt76x0_phy_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc5a031f4 mt76x0_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xe7333477 mt76x0_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0537b0fb mt76x02_phy_set_band -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07bb995e mt76x02_dfs_init_params -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0bd0c878 mt76x02_sta_ps -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0cb79c9e mt76x02_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10d9e3e5 mt76x02_eeprom_parse_hw_cap -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x121bb152 mt76x02_mcu_msg_send -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1a6bd7ff mt76x02_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1dc7a20e mt76x02_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x201eb91b mt76x02_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x209c7e95 mt76x02_mac_shared_key_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24dfeb9e mt76x02_mcu_function_select -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x307ee620 mt76x02_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33043e8d mt76x02_mac_wcid_setup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33d64939 mt76x02_ext_pa_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36969231 mt76x02_phy_set_txdac -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x36edff9e mt76x02_get_lna_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x39658512 mt76x02_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d18ccd9 mt76x02_eeprom_copy -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f0b07bc mt76x02_update_beacon_iter -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x417093de mt76x02_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4200c0b9 mt76x02_init_debugfs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4290be80 mt76x02_tx_set_txpwr_auto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x455713d0 mt76x02_remove_hdr_pad -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54f6834d mt76x02_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57db5bb1 mt76x02_phy_set_rxpath -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5aa0f250 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x2f4de2e7 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb3063eb9 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xcccb2956 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xe881c500 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x261a02ab mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x42eb8761 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7512cdca mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7b93a9b1 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x905eb05b mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9ca964e2 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xed5032f2 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0709f28c mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09d16026 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15efc62f mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16d8be79 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18ff317d mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19e815d1 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x28efcac1 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29063679 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d8d5bbf mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2de9691a mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ec2875c mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x303ebe8a mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3885cf18 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x396c953e mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d3e0344 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3db6f366 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4235b5eb mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x47a9f39f mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4945281c mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x52b1b6ea mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x535392bc mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55c7132a mt76x02_mcu_cleanup EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d31db14 mt76x02_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x604b461f mt76x02_set_ethtool_fwver -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61a509a3 mt76x02_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65e18d3d mt76x02_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6821e99b mt76x02_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a8add36 mt76x02_mac_write_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6e154ff2 mt76x02_rx_poll_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x709bcbab mt76x02_init_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x73bb593d mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d8f23ec mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e4f2def mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x629c2fa8 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6df91f03 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70b4e59f mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70c3f2d3 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x710ec321 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x736aa4fc mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75717b82 mt76x02_phy_set_txpower EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75fef85d mt76x02_add_rate_power_offset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78be03b3 mt76x02_config_mac_addr_list -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x791af954 mt76x02_mac_cc_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79920976 mt76x02_dma_disable -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8796325d mt76x02_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8bd3c075 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79063e3f mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81605ae1 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x86246e0f mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x89269934 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c7f244f mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8d0bde2c mt76x02_set_coverage_class EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91e6a308 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92fcf7cb mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x935028fd mt76x02_get_rx_gain EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c479bc mt76x02_limit_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93c64af8 mt76x02_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x946fe5ae mt76x02e_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x985d36ff mt76x02_phy_adjust_vga_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99b4ca47 mt76x02_init_agc_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9addaead mt76x02_get_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9e8a65f8 mt76x02_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2d480c4 mt76x02_sta_rate_tbl_update -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9cb433c mt76x02_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa1eaa9c mt76x02_mac_reset_counters -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab72ab1b mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99f11e83 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f0d445e mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa06b1fdb mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3d48592 mt76x02_mcu_msg_send EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad5d3ba8 mt76x02_get_max_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb38e7b6f mt76x02_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb77a7de7 mt76x02_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb90e0c8e mt76x02_phy_set_bw -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbaf79a4 mt76x02_mcu_calibrate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc028ca3e mt76x02_mac_set_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc3d858c2 mt76x02_set_tx_ackto -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9d7f0aa mt76x02_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcaa73801 mt76x02_mac_setaddr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb4afe14 mt76x02_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd22ed396 mt76x02_phy_dfs_adjust_agc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdfa12da6 mt76x02_enqueue_buffered_bc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe575ef14 mt76x02_mcu_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf28749d5 mt76x02_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf71b0fa1 mt76x02_resync_beacon_timer -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdb75e87 mt76x02_set_coverage_class -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x477566ca mt76x02u_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4c80df76 mt76x02u_mcu_fw_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6ee2fa54 mt76x02u_init_mcu -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x799adb93 mt76x02u_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x852ec1f6 mt76x02u_exit_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc7f0a020 mt76x02u_init_beacon_config -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd4c81df3 mt76x02u_mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf877fe26 mt76x02u_mcu_fw_send_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x023d6783 mt76x2_get_temp_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0cbe42a7 mt76x2_read_rx_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3cfe0ad3 mt76_write_mac_initvals -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x59bb0f6d mt76x2_mcu_set_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x60ac9a3d mt76x2_reset_wlan -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x61c57ec1 mt76x2_eeprom_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6f5dd2a4 mt76x2_configure_tx_delay -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x82531062 mt76x2_phy_tssi_compensate -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x83695d56 mt76x2_mcu_tssi_comp -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x83fc5835 mt76x2_phy_set_txpower_regs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x860f042b mt76x2_get_rate_power -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b6831ac mt76x2_mcu_load_cr -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8cf16709 mt76x2_apply_gain_adj -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x91852894 mt76x2_phy_update_channel_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9ece0c9f mt76x2_mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb04afa70 mt76x2_mcu_init_gain -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb4484beb mt76x2_init_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb4ad38d3 mt76x2_set_sar_specs -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xde997ac6 mt76x2_phy_set_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe282cc4c mt76x2_get_power_info -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0c0034f7 mt7921_queue_rx_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x18f7e9a3 mt7921_usb_sdio_tx_prepare_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1952e30d __mt7921_start -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1ca84857 mt7921_mac_sta_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1e1a6276 mt7921_mac_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x23fce8c6 mt7921_register_device -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2ccdcf0a mt7921_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x46c2eca8 mt7921_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4c581f54 mt7921_usb_sdio_tx_status_data -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6c75f8b1 mt7921_mac_sta_assoc -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6d353da3 mt7921_mcu_fw_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6ebc1730 mt7921_reset -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7faf67de mt7921_update_channel -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x92f8d62f mt7921_mcu_drv_pmctrl -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa476b3b4 mt7921_rx_check -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa5b4d633 mt7921_mac_init -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa5f01d02 mt7921_mac_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa75e9233 mt7921_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xac9a83c4 mt7921_usb_sdio_tx_complete_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc482979d mt7921_mcu_parse_response -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xca77ed89 mt7921_txwi_free -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe9a7c1de mt7921_get_mac80211_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xefff36b6 mt7921_mcu_set_eeprom -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x31b2d4ff chip_wakeup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4f91886b chip_allow_sleep -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5534fa9f wilc_cfg80211_init -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8264c809 wilc_handle_isr -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa5b32129 host_wakeup_notify -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc57d66d2 wilc_netdev_cleanup -EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xc8cb0cdf host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb22e95be mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7096560 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb77e4b81 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7d9e0d3 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbbbba8c mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc0293795 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc1d6fe87 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4bef1ce mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc5a6bbd2 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc80cff8d mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc824d0d8 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd04b1fbe mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd4cfbbb8 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd5c25918 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd1da725 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0cec2ca mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe769a78f mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee3a508c mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xef56510b mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2b23c87 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfa1f1396 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfbaa666c mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdc807f1 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x359c3dc8 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x647ae1cd mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6fcd82a2 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x74c891f9 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x77425c1e mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xef464341 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf3f0d728 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfc322348 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0bcc4184 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1a779a6e mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2137d4aa mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x32e1ec5c mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x390c8838 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x39c7bd05 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3c439b37 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5af46115 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6ac61904 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6e2b86f8 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x73b71e1c mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x75840e0f mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x894cef82 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8a0e36a6 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8c4cf6ed mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8dd588be mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc5fa0309 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcd966326 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe7750ac0 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xff4b8037 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x000779c1 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0ea0b092 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x12bc558b mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x150752ed mt7921_get_mac80211_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2bf0a8ca mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x38cc3941 mt7921_txwi_free +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3fb14fce mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x633f329e mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x72a83024 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7b775235 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7dafe19d mt7921_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x807c2d72 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8097d0b6 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x93e9758b mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x94390688 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9f2774f7 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa93aa3df mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb2f2b786 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc09d2d41 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc7d7a0ae __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd43d4346 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xef18ae25 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf4e00ed1 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x079d2ec8 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x359e99a7 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4bbdc533 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb2c41d13 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdfbc30e5 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe3c9c6d8 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf86bd9c5 wilc_handle_isr EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5309f5f2 qtnf_core_attach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x57b629e6 qtnf_classify_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7a832d92 qtnf_core_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9161b3dd qtnf_get_debugfs_dir -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfd4c7821 qtnf_wake_all_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xff7f3fcf qtnf_trans_handle_rx_ctl_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0af8912e rt2800_sta_add -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0bcec6c3 rt2800_check_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x171e16b1 rt2800_mcu_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1cc3ef38 rt2800_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x22fa011e rt2800_config_erp -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2333c7fe rt2800_load_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x268d5b49 rt2800_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ab160df rt2800_get_key_seq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x34bb0aa1 rt2800_config_ant -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x34caf6f9 rt2800_link_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x35dabca3 rt2800_write_tx_data -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x44bc394e rt2800_disable_wpdma -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4ec5c5ba rt2800_set_rts_threshold -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x514332a6 rt2800_config_shared_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5bca8844 rt2800_gain_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60ddcb45 rt2800_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61c542fb rt2800_clear_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66459ea7 rt2800_link_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cad40fa rt2800_vco_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x820b92ab rt2800_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x86a8a99a rt2800_efuse_detect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x92007dd1 rt2800_probe_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96f803ec rt2800_txstatus_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9b6ac49b rt2800_sta_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa406ef71 rt2800_get_survey -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5283617 rt2800_read_eeprom_efuse -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa94d3922 rt2800_wait_wpdma_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa78e68e rt2800_pre_reset_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb364fbbe rt2800_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb41e87ec rt2800_reset_tuner -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb676aabc rt2800_config_intf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbc81515e rt2800_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc397d565 rt2800_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc8a5b59 rt2800_txdone_nostatus -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0d40f62 rt2800_config_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd81c5986 rt2800_wait_csr_ready -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb1b64db rt2800_txstatus_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb77f2e3 rt2800_write_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdf4ca2e8 rt2800_process_rxwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe05186ce rt2800_ampdu_action -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb1c3381 rt2800_config_pairwise_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeb1fa921 rt2800_get_tsf -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf579f956 rt2800_get_txwi_rxwi_size -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc2b0d57 rt2800_txdone_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x01d311f9 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4ef0860b qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x54962622 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8fefa3d4 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xcffff32b qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe6752b4b qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xfe482f7d qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x09ebc40f rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1eed5884 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x298a903a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x36fc2130 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x408fb509 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4933fce8 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4da56f8d rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x54cd4337 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x55ac6362 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x61ee86a6 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bc5a63f rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e83f746 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f3028eb rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73fe7e58 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x860a0559 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ca0ddb6 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8e8303f7 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ff177e7 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9a9051df rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c5dd296 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9f63ee77 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3ae20b9 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa95b7ca5 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa5c41f8 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb1d7cd1b rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3b59fed rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbb012d22 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbc19df23 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbcd0e587 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbeca4327 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc70230b8 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc9a17f7f rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcec14920 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd7682e69 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd77f1763 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd81cdbbf rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd838fef0 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdb0d215c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe04065af rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe4b81b92 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe8a04f1d rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0e1da82 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4e8b1e4 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfea27d5e rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x03a5ab3c rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x11a2f463 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1f38805c rt2800mmio_enable_radio EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3604e971 rt2800mmio_get_txwi -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d213d83 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x38362522 rt2800mmio_flush_queue EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4c0fcc74 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4f6125fd rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4f8b3840 rt2800mmio_queue_init EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5e2a6f85 rt2800mmio_get_txwi EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x60fc6fc2 rt2800mmio_toggle_irq -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x625bff57 rt2800mmio_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6b8b2dc8 rt2800mmio_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6d789822 rt2800mmio_enable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8a32cdc9 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x708e828d rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7c51b3f5 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x806819d2 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x90bcba31 rt2800mmio_write_tx_desc EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9a89d8f0 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9e100618 rt2800mmio_fill_rxdone EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc71f2dc5 rt2800mmio_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcb34a096 rt2800mmio_get_entry_state -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xcbc01cbd rt2800mmio_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf0ca65f0 rt2800mmio_write_tx_desc -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf22801ac rt2800mmio_init_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf4c5a670 rt2800mmio_queue_init -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0aae2fbd rt2x00lib_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13ccc152 rt2x00mac_conf_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2bf67345 rt2x00lib_txdone_nomatch -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c67d9aa rt2x00mac_rfkill_poll -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x32b5c26a rt2x00queue_stop_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3a67e431 rt2x00lib_probe_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b31c095 rt2x00queue_unmap_skb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3c58d2fb rt2x00mac_remove_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3da69b07 rt2x00lib_txdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x473ff67c rt2x00lib_dmadone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49b6bf5c rt2x00queue_stop_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49f04869 rt2x00mac_reconfig_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a0992b6 rt2x00mac_set_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4dc459d2 rt2x00queue_map_txskb -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50dc3de1 rt2x00mac_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57db4047 rt2x00lib_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x57dfd11e rt2x00mac_get_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5ad17b3c rt2x00mac_add_interface -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x736671b3 rt2x00queue_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x77ad52f7 rt2x00mac_sw_scan_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78da5754 rt2x00queue_for_each_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x891e3d66 rt2x00mac_tx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8efd7de8 rt2x00mac_set_tim -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x98a6aa0e rt2x00mac_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x990c9e07 rt2x00lib_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa038feb4 rt2x00queue_start_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa04d975c rt2x00lib_txdone_noinfo -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa4128ec7 rt2x00lib_remove_dev -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa9d28d1a rt2x00queue_flush_queues -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0c88b83 rt2x00queue_get_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb19e1169 rt2x00lib_pretbtt -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2d52f40 rt2x00lib_beacondone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2fb8f54 rt2x00mac_sw_scan_start -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce088df4 rt2x00queue_unpause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xce55f0c5 rt2x00lib_set_mac_address -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd370a120 rt2x00mac_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd5d19311 rt2x00mac_get_ringparam -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd79f380e rt2x00mac_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf511f6c rt2x00queue_start_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe7dbe2f1 rt2x00mac_stop -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea1a7915 rt2x00mac_configure_filter -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xec791957 rt2x00lib_dmastart -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf068527e rt2x00mac_tx_frames_pending -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf141cbe1 rt2x00mac_get_antenna -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf3681952 rt2x00lib_get_bssidx -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfb69db7b rt2x00queue_pause_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff9583b7 rt2x00mac_bss_info_changed -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x029d73db rt2x00mmio_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x98cda047 rt2x00mmio_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa3dd2f33 rt2x00mmio_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xdfc509ae rt2x00mmio_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe5a6da95 rt2x00mmio_rxdone -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x85a945a9 rt2x00pci_remove -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x92305388 rt2x00pci_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbc35e910 rt2x00pci_pm_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1a7eadd3 rt2x00usb_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2430e450 rt2x00usb_watchdog -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x27465db3 rt2x00usb_vendor_req_buff_lock -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2a5cd6fb rt2x00usb_kick_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2b8b0e46 rt2x00usb_clear_entry -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4565fe2f rt2x00usb_disconnect -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x48c8754c rt2x00usb_flush_queue -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5118a05d rt2x00usb_initialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x51ed383e rt2x00usb_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5f9f6cb1 rt2x00usb_vendor_request -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x96c90b5a rt2x00usb_regbusy_read -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9860b289 rt2x00usb_register_read_async -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x996571bc rt2x00usb_resume -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdedc6d54 rt2x00usb_uninitialize -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe30134d8 rt2x00usb_vendor_request_buff -EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf8d391b6 rt2x00usb_disable_radio -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2aa2ce36 dm_writepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74473e31 rtl92c_set_p2p_ps_offload_cmd -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8793a1f8 dm_savepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa7b767a3 dm_restorepowerindex -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x061c9b9c rtl8723_phy_path_adda_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1726e07a rtl8723be_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2bdfca9c rtl8723_phy_query_bb_reg -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3cf9a958 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa31a2662 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd9156167 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf7415244 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf872d5b7 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02d68aed rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x07b957c2 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13438c31 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1bd73f88 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d32b474 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22572c3c rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25eadf26 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2aa4b3ec rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3bf6a722 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e3fa5fa rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4027454b rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x49ce1769 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x526e3449 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x531f4661 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x58b60c3d rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x635da687 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63c596c4 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x641f815c rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x673b2e6c rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x67aa0a54 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a05f3b4 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x725f9936 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x750d4ec5 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x754613c4 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75de2684 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x775f25df rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a7a7f0b rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7e1ba648 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x85596c57 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89fb5c5a rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x92b738c5 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf164c2c rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb034ede3 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5259817 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5967a07 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7071599 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7d8b45c rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc7f18727 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc96e8982 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd06b04d3 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd1d98c61 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd278e6ca rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe1fc06ec rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe288f842 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe39c1ad7 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe5ab5470 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4709942 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x70dd6ba5 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7d7af47c rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x941cf7a9 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x97e6c2eb rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xd19d374d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7927addd rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9a9ec89d rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe57af23c rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0c861844 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2358b823 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3e81ae07 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x43a588b2 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x447de9c4 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5670fc2e rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7d327b18 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8a9389c8 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x911248cb rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x987d6657 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9a185cb4 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa068ebc3 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xac9c752a rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb08ecc58 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xea77889e rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf57e84ec rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37eef292 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x690b0295 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90078181 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb02347da dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0659078c rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b3993c7 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20960658 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x23f08f0e rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29ab5fc4 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a0a88d0 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d6f8f70 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3bc5eaac rtl8723_phy_reload_mac_registers EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x450f70a6 rtl8723_cmd_send_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x54f0bf1b rtl8723_write_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x693e866a rtl8723_enable_fw_download -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x75f36453 rtl8723_dm_init_dynamic_bb_powersaving -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x785a6a8e rtl8723_phy_save_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82de307a rtl8723_download_fw -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8404490e rtl8723_phy_rf_serial_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x87774c20 rtl8723_phy_mac_setting_calibration -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x87d9f02f rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x42438271 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4aa79015 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b550eae rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d8b04f4 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x523d9c79 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6b0433b5 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x729f85b3 rtl8723_write_fw EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8d2d8968 rtl8723_dm_init_dynamic_txpower -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94155c5f rtl8723_phy_init_bb_rf_reg_def -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa9f8b587 rtl8723_phy_path_a_fill_iqk_matrix -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb86311bd rtl8723_phy_txpwr_idx_to_dbm -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc5515e88 rtl8723_phy_reload_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7b69539 rtl8723_phy_reload_mac_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7f1043a rtl8723ae_firmware_selfreset -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xda38b671 rtl8723_dm_init_edca_turbo -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc5a931f rtl8723_phy_path_a_standby -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe35d1faa rtl8723_phy_pi_mode_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeb892f61 rtl8723_fw_free_to_go -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf462459f rtl8723_save_adda_registers -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x002ca3c3 rtl_action_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a92d53b rtl_beacon_statistic -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10e41665 rtl_lps_leave -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ec165d9 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c3a9e4c rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9429151b rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3a5ba7d rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xba9d6f4a rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4f3c03d rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf7c4fee rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe041e218 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe9474dc4 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebea753d rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xed885053 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x04155f49 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b6b35ac rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x130b8c76 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20886b5b rtl_swlps_beacon EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c8995ed rtl_get_hal_edca_param EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30dcf837 rtl_fw_page_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d5a24bd rtl_swlps_beacon -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41cc6cfc rtl_tx_ackqueue -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a6d574a read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fd0728f rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x342f12e7 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35c3c617 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48fcee87 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a0f3352 rtl_lps_enter EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6740fdc2 rtl_deinit_rfkill -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6a09413a rtl_tx_mgmt_proc -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6d75b157 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f4be68e rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x507c58e1 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5ac55775 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5cfb20e0 rtl_set_tx_report EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6e5a5266 rtl_set_tx_report -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8978b33e rtl_fw_block_write -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9121412e rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79a86d35 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83600de3 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90209eab rtl_ops EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d468f63 rtl_init_rx_config -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaf0b2b74 rtl_lps_enter -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc651e22e rtl_init_core -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd43d142e rtl_tx_report_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4cb808d rtl_p2p_info -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdeb1121a rtl_ops -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf14991b rtl_deinit_deferred_work -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9a4ecc1 rtl_is_special_data -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf013f41f rtl_ips_nic_on -EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf915c565 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa010d8ab rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa7a2a40 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc19b433 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7a3123d rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc919cf6b rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6305627 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb43e83e read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5253b7e rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5e00e43 rtl_lps_leave EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2e224ba3 rsi_91x_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x52ec46a4 rsi_mac80211_detach -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x8d8b648a rsi_hal_device_init -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa48cd77e rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x363ab26a rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x958a85b0 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa97e14d4 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc4156d81 rsi_91x_deinit EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg -EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd31aaec5 rsi_91x_deinit -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x0cf4d7db cw1200_core_release -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x3c8bf494 cw1200_can_suspend -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x996f38a6 cw1200_irq_handler -EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xbf91c652 cw1200_core_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa4072dbf wl1251_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa647d021 wl1251_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd4c6b1ae wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe5d89794 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x78e89589 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x8afa3a39 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb26fd461 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd1680411 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x936fc157 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb8e5ad21 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe1eea0d8 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01cd559e wlcore_synchronize_interrupts EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0dc63726 wlcore_disable_interrupts_nosync -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ec0b715 wl12xx_cmd_build_probe_req -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f0ee043 wlcore_alloc_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12c6fe4d wl12xx_acx_mem_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12ca6b1d wl1271_cmd_data_path -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14f1aa48 wl1271_cmd_send -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ca0f7a0 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ecd3f73 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10e7261d wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1493a992 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x171821b6 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c852440 wlcore_event_channel_switch EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20fcadb4 wlcore_scan_sched_scan_ssid_list -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x21e3de5f wl1271_acx_sleep_auth -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26e9a5ce wl1271_debugfs_update_stats -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x276c0a9e wl1271_tx_min_rate_get -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2d2eedae wlcore_event_fw_logger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2df9f123 wlcore_event_soft_gemini_sense -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31d90e34 wl1271_tx_flush -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b2f950f wl1271_cmd_test -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42dda250 wlcore_boot_run_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d2149f4 wlcore_set_key -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d3be084 wlcore_event_dummy_packet -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x528d856c wl1271_acx_set_ht_capabilities -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55fb4100 wlcore_synchronize_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d16bf0f wlcore_event_roc_complete -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e10bc69 wlcore_boot_upload_firmware -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ecca643 wlcore_event_channel_switch -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f382cf0 wlcore_event_rssi_trigger -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65cbbc5e wlcore_set_partition -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c0b7ca4 wl1271_cmd_configure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6da023e7 wlcore_free_hw -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79b0dd08 wlcore_event_max_tx_failure -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d0918b2 wlcore_boot_upload_nvs -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7dffa19c wlcore_cmd_generic_cfg -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8124f586 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3280e860 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x364dd734 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x41beb9a7 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x42b8bac1 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46336ebc wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4fed601b wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5295e54a wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52be295f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54ba3fab wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59f023b8 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d73a79e wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62a71d7c wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6464a77a wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68e7b9c9 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f9c863a wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x708cc7bd wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x709195bf wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7bd2b0b8 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x817c8821 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82cac29b wl1271_acx_init_mem_config EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cc9e8f8 wlcore_cmd_wait_for_event_or_timeout -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d701d2f wlcore_event_sched_scan_completed -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa401c446 wlcore_enable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa641ebe2 wl1271_acx_init_mem_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9f5ed56 wlcore_probe -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbc4d774c wl1271_acx_pm_config -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb1ce212 wlcore_event_ba_rx_constraint -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfeef140 wlcore_set_scan_chan_params -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcfef35c3 wlcore_translate_addr -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdc8ee388 wlcore_event_beacon_loss -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe92e8b2d wlcore_disable_interrupts -EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe05e858 wlcore_event_inactive_sta -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7273dd1a nfcmrvl_parse_dt -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x79129d74 nfcmrvl_nci_unregister_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9b2c7cfb nfcmrvl_nci_register_dev -EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf3fd658f nfcmrvl_nci_recv_frame -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x44fd4e45 pn533_rx_frame_is_cmd_response -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4c796caf pn533_finalize_setup -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4e941fc6 pn53x_common_clean -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb6ef5198 pn53x_register_nfc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd559dd40 pn532_i2c_nfc_alloc -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdd2c65c3 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x89780a23 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x899f0b6a wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93399be8 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x98c65e35 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9aad1950 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xabf301f3 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4c00156 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd189fb3 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc12b830b wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc31652a3 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf40b63b wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7e2a2e0 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8701dc1 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde9a4038 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe237c553 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf037d0d8 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf48f92a6 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x29d24ad3 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3a9907a9 wwan_unregister_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x498c177c wwan_register_ops +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xbbb8b6ef wwan_create_port +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xcc20b07a wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wwan/wwan 0xe7bbc4f6 wwan_port_rx +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0f15459f nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x73675611 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x76de6fc1 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe546581b nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3c3b84c6 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x85bf5477 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8cfb1950 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x8e166a39 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xaa03f504 pn53x_common_init EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack -EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xfcb9f139 pn53x_unregister_nfc -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2c08db57 st_nci_discover_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x429e0edf st_nci_hci_cmd_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x458ef37f st_nci_enable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5ef89c89 st_nci_hci_event_received -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5fdf0e59 st_nci_probe -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x74f6670c st_nci_disable_se -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd5f11ba0 st_nci_hci_load_session -EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfece7072 st_nci_remove -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x22441d69 st95hf_spi_recv_echo_res -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x74aa9eff st95hf_spi_send -EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xbdef7a7c st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe609d8af pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe7633895 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0916274d st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x156c416f st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x386eb33e st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3e532abd st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6601f76f st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7a676539 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9c563c0b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xec958198 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x065e4df6 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x38caa3fb st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa761c4ee st95hf_spi_recv_echo_res 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 0x7c8355ee ntb_transport_create_queue EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x88bf95fe ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x8519c865 ntb_transport_register_client EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up -EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa4088718 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xa9aeda83 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 0xd75d72cd 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/nvdimm/nd_virtio 0x423c34d0 virtio_pmem_host_ack -EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xd6ea17ee async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x1716b333 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xaa4e980f virtio_pmem_host_ack EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x01850555 nvme_auth_generate_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x1d3b270f nvme_auth_transform_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x22e5d1de nvme_auth_augmented_challenge EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x399d9ac8 nvme_auth_hmac_hash_len +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x45a32bbf nvme_auth_gen_pubkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x51873876 nvme_auth_get_seqnum -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x5789f516 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x674c5bc1 nvme_auth_hmac_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6adadbb4 nvme_auth_free_key EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x6e91ee1b nvme_auth_digest_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x780989d1 nvme_auth_dhgroup_id EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x9070925e nvme_auth_extract_key -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0x96b74f33 nvme_auth_gen_shared_secret -EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc8225235 nvme_auth_gen_pubkey +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xb7ed9ed5 nvme_auth_gen_shared_secret EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xc9bb48ac nvme_auth_dhgroup_name EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xcb39603c nvme_auth_hmac_id +EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xd3d70581 nvme_auth_gen_privkey EXPORT_SYMBOL_GPL drivers/nvme/common/nvme-common 0xf0ccf2d4 nvme_auth_dhgroup_kpp -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x008c0e4a nvme_sync_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0122acec nvme_unquiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0133c662 nvme_try_sched_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03ed5d64 nvme_start_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a8e52c0 nvme_auth_negotiate -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0dd764ca nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00b94e50 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02f2f694 nvme_auth_free +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x032a3e60 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x09833cd8 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d4f1646 nvme_quiesce_io_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x13415468 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x182bb6a0 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1a607e15 nvme_remove_admin_tag_set EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27fcbedb __tracepoint_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3efa7c4c nvme_set_queue_count -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x415a5429 nvme_init_ctrl_finish -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43b35b7f nvme_wait_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x489d784c nvme_complete_batch_req -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48a15eef nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f163fbc nvme_auth_stop +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30315159 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30f14e4e nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x32775336 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x347b5283 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x34b1034c nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b8b8837 nvme_dev_attrs_group +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x43ccddc8 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x461f1d45 nvme_cancel_admin_tagset EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x493e5cb0 nvme_fail_nonready_command -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4fcd54a6 nvme_cancel_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x565c9dce nvme_auth_free -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57673b84 __nvme_check_ready -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57dcd9a5 nvme_get_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x59b5246b nvme_init_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5d9800e5 nvme_auth_wait -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x60a117ce nvme_alloc_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x649f3a03 nvme_auth_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50331b27 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51426ef1 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x520c49b3 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e6880d1 nvme_wait_freeze EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6546fc4d nvme_init_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69884a67 nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b642726 nvme_remove_admin_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b8db3b1 nvme_dev_attrs_group -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x709c8daf nvme_cleanup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7374343d nvme_unquiesce_admin_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x754bc727 nvme_change_ctrl_state -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7aaafbc2 nvme_delete_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7bb854e6 nvme_auth_stop -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80fac225 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6549487a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d9cfce2 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74922a18 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c316abe nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d396cc8 nvme_unquiesce_io_queues EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82bda093 nvme_setup_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x84f3f224 nvme_quiesce_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x89bec03a __nvme_submit_sync_cmd -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a7e6290 nvme_remove_io_tag_set -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b6ac2d0 nvme_cancel_tagset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8db2f062 nvme_stop_keep_alive -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e94b395 nvme_set_features -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9090b35f nvme_uninit_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x914564ad nvme_start_freeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91cd3bf0 nvme_mpath_start_request -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x95612cc5 nvme_host_path_error -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x98501a9d nvme_disable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9cd1ec2b nvme_wait_freeze_timeout -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9e28603c nvme_mark_namespaces_dead -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5d29fdc nvme_remove_namespaces -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xafb47a11 nvme_unfreeze -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb093dd3e nvme_wait_reset -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xce4e4e11 nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x86c6dcba nvme_mpath_start_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x889cecd1 nvme_unquiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b7a38d8 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8f78d757 nvme_auth_negotiate +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b976baa nvme_alloc_admin_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d4cb140 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb0a00264 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb2ca940f nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb32c6005 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6d20460 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6fa6d2c nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8000ad6 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba00bc0b nvme_remove_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba33ba4e nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5d062b8 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcde2f025 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd1af3f36 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd2d891f5 __traceiter_nvme_sq EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xda6436dd nvme_sync_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd13ccca nvme_complete_async_event -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1823191 __traceiter_nvme_sq -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf03a9e85 nvme_enable_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc035efc nvme_reset_ctrl -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc849059 nvme_quiesce_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd5e186e2 nvme_mark_namespaces_dead +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd86e8572 nvme_auth_wait +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0955a2f nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe0c20098 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe21474a9 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe45855de nvme_alloc_io_tag_set +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe4f43f6d nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6a67fc1 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf208f3a4 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9d0e0c6 nvme_disable_ctrl EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1e328d22 nvmf_set_io_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x36a3e1a9 nvmf_get_address -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4876e060 nvmf_connect_io_queue -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4bd21139 nvmf_ip_options_match -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4ff8458a nvmf_reg_read32 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x790976e9 nvmf_reg_read64 -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x89c086b9 nvmf_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8ac5c0e2 nvmf_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8f5da491 nvmf_should_reconnect -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x91d9badd nvmf_map_queues -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc213ed3b nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x48e166a8 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7e1055cb nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8109e7bd nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x820ca1e6 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x85abde8e nvmf_map_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x979df61f nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9d9e8688 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa48a2c80 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa4faf759 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdad3bfb5 nvmf_should_reconnect EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdd8af66e nvmf_free_options -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf21369da nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xe3c4b96e nvmf_get_address EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss -EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8e371f08 nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbb0e18a6 nvme_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xcc8a2d78 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xf393ce1f nvme_fc_register_localport EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x19637d37 nvmet_sq_destroy -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x27ee7056 nvmet_unregister_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x30ebbfe7 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x05e978f0 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x14ef3dc6 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2096f225 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x380795b9 nvmet_ctrl_fatal_error EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6e8f030d nvmet_req_complete -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7c45ab73 nvmet_ctrl_fatal_error -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8a2ac82a nvmet_register_transport -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb84d5e1f nvmet_req_alloc_sgls -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdd945dfb nvmet_sq_init -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdea9f43d nvmet_req_uninit -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xed66592f nvmet_check_transfer_len -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf1207ae6 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5d85623b nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x75c48789 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7cfb4e02 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x96055c30 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xaf1e55e5 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd22f1819 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xebc3da9b nvmet_sq_init EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host -EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x64954d7a nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4f08d930 nvmet_fc_register_targetport EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x6ff62dab nvmet_fc_rcv_fcp_abort EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7bfa9497 nvmet_fc_rcv_fcp_req EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport @@ -16751,578 +16761,578 @@ EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops -EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0xfa776a47 iproc_pcie_shutdown -EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x89cbfd40 switchtec_class -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x5dbde0ec nv_cspmu_init_ops -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x6a4867be arm_cspmu_sysfs_event_show -EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xa3ddcaad arm_cspmu_sysfs_format_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0e29fc59 hisi_pmu_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3193de79 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0xe18cf078 iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x43d632d8 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0x5b392c52 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xb5415861 arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL drivers/perf/arm_cspmu/arm_cspmu_module 0xe078be88 arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0e008a5e hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x10723ec1 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2f5c60dc hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3e95a0f7 hisi_uncore_pmu_add EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x56eea692 hisi_uncore_pmu_stop -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5733b524 hisi_uncore_pmu_del -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x59466faf hisi_uncore_pmu_event_update -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x602d7fcf hisi_uncore_pmu_start -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x70957f13 hisi_uncore_pmu_set_event_period -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7d42a02c hisi_uncore_pmu_read -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x81f6365e hisi_uncore_pmu_init_irq -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa1a258d0 hisi_uncore_pmu_event_init -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xab0e73ac hisi_uncore_pmu_enable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xab8a1186 hisi_uncore_pmu_disable -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb4c94c07 hisi_uncore_pmu_identifier_attr_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xcbb0d492 hisi_uncore_pmu_get_event_idx -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd046ac0c hisi_event_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xde3973da hisi_format_sysfs_show -EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xeaae406b hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x46e0779a hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x55a025d7 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5b996f2e hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x619854f7 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6b734291 hisi_pmu_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xaefea25b hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb21fee36 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb80563a5 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xcbaffc29 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xcfedb35c hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xd9b9d071 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xec6d0b3f hisi_uncore_pmu_set_event_period EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu -EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x2ef1cae6 sun4i_usb_phy_set_squelch_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x186e8e26 tegra234_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x18e43343 tegra186_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1ee2b04d tegra_xusb_padctl_disable_phy_sleepwalk -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1fac5254 tegra_phy_xusb_utmi_port_reset -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3014e528 tegra_xusb_padctl_enable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x373ccd7d tegra_xusb_padctl_remote_wake_detected -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x522359a3 tegra_xusb_padctl_put -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5c50fd9c tegra_xusb_padctl_get -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x602543b4 tegra124_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x67725fd1 tegra210_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x69d72c2e tegra_xusb_padctl_hsic_set_idle -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x77e89312 tegra_xusb_padctl_usb3_save_context -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9e595ee3 tegra_xusb_padctl_get_usb3_companion -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb4a67d87 tegra_phy_xusb_utmi_pad_power_down -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbdbf58a9 tegra_xusb_padctl_usb3_set_lfps_detect -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc6ca8e84 tegra_xusb_padctl_set_vbus_override -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcad2d898 tegra194_xusb_padctl_soc -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe94a7892 tegra_xusb_padctl_disable_phy_wake -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xef5df257 tegra_phy_xusb_utmi_pad_power_on -EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf4d8d92b tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfe841fc5 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x26f71d6b sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x02980099 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1d4d640a tegra_phy_xusb_utmi_pad_power_on +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x1f3082e0 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x286c5a02 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x2954cf58 tegra234_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x29de723d tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x46b6ebda tegra_phy_xusb_utmi_pad_power_down +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x511f02ca tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x56481eaf tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6823a491 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x9f8b6c4e tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa08694dc tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb17d392b tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb655117e tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe2dcd253 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe534ede6 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xedbcc409 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf6814f11 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfbe899e6 tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xfc042e85 tegra_xusb_padctl_hsic_set_idle EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x112dbe5c mcp23x08_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x21561ab3 mcp23x17_regmap -EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xa4104ceb mcp23s08_probe_one -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x76267fb8 lpi_pinctrl_remove -EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xbe6a3d45 lpi_pinctrl_probe -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x7f404856 cros_ec_sensorhub_unregister_push_data -EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xfe3b76a4 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x15c4336e mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x25bf9781 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb85a597f mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x26a2513e lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xeeee13c3 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x2a0e214f cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x5a3936e5 cros_ec_sensorhub_unregister_push_data EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0af16786 ssam_controller_event_enable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0dee57d1 ssam_controller_event_disable -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12213e80 ssam_controller_device -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x195283ae ssam_device_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1fa2fc4e ssam_device_remove -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x25afbe78 ssam_client_link -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x28b4decb ssam_device_get_match_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4223a9a2 ssh_packet_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4f28fd6d ssam_client_bind -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x51a787f6 ssam_request_do_sync_with_buffer -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x63155fd7 ssam_request_do_sync -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6b25c35e __ssam_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x72104b1d ssam_controller_get -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8460163d ssam_request_sync_free -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x85596c5e __ssam_device_driver_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x85ec1c3d ssh_packet_put -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8e2cc9a5 ssam_notifier_register -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x961fe4b3 ssam_request_write_data -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9daabab9 ssam_remove_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa0bb8dba ssam_controller_stateunlock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa0d2e9dc ssam_bus_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa8d1375a __ssam_register_clients -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb1258da8 ssam_device_get_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc03bc916 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0c0b674c ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0c95f955 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x112c7b25 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x13f1883a __ssam_register_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x22ec7d83 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x242b70a5 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2633a7f8 ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x263a59a0 ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2ef0644b ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x32075423 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x416bb121 __ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x44521551 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4e4a3f27 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x52738c30 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x55bfca4c ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6001d0f6 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6aa2b248 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6b8e1768 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6d831df5 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x74a761d8 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x768add1e ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7dd88361 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7f7af337 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x81998715 ssam_request_do_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9abde031 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d25f767 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xad7d9802 ssam_request_do_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbcbdb5bc ssam_request_sync_init EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc6ed858d ssam_device_type -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcc1dcf1e ssam_controller_statelock -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcfe21a83 ssam_request_sync_alloc -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd556f20e ssam_device_add -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xda86e31d ssam_device_driver_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe2460b3a ssam_request_sync_init -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe316a562 ssam_request_sync_submit -EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfd2d030e ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe3308f2c ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe42fbf7b ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe954f466 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xecce57e0 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x1d7a8002 san_client_link EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister -EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xf65165d0 san_client_link -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x3eee1135 reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x45aed692 devm_reboot_mode_register -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x8ae12324 reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xeb7a6e2a devm_reboot_mode_unregister -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x472ee401 bq27xxx_battery_setup -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xace61f1e bq27xxx_battery_teardown -EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb65c5412 bq27xxx_battery_update -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0a208537 pcf50633_mbc_usb_curlim_set -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x2a11a0b6 pcf50633_mbc_get_usb_online_status -EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x999cc199 pcf50633_mbc_get_status -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0189ff79 ptp_qoriq_enable -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x03ff6be0 ptp_qoriq_adjtime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x1c0b46a0 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x1cda9f14 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x38996e1b devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x964dd6a3 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xa8d5ad05 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7c8d4be3 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x8dfffbf0 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x9745b0fc bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4985687d pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x5a5a0c61 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xfa080952 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x085bd3d0 ptp_qoriq_settime EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x71643887 ptp_qoriq_init -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7f12c543 ptp_qoriq_adjfine -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb4d32acc ptp_qoriq_settime -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe2849b18 ptp_qoriq_free -EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xeb380e85 extts_clean_up -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1aa722e1 mc13xxx_fixed_regulator_set_voltage -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x397384c6 mc13xxx_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3b40a613 mc13xxx_get_num_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9df37c77 mc13xxx_fixed_regulator_ops -EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc6ad27f5 mc13xxx_parse_regulators_dt -EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x5344a4be rohm_regulator_set_voltage_sel_restricted -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x018d1f59 wm8350_register_led -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x18f10489 wm8350_dcdc25_set_mode -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2a5f8112 wm8350_ldo_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3334123b wm8350_dcdc_set_slot -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x781947b8 wm8350_isink_set_flash -EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd5312511 wm8350_register_regulator -EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xf4156ded wm8400_register_regulator -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1a186145 scp_get_rproc -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2a1f5105 scp_mapping_dm_addr -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2dd0a838 scp_put -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x3be49a63 scp_get_vdec_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6d912e0f scp_get -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x866e9dfb scp_get_venc_hw_capa -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xdfba1a17 scp_get_device +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x45584b63 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4d75f9dc ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x50333356 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x86cd8664 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xaa74c1d8 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe3a8ca4e ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xfe7da68c ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0352de57 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x232c153a mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x55ac0506 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x59b20622 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5d268452 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x5b6c858e rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1397d54b wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2f75cd88 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6c3bb793 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x71efacda wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x91f91180 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9ce61d42 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x83a0796e wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x414c4bc7 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x5778799c scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x6eed50d2 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x9f3367be scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xaed00388 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xcdbe8878 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xfcc64c5f scp_get_venc_hw_capa EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x561f92ac scp_ipi_unlock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x59674b81 scp_ipi_lock -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6a0ede45 scp_ipi_send -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x85dd871f scp_ipi_unregister -EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x9c67d0f1 scp_ipi_register -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x80622d77 pru_rproc_set_ctable -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0xdfb5f43d pru_rproc_put -EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0xfbc62891 pru_rproc_get -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0ea3b69f qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x445d721d scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x60824877 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6ffa915a scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xbc3884e9 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xdc21684a scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x25935198 pru_rproc_set_ctable +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x5e37547e pru_rproc_get +EXPORT_SYMBOL_GPL drivers/remoteproc/pru_rproc 0x88a7ce50 pru_rproc_put +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0051188e qcom_remove_ssr_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1ad891f6 qcom_add_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x3f2f9991 qcom_remove_glink_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x684eb148 qcom_remove_ssr_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x6a9b58e3 qcom_minidump -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7372682d qcom_remove_smd_subdev -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x945bc40b qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1086be7c qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x17e9f1ae qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5d8ec581 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x89217c9f qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8ebc2d09 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xbaa769a7 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xbce2a439 qcom_add_glink_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xec07aff9 qcom_add_ssr_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x0fffb0bd qcom_q6v5_panic -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x1def21ba qcom_q6v5_wait_for_start -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2cac8517 qcom_q6v5_prepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x60eda9b3 qcom_q6v5_request_stop -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x645bd3e3 qcom_q6v5_init -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb0b194ab qcom_q6v5_unprepare -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe7920107 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3bdba34c qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3e25f5de qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x69066072 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6ec08212 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x816bd1c8 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa238e462 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd035241d qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x054732d6 qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked -EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x27a477ca qcom_add_sysmon_subdev EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x356e201b mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x86903274 mtk_rpmsg_destroy_rproc_subdev -EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x8ec183d9 mtk_rpmsg_create_rproc_subdev EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xbd935ab3 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x1d872cdc qcom_glink_native_probe EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x0ee87acc qcom_glink_smem_register EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x4fe311b0 qcom_glink_smem_unregister -EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0xcd1786a0 qcom_glink_smem_register -EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0xd19f32d7 ds1685_rtc_poweroff -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01b1d3bb cxgbi_sock_closed -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01d7027d cxgbi_conn_alloc_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05e3a981 cxgbi_sock_purge_wr_queue -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x065e31b5 cxgbi_iscsi_init -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08ba0e46 cxgbi_ep_connect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1898200d cxgbi_device_find_by_netdev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e2b02c8 cxgbi_conn_pdu_ready -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1fe7a8e0 cxgbi_sock_established -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2992381f cxgbi_sock_free_cpl_skbs -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2f5fa9f5 cxgbi_device_portmap_create -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33a7941e cxgbi_sock_rcv_peer_close -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x36aebf44 cxgbi_get_ep_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3819327b cxgbi_ep_poll -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4337648b cxgbi_create_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x435a1c55 cxgbi_sock_check_wr_invariants -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5458d4f3 cxgbi_sock_act_open_req_arp_failure -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54d69025 cxgbi_set_host_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5def98c1 cxgbi_sock_rcv_close_conn_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fa8dc2d cxgbi_device_find_by_netdev_rcu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x637183ec cxgbi_conn_init_pdu -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64bc7b58 cxgbi_sock_select_mss -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a2d011a cxgbi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70af1a19 cxgbi_device_register -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7189eead cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/rtc/rtc-ds1685 0xefbfe866 ds1685_rtc_poweroff +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0110abfc cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x011da80d cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01d3d577 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0dd65e65 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x136d4dae cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14a65846 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x25783035 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cbcee4b cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30888961 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3108a7f6 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41f52fbd cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47057bc1 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ed61380 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bc083bc cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6371875e cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64b81a94 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a36d142 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c79b96b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7021abd3 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73e36818 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74c4dcac cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75b9d2ee cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77b11222 cxgbi_sock_purge_wr_queue EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8319f739 cxgbi_ddp_set_one_ppod -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86e9906e cxgbi_device_unregister -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x884580c9 cxgbi_hbas_remove -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8db37fb2 cxgbi_sock_skb_entail -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x94605b3e cxgbi_set_conn_param -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9583be71 cxgbi_sock_rcv_wr_ack -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x960e9f58 cxgbi_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa03e2785 cxgbi_conn_tx_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0bf47e6 cxgbi_ddp_ppm_setup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9bda30d cxgbi_bind_conn -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3058c4c cxgbi_parse_pdu_itt -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd80db1a cxgbi_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd836cfc cxgbi_sock_fail_act_open -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde1a5584 cxgbi_sock_rcv_abort_rpl -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0790eae cxgbi_get_conn_stats -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0f80d53 cxgbi_device_portmap_cleanup -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4f0f3a1 cxgbi_hbas_add -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe5219d81 cxgbi_ep_disconnect -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea120648 cxgbi_device_find_by_lldev -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb69c8fb cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8412beec cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85b5dcba cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a6b5867 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9301b993 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3354941 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac48ee27 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd0b8865 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf594925 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc218d13a cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5185c50 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7bb620d cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd4795ac cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xced1fe36 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd26c9c26 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5b605ff cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5ee5782 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd72805a3 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb1a1558 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf69bf49 cxgbi_destroy_session EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible -EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf688788a cxgbi_get_host_param -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x142f0cfc fcoe_libfc_config -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1c578375 fcoe_get_wwn -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x25e13139 fcoe_ctlr_device_add -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3cfc066e __fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f045b24 fcoe_check_wait_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4460f280 fcoe_ctlr_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x51adeb0f fcoe_fcf_device_delete -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6508cb12 fcoe_link_speed_update -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69c6c45f fcoe_validate_vport_create -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x71789a70 fcoe_clean_pending_queue -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x73dd4513 fcoe_fc_crc -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x845def5e fcoe_start_io -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b3d536c fcoe_get_paged_crc_eof -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xac448a04 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf3f14fb1 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfbeb8bb0 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0d7faa61 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x177d38bd fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x249b65fa fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2d6ceb79 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x32b5e8b7 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x58693cd4 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x69241215 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7363dbce fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x96c20e8d fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9f289115 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaff27aa5 fcoe_ctlr_get_lesb EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcca8a17e fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xce5c7fad fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd9631891 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xda2c2ecf fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe51edc8f fcoe_start_io EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str -EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfacd855c fcoe_get_lesb -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x415cc8f1 fdomain_create -EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x886c5de4 fdomain_destroy -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0a03eef1 hisi_sas_release_tasks -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x13e98da3 to_hisi_sas_port -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2592f2be hisi_sas_phy_down -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2716f48a hisi_sas_debugfs_dir -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x29d6b02f hisi_sas_probe -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3408e7ad hisi_sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x348809f0 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf98ef2e7 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x40b806ab fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x8b77935e fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0796d854 hisi_sas_sync_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0cc0eead hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0e3bd96c hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0fc11afe hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x35a784ce hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x361096ad hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3a853eea hisi_sas_slot_task_free EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x40ac648c hisi_sas_get_prog_phy_linkrate_mask -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x438cf11d hisi_sas_get_fw_info -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x48dac7e4 hisi_sas_sync_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x454ff141 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4b47e58c hisi_sas_slave_alloc EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5dbf24a0 hisi_sas_phy_oob_ready -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x626148c6 hisi_sas_scan_finished -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x71f43510 hisi_sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7581ef3f hisi_sas_phy_bcast -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x79dfe31f hisi_sas_host_reset -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7aeb9b7e hisi_sas_controller_reset_prepare -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x94c695b9 hisi_sas_controller_reset_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9dd9f771 hisi_sas_sync_poll_cqs -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xab428a8e hisi_sas_stop_phys -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xabeb3791 hisi_sas_free -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xae9a5f0f hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x564659ea hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x63b4e640 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x795cc86e to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7f190c43 hisi_sas_phy_bcast +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x805c2f51 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x87c7eae7 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8bea5e4f hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8c323bc1 hisi_sas_probe EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb7713f50 hisi_sas_remove EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc4a641ff hisi_sas_init_mem -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcb9a735d hisi_sas_sata_done -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcf1030e1 hisi_sas_alloc -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdac10edc hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc4168e15 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd295e8c1 hisi_sas_sync_poll_cqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xd934bb33 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdb8a8a09 hisi_sas_controller_reset_done EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe5241ba0 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe40e953e hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe4a72821 hisi_sas_free EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xeb04ea67 hisi_sas_sata_done EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol -EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf6262c7e hisi_sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x00c18dc1 iscsi_boot_create_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x091a0b21 iscsi_boot_create_acpitbl -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3ba36142 iscsi_boot_create_target -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x416c1018 iscsi_boot_create_ethernet -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x64204778 iscsi_boot_destroy_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x66f009e4 iscsi_boot_create_host_kset -EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa6d6104e iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf845a5bc hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1b61518b iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x20fe347f iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3085e680 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3b51f490 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x51691a65 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5873e2ce iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x76428583 iscsi_boot_create_kset EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x6635b0f7 fc_seq_els_rsp_send -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x039fdfff iscsi_eh_cmd_timed_out -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08ce390a iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0967d79c __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x050bd1be iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c502755 iscsi_target_alloc EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1758783a iscsi_conn_queue_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1acd05f2 iscsi_conn_start -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21bda6db iscsi_requeue_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2388a186 iscsi_session_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cde9694 iscsi_eh_abort -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d3a478a iscsi_host_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b1cd90e iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13945765 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x147d3e3d iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1634e387 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16f25e97 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e2e23de iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fcbe5c9 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x281f31f8 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29804984 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x395bcc7d iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a39bca8 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a478626 iscsi_host_get_param EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4bf844bb iscsi_host_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c8a7e31 iscsi_verify_itt -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f7f323b iscsi_session_remove -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f9049a3 iscsi_itt_to_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5af6ce61 iscsi_host_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bff745b iscsi_eh_session_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x632a7463 iscsi_host_add -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63eee7de iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72649dfa iscsi_host_get_max_scsi_cmds -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x753f5817 iscsi_conn_get_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a649496 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84a5ca9f __iscsi_complete_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cbcd192 iscsi_conn_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cef7e8d iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a1cff3e iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2307ba iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x585078b4 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x587ef884 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5af09fa5 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62ce9644 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64b2f89d iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d4f2d8d iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77a58419 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77befffe iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78f92cec iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x799db015 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x811ea5f6 __iscsi_put_task EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f0caf48 iscsi_suspend_tx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x910f266d iscsi_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9580fd93 iscsi_session_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97e33548 iscsi_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e4852cd iscsi_suspend_queue -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2ceb3ec iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa441d676 iscsi_host_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaab29085 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6c6e0a1 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba4f229a iscsi_set_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8f1fa4 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbfa1bfcf iscsi_session_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd21d9df iscsi_session_failure -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd28380a iscsi_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd2fdbbe iscsi_get_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd624f12e iscsi_session_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda25bfc9 iscsi_conn_unbind -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf563c81 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe63de0e8 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9816cda8 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98a67b37 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a876b04 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ee58323 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9c4d4b1 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb04be68a iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6f39f7b iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca8765fd iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0dacc0e iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd97c7e93 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb99bdc8 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0c67300 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1e01a39 iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea82d72a iscsi_conn_stop EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb2a0a1b iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf7a90c9e iscsi_conn_stop -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff43e604 iscsi_conn_queue_recv -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff6d6634 iscsi_suspend_rx -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffdcf673 iscsi_put_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0104c47b iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1620be04 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1743b377 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1997c662 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5991dd58 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x775e0cdd iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f9dff6c iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad13127d iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbbefc335 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbc65b45a iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcd45ea9c iscsi_segment_init_linear -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd5c735d0 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4646179 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4aba449 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf318e654 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf7e82a53 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfbbadc5a iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x010e9d22 sas_abort_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0cbcc778 sas_change_queue_depth -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10b1626a sas_target_destroy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x19681613 sas_register_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22fc678a sas_unregister_ha -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x260fc60f sas_clear_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35f3ffc9 sas_eh_abort_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b920675 sas_ata_schedule_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x417743ff smp_ata_check_ready_type -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4228d0c2 sas_find_attached_phy_id -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49244c24 sas_notify_port_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49c0eab0 sas_eh_target_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c0b8ab2 sas_phy_enable -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b0007e9 sas_execute_internal_abort_dev -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5bb96e05 sas_phy_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c85e82a sas_target_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x706e545f sas_notify_phy_event -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x70f7204d sas_queuecommand -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7831765f sas_slave_configure -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7c0e26ef sas_drain_work -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fa052eb sas_ata_device_link_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8829174b sas_ssp_task_response -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9285dd7d sas_eh_device_reset_handler -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94ceb933 sas_slave_alloc -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x97d92a70 sas_ioctl -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0086f7d sas_domain_attach_transport -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7877129 sas_abort_task_set -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9e48161 sas_request_addr -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb22605df sas_lu_reset -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc028673f dev_attr_phy_event_threshold -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3782b31 sas_task_abort -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd07e2017 sas_bios_param -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd926fc4d sas_query_task -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdbda7ac4 sas_execute_ata_cmd -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdfa46584 sas_get_local_phy -EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe902b64e sas_execute_internal_abort_single -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x907349fb fc_eh_should_retry_cmd -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ea503c0 iscsi_dbg_trace -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f1cefdf __traceiter_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11c126c4 __traceiter_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b69df50 iscsi_get_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29ea068b iscsi_add_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bdae954 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e5d99ff iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34b456d6 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecf05c42 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeda689cb iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeecd7b89 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf44f4f1b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf49a7eaa iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf71f34f8 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb6d56f2 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe9b52c7 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x27ea8d5d iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32afe817 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32ed0f98 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6b4fc738 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7833e5f5 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7d4bbbf0 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9673a513 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e27c621 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa794032d iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbaffc208 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc2df47fa iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3bc4a89 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd42433f3 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb54b5f9 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf0799c1d iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4a8e87a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xff3b707f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x02a346d0 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0377849f sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05da0ede sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b8855ef sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0e77110e sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1bd665f8 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1e2f9cbb sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x26328605 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x282debbf sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b198c73 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a2f295e sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54527dd4 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a01937c sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x606085b4 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x66d9a171 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71dde9ce smp_ata_check_ready_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f430edf sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c9f4ad8 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fa3025a sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fb66b58 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a5ed2de sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa00a83f4 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6743676 sas_find_attached_phy_id +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xac1db32c sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4602c60 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0786372 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3f1463a sas_ata_device_link_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc835ff88 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe13bd836 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2074831 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9d2c026 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xea2972ad sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf3a18e11 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6893c81 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfd77b1c8 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xffe76713 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x1086424d fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02dabb27 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0381879c iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04d74cf1 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17ab6d5b iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18aed2db iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x201c6d68 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x228b0fb0 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c73b50d __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fbe6da6 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x355cba4f iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3579a274 iscsi_ping_comp_event EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x363ef721 __tracepoint_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39201782 iscsi_add_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43fc56a3 iscsi_put_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x450ae7db iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47acc918 iscsi_block_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e59493a iscsi_is_session_dev -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f0c031f iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a54d62c iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a5c883d iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3df1222b iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48035c66 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49c098b8 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b607ba3 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cb8888e iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f035820 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f859375 iscsi_create_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59761ecd iscsi_alloc_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dc5b865 iscsi_conn_login_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5edcb62d iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x588d8af6 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e3a8ed6 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x66f52d99 __traceiter_iscsi_dbg_eh EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x749f1122 iscsi_remove_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f5a24ad iscsi_remove_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83e80f18 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78166be5 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d78c969 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81cf96e3 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x845b5504 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 0x8729dd7c iscsi_destroy_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c9abca8 __traceiter_iscsi_dbg_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f11aad4 iscsi_alloc_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x99147aa5 iscsi_recv_pdu -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a20e6f7 iscsi_destroy_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a957b1e iscsi_create_iface -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa06c35b2 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8dac31be __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f10f152 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98cd3591 iscsi_destroy_iface EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3ac06cf __tracepoint_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa48408ee iscsi_is_session_online -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7addd7c iscsi_offload_mesg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9ef5b2c __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa60d6ea9 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9f305cb iscsi_create_flashnode_sess EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb18043fd iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb32662a6 __tracepoint_iscsi_dbg_tcp -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4aca798 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5418727 iscsi_put_conn -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbbb09e0d __traceiter_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbbd50444 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb45bd9e1 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6472a97 iscsi_remove_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4f6d5a8 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc60a9ef5 iscsi_unblock_session EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6264e7a __tracepoint_iscsi_dbg_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7dbbf5c iscsi_force_destroy_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcda18d7a iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd156fa13 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7404b6d __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcbed236c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd75c8420 iscsi_flashnode_bus_match EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda09b986 __tracepoint_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddcceb3a iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdfb7b0fe iscsi_free_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe221545c iscsi_create_session -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2742f32 iscsi_session_event -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe329444f iscsi_register_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe39981f8 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe46edc7a iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda49bf94 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc9fdbf0 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde9a1f82 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2a1b90f iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4a9447f iscsi_remove_conn EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee439e37 iscsi_session_chkready -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf585d2e5 iscsi_unregister_transport -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2742ee12 sas_disable_tlr -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe6f8bac2 sas_tlr_supported -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xef55b732 sas_is_tlr_enabled -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf7ae1525 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef73fad4 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3def9df iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf741a50d iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9d4c57c iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd603827 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6bb11a47 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa3a64367 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaa0b4e97 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbb5de170 sas_enable_tlr EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x95b4a755 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 0xc0ced931 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 0x07433b6d srp_release_transport EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x28f331ed srp_remove_host -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fe3ec45 srp_rport_del -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaff2c571 srp_stop_rport_timers -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc885a685 srp_rport_add -EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd4361a6b srp_attach_transport -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x278f7890 siox_device_connected -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x696e1da5 siox_device_synced -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x72ce413f __siox_driver_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x832d18cd siox_master_unregister -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8cf67179 siox_master_register -EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd248f14c siox_master_alloc -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1460aae4 slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x23f9652f slim_write -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3deb830e slim_read -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x43cbc5cf of_slim_get_device -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x48500932 slim_get_logical_addr -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x48f7d112 slim_readb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x50fad734 slim_stream_prepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5247fa96 slim_stream_disable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x558f5bbc slim_stream_free -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5e6cdbde slim_stream_unprepare -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x72224892 slim_stream_enable -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x752e98ac slim_unregister_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x77f390b6 slimbus_bus -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x82c1b065 slim_msg_response -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8ac2ba98 slim_stream_allocate -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9efed726 slim_register_controller -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa34c3ea0 slim_writeb -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa3ecd5e4 slim_ctrl_clk_pause -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa599971a slim_driver_unregister -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa8d57061 __slim_driver_register -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xac8d3571 slim_device_report_present -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb38840ca slim_report_absent -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf295f7d slim_free_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd2a959a8 slim_alloc_txn_tid -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe8c49995 slim_do_transfer -EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xebf15f86 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2066b597 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x35cc53af srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x41357006 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x68fb8a13 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x91245932 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb66cdd6b srp_attach_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x147e9370 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1a5b5154 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3dfa38e2 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5f6bd551 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xeb4e502d siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfd082e42 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a2ff8b1 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1a315090 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1efc1d5d slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x205c90ad slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2354a03a slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3751692f slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4377e4e7 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x65a578b9 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x77b15645 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9a2eefa5 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa4b3058c slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa5c0b5b5 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xab7e0df7 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xad983572 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb4eed7ff slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbaa1e3ad slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc31d4600 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xce37bd84 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdc8126a5 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe378f404 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe4b0552e slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xef53d54c slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf1f7b149 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf78b5745 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfb476283 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfeca8fb4 slim_device_report_present EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config -EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xf403721b meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xa283aed6 meson_canvas_get EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x28dd73ee apple_rtkit_idle -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x3605de56 apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x40eb75ef devm_apple_rtkit_init -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x4a298fc3 apple_rtkit_quiesce -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x6a11b0e9 apple_rtkit_reinit -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x7ae844c8 apple_rtkit_wake -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x7e1d1943 apple_rtkit_boot -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x961e6e06 apple_rtkit_start_ep -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa45adecc apple_rtkit_is_running -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa88e7888 apple_rtkit_is_crashed -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xbcfe4eb1 apple_rtkit_free -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xca7531b8 apple_rtkit_shutdown -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xcaa13b3e apple_rtkit_send_message_wait -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xedfa3048 apple_rtkit_poll -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xf9d29189 apple_rtkit_send_message -EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x225343d4 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0d960183 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2dae3ea9 apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x39a29703 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x3d57ca88 apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x4f50fcd3 apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x6f62fdae apple_rtkit_idle +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x78e8073b devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x8dcabff8 apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa219af6c apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xaa45be08 apple_rtkit_poll +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb25197a8 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd11905b7 apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe3e5508c apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xef31f6c8 apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xfb41c0f1 apple_rtkit_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x74d39f19 devm_apple_sart_get EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xbaec16a4 apple_sart_add_allowed_region EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xf2253fbc apple_sart_remove_allowed_region EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x1b7c4023 dpaa2_io_service_rearm EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2ea89927 dpaa2_io_service_pull_channel EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2f10852c dpaa2_io_service_select -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x32962f73 dpaa2_io_service_register EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3f8992eb dpaa2_io_service_release EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x4994345c dpaa2_io_store_destroy EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x6560c60d dpaa2_io_service_acquire +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x759e1eb8 dpaa2_io_service_register EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x79cf65a1 dpaa2_io_service_enqueue_qd EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x8edafa55 dpaa2_io_query_bp_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb7c6fab9 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x9a072b49 dpaa2_io_service_deregister EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb9e81961 dpaa2_io_query_fq_count -EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xdd0f1a82 dpaa2_io_service_deregister -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x36c22a3c mtk_mmsys_vpp_rsz_dcm_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x54082e81 mtk_mmsys_ddp_dpi_fmt_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x5b5a6068 mtk_mmsys_vpp_rsz_merge_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x6c9469d2 mtk_mmsys_mixer_in_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x8e526893 mtk_mmsys_mixer_in_channel_swap -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xa3de8d1f mtk_mmsys_hdr_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xb9e9145c mtk_mmsys_merge_async_config -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xbbd42fc8 mtk_mmsys_ddp_disconnect -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xff05f97d mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xf0cecb72 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x14dc96b9 mtk_mmsys_vpp_rsz_dcm_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x3013558a mtk_mmsys_ddp_dpi_fmt_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x306b81e0 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x3c768b85 mtk_mmsys_hdr_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x3f510463 mtk_mmsys_mixer_in_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x4b1fb234 mtk_mmsys_vpp_rsz_merge_config +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x74ba5755 mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0x9e17bacf mtk_mmsys_mixer_in_channel_swap +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mmsys 0xf4c41afe mtk_mmsys_merge_async_config EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x1736cec6 mtk_mutex_remove_comp EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x1d6696b0 mtk_mutex_disable EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x2fcc9ff2 mtk_mutex_add_comp -EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x3db1c488 mtk_mutex_get EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x4e2f3c90 mtk_mutex_enable_by_cmdq EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x51991b38 mtk_mutex_enable EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x6b311845 mtk_mutex_get EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x71a9a3ab mtk_mutex_acquire EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x7534596b mtk_mutex_write_sof EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0x8b650752 mtk_mutex_release EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xab7f853d mtk_mutex_prepare EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xbbb4ab02 mtk_mutex_put EXPORT_SYMBOL_GPL drivers/soc/mediatek/mtk-mutex 0xfa95f801 mtk_mutex_write_mod -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x033bb790 apr_driver_unregister -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3700140c apr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x70b6bacb __apr_driver_register -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x75409dcc gpr_send_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8ae532c2 gpr_send_port_pkt -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x96c2b78a gpr_free_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xcf5fc74a gpr_alloc_port -EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xf44f1e3d aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x144fea5a gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x4a1ff0ed gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x54e893d7 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xaa597c25 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xc83e3e7a __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xcf15ef7a gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xcfdc736a apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xeb532956 aprbus EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x03c9a66d llcc_get_slice_size EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x0679b34d llcc_slice_getd EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0x7e773088 llcc_get_slice_id EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xad3516c4 llcc_slice_activate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb534ec76 llcc_slice_deactivate EXPORT_SYMBOL_GPL drivers/soc/qcom/llcc-qcom 0xb68b1300 llcc_slice_putd -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x0ed5180e qcom_mdt_load -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x5a61298d qcom_mdt_read_metadata -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x7967066b qcom_mdt_pas_init -EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x8be421c3 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x1d6a98bf qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x1ff9a532 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x6269d33f qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x985ba172 qcom_mdt_load_no_init EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size -EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0x44689be1 devm_pmic_glink_register_client +EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0x26b6e2f6 devm_pmic_glink_register_client EXPORT_SYMBOL_GPL drivers/soc/qcom/pmic_glink 0xc161d729 pmic_glink_send EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x50d28b20 qcom_ice_evict_key EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x82936acb qcom_ice_enable -EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xc5167e4c of_qcom_ice_get +EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0x9396a281 of_qcom_ice_get EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xc994d57b qcom_ice_suspend EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xe4280d97 qcom_ice_program_key EXPORT_SYMBOL_GPL drivers/soc/qcom/qcom_ice 0xf0e63b1a qcom_ice_resume @@ -17331,569 +17341,569 @@ EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xe583bba3 qcom_smem_get_soc_id EXPORT_SYMBOL_GPL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x349504ef pruss_cfg_miirt_enable -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x48385c45 pruss_cfg_set_gpmux -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x63671971 pruss_put -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x8906f696 pruss_request_mem_region -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x95fe064b pruss_cfg_gpimode -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xa06fef3c pruss_cfg_xfr_enable -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xc0865e3b pruss_release_mem_region -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xedddef5e pruss_get -EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xfd70db32 pruss_cfg_get_gpmux -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbfd75f31 sdw_bus_type -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xc0687e32 __sdw_register_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xd01b025a sdw_unregister_driver -EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x6cb51ffc sdw_cdns_debugfs_init -EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x33e8e893 altera_spi_init_host +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x0a257601 pruss_release_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x1634fdd1 pruss_get +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x5234c5df pruss_cfg_gpimode +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x5607cbd7 pruss_cfg_set_gpmux +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0x57e33b32 pruss_cfg_xfr_enable +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xc8dcb08c pruss_put +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xcd897b7b pruss_request_mem_region +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xd06c2b72 pruss_cfg_get_gpmux +EXPORT_SYMBOL_GPL drivers/soc/ti/pruss 0xf252b8d1 pruss_cfg_miirt_enable +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0b1a105c __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x10a2b2d0 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xd22d993f sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x74b45370 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x8e6ff382 altera_spi_init_host EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x087e65ec bcm_qspi_pm_ops -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x8aa0850c bcm_qspi_remove -EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xf04ebdff bcm_qspi_probe -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6e19b806 spi_bitbang_init -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x703b7da1 spi_bitbang_stop -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x796c50a5 spi_bitbang_start -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x804d0fd4 spi_bitbang_setup_transfer -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x96a92cbe spi_bitbang_cleanup -EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb53422ef spi_bitbang_setup -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2c9f8d34 spi_test_run_test -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x47bfae87 spi_test_run_tests -EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xbb728ba3 spi_test_execute_msg -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0d30408f __spmi_driver_register -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x231e3cb4 spmi_command_wakeup -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x313e1632 spmi_controller_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31a15f97 spmi_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3470feba spmi_ext_register_readl -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3aa3e9bb spmi_device_alloc -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4315533f spmi_ext_register_read -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4ebb71d7 spmi_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5fbdb55f spmi_device_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fc96169 spmi_register_zero_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f3900fc spmi_device_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f39af50 spmi_controller_add -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbe9da576 spmi_ext_register_write -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc36e04ed spmi_controller_remove -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc77baacb spmi_ext_register_writel -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd515a5c7 spmi_command_shutdown -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd72c5530 spmi_command_reset -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe82dfc73 spmi_command_sleep -EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5ba2fcc spmi_device_from_of -EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x0e0d9296 ssb_pmu_spuravoid_pllupdate -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x08006adf anybuss_start_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x10b34afc anybuss_set_power -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x33522833 anybuss_read_output -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4f27af6e anybuss_read_fbctrl -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x53cb014b devm_anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5ec47a5e anybuss_write_input -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x668259b7 anybuss_host_common_probe -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6796b6e0 anybuss_finish_init -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6f06c557 anybuss_client_driver_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc1deb932 anybuss_recv_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc4e09949 anybuss_send_ext -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc76abc1c anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x3157f3fc bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x3a9d9930 bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x406b9686 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x67ae4428 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x85ab541f spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x86b41c65 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8fe33161 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x91c1f4c6 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa6365a4e spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0fd7f78b spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x5ce9a2a5 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x77a6a870 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0c93e9b3 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1bf8e30b spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fb28851 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31f42676 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x362a1392 spmi_device_from_of +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x45b47207 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c3393c7 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x61c3b95a spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7ef03703 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8c9cc33d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9711084c spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9e64cd66 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb0df5d39 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb16b9b82 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xba4f9159 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbd441b32 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8a36675 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf4ac0b5b spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfd4c97c2 spmi_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x7925ac89 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0518de2d anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0d37d2a1 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1ab759ba anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x22afe027 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2ee34a41 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4f3c3e88 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x57aea27c anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xac56f67b anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd2ebc919 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xdadf0edb anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe0c6b1f6 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe7a291e5 devm_anybuss_host_common_probe EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfef92664 anybuss_send_msg -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x729f71e6 fieldbus_dev_area_updated -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7546f680 fieldbus_dev_register -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9af8f13c fieldbus_dev_online_changed -EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xe0447069 fieldbus_dev_unregister -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3e77a816 gb_audio_apbridgea_register_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3f3e73a9 gb_audio_apbridgea_set_tx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x41e13410 gb_audio_apbridgea_shutdown_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5bf39704 gb_audio_apbridgea_start_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x740a510d gb_audio_apbridgea_shutdown_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x801cc9da gb_audio_apbridgea_prepare_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x944d44b2 gb_audio_apbridgea_stop_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9db8b58a gb_audio_apbridgea_set_config -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa1a621af gb_audio_apbridgea_stop_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa53a0f4c gb_audio_apbridgea_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb5f7acc7 gb_audio_apbridgea_prepare_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcea06352 gb_audio_apbridgea_start_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf57558de gb_audio_apbridgea_unregister_cport -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0024018b gb_audio_gb_deactivate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0d2457a5 gb_audio_gb_set_rx_data_size -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x133a27f3 gb_audio_gb_deactivate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1eecd026 gb_audio_gb_get_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2b44b72a gb_audio_gb_disable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3cf43679 gb_audio_gb_enable_widget -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x4383d911 gb_audio_gb_set_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x56362ef9 gb_audio_gb_get_pcm -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5702b8df gb_audio_gb_get_topology -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6712d7b0 gb_audio_gb_activate_tx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x740cf1c8 gb_audio_gb_activate_rx -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9cc29019 gb_audio_gb_set_control -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaf8a3267 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xffc2db37 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x20091f70 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x4732e750 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb2d21eff fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb50b9999 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x05ca023f gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2a33c436 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x30216722 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3fb10348 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6836dfff gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x85d7c5d0 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa3342f37 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa5b57fad gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc437fff5 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xce2f13b3 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd066729d gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe58d1780 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf1dc9ae8 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x002c1af4 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x13323c8c gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3375769f gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x577e4651 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x671acccf gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7404eab7 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x77aa0440 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x799f96e9 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb15b36a0 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbc9cddf7 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc8c33fb1 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd5046182 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdf73bee2 gb_audio_gb_enable_widget EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x6e3ef377 gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x87df46e0 gb_audio_manager_put_module EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xe26f7036 gb_audio_manager_get_module -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xcaafdab5 gb_gbphy_deregister_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xf1f120ac gb_gbphy_register_driver -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x2226c6a7 gb_spilib_master_exit -EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x77ff5c70 gb_spilib_master_init -EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x9ce184fd adt7316_pm_ops -EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0xb2f588ef sp8870_attach -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x110c5940 imx_media_capture_device_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x12984fb0 imx_media_add_of_subdevs -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x14b505ba imx_media_dev_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x20fc3d49 imx_media_free_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2d445113 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xd1d429d9 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x02065b8d gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x46791666 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x6f400463 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x914f6893 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x645c58a2 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/av7110/sp8870 0x77ad0342 sp8870_attach +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x27b2bd61 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2bafed80 imx_media_capture_device_unregister EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x522ca700 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3ef48875 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4b6d0299 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4c0ea229 imx_media_capture_device_error EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x567ea177 imx_media_pipeline_pad -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x60c5e6e8 imx_media_init_cfg -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x64854db9 imx_media_probe_complete -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6ba80ed7 imx_media_alloc_dma_buf -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7e1c8f04 imx_media_add_video_device -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x848c81ed imx_media_pipeline_set_stream -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x90563d7c imx_media_capture_device_init -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9a3362f1 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5759957c imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x680b6eaf imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x72079a0f imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x78500518 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7c818935 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x841167d8 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x861187dc imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x88efca62 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8d314627 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x988b747c imx_media_free_dma_buf EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa631199b imx_media_grp_id_to_sd_name EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa9e2459f imx_media_enum_mbus_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xaa7ed329 imx_media_add_of_subdevs EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe7149a4c imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe284f131 imx_media_probe_complete EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xea5ff07b imx_media_dev_notifier_register -EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfd922d58 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x03b6c2f0 amvdec_abort EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x158a0088 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1652b056 amvdec_write_dos_bits EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1eb82104 amvdec_src_change -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x29278ae6 amvdec_set_par_from_dar -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2b3f2c24 codec_hevc_setup_decode_head -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x388611b0 codec_hevc_free_fbc_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x42349b91 amvdec_abort -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4c38d5d0 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x20ef9218 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x29f837ac amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x318e508a amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x384ae50a amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4a24793f amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5d17c67d amvdec_write_parser EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x60f77df5 amvdec_dst_buf_done -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7ceba0cd amvdec_read_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8abbf29b amvdec_set_canvases -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8e37c64f codec_hevc_setup_buffers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8f600435 amvdec_write_parser -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xba39bda8 amvdec_dst_buf_done_offset -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbe2a3857 amvdec_write_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc425721e amvdec_write_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd85ec761 codec_hevc_free_mmu_headers -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe17d5365 amvdec_dst_buf_done_idx -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe27a356f amvdec_add_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe28dbe27 codec_hevc_fill_mmu_map -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe7a071f4 amvdec_read_dos -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe95bdfae amvdec_remove_ts -EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xea3d2742 amvdec_clear_dos_bits -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x2bad0b7e nvec_unregister_notifier -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x3861a1e5 nvec_msg_free -EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xb53d12b8 nvec_register_notifier -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0a5e1e00 vchiq_mmal_port_parameter_get -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2912d153 mmal_vchi_buffer_cleanup -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2e0cdb9d vchiq_mmal_port_set_format -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x3f7dde48 vchiq_mmal_port_parameter_set -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x47fc1cd0 vchiq_mmal_component_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x525e507c vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x69c88c59 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6a183d82 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6c5dfa1f amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6dd5a1e5 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x89105a88 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x95dd4fe3 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa69273d5 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa78ae50b codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb23a8758 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb280bfbd amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd16fa806 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xeb9cc426 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x455a8353 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x4c5af728 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xd7524f23 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x08ac349f mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0e81a76a vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x220a4c89 vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x37a80025 vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5e9be72d vchiq_mmal_port_disable EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6192e1a2 vchiq_mmal_version -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x70072c90 vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x7015fe8f vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x70419018 vchiq_mmal_port_parameter_get EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x749e2972 vchiq_mmal_submit_buffer -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x95cd85cb vchiq_mmal_component_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa7cf7c0c vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x816ec98a vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa443a34a vchiq_mmal_port_connect_tunnel EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc181bc8f vchiq_mmal_port_disable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc77176ed vchiq_mmal_port_enable -EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf55ef641 mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xb116803f vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xbd6ef8f5 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xd4e0138d mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf03bd592 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1cbf67f8 target_submit_prep EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b9b3376 target_stop_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x4eee2fa2 target_init_cmd EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x5d24150b target_free_cmd_counter -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7a71aaed target_queue_submission -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xad4ffdc7 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa6a95202 target_queue_submission EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xb4489234 target_wait_for_cmds -EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xba1ecbbe target_submit EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc65e34a6 target_alloc_cmd_counter -EXPORT_SYMBOL_GPL drivers/tee/tee 0x08c6c1d1 tee_client_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x244fa70b tee_device_alloc -EXPORT_SYMBOL_GPL drivers/tee/tee 0x25dc2893 tee_device_unregister -EXPORT_SYMBOL_GPL drivers/tee/tee 0x2b6e4d91 tee_client_get_version -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3c22ae87 tee_client_open_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3e75d2d5 tee_client_close_session -EXPORT_SYMBOL_GPL drivers/tee/tee 0x3fff3a93 tee_shm_pool_alloc_res_mem -EXPORT_SYMBOL_GPL drivers/tee/tee 0x5966e8bb tee_device_register -EXPORT_SYMBOL_GPL drivers/tee/tee 0x63a2447d teedev_close_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0x72d9d92a tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xe1fa10b7 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xee67398f target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x15352d1e tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x18ef22a2 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x291ec741 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2e403c29 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x32027953 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3d63513f tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3ed2a320 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f3fc5d8 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x698fed36 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7961f0e7 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a542a4a tee_client_get_version EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid -EXPORT_SYMBOL_GPL drivers/tee/tee 0x8728594b tee_get_drvdata -EXPORT_SYMBOL_GPL drivers/tee/tee 0x98b77bc2 tee_shm_put -EXPORT_SYMBOL_GPL drivers/tee/tee 0x995a1d3a tee_shm_free -EXPORT_SYMBOL_GPL drivers/tee/tee 0x9b74f5a2 tee_shm_alloc_priv_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb44ad7d3 tee_client_open_context -EXPORT_SYMBOL_GPL drivers/tee/tee 0xb9df0eae tee_shm_register_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xcad6d30c tee_shm_get_pa -EXPORT_SYMBOL_GPL drivers/tee/tee 0xdbf9196a tee_bus_type -EXPORT_SYMBOL_GPL drivers/tee/tee 0xe85059d6 tee_client_invoke_func -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf34a3284 teedev_open -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf562f63f tee_shm_alloc_kernel_buf -EXPORT_SYMBOL_GPL drivers/tee/tee 0xf77a2896 tee_shm_get_va -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x375c0cc9 st_thermal_pm_ops -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0x397d50b0 st_thermal_unregister -EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xc85fbd2b st_thermal_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x864edbeb teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x959c7b81 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa270555f teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xacd7c498 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb208a12f tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcb7b9cee tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcfad789f tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd615bb4f tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xed2a5e47 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xedf62297 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xffcfa2e7 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xcfe4ad19 st_thermal_unregister +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xdcbc36e6 st_thermal_pm_ops +EXPORT_SYMBOL_GPL drivers/thermal/st/st_thermal 0xe2b66937 st_thermal_register EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x04067494 tb_ring_poll_complete -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26419468 tb_xdomain_find_by_route -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2d6a1b03 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x35dec0dc tb_ring_free EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x46f2ca31 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3f9261c5 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x44267534 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x48657538 tb_xdomain_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x50437fe9 tb_xdomain_find_by_uuid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x51c65ffd tb_xdomain_alloc_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x53bea845 tb_unregister_service_driver -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x599980c8 tb_ring_alloc_rx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b19e9b8 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5cbb63a0 tb_xdomain_alloc_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x63cd9267 tb_ring_stop EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x68a4555f tb_xdomain_disable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x68abb739 tb_xdomain_release_out_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6c0e965f tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x65d68b64 tb_xdomain_release_out_hopid EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7c87c454 tb_xdomain_enable_paths -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x82517c6a tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7ac12048 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7de3229c tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x89e9f656 tb_xdomain_disable_paths EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa1d37dce tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x970582c3 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9dca675d tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9e1ca74a tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa0af5553 tb_unregister_service_driver EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb5b0ab2e tb_xdomain_release_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7378822 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa63a9f0d tb_service_type EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcde94ae6 tb_xdomain_request -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd5763d92 tb_ring_alloc_tx -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdbebadcd tb_xdomain_alloc_in_hopid -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdd8eb5a7 tb_xdomain_response -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe3477b9a tb_ring_poll -EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe9ee9f8e tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb8cd9773 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xbffdcd35 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc3a2c0e8 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc5ec2acc tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd1eeb7c3 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd6969190 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd8362bc6 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe1767078 tb_xdomain_lane_bonding_disable EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf37363a6 __tb_ring_enqueue EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0b991b0e ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1898dc52 ufshcd_mcq_config_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1b07fdbd ufshcd_hba_stop -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1ee4f2a1 ufshcd_system_thaw -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1fd3cc14 ufshcd_hba_enable -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2d8a5dcc ufshcd_dme_configure_adapt -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3167cc69 ufshcd_dump_regs -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x414823a9 ufshcd_remove -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4a35ccc7 ufshcd_auto_hibern8_update -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x521d7304 ufshcd_uic_hibern8_exit -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5aa49676 ufshcd_clkgate_delay_set -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5e713c27 __ufshcd_suspend_prepare -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x65b04ba7 ufshcd_dealloc_host -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6de3e6a9 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfdde899a tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0d32ebca ufshcd_system_thaw +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x18e52b3b ufshcd_mcq_config_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1a173818 ufshcd_system_restore +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x27776979 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2cedd226 ufshcd_mcq_poll_cqe_lock +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x46a7ca82 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4c2bc26a ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x53715211 ufshcd_uic_change_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x591fe935 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x70a0a94c ufshcd_release EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x734ff5b3 ufshcd_release -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x76860890 ufshcd_mcq_write_cqis -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x76c86143 ufshcd_fixup_dev_quirks -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7c09f003 ufshcd_get_vreg -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x82945699 ufshcd_init -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8761f911 ufshcd_mcq_enable_esi -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8f10b5fd ufshcd_config_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x99d0a4c2 ufshcd_dme_get_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbd26b69b ufshcd_make_hba_operational -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe274246f ufshcd_resume_complete -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe7fa11cd ufshcd_uic_change_pwr_mode -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe987197c ufshcd_system_restore -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xeb5244b3 ufshcd_hold -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xed06a678 ufshcd_dme_set_attr -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf629b6d4 ufshcd_mcq_poll_cqe_lock -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf8ba5d9a ufshcd_update_evt_hist -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfd0f5784 ufshcd_system_freeze -EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xff9577ff ufshcd_link_recovery -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x36ea0773 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7e50749b ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x80084420 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x83fec3d9 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x879e4930 ufshcd_mcq_write_cqis +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92e71729 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9855bd6c ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x987eb5fc ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x996db8a5 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa0ce12e4 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb627a3dd ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb696061b ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc7626270 ufshcd_system_freeze +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc98ad94a ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcccaaa3d ufshcd_mcq_enable_esi +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd1923fb7 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd3ce56e1 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd45c6367 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe30eb742 ufshcd_get_vreg +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xeba5d40e ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xec57647d ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xed7b50c0 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfec816f6 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x1473e4c2 ufshcd_populate_vreg EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7a0460ff ufshcd_get_pwr_dev_param -EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xe832e11b ufshcd_populate_vreg -EXPORT_SYMBOL_GPL drivers/uio/uio 0x507b8491 __devm_uio_register_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xafcdd0f2 uio_unregister_device -EXPORT_SYMBOL_GPL drivers/uio/uio 0xb2f3fd77 uio_event_notify -EXPORT_SYMBOL_GPL drivers/uio/uio 0xca2f8c9c __uio_register_device -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3c146001 usbatm_usb_probe -EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x42dccb76 usbatm_usb_disconnect -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1218260e cdns_remove -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2ea21c99 cdns_init -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x513b6fd4 cdns_clear_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x69ffde48 cdns_resume -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6d268dc0 cdns_drd_gadget_off -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6e3059dd cdns_drd_gadget_on -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xdcb7cf9a cdns_set_vbus -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe8b9de1a cdns_power_is_lost -EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf790e497 cdns_suspend -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1622b662 ci_hdrc_remove_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1cc2b404 ci_hdrc_add_device -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4910eb75 ci_hdrc_query_available_role -EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x50cd09ee hw_phymode_configure -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5c28c98b imx_usbmisc_init_post -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x81c1667f imx_usbmisc_resume -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x924d7c32 imx_usbmisc_init -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa98ddcd6 imx_usbmisc_hsic_set_connect -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xc9ef63ea imx_usbmisc_charger_detection -EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xee4e881c imx_usbmisc_suspend -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x233f942e __ulpi_register_driver -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6f7efc26 ulpi_read -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8af88b70 ulpi_register_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x94363033 ulpi_unregister_interface -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xca05e40f ulpi_write -EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdccfd207 ulpi_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x04ede345 u_audio_set_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x11c069a6 u_audio_set_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x272454c0 g_audio_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2abd8827 g_audio_setup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x512a9ccd u_audio_suspend -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x58b9c261 u_audio_set_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x68855617 u_audio_get_playback_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x74c0edfa u_audio_get_mute -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x78cc3d0c u_audio_get_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8586c377 u_audio_start_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8dbe6c9e u_audio_stop_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9965a4e6 u_audio_set_capture_srate -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9f26726f u_audio_stop_playback -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xf7db098a u_audio_start_capture -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfd8dd694 u_audio_get_volume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1fb60cee gether_get_host_addr_u8 -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x27a9a172 gether_set_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3328f0e1 gether_set_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4caea67e gether_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5bb56407 gether_set_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x60c11fb1 gether_get_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x76b2cb12 gether_set_dev_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79c8cbaf gether_get_ifname -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x84e09bdc gether_setup_name_default -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x877ae2d7 gether_suspend +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xd5fe131a ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2b491243 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x36773fc6 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7f770d8d __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe5230580 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb8de9381 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xfe5001e9 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1b15e7e5 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1fb6bb5d cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x20bd8d54 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x23ab5949 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x923a1b13 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa6340a93 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xc2271feb cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xed6da782 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfe9d257c cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0e4e054b ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x517c585c ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5e11e017 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xcbcd1a67 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1648fc68 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x31e9179e imx_usbmisc_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x58b26d6e imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5e66f9fd imx_usbmisc_resume +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6372cd8a imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xad177833 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2dda0e24 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8094b178 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x813649a4 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd78aa4cc __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe12d6f24 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe1dffff9 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x061ecdda u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x20bc7a52 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2884d5bb u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x31580734 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x322464a3 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5a4aecfe u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5ad91f46 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5ecf7413 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6b461eb3 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x84fd57b7 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8a26420c g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x94b43cac u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd7824f7d u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe3e3d3f3 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfc288a01 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01c6028e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01e33a10 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12647e4a gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x22236636 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2bf01a40 gether_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4b32f0b3 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x546a7c92 gether_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x63e0d183 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6fbeae7b gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x72a0bf23 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79efa8ee gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x814909a6 gether_get_host_addr_u8 EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9707f42f gether_setup_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1b02166 gether_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa41c5c21 gether_register_netdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3465f73 gether_set_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc61fb7b2 gether_get_qmult -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdd3ef386 gether_get_host_addr_cdc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf8e08405 gether_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfedb973e gether_get_host_addr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x1f042a01 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa5303aa7 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaa4a3a1a gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaf34ad0e gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbc39eeb9 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd601819 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc54a614f 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 0x3afc878b gserial_resume -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4f1210f7 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3c7656cc gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77268a68 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x99f413ad gserial_resume EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbc0cbe27 gserial_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xcbec4409 gserial_connect EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xec1a84d1 gserial_suspend EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xfb78a286 gs_alloc_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6bf6fbf7 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x62afb847 ffs_name_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf16c08cb ffs_name_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x04f25c26 fsg_store_removable -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x120cc6a6 fsg_store_forced_eject +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xfbea5ad3 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x00d33d22 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0adb7ef6 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 0x1ccb58f7 fsg_common_set_num_buffers -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1d6c715f fsg_show_cdrom -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2083e417 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 0x373e86e0 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x345ed5a5 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x36d2141c 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 0x3c6a07d0 fsg_common_create_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 0x4a57df69 fsg_show_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x66cbb5a7 fsg_store_cdrom EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x72c533a4 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x73becce0 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7d10cb09 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 0x7e45e087 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8052691f 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 0x85906dd3 fsg_show_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x870ac5d3 fsg_lun_open -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9344d3d1 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8adbb2b8 fsg_lun_open EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa2033491 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5602959 fsg_store_forced_eject 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 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaf162178 fsg_show_inquiry_string EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address 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 0xbdc7b611 fsg_store_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc3516bb4 fsg_store_nofua -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc4d2231f fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc47f7de7 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc7700ab0 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd0f66590 fsg_show_file EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd9d75d01 fsg_lun_fsync_sub -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xdc1c59bb fsg_common_set_cdev -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe752f652 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a75a58 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd2abc3e5 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 0xf5389aa7 fsg_show_ro -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf82d8f4e fsg_show_inquiry_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0cd2e9a1 rndis_set_param_medium -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2397bac4 rndis_set_host_mac -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3bdea327 rndis_signal_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4115ceb6 rndis_deregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x452dc4de rndis_add_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x61577865 rndis_set_param_vendor -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68b9aa7e rndis_signal_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7880e242 rndis_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9d2035bb rndis_msg_parser -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb8c1a5f3 rndis_get_next_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdad772c1 rndis_rm_hdr -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdb17e623 rndis_borrow_net -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec3eb02b rndis_free_response -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf64a5e65 rndis_uninit -EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xff2b9793 rndis_set_param_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0773363e usb_gstrings_attach -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0aae2a58 usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x20e8a263 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x30743782 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x38f6b4b3 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x51f627f3 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5b171329 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5ddf5ad3 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x736caeb7 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73e5c40e rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x997a686d rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb74728ec rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbef853f5 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc0a3742c rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc4333e64 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcfca5727 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xed9f5aac rndis_signal_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f25558e usb_composite_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22fd11cb usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x129b2a6b usb_func_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x13d48324 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x17e90bcd usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1bd99fc1 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21f506d6 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x22252994 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x23e43b35 usb_otg_descriptor_init EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a5ab010 alloc_ep_req -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2aa7da15 usb_otg_descriptor_alloc EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x31f0d385 usb_put_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b7bd695 usb_function_register -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f45c104 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d41a505 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e15650c usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ef00a33 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45a50781 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4631d424 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x471788f5 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48c05505 usb_free_all_descriptors EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55abc554 usb_put_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x591e3efb usb_add_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5e04d417 usb_function_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ae6e87a usb_remove_function -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6e6297d9 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5334da4d config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ffd51af usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d2d77a5 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d8658b2 usb_composite_probe EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7148ceb2 usb_ep_autoconfig_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78a84d6a usb_assign_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7aca3a97 config_ep_by_speed_and_alt -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8e0e8e37 config_ep_by_speed -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x970496a4 usb_string_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x99846703 usb_interface_id -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa2e51406 usb_ep_autoconfig_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa41bd91d usb_get_function_instance -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xba7a643b usb_string_ids_n -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc1c3f5c3 usb_ep_autoconfig_ss -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcd85bff3 usb_otg_descriptor_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf3fb539 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x765797ea usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x889ef836 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90ad8118 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e4ff8dc usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa6c58584 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaabc2758 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xadb72e5d usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaefec3a2 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb940d9a7 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca5106a0 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf8081e1 usb_add_config EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd6b50bb0 usb_free_all_descriptors -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf4ca9fa usb_add_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe5e49f6a unregister_gadget_item -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea3df50a usb_composite_unregister -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xef8d4fd7 usb_string_ids_tab -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf02d355b usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5cae3bf usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xddbd45a4 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xde0b597b usb_get_function_instance EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf5b8620e usb_composite_setup_continue -EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfee6d145 usb_add_config_only -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/rzv2m_usb3drd 0x637b46f8 rzv2m_usb3drd_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0ae86059 udc_probe -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0de04587 udc_enable_dev_setup_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x4fd18734 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/rzv2m_usb3drd 0xf4cd840b rzv2m_usb3drd_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x031ba30b udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x041386d5 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x24dc2cde gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x412a61b8 init_dma_pools EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x63d41d15 gadget_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x87ff062a udc_remove -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9bf4b8ba udc_mask_unused_interrupts -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd63ceeab udc_basic_init -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xddb981e7 free_dma_pools -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe40be8c5 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8904e0a6 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x950f5e36 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd342676b free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd8c70827 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf6343823 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x000d166d usb_gadget_register_driver_owner EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x004c6380 usb_ep_fifo_flush -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x047884a8 usb_gadget_map_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x07d36972 usb_gadget_clear_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0c90d7ae usb_gadget_udc_reset -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d039027 usb_gadget_set_selfpowered -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d97da89 usb_del_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1035e120 usb_add_gadget_udc_release -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x19a04d6d usb_gadget_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1e7c3946 usb_gadget_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x248a8074 usb_gadget_activate -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x26fce2a8 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0682d405 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0f67ffe0 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x129253b3 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2864ea81 usb_gadget_wakeup EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2af38e5f usb_ep_free_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2c53cadb usb_ep_disable -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x309a07c2 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2fb89eaa usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x31cbbab5 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b1b43e0 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b8f094e usb_del_gadget EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3ea59b5d usb_ep_alloc_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x405d007d usb_ep_set_wedge -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4b2ed336 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x45629afc usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4d8ac9fa usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ef25582 usb_gadget_vbus_draw EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fa2450c usb_ep_dequeue EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x524d1e01 usb_gadget_register_driver_owner -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5c0be47d gadget_find_ep_by_name -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5dbb17fb usb_gadget_map_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6faad71b usb_gadget_unmap_request_by_dev -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x70e29b47 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x68222ffd usb_udc_vbus_handler EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x784d9a58 usb_ep_enable EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79c3b872 usb_ep_fifo_status -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x838f080f usb_gadget_unmap_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x89677ad7 usb_gadget_vbus_connect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8dc54dcf usb_gadget_frame_number -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8de0243e usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x88a35884 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8cb22aff usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8da903af usb_add_gadget_udc EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x93d5fdc4 usb_gadget_giveback_request -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95063101 usb_gadget_set_remote_wakeup -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa5d2f0b4 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x95bc09b6 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e7e19e7 usb_gadget_map_request_by_dev EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac5667d9 usb_ep_queue -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbebb8b43 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xac6fd907 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbbdd9e08 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbbf8f7f9 usb_gadget_disconnect EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbee6af28 usb_ep_set_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc091fe05 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbf7fa910 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc295165b usb_gadget_unmap_request EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3d4d06b usb_ep_set_maxpacket_limit EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc8ac2c4f usb_ep_clear_halt -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9ca95bc usb_gadget_ep_match_desc -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd02ea84f usb_gadget_vbus_disconnect -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe026f6f0 usb_initialize_gadget -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf82cce67 usb_gadget_check_config -EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf8460cf6 usb_del_gadget_udc -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xfa34d942 renesas_xhci_check_request_fw -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x1b6b56a1 xhci_plat_pm_ops -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x386e5cba xhci_plat_remove -EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0xc880cc5f xhci_plat_probe -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xeaf0bf3a ezusb_fx1_set_reset -EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf40a221a ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce341da0 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xce5edf31 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd9800c3f usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe2f5fcd6 usb_gadget_set_remote_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe6367b88 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf7e622b7 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff74e830 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xff44272f renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x031f5405 xhci_plat_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x15ff166a xhci_plat_pm_ops +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-plat-hcd 0x7e0bd292 xhci_plat_remove +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x04d18966 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xb3b35986 ezusb_fx1_set_reset EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x165a0328 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x1b17abea musb_root_disconnect EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x2734197f musb_readb -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x30648717 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x410cf3bf musb_queue_resume_work EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x85ba1f3a musb_queue_resume_work -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8d406720 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x800dcfe2 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x866d00a0 musb_interrupt EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc38c2b0c musb_set_peripheral -EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd0bc6724 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcec183ce musb_set_peripheral EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x183339ae usb_gen_phy_init -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x3c8f70f1 usb_phy_generic_register -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x40865b20 usb_phy_generic_unregister -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x5213b33d usb_phy_gen_create_phy -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7fdceb97 usb_gen_phy_shutdown -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x432d9103 isp1301_get_client -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x3be92128 tegra_usb_phy_postresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xb3cfb4eb tegra_ehci_phy_restore_end -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xd0061345 tegra_usb_phy_preresume -EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xef2c2cd2 tegra_ehci_phy_restore_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x4befe4e9 usb_wwan_port_probe -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x162566a8 usb_serial_generic_write_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1e68d3a3 usb_serial_generic_write -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f384a65 usb_serial_port_softint -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5ce6a1e3 usb_serial_register_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e9a1fbc usb_serial_handle_dcd_change -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b6f9367 usb_serial_generic_open -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7cc318b3 usb_serial_generic_chars_in_buffer -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x88dcfa34 usb_serial_generic_submit_read_urbs -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f052b20 usb_serial_generic_process_read_urb -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f9cc55c usb_serial_generic_read_bulk_callback -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9691075d usb_serial_generic_write_start -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9fc0a59f usb_serial_deregister_drivers -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaebeb5d7 usb_serial_generic_throttle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc68bf876 usb_serial_claim_interface -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd4e2c67d usb_serial_generic_close -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe9d84a72 usb_serial_generic_wait_until_sent -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xedd213e4 usb_serial_generic_unthrottle -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf3a4dc41 usb_serial_generic_resume -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf3d1c40f usb_serial_generic_get_icount -EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd1192cb usb_serial_generic_tiocmiwait -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x8151eb0e dp_altmode_probe -EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x9d2c0249 dp_altmode_remove -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x467e272d tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf9b326da musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x58eae809 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x6a419a16 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xac3cfa90 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xcbd328a9 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe8e11190 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x6586cd12 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x20502d8f tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xa876b84c tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xcbbf1fe2 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xf007b4e7 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x4f9de4ca usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x08db64f5 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d275ef2 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x12512f1f usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2516ee2c usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b4a4a46 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2ebaccbf usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31098949 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x38d3baf7 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c4f958b usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x520268e2 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5afced6f usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7bbf1cc4 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x971575a2 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae084799 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0aef97c usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc3454e9b usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc3dca0e7 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd090c65e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeaae1793 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9451984 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xe136a682 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xfd4b4fc5 dp_altmode_remove EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x8e7a32f3 tcpci_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbe111953 tcpci_get_tcpm_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xc529e32e tcpci_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs @@ -17901,228 +17911,228 @@ EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x9e0bd753 tcpm_pd_hard_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb655342c tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xb86240f1 tcpm_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xc37b9769 tcpm_cc_change EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xceb50012 tcpm_vbus_change EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xd680581d tcpm_port_clean EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xda86a83d tcpm_port_is_toggling EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xea220941 tcpm_tcpc_reset EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xeb779665 tcpm_sourcing_vbus -EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0xf381432e tcpm_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x07ef6bf4 typec_altmode2port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0b9f2a09 typec_switch_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e40154f typec_altmode_enter -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x110b18f2 typec_cable_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b1786f5 typec_get_negotiated_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d16b386 typec_altmode_put_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1efbc4d6 fwnode_typec_retimer_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2022f68b typec_altmode_exit -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x241e3c3c usb_power_delivery_register_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x26401760 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x048656b9 typec_retimer_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x048c9e40 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x073a9c64 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x078d1f70 usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x07d046b0 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bb6dee7 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f97e434 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10644a1c typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10b41a82 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x10e8f6bf typec_partner_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11b0490b typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x12f8e427 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x162d84ec typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1858a97d typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x18c09496 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2b7fa9e4 typec_get_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31713266 __typec_altmode_register_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31d042bb typec_register_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a236de7 typec_port_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x41c62cb9 typec_set_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x42d65ed5 typec_port_register_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x43a98bcc typec_retimer_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44ea66f2 usb_power_delivery_unlink_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x457bf543 fwnode_typec_switch_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45f76f6e typec_altmode_unregister_driver -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47207968 typec_switch_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49fdace5 typec_set_vconn_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54bbc464 typec_unregister_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b6c6209 usb_power_delivery_link_device -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f900495 typec_retimer_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x631570e9 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3a5f7203 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ef3cf62 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x460ed803 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4681ae5c typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48eb6ebf typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4a51251c typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d563a02 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4fa67bed typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5039f903 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x52dfeecf typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54ca64d0 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57b1e86d typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5cdb197d typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63b675e6 usb_power_delivery_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66bf3de5 __typec_altmode_register_driver EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6c1cadd3 typec_cable_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x710ecce8 typec_get_fw_cap -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7165e70c usb_power_delivery_unregister_capabilities -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x78022620 typec_altmode_update_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x78c9328b typec_partner_set_identity -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f3ea02e typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6bab28f2 fwnode_typec_retimer_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6cc90424 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6fe61efd fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6febabc2 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7753a69b typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x785ee109 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x787da7e3 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x827928f9 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x856264a0 typec_register_port EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x895b759b typec_unregister_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8c905142 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8a01e5ea typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d869318 typec_set_pwr_role EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x92ba8db8 usb_power_delivery_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9464cfe2 typec_altmode_vdm -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x97ed92d6 typec_unregister_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f3461c3 fwnode_typec_mux_get -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f7379ce typec_mux_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9fd27067 typec_switch_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa063ec8c typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x962d5297 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x966c0231 typec_retimer_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96d4c41a typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9810df05 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9ee5e0da typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa1c7bbe2 typec_switch_register EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa34cbd12 usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa527c5b0 typec_altmode_notify -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xacb5da4c typec_altmode_get_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb3863ac3 typec_retimer_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb38a50fa typec_switch_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb60592f6 typec_partner_set_svdm_version -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc009bc0f typec_unregister_cable -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc09181e4 typec_cable_is_active -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1283145 typec_retimer_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc35c01d3 typec_partner_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9bb038d typec_mux_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcaa9f155 typec_cable_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcbd03bb0 typec_port_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd018d5f9 typec_plug_set_num_altmodes -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd27a3c1b typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa550028c typec_partner_usb_power_delivery_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7c33031 usb_power_delivery_unlink_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac0e2382 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb44db8a1 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5a98a7d fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb84534ca usb_power_delivery_link_device +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbaf37cc5 typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfc2edee typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc064b5bb typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcc98a807 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcd10db96 usb_power_delivery_unregister_capabilities +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd22c2290 usb_power_delivery_register_capabilities EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd40af672 typec_partner_set_usb_power_delivery -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd50101ad typec_altmode_attention -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd538847b typec_register_partner -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd709fe6d typec_set_data_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb77d720 typec_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdbc8e46c typec_register_plug -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdfc0c9f0 typec_partner_set_pd_revision -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe050330b typec_partner_register_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1b8f82b typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd824cf9f typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd992f980 typec_port_set_usb_power_delivery +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc83febb typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe47b6e1c typec_retimer_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe4c209b7 typec_retimer_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe84efb88 typec_altmode_get_plug EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb690f4d typec_match_altmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xedb74fb1 typec_retimer_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeb1ff831 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef2f5257 typec_register_plug EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf2ec894a typec_partner_usb_power_delivery_register -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf6ba7c2f typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3a7ac2f typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf75c1d9a typec_mux_set_drvdata EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xff9f9af0 typec_unregister_port -EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xffeb4dc2 typec_register_port -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1eecd680 ucsi_connector_change -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x3ebfec40 ucsi_register -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5b79eb09 ucsi_unregister -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x66beb4fa ucsi_send_command -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7dfe4b88 ucsi_set_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb061738a ucsi_create -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xcdf62d1d ucsi_resume -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd262830d ucsi_get_drvdata -EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd76c4f8a ucsi_destroy -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x06f9d612 usbip_start_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1303ad02 usbip_recv_xbuff -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3a117b33 usbip_pad_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4231ae77 dev_attr_usbip_debug -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x435702ee usbip_alloc_iso_desc_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6986cad4 usbip_in_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x71d35c96 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x22f0eb5c ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2888c345 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2d860fc2 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x371c6d55 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa193ab41 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xa75dc174 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc455ac08 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd6c29be7 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfcb18e88 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0c531737 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x24587604 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x42843582 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x471e78c7 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4e3dcb92 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5372fc80 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x61638d69 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6b96e3b3 usbip_pad_iso EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7f9d069a usbip_event_add -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8fccbf52 usbip_recv -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9c0c3d46 usbip_recv_iso -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbc366b6b usbip_stop_eh -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc5847e51 usbip_pack_pdu -EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc584fd97 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9e97cb7d usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa6dc7c09 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbc331611 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcd8ba5c6 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/vdpa/vdpa 0x30a995a0 vdpa_mgmtdev_register -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x31bffce3 __vdpa_register_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x35550b6f _vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3694d2cf _vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4153ac28 vdpa_register_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6a40cb6d vdpa_mgmtdev_unregister -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x784fc8cb vdpa_set_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa463aa53 vdpa_unregister_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xee225e38 vdpa_get_config -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf0107e9e __vdpa_alloc_device -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfb2010b6 vdpa_unregister_driver -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x9541f87c vdpasim_create -EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xc705c250 vdpasim_schedule_work -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0f00c579 vfio_pci_core_finish_enable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1cea2a94 vfio_pci_core_write -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2054b2a8 vfio_pci_core_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3ebead3a vfio_pci_core_aer_err_detected -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4274b913 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe7b0f1d6 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x14d97c43 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x1b8442d7 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2b2b2453 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x416d1c1a vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4372d41d vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x47505b75 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x526af664 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9eee92a9 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd5a723e9 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe5961b7a __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xeae835ee vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x6a5b91ae vdpasim_create +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xb318d242 vdpasim_schedule_work +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x18d6efd8 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x23a673fd vfio_pci_core_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x26919fa9 vfio_pci_core_release_dev +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2bff050c vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x320675bc vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x33907b1d vfio_pci_core_init_dev EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x603b3443 vfio_pci_core_read -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x68adc4a3 vfio_pci_core_init_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7b68e7e8 vfio_pci_core_ioctl_feature -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7dac2017 vfio_pci_core_release_dev -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8e98d8a1 vfio_pci_core_register_dev_region -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa8f2e08f vfio_pci_core_mmap -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xabab376a vfio_pci_core_close_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaef5de0b vfio_pci_core_unregister_device -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc6e9a67a vfio_pci_core_sriov_configure -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc955ccd3 vfio_pci_core_err_handlers -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd091540c vfio_pci_core_disable -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd801ffdc vfio_pci_core_request -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf49af846 vfio_pci_core_match -EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb6a8954 vfio_pci_core_register_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3151f0cd vfio_platform_init_common -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x60fefdc7 vfio_platform_mmap -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x96e54015 vfio_platform_write -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9d214191 vfio_platform_read -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc5540de0 vfio_platform_unregister_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdbb6418f vfio_platform_ioctl -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe49293bb __vfio_platform_register_reset -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe6f52d96 vfio_platform_close_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xeffb2df9 vfio_platform_open_device -EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf4214070 vfio_platform_release_common -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x06bfbb0a vfio_file_iommu_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x092be25f vfio_register_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0bbc7c25 vfio_register_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1aa5948f vfio_file_enforced_coherent -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2d00f926 vfio_register_emulated_iommu_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3db0b760 vfio_file_has_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4527608c vfio_iommufd_emulated_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x476374e7 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x559b8f0b vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5e2a9a72 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7e605253 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8a0a1e7e vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x991443dd vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9bb8d9a2 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xad8ae185 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc4dfda30 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc77e6214 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd4171be4 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdb78a7b4 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf09688d4 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfa508dbd vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x1874c1ec vfio_platform_release_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x3e2dacbc vfio_platform_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7101f254 vfio_platform_open_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x780ff23b vfio_platform_close_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x821f9715 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8f7e81e6 vfio_platform_mmap +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9794118f vfio_platform_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xca9cd873 vfio_platform_read +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdb3e70f3 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xdd047151 vfio_platform_init_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x144934d9 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x27190318 _vfio_alloc_device +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x35a28795 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x37f91d82 vfio_iommufd_emulated_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3ac8dffd vfio_file_is_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x404d59bb vfio_iommufd_emulated_unbind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x48ee7465 vfio_device_set_open_count -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4ec4cbe4 vfio_iommufd_emulated_unbind EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x74c46262 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x641f7fc1 vfio_iommufd_physical_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x64bce358 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x729cbdb1 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7588e978 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x78fc12dc vfio_file_has_dev EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d2ed4c3 iova_bitmap_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x93df3ef8 vfio_unregister_group_dev -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xad191b83 vfio_file_is_group -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbc6929c2 vfio_iommufd_physical_unbind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc87d2e42 vfio_mig_get_next_state -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcbf587a2 vfio_iommufd_physical_bind -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xcefbece9 vfio_virqfd_disable -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd3e5c66a vfio_unregister_iommu_driver -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd67f46f5 _vfio_alloc_device -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xda1a0fb8 vfio_assign_device_set -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xdc42c238 vfio_iommufd_physical_attach_ioas -EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe471bae3 vfio_file_set_kvm -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12be000d vhost_dev_has_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15e8b6ab vhost_enqueue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1667d5de vhost_dev_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x175c13e3 vhost_new_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c5b72e9 vhost_poll_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e4ccc97 vhost_dev_stop -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x22bae09a vhost_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x249f1734 vhost_vq_work_queue -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4043d104 vhost_dev_cleanup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4265677c vhost_add_used_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51cc944c vhost_vq_is_setup -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x521f52e9 vhost_dev_reset_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56a45bfc vhost_poll_start -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57c891a5 vhost_add_used_and_signal -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x591d356c vhost_vq_has_work -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d798ee4 vhost_exceeds_weight -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e6ed895 vhost_dev_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6083724f vhost_dev_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fcc2950 vhost_worker_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79d540eb vhost_dequeue_msg -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79e228c9 vhost_vring_ioctl -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a33993e vhost_discard_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x82c68c21 vhost_add_used -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86552e53 vhost_vq_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b0e04a8 vhost_vq_flush -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8bb7a63a vhost_dev_set_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8dbb818a vhost_add_used_and_signal_n -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f643c66 vhost_dev_check_owner -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91c9503b vhost_log_access_ok -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97bfe5fa vhost_chr_read_iter -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9fcf613d vhost_get_vq_desc -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa0ab0346 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x82e1f866 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8d7450f1 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8e4efeb4 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x916e7f74 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xadd15337 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xae9cbf36 vfio_iommufd_physical_attach_ioas +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb2e0bb9d vfio_iommufd_physical_unbind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe30a7198 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe8898c84 vfio_iommufd_emulated_bind +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xfe5e67a0 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0079a540 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x083c350e vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d2b0f24 vhost_vq_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1266c1bd vhost_vq_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14902fb9 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x175de685 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1902401b vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1ab7609d vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x297d3c3f vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f14457d vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d1bdc08 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b407df0 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5755fb31 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60cf94e2 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x668c62a4 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x765f0b2b vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x777221ac vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f5938e5 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x829c4b91 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90decbd6 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x976b4564 vhost_new_msg EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xada6e033 vq_meta_prefetch -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1ed0b85 vhost_enable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb76d73b1 vhost_vq_avail_empty -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd79e4a6 vhost_init_device_iotlb -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc04f438b vhost_log_write -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc17d06cc vhost_vq_init_access -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb7e8bcd vhost_disable_notify -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe137be33 vhost_set_backend_features -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec57d47f vhost_poll_init -EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf17861b9 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb48650f0 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf809348 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc09454eb vhost_worker_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8372dc6 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8ef49f5 vhost_vq_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc995ee7d vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd2eda82 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcfdb0ff4 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd08914af vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd384e89e vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd447099d vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6096c9b vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6ba5572 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2894b01 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe65ad15d vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe849521a vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xee47ad6e vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf114003c vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa7ef5d5 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfbb3803c vhost_add_used_n EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd5444ee vhost_disable_notify EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x69e872f9 vhost_iotlb_itree_first @@ -18133,397 +18143,397 @@ EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xa24517eb vhost_iotlb_free EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xc577832d vhost_iotlb_alloc EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0xf9deb0db vhost_iotlb_map_free -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x08860fd4 ili9320_remove -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x79c04b58 ili9320_suspend -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x84f418f3 ili9320_probe_spi -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8e757e10 ili9320_write_regs -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9a63d951 ili9320_resume -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbc7a9040 ili9320_shutdown -EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcd73b7ab ili9320_write -EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xb556e911 fb_ddc_read -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x290abd62 sis_free_new -EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x618eff60 sis_malloc_new -EXPORT_SYMBOL_GPL drivers/w1/wire 0x23951e2b w1_read_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x28a13fb2 w1_reset_resume_command -EXPORT_SYMBOL_GPL drivers/w1/wire 0x443db9c5 w1_write_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4b8b9863 w1_touch_block -EXPORT_SYMBOL_GPL drivers/w1/wire 0x4e28763e w1_reset_select_slave -EXPORT_SYMBOL_GPL drivers/w1/wire 0x5da619f8 w1_read_8 +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x27184ec3 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x53dc1da7 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x75c554b6 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9666c6bf ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaf8fddf0 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xbeca6103 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe7208233 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x415275f6 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd2679c59 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf97a2326 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x138e1c26 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x20e6414b w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x20ebaed9 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3dc03ca0 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4272c65f w1_write_block EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x698385bd w1_triplet -EXPORT_SYMBOL_GPL drivers/w1/wire 0x90872e15 w1_write_8 -EXPORT_SYMBOL_GPL drivers/w1/wire 0x9b4daec8 w1_next_pullup -EXPORT_SYMBOL_GPL drivers/w1/wire 0xa8281c37 w1_touch_bit -EXPORT_SYMBOL_GPL drivers/w1/wire 0xdb08e375 w1_reset_bus -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1aee3836 xen_front_pgdir_shbuf_unmap -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x84c09ee6 xen_front_pgdir_shbuf_map -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x8f993cff xen_front_pgdir_shbuf_alloc -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xaa400ca7 xen_front_pgdir_shbuf_free -EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xeccc7c8d xen_front_pgdir_shbuf_get_dir_start -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x6cfb91e6 xen_privcmd_fops -EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x827feb2b xen_privcmdbuf_fops -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x02c2ec06 dlm_posix_get +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa648bbc6 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbf36acb4 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd22585ac w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd34f9d8c w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd41d96f1 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd7282afc w1_read_block +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x0f48b690 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x21c824d1 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x674454fb xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x78930ff0 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x91661040 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xc37bb4e5 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xd7fbfc52 xen_privcmdbuf_fops EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x574c57b1 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x601d7f63 dlm_posix_get EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a6c5f1b dlm_lock -EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9dbd5022 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xacb72219 dlm_posix_lock EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x01281523 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0f27f4de nlmclnt_rpc_clnt -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x14005d35 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3e595cd4 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9c09bc05 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xff62c347 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x113848b7 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2461c702 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77418c1c nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x85245096 lockd_up EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9cbde0a0 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc30e1758 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdb19480b nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0xedce2fe5 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/netfs/netfs 0xda3010c4 netfs_extract_user_iter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x016aba32 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x024c4ec4 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa68908d2 nlmclnt_rpc_clnt +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc893ffe7 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc93eb994 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe61033d3 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/netfs/netfs 0x086b1020 netfs_extract_user_iter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01fa6bac nfs_submount EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x054d0f35 nfs_reconfigure -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07dab921 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0acc6438 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c21dec9 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0de30e79 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fab209c nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1074998d nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03ec4451 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x045df47e nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04f0a2e2 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x088d6bd0 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b4f0f9b nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ca82c4b nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ca8b5b5 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0def0d7b nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ee80df1 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f544ee8 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f84c8c4 nfs_put_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x116440ce nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1335ebc2 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x171204c2 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17257aee nfs_sysfs_link_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1acc9dd8 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b1c968a nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f0e3e52 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f88197c nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20cca5bf alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11f9fe5e nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x125b08fd register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13e3fde5 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13ea9520 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x160f047a nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1875ebee nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bc4609b nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dfab93c nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2008427f nfs_alloc_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24823c03 nfs_pgheader_init EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28e7f07f nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x270fc436 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27490d35 nfs_lock EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29086fa3 __tracepoint_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bcf2ac5 nfs4_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dae5660 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ff42b3c nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3118cadf nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29767c7d nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ac2e0ea nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2df03609 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f7699e1 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32fe7c96 nfs_free_client EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34566b51 __tracepoint_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36764393 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39255f79 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x364b4a5c nfs_request_add_commit_list EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a0f63dc nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b900cdc nfs_free_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bb03161 nfs_probe_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f1b83f5 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a7ad749 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d6840b0 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dfbc552 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ecab446 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f06eeff nfs_permission 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 0x4166daea nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41e1f4fc nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x415a477f nfs4_fs_type EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45c93b24 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47507c8e nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47d14748 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b357fe2 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47c03f55 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ae81c66 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b88ba8a nfs_put_lock_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f4a18fb nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f63912d nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e0af7f6 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e26b828 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50d43975 nfs_write_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5656a736 nfs_async_iocounter_wait -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56baa782 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56fea984 nfs_client_init_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58030512 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5293d3f3 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54ff2cb1 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55b8f494 put_nfs_open_context EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58cfa079 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b25c609 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f243dc5 nfs_release_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f2cbe20 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fb0eeee nfs4_label_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64994c56 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6909f4f2 nfs_d_prune_case_insensitive_aliases -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a8155ac nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c1af273 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d6d1d97 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d914a99 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e259219 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e746d4f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5875db22 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5932a3c2 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af02bc6 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b5119ee nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x601b5640 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x623e4436 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x643076ae nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68632c36 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68a10323 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e0d7e05 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e5d9ae9 nfs_file_read EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7127ae0e nfs_set_verifier -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f76d9e nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72e144ee nfs_alloc_fattr_with_label EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73edd28f nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74749f1a nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74ac0022 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78d48d81 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a5fbd79 nfs_read_alloc_scratch -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b0e0024 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7da5dd95 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x746e7780 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75b5d95b nfs_sysfs_add_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75fbbd03 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x766a4eeb nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77809d10 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a4cf124 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b4eed17 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c69b1df nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d59154a __traceiter_nfs_fsync_exit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e202e89 __tracepoint_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e322542 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7faefb9a nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc5a657 __traceiter_nfs_fsync_exit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x820e5aab nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82e4de51 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x833235d3 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ebd2c2f nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81a81c62 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82be5679 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83223f05 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x846685fb nfs_sb_deactive EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ddea86 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88a44fb8 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88ed5d8d nfs_atomic_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88f51b0f nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x892be98e nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dac7091 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dff4937 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x863722fa nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86a394be nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8abad0b8 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8adf6996 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f18b686 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f98329a nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x909021e3 nfs_revalidate_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90cc7ef8 nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92d73244 nfs_set_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94c31e9a nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94ffe5d4 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d6a6a5 unregister_nfs_version EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95ad1a36 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95cf4a4e nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95cb138b nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x979e65d3 nfs_clone_server EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99039c60 nfs4_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1d278f0 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa546738c nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bea76cd nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e2f1ad2 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e93f195 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f1666ed nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1414915 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1a8831f nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4f54d93 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5766734 nfs_retry_commit EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab07a2de nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafad8146 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0c2e44b nfs_commit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb19b2dd7 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3d5f8ab nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba22c2b3 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb477a67 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabc1d673 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac321a72 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac56aa15 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad6d531f nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad7e1c7e nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb122ee19 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb142d847 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5356b6d nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbdf6700 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc090841 nfs_rmdir EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcc60c8d __tracepoint_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcee8f16 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcfb76a6 nfs_fscache_open_file -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd562e40 nfs_clear_verifier_delegated -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd83ee5d nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe89e3fe nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0f59881 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a5f8a9 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc359141e nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbceec4e4 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd239ccf nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf1d464f nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf7fd6a6 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc032a2a8 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1fec28a nfs_getattr EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc47cc9ce nfs_filemap_write_and_wait_range -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4b1dc04 nfs_try_get_tree -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5198248 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc64f8159 nfs_access_get_cached EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc904f920 nfs_check_cache_invalid -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc967e71f nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca877cca nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca8e251a nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb6a51d2 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd39d790 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce600eca nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf6090e9 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd14ded96 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2157f66 __traceiter_nfs_xdr_bad_filehandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda368696 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc714a175 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca6624c9 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca78e572 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb68f908 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc5d3ce5 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccb76185 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd5f5a3c nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcefe81df get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfa31a32 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfe4b43a nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0a2d2fb nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2763779 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd327ac05 nfs_read_alloc_scratch +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4a9f9a9 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8f7f6f9 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd92b9cf2 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda40c6a5 nfs4_dentry_operations EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbfd1768 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc95e35d nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xddc2bed8 nfs_wait_on_request -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2dcab12 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4cfab33 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5f70603 nfs_client_for_each_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea4cd6eb __traceiter_nfs_xdr_status -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeae58234 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xece65ff8 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xece67f5b nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef67a691 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3396f94 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf36a1fde nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf39786e4 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5dc6616 nfs_sysfs_add_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf75888c4 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9685b0b nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc0e551c nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xded2f0fa nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0d89d8c nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2dca5ef nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4748801 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5466092 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec72bc9d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xecadd052 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed059701 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed558203 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef8f41a4 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeffe342e nfs_sysfs_link_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3463f0b nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5afda86 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf79ee952 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8c51901 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8dc3219 nfs_add_or_obtain EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9f379f2 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa10fe92 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa5371f4 __traceiter_nfs_fsync_enter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa877726 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb860478 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbfae620 nfs_setattr_update_inode EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd8f2cd3 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff61cf20 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x56ee91ed nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff8fc93e nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x33966fb7 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x024d8e86 pnfs_generic_pg_init_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02da1276 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03618d5e nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x06421411 pnfs_nfs_generic_sync EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b03cc60 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b73f75d pnfs_generic_clear_request_commit EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bd06bd1 __tracepoint_pnfs_mds_fallback_write_pagelist EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d381e90 __tracepoint_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0dbddc65 pnfs_ld_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fcde073 pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff2938f nfs41_sequence_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10df2386 nfs4_schedule_lease_moved_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1343a893 __traceiter_pnfs_mds_fallback_read_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16847f4a pnfs_generic_prepare_to_resend_writes -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18321534 pnfs_generic_recover_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18903348 pnfs_set_lo_fail EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b41178 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c7c4232 nfs4_pnfs_ds_put EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d57c82c __tracepoint_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ff773c4 pnfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2153be0c nfs4_set_ds_client EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2174b794 __tracepoint_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22ec4a0e nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x219181f3 pnfs_ld_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29414558 nfs4_put_deviceid_node -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a05570c pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a4db347 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b1f852c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b4e429e __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2b3379 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e05bafb nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e2fc3da nfs4_put_deviceid_node EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f1e21ba __tracepoint_ff_layout_write_error EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3313ac17 __traceiter_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3420f5d4 nfs4_setup_sequence -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x383d2410 nfs4_test_session_trunk -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38f4eb49 pnfs_put_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b501576 pnfs_unregister_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c0a7437 nfs4_set_rw_stateid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d1363b4 pnfs_generic_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42cdd9ef pnfs_layout_mark_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x454c3189 pnfs_generic_sync -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48c21ed1 pnfs_register_layoutdriver -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49d88b61 __traceiter_pnfs_mds_fallback_pg_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a68455b __traceiter_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b090296 nfs4_decode_mp_ds_addr -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c8cb5aa pnfs_layoutcommit_inode -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5317c5d7 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30f130b4 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36e99dae pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ba8e7a8 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d8fdbdb nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f00d804 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42089a33 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46d5d46f pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a8e1d1a nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51de5a12 pnfs_generic_scan_commit_lists EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53fd1bac pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x546dc005 pnfs_generic_pg_writepages EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x555bb1db __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5636b330 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56a39165 __traceiter_pnfs_mds_fallback_write_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5930b3c2 nfs4_schedule_lease_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c6d9556 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e6a7cde __traceiter_nfs4_pnfs_write EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6431c3cf pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65ed50d0 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x680b0233 nfs4_test_deviceid_unavailable EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ca9d2e8 nfs42_proc_layouterror EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e637af7 __tracepoint_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f6584b1 nfs4_test_deviceid_unavailable -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7121e588 nfs42_proc_layouterror -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x721b3f29 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7045c646 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72d5da42 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x780bc861 pnfs_read_resend_pnfs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x788e1236 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x796bb37f nfs4_set_rw_stateid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c948678 pnfs_generic_recover_commit_reqs EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d22f3bc nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7df55bfb nfs4_schedule_migration_recovery EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x802046c5 __tracepoint_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x815639bd nfs4_schedule_stateid_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81c193da pnfs_report_layoutstat -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85fa325b pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x807295bf __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8582794c pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88344655 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a046f0a pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b9b8476 __traceiter_nfs4_pnfs_read EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8be24f50 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8def5160 __traceiter_ff_layout_read_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e169e3d nfs_remove_bad_delegation -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95050438 nfs4_pnfs_ds_connect -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9826f77e nfs4_find_or_create_ds_client -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x983ce8e0 pnfs_generic_scan_commit_lists -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x993c0450 __traceiter_ff_layout_commit_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa40816 pnfs_error_mark_layout_for_return -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f82f598 pnfs_generic_search_commit_reqs -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2bbcae5 pnfs_add_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2cf37a7 pnfs_generic_pg_check_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa34c5ab5 nfs4_delete_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3f8a141 nfs4_proc_getdeviceinfo -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8d575bd nfs4_schedule_migration_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad1fd71c __traceiter_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb067e1fc nfs4_find_get_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb07723cd pnfs_generic_pg_writepages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb793da5a pnfs_generic_commit_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7e7f864 pnfs_generic_pg_cleanup -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb83fede6 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cbbf91f __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cf7c41e pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99c8c492 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a4368ea __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9afd6a40 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9dc3bb51 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0ced04f pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4837484 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa58fd108 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6abec9c nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab9f026c pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac0334c0 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf57f5f8 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb144edde __traceiter_pnfs_mds_fallback_read_done EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbba55a55 __traceiter_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbcc1d29f pnfs_generic_pg_check_range -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc16702a4 nfs4_init_ds_session -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc58b623b pnfs_ld_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc627cdc8 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba5a476b __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbad6914b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf165e54 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc758faa5 nfs4_delete_deviceid EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8b57cbe nfs4_pnfs_ds_add -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc958b7f5 nfs4_pnfs_ds_put -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xce8931b7 __traceiter_ff_layout_write_error -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf0566e4 pnfs_write_done_resend_to_mds -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd290979a pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcefc0530 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfe24bfd pnfs_destroy_layout EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd47333c2 __tracepoint_nfs4_pnfs_write -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4ebd37c pnfs_generic_pg_readpages -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd72803ce pnfs_destroy_layout -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8f71ee4 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd937d9a3 pnfs_error_mark_layout_for_return EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd342fa8 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd6a0fcb pnfs_put_lseg EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3b44148 nfs4_schedule_session_recovery -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8732530 pnfs_generic_layout_insert_lseg -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe928c535 pnfs_generic_clear_request_commit -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec381e85 __traceiter_pnfs_mds_fallback_write_done -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec93dfb1 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2b75506 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe44022d2 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe480b086 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe74423b2 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9a73fad pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb158395 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xebd703bb pnfs_read_done_resend_to_mds EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee908de0 pnfs_free_commit_array -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeecd9f04 __traceiter_pnfs_mds_fallback_read_pagelist -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2446926 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeefff96f __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5cec25e pnfs_layoutcommit_inode EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf8807d09 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7e888ac nfs4_mark_deviceid_available EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release -EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa45b7e3 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfb817e8f pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc0e467d pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd0ed7ca pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff65cfb9 pnfs_unregister_layoutdriver EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6e51903a opens_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9cdc5f81 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf878d426 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x65cbe377 nfs_stream_decode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc2892dd3 nfs_stream_encode_acl -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc5417d57 nfsacl_decode -EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe79a353e nfsacl_encode -EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x8e6ed76c nfsd4_ssc_init_umount_work -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x485ab268 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x76202f83 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x783022a2 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xee1966be locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3e97a308 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x42da8da3 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xbad96e71 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc1d22695 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xc3f604be nfsd4_ssc_init_umount_work EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x589c6652 o2nm_node_get EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x590e3a35 o2nm_node_put EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x76e14271 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 0x8abc1673 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x934b8f26 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa3c02c71 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8776d753 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x95d83112 o2hb_setup_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa941cb47 o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb3cedb5f o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae0aed51 o2hb_unregister_callback EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcac37e7f o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc8b39c5e o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcb512218 o2nm_node_put 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 0xf982e6db o2net_send_message EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x14f17916 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2838beac dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x31c3bd60 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x45be6db1 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x56ada2ca dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5b0ac130 dlm_unregister_domain EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x82cbe7c3 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaa3decc9 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcd5fabae 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 0xde407273 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe1f5dd2f dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xefc494a9 dlm_register_eviction_cb EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1aca880c ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x266e658d ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xac5cc60e ocfs2_kset EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc402d2e6 ocfs2_plock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcd120eed ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xce9a116b ocfs2_stack_glue_register EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdbf1e5ab ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x25096f39 register_pstore_device +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd879fa2d ocfs2_stack_glue_unregister EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config -EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xb48ea699 unregister_pstore_device -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x11f403e0 register_pstore_zone -EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xd06079dd unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x5301b20b register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xc2867bab unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x591f59e0 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x988b23dd unregister_pstore_zone EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xabd9af6d cifs_arc4_crypt EXPORT_SYMBOL_GPL fs/smb/common/cifs_arc4 0xc4c73891 cifs_arc4_setkey EXPORT_SYMBOL_GPL fs/smb/common/cifs_md4 0x798f3830 cifs_md4_init @@ -18545,8 +18555,8 @@ EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x0123df25 notifier_err_inject_dir -EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x8147e3fc notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x78cb23cb notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xeecc2409 notifier_err_inject_init EXPORT_SYMBOL_GPL lib/polynomial 0xb8b44e50 polynomial_calc EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 raid6_call @@ -18557,1082 +18567,1082 @@ EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xa32f3d9e decode_rs16 EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xeb2f825c init_rs_gfp EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xfd581da1 free_rs -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa99fb56e lowpan_header_decompress -EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xf184f95a lowpan_header_compress -EXPORT_SYMBOL_GPL net/802/garp 0x2bff7199 garp_request_join -EXPORT_SYMBOL_GPL net/802/garp 0x6885e8a4 garp_request_leave -EXPORT_SYMBOL_GPL net/802/garp 0x7d4f36c8 garp_register_application -EXPORT_SYMBOL_GPL net/802/garp 0x8e606e17 garp_init_applicant -EXPORT_SYMBOL_GPL net/802/garp 0xdd129e10 garp_unregister_application -EXPORT_SYMBOL_GPL net/802/garp 0xe3f9034e garp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x0ea7ede4 mrp_unregister_application -EXPORT_SYMBOL_GPL net/802/mrp 0x481e4589 mrp_init_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x7f64261a mrp_uninit_applicant -EXPORT_SYMBOL_GPL net/802/mrp 0x939b5a5c mrp_request_leave -EXPORT_SYMBOL_GPL net/802/mrp 0xc6a10fdd mrp_register_application -EXPORT_SYMBOL_GPL net/802/mrp 0xfe0dcb25 mrp_request_join -EXPORT_SYMBOL_GPL net/802/stp 0x24474e5c stp_proto_register -EXPORT_SYMBOL_GPL net/802/stp 0x546242fc stp_proto_unregister -EXPORT_SYMBOL_GPL net/9p/9pnet 0x56908ce0 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/9p/9pnet 0xdae68952 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x08312333 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x502a6f07 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x033dd04c garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x1dfc6ec3 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x2cc066e8 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x40474971 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x41590bb1 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xbda1c61b garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x6f0c27dd mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x8602f3d0 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa70ac5e4 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xb1789043 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb6d300f8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xdb459181 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x81c67ebe stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xf1e3721e stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0xaf4e0dfd p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb5b98b12 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 0x747626c7 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0x2f3ec63f 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 0x05e59242 l2cap_chan_connect -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x13f31a1c l2cap_chan_list -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x290c3a34 l2cap_chan_create -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4b00e0bb l2cap_add_psm -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4c503002 l2cap_chan_set_defaults -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7b9a3f1e l2cap_chan_send -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x948fe7e0 bt_debugfs -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc74432cf l2cap_chan_put -EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd1188085 l2cap_chan_del -EXPORT_SYMBOL_GPL net/bridge/bridge 0x10b2ef39 br_multicast_has_querier_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0x13a0bf08 br_fdb_clear_offload -EXPORT_SYMBOL_GPL net/bridge/bridge 0x160c3a13 br_fdb_find_port -EXPORT_SYMBOL_GPL net/bridge/bridge 0x24bed17a br_forward_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0x256ad7e0 br_port_flag_is_set -EXPORT_SYMBOL_GPL net/bridge/bridge 0x3cf91dbf br_vlan_get_proto -EXPORT_SYMBOL_GPL net/bridge/bridge 0x447a7689 br_multicast_router -EXPORT_SYMBOL_GPL net/bridge/bridge 0x478e961e nf_br_ops -EXPORT_SYMBOL_GPL net/bridge/bridge 0x4fcf41fe br_mst_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x55631b8d br_mst_get_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0x5cb324f4 br_multicast_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7c609fd6 br_mst_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x7d35ab95 br_vlan_get_info -EXPORT_SYMBOL_GPL net/bridge/bridge 0x84866410 br_dev_queue_push_xmit -EXPORT_SYMBOL_GPL net/bridge/bridge 0x94661268 br_vlan_get_pvid_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xa53365cb br_handle_frame_finish -EXPORT_SYMBOL_GPL net/bridge/bridge 0xac738544 br_multicast_has_router_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xba94d0b6 br_forward -EXPORT_SYMBOL_GPL net/bridge/bridge 0xbacb29cf br_multicast_list_adjacent -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc3f0ce1c br_multicast_has_querier_anywhere -EXPORT_SYMBOL_GPL net/bridge/bridge 0xc8dabb7f br_vlan_enabled -EXPORT_SYMBOL_GPL net/bridge/bridge 0xcd31f324 br_port_get_stp_state -EXPORT_SYMBOL_GPL net/bridge/bridge 0xedfeeb0c br_vlan_get_pvid -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf0a5b807 br_vlan_get_info_rcu -EXPORT_SYMBOL_GPL net/bridge/bridge 0xf8181c75 br_get_ageing_time -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0718a681 dccp_getsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x0beb178c dccp_disconnect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0c5251fc l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x24620e17 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x278d07d3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x31282c0f l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5c8f5098 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8bc76e1c l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xac99051e l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe45edc2d l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe487b1a4 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c7fc463 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c9c0b11 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x126489fd br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1896e35b br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1cf13ca9 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x29175b65 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2b67af89 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2e0fdcc1 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x31de0918 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x38308a96 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45c16357 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5bb10bdb br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7bed8912 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7de7c2a5 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8ab6fd68 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8b5f1ae3 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b044665 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa91a2640 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xacf16e1b br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbdc862d2 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc126a8d8 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf32e040c br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf67d9a80 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf6e820aa br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfa57634b br_get_ageing_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00f4652a dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c3f8eaf dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1135cc00 dccp_done EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add -EXPORT_SYMBOL_GPL net/dccp/dccp 0x31fa00f7 dccp_setsockopt -EXPORT_SYMBOL_GPL net/dccp/dccp 0x37f568de dccp_feat_signal_nn_change -EXPORT_SYMBOL_GPL net/dccp/dccp 0x37f9ee8c dccp_shutdown -EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d02aad0 dccp_sync_mss -EXPORT_SYMBOL_GPL net/dccp/dccp 0x413dc369 dccp_close -EXPORT_SYMBOL_GPL net/dccp/dccp 0x48bcca0d dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x209b45ec dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29c0615e dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2c31211c dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x379f2086 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f224ede dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x47ef6739 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x49643faa dccp_check_req EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge -EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e45218c dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x51510601 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x51a0887b dccp_close EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics -EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d085fd0 dccp_recvmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0x791faa23 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ff20558 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x640bf117 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6615f79d dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a37a591 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6d5dbe32 dccp_destruct_common +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fa505ed dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x75119840 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f47bf19 dccp_shutdown EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x815cb649 dccp_poll EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171199a dccp_death_row EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name -EXPORT_SYMBOL_GPL net/dccp/dccp 0x8abb972e dccp_poll -EXPORT_SYMBOL_GPL net/dccp/dccp 0x9261b199 dccp_set_state EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0c9787c dccp_check_req -EXPORT_SYMBOL_GPL net/dccp/dccp 0xa64f751d inet_dccp_listen -EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6ffd5c5 dccp_destruct_common -EXPORT_SYMBOL_GPL net/dccp/dccp 0xbac21f28 dccp_send_sync -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc00dd3b4 dccp_reqsk_init -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4937ec3 dccp_feat_nn_get -EXPORT_SYMBOL_GPL net/dccp/dccp 0xc828afbc dccp_ctl_make_reset -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcec79bea dccp_create_openreq_child -EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf305eb8 dccp_parse_options -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd347033a dccp_rcv_state_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd53d86d4 dccp_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xd5525b42 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x979fde87 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0781551 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3511636 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb70e84cc dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb83fadac dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe123b82 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe8e76f5 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1609ac3 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca6a1a44 dccp_child_process EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7cdb975 dccp_hashinfo -EXPORT_SYMBOL_GPL net/dccp/dccp 0xed6719b4 dccp_done -EXPORT_SYMBOL_GPL net/dccp/dccp 0xee928abf dccp_reqsk_send_ack -EXPORT_SYMBOL_GPL net/dccp/dccp 0xef629223 dccp_child_process -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1b92ee2 dccp_insert_option -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf52124c9 dccp_sendmsg -EXPORT_SYMBOL_GPL net/dccp/dccp 0xf54ea63f dccp_ioctl -EXPORT_SYMBOL_GPL net/dccp/dccp 0xfcb063d1 dccp_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x18228412 dccp_v4_do_rcv -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x31b7fd39 dccp_v4_conn_request -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x64ac5280 dccp_invalid_packet -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x76031ddf dccp_v4_connect -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbe98c82f dccp_v4_send_check -EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd4c2a259 dccp_v4_request_recv_sock -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00bece37 dsa_8021q_rcv -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0bb8b9e9 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4da4264 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe15f620 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0b493845 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x76ee9160 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x84660d53 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xadf37478 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd1bed23d dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd26eff2c dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x062fb6a0 dsa_8021q_xmit EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x11b1b85d dsa_tag_drivers_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x29630978 dsa_devlink_resources_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d5918a7 dsa_switch_shutdown -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3fc41384 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fed5dd6 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x11a6cc64 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x19f626ab dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x25f99e49 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x264b9b4c dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2719a98c dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27f535b8 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a795683 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a1d0ce8 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3a510716 dsa_devlink_params_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x448f9ee5 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44e02bbc dsa_switch_find EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4e23b3fa dsa_switch_suspend -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x509106ba dsa_mdb_present_in_other_db -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5237d5d0 dsa_tag_8021q_bridge_join -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x53dcb842 dsa_8021q_xmit -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x73164d09 dsa_tag_8021q_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x740c2e54 dsa_tag_drivers_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8137ca6c dsa_devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x814f1cad dsa_tag_8021q_standalone_vid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x890bf2c5 dsa_devlink_resource_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x898b641b dsa_switch_find -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8d287652 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x50e05768 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x566c2373 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57831645 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x710f6307 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x732cf31a dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b3c53df dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9540233f dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95c92eb4 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x98506f09 dsa_unregister_switch EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa6d5f7ac dsa_port_from_netdev -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa6dfbd20 dsa_devlink_params_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf22c9e9 dsa_tag_8021q_bridge_leave -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xaf4a1791 dsa_slave_dev_check -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb690ef10 dsa_devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc0328748 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xadf54b51 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0abe1d0 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb3fe1388 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb4f3e862 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb6ccdbbc dsa_devlink_resource_register EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd21baa6b dsa_port_phylink_mac_change -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd97d6792 dsa_register_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe05ac91f dsa_tag_8021q_find_port_by_vbid -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe68726ef dsa_tag_8021q_unregister -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe996e80d dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdc1d5747 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe1f03535 dsa_tag_8021q_standalone_vid EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf186e94b dsa_unregister_switch -EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfc1fa8f6 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2646f88 dsa_slave_dev_check EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x09b5a698 ieee802154_hdr_pull -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x334aad9c ieee802154_hdr_peek -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x38d2ac92 nl802154_scan_event -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x565d2375 ieee802154_hdr_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6f789f3f nl802154_scan_done -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7f967078 ieee802154_mac_cmd_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x822f65dc nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x20ca262d nl802154_scan_started +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x34614993 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x47084206 ieee802154_mac_cmd_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5176c77a ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6b89cc7e ieee802154_hdr_pull EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9a5f4a03 nl802154_scan_started -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd5ef43f0 ieee802154_beacon_push -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xeb22ee6f ieee802154_hdr_peek_addrs -EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf14434a5 ieee802154_mac_cmd_pl_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x891e8489 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb885242c ieee802154_mac_cmd_pl_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc7392f26 nl802154_beaconing_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcd2594d6 ieee802154_beacon_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd1034981 nl802154_scan_done +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdfddca71 nl802154_scan_event +EXPORT_SYMBOL_GPL net/ife/ife 0x2c78db24 ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x64ad0aa4 ife_decode EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xb5cd24ea ife_decode -EXPORT_SYMBOL_GPL net/ife/ife 0xde0ea90e ife_encode EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x175f8d16 esp_output_head -EXPORT_SYMBOL_GPL net/ipv4/esp4 0x96b69d11 esp_input_done2 -EXPORT_SYMBOL_GPL net/ipv4/esp4 0xaef8ebeb esp_output_tail -EXPORT_SYMBOL_GPL net/ipv4/gre 0x10957ec1 gre_add_protocol -EXPORT_SYMBOL_GPL net/ipv4/gre 0xb67fa392 gre_del_protocol -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x034b956f inet_diag_unregister -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0a73fcf7 inet_sk_diag_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1e528199 inet_diag_dump_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2036199e inet_diag_find_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2dc43132 inet_diag_msg_attrs_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x317af4f7 inet_diag_dump_one_icsk -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x461fc634 inet_diag_msg_common_fill -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd71cd8eb inet_diag_register -EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfd830864 inet_diag_bc_sk -EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x9aeea2b2 gretap_fb_dev_create -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x01ece3b3 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x030120be ip_tunnel_changelink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x05d476e9 ip_tunnel_delete_nets -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x16f62819 ip_tunnel_siocdevprivate -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2b9eeefa ip_tunnel_newlink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3d3462e8 ip_tunnel_lookup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6edd36c9 ip_tunnel_init_net -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7898e650 ip_tunnel_ctl -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7bb0a215 ip_tunnel_uninit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa42f60d8 ip_tunnel_dellink -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc5fd99b1 ip_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd69cae4f ip_tunnel_init -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd9be16bd ip_md_tunnel_xmit -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe8e3dc8b ip_tunnel_rcv -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0f53749 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfabfdf78 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfff4bf9c ip_tunnel_setup -EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x8a2c3c44 arpt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xbaf309f8 ipt_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x0f79a770 nf_defrag_ipv4_enable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9ebfb19f nf_defrag_ipv4_disable -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xf53c832c nf_dup_ipv4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x43c66fd2 nf_reject_ip_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4e68efac nf_reject_skb_v4_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6e9ccff4 nf_reject_ip_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xadb6a739 nf_reject_skb_v4_tcp_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xee516f54 nf_send_unreach -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf061b93b nf_send_reset -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xff351aa7 nf_reject_iphdr_put -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xfbb2af06 nf_sk_lookup_slow_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x40e0b393 nf_tproxy_laddr4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb0f3135c nf_tproxy_get_sock_v4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xeb7fad73 nf_tproxy_handle_time_wait4 -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1c51e04e nft_fib4_eval -EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xcd1201dc nft_fib4_eval_type -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1bbf195f tcp_vegas_pkts_acked -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbe983ad8 tcp_vegas_init -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xedce83bf tcp_vegas_cwnd_event -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf30b6b5d tcp_vegas_state -EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfb88dec9 tcp_vegas_get_info -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x255cd54e udp_tunnel_sock_release -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x75880046 udp_tunnel_push_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9a8f0728 udp_tunnel_notify_del_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9b5cad69 udp_tunnel_drop_rx_port -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbc90691c setup_udp_tunnel_sock -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd43d70ed udp_tunnel_xmit_skb -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe940dc92 udp_tun_rx_dst -EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf81c3dd2 udp_tunnel_notify_add_rx_port -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x05825e07 esp6_input_done2 -EXPORT_SYMBOL_GPL net/ipv6/esp6 0x40fbe421 esp6_output_head -EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe31fdbd0 esp6_output_tail -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x169e3f65 ip6_tnl_xmit_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2054a63d ip6_tnl_encap_setup -EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x86df37f5 ip6_tnl_rcv_ctl -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa93ff2f7 udp_tunnel6_xmit_skb -EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe0b4e590 udp_sock_create6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xee902d53 ip6t_alloc_initial_table -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x83eef8e6 nf_ct_frag6_gather -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc75e8a49 nf_defrag_ipv6_disable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf02505da nf_defrag_ipv6_enable -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x0c0841b1 nf_dup_ipv6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0188f6af nf_send_unreach6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3bf3886c nf_reject_skb_v6_unreach -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x75be080b nf_send_reset6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc94c2ca3 nf_reject_skb_v6_tcp_reset -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd153468c nf_reject_ip6hdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf0262a8b nf_reject_ip6_tcphdr_put -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf665fe38 nf_reject_ip6_tcphdr_get -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x7cd50e6f nf_sk_lookup_slow_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7a9d6353 nf_tproxy_laddr6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xd8ff30eb nf_tproxy_handle_time_wait6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfad63675 nf_tproxy_get_sock_v6 -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x47657f68 nft_fib6_eval -EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x9319674e nft_fib6_eval_type -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e14ee8f l2tp_xmit_skb -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x181c6f45 l2tp_session_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x239db38c l2tp_recv_common -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a62e748 l2tp_tunnel_dec_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x37cb63b8 l2tp_session_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e57dc77 l2tp_tunnel_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4f81b714 l2tp_session_create -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x50d49c18 l2tp_tunnel_get_session -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x694d0c8e l2tp_session_get_by_ifname -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69908a02 l2tp_tunnel_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x738bb619 l2tp_sk_to_tunnel -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8cc85248 l2tp_session_set_header_len -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd7b504e l2tp_udp_encap_recv -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0b21cda l2tp_session_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcc943d69 l2tp_tunnel_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcd424249 l2tp_session_get_nth -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd4da9a55 l2tp_tunnel_register -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd638cc69 l2tp_session_delete -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe2202fac l2tp_session_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xedc735a2 l2tp_tunnel_get -EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfd6fe870 l2tp_tunnel_inc_refcount -EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x0bb9fd92 l2tp_ioctl +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x153eef83 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x2f1adde0 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xac99897e esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4983d706 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xef690a55 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1863d871 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x287d2a5a inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x368ef633 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4f7371af inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6cbb8916 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc4a6d5b1 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcc3495f5 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe27c0ff7 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfd287fad inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x078b8024 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x012d9721 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0ca2a3cf ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x186ba461 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x30022a04 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3aea0d36 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3ed865e5 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x435634ba ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5688cafd ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x62cc6d86 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x93f469bf ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x94294683 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0668c4a __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb8665ddd ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc06cba2b ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd444039f ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0e6a17a ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe8f3746f ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xe7a7bc0c arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x28384c5d ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x4f9d4007 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xde5b56e8 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xeb5f142d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2ad54e32 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2de85fe3 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x438677c9 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb4fc2fa0 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc97e0d12 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe3ffe0a2 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe9864370 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x7bb60e89 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x04e0bddf nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0ece58a5 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9b6be5d3 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x1afe96ca nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xcbbd7758 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x013d2c02 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x62238c4d tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd8a1346b tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xec599aee tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf9d2291a tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1c465e3e udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3cf30e2c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x45ffd384 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x51bc0d49 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x767e566d udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7ed564c4 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x883ac498 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x98aafb42 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6a180946 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xc9fc36b7 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xd661f8b3 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x145d20a9 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x841c2839 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9f8c936e ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc1ea3ba2 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd7338078 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xeb2230c7 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x55d7ddaa nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x62ac5239 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc8d8f3cc nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x5474afce nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x261fc03e nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x430d174d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6c2d9c40 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x8bc12155 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xac1d069c nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb4a0a206 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf2f2df2d nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xfcd1afe0 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x16c2360d nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x493f294a nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc0dd34be nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7a1a6d1d nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xae66753b nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x021cdcab l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x17cd21d8 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a62f754 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d8887ff l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4488aeeb l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x54cf0eaf l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x671ff61d l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x68ba358b l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6f823911 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x75db9b21 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x77aaea5c l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x88817e76 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b36ecda l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc3d30edc l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcf39538e l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdb1225c9 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5e6378d l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe925d8b3 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf36b32d1 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf97e3a65 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff6fc297 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x5c59635e l2tp_ioctl EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops -EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x3a8d2045 l2tp_nl_register_ops -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x06f58149 ieee80211_resume_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12905da3 ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xbd360639 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x005f8c75 ieee80211_set_active_links_async +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x08339ccc ieee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1500d22d ieee80211_ready_on_channel EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16ad7c5f ieee80211_tkip_add_iv -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16f25971 ieee80211_gtk_rekey_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1c5d1be8 ieee80211_vif_to_wdev EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dab0efe ieee80211_set_key_rx_seq -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29523e26 ieee80211_iterate_stations_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29591413 ieee80211_iterate_active_interfaces_mtx -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29cd2882 ieee80211_iter_chan_contexts_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39f3202f ieee80211_remain_on_channel_expired -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3f6b8325 ieee80211_obss_color_collision_notify -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x53b469f4 ieee80211_ave_rssi -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6a121617 ieee80211_calc_tx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ed0cbb3 wdev_to_ieee80211_vif -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7ad47780 ieee80211_find_sta_by_link_addrs -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x811b4d5b ieee80211_ready_on_channel -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x85884e39 ieee80211_set_active_links -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x88d050c6 ieee80211_calc_rx_airtime -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8af10542 ieee80211_iterate_interfaces -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8e32b0bf ieee80211_hw_restart_disconnect -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x91a2c005 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21f4d9e9 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27c6ed0f ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x326013f5 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ff54b8a ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5529955f ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x597868d4 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a668798 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6079fcc8 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x630b4c53 ieee80211_find_sta_by_link_addrs +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x728705b2 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x76031e29 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d485f47 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97479fef ieee80211_set_active_links +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x988f60cf ieee80211_color_change_finish EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e1c1431 ieee80211_key_replay -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9f0d6477 ieee80211_gtk_rekey_add -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa8ccde18 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xade8bf59 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2fd4a44 ieee80211_vif_to_wdev EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd004ea88 ieee80211_key_mic_failure -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd3c53480 ieee80211_find_sta_by_ifaddr -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe02ddb97 ieee80211_iterate_active_interfaces_atomic -EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe71db93e ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe57e4600 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe5fc34e8 ieee80211_update_mu_groups EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea792270 ieee80211_remove_key -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2bed4812 mpls_output_possible -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x313e85dc mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf681840e ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfa403444 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfd50f598 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5354891f mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6e2ea8b4 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6f9c1e98 mpls_pkt_too_big EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8ee316eb nla_get_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc57a33e9 nla_put_labels -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc8778a20 mpls_pkt_too_big -EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xff696a9b mpls_dev_mtu -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x191ee4bf ip_set_put_byindex +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x91918786 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbaaa8a3d mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x05fb5069 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x16e12348 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1bb3b664 ip_set_get_byname EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3402739e ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29b5566e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39022a33 ip_set_match_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55677a19 ip_set_nfnl_put -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6649ab8a ip_set_get_byname -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x689c210c ip_set_get_ip6_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6f274bdd ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3d04b8b4 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4982cecf ip_set_nfnl_put EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b12e397 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 0x927ab2ae ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8e501319 ip_set_put_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa069b5f1 ip_set_init_comment EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa4524da2 ip_set_match_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb54d2c52 ip_set_elem_len -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc8befce ip_set_type_unregister -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd8239ea ip_set_test -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcf683d13 ip_set_del -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd2dfb3bb ip_set_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd68bfb03 ip_set_name_byindex -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9611ff2 ip_set_put_extensions -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda0692a8 ip_set_get_ip4_port -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8ef93a2 ip_set_add -EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe952d986 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6a650bd ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc89c4e97 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc96f17c1 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc9885033 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca764a6e ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5d6271d ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xecb62189 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xedf1e4df ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf2456ddb ip_set_get_extensions EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x676c64df register_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x83e43bb7 unregister_ip_vs_pe -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbefec9a2 ip_vs_conn_out_get_proto -EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdb1ce483 ip_vs_conn_in_get_proto -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5ee5a221 nf_conncount_gc_list -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6e0ea576 nf_conncount_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7527c5d4 nf_conncount_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9a572591 nf_conncount_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9dcb6736 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe8fcff4 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x227eec8a unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9254bf23 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa8f4ee3d ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc6f6b3e2 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x631464b1 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x96d9b3d5 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc70f0e3d nf_conncount_gc_list EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe2073513 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe651bd8a nf_conncount_count EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01c59cec __nf_ct_refresh_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0215d3c1 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0024d371 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x010da330 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02be62e6 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03e593c7 nf_ct_seq_offset EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0460ec0f nf_ct_invert_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06efd696 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05646f2a nf_ct_gre_keymap_destroy EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1825157c nf_ct_get_tuplepr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ccba747 nf_nat_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e3c624f nf_connlabels_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1eb310ce nf_connlabels_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f98c8f9 nf_conntrack_unregister_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2307e9f1 nf_conntrack_alter_reply -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24aa97a5 __nf_ct_change_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2780e866 nf_ct_expect_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x288b338d nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d7a7abb nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x116e512a nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x119dfa72 nf_ct_change_status_common +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1269a0ce nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1622c3fa nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20d6d085 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22a51e14 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24f6a22c nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25a6c8a5 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2753fcef nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2846c1cc nf_connlabels_get EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e0622d6 nf_ct_destroy_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e9da162 nf_conntrack_hash_check_insert -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fad47c2 nf_nat_helper_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x308df98a nf_conntrack_find_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3190647f nf_ct_set_timeout -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x330f6eeb nf_l4proto_log_invalid -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a4c3e8e __nf_ct_change_status -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44ebbf03 nf_connlabels_replace -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46cfe28d nf_ct_bridge_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x479d3338 nf_ct_tmpl_free -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4820fe52 nf_conntrack_helper_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aff1d65 nf_ct_handle_fragments -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eba130c nf_ct_deliver_cached_events -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5594ec2d __nf_ct_try_assign_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x562a9c77 nf_ct_remove_expectations -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x591f5470 nf_conntrack_helper_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b934f93 nf_ct_add_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d9ed877 nf_ct_seqadj_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x640cb650 nf_conntrack_register_notifier -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6498f7d9 nf_ct_iterate_cleanup_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x667ed9c7 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2926c5fd __nf_ct_change_status +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2af7ae82 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d5502c8 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3070335a nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x319797b4 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b46ccee nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b56ff9a nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e4dafdd nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f74ce00 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41e3ab0d nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45bc2fe1 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x485d91ab nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4891d26b nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53309835 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x546c2743 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c942590 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d811583 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60bd69ff nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68818fb8 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 0x6c5dafa1 nf_ct_unexpect_related -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ed0961d nf_ct_expect_init -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f5afe12 nf_ct_tmpl_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7136aa84 nf_conntrack_count -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73ffb124 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a78fbc9 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bbef0bc nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6df42c42 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f86b9b8 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fe3d955 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7095d774 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x727a04fe nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x751164b3 nf_conntrack_alloc EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x752f0aa2 nf_ct_port_nlattr_to_tuple -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77b85171 nf_ct_gre_keymap_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7842e320 nf_ct_change_status_common -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78bf1957 nf_ct_helper_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80d2604b nf_ct_gre_keymap_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b35c348 __nf_conntrack_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ca2f311 __nf_ct_expect_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d1501ec nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b922dda nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85106083 nf_ct_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88d464bb nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89ffbc8c nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a1e3a1c nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a800b60 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8adf47a6 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ceeec34 __nf_ct_change_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x914fbb5e nf_ct_l4proto_find -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9353e993 nf_conn_pernet_ecache -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a1fba28 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90425f08 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x914023be nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93358cc0 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93bd35fa nf_nat_helper_put EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e912d86 nf_conntrack_helpers_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa63df998 nf_ct_get_id -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab5ea879 nf_confirm -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadd38ca9 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bcfcce8 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bef0a3e nf_ct_add_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9df215d6 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa320f43f nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3fa024b nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab08f43d __nf_ct_try_assign_helper EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb12e157d nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb170d5c1 nf_conn_pernet_ecache EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb39356f5 nf_ct_port_nla_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb779169f nf_ct_helper_expectfn_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc05996bd nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb632e8d3 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbde80235 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbea67795 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1148421 nf_nat_helper_unregister EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2580179 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1b84cbc nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3d2a9a5 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3ed72f0 nf_conntrack_helpers_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7710601 nf_ct_ecache_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdff404e nf_conntrack_eventmask_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce696277 nf_ct_port_tuple_to_nlattr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2d3dc95 nf_conntrack_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4094978 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc51e6cf2 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7566cef nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd06ea182 nf_ct_handle_fragments +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd298d820 nf_ct_set_timeout EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd71ff1a5 nf_ct_unlink_expect_report -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd94bae70 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd669c6cd nf_conntrack_helper_register EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcb7367b nf_ct_tcp_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe094d6f6 nf_conntrack_helper_try_module_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1260d82 nf_ct_kill_acct -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe62e874e nf_ct_expect_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6fd8edf nf_ct_bridge_unregister -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7933c3f nf_ct_seqadj_set -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb2c7d00 nf_ct_expect_iterate_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebd95680 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde3c604d nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1a5ea69 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe49abfba __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8561575 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8d327dd nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea63767c nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec524a0b nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec7a5539 nf_conntrack_tuple_taken EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee790bd8 nf_ct_netns_get -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf03ae589 nf_ct_seq_adjust -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf07a945f nf_ct_helper_expectfn_register -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24f420f nf_ct_timeout_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf30af6b6 nf_ct_helper_expectfn_find_by_name -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf351885d nf_ct_skb_network_trim +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee7bc2fd nf_conntrack_free EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf6b9d490 nf_ct_helper_expectfn_find_by_symbol -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa2ac874 nf_ct_helper_log -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa5d54b3 nf_ct_helper -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb6b1734 nf_ct_netns_put -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb98be75 nf_ct_delete -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfce4ad5f nf_ct_acct_add -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe5dd728 nf_ct_expect_iterate_net -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffba0474 nf_ct_seq_offset -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa6d2c53c nf_nat_amanda_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6d9bbb8d nf_conntrack_broadcast_help -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x56a87f66 nf_nat_ftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39ab3598 get_h225_addr -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf671f1e0 nfct_h323_nat_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x1f0b8cb1 nf_nat_irc_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x45b69fe6 nf_nat_pptp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0e3348b9 ct_sip_parse_address_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x51a5e790 ct_sip_parse_header_uri -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x62d636f8 ct_sip_get_sdp_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6f557609 nf_nat_sip_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x75cc6b5f ct_sip_get_header -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa13bea2e ct_sip_parse_numerical_param -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb0e865ff ct_sip_parse_request -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x93a05a5d nf_nat_snmp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf2b1003c nf_nat_tftp_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x53ced983 nf_fwd_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x90436e3b nf_dup_netdev_egress -EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x9aa8e55d nft_fwd_dup_netdev_offload -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x08c3e3cd nf_flow_table_cleanup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0eaf6bfd nf_flow_offload_ip_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x15308eed nf_flow_offload_ipv6_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x30a81f3c nf_flow_table_offload_setup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x31db650e nf_flow_table_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x377a51d0 flow_offload_route_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3812b05e flow_offload_add -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x54aec9cb nf_flow_snat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x58053f59 nf_flow_rule_route_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x68b356a8 flow_offload_free -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa2461180 flow_offload_refresh -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc6376334 nf_flow_table_init -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xda3ca207 flow_offload_teardown -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xde972430 nf_flow_dnat_port -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xeed13089 flow_offload_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf753118d nf_flow_rule_route_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf9ab0409 flow_offload_alloc -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1ad54e1a nf_nat_redirect_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1bfe8255 nf_nat_alloc_null_binding -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1d2024a0 nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8b0b841 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xffe04bd5 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x91101241 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xcfc5a7cd nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xe8d619db nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1071b9af nfct_h323_nat_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x57dada8b get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xbb81d589 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd09b42fe nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x309b680b ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3a716b57 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x49a74b90 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5e93f8a8 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe314829c ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfc9ce0d5 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfff57e39 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x7cf97c44 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5fbb8709 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x4312a992 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x61619a7e nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x809f1e2a nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x145faea4 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1d3dbec8 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x21ef3739 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x29f12386 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3f12d9e4 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4043bc71 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4534b888 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4648a40e nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x51d20777 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x59620ba3 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5dd7411e nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8227f191 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa3c8ce7d nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcad9a668 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xead1b8f2 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xebedff0c flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xef1592a5 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15a8157b nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x24d0e5dd nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2702c1a9 nf_nat_ipv6_register_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x43387b1f nf_nat_inet_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x58dd65d5 nf_nat_inet_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x715b3beb nf_ct_nat_ext_add -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x91a52fee nf_nat_redirect_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9633a76b nf_nat_ipv4_register_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9ceb92d3 nf_nat_ipv4_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9dae2041 nf_nat_masquerade_ipv4 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f8775ef nf_nat_inet_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xab874ba1 nf_nat_packet -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb8e6c557 nf_nat_masquerade_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc8322e9c nf_nat_icmp_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd378f38c nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f6cca0b nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6249954e nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6891a0f6 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa66e7037 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaca757f0 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xacebb50e nf_ct_nat +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xafa08429 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb742493a nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf9215a9 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd501bdea nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd5bc008b nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd78f6f67 nf_nat_inet_fn EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe1d2275e nf_nat_ipv6_unregister_fn -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf5af367f nf_nat_icmpv6_reply_translation -EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfcf6abfe nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdc5a1b93 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdf0ad8b2 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe2e63554 nf_nat_exp_find_port +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1eb875db synproxy_recv_client_ack EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3e3f6785 ipv6_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x54c146e5 synproxy_recv_client_ack -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x61e6cc00 synproxy_send_client_synack_ipv6 -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x87061a35 ipv4_synproxy_hook -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8af9b1ea nf_synproxy_ipv6_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x92b5d8cf synproxy_parse_options -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xba4f1579 nf_synproxy_ipv6_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc7e7158c synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2b9fff3e synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x31f603e4 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6e400133 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8d9e26b2 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x975aeeea nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa7ec4a79 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xba1420a1 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc92b1414 nf_synproxy_ipv4_init EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd4884b14 nf_synproxy_ipv4_init -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe43eef87 nf_synproxy_ipv4_fini -EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf06d139f synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd7797c83 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf99db087 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06f99bc5 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08f31f0b nft_request_module EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a3b6d95 nft_chain_validate_hooks -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a5df984 nft_chain_validate -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0edaf3be nft_register_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1802458c __nft_release_basechain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20dad454 nft_meta_get_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21391af3 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x13850907 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1912abae nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1d2d8f30 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ecda38c nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26b307d1 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2bf71cec nft_meta_inner_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ce805ce nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2de0463d nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f6e78ba nft_register_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32b419fa nft_meta_set_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39c5076d nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x358f6317 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38ee72aa nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x399a0fc9 nft_unregister_expr EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3acacbd6 nft_chain_validate_dependency -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b2237ff nft_meta_get_reduce -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3da4aba1 __nft_reg_track_cancel EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48d8d47b nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x47cbaf52 nft_do_chain EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cecbb60 nft_meta_policy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ecb3c6f nft_unregister_expr -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x659b9eb7 nft_meta_get_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x66865fda nft_register_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6874bed5 nft_dump_register -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x710700e5 nft_data_dump -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x774edd5c nft_set_lookup_global -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b461c0f nf_tables_activate_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7dc41b48 nf_tables_deactivate_flowtable -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f2f5a9f nft_do_chain -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80bd00ca nft_flowtable_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x810cff0a nft_set_catchall_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8464ba7e nft_reg_track_update -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84a62e01 nft_obj_notify -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8571984a nft_meta_get_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8796352f nft_set_elem_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e73a341 nft_request_module -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa63d76a0 nft_register_obj -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa79c4288 nft_meta_set_init -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaaa8b8e0 nft_meta_set_destroy -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad96db35 nft_unregister_chain_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb36c76e8 nf_tables_bind_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf976e37 nft_obj_lookup -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc62e4a72 nf_tables_destroy_set -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc7597924 nft_expr_reduce_bitwise -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf88f500 nft_parse_register_store -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4ce2e8c nft_register_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd560788a nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5043dd35 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6847ff62 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x698bc018 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6fc1f5e7 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78f767bb __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d197bb5 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x81bf0d19 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x834ecda1 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85bb6ca0 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x86969829 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x93fcd96e nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bdb51ac nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9d13e42a nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad8b8352 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb102f3e8 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb182ed99 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2951951 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf44fba1 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd851d99f nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd888a4e1 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd9627720 nft_data_dump EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdebef1c2 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde740528 nft_meta_get_eval EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5d61c94 nft_meta_inner_eval -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6c6fd94 nft_unregister_flowtable_type -EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xec9fe6d1 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe47efc55 nft_unregister_chain_type EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed84fe5b nft_data_release -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0362842b nfnetlink_unicast -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4755aa6c nfnetlink_send -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4ab3ff41 nfnetlink_has_listeners -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x542ca057 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfbb9d896 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd4c28b9 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfda84d98 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0db99c04 nfnetlink_broadcast EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9eef6898 nfnetlink_subsys_unregister -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb29e6442 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6de54936 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8b7f400d nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9db2804c nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa65be8e6 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc5fbc197 nfnetlink_set_err EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfc611f35 nfnetlink_subsys_register -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x55c2d796 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xff3cf7e1 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x10fcbf47 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4c6d82aa nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8c3e155f nfnl_acct_overquota EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xedb2d3b9 nfnl_acct_overquota -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xfc14a8e0 nfnl_acct_find_get -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x010f073f nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0eb4ba0f nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x26f1cb7f nf_osf_match EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers -EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x41175849 nf_osf_find -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x62f32c2a nft_fib_dump -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x82ff7161 nft_fib_reduce -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa3063844 nft_fib_store_result -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xce4f508c nft_fib_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xfcb2e95c nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6aa5fc9b nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x72fcf89d nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7f4867cd nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x81b98202 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe7946cbb nft_fib_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x56cd6f4d nft_reject_init -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x5c052ae6 nft_reject_validate -EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x968a9a8a nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x94ea8090 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9c1ce152 nft_reject_dump EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d46ccf8 nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa0819030 nft_reject_init EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x07a32bb6 xt_compat_match_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e8ac7d0 xt_table_unlock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29fca281 xt_replace_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2cdf0233 xt_compat_target_from_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x55c928ea xt_unregister_table -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x55e7ccdf xt_request_find_target -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5dabee58 xt_compat_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x706437b0 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0f0fd328 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x12f434b7 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x16be3296 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x18d0cfce xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1ab2d32d xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f9fc4b5 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b85265a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c46ef3a xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f16ae79 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6eeb28de xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7451d353 xt_request_find_table_lock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87fb6d63 xt_proto_init -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x89bd0472 xt_request_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c6eaedd xt_target_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9b9e2a30 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8437ac4b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8eceae83 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a1b3ec8 xt_table_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9dea60d5 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa3457522 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa72ddc3a xt_compat_match_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad8b0f39 xt_check_match -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe2a8364 xt_find_table_lock -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbef5393c xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb046da29 xt_compat_match_from_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc571bf76 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc158d1f2 xt_unregister_table EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8f8ade3 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce1a35f4 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcfb5cdb0 xt_target_to_user EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd810d011 xt_register_template EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe4f6bf57 xt_compat_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe8291eaf xt_compat_target_offset -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe835994f xt_proto_fini -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf39db944 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebbd0c59 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebf95867 xt_proto_init EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6abeb06 xt_copy_counters -EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf916754d xt_match_to_user -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x62d0c4ee xt_rateest_lookup -EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe08455d2 xt_rateest_put -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x56113fff nci_spi_allocate_spi -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xaa3bee8e nci_spi_send -EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xed6ad457 nci_spi_read -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x01403d6a nci_uart_register -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0a39e3e4 nci_uart_set_config -EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf49c4e7b nci_uart_unregister -EXPORT_SYMBOL_GPL net/nsh/nsh 0xbd716180 nsh_pop -EXPORT_SYMBOL_GPL net/nsh/nsh 0xce5f20ef nsh_push -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6a1f92cd ovs_vport_ops_unregister -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8033d233 ovs_vport_alloc -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9752c7b9 __ovs_vport_ops_register -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa264795f ovs_netdev_link -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb64ff7ee ovs_netdev_tunnel_destroy -EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbbbb954f ovs_vport_free -EXPORT_SYMBOL_GPL net/psample/psample 0x07062f05 psample_group_put -EXPORT_SYMBOL_GPL net/psample/psample 0x653af3f7 psample_group_get -EXPORT_SYMBOL_GPL net/psample/psample 0xd8602cd8 psample_sample_packet -EXPORT_SYMBOL_GPL net/psample/psample 0xfda6484f psample_group_take -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8b54823b qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x37135b8c xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xde8bc90d xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x48b6d711 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x6eb22f24 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xeb37e147 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x45a5126f nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb079617e nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd54b7bdb nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x6ff8acdf nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x8bb96150 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x09b0daa7 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0b33bacd ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6cfc6196 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa6eeeb76 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xab1a89d7 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf4fd8fd3 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x67694881 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x876d7803 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x8ac73146 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x9dc92fcb psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x79f1f4f6 qrtr_endpoint_post EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xcec73546 qrtr_endpoint_post -EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf2e9a217 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xce0ea9cf qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xe381e585 qrtr_endpoint_unregister EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq -EXPORT_SYMBOL_GPL net/rds/rds 0x0ac2168b rds_inc_put -EXPORT_SYMBOL_GPL net/rds/rds 0x10088e92 rds_inc_init -EXPORT_SYMBOL_GPL net/rds/rds 0x172e6995 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x0958193b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x14dc3cbb rds_trans_register EXPORT_SYMBOL_GPL net/rds/rds 0x20c5e653 rds_cong_map_updated -EXPORT_SYMBOL_GPL net/rds/rds 0x27601fc6 rds_send_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x28971a1c rds_connect_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x290fca78 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x242f4c89 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x251bea93 rds_connect_path_complete EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2ba55efb rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x2c26c1ed rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x33c12a14 rds_send_path_reset EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats -EXPORT_SYMBOL_GPL net/rds/rds 0x3662b25f rds_conn_drop -EXPORT_SYMBOL_GPL net/rds/rds 0x3a1c2cfe rds_message_addref -EXPORT_SYMBOL_GPL net/rds/rds 0x3b41cfc4 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x456df0de rds_conn_create EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp -EXPORT_SYMBOL_GPL net/rds/rds 0x4a4fb2bb rds_message_unmapped -EXPORT_SYMBOL_GPL net/rds/rds 0x4c2e93b6 rds_for_each_conn_info -EXPORT_SYMBOL_GPL net/rds/rds 0x56c8c85b rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x487569b7 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x516f8fdc rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x552182a4 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x552d7c22 rds_rdma_send_complete EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header -EXPORT_SYMBOL_GPL net/rds/rds 0x5f34fdb2 rds_trans_register -EXPORT_SYMBOL_GPL net/rds/rds 0x705e2386 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x6673916d rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x6f59c9e2 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7bf2a17b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x81e2dd10 rds_send_path_drop_acked EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0x89b70059 rds_atomic_send_complete -EXPORT_SYMBOL_GPL net/rds/rds 0x89e07bf6 rds_send_path_drop_acked -EXPORT_SYMBOL_GPL net/rds/rds 0x8df5f3a7 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x89622a3d rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x89d1efb0 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x8ba706cd rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8ca9468e rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x94ca7eea rds_conn_drop EXPORT_SYMBOL_GPL net/rds/rds 0x9dcbbbf0 rds_page_remainder_alloc -EXPORT_SYMBOL_GPL net/rds/rds 0xa9cf8151 rds_info_deregister_func -EXPORT_SYMBOL_GPL net/rds/rds 0xabf0d58e rds_conn_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xad6b5ef9 rds_send_path_reset -EXPORT_SYMBOL_GPL net/rds/rds 0xba853864 rds_send_xmit -EXPORT_SYMBOL_GPL net/rds/rds 0xbd17c413 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xa5b36728 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xacf63977 rds_trans_unregister EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy -EXPORT_SYMBOL_GPL net/rds/rds 0xd5d33e57 rds_recv_incoming -EXPORT_SYMBOL_GPL net/rds/rds 0xd6d71db7 rds_conn_create_outgoing -EXPORT_SYMBOL_GPL net/rds/rds 0xd7c91fec rds_conn_path_connect_if_down -EXPORT_SYMBOL_GPL net/rds/rds 0xe30a6f0d rds_conn_create -EXPORT_SYMBOL_GPL net/rds/rds 0xe71ef87e rds_trans_unregister -EXPORT_SYMBOL_GPL net/rds/rds 0xeab0895e rds_info_register_func -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xae265a59 mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/rds/rds 0xc393e0c8 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd78892f9 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xe17e2ab8 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xedf73047 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf98271f5 rds_message_unmapped +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0x3041a71c mqprio_validate_qopt +EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xb86b970b mqprio_qopt_reconstruct EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xcede419b mqprio_fp_to_offload -EXPORT_SYMBOL_GPL net/sched/sch_mqprio_lib 0xf3fb5e95 mqprio_qopt_reconstruct -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x0a6810e5 pie_process_dequeue -EXPORT_SYMBOL_GPL net/sched/sch_pie 0x22c957aa pie_drop_early EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x7c8adccf pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xd75a8dd5 pie_process_dequeue EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x16f8ba5d taprio_offload_get EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x6a6b1c12 taprio_offload_free -EXPORT_SYMBOL_GPL net/sctp/sctp 0x3229a945 sctp_get_sctp_info -EXPORT_SYMBOL_GPL net/sctp/sctp 0x365401f5 sctp_for_each_endpoint -EXPORT_SYMBOL_GPL net/sctp/sctp 0x61565138 sctp_transport_lookup_process -EXPORT_SYMBOL_GPL net/sctp/sctp 0xdfbb6d81 sctp_transport_traverse_process -EXPORT_SYMBOL_GPL net/smc/smc 0x1c72704c smc_proto -EXPORT_SYMBOL_GPL net/smc/smc 0x69fdc320 smc_hash_sk -EXPORT_SYMBOL_GPL net/smc/smc 0x8a820559 smc_proto6 -EXPORT_SYMBOL_GPL net/smc/smc 0xd3fb3492 smc_unhash_sk -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x04d07e0b svcauth_gss_flavor -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x189bef4d gss_mech_register +EXPORT_SYMBOL_GPL net/sctp/sctp 0x18013643 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2018f5aa sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xac83dda8 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xcaf960a9 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x47a2c464 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x76147733 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xcc128081 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xebb5deb9 smc_proto +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x01418d4b gss_mech_unregister EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x87c93107 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa8abcea3 svcauth_gss_register_pseudoflavor EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header -EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfea1755f gss_mech_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000ad657 bc_svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x021a06fd svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe77b1759 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfbf380dc svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a54483 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01cb226b xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02e9ba0a xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03d7f61f svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e33396 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e169f4 xprt_reconnect_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 0x07058451 rpc_clnt_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0866e6c8 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08753ac9 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b97ba08 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d393fbe auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e38941f svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e89f8a2 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f0ac7c0 svc_fill_symlink_pathname -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fbccb86 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1596ff87 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1628b397 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16790cd1 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1b174b xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b26695c xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bc405f4 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce5b493 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dc5f176 svc_xprt_destroy_all -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e016232 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06f30ec6 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0718f46d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x079cc7c0 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07ba1f1d rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b9b104b cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bd1d592 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cae1eb2 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0de2ee48 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e27f344 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e9fae60 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f135be2 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12166605 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12ade120 xdr_stream_decode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x132185f0 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x137fa0af rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13949ab7 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ba3f0c rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14ae91a6 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x167cc982 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b5f4d1 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1852f0c2 rpc_cancel_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x194181a4 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b39c24 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19eb45c0 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b03cb0e rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c3ddd84 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d169fd8 rpc_restart_call_prepare EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f7735ad xprt_force_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20eb2fc6 xprt_wait_for_reply_request_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x220236a2 rpc_clnt_iterate_for_each_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2373e843 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x238640ea rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x245de0c6 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24a2e714 xprt_reconnect_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x252afa7d svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x264434be rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2657ebab xdr_stream_decode_opaque_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272328b4 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x282fbc01 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2873ade0 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x287ff577 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa61d35 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c814e1 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21c67448 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x243bf2e8 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24416236 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x244bd09f rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2461aaa2 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2859f07d svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x287a704a rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28a1dfb5 xprt_lookup_rqst EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2967bb54 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a09bd7e svc_xprt_deferred_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad6be61 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bcbd772 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c3710cf rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c90f305 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x300c4f0c xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31145f65 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x315f2c84 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2934002a read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dec61a5 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x317c0b8d svc_xprt_close EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3441d8ab xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31c615e1 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32fd59bd rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c8d2e0 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340f8895 sunrpc_cache_unregister_pipefs EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x360ac4b5 cache_seq_next_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x365dcd78 svc_rqst_replace_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x369e1b36 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36a0e592 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36d0535d svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3702b80b xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x374999f8 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37a4f5f0 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38020f44 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38206dc0 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35ddadb7 xdr_process_buf EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38b43a56 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b8543ab sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e4cdedf sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f994d6a xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38eb6044 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2e2014 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ad67d53 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c6745db svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e34bb4d xprt_force_disconnect EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42b9ff17 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f03c80 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x456be14e rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45f9cbea rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47419aeb rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x482af9a7 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49c1c5d3 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x400c5654 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4023cbbc unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41542b09 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4156d26a rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43613a39 rpc_clnt_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44336add svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x459180f2 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46caf5e3 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f8daaf xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48090083 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a91d320 svc_rqst_replace_page EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b4c1d79 svc_age_temp_xprts_now -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7a4ff7 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cb9853e cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b0f0d8b xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba80ab3 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bdfffa6 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c089fd1 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d276065 svc_drop EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dba2588 rpc_d_lookup_sb EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f1c5651 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50d9d877 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51b187fc sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x516dac5b sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5197daf9 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5220dacf rpc_clnt_add_xprt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53ce39a5 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53d5b488 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5367e28b svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5488ddb4 rpc_put_task_async EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549c0738 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x556b084a sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x565ccc54 rpc_clnt_swap_activate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56fa2c5f gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x575197f5 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d25f6f rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x584002a2 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5848c0a9 rpc_max_bc_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a29f476 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c252f5 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55de19c0 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56a2bcbe rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x577a40f4 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x586e63f5 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x588bc02b xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58ed3538 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59176316 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a44d22f xdr_inline_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c722542 sunrpc_cache_unhash -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ecfee0d xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ed0d698 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a71afa2 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ac1633c cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ad002e4 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5baf613c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bc8a08b xdr_set_pagelen +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2772f5 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dd719c5 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e3ea9a7 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eea85b1 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f4343ee cache_destroy_net EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609202f9 rpc_task_gfp_mask -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60e292de rpc_clnt_disconnect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x614df3ed rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61f29b6c sunrpc_cache_pipe_upcall_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6406cabc rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x656be6f6 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6145870b xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61529aab xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x615babae xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61d7a0bc svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x620a4a35 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6238cae5 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63ea56e2 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x667a630d rpc_killall_tasks EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67904ac1 __xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67e25119 xprt_wake_up_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68864424 svc_xprt_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689a5685 rpc_clnt_show_stats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6935a199 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69a976c5 xdr_stream_decode_string_dup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa26cd6 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6db2feaf svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6de4a496 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e5f7a7a rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6746ff60 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67b6f194 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a0df72f svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a375c47 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac8cb38 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ced1275 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d95c0b9 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dda1d82 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e3bf9a0 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f2107bf svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70aa8cd8 xprt_release_rqst_cong EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72614fcb xprt_setup_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73079cc9 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x732b473c xdr_init_encode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73e8e280 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7481bebe rpc_clnt_probe_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7536fe4d xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x759b2726 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ac33ab rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78bed540 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ae9088a svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b33e98d rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c76918d svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d15ea74 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74022d7f _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x744938f2 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7538b286 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75df64b3 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7655b2ac xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b0284f rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77341e7e sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7973a1c6 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a3a7396 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b17bdd2 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bcb684e rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd67603 xdr_stream_move_subsegment EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e194b70 rpc_sleep_on_priority_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e505233 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80f7def3 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x827a5421 svc_generic_init_request -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x829a60c7 xdr_stream_decode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x852c13d6 xprt_destroy_backchannel -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8598f920 xprt_unlock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8790b293 rpc_task_release_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a6c4a01 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8be0c2c4 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce3b353 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d91892b xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e7bac8d rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ef10ca7 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x908a3b89 xprt_unpin_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90bd30d9 xprt_wait_for_reply_request_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93d9bbaf put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x958e43c9 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80da1c59 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813feaf7 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8237422c rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x828d37ad rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x834a4112 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83f5256b svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x844e99c2 xdr_stream_encode_opaque_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x851683fd svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x866399d8 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86bb8f48 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86d2ab7c rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87735e31 rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8849a32b xdr_stream_zero +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e61c9b rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89f7fb16 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8af2548b xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c0e6726 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c225042 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c369cb1 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ccf9e55 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d328513 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d772f8b xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x929d73f6 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x931d5504 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x948e7c94 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94aa6d08 xprt_update_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970fc282 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97282566 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x973885ef rpcauth_unwrap_resp_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98fd8f8d rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9812a181 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x990ea4c6 rpc_call_start EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a117e2c svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b1ade72 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cefd708 xdr_stream_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d07f5a7 rpc_clnt_xprt_switch_remove_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1ce5d4 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e567f9e xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e63350e svc_xprt_close -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e7b4be9 xprt_add_backlog -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0e36cfc svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0fb87df rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa297fb2c cache_seq_stop_rcu -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4109dfb svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa483ec40 xdr_stream_zero -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa778dc84 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa868b39d svc_generic_rpcbind_set -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa884d6a9 xdr_stream_encode_opaque_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab05c0ea xdr_stream_decode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab766fbb sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad63a054 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaeb12df4 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ea07c8 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b2f03b3 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f920575 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3f813f2 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4c9df1d rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa552402d xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa669e6a2 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8726665 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa58fe49 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaabcccb8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaae9ed09 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabfced8e svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac3b08bb write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadf8046a rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaec7cffa xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef5c63a cache_check EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafeeb694 rpc_task_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb10f5251 xprt_request_get_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb11edb11 rpc_clnt_xprt_switch_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3433ae8 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb41f0f4d rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb458840e svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb48fde21 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b517f0 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4c50f88 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4560259 rpc_clnt_xprt_switch_remove_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4ac50fc svcauth_unix_set_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb56f9f5b rpc_prepare_reply_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7a135d4 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba17ff6a svc_rpcbind_set_version -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3bed3f xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc781841 rpc_sleep_on_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc95d81a xprt_lock_connect -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcc534fc rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe2915a6 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb57034de xdr_truncate_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb62860bb svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6793e93 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb754d3ce svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb872df03 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9285a4c rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba0d2a92 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba84bceb rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaf03348 xdr_init_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbafdcf68 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc149b9e svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeb959df rpc_clone_client EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0eb2eab rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc106e61e xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1191fb8 _copy_from_pages EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1d8321b svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2b46b7c svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc423963d rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc84cab63 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8728fb1 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc14f1298 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e92b60 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6c186d6 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc728fb01 rpcauth_lookup_credcache EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb019268 rpc_num_bc_slots -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbe40630 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc5aca8d xdr_reserve_space_vec -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc9b7f40 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb292fa xdr_stream_move_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd6108b8 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd869379 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccbd109a rpc_create EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf3d5903 rpc_set_connect_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf53c0c0 xdr_truncate_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0257588 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd188dfa7 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1afe0a9 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a9179b rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2d2ad47 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49f931e rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad39f99 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd116c66 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf5e9f6c xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf747ac8 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfe515a5 rpc_clnt_manage_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd090b920 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd472fe30 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4d19edd xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5e163b3 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5ec8b91 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd76781e0 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92a4277 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd950f989 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9ddf9fb rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad2ee24 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc1ed590 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc99bc75 xprt_disconnect_done EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddb38f33 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea73741 rpc_clnt_setup_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2b9fa45 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2fd48e6 svc_fill_write_vector -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3c8e0a8 rpc_clnt_test_and_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4ccca43 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe53615cd xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdebd3feb rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe05940f3 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0ca4e1f xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2464590 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3ff9a9e cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe42f8639 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe43f11ca xdr_reserve_space EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5ebd924 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6258d36 rpc_clnt_xprt_switch_add_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe72c8905 xdr_page_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe792b702 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e76294 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8823a8f rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe903fd8e rpc_switch_client_transport EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb3f0721 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec66bd42 rpc_clnt_manage_trunked_xprts -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeca23116 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec308f8c rpc_clnt_probe_trunked_xprts +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec4cf2f5 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed29037d xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed58c441 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed6b76ab rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda6c194 svc_xprt_put EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee9dced8 xdr_stream_decode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee9e39f6 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee68b6b8 xprt_wait_for_reply_request_rtt EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeead888a xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf036e689 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf04fb406 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0adfcbd rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef06e8ba svc_rqst_free EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1c5292f csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1d337c0 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2c30145 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4236349 xprt_reconnect_backoff -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4c6adca rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf662cb54 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf66c4720 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6a0d255 rpc_cancel_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6e7ea11 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf76929b5 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7721a2d rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf78b34d6 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4594fe2 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5fd6bf2 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf63f7bc2 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf71c3bf9 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf741001e rpc_call_sync EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7c866ca rpc_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8137769 xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa863125 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfadd6c76 svc_xprt_received -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbd384dc cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdda3295 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe86d41d rpcauth_unregister -EXPORT_SYMBOL_GPL net/tls/tls 0x54f98a22 tls_offload_tx_resync_request -EXPORT_SYMBOL_GPL net/tls/tls 0x576403bd tls_device_sk_destruct -EXPORT_SYMBOL_GPL net/tls/tls 0x6c846794 tls_validate_xmit_skb -EXPORT_SYMBOL_GPL net/tls/tls 0x7e23b526 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcd10726 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe3585a2 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeaa8f4e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfedde088 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff242718 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff4ef14f svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8e110f rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/tls/tls 0x0303abfe tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x32591554 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x4c7f70b0 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x7120a07d tls_validate_xmit_skb EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x058b53c3 virtio_transport_dgram_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x108a231e virtio_transport_shutdown -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15979efb virtio_transport_deliver_tap_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x16a709f0 virtio_transport_notify_recv_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1f135cd0 virtio_transport_purge_skbs -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20c753da virtio_transport_notify_buffer_size -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2391facf virtio_transport_get_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x277ea91b virtio_transport_seqpacket_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f3c7a8f virtio_transport_notify_recv_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x31ff5887 virtio_transport_do_socket_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b2185fa virtio_transport_release -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3fa4752d virtio_transport_notify_send_pre_block -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x444c09b9 virtio_transport_recv_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ef13e09 virtio_transport_stream_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5464abf4 virtio_transport_stream_has_space -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e93be99 virtio_transport_connect -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63276801 virtio_transport_dgram_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a9ae4c0 virtio_transport_seqpacket_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f5d04ed virtio_transport_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x81089c09 virtio_transport_destruct -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8857ec09 virtio_transport_dgram_bind -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x95e89cbf virtio_transport_seqpacket_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8eba05a virtio_transport_notify_send_pre_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaf7f31cf virtio_transport_notify_send_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb50a35f1 virtio_transport_notify_send_post_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7918d95 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d4f8f77 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x100cc917 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x182e3436 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x183b0439 virtio_transport_purge_skbs +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b9dd3f7 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1dcdc436 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2db3d6e5 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f45eb99 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3033c7e0 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4b53c964 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x623fd3a4 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6d4281b6 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x73c33346 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7462f704 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x751a9519 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7575b1cb virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7750b04e virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7935a137 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7bcbd381 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x87a8d12b virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8ba03076 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8eb4f54c virtio_transport_read_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9738f0b1 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9ba79844 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb817e399 virtio_transport_do_socket_init EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbb34595d virtio_transport_read_skb -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbe13ea5a virtio_transport_stream_rcvhiwat -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1deedde virtio_transport_notify_poll_in -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca86fc18 virtio_transport_notify_recv_post_dequeue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xce4b8c6c virtio_transport_put_credit -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4266d42 virtio_transport_notify_poll_out -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4c8942d virtio_transport_inc_tx_pkt -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe7d95eee virtio_transport_stream_enqueue -EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xecfe8cc8 virtio_transport_stream_is_active -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0721a708 vsock_insert_connected -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x099da3d3 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc2b82c9d virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd23aa833 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5fb8a40 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd62c835f virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9182e87 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe542bb66 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6988dc6 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf1b29245 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfa40aef0 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb268cd4 virtio_transport_seqpacket_dequeue EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10eca98a vsock_connectible_recvmsg -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15f421c8 vsock_remove_sock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e082fd3 vsock_remove_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1ef66b37 vsock_for_each_connected_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x24b23d1c vsock_connectible_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x252513d4 vsock_core_unregister -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x27d9acde vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1540fbd2 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x290e0156 vsock_core_get_transport EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x42959fad vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x49ccfb52 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b4f0902 vsock_data_ready EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x524f73e2 vsock_stream_has_data -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x53a57b48 vsock_remove_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7054d5fc vsock_assign_transport -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7ace74dc vsock_add_pending -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8e474d50 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d608cfb vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x519add46 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5b7d3127 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6f0aa415 vsock_connectible_recvmsg +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x79bb882f vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7a349181 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c4640a1 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f2753b3 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8385cc45 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8b937e54 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d39c89e vsock_insert_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x99aedc5a vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x94104045 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9605caee vsock_create_connected EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6dbde88 vsock_data_ready -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xacc3945d vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9beac592 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c47fb35 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9fec4e5e vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaeaa528a vsock_connectible_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0bd69d6 vsock_add_tap EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb0d7bda7 vsock_addr_cast -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb3e654c5 vsock_find_bound_socket -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbed9c13c vsock_dgram_recvmsg -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3d494c4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb52cf4a1 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc13fcca3 vsock_dgram_recvmsg EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock -EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xda4e27f4 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd412e199 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd8571c74 vsock_stream_has_data EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x093bbe35 cfg80211_pmsr_complete -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1332ed87 cfg80211_vendor_cmd_get_sender -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x359c173f cfg80211_shutdown_all_interfaces -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3bab3cc3 wiphy_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5dedc3a6 cfg80211_wext_siwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ed0a7e7 cfg80211_wext_giwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f9b544b wiphy_delayed_work_cancel -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x70faae57 cfg80211_wext_giwfrag -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x997b0cc2 cfg80211_wext_siwscan -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa3e75d77 cfg80211_wext_giwrange -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xae93fd1e cfg80211_pmsr_report -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaffe445b cfg80211_wext_giwname -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbc60a4e8 cfg80211_wext_giwretry -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc428e1a1 wiphy_delayed_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc838dff9 cfg80211_vendor_cmd_reply -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd31cb419 cfg80211_wext_giwmode -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed3f954b cfg80211_wext_siwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf08943b6 wiphy_work_queue -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf8bde9b4 cfg80211_wext_giwrts -EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfe0bd9e8 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x017f5529 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0aac0bc1 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0c1a3b9d cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1f2e773e cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x210d566c cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x349841c9 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x39c46d9c cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3d4b4586 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4e71469d cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4f214431 wiphy_delayed_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x51f6bf02 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5defa62e cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7f33052a wiphy_work_queue +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x82eb4c22 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa5ecb24a cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaffc21d3 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb4117a5f wiphy_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbf31ea75 wiphy_delayed_work_cancel +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcd5837f3 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfae0eea3 cfg80211_wext_siwscan EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported @@ -19645,748 +19655,748 @@ EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3ff909db ipcomp_output -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x56851b21 ipcomp_input -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8addfca2 ipcomp_init_state -EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd3ba27fc ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x29409aa5 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3f42333e ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x403c885f ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe8786ddc ipcomp_destroy EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0xa294bed8 xfrma_policy -EXPORT_SYMBOL_GPL sound/ac97_bus 0x945e302d snd_ac97_reset -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x56cc3ee2 snd_seq_kernel_client_put +EXPORT_SYMBOL_GPL sound/ac97_bus 0xf254c53c snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x2bb734a1 snd_seq_kernel_client_put +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x5b7a8f7d snd_seq_kernel_client_get EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xadb51cff snd_seq_client_ioctl_unlock -EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xc4fef3d4 snd_seq_kernel_client_get EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xcbf9166f snd_seq_system_broadcast EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xe50413d7 snd_seq_client_ioctl_lock EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0xf0c8f9fa snd_seq_expand_var_event_at -EXPORT_SYMBOL_GPL sound/core/snd 0x057896a8 snd_ctl_sync_vmaster -EXPORT_SYMBOL_GPL sound/core/snd 0x18b89a2b snd_device_disconnect -EXPORT_SYMBOL_GPL sound/core/snd 0x19b1b2f0 snd_card_disconnect_sync -EXPORT_SYMBOL_GPL sound/core/snd 0x26f9b8ef snd_ctl_disconnect_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x276c54f3 snd_ctl_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/core/snd 0x2934795d snd_card_free_on_error -EXPORT_SYMBOL_GPL sound/core/snd 0x2a1c78fb snd_devm_card_new -EXPORT_SYMBOL_GPL sound/core/snd 0x2c057e83 snd_ctl_register_layer -EXPORT_SYMBOL_GPL sound/core/snd 0x3ca14e7c snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x0a25e378 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x0cd01dcc snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x45ef56cd snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x48d4dbf5 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x4e02e20f snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x4e4a2557 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x4e55d64c snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x4f1390a1 snd_ctl_register_layer EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free -EXPORT_SYMBOL_GPL sound/core/snd 0x7309a74f snd_card_add_dev_attr -EXPORT_SYMBOL_GPL sound/core/snd 0x735e8649 snd_device_get_state -EXPORT_SYMBOL_GPL sound/core/snd 0x8378f34c snd_card_rw_proc_new -EXPORT_SYMBOL_GPL sound/core/snd 0x917337d5 snd_ctl_activate_id -EXPORT_SYMBOL_GPL sound/core/snd 0x9e60ed7d snd_card_ref -EXPORT_SYMBOL_GPL sound/core/snd 0xa46bc238 snd_ctl_apply_vmaster_followers -EXPORT_SYMBOL_GPL sound/core/snd 0xa5d46ba4 snd_ctl_get_preferred_subdevice -EXPORT_SYMBOL_GPL sound/core/snd 0xc8cb105f snd_power_ref_and_wait -EXPORT_SYMBOL_GPL sound/core/snd 0xec613cb2 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x7e66281c snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x89e1e638 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x92d0a2d9 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x9f7840a0 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xab823914 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0xd1274ace snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xd1fe3755 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xd43ff7b6 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xd6e7b9ff snd_card_add_dev_attr EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xf936bebb snd_device_get_state EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x682f762b snd_compress_new -EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8d72a453 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x544b0f0d snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x73edb6ce snd_compr_stop_error EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0550c728 snd_pcm_stream_unlock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0878b8bc snd_dma_buffer_sync EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0b47acd1 snd_pcm_lib_default_mmap -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x10282592 snd_pcm_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1eb63496 _snd_pcm_stream_lock_irqsave -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x326c858e snd_pcm_stream_lock -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x43a76372 snd_pcm_hw_constraint_eld -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x53732949 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0bd8312c _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0bfbf8fd snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x12e5dbcf snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3573652e snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x38007184 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x44d1c0c1 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4b686be1 snd_dma_buffer_sync EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6b3e873d snd_pcm_stream_unlock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x88b60412 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x863ef216 snd_pcm_stream_unlock EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x918beef1 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9dd801a8 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa1a32c96 snd_pcm_stream_unlock_irqrestore EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb009abb3 snd_devm_alloc_dir_pages -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbb6e44ba snd_pcm_stream_lock_irq -EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd5ff13f4 snd_pcm_stream_unlock_irqrestore -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x015d7047 snd_hwparams_to_dma_slave_config -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x122f7377 snd_dmaengine_pcm_close -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3fd0e4b2 snd_dmaengine_pcm_refine_runtime_hwparams -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x606a88bb snd_dmaengine_pcm_open -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x75c23d5d snd_dmaengine_pcm_pointer -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7f8b1722 snd_dmaengine_pcm_close_release_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9f376ffc snd_dmaengine_pcm_set_config_from_dai_data -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa11b73cb snd_dmaengine_pcm_request_channel -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd7e8dbcd snd_dmaengine_pcm_open_request_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdb8e3f5b snd_dmaengine_pcm_trigger -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe9d81af3 snd_dmaengine_pcm_get_chan -EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf90deb78 snd_dmaengine_pcm_pointer_no_residue -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x163270b2 snd_rawmidi_free -EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x5cf65684 snd_rawmidi_init -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xa6951d94 __snd_seq_driver_register -EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xb19dc5b2 snd_seq_driver_unregister -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x045a8068 snd_ump_transmit -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x0c78b676 snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb102b0b0 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbd375861 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdc471ef0 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe850b203 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x14013a43 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x58ff1d87 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x72a4624f snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8781c606 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x95bb7276 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xad168834 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xafd2373a snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc37830b3 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xea25a253 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xed80d58e snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf4b7dbd9 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfe6bb46a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x09d9f5bd snd_rawmidi_free +EXPORT_SYMBOL_GPL sound/core/snd-rawmidi 0x7d1f3392 snd_rawmidi_init +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x77ca2c31 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xad78a6b3 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x1e9681f6 snd_ump_block_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x4672ea91 snd_ump_receive_ump_val EXPORT_SYMBOL_GPL sound/core/snd-ump 0x5b39d06f snd_ump_convert_from_ump -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x6ed46252 snd_ump_parse_endpoint -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x81366df0 snd_ump_receive_ump_val -EXPORT_SYMBOL_GPL sound/core/snd-ump 0x9c11d586 snd_ump_endpoint_new -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xb2eb0b26 snd_ump_receive -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xd68c8956 snd_ump_block_new -EXPORT_SYMBOL_GPL sound/core/snd-ump 0xdb74232c snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x753b456e snd_ump_attach_legacy_rawmidi +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x95451386 snd_ump_endpoint_new +EXPORT_SYMBOL_GPL sound/core/snd-ump 0x9a568880 snd_ump_transmit +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xa237d034 snd_ump_switch_protocol +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xb4ceaa58 snd_ump_parse_endpoint +EXPORT_SYMBOL_GPL sound/core/snd-ump 0xc5d7f34a snd_ump_receive EXPORT_SYMBOL_GPL sound/core/snd-ump 0xe3590e5b snd_ump_convert_to_ump -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x082f248e amdtp_domain_stream_pcm_ack -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x134ff789 amdtp_domain_destroy -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1727ab8a amdtp_domain_stream_pcm_pointer -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2c441e96 amdtp_am824_midi_trigger -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2ecaf412 amdtp_am824_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x31522022 amdtp_am824_set_pcm_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x38f6abf7 amdtp_am824_set_parameters -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4b21f639 amdtp_domain_start -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x74874c32 amdtp_domain_init -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb727850c amdtp_am824_add_pcm_hw_constraints -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe18cdfbc amdtp_am824_set_midi_position -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfb3a6d75 amdtp_domain_stop -EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfe8962c5 amdtp_domain_add_stream -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x028e68ab snd_hdac_ext_stream_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x089fa2c4 snd_hdac_ext_stream_release -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0e18906a snd_hdac_ext_bus_exit -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3680754f snd_hdac_ext_stream_decouple_locked -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4194de3a snd_hdac_ext_bus_link_put -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x46354bdd snd_hdac_ext_bus_ppcap_int_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x48ed34a7 snd_hdac_ext_bus_link_power_up_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4f5c462a snd_hdac_ext_cstream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5b784eaf snd_hdac_ext_stream_setup -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x67b75d56 snd_hdac_ext_bus_link_clear_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7655ac04 snd_hdac_ext_stream_reset -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7b7cd67c snd_hdac_ext_bus_link_power_down_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7bcdd887 snd_hda_ext_driver_unregister -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x86fa3876 snd_hdac_ext_bus_get_hlink_by_name -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x93b14cf9 snd_hdac_ext_stream_decouple -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9684ec0f snd_hdac_ext_stream_init_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9b8b7378 snd_hdac_ext_bus_ppcap_enable -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa9187ae6 snd_hdac_ext_bus_device_remove -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb37f9e14 snd_hdac_ext_stream_clear -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb995165e snd_hda_ext_driver_register -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbb307bfa snd_hdac_ext_stream_assign -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc59d1238 snd_hdac_ext_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd17f5657 snd_hdac_ext_bus_link_power_up -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd21d22fe snd_hdac_ext_link_free_all -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdbddadb3 snd_hdac_ext_bus_init -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe4b9aeba snd_hdac_ext_bus_get_hlink_by_addr -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe57e7ffd snd_hdac_ext_bus_get_ml_capabilities -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe5e823a6 snd_hdac_ext_bus_link_power_down -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeb987b17 snd_hdac_ext_stream_start -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfa2596ee snd_hdac_ext_bus_link_set_stream_id -EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfed62fa6 snd_hdac_ext_bus_link_get -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x045c129f snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0ae61f9e amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x308aa478 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x462a58af amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x664b6d22 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x71d710c2 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x79be332d amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x82093c92 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa95df508 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa9b46934 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd8d0f794 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xed1daf14 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf4470a03 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf4de5b8f amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x04369a04 snd_hdac_ext_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x10060b5a snd_hdac_ext_cstream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x10f95396 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x18327fa7 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1a33a75a snd_hdac_ext_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x296ce403 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3355c707 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3361867d snd_hdac_ext_bus_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x36d48cce snd_hdac_ext_bus_get_hlink_by_name +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x42d44259 snd_hdac_ext_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x46241ee7 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x49d31861 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4c0675be snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6b696695 snd_hdac_ext_bus_get_hlink_by_addr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7891004f snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7cdde130 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f33c21c snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x87fe7049 snd_hdac_ext_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ad742a6 snd_hdac_ext_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9ec68c5d snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xad576e86 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaef34dc5 snd_hdac_ext_bus_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc58c4702 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2a19d4f snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd3216c88 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4a5d051 snd_hdac_ext_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd8332890 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd930aecd snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd9ecd886 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf691e9fd snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfa65464d snd_hdac_ext_bus_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x068c9cdc snd_hdac_power_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b544924 _snd_hdac_read_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e63f537 snd_hdac_stream_assign -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x120a2b93 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d4a18b5 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e0a2223 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ed0bb5f snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ff8b39b snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11e33839 snd_hdac_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x135524b7 snd_hdac_bus_stop_chip EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x155aae4c snd_hdac_bus_stop_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19fed732 snd_hdac_acomp_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a32e4c6 snd_hdac_bus_free_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1e72d8cd snd_hdac_stream_drsm_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f9689c0 snd_hdac_stream_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x210b54dc snd_hdac_stream_set_lpib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2666e668 snd_hdac_add_chmap_ctls -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27574b41 snd_hdac_check_power_state -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2871443b snd_hdac_dsp_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b8309cc snd_hdac_stream_set_dpibr -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2dbedfd8 snd_hdac_dsp_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3077b13d snd_hdac_bus_parse_capabilities -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32e47f89 snd_hdac_acomp_register_notifier -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x338e248e snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2237b4ca snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2379b0a5 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x264b2405 snd_hdac_stream_wait_drsm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x276bdacd snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2773db40 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27f32034 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2dadfb94 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ebb1992 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30d4712e snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x365ce5cd snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x379c4a2f snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x394fff85 snd_hdac_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a1eef89 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a2a9e83 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a549735 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b5346ed snd_hdac_get_stream_stripe_ctl EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bee70f0 snd_hdac_get_connections -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dbacef0 snd_hdac_device_unregister -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fdab462 snd_hdac_regmap_add_vendor_verb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4111bb3b snd_hdac_stream_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41d62206 snd_hdac_bus_enter_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46ba0834 snd_hdac_bus_get_response -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47e0c225 snd_hdac_stream_set_params -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49abadeb snd_hdac_setup_channel_mapping -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a346bfd snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c4157cd snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e85aecb snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40760ee0 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x410ab692 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x415e99d9 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41af31af snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48a09d9b snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49569fd0 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b0378ce snd_hdac_stream_release_locked EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cc07e2f snd_hdac_stream_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x513ec5c4 snd_hdac_codec_modalias -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x523a3580 snd_hdac_bus_init_cmd_io -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x529ecd30 snd_hdac_stream_get_spbmaxfifo -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52d69c62 snd_hdac_dsp_prepare -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52d86ec0 snd_hdac_regmap_write_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54ea0ec5 snd_hdac_stop_streams_and_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5875eef7 snd_hdac_stream_cleanup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b359e04 snd_hdac_stream_stop -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ba323e5 snd_hdac_stream_set_spib -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bd17b44 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4feea793 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x505ed845 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51f598f0 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54657e24 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5622a771 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a4a5b72 snd_hdac_codec_link_down EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e7b1e2c snd_hdac_regmap_read_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fd0c41a snd_hdac_codec_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6730d247 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5efe68ce snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60a3dc10 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61c31210 snd_hdac_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64b9ae02 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x654e64c0 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x672304c2 snd_hdac_device_init EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6901b557 snd_hdac_bus_exit_link_reset -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x696f8acd snd_hdac_regmap_sync -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d5fc3b0 snd_hdac_get_stream_stripe_ctl -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7472aea2 snd_hdac_device_register -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74b125e2 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69f3d2b8 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bfc5f41 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c032cd4 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x704530bf snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x778cae85 snd_hdac_get_sub_nodes EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77fa7aea snd_hdac_bus_send_cmd -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ad4e85f snd_hdac_bus_link_power -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b4cf387 snd_hdac_get_sub_nodes -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c7efe56 snd_hdac_power_down_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81257ab0 snd_hdac_query_supported_pcm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8452bfcc snd_hdac_stream_release -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87f173c9 snd_hdac_is_supported_format -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a1399e4 snd_hdac_stream_spbcap_enable -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b7ba697 snd_hdac_stop_streams -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c61e388 snd_hdac_codec_link_down -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8dfe7704 snd_hdac_regmap_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x939e3015 snd_hdac_device_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97752123 snd_hdac_bus_alloc_stream_pages -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a33882f snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b08c39a snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e00c99f snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ecc922f snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81df9909 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84118d7a snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bf4d676 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97fd9afc snd_hdac_bus_enter_link_reset EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b5e7ef8 snd_hdac_stream_sync_trigger -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9be3d254 snd_hdac_stream_setup_periods -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa793ac8e snd_hdac_bus_handle_stream_irq -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8e72ad5 snd_hdac_power_up_pm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabe86900 snd_hdac_stream_release_locked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae4b36d7 snd_hdac_bus_exec_verb_unlocked -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0d8a2bc snd_hdac_bus_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb34fa352 snd_hdac_regmap_update_raw -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd3ca214 snd_hdac_bus_reset_link -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe1446d0 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c1fd307 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2591658 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4e4fcd1 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa5546ac snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaca807ee snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad2ebeac snd_hdac_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb04b5499 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0b7fd14 snd_hdac_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb11b6abd snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4a6b527 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb54d7a16 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb89eff39 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbde8fca snd_hdac_stream_stop EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc040cd87 snd_hdac_read -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4d12a9d snd_hdac_set_codec_wakeup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc57e9c4d snd_hdac_bus_stop_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6a035cb snd_hdac_stream_wait_drsm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6ebd93c snd_hdac_codec_write -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc71831fa snd_hdac_stream_start -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb199144 snd_hdac_bus_init_chip -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd12c5214 snd_hdac_register_chmap_ops -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6b7f403 snd_hdac_stream_setup -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8fb03a5 snd_hdac_device_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc99aa38 snd_hdac_stream_timecounter_init -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddc0ac27 snd_hdac_regmap_exit -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde549e8e snd_hdac_device_set_chip_name -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0088352 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf2a0dad snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc37116b6 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4219369 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc955ea30 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9f2cde3 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc195c3c snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0a72426 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1e1422a snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2fce206 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd497cf8e snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8942c89 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2007746 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4397348 snd_hdac_read_parm_uncached EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5ab81d2 snd_hdac_regmap_update_raw_once -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0ead561 snd_hdac_sync_audio_rate -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1ccb3a5 hdac_get_device_id -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf552085f snd_hdac_codec_link_up -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb65b5c4 snd_hdac_override_parm -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb86436e snd_hdac_bus_update_rirb -EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe4cc6c7 snd_hda_bus_type -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x144aa29d snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe65c09c7 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6af7619 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea326651 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb91760a snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeed6cdc8 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0380edd snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf06d5dc6 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf24e1103 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf96de480 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff7d980e snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfff583b3 snd_hdac_stream_set_lpib EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x940c783a intel_nhlt_init -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x9cbb9569 snd_intel_dsp_driver_probe -EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xfcaea811 intel_nhlt_get_dmic_geo -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2bcbbf4b snd_ak4113_check_rate_and_errors -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8f1cb8fe snd_ak4113_reinit -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x92b912f9 snd_ak4113_external_rate -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc3f1da7b snd_ak4113_reg_write -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf09ec8be snd_ak4113_create -EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf8d9d604 snd_ak4113_build -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0144c8e2 snd_hda_mixer_amp_switch_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0184e9f8 _snd_hda_set_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0501122f snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7f279de8 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x89b530eb snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xb6377546 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xe36f4813 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x21b07cdd snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x63cd2b77 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6f9d7f8d snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7238d58a snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xae844237 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd13164cb snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x023515dc snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05508692 snd_hda_multi_out_dig_prepare 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 0x08168d7f snd_hda_jack_set_button_state -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09192e00 snd_hda_multi_out_dig_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bcc137a snd_hda_jack_tbl_get_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e3afdec snd_hda_spdif_ctls_unassign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fe06a69 __snd_hda_codec_cleanup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1311ca58 azx_init_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13d82d47 snd_hda_jack_add_kctl_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16f95dc9 snd_hda_jack_detect_state_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17879f26 snd_hda_jack_add_kctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1845b671 snd_hda_jack_unsol_event -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x190ea24b azx_bus_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b7d3dea snd_hda_find_mixer_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20d5af84 snd_hda_codec_get_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x237fa6fd snd_hda_codec_device_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25f23515 snd_hda_codec_cleanup_for_unbind -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x260772f3 snd_hda_mixer_amp_switch_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26bcd099 snd_hda_codec_amp_update -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x284cafb8 snd_hda_override_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29ad833a snd_hda_unlock_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c9f2550 snd_hda_codec_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d328ea7 snd_hda_check_amp_list_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x312c11d1 snd_hda_mixer_amp_volume_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3209b1f1 snd_hda_add_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33f9958b snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06c89747 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x092360ab snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09c4047a snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ac9bca2 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ba8cc72 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c697b4d snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1434eb93 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15851eb3 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x177b6ad4 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b9e4a7f __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2016185c snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x242c5940 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x246106a9 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x248080a1 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x270dea01 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29673426 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2970456b snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a3977d3 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a58eea5 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ab8bed3 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cd2d970 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e1b607f snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x328402d4 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35590e31 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x373aa0d4 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x384799c5 snd_hda_codec_load_dsp_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x394c8ef0 snd_hda_spdif_out_of_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bebbfb6 snd_hda_codec_parse_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f50999c snd_hda_load_patch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x416ba82e azx_get_pos_posbuf -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x421373f5 snd_hda_codec_load_dsp_trigger -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45de6989 snd_hda_codec_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x460df55b azx_get_pos_lpib -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4803361b snd_hda_apply_verbs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49788984 snd_hda_detach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49ed7348 snd_hda_codec_pcm_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b8e5cbb snd_hda_jack_poll_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e3d37f9 snd_hda_attach_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e99c995 snd_hda_enable_beep_device -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f95c2ae snd_hda_get_default_vref -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50fa92eb snd_hda_parse_pin_defcfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53f08495 query_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x544076f4 is_jack_detectable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5552164a azx_stop_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x562ad976 snd_hda_jack_detect_enable -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x585b035e snd_hda_mixer_amp_switch_get_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58772f81 snd_hda_multi_out_analog_open -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58a2696c snd_hda_codec_load_dsp_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5984f3b6 snd_hda_multi_out_dig_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a57d22b snd_hda_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d68a5c9 azx_codec_configure -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dcce208 snd_hda_mixer_amp_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67a4f658 snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x689646b2 snd_hda_multi_out_dig_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x689b8157 snd_hda_apply_pincfgs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a0c56b1 snd_hda_get_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a97ab41 snd_hda_codec_set_pin_target -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70b107d6 snd_hda_codec_amp_init_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x715027a2 snd_hda_check_amp_caps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71cd66a5 snd_hda_spdif_ctls_assign -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72279149 snd_hda_get_pin_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73d6bd36 __hda_codec_driver_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7463a2de snd_hda_jack_tbl_get_from_tag -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x757d295a snd_hda_codec_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75d165e7 snd_hda_codec_setup_stream -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a027626 snd_hda_enum_helper_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c7b89fb snd_hda_pick_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f31a6ae azx_probe_codecs -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81926b53 snd_hda_mixer_amp_volume_get -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88d1c7b3 hda_codec_driver_unregister -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b0661fe snd_hda_codec_get_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dd0674d snd_hda_add_new_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9029b5ec snd_hda_codec_register -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x902fb2dd snd_hda_codec_amp_stereo -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93f8772b snd_hda_set_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9608b002 snd_hda_codec_update_widgets -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96b90871 snd_hda_mixer_amp_switch_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x981a0d8a snd_hda_codec_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9855b90b snd_hda_set_vmaster_tlv -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a0de759 snd_hda_codec_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d49d0b1 azx_init_chip -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d5d8441 snd_hda_codec_amp_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dca51a7 snd_hda_codec_eapd_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa327ecca snd_hda_codec_set_name -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3fdb1bb snd_hda_add_vmaster_hook -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa50b61e8 snd_hda_ctl_add -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5ec57ae snd_hda_input_mux_put -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6af7d77 __snd_hda_apply_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6d1d142 snd_hda_mixer_amp_volume_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa88bbd62 snd_hda_add_imux_item -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaaaa086e azx_stop_all_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab55443e snd_hda_get_dev_select -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac3e612a snd_hda_create_spdif_in_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xada75041 snd_hda_set_power_save -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf0a6304 snd_hda_codec_pcm_new -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb32feab9 snd_hda_codec_device_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5ac49bd snd_hda_add_nid -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbb0a09c snd_hda_correct_pin_ctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcfaddf6 snd_hda_mixer_amp_switch_put_beep -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd148443 snd_hda_jack_bind_keymap -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd269220 snd_hda_jack_detect_enable_callback_mst -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd63e2be hda_get_autocfg_input_label -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe5e812e azx_get_position -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0e7b7a8 snd_hda_pick_pin_fixup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1f51381 snd_hda_multi_out_analog_prepare -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4ff1dca snd_hda_create_spdif_share_sw -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc515b750 snd_hda_sequence_write -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc78ec5e7 snd_hda_get_conn_index -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc810412d snd_hda_get_num_devices -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc88cd148 snd_hda_get_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca00cca1 snd_hda_create_dig_out_ctls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcba63218 snd_hda_override_conn_list -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccdedb58 snd_hda_get_connections -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf69f84c azx_free_streams -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1902311 snd_hda_codec_set_pincfg -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd34b04eb snd_hda_jack_report_sync -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd75a4a82 snd_hda_jack_pin_sense -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8e57f37 snd_hda_codec_set_power_to_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde0a70e6 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x396e2f57 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39bb6f04 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ae930e2 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ddb4a8f snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f8de586 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x403c953e snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43102d04 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x478ea483 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a30f2d6 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a354078 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f376a2f snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x528178fc snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d1b91f4 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60855c44 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61a02b41 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61b6cb69 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61cda29c snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65b346b3 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65fbd8f2 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67873b0d snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x682b1917 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69bdaa95 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69e13318 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c580b8b azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6eca527d azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74cb461b snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x755f88fd snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77584473 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77f8b9bb snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7968ebbb snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d9b284d snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8357f045 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x876e349a snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8786573d snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8873b4df snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a3d3e2e snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8da2720f azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ddaa6f4 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ed4dc55 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x913ffacc snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9210b196 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x921976eb snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x928660fe snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92ff8df2 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93f99adb snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95a0b270 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d2166a5 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dd5428d hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e1ee266 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f681542 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f76e3f1 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2f0aed1 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6d56a57 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa723161e snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8ddc3f9 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab3e9dad snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaccd5b4b __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xada25b13 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaee74408 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafa9df24 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaffb6150 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5fae98a snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb615ad3c snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6fa31cf snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8cbfcf0 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb90c12ca snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb9ba47a snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc45d8f1 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc9fc6b6 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe268048 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1e056f7 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc26ec152 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc93ecb05 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcadda066 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbe8ea19 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccbc3a6a snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdb0c3fb snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2356d39 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd23e4fa9 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2919355 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd32c9147 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4955b3f snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd55cc516 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6abadb9 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd99a8cb5 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda1bb60f snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda59cd61 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc3ab3e1 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe00284ae snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe047c454 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0a40d54 snd_hda_parse_pin_defcfg EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe33a333d snd_hda_codec_load_dsp_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe446d4b0 snd_hda_multi_out_dig_close -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe533e234 snd_hda_jack_set_dirty_all -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe575439d snd_hda_multi_out_analog_cleanup -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebd11db9 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe51410ad snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec55ce46 snd_hda_multi_out_dig_cleanup EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1218830 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda5eb76 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef375fc0 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5661d29 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf609ceb5 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6563376 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf87ddc57 snd_hda_multi_out_analog_open EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9e9ef87 snd_hda_shutup_pins -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffa68e4c snd_hda_get_bool_hint -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffdaf076 __snd_hda_add_vmaster -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09cfe23b snd_hda_gen_parse_auto_config -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a92d55e snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa8e8854 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbc10a3e snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2816d183 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2c20a861 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x332fb67a snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x34fc1d3e snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x39f0307a snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f42170b snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a2c76a7 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6aa7edf8 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6d0ed2cc 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 0x7a66bede snd_hda_gen_add_micmute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7db5159a snd_hda_gen_add_mute_led_cdev -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7e32ad69 snd_hda_gen_path_power_filter -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8615e088 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c8e1f3f snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x802dfccf 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 0x8797de01 snd_hda_gen_build_pcms -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8cd79309 snd_hda_gen_build_controls -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9132d06a snd_hda_gen_spec_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x94a2bf17 snd_hda_get_path_from_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x978655eb snd_hda_gen_mic_autoswitch -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x99ce19bd snd_hda_gen_stream_pm -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa0812d04 snd_hda_gen_init -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaa0e6374 snd_hda_add_new_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xae05a934 snd_hda_gen_fix_pin_power -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb1cc4ef7 snd_hda_activate_path -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbbd5312f snd_hda_gen_check_power_status -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6c93c1e snd_hda_get_path_idx -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5401424 snd_hda_gen_add_kctl -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf91bfea3 snd_hda_gen_free -EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfeedc457 snd_hda_gen_line_automute -EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x2bfa28d3 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb508f8ae snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbb3d0602 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbe704362 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbecff49a snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc0c49504 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xca06e685 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcb84d80c snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd25697be snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe032d479 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec922b09 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xf15d90c9 mt6359_accdet_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xee759fd3 adau1372_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x3b872649 adau1761_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x6666599c adau1761_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x025e7cff adau17x1_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1d1e1490 adau17x1_precious_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x257be465 adau17x1_add_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x562ace15 adau17x1_set_micbias_voltage -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x6e2bd0ae adau17x1_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcf1ca6ee adau17x1_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdc5a3d4b adau17x1_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdc948215 adau17x1_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf7ac97b5 adau17x1_add_widgets -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfd895624 adau17x1_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xd349416f adau7118_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x01e2ada3 aw88395_dev_set_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x0c0c2699 aw88395_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1ac8843a aw88395_dev_set_volume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1b70590b aw88395_dev_stop -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x1d427a4e aw88395_dev_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x774a1969 aw88395_dev_mute -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xa761f4f2 aw88395_dev_get_prof_name -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xbbb5c15b aw88395_dev_get_profile_count -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd0df164a aw88395_dev_get_prof_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xe148db4d aw88395_dev_fw_update -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xeb20befa aw88395_dev_start -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xfa99de09 aw88395_dev_get_profile_index -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x99296eee aw88395_dev_load_acf_check -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0xab9c4d17 aw88395_dev_cfg_load -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x91a4cf66 cs35l41_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9bbacaa5 cs35l41_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xc4160cd5 cs35l41_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x34507031 cs35l41_regmap_spi -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x34d9c35f cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x5589d206 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x601cc7e5 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x728c1982 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x162387db adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1adb989a adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2ec77841 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3187102e adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x41f7ad92 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5df2bc7f adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x75e7ce97 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc4f4f40b adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xefcce1ab adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfefe5261 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x47821217 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x3162bc71 aw88395_dev_mute +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x40f9cc0c aw88395_dev_set_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x456c6402 aw88395_dev_get_prof_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x72086f9f aw88395_dev_stop +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x8258886e aw88395_dev_start +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x8dcabb25 aw88395_dev_set_volume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0x93e1e89d aw88395_dev_get_profile_index +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xb366ea9d aw88395_dev_fw_update +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xbabd0241 aw88395_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd2cdf7cf aw88395_dev_get_profile_count +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xd760caff aw88395_dev_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395 0xe67a955d aw88395_dev_get_prof_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x530bde5f aw88395_dev_load_acf_check +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-aw88395-lib 0x61befda6 aw88395_dev_cfg_load +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x79823351 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xbb160f8e cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xf57365dc cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x15b1cc9b cs35l41_regmap_spi EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x389e86c7 cs35l41_safe_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x39b26959 cs35l41_register_errata_patch -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x45e6c70e cs35l41_set_channels -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x49ed0c56 cs35l41_write_fs_errata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6c6d34f9 cs35l41_test_key_unlock -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x820576ee cs35l41_regmap_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc12a02a0 cs35l41_init_boost -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc6c017f8 cs35l41_set_cspl_mbox_cmd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd60731c9 cs35l41_exit_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd9585339 cs35l41_enter_hibernate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdabb6ccd cs35l41_global_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdffbd253 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3c50753f cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x3d3b8142 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x400f4e4b cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x416de7e0 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x46e5fbea cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x658f76e4 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7265c7d5 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x776a2ab6 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x84feb0c6 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa3e4ca44 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdfe573d4 cs35l41_exit_hibernate EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe92ff6ad cs35l41_gpio_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf800112d cs35l41_otp_unpack -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x0a5332fb cs35l56_system_suspend_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x0a87706e cs35l56_system_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x87aa281a cs35l56_system_resume_early -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xa320bdfa cs35l56_system_resume_no_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xe4a886ec cs35l56_system_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xf5ce5518 cs35l56_system_suspend_late -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x02e80e8c cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf1e25330 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfd4321be cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x5e54a49f cs35l56_system_suspend_no_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0x5e80e60a cs35l56_system_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xa1c9c37c cs35l56_system_suspend_late +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xb0af1088 cs35l56_system_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xd3adbe7e cs35l56_system_resume_early +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l56 0xf7272b9e cs35l56_system_resume_no_irq EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x9451fd72 cs4271_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1d087c57 cs42l51_suspend -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x26919e65 cs42l51_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xd3781391 cs42l51_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xdc1afc72 cs42l51_resume -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf8c1c091 cs42l51_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x434d08a3 cs42xx8_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x68cf9b37 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xa1061fc6 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xeba19599 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x490fea33 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x4d5f246c cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x69622512 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x881d6a16 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xacc656f5 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x24e5b21e cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x700f3da1 cs42xx8_regmap_config EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xaf7180ff cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x924721d9 cs42xx8_probe EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x92120b66 es8328_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xeb1b045e es8328_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x38eef7fb snd_soc_hda_codec_dai_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x8415db06 hda_codec_probe_complete -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x8754fe2b soc_hda_ext_bus_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x2379e1a8 lpass_macro_pds_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xa112c0f2 lpass_macro_pds_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xca3d07f8 max98090_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1bf19392 soc_codec_dev_max98373_sdw -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5caa66e5 max98373_slot_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x66e8fc69 max98373_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xf3fe454a soc_codec_dev_max98373 -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3cac7c0f mt6358_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x8230d6cd mt6358_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xea969e0e mt6358_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xed303e1c mt6358_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x19e8dc42 mt6359_mtkaif_calibration_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x351d0789 mt6359_set_mtkaif_calibration_phase -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x43350ff6 mt6359_mtkaif_calibration_disable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x714e9481 mt6359_set_mtkaif_protocol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x5d5da3b5 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xaa33e333 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xf9dcb16f es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x329f6cc6 snd_soc_hda_codec_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0x338a646e hda_codec_probe_complete +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hda-codec 0xd47800c3 soc_hda_ext_bus_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x64df5bed lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xe008dea6 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xaf68b8e5 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x2643879e soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x554a6982 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x5b256c2b max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x81ba32d7 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x37b21deb mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3951c49f mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x42fc9997 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xef6b269e mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7ca5b5aa mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x90f25567 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xb182dbdb mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xca2f86d3 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x38081ca8 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xba81c834 nau8824_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xdfd47729 nau8824_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x984c4d10 nau8825_enable_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2facf7bd pcm1789_common_exit -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x50a38af9 pcm1789_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7223cbb2 pcm1789_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1706f6f6 pcm179x_common_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x571326d1 pcm179x_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x125bc3f8 pcm186x_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x4835955b pcm186x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x251b7adf pcm3168a_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3de38edf pcm3168a_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xb285efc3 pcm3168a_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe145cba6 pcm3168a_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2e56680d pcm512x_pm_ops -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x399530db pcm512x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6b589edf pcm512x_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x77228dcd pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0xfd19f20d nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x3b3622f8 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7e23aac8 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa7a95c4c pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1b06978c pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa019f064 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x5513843d pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xf22fa3d8 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x48a59fca pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x51e05c1e pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9eb5a34d pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xfd9e6ae8 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x083d6a18 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1cec37c4 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3f5f08bb pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x838f0658 pcm512x_regmap EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x5dc92cdf rl6231_pll_calc EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x70617a04 rl6231_get_clk_info 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-rt5514-spi 0x61ff58e3 rt5514_spi_burst_read EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5514-spi 0xff87892f rt5514_spi_burst_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x0dccc725 rt5640_dmic_enable -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5bbe3ea0 rt5640_detect_headset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x744b7732 rt5640_set_ovcd_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8b5b1bb6 rt5640_disable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8f18fee9 rt5640_enable_micbias1_for_ovcd -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xb618f9d4 rt5640_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x22f9fb2a rt5645_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x26ec4f13 rt5645_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x95de6733 rt5659_set_jack_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x8c571f31 rt5663_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xb1ac3c86 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x20330774 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x211bc59c rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2908810f rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7a9d5386 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xda484c47 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xde0ba918 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x094ef4f8 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xbde983f1 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0xf08bd82e rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x134767ea rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x8ff02797 rt5677_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x5fc320ad rt5677_spi_write_firmware EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x67956035 rt5677_spi_write EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xc6695825 rt5677_spi_hotword_detected EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0xe8ece129 rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x01e30809 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x02b81c1c rt5682_apply_patch_list EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0d18594a rt5682_supply_names -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x103e9b68 rt5682_calibrate -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1eec5839 rt5682_parse_dt -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x25aca487 rt5682_register_dai_clks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x323a64d8 rt5682_readable_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x43e994a8 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x167d151f rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2aa4e8f7 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x50a98426 rt5682_register_dai_clks EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5e4fc889 rt5682_volatile_register -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5fa1c856 rt5682_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x67eed97a rt5682_soc_component_dev -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fe67f87 rt5682_apply_patch_list -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa8de2fab rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x63b23ba2 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x653bbbc9 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6d96a458 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6f306e19 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7694d435 rt5682_sel_asrc_clk_src EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xe984acee rt5682_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xdab99a7b rt5682s_sel_asrc_clk_src -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2a3bc110 sigmadsp_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x62fb8628 sigmadsp_restrict_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7c0241b4 sigmadsp_attach -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcd82cd9a sigmadsp_setup -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf9cbe605 devm_sigmadsp_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x3764602e devm_sigmadsp_init_i2c -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x7ea07e2d devm_sigmadsp_init_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x0b35a681 src4xxx_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x4d045443 src4xxx_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x8b21de32 ssm2602_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xd2f0613e ssm2602_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x315e42a0 tasdevice_dev_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x3befc272 tasdevice_digital_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x48f50a98 tasdevice_amp_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x77077f31 tas2781_reset -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x97f3f7fe tasdevice_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x9cce9e90 tasdevice_kzalloc -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x9e9d6f7c tasdevice_dev_update_bits -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x9f1fd71d tasdevice_digital_getvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xaa9fb21f tasdevice_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xaea629d7 tasdevice_dev_bulk_read -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xc558de12 tasdevice_dev_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xcbfa8a0d tascodec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfd4aae1c rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x45a9e2a0 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x358a72d8 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4144882a sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5fbd4fb6 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x69f9ee4b sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbd4f4f40 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x46cf9fe3 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xd3d40991 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0x5b1e055c src4xxx_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-src4xxx 0xfc3f7034 src4xxx_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x25fab78b ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x63c3f30a ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x1016c830 tasdevice_amp_getvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x25353180 tasdevice_dev_bulk_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x25977a82 tasdevice_dev_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x442321bb tas2781_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x630c00da tasdevice_digital_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x6c6c9914 tasdevice_dev_bulk_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x76644220 tasdevice_dev_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0x99bbec95 tasdevice_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xa4d7a974 tasdevice_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xab3be25f tasdevice_dev_update_bits +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xb4e6dd5f tasdevice_amp_putvol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xc7fc15b5 tasdevice_digital_getvol EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xd60d28da tasdevice_dsp_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xe7ff8143 tasdevice_dev_bulk_write -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xec051ff7 tasdevice_amp_putvol -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x47929f7e aic32x4_register_clocks -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x3aa38135 aic3x_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x6dca95e2 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xe3c3dfeb tascodec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tas2781-comlib 0xf53be7a3 tasdevice_kzalloc +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc241091d aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xe6df646f aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xca2a67fb ts3a227e_enable_jack_detect EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x936c1623 wcd_mbhc_event_notify -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5d0566ad wcd938x_sdw_device_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7d018097 wcd938x_sdw_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7d82ff48 wcd938x_sdw_hw_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8456cef7 wcd938x_sdw_set_sdw_stream -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb8336017 wcd938x_swr_get_current_bank -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1bc2681c wm_adsp_early_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x31304f5b wm_adsp_compr_free -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x35f5709e wm_adsp_fw_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3ab00f7c wm_adsp2_set_dspclk -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3ce97e41 wm_halo_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x48d72b8b wm_adsp2_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4be9ec3c wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x08cb8625 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x109805aa wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc4b60516 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc785b996 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xf7293fda wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x12ab5431 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2a9b15d1 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2b8654f0 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2d917da2 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3963dfeb wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3af3f3a6 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3fc6bb26 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3ffab127 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4c83f412 wm_adsp2_component_remove EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5525f1ef wm_adsp_fw_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6374b58e wm_adsp_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x689e778a wm_adsp_compr_copy -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6926566f wm_adsp_read_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7e1376c9 wm_adsp_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x83118c0c wm_adsp2_component_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8393ea59 wm_adsp_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x879a82f2 wm_adsp_write_ctl -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8fac7ea0 wm_adsp2_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x97ef0f8e wm_adsp_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9b1631ce wm_adsp_fw_enum -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9d6a3ad2 wm_adsp2_preloader_put -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9dfbb824 wm_adsp_compr_handle_irq -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb250614d wm_adsp_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xce236968 wm_adsp1_event -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xce994d36 wm_adsp_power_up -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xda931b2f wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5782d985 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5a2372d7 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x773c7bbd wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x78f6f9db wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7ef388b0 wm_adsp_power_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8263d8f1 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8c83bbc7 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x926cb9ea wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc12a9504 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc9091d9d wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd4cb498b wm_adsp_compr_get_caps EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe7b2c624 wm_adsp_event EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf6f1a7f5 wm_adsp2_component_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfdbabba3 wm_adsp2_preloader_get -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x15189900 wm_hubs_hpl_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x193b9b7a wm_hubs_add_analogue_controls -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x25cec283 wm_hubs_set_bias_level -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2cc4faeb wm_hubs_hpr_mux -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x580d91dc wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf2995dbd wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf2bc389b wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf8bdee0d wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfb8329ba wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfc1780ac wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1c9f782e wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2a63f8c4 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x49610c73 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5aee2a31 wm_hubs_handle_analogue_pdata 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 0x6b55f262 wm_hubs_update_class_w 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 0x7a396fcd wm_hubs_vmid_ena -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7a602a4e wm_hubs_handle_analogue_pdata -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf5093846 wm_hubs_add_analogue_routes -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xa0d18e04 wm8731_regmap -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xa4c3ada4 wm8731_init -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x33ccc7ec wm8804_regmap_config -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7ee0024d wm8804_probe -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd18093c0 wm8804_pm -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe35686d6 wm8804_remove -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x076beb42 wm8903_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x0bee3298 wm8962_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x23568bd8 wm8994_mic_detect -EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xc2806f04 wm8958_mic_detect -EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x1549f593 imx_pcm_dma_init -EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x1af9086d fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcf440742 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf69864a9 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf85d78e9 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x6ad108f0 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xed320a37 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x152eb844 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x72e42081 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb75110b2 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xfb0a989a wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x106604f2 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xac0ec081 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x318e2cbc wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xbc46f303 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x9e146b93 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xf47881d9 fsl_asrc_component 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/generic/snd-soc-audio-graph-card 0x54ca0add audio_graph_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x29273503 audio_graph2_link_dpcm -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x373abef9 audio_graph2_parse_of -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x57597623 audio_graph2_link_c2c -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xefe26253 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0xde265032 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x3bad9030 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x83168440 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xa961aa79 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xfd68c760 audio_graph2_link_dpcm EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x00e1d1ff asoc_simple_is_convert_required -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x09ac746b asoc_simple_startup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x135fb464 asoc_simple_canonicalize_cpu -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1c616a94 asoc_simple_parse_tdm_width_map -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ca1b999 asoc_simple_be_hw_params_fixup -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x24db45d7 asoc_simple_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x34be2796 asoc_graph_card_probe -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x39162c8a asoc_simple_canonicalize_platform -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x415a92d2 asoc_graph_parse_dai -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5779e96e asoc_simple_remove -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6caa078e asoc_simple_init_jack -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7b4c858d asoc_simple_init_priv -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7d264a78 asoc_simple_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8a20b8f1 asoc_simple_parse_clk -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8b2f46e4 asoc_simple_init_aux_jacks -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9335722d asoc_simple_dai_init -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9bb2bfaa asoc_simple_parse_convert -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9fb49b54 asoc_graph_is_ports0 -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaa70dac6 asoc_simple_clean_reference -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabe2b14e asoc_simple_parse_widgets -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcdbf16c4 asoc_simple_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe42ce77a asoc_simple_hw_params -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe460bf6c asoc_simple_set_dailink_name -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe6af0481 asoc_simple_parse_routing -EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe92fd7db asoc_simple_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x032a03db mtk_memif_set_rate -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0e945c90 mtk_memif_set_enable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1304a6d0 mtk_sof_dailink_parse_of -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x13e0bb90 mtk_sof_dai_link_fixup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1c7fd6b6 mtk_memif_set_format -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x32f5559d mtk_afe_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3f5dc7e5 mtk_dynamic_irq_acquire -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4e7710a0 clean_card_reference -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6cdbcb46 mtk_sof_card_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6f84de5d mtk_memif_set_rate_substream -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x70f61324 mtk_afe_combine_sub_dai -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7113e153 mtk_afe_fe_prepare -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x73734ae0 mtk_dynamic_irq_release -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x761f0530 mtk_sof_card_late_probe -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7a3cd9b4 mtk_afe_suspend -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x864b4c9f mtk_afe_pcm_new -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8696b2e4 mtk_memif_set_addr -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x885d7f64 mtk_afe_add_sub_dai_control -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8907eaf5 parse_dai_link_info -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x93e9abd0 mtk_afe_fe_shutdown -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xba78267c mtk_afe_fe_hw_params -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbf25243e mtk_afe_fe_ops -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbf3c6cab mtk_afe_fe_startup -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd440afe3 mtk_afe_resume -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd7c4a95f mtk_afe_fe_hw_free -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe145b126 mtk_afe_pcm_platform -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf4d66fb9 mtk_memif_set_disable -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8154052 mtk_memif_set_channel -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf93be25d mtk_memif_set_pbuf_size -EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfcd6669b mtk_afe_fe_trigger -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0xa3048a25 mt8183_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x07291e0a mt8186_mt6366_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x13905df0 mt8186_mt6366_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x158a1878 mt8186_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xafff8455 mt8186_afe_gpio_init -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x3cb789fc mt8188_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0xf5eee5c1 mt8188_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x351e7864 mt8192_dai_i2s_set_share -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xb19d701f mt8195_afe_enable_clk -EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xcc607cfa mt8195_afe_disable_clk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1b089fc5 axg_fifo_pcm_hw_free -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x2c7a1dd1 axg_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3a789d30 g12a_fifo_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3f07871b axg_fifo_pcm_open -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x47fdfd76 axg_fifo_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8f23aa81 axg_fifo_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb5d1f519 axg_fifo_pcm_trigger -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcc47b7e6 axg_fifo_pcm_new -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xfc21437b axg_fifo_pcm_close -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x054de0f0 axg_tdm_formatter_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x0d26e325 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x050e277a asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x07210a70 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x09064d11 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1ac917c1 asoc_simple_init_aux_jacks +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1c9c5a2b asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3837f739 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3b336e23 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4a08b2ae asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x53b5a99c asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5d6ec9a9 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x75696f5b asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x767edbec asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x81f21686 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8252a77b asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8a12883d asoc_graph_parse_dai +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8cf35b14 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa5ff5cc0 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaa8b111e asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xac2bb4a3 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb40a9aba asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd3d6d66d asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xddf878ab asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeb059bfd asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf604a203 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x08512441 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0913dcb1 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x09f38fd3 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1cdc0780 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x252648a8 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x30428275 parse_dai_link_info +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3fc05d9e mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4c0cc386 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4dde8d5c mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x75b63231 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x769aa3e7 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8123172c mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x84fb0537 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x850f0d8b mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x910a48ac mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xace5e45f mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb7038db1 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb733800f mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb8458a61 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbbf57d33 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbe4d8cd1 mtk_sof_dailink_parse_of +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcf5a6db0 mtk_sof_card_late_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd59ea3c6 mtk_sof_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd602a435 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd8e6d5b0 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd9deaa1f mtk_sof_dai_link_fixup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xeb09c550 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf2131768 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf7327820 clean_card_reference +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf8a85970 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8183/snd-soc-mt8183-afe 0x08dcdf2c mt8183_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x0845b22e mt8186_mt6366_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0x9fe095ad mt8186_mt6366_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xbb655110 mt8186_afe_gpio_init +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8186/snd-soc-mt8186-afe 0xbe524d71 mt8186_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0x08020592 mt8188_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8188/snd-soc-mt8188-afe 0xc15b69af mt8188_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x9ec62d6d mt8192_dai_i2s_set_share +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x8528fc71 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xf8d5f094 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x51c82f6a axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x599fe750 axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x75c737b4 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7cd44f9c axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8530e249 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x92eeeb0a axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x933262a8 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd59af653 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf77eb473 axg_fifo_pcm_pointer EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x91371af0 axg_tdm_formatter_event EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x7d4c10a5 axg_tdm_set_tdm_slots -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x20df217e meson_card_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x238f1a2b meson_card_reallocate_links -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x41d7bee2 meson_card_set_fe_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4863de7e meson_card_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4d5cdfeb meson_card_parse_daifmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xdcb4e9d3 meson_card_i2s_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xdd7f5caf meson_card_parse_dai -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xe89d54a9 meson_card_set_be_link -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x05453fd7 meson_codec_glue_input_dai_remove -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x1dcebc90 meson_codec_glue_input_set_fmt -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x470854fd meson_codec_glue_input_hw_params -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x808d03b2 meson_codec_glue_output_startup -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x8e0ccd87 meson_codec_glue_input_dai_probe -EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xe52a9c06 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xfe1fbd3d axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0xfdb67598 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x88532263 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8fd7ea76 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x9555a36f meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x9b693a42 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb33183b3 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xdb8d7cb3 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xeb6987b7 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xedf10733 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x1a9727b1 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x26ec4945 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2b72d6b4 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x562ef704 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xada5bb15 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xceed7fd0 meson_codec_glue_input_get_data EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x29a7ff15 q6adm_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x3e169e5c q6adm_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xe6234840 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x50412933 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb33ec23b q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xf8938526 q6adm_matrix_map EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x10f3aecf q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x41cf028f q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x644fb5e3 q6afe_set_lpass_clock EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae809786 q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xc7a1cf55 q6afe_port_get_from_id EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xd4523c59 q6afe_i2s_port_prepare EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xe45246a8 q6afe_port_start EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xfaf22370 q6afe_tdm_port_prepare @@ -20394,11 +20404,11 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x1b6c77fc q6asm_stream_media_format_block_alac EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x25bfa476 q6asm_open_write EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x2b693eed q6asm_stream_media_format_block_wma_v9 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x44328950 q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x6cec4b17 q6asm_stream_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x799481c9 q6asm_audio_client_alloc EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x856b4fdb q6asm_stream_media_format_block_wma_v10 EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x9d0cf85f q6asm_stream_media_format_block_flac EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xa7d3a3a6 q6asm_media_format_block_multi_ch_pcm @@ -20414,299 +20424,299 @@ EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x6f3341dd q6prm_set_lpass_clock -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7933c3c4 q6prm_vote_lpass_core_hw -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xb27ee5b8 q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x152409fb q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x4ab3f6b1 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x773dead1 q6prm_vote_lpass_core_hw EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0587ea61 q6apm_graph_stop -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x10d15b94 q6apm_graph_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1305dde2 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x03d33b22 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x06ae2659 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x07dde586 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0a45d707 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0da78fbf audioreach_send_u32_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0fc9b9dd q6apm_graph_flush EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x155d354e q6apm_graph_flush -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x193dc88e audioreach_compr_set_param -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1d496915 q6apm_graph_start -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x210087c3 audioreach_shared_memory_send_eos -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2344cd2e audioreach_gain_set_vol_ctrl -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2b1f3b79 q6apm_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1f1366f2 q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2886aa2d q6apm_map_memory_regions EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2fe33fd3 q6apm_is_adsp_ready -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x381bd891 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2fffcf8a q6apm_set_real_module_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3465115c q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3759b4af audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3b940b50 audioreach_shared_memory_send_eos EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x65236e67 audioreach_graph_free_buf -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x71be22f0 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6b2aae63 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6b4509fc q6apm_enable_compress_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x707994ff q6apm_remove_trailing_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7b1ba4ff q6apm_graph_media_format_pcm EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8397f521 audioreach_tplg_init -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x864bb1dd q6apm_unmap_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x95770f67 q6apm_graph_media_format_pcm -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x96b5b7f7 q6apm_write_async -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9de448f8 q6apm_graph_close -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa71e78e2 q6apm_graph_open -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xad411ebd audioreach_set_media_format -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb3eb33d5 audioreach_graph_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbad62067 audioreach_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbe188f30 q6apm_set_real_module_id -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xcd584ac3 audioreach_send_cmd_sync -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdd42ebb7 q6apm_map_memory_regions -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe19ed445 q6apm_remove_trailing_silence -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe5bacb5b q6apm_read -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xef04b118 q6apm_enable_compress_module -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfafa4c73 audioreach_send_u32_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fb7e2f4 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8770c46b q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8f318f72 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbaf87bc3 q6apm_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbc02c8f9 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbcf0fb4c audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc890e148 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd6777309 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdd379239 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf18f2d99 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf7516316 audioreach_compr_set_param +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xff2e47c8 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x11410f61 q6dsp_clock_dev_probe EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x318394f9 q6dsp_audio_ports_of_xlate_dai_name EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x9501f8e4 q6dsp_get_channel_allocation -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xaf18683d q6dsp_audio_ports_set_config -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xdc3a95d8 q6dsp_clock_dev_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xe5227dab q6dsp_audio_ports_of_xlate_dai_name -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xe650569b asoc_qcom_lpass_cdc_dma_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x17b61090 asoc_qcom_lpass_cpu_platform_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x50bfdc45 asoc_qcom_lpass_cpu_dai_probe -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x607cef93 asoc_qcom_lpass_cpu_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x67323bcf asoc_qcom_lpass_cpu_platform_remove -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd766c0cc asoc_qcom_lpass_cpu_platform_shutdown -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xfc859d3e lpass_cpu_pcm_new -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x26c67ab8 asoc_qcom_lpass_hdmi_dai_ops -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xc9ee05b4 asoc_qcom_lpass_platform_register -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x2f4b50bf qcom_snd_wcd_jack_setup -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xd79de486 qcom_snd_parse_of -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x35f1303a qcom_snd_sdw_prepare -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x9b9e71ec qcom_snd_sdw_hw_free -EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xbd163954 qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xa89f0ef2 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x267616c6 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x1d5d9c33 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2c349d01 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6d49e790 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7316aad7 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x9c606602 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xece44d5d asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xbfc21e0a asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x32bc5879 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0x6171646b qcom_snd_parse_of +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-common 0xcc7e88a9 qcom_snd_wcd_jack_setup +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x0fc17558 qcom_snd_sdw_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0x1abc2640 qcom_snd_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-qcom-sdw 0xa1ae348e qcom_snd_sdw_hw_free EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x2ad85b63 snd_soc_acpi_find_machine EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x48c4d20c snd_soc_acpi_codec_list EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x016c21ec snd_soc_dapm_kcontrol_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04021235 snd_soc_component_compr_get_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x041c1081 snd_soc_get_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x072cd478 snd_soc_component_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0956e8a9 snd_soc_dai_set_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09908056 widget_in_list -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a996650 snd_soc_bytes_get -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ca37414 snd_soc_new_compress -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ccd2b76 snd_soc_bytes_info -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e61f52b snd_soc_dai_compr_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f14efe1 snd_soc_component_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe270dd snd_soc_dapm_new_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x139c9615 snd_soc_unregister_component_by_driver -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x142c57b7 snd_soc_link_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15160c87 snd_soc_component_update_bits_async -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1630dd5d snd_soc_remove_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16dc3f4a snd_soc_dapm_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17cada6c snd_soc_find_dai_with_mutex -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19e27059 snd_soc_close_delayed_work -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a4b5631 snd_soc_dapm_free_widget -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a9e2ce9 snd_soc_component_read_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ae0491f snd_soc_jack_add_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bae7166 snd_soc_dpcm_runtime_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e2e1704 snd_soc_of_parse_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e9cb697 snd_soc_of_put_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20c2399c snd_soc_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21707eee snd_soc_dapm_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2193ad60 snd_soc_dapm_info_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21f94d47 snd_soc_find_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22892790 snd_soc_card_jack_new_pins -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x238d1d89 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01040100 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02b72cd1 snd_soc_add_pcm_runtimes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0355eedb snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0464529f snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x058595a5 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05970b49 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05c70286 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06972165 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08ea7611 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ef75a9d snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x101b72fb snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ab41f2 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10be767c snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x120b4eb7 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x148ec16f devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x154a8891 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1629f3d7 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16840bde snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x174e60c0 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1798acf3 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x199e4d5f snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b3635a6 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cbb562e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cfa8f36 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d2e3622 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f3ecd0b snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x230020a6 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23111729 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25105753 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2517b791 snd_soc_component_compr_open EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25ce08ee snd_soc_daifmt_parse_format -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x286bc9ab snd_soc_dai_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28a6f573 null_dailink_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28c50814 snd_soc_dapm_sync -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28ca0c9b snd_soc_get_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28fdac85 dapm_kcontrol_get_value -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dfed090 snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fb50d9f snd_soc_component_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3013e070 snd_soc_put_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x302eb664 snd_soc_dapm_ignore_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30eac84a snd_soc_jack_add_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x311842c3 snd_soc_dapm_kcontrol_dapm -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31a75980 snd_soc_dai_link_set_capabilities -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x325fe453 snd_soc_component_write_field -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32eb4983 snd_soc_bytes_info_ext -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x331775e9 snd_soc_jack_add_gpiods -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x343a9d23 snd_soc_dpcm_can_be_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3481e09e snd_soc_card_remove_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34f741ee snd_soc_get_dai_id -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3527f313 snd_soc_info_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36fb66c6 snd_soc_jack_add_zones -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x370ad21f snd_soc_card_jack_new -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37a727c8 snd_soc_daifmt_parse_clock_provider_raw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x388289a2 snd_soc_component_read -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38c3d8b2 snd_soc_cnew -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39c60ede snd_soc_info_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b35ec8f snd_soc_component_compr_open -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c84850a snd_soc_get_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d714c04 snd_soc_dapm_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e4e6d7e snd_soc_dapm_update_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41785d5e snd_soc_jack_report -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a20f1a snd_soc_dapm_mixer_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43c77f2a snd_soc_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4434c4c6 snd_soc_dai_get_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4585c4a4 snd_soc_component_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45f3920a snd_soc_component_compr_set_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x495d7c9f snd_soc_of_parse_node_prefix -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49c3f09f snd_soc_component_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a29083b snd_soc_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aad07c9 snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b0973dd snd_soc_jack_notifier_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f0b4abf snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27c838f4 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x286a7c91 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28dae5bf snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29c59289 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29f30149 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a5f8528 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b7068ae snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c345f0c snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d767f9a dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2df9f0e6 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e43f4b7 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30a71909 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32668568 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x347f2d76 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34dec7d6 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x367291c5 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39af71b1 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a30021d snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ac2159b snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3afab844 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bc0355e snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40366e1b dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x408c27ee snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41b46f6b snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x420b3173 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42b6a33d snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x472e2da3 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4840b711 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48778697 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49b290cc snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a028d5e snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c043b3e asoc_dummy_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c0a7cb2 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c9a4278 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d045743 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e6b9d7b snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e9f3ad9 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f3119ba snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f6012de snd_soc_dapm_add_routes EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54513eaf snd_soc_dpcm_get_substream -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54b3510b snd_soc_of_parse_audio_simple_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5adb58cd snd_soc_component_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b898a9c devm_snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ceee53b snd_soc_component_compr_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d6eb3f4 snd_soc_of_parse_pin_switches -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e6781aa snd_soc_put_xr_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ed30411 snd_soc_component_update_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6067f0c6 snd_soc_unregister_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63a22840 dapm_regulator_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x640fb6ac dapm_mark_endpoints_dirty -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x656977e3 snd_soc_dpcm_can_be_free_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67195637 snd_soc_put_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x671ba70b snd_soc_dapm_sync_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x685cb728 snd_soc_runtime_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68e2ce0b snd_soc_dai_compr_get_metadata -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a196c70 snd_soc_lookup_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e78aea1 snd_soc_component_force_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f0f9b55 devm_snd_soc_register_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f251bff snd_soc_dapm_new_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f705507 snd_soc_dai_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x707a2361 snd_soc_rtdcom_lookup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72376c6b snd_soc_poweroff -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x741effdd snd_soc_dapm_put_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75a8435f snd_soc_jack_free_gpios -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75feeb53 devm_snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x760919a3 snd_soc_dapm_free -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x760e04f4 snd_soc_dapm_put_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7613d0c2 snd_soc_info_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x762a6dc8 snd_soc_add_card_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77e47a44 snd_soc_component_set_jack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x780d8a00 dapm_pinctrl_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7851b079 snd_soc_component_compr_copy -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79890155 snd_soc_get_pcm_runtime -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79cec667 snd_soc_dai_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7aff5444 snd_soc_dapm_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b55a8b7 snd_soc_dai_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c2649d1 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50a7f267 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5132d1c7 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5374f3af snd_soc_dpcm_can_be_prepared +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53a48f80 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54c2df8f snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x558442c0 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56df1822 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5884ebb4 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58de6886 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5914ec9c snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a0b2c19 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bb07655 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c8b6856 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cc1d1bd snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e23e3b8 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fceace7 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61e41363 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x623bd942 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63e705a0 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65991d06 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6797a8ad dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x689557dc snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68a890f4 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69b66f27 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69fbab44 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bd0ae7a snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bef30a7 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ce299a9 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cf66b3b snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d15e3b5 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e595626 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70361efb snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70adb1ec snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70bafb1c snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74528a35 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x770eba40 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77a98c31 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78618bf5 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b3ee94b snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bc28082 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e346cc5 snd_soc_daifmt_parse_clock_provider_raw EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f52244d snd_soc_put_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x804f3c8c snd_soc_card_add_dai_link -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x831b80d6 snd_soc_dai_compr_ack -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85136504 snd_soc_dpcm_can_be_prepared -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x874d6540 snd_soc_unregister_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8869ea66 snd_soc_get_dai_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x890808dc snd_soc_dapm_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89c90cfb snd_soc_tplg_widget_bind_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dd8ec5f snd_soc_dapm_mux_update_power -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e0c7ea7 snd_soc_dai_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e36bf6e snd_soc_pm_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f40a87d snd_soc_register_dai -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f40adca snd_soc_add_pcm_runtimes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x908fd2ae snd_soc_dapm_init -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90c210a1 snd_soc_component_disable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9104affd snd_soc_set_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91f9a5bc snd_soc_info_volsw_range -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9270b5e4 snd_soc_component_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94886985 snd_soc_set_ac97_ops_of_reset -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x949c07a5 snd_soc_dapm_new_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9533020d snd_soc_dai_active -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95452a1a snd_soc_dai_set_channel_map -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97b541d4 snd_soc_link_compr_shutdown -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97f9c8c5 snd_soc_new_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9be53329 snd_soc_dai_set_tdm_slot -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cf26d7e snd_soc_component_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e649cf5 snd_soc_of_get_slot_mask -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ed218bf dpcm_end_walk_at_be -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f0be7df snd_soc_of_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa05fbf77 snd_soc_of_parse_aux_devs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0a154e6 snd_soc_component_compr_pointer -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa352fd88 snd_soc_debugfs_root -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c5278f snd_soc_component_set_sysclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6895468 snd_soc_limit_volume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab8f8e2e snd_soc_component_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac0a92db snd_soc_dapm_new_dai_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad7277d7 snd_dmaengine_pcm_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaedbeee3 snd_soc_add_component_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb18f3fe1 asoc_dummy_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1a562a0 snd_soc_dai_set_bclk_ratio -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1c0632f snd_soc_jack_get_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb39f6eb6 snd_soc_set_dmi_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb42be948 snd_soc_tplg_component_load -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8148fa5 snd_dmaengine_pcm_register -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb84aae14 snd_soc_dapm_enable_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaaf3d6d snd_soc_card_get_kcontrol -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc4b3dc1 snd_soc_component_exit_regmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd39d495 snd_soc_unregister_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdde1554 snd_soc_dapm_weak_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe2d3e25 snd_soc_lookup_component_nolocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc01c6cda soc_ac97_ops -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc01f6951 snd_soc_tplg_component_remove -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0a98f91 snd_soc_dai_digital_mute -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc164ebae snd_soc_runtime_calc_hw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc29f6a76 snd_soc_dai_compr_get_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2cfe04d snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ea214dc snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f3fb58a snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81850b8a snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82a8135a snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x836eaccb snd_soc_component_notify_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x836f61b8 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85467ce5 snd_soc_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x854c35db snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87c27aaf snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x888ff707 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a6ddbb9 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ac1cf7d snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c025584 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c8513a6 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cc42bea snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d2a5871 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8db57655 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f912b9e snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fea5c7f snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9127d402 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9401493e snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94cc593c snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ce0a73b snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cfab7a9 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d6eeb43 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eda28d0 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ee5e264 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa125ea74 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa188c5d5 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2dcdf84 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2eb19e6 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa44640eb snd_soc_of_get_dlc +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa59de896 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa64e9578 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8c212f6 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8e6259e snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa94bac1 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabce98d5 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabefae21 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacf65e72 snd_soc_get_stream_cpu +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad846332 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad8aa9a7 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae17cee2 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf5746ce snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf5d9959 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb06806b2 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0ed4792 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1449902 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb152c99a snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1eeaa10 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2afd4fe snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb30ee148 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3275d17 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3307b0d snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5da52a9 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb69a749f snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb824d999 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8eb94df snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbac89505 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb04edc4 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe4b52dc snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0cdc1a5 devm_snd_soc_register_component EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5776cde snd_soc_runtime_set_dai_fmt -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc648d621 snd_soc_free_ac97_component -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc810217d snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4565db2 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc466dc28 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4b65b2e snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc59dd266 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7515818 snd_soc_dapm_sync_unlocked EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcaa84857 snd_dmaengine_pcm_prepare_slave_config -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbb62299 snd_soc_of_put_dai_link_codecs -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcce6052b dpcm_be_dai_trigger -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd546413 snd_soc_dapm_dai_free_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfd314b3 snd_soc_component_force_enable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd338aed3 snd_soc_component_initialize -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3cb5596 snd_soc_dapm_force_bias_level -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd518fcb4 snd_soc_component_compr_get_codec_caps -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5f8c1df snd_soc_of_get_dai_link_cpus -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd643e278 snd_soc_bytes_put -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7b86f81 snd_soc_dapm_nc_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd84af523 snd_soc_of_parse_card_name -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd997def6 dapm_clock_event -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb9982ca snd_soc_set_runtime_hwparams -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcea9b56 snd_soc_dapm_get_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd52a2de snd_soc_link_compr_startup -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd6acbd3 snd_soc_dpcm_fe_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdffc8d16 snd_soc_get_stream_cpu -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0aa5574 snd_soc_dapm_dai_get_connected_widgets -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe105c116 snd_soc_suspend -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1302e7c snd_soc_resume -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1a9e918 devm_snd_soc_register_card -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe20071f6 snd_soc_dapm_add_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe212566e snd_soc_component_notify_control -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5b5da59 snd_soc_dapm_get_pin_switch -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe66c2ae7 snd_soc_add_dai_controls -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6a7a09c snd_soc_get_strobe -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe965cf4c snd_soc_dai_action -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea4e4e8b snd_soc_dapm_del_routes -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea8655bc snd_soc_dai_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb13eb7e snd_soc_of_parse_audio_routing -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb4c9e69 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8f0702c snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc986a0ff snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9e238e5 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc626722 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccb91302 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfce4938 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd015b242 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd06c3d9d snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1840d77 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd42eeaa1 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd643e6b0 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd990fe70 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd357756 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdde5ce93 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde548100 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde940f98 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf623edd snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe14e3a26 widget_in_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe18af61b snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1ac3aed dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f804a0 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe255d824 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe25d0b88 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe34851b4 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3fccff2 snd_soc_component_get_jack_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe644ca11 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe716dabd snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b98f92 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe889a621 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe88f49bf snd_soc_get_dai_id EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec2d8f9b snd_soc_component_disable_pin -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec7cfc24 snd_soc_dapm_put_volsw -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecaef433 snd_soc_component_write -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeda7a3f5 snd_soc_dpcm_be_can_update -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef5ab5a1 snd_soc_component_get_jack_type -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef6a9381 snd_soc_jack_notifier_unregister -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef89845d snd_soc_dai_set_pll -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf12460bb snd_soc_dapm_stream_stop -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1f490f7 snd_soc_bytes_tlv_callback -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2008d11 snd_soc_dai_set_tristate -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4bef98f snd_soc_component_compr_set_params -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf57b3655 snd_soc_get_dlc -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf78887b0 snd_soc_dapm_nc_pin_unlocked -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8597152 snd_soc_info_enum_double -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8cfad4b snd_soc_component_test_bits -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf951c75b snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec50aba1 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec8b7c92 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef4c0ab6 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefdf46dd snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf210b45a snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf69583ba snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf839f2f7 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf87b6766 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8dddfa4 snd_soc_of_get_dai_link_codecs EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb450f89 snd_soc_get_volsw_sx -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd26092e snd_soc_dapm_get_pin_status -EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe985df6 snd_soc_component_enable_pin -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x432ba351 snd_sof_dbg_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6c1771d6 snd_sof_dbg_memory_info_init -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x996edfcb snd_sof_debugfs_add_region_item_iomem -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc4da96d2 snd_sof_free_debug -EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd34ce799 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa0398ad dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa452934 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb2b70b6 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd6a94b0 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfeb19e1a snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0e6fb33a snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x215361bd snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x21f60d38 snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa6a2543e snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xf63b1bae snd_sof_debugfs_buf_item EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write @@ -20716,17 +20726,17 @@ EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xb67dbf49 sprd_mcdt_chan_dma_disable EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0xdf547b54 sprd_mcdt_free_chan EXPORT_SYMBOL_GPL sound/soc/sunxi/sun8i-adda-pr-regmap 0x37a3a5c2 sun8i_adda_pr_regmap_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x237764a4 tegra_asoc_machine_init -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x4f1fd77e tegra_asoc_machine_probe -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x1d8014d3 tegra_pcm_construct -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x3a2237f1 tegra_pcm_pointer -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x3c122aab tegra_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4e7910b2 tegra_pcm_open -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x84069b5f tegra_pcm_platform_unregister -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8982fd2b tegra_pcm_platform_register_with_chan_names -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x930ff46e tegra_pcm_close -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9e917013 tegra_pcm_hw_params -EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa0d3182b devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x4646b48a tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xb44d8ab3 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x40c283af tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4b154328 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x641700db devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x644c7361 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x66143eb3 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x9663a7f4 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x991616dc tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe93735a3 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf8d6325b tegra_pcm_platform_register EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x0427e3da 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 @@ -20739,7933 +20749,7923 @@ 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 0xd01de23b tegra30_ahub_allocate_rx_fifo EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0xe549513a tegra30_ahub_unset_rx_cif_source -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x8b0ca046 edma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xfa8767b8 sdma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xd106bd9a udma_pcm_platform_register -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x04fa5737 line6_pcm_release -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0cd12800 line6_read_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x13433eba line6_resume +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x4fc8b8b6 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xc4777abe sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x15c2a56a udma_pcm_platform_register EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2b9764aa line6_version_request_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3193dbb6 line6_init_pcm -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3a7ea02f line6_init_midi -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x54187abb line6_suspend -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6e705e19 line6_send_raw_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b5b23e7 line6_write_data -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8dc9dabf line6_read_serial_number -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9aca883c line6_alloc_sysex_buffer -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc24f2c38 line6_disconnect -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc8af9903 line6_probe -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd536818e line6_send_raw_message_async -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd543128f line6_send_sysex_message -EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe29e528c line6_pcm_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0022bec7 xenbus_register_driver_common -EXPORT_SYMBOL_GPL vmlinux 0x0033778e bgmac_enet_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x59a78870 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x692e2174 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6bb9b699 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6bcc2598 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x72ecfe4f line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x74f960d5 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x79a2bc01 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8a93b227 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9364d48d line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9a2204c0 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb01e6478 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb82233f6 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd0ff690e line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd537213f line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe37b90c7 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe28b7e6 line6_write_data +EXPORT_SYMBOL_GPL vmlinux 0x0005f9d4 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x001ef47d ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x002e1260 devl_rate_leaf_destroy EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x0053d609 of_pm_clk_add_clks EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0058113b vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x005c0b4b mtk_pinconf_bias_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority -EXPORT_SYMBOL_GPL vmlinux 0x0069ea25 iommu_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x006e0b08 extcon_find_edev_by_node -EXPORT_SYMBOL_GPL vmlinux 0x006f1b34 crypto_clone_shash -EXPORT_SYMBOL_GPL vmlinux 0x007961d5 gnttab_unmap_refs -EXPORT_SYMBOL_GPL vmlinux 0x007b2bc6 usb_queue_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x007f29e3 devm_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x00862bef mtk_clk_unregister_gates -EXPORT_SYMBOL_GPL vmlinux 0x008ceee2 crypto_grab_shash -EXPORT_SYMBOL_GPL vmlinux 0x00b62567 devm_clk_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x00bc35d1 virtqueue_get_vring -EXPORT_SYMBOL_GPL vmlinux 0x00bdf51e nf_route -EXPORT_SYMBOL_GPL vmlinux 0x00ccefdd xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x006104c2 net_failover_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00653876 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x0077237e devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x0096e3af shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x00ca1557 device_match_devt EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval -EXPORT_SYMBOL_GPL vmlinux 0x00d6a684 rockchip_pcie_get_phys -EXPORT_SYMBOL_GPL vmlinux 0x00e0836d inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x00d8e63c sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x00d9200a tpm_default_chip EXPORT_SYMBOL_GPL vmlinux 0x00e0c23c destroy_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x00e28232 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x00e7d7b1 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x00ea49b4 fsverity_ioctl_measure EXPORT_SYMBOL_GPL vmlinux 0x00eb52c3 srcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x00f140eb dev_pm_opp_find_level_ceil -EXPORT_SYMBOL_GPL vmlinux 0x00f67199 usb_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x00fa363f raw_v4_match -EXPORT_SYMBOL_GPL vmlinux 0x00fe9a61 max8997_read_reg -EXPORT_SYMBOL_GPL vmlinux 0x0103b84d of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x0104fbb7 regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x01110ce4 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x00edc2ea usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x00f67570 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x010c42a1 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x010dd023 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x011e0649 page_cache_sync_ra EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop -EXPORT_SYMBOL_GPL vmlinux 0x013e12ca device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x012f145d __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0x0133ef2b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0136fcab of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x013948f1 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x014987d8 usb_hcd_amd_remote_wakeup_quirk EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale -EXPORT_SYMBOL_GPL vmlinux 0x014fe6eb nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x015a8498 imx_clk_hw_cpu -EXPORT_SYMBOL_GPL vmlinux 0x016a57c6 devlink_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x017154e7 screen_pos -EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure -EXPORT_SYMBOL_GPL vmlinux 0x017baf13 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x015a9d0d vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x015c05a3 __traceiter_udp_fail_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x015eb202 mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0x0160a5c8 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x016eec4f nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x0174179c fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x017877e5 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x0180abb4 devm_clk_hw_get_clk EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x0188cb91 clk_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x01898bbb handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x019a8514 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x01925fb1 rio_dma_prep_slave_sg EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01a1e359 da903x_write EXPORT_SYMBOL_GPL vmlinux 0x01a20dfe spi_delay_to_ns -EXPORT_SYMBOL_GPL vmlinux 0x01ac6b72 xenbus_probe_devices -EXPORT_SYMBOL_GPL vmlinux 0x01b39445 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x01b3fff7 __traceiter_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x01bea0c0 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x01a96460 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x01ad20e5 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x01b2e94d xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01dc1b65 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x01dfeadf ata_sas_slave_configure EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x01e73570 fwnode_connection_find_match -EXPORT_SYMBOL_GPL vmlinux 0x01f6950f fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x0203c5e7 usb_ep0_reinit -EXPORT_SYMBOL_GPL vmlinux 0x02072cd3 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x01e210d2 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x01ebc6d2 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x01ef470b pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x01f90015 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x0202fc15 open_related_ns EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire -EXPORT_SYMBOL_GPL vmlinux 0x0215ed64 folio_alloc_buffers -EXPORT_SYMBOL_GPL vmlinux 0x022be013 fuse_dev_release -EXPORT_SYMBOL_GPL vmlinux 0x02386ac3 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0219c35d crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x0220c8bc device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x02342655 device_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023f3db0 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x024608dd bsg_register_queue EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region -EXPORT_SYMBOL_GPL vmlinux 0x0260eb16 device_add_groups -EXPORT_SYMBOL_GPL vmlinux 0x027f7ca8 regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x02887efa fscrypt_ioctl_remove_key_all_users -EXPORT_SYMBOL_GPL vmlinux 0x028e1f86 xhci_get_ep_ctx -EXPORT_SYMBOL_GPL vmlinux 0x0296df90 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x029ee663 shash_no_setkey -EXPORT_SYMBOL_GPL vmlinux 0x02abd79a crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x02c3e022 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x024ecb7a regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x02557174 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x02643cc7 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x026bd502 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x0281c545 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x0281e0bd scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x02a16171 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x02a75e0c spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x02b6a349 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x02c24c3b __traceiter_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table -EXPORT_SYMBOL_GPL vmlinux 0x02cf55be mptcp_pm_get_local_addr_max -EXPORT_SYMBOL_GPL vmlinux 0x02d2b635 register_btf_id_dtor_kfuncs -EXPORT_SYMBOL_GPL vmlinux 0x02ec8b7b mtk_pinconf_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x02fa4ca6 pinctrl_generic_get_group_name -EXPORT_SYMBOL_GPL vmlinux 0x030296d6 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x02d6d9c5 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x02f9bc2c pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x02feddd4 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x02ffd2f0 powercap_unregister_zone EXPORT_SYMBOL_GPL vmlinux 0x030cbca2 ata_id_xfermask EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x031844cb to_nvdimm_bus_dev -EXPORT_SYMBOL_GPL vmlinux 0x031d49b1 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x031fc713 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x03134e7a __fsverity_cleanup_inode EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id -EXPORT_SYMBOL_GPL vmlinux 0x03341206 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x032b1c9c security_kernel_post_read_file EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03418145 tps65912_device_init EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list EXPORT_SYMBOL_GPL vmlinux 0x03473884 phy_basic_t1s_p2mp_features -EXPORT_SYMBOL_GPL vmlinux 0x034cd125 clk_register -EXPORT_SYMBOL_GPL vmlinux 0x0350f443 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x0361d19a regulator_set_voltage_rdev -EXPORT_SYMBOL_GPL vmlinux 0x036861d6 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x034ea415 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x035b74f4 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x035c042d power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x035fc5fb bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x036a72b4 phy_led_triggers_register EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function +EXPORT_SYMBOL_GPL vmlinux 0x03724ebc crypto_find_alg EXPORT_SYMBOL_GPL vmlinux 0x0373766a sbitmap_queue_clear -EXPORT_SYMBOL_GPL vmlinux 0x0377a68c ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x0385375e mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x037d4608 mtk_clk_register_plls EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x039688fc __dev_fwnode_const -EXPORT_SYMBOL_GPL vmlinux 0x03bb2c45 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x03b3bf45 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x03bbcbe9 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x03bce729 virtqueue_notify EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x03caab6e tps6586x_irq_get_virq EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present -EXPORT_SYMBOL_GPL vmlinux 0x03d91380 ata_bmdma_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x03dfd761 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x03f6dbce md_bitmap_load -EXPORT_SYMBOL_GPL vmlinux 0x03f88e02 sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x03fa82a5 mmc_send_abort_tuning -EXPORT_SYMBOL_GPL vmlinux 0x04001b3d fixup_user_fault -EXPORT_SYMBOL_GPL vmlinux 0x040064b7 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x03fe4d54 regulator_set_voltage_rdev EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc -EXPORT_SYMBOL_GPL vmlinux 0x0411e35b gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x04059409 md_start +EXPORT_SYMBOL_GPL vmlinux 0x0410d1fd gnttab_unmap_refs_async EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr -EXPORT_SYMBOL_GPL vmlinux 0x041752c7 tcp_plb_update_state -EXPORT_SYMBOL_GPL vmlinux 0x04179985 securityfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x043706a1 tpm_pm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x043a86fc dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL vmlinux 0x043ddadd device_match_devt -EXPORT_SYMBOL_GPL vmlinux 0x045a7fc4 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x045ca4dc inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0418382b device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x042d1607 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x04322c9d mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x044122d3 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0455bcaf wakeup_sources_walk_start EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges -EXPORT_SYMBOL_GPL vmlinux 0x04674613 blk_queue_flag_test_and_set -EXPORT_SYMBOL_GPL vmlinux 0x046b6cc8 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x0467a7eb phylink_create EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04713cef __devm_clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x0484527a dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x047d7b07 fuse_dev_alloc EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk -EXPORT_SYMBOL_GPL vmlinux 0x048dbf8e virtio_max_dma_size -EXPORT_SYMBOL_GPL vmlinux 0x0495ded0 device_add_software_node -EXPORT_SYMBOL_GPL vmlinux 0x0497fdfa nfct_btf_struct_access +EXPORT_SYMBOL_GPL vmlinux 0x0494fa6d usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x049bee99 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x049e29a6 irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access -EXPORT_SYMBOL_GPL vmlinux 0x04b01809 tty_kopen_shared -EXPORT_SYMBOL_GPL vmlinux 0x04b33101 usb_put_hcd -EXPORT_SYMBOL_GPL vmlinux 0x04b67349 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x049ed940 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x04a0e7ef regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x04a22159 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x04ab78b0 au_platform_setup EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose -EXPORT_SYMBOL_GPL vmlinux 0x04cdcaab dm_put -EXPORT_SYMBOL_GPL vmlinux 0x04ce49b9 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x04c9ef1a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x04ccb59b tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x04cd92f3 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x04d9c48d meson8_pmx_ops EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe -EXPORT_SYMBOL_GPL vmlinux 0x04e3ec50 clk_hw_unregister_composite -EXPORT_SYMBOL_GPL vmlinux 0x04e3fd17 clk_hw_unregister_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x04e436d6 rio_map_inb_region -EXPORT_SYMBOL_GPL vmlinux 0x05043112 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x050b6171 pci_disable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x050fbe24 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x051085e3 lock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch -EXPORT_SYMBOL_GPL vmlinux 0x0523ef71 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x051bfcf9 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x052a7df0 debugfs_create_u16 EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x052e44b0 phylink_create +EXPORT_SYMBOL_GPL vmlinux 0x052d5649 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x05365970 pci_epc_put EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0552d1d0 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x0557a5b6 adp5520_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy -EXPORT_SYMBOL_GPL vmlinux 0x0565f8fd mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x05872788 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x056fb187 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x05796fac usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x058421f2 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0586a921 of_cpufreq_cooling_register EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x058b93fb bio_split_rw -EXPORT_SYMBOL_GPL vmlinux 0x058f2046 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x058abf7c md_rdev_clear EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources -EXPORT_SYMBOL_GPL vmlinux 0x05901ae9 vfs_splice_read -EXPORT_SYMBOL_GPL vmlinux 0x0598a430 regulator_get -EXPORT_SYMBOL_GPL vmlinux 0x05aee713 da9052_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x05af3a61 pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x05b34301 of_devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0x05b41862 iopf_queue_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x05c9cb6e netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x05a1f0cd rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x05a56aff pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x05ab1860 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x05b779af genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x05c79d8f hwmon_device_register_with_groups EXPORT_SYMBOL_GPL vmlinux 0x05cd1dd4 vcap_rule_add_key_bit -EXPORT_SYMBOL_GPL vmlinux 0x05d48e56 stmpe_dev_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x05df2221 pci_find_doe_mailbox -EXPORT_SYMBOL_GPL vmlinux 0x05fad41d pm_generic_resume -EXPORT_SYMBOL_GPL vmlinux 0x0608c782 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x05ec496f of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x05feee09 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x06005194 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x060288f0 scmi_device_create +EXPORT_SYMBOL_GPL vmlinux 0x0603c3d9 iort_get_rmr_sids EXPORT_SYMBOL_GPL vmlinux 0x0608f1e3 imx_clk_fracn_gppll_integer +EXPORT_SYMBOL_GPL vmlinux 0x06125d2f sk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x0613518d phylink_mii_c45_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0x0617abda ehci_adjust_port_wakeup_flags -EXPORT_SYMBOL_GPL vmlinux 0x061c4d52 fat_fill_super -EXPORT_SYMBOL_GPL vmlinux 0x061d64ed phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0621c9c4 gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06296ddc rio_dev_get EXPORT_SYMBOL_GPL vmlinux 0x062b89c4 ghes_unregister_report_chain EXPORT_SYMBOL_GPL vmlinux 0x062d117f __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x063094bc pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x0631728f acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x063d9916 tcp_twsk_unique EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x06604cfe device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x066591ed icc_enable -EXPORT_SYMBOL_GPL vmlinux 0x066d653d exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x067572c6 kvm_clear_guest -EXPORT_SYMBOL_GPL vmlinux 0x06775147 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x06977afd devm_gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x0697caf5 mtk_pinconf_bias_disable_set -EXPORT_SYMBOL_GPL vmlinux 0x06a36b9f handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x06a7f79c tpm_get_timeouts -EXPORT_SYMBOL_GPL vmlinux 0x06b147fc mpc8xxx_spi_tx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x06b5adf9 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x065d8f07 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x06654195 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x06676282 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x066eda22 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0679d34f vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x0699873b kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x069f8eee dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x06aa3107 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select -EXPORT_SYMBOL_GPL vmlinux 0x06b9d601 devm_regmap_add_irq_chip_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x06ba8c96 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off -EXPORT_SYMBOL_GPL vmlinux 0x06d19812 devm_usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x06d906e0 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x06d117bf pci_epc_get EXPORT_SYMBOL_GPL vmlinux 0x06e415bc __tracepoint_block_split EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x06ecf835 dax_iomap_fault -EXPORT_SYMBOL_GPL vmlinux 0x06ff89c0 i2c_dw_validate_speed -EXPORT_SYMBOL_GPL vmlinux 0x071dcf92 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x06ea6a29 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x06fac15c stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x070c97ee xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x070e4e91 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x0723a802 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x0723b1f1 edac_device_free_ctl_info EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax -EXPORT_SYMBOL_GPL vmlinux 0x07265f75 genphy_c45_an_disable_aneg -EXPORT_SYMBOL_GPL vmlinux 0x072a5499 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x07306add filemap_read EXPORT_SYMBOL_GPL vmlinux 0x073205e7 vcap_filter_rule_keys -EXPORT_SYMBOL_GPL vmlinux 0x0740e367 device_property_read_u32_array EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback -EXPORT_SYMBOL_GPL vmlinux 0x074d925f usb_debug_root EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x07517d18 of_reconfig_get_state_change EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0x075a6860 devm_led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x075e646e watchdog_notify_pretimeout -EXPORT_SYMBOL_GPL vmlinux 0x0760159b ahci_start_engine EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy -EXPORT_SYMBOL_GPL vmlinux 0x076517de mtk_mux_gate_clr_set_upd_ops -EXPORT_SYMBOL_GPL vmlinux 0x0778fc14 pci_enable_sriov -EXPORT_SYMBOL_GPL vmlinux 0x077eaa1d device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x0784e7b1 clk_hw_rate_is_protected -EXPORT_SYMBOL_GPL vmlinux 0x0787a566 devm_regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0794a84d pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x07694586 vp_modern_set_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0x076989a1 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x076fc146 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x07787405 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x0779fc95 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x077cb129 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x077ce1c9 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0781416a meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x078265a9 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x078a9cf0 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x078c2297 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x07a42b4d tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x07ac5624 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x07ac815f bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x07ae551c nvdimm_bus_check_dimm_count EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x07b6dff7 devm_clk_get_prepared -EXPORT_SYMBOL_GPL vmlinux 0x07b9354b pci_device_is_present EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x07d3e972 devfreq_event_get_edev_count -EXPORT_SYMBOL_GPL vmlinux 0x07dbb3df iort_put_rmr_sids -EXPORT_SYMBOL_GPL vmlinux 0x07e06502 dm_accept_partial_bio -EXPORT_SYMBOL_GPL vmlinux 0x07f5a5bb set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x07f921e1 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x08020052 fsl_mc_bus_dpdmai_type -EXPORT_SYMBOL_GPL vmlinux 0x08047ff7 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x0808ddba tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x07c4f425 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x07cd1ac5 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x07e32038 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x07e462ee ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x07ebffe1 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x0804546e linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x0810f917 xdp_master_redirect EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x081f8582 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x0816e922 thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0x081d29c9 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x081dfdf0 mctrl_gpio_init_noauto EXPORT_SYMBOL_GPL vmlinux 0x08213956 phylink_ethtool_get_wol -EXPORT_SYMBOL_GPL vmlinux 0x08426eb8 of_irq_find_parent -EXPORT_SYMBOL_GPL vmlinux 0x084ccf52 nop_posix_acl_access -EXPORT_SYMBOL_GPL vmlinux 0x084d07fb exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x082d4558 __udp6_lib_lookup EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0x08597ffc anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x085c35bb ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x085da3b0 vcpu_load -EXPORT_SYMBOL_GPL vmlinux 0x08699acf tun_get_socket EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match -EXPORT_SYMBOL_GPL vmlinux 0x08811526 genphy_c45_read_pma -EXPORT_SYMBOL_GPL vmlinux 0x08a3028f ata_noop_qc_prep EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0x08abdd8e seg6_do_srh_inline -EXPORT_SYMBOL_GPL vmlinux 0x08bef406 __netpoll_free -EXPORT_SYMBOL_GPL vmlinux 0x08c626d6 pinconf_generic_parse_dt_config EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x08d9c50f __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x08ca4e33 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x08d5d183 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL vmlinux 0x08dd12cb init_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x08e2b333 cppc_set_auto_sel -EXPORT_SYMBOL_GPL vmlinux 0x08e8ddc3 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x08f9a603 iommu_alloc_resv_region -EXPORT_SYMBOL_GPL vmlinux 0x08fbf3a0 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x0905b6a3 fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x08eae9b2 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x08f4d60b xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x08ffc5c0 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x0901809d wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x090448b4 serial8250_release_dma EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x091e1ca9 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x0918b376 iommu_detach_device_pasid EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092c7cbe cdx_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x0933daf1 smpboot_register_percpu_thread EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str -EXPORT_SYMBOL_GPL vmlinux 0x093b2c74 ata_bmdma_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x0940972a ata_host_activate -EXPORT_SYMBOL_GPL vmlinux 0x09445893 mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x09457399 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x095b38f0 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x09429c56 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x09578850 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x09663881 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x09766a32 devm_free_percpu EXPORT_SYMBOL_GPL vmlinux 0x0976822d sfp_get_module_eeprom_by_page -EXPORT_SYMBOL_GPL vmlinux 0x0979700a i2c_dw_adjust_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0x0984b510 ata_platform_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x098ac7e4 phy_power_on -EXPORT_SYMBOL_GPL vmlinux 0x09992a60 gpiod_get_index_optional -EXPORT_SYMBOL_GPL vmlinux 0x09ab1a02 ahci_platform_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x09aca684 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x09adb27f of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x098bb1cb of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x09933b92 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x0998fef0 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x099dfd49 __pci_hp_initialize EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove -EXPORT_SYMBOL_GPL vmlinux 0x09c68c88 clk_register_composite -EXPORT_SYMBOL_GPL vmlinux 0x09c73b8d ata_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x09c7460c virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x09cd120d device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x09ce2a06 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x09b5f642 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x09b656da blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x09bcd8e3 pci_find_next_ext_capability EXPORT_SYMBOL_GPL vmlinux 0x09d0e6e1 modify_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0x09d3ae09 tps65912_device_init -EXPORT_SYMBOL_GPL vmlinux 0x09e3ce3c devm_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x09e795d8 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x09d8be78 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x09da0308 inet6_compat_ioctl EXPORT_SYMBOL_GPL vmlinux 0x09f46309 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x0a0a51a8 blk_mq_quiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0x0a158ca5 __skb_zcopy_downgrade_managed -EXPORT_SYMBOL_GPL vmlinux 0x0a1a659a platform_irqchip_probe -EXPORT_SYMBOL_GPL vmlinux 0x0a23a12a pm_generic_suspend_noirq -EXPORT_SYMBOL_GPL vmlinux 0x0a243d0d regmap_mmio_detach_clk -EXPORT_SYMBOL_GPL vmlinux 0x0a3bccf1 fat_add_entries -EXPORT_SYMBOL_GPL vmlinux 0x0a445a44 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x0a0e55d3 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x0a134997 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x0a2a6bc9 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x0a2d28a8 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x0a42afd6 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x0a496c78 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a49b696 mctp_unregister_netdev EXPORT_SYMBOL_GPL vmlinux 0x0a4e6e0a nf_hooks_lwtunnel_sysctl_handler -EXPORT_SYMBOL_GPL vmlinux 0x0a504a28 pl08x_filter_id EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap -EXPORT_SYMBOL_GPL vmlinux 0x0a6b4062 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x0a6b9866 devl_trap_policers_register -EXPORT_SYMBOL_GPL vmlinux 0x0a80849d devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0a563c21 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x0a582763 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x0a60c5c0 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a6fe218 ehci_setup EXPORT_SYMBOL_GPL vmlinux 0x0a8162a8 raw_v4_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x0a855c21 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x0a81ef8d device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0a82ebc6 pm_clk_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x0a8894f4 mas_find_range_rev EXPORT_SYMBOL_GPL vmlinux 0x0a8e458b crypto_req_done -EXPORT_SYMBOL_GPL vmlinux 0x0a997e0c rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x0a9718ef trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0a981096 vcap_find_keystream_keysets EXPORT_SYMBOL_GPL vmlinux 0x0a9df53d for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x0ab71040 sk_msg_return_zero EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full -EXPORT_SYMBOL_GPL vmlinux 0x0adce316 ata_std_prereset -EXPORT_SYMBOL_GPL vmlinux 0x0aed3d28 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x0ad6b5b9 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x0ae89b17 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x0ae8d3a3 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x0af40350 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x0af75365 xdp_features_set_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x0b002d9e dev_xdp_prog_count EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x0b285dbc pci_disable_rom EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource -EXPORT_SYMBOL_GPL vmlinux 0x0b383011 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x0b34c68a devl_traps_register EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b476ac6 blkcg_policy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b4883c1 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0b513091 pinctrl_parse_index_with_args EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b57309f irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x0b58a1c9 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x0b5cf3d2 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x0b61b904 fsnotify_destroy_mark EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id EXPORT_SYMBOL_GPL vmlinux 0x0b69e104 pse_ethtool_get_status -EXPORT_SYMBOL_GPL vmlinux 0x0b6ba2ed serial8250_em485_config -EXPORT_SYMBOL_GPL vmlinux 0x0b7c67b1 kstrdup_quotable_cmdline -EXPORT_SYMBOL_GPL vmlinux 0x0b7d2904 i2c_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0b877056 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x0b7b4e65 crypto_unregister_scomps EXPORT_SYMBOL_GPL vmlinux 0x0b8c8a23 static_key_fast_inc_not_disabled -EXPORT_SYMBOL_GPL vmlinux 0x0b8d79f8 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0x0b925fdb pci_epf_unbind EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb96109 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x0bb99f3f iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bbd5f45 devm_regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory -EXPORT_SYMBOL_GPL vmlinux 0x0bc0f0a8 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x0bc66af3 inet6_compat_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x0bf18285 user_update +EXPORT_SYMBOL_GPL vmlinux 0x0bbe9e29 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x0bd56af2 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x0bdf2776 mmput +EXPORT_SYMBOL_GPL vmlinux 0x0be60647 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x0bed5894 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0bf1c4ea usb_enable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x0bf8915c tcf_dev_queue_xmit -EXPORT_SYMBOL_GPL vmlinux 0x0c0d68c6 scmi_protocol_register -EXPORT_SYMBOL_GPL vmlinux 0x0c2396e0 usb_acpi_port_lpm_incapable -EXPORT_SYMBOL_GPL vmlinux 0x0c278a9e meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c021063 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c167060 ping_getfrag EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c2c8fc5 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x0c2fa90c serdev_device_write_room EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index -EXPORT_SYMBOL_GPL vmlinux 0x0c33fafb user_destroy EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x0c68e540 pm_runtime_forbid -EXPORT_SYMBOL_GPL vmlinux 0x0c6eaf31 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x0c76b991 genphy_c45_read_mdix -EXPORT_SYMBOL_GPL vmlinux 0x0c790f00 perf_event_addr_filters_sync -EXPORT_SYMBOL_GPL vmlinux 0x0c7cb568 genphy_c45_pma_baset1_setup_master_slave -EXPORT_SYMBOL_GPL vmlinux 0x0c876920 divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0c46e81f acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x0c4a3b55 folio_alloc_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0c5b8251 vcap_addr_keysets +EXPORT_SYMBOL_GPL vmlinux 0x0c601f4a vp_modern_queue_vector EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string -EXPORT_SYMBOL_GPL vmlinux 0x0c9644b0 ata_sff_thaw -EXPORT_SYMBOL_GPL vmlinux 0x0cb0f92a dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x0cb52757 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cbb6311 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0c9bf7c0 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x0ca64875 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x0cac08c2 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x0cac87c9 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x0cb1409f hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x0cb69ea7 io_uring_cmd_do_in_task_lazy +EXPORT_SYMBOL_GPL vmlinux 0x0cba9e43 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0cc9972b trace_add_event_call EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0x0cca453e dma_can_mmap -EXPORT_SYMBOL_GPL vmlinux 0x0ccd1ace to_of_pinfo EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config -EXPORT_SYMBOL_GPL vmlinux 0x0cd0530b mptcp_diag_fill_info -EXPORT_SYMBOL_GPL vmlinux 0x0ce0a013 priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x0cd53e85 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x0cd588e8 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0cd8d4d7 irq_domain_xlate_onetwocell EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed -EXPORT_SYMBOL_GPL vmlinux 0x0cede199 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x0cfc8b6e elv_rqhash_add -EXPORT_SYMBOL_GPL vmlinux 0x0d09d88e pci_epc_raise_irq -EXPORT_SYMBOL_GPL vmlinux 0x0d1ffcb1 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x0d2b191c tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x0d2e4113 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x0ce44e68 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0cf90007 hid_bpf_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0cfa5a9e iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x0cfbf934 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x0d027fe6 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x0d046acf debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0d053bdb gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x0d0f7275 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x0d363319 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0d38f75d pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x0d39e676 device_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0x0d3fb7d4 phy_interface_num_ports +EXPORT_SYMBOL_GPL vmlinux 0x0d4167b0 ata_sff_port_intr EXPORT_SYMBOL_GPL vmlinux 0x0d435bd5 __tracepoint_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x0d43a70b rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe -EXPORT_SYMBOL_GPL vmlinux 0x0d4668f2 of_pwm_xlate_with_flags EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d505f43 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d4f4c64 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x0d5728af dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x0d5b72b2 uprobe_register EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data -EXPORT_SYMBOL_GPL vmlinux 0x0d6243bd __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x0d640501 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x0d69a288 of_reserved_mem_lookup EXPORT_SYMBOL_GPL vmlinux 0x0d6a49d4 tcp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0d7d0530 spi_mem_dirmap_create -EXPORT_SYMBOL_GPL vmlinux 0x0d966b5c __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x0d9d34db tpm2_flush_context -EXPORT_SYMBOL_GPL vmlinux 0x0da1b7c9 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0dcb1c71 tegra_bpmp_transfer -EXPORT_SYMBOL_GPL vmlinux 0x0dd936b4 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x0d8689b5 vcap_del_rule +EXPORT_SYMBOL_GPL vmlinux 0x0d895776 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x0db99c54 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x0dbbfd2c phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x0dcb18cd edac_mc_alloc EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x0dde2bc0 trace_array_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0x0df055b4 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x0de0a169 clk_hw_get_parent EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels -EXPORT_SYMBOL_GPL vmlinux 0x0e04aa59 __pci_epf_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x0e09a663 usb_set_interface EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x0e126aab xen_dbgp_external_startup EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release -EXPORT_SYMBOL_GPL vmlinux 0x0e1918f8 ata_std_qc_defer -EXPORT_SYMBOL_GPL vmlinux 0x0e3d8d9e icc_provider_deregister -EXPORT_SYMBOL_GPL vmlinux 0x0e43d7ab ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x0e1a3eb4 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x0e270750 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0e3fa6a7 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x0e4a1a55 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x0e4cb2c6 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x0e52dc68 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x0e58d981 ehci_resume EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model -EXPORT_SYMBOL_GPL vmlinux 0x0e5dc098 file_is_kvm -EXPORT_SYMBOL_GPL vmlinux 0x0e67b6b9 platform_bus EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x0e762007 device_match_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x0e79a213 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x0e6d45a8 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x0e75d98d of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x0e78da62 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x0e7f1bf3 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0e9857c2 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ea492ab debugfs_lookup_and_remove EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x0eab092c virtqueue_get_avail_addr -EXPORT_SYMBOL_GPL vmlinux 0x0eba9cbe nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0x0eaf91fe dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x0eb18c26 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x0ebfe176 pci_find_next_ht_capability EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter -EXPORT_SYMBOL_GPL vmlinux 0x0ecaa1a3 tc3589x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x0ecfb19f is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x0eca9292 devm_devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x0ecfea88 btf_type_by_id -EXPORT_SYMBOL_GPL vmlinux 0x0ed10da0 pci_aer_clear_nonfatal_status -EXPORT_SYMBOL_GPL vmlinux 0x0ed5e7e9 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x0ee18c7a regmap_irq_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x0ee8b3be hisi_clk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x0ef3a72d devm_hwspin_lock_request_specific -EXPORT_SYMBOL_GPL vmlinux 0x0ef7188d virtio_device_restore -EXPORT_SYMBOL_GPL vmlinux 0x0f0b473e pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x0f0ed127 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x0f157371 dw_pcie_find_capability -EXPORT_SYMBOL_GPL vmlinux 0x0f170a4b umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x0ed678fe devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0edced8b pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ee5d930 pinctrl_find_gpio_range_from_pin EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page -EXPORT_SYMBOL_GPL vmlinux 0x0f4944af pci_generic_ecam_ops -EXPORT_SYMBOL_GPL vmlinux 0x0f49f575 __mdiobus_modify_changed -EXPORT_SYMBOL_GPL vmlinux 0x0f4ef824 pse_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x0f4f58fe da903x_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x0f68d7af irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x0f736cdf max8997_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x0f789a10 usb_of_has_combined_node -EXPORT_SYMBOL_GPL vmlinux 0x0f793640 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0f193b8b rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0f203d34 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0f2e0a94 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x0f2f283c nf_route +EXPORT_SYMBOL_GPL vmlinux 0x0f3bea51 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x0f43c55c transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x0f4ee9b4 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x0f59fbdd devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0f677abc devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x0f78ee1e fwnode_get_parent EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name -EXPORT_SYMBOL_GPL vmlinux 0x0f7ca79c unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x0f889919 devlink_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x0f8cc531 kvm_vcpu_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x0f96b694 usb_root_hub_lost_power -EXPORT_SYMBOL_GPL vmlinux 0x0fa07ea7 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x0fa866cf iommu_group_add_device -EXPORT_SYMBOL_GPL vmlinux 0x0fb541a1 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f7cbad5 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x0f846707 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x0f85f59f wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0f885d23 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x0f8eb679 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f90087d mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x0f90147f sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0fb001e4 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x0fb3c117 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x0fb608cc da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0fb80dfc clk_register_mux_table EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause -EXPORT_SYMBOL_GPL vmlinux 0x0fbfa31c da9052_request_irq -EXPORT_SYMBOL_GPL vmlinux 0x0fc995b5 __clk_hw_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x0fcff636 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x0fc21755 ip_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x0fce5b86 ata_sas_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0x0fd4c4b2 governor_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x0ff56d92 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x0fe13d5c pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x0fe77a58 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x0ff96b4f raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0fff28f8 acpi_dev_remove_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x10091b7b sbitmap_add_wait_queue EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on -EXPORT_SYMBOL_GPL vmlinux 0x1014b4b6 __devm_pci_epc_create EXPORT_SYMBOL_GPL vmlinux 0x10185973 __tracepoint_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x101f929f tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x10220b64 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x10230dfd serdev_device_set_parity -EXPORT_SYMBOL_GPL vmlinux 0x102d3490 of_address_to_resource -EXPORT_SYMBOL_GPL vmlinux 0x104a74fe l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x101c3b3b mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x10207400 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x102f679b max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x103d3fa4 sata_link_scr_lpm EXPORT_SYMBOL_GPL vmlinux 0x104b2b7d vcap_rule_get_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x104d13e8 find_ge_pid -EXPORT_SYMBOL_GPL vmlinux 0x10603d42 mf_dax_kill_procs -EXPORT_SYMBOL_GPL vmlinux 0x106ebd76 pinctrl_find_gpio_range_from_pin -EXPORT_SYMBOL_GPL vmlinux 0x10735026 crypto_create_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x107b443d mptcp_pm_get_subflows_max -EXPORT_SYMBOL_GPL vmlinux 0x1080ce33 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x104d94c9 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x1059e6dd rz_mtu3_shared_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1072e554 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x1075c01f devm_clk_get_enabled EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf -EXPORT_SYMBOL_GPL vmlinux 0x109b5bbd thermal_zone_get_slope -EXPORT_SYMBOL_GPL vmlinux 0x109f7219 spi_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x10a94b0b get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x10b17eff pci_dev_trylock -EXPORT_SYMBOL_GPL vmlinux 0x10b5d339 meson8_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0x10b7fff6 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x108e71f3 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x10945b09 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x10a30867 mtk_clk_register_dividers +EXPORT_SYMBOL_GPL vmlinux 0x10b36e5e fork_usermode_driver EXPORT_SYMBOL_GPL vmlinux 0x10b89330 crypto_has_shash -EXPORT_SYMBOL_GPL vmlinux 0x10b8f5f1 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x10b92675 mtk_clk_unregister_muxes -EXPORT_SYMBOL_GPL vmlinux 0x10c904eb ata_do_dev_read_id -EXPORT_SYMBOL_GPL vmlinux 0x10cf66df dev_pm_opp_sync_regulators EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init -EXPORT_SYMBOL_GPL vmlinux 0x10da811f gpiod_count -EXPORT_SYMBOL_GPL vmlinux 0x10db0929 skb_send_sock_locked -EXPORT_SYMBOL_GPL vmlinux 0x10dc144d devm_rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x10dda972 dm_submit_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x10e2e10a gpiochip_remove -EXPORT_SYMBOL_GPL vmlinux 0x10e6e5df pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x10eb9e5a mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable -EXPORT_SYMBOL_GPL vmlinux 0x10eced66 sched_set_fifo -EXPORT_SYMBOL_GPL vmlinux 0x10f6fc2d led_trigger_set_default -EXPORT_SYMBOL_GPL vmlinux 0x10f7ec3c generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x10f70a44 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x10f9f2e1 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x10fe35a2 spi_controller_dma_map_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer -EXPORT_SYMBOL_GPL vmlinux 0x110639a5 regmap_can_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x111a68e1 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x112effe9 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x1130c9bb xenbus_dev_resume -EXPORT_SYMBOL_GPL vmlinux 0x11332035 open_related_ns -EXPORT_SYMBOL_GPL vmlinux 0x1150a9e0 of_msi_get_domain -EXPORT_SYMBOL_GPL vmlinux 0x1153ec89 i2c_acpi_find_adapter_by_handle -EXPORT_SYMBOL_GPL vmlinux 0x11556895 tcp_leave_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0x11615385 mtk_register_reset_controller_with_dev -EXPORT_SYMBOL_GPL vmlinux 0x116b078f register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x11874d06 regulator_get_voltage_sel_pickable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x118eb208 ata_sas_port_stop -EXPORT_SYMBOL_GPL vmlinux 0x119019a7 pci_epc_clear_bar -EXPORT_SYMBOL_GPL vmlinux 0x1194d90e spi_new_device -EXPORT_SYMBOL_GPL vmlinux 0x1199e440 spi_bus_lock -EXPORT_SYMBOL_GPL vmlinux 0x119c46a2 ohci_hub_status_data -EXPORT_SYMBOL_GPL vmlinux 0x119e383e thermal_zone_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x11a65158 devlink_port_linecard_set -EXPORT_SYMBOL_GPL vmlinux 0x11a87a61 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x11ac1905 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x110c126d clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1137dc30 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x113bee64 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x11525fc1 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x116bdf83 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x116ce2a9 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x11708f86 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x1176ceb0 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x118b8876 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x119eae53 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x11a081e1 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x11b3423a fuse_dax_cancel_work EXPORT_SYMBOL_GPL vmlinux 0x11b68a56 __tracepoint_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x11c8794d vfs_set_acl -EXPORT_SYMBOL_GPL vmlinux 0x11c9f44c regulator_set_voltage_time_sel -EXPORT_SYMBOL_GPL vmlinux 0x11de0f55 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x11b7398a dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x11c65181 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x11d1ccfb vp_legacy_set_features EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init EXPORT_SYMBOL_GPL vmlinux 0x11e08f96 trace_seq_putmem_hex -EXPORT_SYMBOL_GPL vmlinux 0x11ec473d pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x11f91b39 pm_generic_freeze -EXPORT_SYMBOL_GPL vmlinux 0x12012f10 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x11e60443 vfs_set_acl +EXPORT_SYMBOL_GPL vmlinux 0x11eb84ed ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x11f07375 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x11f6b2fa regulator_register EXPORT_SYMBOL_GPL vmlinux 0x12056e53 mas_store_gfp -EXPORT_SYMBOL_GPL vmlinux 0x121011b6 mtk_pinconf_bias_set -EXPORT_SYMBOL_GPL vmlinux 0x1210958e ahci_platform_enable_clks -EXPORT_SYMBOL_GPL vmlinux 0x12129702 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x12082998 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x120d0381 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x120d6554 led_set_brightness EXPORT_SYMBOL_GPL vmlinux 0x12135396 phylink_mac_change -EXPORT_SYMBOL_GPL vmlinux 0x12185570 pci_ioremap_wc_bar EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x121f8209 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x12202973 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x122f8e27 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1227b515 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x122cc0c4 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x12307601 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x123423d2 regmap_get_raw_write_max EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header -EXPORT_SYMBOL_GPL vmlinux 0x123a34ff sock_map_destroy -EXPORT_SYMBOL_GPL vmlinux 0x123b4754 tpm_tis_resume -EXPORT_SYMBOL_GPL vmlinux 0x1253da25 pm_generic_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x1278d080 fscrypt_d_revalidate -EXPORT_SYMBOL_GPL vmlinux 0x1280da16 regmap_fields_read -EXPORT_SYMBOL_GPL vmlinux 0x12815c1a pm_clk_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x12a7f039 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x12b5dbc5 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x12c64cde blkcg_activate_policy -EXPORT_SYMBOL_GPL vmlinux 0x12c71824 devm_hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x12c85200 nvmem_layout_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12cc022a skb_gso_validate_mac_len -EXPORT_SYMBOL_GPL vmlinux 0x12cd483c regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x12e89090 pci_msix_alloc_irq_at -EXPORT_SYMBOL_GPL vmlinux 0x12e99353 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x1239c0a2 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1243ef2a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x12657496 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x1265a37d regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1279f6ec platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x129bed53 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x129c7045 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x12a1e8ba dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x12a26f83 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x12abe4f1 rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12b6487b gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x12cfb810 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x12d04283 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x12db218b rio_release_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister -EXPORT_SYMBOL_GPL vmlinux 0x12f74a94 bpf_preload_ops -EXPORT_SYMBOL_GPL vmlinux 0x1303e96e __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1301c369 vp_modern_set_features EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness -EXPORT_SYMBOL_GPL vmlinux 0x13101f7d request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x130944f3 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x130d252b xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x1310af2c mtk_clk_unregister_dividers +EXPORT_SYMBOL_GPL vmlinux 0x131342ee usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x13168102 devres_find EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x1328642b dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x132069d4 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x13215067 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x1321dac5 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x1330ae6d kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x1336483d acpi_spi_count_resources EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk -EXPORT_SYMBOL_GPL vmlinux 0x13595fec perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x13492c37 ping_err EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x1366f660 pinctrl_find_gpio_range_from_pin_nolock -EXPORT_SYMBOL_GPL vmlinux 0x136c0fd5 blk_trace_setup -EXPORT_SYMBOL_GPL vmlinux 0x1382445d iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x137eb52f ahci_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e04f5 fat_flush_inodes EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled -EXPORT_SYMBOL_GPL vmlinux 0x138e4336 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x1390c9c7 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x13914207 nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0x1394d032 __mt_destroy -EXPORT_SYMBOL_GPL vmlinux 0x139d5147 pinctrl_select_state -EXPORT_SYMBOL_GPL vmlinux 0x139df43c init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x13a41a45 sata_pmp_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x13a42961 ata_std_sched_eh -EXPORT_SYMBOL_GPL vmlinux 0x13aabb00 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x13979be5 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x13b968f1 fsl_mc_obj_reset EXPORT_SYMBOL_GPL vmlinux 0x13b9e193 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x13babd9f sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x13bf1d5b nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x13c184b4 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x13c444f9 ip6_dst_lookup EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr -EXPORT_SYMBOL_GPL vmlinux 0x13e8840d usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x13eab612 battery_hook_register EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x13f579f4 devfreq_event_get_event -EXPORT_SYMBOL_GPL vmlinux 0x13f77bd3 devlink_trap_groups_register EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fd9f7a uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x1401058a regulator_set_current_limit EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x14072407 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x141b1af0 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x140a874f fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x14126fbc platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x141a2436 da9052_request_irq EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x14300b13 ahci_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x143dd034 irq_domain_push_irq -EXPORT_SYMBOL_GPL vmlinux 0x1445010d iommu_detach_group -EXPORT_SYMBOL_GPL vmlinux 0x144d7820 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x142dd7e3 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x14355998 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x1437a3be fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x144820fb fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x14530600 put_device EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free -EXPORT_SYMBOL_GPL vmlinux 0x14584d72 xen_unmap_domain_gfn_range -EXPORT_SYMBOL_GPL vmlinux 0x145c2050 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x145c47b4 pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0x14607423 fwnode_graph_get_remote_port -EXPORT_SYMBOL_GPL vmlinux 0x1460fdf1 bdi_dev_name -EXPORT_SYMBOL_GPL vmlinux 0x14656abf serdev_device_write_wakeup EXPORT_SYMBOL_GPL vmlinux 0x146626a0 mas_find_rev EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146d8385 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x14744d6d pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x14793e10 fscrypt_dio_supported EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe -EXPORT_SYMBOL_GPL vmlinux 0x1492c79f ata_port_wait_eh -EXPORT_SYMBOL_GPL vmlinux 0x14b0bbaf genphy_c45_pma_resume -EXPORT_SYMBOL_GPL vmlinux 0x14baa1f1 dev_pm_opp_remove_all_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x14c01a42 ata_sff_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x14c9bc86 of_clk_get_parent_count -EXPORT_SYMBOL_GPL vmlinux 0x14dfe15d dm_audit_log_bio -EXPORT_SYMBOL_GPL vmlinux 0x14e17634 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x14995d72 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x14a5b035 cdx_device_add +EXPORT_SYMBOL_GPL vmlinux 0x14a83c8f mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x14b6de46 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x14c4724f i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x14d32a3a __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x14dd6e12 __folio_lock_killable EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put -EXPORT_SYMBOL_GPL vmlinux 0x14f762c1 pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0x14fbcd5e __tracepoint_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x14ff21e7 device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node -EXPORT_SYMBOL_GPL vmlinux 0x15030a8e skcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x1504dd8b ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x15067423 serial8250_em485_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1515e158 tpm_send -EXPORT_SYMBOL_GPL vmlinux 0x151ac864 ata_sff_wait_after_reset -EXPORT_SYMBOL_GPL vmlinux 0x153b00ab mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x1505a6e1 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x151703eb input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x152afc96 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x15330c74 spi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del EXPORT_SYMBOL_GPL vmlinux 0x15402377 ftrace_set_filter -EXPORT_SYMBOL_GPL vmlinux 0x154d30c5 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x154eba9b ip6_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put -EXPORT_SYMBOL_GPL vmlinux 0x155cc8e9 driver_deferred_probe_check_state -EXPORT_SYMBOL_GPL vmlinux 0x156335f3 fwnode_remove_software_node -EXPORT_SYMBOL_GPL vmlinux 0x15852092 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1559bb2e mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x155ab11e ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x15770d29 acpi_device_modalias EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts -EXPORT_SYMBOL_GPL vmlinux 0x15a40023 __xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0x15a6658a pm_generic_suspend -EXPORT_SYMBOL_GPL vmlinux 0x15aa16ed clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x159a0652 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x159bc8c7 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x159f6b7e devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x15a480cd device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x15a65093 phy_restore_page EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks EXPORT_SYMBOL_GPL vmlinux 0x15bd7435 psi_memstall_leave EXPORT_SYMBOL_GPL vmlinux 0x15c4e3e2 phylink_ethtool_set_pauseparam -EXPORT_SYMBOL_GPL vmlinux 0x15cbdbbd acomp_request_alloc -EXPORT_SYMBOL_GPL vmlinux 0x15ddc5a9 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x15cfc0e4 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x15d26d6f rt288x_setup +EXPORT_SYMBOL_GPL vmlinux 0x15dc0072 synth_event_create EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask EXPORT_SYMBOL_GPL vmlinux 0x15eb7eb3 fhctl_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x15f19769 fsl_mc_device_add -EXPORT_SYMBOL_GPL vmlinux 0x15ffcb85 ata_pci_sff_prepare_host -EXPORT_SYMBOL_GPL vmlinux 0x160a5480 rio_mport_get_feature -EXPORT_SYMBOL_GPL vmlinux 0x162c9bfd pci_hp_del -EXPORT_SYMBOL_GPL vmlinux 0x1640c428 mpc8xxx_spi_rx_buf_u8 -EXPORT_SYMBOL_GPL vmlinux 0x16416a7c inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x15f45a20 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x16036a2f pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x16143c09 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x161abca9 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x16206de8 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x163618e3 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x163ab7de fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x163e7324 dsa_stubs +EXPORT_SYMBOL_GPL vmlinux 0x164220dc kick_process EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1644770c netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x1645007a xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x164a46fe regmap_register_patch EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x1653b6e0 dma_resv_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x166be446 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x167b5c5a sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1658642f pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x1670cc39 nvmem_cell_get EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device -EXPORT_SYMBOL_GPL vmlinux 0x168240c6 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x1681fd90 gpiod_set_transitory EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x16909793 acpi_subsys_runtime_resume EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x16952883 led_trigger_write -EXPORT_SYMBOL_GPL vmlinux 0x169c16f6 tcp_set_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x16a14d80 fsl_mc_get_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x16a7fd7f extcon_get_state -EXPORT_SYMBOL_GPL vmlinux 0x16ad551c fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x169d28ff pci_p2pmem_virt_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x16aa23a1 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x16aae7b9 iomap_read_folio EXPORT_SYMBOL_GPL vmlinux 0x16ca1a8a phylink_suspend -EXPORT_SYMBOL_GPL vmlinux 0x16ca6d6b sata_link_resume EXPORT_SYMBOL_GPL vmlinux 0x16cb6a90 radix_tree_preloads +EXPORT_SYMBOL_GPL vmlinux 0x16d0e54f phy_remove_lookup EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16da50f1 fat_search_long EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e01b1b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x16ee5e69 gpiochip_unlock_as_irq EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x16f17f82 ethnl_cable_test_fault_length -EXPORT_SYMBOL_GPL vmlinux 0x16f7e195 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x16f282ba gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x16ff1bbb gpiochip_disable_irq EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 -EXPORT_SYMBOL_GPL vmlinux 0x170e7f1e tcp_plb_check_rehash -EXPORT_SYMBOL_GPL vmlinux 0x1718dd24 irq_chip_set_vcpu_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0x1718fae2 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x171f1d2a rdev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0x173e027c unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x170e685e ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x171bcaac dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x1721029a ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x1721c7ca of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x172442f7 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x17250b75 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x1737c305 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x173d7259 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x174055e0 of_clk_add_hw_provider EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x1744ca73 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x1748f0ca sysfs_remove_groups EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174d3c7c component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0x174e6c46 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x175112a9 ata_link_offline -EXPORT_SYMBOL_GPL vmlinux 0x17521bbc mtk_clk_register_muxes -EXPORT_SYMBOL_GPL vmlinux 0x1758fc0c of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x17584b2b of_get_named_gpio EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs -EXPORT_SYMBOL_GPL vmlinux 0x175e6fae ahci_platform_init_host EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put -EXPORT_SYMBOL_GPL vmlinux 0x1760546f device_match_any EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub -EXPORT_SYMBOL_GPL vmlinux 0x17624a9b genphy_c45_read_eee_abilities -EXPORT_SYMBOL_GPL vmlinux 0x176bc08d sdio_release_host -EXPORT_SYMBOL_GPL vmlinux 0x177a5ecf acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x1769c82a vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x176bec62 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x176e156e regulator_is_supported_voltage EXPORT_SYMBOL_GPL vmlinux 0x177b1042 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x177bcc85 gpiod_get_raw_array_value EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version -EXPORT_SYMBOL_GPL vmlinux 0x177ccb6b ata_host_alloc_pinfo -EXPORT_SYMBOL_GPL vmlinux 0x17817bcb ahci_platform_find_clk -EXPORT_SYMBOL_GPL vmlinux 0x178a529c strp_unpause -EXPORT_SYMBOL_GPL vmlinux 0x1790156e clk_mux_val_to_index -EXPORT_SYMBOL_GPL vmlinux 0x17935be5 task_cls_state -EXPORT_SYMBOL_GPL vmlinux 0x17965338 filemap_read -EXPORT_SYMBOL_GPL vmlinux 0x17a7ba62 fsverity_verify_bio -EXPORT_SYMBOL_GPL vmlinux 0x17ad0243 blk_stat_enable_accounting -EXPORT_SYMBOL_GPL vmlinux 0x17b19e97 vcap_is_last_chain -EXPORT_SYMBOL_GPL vmlinux 0x17b6e79e sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x17ba7a34 acpi_irq_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x17d2259a call_hid_bpf_rdesc_fixup -EXPORT_SYMBOL_GPL vmlinux 0x17df666c vcap_tc_flower_handler_cvlan_usage +EXPORT_SYMBOL_GPL vmlinux 0x17a21651 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x17ac85d8 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x17b559ee pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x17cfba14 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x17d67334 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x17ddc10f iommu_detach_group EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear -EXPORT_SYMBOL_GPL vmlinux 0x17e48438 phy_led_triggers_register -EXPORT_SYMBOL_GPL vmlinux 0x17f01b73 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x17edeb89 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x17f34ebb devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x17fbf306 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x17fc1446 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x17fe8ca8 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x17ff723b gnttab_map_refs EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize -EXPORT_SYMBOL_GPL vmlinux 0x18092307 strp_process -EXPORT_SYMBOL_GPL vmlinux 0x180ae4d3 sprd_pinctrl_core_probe -EXPORT_SYMBOL_GPL vmlinux 0x180afc23 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x18083c8b crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x181bf314 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1829a5f4 sbitmap_queue_show EXPORT_SYMBOL_GPL vmlinux 0x182e2f09 cn_netlink_send_mult -EXPORT_SYMBOL_GPL vmlinux 0x18323307 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x182f388b ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x1832471f usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1832a4f5 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x18384aa5 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x183b1548 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x183f47f4 skb_mpls_update_lse EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence -EXPORT_SYMBOL_GPL vmlinux 0x18518bf9 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x1855fe57 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18563653 udp_bpf_update_proto -EXPORT_SYMBOL_GPL vmlinux 0x186832b0 dw_pcie_ep_init_notify -EXPORT_SYMBOL_GPL vmlinux 0x186add94 sync_blockdev_nowait -EXPORT_SYMBOL_GPL vmlinux 0x1870756c cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1847e7e1 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x184d162d raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x185061d5 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x1858bbc2 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x186da8d8 debugfs_read_file_bool EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x1885d650 iomap_read_folio -EXPORT_SYMBOL_GPL vmlinux 0x189374f9 input_ff_flush -EXPORT_SYMBOL_GPL vmlinux 0x18a54e1c devm_memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0x18c59a74 rz_mtu3_shared_reg_update_bit -EXPORT_SYMBOL_GPL vmlinux 0x18d15fea fsl_mc_bus_dpcon_type -EXPORT_SYMBOL_GPL vmlinux 0x18df81c1 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x1875979d blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x1880266c devres_add +EXPORT_SYMBOL_GPL vmlinux 0x188327d0 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x188bb6f2 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18937f1b gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x189a3a1f ata_eh_read_sense_success_ncq_log +EXPORT_SYMBOL_GPL vmlinux 0x18aadf16 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x18af2fbf ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x18b2d909 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x18da9d30 cpufreq_dbs_governor_start EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e7d2d7 proc_create_net_data_write EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x18e9d3e3 devl_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x18ebbe88 dprc_set_obj_irq -EXPORT_SYMBOL_GPL vmlinux 0x18ecddb7 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x18ee3906 dprc_cleanup EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18fa69ed ata_port_pbar_desc EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x18fe17c2 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x18fe9366 metadata_dst_free -EXPORT_SYMBOL_GPL vmlinux 0x19028386 usb_hcd_pci_remove -EXPORT_SYMBOL_GPL vmlinux 0x191a67a4 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x191dbf6a acpi_subsys_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x19200672 blk_mq_sched_mark_restart_hctx -EXPORT_SYMBOL_GPL vmlinux 0x1920b14f __pm_runtime_set_status -EXPORT_SYMBOL_GPL vmlinux 0x1921d289 led_trigger_read EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert -EXPORT_SYMBOL_GPL vmlinux 0x19260a84 ata_ncq_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x192b57b4 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x192ccbc9 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x192fcecb perf_pmu_register EXPORT_SYMBOL_GPL vmlinux 0x193282ae acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x19575d38 rockchip_pcie_cfg_configuration_accesses -EXPORT_SYMBOL_GPL vmlinux 0x1986f5a2 trace_array_printk -EXPORT_SYMBOL_GPL vmlinux 0x1989078e __netif_set_xps_queue -EXPORT_SYMBOL_GPL vmlinux 0x198e7b58 sock_map_close -EXPORT_SYMBOL_GPL vmlinux 0x1998dfc2 vp_modern_remove -EXPORT_SYMBOL_GPL vmlinux 0x19a25e2d dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x1936a69e vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x193f2634 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x195cd9d7 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x196f8a53 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x19775c2e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x197bc906 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x19890444 power_supply_get_battery_info EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled -EXPORT_SYMBOL_GPL vmlinux 0x19a83280 debugfs_lookup_and_remove -EXPORT_SYMBOL_GPL vmlinux 0x19b8e7a6 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x19af4ac5 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x19b584a3 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x19ba5a81 pci_epf_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister EXPORT_SYMBOL_GPL vmlinux 0x19c42957 blk_op_str -EXPORT_SYMBOL_GPL vmlinux 0x19dd6ce9 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x19dbc767 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x19e4ee8f __fsnotify_inode_delete EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ea6a8c pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x19ed3325 irq_chip_eoi_parent EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f2ebe8 rtc_set_alarm EXPORT_SYMBOL_GPL vmlinux 0x19f33626 nf_ctnetlink_has_listener -EXPORT_SYMBOL_GPL vmlinux 0x19f52387 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x19f89005 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x19fbf26b skb_splice_bits EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string -EXPORT_SYMBOL_GPL vmlinux 0x1a15ee81 usb_cache_string -EXPORT_SYMBOL_GPL vmlinux 0x1a3c6df6 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x1a5b00b3 of_clk_hw_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0x1a61b6ba pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x1a184de5 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x1a18540b __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x1a22a34d scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x1a526685 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1a52a3a5 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x1a605c5d ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x1a6082e0 uart_xchar_out EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x1a750a59 ata_dev_set_feature EXPORT_SYMBOL_GPL vmlinux 0x1a82368d ZSTD_customCalloc -EXPORT_SYMBOL_GPL vmlinux 0x1a885079 of_clk_del_provider -EXPORT_SYMBOL_GPL vmlinux 0x1a8add73 tegra_bpmp_get -EXPORT_SYMBOL_GPL vmlinux 0x1a9887fb scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x1a9d1bbc iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x1a96ae6a nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1a9edbce __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x1a9fcdaa crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x1aa1f9d4 devfreq_get_devfreq_by_node EXPORT_SYMBOL_GPL vmlinux 0x1aa7a185 __tracepoint_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x1acb80eb vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1aaf1c77 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x1ab0fea1 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x1ab5f4c0 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ab8de28 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x1ac55270 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x1acbadc7 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x1accd149 bdev_disk_changed EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x1ad25b81 devm_hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0x1adeabc3 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x1adc7127 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x1ae785fc of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x1aea63df request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x1af022ac usb_hc_died EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow -EXPORT_SYMBOL_GPL vmlinux 0x1af439db replace_page_cache_folio -EXPORT_SYMBOL_GPL vmlinux 0x1af7973e acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x1af75035 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x1af80478 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1afa60ae serial8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x1afaa2fd proc_dou8vec_minmax -EXPORT_SYMBOL_GPL vmlinux 0x1afc31b2 gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x1b0602c1 cond_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x1b1a4299 i2c_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x1b1b58ca of_genpd_add_provider_onecell -EXPORT_SYMBOL_GPL vmlinux 0x1b299b3a ip_icmp_error -EXPORT_SYMBOL_GPL vmlinux 0x1b2cbd23 power_supply_property_is_writeable -EXPORT_SYMBOL_GPL vmlinux 0x1b4b71f1 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x1b5555d4 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x1b198c4a genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x1b1ee12d __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x1b25452d __dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1b27cbfc rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1b3b09ac usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x1b47e9dd fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x1b49112f mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x1b5d9251 crypto_unregister_templates EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc -EXPORT_SYMBOL_GPL vmlinux 0x1b6283cc crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x1b67ee28 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b65fee5 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x1b668296 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1b678933 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1b6cb2cf irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b707398 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x1b727870 dev_pm_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x1b739ef5 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b85efe2 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x1b922f65 pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x1b9b2e77 acpi_cppc_processor_probe -EXPORT_SYMBOL_GPL vmlinux 0x1ba46fee metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1bab9e63 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ba01eff param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1bac561c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x1bc437ba rio_del_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split -EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity -EXPORT_SYMBOL_GPL vmlinux 0x1bca5984 tty_release_struct -EXPORT_SYMBOL_GPL vmlinux 0x1bce6e0f rio_mport_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x1be8b75a device_del -EXPORT_SYMBOL_GPL vmlinux 0x1bec09e1 desc_to_gpio -EXPORT_SYMBOL_GPL vmlinux 0x1c04e95a devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x1c0ec7d4 sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x1c0f9961 ahci_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x1c2e57bd pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1bc701e3 pse_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1bd46040 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1bda303c akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1bded757 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x1bf2907b phylink_of_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0x1bfa04ab tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x1c0ec831 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1c0ed343 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x1c11b5d5 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x1c36f1ff skb_send_sock_locked EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x1c5b577a sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase -EXPORT_SYMBOL_GPL vmlinux 0x1c68298a gpiod_set_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x1c699f52 xdp_rxq_info_is_reg -EXPORT_SYMBOL_GPL vmlinux 0x1c6d22dd cpufreq_generic_attr -EXPORT_SYMBOL_GPL vmlinux 0x1c6ee41d devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x1c7169dc ZSTD_customFree +EXPORT_SYMBOL_GPL vmlinux 0x1c76fbd6 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x1c7d5803 sdio_register_driver EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent -EXPORT_SYMBOL_GPL vmlinux 0x1c99b3f8 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x1c9e1564 __tcp_send_ack EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off -EXPORT_SYMBOL_GPL vmlinux 0x1cdae66d regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1cbde575 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x1cc063e3 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x1ccafa44 debugfs_create_symlink EXPORT_SYMBOL_GPL vmlinux 0x1cdd0605 xhci_port_state_to_neutral -EXPORT_SYMBOL_GPL vmlinux 0x1ce1c5f4 __traceiter_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0x1cf34c70 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x1ce7884d dw_pcie_ep_init EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node -EXPORT_SYMBOL_GPL vmlinux 0x1d058db8 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x1d0aaccd devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x1d0bdb7f of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1d163cca nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x1d1f7735 tty_prepare_flip_string EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x1d3c5c86 sk_msg_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x1d3caa04 sk_msg_return_zero -EXPORT_SYMBOL_GPL vmlinux 0x1d3dc412 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x1d3e247e clk_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0x1d60b0b2 folio_invalidate -EXPORT_SYMBOL_GPL vmlinux 0x1d70c9d7 spi_mem_exec_op -EXPORT_SYMBOL_GPL vmlinux 0x1d93acaf of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x1d23d242 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x1d280fda skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x1d2c2ba8 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x1d39de7c devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x1d411794 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x1d42c260 devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d449b8f rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x1d51e7c8 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x1d61582e dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x1d6593a4 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x1d73c373 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x1d8b776b fscrypt_get_symlink EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle -EXPORT_SYMBOL_GPL vmlinux 0x1da47715 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x1da4f158 edac_mc_add_mc_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x1daa6335 virtio_require_restricted_mem_acc -EXPORT_SYMBOL_GPL vmlinux 0x1daf9ac6 fsl_mc_populate_irq_pool -EXPORT_SYMBOL_GPL vmlinux 0x1db64b44 kset_find_obj -EXPORT_SYMBOL_GPL vmlinux 0x1dbb31a1 usb_check_bulk_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x1dbd3bcf phylink_mii_c22_pcs_get_state -EXPORT_SYMBOL_GPL vmlinux 0x1dc99574 spi_mem_dirmap_write -EXPORT_SYMBOL_GPL vmlinux 0x1dd1b14f crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x1ddc071f usb_put_dev -EXPORT_SYMBOL_GPL vmlinux 0x1ddca449 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x1da87af6 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x1daacc59 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x1db4e987 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x1dbbf35a device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x1dc38a09 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x1dc4da4d msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x1dc80c45 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x1dd7afd0 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x1dda430f devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ddb2596 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1ddf60a1 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x1de773c1 kthread_queue_delayed_work EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write -EXPORT_SYMBOL_GPL vmlinux 0x1df52664 hid_bpf_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x1df55abc da903x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x1df94c7d led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x1ded5123 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x1dfa29ac pm_generic_freeze_late EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfe3b75 ata_pci_bmdma_init_one EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release -EXPORT_SYMBOL_GPL vmlinux 0x1e16d204 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0fd05a debugfs_rename EXPORT_SYMBOL_GPL vmlinux 0x1e208a78 get_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x1e215a37 xenbus_map_ring_valloc EXPORT_SYMBOL_GPL vmlinux 0x1e288c83 zynqmp_pm_force_pwrdwn -EXPORT_SYMBOL_GPL vmlinux 0x1e2d38d5 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1e30ab89 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e3390a7 mark_page_dirty_in_slot EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x1e464db3 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x1e46811f fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x1e53a476 usb_get_dev EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print -EXPORT_SYMBOL_GPL vmlinux 0x1e6687f7 irq_setup_alt_chip -EXPORT_SYMBOL_GPL vmlinux 0x1e6a40b3 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x1e56a837 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x1e56fab3 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x1e5f2c8e clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e664ae4 class_register +EXPORT_SYMBOL_GPL vmlinux 0x1e6a0fc8 wbc_attach_and_unlock_inode EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x1e7ecffb skb_clone_tx_timestamp EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op -EXPORT_SYMBOL_GPL vmlinux 0x1e8ca50a mtk_pinconf_bias_disable_set_rev1 -EXPORT_SYMBOL_GPL vmlinux 0x1e8ee83f devm_gpiod_get_index_optional EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush -EXPORT_SYMBOL_GPL vmlinux 0x1e92c64e class_is_registered -EXPORT_SYMBOL_GPL vmlinux 0x1e9a1e32 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e91907e crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x1e9c3341 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse -EXPORT_SYMBOL_GPL vmlinux 0x1eab74c3 clk_hw_register_fractional_divider -EXPORT_SYMBOL_GPL vmlinux 0x1eb11ef0 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x1ea5700b devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x1ea9bded __traceiter_tcp_send_reset EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x1ebb0f4a tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x1ec8f732 usb_phy_roothub_alloc -EXPORT_SYMBOL_GPL vmlinux 0x1eca36ab fsl_mc_object_free -EXPORT_SYMBOL_GPL vmlinux 0x1ecd19f2 int_active_memcg EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x1ed8d68e follow_pte -EXPORT_SYMBOL_GPL vmlinux 0x1eda24c9 tcp_get_syncookie_mss -EXPORT_SYMBOL_GPL vmlinux 0x1edcac94 ata_sff_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x1ee1455d gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x1ee43793 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x1ee44436 devlink_port_fini EXPORT_SYMBOL_GPL vmlinux 0x1ee47e00 is_vmalloc_or_module_addr +EXPORT_SYMBOL_GPL vmlinux 0x1ee9abf6 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x1eea5e68 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x1f0426b4 __traceiter_pelt_irq_tp -EXPORT_SYMBOL_GPL vmlinux 0x1f167021 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x1ef26af4 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x1f0177aa blk_mq_quiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0x1f0bb071 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1f0fa257 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1f1029b9 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x1f1c3b26 pinctrl_pm_select_sleep_state EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f25a437 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1f2b0d33 inet6_cleanup_sock +EXPORT_SYMBOL_GPL vmlinux 0x1f31c0f5 switchdev_handle_port_obj_add_foreign EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit -EXPORT_SYMBOL_GPL vmlinux 0x1f3fd7ab zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x1f40a065 crypto_mod_get EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms -EXPORT_SYMBOL_GPL vmlinux 0x1f45979f pci_hp_add -EXPORT_SYMBOL_GPL vmlinux 0x1f4e4a85 kernel_file_open -EXPORT_SYMBOL_GPL vmlinux 0x1f51de1e usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1f4def0a extcon_set_property_sync EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv -EXPORT_SYMBOL_GPL vmlinux 0x1f71b3cb pinctrl_parse_index_with_args -EXPORT_SYMBOL_GPL vmlinux 0x1f740d4e bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x1f7dd48c blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0x1f719094 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x1f7c27c8 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x1f7d1798 __traceiter_kfree_skb EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x1f86b7ff vcap_tc_flower_handler_vlan_usage +EXPORT_SYMBOL_GPL vmlinux 0x1f973f25 dma_release_channel EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable -EXPORT_SYMBOL_GPL vmlinux 0x1f9e16b3 inet_csk_listen_start EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0x1fa48995 efivar_supports_writes -EXPORT_SYMBOL_GPL vmlinux 0x1fa886a3 acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x1fad83ac devm_ti_sci_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x1faddc37 led_set_brightness_nopm -EXPORT_SYMBOL_GPL vmlinux 0x1fc89864 tegra_xusb_padctl_legacy_remove -EXPORT_SYMBOL_GPL vmlinux 0x1fc9aeb6 of_irq_parse_one -EXPORT_SYMBOL_GPL vmlinux 0x1fd5bc04 ata_sas_port_destroy -EXPORT_SYMBOL_GPL vmlinux 0x1fde1ec3 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1fa7ac2b perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x1fbe5b77 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x1fc28971 acpi_dev_get_next_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0x1fccb03b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1fd74baa devm_regulator_get_enable EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs -EXPORT_SYMBOL_GPL vmlinux 0x1fff3b74 pci_pr3_present -EXPORT_SYMBOL_GPL vmlinux 0x2004e571 crypto_skcipher_setkey -EXPORT_SYMBOL_GPL vmlinux 0x20092728 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x2003cc18 is_nvdimm_sync EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put -EXPORT_SYMBOL_GPL vmlinux 0x200c54a1 nfs_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x201055d7 vga_default_device -EXPORT_SYMBOL_GPL vmlinux 0x2014300f spi_mem_dirmap_destroy -EXPORT_SYMBOL_GPL vmlinux 0x201c2a76 scsi_autopm_put_device -EXPORT_SYMBOL_GPL vmlinux 0x202418d3 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x20170b23 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x201e47d8 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x2021b604 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x2028fd96 sk_msg_free_nocharge EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write -EXPORT_SYMBOL_GPL vmlinux 0x202f4167 usb_free_urb -EXPORT_SYMBOL_GPL vmlinux 0x20344c37 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x203d9e49 iomap_get_folio -EXPORT_SYMBOL_GPL vmlinux 0x20473ef9 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x20361df7 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x204ea924 class_create_file_ns EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x2069fb00 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x206f43d4 acpi_subsys_restore_early -EXPORT_SYMBOL_GPL vmlinux 0x20720495 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x20777f9b pm_clk_init -EXPORT_SYMBOL_GPL vmlinux 0x207ff548 pinconf_generic_dt_free_map -EXPORT_SYMBOL_GPL vmlinux 0x208f8e5e irq_chip_set_wake_parent -EXPORT_SYMBOL_GPL vmlinux 0x20976042 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x204f9608 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x205e0d95 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x20611adc ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x20744a81 devm_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find -EXPORT_SYMBOL_GPL vmlinux 0x209e9b2d dev_pm_genpd_set_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x20a00304 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x20a0aa8c __traceiter_devlink_hwerr EXPORT_SYMBOL_GPL vmlinux 0x20a4e01a HUF_readStats_wksp -EXPORT_SYMBOL_GPL vmlinux 0x20aed19c phy_power_off -EXPORT_SYMBOL_GPL vmlinux 0x20ba08db clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0x20ba30e1 devlink_to_dev -EXPORT_SYMBOL_GPL vmlinux 0x20d1d39a k3_ringacc_ring_cfg -EXPORT_SYMBOL_GPL vmlinux 0x210411de add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x2104a65e bpf_prog_add -EXPORT_SYMBOL_GPL vmlinux 0x210c107e sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x20a6fc3c stmpe_dev_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x20ad684c pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x20d3ee47 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x20dde046 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x20fc9eaf mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x20fe92e2 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x21003361 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2101c348 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x211165a0 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x2117de77 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x2124b471 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x212525d3 usb_hcd_poll_rh_status EXPORT_SYMBOL_GPL vmlinux 0x212734c5 vcap_netbytes_copy -EXPORT_SYMBOL_GPL vmlinux 0x2138e410 dma_vmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x2142b057 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x21575b89 __rio_local_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x215ac3b1 __rio_local_write_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x2162ff53 dev_attr_unload_heads -EXPORT_SYMBOL_GPL vmlinux 0x216bb9a7 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x2127abf3 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x21392bb5 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x213e37c8 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x214b00c3 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x21583b25 ethnl_cable_test_fault_length EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio -EXPORT_SYMBOL_GPL vmlinux 0x21733c3f fb_sys_write -EXPORT_SYMBOL_GPL vmlinux 0x2176b880 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2173b045 usb_alloc_coherent EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x2194ba75 input_ff_event EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy -EXPORT_SYMBOL_GPL vmlinux 0x21a88bd5 regmap_write_async -EXPORT_SYMBOL_GPL vmlinux 0x21a8d0c3 sysfs_create_link_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x21ae9a47 akcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x21b5f672 get_net_ns_by_id -EXPORT_SYMBOL_GPL vmlinux 0x21c4a0ab skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x21a7eeff put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x21ca30ac led_trigger_event EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x21d5fd19 __iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x21dccd12 clk_hw_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0x21f42886 __traceiter_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x2208413a blk_queue_write_cache -EXPORT_SYMBOL_GPL vmlinux 0x22087668 dw_pcie_ep_linkup -EXPORT_SYMBOL_GPL vmlinux 0x220a3e0d debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x21da6e4d devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x21dbf596 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x21f6ac12 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x21fb165c hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x220b9ca0 seg6_do_srh_encap EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available -EXPORT_SYMBOL_GPL vmlinux 0x2221fbe6 of_remove_property -EXPORT_SYMBOL_GPL vmlinux 0x2222c314 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x2243eed8 balloon_page_list_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x2275f936 pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0x22783226 dst_blackhole_mtu -EXPORT_SYMBOL_GPL vmlinux 0x22872a00 rio_mport_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0x228a886d acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x220f5f30 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2216624b kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x221dec8c pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2228c03c regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2234b08f tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x223c1609 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x22439ba2 sched_numa_hop_mask +EXPORT_SYMBOL_GPL vmlinux 0x2253f3ff pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2262cab7 mtk_clk_pdev_remove +EXPORT_SYMBOL_GPL vmlinux 0x22711de7 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x227ae0e9 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x227d140b serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x228ac0de of_map_id EXPORT_SYMBOL_GPL vmlinux 0x2290148f inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x22999294 dm_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x229d82d6 of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x22b0bd57 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL vmlinux 0x22b12dcd gpiod_get_array_value -EXPORT_SYMBOL_GPL vmlinux 0x22b44337 rz_mtu3_disable -EXPORT_SYMBOL_GPL vmlinux 0x22c095d6 kgdb_register_io_module -EXPORT_SYMBOL_GPL vmlinux 0x22c165d3 regmap_field_test_bits -EXPORT_SYMBOL_GPL vmlinux 0x22c9c7da regulator_disable -EXPORT_SYMBOL_GPL vmlinux 0x22ce54b5 dev_pm_opp_get_suspend_opp_freq -EXPORT_SYMBOL_GPL vmlinux 0x22d2aca2 device_find_any_child -EXPORT_SYMBOL_GPL vmlinux 0x22d2cc4c i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x22969f89 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x229a0489 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x229a0b74 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x22a5bda1 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x22a5d9f4 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x22a77367 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x22af8e7c debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x22c5d2af vcap_keyset_name EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22db84cf __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x22e9c4b6 bpf_prog_alloc EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22efe28b blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x22f3632c usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x22f99279 preempt_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x22fe89c0 stmpe_set_altfunc -EXPORT_SYMBOL_GPL vmlinux 0x23245ad5 devlink_dpipe_entry_ctx_prepare -EXPORT_SYMBOL_GPL vmlinux 0x23314656 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x23006bd0 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2303b468 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x230f68ed sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x2319537c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x231b5e7c ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x2323d546 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x23277c44 dma_wait_for_async_tx EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x2342e196 mtk_free_clk_data EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put -EXPORT_SYMBOL_GPL vmlinux 0x23507dd3 crypto_register_ahashes -EXPORT_SYMBOL_GPL vmlinux 0x2364caaa regulator_set_ramp_delay_regmap -EXPORT_SYMBOL_GPL vmlinux 0x2365d515 l3mdev_fib_table_rcu -EXPORT_SYMBOL_GPL vmlinux 0x2366e317 pinctrl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x236d4c1d component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x236f7cd1 ahci_stop_engine -EXPORT_SYMBOL_GPL vmlinux 0x23708ebe phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x23549268 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x235a5b46 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x235f0012 sfp_register_socket EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node -EXPORT_SYMBOL_GPL vmlinux 0x2386944a is_nvdimm_sync -EXPORT_SYMBOL_GPL vmlinux 0x2396c1e6 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x23968d3b regmap_can_raw_write EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x23a2f23b pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x23a91e37 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x23b5f9f7 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x23b9b980 simple_attr_release EXPORT_SYMBOL_GPL vmlinux 0x23c3b778 phy_basic_features -EXPORT_SYMBOL_GPL vmlinux 0x23c9c102 netif_carrier_event -EXPORT_SYMBOL_GPL vmlinux 0x23cf14ae mtk_pinconf_adv_drive_set_raw -EXPORT_SYMBOL_GPL vmlinux 0x23d7437b inet6_hash -EXPORT_SYMBOL_GPL vmlinux 0x23ef2969 clk_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x23fc3929 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x241618ea acpi_match_acpi_device -EXPORT_SYMBOL_GPL vmlinux 0x2417bad4 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x23d04b22 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x23de5501 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x23f64502 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x23f83e7e regulator_set_ramp_delay_regmap EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242151bb devm_led_get EXPORT_SYMBOL_GPL vmlinux 0x24235223 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x2424745a dma_resv_test_signaled EXPORT_SYMBOL_GPL vmlinux 0x24273ff5 imx_clk_hw_pllv4 -EXPORT_SYMBOL_GPL vmlinux 0x2428b77e fsl_mc_bus_dpni_type -EXPORT_SYMBOL_GPL vmlinux 0x243dc153 divider_ro_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record -EXPORT_SYMBOL_GPL vmlinux 0x245392e0 kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x2454665d from_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x2454ed3b thermal_zone_get_zone_by_name -EXPORT_SYMBOL_GPL vmlinux 0x245644ad adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x24581bf4 ahci_error_handler EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem -EXPORT_SYMBOL_GPL vmlinux 0x247147d7 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x24775e39 ehci_resume -EXPORT_SYMBOL_GPL vmlinux 0x248161e0 led_init_core -EXPORT_SYMBOL_GPL vmlinux 0x24831323 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x2479fbcc regmap_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf EXPORT_SYMBOL_GPL vmlinux 0x24852826 __SCK__tp_func_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x248587ca sched_set_normal -EXPORT_SYMBOL_GPL vmlinux 0x24865d4c dev_pm_qos_expose_latency_limit -EXPORT_SYMBOL_GPL vmlinux 0x2489d3ab cgroup_get_e_css -EXPORT_SYMBOL_GPL vmlinux 0x248bbcf5 ata_pci_bmdma_prepare_host EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248cab6a ip6_input EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray -EXPORT_SYMBOL_GPL vmlinux 0x2496d93e __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0x24a48fb4 iommu_detach_device EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x24b1e78d kgdb_unregister_io_module -EXPORT_SYMBOL_GPL vmlinux 0x24b3aa45 devlink_region_create -EXPORT_SYMBOL_GPL vmlinux 0x24b7fcc4 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x24b63ea0 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x24bbc95f xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x24bc0bba adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x24cda34e verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x24d98057 fsl_mc_bus_dpmac_type EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended -EXPORT_SYMBOL_GPL vmlinux 0x24e0a278 nexthop_for_each_fib6_nh -EXPORT_SYMBOL_GPL vmlinux 0x24e3f75e dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x24df5119 devfreq_event_is_enabled EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset -EXPORT_SYMBOL_GPL vmlinux 0x24f4c102 kthread_func EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister -EXPORT_SYMBOL_GPL vmlinux 0x250e0219 dev_pm_opp_put -EXPORT_SYMBOL_GPL vmlinux 0x251608b5 nf_hook_entries_delete_raw -EXPORT_SYMBOL_GPL vmlinux 0x25174dc2 wm8350_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x251dad63 scsi_unregister_device_handler -EXPORT_SYMBOL_GPL vmlinux 0x25212dc2 __traceiter_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x2521f914 pci_epc_bme_notify -EXPORT_SYMBOL_GPL vmlinux 0x252402e6 rio_del_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x2525da85 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x250369da devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x25138a20 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x25251201 direct_write_fallback +EXPORT_SYMBOL_GPL vmlinux 0x252911e3 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x252c620a mmc_pwrseq_unregister EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25332088 shmem_read_folio_gfp EXPORT_SYMBOL_GPL vmlinux 0x2534f99f debounce_time_mt6795 EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate -EXPORT_SYMBOL_GPL vmlinux 0x2542cee1 xhci_ext_cap_init -EXPORT_SYMBOL_GPL vmlinux 0x254c599d pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x2551e6e3 kvm_read_guest -EXPORT_SYMBOL_GPL vmlinux 0x25694edb pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x255dad72 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x25725f48 dmaengine_desc_get_metadata_ptr EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs -EXPORT_SYMBOL_GPL vmlinux 0x2588f928 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2579d8a7 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x258e3ecc query_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk -EXPORT_SYMBOL_GPL vmlinux 0x25964bed dm_suspended -EXPORT_SYMBOL_GPL vmlinux 0x259f61a6 wm8350_gpio_config -EXPORT_SYMBOL_GPL vmlinux 0x25af6393 spi_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x25b14ad1 backing_file_real_path -EXPORT_SYMBOL_GPL vmlinux 0x25b94c0d thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0x2595ab3f __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x25a25ed3 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x25b19203 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x25b40427 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25b8cb11 pinctrl_generic_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c024d7 scsi_target_unblock EXPORT_SYMBOL_GPL vmlinux 0x25c42796 onboard_hub_destroy_pdevs -EXPORT_SYMBOL_GPL vmlinux 0x25d85c6b devlink_port_unregister -EXPORT_SYMBOL_GPL vmlinux 0x25d9026a find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x25dce070 rio_release_outb_dbell -EXPORT_SYMBOL_GPL vmlinux 0x25e565cb __iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x25e6c8f7 devfreq_event_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x25ea92c9 devm_gpiod_get_array -EXPORT_SYMBOL_GPL vmlinux 0x25f2727f regmap_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0x25f60060 nvmem_cell_read_u16 -EXPORT_SYMBOL_GPL vmlinux 0x25fdbc91 fib_nh_common_init -EXPORT_SYMBOL_GPL vmlinux 0x2604383c crypto_sig_maxsize -EXPORT_SYMBOL_GPL vmlinux 0x2607f977 i2c_dw_prepare_clk -EXPORT_SYMBOL_GPL vmlinux 0x260bb9d7 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x26101b31 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x262866d5 crypto_wait_for_test -EXPORT_SYMBOL_GPL vmlinux 0x2642e13e clk_mux_ops -EXPORT_SYMBOL_GPL vmlinux 0x26468c1e ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x25c8465a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x25cce025 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x25d2d0a7 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x25e63df2 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x25f30b8a pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x25f7fc3f clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2609e0b4 vcap_alloc_rule +EXPORT_SYMBOL_GPL vmlinux 0x261d84b4 nvmem_layout_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x261f6745 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x263bbe14 fscrypt_fname_siphash EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x2657512d tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265e4d82 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x265e9b0f xhci_update_hub_device EXPORT_SYMBOL_GPL vmlinux 0x265f325c synchronize_srcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock -EXPORT_SYMBOL_GPL vmlinux 0x266b3dee edac_pci_create_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x266d2b34 dev_pm_genpd_get_next_hrtimer +EXPORT_SYMBOL_GPL vmlinux 0x26715fc1 rtc_read_alarm EXPORT_SYMBOL_GPL vmlinux 0x267941b3 __tracepoint_neigh_event_send_done -EXPORT_SYMBOL_GPL vmlinux 0x267cac26 pm_genpd_init EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x26972d93 dpcon_reset -EXPORT_SYMBOL_GPL vmlinux 0x2697bb7d dm_start_time_ns_from_clone -EXPORT_SYMBOL_GPL vmlinux 0x2699ae79 acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x26a22d0e dev_pm_opp_init_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0x26a2db88 dev_attr_link_power_management_policy -EXPORT_SYMBOL_GPL vmlinux 0x26a6da7d seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x26908099 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x2697d7d1 usb_of_has_combined_node EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b78bb1 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x26b94ccf fwnode_connection_find_match EXPORT_SYMBOL_GPL vmlinux 0x26c44a3b __tracepoint_sched_cpu_capacity_tp EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x26d53944 spi_sync -EXPORT_SYMBOL_GPL vmlinux 0x26d90ac1 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x26d8abbc pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x26e56329 led_trigger_read EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0x26f70b27 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x26fb3c54 vcap_is_next_lookup EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit -EXPORT_SYMBOL_GPL vmlinux 0x2709c83c dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x270724f9 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x2709fb50 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x270b526f clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x270bfbea sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x27271fa1 transport_destroy_device EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit -EXPORT_SYMBOL_GPL vmlinux 0x272fc744 nf_queue_entry_get_refs -EXPORT_SYMBOL_GPL vmlinux 0x273497ed bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x2762aba3 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x27304b76 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x2730e668 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x2731a7bd dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x274c7c5b pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x276f40eb gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x2772e52e dev_pm_qos_update_request EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x278e9ed7 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x277c6aac ip6_sk_dst_lookup_flow EXPORT_SYMBOL_GPL vmlinux 0x2795fc9d vcap_set_rule_set_actionset -EXPORT_SYMBOL_GPL vmlinux 0x279d370b devm_gpiod_get -EXPORT_SYMBOL_GPL vmlinux 0x27a926f7 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x27b23453 ohci_setup -EXPORT_SYMBOL_GPL vmlinux 0x27b7fc2a ahci_check_ready -EXPORT_SYMBOL_GPL vmlinux 0x27bf3339 devm_hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0x27c312ce __xenbus_register_backend -EXPORT_SYMBOL_GPL vmlinux 0x27c56966 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2797678a devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x27a8f2f3 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x27b9e954 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x27bbf079 mtk_clk_register_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0x27bcb348 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x27c2914b irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x27c4b546 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x27c4f1a9 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x27cec843 rz_mtu3_8bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x27dbd8fc serial8250_do_set_ldisc EXPORT_SYMBOL_GPL vmlinux 0x27df3105 hv_alloc_hyperv_zeroed_page -EXPORT_SYMBOL_GPL vmlinux 0x27e5adc6 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x27f009db led_get +EXPORT_SYMBOL_GPL vmlinux 0x27dfb26e regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x27e98ec3 xen_xlate_remap_gfn_array EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter -EXPORT_SYMBOL_GPL vmlinux 0x27f659e9 mtk_clk_register_pllfhs +EXPORT_SYMBOL_GPL vmlinux 0x27fa4d62 phy_pm_runtime_put EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x28094448 rpi_firmware_get -EXPORT_SYMBOL_GPL vmlinux 0x2815761e raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x27fb2d33 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x27fbe8fa of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x280718e0 __hwspin_trylock EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf -EXPORT_SYMBOL_GPL vmlinux 0x28270f6c devlink_port_attrs_pci_vf_set EXPORT_SYMBOL_GPL vmlinux 0x282b3f94 __tracepoint_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x282c891c device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity -EXPORT_SYMBOL_GPL vmlinux 0x282db5a7 mmu_interval_notifier_insert EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray -EXPORT_SYMBOL_GPL vmlinux 0x283a3cca shmem_file_setup_with_mnt -EXPORT_SYMBOL_GPL vmlinux 0x283c174b tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x28579d5a crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x285b0736 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x28406662 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x284cd04e ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2853c338 ata_sff_prereset EXPORT_SYMBOL_GPL vmlinux 0x285e681a pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x28606107 md_run +EXPORT_SYMBOL_GPL vmlinux 0x28614c3b dummy_con EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x28701f51 nvmem_cell_read_u8 -EXPORT_SYMBOL_GPL vmlinux 0x28739d5c ehci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x28752056 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x2873a1e8 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x28756693 cpufreq_dbs_governor_init EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister -EXPORT_SYMBOL_GPL vmlinux 0x288bc03b serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x28908aba devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x289b76e5 of_genpd_add_device EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free -EXPORT_SYMBOL_GPL vmlinux 0x28adf6c9 event_triggers_call EXPORT_SYMBOL_GPL vmlinux 0x28afbb08 cpu_latency_qos_add_request EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x28b38aea perf_aux_output_skip -EXPORT_SYMBOL_GPL vmlinux 0x28cc9b9f device_link_remove -EXPORT_SYMBOL_GPL vmlinux 0x28d5b6bd edac_mc_free -EXPORT_SYMBOL_GPL vmlinux 0x28de5cf7 ata_pci_device_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2912a9cd clk_hw_unregister -EXPORT_SYMBOL_GPL vmlinux 0x291445e2 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x28d3eb88 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x28d496c3 thermal_zone_device_type +EXPORT_SYMBOL_GPL vmlinux 0x28d61abe subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x28dd8663 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x28e01778 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x290c8590 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2912a45c imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0x2913b378 ata_ncq_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine -EXPORT_SYMBOL_GPL vmlinux 0x291fd18a ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x29228f5c __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x292c1020 ip_valid_fib_dump_req -EXPORT_SYMBOL_GPL vmlinux 0x2933c708 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x2944c40c rio_register_mport -EXPORT_SYMBOL_GPL vmlinux 0x29474f77 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x292dc498 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x29519923 led_trigger_write EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate -EXPORT_SYMBOL_GPL vmlinux 0x295e223f ata_common_sdev_groups -EXPORT_SYMBOL_GPL vmlinux 0x29630c75 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x295c51a9 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x29616bae pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x296261a0 lynx_pcs_create_fwnode EXPORT_SYMBOL_GPL vmlinux 0x296682b0 zynqmp_pm_get_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x2969c446 srcu_torture_stats_print -EXPORT_SYMBOL_GPL vmlinux 0x296a7452 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x2970e0d0 regulator_set_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x297eb78e register_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x2980a975 sdio_memcpy_toio -EXPORT_SYMBOL_GPL vmlinux 0x2985cbc4 dma_request_chan_by_mask -EXPORT_SYMBOL_GPL vmlinux 0x29861dea sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x298a2f1f devm_ti_sci_get_handle -EXPORT_SYMBOL_GPL vmlinux 0x29ba8430 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x296bec5a pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x297e4c83 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x299f415b pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x29af2d8e platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x29af8362 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x29ba5b41 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x29bf81e0 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x29c66bb7 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x29cb77f8 md_find_rdev_rcu EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x29f2cd00 badblocks_exit -EXPORT_SYMBOL_GPL vmlinux 0x29f36e31 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x2a04d1b5 __traceiter_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a16ed36 of_resolve_phandles -EXPORT_SYMBOL_GPL vmlinux 0x2a2c9d41 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2a02e194 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x2a119fae irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x2a28cf94 ata_dev_disable EXPORT_SYMBOL_GPL vmlinux 0x2a2f04fa ip_tunnel_netlink_parms -EXPORT_SYMBOL_GPL vmlinux 0x2a55a80f pinmux_generic_remove_function -EXPORT_SYMBOL_GPL vmlinux 0x2a576202 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2a38df50 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x2a3d61b7 genphy_c45_plca_set_cfg +EXPORT_SYMBOL_GPL vmlinux 0x2a519a0e __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a700d0f irq_domain_set_hwirq_and_chip EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release -EXPORT_SYMBOL_GPL vmlinux 0x2a7b0000 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x2a8a2871 meson_clk_mpll_ops EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous EXPORT_SYMBOL_GPL vmlinux 0x2a9b236b rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x2aa5734e bdev_alignment_offset EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update -EXPORT_SYMBOL_GPL vmlinux 0x2ad18c29 __traceiter_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x2adfcf5e platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x2ab2c3fe rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2ab818c3 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x2ac188eb umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x2ac6c305 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2acc1d9b regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x2acd9415 fb_bl_default_curve EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider -EXPORT_SYMBOL_GPL vmlinux 0x2ae21d7a hwpoison_filter -EXPORT_SYMBOL_GPL vmlinux 0x2ae4ebd8 usb_alloc_coherent -EXPORT_SYMBOL_GPL vmlinux 0x2aeb0db2 pm_generic_thaw_early -EXPORT_SYMBOL_GPL vmlinux 0x2af6086d bpf_trace_run10 -EXPORT_SYMBOL_GPL vmlinux 0x2b00464d dm_copy_name_and_uuid -EXPORT_SYMBOL_GPL vmlinux 0x2b0fcb15 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x2ae31c89 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x2ae659fb devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x2ae68c61 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2ae782da mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x2b052655 d_same_name +EXPORT_SYMBOL_GPL vmlinux 0x2b08b3f1 dax_iomap_rw EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x2b1ae9fe of_pci_range_parser_one -EXPORT_SYMBOL_GPL vmlinux 0x2b1e7da3 edac_mc_del_mc -EXPORT_SYMBOL_GPL vmlinux 0x2b42e5ff get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x2b142b2d ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x2b2c598a usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2b2ed47d crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2b38f387 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x2b3a9fc9 crypto_register_alg EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b46dec5 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x2b4d34eb kvm_vcpu_gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x2b572e3b init_srcu_struct EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6505fc pwm_apply_state EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x2b7e14e0 vcap_tc_flower_handler_ip_usage -EXPORT_SYMBOL_GPL vmlinux 0x2b7e3ccf devm_phy_package_join -EXPORT_SYMBOL_GPL vmlinux 0x2b81e4b8 acpi_gpiochip_request_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x2b84a3d7 fwnode_graph_get_port_parent -EXPORT_SYMBOL_GPL vmlinux 0x2b86dc18 __clocksource_update_freq_scale EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +EXPORT_SYMBOL_GPL vmlinux 0x2b8eb33b serdev_device_wait_until_sent EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x2b9bf756 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x2ba90ced trace_event_buffer_commit -EXPORT_SYMBOL_GPL vmlinux 0x2baaa996 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x2baf285b ncsi_start_dev -EXPORT_SYMBOL_GPL vmlinux 0x2bb7ff4c gpiochip_line_is_open_drain -EXPORT_SYMBOL_GPL vmlinux 0x2bb8e1fe kvm_vcpu_read_guest_atomic -EXPORT_SYMBOL_GPL vmlinux 0x2bc6437e scsi_alloc_request -EXPORT_SYMBOL_GPL vmlinux 0x2bca733d filemap_migrate_folio -EXPORT_SYMBOL_GPL vmlinux 0x2bcc78b6 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x2b9a018e phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2ba1dcb4 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x2bb633e5 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x2bd03c30 devm_regulator_bulk_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2bd223ba vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x2bd675f3 regulator_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0x2bd8a8bb blk_fill_rwbs EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending -EXPORT_SYMBOL_GPL vmlinux 0x2beebee8 gpiochip_lock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x2bf03215 gpiochip_generic_free -EXPORT_SYMBOL_GPL vmlinux 0x2c038542 gpiod_set_transitory -EXPORT_SYMBOL_GPL vmlinux 0x2c18d268 kvm_get_kvm -EXPORT_SYMBOL_GPL vmlinux 0x2c198d56 blkg_conf_exit -EXPORT_SYMBOL_GPL vmlinux 0x2c19c641 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x2be3f414 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x2bed0909 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2bfc6e4f pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x2c0611b3 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x2c07ee0a pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x2c08be41 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x2c0b239c bgmac_enet_remove EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied -EXPORT_SYMBOL_GPL vmlinux 0x2c246ab7 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x2c25e418 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x2c29ef04 trace_array_put EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue -EXPORT_SYMBOL_GPL vmlinux 0x2c4885de irq_gc_unmask_enable_reg -EXPORT_SYMBOL_GPL vmlinux 0x2c595b03 irq_domain_set_hwirq_and_chip -EXPORT_SYMBOL_GPL vmlinux 0x2c6210ab ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x2c413633 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x2c41474b crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x2c5792d7 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x2c58502f ata_pci_bmdma_init EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c748ca9 devl_linecard_create EXPORT_SYMBOL_GPL vmlinux 0x2c750eb4 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x2c75f3f7 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x2c7831be devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x2c7b1994 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x2c7d207d fwnode_graph_get_endpoint_by_id EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c7fb60b nvmem_device_cell_write EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll EXPORT_SYMBOL_GPL vmlinux 0x2c834418 static_key_slow_inc -EXPORT_SYMBOL_GPL vmlinux 0x2c841aa4 imx_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x2c8b4278 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2c8da64f platform_bus EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types EXPORT_SYMBOL_GPL vmlinux 0x2c8e28ee phylink_ethtool_get_eee -EXPORT_SYMBOL_GPL vmlinux 0x2c94e5e2 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x2c8fbf61 fib6_new_table EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x2c9a66cb bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x2ca36657 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x2cb7e8bb dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x2cc2ae1e clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2cc2ed8c ohci_setup EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cc50d31 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x2cc8e125 __traceiter_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x2ccb56cb __tracepoint_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x2ccf0565 vcap_rule_find_keysets -EXPORT_SYMBOL_GPL vmlinux 0x2cd57158 mtk_clk_unregister_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x2ce07f89 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x2cde8cc2 fib_nh_common_init EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cf1b7b4 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2cfc81ab phylink_fwnode_phy_connect EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x2d1398af ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x2d0b4aa0 thermal_cooling_device_update +EXPORT_SYMBOL_GPL vmlinux 0x2d121a22 crypto_unregister_template EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x2d24ba6a dpbp_disable EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc -EXPORT_SYMBOL_GPL vmlinux 0x2d2cc594 virtqueue_add_inbuf_ctx EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current -EXPORT_SYMBOL_GPL vmlinux 0x2d343ea1 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x2d32413f pci_epc_linkup EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts -EXPORT_SYMBOL_GPL vmlinux 0x2d5807a6 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x2d576cc7 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x2d57a02f of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2d583117 blk_crypto_update_capabilities EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x2d864a68 __fsverity_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0x2d945208 led_trigger_blink -EXPORT_SYMBOL_GPL vmlinux 0x2db202c0 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x2d62c31e da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2d657944 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x2d68f13f fsverity_get_digest +EXPORT_SYMBOL_GPL vmlinux 0x2d696f1e pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x2d95a4d7 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2da34182 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x2da3615c tcp_cong_avoid_ai EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg -EXPORT_SYMBOL_GPL vmlinux 0x2dc73178 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x2dc99bdf dm_set_target_max_io_len -EXPORT_SYMBOL_GPL vmlinux 0x2dd75d54 __pci_hp_initialize -EXPORT_SYMBOL_GPL vmlinux 0x2defee50 clk_register_hisi_phase -EXPORT_SYMBOL_GPL vmlinux 0x2df849c2 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x2dda33ea crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2de893e6 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2def23fe devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x2df36fe4 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2dfc79a6 tpm_pcr_extend EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add -EXPORT_SYMBOL_GPL vmlinux 0x2e0c02b3 usb_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0x2e0f3ddc irq_gc_ack_set_bit -EXPORT_SYMBOL_GPL vmlinux 0x2e13afb1 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x2e0dd23d tty_port_default_client_ops EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace -EXPORT_SYMBOL_GPL vmlinux 0x2e31ce34 skcipher_walk_async -EXPORT_SYMBOL_GPL vmlinux 0x2e5f7a67 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x2e64cf64 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x2e54ad11 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x2e59150c of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2e5fa782 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x2e64300f crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2e64928a mptcp_pm_get_local_addr_max EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x2e6fa636 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x2e743d34 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x2e692b06 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2e70aee0 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2e77d565 switchdev_handle_fdb_event_to_device EXPORT_SYMBOL_GPL vmlinux 0x2e7887d2 nf_ct_set_closing -EXPORT_SYMBOL_GPL vmlinux 0x2e813319 pci_has_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0x2e8366ce tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x2e8777a4 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x2e889fee ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x2e8ad1e1 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x2e8ef1b9 pci_scan_child_bus EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova -EXPORT_SYMBOL_GPL vmlinux 0x2eb8d21f tty_kclose -EXPORT_SYMBOL_GPL vmlinux 0x2eb901ff regmap_test_bits EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x2ebe7081 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x2ec5c1ed tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x2ec6772c sk_msg_free_partial EXPORT_SYMBOL_GPL vmlinux 0x2eca6a19 phy_basic_t1s_p2mp_features_array -EXPORT_SYMBOL_GPL vmlinux 0x2ed0cdea debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x2ed32f80 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x2ecbf2e9 crypto_clone_shash EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0x2edaccb1 led_classdev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x2ee3d385 vring_notification_data -EXPORT_SYMBOL_GPL vmlinux 0x2ee4f04c nfs_ssc_unregister EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor -EXPORT_SYMBOL_GPL vmlinux 0x2efaac72 vp_modern_queue_vector -EXPORT_SYMBOL_GPL vmlinux 0x2efcecaa usb_autopm_get_interface_async -EXPORT_SYMBOL_GPL vmlinux 0x2f06d4ac kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x2f0bc08f alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x2ee90d7f l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2eededf2 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x2ef08549 ata_std_sched_eh EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0fff7f divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2f107b6c pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x2f120c79 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x2f188c0c dm_start_time_ns_from_clone EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0x2f1efc21 gpiod_get_raw_array_value -EXPORT_SYMBOL_GPL vmlinux 0x2f27d7a8 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x2f290a34 simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x2f36b1e0 cpufreq_cpu_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x2f3981f1 usb_check_int_endpoints -EXPORT_SYMBOL_GPL vmlinux 0x2f3ff476 fscrypt_prepare_lookup_partial +EXPORT_SYMBOL_GPL vmlinux 0x2f3270a0 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x2f3afb27 device_set_wakeup_capable EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec -EXPORT_SYMBOL_GPL vmlinux 0x2f4b2361 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2f48ce37 rcu_trc_cmpxchg_need_qs +EXPORT_SYMBOL_GPL vmlinux 0x2f498761 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x2f50b849 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f518420 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f5e0f6f usb_create_hcd EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x2f672a7b fat_search_long -EXPORT_SYMBOL_GPL vmlinux 0x2f700b67 phylink_mii_c22_pcs_config -EXPORT_SYMBOL_GPL vmlinux 0x2f72ffb8 irq_of_parse_and_map -EXPORT_SYMBOL_GPL vmlinux 0x2f93e4f8 iomap_readahead -EXPORT_SYMBOL_GPL vmlinux 0x2fa24bf4 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x2f65b1f0 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x2f67bed3 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x2f6cb04e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x2f7a0da3 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x2f9c1a45 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x2f9ec958 devl_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2faa98de phy_resolve_aneg_pause EXPORT_SYMBOL_GPL vmlinux 0x2faac966 pci_bridge_emul_init EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair -EXPORT_SYMBOL_GPL vmlinux 0x2faf57f8 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x2fb3090a xfrm_state_mtu -EXPORT_SYMBOL_GPL vmlinux 0x2fb396d3 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x2fb17272 blk_mq_freeze_queue_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj -EXPORT_SYMBOL_GPL vmlinux 0x2fd35f6d sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x2fde567f usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2fd2cf48 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x2fd2e698 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2fd32f16 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fe69f4b regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x2feafe51 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x2fed49e2 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2fef1133 devm_gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x2ffedb6b hv_free_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x3002e8c3 bpf_map_inc -EXPORT_SYMBOL_GPL vmlinux 0x300d92c1 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x2fffc11e bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x300211e3 platform_get_resource EXPORT_SYMBOL_GPL vmlinux 0x30110a29 phy_eee_cap1_features -EXPORT_SYMBOL_GPL vmlinux 0x3012e435 irq_domain_alloc_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x3022646e nl_table +EXPORT_SYMBOL_GPL vmlinux 0x302308fb sysfs_create_groups EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x302f2379 nvmem_add_cell_table EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id -EXPORT_SYMBOL_GPL vmlinux 0x30529463 of_prop_next_u32 -EXPORT_SYMBOL_GPL vmlinux 0x3054cc95 mmu_interval_notifier_insert_locked -EXPORT_SYMBOL_GPL vmlinux 0x305de2fd subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x305f6560 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x304000b2 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x30460b9b blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu -EXPORT_SYMBOL_GPL vmlinux 0x30626151 devm_nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x306da6c2 gpiod_direction_output_raw -EXPORT_SYMBOL_GPL vmlinux 0x307ba965 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x30900fce meson_clk_pcie_pll_ops -EXPORT_SYMBOL_GPL vmlinux 0x30950905 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x30a69769 regulator_map_voltage_iterate -EXPORT_SYMBOL_GPL vmlinux 0x30afca4c ehci_handshake -EXPORT_SYMBOL_GPL vmlinux 0x30b86f41 blkdev_report_zones -EXPORT_SYMBOL_GPL vmlinux 0x30c1c41b inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x30dd1faf sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x30def298 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x306c0cc7 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x306dceaa fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x308b3c1d devl_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x309dafcb dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x30b63906 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x30b67b7f devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x30bdfe7c dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x30ca0179 fsl_mc_bus_dpmcp_type EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address -EXPORT_SYMBOL_GPL vmlinux 0x30f93246 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x30e2f5f8 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x30e3f964 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x30f22961 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x30fd081d extcon_get_edev_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x31074732 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x3101b4f3 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x3104e479 device_del EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0x311a1d18 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x3113c502 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x3115443b spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x3118302d dpcon_get_attributes EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave -EXPORT_SYMBOL_GPL vmlinux 0x312e20a8 platform_get_irq_optional -EXPORT_SYMBOL_GPL vmlinux 0x3136077e pci_alloc_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0x31367afb da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x312e5014 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x3133ff4e fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single -EXPORT_SYMBOL_GPL vmlinux 0x3142d0fd bpf_prog_sub -EXPORT_SYMBOL_GPL vmlinux 0x31470bbe of_request_module -EXPORT_SYMBOL_GPL vmlinux 0x314f18ca led_blink_set -EXPORT_SYMBOL_GPL vmlinux 0x3151d6d9 dpcon_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x315aa8f9 fsl_mc_bus_dpdmux_type -EXPORT_SYMBOL_GPL vmlinux 0x316140bb cpufreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x316a0c3b __traceiter_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0x3174633e regulator_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x317d4fea crypto_comp_decompress -EXPORT_SYMBOL_GPL vmlinux 0x317df31d devm_regulator_register -EXPORT_SYMBOL_GPL vmlinux 0x31888ed9 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x3153b37a switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x31673b7b ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x316af276 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x316c69df blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x31740de1 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x31742989 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3191d852 fb_deferred_io_release EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook -EXPORT_SYMBOL_GPL vmlinux 0x31a5e9f7 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x3193dc21 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x31959276 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x319f68c6 crypto_hash_alg_has_setkey EXPORT_SYMBOL_GPL vmlinux 0x31a76d61 mas_destroy -EXPORT_SYMBOL_GPL vmlinux 0x31a8b578 wait_on_page_writeback EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x31b87a9b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x31ab0fb7 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x31b9ad41 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x31bed9c6 mtk_clk_gate_ops_no_setclr_inv EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports -EXPORT_SYMBOL_GPL vmlinux 0x31c8b4fd of_reserved_mem_device_init_by_idx -EXPORT_SYMBOL_GPL vmlinux 0x31c9cf1f pci_dev_lock -EXPORT_SYMBOL_GPL vmlinux 0x31cf3cde of_regulator_bulk_get_all EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d6c785 iomap_readahead EXPORT_SYMBOL_GPL vmlinux 0x31dc42f5 __tracepoint_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x31dc5fdc irq_alloc_generic_chip EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference -EXPORT_SYMBOL_GPL vmlinux 0x31e200d8 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode -EXPORT_SYMBOL_GPL vmlinux 0x31f4a579 phy_speed_down -EXPORT_SYMBOL_GPL vmlinux 0x31f84ff0 devl_resource_register -EXPORT_SYMBOL_GPL vmlinux 0x32036024 stmpe_block_read -EXPORT_SYMBOL_GPL vmlinux 0x320e6611 firmware_request_nowarn -EXPORT_SYMBOL_GPL vmlinux 0x321e346e k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x31fe9e2e thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x3209b590 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x320b761e clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x3227fc95 bus_for_each_drv EXPORT_SYMBOL_GPL vmlinux 0x32295715 dev_pm_opp_clear_config -EXPORT_SYMBOL_GPL vmlinux 0x322e0226 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x322aa3b0 copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x322dfeac ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x322e51f8 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x322f22f8 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x323b1ab4 mtk_clk_simple_probe +EXPORT_SYMBOL_GPL vmlinux 0x323d8049 hid_bpf_disconnect_device +EXPORT_SYMBOL_GPL vmlinux 0x324e97af wm8350_reg_write EXPORT_SYMBOL_GPL vmlinux 0x325f9d61 vcap_rule_add_key_u72 +EXPORT_SYMBOL_GPL vmlinux 0x32625562 cpufreq_dbs_governor_limits EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor -EXPORT_SYMBOL_GPL vmlinux 0x32724f72 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x3275c9d2 get_net_ns_by_fd EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0x3284603f proc_create_net_single_write -EXPORT_SYMBOL_GPL vmlinux 0x328462dd mmc_regulator_set_ocr -EXPORT_SYMBOL_GPL vmlinux 0x329d9f0e usb_autopm_get_interface_no_resume -EXPORT_SYMBOL_GPL vmlinux 0x32a37768 nvmem_add_one_cell -EXPORT_SYMBOL_GPL vmlinux 0x32aab5db crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x32877386 crypto_init_akcipher_ops_sig +EXPORT_SYMBOL_GPL vmlinux 0x328ce769 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x328e51e7 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3291b78d devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x329c262b regmap_reinit_cache EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x32b7f9fb i2c_adapter_depth EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c37540 shmem_truncate_range EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x32d0a806 fat_sync_inode -EXPORT_SYMBOL_GPL vmlinux 0x32d6e9af devm_regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0x32eda635 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x32f0721a fwnode_find_reference -EXPORT_SYMBOL_GPL vmlinux 0x32f4c765 dev_pm_qos_expose_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x32f79ed2 devl_port_health_reporter_create -EXPORT_SYMBOL_GPL vmlinux 0x32fba5b6 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x32da39a2 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x32f8a374 ncsi_unregister_dev EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x330b0e01 sbitmap_queue_min_shallow_depth -EXPORT_SYMBOL_GPL vmlinux 0x330e4095 mctrl_gpio_init EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3310c88f gfn_to_pfn EXPORT_SYMBOL_GPL vmlinux 0x331adc21 __tracepoint_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0x3330e5d5 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3321a4b1 ata_pci_shutdown_one EXPORT_SYMBOL_GPL vmlinux 0x33338211 rcuref_get_slowpath -EXPORT_SYMBOL_GPL vmlinux 0x333dc37f devl_trap_groups_register -EXPORT_SYMBOL_GPL vmlinux 0x3342543c ata_sas_async_probe -EXPORT_SYMBOL_GPL vmlinux 0x334a898d iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x33339f48 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3337dc10 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x333a859c qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x33437dee xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x334a7453 platform_msi_domain_free_irqs EXPORT_SYMBOL_GPL vmlinux 0x3352823d cppc_get_auto_sel_caps -EXPORT_SYMBOL_GPL vmlinux 0x3359a88d serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x335a5405 device_show_int EXPORT_SYMBOL_GPL vmlinux 0x335a613c mas_next_range EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x335eced2 ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x3376ff9e disk_uevent -EXPORT_SYMBOL_GPL vmlinux 0x337c5238 fuse_dax_cancel_work -EXPORT_SYMBOL_GPL vmlinux 0x33803bca devm_register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0x33a82e63 devfreq_event_enable_edev -EXPORT_SYMBOL_GPL vmlinux 0x33a91796 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x33b16332 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x33b4524c sched_setattr_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x33b60aee list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x33c6928b bdev_discard_alignment -EXPORT_SYMBOL_GPL vmlinux 0x33ed3df3 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x34144f06 device_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0x342fb31d dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x3364c047 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x337e6c2b trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x338e63a9 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x33a070ba simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x33a2a06e pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x33adf62f pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x33ba52b5 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x33bf4318 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x33c07962 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x33c0d70c netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33eb1d6c cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x33ebd11b debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x33ee8b39 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x3407aa03 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x3425b90e usb_deregister_dev EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x343d4077 usb_get_current_frame_number EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x34409930 devl_param_driverinit_value_get EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register -EXPORT_SYMBOL_GPL vmlinux 0x344614b2 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x3446e6fd irq_domain_reset_irq_data EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete -EXPORT_SYMBOL_GPL vmlinux 0x344c17fd pci_stop_and_remove_bus_device_locked EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui -EXPORT_SYMBOL_GPL vmlinux 0x3470e09e tty_put_char EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x3489c5ab wbc_detach_inode -EXPORT_SYMBOL_GPL vmlinux 0x348d3fa6 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x348aa843 ahci_kick_engine EXPORT_SYMBOL_GPL vmlinux 0x3491f3c7 inet_pernet_hashinfo_free +EXPORT_SYMBOL_GPL vmlinux 0x34933577 kvm_vcpu_yield_to EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x34b840ab blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x34bfa9b7 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x34c13a50 metadata_dst_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x34c46c9c scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x34cb3943 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x34b2f556 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x34b87df1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x34c1765e fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x34cbc864 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x34ce4cf3 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x34ce53cc dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x34cf7e58 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x34d56b59 ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x34dccfb2 context_tracking -EXPORT_SYMBOL_GPL vmlinux 0x34dda793 auxiliary_find_device -EXPORT_SYMBOL_GPL vmlinux 0x34e84699 vcap_get_rule EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x34f403bc usb_phy_set_charger_state -EXPORT_SYMBOL_GPL vmlinux 0x350eef44 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x34ecbea2 mmc_prepare_busy_cmd +EXPORT_SYMBOL_GPL vmlinux 0x34f3c3fc blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x34f60f96 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x34f8bc0e pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x34fbdc40 cpufreq_policy_transition_delay_us EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait -EXPORT_SYMBOL_GPL vmlinux 0x352a53e6 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x35105651 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x35165c28 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x35249a98 pm_generic_poweroff EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35375ac5 dev_pm_opp_get_supplies EXPORT_SYMBOL_GPL vmlinux 0x3542e347 phy_10gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x35497076 genphy_c45_pma_read_abilities -EXPORT_SYMBOL_GPL vmlinux 0x3556a23b debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x354fc72c devm_extcon_dev_allocate EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next -EXPORT_SYMBOL_GPL vmlinux 0x35614d5b dev_xdp_prog_count -EXPORT_SYMBOL_GPL vmlinux 0x3562a939 genphy_c45_pma_setup_forced EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356b0d9a __blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x357681e1 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x3578886f clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x357b75ce palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x35863ba9 fscrypt_fname_encrypted_size EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate -EXPORT_SYMBOL_GPL vmlinux 0x359b37f8 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider -EXPORT_SYMBOL_GPL vmlinux 0x35bcd714 irq_chip_release_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0x35be3624 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x35c03c14 adp5520_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0x35c5216a device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x35cb445c usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x35ad53d7 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x35b50f0f fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x35b676ab irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x35bb1d9f devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x35bca0e4 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x35d2dec7 bpf_prog_select_runtime EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x35d5aa55 ata_sas_tport_add -EXPORT_SYMBOL_GPL vmlinux 0x35e730f4 pci_ats_supported -EXPORT_SYMBOL_GPL vmlinux 0x35f4948c wm8350_block_read -EXPORT_SYMBOL_GPL vmlinux 0x35f96281 usb_enable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0x36101ca6 dev_pm_opp_get_supplies -EXPORT_SYMBOL_GPL vmlinux 0x361e4e45 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x35eb1719 __thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0x35ffe108 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x36057af4 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x3614bec9 gpiochip_populate_parent_fwspec_fourcell EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process -EXPORT_SYMBOL_GPL vmlinux 0x36359028 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x363e80eb powercap_unregister_control_type -EXPORT_SYMBOL_GPL vmlinux 0x36461a9c __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x364a518c pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x3639b18b shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x363a638f class_is_registered +EXPORT_SYMBOL_GPL vmlinux 0x36432f7c da903x_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll -EXPORT_SYMBOL_GPL vmlinux 0x366bc0e6 xhci_find_slot_id_by_port -EXPORT_SYMBOL_GPL vmlinux 0x366f35a5 dsa_stubs +EXPORT_SYMBOL_GPL vmlinux 0x365b3151 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x365fcd30 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x366721b6 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x366d6647 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x36763904 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x367c4155 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x368494de mtk_mux_clr_set_upd_ops EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs -EXPORT_SYMBOL_GPL vmlinux 0x3699275a __devm_reset_control_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x369c53b8 dev_pm_opp_is_turbo -EXPORT_SYMBOL_GPL vmlinux 0x369d6348 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x36947ca7 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x36956139 usb_root_hub_lost_power EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a09330 iov_iter_extract_pages EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0x36b016eb of_irq_to_resource_table -EXPORT_SYMBOL_GPL vmlinux 0x36b7596f sk_psock_tls_strp_read -EXPORT_SYMBOL_GPL vmlinux 0x36ceef25 class_register +EXPORT_SYMBOL_GPL vmlinux 0x36bcbf72 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x36bda214 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x36bf17dd fuse_get_unique EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash -EXPORT_SYMBOL_GPL vmlinux 0x36e1ee3b netlink_strict_get_check -EXPORT_SYMBOL_GPL vmlinux 0x370b9f4d gfn_to_pfn -EXPORT_SYMBOL_GPL vmlinux 0x370d6afb devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x36dbce46 badblocks_store EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x373703ab qcom_icc_xlate_extended -EXPORT_SYMBOL_GPL vmlinux 0x373c7d0c skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x37401c5a rdev_clear_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x37426865 skcipher_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x374b0fb1 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x3716f9c0 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x372d8778 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x3733911d regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3733a026 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x373877a7 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x3748a0fb rockchip_pcie_cfg_configuration_accesses EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read -EXPORT_SYMBOL_GPL vmlinux 0x3758e816 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x375c4b3b posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x37702a9f devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x37571280 kvm_write_guest EXPORT_SYMBOL_GPL vmlinux 0x3775c25b k3_udma_glue_tx_cppi5_to_dma_addr EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state -EXPORT_SYMBOL_GPL vmlinux 0x377df43e devfreq_cooling_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3786985c firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x377d6007 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3780299d pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x3787241e ata_scsi_queuecmd EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x3794c899 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x37a328de int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x37b87374 clk_hw_unregister_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x37c3dadf transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x37cef772 acpi_processor_get_performance_info -EXPORT_SYMBOL_GPL vmlinux 0x37d04551 hv_setup_dma_ops -EXPORT_SYMBOL_GPL vmlinux 0x37deb442 blkg_rwstat_recursive_sum -EXPORT_SYMBOL_GPL vmlinux 0x37eb786b adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x37cff142 pci_p2pmem_find_many +EXPORT_SYMBOL_GPL vmlinux 0x37f68dae dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x37f99ed5 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x37fb3720 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy -EXPORT_SYMBOL_GPL vmlinux 0x38036387 xdp_rxq_info_unused EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x3815d422 __traceiter_br_fdb_add EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection -EXPORT_SYMBOL_GPL vmlinux 0x383d7ea8 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x383e0d01 blk_mq_freeze_queue_wait -EXPORT_SYMBOL_GPL vmlinux 0x3846ada8 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x383a8af2 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x38466e9f nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x384efc80 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x385c439d fwnode_handle_put EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write -EXPORT_SYMBOL_GPL vmlinux 0x386bed0b regmap_async_complete_cb -EXPORT_SYMBOL_GPL vmlinux 0x386dd8aa pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x386827fe pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x38748cd9 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x388d91bd regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x3874c847 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x387cab74 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3894b4a4 dev_pm_opp_find_freq_exact EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table -EXPORT_SYMBOL_GPL vmlinux 0x38c01ad0 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x38c0c860 mtk_clk_unregister_composites EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x38c67a77 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x38c66ce1 pm_relax EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e424f8 meson_pmx_get_groups EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0x38f1e18b ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x38e78971 irq_chip_retrigger_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x38f704de dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL vmlinux 0x3911382a gfn_to_page -EXPORT_SYMBOL_GPL vmlinux 0x39171e57 badblocks_init -EXPORT_SYMBOL_GPL vmlinux 0x392a34e7 fuse_init_fs_context_submount -EXPORT_SYMBOL_GPL vmlinux 0x3932627f iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x38f949a1 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x38fd3436 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x391159c2 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x39146ba7 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x3924a82a show_class_attr_string EXPORT_SYMBOL_GPL vmlinux 0x3934db83 pci_bridge_emul_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x393899ad fuse_conn_destroy -EXPORT_SYMBOL_GPL vmlinux 0x393b35cc mmu_notifier_get_locked -EXPORT_SYMBOL_GPL vmlinux 0x394dcd68 sk_msg_free_partial -EXPORT_SYMBOL_GPL vmlinux 0x395040e6 fsverity_ioctl_read_metadata -EXPORT_SYMBOL_GPL vmlinux 0x3953ce93 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x39466093 devl_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x394888a9 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x3951fdb7 bpf_verifier_log_write EXPORT_SYMBOL_GPL vmlinux 0x3958ccb6 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x3958e5ef devlink_priv EXPORT_SYMBOL_GPL vmlinux 0x395b8b90 sbitmap_prepare_to_wait EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0x3980345c clk_bulk_get_optional EXPORT_SYMBOL_GPL vmlinux 0x3987b753 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x398ea950 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x398fd6fb dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x39995eaa irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x39a6b17d serdev_device_break_ctl EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string -EXPORT_SYMBOL_GPL vmlinux 0x39ad2a66 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x39afda41 nvmem_cell_read_variable_le_u64 EXPORT_SYMBOL_GPL vmlinux 0x39b24a64 imx_fracn_gppll_integer -EXPORT_SYMBOL_GPL vmlinux 0x39b672fc extcon_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x39bc3b9b iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x39c03678 iommu_alloc_resv_region EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find -EXPORT_SYMBOL_GPL vmlinux 0x39d00227 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x39db678c fat_time_unix2fat EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x39e0adbc pm_runtime_force_resume EXPORT_SYMBOL_GPL vmlinux 0x39e3d714 vcap_add_rule -EXPORT_SYMBOL_GPL vmlinux 0x39f09e36 dev_pm_domain_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0x39f19af0 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x39f481fc dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39e54bad devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x39ead978 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x39f5a634 usb_reset_device EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink -EXPORT_SYMBOL_GPL vmlinux 0x39febaa8 fuse_direct_io -EXPORT_SYMBOL_GPL vmlinux 0x3a090ab5 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x3a106ded dax_finish_sync_fault -EXPORT_SYMBOL_GPL vmlinux 0x3a12d122 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3a04efad crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x3a08d1fc __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3a0d99ed devm_init_badblocks EXPORT_SYMBOL_GPL vmlinux 0x3a15013b ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x3a212992 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x3a24ea58 ata_do_set_mode EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect -EXPORT_SYMBOL_GPL vmlinux 0x3a2a68f3 __devm_rtc_register_device -EXPORT_SYMBOL_GPL vmlinux 0x3a2fa5c1 sdio_retune_crc_disable -EXPORT_SYMBOL_GPL vmlinux 0x3a36be1d relay_subbufs_consumed -EXPORT_SYMBOL_GPL vmlinux 0x3a3e8f0e crypto_sig_set_pubkey -EXPORT_SYMBOL_GPL vmlinux 0x3a43cea1 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3a2c89fb device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3a2fb973 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x3a330cdd of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x3a4068ea task_active_pid_ns EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked -EXPORT_SYMBOL_GPL vmlinux 0x3a5dd2e6 k3_udma_glue_request_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x3a5e90f7 usb_get_maximum_ssp_rate -EXPORT_SYMBOL_GPL vmlinux 0x3a5f4a3c irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x3a6a6ccd serdev_device_close -EXPORT_SYMBOL_GPL vmlinux 0x3a7202e5 ata_wait_register -EXPORT_SYMBOL_GPL vmlinux 0x3a783e48 dev_pm_opp_get_max_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0x3a7952a0 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x3a613294 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3a61a747 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3a6b75da platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x3a6e6f37 devl_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x3a6f7040 mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0x3a746714 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3a88a4ec iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a898083 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a8ce021 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3a96787a fuse_abort_conn EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x3aa3f439 ata_bmdma_port_start -EXPORT_SYMBOL_GPL vmlinux 0x3ab87e33 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3aa0a09d fscrypt_context_for_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x3abda4a7 iommu_domain_alloc EXPORT_SYMBOL_GPL vmlinux 0x3abdc17a cper_dimm_err_location EXPORT_SYMBOL_GPL vmlinux 0x3abe6fe5 phylink_validate_mask_caps -EXPORT_SYMBOL_GPL vmlinux 0x3abe80c1 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3ac1612d rio_mport_read_config_16 EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init -EXPORT_SYMBOL_GPL vmlinux 0x3ac7d169 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3ac8bbd2 rio_get_comptag EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource -EXPORT_SYMBOL_GPL vmlinux 0x3ad4b8c1 of_property_read_string_helper -EXPORT_SYMBOL_GPL vmlinux 0x3ad580ab extcon_set_property -EXPORT_SYMBOL_GPL vmlinux 0x3ae40a5f xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x3ad3b559 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x3adb98f8 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x3ae1c185 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3ae39c79 regulator_set_soft_start_regmap EXPORT_SYMBOL_GPL vmlinux 0x3ae65f46 netdev_cmd_to_name -EXPORT_SYMBOL_GPL vmlinux 0x3af4109e meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x3af0b6d8 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3af274d0 devm_regulator_bulk_get_enable +EXPORT_SYMBOL_GPL vmlinux 0x3af7cd5f pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b00124a usb_ep0_reinit EXPORT_SYMBOL_GPL vmlinux 0x3b03208d power_supply_battery_info_has_prop -EXPORT_SYMBOL_GPL vmlinux 0x3b0e1f59 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x3b22c817 regulator_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b292871 kvm_read_guest_offset_cached -EXPORT_SYMBOL_GPL vmlinux 0x3b29af53 usb_get_from_anchor -EXPORT_SYMBOL_GPL vmlinux 0x3b450d8c umd_load_blob -EXPORT_SYMBOL_GPL vmlinux 0x3b46adad __get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x3b4a6808 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x3b10d5be gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3b185459 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x3b26ef1f do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x3b32ee75 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x3b36bc3d sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x3b3b69e8 icc_link_create EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release -EXPORT_SYMBOL_GPL vmlinux 0x3b4ceed3 cpufreq_register_governor -EXPORT_SYMBOL_GPL vmlinux 0x3b5877ce crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x3b5dd99a phy_led_triggers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3b65b2db __traceiter_br_mdb_full -EXPORT_SYMBOL_GPL vmlinux 0x3b67e3d7 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x3b4f54fe iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x3b5c5dd4 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x3b617c9d regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x3b678a12 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3b6b2863 amba_bustype EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode -EXPORT_SYMBOL_GPL vmlinux 0x3b7fe60e dev_pm_clear_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x3b9521c9 fat_setattr -EXPORT_SYMBOL_GPL vmlinux 0x3b97d3fc xenbus_dev_fatal -EXPORT_SYMBOL_GPL vmlinux 0x3b9df481 meson_pinctrl_probe -EXPORT_SYMBOL_GPL vmlinux 0x3b9f392a __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x3b9c54ec skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x3b9ca37f rtnl_af_unregister EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset -EXPORT_SYMBOL_GPL vmlinux 0x3bc22e7b class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x3bc2e858 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x3ba58559 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x3badf068 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x3bd863d0 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x3bd8a3ee fscrypt_ioctl_remove_key EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdb644e mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x3be0075f nl_table EXPORT_SYMBOL_GPL vmlinux 0x3be200ce phy_10gbit_fec_features -EXPORT_SYMBOL_GPL vmlinux 0x3beceb3e dst_cache_get_ip4 EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3bf3399f inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x3bf41ab3 firmware_request_nowarn EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c0e98f1 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3c103d31 arm64_mm_context_put EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq -EXPORT_SYMBOL_GPL vmlinux 0x3c1b96d0 pinctrl_generic_get_group_count EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check EXPORT_SYMBOL_GPL vmlinux 0x3c241c2c public_key_free -EXPORT_SYMBOL_GPL vmlinux 0x3c2a1147 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3c2a5788 fwnode_property_present EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply -EXPORT_SYMBOL_GPL vmlinux 0x3c30631a __traceiter_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x3c30924d devm_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x3c37e5ef ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x3c3886d9 __sk_flush_backlog +EXPORT_SYMBOL_GPL vmlinux 0x3c3c68c1 blkcg_policy_register EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0x3c4589e4 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x3c5bf7b9 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x3c4a126d regulator_notifier_call_chain EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c63d035 power_supply_get_drvdata EXPORT_SYMBOL_GPL vmlinux 0x3c6785b7 block_pr_type_to_scsi EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable -EXPORT_SYMBOL_GPL vmlinux 0x3c7494e8 misc_cg_try_charge -EXPORT_SYMBOL_GPL vmlinux 0x3c79370e device_move -EXPORT_SYMBOL_GPL vmlinux 0x3c810671 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x3c700efa rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x3c767275 mmc_regulator_disable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x3c769bb5 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x3c7ca14f usb_clear_halt EXPORT_SYMBOL_GPL vmlinux 0x3c819c45 arch_apei_report_mem_error -EXPORT_SYMBOL_GPL vmlinux 0x3c8db9ce kvm_put_kvm -EXPORT_SYMBOL_GPL vmlinux 0x3c9fc427 fwnode_get_name -EXPORT_SYMBOL_GPL vmlinux 0x3ca075ce imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0x3c8f21bb cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x3c9065c4 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3c9d8f0e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3ca56b16 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x3ca6084c mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x3ca6f119 crypto_grab_ahash EXPORT_SYMBOL_GPL vmlinux 0x3cb88a62 register_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0x3cbdb82d inet6_sock_destruct -EXPORT_SYMBOL_GPL vmlinux 0x3cc16ad1 mddev_init -EXPORT_SYMBOL_GPL vmlinux 0x3cc81061 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd08309 mptcp_pm_get_subflows_max EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk -EXPORT_SYMBOL_GPL vmlinux 0x3cd8a842 tegra_mc_write_emem_configuration -EXPORT_SYMBOL_GPL vmlinux 0x3ce33a23 kvm_irq_has_notifier -EXPORT_SYMBOL_GPL vmlinux 0x3cf5a566 ima_file_check -EXPORT_SYMBOL_GPL vmlinux 0x3cfa704b pci_enable_pasid -EXPORT_SYMBOL_GPL vmlinux 0x3d0a928c gfn_to_pfn_prot -EXPORT_SYMBOL_GPL vmlinux 0x3d114039 ata_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x3d183231 phy_create_lookup -EXPORT_SYMBOL_GPL vmlinux 0x3d1c2bf3 of_phandle_args_to_fwspec -EXPORT_SYMBOL_GPL vmlinux 0x3d241d8b kthread_mod_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x3d2c7a0c device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3cdcfa7b ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x3ce93d9a call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x3ced8cc4 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3d02c00a dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x3d049c19 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x3d0dc1ae ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x3d109940 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x3d1d3dc7 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x3d1e330a devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3d29fe2e serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x3d2a409d clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x3d334561 blk_insert_cloned_request EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end -EXPORT_SYMBOL_GPL vmlinux 0x3d43c890 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x3d39b837 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x3d44226b dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x3d507975 irq_generic_chip_ops EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check -EXPORT_SYMBOL_GPL vmlinux 0x3d5ffe16 usb_anchor_urb -EXPORT_SYMBOL_GPL vmlinux 0x3d693c0e housekeeping_affine -EXPORT_SYMBOL_GPL vmlinux 0x3d6c2ab8 bpf_warn_invalid_xdp_action -EXPORT_SYMBOL_GPL vmlinux 0x3d7d955d spi_split_transfers_maxwords +EXPORT_SYMBOL_GPL vmlinux 0x3d5847f2 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x3d6cc9c8 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x3d764970 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x3d7920d7 md_stop_writes EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size -EXPORT_SYMBOL_GPL vmlinux 0x3d8bf416 ata_sas_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon -EXPORT_SYMBOL_GPL vmlinux 0x3da64913 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x3d9e6e3b pci_epc_mem_alloc_addr EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled -EXPORT_SYMBOL_GPL vmlinux 0x3daead15 vcap_addr_keysets -EXPORT_SYMBOL_GPL vmlinux 0x3dba9dff sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x3dbef348 dev_pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x3dd5c459 regulator_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x3dd5c773 fwnode_count_parents -EXPORT_SYMBOL_GPL vmlinux 0x3de21404 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3dabc7ee msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x3db218e3 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x3db2d67f free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x3db5d432 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dc42101 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x3dcb0418 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dcec4c5 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x3dd247af __mmc_poll_for_busy EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x3df18a20 bus_remove_file EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global -EXPORT_SYMBOL_GPL vmlinux 0x3dfa57a2 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x3dff3ab0 dma_opt_mapping_size EXPORT_SYMBOL_GPL vmlinux 0x3e0a087f inet_hashinfo2_init_mod -EXPORT_SYMBOL_GPL vmlinux 0x3e0e7d07 serial8250_em485_start_tx -EXPORT_SYMBOL_GPL vmlinux 0x3e0fd2c2 regulator_put -EXPORT_SYMBOL_GPL vmlinux 0x3e116556 pci_p2pmem_alloc_sgl -EXPORT_SYMBOL_GPL vmlinux 0x3e1278e8 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x3e0eb0fa dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x3e0f821f sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3e1591b9 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3e25289e netdev_rx_handler_register EXPORT_SYMBOL_GPL vmlinux 0x3e31f3dc cg_regs_dummy +EXPORT_SYMBOL_GPL vmlinux 0x3e3ce5e0 irq_chip_mask_ack_parent EXPORT_SYMBOL_GPL vmlinux 0x3e411ace sfp_select_interface -EXPORT_SYMBOL_GPL vmlinux 0x3e4f2279 bpf_trace_run6 -EXPORT_SYMBOL_GPL vmlinux 0x3e517f50 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x3e48e317 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x3e566797 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3e5c1fc1 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x3e69ee06 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3e6c3f3f ata_sff_pause EXPORT_SYMBOL_GPL vmlinux 0x3e6d9d64 __tracepoint_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x3e7699d2 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x3e867f78 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x3e7ce4fe firmware_request_platform EXPORT_SYMBOL_GPL vmlinux 0x3e903560 ip_tunnel_netlink_encap_parms -EXPORT_SYMBOL_GPL vmlinux 0x3e9c5ae6 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x3e9c20c9 phy_pm_runtime_forbid EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup -EXPORT_SYMBOL_GPL vmlinux 0x3ebf5523 put_device -EXPORT_SYMBOL_GPL vmlinux 0x3ecbab3b shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x3ed771c5 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x3ea5b8a7 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x3eb53f94 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x3ec859fc ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x3ed16659 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ed423b4 wakeup_source_add EXPORT_SYMBOL_GPL vmlinux 0x3edb086b pse_control_put +EXPORT_SYMBOL_GPL vmlinux 0x3ee15b98 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x3ee44ecb gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3ee883f3 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x3eef5798 pwm_request_from_chip EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x3f012579 pcie_port_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x3f129ae8 sata_std_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x3f17cc62 scmi_protocol_unregister -EXPORT_SYMBOL_GPL vmlinux 0x3f29f750 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x3ef82759 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x3f0d6cd9 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3f1f4645 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3f262dac led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x3f2be16b debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x3f32ec43 mtk_clk_register_cpumuxes +EXPORT_SYMBOL_GPL vmlinux 0x3f39690d sysfs_remove_group EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset -EXPORT_SYMBOL_GPL vmlinux 0x3f566c4b crypto_alloc_tfm_node -EXPORT_SYMBOL_GPL vmlinux 0x3f59ca7f dax_recovery_write -EXPORT_SYMBOL_GPL vmlinux 0x3f6d5aa6 devm_irq_domain_create_sim -EXPORT_SYMBOL_GPL vmlinux 0x3f7d6a8e ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3f756d5f stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3f804f8f kthread_queue_work EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive -EXPORT_SYMBOL_GPL vmlinux 0x3fab4231 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x3f84d19a kvm_vcpu_write_guest_page EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index -EXPORT_SYMBOL_GPL vmlinux 0x3fbfa55d blk_mq_quiesce_queue_nowait -EXPORT_SYMBOL_GPL vmlinux 0x3fc3fcef ata_pio_need_iordy -EXPORT_SYMBOL_GPL vmlinux 0x3fccb6a5 usb_disable_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x3fd0c291 ata_host_suspend -EXPORT_SYMBOL_GPL vmlinux 0x3fda4fea xfrm_audit_policy_add -EXPORT_SYMBOL_GPL vmlinux 0x3fdb3ba8 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x3fae7ee3 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3fd299fc cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3fd38160 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x3fe33b50 __kernel_write EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer -EXPORT_SYMBOL_GPL vmlinux 0x3fe43e7d cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x3feb218f fscrypt_mergeable_bio -EXPORT_SYMBOL_GPL vmlinux 0x3ff11718 crypto_clone_ahash EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0x3ffb996e mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x3ffc4441 compat_only_sysfs_link_entry_to_kobj EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x4002e90f sb800_prefetch -EXPORT_SYMBOL_GPL vmlinux 0x40066ef7 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x4007c512 fuse_conn_get EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x400ea28c platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x400ef3f2 acpi_gpiochip_free_interrupts -EXPORT_SYMBOL_GPL vmlinux 0x401ea19e acpi_dma_request_slave_chan_by_index -EXPORT_SYMBOL_GPL vmlinux 0x4023260f vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x4016da16 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x4019c81e driver_register EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups EXPORT_SYMBOL_GPL vmlinux 0x402b2591 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x402bda0d blkcg_get_fc_appid -EXPORT_SYMBOL_GPL vmlinux 0x402dedd3 msg_zerocopy_realloc -EXPORT_SYMBOL_GPL vmlinux 0x402eefab usb_wakeup_enabled_descendants -EXPORT_SYMBOL_GPL vmlinux 0x4030303b task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x403469d9 mmu_interval_notifier_remove EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403ebf14 device_create EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one -EXPORT_SYMBOL_GPL vmlinux 0x4042abf2 rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain -EXPORT_SYMBOL_GPL vmlinux 0x4046faee md_start -EXPORT_SYMBOL_GPL vmlinux 0x405d70f4 nfs42_ssc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4060ed62 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x404eea6c of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x4052729f icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x4058059f devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x406258a2 pm_generic_resume EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution -EXPORT_SYMBOL_GPL vmlinux 0x406f1e9d spi_finalize_current_message EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4076a8a7 fsl_mc_cleanup_irq_pool EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout -EXPORT_SYMBOL_GPL vmlinux 0x407f8103 regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0x40875a43 xenbus_switch_state -EXPORT_SYMBOL_GPL vmlinux 0x40901ca2 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x4088adae rio_local_set_device_id EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free -EXPORT_SYMBOL_GPL vmlinux 0x409f69ed do_unregister_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x40a0accd nvdimm_provider_data -EXPORT_SYMBOL_GPL vmlinux 0x40ac9492 dmaengine_desc_attach_metadata -EXPORT_SYMBOL_GPL vmlinux 0x40b36ee7 ahci_platform_disable_regulators -EXPORT_SYMBOL_GPL vmlinux 0x40b46631 devm_hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x40b4b177 fuse_fill_super_common -EXPORT_SYMBOL_GPL vmlinux 0x40bbf576 gfn_to_memslot -EXPORT_SYMBOL_GPL vmlinux 0x40c83bdb __scsi_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x40d49d87 generic_device_group -EXPORT_SYMBOL_GPL vmlinux 0x40d5afa8 devfreq_event_disable_edev -EXPORT_SYMBOL_GPL vmlinux 0x40d6c5b0 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x40a85c4d devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0x40aa1597 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x40b205fd devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x40bb2139 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x40bb9bc6 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x40bdd1da ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x40be288f syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x40bff229 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x40c330e1 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x40dad7a9 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x40de4dbd rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x40df61a7 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x40e4ad3d kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x40eb01f5 folio_wait_stable EXPORT_SYMBOL_GPL vmlinux 0x40f028b3 zynqmp_pm_set_rpu_mode EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put -EXPORT_SYMBOL_GPL vmlinux 0x40f20f3e fib_nl_newrule -EXPORT_SYMBOL_GPL vmlinux 0x40f730e5 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x40f6327c tpm_tis_core_init EXPORT_SYMBOL_GPL vmlinux 0x40f8b94e ring_buffer_iter_dropped EXPORT_SYMBOL_GPL vmlinux 0x40f8bd4e klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x40fcce31 vp_modern_set_status EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x4103f34a xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x4108b29f dev_pm_opp_find_bw_floor -EXPORT_SYMBOL_GPL vmlinux 0x41171d6a pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x4107b700 failover_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x410ef816 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x411dacba blk_revalidate_disk_zones EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu -EXPORT_SYMBOL_GPL vmlinux 0x413afe0f acpi_dma_request_slave_chan_by_name -EXPORT_SYMBOL_GPL vmlinux 0x413bb456 register_btf_kfunc_id_set -EXPORT_SYMBOL_GPL vmlinux 0x413bbba9 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x4144c6a7 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings -EXPORT_SYMBOL_GPL vmlinux 0x4167f928 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x416bcd2a devm_of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0x417dc499 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x41611314 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x41631de2 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x416f9c4c debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0x41745a0f dma_resv_set_deadline EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x4184c343 ata_bmdma_error_handler -EXPORT_SYMBOL_GPL vmlinux 0x418713f4 strp_stop EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer -EXPORT_SYMBOL_GPL vmlinux 0x419103b2 dm_internal_resume_fast -EXPORT_SYMBOL_GPL vmlinux 0x419bdbc9 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4197329c led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x419d58d5 sprd_pinctrl_remove EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop -EXPORT_SYMBOL_GPL vmlinux 0x41a8eba1 mctp_unregister_netdev -EXPORT_SYMBOL_GPL vmlinux 0x41a99bc1 dax_inode -EXPORT_SYMBOL_GPL vmlinux 0x41b7733b divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x419ea084 rcu_tasks_trace_qs_blkd +EXPORT_SYMBOL_GPL vmlinux 0x419f77b3 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x41a8bd91 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x41a95b79 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x41b30246 __virtqueue_break EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bbb791 of_property_read_u64_index EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41bd0519 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x41c0cf76 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x41c2395b alloc_page_buffers EXPORT_SYMBOL_GPL vmlinux 0x41c36b9b __tracepoint_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x41c721dc rio_release_inb_pwrite -EXPORT_SYMBOL_GPL vmlinux 0x41c74f15 mddev_resume -EXPORT_SYMBOL_GPL vmlinux 0x41cce982 fscrypt_fname_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x41cebeec noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x41e97281 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x41cddf51 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x41d1307a __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x41d13171 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x41d7960f devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x41ec3646 devfreq_event_disable_edev EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x41ed50d2 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x41fc15c3 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x41ffa531 debugfs_write_file_bool EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x42046de6 usb_put_intf EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x421ae916 pm_generic_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x421d0ad5 of_clk_hw_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x422a8afe kiocb_modified -EXPORT_SYMBOL_GPL vmlinux 0x422ad298 xdp_set_features_flag -EXPORT_SYMBOL_GPL vmlinux 0x423cf9bd sfp_bus_find_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x423ffcca usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x421a4f74 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0x42242626 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x422448b2 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42357a9e fib_rules_dump EXPORT_SYMBOL_GPL vmlinux 0x424bd52e srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x424c19b3 blk_mq_freeze_queue_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x424f09b5 arm64_mm_context_get -EXPORT_SYMBOL_GPL vmlinux 0x4259da96 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x425def3c __rio_local_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0x4260d076 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x42510b5e mtk_clk_pdev_probe +EXPORT_SYMBOL_GPL vmlinux 0x425ca0d8 led_trigger_rename_static EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x426c360a device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x42708c23 lwtunnel_build_state EXPORT_SYMBOL_GPL vmlinux 0x4278d56a phylink_expects_phy +EXPORT_SYMBOL_GPL vmlinux 0x427e7cbd inet_ctl_sock_create EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x428b78a5 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x42991017 device_set_of_node_from_dev EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode -EXPORT_SYMBOL_GPL vmlinux 0x42a888f0 ata_pci_sff_init_one -EXPORT_SYMBOL_GPL vmlinux 0x42b091c1 platform_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x42b25291 clk_regmap_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x42b672df perf_tp_event -EXPORT_SYMBOL_GPL vmlinux 0x42b83837 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x42a829e3 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x42b1a13b irq_chip_set_type_parent EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x42d29bae pwm_get_chip_data EXPORT_SYMBOL_GPL vmlinux 0x42e732cb vcap_rule_add_key_u128 +EXPORT_SYMBOL_GPL vmlinux 0x42ec3dd0 folio_wait_writeback EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs -EXPORT_SYMBOL_GPL vmlinux 0x42fae6a8 bpf_offload_dev_create -EXPORT_SYMBOL_GPL vmlinux 0x4301361b __trace_array_puts -EXPORT_SYMBOL_GPL vmlinux 0x4307cb07 cpu_subsys EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event -EXPORT_SYMBOL_GPL vmlinux 0x4312f542 regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0x431f3fcf rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x430dfe66 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x43112e81 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x43200028 paste_selection EXPORT_SYMBOL_GPL vmlinux 0x4320c355 imx_clk_hw_frac_pll -EXPORT_SYMBOL_GPL vmlinux 0x432fcbe4 __nf_ip6_route -EXPORT_SYMBOL_GPL vmlinux 0x4334ef07 iomap_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x4345e28d pci_epf_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x4352d2f5 __regmap_init_mmio_clk -EXPORT_SYMBOL_GPL vmlinux 0x4354d407 meson_clk_pll_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x43579291 gpiod_get_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x435a091c onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x432896d0 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x432b41fc max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x432d7769 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x432e900a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4354faa2 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x4368ca89 pci_ecam_free EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit -EXPORT_SYMBOL_GPL vmlinux 0x4371461f amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x436faf4f kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled -EXPORT_SYMBOL_GPL vmlinux 0x438b9ef5 rio_enable_rx_tx_port EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get -EXPORT_SYMBOL_GPL vmlinux 0x43953965 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x4395e018 ata_pci_remove_one -EXPORT_SYMBOL_GPL vmlinux 0x43a69ee9 devl_port_register_with_ops +EXPORT_SYMBOL_GPL vmlinux 0x439270ff virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x43a4cac6 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x43a7ae12 iommu_device_claim_dma_owner EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x43b0c7bf vcap_port_debugfs -EXPORT_SYMBOL_GPL vmlinux 0x43b7b7fb ahci_dev_classify -EXPORT_SYMBOL_GPL vmlinux 0x43c5398f dev_pm_opp_of_get_opp_desc_node -EXPORT_SYMBOL_GPL vmlinux 0x43c7ac39 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x43ab0825 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x43adebb3 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x43b284c6 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x43c136da ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x43c86f26 unregister_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x43caa7c0 regmap_irq_get_irq_reg_linear -EXPORT_SYMBOL_GPL vmlinux 0x43cc7a41 failover_slave_unregister -EXPORT_SYMBOL_GPL vmlinux 0x43cd868f devl_dpipe_table_resource_set -EXPORT_SYMBOL_GPL vmlinux 0x43cfcb0b ptp_classify_raw -EXPORT_SYMBOL_GPL vmlinux 0x43d6403c nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x43dfec2a crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x43efb3f2 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x43cbec4b driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x43cdd298 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x43d4a5f4 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x43d55deb handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x43ef12e6 fib_nl_newrule EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43f93d9c usb_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs -EXPORT_SYMBOL_GPL vmlinux 0x4405a9ba scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x440d83fc sdio_signal_irq -EXPORT_SYMBOL_GPL vmlinux 0x440e9bd3 acpi_subsys_suspend -EXPORT_SYMBOL_GPL vmlinux 0x4410245a usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x44041e20 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x44065af4 rockchip_clk_register_branches EXPORT_SYMBOL_GPL vmlinux 0x4413f461 zynqmp_pm_request_wake -EXPORT_SYMBOL_GPL vmlinux 0x44207165 gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0x4422ac24 zynqmp_pm_set_tapdelay_bypass +EXPORT_SYMBOL_GPL vmlinux 0x442adde7 devm_regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4430bb43 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4437f989 fscrypt_ioctl_get_key_status EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x443ab6e1 da9052_adc_manual_read -EXPORT_SYMBOL_GPL vmlinux 0x4440a3aa dev_pm_opp_get_required_pstate -EXPORT_SYMBOL_GPL vmlinux 0x4440fef7 pci_epc_mem_exit -EXPORT_SYMBOL_GPL vmlinux 0x4444e427 devm_pci_epc_destroy -EXPORT_SYMBOL_GPL vmlinux 0x4445920a gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x443f23b6 nd_cmd_in_size EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4451172d da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445e995d ahci_save_initial_config EXPORT_SYMBOL_GPL vmlinux 0x4471a51d vhost_task_stop EXPORT_SYMBOL_GPL vmlinux 0x4475dcaf hv_nested -EXPORT_SYMBOL_GPL vmlinux 0x447d5e26 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x447f74fa spi_mem_get_name EXPORT_SYMBOL_GPL vmlinux 0x447f809c imx_clk_hw_pllv3 +EXPORT_SYMBOL_GPL vmlinux 0x4480196f mmc_cmdq_disable EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x448ad53a fsl_mc_bus_dpdcei_type -EXPORT_SYMBOL_GPL vmlinux 0x44990758 of_i2c_get_board_info -EXPORT_SYMBOL_GPL vmlinux 0x449bc271 dpbp_open -EXPORT_SYMBOL_GPL vmlinux 0x44a77801 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4485839a tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x44890084 of_pci_address_to_resource EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op -EXPORT_SYMBOL_GPL vmlinux 0x44ae9fa4 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x44bab69b driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x44ac1872 serial8250_do_set_mctrl EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout EXPORT_SYMBOL_GPL vmlinux 0x44c10a52 kvfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x44c276c9 regulator_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x44c30ef3 regmap_register_patch -EXPORT_SYMBOL_GPL vmlinux 0x44c8ebca ohci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x44c94590 fat_remove_entries EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str -EXPORT_SYMBOL_GPL vmlinux 0x44d86f84 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x44d8858f sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x44cfe116 ata_scsi_port_error_handler EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats EXPORT_SYMBOL_GPL vmlinux 0x44e58976 __tracepoint_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x44f755ab bpf_trace_run3 -EXPORT_SYMBOL_GPL vmlinux 0x44f82977 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x44f02734 usb_disable_xhci_ports EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen -EXPORT_SYMBOL_GPL vmlinux 0x450b422b fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x450b92d8 debugfs_real_fops EXPORT_SYMBOL_GPL vmlinux 0x451618d0 sbitmap_del_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x45171ddc uart_try_toggle_sysrq -EXPORT_SYMBOL_GPL vmlinux 0x45270002 of_property_read_variable_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x452ac3ae pm_wakeup_ws_event -EXPORT_SYMBOL_GPL vmlinux 0x452d062b msi_domain_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x45197dab __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x45258c10 scsi_block_targets EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault -EXPORT_SYMBOL_GPL vmlinux 0x45335196 bpf_offload_dev_netdev_register -EXPORT_SYMBOL_GPL vmlinux 0x454566ff of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x4537e59c rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x454ef337 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x45533296 dev_pm_qos_expose_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455c2a5b rpi_firmware_find_node EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister -EXPORT_SYMBOL_GPL vmlinux 0x456a4d84 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x456fb077 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x45729a69 umd_unload_blob EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x458cd60e regulator_disable_regmap -EXPORT_SYMBOL_GPL vmlinux 0x4590b608 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x45926341 cros_ec_get_sensor_count -EXPORT_SYMBOL_GPL vmlinux 0x459a4df4 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x4578a7e8 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x459dee7e vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x459e3a62 __rio_local_read_config_32 EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers -EXPORT_SYMBOL_GPL vmlinux 0x45a6ea16 xenbus_dev_groups -EXPORT_SYMBOL_GPL vmlinux 0x45d2df4f skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x45d3e472 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x45da8dc6 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x45a3a001 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x45be08ee __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x45cf657c pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x45d1954c fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x45d64494 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x45df8595 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x45e7c711 balloon_mops EXPORT_SYMBOL_GPL vmlinux 0x45e8b450 mnt_idmap_get -EXPORT_SYMBOL_GPL vmlinux 0x45f07c13 gpiod_unexport -EXPORT_SYMBOL_GPL vmlinux 0x45f55221 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x45ed67c1 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x45edd287 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x45ee60bb wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45ee6ef8 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x45ef70b1 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x45f41768 gnttab_page_cache_shrink EXPORT_SYMBOL_GPL vmlinux 0x45fa3f11 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x45fadc24 pci_ignore_hotplug EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x4603357b power_supply_powers -EXPORT_SYMBOL_GPL vmlinux 0x460b3025 msi_unlock_descs -EXPORT_SYMBOL_GPL vmlinux 0x4612525b bpf_trace_run2 -EXPORT_SYMBOL_GPL vmlinux 0x461e5d14 clk_hw_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x4623f92e pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x4607962d proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x460e2c12 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x46198d85 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x46273192 device_iommu_capable EXPORT_SYMBOL_GPL vmlinux 0x46275130 mas_expected_entries -EXPORT_SYMBOL_GPL vmlinux 0x462ab565 usb_hub_release_port -EXPORT_SYMBOL_GPL vmlinux 0x462f9fb8 i2c_new_smbus_alert_device -EXPORT_SYMBOL_GPL vmlinux 0x46399725 xhci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0x463d5ac2 acpi_fetch_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0x464a826d tty_get_icount -EXPORT_SYMBOL_GPL vmlinux 0x4653c37f crypto_akcipher_sync_prep -EXPORT_SYMBOL_GPL vmlinux 0x4656aa1c nf_ip6_check_hbh_len -EXPORT_SYMBOL_GPL vmlinux 0x465f25f5 tc3589x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x4660ed5f power_supply_set_battery_charged -EXPORT_SYMBOL_GPL vmlinux 0x466ca5c6 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x4672c23a perf_event_period -EXPORT_SYMBOL_GPL vmlinux 0x46787a28 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x4679509d pinctrl_generic_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x467bf50e mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x463b1b5e iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x463f01e6 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x463f1d02 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x46407634 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x46473a32 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x46537569 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x465657d4 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x46647a0d dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x466bcf94 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x46779f97 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x467b0424 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x467d8249 nf_queue_entry_get_refs EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468af789 acpi_cppc_processor_probe EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a78dd0 usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x46bc5114 __imx8m_clk_hw_composite -EXPORT_SYMBOL_GPL vmlinux 0x46c761f2 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x46c8cb4c devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x46beab4a bus_register +EXPORT_SYMBOL_GPL vmlinux 0x46cc8f91 devm_platform_ioremap_resource_byname EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap -EXPORT_SYMBOL_GPL vmlinux 0x47043bcc spi_controller_suspend -EXPORT_SYMBOL_GPL vmlinux 0x47196e74 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x46ebdbb4 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x47030a79 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x4708699b pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x470d2b50 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x4711926e dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x47164c24 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x47173572 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x471fffc5 of_dma_controller_register EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x47600405 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x47413aab sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x47420928 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x4742fc0a tun_get_tx_ring EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4763f739 netdev_walk_all_upper_dev_rcu EXPORT_SYMBOL_GPL vmlinux 0x476461e8 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4765213f iommu_attach_device EXPORT_SYMBOL_GPL vmlinux 0x47663cfe vcap_rule_mod_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x476661ae xenbus_read_otherend_details -EXPORT_SYMBOL_GPL vmlinux 0x476d9d66 netdev_walk_all_lower_dev -EXPORT_SYMBOL_GPL vmlinux 0x4777172d of_map_id -EXPORT_SYMBOL_GPL vmlinux 0x47851e82 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x476d0798 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x4784b497 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x4787a1e8 devm_acpi_dev_add_driver_gpios EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47950787 spi_sync_locked EXPORT_SYMBOL_GPL vmlinux 0x479803b9 base64_encode EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aab78c bpf_trace_run7 EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy -EXPORT_SYMBOL_GPL vmlinux 0x47c47522 bpf_trace_run12 -EXPORT_SYMBOL_GPL vmlinux 0x47c4cd4b devm_regmap_field_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0x47c57e93 mbox_bind_client -EXPORT_SYMBOL_GPL vmlinux 0x47d01bb8 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x47b206de phy_save_page EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x47d7b401 genphy_c45_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x47dd253b nvmem_device_cell_read EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux -EXPORT_SYMBOL_GPL vmlinux 0x47f1d6dc thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x47e1f89d ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x47f94170 device_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x4804b95a dev_pm_opp_get_of_node -EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table -EXPORT_SYMBOL_GPL vmlinux 0x481717f9 devm_init_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x48195519 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x481639a7 dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x4836a689 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x48334155 ip6_pol_route EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x484888ab dma_need_sync -EXPORT_SYMBOL_GPL vmlinux 0x484f8717 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x4856b3cb dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x48597df8 rio_pw_enable EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting -EXPORT_SYMBOL_GPL vmlinux 0x48681110 __traceiter_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0x4869e242 vcap_get_rule_count_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x4868e6f4 fwnode_graph_get_next_endpoint EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4873f28a extcon_get_edev_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x4877252a vcap_tc_flower_handler_tcp_usage -EXPORT_SYMBOL_GPL vmlinux 0x4885d64f genphy_c45_plca_get_cfg -EXPORT_SYMBOL_GPL vmlinux 0x4889a153 pci_num_vf -EXPORT_SYMBOL_GPL vmlinux 0x488a437b power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x4896fbbc acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x48778fbb l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x487d3674 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x48a1c3a3 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x48a36605 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x48a3cee4 usb_hcd_resume_root_hub EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get -EXPORT_SYMBOL_GPL vmlinux 0x48a9cad5 devm_led_classdev_register_ext -EXPORT_SYMBOL_GPL vmlinux 0x48ae8435 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x48b91b43 virtqueue_enable_cb_delayed EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp EXPORT_SYMBOL_GPL vmlinux 0x48c35c9e __tracepoint_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x48d81a0a bgmac_alloc -EXPORT_SYMBOL_GPL vmlinux 0x4902efde ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x48e614b3 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x48e61a3a usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x48e93327 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x48f5e205 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x48fe2210 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x490395dd spi_get_device_match_data EXPORT_SYMBOL_GPL vmlinux 0x4904c8a9 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x49060950 i2c_acpi_waive_d0_probe -EXPORT_SYMBOL_GPL vmlinux 0x4908f845 dw8250_do_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x4917d593 sdio_writel -EXPORT_SYMBOL_GPL vmlinux 0x491f39cd devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x491c7ae8 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x491d61d9 icc_node_del EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x492ac76b vp_legacy_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x492cd2f7 edac_device_del_device -EXPORT_SYMBOL_GPL vmlinux 0x4931c9c3 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x4928e6a0 xenbus_match EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x49373fc8 component_compare_dev -EXPORT_SYMBOL_GPL vmlinux 0x4938dda1 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node -EXPORT_SYMBOL_GPL vmlinux 0x494db23a transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x494e20bc crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x4951f8e9 iommu_device_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x493be414 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x493e4ae0 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x4954bec5 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x495cd36c pci_p2pmem_free_sgl EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable -EXPORT_SYMBOL_GPL vmlinux 0x498951fd serdev_device_break_ctl -EXPORT_SYMBOL_GPL vmlinux 0x498d6b94 sdio_set_block_size -EXPORT_SYMBOL_GPL vmlinux 0x498fc5fc usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x49752aae usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x49831b43 __clk_hw_register_divider EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue EXPORT_SYMBOL_GPL vmlinux 0x49927d25 page_reporting_unregister -EXPORT_SYMBOL_GPL vmlinux 0x49c28a22 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x49c88506 usb_hcd_end_port_resume -EXPORT_SYMBOL_GPL vmlinux 0x49ca1bbf mpc8xxx_spi_rx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x49cc2e34 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x4992e673 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x49a1e3d7 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x49a28789 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x49a41e13 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x49a447fb thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x49b6dd84 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x49be2698 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x49c3417c acpi_pci_check_ejectable EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x49cfff93 usb_get_maximum_speed -EXPORT_SYMBOL_GPL vmlinux 0x49dab456 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x49ce2ddd badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x49ce6c50 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x49ddcb60 dev_pm_clear_wake_irq EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x49f829e5 dev_pm_opp_remove -EXPORT_SYMBOL_GPL vmlinux 0x49fb7a49 mbox_client_peek_data -EXPORT_SYMBOL_GPL vmlinux 0x49fe0b81 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x4a00ff35 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x49ec4415 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x4a07a974 dax_add_host EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask -EXPORT_SYMBOL_GPL vmlinux 0x4a191849 clk_register_mux_table -EXPORT_SYMBOL_GPL vmlinux 0x4a1eee48 tty_port_default_client_ops -EXPORT_SYMBOL_GPL vmlinux 0x4a2a30be spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x4a41fcfa ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x4a1800dc blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x4a19bf10 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x4a1e08a5 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4a29aed7 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4a36ebfe devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x4a3c34c1 tpmm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x4a5d5507 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x4a6085f8 psil_set_new_ep_config -EXPORT_SYMBOL_GPL vmlinux 0x4a61f656 rz_mtu3_shared_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x4a642692 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x4a6b3cf3 sdio_retune_release -EXPORT_SYMBOL_GPL vmlinux 0x4a746d9f fscrypt_ioctl_remove_key -EXPORT_SYMBOL_GPL vmlinux 0x4a77c5ea blk_queue_required_elevator_features -EXPORT_SYMBOL_GPL vmlinux 0x4a8c7e79 ata_sff_queue_pio_task -EXPORT_SYMBOL_GPL vmlinux 0x4a938b54 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x4aabf5d7 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x4ab6b683 iocb_bio_iopoll -EXPORT_SYMBOL_GPL vmlinux 0x4abc140c usb_add_phy_dev -EXPORT_SYMBOL_GPL vmlinux 0x4acb91ee usb_hcd_map_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x4aeb8c77 pci_find_vsec_capability -EXPORT_SYMBOL_GPL vmlinux 0x4af0cc91 i2c_slave_register -EXPORT_SYMBOL_GPL vmlinux 0x4b01d099 synth_event_add_val -EXPORT_SYMBOL_GPL vmlinux 0x4b0a14f5 vchan_tx_desc_free -EXPORT_SYMBOL_GPL vmlinux 0x4b114c69 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x4b175f43 usb_add_hcd -EXPORT_SYMBOL_GPL vmlinux 0x4b189474 rtc_set_time -EXPORT_SYMBOL_GPL vmlinux 0x4b456951 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x4a4b7a2e unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4a5ccec0 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x4a621549 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x4a6c7ab6 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4a804dd9 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4a8d7e12 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x4a9cddc8 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x4aace621 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x4abca8b9 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x4abe70e2 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x4ae49943 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x4aef3726 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x4afa634c cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4b1b9c38 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x4b1fbc78 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x4b232dec netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x4b23d29c devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x4b26ea01 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x4b2e31b8 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x4b392971 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4b3acd13 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x4b48fc34 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x4b511e6a irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4b55bcc8 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x4b56e846 sdio_retune_hold_now EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x4b6810be phy_resolve_aneg_pause -EXPORT_SYMBOL_GPL vmlinux 0x4b689db3 devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x4b72ce8a crypto_akcipher_sync_post -EXPORT_SYMBOL_GPL vmlinux 0x4b789aad thermal_zone_device_priv -EXPORT_SYMBOL_GPL vmlinux 0x4b8e180b invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x4b696afd get_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features -EXPORT_SYMBOL_GPL vmlinux 0x4b95ae12 of_console_check -EXPORT_SYMBOL_GPL vmlinux 0x4bb12940 irq_chip_eoi_parent -EXPORT_SYMBOL_GPL vmlinux 0x4bc06419 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0x4ba21af3 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x4ba2dc5e pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x4bc2924c usb_set_device_state EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init -EXPORT_SYMBOL_GPL vmlinux 0x4bd682a2 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x4bcbe52f acpi_initialize_hp_context EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x4bd8abbf proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x4bdaeeb8 strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu -EXPORT_SYMBOL_GPL vmlinux 0x4bf4fd73 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x4bedd38e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x4bf99a0a vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x4bfa5f94 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4bfb96ba mmu_notifier_put EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep -EXPORT_SYMBOL_GPL vmlinux 0x4bff88ab wm8350_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x4c081f54 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4c02c9ee xfrm_audit_state_notfound EXPORT_SYMBOL_GPL vmlinux 0x4c2b351d start_poll_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x4c323ca4 devlink_port_register_with_ops -EXPORT_SYMBOL_GPL vmlinux 0x4c3e55e0 lwtunnel_input -EXPORT_SYMBOL_GPL vmlinux 0x4c3e6093 irq_get_default_host -EXPORT_SYMBOL_GPL vmlinux 0x4c51f740 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0x4c2f034e regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x4c34c73a usb_hub_find_child EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x4c5bb18d fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x4c55a5ce blk_mq_sched_try_insert_merge EXPORT_SYMBOL_GPL vmlinux 0x4c5f348e acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x4c6a7e2f of_msi_configure -EXPORT_SYMBOL_GPL vmlinux 0x4c7f7696 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x4c6186a7 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x4c62cd79 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x4c724803 __sock_recv_timestamp EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition -EXPORT_SYMBOL_GPL vmlinux 0x4c93c5aa debugfs_real_fops -EXPORT_SYMBOL_GPL vmlinux 0x4c99a366 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4c9e2016 usb_role_switch_get EXPORT_SYMBOL_GPL vmlinux 0x4ca5590e mas_prev +EXPORT_SYMBOL_GPL vmlinux 0x4ca7bdfb usb_get_from_anchor EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x4cb30e4d wwan_create_port EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x4ce4d87e ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x4ce97314 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x4cebc860 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x4cedca60 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x4cc93c48 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4ccca4da ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x4cec7d22 devfreq_cooling_em_register EXPORT_SYMBOL_GPL vmlinux 0x4cf8880f vcap_rule_add_key_u32 -EXPORT_SYMBOL_GPL vmlinux 0x4cfb8aac device_node_to_regmap EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable -EXPORT_SYMBOL_GPL vmlinux 0x4d12e340 __tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x4d13375c unregister_nvdimm_pmu -EXPORT_SYMBOL_GPL vmlinux 0x4d207f54 edac_pci_add_device -EXPORT_SYMBOL_GPL vmlinux 0x4d22abc7 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4d174c5a task_user_regset_view EXPORT_SYMBOL_GPL vmlinux 0x4d24a1e4 sbitmap_finish_wait -EXPORT_SYMBOL_GPL vmlinux 0x4d2aa7e1 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x4d269196 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x4d2b0cbe component_bind_all EXPORT_SYMBOL_GPL vmlinux 0x4d32f61e __srcu_read_unlock EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0x4d3a1d01 pm_runtime_autosuspend_expiration -EXPORT_SYMBOL_GPL vmlinux 0x4d3d8b5d fsl_mc_bus_dpio_type -EXPORT_SYMBOL_GPL vmlinux 0x4d5f6135 espintcp_queue_out -EXPORT_SYMBOL_GPL vmlinux 0x4d62cf7a nvdimm_cmd_mask -EXPORT_SYMBOL_GPL vmlinux 0x4d692c92 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x4d3b00e3 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x4d3db43a fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x4d4e2b97 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d4f55e5 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4d62d1b7 fscrypt_drop_inode EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable -EXPORT_SYMBOL_GPL vmlinux 0x4d75f4f9 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4d79afb2 __traceiter_napi_poll EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x4d89535c inet_csk_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf -EXPORT_SYMBOL_GPL vmlinux 0x4daf4cc7 phy_calibrate -EXPORT_SYMBOL_GPL vmlinux 0x4dbd96bf gnttab_pages_clear_private -EXPORT_SYMBOL_GPL vmlinux 0x4dc9c177 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x4dcf2011 dev_pm_opp_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x4dd8c628 __serdev_device_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x4ddab9a3 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x4db3ec91 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x4dbdd67b mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4dc2cc13 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4dcd3d83 devm_gpiod_get_array EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string -EXPORT_SYMBOL_GPL vmlinux 0x4df4c242 clk_hw_set_parent -EXPORT_SYMBOL_GPL vmlinux 0x4df7b8f7 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff -EXPORT_SYMBOL_GPL vmlinux 0x4e0fd84e spi_get_device_match_data +EXPORT_SYMBOL_GPL vmlinux 0x4de19d5d devm_of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4e0079c3 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4e0b1b09 scsi_host_block EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work -EXPORT_SYMBOL_GPL vmlinux 0x4e1981f0 fib_new_table -EXPORT_SYMBOL_GPL vmlinux 0x4e2acdb9 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e1c59b1 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x4e2caada regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x4e2fe72f devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4e31b9e6 devm_kasprintf EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean -EXPORT_SYMBOL_GPL vmlinux 0x4e411d6a rio_release_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x4e42ba67 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x4e47163b scsi_queue_work EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4e5c4017 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4e58c67b xdp_set_features_flag EXPORT_SYMBOL_GPL vmlinux 0x4e657485 free_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x4e68c034 devlink_region_snapshot_id_get -EXPORT_SYMBOL_GPL vmlinux 0x4e6cf519 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x4e669b28 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x4e6a43e2 vfs_lock_file EXPORT_SYMBOL_GPL vmlinux 0x4e6fc9b0 power_supply_battery_info_get_prop -EXPORT_SYMBOL_GPL vmlinux 0x4e776ee9 fuse_free_conn -EXPORT_SYMBOL_GPL vmlinux 0x4e7afa3c mmu_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x4e899d2f subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4e9c19b0 crypto_unregister_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x4e9c45bd perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x4e9e134b debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x4ea0a9ac of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x4e8083d4 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x4e85b94f serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x4e8869c6 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4e8a166b xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4e91aa10 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x4e9833b1 __fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4e9e2281 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x4eaa0a09 devm_clk_get_optional_prepared EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt -EXPORT_SYMBOL_GPL vmlinux 0x4eb1949f iommu_unmap_fast -EXPORT_SYMBOL_GPL vmlinux 0x4eb95547 bpf_trace_run11 -EXPORT_SYMBOL_GPL vmlinux 0x4ebbaf3e devm_phy_create -EXPORT_SYMBOL_GPL vmlinux 0x4ebcb820 devm_regulator_get_enable_optional -EXPORT_SYMBOL_GPL vmlinux 0x4ec61939 rockchip_pcie_enable_clocks -EXPORT_SYMBOL_GPL vmlinux 0x4ec639bf usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4eba9785 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x4eca03c8 evm_inode_init_security EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x4ed017a3 tcp_plb_update_state_upon_rto -EXPORT_SYMBOL_GPL vmlinux 0x4eda5e9f devl_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x4edffa9d usb_of_get_interface_node -EXPORT_SYMBOL_GPL vmlinux 0x4ee85040 kpp_register_instance EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x4efba55e fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize -EXPORT_SYMBOL_GPL vmlinux 0x4f0d9d8c vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x4f219671 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f25031e battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x4f482a3a sprd_pinctrl_remove -EXPORT_SYMBOL_GPL vmlinux 0x4f543c64 usb_hcd_pci_probe -EXPORT_SYMBOL_GPL vmlinux 0x4f5f6b95 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4f36df51 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4f44aa28 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4f5d8649 usb_driver_claim_interface EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x4f7fa2f4 crypto_alloc_sync_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x4f80f59b platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x4f72dfbe __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x4f889db7 scsi_alloc_request EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4f9ac484 pinctrl_dev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x4f9e9e96 regulator_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4faa6b28 thermal_zone_get_num_trips -EXPORT_SYMBOL_GPL vmlinux 0x4faf7dfc serdev_device_add -EXPORT_SYMBOL_GPL vmlinux 0x4fb14cd7 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x4fb2075d set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4fb3676a tpm_chip_register EXPORT_SYMBOL_GPL vmlinux 0x4fb5da55 fs_put_dax -EXPORT_SYMBOL_GPL vmlinux 0x4fcc9667 blk_mq_wait_quiesce_done -EXPORT_SYMBOL_GPL vmlinux 0x4fce19d5 iomap_dio_bio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x4fd19797 sdio_get_host_pm_caps -EXPORT_SYMBOL_GPL vmlinux 0x4fdba19c dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x4fbb2d95 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4fc577ea css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x4fc58941 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x4fd6bb59 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x4fd906f6 rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal -EXPORT_SYMBOL_GPL vmlinux 0x4fdd88cc sk_free_unlock_clone EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x4fe96b1c ata_scsi_dma_need_drain -EXPORT_SYMBOL_GPL vmlinux 0x4ff04d94 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x4ff9dbcd kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x4ff1c517 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x4ff21f4b tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x4ff903df devm_regulator_bulk_get EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register -EXPORT_SYMBOL_GPL vmlinux 0x500ca6f0 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x501e4a27 debugfs_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x501eaa5f ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x500d0a85 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x500e0313 rockchip_clk_of_add_provider EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi -EXPORT_SYMBOL_GPL vmlinux 0x502a0627 uprobe_register -EXPORT_SYMBOL_GPL vmlinux 0x503b4eb7 check_move_unevictable_folios -EXPORT_SYMBOL_GPL vmlinux 0x503ecb05 regulator_list_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0x504f0891 vcap_tc_flower_handler_ethaddr_usage -EXPORT_SYMBOL_GPL vmlinux 0x50648029 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x506cb4c7 devlink_priv -EXPORT_SYMBOL_GPL vmlinux 0x5072f969 max8997_update_reg -EXPORT_SYMBOL_GPL vmlinux 0x507804ba group_cpus_evenly -EXPORT_SYMBOL_GPL vmlinux 0x508e314d ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x5033521e rz_mtu3_16bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x503940bd __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x503ee935 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5044caa6 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x504a1581 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x504c18f7 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5053ef6c regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x505db614 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x50655be9 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x507d562a phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL vmlinux 0x508ca92e pinconf_generic_dt_node_to_map EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50928b38 __traceiter_block_bio_complete EXPORT_SYMBOL_GPL vmlinux 0x5093e76e __tracepoint_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0x50bbc004 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x5095386c regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x509e8494 acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0x50b303fc device_property_match_string EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property -EXPORT_SYMBOL_GPL vmlinux 0x50c5c10c wakeup_source_add -EXPORT_SYMBOL_GPL vmlinux 0x50c677d8 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x50c57e19 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x50d3218d of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x50db54dd to_nvdimm_bus EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e24184 usb_get_phy EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num -EXPORT_SYMBOL_GPL vmlinux 0x50ea66f8 __sk_flush_backlog EXPORT_SYMBOL_GPL vmlinux 0x50eabb98 __tracepoint_pelt_rt_tp -EXPORT_SYMBOL_GPL vmlinux 0x50f3779f dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x50fa5134 crypto_register_rngs EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x510d8f0d vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x51142e46 inet_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0x511b352a nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x5105fff2 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x510a8b0c power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5111511d edac_device_del_device EXPORT_SYMBOL_GPL vmlinux 0x511fb9b1 mtk_clk_unregister_pllfhs +EXPORT_SYMBOL_GPL vmlinux 0x51219e43 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x5134d0d5 sock_diag_unregister EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude -EXPORT_SYMBOL_GPL vmlinux 0x51425ecf platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5144fbc8 sata_sff_hardreset -EXPORT_SYMBOL_GPL vmlinux 0x51496986 dma_resv_get_fences -EXPORT_SYMBOL_GPL vmlinux 0x51529340 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x51580d88 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x51447273 usb_set_wireless_status +EXPORT_SYMBOL_GPL vmlinux 0x514689b0 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x514c4619 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x514d6cf6 pci_epc_bme_notify +EXPORT_SYMBOL_GPL vmlinux 0x5151d175 unregister_virtio_driver EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0x515ec393 dev_pm_opp_of_get_sharing_cpus -EXPORT_SYMBOL_GPL vmlinux 0x5163e05e ata_cable_40wire -EXPORT_SYMBOL_GPL vmlinux 0x516560cc crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x51665057 dmaengine_desc_set_metadata_len -EXPORT_SYMBOL_GPL vmlinux 0x51672f67 cdx_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x515e85a8 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x51678303 crypto_unregister_acomps EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x5186b486 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x517863d3 trace_array_destroy EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn -EXPORT_SYMBOL_GPL vmlinux 0x51986c74 cpci_hp_register_bus -EXPORT_SYMBOL_GPL vmlinux 0x51a2692a ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x518e2f64 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x519235fe __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x519581be __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x51a52fd2 spi_controller_resume -EXPORT_SYMBOL_GPL vmlinux 0x51a8c9e0 pinconf_generic_dt_subnode_to_map -EXPORT_SYMBOL_GPL vmlinux 0x51aba12c pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x51a375b6 ata_scsi_change_queue_depth EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start -EXPORT_SYMBOL_GPL vmlinux 0x51b26cbe pinctrl_register_and_init -EXPORT_SYMBOL_GPL vmlinux 0x51bb2e5f phy_pm_runtime_allow -EXPORT_SYMBOL_GPL vmlinux 0x51ee5601 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x51b5afa7 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x51c08e8e gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x51eeaaac tegra_mc_get_carveout_info EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease -EXPORT_SYMBOL_GPL vmlinux 0x520332e4 acpi_get_psd_map -EXPORT_SYMBOL_GPL vmlinux 0x5203ebc1 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x520564a4 scsi_dh_attached_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x5212223a devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0x52213722 acpi_dev_resource_memory EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x522aa25e sata_scr_read EXPORT_SYMBOL_GPL vmlinux 0x522d99e9 make_vfsuid -EXPORT_SYMBOL_GPL vmlinux 0x523e1b10 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x522eb428 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x52381da3 sk_psock_tls_strp_read EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start -EXPORT_SYMBOL_GPL vmlinux 0x524bc076 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x524631fe of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x5247c161 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x524a8c3a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x524f497d spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x5258223f devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x5258d444 thermal_zone_device_id +EXPORT_SYMBOL_GPL vmlinux 0x525abe78 __traceiter_br_mdb_full +EXPORT_SYMBOL_GPL vmlinux 0x525b2724 irq_domain_create_hierarchy EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x525e6bbc sdio_readw EXPORT_SYMBOL_GPL vmlinux 0x52647db1 ct_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x526b14ce cookie_tcp_reqsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x5275c1e2 sata_link_scr_lpm -EXPORT_SYMBOL_GPL vmlinux 0x5293e6e0 ata_cable_unknown -EXPORT_SYMBOL_GPL vmlinux 0x52a1f309 __blkg_prfill_u64 -EXPORT_SYMBOL_GPL vmlinux 0x52a61a73 device_register +EXPORT_SYMBOL_GPL vmlinux 0x5266f583 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x5269cb76 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x52756577 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x527a1b1c pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x52890279 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x52977502 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x529a19c3 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x52a3f209 of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags -EXPORT_SYMBOL_GPL vmlinux 0x52ba17c7 cdx_device_add -EXPORT_SYMBOL_GPL vmlinux 0x52c02453 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x52b4b1af driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52badf88 rio_add_mport_pw_handler EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c534da blkg_conf_prep EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler -EXPORT_SYMBOL_GPL vmlinux 0x52d266ef fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x52ced75c dev_attr_unload_heads EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52e8ee6e regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x52e99afc rio_add_device EXPORT_SYMBOL_GPL vmlinux 0x52eddb69 raw_v6_hashinfo -EXPORT_SYMBOL_GPL vmlinux 0x52fa6dee of_usb_get_dr_mode_by_phy -EXPORT_SYMBOL_GPL vmlinux 0x5306d047 mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x530623c8 dev_pm_opp_config_clks_simple EXPORT_SYMBOL_GPL vmlinux 0x530e0f8c devl_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5321510b usb_hcd_pci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x5325b619 imx_get_clk_hw_by_name -EXPORT_SYMBOL_GPL vmlinux 0x5329f1a0 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x532ab8ac tracing_snapshot_cond_disable EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init -EXPORT_SYMBOL_GPL vmlinux 0x533a91d7 vmf_insert_pfn_pmd -EXPORT_SYMBOL_GPL vmlinux 0x533ebf54 ptp_msg_is_sync -EXPORT_SYMBOL_GPL vmlinux 0x53460d9e virtqueue_resize -EXPORT_SYMBOL_GPL vmlinux 0x534871cc ata_sas_sync_probe -EXPORT_SYMBOL_GPL vmlinux 0x535330b8 failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0x532e79c8 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x53318b19 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x53542432 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x535690e6 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x535727d4 fib_rules_register EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536eae69 usb_set_configuration EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x5377b5ed driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x538cf4e1 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x5379a50b ping_close +EXPORT_SYMBOL_GPL vmlinux 0x537a289f xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x537ca4f1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x537d55dd devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x537dc6cd i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5380c2bb l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x538a6a11 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x538be8a6 dm_internal_suspend_noflush EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str -EXPORT_SYMBOL_GPL vmlinux 0x53a00e5c do_xdp_generic -EXPORT_SYMBOL_GPL vmlinux 0x53a12c38 usb_find_interface -EXPORT_SYMBOL_GPL vmlinux 0x53a3fb04 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x53a468e2 pwm_apply_state -EXPORT_SYMBOL_GPL vmlinux 0x53ac0eb9 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x539607ed pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x53a383db is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x53b5ea42 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x53b7bdb5 of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup -EXPORT_SYMBOL_GPL vmlinux 0x53d0c30b pcc_mbox_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x53d2fc94 genphy_c45_check_and_restart_aneg -EXPORT_SYMBOL_GPL vmlinux 0x53d37bb9 fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x53c103e7 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x53c20988 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x53c23567 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x53c30695 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x53c621ab key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x53d09928 mtk_pinconf_drive_set EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle -EXPORT_SYMBOL_GPL vmlinux 0x53d9068f of_alias_from_compatible -EXPORT_SYMBOL_GPL vmlinux 0x53f68b4d sec_irq_init -EXPORT_SYMBOL_GPL vmlinux 0x53fe66f4 cpci_hp_register_controller -EXPORT_SYMBOL_GPL vmlinux 0x540b2d65 mtk_clk_register_dividers -EXPORT_SYMBOL_GPL vmlinux 0x540b5135 fsl_mc_bus_dpaiop_type -EXPORT_SYMBOL_GPL vmlinux 0x5416aa34 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x53e1ed79 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x53e62ff2 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x53f65796 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x53fbf6b6 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x53ffe191 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x5403934d regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x541052c2 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x54192e89 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x5419a03a devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x5419ee4a crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x541b737b devm_nvmem_device_put EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x541ff1c3 pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 -EXPORT_SYMBOL_GPL vmlinux 0x54273a07 extcon_set_property_sync -EXPORT_SYMBOL_GPL vmlinux 0x5442155b blkcg_deactivate_policy -EXPORT_SYMBOL_GPL vmlinux 0x54454550 of_clk_src_simple_get -EXPORT_SYMBOL_GPL vmlinux 0x54507b31 devm_regulator_bulk_get_const -EXPORT_SYMBOL_GPL vmlinux 0x54578c10 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x54299164 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x542b9e31 devl_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x542edd15 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x543ab17a acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x543d12e7 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x54433c7d vcap_tc_flower_handler_arp_usage +EXPORT_SYMBOL_GPL vmlinux 0x54545590 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x5458b872 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x54619786 pm_generic_freeze EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x5467b524 iomap_fiemap -EXPORT_SYMBOL_GPL vmlinux 0x5471b427 dax_file_unshare -EXPORT_SYMBOL_GPL vmlinux 0x54787b1a pci_epf_bind -EXPORT_SYMBOL_GPL vmlinux 0x54863de3 securityfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x54873a84 wwan_put_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x5489ebba debugfs_create_str +EXPORT_SYMBOL_GPL vmlinux 0x546a8f3a ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x54709520 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x5483362b user_read +EXPORT_SYMBOL_GPL vmlinux 0x548e6d16 icc_provider_deregister EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x549dc5d4 __traceiter_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x54a12578 pm_clk_remove -EXPORT_SYMBOL_GPL vmlinux 0x54a1fe3d wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x549671a0 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x549e0793 of_genpd_add_provider_onecell EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put -EXPORT_SYMBOL_GPL vmlinux 0x54b0a5f9 lwtunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x54b574b6 sk_set_peek_off -EXPORT_SYMBOL_GPL vmlinux 0x54b64d28 net_failover_create -EXPORT_SYMBOL_GPL vmlinux 0x54c6a3dc dw_pcie_setup_rc -EXPORT_SYMBOL_GPL vmlinux 0x54cba3f4 usb_kill_urb -EXPORT_SYMBOL_GPL vmlinux 0x54e0215d dev_pm_domain_detach -EXPORT_SYMBOL_GPL vmlinux 0x54fc4e4e xhci_run -EXPORT_SYMBOL_GPL vmlinux 0x54ff211a led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x54abaa26 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x54c92c06 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x54d62f83 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x54e83c3a vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x54eea341 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x550943c8 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5509ae70 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x550b74b0 mtk_pinconf_adv_pull_set EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x551581a0 usb_enable_ltm -EXPORT_SYMBOL_GPL vmlinux 0x55252bb5 walk_hmem_resources +EXPORT_SYMBOL_GPL vmlinux 0x55104bd5 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x552027d4 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x55202d1a iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x5522773f genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x552be467 mmc_get_ext_csd EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553e8da1 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x553ee0d8 fwnode_find_reference EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0x5543f1ca kthread_cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x554ed283 acpi_subsys_freeze -EXPORT_SYMBOL_GPL vmlinux 0x555b8227 devm_pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x556061a5 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554edf85 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x554f3030 pci_epc_get_msi EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate -EXPORT_SYMBOL_GPL vmlinux 0x55726661 xen_unregister_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x557377dc meson_clk_dualdiv_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x5575b99b umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x556f3f54 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x5575835f devm_gpiod_unhinge EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x557df4ef led_blink_set_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x5587a347 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x558ac6a1 handle_untracked_irq -EXPORT_SYMBOL_GPL vmlinux 0x558deff8 regulator_get_linear_step -EXPORT_SYMBOL_GPL vmlinux 0x55963c80 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x557b39fa gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x55860313 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x558a951a __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x55934d95 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x55ae7e0a anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55b88019 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x55c375b6 securityfs_create_file EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node -EXPORT_SYMBOL_GPL vmlinux 0x55cced26 __kthread_init_worker -EXPORT_SYMBOL_GPL vmlinux 0x55ce0a43 crypto_unregister_kpp EXPORT_SYMBOL_GPL vmlinux 0x55d91921 alloc_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x55e7634d fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x55eab370 serdev_device_get_tiocm EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x55ff72af crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5603d980 fat_add_entries EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560d71bc ip4_datagram_release_cb EXPORT_SYMBOL_GPL vmlinux 0x560e8240 ftrace_set_filter_ip -EXPORT_SYMBOL_GPL vmlinux 0x561331a4 simple_attr_write EXPORT_SYMBOL_GPL vmlinux 0x561375bd tracepoint_probe_register_prio -EXPORT_SYMBOL_GPL vmlinux 0x5615abbe clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x5624f826 power_supply_notifier EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562583ec edac_mc_del_mc EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563de9d5 ima_inode_hash EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x5641563c clk_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x56451876 do_unbind_con_driver -EXPORT_SYMBOL_GPL vmlinux 0x56a7bcfd apei_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x56ae33eb adp5520_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x56b49116 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x56ca77fb clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x56d2a584 gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0x56d9bf1a mtk_clk_register_fixed_clks -EXPORT_SYMBOL_GPL vmlinux 0x56e33f24 dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0x56458b6c key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x5695e633 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x5696c5d8 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x56a043fb kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x56a33879 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x56a4be29 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x56ad32d2 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x56af14e6 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x56d28a1c of_alias_from_compatible EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter -EXPORT_SYMBOL_GPL vmlinux 0x56ee8815 ata_pci_sff_activate_host EXPORT_SYMBOL_GPL vmlinux 0x56ef15d0 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x56f66401 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x56f72b9e devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers -EXPORT_SYMBOL_GPL vmlinux 0x5704e98b irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x5712341e strp_init -EXPORT_SYMBOL_GPL vmlinux 0x57307db3 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x5731f65b fat_time_unix2fat -EXPORT_SYMBOL_GPL vmlinux 0x5735a46a __ndisc_fill_addr_option -EXPORT_SYMBOL_GPL vmlinux 0x57394458 __traceiter_add_device_to_group -EXPORT_SYMBOL_GPL vmlinux 0x573ea2e0 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x570776e4 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x570eb22a register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5715f8ab crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5725a7d9 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x572de457 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x573fca07 ahci_platform_find_clk EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value -EXPORT_SYMBOL_GPL vmlinux 0x57462c7b rcu_tasks_trace_qs_blkd -EXPORT_SYMBOL_GPL vmlinux 0x575179bd ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x57576af0 fuse_file_poll -EXPORT_SYMBOL_GPL vmlinux 0x57624f54 ata_sas_port_init -EXPORT_SYMBOL_GPL vmlinux 0x5770d93e acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x574e1b39 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x5756783d usb_cache_string +EXPORT_SYMBOL_GPL vmlinux 0x575b3587 find_ge_pid +EXPORT_SYMBOL_GPL vmlinux 0x575c1956 virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access EXPORT_SYMBOL_GPL vmlinux 0x57727285 phylink_ethtool_set_eee EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach -EXPORT_SYMBOL_GPL vmlinux 0x578b4dba blk_mq_end_request_batch -EXPORT_SYMBOL_GPL vmlinux 0x578e3a96 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x5785ee97 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5786ac1c power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x578769ee xhci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57918175 split_page +EXPORT_SYMBOL_GPL vmlinux 0x57935d12 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x579703cd blk_rq_poll +EXPORT_SYMBOL_GPL vmlinux 0x579c72da ata_sas_port_stop EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57aa0ab4 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x57aade0d pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x57b27382 crypto_drop_spawn EXPORT_SYMBOL_GPL vmlinux 0x57c58e9b __tracepoint_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x57ccaa8a regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x57cb569a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x57d1f805 dprc_reset_container EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index -EXPORT_SYMBOL_GPL vmlinux 0x57d774fd clk_hw_get_num_parents -EXPORT_SYMBOL_GPL vmlinux 0x57db536a crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x57d7cc72 strp_done EXPORT_SYMBOL_GPL vmlinux 0x57dc4851 mas_erase -EXPORT_SYMBOL_GPL vmlinux 0x57e1bc5e pci_msix_free_irq -EXPORT_SYMBOL_GPL vmlinux 0x57e4ed64 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x57e5294e tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x57e9486d __cpuhp_state_add_instance -EXPORT_SYMBOL_GPL vmlinux 0x57eeb434 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x57eec004 tc3589x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point -EXPORT_SYMBOL_GPL vmlinux 0x57fc633c mtk_clk_register_ref2usb_tx -EXPORT_SYMBOL_GPL vmlinux 0x580fb554 gpiochip_irqchip_add_domain -EXPORT_SYMBOL_GPL vmlinux 0x5811f227 vc_scrolldelta_helper -EXPORT_SYMBOL_GPL vmlinux 0x58193cde folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x57ffe625 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x5806f8a9 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x580db65a sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x5811efd0 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5819b6aa sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x581a4ff7 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x581ab4c8 of_icc_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5829aebe fscrypt_show_test_dummy_encryption EXPORT_SYMBOL_GPL vmlinux 0x5829e979 mas_pause EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x58322370 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x583b5d78 fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x583d7dec mtk_clk_simple_remove -EXPORT_SYMBOL_GPL vmlinux 0x585ac9bf device_create -EXPORT_SYMBOL_GPL vmlinux 0x5862a513 pm_generic_freeze_late -EXPORT_SYMBOL_GPL vmlinux 0x5865433d public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x5869c5ac apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x58349e6b usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x584833ff sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5851e00c pci_enable_rom EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x58737115 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x586dfa5a xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x586e1ec1 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x586f9e6d irq_gc_set_wake EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info -EXPORT_SYMBOL_GPL vmlinux 0x58922d31 acpi_dev_get_memory_resources -EXPORT_SYMBOL_GPL vmlinux 0x5892b1a8 rio_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x5899c6f3 regulator_set_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0x58a31aab vp_legacy_set_features -EXPORT_SYMBOL_GPL vmlinux 0x58a8c8e6 iopf_queue_flush_dev -EXPORT_SYMBOL_GPL vmlinux 0x58bc857d gov_attr_set_init -EXPORT_SYMBOL_GPL vmlinux 0x58bf491b cpufreq_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x58c13b6f devm_pm_opp_of_add_table_indexed -EXPORT_SYMBOL_GPL vmlinux 0x58d702d2 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x587b6f2f dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x587f24ea ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x58aa0ff9 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x58b83e5e skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x58beaba9 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x58d2776d dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x58d43c2c dw_pcie_write_dbi EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift -EXPORT_SYMBOL_GPL vmlinux 0x58dcafe3 xfrm_state_afinfo_get_rcu -EXPORT_SYMBOL_GPL vmlinux 0x58dd4fd0 tpm_calc_ordinal_duration EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove -EXPORT_SYMBOL_GPL vmlinux 0x58e0497d crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x58df1ef5 __devm_alloc_percpu EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op -EXPORT_SYMBOL_GPL vmlinux 0x58ffc931 iomap_ioend_try_merge -EXPORT_SYMBOL_GPL vmlinux 0x591da4b1 generic_handle_domain_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x59310875 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x58f5a914 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x5907ee20 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x591bfe80 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x59234497 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x5932af88 bus_get_dev_root EXPORT_SYMBOL_GPL vmlinux 0x593ac537 __tracepoint_map -EXPORT_SYMBOL_GPL vmlinux 0x59480f54 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5951e9bd regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x59533d5b class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x59432fbf spi_mem_default_supports_op EXPORT_SYMBOL_GPL vmlinux 0x5957cddb zs_lookup_class_index -EXPORT_SYMBOL_GPL vmlinux 0x595ed4dd pci_epc_linkup -EXPORT_SYMBOL_GPL vmlinux 0x59666716 hwspin_lock_request -EXPORT_SYMBOL_GPL vmlinux 0x59857f68 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x5958e146 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x595cdac1 fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x5962158f mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x5968a2d4 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x596f90ea class_remove_file_ns EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf -EXPORT_SYMBOL_GPL vmlinux 0x598faac6 sdio_memcpy_fromio -EXPORT_SYMBOL_GPL vmlinux 0x59ae1a0c sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x5990eda1 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x5992f423 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x5998de7e ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x599c0d48 acpi_subsys_complete EXPORT_SYMBOL_GPL vmlinux 0x59b063ba start_poll_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x59b27e51 spi_get_next_queued_message EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x59b3d046 dev_pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x59c3d1d6 rz_mtu3_16bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x59b3655a clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x59b3b427 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x59b6efea k3_ringacc_ring_cfg EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x59c5690e ata_sff_hsm_move -EXPORT_SYMBOL_GPL vmlinux 0x59c8a166 badblocks_store -EXPORT_SYMBOL_GPL vmlinux 0x59c8e267 devm_mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x59cd1856 dma_mmap_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0x59cfac98 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x59c77cd6 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59ce426b __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x59dc5ffe dma_can_mmap EXPORT_SYMBOL_GPL vmlinux 0x59e0695d phylink_speed_down EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns EXPORT_SYMBOL_GPL vmlinux 0x59edfeb8 phy_rate_matching_to_str EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x5a0d5d43 devm_extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x5a0ddb9d bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x5a07c46c netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a085d83 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5a09ae33 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5a0eb543 skcipher_alloc_instance_simple EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle -EXPORT_SYMBOL_GPL vmlinux 0x5a1df01f acpi_is_pnp_device EXPORT_SYMBOL_GPL vmlinux 0x5a229368 arch_apei_enable_cmcff -EXPORT_SYMBOL_GPL vmlinux 0x5a261032 devm_kstrdup_const -EXPORT_SYMBOL_GPL vmlinux 0x5a2b32c3 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5a37de50 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5a3a4062 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x5a41b0d3 dev_pm_genpd_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x5a674179 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5a52c716 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5a5af64e devl_port_unregister EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt -EXPORT_SYMBOL_GPL vmlinux 0x5a724af5 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x5a773b5d ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x5a7a3c39 ahci_start_fis_rx EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x5a803e51 sysfs_break_active_protection -EXPORT_SYMBOL_GPL vmlinux 0x5a8a2c0d ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5a93de5f gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x5a7f110d ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5a8f3b88 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5a902bc5 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x5aa053c3 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5aa4dc6d skb_complete_wifi_ack EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aac8228 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x5ab0456b platform_device_add EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner -EXPORT_SYMBOL_GPL vmlinux 0x5abd675c of_property_read_u32_index -EXPORT_SYMBOL_GPL vmlinux 0x5ac10a48 __traceiter_sched_util_est_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x5ad6fe7c fork_usermode_driver -EXPORT_SYMBOL_GPL vmlinux 0x5af2f9c6 acpi_cppc_processor_exit -EXPORT_SYMBOL_GPL vmlinux 0x5afbd92b register_trace_event -EXPORT_SYMBOL_GPL vmlinux 0x5b02e893 scsi_dh_attach -EXPORT_SYMBOL_GPL vmlinux 0x5b13ff92 regulator_set_voltage_time -EXPORT_SYMBOL_GPL vmlinux 0x5b1db272 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x5ab6e85e handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ac7b065 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x5acb7f0c simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x5ad524f9 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x5b0a6f13 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5b1db567 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x5b1ebba7 acpi_match_device EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek -EXPORT_SYMBOL_GPL vmlinux 0x5b2c3d0c __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0x5b30e25c vhost_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x5b3553e3 crypto_register_acomps -EXPORT_SYMBOL_GPL vmlinux 0x5b39603f gnttab_dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x5b3cc089 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x5b33943e sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x5b3d2c84 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x5b49de44 kvm_io_bus_write EXPORT_SYMBOL_GPL vmlinux 0x5b50af89 tracepoint_probe_register -EXPORT_SYMBOL_GPL vmlinux 0x5b56bf62 evm_inode_init_security -EXPORT_SYMBOL_GPL vmlinux 0x5b65c968 dev_pm_qos_hide_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0x5b68b0bd __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x5b776c3b blk_mq_hctx_set_fq_lock_class -EXPORT_SYMBOL_GPL vmlinux 0x5b7c3495 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x5b6f1c4a genpd_dev_pm_attach_by_id EXPORT_SYMBOL_GPL vmlinux 0x5b83d7ab __tracepoint_neigh_event_send_dead -EXPORT_SYMBOL_GPL vmlinux 0x5b861c20 i2c_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0x5b9cf1c3 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x5b8f55ce vcap_get_rule +EXPORT_SYMBOL_GPL vmlinux 0x5b9b27ff da9052_disable_irq_nosync EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index -EXPORT_SYMBOL_GPL vmlinux 0x5bad465d __fscrypt_inode_uses_inline_crypto -EXPORT_SYMBOL_GPL vmlinux 0x5bb01ff1 sk_msg_free -EXPORT_SYMBOL_GPL vmlinux 0x5bc1f522 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x5bb1c2a1 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x5bb720d6 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x5bb8bf82 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x5bbde3bf aead_geniv_alloc EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bcbbd4b of_clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd7cdf0 cpuidle_unregister EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x5bfc4a9e devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x5bdc0837 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x5be11a13 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x5bf11d32 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c0067a3 bpf_warn_invalid_xdp_action EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw -EXPORT_SYMBOL_GPL vmlinux 0x5c1869e1 ack_all_badblocks -EXPORT_SYMBOL_GPL vmlinux 0x5c1af64a __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x5c33c4cd devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5c261fc9 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5c27b33b device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5c2d67e4 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x5c35e455 shash_no_setkey EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event -EXPORT_SYMBOL_GPL vmlinux 0x5c4f8ed2 vp_modern_config_vector -EXPORT_SYMBOL_GPL vmlinux 0x5c5304ea ahci_shost_groups -EXPORT_SYMBOL_GPL vmlinux 0x5c53c1df pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x5c43cfa2 rz_mtu3_32bit_ch_write +EXPORT_SYMBOL_GPL vmlinux 0x5c454239 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x5c469302 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5c46f7ce clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5c4ba4b4 devm_ti_sci_get_resource EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control EXPORT_SYMBOL_GPL vmlinux 0x5c74b41d public_key_signature_free -EXPORT_SYMBOL_GPL vmlinux 0x5c790f1f reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c7bf054 bpf_prog_put EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x5c8a57b7 blk_trace_startstop -EXPORT_SYMBOL_GPL vmlinux 0x5c985aa1 to_software_node -EXPORT_SYMBOL_GPL vmlinux 0x5ca71114 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x5c8b2571 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x5c92b324 xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0x5cad6d19 usb_acpi_power_manageable EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple -EXPORT_SYMBOL_GPL vmlinux 0x5cb7cf70 of_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x5cba7505 dev_pm_domain_attach -EXPORT_SYMBOL_GPL vmlinux 0x5cbb687b netdev_walk_all_lower_dev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5cc209f2 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x5cb6f1b8 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x5cbdc5a5 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x5cc2e424 __mnt_is_readonly EXPORT_SYMBOL_GPL vmlinux 0x5cc77c45 led_colors -EXPORT_SYMBOL_GPL vmlinux 0x5cd500e7 fscrypt_set_context -EXPORT_SYMBOL_GPL vmlinux 0x5cd5127c ahci_platform_resume -EXPORT_SYMBOL_GPL vmlinux 0x5cd8c9b4 software_node_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x5cdf26a6 regulator_allow_bypass -EXPORT_SYMBOL_GPL vmlinux 0x5ce77262 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x5cc8a2a4 crypto_register_scomps EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0x5d057233 stmpe_reg_write -EXPORT_SYMBOL_GPL vmlinux 0x5d0a1384 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x5cef45ac kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x5cf6ec97 cpufreq_disable_fast_switch EXPORT_SYMBOL_GPL vmlinux 0x5d0c4dcc phylink_speed_up EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write -EXPORT_SYMBOL_GPL vmlinux 0x5d28bd12 msi_domain_get_virq -EXPORT_SYMBOL_GPL vmlinux 0x5d2a24f8 pci_generic_config_write EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek -EXPORT_SYMBOL_GPL vmlinux 0x5d2bbcf3 regcache_cache_only EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm -EXPORT_SYMBOL_GPL vmlinux 0x5d541b91 usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x5d6cf4bc devm_clk_register -EXPORT_SYMBOL_GPL vmlinux 0x5d731720 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5d2c21fc crypto_sig_set_pubkey +EXPORT_SYMBOL_GPL vmlinux 0x5d4f26d4 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d5ac5bc perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x5d646b66 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x5d6a0cb7 io_uring_cmd_done EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc EXPORT_SYMBOL_GPL vmlinux 0x5d85bb62 __tracepoint_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x5d87d36f k3_udma_glue_tx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x5d90ad1d of_dma_configure_id -EXPORT_SYMBOL_GPL vmlinux 0x5d9afd4c crypto_unregister_acomp -EXPORT_SYMBOL_GPL vmlinux 0x5d9c9d39 blk_mark_disk_dead -EXPORT_SYMBOL_GPL vmlinux 0x5d9ceea5 fwnode_get_nth_parent -EXPORT_SYMBOL_GPL vmlinux 0x5da1f44a bus_get_dev_root -EXPORT_SYMBOL_GPL vmlinux 0x5da36f30 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5d9597fb pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5da05114 __serdev_device_driver_register EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact -EXPORT_SYMBOL_GPL vmlinux 0x5db4cdd7 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x5dba2271 gfn_to_page EXPORT_SYMBOL_GPL vmlinux 0x5dc19747 phylink_mii_c22_pcs_encode_advertisement -EXPORT_SYMBOL_GPL vmlinux 0x5de30715 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x5dcaf9d5 tcp_plb_update_state +EXPORT_SYMBOL_GPL vmlinux 0x5dd201c7 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x5dd8e5d5 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5dde432b generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x5de36ef3 tty_get_pgrp EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push -EXPORT_SYMBOL_GPL vmlinux 0x5deafd0f mbox_client_txdone -EXPORT_SYMBOL_GPL vmlinux 0x5e05ccaf ata_link_abort -EXPORT_SYMBOL_GPL vmlinux 0x5e0c1ad1 l3mdev_master_ifindex_rcu -EXPORT_SYMBOL_GPL vmlinux 0x5e0d79d5 kvm_destroy_vcpus -EXPORT_SYMBOL_GPL vmlinux 0x5e1707a5 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x5dee6cfa dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x5e01e983 __traceiter_pelt_rt_tp EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0x5e25e22d __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x5e28e312 kvm_init -EXPORT_SYMBOL_GPL vmlinux 0x5e2d3504 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x5e30b6c9 acpi_spi_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x5e387f36 dma_resv_get_singleton -EXPORT_SYMBOL_GPL vmlinux 0x5e3ce530 scsi_host_unblock -EXPORT_SYMBOL_GPL vmlinux 0x5e431731 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x5e2daa9a platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5e3dafbf rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x5e442fbe bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x5e4a4106 cpci_hp_register_controller EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x5e52453d reset_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x5e552df8 devl_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e61309b usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x5e5a7983 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x5e681105 attribute_container_register EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val -EXPORT_SYMBOL_GPL vmlinux 0x5e7ec11f phy_get_rate_matching +EXPORT_SYMBOL_GPL vmlinux 0x5e7bc8bc regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5e819d7c acpi_get_first_physical_node EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume -EXPORT_SYMBOL_GPL vmlinux 0x5e8a1142 gnttab_page_cache_shrink -EXPORT_SYMBOL_GPL vmlinux 0x5e8ca8fe meson_eeclkc_probe -EXPORT_SYMBOL_GPL vmlinux 0x5e8d3126 devlink_resources_unregister -EXPORT_SYMBOL_GPL vmlinux 0x5e912424 vcap_set_tc_exterr -EXPORT_SYMBOL_GPL vmlinux 0x5e955db1 gov_attr_set_put -EXPORT_SYMBOL_GPL vmlinux 0x5ea315a6 fscrypt_fname_encrypted_size -EXPORT_SYMBOL_GPL vmlinux 0x5ea88997 usb_hub_clear_tt_buffer -EXPORT_SYMBOL_GPL vmlinux 0x5ea9cbee bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x5ea1d3e3 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x5ea330a6 phy_validate EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eaf2dc7 acpi_device_uevent_modalias EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler -EXPORT_SYMBOL_GPL vmlinux 0x5eb90041 scsi_nl_sock -EXPORT_SYMBOL_GPL vmlinux 0x5ec40d13 skcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x5ec538c1 __cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0x5ecc34e9 fixed_phy_register -EXPORT_SYMBOL_GPL vmlinux 0x5ecd3c00 rio_request_outb_dbell EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x5efa8e1e mtk_clk_unregister_composites -EXPORT_SYMBOL_GPL vmlinux 0x5efe0e29 pm_generic_thaw_noirq -EXPORT_SYMBOL_GPL vmlinux 0x5efe65dc pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x5f0f7ac1 net_failover_destroy -EXPORT_SYMBOL_GPL vmlinux 0x5f1bd0da clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5ee4a841 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x5ef4b2b7 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x5ef995bc rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x5f09dec0 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x5f1509d0 inet_splice_eof EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f27f6d0 device_add_groups EXPORT_SYMBOL_GPL vmlinux 0x5f384a68 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x5f38db27 pci_vfs_assigned -EXPORT_SYMBOL_GPL vmlinux 0x5f3c455c wm8350_block_write -EXPORT_SYMBOL_GPL vmlinux 0x5f4577b5 dw_pcie_ep_raise_msi_irq -EXPORT_SYMBOL_GPL vmlinux 0x5f4ddbc9 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x5f5077f8 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x5f54dd94 imx_pinctrl_pm_ops -EXPORT_SYMBOL_GPL vmlinux 0x5f55b2a1 thermal_zone_device_disable -EXPORT_SYMBOL_GPL vmlinux 0x5f6087c8 tty_port_register_device_attr_serdev -EXPORT_SYMBOL_GPL vmlinux 0x5f667bd2 led_set_brightness_sync -EXPORT_SYMBOL_GPL vmlinux 0x5f66e6e1 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x5f3d4383 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x5f3db975 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x5f44e746 qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x5f6620b8 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x5f679d96 class_dev_iter_exit EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private -EXPORT_SYMBOL_GPL vmlinux 0x5f86eeb5 ip6_route_input_lookup -EXPORT_SYMBOL_GPL vmlinux 0x5f8f691c irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x5f9abdc0 blk_queue_max_discard_segments -EXPORT_SYMBOL_GPL vmlinux 0x5fa3ce3a of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x5f7708f9 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x5f8c014b nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x5f8e5f1f meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f8f5d90 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x5f968600 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5fa28341 ata_sff_data_xfer32 EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point -EXPORT_SYMBOL_GPL vmlinux 0x5fa7c876 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x5fb0d3d3 gpiod_to_chip EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start EXPORT_SYMBOL_GPL vmlinux 0x5fbb1de5 acpi_cpu_get_madt_gicc -EXPORT_SYMBOL_GPL vmlinux 0x5fc7260a simple_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x5fed5d47 __traceiter_sched_util_est_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0x60050c7f devl_rate_node_create -EXPORT_SYMBOL_GPL vmlinux 0x6005727d tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x5fcf1ee0 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x5fd1b88b devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x5fd269c7 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x5fd33fcb spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x5ff06f1b xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x6003346b tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x601b3919 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6011163d __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x60217fe7 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x603cb76a cpu_device_create EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60440784 serdev_device_remove EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x60487a02 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x604d1493 nop_posix_acl_default +EXPORT_SYMBOL_GPL vmlinux 0x60553723 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x60576ad8 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x60587f70 irq_gc_mask_set_bit EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size -EXPORT_SYMBOL_GPL vmlinux 0x605ded29 usb_get_role_switch_default_mode -EXPORT_SYMBOL_GPL vmlinux 0x605f5a60 pci_test_config_bits -EXPORT_SYMBOL_GPL vmlinux 0x60629a56 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x605ebfac ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x605f828a syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x60614cd1 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x606161bf n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x60637367 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x6064291d nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x606b22c5 key_type_user EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set -EXPORT_SYMBOL_GPL vmlinux 0x606b8735 pm_generic_poweroff_noirq -EXPORT_SYMBOL_GPL vmlinux 0x606d9281 rz_mtu3_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x6070bbdf power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x606d09dc balance_dirty_pages_ratelimited_flags +EXPORT_SYMBOL_GPL vmlinux 0x6071a8ea sock_gen_put EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put -EXPORT_SYMBOL_GPL vmlinux 0x6088306b page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x607fc282 irq_domain_remove EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x609d2bde vcap_tc_flower_handler_portnum_usage EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off -EXPORT_SYMBOL_GPL vmlinux 0x60a3317c of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x60a58fad fat_alloc_new_dir EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri -EXPORT_SYMBOL_GPL vmlinux 0x60c10209 __traceiter_ata_bmdma_setup -EXPORT_SYMBOL_GPL vmlinux 0x60cb8d7b dev_pm_set_dedicated_wake_irq -EXPORT_SYMBOL_GPL vmlinux 0x60e1fcc4 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x60baf39d raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x60c29c3f fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x60d099c4 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x60d4765f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x60d9c563 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x60eb314c mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare -EXPORT_SYMBOL_GPL vmlinux 0x60fca5b1 dev_pm_opp_of_register_em -EXPORT_SYMBOL_GPL vmlinux 0x6104d3ee gnttab_unmap_refs_sync -EXPORT_SYMBOL_GPL vmlinux 0x610e758a debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x61058cdd __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x610929b1 add_swap_extent EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x611e3bd6 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x612948f9 call_switchdev_notifiers EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status -EXPORT_SYMBOL_GPL vmlinux 0x612d02b0 vp_modern_get_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0x61376fe8 spi_transfer_cs_change_delay_exec -EXPORT_SYMBOL_GPL vmlinux 0x6147d684 blkdev_zone_mgmt EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all -EXPORT_SYMBOL_GPL vmlinux 0x61534b33 qcom_smem_state_get -EXPORT_SYMBOL_GPL vmlinux 0x61568927 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x6164127d rio_local_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0x6164dd66 virtio_reset_device -EXPORT_SYMBOL_GPL vmlinux 0x616a4bb7 extcon_set_state -EXPORT_SYMBOL_GPL vmlinux 0x61729077 nfs42_ssc_register -EXPORT_SYMBOL_GPL vmlinux 0x617ccfd6 devm_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0x617de5a4 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x617369d4 device_remove_file EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6182bf20 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x6188cbd1 gov_attr_set_put EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x619a0b13 ncsi_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x61b3ba83 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x61a21192 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x61a33fd0 vfs_get_acl EXPORT_SYMBOL_GPL vmlinux 0x61bd0bd0 get_completed_synchronize_rcu_full EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group EXPORT_SYMBOL_GPL vmlinux 0x61c651a3 imx93_clk_composite_flags -EXPORT_SYMBOL_GPL vmlinux 0x61c67d4a devm_i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x61c9f5ab vcap_select_min_rule_keyset -EXPORT_SYMBOL_GPL vmlinux 0x61cf66c2 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x61d633c6 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x61d0703b fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x61dfbd3f hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x61e9cb68 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x61ea4024 phy_speed_down EXPORT_SYMBOL_GPL vmlinux 0x61f1644b mas_find_range -EXPORT_SYMBOL_GPL vmlinux 0x61f3a75a blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x61f4b787 set_secondary_fwnode EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array -EXPORT_SYMBOL_GPL vmlinux 0x61f91cc5 gpiod_direction_output -EXPORT_SYMBOL_GPL vmlinux 0x61fa7b61 dev_pm_opp_put_opp_table -EXPORT_SYMBOL_GPL vmlinux 0x61fadee4 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x61fb025b acpi_subsys_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x620d0932 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x620024dc dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x6208885f wm831x_regmap_config EXPORT_SYMBOL_GPL vmlinux 0x62104126 phylink_ethtool_set_wol -EXPORT_SYMBOL_GPL vmlinux 0x621e88a2 gpiod_set_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x621fffbb kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x6220d305 devm_devfreq_event_add_edev -EXPORT_SYMBOL_GPL vmlinux 0x62271326 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x62258b45 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x6226ba5c devl_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x622ab401 of_remove_property EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule -EXPORT_SYMBOL_GPL vmlinux 0x62418a66 fwnode_graph_get_remote_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x624634e2 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x6239353e kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x623b3cd1 unregister_trace_event EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0x62540602 cpuidle_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x62543af9 genphy_c45_read_lpa EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get -EXPORT_SYMBOL_GPL vmlinux 0x6257eda4 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x62599f21 misc_cg_uncharge EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context -EXPORT_SYMBOL_GPL vmlinux 0x625e6122 __fsverity_cleanup_inode -EXPORT_SYMBOL_GPL vmlinux 0x626388d4 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x6267df1d bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x62982884 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x625d8288 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x6263ef2b fuse_dev_release EXPORT_SYMBOL_GPL vmlinux 0x6298a776 vcap_rule_set_counter +EXPORT_SYMBOL_GPL vmlinux 0x629d0fe4 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x62a11a78 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x62a555c0 percpu_free_rwsem EXPORT_SYMBOL_GPL vmlinux 0x62abdfb8 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x62b3956f rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x62b73722 balloon_page_dequeue EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift -EXPORT_SYMBOL_GPL vmlinux 0x62bf931e transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x62c67c85 uart_xchar_out -EXPORT_SYMBOL_GPL vmlinux 0x62c70e8e usb_unpoison_urb -EXPORT_SYMBOL_GPL vmlinux 0x62ca03c6 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x62d5d560 ahci_platform_disable_phys -EXPORT_SYMBOL_GPL vmlinux 0x62e52ec6 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x62ed36dc kvm_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x62f78d86 ohci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0x62fef96f regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x62c07d19 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x62cf2405 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x62e9276b spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x62fcca16 vcap_tc_flower_handler_ipv6_usage EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake -EXPORT_SYMBOL_GPL vmlinux 0x6324a07b clk_hw_round_rate -EXPORT_SYMBOL_GPL vmlinux 0x633da58c auxiliary_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug -EXPORT_SYMBOL_GPL vmlinux 0x6354a7c9 bpf_offload_dev_netdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6366d830 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x636a745a pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0x636b623d kill_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x637f3b85 hwspin_lock_register -EXPORT_SYMBOL_GPL vmlinux 0x63904aba device_driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x6394c60b l3mdev_ifindex_lookup_by_table_id -EXPORT_SYMBOL_GPL vmlinux 0x63954ded ethtool_set_ethtool_phy_ops -EXPORT_SYMBOL_GPL vmlinux 0x63976730 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x63aa998f tc3589x_block_read -EXPORT_SYMBOL_GPL vmlinux 0x63bb0a5d devl_params_register +EXPORT_SYMBOL_GPL vmlinux 0x63746234 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6374fbdb is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x639967a2 devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x63a03ae4 nf_ip6_check_hbh_len +EXPORT_SYMBOL_GPL vmlinux 0x63b19044 hwspin_lock_register EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare -EXPORT_SYMBOL_GPL vmlinux 0x63c86623 peernet2id_alloc -EXPORT_SYMBOL_GPL vmlinux 0x63d9cc0c pci_epc_start -EXPORT_SYMBOL_GPL vmlinux 0x63dabaec switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x63c132fd devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x63cb49b0 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x63df71d3 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x63dfeabf dpbp_close EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str -EXPORT_SYMBOL_GPL vmlinux 0x63ee274d bpf_prog_inc -EXPORT_SYMBOL_GPL vmlinux 0x63f04e52 evm_verifyxattr -EXPORT_SYMBOL_GPL vmlinux 0x63fff4c7 mtk_clk_register_gates -EXPORT_SYMBOL_GPL vmlinux 0x6400e53d rio_unlock_device -EXPORT_SYMBOL_GPL vmlinux 0x64036959 devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x63fb32b8 fsl_mc_bus_dprtc_type EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable -EXPORT_SYMBOL_GPL vmlinux 0x64325215 skb_mpls_dec_ttl -EXPORT_SYMBOL_GPL vmlinux 0x6434bbe4 devm_i2c_add_adapter -EXPORT_SYMBOL_GPL vmlinux 0x643877d8 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x6429cc10 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6433fc9b cpci_hp_unregister_controller EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate -EXPORT_SYMBOL_GPL vmlinux 0x644033d0 blk_queue_max_zone_append_sectors -EXPORT_SYMBOL_GPL vmlinux 0x6444562e dev_pm_domain_set -EXPORT_SYMBOL_GPL vmlinux 0x644a043a ata_sff_data_xfer32 -EXPORT_SYMBOL_GPL vmlinux 0x644ddf01 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x646e0e67 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x644fae4c acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x646d16b7 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6471cdfa serial8250_rpm_get_tx EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6476b38e ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x647f879f regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x648393a4 crypto_alloc_tfm_node EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add EXPORT_SYMBOL_GPL vmlinux 0x648f59a9 sfp_module_insert -EXPORT_SYMBOL_GPL vmlinux 0x649f642d tps6586x_writes EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io -EXPORT_SYMBOL_GPL vmlinux 0x64b0d500 __netdev_watchdog_up -EXPORT_SYMBOL_GPL vmlinux 0x64bfad45 clk_register_gate -EXPORT_SYMBOL_GPL vmlinux 0x64c1a19c rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x64c4015b fat_getattr -EXPORT_SYMBOL_GPL vmlinux 0x64dfc95b irq_remove_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x64e0095d devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x64b20059 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x64b5bf40 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x64b83dea rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x64c1f7d0 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x64cab4ac bio_split_rw +EXPORT_SYMBOL_GPL vmlinux 0x64d5406d serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x64d63361 fwnode_get_nth_parent EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete -EXPORT_SYMBOL_GPL vmlinux 0x64e38845 kthread_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x64e5791c wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64e8b6aa cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x64eeb4db ip6_push_pending_frames EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush -EXPORT_SYMBOL_GPL vmlinux 0x64fd312b regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x64f98647 bpf_trace_run1 EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf -EXPORT_SYMBOL_GPL vmlinux 0x65166175 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x6506a8ef housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x650acd9a unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x650fcba2 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x6515680e gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x651c9625 relay_open EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x652a0e4b devm_pm_opp_of_add_table EXPORT_SYMBOL_GPL vmlinux 0x652fe2a8 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x65308b25 perf_event_pause EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add -EXPORT_SYMBOL_GPL vmlinux 0x653c938a usb_set_wireless_status -EXPORT_SYMBOL_GPL vmlinux 0x6543aab2 dax_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x65446897 lp8788_update_bits -EXPORT_SYMBOL_GPL vmlinux 0x654df752 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x653e0ab2 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x653ed68f pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x654e8d03 debugfs_create_u32_array EXPORT_SYMBOL_GPL vmlinux 0x65525c38 ghes_register_report_chain -EXPORT_SYMBOL_GPL vmlinux 0x65642c2b fixed_phy_set_link_update -EXPORT_SYMBOL_GPL vmlinux 0x6574ffba sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x65777187 dma_resv_set_deadline -EXPORT_SYMBOL_GPL vmlinux 0x657ae7d0 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x6584a41a xdp_return_buff -EXPORT_SYMBOL_GPL vmlinux 0x65a2bb45 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x65615264 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x65939d4f compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x659d8634 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x65aa6a7d phylink_generic_validate EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight -EXPORT_SYMBOL_GPL vmlinux 0x65bc796e qcom_smem_state_register -EXPORT_SYMBOL_GPL vmlinux 0x65bd8b8d screen_glyph -EXPORT_SYMBOL_GPL vmlinux 0x65c1b9b9 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x65b09738 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x65c0d157 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x65c1c0b0 power_supply_am_i_supplied EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x65ce02a8 wbc_attach_and_unlock_inode -EXPORT_SYMBOL_GPL vmlinux 0x65db7a13 dev_queue_xmit_nit -EXPORT_SYMBOL_GPL vmlinux 0x65dc7ee6 genphy_c45_pma_baset1_read_master_slave -EXPORT_SYMBOL_GPL vmlinux 0x65de8076 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x65d6f349 sysfs_merge_group EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache -EXPORT_SYMBOL_GPL vmlinux 0x65e23f1c regmap_raw_write_async -EXPORT_SYMBOL_GPL vmlinux 0x660aae65 of_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x6613a912 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x65f0490c pm_stay_awake EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol -EXPORT_SYMBOL_GPL vmlinux 0x66275876 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6628a7c8 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x662d37e0 device_remove_file_self EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end -EXPORT_SYMBOL_GPL vmlinux 0x663f046d irq_gc_set_wake -EXPORT_SYMBOL_GPL vmlinux 0x6646d9be pm_generic_restore_noirq -EXPORT_SYMBOL_GPL vmlinux 0x664e5b2b spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x663e0f06 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x664c5461 crypto_alloc_rng EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle -EXPORT_SYMBOL_GPL vmlinux 0x6668ca02 xen_register_device_domain_owner -EXPORT_SYMBOL_GPL vmlinux 0x666b0674 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x667228d2 switchdev_bridge_port_offload -EXPORT_SYMBOL_GPL vmlinux 0x6676de24 pci_ecam_map_bus EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x66ab4afc usb_hcd_setup_local_mem -EXPORT_SYMBOL_GPL vmlinux 0x66b4f1dd kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x669c3401 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x669d18c7 devm_regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up -EXPORT_SYMBOL_GPL vmlinux 0x66b9c967 led_classdev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x66bcac32 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x66cf7693 bd_link_disk_holder EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr EXPORT_SYMBOL_GPL vmlinux 0x66e8b5b0 phylink_caps_to_linkmodes -EXPORT_SYMBOL_GPL vmlinux 0x67034afa hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x67048aec pci_epf_add_vepf -EXPORT_SYMBOL_GPL vmlinux 0x67050667 iommu_domain_alloc -EXPORT_SYMBOL_GPL vmlinux 0x6706528e pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x66fd3edb dpcon_close EXPORT_SYMBOL_GPL vmlinux 0x670b339c ghes_get_devices -EXPORT_SYMBOL_GPL vmlinux 0x67144a78 fwnode_create_software_node -EXPORT_SYMBOL_GPL vmlinux 0x671b6da3 ata_sff_softreset -EXPORT_SYMBOL_GPL vmlinux 0x67203a23 power_supply_changed -EXPORT_SYMBOL_GPL vmlinux 0x672e48a3 trace_seq_path -EXPORT_SYMBOL_GPL vmlinux 0x67364619 rz_mtu3_enable -EXPORT_SYMBOL_GPL vmlinux 0x67379aa5 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x672068b3 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x67354feb __devm_add_action EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target -EXPORT_SYMBOL_GPL vmlinux 0x673d6232 clk_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0x6748e07b usb_hcd_unmap_urb_for_dma -EXPORT_SYMBOL_GPL vmlinux 0x6753642c pci_disable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0x6756a4d6 blk_crypto_reprogram_all_keys -EXPORT_SYMBOL_GPL vmlinux 0x6763a717 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x6764f47c mtk_clk_register_factors -EXPORT_SYMBOL_GPL vmlinux 0x676906aa component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x67477248 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x674d583c genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6757a00c is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x67637256 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x67652c0c of_dma_simple_xlate EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free -EXPORT_SYMBOL_GPL vmlinux 0x67715408 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x67758de2 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x67771374 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x6779c142 devm_mbox_controller_unregister EXPORT_SYMBOL_GPL vmlinux 0x677c69f1 make_vfsgid EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store -EXPORT_SYMBOL_GPL vmlinux 0x6785e0e5 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x678fa87e bpf_trace_run5 -EXPORT_SYMBOL_GPL vmlinux 0x67939a53 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x67886604 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6791d9a4 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x6792547c strp_data_ready EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits -EXPORT_SYMBOL_GPL vmlinux 0x67a3a590 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x67975ca4 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x679fa98b ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x67a1131d gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x67be4e5c component_master_del EXPORT_SYMBOL_GPL vmlinux 0x67c3c795 get_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x67cdf925 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x67c86679 devm_thermal_of_zone_unregister EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x67db1099 device_pm_wait_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x67e7d6a5 of_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x67eb0211 devl_param_driverinit_value_get -EXPORT_SYMBOL_GPL vmlinux 0x67f810cc __vfs_setxattr_locked -EXPORT_SYMBOL_GPL vmlinux 0x67f8ab7e xenbus_probe_node -EXPORT_SYMBOL_GPL vmlinux 0x680bb550 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x67e0cd71 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x67e687e5 devl_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x67e8213b topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x67f061dc tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x67f59087 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x67f89480 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x67fd20ae dev_pm_qos_hide_latency_tolerance EXPORT_SYMBOL_GPL vmlinux 0x6822de1a firmware_upload_unregister EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu -EXPORT_SYMBOL_GPL vmlinux 0x683f3267 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x68305e89 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x68314246 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x68323734 blkg_conf_exit EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode -EXPORT_SYMBOL_GPL vmlinux 0x684f7f23 uhci_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0x6867d027 dprc_get_obj -EXPORT_SYMBOL_GPL vmlinux 0x686b8448 crypto_register_skciphers -EXPORT_SYMBOL_GPL vmlinux 0x686bd1d6 ata_do_set_mode -EXPORT_SYMBOL_GPL vmlinux 0x6873c396 __reset_control_get -EXPORT_SYMBOL_GPL vmlinux 0x6874796c dma_request_chan -EXPORT_SYMBOL_GPL vmlinux 0x687f5f28 ulpi_viewport_access_ops -EXPORT_SYMBOL_GPL vmlinux 0x6882da03 pci_epc_map_addr -EXPORT_SYMBOL_GPL vmlinux 0x688e56cc ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x6855d250 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x6870b971 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0x687298f0 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x687fbfb5 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x6888366b vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x688e5b59 irq_chip_get_parent_state EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x689524f7 gpiod_get_raw_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x68a4f383 of_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0x68abf87b sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x68b779bc iomap_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x68ba0827 otg_ulpi_create -EXPORT_SYMBOL_GPL vmlinux 0x68c0cb37 dax_add_host -EXPORT_SYMBOL_GPL vmlinux 0x68e018c3 k3_ringacc_dmarings_init -EXPORT_SYMBOL_GPL vmlinux 0x68eaa957 devm_memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x68edc5b2 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6897a26d i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x68b9248d kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x68baeb98 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x68c9382d irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x68ca2f3a fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x68cc7ba6 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x68d11dca kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x68d42736 vcap_tc_flower_handler_ipv4_usage +EXPORT_SYMBOL_GPL vmlinux 0x68d436f1 phylink_connect_phy +EXPORT_SYMBOL_GPL vmlinux 0x68d4b34e hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x68da3418 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x68e908aa fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x68e92070 dma_opt_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x68ea126f genphy_c45_read_pma EXPORT_SYMBOL_GPL vmlinux 0x6900686f vcap_find_actionfield EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array -EXPORT_SYMBOL_GPL vmlinux 0x6915ca61 stmpe811_adc_common_init -EXPORT_SYMBOL_GPL vmlinux 0x6917de2e led_set_brightness_nosleep -EXPORT_SYMBOL_GPL vmlinux 0x692062b5 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x6920f7e6 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x69224570 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x691a5c21 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x691fe7f4 ahci_platform_get_resources EXPORT_SYMBOL_GPL vmlinux 0x6926c3fa vcap_rule_get_counter -EXPORT_SYMBOL_GPL vmlinux 0x693ecb11 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x6945a9cc mptcp_pm_get_add_addr_signal_max -EXPORT_SYMBOL_GPL vmlinux 0x694ad96d md_find_rdev_rcu -EXPORT_SYMBOL_GPL vmlinux 0x695761aa device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x69325507 da9052_free_irq EXPORT_SYMBOL_GPL vmlinux 0x695776c5 seq_buf_do_printk -EXPORT_SYMBOL_GPL vmlinux 0x695ff9a1 ip6_route_output_flags EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0x696ddec2 ethnl_cable_test_finished EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc -EXPORT_SYMBOL_GPL vmlinux 0x69841067 ohci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6987db69 cpci_hp_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0x698bb303 fscrypt_parse_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0x698dd53f of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x697f2484 i2c_acpi_waive_d0_probe EXPORT_SYMBOL_GPL vmlinux 0x698edfc3 zynqmp_pm_set_gem_config -EXPORT_SYMBOL_GPL vmlinux 0x69a3ab24 rockchip_pcie_parse_dt -EXPORT_SYMBOL_GPL vmlinux 0x69b4330c extcon_dev_free -EXPORT_SYMBOL_GPL vmlinux 0x69b77bdd synth_event_gen_cmd_array_start -EXPORT_SYMBOL_GPL vmlinux 0x69b7b0ab crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x69b9aa3b devl_dpipe_table_unregister -EXPORT_SYMBOL_GPL vmlinux 0x69c6a65c lochnagar_update_config -EXPORT_SYMBOL_GPL vmlinux 0x69c85530 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x6990183d rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x69957e84 kernel_file_open +EXPORT_SYMBOL_GPL vmlinux 0x69961e48 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x69bf357d fib_rules_unregister EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e51177 edac_get_sysfs_subsys EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen -EXPORT_SYMBOL_GPL vmlinux 0x69ec9fcc phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x69ed6988 sdio_retune_crc_enable EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high -EXPORT_SYMBOL_GPL vmlinux 0x69ef5e35 pci_epf_unbind -EXPORT_SYMBOL_GPL vmlinux 0x69fbbf03 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x69ee3725 serdev_device_set_baudrate EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode -EXPORT_SYMBOL_GPL vmlinux 0x6a07e97a host1x_context_device_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x6a0986d6 fwnode_get_phy_mode EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6a22fb76 __clk_hw_register_divider -EXPORT_SYMBOL_GPL vmlinux 0x6a30dbd1 dev_pm_qos_hide_flags -EXPORT_SYMBOL_GPL vmlinux 0x6a3544f0 acpi_subsys_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x6a3a50db da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a159a14 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a351cd7 led_sysfs_disable EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize -EXPORT_SYMBOL_GPL vmlinux 0x6a6071f4 led_trigger_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6a68eb4b fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x6a6fac76 virtqueue_get_used_addr -EXPORT_SYMBOL_GPL vmlinux 0x6a763a82 switchdev_handle_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0x6a768a51 ata_host_init -EXPORT_SYMBOL_GPL vmlinux 0x6a7bfe15 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x6a5314e6 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x6a5d9c4c ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x6a8305f7 crypto_sig_verify EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a881e94 acpi_register_gsi EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function EXPORT_SYMBOL_GPL vmlinux 0x6a9e90af ata_mode_string -EXPORT_SYMBOL_GPL vmlinux 0x6a9ee78d lwtunnel_fill_encap EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via -EXPORT_SYMBOL_GPL vmlinux 0x6ab434cc scsi_internal_device_block_nowait -EXPORT_SYMBOL_GPL vmlinux 0x6abb9314 irq_chip_retrigger_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x6abbc974 nvdimm_has_flush -EXPORT_SYMBOL_GPL vmlinux 0x6acd066d device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x6ace0c68 fsnotify_add_mark -EXPORT_SYMBOL_GPL vmlinux 0x6ad1ce05 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x6ae459ed edac_pci_alloc_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0x6ae5f404 device_create_managed_software_node -EXPORT_SYMBOL_GPL vmlinux 0x6aed7cce usb_deregister_device_driver -EXPORT_SYMBOL_GPL vmlinux 0x6b02fc92 regmap_raw_write -EXPORT_SYMBOL_GPL vmlinux 0x6b086c30 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6aaf4464 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6acb25d2 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x6adf2e8c acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x6aeb911c bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b00b116 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6b077211 ata_sff_wait_ready EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority -EXPORT_SYMBOL_GPL vmlinux 0x6b0f97bb ata_scsi_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x6b120a4e filemap_range_has_writeback -EXPORT_SYMBOL_GPL vmlinux 0x6b26f939 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6b19da07 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x6b1c813e scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x6b22c602 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x6b2522b6 xenbus_dev_changed EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b2d7705 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x6b2ee88d anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x6b39e8f4 udp_abort EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x6b3d9446 usb_sg_cancel EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version -EXPORT_SYMBOL_GPL vmlinux 0x6b4054eb rio_add_net EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux -EXPORT_SYMBOL_GPL vmlinux 0x6b5458bb spi_mem_default_supports_op -EXPORT_SYMBOL_GPL vmlinux 0x6b6db758 power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x6b71aa28 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x6b558313 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6b5e7d37 of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed -EXPORT_SYMBOL_GPL vmlinux 0x6b8743b6 device_set_wakeup_enable -EXPORT_SYMBOL_GPL vmlinux 0x6b8dafec irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6ba062d9 stmpe811_adc_common_init EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value -EXPORT_SYMBOL_GPL vmlinux 0x6ba3df79 icc_std_aggregate EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x6bbf330d of_platform_device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x6bc2b705 pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0x6bc666c5 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x6bc6db9d handle_bad_irq EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake -EXPORT_SYMBOL_GPL vmlinux 0x6bdf71d1 devl_resource_occ_get_unregister EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0x6be8422a rdev_get_name -EXPORT_SYMBOL_GPL vmlinux 0x6bf5f103 addrconf_prefix_rcv_add_addr -EXPORT_SYMBOL_GPL vmlinux 0x6bf892c6 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x6c1423ea ncsi_stop_dev -EXPORT_SYMBOL_GPL vmlinux 0x6c1e508c preempt_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x6c1f9dbf __crypto_alloc_tfmgfp +EXPORT_SYMBOL_GPL vmlinux 0x6be5f610 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x6bfaa8ef devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x6bfc2d55 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x6c0c70c9 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6c16560d usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x6c17b221 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x6c1dbed8 genphy_c45_read_mdix EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print -EXPORT_SYMBOL_GPL vmlinux 0x6c2288e2 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x6c230fe0 md_run +EXPORT_SYMBOL_GPL vmlinux 0x6c26e2d8 tty_port_register_device EXPORT_SYMBOL_GPL vmlinux 0x6c348fda scmi_requested_devices_nh EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen -EXPORT_SYMBOL_GPL vmlinux 0x6c47180c of_get_videomode EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert -EXPORT_SYMBOL_GPL vmlinux 0x6c59d3bb fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6c52e44a of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x6c55dd68 imx_pinctrl_parse_pin_scu EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x6c5aead4 rio_add_mport_pw_handler -EXPORT_SYMBOL_GPL vmlinux 0x6c60ff85 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x6c5e1b94 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0x6c62b713 devm_ti_sci_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6c69047f tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x6c698170 __traceiter_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6c7b6d62 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x6c8a1f35 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x6c711f39 vcap_del_rules +EXPORT_SYMBOL_GPL vmlinux 0x6c75feaa __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6c7ef9e0 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x6c85b084 preempt_notifier_register EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr -EXPORT_SYMBOL_GPL vmlinux 0x6ca127b4 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x6ca0ada3 devm_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition -EXPORT_SYMBOL_GPL vmlinux 0x6cb337c2 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x6cb34bbe devlink_flash_update_status_notify -EXPORT_SYMBOL_GPL vmlinux 0x6cc4cdc0 dev_pm_opp_config_clks_simple -EXPORT_SYMBOL_GPL vmlinux 0x6cd53b8d crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x6cd78438 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6cbf936f fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x6cc129af usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x6ccf12fa register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x6cdc7799 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6ce464f5 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x6cef4081 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x6cf43767 mpc8xxx_spi_tx_buf_u32 EXPORT_SYMBOL_GPL vmlinux 0x6cfab41a xen_hvm_evtchn_do_upcall EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x6d0536ef ata_dev_pair -EXPORT_SYMBOL_GPL vmlinux 0x6d08d1ee fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request -EXPORT_SYMBOL_GPL vmlinux 0x6d0bdfb3 security_kernel_read_file -EXPORT_SYMBOL_GPL vmlinux 0x6d0c86ff split_page +EXPORT_SYMBOL_GPL vmlinux 0x6d0ede3f clk_register EXPORT_SYMBOL_GPL vmlinux 0x6d211d05 pm_report_hw_sleep_time -EXPORT_SYMBOL_GPL vmlinux 0x6d23893e rio_register_scan -EXPORT_SYMBOL_GPL vmlinux 0x6d28894b iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x6d32ee8e regcache_drop_region -EXPORT_SYMBOL_GPL vmlinux 0x6d373b11 param_set_uint_minmax -EXPORT_SYMBOL_GPL vmlinux 0x6d3d17b7 sdio_f0_readb -EXPORT_SYMBOL_GPL vmlinux 0x6d3f8b2b of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x6d310852 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x6d356723 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x6d418a5a thermal_zone_get_trip EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit EXPORT_SYMBOL_GPL vmlinux 0x6d49c8ed iommu_group_has_isolated_msi -EXPORT_SYMBOL_GPL vmlinux 0x6d5611ea paste_selection -EXPORT_SYMBOL_GPL vmlinux 0x6d617168 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x6d6d254f gpiod_set_array_value EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x6d73e471 fsl_mc_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x6d85bc3e vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x6d91b1e6 pci_epc_add_epf -EXPORT_SYMBOL_GPL vmlinux 0x6d9a8c8d fscrypt_fname_siphash -EXPORT_SYMBOL_GPL vmlinux 0x6d9b3319 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x6d9cc120 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x6da38de9 kthread_unuse_mm EXPORT_SYMBOL_GPL vmlinux 0x6da9ca52 evtchn_make_refcounted -EXPORT_SYMBOL_GPL vmlinux 0x6db3c576 devlink_net -EXPORT_SYMBOL_GPL vmlinux 0x6dba3011 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x6dae832b ipv4_sk_redirect EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 -EXPORT_SYMBOL_GPL vmlinux 0x6dbdcc53 vp_modern_set_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0x6dbe119d fwnode_get_next_available_child_node -EXPORT_SYMBOL_GPL vmlinux 0x6dc7ac18 set_capacity_and_notify -EXPORT_SYMBOL_GPL vmlinux 0x6dcf00a0 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dc452e7 of_gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id -EXPORT_SYMBOL_GPL vmlinux 0x6ddc158c i2c_new_ancillary_device -EXPORT_SYMBOL_GPL vmlinux 0x6de6732d regmap_mmio_attach_clk -EXPORT_SYMBOL_GPL vmlinux 0x6dfea918 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x6dd5d26c pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x6de1b2ce udp_splice_eof +EXPORT_SYMBOL_GPL vmlinux 0x6de30fc4 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x6deaa827 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x6e00954c mtk_clk_register_gates EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map -EXPORT_SYMBOL_GPL vmlinux 0x6e0f1d9c sdio_align_size -EXPORT_SYMBOL_GPL vmlinux 0x6e285dda fixed_phy_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6e3100f3 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x6e0ebf4c gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6e1290f5 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x6e1515fd sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x6e3406a6 ata_sff_tf_read EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift -EXPORT_SYMBOL_GPL vmlinux 0x6e37b4e0 devlink_resource_occ_get_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6e393d7d efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6e39ac79 transport_class_unregister EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable -EXPORT_SYMBOL_GPL vmlinux 0x6e5e6360 xdp_convert_zc_to_xdp_frame -EXPORT_SYMBOL_GPL vmlinux 0x6e644138 led_trigger_event -EXPORT_SYMBOL_GPL vmlinux 0x6e67665a sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x6e69931c __dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x6e6a1537 regmap_reinit_cache -EXPORT_SYMBOL_GPL vmlinux 0x6e6f8f4c adp5520_read -EXPORT_SYMBOL_GPL vmlinux 0x6e736eb9 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x6e5f92fe iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x6e67811f filemap_migrate_folio EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7f2234 tcp_is_ulp_esp EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8ab47d xhci_run EXPORT_SYMBOL_GPL vmlinux 0x6e914514 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x6eaeed89 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6e93ee8f of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x6ea85e93 of_property_read_u32_index EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier -EXPORT_SYMBOL_GPL vmlinux 0x6eb4220e dm_disk -EXPORT_SYMBOL_GPL vmlinux 0x6eba50a0 __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6ec4d3c7 hid_bpf_connect_device -EXPORT_SYMBOL_GPL vmlinux 0x6ec7ba54 dm_table_device_name -EXPORT_SYMBOL_GPL vmlinux 0x6ec96618 rio_mport_class -EXPORT_SYMBOL_GPL vmlinux 0x6ecdddc8 dm_post_suspending -EXPORT_SYMBOL_GPL vmlinux 0x6ecf2cc1 pin_get_name -EXPORT_SYMBOL_GPL vmlinux 0x6ecf3d9e ata_dev_disable -EXPORT_SYMBOL_GPL vmlinux 0x6ed28564 xhci_suspend -EXPORT_SYMBOL_GPL vmlinux 0x6ee643d0 usb_sg_wait -EXPORT_SYMBOL_GPL vmlinux 0x6eecbc19 io_uring_cmd_import_fixed +EXPORT_SYMBOL_GPL vmlinux 0x6ec54cf2 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x6ecee54f iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x6ecf5036 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ed0834c pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x6edce0eb crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6ee46c69 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x6ee8a078 md_bitmap_load EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x6efc42dc devm_regulator_bulk_get_enable -EXPORT_SYMBOL_GPL vmlinux 0x6efe82d2 xenbus_dev_cancel -EXPORT_SYMBOL_GPL vmlinux 0x6f084698 usb_hub_find_child -EXPORT_SYMBOL_GPL vmlinux 0x6f10c2c2 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x6ef7e375 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x6efdf366 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x6f01f6ff dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x6f0415e4 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x6f0f3f14 __fsl_mc_driver_register EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f12a8ab gpiod_get EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity -EXPORT_SYMBOL_GPL vmlinux 0x6f23bb47 regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x6f387dd1 io_uring_cmd_do_in_task_lazy -EXPORT_SYMBOL_GPL vmlinux 0x6f3ec175 __dma_request_channel -EXPORT_SYMBOL_GPL vmlinux 0x6f400c2f __pm_relax -EXPORT_SYMBOL_GPL vmlinux 0x6f4279cf mtk_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0x6f49b5cd xfrm_audit_policy_delete -EXPORT_SYMBOL_GPL vmlinux 0x6f515000 ohci_restart -EXPORT_SYMBOL_GPL vmlinux 0x6f58f200 gnttab_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0x6f58f649 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6f2555b5 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6f2b44d0 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x6f3b4ff5 pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f5a49cb devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x6f5f2816 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x6f62898f to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x6f688639 tegra_mc_write_emem_configuration EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x6f77cf68 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6f73810d pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x6f7de4dd dev_pm_opp_find_bw_ceil EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action -EXPORT_SYMBOL_GPL vmlinux 0x6f831f59 pci_device_group -EXPORT_SYMBOL_GPL vmlinux 0x6f8a7952 of_pci_dma_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0x6f8b4fef wbt_enable_default -EXPORT_SYMBOL_GPL vmlinux 0x6f8e570e balance_dirty_pages_ratelimited_flags -EXPORT_SYMBOL_GPL vmlinux 0x6f9145bc bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x6f9be5b6 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa2dc1c dev_pm_opp_get_level EXPORT_SYMBOL_GPL vmlinux 0x6fa426d2 phylink_ethtool_nway_reset -EXPORT_SYMBOL_GPL vmlinux 0x6faa6e8b ip6_dst_lookup_tunnel -EXPORT_SYMBOL_GPL vmlinux 0x6fafd5d8 usb_put_phy -EXPORT_SYMBOL_GPL vmlinux 0x6fbaccbf devm_platform_get_irqs_affinity -EXPORT_SYMBOL_GPL vmlinux 0x6fbccfea __devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x6fc25d2e driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x6fc3fb59 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x6fcd3a37 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x6fcd917b devm_reset_control_array_get EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset -EXPORT_SYMBOL_GPL vmlinux 0x6fcfd4ff __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x6fd68499 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x6ff21211 direct_write_fallback +EXPORT_SYMBOL_GPL vmlinux 0x6fd87c7a k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x6ff481f5 hwpoison_filter EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions EXPORT_SYMBOL_GPL vmlinux 0x70079d69 tracepoint_probe_register_prio_may_exist -EXPORT_SYMBOL_GPL vmlinux 0x700ef02b sock_map_unhash -EXPORT_SYMBOL_GPL vmlinux 0x70164310 platform_find_device_by_driver -EXPORT_SYMBOL_GPL vmlinux 0x7017f052 kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x7029bb51 mdio_mux_init -EXPORT_SYMBOL_GPL vmlinux 0x703d1142 mtk_clk_gate_ops_setclr_inv -EXPORT_SYMBOL_GPL vmlinux 0x703eb150 switchdev_handle_port_obj_del_foreign -EXPORT_SYMBOL_GPL vmlinux 0x7040529b usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x70104ca6 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x70232c7d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x703211b5 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7036c2fe device_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x70423efb zynqmp_pm_set_sd_config -EXPORT_SYMBOL_GPL vmlinux 0x705aecc2 tpm_pcr_read -EXPORT_SYMBOL_GPL vmlinux 0x706b1771 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x705dd85f devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x706b7260 sk_msg_memcopy_from_iter EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array -EXPORT_SYMBOL_GPL vmlinux 0x708ad392 dev_pm_genpd_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7091b14c mtk_hw_get_value -EXPORT_SYMBOL_GPL vmlinux 0x709c44f9 inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x709f7484 wwan_unregister_ops -EXPORT_SYMBOL_GPL vmlinux 0x70a8a8ef devm_thermal_of_zone_register -EXPORT_SYMBOL_GPL vmlinux 0x70bac87d powercap_unregister_zone -EXPORT_SYMBOL_GPL vmlinux 0x70bc0ee9 fwnode_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x70bc1627 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x707ee8ba proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x70baf69a devm_mtk_clk_mux_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x70bbbcf9 clk_mux_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c8b71f trace_event_buffer_reserve EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70dbffa7 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70e95592 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x70eed937 devlink_dpipe_entry_ctx_prepare EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch -EXPORT_SYMBOL_GPL vmlinux 0x710b1cf7 debugfs_print_regs32 EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x71207451 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x71215bf4 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x7124f7b1 badblocks_set EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x712d9c80 wm831x_auxadc_read_uv -EXPORT_SYMBOL_GPL vmlinux 0x71385e0c unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x713f37f3 usb_clear_halt -EXPORT_SYMBOL_GPL vmlinux 0x71414c63 __fib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x71417c5f clk_regmap_divider_ops -EXPORT_SYMBOL_GPL vmlinux 0x7147fe28 tpm1_do_selftest -EXPORT_SYMBOL_GPL vmlinux 0x7157de26 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x715acc92 pci_epc_put -EXPORT_SYMBOL_GPL vmlinux 0x715e1a32 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x71323deb __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x714b5742 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x71616d71 clean_record_shared_mapping_range EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x716d4450 xhci_check_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0x71723b92 ata_host_start EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x717d79c0 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x7180bbcc pfn_to_online_page EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x718aa049 devl_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x718e03fa dma_resv_get_fences EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake -EXPORT_SYMBOL_GPL vmlinux 0x71985854 crypto_lookup_template EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x71a41f05 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a34424 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x71b5ad64 xdp_do_redirect EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71bc64aa pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x71bf55a6 extcon_set_property EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map -EXPORT_SYMBOL_GPL vmlinux 0x71df47fc folio_wait_writeback_killable -EXPORT_SYMBOL_GPL vmlinux 0x71fd3b2c driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x72071085 usb_alloc_streams -EXPORT_SYMBOL_GPL vmlinux 0x722b5472 iomap_swapfile_activate -EXPORT_SYMBOL_GPL vmlinux 0x722d6221 fsl_mc_bus_dpdbg_type -EXPORT_SYMBOL_GPL vmlinux 0x7238c8e8 usb_autopm_get_interface -EXPORT_SYMBOL_GPL vmlinux 0x723edf43 vp_modern_get_status -EXPORT_SYMBOL_GPL vmlinux 0x724d332a led_set_brightness -EXPORT_SYMBOL_GPL vmlinux 0x725d62d2 phy_driver_is_genphy -EXPORT_SYMBOL_GPL vmlinux 0x72601363 nd_cmd_out_size -EXPORT_SYMBOL_GPL vmlinux 0x7261bd5a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x71c4d66e pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x71c786ab rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x71cd2ec3 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x71d18d50 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x71d493fa failover_register +EXPORT_SYMBOL_GPL vmlinux 0x71dc038b key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x71eb5597 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x71f55b7b debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x7201d263 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7208845e dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x721ab615 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x722785c6 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x723d6eb4 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x72472400 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7257e4ba devl_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x725b5660 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x725fb4a9 devm_of_phy_get_by_index EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7266f30a of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x726ce421 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x726d3063 imx_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events -EXPORT_SYMBOL_GPL vmlinux 0x7278effa synth_event_trace_array -EXPORT_SYMBOL_GPL vmlinux 0x727d7c7f fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x727c223c pci_enable_ats EXPORT_SYMBOL_GPL vmlinux 0x7282ecb6 rcu_async_hurry EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu -EXPORT_SYMBOL_GPL vmlinux 0x72a77aba rio_mport_write_config_16 -EXPORT_SYMBOL_GPL vmlinux 0x72ab2626 extcon_register_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0x72ad1cdc fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x728f381a fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x728facfb pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x7293c258 virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0x72ae1839 base64_decode +EXPORT_SYMBOL_GPL vmlinux 0x72ae509f regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x72ca2bc0 msi_domain_first_desc EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0x72d38354 wm831x_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x72d612d2 led_put -EXPORT_SYMBOL_GPL vmlinux 0x72e8c7b0 vfs_remove_acl -EXPORT_SYMBOL_GPL vmlinux 0x72ed3909 xenbus_dev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x72f335f8 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x73006aa5 phy_modify EXPORT_SYMBOL_GPL vmlinux 0x730a37ff pci_doe -EXPORT_SYMBOL_GPL vmlinux 0x730a8592 ip6_input -EXPORT_SYMBOL_GPL vmlinux 0x73102eba devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x7313324e crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7314202b dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x731c8421 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x73202711 check_move_unevictable_folios +EXPORT_SYMBOL_GPL vmlinux 0x7324b08b fscrypt_ioctl_remove_key_all_users EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end -EXPORT_SYMBOL_GPL vmlinux 0x73285a3f sata_scr_read -EXPORT_SYMBOL_GPL vmlinux 0x73344a94 pci_enable_ats -EXPORT_SYMBOL_GPL vmlinux 0x733e5ff0 devm_usb_get_phy_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x73408440 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x73427f54 dev_pm_set_dedicated_wake_irq_reverse -EXPORT_SYMBOL_GPL vmlinux 0x7344e375 dprc_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x7349963e iomap_file_buffered_write_punch_delalloc -EXPORT_SYMBOL_GPL vmlinux 0x735d90d3 gpiod_get_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0x73607401 devl_rate_leaf_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7366e295 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x736945c1 ahci_handle_port_intr -EXPORT_SYMBOL_GPL vmlinux 0x7372a6e0 iommu_get_domain_for_dev -EXPORT_SYMBOL_GPL vmlinux 0x73743adb tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x73774643 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x732f5068 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7333cc19 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x733459c4 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x73365608 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x733b36d3 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x7345fc67 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x7346b35b devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x7363617c dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x737a6a61 xhci_reset_bandwidth EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return -EXPORT_SYMBOL_GPL vmlinux 0x738ebbfc regulator_get_current_limit_regmap -EXPORT_SYMBOL_GPL vmlinux 0x738f1010 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x73957f31 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x7389551d ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7389e381 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7398f6c6 iomap_truncate_page EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports -EXPORT_SYMBOL_GPL vmlinux 0x73a732cd skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x73a8c3c6 fib_alias_hw_flags_set -EXPORT_SYMBOL_GPL vmlinux 0x73a99cd8 ata_dummy_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x73b0b92a virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x73c20653 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x73a88f4b pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x73b1c235 get_task_mm EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap -EXPORT_SYMBOL_GPL vmlinux 0x73cca661 strp_check_rcv -EXPORT_SYMBOL_GPL vmlinux 0x73e17a44 crypto_alloc_acomp -EXPORT_SYMBOL_GPL vmlinux 0x73fc458f d_same_name -EXPORT_SYMBOL_GPL vmlinux 0x740be6ca cpuidle_get_cpu_driver -EXPORT_SYMBOL_GPL vmlinux 0x7411a813 rio_unregister_mport -EXPORT_SYMBOL_GPL vmlinux 0x7412839f devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x74164a04 vring_create_virtqueue_dma -EXPORT_SYMBOL_GPL vmlinux 0x741d08f6 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x73d0ca29 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x73d16db9 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x73d42966 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x73de1f28 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x73ffde53 get_device +EXPORT_SYMBOL_GPL vmlinux 0x74007dd8 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x74126876 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x7414c3df iomap_get_folio +EXPORT_SYMBOL_GPL vmlinux 0x74182afe regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x7418bcd5 clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0x7429297b interval_tree_span_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x7429c3aa crypto_skcipher_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x743a485e perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x743b99d8 xenmem_reservation_increase -EXPORT_SYMBOL_GPL vmlinux 0x743e5691 dax_layout_busy_page -EXPORT_SYMBOL_GPL vmlinux 0x7444769a vp_modern_get_queue_enable EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini -EXPORT_SYMBOL_GPL vmlinux 0x7449376c kvm_vcpu_write_guest -EXPORT_SYMBOL_GPL vmlinux 0x7449ba67 edac_pci_release_generic_ctl -EXPORT_SYMBOL_GPL vmlinux 0x74635033 phy_reset -EXPORT_SYMBOL_GPL vmlinux 0x7471393e __fsl_mc_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x74816b20 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x74504238 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74604189 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7463de21 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x746d54aa class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x746d5ba2 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x748075a8 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x74866db4 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x748a72de devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x748d8578 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x74a0447b extcon_set_state_sync EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x74af386c of_clk_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0x74b0f029 ata_sas_queuecmd -EXPORT_SYMBOL_GPL vmlinux 0x74b0ffb8 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x74b63278 wwan_get_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x74b75aff mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x74b5fea9 sdio_f0_readb EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on -EXPORT_SYMBOL_GPL vmlinux 0x74bba987 rt288x_setup EXPORT_SYMBOL_GPL vmlinux 0x74bf2e01 scsi_pr_type_to_block EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74cf14c5 pm_wakeup_dev_event EXPORT_SYMBOL_GPL vmlinux 0x74d42632 mas_empty_area -EXPORT_SYMBOL_GPL vmlinux 0x74de38b4 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x74dbbce6 genphy_c45_pma_resume EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden -EXPORT_SYMBOL_GPL vmlinux 0x74fc3ae5 usb_mon_register -EXPORT_SYMBOL_GPL vmlinux 0x750b74fd pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x74eed1ce lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x74f0da7b bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x74f4645f crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x75125af5 sata_pmp_port_ops EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751a2bbe tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x751b177a spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x751b18c6 blk_rq_unprep_clone EXPORT_SYMBOL_GPL vmlinux 0x751d2e97 bpf_log EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x752ae952 mtk_clk_unregister_dividers -EXPORT_SYMBOL_GPL vmlinux 0x7546282f devl_dpipe_table_register -EXPORT_SYMBOL_GPL vmlinux 0x754acd82 devm_clk_get_optional_enabled -EXPORT_SYMBOL_GPL vmlinux 0x7556c702 devl_linecard_create -EXPORT_SYMBOL_GPL vmlinux 0x75650668 udp_tunnel_nic_ops -EXPORT_SYMBOL_GPL vmlinux 0x75796dc2 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x7536ca8a meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x753c848e bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x755094ee ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x755b0c7a imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x756521e1 devm_usb_put_phy EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num -EXPORT_SYMBOL_GPL vmlinux 0x758b8bbf sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only -EXPORT_SYMBOL_GPL vmlinux 0x75989aa6 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x7594bd5d of_usb_get_dr_mode_by_phy EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy -EXPORT_SYMBOL_GPL vmlinux 0x759e8b2e irq_chip_mask_parent -EXPORT_SYMBOL_GPL vmlinux 0x759fc0ba fb_deferred_io_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x75a05a5f devl_param_value_changed EXPORT_SYMBOL_GPL vmlinux 0x75a750e4 vcap_rule_rem_key -EXPORT_SYMBOL_GPL vmlinux 0x75ac58b5 skcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x75ae8e5e of_property_read_u64_index -EXPORT_SYMBOL_GPL vmlinux 0x75af0dcc irq_domain_remove_sim -EXPORT_SYMBOL_GPL vmlinux 0x75b1d0ec fuse_get_unique -EXPORT_SYMBOL_GPL vmlinux 0x75b4f7e7 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x75bbabd3 sch_frag_xmit_hook -EXPORT_SYMBOL_GPL vmlinux 0x75c4d5d0 gpiochip_unlock_as_irq -EXPORT_SYMBOL_GPL vmlinux 0x75d00655 serdev_device_write_flush -EXPORT_SYMBOL_GPL vmlinux 0x75d2362a device_get_named_child_node -EXPORT_SYMBOL_GPL vmlinux 0x75da8f12 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x75aebbed ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x75b3937d get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x75c025c4 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x75cc745a ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x75ce9fe4 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x75d80de1 acpi_subsys_prepare EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove -EXPORT_SYMBOL_GPL vmlinux 0x75e1f177 tps6586x_read EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x75e65116 bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled -EXPORT_SYMBOL_GPL vmlinux 0x75ed0e58 serdev_controller_remove -EXPORT_SYMBOL_GPL vmlinux 0x75ee505c clk_hw_register_gate2 -EXPORT_SYMBOL_GPL vmlinux 0x75fb1f47 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x75f23f00 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x75f82edf perf_event_refresh EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter -EXPORT_SYMBOL_GPL vmlinux 0x762c813c irq_gc_mask_clr_bit -EXPORT_SYMBOL_GPL vmlinux 0x7634aa73 ata_host_resume -EXPORT_SYMBOL_GPL vmlinux 0x7636f4e2 fat_time_fat2unix -EXPORT_SYMBOL_GPL vmlinux 0x7646475b dax_zero_range -EXPORT_SYMBOL_GPL vmlinux 0x76514226 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x75fcbab5 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x760bd974 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x761edc47 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x761fb44e dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x762bbb4b switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x7634c7bb lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x76424ce5 gnttab_dma_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0x76517f03 interval_tree_span_iter_advance EXPORT_SYMBOL_GPL vmlinux 0x7656410c mpi_sub -EXPORT_SYMBOL_GPL vmlinux 0x76616752 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x765bd919 rio_mport_write_config_32 EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove -EXPORT_SYMBOL_GPL vmlinux 0x7669428c __sock_recv_cmsgs -EXPORT_SYMBOL_GPL vmlinux 0x76818528 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x7669c986 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x766c6376 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x767b0559 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x767d40ab edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x767dc1c6 gpiod_put_array EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x768c0a1f __traceiter_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0x768e8277 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x76917b66 devlink_alloc_ns EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic -EXPORT_SYMBOL_GPL vmlinux 0x76bdee74 tty_port_register_device_serdev -EXPORT_SYMBOL_GPL vmlinux 0x76d0e1dd ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x76a81d08 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x76ba331c crypto_wait_for_test EXPORT_SYMBOL_GPL vmlinux 0x76d1af56 debounce_time_mt2701 EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate -EXPORT_SYMBOL_GPL vmlinux 0x76d9b962 dev_pm_get_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x76da6b79 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x76db8213 clk_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback -EXPORT_SYMBOL_GPL vmlinux 0x76ee55c6 cpufreq_unregister_driver -EXPORT_SYMBOL_GPL vmlinux 0x76ee7da5 usb_hcd_giveback_urb EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x76f08756 blk_mq_complete_request_remote -EXPORT_SYMBOL_GPL vmlinux 0x76f7f1b0 dev_pm_opp_disable -EXPORT_SYMBOL_GPL vmlinux 0x76f9546c pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x771159ba tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x76fbcfc4 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x76fd56ea devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x77094dd2 genphy_c45_read_eee_abilities +EXPORT_SYMBOL_GPL vmlinux 0x770c4a0d i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x770cb1c9 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x77103164 pci_hp_del EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler -EXPORT_SYMBOL_GPL vmlinux 0x7716f3de blk_bio_list_merge -EXPORT_SYMBOL_GPL vmlinux 0x771d5ea4 divider_round_rate_parent EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page -EXPORT_SYMBOL_GPL vmlinux 0x7726e269 pm_clk_suspend -EXPORT_SYMBOL_GPL vmlinux 0x77293fd0 balloon_page_alloc EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree -EXPORT_SYMBOL_GPL vmlinux 0x77300de1 disk_force_media_change -EXPORT_SYMBOL_GPL vmlinux 0x7747bfa8 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x772f4807 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x7736423d kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x77367a49 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x77407fb8 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x774b3d2e __traceiter_ata_bmdma_start EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x77527a51 mtk_register_reset_controller_with_dev EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister -EXPORT_SYMBOL_GPL vmlinux 0x776824f8 get_net_ns -EXPORT_SYMBOL_GPL vmlinux 0x776a16e6 devlink_port_init -EXPORT_SYMBOL_GPL vmlinux 0x7776a98b rtc_update_irq_enable -EXPORT_SYMBOL_GPL vmlinux 0x777d176e msi_next_desc -EXPORT_SYMBOL_GPL vmlinux 0x77836a8b regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x775a64b4 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x775e2397 of_css +EXPORT_SYMBOL_GPL vmlinux 0x776cb197 __traceiter_fib6_table_lookup EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read EXPORT_SYMBOL_GPL vmlinux 0x7797fbb5 imx_clk_hw_pfdv2 EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string -EXPORT_SYMBOL_GPL vmlinux 0x77be6a55 preempt_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x77c3e749 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x77c7b7ef wm831x_reg_unlock -EXPORT_SYMBOL_GPL vmlinux 0x77d5ee93 rio_dma_prep_xfer -EXPORT_SYMBOL_GPL vmlinux 0x77e4a610 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x77e63a76 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x77b837b3 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x77ba2322 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x77c77c97 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x77d06322 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x77daa609 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x77e19a93 devl_resource_occ_get_register EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put -EXPORT_SYMBOL_GPL vmlinux 0x77e88321 thermal_zone_device EXPORT_SYMBOL_GPL vmlinux 0x77e8f134 __tracepoint_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0x77e98f38 devm_of_phy_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x77eac4f8 dev_pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x77eccadd raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x77e93147 dev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key -EXPORT_SYMBOL_GPL vmlinux 0x77eecdbd i2c_new_client_device EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x77fb63cc __traceiter_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0x77fdc116 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x77ff7aae usb_autopm_put_interface_async EXPORT_SYMBOL_GPL vmlinux 0x77ff80d3 __tracepoint_br_fdb_add -EXPORT_SYMBOL_GPL vmlinux 0x780fa200 syscon_node_to_regmap -EXPORT_SYMBOL_GPL vmlinux 0x782aff8b kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x78347f86 dev_pm_opp_of_add_table -EXPORT_SYMBOL_GPL vmlinux 0x783ad46d rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x7815d11f kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x781fec7c wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x7823d9e1 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x782a4492 static_dev_dax EXPORT_SYMBOL_GPL vmlinux 0x7847c621 sfp_parse_support -EXPORT_SYMBOL_GPL vmlinux 0x7847dbf2 devm_regulator_bulk_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x784961b4 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x784a4950 device_register +EXPORT_SYMBOL_GPL vmlinux 0x784e2e6f register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x785346bd pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7857b484 of_dma_xlate_by_chan_id EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x78604793 dbs_update -EXPORT_SYMBOL_GPL vmlinux 0x7863e9ec usb_of_get_device_node -EXPORT_SYMBOL_GPL vmlinux 0x786a7d4c disk_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x785bc921 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x7865c552 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x78796012 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x787a1644 devm_regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787e6453 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x787fad62 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x78820436 mddev_init EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty -EXPORT_SYMBOL_GPL vmlinux 0x789bdec6 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x78919ac7 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x7893ce62 ata_common_sdev_groups EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot -EXPORT_SYMBOL_GPL vmlinux 0x78a22ed4 meson_vid_pll_div_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x78a9a39c of_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0x78b8dbfa k3_udma_glue_rx_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0x78c10ed2 __traceiter_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x78d10e31 nvdimm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x78da992e ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x78a4d5bd pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x78c18ae5 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78ccf2a7 securityfs_remove EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match -EXPORT_SYMBOL_GPL vmlinux 0x78eae78b sata_async_notification -EXPORT_SYMBOL_GPL vmlinux 0x78ec31e3 l3mdev_fib_table_by_index -EXPORT_SYMBOL_GPL vmlinux 0x78ef04cf ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x78f81212 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x78e77777 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x78f48d7e fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x79053a70 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr -EXPORT_SYMBOL_GPL vmlinux 0x7912e105 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7911307e clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7914dc6b driver_find_device EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure -EXPORT_SYMBOL_GPL vmlinux 0x79252ce6 devlink_dpipe_table_counter_enabled -EXPORT_SYMBOL_GPL vmlinux 0x792b2f5b mtk_clk_register_composites -EXPORT_SYMBOL_GPL vmlinux 0x792b4a57 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x792415f1 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x79247b06 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x792d3806 usb_wakeup_enabled_descendants EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes -EXPORT_SYMBOL_GPL vmlinux 0x7937de9e genphy_c45_baset1_read_status -EXPORT_SYMBOL_GPL vmlinux 0x7939abc1 pci_epc_get_msi -EXPORT_SYMBOL_GPL vmlinux 0x7939b323 proc_create_net_single -EXPORT_SYMBOL_GPL vmlinux 0x793a4e30 md_stop_writes -EXPORT_SYMBOL_GPL vmlinux 0x793df4d0 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x79418773 percpu_is_read_locked EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x7952f69d __alloc_pages_bulk -EXPORT_SYMBOL_GPL vmlinux 0x7953545a __pm_runtime_suspend -EXPORT_SYMBOL_GPL vmlinux 0x796192d5 of_nvmem_cell_get -EXPORT_SYMBOL_GPL vmlinux 0x7980bb87 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x7957adca scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x7957f79f fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x795d6b79 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x7967d174 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x79879c0f dev_pm_opp_of_cpumask_remove_table EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x79a0b77f blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x79ae6020 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x798fc41c icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7999c60d sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x79adb124 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x79afb42e l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x79bbed07 vchan_tx_submit EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups -EXPORT_SYMBOL_GPL vmlinux 0x79bfd822 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x79c6f1c0 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x79cce976 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x79dc5e5a mmc_switch EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x79e470df i2c_new_dummy_device -EXPORT_SYMBOL_GPL vmlinux 0x79ef975c dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x79e0375e __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x79e89aeb rz_mtu3_32bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x79f19976 register_acpi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova -EXPORT_SYMBOL_GPL vmlinux 0x79f3495e phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0x79f56a81 syscon_regmap_lookup_by_phandle_optional EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress -EXPORT_SYMBOL_GPL vmlinux 0x79fba25b acomp_request_free -EXPORT_SYMBOL_GPL vmlinux 0x79fc453a scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x7a1fc50d hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7a02cb62 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x7a08b6b7 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x7a15f90e vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x7a36e33a usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x7a3f035a nvmem_register EXPORT_SYMBOL_GPL vmlinux 0x7a3f16a2 devl_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7a4aea47 fib_nl_delrule -EXPORT_SYMBOL_GPL vmlinux 0x7a4e7b1e devm_regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x7a4fca7e pci_msix_can_alloc_dyn -EXPORT_SYMBOL_GPL vmlinux 0x7a5e1505 get_governor_parent_kobj -EXPORT_SYMBOL_GPL vmlinux 0x7a6e6706 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7a42d942 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7a44d314 crypto_alloc_sig +EXPORT_SYMBOL_GPL vmlinux 0x7a463542 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x7a695feb kvm_release_page_clean EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values -EXPORT_SYMBOL_GPL vmlinux 0x7a751649 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x7a741085 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7a74c6ca i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x7a78334e md_bitmap_copy_from_slot EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x7a874dfb ata_sff_pause -EXPORT_SYMBOL_GPL vmlinux 0x7a8bf3dd pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x7a95777b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x7a83d548 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7a85e181 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x7a92a514 usb_device_match_id EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9d7c01 devres_release EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group -EXPORT_SYMBOL_GPL vmlinux 0x7aa07937 crypto_sig_verify -EXPORT_SYMBOL_GPL vmlinux 0x7aa1bd91 to_nvdimm_bus -EXPORT_SYMBOL_GPL vmlinux 0x7aa63ffd devl_sb_register -EXPORT_SYMBOL_GPL vmlinux 0x7aa8c77c cdrom_multisession -EXPORT_SYMBOL_GPL vmlinux 0x7aa8dd0e ping_err -EXPORT_SYMBOL_GPL vmlinux 0x7aaaf3bc devm_power_supply_register -EXPORT_SYMBOL_GPL vmlinux 0x7aaceb83 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7aa49ece fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x7ab22198 of_property_read_u64 EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad24c4d vcap_chain_offset EXPORT_SYMBOL_GPL vmlinux 0x7ad2c64c k3_udma_glue_release_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0x7ad46a7c __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x7af79cb8 wm831x_reg_lock -EXPORT_SYMBOL_GPL vmlinux 0x7af9504d fsl8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7afb3fd0 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ad40f60 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7ad52fc4 platform_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7ad98b10 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x7ae2aabd crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x7aeaa1c7 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7aef2b27 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x7af620c6 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x7af9c454 of_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow -EXPORT_SYMBOL_GPL vmlinux 0x7b13401c __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x7b194ecb rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x7b21a921 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7b230555 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x7b40de1a inverse_translate EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b562c1b virtqueue_poll EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x7b5afb51 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x7b61dc66 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x7b63c970 sysfs_add_link_to_group EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x7b728b03 genphy_c45_read_link -EXPORT_SYMBOL_GPL vmlinux 0x7b7364f8 spi_target_abort +EXPORT_SYMBOL_GPL vmlinux 0x7b87bfc9 acpi_bus_trim EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b8a0508 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7b8d4a50 adp5520_read EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b926f18 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7b96184a ata_sff_freeze EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us -EXPORT_SYMBOL_GPL vmlinux 0x7b9b51c0 pci_p2pdma_enable_store -EXPORT_SYMBOL_GPL vmlinux 0x7b9fa088 __bio_add_page -EXPORT_SYMBOL_GPL vmlinux 0x7ba1b9b3 devm_clk_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x7ba788d8 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x7ba35879 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7baffeb2 __spi_alloc_controller EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq EXPORT_SYMBOL_GPL vmlinux 0x7bb3fa18 vcap_rule_add_action_bit -EXPORT_SYMBOL_GPL vmlinux 0x7bba4f8a lwtunnel_encap_add_ops -EXPORT_SYMBOL_GPL vmlinux 0x7bd00958 clk_hw_get_parent -EXPORT_SYMBOL_GPL vmlinux 0x7be4570a gpiod_toggle_active_low -EXPORT_SYMBOL_GPL vmlinux 0x7beb65d0 __fscrypt_prepare_readdir -EXPORT_SYMBOL_GPL vmlinux 0x7bfc5078 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x7c014c89 ata_sff_postreset -EXPORT_SYMBOL_GPL vmlinux 0x7c02b9ac ata_pci_bmdma_clear_simplex -EXPORT_SYMBOL_GPL vmlinux 0x7c06d6da nvdimm_flush -EXPORT_SYMBOL_GPL vmlinux 0x7c0c2827 regmap_raw_read -EXPORT_SYMBOL_GPL vmlinux 0x7c0d24e5 cpufreq_cpu_put -EXPORT_SYMBOL_GPL vmlinux 0x7c120c67 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x7c18e845 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x7bb8edcc free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7bc94ff4 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7bcc4914 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7bd28cf1 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7be39160 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7bfd5dca fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7c1e8232 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x7c219d75 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x7c26d2d4 rio_request_inb_dbell EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0x7c2cb9f8 fixed_phy_register_with_gpiod -EXPORT_SYMBOL_GPL vmlinux 0x7c3b2211 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7c2ae995 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0x7c43bff8 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x7c6b09aa rtc_read_alarm -EXPORT_SYMBOL_GPL vmlinux 0x7c71a442 cpufreq_unregister_governor -EXPORT_SYMBOL_GPL vmlinux 0x7c79c61b pci_epc_get -EXPORT_SYMBOL_GPL vmlinux 0x7c7c3473 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x7c581aaa devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7c5ae34a devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x7c63227a sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x7c6a1e46 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7c7a6c5e blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7c7bb099 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x7c88ab96 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x7c88f3c2 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x7c93be47 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7c945191 mnt_drop_write EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c993eb9 iommu_register_device_fault_handler EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare -EXPORT_SYMBOL_GPL vmlinux 0x7ca186b0 gnttab_unmap_refs_async -EXPORT_SYMBOL_GPL vmlinux 0x7ca1b368 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c9b9188 gpiochip_line_is_persistent EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet -EXPORT_SYMBOL_GPL vmlinux 0x7cb7d16c usb_init_urb EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc468f0 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x7cc514fa mbox_bind_client +EXPORT_SYMBOL_GPL vmlinux 0x7cc630cd cpufreq_dbs_governor_stop EXPORT_SYMBOL_GPL vmlinux 0x7cc84d98 from_vfsgid -EXPORT_SYMBOL_GPL vmlinux 0x7ccbe3be blk_mq_quiesce_queue EXPORT_SYMBOL_GPL vmlinux 0x7cce902d __tracepoint_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats -EXPORT_SYMBOL_GPL vmlinux 0x7ccfaf19 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x7cd04a42 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x7cd64f5e power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver EXPORT_SYMBOL_GPL vmlinux 0x7cd7ba1d kernel_read_file_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x7cd8e065 crypto_clone_cipher +EXPORT_SYMBOL_GPL vmlinux 0x7ce3be81 devm_pm_clk_create EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x7cec510b phylink_of_phy_connect -EXPORT_SYMBOL_GPL vmlinux 0x7cee052a usb_unlocked_enable_lpm -EXPORT_SYMBOL_GPL vmlinux 0x7cf28624 spi_controller_dma_unmap_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0x7cf80826 phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0x7cfadfa2 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7d00ad0c icc_node_add EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0126ac sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x7d03d7f0 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7d073c25 crypto_shash_update EXPORT_SYMBOL_GPL vmlinux 0x7d0f6b42 __tracepoint_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0x7d13d14e __thermal_zone_get_trip +EXPORT_SYMBOL_GPL vmlinux 0x7d179ade alloc_skb_for_msg EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn -EXPORT_SYMBOL_GPL vmlinux 0x7d29cf15 devm_thermal_of_zone_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7d31d4ae devm_acpi_dev_add_driver_gpios -EXPORT_SYMBOL_GPL vmlinux 0x7d37a563 vp_modern_get_num_queues -EXPORT_SYMBOL_GPL vmlinux 0x7d3cb805 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x7d2e0573 devfreq_event_add_edev EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release -EXPORT_SYMBOL_GPL vmlinux 0x7d49e40e vma_kernel_pagesize -EXPORT_SYMBOL_GPL vmlinux 0x7d565488 pwm_put EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq -EXPORT_SYMBOL_GPL vmlinux 0x7d6f249f driver_register -EXPORT_SYMBOL_GPL vmlinux 0x7d72c105 nf_ipv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x7d743dc7 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x7d7d9bd7 tpm2_probe -EXPORT_SYMBOL_GPL vmlinux 0x7d9f6fcc crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x7dad4ef2 devl_traps_register -EXPORT_SYMBOL_GPL vmlinux 0x7daedf1b of_pci_get_slot_power_limit -EXPORT_SYMBOL_GPL vmlinux 0x7daf592e pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x7d5d60af da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7db62eee i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7dbaa94c gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x7dbce2ad __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7dc1075c pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x7dc2fe1a rz_mtu3_8bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0x7dc7f297 crypto_sig_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x7dd99afb badblocks_check EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0x7ddba5fc mtk_alloc_clk_data EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref -EXPORT_SYMBOL_GPL vmlinux 0x7e021388 pci_sriov_get_totalvfs -EXPORT_SYMBOL_GPL vmlinux 0x7e03470d shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x7e0ac8b8 iommu_attach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0x7e0fef11 balloon_mops -EXPORT_SYMBOL_GPL vmlinux 0x7e10e23a mtk_clk_unregister_plls -EXPORT_SYMBOL_GPL vmlinux 0x7e17a98d regulator_list_voltage_table -EXPORT_SYMBOL_GPL vmlinux 0x7e1930ba sdio_readb -EXPORT_SYMBOL_GPL vmlinux 0x7e1b0302 of_clk_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x7e2d03ba handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x7e38d0ce irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7df808f6 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x7e35ec51 crypto_destroy_tfm EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3bf537 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x7e4886fd ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7e522830 spi_get_device_id EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time -EXPORT_SYMBOL_GPL vmlinux 0x7e71e803 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7e793d06 pci_hp_add EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e0ffb __sock_recv_wifi_status EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7e7f5fd4 gpiod_set_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x7e804190 alloc_io_pgtable_ops -EXPORT_SYMBOL_GPL vmlinux 0x7e833bdb mtk_devm_alloc_clk_data -EXPORT_SYMBOL_GPL vmlinux 0x7e8a5a4c blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x7e8c3452 ip_local_out EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap -EXPORT_SYMBOL_GPL vmlinux 0x7e92d6a6 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x7e9379f9 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x7e9cc358 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x7ea152d9 devm_regulator_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7e94b777 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7ea0d571 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ea52eb6 crypto_hash_walk_first EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eafe747 crypto_skcipher_setkey EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu -EXPORT_SYMBOL_GPL vmlinux 0x7eba8ee7 power_supply_get_battery_info -EXPORT_SYMBOL_GPL vmlinux 0x7ec9ff5a __suspend_report_result -EXPORT_SYMBOL_GPL vmlinux 0x7eca1284 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x7ecd486a gnttab_page_cache_init -EXPORT_SYMBOL_GPL vmlinux 0x7ed8c0c4 sock_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x7edd409c iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7eb8f971 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x7ebd42c6 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x7ed14b20 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x7edb2838 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7eddeb6b __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ee32159 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x7ee7d334 tcp_register_congestion_control EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async -EXPORT_SYMBOL_GPL vmlinux 0x7ef810ad bpfilter_ops -EXPORT_SYMBOL_GPL vmlinux 0x7f03d682 __netpoll_setup -EXPORT_SYMBOL_GPL vmlinux 0x7f048f28 memremap_pages -EXPORT_SYMBOL_GPL vmlinux 0x7f056197 i2c_detect_slave_mode -EXPORT_SYMBOL_GPL vmlinux 0x7f0cfc8b ata_sff_qc_fill_rtf -EXPORT_SYMBOL_GPL vmlinux 0x7f1325ae irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x7f24e4ce i2c_client_type -EXPORT_SYMBOL_GPL vmlinux 0x7f2a00f9 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x7f349062 gpiod_get_raw_value -EXPORT_SYMBOL_GPL vmlinux 0x7f385061 devm_register_restart_handler -EXPORT_SYMBOL_GPL vmlinux 0x7f451996 md_rdev_clear -EXPORT_SYMBOL_GPL vmlinux 0x7f4f07df fsl_mc_portal_allocate -EXPORT_SYMBOL_GPL vmlinux 0x7f5550fe attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x7f631722 iommu_map_sg -EXPORT_SYMBOL_GPL vmlinux 0x7f67822a cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x7eeab740 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x7ef86ccc udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x7f0af184 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x7f0bec17 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7f276661 devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f2c1fac fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x7f351899 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x7f42aed3 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7f574049 usb_phy_set_charger_state EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x7f6d6c2d blk_steal_bios -EXPORT_SYMBOL_GPL vmlinux 0x7f6f41e0 pm_generic_poweroff_late EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f812e79 kvm_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister EXPORT_SYMBOL_GPL vmlinux 0x7f8839d6 i2c_acpi_get_i2c_resource -EXPORT_SYMBOL_GPL vmlinux 0x7f973667 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x7f8ac8a2 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x7f8fc0e8 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x7f94716b gnttab_pages_set_private EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed -EXPORT_SYMBOL_GPL vmlinux 0x7f9f7c47 spi_take_timestamp_post -EXPORT_SYMBOL_GPL vmlinux 0x7fa45a7d usb_unlocked_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next -EXPORT_SYMBOL_GPL vmlinux 0x7fb68430 bpf_verifier_log_write -EXPORT_SYMBOL_GPL vmlinux 0x7fc16d54 scsi_check_sense -EXPORT_SYMBOL_GPL vmlinux 0x7fc4eece of_clk_parent_fill -EXPORT_SYMBOL_GPL vmlinux 0x7fccd4b9 devm_blk_crypto_profile_init -EXPORT_SYMBOL_GPL vmlinux 0x7fe6fbe1 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fab7f47 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x7fc63a24 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x7fd7eaa7 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x7fe7f219 group_cpus_evenly +EXPORT_SYMBOL_GPL vmlinux 0x7fed8a49 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x7fef2632 regmap_field_free EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement -EXPORT_SYMBOL_GPL vmlinux 0x7ff6bf2c crypto_unregister_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x8010eed5 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7ff38917 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x7ff8e233 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7ffb32f9 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x800f29bb fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x8010360f scmi_bus_type EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail -EXPORT_SYMBOL_GPL vmlinux 0x802764c3 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x80185e5e usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x802b3626 phy_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical -EXPORT_SYMBOL_GPL vmlinux 0x804fbe48 gpiochip_reqres_irq -EXPORT_SYMBOL_GPL vmlinux 0x8062f49a component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x8065b7e1 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x80388d2e irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x804286a9 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x805de6ec dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x80636832 crypto_akcipher_sync_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x8064c2aa nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x80709d4a sysfs_create_mount_point EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807c7c50 dev_pm_opp_get_sharing_cpus EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80883408 debugfs_create_ulong EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested EXPORT_SYMBOL_GPL vmlinux 0x80a095d8 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x80a28b63 usb_get_dr_mode -EXPORT_SYMBOL_GPL vmlinux 0x80a82c32 pinctrl_select_default_state -EXPORT_SYMBOL_GPL vmlinux 0x80ad060e ahci_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0x80b1902e __io_uring_cmd_do_in_task +EXPORT_SYMBOL_GPL vmlinux 0x80b8c0f5 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x80bb1bc1 fsl_mc_bus_type EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close -EXPORT_SYMBOL_GPL vmlinux 0x80cea4ca clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0x80ceeb7e copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x80d0551a usb_get_descriptor EXPORT_SYMBOL_GPL vmlinux 0x80d2e929 imx_clk_fracn_gppll EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x80e84422 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x80e47390 sdio_writeb EXPORT_SYMBOL_GPL vmlinux 0x80e88177 __tracepoint_non_standard_event -EXPORT_SYMBOL_GPL vmlinux 0x80e9dbc2 battery_hook_unregister EXPORT_SYMBOL_GPL vmlinux 0x80efd015 imx_dev_clk_hw_pll14xx -EXPORT_SYMBOL_GPL vmlinux 0x80f4b724 vp_legacy_probe -EXPORT_SYMBOL_GPL vmlinux 0x81066719 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x80f1d38b wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x81013231 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x81105311 switchdev_bridge_port_offload EXPORT_SYMBOL_GPL vmlinux 0x8110a73a cond_synchronize_rcu_expedited_full -EXPORT_SYMBOL_GPL vmlinux 0x811787fe netdev_sw_irq_coalesce_default_on EXPORT_SYMBOL_GPL vmlinux 0x8118caef regulator_find_closest_bigger +EXPORT_SYMBOL_GPL vmlinux 0x81197dcd unregister_nvdimm_pmu EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify -EXPORT_SYMBOL_GPL vmlinux 0x8121fd44 tpm_chip_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8132137f bus_register -EXPORT_SYMBOL_GPL vmlinux 0x813872df devlink_port_type_clear -EXPORT_SYMBOL_GPL vmlinux 0x8146016a gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x811dd831 rz_mtu3_disable +EXPORT_SYMBOL_GPL vmlinux 0x813521aa register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x8141b59f br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x81520bbd bus_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable -EXPORT_SYMBOL_GPL vmlinux 0x815705ec dm_table_set_type EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8173f099 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x81744893 regulator_set_suspend_voltage EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x818b2cce pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x819151c9 debugfs_create_x32 EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x81a1fd75 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x81a32be5 devlink_flash_update_timeout_notify -EXPORT_SYMBOL_GPL vmlinux 0x81a62e70 inverse_translate EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine -EXPORT_SYMBOL_GPL vmlinux 0x81b24743 clk_mux_determine_rate_flags -EXPORT_SYMBOL_GPL vmlinux 0x81c17b2c fsl_mc_bus_dpbp_type -EXPORT_SYMBOL_GPL vmlinux 0x81c3d4ed led_stop_software_blink -EXPORT_SYMBOL_GPL vmlinux 0x81cf74ae sata_port_ops -EXPORT_SYMBOL_GPL vmlinux 0x81d93f76 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x81c4c1f0 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x81c67545 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x81c6c3bf topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x81e01df3 bus_rescan_devices EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x81ec34a4 regulator_bulk_set_supply_names -EXPORT_SYMBOL_GPL vmlinux 0x81f1ed41 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x81e7c03f crypto_spawn_tfm EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export -EXPORT_SYMBOL_GPL vmlinux 0x81fbb242 kvm_io_bus_write -EXPORT_SYMBOL_GPL vmlinux 0x81fd7758 inet_bhash2_update_saddr -EXPORT_SYMBOL_GPL vmlinux 0x8208d994 crypto_alloc_sig +EXPORT_SYMBOL_GPL vmlinux 0x81fa0968 devl_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81fdf0b8 pci_epc_linkdown +EXPORT_SYMBOL_GPL vmlinux 0x82008874 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x8200ecea fwnode_property_read_u64_array EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget -EXPORT_SYMBOL_GPL vmlinux 0x8219b81d __kthread_should_park EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings -EXPORT_SYMBOL_GPL vmlinux 0x8224df54 blkg_conf_init -EXPORT_SYMBOL_GPL vmlinux 0x822897ff __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x823699cd debugfs_attr_read EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x82434859 mddev_suspend -EXPORT_SYMBOL_GPL vmlinux 0x824d142b of_phy_get -EXPORT_SYMBOL_GPL vmlinux 0x82502744 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x8243d02a pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x8247b4d9 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x825c52a4 kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0x825c7340 phylink_get_eee_err EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog -EXPORT_SYMBOL_GPL vmlinux 0x8280de01 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x8287822c icmp_build_probe EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x829a38af badblocks_clear -EXPORT_SYMBOL_GPL vmlinux 0x829ecd2b devm_namespace_disable EXPORT_SYMBOL_GPL vmlinux 0x829f9253 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x82a75c3a __traceiter_block_split EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete -EXPORT_SYMBOL_GPL vmlinux 0x82aacf18 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x82b9bc20 pci_epc_multi_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x82bcb3c6 rio_mport_get_physefb -EXPORT_SYMBOL_GPL vmlinux 0x82c46168 usb_enable_intel_xhci_ports -EXPORT_SYMBOL_GPL vmlinux 0x82d50ac8 extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0x82b6c6e4 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x82c32d97 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x82c6afdb list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x82ca1004 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x82d52171 blk_crypto_register EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x82fd1ac4 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x83219f83 hid_bpf_device_init -EXPORT_SYMBOL_GPL vmlinux 0x83264746 pci_epc_mem_init -EXPORT_SYMBOL_GPL vmlinux 0x8330af5d soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x82e82b4f gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x82eefaeb uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x83028ffa wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x830e3739 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x83141ad5 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x831be29e ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x8320ce4c cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x832c25d6 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x832d89e1 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x83324845 devl_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x833394d2 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x83340298 sk_clear_memalloc EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x833ac26b nf_ip_route -EXPORT_SYMBOL_GPL vmlinux 0x833e705e i2c_acpi_client_count -EXPORT_SYMBOL_GPL vmlinux 0x833f9974 vp_legacy_get_features -EXPORT_SYMBOL_GPL vmlinux 0x83438684 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8344f6a4 scmi_device_destroy EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put -EXPORT_SYMBOL_GPL vmlinux 0x83537c4c of_property_read_string EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x836204c1 dev_attr_ncq_prio_supported -EXPORT_SYMBOL_GPL vmlinux 0x8365bcda acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x835cdff3 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x83618822 of_request_module +EXPORT_SYMBOL_GPL vmlinux 0x8363b393 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x836b88e9 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x836d652f poll_state_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0x8375cf95 mtk_clk_unregister_cpumuxes -EXPORT_SYMBOL_GPL vmlinux 0x837cd79d apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x837d6bb9 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x837f0a63 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x838a80a7 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x839c0a55 nvdimm_clear_poison -EXPORT_SYMBOL_GPL vmlinux 0x83ca27d5 icc_put -EXPORT_SYMBOL_GPL vmlinux 0x83f4f14f devm_led_get -EXPORT_SYMBOL_GPL vmlinux 0x8401552f extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x837d1d42 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8380ed92 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x838fac0f em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x83ade7ea sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x83b58b16 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83b95d9f xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x83c3b783 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x83ca5e57 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x83ce7450 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x8405402c adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x840f8f49 i2c_new_scanned_device EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv -EXPORT_SYMBOL_GPL vmlinux 0x84211991 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8417d5f1 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x841c82a1 acpiphp_unregister_attention EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x8436e958 devm_regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x843aa113 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x843a6979 register_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x8446aa99 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x84430e74 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0x8446e0dd ahci_dev_classify EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno -EXPORT_SYMBOL_GPL vmlinux 0x845307ce __clk_get_hw -EXPORT_SYMBOL_GPL vmlinux 0x845d059f dev_pm_opp_xlate_required_opp EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type -EXPORT_SYMBOL_GPL vmlinux 0x8462d275 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x8472beb7 regulator_irq_map_event_simple -EXPORT_SYMBOL_GPL vmlinux 0x847636f9 pm_clk_create -EXPORT_SYMBOL_GPL vmlinux 0x8487d62b kvm_arch_ptp_get_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x8494812f phy_package_leave -EXPORT_SYMBOL_GPL vmlinux 0x84a43d9d icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x846b198b mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8473312c devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x84819217 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8483059d pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8498cb27 ata_sff_tf_load EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert -EXPORT_SYMBOL_GPL vmlinux 0x84ab2468 devl_dpipe_headers_unregister -EXPORT_SYMBOL_GPL vmlinux 0x84be305e ahci_platform_deassert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x84c11307 devm_mbox_controller_register -EXPORT_SYMBOL_GPL vmlinux 0x84c92b60 gpiochip_line_is_valid -EXPORT_SYMBOL_GPL vmlinux 0x84ca00c1 devm_regulator_get_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x84cb53e0 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x84d985db wakeup_sources_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x84dae680 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x84e1aa93 wm8350_device_init -EXPORT_SYMBOL_GPL vmlinux 0x84e86e10 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84ac708a pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x84b95cf7 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x84bf5b0b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x84cda2e1 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x84ce36c1 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x84d34a9f gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x84ea0a2b fscrypt_set_context EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields -EXPORT_SYMBOL_GPL vmlinux 0x84f10ea5 set_selection_kernel -EXPORT_SYMBOL_GPL vmlinux 0x84f257ba vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x84f69e19 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x84fee357 pcc_mbox_free_channel EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate -EXPORT_SYMBOL_GPL vmlinux 0x850a96b7 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8507a1d5 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x850885a3 i2c_dw_configure_master EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy -EXPORT_SYMBOL_GPL vmlinux 0x850d7ffd usb_interrupt_msg -EXPORT_SYMBOL_GPL vmlinux 0x850e72b5 nvdimm_setup_pfn EXPORT_SYMBOL_GPL vmlinux 0x85142df4 sbitmap_queue_init_node -EXPORT_SYMBOL_GPL vmlinux 0x8514493c mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x851c84a6 cgroup_get_e_css EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x852f0f66 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x853901a8 pstore_register -EXPORT_SYMBOL_GPL vmlinux 0x853aeacf rio_route_clr_table -EXPORT_SYMBOL_GPL vmlinux 0x8541cf03 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x8529ce02 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x852f737e gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x852feae8 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8537f5ea pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x85469f68 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x855283fe serial8250_get_port EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put -EXPORT_SYMBOL_GPL vmlinux 0x8572f8fc pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x8579ac4e find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x857c32f7 pinctrl_get_group_pins -EXPORT_SYMBOL_GPL vmlinux 0x85854e85 ata_pci_shutdown_one -EXPORT_SYMBOL_GPL vmlinux 0x8586956e mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0x85869fc6 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x855be7c9 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x8576a44d filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x857a4f5c l3mdev_fib_table_by_index EXPORT_SYMBOL_GPL vmlinux 0x858e2628 dax_holder -EXPORT_SYMBOL_GPL vmlinux 0x859130a1 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x858e276f nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0x859708b2 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x85d23585 _proc_mkdir -EXPORT_SYMBOL_GPL vmlinux 0x85d9e3a5 tcp_abort -EXPORT_SYMBOL_GPL vmlinux 0x85e28cc3 __netpoll_cleanup -EXPORT_SYMBOL_GPL vmlinux 0x85e53008 tpm1_getcap -EXPORT_SYMBOL_GPL vmlinux 0x85e6b6b1 __of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x85e86167 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x85a7a289 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x85c0ed72 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x85cac88d sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x85d5c353 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x85d5c99b mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x85dabb84 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x85dfec6b of_genpd_add_provider_simple EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial -EXPORT_SYMBOL_GPL vmlinux 0x85f77a60 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x860c02ca kvm_vcpu_kick -EXPORT_SYMBOL_GPL vmlinux 0x86130975 dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x85f422eb gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x8615304a ata_acpi_gtm EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal -EXPORT_SYMBOL_GPL vmlinux 0x861eac64 __devm_clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x86240f50 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x8626a95f dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x8626c166 cdrom_read_tocentry EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array -EXPORT_SYMBOL_GPL vmlinux 0x8643d322 device_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x8656c5b2 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x864f1f2d __trace_array_puts EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq -EXPORT_SYMBOL_GPL vmlinux 0x86662a7e tpm_chip_bootstrap -EXPORT_SYMBOL_GPL vmlinux 0x866eaf53 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8664b8d8 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x866ae988 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x866d944e sysfs_remove_bin_file EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8673c66e phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x86744a1e bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0x868219cd vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x867b31ce gpiochip_add_pin_range EXPORT_SYMBOL_GPL vmlinux 0x86871b40 devlink_info_version_stored_put_ext EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x868d3637 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x869278bf sk_msg_zerocopy_from_iter -EXPORT_SYMBOL_GPL vmlinux 0x8692af4e of_genpd_del_provider EXPORT_SYMBOL_GPL vmlinux 0x8696808c phy_gbit_features -EXPORT_SYMBOL_GPL vmlinux 0x869bf40a devl_trylock EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw -EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask -EXPORT_SYMBOL_GPL vmlinux 0x86c1c5ae dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x86b25e29 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x86bcfe55 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x86c3396a mtk_pinconf_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check -EXPORT_SYMBOL_GPL vmlinux 0x86e160da input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x86df7e8d acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x86eaa354 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x86eb2740 of_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue -EXPORT_SYMBOL_GPL vmlinux 0x8703f779 usb_phy_get_charger_current EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared -EXPORT_SYMBOL_GPL vmlinux 0x87199d84 pinctrl_find_and_add_gpio_range -EXPORT_SYMBOL_GPL vmlinux 0x871b94d6 of_genpd_add_provider_simple -EXPORT_SYMBOL_GPL vmlinux 0x871ffc8c tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x872171f4 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x87124ae0 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x871d857b acpi_data_fwnode_ops EXPORT_SYMBOL_GPL vmlinux 0x87258a37 mas_store -EXPORT_SYMBOL_GPL vmlinux 0x8741a587 __phy_modify_mmd_changed -EXPORT_SYMBOL_GPL vmlinux 0x874eb64a pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x875b1ab7 cgroup_get_from_fd -EXPORT_SYMBOL_GPL vmlinux 0x8762a2e2 fuse_conn_init -EXPORT_SYMBOL_GPL vmlinux 0x87678147 usb_hcd_resume_root_hub -EXPORT_SYMBOL_GPL vmlinux 0x8769acf1 pm_generic_suspend_late -EXPORT_SYMBOL_GPL vmlinux 0x876fd3e0 mbox_flush -EXPORT_SYMBOL_GPL vmlinux 0x8774d821 tcp_register_ulp -EXPORT_SYMBOL_GPL vmlinux 0x87787028 iommu_enable_nesting -EXPORT_SYMBOL_GPL vmlinux 0x878ddfc2 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x872e045d irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x87355471 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8739a963 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x87450834 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x8755ec2f crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x878d2449 dev_pm_opp_find_bw_floor EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark -EXPORT_SYMBOL_GPL vmlinux 0x8799d0ac vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x87bdc473 skb_defer_rx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x87decdc8 tegra_mc_probe_device -EXPORT_SYMBOL_GPL vmlinux 0x88118c25 nf_checksum -EXPORT_SYMBOL_GPL vmlinux 0x881e8ba9 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x883ce9ae usb_register_dev -EXPORT_SYMBOL_GPL vmlinux 0x884e1331 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x87a2f7e7 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x87a7884a tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x87a9835e pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x87aed1ed pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x87be74a5 vcap_set_tc_exterr +EXPORT_SYMBOL_GPL vmlinux 0x87c130aa wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x87c209c9 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x87d5b814 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x87e5361a spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x8803a750 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x8822282f i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x8825812e pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x882f6310 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x884ad1a5 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x885005ee vcap_debugfs EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit -EXPORT_SYMBOL_GPL vmlinux 0x8867df39 extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0x886f1dd9 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8857497f regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x8857f244 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x8858ee61 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x8872d7b4 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x88820a17 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x88825d7e nfct_btf_struct_access EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer -EXPORT_SYMBOL_GPL vmlinux 0x889728d5 dev_pm_opp_add -EXPORT_SYMBOL_GPL vmlinux 0x88a04caa __ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0x88a4e801 iommu_dev_enable_feature -EXPORT_SYMBOL_GPL vmlinux 0x88a8a71c xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x888d00bc netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x888ee54f usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x8898beea unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x88996bd6 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x889e1b9e pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x88a4eb06 dev_pm_qos_hide_latency_limit EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88ad9b2e rockchip_pcie_init_port EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88c25444 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x88c26e49 fscrypt_limit_io_blocks EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ -EXPORT_SYMBOL_GPL vmlinux 0x88ce238b ata_sas_port_suspend -EXPORT_SYMBOL_GPL vmlinux 0x88d09b1c bsg_remove_queue -EXPORT_SYMBOL_GPL vmlinux 0x88ea74f3 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88cf5e5a blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x88e8427d ata_pio_need_iordy EXPORT_SYMBOL_GPL vmlinux 0x88ef0ff8 ethtool_params_from_link_mode -EXPORT_SYMBOL_GPL vmlinux 0x88f9f38e of_clk_add_provider EXPORT_SYMBOL_GPL vmlinux 0x88fac4e8 xhci_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x8907244c __strp_unpause EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev -EXPORT_SYMBOL_GPL vmlinux 0x89174dc8 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x89156d12 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x89158741 dev_pm_opp_get_voltage EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891b11b6 devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x891cee72 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x892017e8 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8922eaf0 __irq_alloc_domain_generic_chips EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x8927966e __blk_trace_note_message -EXPORT_SYMBOL_GPL vmlinux 0x8930b461 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x8937be5d bus_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put EXPORT_SYMBOL_GPL vmlinux 0x893c5ddb unlock_system_sleep EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0x895bccef crypto_unregister_scomps -EXPORT_SYMBOL_GPL vmlinux 0x895eab97 devl_assert_locked -EXPORT_SYMBOL_GPL vmlinux 0x8962fcfc usb_autopm_put_interface_no_suspend -EXPORT_SYMBOL_GPL vmlinux 0x896f7977 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x89701539 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x898b02a3 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x8992f91e platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x8999f5c0 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x895f9c82 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x896ca019 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x896f59f6 security_inode_create EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify -EXPORT_SYMBOL_GPL vmlinux 0x89bc4991 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x89bcff2f i2c_recover_bus EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic -EXPORT_SYMBOL_GPL vmlinux 0x89cec9a0 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x89bf46f6 debugfs_create_x16 EXPORT_SYMBOL_GPL vmlinux 0x89e1ec9d acpi_get_subsystem_id EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x89e5ba7a nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x89ecec5e pci_set_host_bridge_release -EXPORT_SYMBOL_GPL vmlinux 0x89f5bc67 devm_clk_get_enabled -EXPORT_SYMBOL_GPL vmlinux 0x89fe577b bpf_map_inc_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x8a0d81f0 devm_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0x8a1e695e phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x89e94602 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8a0154f1 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x8a1276ee mddev_init_writes_pending EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a412cf4 msi_domain_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x8a450770 ip6_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x8a4e2984 dw_pcie_read_dbi -EXPORT_SYMBOL_GPL vmlinux 0x8a5456a1 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x8a4fb300 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8a530637 devm_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode -EXPORT_SYMBOL_GPL vmlinux 0x8a572d33 do_take_over_console -EXPORT_SYMBOL_GPL vmlinux 0x8a5c8f31 mtk_hw_set_value -EXPORT_SYMBOL_GPL vmlinux 0x8a628bc2 pci_epf_free_space EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop -EXPORT_SYMBOL_GPL vmlinux 0x8a6f719c __devm_of_phy_provider_register -EXPORT_SYMBOL_GPL vmlinux 0x8a731a22 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x8a65d2bb dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x8a6ae0c4 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x8a7931bd meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x8a7d7ff9 driver_for_each_device EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts -EXPORT_SYMBOL_GPL vmlinux 0x8aa1a48a linear_hugepage_index -EXPORT_SYMBOL_GPL vmlinux 0x8aab4ab3 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x8aa20b22 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x8aa86555 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x8aafbc7a dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x8ab68a4c input_device_enabled EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x8abc5743 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0x8ac1407b sfp_get_module_eeprom -EXPORT_SYMBOL_GPL vmlinux 0x8accd993 pci_pri_supported -EXPORT_SYMBOL_GPL vmlinux 0x8ace9a8c regulator_suspend_enable -EXPORT_SYMBOL_GPL vmlinux 0x8acfeae1 device_link_add -EXPORT_SYMBOL_GPL vmlinux 0x8ad21c21 usb_alloc_dev -EXPORT_SYMBOL_GPL vmlinux 0x8ad61f79 nf_nat_hook -EXPORT_SYMBOL_GPL vmlinux 0x8af47d51 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x8b05cb37 devm_watchdog_register_device -EXPORT_SYMBOL_GPL vmlinux 0x8b0d9ed7 class_create -EXPORT_SYMBOL_GPL vmlinux 0x8b11d751 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8ac57e6c dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x8ad37151 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x8af11927 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x8afb2e26 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x8afb4ddf mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8b13c385 scsi_register_device_handler EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match EXPORT_SYMBOL_GPL vmlinux 0x8b16842d srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x8b1fba62 sprd_pinctrl_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x8b3c3181 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x8b318807 vcap_get_rule_count_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8b33ab8d pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x8b4149e4 cppc_perf_ctrs_in_pcc -EXPORT_SYMBOL_GPL vmlinux 0x8b474d35 gpiochip_populate_parent_fwspec_fourcell -EXPORT_SYMBOL_GPL vmlinux 0x8b48e9f3 da903x_update -EXPORT_SYMBOL_GPL vmlinux 0x8b4e95af pci_p2pdma_distance_many -EXPORT_SYMBOL_GPL vmlinux 0x8b6ef763 usb_match_id -EXPORT_SYMBOL_GPL vmlinux 0x8b859fae pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8b78a2f6 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b7c8e9d irq_chip_disable_parent EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall -EXPORT_SYMBOL_GPL vmlinux 0x8b8ba677 rz_mtu3_shared_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x8b922770 devl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b903581 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b973a3b pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x8b9d1a43 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x8b9d35c4 xfrm_output EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8ba9adc2 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x8bb1e9b6 wm8350_reg_read EXPORT_SYMBOL_GPL vmlinux 0x8bbe527c __tracepoint_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0x8bd2d5ba __traceiter_udp_fail_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x8bd6eb2f gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x8bcbe65b __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x8bdf2a15 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x8be3df03 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8be65f0d nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x8beae460 meson_vid_pll_div_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0x8bf9448e fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x8bfef62e md_bitmap_resize EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x8c072baa usb_hcd_unmap_urb_setup_for_dma EXPORT_SYMBOL_GPL vmlinux 0x8c09cb50 vcap_rule_add_action_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8c0c91bd i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail -EXPORT_SYMBOL_GPL vmlinux 0x8c162869 regulator_suspend_disable -EXPORT_SYMBOL_GPL vmlinux 0x8c3ffa42 inet_bhash2_reset_saddr -EXPORT_SYMBOL_GPL vmlinux 0x8c44c8d6 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x8c303055 pciserial_init_ports EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference EXPORT_SYMBOL_GPL vmlinux 0x8c4d2428 mt_prev EXPORT_SYMBOL_GPL vmlinux 0x8c52dd7c __tracepoint_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0x8c6772d9 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x8c622b23 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x8c71b6f5 acpi_dev_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8c734944 tps6586x_set_bits EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status -EXPORT_SYMBOL_GPL vmlinux 0x8c8043b1 meson_clk_dualdiv_ops EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off EXPORT_SYMBOL_GPL vmlinux 0x8c8d2374 dma_fence_unwrap_first +EXPORT_SYMBOL_GPL vmlinux 0x8c8f0f46 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL vmlinux 0x8c9048fc policy_has_boost_freq EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb EXPORT_SYMBOL_GPL vmlinux 0x8c9e54d3 devlink_info_version_running_put_ext -EXPORT_SYMBOL_GPL vmlinux 0x8ca77aae devfreq_event_reset_event -EXPORT_SYMBOL_GPL vmlinux 0x8cb1a2bf scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x8cb47dda regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x8caa7629 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x8cac68aa ping_unhash EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cb86a0d relay_buf_full -EXPORT_SYMBOL_GPL vmlinux 0x8cb99865 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x8cd54ae6 imx_pinconf_get_scu -EXPORT_SYMBOL_GPL vmlinux 0x8cd70172 stmpe_disable -EXPORT_SYMBOL_GPL vmlinux 0x8cdd6b1e msi_lock_descs -EXPORT_SYMBOL_GPL vmlinux 0x8ce0daba of_k3_ringacc_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8cefa060 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x8d0b2310 rio_alloc_net -EXPORT_SYMBOL_GPL vmlinux 0x8d1319da ata_port_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x8d13e675 phy_restore_page -EXPORT_SYMBOL_GPL vmlinux 0x8d1a4f5e devm_gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0x8d20f98d ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8cb5cb42 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x8cbe37fa kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x8cc09519 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8cdd4fba spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x8cea4f02 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x8ced1667 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x8cf5ce23 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x8cfdecb1 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x8d15ef5d debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x8d1701a9 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x8d1ef025 dev_attr_link_power_management_policy EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0x8d33f90f devm_of_led_get -EXPORT_SYMBOL_GPL vmlinux 0x8d387785 scsi_free_sgtables -EXPORT_SYMBOL_GPL vmlinux 0x8d58ed41 fib4_rule_default -EXPORT_SYMBOL_GPL vmlinux 0x8d5c5f87 switchdev_bridge_port_unoffload -EXPORT_SYMBOL_GPL vmlinux 0x8d60be02 crypto_register_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x8d632669 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x8d346047 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x8d3b54c5 devl_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d41b467 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8d620ce7 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8d631da3 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x8d648411 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8d648f8c vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d7d0c8a mbox_request_channel EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major -EXPORT_SYMBOL_GPL vmlinux 0x8d81a371 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8d890768 tcp_rate_check_app_limited EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting -EXPORT_SYMBOL_GPL vmlinux 0x8da7585d __devm_irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x8db02cfb dm_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0x8dbdee64 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x8d9d69e7 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x8d9ee340 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x8dafa014 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8db62807 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8dba56de extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8dbb1de3 fsl_mc_obj_close EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call -EXPORT_SYMBOL_GPL vmlinux 0x8dc83a13 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0x8dd21b23 crypto_register_scomp -EXPORT_SYMBOL_GPL vmlinux 0x8df02bbd mpc8xxx_spi_tx_buf_u32 -EXPORT_SYMBOL_GPL vmlinux 0x8dfc3e28 nvdimm_has_cache -EXPORT_SYMBOL_GPL vmlinux 0x8dff31bc ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8e057aed ata_acpi_cbl_80wire -EXPORT_SYMBOL_GPL vmlinux 0x8e150173 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x8de00133 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x8df64d30 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x8df73c7c security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x8dfe4ef1 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x8e12a2dc devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x8e137d20 devl_register EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local -EXPORT_SYMBOL_GPL vmlinux 0x8e164a81 input_class -EXPORT_SYMBOL_GPL vmlinux 0x8e18fa0d acpi_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0x8e2a2ff1 get_dev_pagemap -EXPORT_SYMBOL_GPL vmlinux 0x8e2f17ee iomap_dio_rw -EXPORT_SYMBOL_GPL vmlinux 0x8e340a34 fib_rules_dump -EXPORT_SYMBOL_GPL vmlinux 0x8e38c857 __clk_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0x8e437136 crypto_grab_ahash -EXPORT_SYMBOL_GPL vmlinux 0x8e4520f4 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x8e17e261 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x8e23f1f8 of_nvmem_layout_get_container +EXPORT_SYMBOL_GPL vmlinux 0x8e250751 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x8e29cc5b regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x8e3c8814 onboard_hub_create_pdevs +EXPORT_SYMBOL_GPL vmlinux 0x8e451714 __phy_modify_mmd_changed EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4d6dce clk_regmap_divider_ro_ops EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free -EXPORT_SYMBOL_GPL vmlinux 0x8e5a4796 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x8e55d470 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x8e580d3b tps6586x_clr_bits EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars -EXPORT_SYMBOL_GPL vmlinux 0x8e7380e6 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x8e7795da genphy_c45_plca_set_cfg -EXPORT_SYMBOL_GPL vmlinux 0x8e7e8c7c devres_remove_group EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e8c6647 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e9a2460 usb_interrupt_msg EXPORT_SYMBOL_GPL vmlinux 0x8e9bd4a3 hv_alloc_hyperv_page -EXPORT_SYMBOL_GPL vmlinux 0x8e9d37d2 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x8ea58213 powercap_register_zone -EXPORT_SYMBOL_GPL vmlinux 0x8ea69e25 vp_modern_map_vq_notify -EXPORT_SYMBOL_GPL vmlinux 0x8eab93f1 dev_pm_opp_get_opp_table EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x8eb4c686 eventfd_ctx_fileget -EXPORT_SYMBOL_GPL vmlinux 0x8ec0707a serial8250_rx_dma_flush -EXPORT_SYMBOL_GPL vmlinux 0x8ece2222 devm_power_supply_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x8ee38b85 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x8eb98b3a usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8ec34654 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x8ec5e062 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x8ec6bf51 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x8ec77051 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x8ed32ba5 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ed7d676 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8ee54a16 fwnode_property_read_u16_array EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x8efb19e4 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x8ef6286d ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x8ef70cde ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8ef7fa91 scsi_get_vpd_page EXPORT_SYMBOL_GPL vmlinux 0x8f00f6d1 vhost_task_start +EXPORT_SYMBOL_GPL vmlinux 0x8f035a8f thermal_zone_device_register EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches -EXPORT_SYMBOL_GPL vmlinux 0x8f0dd094 pin_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x8f239376 irq_domain_free_irqs_parent -EXPORT_SYMBOL_GPL vmlinux 0x8f33c92f dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8f1827e0 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f1b85a8 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f1cfa6b vfs_remove_acl +EXPORT_SYMBOL_GPL vmlinux 0x8f1d459b kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x8f20d16e serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x8f2e852e xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f3558a9 irq_work_sync EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate -EXPORT_SYMBOL_GPL vmlinux 0x8f42b584 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x8f46a4c2 blk_mq_virtio_map_queues EXPORT_SYMBOL_GPL vmlinux 0x8f4f5b83 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8f50fea7 irq_domain_free_irqs_common EXPORT_SYMBOL_GPL vmlinux 0x8f581c0e __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x8f675fff irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x8f5fe071 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f60a842 __bio_add_page EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f773a00 ohci_init_driver EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0x8f7bb759 of_icc_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool -EXPORT_SYMBOL_GPL vmlinux 0x8f7c537b devm_pinctrl_put -EXPORT_SYMBOL_GPL vmlinux 0x8f87ee44 ahci_fill_cmd_slot -EXPORT_SYMBOL_GPL vmlinux 0x8f90703b gpiochip_irq_domain_deactivate -EXPORT_SYMBOL_GPL vmlinux 0x8f90e460 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x8f8d6a11 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x8f9787b5 power_supply_charge_behaviour_show EXPORT_SYMBOL_GPL vmlinux 0x8fa5a6ee dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8fa82319 nvdimm_name EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group -EXPORT_SYMBOL_GPL vmlinux 0x8fc12aca blk_crypto_register -EXPORT_SYMBOL_GPL vmlinux 0x8fdd4591 pci_platform_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x8fe22524 amba_bustype -EXPORT_SYMBOL_GPL vmlinux 0x8ff2d123 usb_driver_release_interface -EXPORT_SYMBOL_GPL vmlinux 0x8ff54d30 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x8fcdceec serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x8fedf95e apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x8ff038f7 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x8ff0c6e1 serdev_device_write_flush EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points -EXPORT_SYMBOL_GPL vmlinux 0x8ffa8838 ioc_find_get_icq -EXPORT_SYMBOL_GPL vmlinux 0x90063008 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x9007ba87 phy_create -EXPORT_SYMBOL_GPL vmlinux 0x90100f0b unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x90257407 vfs_inode_has_locks -EXPORT_SYMBOL_GPL vmlinux 0x90299ca6 scmi_device_create +EXPORT_SYMBOL_GPL vmlinux 0x9003cd5b __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x90090b61 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x90111a65 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x9019f93a xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x9026c8e1 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x90277340 i2c_new_ancillary_device EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x90514024 pwm_capture -EXPORT_SYMBOL_GPL vmlinux 0x90594ff5 regulator_bulk_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0x906e5f69 cpufreq_driver_resolve_freq -EXPORT_SYMBOL_GPL vmlinux 0x907c7056 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x904e44c5 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x904fa9f2 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x9057c080 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x905b8a1a tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x90689c33 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x906d3da4 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x906f02a1 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x907666d0 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x9079fabf xen_dbgp_reset_prep EXPORT_SYMBOL_GPL vmlinux 0x907ffb62 __tracepoint_unmap -EXPORT_SYMBOL_GPL vmlinux 0x9095a6da buffer_migrate_folio_norefs -EXPORT_SYMBOL_GPL vmlinux 0x909838ef regmap_fields_update_bits_base -EXPORT_SYMBOL_GPL vmlinux 0x9098fbf2 of_nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x909e2c87 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x90839204 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x908a4b47 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x9097da46 mptcp_token_iter_next EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized -EXPORT_SYMBOL_GPL vmlinux 0x90af7d22 exportfs_decode_fh EXPORT_SYMBOL_GPL vmlinux 0x90b022da inet_pernet_hashinfo_alloc -EXPORT_SYMBOL_GPL vmlinux 0x90b2d88e devm_hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x90b72ae6 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x90b02c83 dax_layout_busy_page_range EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io -EXPORT_SYMBOL_GPL vmlinux 0x90baa38c fscrypt_set_bio_crypt_ctx -EXPORT_SYMBOL_GPL vmlinux 0x90c7d4f4 nvdimm_security_setup_events EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register -EXPORT_SYMBOL_GPL vmlinux 0x90dc6232 devfreq_cooling_em_register -EXPORT_SYMBOL_GPL vmlinux 0x90ebe566 serdev_device_open -EXPORT_SYMBOL_GPL vmlinux 0x90f6568f clk_regmap_mux_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x9100af64 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x90e1b6ef pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x90e6d826 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x90f364de sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x90f480c0 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x90f5ef7e ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x90fa87e4 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x90fb3776 mtk_hw_set_value EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf -EXPORT_SYMBOL_GPL vmlinux 0x911025fb kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x910c368f ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x910c6160 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL vmlinux 0x9113284e sdio_set_host_pm_flags EXPORT_SYMBOL_GPL vmlinux 0x911fcd6c phylink_start -EXPORT_SYMBOL_GPL vmlinux 0x912abe85 debugfs_create_u8 EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save -EXPORT_SYMBOL_GPL vmlinux 0x91455a61 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x9145d882 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x9148b935 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9151217c driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x91579b3e regmap_noinc_write -EXPORT_SYMBOL_GPL vmlinux 0x91672558 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x916eb9e2 folio_add_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x9172ca22 spi_slave_abort -EXPORT_SYMBOL_GPL vmlinux 0x917a20b6 nvdimm_volatile_region_create -EXPORT_SYMBOL_GPL vmlinux 0x9183b8f1 input_device_enabled -EXPORT_SYMBOL_GPL vmlinux 0x918c9486 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9140e53c fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9141c92f virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x917c3614 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x9184665e devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x91860c42 vcap_tc_flower_handler_cvlan_usage +EXPORT_SYMBOL_GPL vmlinux 0x9187e010 vcap_is_last_chain +EXPORT_SYMBOL_GPL vmlinux 0x91887618 phy_check_downshift EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x9198b081 pm_runtime_get_if_active -EXPORT_SYMBOL_GPL vmlinux 0x919fcbf5 pinctrl_pm_select_idle_state -EXPORT_SYMBOL_GPL vmlinux 0x91aa0009 pci_epc_set_bar -EXPORT_SYMBOL_GPL vmlinux 0x91b0bd36 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x919c5d4d devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x91b022a4 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x91b313e9 shash_ahash_digest EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval -EXPORT_SYMBOL_GPL vmlinux 0x91bd7f72 tpm_chip_alloc EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x91d40f19 clk_register_divider_table -EXPORT_SYMBOL_GPL vmlinux 0x91d53027 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x91d1d1c7 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x91d22225 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x91d2bab1 __alloc_pages_bulk EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean -EXPORT_SYMBOL_GPL vmlinux 0x92001ba8 pci_ims_alloc_irq -EXPORT_SYMBOL_GPL vmlinux 0x92098a45 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x920bea47 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x91f6299c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x91fe0b17 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x920430aa kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x9207aafc ping_common_sendmsg EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl -EXPORT_SYMBOL_GPL vmlinux 0x921a61b8 ahci_pmp_retry_srst_ops -EXPORT_SYMBOL_GPL vmlinux 0x92229bac clean_record_shared_mapping_range -EXPORT_SYMBOL_GPL vmlinux 0x92269149 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x922d4870 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x922db9e0 hid_bpf_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x92346ba4 skcipher_walk_aead_decrypt EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred -EXPORT_SYMBOL_GPL vmlinux 0x92481e7f security_inode_setattr EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object -EXPORT_SYMBOL_GPL vmlinux 0x925f2af0 watchdog_set_last_hw_keepalive -EXPORT_SYMBOL_GPL vmlinux 0x926ae8bc xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x92531707 crypto_register_ahash EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs -EXPORT_SYMBOL_GPL vmlinux 0x927a38e2 acpi_set_modalias -EXPORT_SYMBOL_GPL vmlinux 0x928ccdd0 fuse_conn_put -EXPORT_SYMBOL_GPL vmlinux 0x9295393d regulator_bulk_force_disable -EXPORT_SYMBOL_GPL vmlinux 0x92976926 scsi_block_targets +EXPORT_SYMBOL_GPL vmlinux 0x927c84ae of_msi_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x928b687a devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x92998496 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x929c6522 regulator_is_enabled_regmap EXPORT_SYMBOL_GPL vmlinux 0x929e95cf psi_memstall_enter -EXPORT_SYMBOL_GPL vmlinux 0x929eb7a2 icc_link_create -EXPORT_SYMBOL_GPL vmlinux 0x92a7183c ip6_redirect EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c2eb37 pinctrl_select_state EXPORT_SYMBOL_GPL vmlinux 0x92cb609e __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x92cd96cc acpi_pm_set_device_wakeup EXPORT_SYMBOL_GPL vmlinux 0x92cf74aa vcap_admin_rule_count +EXPORT_SYMBOL_GPL vmlinux 0x92d04556 tty_ldisc_flush EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dcbe78 rtnl_register_module EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work -EXPORT_SYMBOL_GPL vmlinux 0x92fb68df tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x9307219a virtqueue_get_avail_addr EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring -EXPORT_SYMBOL_GPL vmlinux 0x931277a9 input_ff_event EXPORT_SYMBOL_GPL vmlinux 0x931ac7c0 __tracepoint_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0x931f02a4 altr_sysmgr_regmap_lookup_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0x93207dc9 md_stop EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0x93283df2 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x932b1d60 md_account_bio EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x932d1a25 transport_add_device EXPORT_SYMBOL_GPL vmlinux 0x9332a568 __tracepoint_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0x93335116 led_remove_lookup -EXPORT_SYMBOL_GPL vmlinux 0x933f2ff8 devm_serdev_device_open EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x9345a298 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x934a59e5 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x934ae6a1 rtc_class_open EXPORT_SYMBOL_GPL vmlinux 0x935346fe __sbitmap_queue_get -EXPORT_SYMBOL_GPL vmlinux 0x935fd49a rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x935ca75d xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x935efbe5 ata_sff_postreset EXPORT_SYMBOL_GPL vmlinux 0x93605e9a vfsgid_in_group_p -EXPORT_SYMBOL_GPL vmlinux 0x9363b3e2 tegra_bpmp_request_mrq -EXPORT_SYMBOL_GPL vmlinux 0x9366c14c edac_pci_handle_npe -EXPORT_SYMBOL_GPL vmlinux 0x93691357 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x93708a1c ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x93745c51 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x937caeb2 mdiobus_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x938cf9d8 __tracepoint_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0x93ae600a nvmem_device_get -EXPORT_SYMBOL_GPL vmlinux 0x93afbc01 pinmux_generic_get_function_groups -EXPORT_SYMBOL_GPL vmlinux 0x93b74d9c stmpe_reg_read -EXPORT_SYMBOL_GPL vmlinux 0x93bbcb80 power_supply_get_property -EXPORT_SYMBOL_GPL vmlinux 0x93c6783e pci_ims_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x93948e09 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x939e119a proc_create_net_single EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93ccb78a security_inode_mkdir EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references -EXPORT_SYMBOL_GPL vmlinux 0x93d7c5e9 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x93e4efa1 dev_pm_qos_remove_notifier EXPORT_SYMBOL_GPL vmlinux 0x93ebdf96 mt_next EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report -EXPORT_SYMBOL_GPL vmlinux 0x940f8f54 fb_deferred_io_fsync -EXPORT_SYMBOL_GPL vmlinux 0x94114e14 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x94171419 blk_crypto_has_capabilities -EXPORT_SYMBOL_GPL vmlinux 0x94192f74 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x93f5bba3 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x9401e4b0 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x9404f4ff blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x9408570f devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x940a64f2 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x941a3838 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x941e9481 __traceiter_br_fdb_external_learn_add EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name EXPORT_SYMBOL_GPL vmlinux 0x94299178 phylink_decode_usxgmii_word EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack -EXPORT_SYMBOL_GPL vmlinux 0x94325dcf devm_of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic -EXPORT_SYMBOL_GPL vmlinux 0x943e04d0 sata_pmp_error_handler EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event -EXPORT_SYMBOL_GPL vmlinux 0x94530be4 sampling_rate_store -EXPORT_SYMBOL_GPL vmlinux 0x9453ac23 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x94481548 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9451812d devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x945be1d6 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x945e433e dm_bio_get_target_bio_nr EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946b6eba virtqueue_is_broken EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash -EXPORT_SYMBOL_GPL vmlinux 0x94774f21 ethnl_cable_test_result -EXPORT_SYMBOL_GPL vmlinux 0x94879f39 kvm_put_kvm_no_destroy -EXPORT_SYMBOL_GPL vmlinux 0x948eef22 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x94725e40 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x947fa04a sysfs_change_owner EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x949fb11f wm831x_set_bits -EXPORT_SYMBOL_GPL vmlinux 0x94b2f166 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x94a1cc1b acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x94a600cf bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x94ab9dd8 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x94ba7f79 devm_clk_register EXPORT_SYMBOL_GPL vmlinux 0x94bbb62f __tracepoint_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0x94d7e7ce vp_modern_generation -EXPORT_SYMBOL_GPL vmlinux 0x94e4a9c1 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x94c205c5 nop_posix_acl_access +EXPORT_SYMBOL_GPL vmlinux 0x94c7d9a2 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x94c863b9 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x94cb84b9 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x94dd8346 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94e39f58 kstrdup_quotable_file EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi -EXPORT_SYMBOL_GPL vmlinux 0x94e88354 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x94e8acc0 fuse_mount_remove -EXPORT_SYMBOL_GPL vmlinux 0x94ed6574 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x94e6c33c gpiochip_generic_request EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop -EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f4a518 nvdimm_flush EXPORT_SYMBOL_GPL vmlinux 0x94f64aa5 __tracepoint_rpm_suspend -EXPORT_SYMBOL_GPL vmlinux 0x94f6ec1f clk_divider_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x94fa1642 usb_get_phy -EXPORT_SYMBOL_GPL vmlinux 0x94ff3a16 mdiobus_c45_modify_changed EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x95053b82 of_get_required_opp_performance_state -EXPORT_SYMBOL_GPL vmlinux 0x950ec62e regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x95073c6e memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x9509f13a dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x95190fbd power_supply_get_by_name EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x952f0f42 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x951b6dc2 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x951fa7d2 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x95361408 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x9538abcd kiocb_modified EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x9549bc8e dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x954405bb usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x9548a12b serial8250_rx_chars EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x955c66e5 __traceiter_sched_update_nr_running_tp -EXPORT_SYMBOL_GPL vmlinux 0x95601224 fwnode_handle_get -EXPORT_SYMBOL_GPL vmlinux 0x9568669f rcu_read_unlock_trace_special -EXPORT_SYMBOL_GPL vmlinux 0x956a1ec5 ata_sff_drain_fifo -EXPORT_SYMBOL_GPL vmlinux 0x956a3132 pci_epc_write_header EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956bc0b3 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x957064c8 blk_queue_can_use_dma_map_merging EXPORT_SYMBOL_GPL vmlinux 0x957166d8 regmap_irq_set_type_config_simple -EXPORT_SYMBOL_GPL vmlinux 0x9580edf6 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x95821722 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x9583baa5 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x95742cb0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x957a60ad ata_pci_remove_one EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init -EXPORT_SYMBOL_GPL vmlinux 0x95847691 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x958638ee unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x958bad8e nvdimm_bus_add_badrange EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95937761 of_nvmem_device_get EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export EXPORT_SYMBOL_GPL vmlinux 0x959682a4 __tracepoint_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0x959ec75b __usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0x95a1a7c3 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x95b1113c ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x95bbb71b evm_verifyxattr EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free -EXPORT_SYMBOL_GPL vmlinux 0x95bcb07a of_devfreq_cooling_register_power -EXPORT_SYMBOL_GPL vmlinux 0x95daf57a cpufreq_freq_attr_scaling_available_freqs -EXPORT_SYMBOL_GPL vmlinux 0x95e9f2b6 bpf_redirect_info -EXPORT_SYMBOL_GPL vmlinux 0x95ee3d78 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x95c533af __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x95c6eef5 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x95dd0142 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x95e55579 __cdx_driver_register EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size -EXPORT_SYMBOL_GPL vmlinux 0x95f51190 ata_sff_dev_select -EXPORT_SYMBOL_GPL vmlinux 0x95f9e78c kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x960438e4 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9612863f powercap_unregister_control_type EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu EXPORT_SYMBOL_GPL vmlinux 0x9616a255 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL vmlinux 0x961c90a3 vp_modern_set_queue_size EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x96247fad pci_epc_set_msi EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs -EXPORT_SYMBOL_GPL vmlinux 0x962e3d4c balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x963ed591 dprc_close -EXPORT_SYMBOL_GPL vmlinux 0x9642380d dw_pcie_link_up -EXPORT_SYMBOL_GPL vmlinux 0x9643e600 mbox_controller_unregister -EXPORT_SYMBOL_GPL vmlinux 0x965426a6 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x96392b67 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x96437168 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x9646bec6 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x964bdde1 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x9653a0bd init_uts_ns EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9656dbb5 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x966a23ed ahci_platform_assert_rsts -EXPORT_SYMBOL_GPL vmlinux 0x9675a4dc pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x9690478c of_add_property -EXPORT_SYMBOL_GPL vmlinux 0x969883ce sk_msg_is_readable -EXPORT_SYMBOL_GPL vmlinux 0x969f5dcc ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x96582bed l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x96646c83 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x96693ae4 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x966bccd6 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x9673bc5e blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x96829c7b ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x96963a3d clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x96982d2a dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x969ae917 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x969f51a3 sched_numa_find_nth_cpu EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x96bdb2a1 device_change_owner -EXPORT_SYMBOL_GPL vmlinux 0x96d026a5 crypto_hash_alg_has_setkey -EXPORT_SYMBOL_GPL vmlinux 0x96eadd3a free_fib_info -EXPORT_SYMBOL_GPL vmlinux 0x96f854de of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x96ae3b04 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96af42af folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x96b256b0 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x96b511f5 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x96bb2795 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x96ce7dab perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x96d150e0 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x96f6910a dmaengine_desc_set_metadata_len EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp -EXPORT_SYMBOL_GPL vmlinux 0x96fe5bb0 devm_regulator_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x97115038 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x97137974 tpm2_get_tpm_pt EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x97172d1e sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x9717dc93 kthread_unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x971b716a usb_choose_configuration -EXPORT_SYMBOL_GPL vmlinux 0x971ccf69 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x9723e555 kvm_release_page_clean -EXPORT_SYMBOL_GPL vmlinux 0x972cdec7 regmap_bulk_write -EXPORT_SYMBOL_GPL vmlinux 0x972d0760 pm_runtime_irq_safe -EXPORT_SYMBOL_GPL vmlinux 0x973c6095 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x9715ce7e of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x971efa99 pinmux_generic_get_function_groups EXPORT_SYMBOL_GPL vmlinux 0x973fbee4 led_add_lookup -EXPORT_SYMBOL_GPL vmlinux 0x9747e5f0 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x9741312b mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x97429225 devm_tegra_memory_controller_get EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x976478ee of_property_read_variable_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x9766fc79 devm_of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x97766a3f nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x975897a6 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x975cc8ce pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x976e62c2 ping_seq_next EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x9784d129 extcon_get_property_capability -EXPORT_SYMBOL_GPL vmlinux 0x97961a48 fsnotify_alloc_group -EXPORT_SYMBOL_GPL vmlinux 0x979df952 imx_unregister_hw_clocks -EXPORT_SYMBOL_GPL vmlinux 0x97a6385b irq_domain_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0x97ac82c1 __hwspin_trylock -EXPORT_SYMBOL_GPL vmlinux 0x97cd3fe1 blk_mq_update_nr_hw_queues -EXPORT_SYMBOL_GPL vmlinux 0x97cf9fcf pm_runtime_set_autosuspend_delay -EXPORT_SYMBOL_GPL vmlinux 0x97ddf09b tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x97818dd9 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x979bfe0e pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x97c3338a tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x97db6b8d ipv4_redirect EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x97decd3a bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x97e19906 ZSTD_getErrorCode +EXPORT_SYMBOL_GPL vmlinux 0x97e24e95 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x97e85899 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x97e8ac7f rio_request_dma EXPORT_SYMBOL_GPL vmlinux 0x97f1f98b srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x97ff1155 static_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0x980c4c51 dev_coredumpv -EXPORT_SYMBOL_GPL vmlinux 0x981415f2 dmaengine_unmap_put -EXPORT_SYMBOL_GPL vmlinux 0x9824c3b6 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x982962d4 nvdimm_bus_check_dimm_count -EXPORT_SYMBOL_GPL vmlinux 0x982cefbd gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x97f84fab stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x9815006b devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x981cebf2 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x982009e8 iomap_is_partially_uptodate EXPORT_SYMBOL_GPL vmlinux 0x983276da phylink_disconnect_phy EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check -EXPORT_SYMBOL_GPL vmlinux 0x9846676f crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x98462837 fsl_mc_bus_dpcon_type EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9853b638 led_update_brightness EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x98580363 put_io_context -EXPORT_SYMBOL_GPL vmlinux 0x985ed723 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x986b7a16 led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0x98705912 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x985be2f0 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x98630256 devl_params_register +EXPORT_SYMBOL_GPL vmlinux 0x98702cda gpiochip_generic_free EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988a75d3 dst_blackhole_update_pmtu EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str -EXPORT_SYMBOL_GPL vmlinux 0x98921f01 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x9893d886 fuse_send_init -EXPORT_SYMBOL_GPL vmlinux 0x98bc7fff ma35d1_reg_adc_clkdiv -EXPORT_SYMBOL_GPL vmlinux 0x98bcc40d ip_fib_metrics_init -EXPORT_SYMBOL_GPL vmlinux 0x98c71f33 of_icc_get_by_index -EXPORT_SYMBOL_GPL vmlinux 0x98ca40f6 __percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x98cdb7dd dpm_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x98d02377 rio_request_inb_mbox -EXPORT_SYMBOL_GPL vmlinux 0x98d80f53 ata_bmdma_irq_clear -EXPORT_SYMBOL_GPL vmlinux 0x98e0feba get_device -EXPORT_SYMBOL_GPL vmlinux 0x98e10f27 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x989981be sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x98a9b390 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x98b94daf xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x98beecde crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x98c8f060 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x98cdf1c2 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x98cfaa10 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x98d2a0b3 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x98db04e6 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x98ece22b of_genpd_parse_idle_states EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu -EXPORT_SYMBOL_GPL vmlinux 0x98f34ede __traceiter_rpm_return_int -EXPORT_SYMBOL_GPL vmlinux 0x990a1f05 sata_scr_write -EXPORT_SYMBOL_GPL vmlinux 0x990f38d9 devm_ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x9922dfc9 l3mdev_table_lookup_unregister -EXPORT_SYMBOL_GPL vmlinux 0x992c1bf7 iommu_register_device_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x99302e2b regulator_get_hardware_vsel_register -EXPORT_SYMBOL_GPL vmlinux 0x9947f0d1 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x98fe81c4 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x99123790 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x9920dcbc k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x9924b22e mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x9937053e of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x993af11d scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x9941af9b of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x994a31e9 lwtunnel_xmit EXPORT_SYMBOL_GPL vmlinux 0x9953acdb pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x995badf1 usb_poison_urb -EXPORT_SYMBOL_GPL vmlinux 0x995c8f5f pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x995858de sk_set_memalloc EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on -EXPORT_SYMBOL_GPL vmlinux 0x995ea7ea __devm_reset_control_get EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg -EXPORT_SYMBOL_GPL vmlinux 0x996cac6e devm_fwnode_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0x996d7746 sock_diag_destroy -EXPORT_SYMBOL_GPL vmlinux 0x9974311d devl_unlock -EXPORT_SYMBOL_GPL vmlinux 0x99758977 of_hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0x997b7dae ata_acpi_stm -EXPORT_SYMBOL_GPL vmlinux 0x99823690 edac_mc_find_csrow_by_page -EXPORT_SYMBOL_GPL vmlinux 0x9987f7bb phy_get -EXPORT_SYMBOL_GPL vmlinux 0x998a8986 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x996cd10a dev_pm_opp_remove_table EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time EXPORT_SYMBOL_GPL vmlinux 0x998fcbf2 clear_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0x99935ccd kvm_vcpu_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0x9996ea56 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x9997539e ata_host_activate EXPORT_SYMBOL_GPL vmlinux 0x99a03078 dax_holder_notify_failure -EXPORT_SYMBOL_GPL vmlinux 0x99a84fc4 clk_hw_get_parent_index -EXPORT_SYMBOL_GPL vmlinux 0x99abaccc crypto_akcipher_sync_encrypt -EXPORT_SYMBOL_GPL vmlinux 0x99c2c132 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x99ad63de dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x99b041f7 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x99b5500e fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x99bc9fa9 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x99c13dec subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99ccdc75 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x99eac111 devm_pinctrl_get EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2661c ahci_platform_ops EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at -EXPORT_SYMBOL_GPL vmlinux 0x99ff388f spi_sync_locked -EXPORT_SYMBOL_GPL vmlinux 0x9a00db79 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x99f4738f cdx_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x99f89c1e find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x99fea660 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x99feecc1 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9a06e42d nvmem_layout_unregister EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x9a1651cd debugfs_attr_write_signed -EXPORT_SYMBOL_GPL vmlinux 0x9a194f76 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x9a224aa5 rio_set_port_lockout -EXPORT_SYMBOL_GPL vmlinux 0x9a22acd5 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x9a1b77e3 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9a1e650d perf_trace_run_bpf_submit EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x9a3392eb lwtunnel_cmp_encap -EXPORT_SYMBOL_GPL vmlinux 0x9a52f0b9 md_rdev_init -EXPORT_SYMBOL_GPL vmlinux 0x9a55e8df sbitmap_bitmap_show -EXPORT_SYMBOL_GPL vmlinux 0x9a56c8a0 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x9a2ba788 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x9a3c2983 usb_string EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check -EXPORT_SYMBOL_GPL vmlinux 0x9a64c730 serdev_device_remove -EXPORT_SYMBOL_GPL vmlinux 0x9a72c23d mmc_send_tuning -EXPORT_SYMBOL_GPL vmlinux 0x9a75a27b devlink_resource_occ_get_register -EXPORT_SYMBOL_GPL vmlinux 0x9a775dee thermal_cooling_device_update -EXPORT_SYMBOL_GPL vmlinux 0x9a781f79 pinctrl_register -EXPORT_SYMBOL_GPL vmlinux 0x9a978fae phylink_mii_c22_pcs_an_restart -EXPORT_SYMBOL_GPL vmlinux 0x9ab9920c sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x9a6e3b6d __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x9a79a187 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x9a9326d5 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x9ab1e690 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9abe0f57 fsl8250_handle_irq EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac23997 led_trigger_blink_oneshot EXPORT_SYMBOL_GPL vmlinux 0x9ac58f15 __tracepoint_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0x9accf5a8 irq_chip_set_parent_state EXPORT_SYMBOL_GPL vmlinux 0x9acf31c6 mas_find -EXPORT_SYMBOL_GPL vmlinux 0x9adc6228 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x9ae8ebd3 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x9ad7c7fc inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x9ae6917c tpm2_get_cc_attrs_tbl EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty -EXPORT_SYMBOL_GPL vmlinux 0x9af0aa3a dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9aeb4996 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x9af4279f acpiphp_register_attention EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9af5a5c6 rz_mtu3_8bit_ch_write -EXPORT_SYMBOL_GPL vmlinux 0x9af74b8d devm_of_icc_bulk_get -EXPORT_SYMBOL_GPL vmlinux 0x9b08864e failover_register -EXPORT_SYMBOL_GPL vmlinux 0x9b0caba0 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0x9af79189 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x9b01f64a acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b0c879f do_xdp_generic EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b125db2 sysfs_group_change_owner EXPORT_SYMBOL_GPL vmlinux 0x9b16e4ee phy_gbit_fibre_features -EXPORT_SYMBOL_GPL vmlinux 0x9b1dfb24 br_ip6_fragment -EXPORT_SYMBOL_GPL vmlinux 0x9b2763a1 irq_get_domain_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0x9b29739c pci_p2pmem_virt_to_bus -EXPORT_SYMBOL_GPL vmlinux 0x9b38857b extcon_get_property -EXPORT_SYMBOL_GPL vmlinux 0x9b3bd1e1 gpiod_put -EXPORT_SYMBOL_GPL vmlinux 0x9b4b90ed clk_regmap_gate_ro_ops -EXPORT_SYMBOL_GPL vmlinux 0x9b52f527 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9b1e4bd5 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x9b1ec3cc devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9b1f4768 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b206b9a blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x9b21a878 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x9b48227e thermal_zone_device EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle -EXPORT_SYMBOL_GPL vmlinux 0x9b57f20d extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x9b5e6a4a platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x9b5f9b88 dw_pcie_ep_init_notify EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring EXPORT_SYMBOL_GPL vmlinux 0x9b652b6e phylink_resolve_c73 -EXPORT_SYMBOL_GPL vmlinux 0x9b672a8b dev_pm_genpd_synced_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x9b6ec772 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b678c30 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x9b6b37d1 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x9b6d16e9 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9b6d5c39 device_match_name EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size -EXPORT_SYMBOL_GPL vmlinux 0x9b6fff98 __pm_runtime_resume -EXPORT_SYMBOL_GPL vmlinux 0x9b846d58 udp_splice_eof EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b91e5d8 invalidate_inode_pages2_range EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config -EXPORT_SYMBOL_GPL vmlinux 0x9b9cdbe3 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x9b9bb774 nvdimm_region_delete +EXPORT_SYMBOL_GPL vmlinux 0x9b9eb570 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9ba24b8b iommu_map EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array -EXPORT_SYMBOL_GPL vmlinux 0x9ba34368 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0x9bb3fcd1 __tracepoint_napi_poll -EXPORT_SYMBOL_GPL vmlinux 0x9bba7f3f dev_pm_put_subsys_data -EXPORT_SYMBOL_GPL vmlinux 0x9bbbb486 devm_regmap_init_vexpress_config -EXPORT_SYMBOL_GPL vmlinux 0x9bc810ee ata_acpi_gtm -EXPORT_SYMBOL_GPL vmlinux 0x9bcba193 usb_driver_set_configuration -EXPORT_SYMBOL_GPL vmlinux 0x9bde4d78 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x9bba88b8 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x9bd1cd17 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9bd67790 blk_mq_debugfs_rq_show EXPORT_SYMBOL_GPL vmlinux 0x9bdf9714 ZSTD_customMalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be21d14 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x9be23ebb blk_mq_queue_inflight EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range -EXPORT_SYMBOL_GPL vmlinux 0x9be76ddb da9055_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0x9be958e3 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x9be73c2a __account_locked_vm EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x9bf2e2ad nvmem_cell_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0x9bfb32c3 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x9bff71ba ata_host_put -EXPORT_SYMBOL_GPL vmlinux 0x9c0489d2 mtk_clk_dummy_ops -EXPORT_SYMBOL_GPL vmlinux 0x9c0e2883 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x9c2df52a icc_set_bw -EXPORT_SYMBOL_GPL vmlinux 0x9c3da62e fwnode_usb_role_switch_get -EXPORT_SYMBOL_GPL vmlinux 0x9c3eeb4f pci_p2pmem_free_sgl +EXPORT_SYMBOL_GPL vmlinux 0x9c0c13d1 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x9c2bbe32 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9c318a77 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x9c3486c7 device_find_any_child EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq -EXPORT_SYMBOL_GPL vmlinux 0x9c4bc9e8 acpi_spi_count_resources -EXPORT_SYMBOL_GPL vmlinux 0x9c57020b vfs_get_acl +EXPORT_SYMBOL_GPL vmlinux 0x9c4f0bf0 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x9c52c81c da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x9c55bb09 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x9c56564d gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x9c5a4b18 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x9c5a7f37 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9c5d5829 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x9c68e590 usb_disable_lpm EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x9c7518b0 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x9c758125 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x9c75e7e8 perf_event_addr_filters_sync EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on -EXPORT_SYMBOL_GPL vmlinux 0x9c858421 relay_late_setup_files -EXPORT_SYMBOL_GPL vmlinux 0x9c88bf5b ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x9c8a871a power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x9c911fef devlink_traps_unregister EXPORT_SYMBOL_GPL vmlinux 0x9c964c80 free_uid -EXPORT_SYMBOL_GPL vmlinux 0x9c978aae irq_create_mapping_affinity -EXPORT_SYMBOL_GPL vmlinux 0x9c9f14f1 iommu_device_register EXPORT_SYMBOL_GPL vmlinux 0x9ca6e11f cper_mem_err_location -EXPORT_SYMBOL_GPL vmlinux 0x9cb3f534 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x9ca9c2c8 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x9cb07d0e devm_regulator_get_enable_optional +EXPORT_SYMBOL_GPL vmlinux 0x9cb1c626 xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0x9cb245ce bd_prepare_to_claim EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cb95fb5 udp4_hwcsum EXPORT_SYMBOL_GPL vmlinux 0x9cbc452a imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x9cc05e58 mmc_pwrseq_register EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9cd6a36d blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x9cc76d57 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9ccab552 of_irq_get EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals -EXPORT_SYMBOL_GPL vmlinux 0x9ce35915 regulator_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0x9cefcb80 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9ced57ed create_signature +EXPORT_SYMBOL_GPL vmlinux 0x9cf2ce5e dev_pm_opp_of_find_icc_paths EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x9d048fcc skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x9cfcc183 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9d010e6b devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x9d01929b tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x9d022810 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x9d02d3da irq_chip_unmask_parent EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data -EXPORT_SYMBOL_GPL vmlinux 0x9d1a97cf dev_pm_qos_flags -EXPORT_SYMBOL_GPL vmlinux 0x9d25e491 pci_iov_get_pf_drvdata -EXPORT_SYMBOL_GPL vmlinux 0x9d2c5d34 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9d101d67 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x9d291b80 gpiod_get_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0x9d2d3f5b pkcs7_free_message EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp EXPORT_SYMBOL_GPL vmlinux 0x9d366f99 page_reporting_register -EXPORT_SYMBOL_GPL vmlinux 0x9d4619e7 devl_lock -EXPORT_SYMBOL_GPL vmlinux 0x9d52482e pinctrl_lookup_state -EXPORT_SYMBOL_GPL vmlinux 0x9d537025 iomap_bmap -EXPORT_SYMBOL_GPL vmlinux 0x9d59469f __traceiter_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0x9d6239b6 pm_genpd_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x9d714f42 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x9d71cc0e serial8250_release_dma -EXPORT_SYMBOL_GPL vmlinux 0x9d7afd29 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x9d8145c8 fib_rules_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d817d20 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x9d8b6b1f ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x9d3f0609 vcap_port_debugfs +EXPORT_SYMBOL_GPL vmlinux 0x9d48334f crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9d4eb714 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x9d543e94 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x9d60321d tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9d61c647 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9d687a87 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x9d7b45fe generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x9d7e9cb6 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x9d810ce0 of_phy_get EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache -EXPORT_SYMBOL_GPL vmlinux 0x9d8c2657 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x9d964296 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio -EXPORT_SYMBOL_GPL vmlinux 0x9d9f515b pci_status_get_and_clear_errors -EXPORT_SYMBOL_GPL vmlinux 0x9da2809e thermal_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0x9dad6cc6 xhci_update_hub_device -EXPORT_SYMBOL_GPL vmlinux 0x9dc1695a rio_get_comptag -EXPORT_SYMBOL_GPL vmlinux 0x9dce2048 devm_phy_put -EXPORT_SYMBOL_GPL vmlinux 0x9dcf293b iommu_fwspec_add_ids -EXPORT_SYMBOL_GPL vmlinux 0x9dd1744f dm_bio_get_target_bio_nr -EXPORT_SYMBOL_GPL vmlinux 0x9de35353 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x9da2bfbc kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x9dad5026 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x9dc68e83 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x9dc7de49 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9dc950ff mtk_pinconf_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0x9dec9573 power_supply_external_power_changed -EXPORT_SYMBOL_GPL vmlinux 0x9e005ee1 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x9e01b36c led_sysfs_enable -EXPORT_SYMBOL_GPL vmlinux 0x9e088ec9 bio_iov_iter_get_pages -EXPORT_SYMBOL_GPL vmlinux 0x9e10cf9f virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x9e16e569 devlink_free -EXPORT_SYMBOL_GPL vmlinux 0x9e1789e6 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x9df0de30 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x9df62a50 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x9e02b8b4 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x9e043b85 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x9e19310d blk_rq_is_poll +EXPORT_SYMBOL_GPL vmlinux 0x9e1f5b0f dma_alloc_noncontiguous EXPORT_SYMBOL_GPL vmlinux 0x9e229c49 sg_alloc_table_chained -EXPORT_SYMBOL_GPL vmlinux 0x9e3f4547 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x9e255093 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9e2b1a20 mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x9e2f1abc clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x9e36a38f devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x9e461a64 ata_link_abort EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x9e49877e phy_set_speed -EXPORT_SYMBOL_GPL vmlinux 0x9e50eeaf dev_coredumpm EXPORT_SYMBOL_GPL vmlinux 0x9e52f37e vcap_rule_mod_action_u32 -EXPORT_SYMBOL_GPL vmlinux 0x9e607124 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x9e70c91c ata_sas_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x9e7c69fd crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x9e81b357 usb_register_driver -EXPORT_SYMBOL_GPL vmlinux 0x9e877f6e thermal_remove_hwmon_sysfs -EXPORT_SYMBOL_GPL vmlinux 0x9e8f9682 dpbp_get_attributes -EXPORT_SYMBOL_GPL vmlinux 0x9e903433 __fat_fs_error -EXPORT_SYMBOL_GPL vmlinux 0x9e97706e __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x9e68a75b mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x9e6ccc6e vcap_lookup_rule_by_cookie +EXPORT_SYMBOL_GPL vmlinux 0x9e873387 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x9e8915d2 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x9e955ccd ext_pi_type3_crc64 EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc -EXPORT_SYMBOL_GPL vmlinux 0x9eb1286e regulator_set_active_discharge_regmap -EXPORT_SYMBOL_GPL vmlinux 0x9ebade3d __dev_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x9ebc80c8 devm_hwspin_lock_free -EXPORT_SYMBOL_GPL vmlinux 0x9eccd642 devm_mtk_clk_mux_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x9ecec7cb dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9ea13bf3 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x9ea77fc9 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x9eb60475 i2c_client_type EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier -EXPORT_SYMBOL_GPL vmlinux 0x9eda4184 of_alias_get_id -EXPORT_SYMBOL_GPL vmlinux 0x9edb8bf2 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9ee3aa55 regulator_register_supply_alias EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new -EXPORT_SYMBOL_GPL vmlinux 0x9ef5685e crypto_sig_sign -EXPORT_SYMBOL_GPL vmlinux 0x9f03741e component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x9f04828b skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x9eee8ac5 clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0x9f021250 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0x9f08c714 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x9f09b5e4 iommu_set_fault_handler -EXPORT_SYMBOL_GPL vmlinux 0x9f0d7195 encrypt_blob -EXPORT_SYMBOL_GPL vmlinux 0x9f160f16 tty_ldisc_receive_buf -EXPORT_SYMBOL_GPL vmlinux 0x9f1e365b of_platform_populate -EXPORT_SYMBOL_GPL vmlinux 0x9f205b60 fuse_sync_release -EXPORT_SYMBOL_GPL vmlinux 0x9f326315 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x9f440a52 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x9f4d999d rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x9f0af7de devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x9f0b3b2a sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x9f165b8f rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x9f386432 blk_steal_bios EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f57bd62 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x9f5c68d4 zone_device_page_init EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check -EXPORT_SYMBOL_GPL vmlinux 0x9f604e86 devm_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0x9f6a0996 ethnl_cable_test_free -EXPORT_SYMBOL_GPL vmlinux 0x9f6c65a5 ata_eh_read_sense_success_ncq_log -EXPORT_SYMBOL_GPL vmlinux 0x9f6db2e5 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x9f74ed9a sched_set_fifo_low -EXPORT_SYMBOL_GPL vmlinux 0x9f7e1f9d vcap_chain_offset -EXPORT_SYMBOL_GPL vmlinux 0x9f99abc9 dm_noflush_suspending -EXPORT_SYMBOL_GPL vmlinux 0x9f9a93b3 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x9f66c347 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x9f6fbfc3 devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x9f782ae4 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9f87d0a4 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x9f88f79d usb_hcd_unlink_urb_from_ep EXPORT_SYMBOL_GPL vmlinux 0x9fa4564a timer_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x9fb859d0 __clk_mux_determine_rate_closest EXPORT_SYMBOL_GPL vmlinux 0x9fb996a7 __tracepoint_attach_device_to_domain EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x9fd02175 dw_pcie_ep_init -EXPORT_SYMBOL_GPL vmlinux 0x9fd65a74 fwnode_graph_get_endpoint_count -EXPORT_SYMBOL_GPL vmlinux 0x9fd664cd mtk_clk_unregister_factors EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface -EXPORT_SYMBOL_GPL vmlinux 0x9fe59627 __account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0x9fe7f6b4 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x9fe6d4f8 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x9fe87cb8 ata_port_freeze EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x9fec288d simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x9ff32c8e dprc_get_obj_region -EXPORT_SYMBOL_GPL vmlinux 0xa010eb9a ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x9ff4143b dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xa0167bba generic_handle_domain_irq EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc -EXPORT_SYMBOL_GPL vmlinux 0xa026477a bgmac_phy_connect_direct -EXPORT_SYMBOL_GPL vmlinux 0xa03b7c74 devfreq_get_devfreq_by_node -EXPORT_SYMBOL_GPL vmlinux 0xa03d2b3a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa0281ecd usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xa02db456 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xa0339008 serial8250_tx_chars EXPORT_SYMBOL_GPL vmlinux 0xa041a619 nf_conn_btf_access_lock -EXPORT_SYMBOL_GPL vmlinux 0xa04c9a16 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xa0432dcd sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xa0440652 gnttab_page_cache_init EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xa05332f8 of_mpc8xxx_spi_probe -EXPORT_SYMBOL_GPL vmlinux 0xa05779d0 gpiod_direction_input -EXPORT_SYMBOL_GPL vmlinux 0xa06295ea blk_req_needs_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xa06ef93f pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xa06f504a __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa04fedbb irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa0582889 blk_mq_unquiesce_tagset +EXPORT_SYMBOL_GPL vmlinux 0xa065f67a iommu_attach_device_pasid +EXPORT_SYMBOL_GPL vmlinux 0xa0664da3 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa06b8222 rio_mport_chk_dev_access EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa072434d crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xa07e94a0 dev_pm_opp_init_cpufreq_table EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0xa08150b1 fwnode_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0xa098e79f power_supply_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa0a097de vcpu_put -EXPORT_SYMBOL_GPL vmlinux 0xa0a238fc devm_extcon_dev_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa0a4efe6 iommu_sva_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xa0a9f228 blk_mq_debugfs_rq_show -EXPORT_SYMBOL_GPL vmlinux 0xa0aa541a blkg_conf_prep -EXPORT_SYMBOL_GPL vmlinux 0xa0af0f73 __synth_event_gen_cmd_start -EXPORT_SYMBOL_GPL vmlinux 0xa0b16052 rio_release_inb_dbell -EXPORT_SYMBOL_GPL vmlinux 0xa0b554c7 fat_dir_empty -EXPORT_SYMBOL_GPL vmlinux 0xa0b61f74 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xa0813df2 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa08e0e3f pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xa096c08a pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa09905a7 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xa0b8e26a tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xa0bf2d11 dma_async_device_channel_register EXPORT_SYMBOL_GPL vmlinux 0xa0c4cf2b rpi_firmware_clk_get_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xa0d2b0f4 kernfs_notify EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages -EXPORT_SYMBOL_GPL vmlinux 0xa0f4898d usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xa0d3ccf6 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa0d45bd4 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xa0d556f6 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xa0d649e3 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa0e045d5 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xa0e897bf spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xa0fac468 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xa1078d5b gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xa1093b8e ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xa10cca00 skb_copy_ubufs EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type -EXPORT_SYMBOL_GPL vmlinux 0xa11f28bf folio_test_hugetlb -EXPORT_SYMBOL_GPL vmlinux 0xa1337d09 __traceiter_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xa13d4df1 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0xa13f07d6 dma_get_merge_boundary -EXPORT_SYMBOL_GPL vmlinux 0xa14207fa __devm_clk_hw_register_gate -EXPORT_SYMBOL_GPL vmlinux 0xa14cd787 kvm_vcpu_gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xa1522a44 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa11a9165 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xa1289457 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xa133a146 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xa1395002 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa13db32f kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa13fdf50 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xa1560042 devm_namespace_enable EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end -EXPORT_SYMBOL_GPL vmlinux 0xa1623133 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xa15df26e devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa15ed99e mf_dax_kill_procs +EXPORT_SYMBOL_GPL vmlinux 0xa1610fd8 timer_unstable_counter_workaround EXPORT_SYMBOL_GPL vmlinux 0xa16449b4 phylink_ethtool_ksettings_set -EXPORT_SYMBOL_GPL vmlinux 0xa16c2643 dev_pm_opp_get_power -EXPORT_SYMBOL_GPL vmlinux 0xa16d552a pci_epc_mem_alloc_addr -EXPORT_SYMBOL_GPL vmlinux 0xa180ef48 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa1810745 vchan_init -EXPORT_SYMBOL_GPL vmlinux 0xa184a65e dev_pm_genpd_set_next_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xa1875ebf fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xa164b9fc mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa16c21b9 genphy_c45_plca_get_status +EXPORT_SYMBOL_GPL vmlinux 0xa17b1a67 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa17d10cd meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xa18b6f60 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xa18e24c1 rio_set_port_lockout EXPORT_SYMBOL_GPL vmlinux 0xa19561fb __SCK__tp_func_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa1a8f077 devm_of_icc_get -EXPORT_SYMBOL_GPL vmlinux 0xa1aed364 devlink_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa1b3c4c8 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0xa1bdfccd tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa1a23daf pci_ecam_create EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty -EXPORT_SYMBOL_GPL vmlinux 0xa1c517fd edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa1cae255 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xa1d4d174 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xa1d4f47a rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing -EXPORT_SYMBOL_GPL vmlinux 0xa1fe9d95 nvmem_layout_get_match_data -EXPORT_SYMBOL_GPL vmlinux 0xa200637f clk_hw_forward_rate_request -EXPORT_SYMBOL_GPL vmlinux 0xa2012c6b iommu_sva_get_pasid -EXPORT_SYMBOL_GPL vmlinux 0xa2012f19 vp_modern_set_features -EXPORT_SYMBOL_GPL vmlinux 0xa20323ce raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xa200ba48 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa205df19 irq_chip_enable_parent EXPORT_SYMBOL_GPL vmlinux 0xa208b5a7 pm_debug_messages_should_print -EXPORT_SYMBOL_GPL vmlinux 0xa20c65d3 generic_access_phys EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk -EXPORT_SYMBOL_GPL vmlinux 0xa20f1d62 i2c_generic_scl_recovery -EXPORT_SYMBOL_GPL vmlinux 0xa20f38a2 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xa20f3f75 __traceiter_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xa2139704 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xa21d547a crypto_akcipher_sync_prep EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val -EXPORT_SYMBOL_GPL vmlinux 0xa22b804d rtc_read_time EXPORT_SYMBOL_GPL vmlinux 0xa2402218 __traceiter_xhci_dbg_init -EXPORT_SYMBOL_GPL vmlinux 0xa248856d fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xa2453c68 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa24b6b5e lp8788_read_byte EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xa2587a94 gpiod_export_link -EXPORT_SYMBOL_GPL vmlinux 0xa2601e1a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa2537780 thp_get_unmapped_area EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0xa27af20f inode_dax -EXPORT_SYMBOL_GPL vmlinux 0xa28b2f5c clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa28a35eb devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xa28affda xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa290b503 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa293d091 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xa2955b32 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa2ae15ff pci_find_next_capability EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b987b4 devm_regulator_unregister_notifier EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0xa2bcd090 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa2c08e78 tty_buffer_lock_exclusive EXPORT_SYMBOL_GPL vmlinux 0xa2c0f59a ct_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0xa2cf3b4c tpm_is_tpm2 -EXPORT_SYMBOL_GPL vmlinux 0xa2d1060e dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xa2c7df18 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xa2d32408 __ip6_datagram_connect EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers -EXPORT_SYMBOL_GPL vmlinux 0xa2e4e32a mtk_eint_find_irq -EXPORT_SYMBOL_GPL vmlinux 0xa2eb3c95 iommu_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa2f4857b ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xa2ef5c6c thermal_zone_device_priv EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported -EXPORT_SYMBOL_GPL vmlinux 0xa2faab30 xhci_drop_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xa31d2498 usb_create_hcd -EXPORT_SYMBOL_GPL vmlinux 0xa330eb52 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0xa33a0c13 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0xa34033e7 usb_of_get_companion_dev -EXPORT_SYMBOL_GPL vmlinux 0xa349627d devm_hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa34f6fec gpiochip_relres_irq -EXPORT_SYMBOL_GPL vmlinux 0xa35abead add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xa2f96cec __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa30b1a9c usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0xa30e2186 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xa312de07 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xa318dbbe ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xa3280a41 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa32995e3 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xa338ca70 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa33b39a3 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xa33c3d8c usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa33dbf14 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa33f64e0 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xa35c7af0 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xa36439e8 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xa36e3c8a vcap_tc_flower_handler_vlan_usage EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xa37404a2 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0xa376b86e clk_hw_get_name -EXPORT_SYMBOL_GPL vmlinux 0xa379db2b tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xa377bcd0 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xa37d047e dev_pm_opp_get_suspend_opp_freq EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0xa39672d7 ahci_platform_enable_resources -EXPORT_SYMBOL_GPL vmlinux 0xa39efde0 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xa39359d4 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa39f0c6f iommu_group_remove_device EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 EXPORT_SYMBOL_GPL vmlinux 0xa3a36c73 cppc_set_perf -EXPORT_SYMBOL_GPL vmlinux 0xa3a81c4a of_irq_parse_raw -EXPORT_SYMBOL_GPL vmlinux 0xa3ab2092 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xa3abb802 phy_pm_runtime_allow EXPORT_SYMBOL_GPL vmlinux 0xa3ac48a7 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa3b3cf17 crypto_skcipher_encrypt EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector -EXPORT_SYMBOL_GPL vmlinux 0xa3bd6c9b virtio_device_freeze -EXPORT_SYMBOL_GPL vmlinux 0xa3ca8abb led_trigger_register_simple EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load -EXPORT_SYMBOL_GPL vmlinux 0xa3dedc1d pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xa3e6142c fsl_mc_object_allocate EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f5f2c9 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xa3fabb7a regulator_set_mode EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port EXPORT_SYMBOL_GPL vmlinux 0xa4062a57 __tracepoint_devlink_hwmsg EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa414ad9d scsi_internal_device_unblock_nowait -EXPORT_SYMBOL_GPL vmlinux 0xa419026a fuse_conn_get -EXPORT_SYMBOL_GPL vmlinux 0xa4320a12 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0xa434b902 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xa42c6cb7 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0xa4324e8f watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xa433d3c9 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa43a3dcf call_hid_bpf_rdesc_fixup +EXPORT_SYMBOL_GPL vmlinux 0xa441f57b crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa449c503 pci_check_and_unmask_intx EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xa44ef78a fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xa44f440a pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa4507ae6 fat_detach EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xa46059c1 wakeup_source_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa476ce99 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4732d92 bpf_trace_run8 EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx -EXPORT_SYMBOL_GPL vmlinux 0xa48a918e wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0xa49215fa tps6586x_reads -EXPORT_SYMBOL_GPL vmlinux 0xa4a7365b pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xa483c90a led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xa48daca3 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa493ebb7 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xa4a983ea of_pci_get_max_link_speed EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xa4b78268 ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa4b47f1e mtk_pinconf_bias_get EXPORT_SYMBOL_GPL vmlinux 0xa4bf2e41 cppc_set_epp_perf EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis -EXPORT_SYMBOL_GPL vmlinux 0xa4c49a4a regulator_is_enabled_regmap -EXPORT_SYMBOL_GPL vmlinux 0xa4d1af0c bpf_prog_get_type_dev -EXPORT_SYMBOL_GPL vmlinux 0xa4d80d0b usb_remove_phy -EXPORT_SYMBOL_GPL vmlinux 0xa4df7f3f lynx_pcs_create_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xa4ee7968 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xa4caf127 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa4dd1ab1 iomap_file_buffered_write_punch_delalloc +EXPORT_SYMBOL_GPL vmlinux 0xa4dd3656 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xa4e0bfaa get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xa4e5302c input_class EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xa4f2b681 devlink_port_type_ib_set -EXPORT_SYMBOL_GPL vmlinux 0xa515503c task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xa4fd383e usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xa5127dc8 pci_check_and_mask_intx EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xa5182678 ahci_platform_disable_clks -EXPORT_SYMBOL_GPL vmlinux 0xa52501a9 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xa520165c ipv6_dup_options EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context -EXPORT_SYMBOL_GPL vmlinux 0xa531eb82 fsverity_verify_blocks +EXPORT_SYMBOL_GPL vmlinux 0xa53df74e acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa53f8f10 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xa5402e16 tcp_plb_check_rehash EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear -EXPORT_SYMBOL_GPL vmlinux 0xa55051a9 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0xa56b323d usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa5571f16 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xa557c10a hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xa55f8d43 kthread_func EXPORT_SYMBOL_GPL vmlinux 0xa56e1a52 sg_free_table_chained -EXPORT_SYMBOL_GPL vmlinux 0xa5759d2a devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xa573fb61 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xa5747154 ata_dummy_port_ops EXPORT_SYMBOL_GPL vmlinux 0xa57a3a89 mas_empty_area_rev -EXPORT_SYMBOL_GPL vmlinux 0xa5a0b868 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0xa5a7ddd0 ata_host_register -EXPORT_SYMBOL_GPL vmlinux 0xa5a970a4 __fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0xa5b5f9fb fib6_get_table -EXPORT_SYMBOL_GPL vmlinux 0xa5baa71b gpiochip_irq_map -EXPORT_SYMBOL_GPL vmlinux 0xa5bd4362 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xa58b06ef icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xa59ee9ba devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa5a38292 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xa5a6a253 mtk_pinconf_bias_disable_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name -EXPORT_SYMBOL_GPL vmlinux 0xa5de80f9 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0xa5e89006 scmi_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa5e35b21 xfrm_audit_state_replay_overflow EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0xa5fe91dd device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0xa609bbe1 _copy_from_iter_flushcache -EXPORT_SYMBOL_GPL vmlinux 0xa6135e5a edac_device_free_ctl_info -EXPORT_SYMBOL_GPL vmlinux 0xa6214293 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xa622114f ehci_reset -EXPORT_SYMBOL_GPL vmlinux 0xa62ebfb6 devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5f13f11 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xa5fa5da7 __traceiter_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xa60bfdc3 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa60dd9b5 pci_p2pdma_add_resource +EXPORT_SYMBOL_GPL vmlinux 0xa620fc5d bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xa63b8922 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xa63bbd68 meson_clk_dualdiv_ro_ops EXPORT_SYMBOL_GPL vmlinux 0xa6445323 ftrace_free_filter -EXPORT_SYMBOL_GPL vmlinux 0xa65b14d6 kthread_use_mm -EXPORT_SYMBOL_GPL vmlinux 0xa6690d87 of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xa67e4905 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0xa6911368 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0xa6912e8b platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa6981640 iommu_set_pgtable_quirks -EXPORT_SYMBOL_GPL vmlinux 0xa69985d1 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0xa69a4178 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xa64de130 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xa671b01c iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0xa67df3d3 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xa68cb976 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa694cb8a usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa69f8b53 led_get +EXPORT_SYMBOL_GPL vmlinux 0xa69ff386 serdev_device_set_tiocm EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name EXPORT_SYMBOL_GPL vmlinux 0xa6a7925c mas_walk EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xa6af1e88 iommu_device_link EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xa6b134b5 pm_genpd_remove EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split -EXPORT_SYMBOL_GPL vmlinux 0xa6bd57d1 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0xa6d091b4 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0xa6d1547a device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xa6c3d9d8 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xa6d2bdbe fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xa6d7df1a acpi_dev_state_d0 EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0xa6f044e5 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0xa6f46195 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6e4cffb xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xa6ef6b0c devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xa6f081e4 shake_page EXPORT_SYMBOL_GPL vmlinux 0xa708ca58 mas_store_prealloc EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu -EXPORT_SYMBOL_GPL vmlinux 0xa711cadc iommu_dev_disable_feature -EXPORT_SYMBOL_GPL vmlinux 0xa718384b of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa7114654 gnttab_alloc_pages EXPORT_SYMBOL_GPL vmlinux 0xa7241959 pkcs7_supply_detached_data -EXPORT_SYMBOL_GPL vmlinux 0xa727b37d serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0xa72b1c82 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0xa72be63d pci_epc_get_features -EXPORT_SYMBOL_GPL vmlinux 0xa72cffbc ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7264554 priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0xa7297926 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xa72c2c37 serial8250_modem_status EXPORT_SYMBOL_GPL vmlinux 0xa72dd105 pci_bridge_emul_conf_write -EXPORT_SYMBOL_GPL vmlinux 0xa7300d5b mbox_chan_received_data EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0xa73d4b16 __blk_req_zone_write_lock -EXPORT_SYMBOL_GPL vmlinux 0xa74490bc genphy_c45_loopback -EXPORT_SYMBOL_GPL vmlinux 0xa7542821 rcu_trc_cmpxchg_need_qs -EXPORT_SYMBOL_GPL vmlinux 0xa7552fd7 gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xa756c12d of_detach_node -EXPORT_SYMBOL_GPL vmlinux 0xa757de9d devlink_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xa7588964 cpci_hp_unregister_bus -EXPORT_SYMBOL_GPL vmlinux 0xa766aa3d gnttab_page_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xa770f671 ata_ehi_push_desc -EXPORT_SYMBOL_GPL vmlinux 0xa7776eef ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xa75a8d3f regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa77437f1 syscon_regmap_lookup_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault EXPORT_SYMBOL_GPL vmlinux 0xa790ab4b __tracepoint_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xa7c06837 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xa7935d57 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xa7a66a6f regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xa7bee375 shash_register_instance EXPORT_SYMBOL_GPL vmlinux 0xa7c68231 __tracepoint_remove_device_from_group -EXPORT_SYMBOL_GPL vmlinux 0xa7e0a506 regulator_is_equal -EXPORT_SYMBOL_GPL vmlinux 0xa805190d sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xa7dc932c serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xa7e509bb crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xa7f0ad78 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa7f27271 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xa806c844 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa809b966 regcache_mark_dirty EXPORT_SYMBOL_GPL vmlinux 0xa81485e6 __traceiter_ipi_send_cpu -EXPORT_SYMBOL_GPL vmlinux 0xa826c694 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0xa83137c0 hte_ts_get -EXPORT_SYMBOL_GPL vmlinux 0xa8358987 pci_iov_virtfn_devfn -EXPORT_SYMBOL_GPL vmlinux 0xa83e4d2e xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0xa83ff6c6 acpi_dev_pm_attach -EXPORT_SYMBOL_GPL vmlinux 0xa8476f9e clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xa8155557 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xa82f1b8a acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xa8323e8f blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xa84ecdc4 tty_kopen_exclusive EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xa867f2d2 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0xa874d325 usb_deregister_dev -EXPORT_SYMBOL_GPL vmlinux 0xa87a4c34 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xa86db35a platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa8753813 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xa8768cd4 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa880b2a1 dm_device_name EXPORT_SYMBOL_GPL vmlinux 0xa8841cc6 mas_next +EXPORT_SYMBOL_GPL vmlinux 0xa890c2bb gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key -EXPORT_SYMBOL_GPL vmlinux 0xa8a2b0f8 dax_remove_host -EXPORT_SYMBOL_GPL vmlinux 0xa8a3150c devl_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8a51cda xdp_do_redirect_frame EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark -EXPORT_SYMBOL_GPL vmlinux 0xa8aa273e trace_array_destroy -EXPORT_SYMBOL_GPL vmlinux 0xa8b3bc3d devm_device_add_group -EXPORT_SYMBOL_GPL vmlinux 0xa8b5344b of_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xa8b78ed9 nvmem_device_cell_write -EXPORT_SYMBOL_GPL vmlinux 0xa8ba37d1 get_user_pages_fast_only -EXPORT_SYMBOL_GPL vmlinux 0xa8e649ed genphy_c45_an_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa8f23936 pm_clk_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0xa8f4589b iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xa8c4cd67 dispatch_hid_bpf_device_event +EXPORT_SYMBOL_GPL vmlinux 0xa8cc6bac switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xa8ce0765 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa8d5cce1 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xa8e12740 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xa8ed6dad mptcp_pm_get_add_addr_accept_max EXPORT_SYMBOL_GPL vmlinux 0xa8f97178 __tracepoint_ata_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xa907a208 mmc_pwrseq_register -EXPORT_SYMBOL_GPL vmlinux 0xa90a5577 mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xa90e72b4 sk_msg_clone -EXPORT_SYMBOL_GPL vmlinux 0xa925adc5 __traceiter_br_fdb_external_learn_add -EXPORT_SYMBOL_GPL vmlinux 0xa92c981e xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xa901c604 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xa9130ca8 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xa913d701 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa917421b pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa92c1092 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xa930804d extcon_unregister_notifier_all EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0xa95952dc scmi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xa95a5305 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xa948edc2 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0xa95197bb kvm_get_kvm EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name -EXPORT_SYMBOL_GPL vmlinux 0xa95c7a94 serial8250_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xa96874e0 clk_hw_register EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler -EXPORT_SYMBOL_GPL vmlinux 0xa9752624 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0xa98c741a thermal_zone_device_id -EXPORT_SYMBOL_GPL vmlinux 0xa98d9afa edac_pci_del_device -EXPORT_SYMBOL_GPL vmlinux 0xa9905ee0 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xa97de12f pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xa980245c lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xa9802a45 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xa98a4ce4 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xa98fa87c device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xa992ec4a inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa999b389 regulator_enable EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xa9a16f7c n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0xa9ace7f5 thermal_zone_device_update -EXPORT_SYMBOL_GPL vmlinux 0xa9e047aa watchdog_init_timeout -EXPORT_SYMBOL_GPL vmlinux 0xa9f34f4d genphy_c45_config_aneg -EXPORT_SYMBOL_GPL vmlinux 0xa9f4423e pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0xaa2f159d irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0xaa370ae6 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa9db0cec fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xa9e0e5cd devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xa9eb1a39 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa9f94200 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xa9faf7b1 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xa9fe4698 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xaa061407 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xaa20317e __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaa2be2a4 mtk_pinconf_adv_drive_get_raw EXPORT_SYMBOL_GPL vmlinux 0xaa393cc6 mas_preallocate -EXPORT_SYMBOL_GPL vmlinux 0xaa3a5cab dev_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0xaa44b88a ata_sff_check_status -EXPORT_SYMBOL_GPL vmlinux 0xaa50e1a4 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xaa5c3bce kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xaa3f14a7 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xaa3f7594 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xaa426dc2 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xaa43538e hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xaa4ee6ea pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xaa51ac0c xhci_find_slot_id_by_port +EXPORT_SYMBOL_GPL vmlinux 0xaa607360 fsnotify_add_mark EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush -EXPORT_SYMBOL_GPL vmlinux 0xaa8bbbb5 dev_err_probe -EXPORT_SYMBOL_GPL vmlinux 0xaa8f7c1c pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0xaa921f65 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xaa93013f dst_cache_get_ip6 -EXPORT_SYMBOL_GPL vmlinux 0xaa97f026 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xaa7041f7 devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa7b8103 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xaa7bd9cf ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xaa7bf9bd serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xaa871f67 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xaaa6ab05 iommu_get_domain_for_dev EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump -EXPORT_SYMBOL_GPL vmlinux 0xaaa9f2a5 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0xaaaa1ade edac_mc_handle_error -EXPORT_SYMBOL_GPL vmlinux 0xaab0dfb7 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xaaae3897 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xaab02796 skb_mpls_dec_ttl EXPORT_SYMBOL_GPL vmlinux 0xaab9c421 clk_multiplier_ops EXPORT_SYMBOL_GPL vmlinux 0xaaba7cf1 __tracepoint_powernv_throttle -EXPORT_SYMBOL_GPL vmlinux 0xaac5a148 debugfs_lookup -EXPORT_SYMBOL_GPL vmlinux 0xaac6866d rio_route_add_entry -EXPORT_SYMBOL_GPL vmlinux 0xaae73424 of_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0xaaf0806b gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xaad27ab9 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xaad7894a mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaadf1658 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xaae19c42 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xaaf2865b irq_domain_xlate_onecell EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xaafe7a0e dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xab000eee __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xab010181 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xab03a293 devm_request_pci_bus_resources EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data -EXPORT_SYMBOL_GPL vmlinux 0xab07752f mmc_regulator_disable_vqmmc -EXPORT_SYMBOL_GPL vmlinux 0xab0e0ccf ata_std_bios_param -EXPORT_SYMBOL_GPL vmlinux 0xab196cd8 of_dma_is_coherent -EXPORT_SYMBOL_GPL vmlinux 0xab1d3a7d acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xab0aa9cc dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xab1a51c0 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xab1c8b95 pci_msix_free_irq EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler -EXPORT_SYMBOL_GPL vmlinux 0xab26e62f ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0xab3d5c46 rdev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xab43bc67 cdx_unregister_controller -EXPORT_SYMBOL_GPL vmlinux 0xab4c478e aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0xab4ccc54 fsl_mc_bus_dprc_type -EXPORT_SYMBOL_GPL vmlinux 0xab4f4531 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0xab51ebb3 mmc_cmdq_disable -EXPORT_SYMBOL_GPL vmlinux 0xab5de6d7 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0xab5f8a39 crypto_unregister_ahashes -EXPORT_SYMBOL_GPL vmlinux 0xab63a54f hisi_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xab657d29 gpiod_get_value -EXPORT_SYMBOL_GPL vmlinux 0xab6c3a76 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xab2a29b6 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xab381aff pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xab410d37 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xab4180a6 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xab465cda of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xab62bba9 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xab696eb8 devm_hwmon_device_unregister EXPORT_SYMBOL_GPL vmlinux 0xab6f0ded __tracepoint_rpm_idle -EXPORT_SYMBOL_GPL vmlinux 0xab82eb67 uprobe_register_refctr -EXPORT_SYMBOL_GPL vmlinux 0xab8e3534 pci_free_p2pmem -EXPORT_SYMBOL_GPL vmlinux 0xab9f3cb4 fsverity_ioctl_enable -EXPORT_SYMBOL_GPL vmlinux 0xaba0c066 kvm_vcpu_gfn_to_pfn_atomic -EXPORT_SYMBOL_GPL vmlinux 0xabaaa654 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0xabbd87c3 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xab72e4e5 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xab7cf7ad sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xab7fee2a housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xab877cbe __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xab8b7631 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xab996dcd gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xab99b89e virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xabb8a900 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xabbe1643 vp_legacy_get_features EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate EXPORT_SYMBOL_GPL vmlinux 0xabc6e9e4 pm_report_max_hw_sleep -EXPORT_SYMBOL_GPL vmlinux 0xabd25edd regulator_unregister -EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0xabeeb6e0 dev_attr_em_message -EXPORT_SYMBOL_GPL vmlinux 0xabfd12c7 pci_epc_set_msix -EXPORT_SYMBOL_GPL vmlinux 0xabfec707 tpm_get_random -EXPORT_SYMBOL_GPL vmlinux 0xac02a35b __audit_inode_child -EXPORT_SYMBOL_GPL vmlinux 0xac06ae24 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0xac07f5a3 __traceiter_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xac109546 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0xac1495e1 kthread_cancel_delayed_work_sync -EXPORT_SYMBOL_GPL vmlinux 0xac1d36ba genphy_c45_read_status -EXPORT_SYMBOL_GPL vmlinux 0xac34f7cb usb_register_device_driver -EXPORT_SYMBOL_GPL vmlinux 0xac35570d mtk_clk_gate_ops_no_setclr -EXPORT_SYMBOL_GPL vmlinux 0xac3a1870 irq_gc_mask_disable_reg -EXPORT_SYMBOL_GPL vmlinux 0xac5dcf80 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0xac714c6f irq_chip_request_resources_parent -EXPORT_SYMBOL_GPL vmlinux 0xac8f8e5b scsi_register_device_handler -EXPORT_SYMBOL_GPL vmlinux 0xac97fac6 serial8250_read_char -EXPORT_SYMBOL_GPL vmlinux 0xac990463 dma_pci_p2pdma_supported -EXPORT_SYMBOL_GPL vmlinux 0xac9cc429 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xabcbf1e4 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xabe07043 vfs_splice_read +EXPORT_SYMBOL_GPL vmlinux 0xabeb2bea xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xabf665d7 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xabfc4be0 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xac2d3d1a sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xac38b235 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xac5922d6 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xac5d63e3 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xac5e7a72 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0xac640016 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xac6c9af8 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xac760074 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xac76e46e ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xac77de51 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xac787d91 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xac7a729a ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xac8db784 phy_resolve_aneg_linkmode EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put -EXPORT_SYMBOL_GPL vmlinux 0xacb9caa1 mpc8xxx_spi_tx_buf_u16 -EXPORT_SYMBOL_GPL vmlinux 0xacbc06b7 __traceiter_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xacc6c670 timer_unstable_counter_workaround -EXPORT_SYMBOL_GPL vmlinux 0xacc800fc free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xacbb25b0 clk_register_composite EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0xaccb31fa serial8250_do_set_divisor -EXPORT_SYMBOL_GPL vmlinux 0xacdd9191 crypto_register_templates -EXPORT_SYMBOL_GPL vmlinux 0xacdf5411 dma_release_channel -EXPORT_SYMBOL_GPL vmlinux 0xacebb5d4 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0xacecec34 power_supply_get_property_from_supplier -EXPORT_SYMBOL_GPL vmlinux 0xad02069a ata_acpi_gtm_xfermask -EXPORT_SYMBOL_GPL vmlinux 0xad04629b crypto_register_kpp -EXPORT_SYMBOL_GPL vmlinux 0xad0b0726 dpcon_disable -EXPORT_SYMBOL_GPL vmlinux 0xad235356 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xace0c86a pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xace95d31 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xace9682b fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0xacea3da3 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xacf11172 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xacf4c6d6 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xacfc3159 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xad030fa8 net_failover_create +EXPORT_SYMBOL_GPL vmlinux 0xad0397de led_blink_set_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xad064b2f inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xad277ece vcap_tc_flower_handler_ip_usage +EXPORT_SYMBOL_GPL vmlinux 0xad37c862 ping_get_port EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad39b130 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xad39d14b irq_gc_mask_clr_bit EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum -EXPORT_SYMBOL_GPL vmlinux 0xad4764e6 mtk_eint_do_resume -EXPORT_SYMBOL_GPL vmlinux 0xad4d6ca4 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xad43d614 acpi_device_fix_up_power_extended EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu -EXPORT_SYMBOL_GPL vmlinux 0xad53ebc4 cpufreq_policy_transition_delay_us -EXPORT_SYMBOL_GPL vmlinux 0xad54145d fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xad541848 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xad584d22 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xad59c774 __devm_rtc_register_device EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xad6e8e9b of_fdt_unflatten_tree -EXPORT_SYMBOL_GPL vmlinux 0xad6f8531 of_clk_src_onecell_get -EXPORT_SYMBOL_GPL vmlinux 0xad7005de regulator_map_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xad72b00e iov_iter_extract_pages EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done -EXPORT_SYMBOL_GPL vmlinux 0xad8276e5 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xad7ea999 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xad815cac __devm_regmap_init EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict -EXPORT_SYMBOL_GPL vmlinux 0xad87b368 relay_switch_subbuf -EXPORT_SYMBOL_GPL vmlinux 0xad9b5866 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xad926292 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xad950a35 devl_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xad9abd73 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xad9d249b usb_add_phy_dev EXPORT_SYMBOL_GPL vmlinux 0xad9fb247 lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0xada02d58 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xada1005d sk_psock_msg_verdict EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy -EXPORT_SYMBOL_GPL vmlinux 0xadbba7aa pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0xadc351e2 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xadb776eb blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xadb9f34b crypto_akcipher_sync_post +EXPORT_SYMBOL_GPL vmlinux 0xadc06e1a rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xade12b3c scsi_nl_sock EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info -EXPORT_SYMBOL_GPL vmlinux 0xade5df1b ahci_platform_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xadeffef4 scsi_autopm_get_device -EXPORT_SYMBOL_GPL vmlinux 0xadf291dd crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xadf5f513 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xadfd5fbd vfs_setxattr EXPORT_SYMBOL_GPL vmlinux 0xae01217a mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0xae04b1e4 ata_sff_lost_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xae0ce46f kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL vmlinux 0xae039fa6 of_k3_ringacc_get_by_phandle EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock -EXPORT_SYMBOL_GPL vmlinux 0xae1049d4 acct_bioset_init EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xae1304a4 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xae11ad41 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0xae12d2fd pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xae183854 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xae1a860b sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xae1e9e61 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xae209136 __pci_reset_function_locked EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init -EXPORT_SYMBOL_GPL vmlinux 0xae3d8741 __dax_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xae4cb15c rio_mport_send_doorbell -EXPORT_SYMBOL_GPL vmlinux 0xae64a596 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0xae66224d dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xae58f386 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0xae591779 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xae658b6a sbitmap_bitmap_show EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0xae6b9fa7 __clk_mux_determine_rate -EXPORT_SYMBOL_GPL vmlinux 0xae6bf3e5 fscrypt_context_for_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xae783855 nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0xae821ff8 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0xae9d571b tcp_splice_eof -EXPORT_SYMBOL_GPL vmlinux 0xaea25297 __fscrypt_prepare_setattr -EXPORT_SYMBOL_GPL vmlinux 0xaebf372b devm_regmap_add_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xaedc73ab virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0xaee3e3be iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0xaeeb03f7 kvm_vcpu_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xaeecde18 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae8254da synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xaea48045 mtk_clk_simple_remove +EXPORT_SYMBOL_GPL vmlinux 0xaeab4dac devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaeb2ad7a sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xaeb6f0e4 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xaed0dc2c ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xaedecf81 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaef6c4f0 perf_report_aux_output_id EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init -EXPORT_SYMBOL_GPL vmlinux 0xaf1dfd8e xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xaf0dd42f edac_mc_handle_error EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3702bd devm_regmap_del_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3a7d11 pm_clk_destroy EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check -EXPORT_SYMBOL_GPL vmlinux 0xaf606d5c fscrypt_ioctl_get_nonce -EXPORT_SYMBOL_GPL vmlinux 0xaf64787b dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xaf52f95c crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xaf53397f sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xaf5e16aa folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xaf6c1590 pci_store_saved_state EXPORT_SYMBOL_GPL vmlinux 0xaf6d38c0 vcap_mod_rule +EXPORT_SYMBOL_GPL vmlinux 0xaf71150d rio_mport_class EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0xaf79a0c6 gpiod_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xaf7a9af1 devm_request_free_mem_region EXPORT_SYMBOL_GPL vmlinux 0xaf7ad94c __SCK__tp_func_ipi_send_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xaf7b5dce relay_close EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device -EXPORT_SYMBOL_GPL vmlinux 0xaf8fe9b5 regmap_exit -EXPORT_SYMBOL_GPL vmlinux 0xaf98e517 acpi_dev_ready_for_enumeration -EXPORT_SYMBOL_GPL vmlinux 0xafa71b9a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xaf95a8dd regmap_field_bulk_alloc EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn -EXPORT_SYMBOL_GPL vmlinux 0xafb72781 devm_pwmchip_add -EXPORT_SYMBOL_GPL vmlinux 0xafc43729 make_device_exclusive_range -EXPORT_SYMBOL_GPL vmlinux 0xafc63561 devlink_dpipe_entry_ctx_close -EXPORT_SYMBOL_GPL vmlinux 0xafc912fc of_pwm_single_xlate -EXPORT_SYMBOL_GPL vmlinux 0xafca73c4 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xafbb323e pm_genpd_add_subdomain EXPORT_SYMBOL_GPL vmlinux 0xafcd1cb1 vcap_chain_id_to_lookup -EXPORT_SYMBOL_GPL vmlinux 0xafd74040 mptcp_token_get_sock -EXPORT_SYMBOL_GPL vmlinux 0xafdb42e1 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0xafcfda3e xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xafd55941 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xafd5ece7 regmap_async_complete_cb EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string -EXPORT_SYMBOL_GPL vmlinux 0xafe8677d acpi_debugfs_dir EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault -EXPORT_SYMBOL_GPL vmlinux 0xb0045c4d lwtunnel_encap_del_ops -EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xb00ceba6 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0xb019812c pciserial_init_ports -EXPORT_SYMBOL_GPL vmlinux 0xb028a587 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xaffa8c69 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xaffae42b mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xaffd7f64 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb005deed __traceiter_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb0330f60 pm_wakeup_dev_event -EXPORT_SYMBOL_GPL vmlinux 0xb0373168 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb02f40ee __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xb02f999f dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb0380b70 pci_free_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xb047b5f2 ata_port_schedule_eh EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04ab5c8 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xb04b95ab kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xb0579a68 powercap_register_control_type EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status -EXPORT_SYMBOL_GPL vmlinux 0xb05d76a4 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xb067e334 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xb068499b led_init_core EXPORT_SYMBOL_GPL vmlinux 0xb06ea245 sbitmap_queue_resize EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb076294d pwm_adjust_config EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07fe261 iopf_queue_remove_device EXPORT_SYMBOL_GPL vmlinux 0xb0802f90 __tracepoint_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus -EXPORT_SYMBOL_GPL vmlinux 0xb0919405 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0xb0a17bed nvdimm_region_delete -EXPORT_SYMBOL_GPL vmlinux 0xb0a5cd28 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0xb0af09f1 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xb085b9b1 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb090f4e8 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xb09cd1e7 regmap_read EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset -EXPORT_SYMBOL_GPL vmlinux 0xb0c3074c devm_regulator_bulk_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xb0ca2837 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xb0c43844 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb0cad43b pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xb0cd0d05 device_pm_wait_for_dev EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0db3841 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xb0dcd9dc phy_put EXPORT_SYMBOL_GPL vmlinux 0xb0e7ab1f __traceiter_console EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed -EXPORT_SYMBOL_GPL vmlinux 0xb0f57dca em_pd_get -EXPORT_SYMBOL_GPL vmlinux 0xb0fee43c mctrl_gpio_init_noauto -EXPORT_SYMBOL_GPL vmlinux 0xb1065a4d acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0eea7d7 devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb0f376fd ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0f45c2f of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xb1074e78 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xb10c51a8 crypto_register_template EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xb113ca04 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xb112b2ae genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xb115d36d crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xb1191c9a stmpe_set_bits EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number -EXPORT_SYMBOL_GPL vmlinux 0xb12c4d47 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xb12e9a34 ata_sas_port_resume EXPORT_SYMBOL_GPL vmlinux 0xb13837ce vcap_rule_add_key_u48 -EXPORT_SYMBOL_GPL vmlinux 0xb14ae0c8 ata_eh_analyze_ncq_error -EXPORT_SYMBOL_GPL vmlinux 0xb14c2e8e irqchip_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xb151e891 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xb13e3559 pci_find_dvsec_capability EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put -EXPORT_SYMBOL_GPL vmlinux 0xb1658afa l3mdev_update_flow -EXPORT_SYMBOL_GPL vmlinux 0xb1a116c7 rio_dma_prep_slave_sg -EXPORT_SYMBOL_GPL vmlinux 0xb1a16466 ata_scsi_port_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xb1b05ee9 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xb165b491 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xb1754ff2 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xb18311d6 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xb1944381 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb1964b7f __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xb19809db ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xb199348b pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xb19eaabb blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xb1ac49ca dev_pm_genpd_synced_poweroff EXPORT_SYMBOL_GPL vmlinux 0xb1b3f6ed phylink_mii_c22_pcs_decode_state -EXPORT_SYMBOL_GPL vmlinux 0xb1b81597 net_ns_get_ownership EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start -EXPORT_SYMBOL_GPL vmlinux 0xb1cb0e05 fuse_dev_fiq_ops -EXPORT_SYMBOL_GPL vmlinux 0xb1ddbd9a acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb1c2b8c0 msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0xb1c792b3 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1c83ef5 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb1cb46f1 iomap_release_folio EXPORT_SYMBOL_GPL vmlinux 0xb1dfecea power_supply_battery_info_properties_size EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs -EXPORT_SYMBOL_GPL vmlinux 0xb1f06104 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0xb1f43c27 component_del +EXPORT_SYMBOL_GPL vmlinux 0xb1e9223c platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb1f5e891 get_dev_pagemap EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb2057136 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb219c6a4 ata_sff_qc_fill_rtf EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert -EXPORT_SYMBOL_GPL vmlinux 0xb22320bf spi_mem_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0xb23ac0f1 blk_mq_sched_try_merge EXPORT_SYMBOL_GPL vmlinux 0xb23b7691 start_poll_synchronize_rcu_full -EXPORT_SYMBOL_GPL vmlinux 0xb23f8f19 vp_legacy_queue_vector EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq -EXPORT_SYMBOL_GPL vmlinux 0xb24c2d1b ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xb24c5c22 scmi_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xb256be16 efivar_is_available -EXPORT_SYMBOL_GPL vmlinux 0xb259f176 pci_p2pdma_add_resource -EXPORT_SYMBOL_GPL vmlinux 0xb265f1cc xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xb25b43bb dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xb25df70a devl_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xb2696ecd crypto_grab_shash EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr -EXPORT_SYMBOL_GPL vmlinux 0xb26b7fb9 usb_hcd_link_urb_to_ep -EXPORT_SYMBOL_GPL vmlinux 0xb27a9a5f dev_pm_domain_start -EXPORT_SYMBOL_GPL vmlinux 0xb27fdb65 vp_modern_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xb28314e8 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL vmlinux 0xb2759d93 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2927a28 sysfs_create_bin_file EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc -EXPORT_SYMBOL_GPL vmlinux 0xb29592ff espintcp_push_skb -EXPORT_SYMBOL_GPL vmlinux 0xb2a29b00 devm_regmap_field_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb2a4d49a genphy_c45_fast_retrain -EXPORT_SYMBOL_GPL vmlinux 0xb2a667e5 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xb29cc0b5 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0xb2a263e4 max8997_read_reg EXPORT_SYMBOL_GPL vmlinux 0xb2a6f197 bpf_fentry_test1 -EXPORT_SYMBOL_GPL vmlinux 0xb2b5fadf bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xb2bda199 bpf_prog_sub EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2d44187 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb2e03d5c bsg_job_get EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e9171f usb_find_interface EXPORT_SYMBOL_GPL vmlinux 0xb2fa093e blk_mq_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xb2fc8f23 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xb304bafc devm_create_dev_dax EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put -EXPORT_SYMBOL_GPL vmlinux 0xb3106049 xhci_reset_bandwidth -EXPORT_SYMBOL_GPL vmlinux 0xb322fdc0 hwmon_device_register -EXPORT_SYMBOL_GPL vmlinux 0xb348080f __fsverity_file_open -EXPORT_SYMBOL_GPL vmlinux 0xb348d5ec debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0xb34ad0f6 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0xb34e76e8 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0xb34f830a __udp_enqueue_schedule_skb -EXPORT_SYMBOL_GPL vmlinux 0xb34fdfce aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xb35ac85f xfrm_audit_state_replay_overflow -EXPORT_SYMBOL_GPL vmlinux 0xb3632acb tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xb37e1dec tps65912_device_exit -EXPORT_SYMBOL_GPL vmlinux 0xb38392bb __traceiter_fib6_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb38ef879 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0xb39ae338 bind_interdomain_evtchn_to_irq_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xb3af8a64 kill_pid_usb_asyncio -EXPORT_SYMBOL_GPL vmlinux 0xb3e9b66e nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xb30baf18 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xb312fce3 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb3246c7f dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xb32709be fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xb32da3d5 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xb3344ea6 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xb339acba icc_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb3470fbe pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xb34b1477 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xb34c6167 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xb34e4030 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb34ffb33 vring_notification_data +EXPORT_SYMBOL_GPL vmlinux 0xb350d2d6 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb35a9ead gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb3614480 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb368eb25 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xb36e4225 pci_msix_can_alloc_dyn +EXPORT_SYMBOL_GPL vmlinux 0xb37ab945 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb37b55ba usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb39ca3e4 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xb3b48b9a dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xb3b5031c blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xb3b70c51 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xb3d4960f ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb3f794c8 pci_has_p2pmem EXPORT_SYMBOL_GPL vmlinux 0xb3fd8fe6 kernel_read_file_from_path -EXPORT_SYMBOL_GPL vmlinux 0xb4093d85 con_debug_enter -EXPORT_SYMBOL_GPL vmlinux 0xb409f52f bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xb4008d1a tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb40ade85 mtk_clk_unregister_muxes EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request -EXPORT_SYMBOL_GPL vmlinux 0xb40da570 dma_alloc_pages -EXPORT_SYMBOL_GPL vmlinux 0xb4177ad2 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0xb4190ada of_dma_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xb4353ad0 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xb4235f73 blk_mq_flush_busy_ctxs EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0xb445b025 br_fdb_test_addr_hook -EXPORT_SYMBOL_GPL vmlinux 0xb4496d46 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xb4466e90 clk_regmap_mux_ops EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled -EXPORT_SYMBOL_GPL vmlinux 0xb47211ae dw_pcie_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0xb484c2b7 iomap_is_partially_uptodate -EXPORT_SYMBOL_GPL vmlinux 0xb486239b vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xb45d8d18 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb4681769 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb4811627 inode_sb_list_add EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event -EXPORT_SYMBOL_GPL vmlinux 0xb494fc5b kvm_io_bus_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xb498c506 devlink_remote_reload_actions_performed -EXPORT_SYMBOL_GPL vmlinux 0xb4a245f5 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0xb4afa717 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xb496f54b fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xb4975b62 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xb4a26b2f thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb4a6a0ec i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xb4b120ad __udp_gso_segment EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb4c8f6f7 mtk_clk_pdev_probe -EXPORT_SYMBOL_GPL vmlinux 0xb4cda28a irq_domain_disconnect_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xb4d2b452 wm831x_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xb4de2fcb icc_provider_init -EXPORT_SYMBOL_GPL vmlinux 0xb4e48c2e sysfs_groups_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xb4e75cc8 percpu_is_read_locked +EXPORT_SYMBOL_GPL vmlinux 0xb4d3e2c1 mdiobus_c45_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xb4e5091f get_pid_task EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4fab3a9 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb4fbadb2 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb5018d23 netif_carrier_event EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc -EXPORT_SYMBOL_GPL vmlinux 0xb50642d5 usb_for_each_dev EXPORT_SYMBOL_GPL vmlinux 0xb5093dd3 console_list -EXPORT_SYMBOL_GPL vmlinux 0xb51b3f22 kvm_write_guest_page -EXPORT_SYMBOL_GPL vmlinux 0xb51f8ba5 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb50e48ef meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xb514b1cf bsg_setup_queue EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge -EXPORT_SYMBOL_GPL vmlinux 0xb5215d24 __traceiter_sched_cpu_capacity_tp -EXPORT_SYMBOL_GPL vmlinux 0xb526d019 clk_hw_set_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xb5334a21 regulator_desc_list_voltage_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xb5386c6c synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xb53b5b79 acpi_match_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0xb5494439 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xb54ed2b3 dm_set_target_max_io_len EXPORT_SYMBOL_GPL vmlinux 0xb55139f6 HUF_readStats -EXPORT_SYMBOL_GPL vmlinux 0xb5530e8b blk_mq_unquiesce_tagset -EXPORT_SYMBOL_GPL vmlinux 0xb5544d1d tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0xb55b53a6 kernfs_get EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb5605957 spi_mem_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xb561c490 mpi_mul -EXPORT_SYMBOL_GPL vmlinux 0xb56a72b5 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xb56756b2 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb56b1745 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xb56fcda1 gpiod_direction_output EXPORT_SYMBOL_GPL vmlinux 0xb570745c __SCK__tp_func_ipi_send_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb57f29b6 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb57ffd44 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xb58fbd48 serdev_device_add EXPORT_SYMBOL_GPL vmlinux 0xb592d904 __gfn_to_pfn_memslot -EXPORT_SYMBOL_GPL vmlinux 0xb59913d9 divider_recalc_rate -EXPORT_SYMBOL_GPL vmlinux 0xb5a0efb8 rio_del_device EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0xb5ab3c21 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0xb5b1f7e4 class_interface_register EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg -EXPORT_SYMBOL_GPL vmlinux 0xb5c91737 devlink_alloc_ns -EXPORT_SYMBOL_GPL vmlinux 0xb5ca5771 iommu_page_response -EXPORT_SYMBOL_GPL vmlinux 0xb5cff6ba mtk_pinconf_bias_get -EXPORT_SYMBOL_GPL vmlinux 0xb5d773fb pwmchip_remove -EXPORT_SYMBOL_GPL vmlinux 0xb5dc5a28 usb_ifnum_to_if -EXPORT_SYMBOL_GPL vmlinux 0xb5f5e0ae blk_rq_poll -EXPORT_SYMBOL_GPL vmlinux 0xb5f62507 mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xb5e89238 kvm_are_all_memslots_empty +EXPORT_SYMBOL_GPL vmlinux 0xb5f4c197 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb5f52ad1 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb5f68563 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xb608a46d of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xb61f02e7 blk_mq_quiesce_queue_nowait EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb626172b pcie_port_find_device -EXPORT_SYMBOL_GPL vmlinux 0xb631cd54 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xb6274406 dev_pm_opp_add EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device -EXPORT_SYMBOL_GPL vmlinux 0xb6363991 __traceiter_xdp_bulk_tx -EXPORT_SYMBOL_GPL vmlinux 0xb6408de4 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb63819ca uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xb63e68e0 acpi_dma_controller_free EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm -EXPORT_SYMBOL_GPL vmlinux 0xb64187dc rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb641b9c3 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xb64d305b crypto_clone_cipher EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xb659f04a dev_pm_opp_find_freq_floor -EXPORT_SYMBOL_GPL vmlinux 0xb661170a fscrypt_drop_inode -EXPORT_SYMBOL_GPL vmlinux 0xb669a9f6 vp_modern_set_queue_reset -EXPORT_SYMBOL_GPL vmlinux 0xb6722afb sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xb656a99d raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xb67280cf file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xb677f9ce ehci_reset EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket -EXPORT_SYMBOL_GPL vmlinux 0xb67a387e devfreq_event_set_event -EXPORT_SYMBOL_GPL vmlinux 0xb68019b8 blk_req_zone_write_trylock -EXPORT_SYMBOL_GPL vmlinux 0xb68e0b4e devlink_port_attrs_pci_sf_set -EXPORT_SYMBOL_GPL vmlinux 0xb6983eef __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xb67faacb rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0xb68505af iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xb686d66d debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xb68e755f sdio_release_irq EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate -EXPORT_SYMBOL_GPL vmlinux 0xb6a56b88 xenbus_dev_is_online -EXPORT_SYMBOL_GPL vmlinux 0xb6b07053 tpm_try_get_ops -EXPORT_SYMBOL_GPL vmlinux 0xb6c5eddd mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xb6a04d90 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xb6a457ea clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xb6c0bcfd devm_regulator_bulk_get_const +EXPORT_SYMBOL_GPL vmlinux 0xb6c920aa crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xb6d7ec3e sysfs_create_group EXPORT_SYMBOL_GPL vmlinux 0xb6df084d sbitmap_queue_get_shallow -EXPORT_SYMBOL_GPL vmlinux 0xb6e0a399 phylink_generic_validate +EXPORT_SYMBOL_GPL vmlinux 0xb6df9a8e spi_new_device EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable -EXPORT_SYMBOL_GPL vmlinux 0xb6e71831 percpu_free_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xb702e28c perf_event_pause -EXPORT_SYMBOL_GPL vmlinux 0xb703cdc0 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb7086e1e elv_rqhash_del -EXPORT_SYMBOL_GPL vmlinux 0xb7118286 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xb6f14160 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xb6f1d16f regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xb6fc95c8 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xb72687bc pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb72a95d0 irq_get_irq_data EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups -EXPORT_SYMBOL_GPL vmlinux 0xb739cacd pm_clk_destroy -EXPORT_SYMBOL_GPL vmlinux 0xb745d36a dm_internal_resume -EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port -EXPORT_SYMBOL_GPL vmlinux 0xb7616546 clk_hw_get_parent_by_index -EXPORT_SYMBOL_GPL vmlinux 0xb763f91e blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xb737ccdb dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb73ffc7e imx_get_clk_hw_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb7421e8e vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xb743a190 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xb74616ba devl_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb751d4a4 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xb7540b29 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xb75c2a04 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0xb76444f0 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xb7688eed fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xb76d2e03 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb772cbd7 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb781db87 nfs42_ssc_register EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 -EXPORT_SYMBOL_GPL vmlinux 0xb784b80b ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xb783434f rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xb7839d19 mmu_interval_notifier_insert_locked EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0xb78fccf8 spi_controller_dma_map_mem_op_data -EXPORT_SYMBOL_GPL vmlinux 0xb7a357e6 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xb79518c1 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb79e4cd9 posix_clock_unregister EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7a95af7 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb7b4cf9c vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xb7ba8120 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xb7c51a34 __xdp_build_skb_from_frame EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier -EXPORT_SYMBOL_GPL vmlinux 0xb7ca664d regmap_multi_reg_write_bypassed -EXPORT_SYMBOL_GPL vmlinux 0xb7d4cb2a crypto_init_akcipher_ops_sig -EXPORT_SYMBOL_GPL vmlinux 0xb7ddc53f gnttab_pages_set_private -EXPORT_SYMBOL_GPL vmlinux 0xb7e1ebe8 iomap_writepages -EXPORT_SYMBOL_GPL vmlinux 0xb7e88fcd cdx_dev_reset +EXPORT_SYMBOL_GPL vmlinux 0xb7cbdac8 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb7e3184c screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xb7ea6266 init_dummy_netdev EXPORT_SYMBOL_GPL vmlinux 0xb7eab117 devl_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb7f281cc power_supply_set_battery_charged EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested -EXPORT_SYMBOL_GPL vmlinux 0xb80170af genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8005e06 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xb810df37 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xb8169ad7 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xb8211158 xfrm_audit_state_icvfail EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0xb83038e8 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0xb843a79f tty_find_polling_driver -EXPORT_SYMBOL_GPL vmlinux 0xb84ce418 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xb839b22b raw_seq_start EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq -EXPORT_SYMBOL_GPL vmlinux 0xb855f2ef acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0xb859653d iov_iter_is_aligned -EXPORT_SYMBOL_GPL vmlinux 0xb85b8e79 ip6_pol_route -EXPORT_SYMBOL_GPL vmlinux 0xb87388b8 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xb852a06d usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb85d36de pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xb866430e fib_rules_lookup EXPORT_SYMBOL_GPL vmlinux 0xb8781582 imx_clk_hw_sscg_pll EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable -EXPORT_SYMBOL_GPL vmlinux 0xb8806850 thermal_zone_get_offset -EXPORT_SYMBOL_GPL vmlinux 0xb88ca62f balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xb8880c17 filemap_range_has_writeback EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0xb8955881 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0xb89e5b0b acpi_get_pci_dev EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout -EXPORT_SYMBOL_GPL vmlinux 0xb89fd6f3 devlink_is_reload_failed -EXPORT_SYMBOL_GPL vmlinux 0xb8a2bd82 device_match_of_node -EXPORT_SYMBOL_GPL vmlinux 0xb8a64c15 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0xb8b61668 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0xb8ae0193 devlink_port_attrs_pci_sf_set EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource -EXPORT_SYMBOL_GPL vmlinux 0xb8ba3f27 fsl_mc_resource_free -EXPORT_SYMBOL_GPL vmlinux 0xb8c1bbb1 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb8c43573 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xb8c9a15f pinctrl_pm_select_idle_state EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d20892 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb8dc2cec dax_remap_file_range_prep +EXPORT_SYMBOL_GPL vmlinux 0xb8ee1310 gpiochip_irq_domain_activate EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0xb8f15388 pinmux_generic_add_function -EXPORT_SYMBOL_GPL vmlinux 0xb8f493d1 of_css -EXPORT_SYMBOL_GPL vmlinux 0xb9061f19 sysfs_update_groups -EXPORT_SYMBOL_GPL vmlinux 0xb9084e4d rio_release_dma -EXPORT_SYMBOL_GPL vmlinux 0xb9106770 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8f1b69f tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb8f61642 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xb901ebad __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xb902ea6c mtk_paris_pinctrl_probe EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address -EXPORT_SYMBOL_GPL vmlinux 0xb917bc22 pinctrl_generic_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xb91ed2dc fscrypt_ioctl_add_key -EXPORT_SYMBOL_GPL vmlinux 0xb920491e xfrm_dev_policy_add -EXPORT_SYMBOL_GPL vmlinux 0xb93ef3da tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb93af188 __virtqueue_unbreak +EXPORT_SYMBOL_GPL vmlinux 0xb93de223 pinctrl_put EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts -EXPORT_SYMBOL_GPL vmlinux 0xb95e4a66 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0xb95f6cca ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xb94598f4 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb965ec68 uprobe_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush -EXPORT_SYMBOL_GPL vmlinux 0xb96965b1 crypto_register_acomp -EXPORT_SYMBOL_GPL vmlinux 0xb96af795 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0xb97c4f67 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xb97b872a of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xb97f548c devm_thermal_add_hwmon_sysfs EXPORT_SYMBOL_GPL vmlinux 0xb980dc42 tracepoint_probe_unregister EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9913c9c debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xb9954740 __clk_hw_register_mux EXPORT_SYMBOL_GPL vmlinux 0xb99a3b00 sbitmap_queue_recalculate_wake_batch -EXPORT_SYMBOL_GPL vmlinux 0xb99defbc skcipher_walk_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xb9b3e163 mmput +EXPORT_SYMBOL_GPL vmlinux 0xb9a27016 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xb9ac16e7 __dev_forward_skb EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bda18e pm_genpd_remove_subdomain EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0xb9c60973 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xb9c6cda8 pci_dev_run_wake EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0xb9e543e4 devm_platform_ioremap_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0xb9e982da dax_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xb9eb6504 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0xb9f29c5a fsl_mc_device_remove -EXPORT_SYMBOL_GPL vmlinux 0xba02d37b __irq_domain_alloc_irqs -EXPORT_SYMBOL_GPL vmlinux 0xba0acd54 fixed_phy_change_carrier -EXPORT_SYMBOL_GPL vmlinux 0xba1ab51f pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb9ec32a0 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xb9f8084d sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0xb9faafd6 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xba00c269 __io_uring_cmd_do_in_task +EXPORT_SYMBOL_GPL vmlinux 0xba175177 sysfs_remove_files EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get -EXPORT_SYMBOL_GPL vmlinux 0xba66c67d fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0xba33e4ca led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xba3755d6 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xba3b118a __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xba54434b phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xba59b939 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xba5d57bf fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xba5fea62 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xba67b85b mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xba6d3e8e sk_msg_recvmsg EXPORT_SYMBOL_GPL vmlinux 0xba6eb67d __tracepoint_mc_event -EXPORT_SYMBOL_GPL vmlinux 0xba751d39 usb_match_one_id -EXPORT_SYMBOL_GPL vmlinux 0xba7fcf8f xenbus_unmap_ring_vfree -EXPORT_SYMBOL_GPL vmlinux 0xba82eadb hwmon_device_register_with_info -EXPORT_SYMBOL_GPL vmlinux 0xba9bcedb kvm_write_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xbab2fb62 fsl_mc_portal_reset -EXPORT_SYMBOL_GPL vmlinux 0xbab3e274 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0xba703022 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xba7918af dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0xba94ee92 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xba98eee8 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xba9f2497 clk_hw_determine_rate_no_reparent EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabd2e55 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xbabfec8a inet6_hash_connect EXPORT_SYMBOL_GPL vmlinux 0xbac94448 __tracepoint_block_rq_insert -EXPORT_SYMBOL_GPL vmlinux 0xbad51e3f ata_cable_ignore -EXPORT_SYMBOL_GPL vmlinux 0xbaf2f31e serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xbacacf43 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbaecbaaf bgmac_alloc EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch -EXPORT_SYMBOL_GPL vmlinux 0xbb16fe2b anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0xbb181141 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xbb156802 tegra_xusb_padctl_legacy_probe EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain -EXPORT_SYMBOL_GPL vmlinux 0xbb2c6c52 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb2d0b5d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb2d84ce regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbb2dcc59 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xbb35b5da serial8250_do_get_mctrl EXPORT_SYMBOL_GPL vmlinux 0xbb4146b3 get_completed_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xbb4d2f07 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xbb479d40 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xbb4d7531 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback -EXPORT_SYMBOL_GPL vmlinux 0xbb6593db tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0xbb689bd8 sfp_add_phy EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6e6f05 of_reserved_mem_device_release EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb7bad2a inet6_sk_rebuild_header EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot -EXPORT_SYMBOL_GPL vmlinux 0xbb8c5b1b devm_namespace_enable -EXPORT_SYMBOL_GPL vmlinux 0xbb8ce79f devm_rtc_nvmem_register -EXPORT_SYMBOL_GPL vmlinux 0xbb8d2166 pcie_aspm_capable -EXPORT_SYMBOL_GPL vmlinux 0xbba6875e sk_msg_return -EXPORT_SYMBOL_GPL vmlinux 0xbbb7f780 __irq_alloc_domain_generic_chips -EXPORT_SYMBOL_GPL vmlinux 0xbbcd8f3d thermal_zone_device_type -EXPORT_SYMBOL_GPL vmlinux 0xbbe3992b icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xbb83dcf8 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xbb954e16 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xbba4c26a meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xbba57007 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xbba61d11 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xbba841db kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbbacd1ec __nvmem_layout_register +EXPORT_SYMBOL_GPL vmlinux 0xbbcb6e83 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xbbd6f18c tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xbbe03380 crypto_sig_set_privkey EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0xbbe8860e mtk_clk_register_cpumuxes -EXPORT_SYMBOL_GPL vmlinux 0xbbf6430c regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xbbf637d3 proc_get_parent_data EXPORT_SYMBOL_GPL vmlinux 0xbbf82b6f zynqmp_pm_set_tcm_config -EXPORT_SYMBOL_GPL vmlinux 0xbc16b728 devl_rate_nodes_destroy -EXPORT_SYMBOL_GPL vmlinux 0xbc1a45f3 of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0xbc0c0980 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbc28e90a driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xbc2dc639 virtqueue_get_buf EXPORT_SYMBOL_GPL vmlinux 0xbc314156 nop_mnt_idmap -EXPORT_SYMBOL_GPL vmlinux 0xbc328020 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0xbc3474c6 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xbc316ada dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xbc3345ef dev_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0xbc3a6d21 pci_hp_deregister EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0xbc441cf3 wbc_account_cgroup_owner -EXPORT_SYMBOL_GPL vmlinux 0xbc48d7d1 tcp_is_ulp_esp -EXPORT_SYMBOL_GPL vmlinux 0xbc64741a tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc489fbb spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xbc4c7df3 psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0xbc557208 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xbc68ec24 fsl_mc_bus_dpdcei_type EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xbc74cf91 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0xbc752687 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc6d2c72 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xbc804bfd of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xbc825c1d pci_alloc_p2pmem +EXPORT_SYMBOL_GPL vmlinux 0xbc8692da pci_add_dynid EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem -EXPORT_SYMBOL_GPL vmlinux 0xbca08b49 of_nvmem_layout_get_container -EXPORT_SYMBOL_GPL vmlinux 0xbca79eeb vp_modern_queue_address -EXPORT_SYMBOL_GPL vmlinux 0xbcb3757f pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xbc9feacc devm_rtc_nvmem_register EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xbcd8927e pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xbcd7ce88 fwnode_count_parents EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name -EXPORT_SYMBOL_GPL vmlinux 0xbce4d0e6 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbcddcbff inet_bhash2_update_saddr +EXPORT_SYMBOL_GPL vmlinux 0xbce85f8d devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbceacf2a mtk_pinconf_adv_drive_set_raw EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool -EXPORT_SYMBOL_GPL vmlinux 0xbcf62fb8 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0xbcf895aa dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xbcfc4829 class_create +EXPORT_SYMBOL_GPL vmlinux 0xbcfe4481 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xbd01dad2 __audit_inode_child EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name -EXPORT_SYMBOL_GPL vmlinux 0xbd12146e cpufreq_dbs_governor_exit -EXPORT_SYMBOL_GPL vmlinux 0xbd190da9 fscrypt_prepare_new_inode -EXPORT_SYMBOL_GPL vmlinux 0xbd1d1df4 __get_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0xbd25f3d6 mtk_pinconf_adv_pull_get -EXPORT_SYMBOL_GPL vmlinux 0xbd29207d crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0xbd2fe84d crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0xbd39bc75 nvdimm_badblocks_populate -EXPORT_SYMBOL_GPL vmlinux 0xbd3d0077 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xbd0de29d page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xbd22d83f ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xbd342e76 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xbd38aab0 relay_reset EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0xbd4cc905 kvm_vcpu_yield_to -EXPORT_SYMBOL_GPL vmlinux 0xbd5b2ab6 dev_pm_opp_find_level_exact -EXPORT_SYMBOL_GPL vmlinux 0xbd5e925c gov_update_cpu_data -EXPORT_SYMBOL_GPL vmlinux 0xbd60fa7c switchdev_port_attr_set -EXPORT_SYMBOL_GPL vmlinux 0xbd70f731 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xbd4555fe dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xbd56226e dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xbd568240 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xbd6cbce9 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xbd7a37ab pingv6_prot EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory -EXPORT_SYMBOL_GPL vmlinux 0xbd84c37d devfreq_cooling_register -EXPORT_SYMBOL_GPL vmlinux 0xbd91f06e ahci_do_softreset -EXPORT_SYMBOL_GPL vmlinux 0xbd9d265a balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xbd81b8c9 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xbd8ad47c lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd8f2ff7 ethtool_dev_mm_supported +EXPORT_SYMBOL_GPL vmlinux 0xbd943069 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xbd951ac5 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xbd9dcddc fwnode_get_name EXPORT_SYMBOL_GPL vmlinux 0xbda04a91 cond_synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0xbda9073b mtk_pinconf_adv_pull_set -EXPORT_SYMBOL_GPL vmlinux 0xbdab1eb5 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xbdaa370d pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xbdb0de0b blk_mq_alloc_request_hctx EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported -EXPORT_SYMBOL_GPL vmlinux 0xbdb78ce5 dpbp_close -EXPORT_SYMBOL_GPL vmlinux 0xbdc3c7cc sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xbdbdcdac mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xbdbee2a8 sdio_release_host EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge -EXPORT_SYMBOL_GPL vmlinux 0xbde4b7cf phy_set_mode_ext -EXPORT_SYMBOL_GPL vmlinux 0xbde51fcd hid_bpf_disconnect_device -EXPORT_SYMBOL_GPL vmlinux 0xbdedc84f genphy_c45_plca_get_status -EXPORT_SYMBOL_GPL vmlinux 0xbe122ecd regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbde2ef0a fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xbdf77133 ack_all_badblocks EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll -EXPORT_SYMBOL_GPL vmlinux 0xbe334d9d ehci_init_driver -EXPORT_SYMBOL_GPL vmlinux 0xbe374d51 serdev_device_set_flow_control -EXPORT_SYMBOL_GPL vmlinux 0xbe47c509 xdp_return_frame -EXPORT_SYMBOL_GPL vmlinux 0xbe48f00a devm_pinctrl_get -EXPORT_SYMBOL_GPL vmlinux 0xbe4fc21d vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0xbe56f7a1 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xbe1621f1 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xbe3916bd mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbe421520 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe4c6b43 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xbe52f2e3 dax_driver_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xbe62e053 of_clk_src_onecell_get EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0xbe8543cf __rio_local_read_config_8 -EXPORT_SYMBOL_GPL vmlinux 0xbe929ada mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xbe6d4e35 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xbe9174a4 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xbe9684ab rio_route_clr_table EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0xbeb0796b rdev_get_id -EXPORT_SYMBOL_GPL vmlinux 0xbebc56bf serdev_device_set_baudrate -EXPORT_SYMBOL_GPL vmlinux 0xbec0dd24 trace_define_field -EXPORT_SYMBOL_GPL vmlinux 0xbec2fe5f vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xbeaada35 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0xbeb15883 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xbeb28b9b regulator_set_pull_down_regmap EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run -EXPORT_SYMBOL_GPL vmlinux 0xbec99871 xdp_build_skb_from_frame -EXPORT_SYMBOL_GPL vmlinux 0xbecf9499 tps6586x_clr_bits -EXPORT_SYMBOL_GPL vmlinux 0xbed61c66 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xbec92621 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0xbeca30d9 shmem_file_setup EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier -EXPORT_SYMBOL_GPL vmlinux 0xbf0a582d usb_acpi_set_power_state -EXPORT_SYMBOL_GPL vmlinux 0xbf0f6874 dev_pm_domain_attach_by_name -EXPORT_SYMBOL_GPL vmlinux 0xbf15bcba devres_find -EXPORT_SYMBOL_GPL vmlinux 0xbf1ba49b hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xbf2da2af fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xbf1de600 pci_ims_alloc_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf2d9dc8 fsl_mc_bus_dpio_type EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled -EXPORT_SYMBOL_GPL vmlinux 0xbf3714d6 badblocks_set -EXPORT_SYMBOL_GPL vmlinux 0xbf41f755 component_add -EXPORT_SYMBOL_GPL vmlinux 0xbf433ee5 rockchip_register_softrst_lut +EXPORT_SYMBOL_GPL vmlinux 0xbf33004b ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xbf41f0bb wbc_detach_inode EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate -EXPORT_SYMBOL_GPL vmlinux 0xbf4ec9c2 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0xbf61992a debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0xbf66b7da devm_acpi_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xbf724fbc icc_nodes_remove -EXPORT_SYMBOL_GPL vmlinux 0xbf77d144 irq_domain_pop_irq -EXPORT_SYMBOL_GPL vmlinux 0xbf78c8fb account_locked_vm -EXPORT_SYMBOL_GPL vmlinux 0xbf81852e crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0xbf83c3da kvm_vcpu_mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xbf8ff3cd rt_mutex_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xbf97a7de regulator_register_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xbf9faf94 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0xbfa14744 i2c_new_scanned_device -EXPORT_SYMBOL_GPL vmlinux 0xbfab869b tegra_mc_get_emem_device_count -EXPORT_SYMBOL_GPL vmlinux 0xbfb84213 __traceiter_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xbfb96f5e io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0xbf55d890 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xbf56287a __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xbf6fc451 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf76c9f5 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xbf76e73b netdev_sw_irq_coalesce_default_on +EXPORT_SYMBOL_GPL vmlinux 0xbf87fb98 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xbf94c6c1 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbf9f37da kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xbfa09659 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xbfb22851 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xbfb83a20 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbfbbfe12 fsnotify_put_group EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports -EXPORT_SYMBOL_GPL vmlinux 0xbfcbaf18 __pm_stay_awake -EXPORT_SYMBOL_GPL vmlinux 0xbfd5fbd0 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xbfbfda9a phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xbfd10f07 inet_csk_clone_lock EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0xbff94f7e tpm_transmit_cmd -EXPORT_SYMBOL_GPL vmlinux 0xc01266a5 device_set_node -EXPORT_SYMBOL_GPL vmlinux 0xc013528c shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0xc014095a io_cgrp_subsys -EXPORT_SYMBOL_GPL vmlinux 0xc01409b6 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0xc01cf49a phy_configure -EXPORT_SYMBOL_GPL vmlinux 0xc01eaa6a devm_free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc029857d of_phy_simple_xlate -EXPORT_SYMBOL_GPL vmlinux 0xc02d967d extcon_get_extcon_dev -EXPORT_SYMBOL_GPL vmlinux 0xc03aa8cf handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xc000ab65 pci_p2pmem_alloc_sgl +EXPORT_SYMBOL_GPL vmlinux 0xc017140f dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xc02b383a ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xc038cda4 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xc03b4eee pci_disable_pri EXPORT_SYMBOL_GPL vmlinux 0xc046cf84 imx93_clk_gate -EXPORT_SYMBOL_GPL vmlinux 0xc056060b lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xc04aac79 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xc05259f1 usb_phy_set_event EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq -EXPORT_SYMBOL_GPL vmlinux 0xc065bc4b led_trigger_rename_static -EXPORT_SYMBOL_GPL vmlinux 0xc06a7268 lp8788_write_byte -EXPORT_SYMBOL_GPL vmlinux 0xc0721b26 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xc06497d2 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc069a2c5 usb_check_int_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xc06fd75b trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xc0705cf0 fsverity_verify_blocks EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings -EXPORT_SYMBOL_GPL vmlinux 0xc0949b61 fib_rules_seq_read -EXPORT_SYMBOL_GPL vmlinux 0xc09d036f rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc09142bd ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xc09354d5 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xc0a0de40 kvm_vcpu_read_guest_atomic EXPORT_SYMBOL_GPL vmlinux 0xc0a3d155 k3_udma_glue_rx_get_flow_id_base EXPORT_SYMBOL_GPL vmlinux 0xc0a8f4be phylink_resume EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 -EXPORT_SYMBOL_GPL vmlinux 0xc0b83b49 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc0c755fc inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xc0c87c7e iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xc0ce2737 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xc0d17610 platform_irqchip_probe EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name -EXPORT_SYMBOL_GPL vmlinux 0xc0ddc3d6 devm_gpiochip_add_data_with_key EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0xc0f1f8e9 kill_device -EXPORT_SYMBOL_GPL vmlinux 0xc0f5d68a devm_phy_get -EXPORT_SYMBOL_GPL vmlinux 0xc103113a dev_pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xc1035cbb firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc0f0a236 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0xc0ffa633 devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support -EXPORT_SYMBOL_GPL vmlinux 0xc10e4bbf __traceiter_rpm_resume -EXPORT_SYMBOL_GPL vmlinux 0xc123c677 devm_clk_hw_register_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xc1292c2a devm_irq_setup_generic_chip -EXPORT_SYMBOL_GPL vmlinux 0xc12ae9d1 devm_fwnode_pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xc12c8360 rz_mtu3_32bit_ch_write -EXPORT_SYMBOL_GPL vmlinux 0xc1315bee devm_ti_sci_get_of_resource -EXPORT_SYMBOL_GPL vmlinux 0xc149c340 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0xc15c6478 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0xc16fe3ff da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc108a416 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc10bc101 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xc10e467d bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xc1278eb1 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xc14e9acd device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xc156d4c9 extcon_get_extcon_dev EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids -EXPORT_SYMBOL_GPL vmlinux 0xc1873922 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0xc18777f3 pinctrl_generic_get_group -EXPORT_SYMBOL_GPL vmlinux 0xc197a9ac dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc17ed3e3 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0xc195ce1a kobject_uevent EXPORT_SYMBOL_GPL vmlinux 0xc19b2437 __tracepoint_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc1ac7997 da9052_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xc1bfdf0d backing_file_open -EXPORT_SYMBOL_GPL vmlinux 0xc1c8b482 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xc1a694a9 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xc1bf7ba6 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc1cab120 tps65912_regmap_config EXPORT_SYMBOL_GPL vmlinux 0xc1d15a4c phylink_set_port_modes EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc1dce0c9 cpuidle_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc1dec9f1 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xc1dea9b5 pci_epc_set_msix EXPORT_SYMBOL_GPL vmlinux 0xc1e6986e interval_tree_span_iter_first -EXPORT_SYMBOL_GPL vmlinux 0xc2016027 phy_speed_up -EXPORT_SYMBOL_GPL vmlinux 0xc21ccd65 pm_runtime_suspended_time -EXPORT_SYMBOL_GPL vmlinux 0xc221054c clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0xc222a44f inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc1f19483 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xc1fefea1 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc2076e99 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc211917c rz_mtu3_16bit_ch_read +EXPORT_SYMBOL_GPL vmlinux 0xc21e08c9 icc_sync_state EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22a4cc7 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xc2332cbe amba_device_put EXPORT_SYMBOL_GPL vmlinux 0xc2368ea5 ata_xfer_mask2mode EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting -EXPORT_SYMBOL_GPL vmlinux 0xc24a5467 hwmon_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc252df23 fwnode_get_next_parent -EXPORT_SYMBOL_GPL vmlinux 0xc256a445 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xc25448a0 md_do_sync EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xc2868bf2 dispatch_hid_bpf_device_event -EXPORT_SYMBOL_GPL vmlinux 0xc2896b72 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc283d208 disk_set_zoned EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xc28eacaf device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xc28e3862 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc28f4429 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xc295f5f7 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xc29eeb50 vcap_enable_lookups EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata -EXPORT_SYMBOL_GPL vmlinux 0xc2a53bcb ata_bmdma_stop EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xc2b90aad pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc2aedb59 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xc2c0cae0 fscrypt_fname_encrypt EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xc2c6e7f3 platform_msi_domain_free_irqs -EXPORT_SYMBOL_GPL vmlinux 0xc2db9b8a pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xc2c3e513 bgmac_adjust_link EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable -EXPORT_SYMBOL_GPL vmlinux 0xc2e2e3d1 vp_legacy_get_queue_enable -EXPORT_SYMBOL_GPL vmlinux 0xc2e76de0 clk_hw_unregister_fixed_factor -EXPORT_SYMBOL_GPL vmlinux 0xc2ef28ae __spi_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc2f31da8 of_irq_get -EXPORT_SYMBOL_GPL vmlinux 0xc2fa22ad security_file_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xc2fa97a4 dma_wait_for_async_tx -EXPORT_SYMBOL_GPL vmlinux 0xc3384bad sdio_retune_crc_enable -EXPORT_SYMBOL_GPL vmlinux 0xc33b358b blk_crypto_update_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xc33efc79 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xc2e2cd39 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xc2ed3427 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xc2f1204e pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xc2fe4ae0 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xc3133ee8 devlink_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc3151de9 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xc3201587 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xc3238c4f crypto_akcipher_sync_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xc329a4f1 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xc335327f phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xc33a895b mtk_devm_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xc33b60d5 blk_queue_zone_write_granularity EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object -EXPORT_SYMBOL_GPL vmlinux 0xc3464baf icc_set_tag -EXPORT_SYMBOL_GPL vmlinux 0xc34c8524 hte_push_ts_ns -EXPORT_SYMBOL_GPL vmlinux 0xc355cc7c wm8350_reg_write -EXPORT_SYMBOL_GPL vmlinux 0xc3576f84 vcap_is_next_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc344b05f register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xc344e3d6 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xc34b3814 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xc34e9696 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xc3572c00 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc357ee99 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xc35bcbf1 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc35c50fa kvm_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk -EXPORT_SYMBOL_GPL vmlinux 0xc3762b0d sdio_claim_irq EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype -EXPORT_SYMBOL_GPL vmlinux 0xc385c807 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xc38231fd device_set_wakeup_enable EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp -EXPORT_SYMBOL_GPL vmlinux 0xc391f5d3 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc38f1049 cdx_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc393a663 disk_uevent EXPORT_SYMBOL_GPL vmlinux 0xc3997d9d mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0xc39e40e7 ahci_init_controller -EXPORT_SYMBOL_GPL vmlinux 0xc3a21172 irq_chip_ack_parent EXPORT_SYMBOL_GPL vmlinux 0xc3b47825 rcu_async_relax -EXPORT_SYMBOL_GPL vmlinux 0xc3bb84a6 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc3b4edeb spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xc3c40987 rz_mtu3_is_enabled EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0xc3c78781 devm_led_trigger_register -EXPORT_SYMBOL_GPL vmlinux 0xc3c8b0f2 ata_pci_bmdma_init -EXPORT_SYMBOL_GPL vmlinux 0xc3cf52e7 sdio_writeb_readb -EXPORT_SYMBOL_GPL vmlinux 0xc3d16838 devm_kasprintf_strarray EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e21958 dax_inode EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough -EXPORT_SYMBOL_GPL vmlinux 0xc3f316df ahci_platform_resume_host -EXPORT_SYMBOL_GPL vmlinux 0xc3fa2db0 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0xc412373c phy_put -EXPORT_SYMBOL_GPL vmlinux 0xc418f700 mtk_pinconf_adv_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xc41bd331 vcap_enable_lookups -EXPORT_SYMBOL_GPL vmlinux 0xc4235d43 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xc3f6852d bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xc3f86a97 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc402f655 vcap_keyfieldset +EXPORT_SYMBOL_GPL vmlinux 0xc4095df1 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xc40f43bf generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xc426356b acpi_dev_get_memory_resources EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long -EXPORT_SYMBOL_GPL vmlinux 0xc4326e1f wakeup_source_create -EXPORT_SYMBOL_GPL vmlinux 0xc43dc959 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xc42e165b ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc43083ff pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xc43509e6 aead_exit_geniv EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf -EXPORT_SYMBOL_GPL vmlinux 0xc44a8f26 pci_msi_mask_irq EXPORT_SYMBOL_GPL vmlinux 0xc44afc48 pse_ethtool_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc4532f97 xdp_features_clear_redirect_target +EXPORT_SYMBOL_GPL vmlinux 0xc44ba8a8 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xc44e10b6 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc450b55d pinctrl_get_group_pins EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45cb987 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xc46235c8 wakeup_source_destroy EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create -EXPORT_SYMBOL_GPL vmlinux 0xc46cd708 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xc46cf207 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xc46e4373 bdev_discard_alignment EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource -EXPORT_SYMBOL_GPL vmlinux 0xc477e4ca nvdimm_bus_add_badrange -EXPORT_SYMBOL_GPL vmlinux 0xc48c77da __traceiter_wbc_writepage -EXPORT_SYMBOL_GPL vmlinux 0xc4a2e71d mtk_clk_simple_probe -EXPORT_SYMBOL_GPL vmlinux 0xc4a2f48c rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xc47d48dd crypto_sig_sign +EXPORT_SYMBOL_GPL vmlinux 0xc48cb75a regmap_field_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xc497f926 __skb_zcopy_downgrade_managed +EXPORT_SYMBOL_GPL vmlinux 0xc49af705 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc49fdd1f rz_mtu3_enable EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send -EXPORT_SYMBOL_GPL vmlinux 0xc4af3bd2 usb_get_intf -EXPORT_SYMBOL_GPL vmlinux 0xc4af7209 acpi_dev_get_resources EXPORT_SYMBOL_GPL vmlinux 0xc4ba9aeb zynqmp_pm_fpga_get_config_status -EXPORT_SYMBOL_GPL vmlinux 0xc4c02df4 devlink_traps_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc4c7ddd4 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc4bb41c0 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xc4d2c038 regulator_register_notifier EXPORT_SYMBOL_GPL vmlinux 0xc4d5e0e8 acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4df243a xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xc4e1191b devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xc4e7aa15 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc4ec4178 devlink_region_create EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0xc4fdf6bd irq_chip_set_type_parent -EXPORT_SYMBOL_GPL vmlinux 0xc506c5a8 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xc4fab232 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xc50f62d2 skb_zerocopy EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock -EXPORT_SYMBOL_GPL vmlinux 0xc51758a2 dev_pm_opp_set_opp -EXPORT_SYMBOL_GPL vmlinux 0xc5197cdc usb_device_match_id -EXPORT_SYMBOL_GPL vmlinux 0xc51bd2d0 iomap_seek_data -EXPORT_SYMBOL_GPL vmlinux 0xc523279f trace_event_buffer_reserve -EXPORT_SYMBOL_GPL vmlinux 0xc535e30d crypto_grab_kpp -EXPORT_SYMBOL_GPL vmlinux 0xc53a7199 tps6586x_write -EXPORT_SYMBOL_GPL vmlinux 0xc5526bb5 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xc52426fa inet_bhash2_reset_saddr +EXPORT_SYMBOL_GPL vmlinux 0xc52f5782 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xc543f28b regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xc5449aea vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc5582510 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xc55b40b7 nvdimm_cmd_mask EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xc5613d9b xhci_hub_control -EXPORT_SYMBOL_GPL vmlinux 0xc56544dc component_compare_dev_name EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc56a54d5 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xc56cefd8 sk_attach_filter EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5767baf pinmux_generic_remove_function EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array -EXPORT_SYMBOL_GPL vmlinux 0xc57bc738 fsnotify_put_mark EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy -EXPORT_SYMBOL_GPL vmlinux 0xc58cb0f7 xhci_add_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xc5a44fde __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xc58c8db2 walk_hmem_resources +EXPORT_SYMBOL_GPL vmlinux 0xc59206a2 skcipher_walk_virt EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0xc5be5bcf dma_resv_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0xc5cc220f dev_pm_opp_of_remove_table -EXPORT_SYMBOL_GPL vmlinux 0xc5d3c077 bio_end_io_acct_remapped -EXPORT_SYMBOL_GPL vmlinux 0xc5d697b5 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc5c54f9f fixed_phy_set_link_update EXPORT_SYMBOL_GPL vmlinux 0xc5d9a126 unregister_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0xc5dbdadc devm_pm_opp_set_config -EXPORT_SYMBOL_GPL vmlinux 0xc5e005fb of_dma_controller_free -EXPORT_SYMBOL_GPL vmlinux 0xc5efeaa3 mctp_register_netdev -EXPORT_SYMBOL_GPL vmlinux 0xc5f5830c virtio_add_status -EXPORT_SYMBOL_GPL vmlinux 0xc5f8bbb8 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0xc6000637 crypto_aead_encrypt -EXPORT_SYMBOL_GPL vmlinux 0xc606a1e1 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xc5e02efb acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0xc5e90fc6 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xc5eec727 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xc60026be mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc6018f7b dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xc608ec0f nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xc60f86db clk_hw_get_rate_range EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc619fad1 dev_pm_domain_set EXPORT_SYMBOL_GPL vmlinux 0xc6250576 ZSTD_isError EXPORT_SYMBOL_GPL vmlinux 0xc62611e1 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0xc62b3370 dma_map_sgtable -EXPORT_SYMBOL_GPL vmlinux 0xc62c9d72 mtk_pinconf_bias_disable_get EXPORT_SYMBOL_GPL vmlinux 0xc636d60f __tracepoint_pelt_se_tp -EXPORT_SYMBOL_GPL vmlinux 0xc6461ffb serdev_device_wait_until_sent -EXPORT_SYMBOL_GPL vmlinux 0xc6483ffa pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0xc64e7795 serial8250_do_startup EXPORT_SYMBOL_GPL vmlinux 0xc64fd66a add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0xc656083e rio_dev_put EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned -EXPORT_SYMBOL_GPL vmlinux 0xc65cb153 usb_remove_hcd EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc661c9da dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc664934a skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xc6649ead dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xc6673fff tcp_splice_eof EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xc6743ff6 gpiochip_irq_domain_activate -EXPORT_SYMBOL_GPL vmlinux 0xc675b67c devm_thermal_of_cooling_device_register EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc67ec36e regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xc68393ec shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc6873856 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xc6887874 sata_port_ops EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a2761f spi_controller_suspend EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xc6a8b7c9 trace_remove_event_call -EXPORT_SYMBOL_GPL vmlinux 0xc6af611f rtc_set_alarm -EXPORT_SYMBOL_GPL vmlinux 0xc6b125d2 component_release_of -EXPORT_SYMBOL_GPL vmlinux 0xc6b60c2b usb_alloc_urb -EXPORT_SYMBOL_GPL vmlinux 0xc6b6da6f zone_device_page_init EXPORT_SYMBOL_GPL vmlinux 0xc6bd5117 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xc6d0a4d4 kvm_get_running_vcpu -EXPORT_SYMBOL_GPL vmlinux 0xc6d0d663 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xc6be202e kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xc6d0c6d2 fat_free_clusters EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within -EXPORT_SYMBOL_GPL vmlinux 0xc6e67ee2 msg_zerocopy_callback EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put -EXPORT_SYMBOL_GPL vmlinux 0xc70f65d4 pci_create_slot EXPORT_SYMBOL_GPL vmlinux 0xc716a650 poll_state_synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0xc7371862 dev_get_tstats64 -EXPORT_SYMBOL_GPL vmlinux 0xc73f68cc mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xc719036d regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc7307dc5 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc73566e6 pci_max_pasids EXPORT_SYMBOL_GPL vmlinux 0xc74c07ce cppc_get_epp_perf -EXPORT_SYMBOL_GPL vmlinux 0xc76457bd xfrm_dev_state_add -EXPORT_SYMBOL_GPL vmlinux 0xc771231d usb_reset_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xc77ff882 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xc74fc273 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc7513d0a devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc75dc1ab devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xc762629a fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xc76895e8 vcap_find_admin +EXPORT_SYMBOL_GPL vmlinux 0xc7693a0e platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc7708c93 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xc77bfd71 hisi_reset_init EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key -EXPORT_SYMBOL_GPL vmlinux 0xc78db607 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xc78dfefd __irq_apply_affinity_hint EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xc7a9c5ba pm_relax -EXPORT_SYMBOL_GPL vmlinux 0xc7b2c591 acpi_dev_clear_dependencies -EXPORT_SYMBOL_GPL vmlinux 0xc7b554dc skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc7af2aca pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xc7b49b48 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc7c178fb pinctrl_dev_get_devname EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists -EXPORT_SYMBOL_GPL vmlinux 0xc7d4b597 ata_sas_port_start -EXPORT_SYMBOL_GPL vmlinux 0xc7d72ac6 dev_pm_opp_get_opp_count -EXPORT_SYMBOL_GPL vmlinux 0xc7e48b03 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc7c8f133 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0xc7d0bed8 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xc7e1d232 vchan_init EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7f6e04d rtc_alarm_irq_enable EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop -EXPORT_SYMBOL_GPL vmlinux 0xc8046b0a spi_mem_poll_status -EXPORT_SYMBOL_GPL vmlinux 0xc815e43b crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0xc81762ae gpiochip_irqchip_irq_valid -EXPORT_SYMBOL_GPL vmlinux 0xc819527f scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc7ff3d35 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xc810dc5b crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xc81dd5d2 badblocks_exit EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove -EXPORT_SYMBOL_GPL vmlinux 0xc82df05c mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc834541e devm_phy_get EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user -EXPORT_SYMBOL_GPL vmlinux 0xc83b1af2 hwspin_lock_get_id -EXPORT_SYMBOL_GPL vmlinux 0xc8470e25 __pm_runtime_use_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xc8472127 ethnl_cable_test_step -EXPORT_SYMBOL_GPL vmlinux 0xc84f3fe4 phy_resolve_aneg_linkmode -EXPORT_SYMBOL_GPL vmlinux 0xc857b380 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc83b6215 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc84c18b7 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc84d4057 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xc857fc61 inet6_lookup EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire -EXPORT_SYMBOL_GPL vmlinux 0xc85a43b9 of_regulator_match -EXPORT_SYMBOL_GPL vmlinux 0xc8713e21 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xc85c3bf0 irq_create_mapping_affinity EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn -EXPORT_SYMBOL_GPL vmlinux 0xc8816d2f device_wakeup_disable -EXPORT_SYMBOL_GPL vmlinux 0xc8886a54 devl_rate_leaf_create -EXPORT_SYMBOL_GPL vmlinux 0xc890cb99 vcap_alloc_rule -EXPORT_SYMBOL_GPL vmlinux 0xc893a232 __traceiter_sched_overutilized_tp -EXPORT_SYMBOL_GPL vmlinux 0xc89eab10 folio_wait_stable -EXPORT_SYMBOL_GPL vmlinux 0xc8a48c60 __mmc_poll_for_busy -EXPORT_SYMBOL_GPL vmlinux 0xc8ba3fbb irq_domain_free_irqs_common -EXPORT_SYMBOL_GPL vmlinux 0xc8bb2ced iommu_fwspec_init -EXPORT_SYMBOL_GPL vmlinux 0xc8c30938 __fscrypt_prepare_link -EXPORT_SYMBOL_GPL vmlinux 0xc8cdc13e ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc88d4ea4 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc891b8d3 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xc89a824c devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc89f04b1 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xc8a10403 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xc8b21cad fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xc8c7e5bc clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc8c9526a irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xc8d18df5 blkcg_deactivate_policy EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable -EXPORT_SYMBOL_GPL vmlinux 0xc8e397db inet6_cleanup_sock -EXPORT_SYMBOL_GPL vmlinux 0xc8e89206 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0xc90f52fa __auxiliary_device_add -EXPORT_SYMBOL_GPL vmlinux 0xc91395ba regulator_get_bypass_regmap -EXPORT_SYMBOL_GPL vmlinux 0xc9161ae6 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0xc91bd1a8 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xc8fa977b dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xc90efa37 mtk_clk_unregister_ref2usb_tx +EXPORT_SYMBOL_GPL vmlinux 0xc911c3e3 cpufreq_generic_attr EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero -EXPORT_SYMBOL_GPL vmlinux 0xc923ce54 __inet_twsk_schedule EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init -EXPORT_SYMBOL_GPL vmlinux 0xc9401c62 fib_info_nh_uses_dev -EXPORT_SYMBOL_GPL vmlinux 0xc94138d6 switchdev_port_obj_del -EXPORT_SYMBOL_GPL vmlinux 0xc9511c42 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xc9496e17 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xc94d740e nexthop_find_by_id EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist -EXPORT_SYMBOL_GPL vmlinux 0xc9591272 ata_ehi_clear_desc -EXPORT_SYMBOL_GPL vmlinux 0xc9632290 usb_phy_roothub_suspend -EXPORT_SYMBOL_GPL vmlinux 0xc9639d9a sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xc95d02e3 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc95d0e5f class_interface_unregister EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xc97d34c8 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0xc9805f2f ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc97d3086 acpi_is_pnp_device EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0xc983b360 spi_mem_get_name -EXPORT_SYMBOL_GPL vmlinux 0xc989eca1 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0xc997c82b devm_clk_hw_get_clk -EXPORT_SYMBOL_GPL vmlinux 0xc9a3a698 rio_register_driver -EXPORT_SYMBOL_GPL vmlinux 0xc9c2280a icc_disable -EXPORT_SYMBOL_GPL vmlinux 0xc9cc97ba pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0xc9984804 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc9b891e7 fsl_mc_bus_dpdmux_type EXPORT_SYMBOL_GPL vmlinux 0xc9ceea06 clk_has_parent -EXPORT_SYMBOL_GPL vmlinux 0xc9d1bd99 ma35d1_reg_clk_pll +EXPORT_SYMBOL_GPL vmlinux 0xc9cfec2e ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xc9d2239e cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xc9dac0b4 __vfs_removexattr_locked EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0xc9f299b8 xdp_do_redirect_frame -EXPORT_SYMBOL_GPL vmlinux 0xc9f845c5 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc9f26c6c pci_p2pdma_enable_store EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put -EXPORT_SYMBOL_GPL vmlinux 0xca1df168 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0xca42e3ac iomap_invalidate_folio -EXPORT_SYMBOL_GPL vmlinux 0xca448426 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xc9fe74a4 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xca12bbff devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xca233965 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xca2735f3 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xca2a9687 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xca3f6441 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xca43f103 blk_queue_write_cache EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds EXPORT_SYMBOL_GPL vmlinux 0xca500464 ZSTD_getErrorName -EXPORT_SYMBOL_GPL vmlinux 0xca54e110 imx_pinctrl_parse_pin_scu -EXPORT_SYMBOL_GPL vmlinux 0xca5bb866 devm_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xca5c6cc0 gpiochip_get_desc -EXPORT_SYMBOL_GPL vmlinux 0xca60985c mtk_clk_gate_ops_setclr -EXPORT_SYMBOL_GPL vmlinux 0xca649dfd irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xca6bdcc5 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xca6cec53 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xca7599e8 mmput_async +EXPORT_SYMBOL_GPL vmlinux 0xca7c61da stmpe_reg_read EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca84b01f wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xca8781f7 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xca97a8f2 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xca98add6 xfrm_bpf_md_dst EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free -EXPORT_SYMBOL_GPL vmlinux 0xcaa9087d l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xca9a71b6 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xca9d7498 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca9ec867 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcaa065b5 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xcaac7778 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xcaad79e9 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xcabd28c0 cgroup_attach_task_all EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac16050 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xcac75507 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xcac99770 devlink_port_attrs_set EXPORT_SYMBOL_GPL vmlinux 0xcad2b76c imx_clk_hw_pfd -EXPORT_SYMBOL_GPL vmlinux 0xcad68203 bpf_prog_put -EXPORT_SYMBOL_GPL vmlinux 0xcae0e8c4 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcad3ba95 pci_create_ims_domain +EXPORT_SYMBOL_GPL vmlinux 0xcae03ac0 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xcae433c8 __rtnl_link_unregister EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xcaf031e0 virtqueue_get_desc_addr EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get -EXPORT_SYMBOL_GPL vmlinux 0xcaff5eec regmap_get_max_register -EXPORT_SYMBOL_GPL vmlinux 0xcb197985 xenbus_dev_probe -EXPORT_SYMBOL_GPL vmlinux 0xcb211716 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xcafaf380 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcafe912c tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xcb0a3652 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xcb241e8f devm_register_power_off_handler EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xcb35f610 iommu_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xcb3e8997 fuse_do_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xcb4910d6 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0xcb2e3008 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xcb2eeede blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xcb2f8c02 extcon_find_edev_by_node EXPORT_SYMBOL_GPL vmlinux 0xcb4a7d9b public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xcb4adbec sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xcb4fa0e2 rdev_set_badblocks EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj -EXPORT_SYMBOL_GPL vmlinux 0xcb71fa1d pci_d3cold_disable -EXPORT_SYMBOL_GPL vmlinux 0xcb764a21 rtc_class_close -EXPORT_SYMBOL_GPL vmlinux 0xcb966f5c dw_pcie_wait_for_link -EXPORT_SYMBOL_GPL vmlinux 0xcbaafe4a handle_fasteoi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0xcbb8a764 ata_change_queue_depth -EXPORT_SYMBOL_GPL vmlinux 0xcbdac111 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcb69cc7e ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xcb777ea2 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcb799a9a sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb7d8b50 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xcb7fc768 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xcbcb1327 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xcbcbf532 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xcbe18e01 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xcbe53a64 pci_epc_get_features EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages -EXPORT_SYMBOL_GPL vmlinux 0xcbeef95c tpm2_get_cc_attrs_tbl -EXPORT_SYMBOL_GPL vmlinux 0xcc0287f5 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xcbec1b6c xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xcbf50a72 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xcbfd3a76 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xcc0dac79 debugfs_create_regset32 EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head -EXPORT_SYMBOL_GPL vmlinux 0xcc20c3d9 genpd_dev_pm_attach_by_id -EXPORT_SYMBOL_GPL vmlinux 0xcc24bbae cpufreq_dbs_governor_limits -EXPORT_SYMBOL_GPL vmlinux 0xcc28bc92 regulator_set_current_limit -EXPORT_SYMBOL_GPL vmlinux 0xcc2edb54 ata_dummy_port_info -EXPORT_SYMBOL_GPL vmlinux 0xcc35f657 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xcc10546a dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcc2cdc9e scsi_host_complete_all_commands EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister -EXPORT_SYMBOL_GPL vmlinux 0xcc4eefaa nvdimm_bus_register -EXPORT_SYMBOL_GPL vmlinux 0xcc6012a7 tpm_chip_start -EXPORT_SYMBOL_GPL vmlinux 0xcc7ad75d skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0xcc84c7e8 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0xcc84d3ba rcuwait_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xcc8929dc tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0xcc8cb694 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xcc3ab187 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xcc4001b6 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xcc454a7b fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xcc5ebbd7 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xcc674773 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xcc6f06b8 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0xcc7631f3 genphy_c45_read_status EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc -EXPORT_SYMBOL_GPL vmlinux 0xcc94d939 rockchip_pcie_deinit_phys -EXPORT_SYMBOL_GPL vmlinux 0xcc9bb26f ethtool_dev_mm_supported -EXPORT_SYMBOL_GPL vmlinux 0xcca7a69f iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xcca44e9d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xcca8bd64 trace_put_event_file EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic -EXPORT_SYMBOL_GPL vmlinux 0xccac3c05 devm_of_platform_depopulate -EXPORT_SYMBOL_GPL vmlinux 0xccb68026 devfreq_get_devfreq_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xccc1719d bgmac_adjust_link -EXPORT_SYMBOL_GPL vmlinux 0xccc98ee0 dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xccaf75c4 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xccb3c169 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xccb4b7ff iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xccc925ca icc_node_create EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce9f15e power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xcceb4bc2 gen_pool_get EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start -EXPORT_SYMBOL_GPL vmlinux 0xccf542ac mtk_pinconf_drive_set -EXPORT_SYMBOL_GPL vmlinux 0xcd09c01e of_clk_add_hw_provider -EXPORT_SYMBOL_GPL vmlinux 0xcd127cdd tcp_sendmsg_locked -EXPORT_SYMBOL_GPL vmlinux 0xcd245172 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xccf9fa3a devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xccfe5683 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xcd161862 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcd23b0ec debugfs_create_file EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0xcd278a18 rio_mport_get_efb -EXPORT_SYMBOL_GPL vmlinux 0xcd31d29a rtc_initialize_alarm -EXPORT_SYMBOL_GPL vmlinux 0xcd50c07a crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0xcd54cd9d irq_find_matching_fwspec -EXPORT_SYMBOL_GPL vmlinux 0xcd5c1edc rz_mtu3_16bit_ch_write -EXPORT_SYMBOL_GPL vmlinux 0xcd62a97d crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xcd2bc29a __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xcd3b684b devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xcd486bdd __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xcd579d43 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xcd57d8bc trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xcd6340c9 iommu_get_domain_for_dev_pasid +EXPORT_SYMBOL_GPL vmlinux 0xcd69b9d1 bpf_trace_run4 EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset -EXPORT_SYMBOL_GPL vmlinux 0xcd79389e pm_clk_resume -EXPORT_SYMBOL_GPL vmlinux 0xcd798fa3 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xcd813cf4 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0xcd865d9f led_compose_name -EXPORT_SYMBOL_GPL vmlinux 0xcd8b215e fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xcd787a28 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xcd78c43a __get_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xcd792a61 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xcd7b770f synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xcd81ea27 vp_legacy_get_status EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd96dc52 cpufreq_unregister_driver EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr -EXPORT_SYMBOL_GPL vmlinux 0xcdb125b5 regulator_set_voltage_sel_regmap -EXPORT_SYMBOL_GPL vmlinux 0xcdb36e67 is_software_node -EXPORT_SYMBOL_GPL vmlinux 0xcdb55925 perf_event_release_kernel EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc8dd65 skb_morph EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0xcdd10eab fsl_mc_obj_reset -EXPORT_SYMBOL_GPL vmlinux 0xcdd6e8ad blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0xcddb8e84 devm_regulator_get_enable +EXPORT_SYMBOL_GPL vmlinux 0xcdd19eeb devm_thermal_of_zone_register +EXPORT_SYMBOL_GPL vmlinux 0xcdd77f91 wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency -EXPORT_SYMBOL_GPL vmlinux 0xcde544d6 dma_mmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xcdf1bca6 power_supply_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xcdf6014f rockchip_clk_register_armclk -EXPORT_SYMBOL_GPL vmlinux 0xce068d72 ipv6_icmp_error +EXPORT_SYMBOL_GPL vmlinux 0xcde798d1 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xcde9384d fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xcdf5dfc0 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xcdfd021f ma35d1_reg_clk_pll +EXPORT_SYMBOL_GPL vmlinux 0xce07ecdd platform_get_irq_optional EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory EXPORT_SYMBOL_GPL vmlinux 0xce0e789f srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0xce0fb684 pm_generic_resume_early -EXPORT_SYMBOL_GPL vmlinux 0xce17c93d i2c_of_match_device -EXPORT_SYMBOL_GPL vmlinux 0xce281c77 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0xce283d5d vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xce193903 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xce266028 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xce2e4f04 vcap_tc_flower_handler_tcp_usage EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay -EXPORT_SYMBOL_GPL vmlinux 0xce511809 mddev_init_writes_pending -EXPORT_SYMBOL_GPL vmlinux 0xce51c17a gfn_to_page_many_atomic -EXPORT_SYMBOL_GPL vmlinux 0xce564775 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xce380dad devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce385153 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce39937d perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xce49b942 ethnl_cable_test_step EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0xce897db7 trace_put_event_file -EXPORT_SYMBOL_GPL vmlinux 0xce89891f of_reset_control_array_get -EXPORT_SYMBOL_GPL vmlinux 0xce97b9c8 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xce80d2be sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xce87e92a dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xce8e0dcd of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xce90be6b devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xce9dd622 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xcea72582 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xceaa7905 usb_register_device_driver EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb17a93 regmap_get_max_register EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0xceb25f99 ahci_platform_disable_resources -EXPORT_SYMBOL_GPL vmlinux 0xceb4e658 gpiod_set_array_value -EXPORT_SYMBOL_GPL vmlinux 0xceb619b1 devl_resource_size_get -EXPORT_SYMBOL_GPL vmlinux 0xceb792c8 blk_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0xced48bda fb_deferred_io_init EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xcee7ea06 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0xcee828b0 dev_pm_qos_add_ancestor_request EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine -EXPORT_SYMBOL_GPL vmlinux 0xcef83a95 of_get_named_gpio -EXPORT_SYMBOL_GPL vmlinux 0xcf183a7f usb_disable_autosuspend -EXPORT_SYMBOL_GPL vmlinux 0xcf1c0460 uart_console_device -EXPORT_SYMBOL_GPL vmlinux 0xcf334e30 irq_domain_create_legacy -EXPORT_SYMBOL_GPL vmlinux 0xcf45dd81 fb_sys_read -EXPORT_SYMBOL_GPL vmlinux 0xcf4c616c pinctrl_force_default -EXPORT_SYMBOL_GPL vmlinux 0xcf4f761a security_inode_mkdir -EXPORT_SYMBOL_GPL vmlinux 0xcf5ccdf7 acpi_device_fix_up_power_extended -EXPORT_SYMBOL_GPL vmlinux 0xcf5e9027 usb_wakeup_notification -EXPORT_SYMBOL_GPL vmlinux 0xcf5ec9bf irq_chip_unmask_parent -EXPORT_SYMBOL_GPL vmlinux 0xcf70ba3b ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xcf781dcb clk_regmap_gate_ops -EXPORT_SYMBOL_GPL vmlinux 0xcf9d296d misc_cg_uncharge -EXPORT_SYMBOL_GPL vmlinux 0xcfa1d13f irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0xcfae6bb3 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xcef09cd9 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcef8b203 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xcefede27 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xcf06e5b3 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xcf0d581b dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xcf111b69 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xcf11f30d regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xcf3f5366 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xcf56d91c pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xcf75eed4 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xcf7bd57b regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcf97193b __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xcf9b2632 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xcfab14b9 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xcfbafc11 of_pse_control_get +EXPORT_SYMBOL_GPL vmlinux 0xcfbe0d32 scmi_protocol_unregister EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace -EXPORT_SYMBOL_GPL vmlinux 0xcfc900af crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcfc9f27b fwnode_property_read_string EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0xcfe0e886 pci_create_ims_domain -EXPORT_SYMBOL_GPL vmlinux 0xcff1fa01 ata_pci_sff_init_host -EXPORT_SYMBOL_GPL vmlinux 0xcff91ae9 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xcfda1ca0 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xcfea8de5 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcfeee58a iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xcff93def key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xcffb08a1 param_set_bool_enable_only EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic -EXPORT_SYMBOL_GPL vmlinux 0xd01041fe ata_cable_sata -EXPORT_SYMBOL_GPL vmlinux 0xd0113c99 disk_set_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0xd0140e33 fscrypt_set_bio_crypt_ctx_bh -EXPORT_SYMBOL_GPL vmlinux 0xd01bbcd5 devm_platform_ioremap_resource EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op -EXPORT_SYMBOL_GPL vmlinux 0xd03130a7 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xd0299564 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd02deec0 vp_modern_get_queue_reset +EXPORT_SYMBOL_GPL vmlinux 0xd03984a2 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xd03d86fd vcap_keyfield_name EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd0469db0 ata_host_suspend EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event -EXPORT_SYMBOL_GPL vmlinux 0xd04b18d5 fscrypt_mergeable_bio_bh -EXPORT_SYMBOL_GPL vmlinux 0xd056b49f ata_port_abort -EXPORT_SYMBOL_GPL vmlinux 0xd05e6959 i2c_adapter_type EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd0656e8c rio_unmap_inb_region EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq EXPORT_SYMBOL_GPL vmlinux 0xd0686cd4 rcuref_put_slowpath -EXPORT_SYMBOL_GPL vmlinux 0xd077e1e0 __irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xd07e3fff kvm_vcpu_is_visible_gfn -EXPORT_SYMBOL_GPL vmlinux 0xd085c529 of_irq_to_resource -EXPORT_SYMBOL_GPL vmlinux 0xd08be1ec devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xd079da7b pci_p2pdma_enable_show +EXPORT_SYMBOL_GPL vmlinux 0xd089e008 regulator_desc_list_voltage_linear_range EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type -EXPORT_SYMBOL_GPL vmlinux 0xd0a4f9ee __traceiter_devlink_hwmsg -EXPORT_SYMBOL_GPL vmlinux 0xd0b96436 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd099b4fd fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xd09af62d devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd0a317d6 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xd0b4e786 pci_intx EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0xd0c0ca1c blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xd0c50424 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xd0c6a16c __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xd0ca3246 strp_init +EXPORT_SYMBOL_GPL vmlinux 0xd0cb36bc scsi_internal_device_block_nowait EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax -EXPORT_SYMBOL_GPL vmlinux 0xd0dfdfc6 rio_dev_get -EXPORT_SYMBOL_GPL vmlinux 0xd0e9d2ca unregister_trace_event -EXPORT_SYMBOL_GPL vmlinux 0xd0ed4bc6 pcie_reset_flr -EXPORT_SYMBOL_GPL vmlinux 0xd0ee78db ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd0e72d6d serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xd0efbf1f i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xd0f741d8 usb_hcd_pci_probe EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd1103b6a xdp_return_frame_rx_napi -EXPORT_SYMBOL_GPL vmlinux 0xd12861f7 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xd0fea0e9 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xd107b69d dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xd1182111 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xd1196d4c crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xd11bafb2 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xd122f23f crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd1285a40 pinctrl_find_gpio_range_from_pin_nolock EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast -EXPORT_SYMBOL_GPL vmlinux 0xd13df4a5 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xd139dbce fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xd13b8217 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xd142d2cc dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xd143f0ce clk_hw_is_prepared EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear -EXPORT_SYMBOL_GPL vmlinux 0xd14bf8cd devm_krealloc -EXPORT_SYMBOL_GPL vmlinux 0xd14ed741 xenbus_watch_pathfmt EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xd15d2ab4 spi_alloc_device -EXPORT_SYMBOL_GPL vmlinux 0xd163f9e3 synth_event_trace_end -EXPORT_SYMBOL_GPL vmlinux 0xd16d5fb3 pci_ecam_free -EXPORT_SYMBOL_GPL vmlinux 0xd172d6e2 regulator_force_disable -EXPORT_SYMBOL_GPL vmlinux 0xd1765b4d devm_rtc_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd179b5e7 genphy_c45_aneg_done -EXPORT_SYMBOL_GPL vmlinux 0xd17d4b01 pci_acpi_set_companion_lookup_hook -EXPORT_SYMBOL_GPL vmlinux 0xd18bad53 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0xd18d59b1 trace_array_get_by_name -EXPORT_SYMBOL_GPL vmlinux 0xd1926823 vcap_del_rule -EXPORT_SYMBOL_GPL vmlinux 0xd19be7aa __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd159f3f9 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xd15f6e72 pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd1708d85 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd1811616 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xd193620d dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xd1945a8b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd1a43736 dprc_remove_devices EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xd1ba265d ahci_platform_enable_regulators -EXPORT_SYMBOL_GPL vmlinux 0xd1c36d69 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1adde5e clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xd1b1cf40 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xd1bca6b5 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xd1c12128 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd1c27843 tracing_snapshot_cond_enable EXPORT_SYMBOL_GPL vmlinux 0xd1c3fb44 vcap_free_rule -EXPORT_SYMBOL_GPL vmlinux 0xd1cae616 gpiod_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0xd1db655f acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0xd1e6d35f phy_pm_runtime_get -EXPORT_SYMBOL_GPL vmlinux 0xd1e855c5 regulator_map_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd1e8e634 devres_add EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get -EXPORT_SYMBOL_GPL vmlinux 0xd1f550f4 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xd1f5da06 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xd1f8c492 pci_p2pdma_distance_many EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event -EXPORT_SYMBOL_GPL vmlinux 0xd2199d71 devlink_register -EXPORT_SYMBOL_GPL vmlinux 0xd21a5653 vcap_tc_flower_handler_arp_usage -EXPORT_SYMBOL_GPL vmlinux 0xd21b2da5 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd219cba3 sk_psock_drop EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset -EXPORT_SYMBOL_GPL vmlinux 0xd2270528 skb_zerocopy_iter_stream -EXPORT_SYMBOL_GPL vmlinux 0xd2312059 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd2213687 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd2388f06 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd2394b8d ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd239ade1 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xd23db785 clk_register_gate EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24a3b31 __suspend_report_result EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init -EXPORT_SYMBOL_GPL vmlinux 0xd252025a gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xd251133c simple_attr_open EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write -EXPORT_SYMBOL_GPL vmlinux 0xd260cb6a tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0xd26ea360 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27ed294 tps6586x_get_version EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references -EXPORT_SYMBOL_GPL vmlinux 0xd2853b69 iommu_get_domain_for_dev_pasid EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end -EXPORT_SYMBOL_GPL vmlinux 0xd2a94f99 auxiliary_device_init -EXPORT_SYMBOL_GPL vmlinux 0xd2aaf594 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd2a7e5b7 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xd2b0d76a gpiod_set_raw_array_value_cansleep EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode -EXPORT_SYMBOL_GPL vmlinux 0xd2c18fb0 thermal_zone_device_register -EXPORT_SYMBOL_GPL vmlinux 0xd2c244ab fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xd2be47c1 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2c232f2 sdio_readl EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off -EXPORT_SYMBOL_GPL vmlinux 0xd2db132e of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap EXPORT_SYMBOL_GPL vmlinux 0xd2ef6a40 phylink_mii_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xd2f1ba71 blkcg_root_css -EXPORT_SYMBOL_GPL vmlinux 0xd2fb7d84 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0xd2fd46d7 serdev_controller_add -EXPORT_SYMBOL_GPL vmlinux 0xd30ddb0e ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd2f6d49a pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xd2fb68d2 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd30322de nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd3043573 otg_ulpi_create EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar -EXPORT_SYMBOL_GPL vmlinux 0xd3253d55 dw_pcie_upconfig_setup -EXPORT_SYMBOL_GPL vmlinux 0xd32be77f access_process_vm -EXPORT_SYMBOL_GPL vmlinux 0xd33a43b9 of_get_regulator_init_data EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3450314 mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0xd349b503 devl_resources_unregister EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd35c1f60 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0xd35f051b regulator_irq_helper -EXPORT_SYMBOL_GPL vmlinux 0xd36463ab extcon_unregister_notifier_all -EXPORT_SYMBOL_GPL vmlinux 0xd365e89d virtqueue_add_outbuf EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37a2b43 __irq_alloc_descs EXPORT_SYMBOL_GPL vmlinux 0xd37c8976 debounce_time_mt6765 EXPORT_SYMBOL_GPL vmlinux 0xd3901d33 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0xd39b9f34 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xd39dfb6a sk_msg_free EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 -EXPORT_SYMBOL_GPL vmlinux 0xd3a336a6 nvdimm_in_overwrite -EXPORT_SYMBOL_GPL vmlinux 0xd3c120b4 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd3e3a7bf acpi_find_child_by_adr +EXPORT_SYMBOL_GPL vmlinux 0xd3a66ca6 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xd3a9b4a1 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd3b4b18f param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd3bb32ea crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd3d2c398 devm_pm_opp_set_config +EXPORT_SYMBOL_GPL vmlinux 0xd3d39a80 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xd3d5b652 get_net_ns_by_id EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3ecaa24 blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4044a51 dw_pcie_host_init -EXPORT_SYMBOL_GPL vmlinux 0xd4113462 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0xd4219841 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd40c75dc get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd422bd94 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd426a861 xhci_suspend EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42a9e98 iommu_device_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xd42ed1c6 i2c_acpi_find_bus_speed EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread -EXPORT_SYMBOL_GPL vmlinux 0xd43551a5 fuse_do_open -EXPORT_SYMBOL_GPL vmlinux 0xd440a50f iomap_truncate_page -EXPORT_SYMBOL_GPL vmlinux 0xd441ed79 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd43053c3 pci_epc_mem_init EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console -EXPORT_SYMBOL_GPL vmlinux 0xd44c20aa ata_bmdma_port_intr -EXPORT_SYMBOL_GPL vmlinux 0xd465f43b put_pid +EXPORT_SYMBOL_GPL vmlinux 0xd45829b2 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd45fde27 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd4673128 rio_request_mport_dma EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd474a772 gfn_to_pfn_prot EXPORT_SYMBOL_GPL vmlinux 0xd48a9773 drop_reasons_register_subsys EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume -EXPORT_SYMBOL_GPL vmlinux 0xd4aa45df device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xd4ae9227 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xd4aa82d7 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd4ac9e3a vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xd4ae3b37 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xd4afb4b6 debugfs_create_size_t EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4ba2862 divider_determine_rate EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0xd4c596b0 vcap_del_rules -EXPORT_SYMBOL_GPL vmlinux 0xd4c930d0 iommu_group_get EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report -EXPORT_SYMBOL_GPL vmlinux 0xd4e10c68 ata_timing_compute -EXPORT_SYMBOL_GPL vmlinux 0xd4e22206 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xd4d1ca3f pci_device_group EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf -EXPORT_SYMBOL_GPL vmlinux 0xd4fb371e mtk_clk_pdev_remove -EXPORT_SYMBOL_GPL vmlinux 0xd50b18b1 devlink_linecard_nested_dl_set -EXPORT_SYMBOL_GPL vmlinux 0xd50d4a99 to_nd_region -EXPORT_SYMBOL_GPL vmlinux 0xd50efa82 of_pci_range_parser_init -EXPORT_SYMBOL_GPL vmlinux 0xd512ce56 dax_layout_busy_page_range -EXPORT_SYMBOL_GPL vmlinux 0xd51533f5 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0xd52befa2 au_platform_setup +EXPORT_SYMBOL_GPL vmlinux 0xd5163f83 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xd5273d17 of_pci_get_slot_power_limit EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value -EXPORT_SYMBOL_GPL vmlinux 0xd5346d0f usb_hc_died -EXPORT_SYMBOL_GPL vmlinux 0xd5379e70 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0xd53b3104 pci_epf_alloc_space EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd54c4197 xdp_rxq_info_unreg EXPORT_SYMBOL_GPL vmlinux 0xd54f8d68 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xd5506b36 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0xd5564b77 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0xd5579868 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xd55051b2 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xd552fdf1 __rtnl_link_register EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata -EXPORT_SYMBOL_GPL vmlinux 0xd55c8eec dst_blackhole_redirect -EXPORT_SYMBOL_GPL vmlinux 0xd561058d mtk_build_eint -EXPORT_SYMBOL_GPL vmlinux 0xd5637662 page_cache_async_ra -EXPORT_SYMBOL_GPL vmlinux 0xd5671344 xhci_gen_setup -EXPORT_SYMBOL_GPL vmlinux 0xd5676f4f inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0xd57e1ae7 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xd562a65d __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd5664a72 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd56b4bf4 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xd57a8f42 pm_clk_resume EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop -EXPORT_SYMBOL_GPL vmlinux 0xd589e39f key_type_user -EXPORT_SYMBOL_GPL vmlinux 0xd590d380 devlink_trap_groups_unregister -EXPORT_SYMBOL_GPL vmlinux 0xd5982fa2 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xd583adc8 dev_pm_qos_add_notifier EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause -EXPORT_SYMBOL_GPL vmlinux 0xd59a67e4 screen_glyph_unicode -EXPORT_SYMBOL_GPL vmlinux 0xd5a643fc sdio_set_host_pm_flags -EXPORT_SYMBOL_GPL vmlinux 0xd5b3e5c0 regulator_list_voltage_linear -EXPORT_SYMBOL_GPL vmlinux 0xd5c5cac1 tpm_put_ops -EXPORT_SYMBOL_GPL vmlinux 0xd5c873f6 serial8250_update_uartclk -EXPORT_SYMBOL_GPL vmlinux 0xd5d65786 spi_finalize_current_transfer -EXPORT_SYMBOL_GPL vmlinux 0xd5db01d4 dma_alloc_noncontiguous -EXPORT_SYMBOL_GPL vmlinux 0xd5dc7eae tegra_bpmp_put -EXPORT_SYMBOL_GPL vmlinux 0xd5dd6696 ahci_platform_enable_phys -EXPORT_SYMBOL_GPL vmlinux 0xd5e82caf bio_blkcg_css -EXPORT_SYMBOL_GPL vmlinux 0xd5eadb3f phy_pm_runtime_put -EXPORT_SYMBOL_GPL vmlinux 0xd5ec9866 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd5b5b4d9 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd5b6e95e usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd5b91365 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd5b9227a ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xd5bf265b driver_find +EXPORT_SYMBOL_GPL vmlinux 0xd5c50fdd gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xd5eee4e3 rtc_set_time EXPORT_SYMBOL_GPL vmlinux 0xd5f5865d __tracepoint_pelt_dl_tp -EXPORT_SYMBOL_GPL vmlinux 0xd6075e2b pci_host_common_probe -EXPORT_SYMBOL_GPL vmlinux 0xd612aee3 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xd6141517 vp_legacy_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xd6166768 __traceiter_block_split -EXPORT_SYMBOL_GPL vmlinux 0xd621c89e regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0xd6036cf0 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xd611be91 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd6150cd4 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xd6156e9d of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd61662bf vcap_tc_flower_handler_ethaddr_usage +EXPORT_SYMBOL_GPL vmlinux 0xd61e46d4 ndo_dflt_bridge_getlink EXPORT_SYMBOL_GPL vmlinux 0xd6251353 ftrace_set_filter_ips -EXPORT_SYMBOL_GPL vmlinux 0xd62da7c0 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0xd633885f cpufreq_dbs_governor_init -EXPORT_SYMBOL_GPL vmlinux 0xd63a45bb udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd63d30ea md_bitmap_resize -EXPORT_SYMBOL_GPL vmlinux 0xd64b3827 devm_gpiod_get_index -EXPORT_SYMBOL_GPL vmlinux 0xd64c0dd9 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xd638a1eb fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0xd63df815 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xd64cbe76 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xd64d7e4c crypto_inst_setname EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p -EXPORT_SYMBOL_GPL vmlinux 0xd656f28f k3_udma_glue_request_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xd660f0ee xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd6653385 handle_fasteoi_nmi EXPORT_SYMBOL_GPL vmlinux 0xd66a7a35 sbitmap_queue_wake_all -EXPORT_SYMBOL_GPL vmlinux 0xd6714da3 usb_hcd_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget -EXPORT_SYMBOL_GPL vmlinux 0xd6741949 i2c_parse_fw_timings -EXPORT_SYMBOL_GPL vmlinux 0xd6857583 led_get_default_pattern -EXPORT_SYMBOL_GPL vmlinux 0xd686e1fb platform_get_irq_byname_optional -EXPORT_SYMBOL_GPL vmlinux 0xd69e41b9 devres_release -EXPORT_SYMBOL_GPL vmlinux 0xd6a9fd08 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xd688372f usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd68b26b4 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xd68b77e7 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xd69b086b of_add_property EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft EXPORT_SYMBOL_GPL vmlinux 0xd6ae9ba7 rcu_async_should_hurry -EXPORT_SYMBOL_GPL vmlinux 0xd6afe06a tpm_tis_remove EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark -EXPORT_SYMBOL_GPL vmlinux 0xd6b33770 cgroup_get_from_path -EXPORT_SYMBOL_GPL vmlinux 0xd6b5969a transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source -EXPORT_SYMBOL_GPL vmlinux 0xd6daea71 acct_bioset_exit -EXPORT_SYMBOL_GPL vmlinux 0xd6e269a5 cpufreq_driver_target -EXPORT_SYMBOL_GPL vmlinux 0xd6e6b92b devm_clk_hw_register_fixed_factor_parent_hw -EXPORT_SYMBOL_GPL vmlinux 0xd6ee8f1a fib_rules_lookup -EXPORT_SYMBOL_GPL vmlinux 0xd6f9b29e ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0xd7043843 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xd71be708 mmu_interval_notifier_remove -EXPORT_SYMBOL_GPL vmlinux 0xd720b8ce pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xd6b386e9 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xd6bd1162 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd6d599b1 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xd6f2eb4d sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xd6f61231 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xd6fd891f devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0xd7016874 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd7058444 devl_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd70eba94 rz_mtu3_shared_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd7128176 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xd7139b20 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xd71a639b iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xd71ad0af devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xd71f56ff usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd72032d0 rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xd7222ec7 gov_attr_set_get EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0xd72a7671 devm_clk_get_optional_prepared EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state -EXPORT_SYMBOL_GPL vmlinux 0xd73cc22f trace_array_put -EXPORT_SYMBOL_GPL vmlinux 0xd74b7b5a sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0xd74c615b ipv6_bpf_stub -EXPORT_SYMBOL_GPL vmlinux 0xd75134a7 pci_disable_ats -EXPORT_SYMBOL_GPL vmlinux 0xd75630ba bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xd736bb93 mtk_clk_register_muxes EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd75cebf2 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0xd763132e md_stop EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints -EXPORT_SYMBOL_GPL vmlinux 0xd76fd55f ptp_parse_header -EXPORT_SYMBOL_GPL vmlinux 0xd77167e3 fuse_dev_alloc -EXPORT_SYMBOL_GPL vmlinux 0xd771adcc xen_xenbus_fops -EXPORT_SYMBOL_GPL vmlinux 0xd7778db4 iommu_detach_device_pasid -EXPORT_SYMBOL_GPL vmlinux 0xd778c8a6 ata_port_classify -EXPORT_SYMBOL_GPL vmlinux 0xd77e8029 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0xd78f2ff5 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0xd7900cc7 rdev_get_dev -EXPORT_SYMBOL_GPL vmlinux 0xd7941641 ext_pi_type1_crc64 -EXPORT_SYMBOL_GPL vmlinux 0xd7987ef8 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0xd7a27cf8 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xd76e425e tpm_chip_bootstrap +EXPORT_SYMBOL_GPL vmlinux 0xd778e230 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd7814aad xhci_stop +EXPORT_SYMBOL_GPL vmlinux 0xd78fe336 iommu_unmap EXPORT_SYMBOL_GPL vmlinux 0xd7a86ea4 tcp_twsk_purge EXPORT_SYMBOL_GPL vmlinux 0xd7aea26e kernel_read_file_from_path_initns -EXPORT_SYMBOL_GPL vmlinux 0xd7b691ed hisi_clk_register_phase -EXPORT_SYMBOL_GPL vmlinux 0xd7bed517 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xd7be5dcb pinctrl_utils_add_map_configs EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable -EXPORT_SYMBOL_GPL vmlinux 0xd7ca7b18 mtk_pinconf_adv_drive_get EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work -EXPORT_SYMBOL_GPL vmlinux 0xd7d74849 ti_sci_inta_msi_create_irq_domain EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks -EXPORT_SYMBOL_GPL vmlinux 0xd7f00aa3 irq_chip_set_affinity_parent -EXPORT_SYMBOL_GPL vmlinux 0xd7f9edcf stmpe_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xd7fc43e8 of_fwnode_ops -EXPORT_SYMBOL_GPL vmlinux 0xd80a6b4c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd7e1109c irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd801a9d5 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xd8081a6e k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xd80d912b pinctrl_remove_gpio_range EXPORT_SYMBOL_GPL vmlinux 0xd823d36d __SCK__tp_func_console -EXPORT_SYMBOL_GPL vmlinux 0xd82ac8a6 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xd82f9607 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd838dcbe sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd84c15c5 synth_event_add_next_val EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock -EXPORT_SYMBOL_GPL vmlinux 0xd84f3019 disk_alloc_independent_access_ranges -EXPORT_SYMBOL_GPL vmlinux 0xd84f732b register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xd8502ec3 of_property_read_variable_u8_array -EXPORT_SYMBOL_GPL vmlinux 0xd856cca9 led_classdev_notify_brightness_hw_changed -EXPORT_SYMBOL_GPL vmlinux 0xd85adba9 ethnl_cable_test_pulse -EXPORT_SYMBOL_GPL vmlinux 0xd87a4c76 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xd860e105 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xd86a77e6 genphy_c45_pma_suspend EXPORT_SYMBOL_GPL vmlinux 0xd87cb8eb dma_fence_unwrap_next EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk -EXPORT_SYMBOL_GPL vmlinux 0xd883482d mtk_eint_do_suspend -EXPORT_SYMBOL_GPL vmlinux 0xd88b9422 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0xd8b284df ehci_setup -EXPORT_SYMBOL_GPL vmlinux 0xd8c54982 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0xd8c62cb3 dev_pm_qos_expose_flags -EXPORT_SYMBOL_GPL vmlinux 0xd8c7439b blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0xd8cae05c cpuidle_get_driver -EXPORT_SYMBOL_GPL vmlinux 0xd8cd7b80 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0xd8d5be0f icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xd8adf74a fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xd8c7ed4b inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd8cc55f9 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd8d10547 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xd8d6078b clk_hw_unregister_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type -EXPORT_SYMBOL_GPL vmlinux 0xd8d856c8 irq_domain_create_simple -EXPORT_SYMBOL_GPL vmlinux 0xd8d885f4 of_icc_get_from_provider -EXPORT_SYMBOL_GPL vmlinux 0xd8e2e7d4 regmap_field_free -EXPORT_SYMBOL_GPL vmlinux 0xd8ec3027 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xd8daf51f ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xd8de17ee of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8e3fc60 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xd8e9bf9f fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd8eae482 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd8f0217c uart_set_options EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xd90394fc stmpe_block_write EXPORT_SYMBOL_GPL vmlinux 0xd903f419 phylink_get_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd90973fe nf_hook_entries_insert_raw EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd91d2926 platform_unregister_drivers EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk -EXPORT_SYMBOL_GPL vmlinux 0xd92094f8 irq_chip_disable_parent -EXPORT_SYMBOL_GPL vmlinux 0xd92be6da palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd9274cca regulator_set_bypass_regmap EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock -EXPORT_SYMBOL_GPL vmlinux 0xd9335208 mmc_switch -EXPORT_SYMBOL_GPL vmlinux 0xd940480f xen_remap_vma_range -EXPORT_SYMBOL_GPL vmlinux 0xd96ba173 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd92f7b30 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd9515aa0 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd95d1564 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xd95e2e8a mtk_pinconf_drive_set_rev1 EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next -EXPORT_SYMBOL_GPL vmlinux 0xd988da1b vp_modern_get_queue_size -EXPORT_SYMBOL_GPL vmlinux 0xd98f6627 wakeup_source_register -EXPORT_SYMBOL_GPL vmlinux 0xd9902482 splice_to_pipe EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 -EXPORT_SYMBOL_GPL vmlinux 0xd99a2f80 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xd9962c4c device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd9a53df4 kvm_vcpu_read_guest EXPORT_SYMBOL_GPL vmlinux 0xd9b19aa5 __tracepoint_fdb_delete EXPORT_SYMBOL_GPL vmlinux 0xd9bb2c13 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0xd9dc6946 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xd9de2e7c xdp_return_frame_bulk EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e519b0 regulator_suspend_enable EXPORT_SYMBOL_GPL vmlinux 0xd9e61980 phy_gbit_all_ports_features -EXPORT_SYMBOL_GPL vmlinux 0xd9ef99b8 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xd9f36ec3 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xd9f7587d ahci_platform_shutdown EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write -EXPORT_SYMBOL_GPL vmlinux 0xda02334d acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd9ffdd24 kvm_clear_guest EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0xda0cb787 regulator_list_voltage -EXPORT_SYMBOL_GPL vmlinux 0xda0e2f98 __folio_lock_killable -EXPORT_SYMBOL_GPL vmlinux 0xda108d9f regcache_sync_region EXPORT_SYMBOL_GPL vmlinux 0xda10e1e2 phy_basic_t1_features -EXPORT_SYMBOL_GPL vmlinux 0xda181635 perf_get_aux -EXPORT_SYMBOL_GPL vmlinux 0xda23f8ee meson_pmx_get_groups -EXPORT_SYMBOL_GPL vmlinux 0xda281797 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xda2c5067 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xda303b88 crypto_unregister_shashes EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start -EXPORT_SYMBOL_GPL vmlinux 0xda3b8c1e driver_set_override -EXPORT_SYMBOL_GPL vmlinux 0xda5c7132 serial8250_do_get_mctrl -EXPORT_SYMBOL_GPL vmlinux 0xda639401 nexthop_find_by_id -EXPORT_SYMBOL_GPL vmlinux 0xda648022 tcp_enter_memory_pressure -EXPORT_SYMBOL_GPL vmlinux 0xda65a34c devm_phy_destroy -EXPORT_SYMBOL_GPL vmlinux 0xda6b5d2b pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xda4d802b dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xda56ed75 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xda6b52af ata_do_dev_read_id EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda822990 sfp_bus_add_upstream EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name -EXPORT_SYMBOL_GPL vmlinux 0xda94f853 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xda93bc70 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xda98cd7b cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xda9f138f virtqueue_add_inbuf EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0xdaa1ce65 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdaa1606a bpf_prog_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert -EXPORT_SYMBOL_GPL vmlinux 0xdab5bf50 switchdev_port_obj_add -EXPORT_SYMBOL_GPL vmlinux 0xdabd3364 bdev_disk_changed -EXPORT_SYMBOL_GPL vmlinux 0xdac22f4d device_add -EXPORT_SYMBOL_GPL vmlinux 0xdac2c236 i2c_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xdae002f0 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0xdaeb48b1 crypto_akcipher_sync_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xdaf91d7a devm_acpi_dma_controller_register -EXPORT_SYMBOL_GPL vmlinux 0xdb056fa9 ahci_print_info -EXPORT_SYMBOL_GPL vmlinux 0xdb21f9e4 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xdab67c84 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xdad17abc dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xdada712d ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdae35c35 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xdafec213 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb04cee4 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xdb092bc8 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xdb1283b2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb15b3ed handle_mm_fault EXPORT_SYMBOL_GPL vmlinux 0xdb2289e5 tracepoint_srcu -EXPORT_SYMBOL_GPL vmlinux 0xdb27af7a acpi_dev_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0xdb2f1998 rockchip_pcie_init_port -EXPORT_SYMBOL_GPL vmlinux 0xdb508f61 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xdb2508b2 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0xdb281820 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xdb38d0b8 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xdb474cce cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb4f2ed2 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xdb5135d2 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xdb52ea17 usb_disable_ltm EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0xdb7dedd9 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdb6aa27f phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xdb736554 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb7cfe72 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xdb837f7e spi_controller_dma_unmap_mem_op_data EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0xdb932950 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0xdbb79a5d fscrypt_show_test_dummy_encryption -EXPORT_SYMBOL_GPL vmlinux 0xdbc8683e fuse_simple_background -EXPORT_SYMBOL_GPL vmlinux 0xdbcb0cfa uart_get_rs485_mode -EXPORT_SYMBOL_GPL vmlinux 0xdbd5e1c1 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xdb8cf245 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xdbb4ec59 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xdbb67548 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xdbc01f5c edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xdbd8cbd4 vring_create_virtqueue_dma EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0xdbe0db8d sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xdbdb47b1 scsi_eh_ready_devs EXPORT_SYMBOL_GPL vmlinux 0xdbe3dbe0 vhost_task_create +EXPORT_SYMBOL_GPL vmlinux 0xdbe57249 attribute_container_classdev_to_container EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency -EXPORT_SYMBOL_GPL vmlinux 0xdbeffa0e icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xdbe8f47e acpi_gpiochip_free_interrupts EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0xdbf8dd07 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xdbfece47 ahci_port_resume EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc0810a2 kthread_flush_work EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size -EXPORT_SYMBOL_GPL vmlinux 0xdc1f2af0 __virtqueue_break -EXPORT_SYMBOL_GPL vmlinux 0xdc1fdfeb net_selftest -EXPORT_SYMBOL_GPL vmlinux 0xdc259cf2 devm_gpiod_unhinge -EXPORT_SYMBOL_GPL vmlinux 0xdc266ece battery_hook_register -EXPORT_SYMBOL_GPL vmlinux 0xdc275046 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xdc22e10c trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xdc2d968d gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc337d97 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xdc36a59c pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xdc420a66 crypto_shash_final EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc449ca8 __clk_hw_register_fixed_rate EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work -EXPORT_SYMBOL_GPL vmlinux 0xdc50de75 usb_get_current_frame_number -EXPORT_SYMBOL_GPL vmlinux 0xdc51dd64 acpi_pm_set_device_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xdc542eb8 spi_split_transfers_maxsize -EXPORT_SYMBOL_GPL vmlinux 0xdc5549a1 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc467101 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xdc46ded7 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdc62c3cf fwnode_gpiod_get_index EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0xdc670f15 pci_epc_remove_epf -EXPORT_SYMBOL_GPL vmlinux 0xdc6ca1a3 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0xdc7011ab crypto_clone_tfm -EXPORT_SYMBOL_GPL vmlinux 0xdc762e16 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xdc74e336 input_ff_upload EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdc8dd6c9 devl_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc88c4a3 pci_find_doe_mailbox +EXPORT_SYMBOL_GPL vmlinux 0xdc8a5ebf bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xdc8fef00 dma_get_required_mask EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend EXPORT_SYMBOL_GPL vmlinux 0xdc9f6bca __SCK__tp_func_br_mdb_full EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0xdca542dd __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xdcb05bb0 ext_pi_type1_crc64 EXPORT_SYMBOL_GPL vmlinux 0xdcb0a2c0 phylink_stop -EXPORT_SYMBOL_GPL vmlinux 0xdcb1f337 fib_add_nexthop -EXPORT_SYMBOL_GPL vmlinux 0xdcc1da27 ata_qc_complete_multiple -EXPORT_SYMBOL_GPL vmlinux 0xdcd22873 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xdcbf004b raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xdccd0476 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xdcd49282 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xdcd63b5f pci_msix_alloc_irq_at EXPORT_SYMBOL_GPL vmlinux 0xdceb5362 efi_status_to_err -EXPORT_SYMBOL_GPL vmlinux 0xdcf29d72 crypto_sig_set_privkey -EXPORT_SYMBOL_GPL vmlinux 0xdd06c7b8 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xdcfee649 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdd05faf5 devm_spi_mem_dirmap_destroy EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc -EXPORT_SYMBOL_GPL vmlinux 0xdd0c84c9 perf_aux_output_flag -EXPORT_SYMBOL_GPL vmlinux 0xdd0da2b6 bdev_alignment_offset -EXPORT_SYMBOL_GPL vmlinux 0xdd198c2b sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0xdd553f7e dma_resv_describe -EXPORT_SYMBOL_GPL vmlinux 0xdd57a14a disk_update_readahead -EXPORT_SYMBOL_GPL vmlinux 0xdd5a261c firmware_upload_register -EXPORT_SYMBOL_GPL vmlinux 0xdd5f3c2b led_trigger_unregister_simple -EXPORT_SYMBOL_GPL vmlinux 0xdd60c7bd ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xdd13d4c6 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xdd436498 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xdd43c961 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xdd46f02b device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xdd5367b9 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xdd606339 regmap_field_update_bits_base EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args -EXPORT_SYMBOL_GPL vmlinux 0xdd66250e blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xdd7127b3 irq_chip_get_parent_state -EXPORT_SYMBOL_GPL vmlinux 0xdd76ff1f virtqueue_disable_cb EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete -EXPORT_SYMBOL_GPL vmlinux 0xdd86d546 mmc_sanitize -EXPORT_SYMBOL_GPL vmlinux 0xdd88965a netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0xdd9040ed of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdd9d6af4 gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xdda6c0c4 dev_nit_active -EXPORT_SYMBOL_GPL vmlinux 0xddbaed97 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xdd8769ba mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xdda1b79a bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xdda425a6 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xddb6be00 rz_mtu3_shared_reg_update_bit EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0xddc0e6c5 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xddc47e95 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xddc8451a devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xddcc628c blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xddcfb032 gpiod_toggle_active_low EXPORT_SYMBOL_GPL vmlinux 0xddd41e4d vcap_lookup_keyfield -EXPORT_SYMBOL_GPL vmlinux 0xdddc0a17 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xdddb4a7f acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xddf56500 handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xddfd119f clk_hw_forward_rate_request EXPORT_SYMBOL_GPL vmlinux 0xddfe1ad7 __SCK__tp_func_sk_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xde028f52 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xde087f71 pci_rescan_bus EXPORT_SYMBOL_GPL vmlinux 0xde0af24f udp_memory_per_cpu_fw_alloc -EXPORT_SYMBOL_GPL vmlinux 0xde107894 wm8350_read_auxadc -EXPORT_SYMBOL_GPL vmlinux 0xde15941b hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xde183f3d power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xde28d512 vcpu_load EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xde46ebfb sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0xde536c01 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0xde546eae kvm_gfn_to_hva_cache_init EXPORT_SYMBOL_GPL vmlinux 0xde5574cf x509_load_certificate_list -EXPORT_SYMBOL_GPL vmlinux 0xde562013 pci_epc_get_msix -EXPORT_SYMBOL_GPL vmlinux 0xde648271 mtk_pinconf_drive_get EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 -EXPORT_SYMBOL_GPL vmlinux 0xde72f620 pcie_aspm_enabled -EXPORT_SYMBOL_GPL vmlinux 0xde83bcbe dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xde8ee988 thermal_zone_device_register_with_trips +EXPORT_SYMBOL_GPL vmlinux 0xde94c55a pinconf_generic_dump_config EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova -EXPORT_SYMBOL_GPL vmlinux 0xdeb5a82f led_trigger_remove -EXPORT_SYMBOL_GPL vmlinux 0xdec14114 cdx_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xdedd4af9 led_trigger_set -EXPORT_SYMBOL_GPL vmlinux 0xdee18ef8 device_phy_find_device -EXPORT_SYMBOL_GPL vmlinux 0xdee5ff85 ata_qc_get_active -EXPORT_SYMBOL_GPL vmlinux 0xdee8202e crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xdeb7094c handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xdec18f57 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xdecbb6b1 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xded1fb05 tty_kclose EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0971d7 inet_twsk_put EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal -EXPORT_SYMBOL_GPL vmlinux 0xdf133613 __traceiter_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xdf17f28f bgmac_enet_probe -EXPORT_SYMBOL_GPL vmlinux 0xdf18dd51 gpiochip_add_data_with_key -EXPORT_SYMBOL_GPL vmlinux 0xdf1a14d8 unregister_pernet_subsys EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova EXPORT_SYMBOL_GPL vmlinux 0xdf237453 timer_shutdown_sync -EXPORT_SYMBOL_GPL vmlinux 0xdf23e8cb thermal_zone_get_crit_temp +EXPORT_SYMBOL_GPL vmlinux 0xdf248a00 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xdf263dbf pci_epc_remove_epf EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xdf2d090b fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xdf2bfdd6 register_net_sysctl EXPORT_SYMBOL_GPL vmlinux 0xdf31898f cper_mem_err_pack -EXPORT_SYMBOL_GPL vmlinux 0xdf3d2bf2 devm_mipi_dsi_attach EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4535d5 ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xdf49dcf0 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xdf5215b3 alarmtimer_get_rtcdev EXPORT_SYMBOL_GPL vmlinux 0xdf558314 power_supply_battery_info_properties -EXPORT_SYMBOL_GPL vmlinux 0xdf62c92b unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0xdf6d27cc wwan_port_rx -EXPORT_SYMBOL_GPL vmlinux 0xdf72a666 tpm_pm_resume -EXPORT_SYMBOL_GPL vmlinux 0xdf8266f2 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0xdf881dc1 of_pm_clk_add_clk -EXPORT_SYMBOL_GPL vmlinux 0xdf8b59f5 imx_pinctrl_sc_ipc_init -EXPORT_SYMBOL_GPL vmlinux 0xdf8b638e crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0xdf8d3ece devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0xdf97f9c4 usb_pipe_type_check -EXPORT_SYMBOL_GPL vmlinux 0xdfa80e26 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xdf5ca39e xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdf6e853e __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xdf76a7e8 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xdf95bf57 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xdfa2ded2 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xdfa63061 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xdfa6e55e clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xdfb0111d dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xdfb0a338 __hwspin_unlock EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set -EXPORT_SYMBOL_GPL vmlinux 0xdfd4832c hwspin_lock_unregister -EXPORT_SYMBOL_GPL vmlinux 0xdfd61907 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0xdfeefe91 sync_page_io -EXPORT_SYMBOL_GPL vmlinux 0xdff696ea blk_crypto_intersect_capabilities -EXPORT_SYMBOL_GPL vmlinux 0xdff71c31 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0xe001a108 nfnl_ct_hook -EXPORT_SYMBOL_GPL vmlinux 0xe00657ed acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xdfdedf68 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xdfe2d8bb pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xdffa5a82 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xdffa9b21 unregister_pernet_device EXPORT_SYMBOL_GPL vmlinux 0xe00db6dc __tracepoint_block_bio_remap -EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe0311ccb bpf_map_inc_not_zero EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0xe033fc58 shash_free_singlespawn_instance -EXPORT_SYMBOL_GPL vmlinux 0xe0412c4d of_genpd_add_device -EXPORT_SYMBOL_GPL vmlinux 0xe0488f5a gpiochip_remove_pin_ranges -EXPORT_SYMBOL_GPL vmlinux 0xe051c32b lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe036c75e ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xe0466427 tty_put_char EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu -EXPORT_SYMBOL_GPL vmlinux 0xe06001ce pci_enable_pcie_error_reporting -EXPORT_SYMBOL_GPL vmlinux 0xe06b3936 __page_file_index -EXPORT_SYMBOL_GPL vmlinux 0xe06c7b9c bpf_sk_storage_diag_put -EXPORT_SYMBOL_GPL vmlinux 0xe06cdfca pci_p2pdma_enable_show -EXPORT_SYMBOL_GPL vmlinux 0xe07127bb device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe080ef0f md_account_bio -EXPORT_SYMBOL_GPL vmlinux 0xe08451ef of_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0xe087c609 user_read -EXPORT_SYMBOL_GPL vmlinux 0xe0adc593 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xe05f49ac regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe064ad2d xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe064b046 cros_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0xe067aeaa vcap_select_min_rule_keyset +EXPORT_SYMBOL_GPL vmlinux 0xe06afabf devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0xe06cd42f spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xe06f312d devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xe07c1fa9 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xe0980316 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe09d5653 md_rdev_init EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate EXPORT_SYMBOL_GPL vmlinux 0xe0b8364e __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xe0be1ed6 sdio_retune_release EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register -EXPORT_SYMBOL_GPL vmlinux 0xe0d20703 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xe0d0e154 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xe0d38a68 thermal_zone_get_num_trips EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op -EXPORT_SYMBOL_GPL vmlinux 0xe0e5f5b0 fsl_mc_device_group -EXPORT_SYMBOL_GPL vmlinux 0xe0e8e210 rockchip_clk_init -EXPORT_SYMBOL_GPL vmlinux 0xe0e8f666 __phy_modify_mmd -EXPORT_SYMBOL_GPL vmlinux 0xe0ea827e rio_release_outb_mbox -EXPORT_SYMBOL_GPL vmlinux 0xe0f07196 acpi_get_acpi_dev -EXPORT_SYMBOL_GPL vmlinux 0xe0f93308 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xe0f4bd30 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xe1071877 nf_nat_hook EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin -EXPORT_SYMBOL_GPL vmlinux 0xe111d83a memunmap_pages -EXPORT_SYMBOL_GPL vmlinux 0xe113eec9 xdp_features_set_redirect_target -EXPORT_SYMBOL_GPL vmlinux 0xe119d1f1 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0xe110bf8c dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xe1191853 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe11c4c43 hid_bpf_connect_device EXPORT_SYMBOL_GPL vmlinux 0xe12681a4 __tracepoint_block_rq_remap -EXPORT_SYMBOL_GPL vmlinux 0xe1418b65 trace_event_ignore_this_pid -EXPORT_SYMBOL_GPL vmlinux 0xe1513669 usb_autopm_put_interface_async -EXPORT_SYMBOL_GPL vmlinux 0xe15f89e7 devm_gpiod_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xe16d421c cpuidle_register -EXPORT_SYMBOL_GPL vmlinux 0xe17131ea dw8250_setup_port -EXPORT_SYMBOL_GPL vmlinux 0xe183ca63 sdio_retune_hold_now -EXPORT_SYMBOL_GPL vmlinux 0xe193d49d udp_cmsg_send -EXPORT_SYMBOL_GPL vmlinux 0xe1a03452 ata_sff_wait_ready -EXPORT_SYMBOL_GPL vmlinux 0xe1a6654b __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe12a3763 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xe133c751 icc_provider_init +EXPORT_SYMBOL_GPL vmlinux 0xe14e82b9 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xe14f1889 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe1660208 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe167e25f fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xe168ae95 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe17eda3c elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1a0f14b __blkg_prfill_rwstat EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports -EXPORT_SYMBOL_GPL vmlinux 0xe1bf2f6d bpf_trace_run8 -EXPORT_SYMBOL_GPL vmlinux 0xe1c031b7 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xe1bf7416 thermal_zone_get_slope EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off -EXPORT_SYMBOL_GPL vmlinux 0xe1d18da3 fsnotify_init_mark -EXPORT_SYMBOL_GPL vmlinux 0xe204a0c9 __nvmem_layout_register -EXPORT_SYMBOL_GPL vmlinux 0xe2141794 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0xe2193108 regulator_unregister_supply_alias -EXPORT_SYMBOL_GPL vmlinux 0xe22a879f dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe1cfe91e samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xe1d00798 crypto_clone_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe1e1f72d devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1f855ec __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe2020a55 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xe20ebc18 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xe2146c0c cdx_dev_reset +EXPORT_SYMBOL_GPL vmlinux 0xe2213312 component_del +EXPORT_SYMBOL_GPL vmlinux 0xe2263b80 cpufreq_freq_attr_scaling_boost_freqs EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0xe23ada41 rz_mtu3_32bit_ch_read -EXPORT_SYMBOL_GPL vmlinux 0xe245c600 __kernel_write -EXPORT_SYMBOL_GPL vmlinux 0xe24c6bd3 folio_mkclean -EXPORT_SYMBOL_GPL vmlinux 0xe2513dba usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xe23b322c of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xe23e26cf perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xe2417cb0 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xe244db68 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xe24c25db devl_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0xe2522168 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe257bb32 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xe25b8456 tcp_unregister_ulp EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust -EXPORT_SYMBOL_GPL vmlinux 0xe27178b2 alarmtimer_get_rtcdev -EXPORT_SYMBOL_GPL vmlinux 0xe276857b unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe27912e4 dev_pm_opp_get_level -EXPORT_SYMBOL_GPL vmlinux 0xe28c917d pinctrl_utils_add_config -EXPORT_SYMBOL_GPL vmlinux 0xe29101bd pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0xe29724a1 mbox_free_channel -EXPORT_SYMBOL_GPL vmlinux 0xe29a7285 fsverity_get_digest -EXPORT_SYMBOL_GPL vmlinux 0xe29ec29a device_set_wakeup_capable -EXPORT_SYMBOL_GPL vmlinux 0xe2aaf5df fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe26692f5 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xe2740768 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xe297fc3d __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe2998216 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe29c36bf inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe2a67658 devl_unregister EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe2c4c07c file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xe2c33f3c tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe2c47af4 crypto_enqueue_request_head EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key EXPORT_SYMBOL_GPL vmlinux 0xe2d4f386 vcap_val_rule EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature -EXPORT_SYMBOL_GPL vmlinux 0xe2e42300 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe2dcf2df tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xe2e7475e cgrp_dfl_root EXPORT_SYMBOL_GPL vmlinux 0xe2ec293b sbitmap_queue_wake_up -EXPORT_SYMBOL_GPL vmlinux 0xe305b272 of_gen_pool_get -EXPORT_SYMBOL_GPL vmlinux 0xe30a6f2d trace_event_buffer_lock_reserve -EXPORT_SYMBOL_GPL vmlinux 0xe30e46b5 nvmem_del_cell_table -EXPORT_SYMBOL_GPL vmlinux 0xe30fbc80 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0xe31d8a52 extcon_sync -EXPORT_SYMBOL_GPL vmlinux 0xe3376739 mbox_chan_txdone -EXPORT_SYMBOL_GPL vmlinux 0xe35435d0 fsl_mc_bus_type -EXPORT_SYMBOL_GPL vmlinux 0xe36c4565 fsl_mc_bus_dprtc_type -EXPORT_SYMBOL_GPL vmlinux 0xe37db7be bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xe2ede286 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xe2f5fa46 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xe2f61b7e devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe2fe934f __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xe30e8a6b synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xe32732f7 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe329b40b dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0xe32d7157 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xe3344373 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xe33da624 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0xe3523498 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe353a4ee bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xe363d5b3 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0xe3643773 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xe36abd5e virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xe378e62b pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xe37e5288 usb_get_urb EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf EXPORT_SYMBOL_GPL vmlinux 0xe39d0794 usb_phy_roothub_exit -EXPORT_SYMBOL_GPL vmlinux 0xe3a178b4 dmaengine_desc_get_metadata_ptr -EXPORT_SYMBOL_GPL vmlinux 0xe3a94cd2 ahci_error_handler -EXPORT_SYMBOL_GPL vmlinux 0xe3ad398b kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xe3a0a6c4 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xe3a4e8f3 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xe3b083b8 edac_pci_create_generic_ctl EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete -EXPORT_SYMBOL_GPL vmlinux 0xe3b37417 dev_pm_opp_get_max_volt_latency -EXPORT_SYMBOL_GPL vmlinux 0xe3b8dec7 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0xe3ccee11 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe3bad504 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe3c65da5 mmc_regulator_enable_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xe3c7a001 dev_nit_active EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0xe3d3f949 vcap_keyfield_name -EXPORT_SYMBOL_GPL vmlinux 0xe3d4f87f device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xe3ce2386 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xe3d7a7db dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe3dd9d45 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xe3deff97 devlink_port_register_with_ops EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner -EXPORT_SYMBOL_GPL vmlinux 0xe3e61d6b shake_page -EXPORT_SYMBOL_GPL vmlinux 0xe40588b4 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xe3f052ff usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xe3f57d7d inet_csk_listen_stop EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv -EXPORT_SYMBOL_GPL vmlinux 0xe41498fd uprobe_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe41c7ac3 devm_tegra_core_dev_init_opp_table -EXPORT_SYMBOL_GPL vmlinux 0xe41d9797 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xe4165037 spi_transfer_cs_change_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe41aa54f gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe41f4628 devm_of_phy_optional_get EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print -EXPORT_SYMBOL_GPL vmlinux 0xe4301912 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xe4258111 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xe425e1be ata_qc_complete_multiple EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume EXPORT_SYMBOL_GPL vmlinux 0xe436e90c __dma_fence_unwrap_merge -EXPORT_SYMBOL_GPL vmlinux 0xe46a7bb4 usb_set_device_state -EXPORT_SYMBOL_GPL vmlinux 0xe4917ac4 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe4480b56 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xe4495afc __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xe460cc26 scsi_template_proc_dir +EXPORT_SYMBOL_GPL vmlinux 0xe46575f9 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xe468f32e divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xe474fb88 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe485345f blkcg_punt_bio_submit +EXPORT_SYMBOL_GPL vmlinux 0xe48ebee7 scsi_mode_select EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe496842f usb_autopm_get_interface EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot -EXPORT_SYMBOL_GPL vmlinux 0xe4a09cd2 to_nvdimm -EXPORT_SYMBOL_GPL vmlinux 0xe4a5a038 vcap_tc_flower_handler_ipv6_usage -EXPORT_SYMBOL_GPL vmlinux 0xe4ab6013 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xe49e2bf7 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xe4aab542 nf_checksum EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xe4b790ff spi_mem_dirmap_read EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str -EXPORT_SYMBOL_GPL vmlinux 0xe4b98093 bio_poll -EXPORT_SYMBOL_GPL vmlinux 0xe4bad758 devfreq_event_remove_edev -EXPORT_SYMBOL_GPL vmlinux 0xe4bc0d13 acpi_dev_get_next_consumer_dev -EXPORT_SYMBOL_GPL vmlinux 0xe4bf53c7 devm_pse_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe4bb90d5 set_task_ioprio EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0xe4c52b92 mtk_pinconf_adv_drive_get_raw -EXPORT_SYMBOL_GPL vmlinux 0xe4dc6262 nf_queue_entry_free EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state -EXPORT_SYMBOL_GPL vmlinux 0xe4ef08bb spi_mem_adjust_op_size -EXPORT_SYMBOL_GPL vmlinux 0xe4f1ab94 nd_cmd_in_size -EXPORT_SYMBOL_GPL vmlinux 0xe4f33212 dev_pm_genpd_suspend -EXPORT_SYMBOL_GPL vmlinux 0xe4f59390 dma_get_slave_caps -EXPORT_SYMBOL_GPL vmlinux 0xe4f750d5 fib_rules_register -EXPORT_SYMBOL_GPL vmlinux 0xe5006510 vp_legacy_get_status -EXPORT_SYMBOL_GPL vmlinux 0xe501cab7 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0xe502de71 nvmem_device_find -EXPORT_SYMBOL_GPL vmlinux 0xe50489d2 __clk_hw_register_mux -EXPORT_SYMBOL_GPL vmlinux 0xe506ac70 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0xe4e8c9b9 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xe4ecbcce iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xe4fb995e ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xe504a9f5 regmap_might_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe50818ca ethnl_cable_test_result EXPORT_SYMBOL_GPL vmlinux 0xe50893fd unregister_ftrace_function -EXPORT_SYMBOL_GPL vmlinux 0xe50f441d __device_reset -EXPORT_SYMBOL_GPL vmlinux 0xe511b787 __cdx_driver_register -EXPORT_SYMBOL_GPL vmlinux 0xe52437f9 thermal_cooling_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe52a59ad xhci_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xe5376ab8 pinconf_generic_dump_config -EXPORT_SYMBOL_GPL vmlinux 0xe544fcaa dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xe50ba61f posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xe526a53d ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xe531b57a led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xe538705b spi_split_transfers_maxwords +EXPORT_SYMBOL_GPL vmlinux 0xe542aa0e reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xe5440787 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe54f89eb mtk_clk_unregister_cpumuxes EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq -EXPORT_SYMBOL_GPL vmlinux 0xe5638916 pci_epc_mem_free_addr -EXPORT_SYMBOL_GPL vmlinux 0xe56e3ac5 bpf_trace_run1 -EXPORT_SYMBOL_GPL vmlinux 0xe57b6e30 dprc_scan_container -EXPORT_SYMBOL_GPL vmlinux 0xe582e1c3 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xe5591635 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5685c2b xfrm_dev_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xe56ad084 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe56d6a7a mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xe5834eb6 devfreq_event_remove_edev EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe58da9f8 find_asymmetric_key EXPORT_SYMBOL_GPL vmlinux 0xe58eb9d7 FSE_readNCount -EXPORT_SYMBOL_GPL vmlinux 0xe591ce32 rockchip_clk_register_plls -EXPORT_SYMBOL_GPL vmlinux 0xe5a2513a devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0xe59bfd3c inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xe5a5a785 pm_generic_thaw EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize -EXPORT_SYMBOL_GPL vmlinux 0xe5aa601b phy_driver_is_genphy_10g -EXPORT_SYMBOL_GPL vmlinux 0xe5b559b3 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0xe5b97382 skb_gso_validate_network_len -EXPORT_SYMBOL_GPL vmlinux 0xe5bc456c acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xe5aa87f1 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe5bdb876 ma35d1_reg_adc_clkdiv EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0xe5c33b7d sched_show_task -EXPORT_SYMBOL_GPL vmlinux 0xe5c573af gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xe5c53a46 fib_alias_hw_flags_set EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider -EXPORT_SYMBOL_GPL vmlinux 0xe5cd2ac5 blk_mq_alloc_sq_tag_set EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter -EXPORT_SYMBOL_GPL vmlinux 0xe5e2494a ata_bmdma_port_start32 -EXPORT_SYMBOL_GPL vmlinux 0xe5e3e93e clk_hw_determine_rate_no_reparent -EXPORT_SYMBOL_GPL vmlinux 0xe5e64433 clk_hw_get_rate -EXPORT_SYMBOL_GPL vmlinux 0xe605d459 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xe5fe9284 cpufreq_frequency_table_get_index EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xe610beb0 rz_mtu3_8bit_ch_read -EXPORT_SYMBOL_GPL vmlinux 0xe6177213 irq_domain_update_bus_token -EXPORT_SYMBOL_GPL vmlinux 0xe625cfc5 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xe60bc4bf wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xe61dce18 regulator_suspend_disable EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array -EXPORT_SYMBOL_GPL vmlinux 0xe63280e7 dev_pm_opp_find_bw_ceil -EXPORT_SYMBOL_GPL vmlinux 0xe638aa3a device_attach -EXPORT_SYMBOL_GPL vmlinux 0xe64a98fb perf_event_update_userpage -EXPORT_SYMBOL_GPL vmlinux 0xe64c129d udp_abort -EXPORT_SYMBOL_GPL vmlinux 0xe65750f1 dev_coredumpsg -EXPORT_SYMBOL_GPL vmlinux 0xe659e466 devm_mipi_dsi_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0xe66c8666 gpiochip_irq_unmap -EXPORT_SYMBOL_GPL vmlinux 0xe681e81f of_reserved_mem_device_init_by_name -EXPORT_SYMBOL_GPL vmlinux 0xe69c73fc cpufreq_dbs_governor_start -EXPORT_SYMBOL_GPL vmlinux 0xe6a6ba3e tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xe62b8569 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe634b9a4 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe63efd91 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xe63f3aa9 led_put +EXPORT_SYMBOL_GPL vmlinux 0xe643588e ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xe647f60c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xe65bf8a6 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xe66b3eb6 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0xe67d6cb5 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe67ec8c7 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xe68e211c md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xe68f2e43 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6987012 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xe698c3bb fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xe69d8a3f of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xe6a3bd6e acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xe6a6f26d of_mm_gpiochip_add_data EXPORT_SYMBOL_GPL vmlinux 0xe6aef439 __tracepoint_sk_data_ready -EXPORT_SYMBOL_GPL vmlinux 0xe6b85a94 gfn_to_hva -EXPORT_SYMBOL_GPL vmlinux 0xe6c55ce7 dev_pm_qos_update_user_latency_tolerance -EXPORT_SYMBOL_GPL vmlinux 0xe6c5dda9 devm_clk_hw_register_fixed_factor_index -EXPORT_SYMBOL_GPL vmlinux 0xe6e36ed8 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xe6b136c2 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xe6b5fa83 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xe6c441f0 vcap_tc_flower_handler_portnum_usage +EXPORT_SYMBOL_GPL vmlinux 0xe6cf00a5 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe6df60bd ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xe6e1ffdd anon_transport_class_register EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e42379 alloc_dax EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6e7534d clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xe6e8b95e usb_hcd_setup_local_mem EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f5ce8e tracing_cond_snapshot_data EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0xe6fa8f35 tps65912_regmap_config -EXPORT_SYMBOL_GPL vmlinux 0xe6fc869e of_hte_req_count EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert EXPORT_SYMBOL_GPL vmlinux 0xe70221d7 cppc_get_perf_caps -EXPORT_SYMBOL_GPL vmlinux 0xe7272c08 devl_register -EXPORT_SYMBOL_GPL vmlinux 0xe7288b72 devm_regulator_get -EXPORT_SYMBOL_GPL vmlinux 0xe72d389d gpiod_set_array_value_cansleep -EXPORT_SYMBOL_GPL vmlinux 0xe7382ef1 component_compare_of -EXPORT_SYMBOL_GPL vmlinux 0xe73d5635 of_changeset_action -EXPORT_SYMBOL_GPL vmlinux 0xe74fd44e mmc_prepare_busy_cmd +EXPORT_SYMBOL_GPL vmlinux 0xe7148430 xhci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xe7284428 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe7305266 dax_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xe7341755 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe734da5a do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xe7352368 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0xe744a810 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe74e64bf xfrm_audit_state_notfound_simple EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end -EXPORT_SYMBOL_GPL vmlinux 0xe7664a99 soc_device_match EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe769e02c reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe76a0240 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xe76c61a8 clk_hw_get_parent_index EXPORT_SYMBOL_GPL vmlinux 0xe77d5ef3 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0xe78165a8 ipv6_stub EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit -EXPORT_SYMBOL_GPL vmlinux 0xe78749a9 gpiochip_is_requested EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate -EXPORT_SYMBOL_GPL vmlinux 0xe7c91041 devm_create_dev_dax -EXPORT_SYMBOL_GPL vmlinux 0xe7cb363e sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xe7a74767 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7b55b26 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe7b81873 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xe7bd9356 iov_iter_is_aligned +EXPORT_SYMBOL_GPL vmlinux 0xe7bf8fb9 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xe7c179e9 bio_blkcg_css EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds -EXPORT_SYMBOL_GPL vmlinux 0xe7f54363 devm_rtc_allocate_device -EXPORT_SYMBOL_GPL vmlinux 0xe8089b02 __traceiter_pelt_cfs_tp -EXPORT_SYMBOL_GPL vmlinux 0xe8120b54 regmap_async_complete -EXPORT_SYMBOL_GPL vmlinux 0xe814c085 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xe7e40968 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xe7efbd60 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xe8007b28 zap_vma_ptes EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt -EXPORT_SYMBOL_GPL vmlinux 0xe81af95e acpi_storage_d3 -EXPORT_SYMBOL_GPL vmlinux 0xe81ddca3 fscrypt_symlink_getattr -EXPORT_SYMBOL_GPL vmlinux 0xe83fb8a7 gov_attr_set_get -EXPORT_SYMBOL_GPL vmlinux 0xe8436f6c iomap_file_buffered_write -EXPORT_SYMBOL_GPL vmlinux 0xe84dd5f4 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xe823a1c7 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xe828b085 devm_clk_hw_register_fixed_factor EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports -EXPORT_SYMBOL_GPL vmlinux 0xe8522ac9 rio_mport_write_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xe8561f4f fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xe8596d67 led_trigger_unregister EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85eeb74 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe86091d8 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xe86272d3 firmware_upload_register EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start -EXPORT_SYMBOL_GPL vmlinux 0xe880296b dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe86557a0 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xe86c7298 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe88304ac validate_xmit_xfrm EXPORT_SYMBOL_GPL vmlinux 0xe8979afb mas_prev_range +EXPORT_SYMBOL_GPL vmlinux 0xe89bfd08 pm_runtime_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xe8a772bd vcap_keyset_list_add -EXPORT_SYMBOL_GPL vmlinux 0xe8ae6577 usb_altnum_to_altsetting -EXPORT_SYMBOL_GPL vmlinux 0xe8b251f3 devlink_dpipe_match_put -EXPORT_SYMBOL_GPL vmlinux 0xe8b929bf ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xe8a79dcb nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0xe8ab8663 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe8adb6b5 power_supply_register_no_ws EXPORT_SYMBOL_GPL vmlinux 0xe8bc40c5 cn_netlink_send EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static -EXPORT_SYMBOL_GPL vmlinux 0xe8c2b55e ahci_set_em_messages -EXPORT_SYMBOL_GPL vmlinux 0xe8c6e4d8 ata_port_desc -EXPORT_SYMBOL_GPL vmlinux 0xe8cd37d6 devm_regmap_del_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0xe8d1c48a gpiod_put_array -EXPORT_SYMBOL_GPL vmlinux 0xe8d2716f pm_genpd_add_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xe8f85705 pktgen_xfrm_outer_mode_output -EXPORT_SYMBOL_GPL vmlinux 0xe901bccf sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xe8d20b8e ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xe8d83823 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xe900cea8 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe908737c tegra_bpmp_mrq_return EXPORT_SYMBOL_GPL vmlinux 0xe90c7659 k3_udma_glue_rx_dma_to_cppi5_addr EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read -EXPORT_SYMBOL_GPL vmlinux 0xe9360c3d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe9204334 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xe9372f06 devlink_linecard_nested_dl_set +EXPORT_SYMBOL_GPL vmlinux 0xe93c7c97 ahci_do_hardreset EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free EXPORT_SYMBOL_GPL vmlinux 0xe94986d6 sched_clock EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0xe961a5fe blk_stat_disable_accounting -EXPORT_SYMBOL_GPL vmlinux 0xe967a6e3 sdio_disable_func -EXPORT_SYMBOL_GPL vmlinux 0xe969f3e2 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0xe9701bb4 vp_legacy_get_driver_features -EXPORT_SYMBOL_GPL vmlinux 0xe97c3ff9 devl_params_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe98346c4 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0xe986c4ea mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xe95e66ec ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xe960408a con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xe96e9aa7 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe983b3fe fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xe9869b81 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe9897475 tegra_bpmp_free_mrq EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version -EXPORT_SYMBOL_GPL vmlinux 0xe9956416 xenbus_dev_error -EXPORT_SYMBOL_GPL vmlinux 0xe998d50b class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0xe9a7bfa1 meson_a1_parse_dt_extra -EXPORT_SYMBOL_GPL vmlinux 0xe9aa6436 devl_dpipe_headers_register -EXPORT_SYMBOL_GPL vmlinux 0xe9b5af86 bdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xe991d919 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xe9986a53 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xe99b8187 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9af0123 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xe9b8a4e6 kgdb_unregister_io_module EXPORT_SYMBOL_GPL vmlinux 0xe9bd3732 modify_ftrace_direct_nolock -EXPORT_SYMBOL_GPL vmlinux 0xe9c12f82 kvm_vcpu_unmap -EXPORT_SYMBOL_GPL vmlinux 0xe9c2d457 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0xe9c69e74 device_property_present EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d5de8f sock_diag_check_cookie EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xe9ea1e76 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0xe9efef3c crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe9da8574 __dev_fwnode_const +EXPORT_SYMBOL_GPL vmlinux 0xe9e58aa0 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xe9ec44f5 __phy_modify_mmd EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9f828c4 dev_pm_put_subsys_data EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit -EXPORT_SYMBOL_GPL vmlinux 0xea0d52a8 msi_device_has_isolated_msi +EXPORT_SYMBOL_GPL vmlinux 0xea0bbfa0 genphy_c45_plca_get_cfg +EXPORT_SYMBOL_GPL vmlinux 0xea1247fc fat_dir_empty EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd -EXPORT_SYMBOL_GPL vmlinux 0xea1669a9 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xea1359c8 debugfs_create_bool EXPORT_SYMBOL_GPL vmlinux 0xea178d19 register_ftrace_direct -EXPORT_SYMBOL_GPL vmlinux 0xea2f1de2 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xea18ed25 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xea1b46d6 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xea1dabca kill_device +EXPORT_SYMBOL_GPL vmlinux 0xea1ee63e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xea262ed1 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xea27322b buffer_migrate_folio_norefs EXPORT_SYMBOL_GPL vmlinux 0xea312c8c serdev_acpi_get_uart_resource -EXPORT_SYMBOL_GPL vmlinux 0xea348703 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xea37f027 stmpe_disable EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries -EXPORT_SYMBOL_GPL vmlinux 0xea458366 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xea39025b wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xea416633 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xea497e6f virtio_device_restore EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss -EXPORT_SYMBOL_GPL vmlinux 0xea6ca68f vcap_keyset_name -EXPORT_SYMBOL_GPL vmlinux 0xea715305 generic_online_page -EXPORT_SYMBOL_GPL vmlinux 0xea90464c virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0xea9848f7 ohci_resume -EXPORT_SYMBOL_GPL vmlinux 0xea9ad3e6 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0xeaa37c37 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xea52e33c ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xea532733 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xea5d7e72 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xea84233f hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xea89b87f inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xea9e3da5 crypto_register_skcipher EXPORT_SYMBOL_GPL vmlinux 0xeaa5f5ec __cpuhp_state_remove_instance -EXPORT_SYMBOL_GPL vmlinux 0xeaa806b7 rio_map_outb_region -EXPORT_SYMBOL_GPL vmlinux 0xeaaaeae7 evict_inodes -EXPORT_SYMBOL_GPL vmlinux 0xead14faa __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xeab4d43e kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xeac144b8 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xeaca0b26 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xead14d24 eventfd_ctx_fileget EXPORT_SYMBOL_GPL vmlinux 0xead3e41b __traceiter_cpu_frequency EXPORT_SYMBOL_GPL vmlinux 0xead54924 mctrl_gpio_to_gpiod EXPORT_SYMBOL_GPL vmlinux 0xead5c8e5 clk_bulk_prepare -EXPORT_SYMBOL_GPL vmlinux 0xeade5762 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xeadd2611 imx_pinconf_set_scu EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae5bae5 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xeaefc320 ata_sff_lost_interrupt EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be -EXPORT_SYMBOL_GPL vmlinux 0xeaf46fff crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0xeaf68f2e crypto_rng_reset EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 -EXPORT_SYMBOL_GPL vmlinux 0xeb199c01 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0xeb309c78 blk_clear_pm_only -EXPORT_SYMBOL_GPL vmlinux 0xeb3ba3c9 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xeafd1668 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeb07d6b5 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xeb0a356a regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xeb0b8f2d fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xeb157eb2 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xeb15f3b8 device_move +EXPORT_SYMBOL_GPL vmlinux 0xeb1ee7ae rdev_get_id EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock -EXPORT_SYMBOL_GPL vmlinux 0xeb4aa2ec skb_consume_udp -EXPORT_SYMBOL_GPL vmlinux 0xeb6b8e1c vcap_debugfs -EXPORT_SYMBOL_GPL vmlinux 0xeb7123ca pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xeb4f3e17 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xeb52f67e pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb6b9bf7 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xeb7522c5 inet6_sock_destruct EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe -EXPORT_SYMBOL_GPL vmlinux 0xeb8d42a0 dw_pcie_ep_init_complete -EXPORT_SYMBOL_GPL vmlinux 0xebb42f51 devm_regulator_get_optional -EXPORT_SYMBOL_GPL vmlinux 0xebb46673 scsi_dh_activate -EXPORT_SYMBOL_GPL vmlinux 0xebb7a9eb trace_event_raw_init -EXPORT_SYMBOL_GPL vmlinux 0xebb8a7dc __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xebc6fd6a xenbus_setup_ring EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms -EXPORT_SYMBOL_GPL vmlinux 0xebdc4228 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL vmlinux 0xebdc585d regmap_field_bulk_alloc -EXPORT_SYMBOL_GPL vmlinux 0xebe05a6d irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xebe31e74 nvmem_cell_read_variable_le_u32 -EXPORT_SYMBOL_GPL vmlinux 0xebe38a9c skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0xebe3de41 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xebdb4f7d bpf_trace_run12 EXPORT_SYMBOL_GPL vmlinux 0xebe496ca __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xebe9b517 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xebfdabf3 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xec02cd0e crypto_clone_tfm EXPORT_SYMBOL_GPL vmlinux 0xec02ebe0 phylink_init_eee -EXPORT_SYMBOL_GPL vmlinux 0xec0a502d acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0xec0cf693 phy_led_trigger_change_speed -EXPORT_SYMBOL_GPL vmlinux 0xec14a2dc fwnode_graph_get_next_endpoint -EXPORT_SYMBOL_GPL vmlinux 0xec3cc6ff thermal_of_cooling_device_register -EXPORT_SYMBOL_GPL vmlinux 0xec456210 regulator_bulk_enable -EXPORT_SYMBOL_GPL vmlinux 0xec4a11e1 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xec085f72 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xec0be775 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xec1374d4 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xec253723 i2c_client_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xec418ef7 ahci_platform_deassert_rsts EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask -EXPORT_SYMBOL_GPL vmlinux 0xec6e7d4f crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xec6ec26b fat_scan EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify -EXPORT_SYMBOL_GPL vmlinux 0xec776f1b blk_rq_is_poll -EXPORT_SYMBOL_GPL vmlinux 0xec83e5ea ata_sff_tf_read -EXPORT_SYMBOL_GPL vmlinux 0xec8ad1a2 fib6_new_table -EXPORT_SYMBOL_GPL vmlinux 0xec98626f regulator_is_supported_voltage -EXPORT_SYMBOL_GPL vmlinux 0xecb1ce00 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xec7c8593 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xec85cbde __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xec94f860 component_add +EXPORT_SYMBOL_GPL vmlinux 0xecae896a rio_mport_write_config_16 EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map -EXPORT_SYMBOL_GPL vmlinux 0xecc9476b rio_request_dma -EXPORT_SYMBOL_GPL vmlinux 0xecd30c0a inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xecbbef36 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xecc8243f clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xeccab1fa devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xecd7f36f xdp_rxq_info_unreg_mem_model EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read -EXPORT_SYMBOL_GPL vmlinux 0xecdafb81 acpi_device_fix_up_power -EXPORT_SYMBOL_GPL vmlinux 0xece4a114 of_clk_hw_register -EXPORT_SYMBOL_GPL vmlinux 0xece91f9b iommu_group_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0xed0f1f07 wm831x_device_shutdown -EXPORT_SYMBOL_GPL vmlinux 0xed23cff0 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xecfb9ea9 ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xed01a884 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xed0218b7 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xed1a0c72 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xed24536c io_uring_cmd_import_fixed EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse -EXPORT_SYMBOL_GPL vmlinux 0xed340235 kvm_vcpu_read_guest_page EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID -EXPORT_SYMBOL_GPL vmlinux 0xed483f75 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0xed5d5aac perf_aux_output_end -EXPORT_SYMBOL_GPL vmlinux 0xed636973 irq_gc_noop -EXPORT_SYMBOL_GPL vmlinux 0xed6cf286 sysfs_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0xed806276 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xed47f385 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xed4c8548 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xed4f62a2 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xed57390f pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xed6332e5 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xed7176d4 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0xed88d855 wakeup_sources_walk_next EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed8cda68 rtc_update_irq EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr -EXPORT_SYMBOL_GPL vmlinux 0xed9b4e8c debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0xedbaddec icc_provider_register -EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier -EXPORT_SYMBOL_GPL vmlinux 0xedd64bfd metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0xede2b08f kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xeda50853 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xeda78d14 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xedacbce9 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xedb3241e nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xedd5cad7 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xeddc0a41 l3mdev_master_upper_ifindex_by_index_rcu EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup -EXPORT_SYMBOL_GPL vmlinux 0xedf3aeff fsl_mc_resource_allocate -EXPORT_SYMBOL_GPL vmlinux 0xedf7b09e xhci_stop -EXPORT_SYMBOL_GPL vmlinux 0xedfbb0b0 devm_ti_sci_get_by_phandle -EXPORT_SYMBOL_GPL vmlinux 0xedff9db1 blk_mq_start_stopped_hw_queue -EXPORT_SYMBOL_GPL vmlinux 0xee0c5604 rockchip_register_restart_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee2430a5 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0xee2c66f9 iort_get_rmr_sids -EXPORT_SYMBOL_GPL vmlinux 0xee2f00c0 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xee04593d platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xee0647ee fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xee139ed3 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xee16a0b3 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xee18842e i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xee293885 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xee2d601e sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xee2f9558 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0xee328da5 acpi_get_acpi_dev EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier -EXPORT_SYMBOL_GPL vmlinux 0xee41595d clk_fixed_rate_ops -EXPORT_SYMBOL_GPL vmlinux 0xee46bd4d fwnode_get_phy_node -EXPORT_SYMBOL_GPL vmlinux 0xee4e549a synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xee45aa0b serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xee477eca dev_pm_qos_expose_flags EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee5c9eeb dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xee5d72b0 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xee612839 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xee67df24 ip_build_and_send_pkt EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xee74a922 __tracepoint_console -EXPORT_SYMBOL_GPL vmlinux 0xee79a988 of_platform_default_populate -EXPORT_SYMBOL_GPL vmlinux 0xee87a815 spi_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xee8d4d18 vcap_tc_flower_handler_ipv4_usage -EXPORT_SYMBOL_GPL vmlinux 0xee91f891 __traceiter_ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xeed222e6 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xee82b541 extract_iter_to_sg +EXPORT_SYMBOL_GPL vmlinux 0xee8dd7b9 replace_page_cache_folio +EXPORT_SYMBOL_GPL vmlinux 0xee93ffdb bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xee954843 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xee9a6f69 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xee9d673f skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xee9fca88 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xeeae9f19 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xeeaf3556 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xeeafca4e ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xeeb07760 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xeeb6d348 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xeec28def devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xeec8fe29 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xeeccdeb8 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xeed08b54 driver_deferred_probe_check_state EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported -EXPORT_SYMBOL_GPL vmlinux 0xeee16a70 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xeee43ee3 devm_krealloc EXPORT_SYMBOL_GPL vmlinux 0xeee4b172 mnt_idmap_put -EXPORT_SYMBOL_GPL vmlinux 0xeee50084 of_usb_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0xeeeeae64 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0xeef49905 blkg_conf_init +EXPORT_SYMBOL_GPL vmlinux 0xeef55e0b acpi_dev_clear_dependencies EXPORT_SYMBOL_GPL vmlinux 0xeef68434 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0xef15ab0b verify_signature -EXPORT_SYMBOL_GPL vmlinux 0xef17e51b usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xef0ab1b6 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xef1244b2 crypto_unregister_algs EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef265f96 pin_user_pages_fast EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put -EXPORT_SYMBOL_GPL vmlinux 0xef2c0eea __phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xef2e07d3 fuse_dev_free -EXPORT_SYMBOL_GPL vmlinux 0xef307fd8 devm_pinctrl_unregister EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0xef3feaee virtqueue_kick EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0xef4d005b sk_msg_trim -EXPORT_SYMBOL_GPL vmlinux 0xef52764f skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xef46d528 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xef4bbbf7 extcon_dev_free EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata EXPORT_SYMBOL_GPL vmlinux 0xef67ec35 __tracepoint_neigh_update -EXPORT_SYMBOL_GPL vmlinux 0xef689dc5 kvm_write_guest_offset_cached EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0xef6c75ef __traceiter_ata_tf_load EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance -EXPORT_SYMBOL_GPL vmlinux 0xef7c67f6 sched_numa_find_nth_cpu -EXPORT_SYMBOL_GPL vmlinux 0xef7ce2f2 usb_intf_get_dma_device -EXPORT_SYMBOL_GPL vmlinux 0xef8a70ca mtk_pinconf_drive_get_rev1 -EXPORT_SYMBOL_GPL vmlinux 0xef8e88f6 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xef7570b3 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xef7d5ea3 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xef89d4c2 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xef8c3dae devm_release_action EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last -EXPORT_SYMBOL_GPL vmlinux 0xef995c23 __traceiter_br_fdb_update EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier -EXPORT_SYMBOL_GPL vmlinux 0xefb02703 xfrm_bpf_md_dst -EXPORT_SYMBOL_GPL vmlinux 0xefb0e3db ata_sff_qc_issue -EXPORT_SYMBOL_GPL vmlinux 0xefb4615a nexthop_select_path -EXPORT_SYMBOL_GPL vmlinux 0xefb7e921 devm_hte_register_chip -EXPORT_SYMBOL_GPL vmlinux 0xefc503fe wm8400_reset_codec_reg_cache -EXPORT_SYMBOL_GPL vmlinux 0xefde665b pm_runtime_force_suspend -EXPORT_SYMBOL_GPL vmlinux 0xefe6e2b9 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xefac87fe usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xefafa522 devl_trylock +EXPORT_SYMBOL_GPL vmlinux 0xefc7c3a1 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xefc9d6bd kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xefde1fc5 rdev_get_regmap EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xeff416ff iort_put_rmr_sids EXPORT_SYMBOL_GPL vmlinux 0xeff5f3a9 lwtunnel_valid_encap_type -EXPORT_SYMBOL_GPL vmlinux 0xeffe83cb crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0xefffed69 anon_inode_getfd_secure -EXPORT_SYMBOL_GPL vmlinux 0xf0044940 serial8250_rpm_get_tx -EXPORT_SYMBOL_GPL vmlinux 0xf0111149 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xf005d3d3 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xf00966b1 amba_device_alloc EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy -EXPORT_SYMBOL_GPL vmlinux 0xf0143b42 is_dock_device -EXPORT_SYMBOL_GPL vmlinux 0xf03478a9 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf0264d8c perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xf0279da4 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xf02e7c6e device_add +EXPORT_SYMBOL_GPL vmlinux 0xf0406035 devl_unlock EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle -EXPORT_SYMBOL_GPL vmlinux 0xf048be1d pinctrl_dev_get_drvdata -EXPORT_SYMBOL_GPL vmlinux 0xf04bf543 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0xf059c57c irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xf0520aa8 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf05927ca regulator_irq_helper EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address -EXPORT_SYMBOL_GPL vmlinux 0xf05fd91d usb_reset_configuration -EXPORT_SYMBOL_GPL vmlinux 0xf0616e7a sched_numa_hop_mask EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0xf06cd0ce tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xf070c6c4 blk_mq_virtio_map_queues -EXPORT_SYMBOL_GPL vmlinux 0xf0721820 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0xf079b227 watchdog_unregister_device -EXPORT_SYMBOL_GPL vmlinux 0xf07ba6f9 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf071eb8f mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xf08409d4 of_device_compatible_match +EXPORT_SYMBOL_GPL vmlinux 0xf085c08e dev_pm_opp_find_freq_floor EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream -EXPORT_SYMBOL_GPL vmlinux 0xf09c4480 xfer_to_guest_mode_handle_work -EXPORT_SYMBOL_GPL vmlinux 0xf0a0c4d7 serial8250_rpm_put_tx -EXPORT_SYMBOL_GPL vmlinux 0xf0b80183 dev_get_regmap -EXPORT_SYMBOL_GPL vmlinux 0xf0ba7158 fat_truncate_time -EXPORT_SYMBOL_GPL vmlinux 0xf0e463d9 mmc_app_cmd -EXPORT_SYMBOL_GPL vmlinux 0xf0e46d8a fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xf09a698f bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xf0bd779c cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xf0ca8b86 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf0cb106a dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xf0e0394c fsl_mc_bus_dpdmai_type EXPORT_SYMBOL_GPL vmlinux 0xf0e52dc0 __tracepoint_ata_exec_command -EXPORT_SYMBOL_GPL vmlinux 0xf0e67040 lwtunnel_output -EXPORT_SYMBOL_GPL vmlinux 0xf0ee445a iomap_release_folio -EXPORT_SYMBOL_GPL vmlinux 0xf0f0e4db mmc_get_ext_csd -EXPORT_SYMBOL_GPL vmlinux 0xf0f8ed37 rpi_firmware_find_node EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted -EXPORT_SYMBOL_GPL vmlinux 0xf110cffd i2c_match_id -EXPORT_SYMBOL_GPL vmlinux 0xf111d8e6 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xf101f379 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf104e6d1 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xf1109c14 usb_disable_autosuspend EXPORT_SYMBOL_GPL vmlinux 0xf1124ecd sfp_upstream_set_signal_rate +EXPORT_SYMBOL_GPL vmlinux 0xf11d94d2 regmap_bulk_read EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll -EXPORT_SYMBOL_GPL vmlinux 0xf152eb45 spi_take_timestamp_pre -EXPORT_SYMBOL_GPL vmlinux 0xf16205f2 ata_sff_tf_load -EXPORT_SYMBOL_GPL vmlinux 0xf1648e1d dev_pm_opp_free_cpufreq_table -EXPORT_SYMBOL_GPL vmlinux 0xf16b3aa2 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xf1244a88 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xf126a28e fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf127b010 fscrypt_prepare_lookup_partial +EXPORT_SYMBOL_GPL vmlinux 0xf132b846 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xf155f7d1 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xf15ec638 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf164e9f1 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xf16913bf devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf1692656 __fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xf171f776 ip_route_output_tunnel EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0xf1945b72 ata_bmdma_status -EXPORT_SYMBOL_GPL vmlinux 0xf1952930 ahci_platform_suspend -EXPORT_SYMBOL_GPL vmlinux 0xf1a458b4 devm_pm_runtime_enable -EXPORT_SYMBOL_GPL vmlinux 0xf1c4046f devm_gpiod_get_array_optional -EXPORT_SYMBOL_GPL vmlinux 0xf1ce794e phylink_connect_phy -EXPORT_SYMBOL_GPL vmlinux 0xf1d46ac9 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0xf1d55c67 devm_hwmon_device_register_with_groups -EXPORT_SYMBOL_GPL vmlinux 0xf1dd7741 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xf19584ed pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xf1a904a9 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf1bcf2c4 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf1d1978e exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xf1e308a2 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xf1ec754c cros_ec_get_sensor_count EXPORT_SYMBOL_GPL vmlinux 0xf1ecda92 vcap_set_rule_set_keyset -EXPORT_SYMBOL_GPL vmlinux 0xf1f3cddf cdx_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1f59463 virtqueue_add_sgs EXPORT_SYMBOL_GPL vmlinux 0xf1ffb44f vcap_rule_set_counter_id -EXPORT_SYMBOL_GPL vmlinux 0xf207ff40 tps6586x_get_version -EXPORT_SYMBOL_GPL vmlinux 0xf21ca457 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf20220f7 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xf209572e __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xf2178686 add_disk_randomness EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0xf230046b xenbus_dev_changed -EXPORT_SYMBOL_GPL vmlinux 0xf2370168 sdio_readsb -EXPORT_SYMBOL_GPL vmlinux 0xf23eb457 devm_of_phy_optional_get -EXPORT_SYMBOL_GPL vmlinux 0xf246e2d8 __regmap_init -EXPORT_SYMBOL_GPL vmlinux 0xf24c1048 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0xf25203c2 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0xf252dc94 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xf2200ac1 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xf220bbe2 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xf245e499 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf250e11c led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf25c4d85 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xf26e1d87 mtk_clk_register_pllfhs +EXPORT_SYMBOL_GPL vmlinux 0xf26fc292 of_regulator_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xf2789921 __netdev_watchdog_up EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf27fe67d gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf28015df crypto_register_aead EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 -EXPORT_SYMBOL_GPL vmlinux 0xf28ba70a wbt_disable_default EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on -EXPORT_SYMBOL_GPL vmlinux 0xf2ab98a6 nd_region_dev -EXPORT_SYMBOL_GPL vmlinux 0xf2b2a35e query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xf299dd3b mtk_clk_dummy_ops EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xf2b45652 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0xf2befa4e regulator_get_mode -EXPORT_SYMBOL_GPL vmlinux 0xf2bfc0eb aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0xf2cc5416 devl_sb_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf2cd1c11 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0xf2ce68be power_supply_put -EXPORT_SYMBOL_GPL vmlinux 0xf2f16e9f pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xf2ba15fc fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0xf2c44b9c pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2ca382b usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf2ced075 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xf2d999c1 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf2eb1295 usb_check_bulk_endpoints +EXPORT_SYMBOL_GPL vmlinux 0xf2f386c9 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf2f5f098 usb_phy_set_charger_current EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2fc614f attribute_container_unregister EXPORT_SYMBOL_GPL vmlinux 0xf2ff4bc2 serial8250_em485_supported -EXPORT_SYMBOL_GPL vmlinux 0xf3006ac3 cn_add_callback EXPORT_SYMBOL_GPL vmlinux 0xf3083a1d phylink_destroy -EXPORT_SYMBOL_GPL vmlinux 0xf309e257 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xf308efbe cdx_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf30983a9 bpfilter_ops EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read -EXPORT_SYMBOL_GPL vmlinux 0xf3172db9 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xf3191ee3 regulator_unregister_supply_alias EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0xf3271e58 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xf32b61d1 regulator_map_voltage_iterate EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 -EXPORT_SYMBOL_GPL vmlinux 0xf332eff9 meson_clk_mpll_ops -EXPORT_SYMBOL_GPL vmlinux 0xf334d4b0 blk_queue_can_use_dma_map_merging -EXPORT_SYMBOL_GPL vmlinux 0xf33bbe51 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xf34cdc30 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0xf350d713 backing_file_real_path EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key -EXPORT_SYMBOL_GPL vmlinux 0xf357a193 i2c_acpi_new_device_by_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf357dc4a blk_crypto_evict_key -EXPORT_SYMBOL_GPL vmlinux 0xf37146b4 xfrm_audit_state_add -EXPORT_SYMBOL_GPL vmlinux 0xf3780dde ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf35abc42 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xf35d590b devl_rate_node_create +EXPORT_SYMBOL_GPL vmlinux 0xf366fde5 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xf3715057 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf372b0d6 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xf3756ea3 cgroup_get_from_path EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf37bff65 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xf37b3829 sdio_claim_host EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0xf386ae0c regulator_bulk_disable -EXPORT_SYMBOL_GPL vmlinux 0xf38b15b6 bgmac_enet_resume -EXPORT_SYMBOL_GPL vmlinux 0xf38badbc tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xf389313a usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xf38dbeae xfrm_audit_state_add EXPORT_SYMBOL_GPL vmlinux 0xf3a09fe7 crypto_has_kpp -EXPORT_SYMBOL_GPL vmlinux 0xf3acdcad bio_trim -EXPORT_SYMBOL_GPL vmlinux 0xf3afd6ae wakeup_sources_walk_start -EXPORT_SYMBOL_GPL vmlinux 0xf3b1ca2c virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf3a2e459 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xf3a59527 sk_msg_is_readable EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3c0f0a6 cgroup_get_from_id -EXPORT_SYMBOL_GPL vmlinux 0xf3c21ab4 trace_output_call -EXPORT_SYMBOL_GPL vmlinux 0xf3d28533 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0xf3da10fd of_pci_get_max_link_speed -EXPORT_SYMBOL_GPL vmlinux 0xf3de006e of_pci_parse_bus_range -EXPORT_SYMBOL_GPL vmlinux 0xf3e081f7 fib6_rule_default -EXPORT_SYMBOL_GPL vmlinux 0xf3e36617 gnttab_map_refs -EXPORT_SYMBOL_GPL vmlinux 0xf3ee1999 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xf3c3011e sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xf3f3163a sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xf41db173 vmf_insert_pfn_pmd +EXPORT_SYMBOL_GPL vmlinux 0xf41e6228 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xf41f9938 espintcp_push_skb EXPORT_SYMBOL_GPL vmlinux 0xf421d47e vcap_copy_rule -EXPORT_SYMBOL_GPL vmlinux 0xf44cff8b udp_destruct_common -EXPORT_SYMBOL_GPL vmlinux 0xf457fc12 i2c_acpi_find_bus_speed -EXPORT_SYMBOL_GPL vmlinux 0xf45b8c31 em_dev_register_perf_domain -EXPORT_SYMBOL_GPL vmlinux 0xf468437a PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xf423fcfa ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xf4291d16 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xf42f83b9 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xf43114bd imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0xf43cd667 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xf441b10d ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xf454dda8 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xf455c03c clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf459e0e4 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xf45b8048 generic_handle_domain_irq_safe EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause -EXPORT_SYMBOL_GPL vmlinux 0xf46c58db crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf46cd2e2 clk_hw_init_rate_request +EXPORT_SYMBOL_GPL vmlinux 0xf46ebc38 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xf47248cf devl_lock EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit -EXPORT_SYMBOL_GPL vmlinux 0xf4777417 fsl_mc_bus_dpsw_type -EXPORT_SYMBOL_GPL vmlinux 0xf478205b alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xf48515ce tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xf4a47948 scsi_autopm_get_device EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal -EXPORT_SYMBOL_GPL vmlinux 0xf4afad7e sdio_f0_writeb -EXPORT_SYMBOL_GPL vmlinux 0xf4b489be __kvm_set_memory_region -EXPORT_SYMBOL_GPL vmlinux 0xf4c5f5e9 __blkg_prfill_rwstat -EXPORT_SYMBOL_GPL vmlinux 0xf4c98bde meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4bca554 usb_phy_roothub_resume EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release -EXPORT_SYMBOL_GPL vmlinux 0xf4d02266 regulator_bulk_free -EXPORT_SYMBOL_GPL vmlinux 0xf4f3ce4f usb_autopm_put_interface -EXPORT_SYMBOL_GPL vmlinux 0xf4f592f9 nf_hook_entries_insert_raw -EXPORT_SYMBOL_GPL vmlinux 0xf536386e phy_modify -EXPORT_SYMBOL_GPL vmlinux 0xf536cfcb wwan_register_ops -EXPORT_SYMBOL_GPL vmlinux 0xf53b4e53 page_cache_ra_unbounded -EXPORT_SYMBOL_GPL vmlinux 0xf543b4fe pm_generic_restore -EXPORT_SYMBOL_GPL vmlinux 0xf54afe78 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xf4cf8d75 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xf4f3129c ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf5118c45 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xf51a6dab irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xf538d844 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xf5447439 __traceiter_rpm_return_int EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm -EXPORT_SYMBOL_GPL vmlinux 0xf550212a get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0xf552ead6 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xf54f2cd2 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf551132d usb_match_id EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock -EXPORT_SYMBOL_GPL vmlinux 0xf563a69a event_triggers_post_call -EXPORT_SYMBOL_GPL vmlinux 0xf57d7fd4 devm_regulator_put -EXPORT_SYMBOL_GPL vmlinux 0xf58ab8ff sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0xf591655a pci_epc_linkdown -EXPORT_SYMBOL_GPL vmlinux 0xf59acf7a devm_spi_register_controller -EXPORT_SYMBOL_GPL vmlinux 0xf59cb4ca phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xf55b9c05 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xf5606854 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xf56b4404 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xf575d983 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xf576bee6 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf581be20 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xf59f3488 __traceiter_block_rq_insert EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0xf5a97789 dw_pcie_host_deinit -EXPORT_SYMBOL_GPL vmlinux 0xf5b92437 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0xf5ba3957 call_switchdev_notifiers -EXPORT_SYMBOL_GPL vmlinux 0xf5c09b66 relay_open -EXPORT_SYMBOL_GPL vmlinux 0xf5d11e28 __rio_local_read_config_32 -EXPORT_SYMBOL_GPL vmlinux 0xf5d38502 device_rename -EXPORT_SYMBOL_GPL vmlinux 0xf5e6f782 __regmap_init_i2c -EXPORT_SYMBOL_GPL vmlinux 0xf5f1e67f crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0xf5f23215 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf5ade83b tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xf5b1991d usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xf5bfe9ab raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf5d070a8 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xf5da7b06 vfs_fallocate EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node -EXPORT_SYMBOL_GPL vmlinux 0xf6053363 i2c_dw_configure_master -EXPORT_SYMBOL_GPL vmlinux 0xf60d6f61 blk_mq_sched_try_insert_merge -EXPORT_SYMBOL_GPL vmlinux 0xf60f69b8 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xf5ff5920 user_update +EXPORT_SYMBOL_GPL vmlinux 0xf5ffb0a7 folio_test_hugetlb +EXPORT_SYMBOL_GPL vmlinux 0xf601efe2 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf60ca122 kvm_vcpu_is_visible_gfn EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall -EXPORT_SYMBOL_GPL vmlinux 0xf62f9eb2 of_genpd_parse_idle_states -EXPORT_SYMBOL_GPL vmlinux 0xf631933c tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xf625b120 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xf631c0da pci_epc_clear_bar EXPORT_SYMBOL_GPL vmlinux 0xf63f003a acpi_gpio_get_io_resource -EXPORT_SYMBOL_GPL vmlinux 0xf64a6a3a rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6447f8c ahci_check_ready EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0xf64cdb96 set_secondary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0xf64e2592 i2c_get_device_id -EXPORT_SYMBOL_GPL vmlinux 0xf65a3c0e ncsi_vlan_rx_kill_vid -EXPORT_SYMBOL_GPL vmlinux 0xf65ec32e fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf654ba70 virtqueue_enable_cb_prepare EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync -EXPORT_SYMBOL_GPL vmlinux 0xf67fc99b xdp_return_frame_bulk -EXPORT_SYMBOL_GPL vmlinux 0xf680370f pwm_get -EXPORT_SYMBOL_GPL vmlinux 0xf68278eb rio_unregister_scan -EXPORT_SYMBOL_GPL vmlinux 0xf6865d55 usb_hcd_check_unlink_urb -EXPORT_SYMBOL_GPL vmlinux 0xf69a26c9 dev_pm_opp_find_freq_exact -EXPORT_SYMBOL_GPL vmlinux 0xf69fbf2b kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xf6709cee bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf67c94ca to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf687a672 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xf6896b8d skb_tstamp_tx EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects -EXPORT_SYMBOL_GPL vmlinux 0xf6ac81a4 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xf6a3b54e ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6a75fdf ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xf6abed17 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf6af9922 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xf6b6e5ff pci_hp_create_module_link EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable -EXPORT_SYMBOL_GPL vmlinux 0xf6ca417e tegra_mc_get_carveout_info -EXPORT_SYMBOL_GPL vmlinux 0xf6db3eda is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf6cc0e25 bpf_event_output EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge -EXPORT_SYMBOL_GPL vmlinux 0xf6e8d791 gpiochip_add_pingroup_range -EXPORT_SYMBOL_GPL vmlinux 0xf6f307de devlink_dpipe_action_put -EXPORT_SYMBOL_GPL vmlinux 0xf6fbaf33 devm_of_phy_provider_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf7141210 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xf70f6df0 serial8250_update_uartclk EXPORT_SYMBOL_GPL vmlinux 0xf7145dc4 drop_reasons_unregister_subsys -EXPORT_SYMBOL_GPL vmlinux 0xf71681cb pm_genpd_opp_to_performance_state -EXPORT_SYMBOL_GPL vmlinux 0xf729f615 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xf7214a46 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xf722b441 devlink_free EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size -EXPORT_SYMBOL_GPL vmlinux 0xf730efab led_blink_set_oneshot EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits -EXPORT_SYMBOL_GPL vmlinux 0xf744966b skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xf744d8f2 mpc8xxx_spi_rx_buf_u8 EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit -EXPORT_SYMBOL_GPL vmlinux 0xf750a2db fat_detach -EXPORT_SYMBOL_GPL vmlinux 0xf7510806 spi_async -EXPORT_SYMBOL_GPL vmlinux 0xf751c05e driver_find -EXPORT_SYMBOL_GPL vmlinux 0xf755f256 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0xf75a505c gpiod_set_value -EXPORT_SYMBOL_GPL vmlinux 0xf75d28e8 scsi_template_proc_dir -EXPORT_SYMBOL_GPL vmlinux 0xf75d7a45 meson_axg_pmx_ops -EXPORT_SYMBOL_GPL vmlinux 0xf7709f51 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xf7504ac4 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xf7545ac0 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xf75ac102 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xf75dd5a9 irq_gc_unmask_enable_reg EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks -EXPORT_SYMBOL_GPL vmlinux 0xf77f3f84 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf7791b7e fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf7804028 rio_local_get_device_id EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7863d6f hwmon_device_register_with_info EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi -EXPORT_SYMBOL_GPL vmlinux 0xf7a9106c ata_bmdma32_port_ops -EXPORT_SYMBOL_GPL vmlinux 0xf7aaa308 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xf7941a6f dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xf796a44a of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xf7a32f18 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf7ade5c3 __traceiter_wbc_writepage EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7bb245d cgroup_get_from_fd EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start -EXPORT_SYMBOL_GPL vmlinux 0xf7c29b6e __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf7c384c0 virtqueue_get_used_addr EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0xf80d2343 regcache_cache_bypass -EXPORT_SYMBOL_GPL vmlinux 0xf80dc872 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf7c70353 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf7e0cfd9 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xf806cae7 cpufreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf8184a71 regulator_bulk_set_supply_names EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf81e03fb relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xf81f8c5f devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf82399a1 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xf82ed3f7 acpi_subsys_suspend EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0xf832da3f of_property_read_u64 -EXPORT_SYMBOL_GPL vmlinux 0xf851ff47 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xf83956b2 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xf840a9bb pci_user_write_config_word EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set -EXPORT_SYMBOL_GPL vmlinux 0xf85a766c mdiobus_c45_modify +EXPORT_SYMBOL_GPL vmlinux 0xf8578fc8 devm_clk_hw_register_fixed_factor_parent_hw +EXPORT_SYMBOL_GPL vmlinux 0xf85a7354 mtk_pinconf_bias_set EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk -EXPORT_SYMBOL_GPL vmlinux 0xf873a1df regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf871384e xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xf876c163 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xf882001f phy_led_trigger_change_speed EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len -EXPORT_SYMBOL_GPL vmlinux 0xf88dc054 xfrm_audit_state_delete -EXPORT_SYMBOL_GPL vmlinux 0xf890a93b pstore_unregister -EXPORT_SYMBOL_GPL vmlinux 0xf8be937a mmu_notifier_put -EXPORT_SYMBOL_GPL vmlinux 0xf8cbf004 devlink_sb_register -EXPORT_SYMBOL_GPL vmlinux 0xf8cd3902 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0xf8d05520 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0xf8def4cd hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xf8930602 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xf8a5f07f gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xf8c4afba __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf8c6ba1f sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xf8d9abd3 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xf8dd9622 pci_iov_vf_id EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f424d0 clone_private_mount EXPORT_SYMBOL_GPL vmlinux 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL vmlinux 0xf8ff4bc9 dpcon_reset EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable -EXPORT_SYMBOL_GPL vmlinux 0xf90f824e ata_link_next -EXPORT_SYMBOL_GPL vmlinux 0xf91253f1 vcap_find_keystream_keysets -EXPORT_SYMBOL_GPL vmlinux 0xf9196d9a pinctrl_generic_add_group -EXPORT_SYMBOL_GPL vmlinux 0xf91a408f regcache_sync -EXPORT_SYMBOL_GPL vmlinux 0xf9206036 crypto_unregister_acomps -EXPORT_SYMBOL_GPL vmlinux 0xf9354307 __traceiter_ipi_send_cpumask -EXPORT_SYMBOL_GPL vmlinux 0xf94beb4e icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xf90e572e dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xf90fca2b of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xf9134a12 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf917371e inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xf930da77 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xf94b0a9e regmap_add_irq_chip EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf -EXPORT_SYMBOL_GPL vmlinux 0xf95a9471 scsi_host_complete_all_commands -EXPORT_SYMBOL_GPL vmlinux 0xf95aaa1b rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xf964f567 dev_attr_ncq_prio_supported EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version -EXPORT_SYMBOL_GPL vmlinux 0xf977190c kvm_read_guest_cached -EXPORT_SYMBOL_GPL vmlinux 0xf9797053 wm831x_bulk_read -EXPORT_SYMBOL_GPL vmlinux 0xf9830531 devl_region_create -EXPORT_SYMBOL_GPL vmlinux 0xf9891c9c ip6_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0xf98fde3e tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0xf993b362 devlink_params_register -EXPORT_SYMBOL_GPL vmlinux 0xf99555be gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xf96b4167 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xf981b3ca kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xf98f1ea3 dma_pci_p2pdma_supported +EXPORT_SYMBOL_GPL vmlinux 0xf9919539 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xf995b3ca uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xf999c9a0 badblocks_clear EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xf9a1ec56 power_supply_class EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi -EXPORT_SYMBOL_GPL vmlinux 0xf9abd6ea vp_modern_get_features -EXPORT_SYMBOL_GPL vmlinux 0xf9b2728d regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf9aaf6cf virtqueue_resize EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free -EXPORT_SYMBOL_GPL vmlinux 0xf9bff70a usb_role_switch_register -EXPORT_SYMBOL_GPL vmlinux 0xf9c05176 ata_bmdma_start -EXPORT_SYMBOL_GPL vmlinux 0xf9c206a3 clk_gate_is_enabled -EXPORT_SYMBOL_GPL vmlinux 0xf9c531fd mark_page_dirty -EXPORT_SYMBOL_GPL vmlinux 0xf9cca3e6 sdio_writesb -EXPORT_SYMBOL_GPL vmlinux 0xf9de7082 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0xfa04b106 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xf9ba898b fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0xf9bf8349 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf9c1a8cd devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xf9c2f029 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf9ce8f9f disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xf9d9920b pci_p2pmem_publish +EXPORT_SYMBOL_GPL vmlinux 0xf9debcf3 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf9e3caf1 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xf9ec22b3 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xf9f8f0f9 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xfa03e047 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xfa0809ed debugfs_create_file_size EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops EXPORT_SYMBOL_GPL vmlinux 0xfa20488d tcp_parse_mss_option -EXPORT_SYMBOL_GPL vmlinux 0xfa263dac acpi_dev_gpio_irq_wake_get_by +EXPORT_SYMBOL_GPL vmlinux 0xfa221739 failover_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa24b166 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xfa26b83d addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xfa2d569a tcpv6_prot EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue -EXPORT_SYMBOL_GPL vmlinux 0xfa39d366 bpf_trace_run4 -EXPORT_SYMBOL_GPL vmlinux 0xfa3d4346 pci_disable_pri -EXPORT_SYMBOL_GPL vmlinux 0xfa4078d5 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa3ee2ed udp_destruct_common EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted -EXPORT_SYMBOL_GPL vmlinux 0xfa587afc iommu_present -EXPORT_SYMBOL_GPL vmlinux 0xfa59ff12 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0xfa5f6f9d pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0xfa62c584 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xfa4b7ed9 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xfa4cbaac cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xfa6210d5 tty_encode_baud_rate EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node -EXPORT_SYMBOL_GPL vmlinux 0xfa7e73e7 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0xfa9a0308 fw_devlink_purge_absent_suppliers -EXPORT_SYMBOL_GPL vmlinux 0xfa9deb0b scsi_host_busy_iter -EXPORT_SYMBOL_GPL vmlinux 0xfa9e4023 sysfs_group_change_owner -EXPORT_SYMBOL_GPL vmlinux 0xfa9e8fdc edac_device_handle_ue_count -EXPORT_SYMBOL_GPL vmlinux 0xfaad9b95 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xfa788e37 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xfa7a86af ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xfa8266c2 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xfaa519fd dev_attr_sw_activity EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line -EXPORT_SYMBOL_GPL vmlinux 0xfab73187 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0xfacacf2a pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xfad6755d rio_unmap_outb_region EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax -EXPORT_SYMBOL_GPL vmlinux 0xfaf56c7f perf_aux_output_begin -EXPORT_SYMBOL_GPL vmlinux 0xfaff5431 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xfb006705 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xfb03659c nvmem_add_one_cell +EXPORT_SYMBOL_GPL vmlinux 0xfb0ae64c unregister_wide_hw_breakpoint EXPORT_SYMBOL_GPL vmlinux 0xfb0d7867 __tracepoint_kfree_skb -EXPORT_SYMBOL_GPL vmlinux 0xfb169793 thermal_zone_device_register_with_trips -EXPORT_SYMBOL_GPL vmlinux 0xfb17363a kvm_get_kvm_safe -EXPORT_SYMBOL_GPL vmlinux 0xfb18868b crypto_comp_compress -EXPORT_SYMBOL_GPL vmlinux 0xfb18df86 rio_attach_device -EXPORT_SYMBOL_GPL vmlinux 0xfb1b048c proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0xfb2f1c51 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xfb156892 fwnode_property_match_string EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync EXPORT_SYMBOL_GPL vmlinux 0xfb35890a x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0xfb37687f pm_runtime_barrier -EXPORT_SYMBOL_GPL vmlinux 0xfb52a694 eventfd_fget -EXPORT_SYMBOL_GPL vmlinux 0xfb56e1cb of_prop_next_string -EXPORT_SYMBOL_GPL vmlinux 0xfb60cfc9 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xfb3754c3 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xfb38e207 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xfb43bab0 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xfb45ad9c of_get_required_opp_performance_state EXPORT_SYMBOL_GPL vmlinux 0xfb60faf5 posix_acl_clone -EXPORT_SYMBOL_GPL vmlinux 0xfb6641dd fb_deferred_io_mmap EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name -EXPORT_SYMBOL_GPL vmlinux 0xfb726862 input_ff_destroy EXPORT_SYMBOL_GPL vmlinux 0xfb74e910 proc_douintvec_minmax -EXPORT_SYMBOL_GPL vmlinux 0xfb81d5c0 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0xfb870307 devm_power_supply_register_no_ws -EXPORT_SYMBOL_GPL vmlinux 0xfb89b18d dev_pm_genpd_resume -EXPORT_SYMBOL_GPL vmlinux 0xfb957dc0 sata_set_spd -EXPORT_SYMBOL_GPL vmlinux 0xfba196b0 iommu_attach_group -EXPORT_SYMBOL_GPL vmlinux 0xfbbd3c23 shmem_read_folio_gfp +EXPORT_SYMBOL_GPL vmlinux 0xfb7582cf crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xfb78b11b mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xfb8648e1 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xfb8b0f5c tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb8b6478 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xfb97a48d screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xfb9a51b9 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xfba44cd0 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfbada478 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xfbae291d ata_std_prereset EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action -EXPORT_SYMBOL_GPL vmlinux 0xfbbdaf22 sysfs_unbreak_active_protection EXPORT_SYMBOL_GPL vmlinux 0xfbc022cc init_node_memory_type -EXPORT_SYMBOL_GPL vmlinux 0xfbc27f5d of_irq_parse_and_map_pci -EXPORT_SYMBOL_GPL vmlinux 0xfbf6a455 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xfbc2bf60 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xfbc65e89 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xfbcdaf15 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfbd148f3 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xfbdcb85c devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xfbfc2e2e ipv6_bpf_stub EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0xfc0cbb51 fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0xfc0b593e xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xfc0d4359 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xfc1536f3 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfc180a13 kobject_init_and_add EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc33de10 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xfc346fbb balloon_page_list_enqueue EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0xfc44dd9c handle_fasteoi_ack_irq -EXPORT_SYMBOL_GPL vmlinux 0xfc5f24b5 alloc_dax_region -EXPORT_SYMBOL_GPL vmlinux 0xfc761f95 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0xfc7fb335 perf_report_aux_output_id -EXPORT_SYMBOL_GPL vmlinux 0xfc8e8553 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0xfc92b0fd regulator_map_voltage_pickable_linear_range -EXPORT_SYMBOL_GPL vmlinux 0xfc933f67 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xfc3ea13d pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0xfc451978 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xfc45520e devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0xfc536ec6 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc5d1068 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xfc6ed333 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xfc706a1e __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xfc7716f6 xenbus_dev_cancel EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data -EXPORT_SYMBOL_GPL vmlinux 0xfc9c88bc clk_hw_get_rate_range -EXPORT_SYMBOL_GPL vmlinux 0xfc9e2f13 trace_get_event_file -EXPORT_SYMBOL_GPL vmlinux 0xfcb29697 restore_online_page_callback -EXPORT_SYMBOL_GPL vmlinux 0xfcb4d8c0 crypto_skcipher_decrypt -EXPORT_SYMBOL_GPL vmlinux 0xfcb81f65 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfc974160 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xfc99c4af vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xfc9e46ab tcp_plb_update_state_upon_rto +EXPORT_SYMBOL_GPL vmlinux 0xfcad6ae8 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xfcb03fb6 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xfcb6177b debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xfcbee2ae pcie_port_bus_type EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed -EXPORT_SYMBOL_GPL vmlinux 0xfcc092cf dev_pm_opp_of_add_table_indexed EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes -EXPORT_SYMBOL_GPL vmlinux 0xfcc9ed0b extcon_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0xfccde3d1 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xfcc4f5e4 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xfccb0e46 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xfccbd1a5 devl_params_unregister EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfa9323 devl_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xfcff2c2a pinctrl_force_sleep EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes -EXPORT_SYMBOL_GPL vmlinux 0xfd0da576 amba_device_put -EXPORT_SYMBOL_GPL vmlinux 0xfd0ec2d8 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xfd108a10 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xfd14f0b8 sock_diag_register_inet_compat EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn -EXPORT_SYMBOL_GPL vmlinux 0xfd336b4e pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xfd2a04e3 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xfd3712fb k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xfd41dbd9 fib_table_lookup EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable EXPORT_SYMBOL_GPL vmlinux 0xfd77e268 register_sys_off_handler -EXPORT_SYMBOL_GPL vmlinux 0xfd789df1 md_submit_discard_bio -EXPORT_SYMBOL_GPL vmlinux 0xfd929b2f mtk_pinconf_bias_set_combo -EXPORT_SYMBOL_GPL vmlinux 0xfd94133b unmap_mapping_pages -EXPORT_SYMBOL_GPL vmlinux 0xfda65cf3 reset_control_get_count -EXPORT_SYMBOL_GPL vmlinux 0xfdabcb7c devlink_port_fini +EXPORT_SYMBOL_GPL vmlinux 0xfd82462a msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0xfd8ab8e2 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xfd93c24a put_pid +EXPORT_SYMBOL_GPL vmlinux 0xfd990324 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xfd9da929 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xfdb3ee55 __devres_alloc_node EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0xfde50240 pci_sriov_configure_simple -EXPORT_SYMBOL_GPL vmlinux 0xfde72740 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xfdccc917 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xfdd0d97c rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xfdd2e1e9 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xfddd9fad dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xfddfdea1 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xfde53b24 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xfde9378e clk_hw_unregister_divider EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe086269 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xfdeac798 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xfded011a to_nvdimm_bus_dev EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars -EXPORT_SYMBOL_GPL vmlinux 0xfe1542d0 uhci_check_and_reset_hc -EXPORT_SYMBOL_GPL vmlinux 0xfe18f1e9 hwmon_notify_event EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7e62 devfreq_cooling_unregister EXPORT_SYMBOL_GPL vmlinux 0xfe1b2f45 ring_buffer_unlock_commit -EXPORT_SYMBOL_GPL vmlinux 0xfe25a1d9 __fscrypt_prepare_rename -EXPORT_SYMBOL_GPL vmlinux 0xfe2621fa dm_bio_from_per_bio_data -EXPORT_SYMBOL_GPL vmlinux 0xfe2dd020 da903x_reads -EXPORT_SYMBOL_GPL vmlinux 0xfe2ed0c7 nvdimm_delete -EXPORT_SYMBOL_GPL vmlinux 0xfe36dcb2 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0xfe380b75 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xfe1d1db4 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xfe2295f8 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfe2466ac dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xfe2d560a irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xfe2f759a fuse_simple_background EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0xfe3d52fd pci_p2pmem_find_many -EXPORT_SYMBOL_GPL vmlinux 0xfe3d6ef1 regulator_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe404a17 pci_d3cold_enable -EXPORT_SYMBOL_GPL vmlinux 0xfe47093f crypto_shash_tfm_digest EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0xfe49d4bf perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0xfe53f8b3 bio_associate_blkg -EXPORT_SYMBOL_GPL vmlinux 0xfe60cc0f sk_psock_msg_verdict -EXPORT_SYMBOL_GPL vmlinux 0xfe811d6e tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0xfe4bf4fd ata_bmdma_setup EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page -EXPORT_SYMBOL_GPL vmlinux 0xfe92b675 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xfe91fee5 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0xfe9569e2 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xfe959d44 ahci_platform_assert_rsts EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy -EXPORT_SYMBOL_GPL vmlinux 0xfe9bba6c rio_local_set_device_id -EXPORT_SYMBOL_GPL vmlinux 0xfe9eae4c wm8350_set_bits -EXPORT_SYMBOL_GPL vmlinux 0xfeacd7be iomap_seek_hole -EXPORT_SYMBOL_GPL vmlinux 0xfeb0e14e nd_region_provider_data EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup -EXPORT_SYMBOL_GPL vmlinux 0xfec59262 register_btf_fmodret_id_set EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister -EXPORT_SYMBOL_GPL vmlinux 0xfed4e2df pm_genpd_remove_subdomain -EXPORT_SYMBOL_GPL vmlinux 0xfedc34ac led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xfee0ffb2 fsl_mc_resource_free EXPORT_SYMBOL_GPL vmlinux 0xfeec3489 pkcs7_parse_message EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef9e534 usb_free_streams EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff09c9aa gpiod_set_debounce EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert -EXPORT_SYMBOL_GPL vmlinux 0xff2291c2 blk_crypto_profile_destroy EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider -EXPORT_SYMBOL_GPL vmlinux 0xff31dcfb dm_device_name -EXPORT_SYMBOL_GPL vmlinux 0xff342b94 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0xff2feebf restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xff3d732c crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xff41f632 acpi_dev_suspend EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff460612 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xff557bad of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xff5a61c8 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xff635ed3 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xff6b3894 backing_file_open +EXPORT_SYMBOL_GPL vmlinux 0xff6e1996 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xff7063dd pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xff7209eb device_dma_supported EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8239a0 pm_generic_resume_noirq EXPORT_SYMBOL_GPL vmlinux 0xff84a8a5 page_reporting_order -EXPORT_SYMBOL_GPL vmlinux 0xff8dc9f6 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0xff9d12c7 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xff877d9d gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xff9b6cfa fsstack_copy_attr_all EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key -EXPORT_SYMBOL_GPL vmlinux 0xffa7c0e9 i2c_dw_probe_master EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0xffaed09f tracing_snapshot_cond_disable -EXPORT_SYMBOL_GPL vmlinux 0xffb56eb7 ata_scsi_unlock_native_capacity -EXPORT_SYMBOL_GPL vmlinux 0xffb96c34 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xffb506d5 proc_mkdir_data EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next -EXPORT_SYMBOL_GPL vmlinux 0xfff2d926 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0xffeeb2af switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xffff8676 blk_mq_sched_try_merge FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux -FW_CS_DSP EXPORT_SYMBOL_GPL 0x03babd32 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0a2b53d3 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x0cf4bbb3 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x115e0f94 cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x14129e31 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x07f8a042 cs_dsp_init_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x0e2e251f cs_dsp_remove drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x144d6986 cs_dsp_mem_region_name drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x23a54816 cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x273f53ec cs_dsp_stop drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x29c7394f cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x42be3f1c cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x19ef02b7 cs_dsp_cleanup_debugfs drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x364774b4 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x407dae64 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4253a364 cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x44015da4 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x4a0f323f cs_dsp_halo_init drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x4e5562f8 cs_dsp_remove_padding drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x557f18b4 cs_dsp_remove drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x626312e1 cs_dsp_read_raw_data_block drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x6cd2af7e cs_dsp_power_up drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x5015c468 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x57a58618 cs_dsp_adsp2_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x58eb8099 cs_dsp_halo_wdt_expire drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x59c0b1a4 cs_dsp_power_up drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x6e0cce2d cs_dsp_chunk_write drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7741bdbe cs_dsp_adsp1_power_up drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x7a91cf70 cs_dsp_get_ctl drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0x85cb4da8 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x78f475bd cs_dsp_adsp2_bus_error drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x7c6e6e47 cs_dsp_stop drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x889f553f cs_dsp_run drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0x90a1e696 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0x9e324cb0 cs_dsp_chunk_flush drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa049a45e cs_dsp_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xa6548ff0 cs_dsp_coeff_write_ctrl drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xad8db2f0 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xaec6d8ad cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xb2437fbf cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp FW_CS_DSP EXPORT_SYMBOL_GPL 0xb6c0d9e7 cs_dsp_chunk_read drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xc4c7e149 cs_dsp_coeff_write_acked_control drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xd3ce6894 cs_dsp_run drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xd96e1166 cs_dsp_set_dspclk drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xe15b0934 cs_dsp_read_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xe9124214 cs_dsp_halo_bus_error drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xeb5ad1a5 cs_dsp_write_data_word drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xf597e506 cs_dsp_adsp1_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfb1899f5 cs_dsp_power_down drivers/firmware/cirrus/cs_dsp -FW_CS_DSP EXPORT_SYMBOL_GPL 0xfbaec77f cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp -HWMON_THERMAL EXPORT_SYMBOL_GPL 0x6db4f88d hwmon_device_register_for_thermal vmlinux -IDLE_INJECT EXPORT_SYMBOL_GPL 0x14013dbb idle_inject_register_full vmlinux +FW_CS_DSP EXPORT_SYMBOL_GPL 0xde9a7003 cs_dsp_adsp1_init drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xecb8dc2c cs_dsp_find_alg_region drivers/firmware/cirrus/cs_dsp +FW_CS_DSP EXPORT_SYMBOL_GPL 0xf1af8910 cs_dsp_coeff_read_ctrl drivers/firmware/cirrus/cs_dsp +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x5c3533bd hwmon_device_register_for_thermal vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x5b3a2cd6 idle_inject_start vmlinux -IDLE_INJECT EXPORT_SYMBOL_GPL 0x5f064467 idle_inject_register vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x85c2b7eb idle_inject_stop vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0x88e7fa25 idle_inject_register vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0x95e93783 idle_inject_set_latency vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xc18575af idle_inject_set_duration vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xe9cbcfd0 idle_inject_get_duration vmlinux +IDLE_INJECT EXPORT_SYMBOL_GPL 0xed691643 idle_inject_register_full vmlinux IDLE_INJECT EXPORT_SYMBOL_GPL 0xf0e96547 idle_inject_unregister vmlinux -IIO_AD5592R EXPORT_SYMBOL_GPL 0x01304a9a ad5592r_remove drivers/iio/dac/ad5592r-base -IIO_AD5592R EXPORT_SYMBOL_GPL 0xc284d2e4 ad5592r_probe drivers/iio/dac/ad5592r-base -IIO_AD5686 EXPORT_SYMBOL_GPL 0x63ba37bf ad5686_remove drivers/iio/dac/ad5686 -IIO_AD5686 EXPORT_SYMBOL_GPL 0xbfe67db1 ad5686_probe drivers/iio/dac/ad5686 -IIO_AD7091R EXPORT_SYMBOL_GPL 0x8f0fd1ef ad7091r_regmap_config drivers/iio/adc/ad7091r-base -IIO_AD7091R EXPORT_SYMBOL_GPL 0xfa36dfa9 ad7091r_probe drivers/iio/adc/ad7091r-base -IIO_AD7606 EXPORT_SYMBOL_GPL 0x65d50809 ad7606_probe drivers/iio/adc/ad7606 -IIO_AD7606 EXPORT_SYMBOL_GPL 0xb748d7ff ad7606_pm_ops drivers/iio/adc/ad7606 -IIO_ADISLIB EXPORT_SYMBOL 0x0d346ccb __adis_enable_irq drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL 0x81226fcd adis_debugfs_reg_access drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x09a50aeb devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x25dd40af __adis_update_bits_base drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x62e83bdd devm_adis_probe_trigger drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6cab25a9 __adis_write_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0x984b15e9 __adis_initial_startup drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa0f30d28 __adis_read_reg drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb6f209cf adis_single_conversion drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd43bb8e3 adis_init drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xdacfd035 adis_update_scan_mode drivers/iio/imu/adis_lib -IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe6f50093 __adis_check_status drivers/iio/imu/adis_lib -IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x49819007 __adis_reset drivers/iio/imu/adis_lib -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xd153dec2 devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc -IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xfab43e9f adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc -IIO_ADXL313 EXPORT_SYMBOL_GPL 0x51f83217 adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_AD5592R EXPORT_SYMBOL_GPL 0x634b2d21 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xba3f7ee9 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x01122733 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xd6ea4948 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x6b01659d ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xbf17ec5d ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0xa0475aa9 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xe113ba3e ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x17447bb7 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xca1be146 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0b27be11 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x622d2a5f __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x72aa5804 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x75224ba2 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x785a84a7 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x86b2360d adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbca17c49 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc21f6933 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xdced8806 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xf87dc7a4 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x13d5ecdd __adis_reset drivers/iio/imu/adis_lib +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xc1c92f8b adi_axi_adc_conv_priv drivers/iio/adc/adi-axi-adc +IIO_ADI_AXI EXPORT_SYMBOL_GPL 0xed079c0c devm_adi_axi_adc_conv_register drivers/iio/adc/adi-axi-adc +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x184aa836 adxl31x_chip_info drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x3f5b5baa adxl313_core_probe drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x93298a1c adxl312_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0x932e87b3 adxl314_writable_regs_table drivers/iio/accel/adxl313_core -IIO_ADXL313 EXPORT_SYMBOL_GPL 0xb1d992d0 adxl31x_chip_info drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1d8d09c adxl314_readable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xe1dfdd33 adxl312_writable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4d2f5e0f adxl35x_chip_info drivers/iio/accel/adxl355_core -IIO_ADXL355 EXPORT_SYMBOL_GPL 0x5e426523 adxl355_core_probe drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core -IIO_ADXL367 EXPORT_SYMBOL_GPL 0x16d98cc4 adxl367_probe drivers/iio/accel/adxl367 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0x145719b1 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 -IIO_ADXL372 EXPORT_SYMBOL_GPL 0xa534a59f adxl372_probe drivers/iio/accel/adxl372 -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x11fe67e2 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4efc0c0a ad_sd_reset drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7619d4a0 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8bddd974 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa69f4002 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xcefa03fd ad_sd_init drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe1d266b5 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe87ff1a4 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xecd622de ad_sd_calibrate drivers/iio/adc/ad_sigma_delta -IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfd4494ab ad_sd_read_reg drivers/iio/adc/ad_sigma_delta -IIO_BMA400 EXPORT_SYMBOL 0x34b145fa bma400_regmap_config drivers/iio/accel/bma400_core -IIO_BMA400 EXPORT_SYMBOL 0xa1af372e bma400_probe drivers/iio/accel/bma400_core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x321bbb8c bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0x390a3f20 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xca6bd4fe bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core -IIO_BMC150 EXPORT_SYMBOL_GPL 0xd8ad664d bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core -IIO_BMC150_MAGN EXPORT_SYMBOL 0x72657de4 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0x88b2218f bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xc2591b1e bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn -IIO_BMC150_MAGN EXPORT_SYMBOL 0xc2e302d7 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn -IIO_BME680 EXPORT_SYMBOL 0xb22f60cf bme680_regmap_config drivers/iio/chemical/bme680_core -IIO_BME680 EXPORT_SYMBOL_GPL 0xaf3f2b28 bme680_core_probe drivers/iio/chemical/bme680_core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x026a62cb bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x1a5e1bbc bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0x20059b2c bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core -IIO_BMI088 EXPORT_SYMBOL_GPL 0xb96cbdb7 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xbb573584 adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x2ab0afda adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x9a72e1bf adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xaf0676ed adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x51c17109 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5564214a ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x63489c43 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7339764c ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa6c0b44c devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa71710d6 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa8870e76 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xad1e1ee3 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb6c1d4ca ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xf1d7e1c8 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x99731e15 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xd161cda6 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x6fc196d3 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xd0802fa4 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xf539e341 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xf8d44b99 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x2c25f9b4 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x8795049f bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xe22036ca bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xed4d682c bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xacb4dd7f bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xaa1c1963 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x4e718a75 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xdbd59cec bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xe0005cfa bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xe89821ec bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core IIO_BMI160 EXPORT_SYMBOL 0xca19cfae bmi160_enable_irq drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL 0xe52a7b41 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core -IIO_BMI160 EXPORT_SYMBOL_GPL 0x96ce16e8 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core -IIO_BMP280 EXPORT_SYMBOL 0x104a0ead bmp280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x187d0db3 bmp280_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x67af2f69 bme280_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x6c2b2b76 bmp180_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x7587a46d bmp580_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0x8d45efdb bmp380_chip_info drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xea7ebe41 bmp280_common_probe drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf2fbd0d1 bmp180_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf72fbb52 bmp380_regmap_config drivers/iio/pressure/bmp280 -IIO_BMP280 EXPORT_SYMBOL 0xf95307d7 bmp580_regmap_config drivers/iio/pressure/bmp280 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x1ebd840c bno055_regmap_config drivers/iio/imu/bno055/bno055 -IIO_BNO055 EXPORT_SYMBOL_GPL 0x9ae6207e bno055_probe drivers/iio/imu/bno055/bno055 -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x44238254 fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xcaaf790a fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core -IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xe4721cbe fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x3a3ca03e fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x60a25a00 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xadfef512 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core -IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc27ccec5 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_BMI160 EXPORT_SYMBOL 0xec4b3283 bmi160_regmap_config drivers/iio/imu/bmi160/bmi160_core +IIO_BMI160 EXPORT_SYMBOL_GPL 0x780de366 bmi160_core_probe drivers/iio/imu/bmi160/bmi160_core +IIO_BMP280 EXPORT_SYMBOL 0x2ee60deb bmp280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x4b2ba72b bmp580_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x52872830 bmp180_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x54915c38 bmp580_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x59032c2f bme280_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x5aede0bd bmp380_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0x5f398b3e bmp180_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xb3e9ec9d bmp380_chip_info drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xb5bf565c bmp280_regmap_config drivers/iio/pressure/bmp280 +IIO_BMP280 EXPORT_SYMBOL 0xff5a7204 bmp280_common_probe drivers/iio/pressure/bmp280 +IIO_BNO055 EXPORT_SYMBOL_GPL 0x5039a276 bno055_probe drivers/iio/imu/bno055/bno055 +IIO_BNO055 EXPORT_SYMBOL_GPL 0xcf29c1d8 bno055_regmap_config drivers/iio/imu/bno055/bno055 +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x119a231a fxas21002c_pm_ops drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0x29e6bebc fxas21002c_core_probe drivers/iio/gyro/fxas21002c_core +IIO_FXAS21002C EXPORT_SYMBOL_GPL 0xf84511c6 fxas21002c_core_remove drivers/iio/gyro/fxas21002c_core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x4ae2dffe fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7976bfbd fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc5818c69 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xe83c4b3b fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x094bee02 iio_gts_avail_scales_for_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x296bb0cd iio_gts_all_avail_scales drivers/iio/industrialio-gts-helper +IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x3a20a04d devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x4ed89402 iio_gts_find_sel_by_gain drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x53000dc5 iio_gts_find_gain_by_sel drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x54a7bad7 iio_gts_get_min_gain drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0x5f338fa0 iio_gts_find_new_gain_sel_by_old_gain_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xa3374797 iio_gts_get_scale drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xaf5aaa85 iio_find_closest_gain_low drivers/iio/industrialio-gts-helper -IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc0464068 devm_iio_init_iio_gts drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc061498b iio_gts_avail_times drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xc25ccf30 iio_gts_find_new_gain_by_old_gain_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xd7e29768 iio_gts_find_gain_sel_for_scale_using_time drivers/iio/industrialio-gts-helper IIO_GTS_HELPER EXPORT_SYMBOL_GPL 0xf42af90f iio_gts_total_gain_to_scale drivers/iio/industrialio-gts-helper -IIO_HID EXPORT_SYMBOL 0x00725aa7 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x2059f20a hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x29bf732f hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x31bf54da hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x54250865 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x597897fa hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger -IIO_HID EXPORT_SYMBOL 0x75718560 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x7813d602 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x1f8a0c2f hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x37726d5e hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x475a3fcd hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x58d07662 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x5ed0c8eb hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9bdf1b65 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0x9e092b6f hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xb1a080c1 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID EXPORT_SYMBOL 0xb3277a14 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3fccc440 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6070be6a hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x68daef15 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xd19f483e hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common -IIO_HMC5843 EXPORT_SYMBOL 0xa01e4509 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0xd75b4d48 hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core -IIO_HMC5843 EXPORT_SYMBOL 0xe88cd4b1 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core -IIO_HTS221 EXPORT_SYMBOL 0x639e8114 hts221_probe drivers/iio/humidity/hts221 -IIO_HTS221 EXPORT_SYMBOL 0xbe71d8ae hts221_pm_ops drivers/iio/humidity/hts221 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x271a88c4 inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0x534b22d1 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_ICM42600 EXPORT_SYMBOL_GPL 0xb086e218 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 -IIO_KX022A EXPORT_SYMBOL_GPL 0x809bfe9d kx022a_probe_internal drivers/iio/accel/kionix-kx022a -IIO_KX022A EXPORT_SYMBOL_GPL 0xb90d2ce7 kx022a_regmap drivers/iio/accel/kionix-kx022a -IIO_KXSD9 EXPORT_SYMBOL 0x29d3e050 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0x3ebc3c4c kxsd9_common_probe drivers/iio/accel/kxsd9 -IIO_KXSD9 EXPORT_SYMBOL 0xeb828a42 kxsd9_common_remove drivers/iio/accel/kxsd9 -IIO_LSM6DSX EXPORT_SYMBOL 0x70a538df st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx -IIO_LSM6DSX EXPORT_SYMBOL 0xc9d0353f st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_HID EXPORT_SYMBOL 0x94fcebe1 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x98bce40a hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x99912eb7 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa40ce540 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xacd44741 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xb5a866e4 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf8eeb5fa hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x29a4fcd3 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x90e15bf8 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xb310452a hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xe826d78d hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x6883ffc9 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x81ddb1ba hmc5843_pm_ops drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x97c7b4c2 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HTS221 EXPORT_SYMBOL 0x13507b9c hts221_probe drivers/iio/humidity/hts221 +IIO_HTS221 EXPORT_SYMBOL 0xda402475 hts221_pm_ops drivers/iio/humidity/hts221 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x665d1042 inv_icm42600_core_probe drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0x7fad4654 inv_icm42600_pm_ops drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_ICM42600 EXPORT_SYMBOL_GPL 0xa292a6aa inv_icm42600_regmap_config drivers/iio/imu/inv_icm42600/inv-icm42600 +IIO_KX022A EXPORT_SYMBOL_GPL 0x86ee9792 kx022a_regmap drivers/iio/accel/kionix-kx022a +IIO_KX022A EXPORT_SYMBOL_GPL 0xb2719651 kx022a_probe_internal drivers/iio/accel/kionix-kx022a +IIO_KXSD9 EXPORT_SYMBOL 0x41d8946e kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x5ed2f4b5 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xa7a590fc kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_LSM6DSX EXPORT_SYMBOL 0x6b4e7052 st_lsm6dsx_probe drivers/iio/imu/st_lsm6dsx/st_lsm6dsx +IIO_LSM6DSX EXPORT_SYMBOL 0x93dfa6da st_lsm6dsx_pm_ops drivers/iio/imu/st_lsm6dsx/st_lsm6dsx IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2858beb6 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x144774ba ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x3b83d65b ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x43744fd0 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x471d3e49 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x92dd64db ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa5497cdb ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe0fd3849 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xee0cdce4 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xf25e7bed ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x53ae1055 mma7455_core_remove drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x5d5b937f mma7455_core_probe drivers/iio/accel/mma7455_core -IIO_MMA7455 EXPORT_SYMBOL_GPL 0x8a8ab8eb mma7455_core_regmap drivers/iio/accel/mma7455_core -IIO_MMA9551 EXPORT_SYMBOL 0x2ec77d3d mma9551_app_reset drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x376baba8 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x463a3a60 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x469db751 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x56ffcd95 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x605ed27d ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x9d1d62c9 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc8356715 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd6cc45fd ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfd9e7dff ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x9b33aa95 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xc639a8a9 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xe1206298 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x1567ae19 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x21a6392b mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x28040d2b mma9551_read_config_word drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x46dd5ea8 mma9551_write_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x593f833a mma9551_read_config_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x614cafd1 mma9551_read_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x81ae1ae2 mma9551_read_accel_chan drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x8a2f2474 mma9551_read_config_word drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x957d97f1 mma9551_read_version drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0x982493b5 mma9551_set_power_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xa04243ca mma9551_read_status_byte drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb44f011f mma9551_write_config_words drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb479d6b7 mma9551_set_device_state drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xb8db19ba mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x77e02389 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7b1fcedb mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x818275b8 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x954082f7 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x96f47212 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xae1c6015 mma9551_read_config_words drivers/iio/accel/mma9551_core IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xd409c8a7 mma9551_gpio_config drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xe96509ce mma9551_update_config_bits drivers/iio/accel/mma9551_core -IIO_MMA9551 EXPORT_SYMBOL 0xeef6f6ef mma9551_read_status_words drivers/iio/accel/mma9551_core -IIO_MPL115 EXPORT_SYMBOL 0xddf36a86 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 -IIO_MPL115 EXPORT_SYMBOL_GPL 0xcb98251c mpl115_probe drivers/iio/pressure/mpl115 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x1ffa9ee0 inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MPU6050 EXPORT_SYMBOL_GPL 0x3f434b4b inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 -IIO_MS5611 EXPORT_SYMBOL 0x459e480b ms5611_probe drivers/iio/pressure/ms5611_core -IIO_RESCALE EXPORT_SYMBOL_GPL 0xa82db8dd rescale_process_offset drivers/iio/afe/iio-rescale -IIO_RESCALE EXPORT_SYMBOL_GPL 0xd7efad43 rescale_process_scale drivers/iio/afe/iio-rescale +IIO_MMA9551 EXPORT_SYMBOL 0xbfd71051 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xcf0de66d mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xdcb1aeab mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xeb28d714 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xec1a6ee9 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf0eceba9 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf53349b5 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL 0xb3baa0a2 mpl115_dev_pm_ops drivers/iio/pressure/mpl115 +IIO_MPL115 EXPORT_SYMBOL_GPL 0x296401e6 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0x42c07c13 inv_mpu_core_probe drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MPU6050 EXPORT_SYMBOL_GPL 0xc088a83d inv_mpu_pmops drivers/iio/imu/inv_mpu6050/inv-mpu6050 +IIO_MS5611 EXPORT_SYMBOL 0x61feac7f ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RESCALE EXPORT_SYMBOL_GPL 0x4881f756 rescale_process_offset drivers/iio/afe/iio-rescale +IIO_RESCALE EXPORT_SYMBOL_GPL 0x9894f490 rescale_process_scale drivers/iio/afe/iio-rescale IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core -IIO_RM3100 EXPORT_SYMBOL_GPL 0x9d999536 rm3100_common_probe drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core -IIO_SCD30 EXPORT_SYMBOL 0xaf0b1ee3 scd30_probe drivers/iio/chemical/scd30_core -IIO_SCD30 EXPORT_SYMBOL 0xbe360fb0 scd30_pm_ops drivers/iio/chemical/scd30_core -IIO_SPS30 EXPORT_SYMBOL_GPL 0x108eaddd sps30_probe drivers/iio/chemical/sps30 -IIO_SSP_SENSORS EXPORT_SYMBOL 0x2889ffcc ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0x675a7478 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0x886b1f8a ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xb55a0a64 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xb7627e1b ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xc8007680 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub -IIO_SSP_SENSORS EXPORT_SYMBOL 0xe83bcc8d ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio -IIO_SSP_SENSORS EXPORT_SYMBOL 0xee54e500 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_RM3100 EXPORT_SYMBOL_GPL 0xdaafbe11 rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0xe46214a9 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xf6f82a53 scd30_probe drivers/iio/chemical/scd30_core +IIO_SPS30 EXPORT_SYMBOL_GPL 0xd56efda3 sps30_probe drivers/iio/chemical/sps30 +IIO_SSP_SENSORS EXPORT_SYMBOL 0x378877a2 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x39010ec9 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4ad20b46 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x561359af ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x691a383e ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa0dd4a9e ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xb660b63c ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xef87eb2f ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x03c8549b st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x18264f41 st_accel_get_settings drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0x1e42650f st_press_get_settings drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0x1e821acb st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x21d8ff55 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x2995b935 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c -IIO_ST_SENSORS EXPORT_SYMBOL 0x39c1951a st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x469983ef st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0x54ddb479 st_gyro_get_settings drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0x904636de st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi -IIO_ST_SENSORS EXPORT_SYMBOL 0xa1b8923c st_accel_common_probe drivers/iio/accel/st_accel -IIO_ST_SENSORS EXPORT_SYMBOL 0xa7a66d28 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xa87480e2 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb1f050b4 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xb89b54dd st_press_common_probe drivers/iio/pressure/st_pressure -IIO_ST_SENSORS EXPORT_SYMBOL 0xc5297fd8 st_magn_get_settings drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xc7023eeb st_magn_common_probe drivers/iio/magnetometer/st_magn -IIO_ST_SENSORS EXPORT_SYMBOL 0xc8ebc4e7 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xdce0ba9d st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xdd32aa67 st_gyro_common_probe drivers/iio/gyro/st_gyro -IIO_ST_SENSORS EXPORT_SYMBOL 0xdee307bb st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xe3c2f3b8 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xef91b814 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xf1a0fa78 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xf6ce01fc st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xf925cf0d st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL 0xff36f0ca st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors -IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x614d0520 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 -IIO_UVIS25 EXPORT_SYMBOL 0x1ad8a138 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core -IIO_UVIS25 EXPORT_SYMBOL 0x66ab46c8 st_uvis25_probe drivers/iio/light/st_uvis25_core -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x44314a6f zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x76b0b5c9 zpa2326_pm_ops drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9f9ee187 zpa2326_probe drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xb64293cc zpa2326_remove drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xe44a0015 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 -IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xeb118aed zpa2326_isreg_readable drivers/iio/pressure/zpa2326 -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x6585314a m10bmc_sys_read drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xc3cd0cb6 m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xc880bc18 m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xd4c07285 m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core -INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xfa0c0c4e m10bmc_dev_init drivers/mfd/intel-m10-bmc-core -IOMMUFD EXPORT_SYMBOL_GPL 0x29846b84 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x36d099ec iommufd_access_create drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x553bc091 iommufd_device_bind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x5ce2f4ca iommufd_ctx_put drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x5ff555a1 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x66cf285b iommufd_ctx_from_file drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0x96224bf9 iommufd_access_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xaa76ae47 iommufd_device_detach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xae9f646d iommufd_ctx_get drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xbe1b6683 iommufd_access_destroy drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xc59f7162 iommufd_device_attach drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xcc728544 iommufd_device_unbind drivers/iommu/iommufd/iommufd -IOMMUFD EXPORT_SYMBOL_GPL 0xee14bbe2 iommufd_access_rw drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x18f4c950 iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x86a3feab iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd -IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xbe5fe324 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd -IWLWIFI EXPORT_SYMBOL_GPL 0x017b6483 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x03ad8841 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x06d24e17 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IIO_ST_SENSORS EXPORT_SYMBOL 0x0881a9d2 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2773c1a7 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2839f8d7 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2e2707c3 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x3704c122 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x40821955 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x44852031 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x47745118 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x489dab14 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x4c372ebc st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x52ad3f98 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x56366e4c st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6031de77 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x63b948f1 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x65be671a st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6655f439 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x7326ff11 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x80bdda93 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd571eb90 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xd633df2c st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xe14f2fa3 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe51161f1 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xea9a2437 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xee1d930c st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf7567cba st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x6bfc166a st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x219d6def st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x8859cab6 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0312ed3b zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x53d89022 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x66f0627f zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x67d58f69 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf3a3da58 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xfcf850a0 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x02ad2584 m10bmc_sys_read drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x24b613a2 m10bmc_sys_update_bits drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x393e1f40 m10bmc_dev_init drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0x8b5ce53a m10bmc_fw_state_set drivers/mfd/intel-m10-bmc-core +INTEL_M10_BMC_CORE EXPORT_SYMBOL_GPL 0xe9bd97e6 m10bmc_dev_groups drivers/mfd/intel-m10-bmc-core +IOMMUFD EXPORT_SYMBOL_GPL 0x0fc72107 iommufd_access_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x11d24dd6 iommufd_access_create drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x12d7469c iommufd_access_rw drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x2a4b95a8 iommufd_access_pin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x38555a77 iommufd_ctx_from_file drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x3d4fa09c iommufd_device_unbind drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x4052676e iommufd_device_attach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x5b4b8b9f iommufd_device_detach drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x6174f9b8 iommufd_ctx_put drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0x9309691f iommufd_ctx_get drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xaae22aeb iommufd_access_destroy drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xab39a8a8 iommufd_access_unpin_pages drivers/iommu/iommufd/iommufd +IOMMUFD EXPORT_SYMBOL_GPL 0xf5d006e3 iommufd_device_bind drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x1711ecfd iommufd_vfio_compat_set_no_iommu drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0x2fedf172 iommufd_vfio_compat_ioas_create drivers/iommu/iommufd/iommufd +IOMMUFD_VFIO EXPORT_SYMBOL_GPL 0xc0980228 iommufd_vfio_compat_ioas_get_id drivers/iommu/iommufd/iommufd IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x13850bed iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x13b226cb iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1466c956 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x15026154 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1b94af4e iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x1fdfafa5 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x22c95903 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x143b0bd4 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1575c856 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1598f6ab iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1b602f96 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x25aeecce iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x27f8ca8f iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x2c9197cd __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x291b366a iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2d6a288e iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x33b92178 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3452fbca iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x3cdbd8c9 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x4948b261 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x39616d2c iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x39fa508e iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3dc61805 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x42588170 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x448cd6cf iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4967079c iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x509089f6 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x50cfbe62 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x52232497 iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x533aa400 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5570922e iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x563170d6 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4c4628e5 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4cb39a80 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4f1ffadd iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x503d8666 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x59aaa8f5 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5a2dbf20 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5ab0baec iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5b363e46 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x5d0b8be7 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x633a1427 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x67787732 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6ada44da iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6afede1d __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x6ecd15d4 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x710a63c6 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x723408dd iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x75e1a280 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5d47fded __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5d96c066 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x60b6fdd8 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x644fcf29 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x64fbd227 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72c1751b iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x76eed7ce iwl_acpi_get_phy_filters drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7788503e iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7772f1e1 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x7d6a32ae iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7a772b25 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7adea44e iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7f547864 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x82e58331 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x82a80aa5 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x85bf6ca8 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8701c682 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x89c7ca00 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8c7f0a66 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x8e6d03c1 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8834651b iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88dbc47b iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8bcd1c32 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8f6c3f20 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x97266de0 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x97542216 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9d0caa28 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0x9e175887 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa5cf4b6c iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xa6004ffb iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaa834b8a iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xaac8606e iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xadfe3eb9 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb027778f iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb34d3e7f iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9386a8ca iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x957b3e38 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x97c89694 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x98d400e4 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x99394c73 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9e058a48 iwl_uefi_get_step_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa053bc1a iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa1a2bbf7 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa36dd701 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa572e5bb iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa5efe4f9 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa757f701 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa9fcc1d8 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xabe51d48 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xace5b788 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb0fe119f iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb26c6e45 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb27454ff iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb6472cf4 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7a1aac6 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xb9268bb9 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb8c8bc1b iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xbd54a518 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc75d87d3 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc76698a3 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xc7c0c873 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xcbb1a9ae iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xccf5b4b1 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xccfd87c2 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbf84be97 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc1e2bf2a iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc5429435 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc8646fa6 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xca1550b2 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xccad2d25 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd6082c89 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd85e5aa7 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xd98ef163 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xda2ac8aa iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xdb4e884d iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xddef5f26 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe0878f55 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd113b9fb iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd3981acb iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd5c0d516 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd5c41e95 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd8f0288d iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdfb73f7e iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe27f76fe iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe422bb2b iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe4d23bb4 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xe7280152 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe938b36e iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xedcd43dd iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xef43bfb3 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xef837a17 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf4717acc iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeff77a8c __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeffbd8be __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf34e39e4 iwl_drv_get_fwname_pre drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf44c91ab iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf52783ee iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xf99d6097 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xfae0f5cd iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi -IWLWIFI EXPORT_SYMBOL_GPL 0xff60f665 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi -LTC2497 EXPORT_SYMBOL 0x180e1a38 ltc2497core_probe drivers/iio/adc/ltc2497-core -LTC2497 EXPORT_SYMBOL 0xc6e5f8ae ltc2497core_remove drivers/iio/adc/ltc2497-core -MCB EXPORT_SYMBOL_GPL 0x0390fa54 mcb_alloc_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x159c436e mcb_request_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x26a6bfd1 mcb_release_bus drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x3cdb773a mcb_free_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x52fadc7d mcb_get_resource drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x6ce67411 mcb_unregister_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7a65c117 mcb_bus_add_devices drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x7f6e2c98 mcb_get_irq drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x88751565 mcb_bus_put drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9a911866 mcb_device_register drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0x9ccd76ae __mcb_register_driver drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xc465ce90 mcb_alloc_dev drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xe335ddfa chameleon_parse_cells drivers/mcb/mcb +LTC2497 EXPORT_SYMBOL 0xc1da17dd ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xd73d1f98 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x02ff56ff mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x06490808 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x21675118 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2dbb9599 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x387b0add mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3bf8a12c mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7f1d95ce mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8fb4fbac mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x95c93347 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xad5c6e27 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xcc854157 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd377856a mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd67c68e5 mcb_get_irq drivers/mcb/mcb MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb -MCB EXPORT_SYMBOL_GPL 0xef8c8fa0 mcb_bus_get drivers/mcb/mcb -MFD_OCELOT EXPORT_SYMBOL 0x441fc9a4 ocelot_core_init drivers/mfd/ocelot-soc -MFD_OCELOT EXPORT_SYMBOL 0x7718d974 ocelot_chip_reset drivers/mfd/ocelot-soc -MFD_OCELOT_SPI EXPORT_SYMBOL 0xb63bf532 ocelot_spi_init_regmap drivers/mfd/ocelot-soc -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x57822b6b nvme_passthru_end drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6964d151 nvme_put_ns drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6eaa0607 nvme_passthru_start drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x72c60f38 nvme_command_effects drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc4c47373 nvme_ctrl_from_file drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd0114ae3 nvme_execute_rq drivers/nvme/host/nvme-core -NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xefd821c0 nvme_find_get_ns drivers/nvme/host/nvme-core -PECI EXPORT_SYMBOL_GPL 0x054474e1 peci_xfer_ep_pci_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x11b4a7d9 peci_xfer_pkg_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2429b6d8 peci_request_dib_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x284524b0 peci_xfer_ep_mmio32_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x2a9b0693 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x371afe4f __peci_driver_register drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x40ae0d40 peci_request_alloc drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x42bdde03 peci_request_data_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x4b46482d peci_request_data_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x52c9d6f1 peci_xfer_ep_mmio64_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x543ab8c8 peci_xfer_pci_cfg_local_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5e3fef91 peci_request_data_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x5e8fae45 peci_xfer_pkg_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x6380d818 peci_driver_unregister drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x671dc618 peci_request_free drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x723e541d peci_xfer_pkg_cfg_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x7985c956 peci_request_temp_read drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x8a64a717 peci_xfer_pkg_cfg_readq drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x98c15dac peci_xfer_ep_pci_cfg_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0x9b850fd6 peci_xfer_get_temp drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xb71e2fde peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xc2c37fc1 devm_peci_controller_add drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xd27b93cb peci_request_data_readb drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xdbc01ef1 peci_xfer_ep_pci_cfg_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xe15ba2c2 peci_xfer_get_dib drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xef60b2a1 peci_xfer_pci_cfg_local_readl drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf2b02626 peci_xfer_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf41f6c83 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci -PECI EXPORT_SYMBOL_GPL 0xf49c5a18 peci_request_status drivers/peci/peci -PECI_CPU EXPORT_SYMBOL_GPL 0x0514809b peci_mmio_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x389fa1c1 peci_ep_pci_local_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x52a19e08 peci_pcs_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x613301f9 peci_temp_read drivers/peci/peci-cpu -PECI_CPU EXPORT_SYMBOL_GPL 0x928f339d peci_pci_local_read drivers/peci/peci-cpu -PMBUS EXPORT_SYMBOL_GPL 0x0188c170 pmbus_set_page drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x0a73887a pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x0e22e178 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x17e4123f pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x28ccd7c3 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x39d38880 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x520af2f3 pmbus_set_update drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x5f0faafd pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x614ec3fe pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x66c175c8 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x70558d7d pmbus_do_probe drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x974633e4 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0x980651a9 pmbus_unlock drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xaee92072 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xc28412db pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xe1b36f32 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xef912c7a pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf6008deb pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xf8927056 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfadec8f2 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core -PMBUS EXPORT_SYMBOL_GPL 0xfb5b80d0 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x12a303d0 sx_common_read_proximity drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x2417a38d sx_common_get_raw_register_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x40bb5000 sx_common_write_event_config drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0x85749eaf sx_common_read_event_config drivers/iio/proximity/sx_common +MCB EXPORT_SYMBOL_GPL 0xf8a9c5e8 mcb_alloc_bus drivers/mcb/mcb +MFD_OCELOT EXPORT_SYMBOL 0x9dbbdadd ocelot_core_init drivers/mfd/ocelot-soc +MFD_OCELOT EXPORT_SYMBOL 0xaebcca0d ocelot_chip_reset drivers/mfd/ocelot-soc +MFD_OCELOT_SPI EXPORT_SYMBOL 0x7438b521 ocelot_spi_init_regmap drivers/mfd/ocelot-soc +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1d4ad6dd nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1fa2830d nvme_execute_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x576edb64 nvme_passthru_start drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x886ea0db nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x961efcb8 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xaede0968 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xdbcedbc6 nvme_passthru_end drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x01cf0fde peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x042fb419 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x06a5fd6e peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x13dc5ad2 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x16bb8bfe peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1a27ccfc peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x211fdba9 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2c6e759a peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3a0a71a6 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3f87d4e7 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x42ce4c83 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4db2321e peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x56e287db peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x59808262 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x599caff2 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6a1680d2 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7cb3a427 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8718c5e2 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8ae18134 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa8a894d9 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xac0648e7 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc25082ac peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc41986bf peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd7e801f7 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdf4b65ce peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe0b6145b peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe545dde3 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xeb38acf0 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf6e83877 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x651546e7 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x97011f55 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xa6863aa4 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xe38a9ef1 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xfb217fa7 peci_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x0e6381c3 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1aa92d69 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2faee896 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x36138e92 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5073bedf pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x575dac1f pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x57fc08e9 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6e6c3f3c pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x77aacc7b pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7c550a2b pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8edfd53f pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa2cacc9f pmbus_lock_interruptible drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa92d065c pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb3d438f5 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb82f71ff pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc7a1ca4a pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe0560b76 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe2b317a4 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xed535378 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf7527644 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf8488fed pmbus_unlock drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x151c1fcc sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x59134b41 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x6008655e sx_common_get_raw_register_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x8344926e sx_common_probe drivers/iio/proximity/sx_common SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa103ce02 sx_common_events drivers/iio/proximity/sx_common -SEMTECH_PROX EXPORT_SYMBOL_GPL 0xea553d15 sx_common_probe drivers/iio/proximity/sx_common -SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0xf681391a serial8250_pci_setup_port vmlinux -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x0293f538 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xdb4e7966 sx_common_read_event_config drivers/iio/proximity/sx_common +SERIAL_8250_PCI EXPORT_SYMBOL_GPL 0x884da7ac serial8250_pci_setup_port vmlinux SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x89bfcc1e hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xb37d3584 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xe06a0c5d hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x6bf4b2a7 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x7fb6fe37 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 -SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xa5e7ac35 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x8c9aac07 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x93265cfa hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xcf882434 hda_cs_dsp_add_controls sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xd5e45722 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x953c0837 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xdb012e8c cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xf7c51c1c cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x30c3d7da cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x0419daf6 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x31478663 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x36ec6791 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x75d4a6dd cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7a424e2a cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7f7e9ea2 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 -SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xec787c23 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x59159cb7 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x727f472f cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x9223e8ff cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xd8a2710f cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x02e27e6d cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x05482545 cs35l56_irq sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x4dabf39b cs35l56_init sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x65a27ce9 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x6b6d8b12 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x8d947536 cs35l56_pm_ops_i2c_spi sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x90051011 cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xa912a8cc cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 -SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xeb03b241 cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x25f6c1f1 cs35l56_init sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x3f6a1d76 cs35l56_runtime_suspend sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x688ff6d4 cs35l56_irq_request sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0x835e802b cs35l56_common_probe sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xc14f9aa6 cs35l56_remove sound/soc/codecs/snd-soc-cs35l56 +SND_SOC_CS35L56_CORE EXPORT_SYMBOL_GPL 0xf858227b cs35l56_runtime_resume_common sound/soc/codecs/snd-soc-cs35l56 SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x05c2529e cs35l56_tx_input_values sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x2f35d7ab cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x129dc5b9 cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x312c0e0f cs35l56_dsp1_regions sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x560ee507 cs35l56_regmap_i2c sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x64e759e4 cs35l56_tx_input_texts sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x6ba6f715 cs35l56_regmap_sdw sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0x88762c92 cs35l56_get_bclk_freq_id sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xa773a3d0 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xa4c8c366 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared +SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xccbd19d9 cs35l56_reread_firmware_registers sound/soc/codecs/snd-soc-cs35l56-shared SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xcd5438ad cs35l56_fill_supply_names sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS35L56_SHARED EXPORT_SYMBOL_GPL 0xe05be3d8 cs35l56_regmap_spi sound/soc/codecs/snd-soc-cs35l56-shared -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x1403a55d cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2609a386 cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2fe51a88 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3bb3afa6 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3d4e4f58 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x579441bf cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x76d6382d cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x86d32f0e cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa7965de2 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa9698ee4 cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x04e99e6e cs42l42_init sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x081eaddf cs42l42_common_probe sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x14385c48 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x2161eecc cs42l42_regmap sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x348845d7 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x3ba7f359 cs42l42_suspend sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x75af71c3 cs42l42_mute_stream sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0x90ce5fd2 cs42l42_common_remove sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xa6424796 cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xae4be5c4 cs42l42_irq_thread sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xaec50bb4 cs42l42_soc_component sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb37bfd5f cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xb5d14328 cs42l42_pll_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xba380d3d cs42l42_resume_restore sound/soc/codecs/snd-soc-cs42l42 SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc053efa9 cs42l42_page_range sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xcc20898f cs42l42_volatile_register sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xf6a37b23 cs42l42_dai sound/soc/codecs/snd-soc-cs42l42 -SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x27b44308 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xc79cc65b cs42l42_src_config sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xeae79696 cs42l42_resume sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_CS42L42_CORE EXPORT_SYMBOL_GPL 0xecb1e117 cs42l42_readable_register sound/soc/codecs/snd-soc-cs42l42 +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xc6d18b86 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x09351149 tasdevice_prmg_calibdata_load sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1a949c7c tasdevice_select_cfg_blk sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0x1ab9b7d9 tasdevice_select_tuningprm_cfg sound/soc/codecs/snd-soc-tas2781-fmwlib @@ -28676,28 +28676,27 @@ SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xa7d17083 tasdevice_rca_parser sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfa72134b tasdevice_dsp_parser sound/soc/codecs/snd-soc-tas2781-fmwlib SND_SOC_TAS2781_FMWLIB EXPORT_SYMBOL_GPL 0xfe3a6722 tasdevice_prmg_load sound/soc/codecs/snd-soc-tas2781-fmwlib -SOUNDWIRE_INTEL EXPORT_SYMBOL 0x36f69dab sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL EXPORT_SYMBOL 0xa50e696d sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x13e49548 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0x3543ac3c sdw_intel_cnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL EXPORT_SYMBOL 0xa6bb58fa sdw_intel_lnl_hw_ops drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x15cb4bcf sdw_intel_startup drivers/soundwire/soundwire-intel SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xb1f72d47 sdw_intel_probe drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xc9ad5e98 sdw_intel_exit drivers/soundwire/soundwire-intel -SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xe30eabf4 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1980d1b3 dw_spi_set_cs drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x3017809e dw_spi_suspend_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x542c288d dw_spi_add_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x61588f37 dw_spi_check_status drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7a376d21 dw_spi_dma_setup_generic drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0x9dd29042 dw_spi_remove_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa7dc6b82 dw_spi_update_config drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb93b4947 dw_spi_resume_host drivers/spi/spi-dw -SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd7bd376d dw_spi_dma_setup_mfld drivers/spi/spi-dw +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xcf82801f sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xe5217573 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xe95ceab5 sdw_intel_probe drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x13a8b3d3 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x173bbc41 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x21e853d6 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x317a6ccf dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x37416ad6 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x61f37649 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8c62099a dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xbe6da30f dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xc1b23dd0 dw_spi_set_cs drivers/spi/spi-dw SUNXI_CCU EXPORT_SYMBOL_GPL 0x079708d7 ccu_gate_helper_enable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x0a9707d3 ccu_mux_helper_get_parent vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x0c64ee0e ccu_sdm_helper_enable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x14438263 ccu_frac_helper_read_rate vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x1f23b840 ccu_nkmp_ops vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x2ffd1f8f ccu_pll_notifier_register vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x3e362444 ccu_frac_helper_is_enabled vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x45837646 ccu_sdm_helper_is_enabled vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x50165be0 ccu_mux_notifier_register vmlinux @@ -28705,19 +28704,19 @@ SUNXI_CCU EXPORT_SYMBOL_GPL 0x5cddbcc6 ccu_nm_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x61abda39 ccu_mux_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x6668446b ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x71dbd765 ccu_pll_notifier_register vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x7279ee3e ccu_mult_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x831d58e6 ccu_gate_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x844f1c47 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x873d27a1 ccu_helper_wait_for_lock vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x8a845fdb ccu_nk_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x8bdea961 ccu_nkm_ops vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0x8c57db73 devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x8e63463a ccu_frac_helper_has_rate vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x923edf17 ccu_sdm_helper_read_rate vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x976fa968 ccu_mp_mmc_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xad1062ab ccu_gate_helper_disable vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xba365240 ccu_sdm_helper_get_factors vmlinux -SUNXI_CCU EXPORT_SYMBOL_GPL 0xbb40937b ccu_helper_wait_for_lock vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xbdb5d83e ccu_mux_helper_determine_rate vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xc4608f36 ccu_mux_helper_apply_prediv vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xce9edc4f ccu_frac_helper_disable vmlinux @@ -28729,27 +28728,28 @@ +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf1f93115 devm_sunxi_ccu_probe vmlinux SUNXI_CCU EXPORT_SYMBOL_GPL 0xf66eb443 ccu_gate_helper_is_enabled vmlinux TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux -USB_STORAGE EXPORT_SYMBOL_GPL 0x00a63dff usb_stor_probe2 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x030fe265 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x10053d82 usb_stor_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x18a40b8b usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0223e062 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x04dc35b2 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0f0985a8 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1225dcb3 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x153c6a7a fill_inquiry_response drivers/usb/storage/usb-storage USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x1caa7415 usb_stor_Bulk_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x255b2edc usb_stor_reset_resume drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x28905bae usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x2a0350e1 usb_stor_pre_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x45e10cef usb_stor_CB_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x475cbd43 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x48353238 usb_stor_adjust_quirks drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x5efdca74 fill_inquiry_response drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x6d3d9882 usb_stor_control_msg drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8002b680 usb_stor_clear_halt drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x807a687a usb_stor_Bulk_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x8ef62e0d usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0x938662d8 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xad0dca31 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xb43d7952 usb_stor_CB_transport drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xcff6709b usb_stor_post_reset drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd2479aaf usb_stor_host_template_init drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xd9e6110b usb_stor_disconnect drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xddeb025d usb_stor_probe1 drivers/usb/storage/usb-storage -USB_STORAGE EXPORT_SYMBOL_GPL 0xfcdca80f usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1d31c920 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2443ba8a usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x277bcfed usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2823b1d0 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x36b3cc8e usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4656b441 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5bc19146 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x64bc34ad usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6cdfc556 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x83cdd0d4 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x84158b6d usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8adaad79 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x96806faa usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa01c2565 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xac4b38f5 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcdd691aa usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd1f447fb usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdbc6f03a usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe4a20150 usb_stor_probe2 drivers/usb/storage/usb-storage diff -u linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle.modules linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle.modules --- linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle.modules +++ linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle.modules @@ -3701,6 +3701,7 @@ mtk-uart-apdma mtk-vpu mtk_dp +mtk_iommu mtk_nand mtk_rpmsg mtk_scp @@ -7363,6 +7364,7 @@ wp512 wpcm450-soc wusb3801 +wwan wwan_hwsim x25 x9250 diff -u linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle.modules.builtin linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle.modules.builtin --- linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle.modules.builtin +++ linux-oracle-6.5-6.5.0/debian.oracle/abi/arm64/oracle.modules.builtin @@ -527,7 +527,6 @@ virtio_scsi vivaldi-fmap watchdog -wwan x509_key_parser xen-blkfront xen-netfront diff -u linux-oracle-6.5-6.5.0/debian.oracle/abi/version linux-oracle-6.5-6.5.0/debian.oracle/abi/version --- linux-oracle-6.5-6.5.0/debian.oracle/abi/version +++ linux-oracle-6.5-6.5.0/debian.oracle/abi/version @@ -1 +1 @@ -6.5.0-1012.12 +6.5.0-1014.14 diff -u linux-oracle-6.5-6.5.0/debian.oracle/changelog linux-oracle-6.5-6.5.0/debian.oracle/changelog --- linux-oracle-6.5-6.5.0/debian.oracle/changelog +++ linux-oracle-6.5-6.5.0/debian.oracle/changelog @@ -1,3 +1,1525 @@ +linux-oracle (6.5.0-1015.15) mantic; urgency=medium + + * mantic/linux-oracle: 6.5.0-1015.15 -proposed tracker (LP: #2048363) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + + [ Ubuntu: 6.5.0-17.17 ] + + * mantic/linux: 6.5.0-17.17 -proposed tracker (LP: #2049026) + * [UBUNTU 23.04] Regression: Ubuntu 23.04/23.10 do not include uvdevice + anymore (LP: #2048919) + - [Config] Enable S390_UV_UAPI (built-in) + + [ Ubuntu: 6.5.0-16.16 ] + + * mantic/linux: 6.5.0-16.16 -proposed tracker (LP: #2048372) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + * Add missing RPL P/U CPU IDs (LP: #2047398) + - drm/i915/rpl: Update pci ids for RPL P/U + * Fix BCM57416 lost after resume (LP: #2047518) + - bnxt_en: Clear resource reservation during resume + * Hotplugging SCSI disk in QEMU VM fails (LP: #2047382) + - Revert "PCI: acpiphp: Reassign resources on bridge if necessary" + * Update bnxt_en with bug fixes and support for Broadcom 5760X network + adapters (LP: #2045796) + - bnxt_en: use dev_consume_skb_any() in bnxt_tx_int + - eth: bnxt: move and rename reset helpers + - eth: bnxt: take the bit to set as argument of bnxt_queue_sp_work() + - eth: bnxt: handle invalid Tx completions more gracefully + - eth: bnxt: fix one of the W=1 warnings about fortified memcpy() + - eth: bnxt: fix warning for define in struct_group + - bnxt_en: Fix W=1 warning in bnxt_dcb.c from fortify memcpy() + - bnxt_en: Fix W=stringop-overflow warning in bnxt_dcb.c + - bnxt_en: Use the unified RX page pool buffers for XDP and non-XDP + - bnxt_en: Let the page pool manage the DMA mapping + - bnxt_en: Increment rx_resets counter in bnxt_disable_napi() + - bnxt_en: Save ring error counters across reset + - bnxt_en: Display the ring error counters under ethtool -S + - bnxt_en: Add tx_resets ring counter + - bnxt: use the NAPI skb allocation cache + - bnxt_en: Update firmware interface to 1.10.2.171 + - bnxt_en: Enhance hwmon temperature reporting + - bnxt_en: Move hwmon functions into a dedicated file + - bnxt_en: Modify the driver to use hwmon_device_register_with_info + - bnxt_en: Expose threshold temperatures through hwmon + - bnxt_en: Use non-standard attribute to expose shutdown temperature + - bnxt_en: Event handler for Thermal event + - bnxt_en: Support QOS and TPID settings for the SRIOV VLAN + - bnxt_en: Update VNIC resource calculation for VFs + - Revert "bnxt_en: Support QOS and TPID settings for the SRIOV VLAN" + - eth: bnxt: fix backward compatibility with older devices + - bnxt_en: Do not call sleeping hwmon_notify_event() from NAPI + - bnxt_en: Fix invoking hwmon_notify_event + - bnxt_en: add infrastructure to lookup ethtool link mode + - bnxt_en: support lane configuration via ethtool + - bnxt_en: refactor speed independent ethtool modes + - bnxt_en: Refactor NRZ/PAM4 link speed related logic + - bnxt_en: convert to linkmode_set_bit() API + - bnxt_en: extend media types to supported and autoneg modes + - bnxt_en: Fix 2 stray ethtool -S counters + - bnxt_en: Put the TX producer information in the TX BD opaque field + - bnxt_en: Add completion ring pointer in TX and RX ring structures + - bnxt_en: Restructure cp_ring_arr in struct bnxt_cp_ring_info + - bnxt_en: Add completion ring pointer in TX and RX ring structures + - bnxt_en: Remove BNXT_RX_HDL and BNXT_TX_HDL + - bnxt_en: Refactor bnxt_tx_int() + - bnxt_en: New encoding for the TX opaque field + - bnxt_en: Refactor bnxt_hwrm_set_coal() + - bnxt_en: Support up to 8 TX rings per MSIX + - bnxt_en: Add helper to get the number of CP rings required for TX rings + - bnxt_en: Add macros related to TC and TX rings + - bnxt_en: Use existing MSIX vectors for all mqprio TX rings + - bnxt_en: Optimize xmit_more TX path + - bnxt_en: The caller of bnxt_alloc_ctx_mem() should always free bp->ctx + - bnxt_en: Free bp->ctx inside bnxt_free_ctx_mem() + - bnxt_en: Restructure context memory data structures + - bnxt_en: Add page info to struct bnxt_ctx_mem_type + - bnxt_en: Use the pg_info field in bnxt_ctx_mem_type struct + - bnxt_en: Add bnxt_setup_ctxm_pg_tbls() helper function + - bnxt_en: Add support for new backing store query firmware API + - bnxt_en: Add support for HWRM_FUNC_BACKING_STORE_CFG_V2 firmware calls + - bnxt_en: Add db_ring_mask and related macro to bnxt_db_info struct. + - bnxt_en: Modify TX ring indexing logic. + - bnxt_en: Modify RX ring indexing logic. + - bnxt_en: Modify the NAPI logic for the new P7 chips + - bnxt_en: Rename some macros for the P5 chips + - bnxt_en: Fix backing store V2 logic + - bnxt_en: Update firmware interface to 1.10.3.15 + - bnxt_en: Define basic P7 macros + - bnxt_en: Consolidate DB offset calculation + - bnxt_en: Implement the new toggle bit doorbell mechanism on P7 chips + - bnxt_en: Refactor RSS capability fields + - bnxt_en: Add new P7 hardware interface definitions + - bnxt_en: Refactor RX VLAN acceleration logic. + - bnxt_en: Refactor and refine bnxt_tpa_start() and bnxt_tpa_end(). + - bnxt_en: Add support for new RX and TPA_START completion types for P7 + - bnxt_en: Refactor ethtool speeds logic + - bnxt_en: Support new firmware link parameters + - bnxt_en: Support force speed using the new HWRM fields + - bnxt_en: Report the new ethtool link modes in the new firmware interface + - bnxt_en: Add 5760X (P7) PCI IDs + - net: bnxt: fix a potential use-after-free in bnxt_init_tc + * drm: Update file owner during use (LP: #2047461) + - drm: Update file owner during use + * CVE-2023-6622 + - netfilter: nf_tables: bail out on mismatching dynset and set expressions + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * Support Cirrus CS35L41 codec on Dell Oasis 13/14/16 laptops (LP: #2044096) + - ALSA: hda/realtek: Add support dual speaker for Dell + * Add support of MTL audio of Lenovo (LP: #2048078) + - ALSA: hda: intel-nhlt: Ignore vbps when looking for DMIC 32 bps format + * Fix AMDGPU crash on 6.5 kernel (LP: #2047389) + - drm/amdgpu: disable MCBP by default + * Some machines can't pass the pm-graph test (LP: #2046217) + - wifi: iwlwifi: pcie: rescan bus if no parent + * Sound: Add rtl quirk of M90-Gen5 (LP: #2046105) + - ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5 + * linux tools packages for derived kernels refuse to install simultaneously + due to libcpupower name collision (LP: #2035971) + - [Packaging] Statically link libcpupower into cpupower tool + * [Debian] autoreconstruct - Do not generate chmod -x for deleted files + (LP: #2045562) + - [Debian] autoreconstruct - Do not generate chmod -x for deleted files + * CVE-2023-6931 + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + * Mantic update: v6.5.8 upstream stable release (LP: #2046269) + - net: stmmac: remove unneeded stmmac_poll_controller + - RDMA/cxgb4: Check skb value for failure to allocate + - perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7 + - platform/x86: think-lmi: Fix reference leak + - drm/i915: Register engines early to avoid type confusion + - cpuidle, ACPI: Evaluate LPI arch_flags for broadcast timer + - drm/amdgpu: Fix a memory leak + - platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section + mismatch warning + - media: dt-bindings: imx7-csi: Make power-domains not required for imx8mq + - drm/amd/display: implement pipe type definition and adding accessors + - drm/amd/display: apply edge-case DISPCLK WDIVIDER changes to master OTG + pipes only + - scsi: Do not rescan devices with a suspended queue + - ata: pata_parport: fix pata_parport_devchk + - ata: pata_parport: implement set_devctl + - HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect + - quota: Fix slow quotaoff + - dm crypt: Fix reqsize in crypt_iv_eboiv_gen + - ASoC: amd: yc: Fix non-functional mic on Lenovo 82YM + - ASoC: hdmi-codec: Fix broken channel map reporting + - ata: libata-scsi: Disable scsi device manage_system_start_stop + - net: prevent address rewrite in kernel_bind() + - arm64: dts: qcom: sm8150: extend the size of the PDC resource + - dt-bindings: interrupt-controller: renesas,rzg2l-irqc: Update description + for '#interrupt-cells' property + - irqchip: renesas-rzg2l: Fix logic to clear TINT interrupt source + - KEYS: trusted: Remove redundant static calls usage + - ALSA: usb-audio: Fix microphone sound on Opencomm2 Headset + - ALSA: usb-audio: Fix microphone sound on Nexigo webcam. + - ALSA: hda: cs35l41: Cleanup and fix double free in firmware request + - ALSA: hda/realtek: Change model for Intel RVP board + - ASoC: SOF: amd: fix for firmware reload failure after playback + - ASoC: simple-card-utils: fixup simple_util_startup() error handling + - ASoC: Intel: soc-acpi: fix Dell SKU 0B34 + - ASoC: Intel: soc-acpi: Add entry for HDMI_In capture support in MTL match + table + - ASoC: fsl_sai: Don't disable bitclock for i.MX8MP + - ASoC: Intel: sof_sdw: add support for SKU 0B14 + - ASoC: Intel: soc-acpi: Add entry for sof_es8336 in MTL match table. + - ALSA: hda/realtek - ALC287 merge RTK codec with CS CS35L41 AMP + - ALSA: hda/realtek: Add quirk for HP Victus 16-d1xxx to enable mute LED + - ALSA: hda/realtek: Add quirk for mute LEDs on HP ENVY x360 15-eu0xxx + - pinctrl: nuvoton: wpcm450: fix out of bounds write + - pinctrl: starfive: jh7110: Fix failure to set irq after CONFIG_PM is enabled + - drm/msm/dp: do not reinitialize phy unless retry during link training + - drm/msm/dsi: skip the wait for video mode done if not applicable + - drm/msm/dsi: fix irq_of_parse_and_map() error checking + - drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow + - drm/msm/dp: Add newlines to debug printks + - drm/msm/dpu: fail dpu_plane_atomic_check() based on mdp clk limits + - phy: lynx-28g: cancel the CDR check work item on the remove path + - phy: lynx-28g: lock PHY while performing CDR lock workaround + - phy: lynx-28g: serialize concurrent phy_set_mode_ext() calls to shared + registers + - net: dsa: qca8k: fix regmap bulk read/write methods on big endian systems + - net: dsa: qca8k: fix potential MDIO bus conflict when accessing internal + PHYs via management frames + - can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior + - can: sun4i_can: Only show Kconfig if ARCH_SUNXI is set + - arm64: dts: mediatek: fix t-phy unit name + - arm64: dts: mediatek: mt8195: Set DSU PMU status to fail + - devlink: Hold devlink lock on health reporter dump get + - ravb: Fix up dma_free_coherent() call in ravb_remove() + - ravb: Fix use-after-free issue in ravb_tx_timeout_work() + - ieee802154: ca8210: Fix a potential UAF in ca8210_probe + - mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type + - xen-netback: use default TX queue size for vifs + - riscv, bpf: Sign-extend return values + - riscv, bpf: Track both a0 (RISC-V ABI) and a5 (BPF) return values + - xdp: Fix zero-size allocation warning in xskq_create() + - drm/vmwgfx: fix typo of sizeof argument + - bpf: Fix verifier log for async callback return values + - net: refine debug info in skb_checksum_help() + - octeontx2-pf: mcs: update PN only when update_pn is true + - net: macsec: indicate next pn update when offloading + - net: phy: mscc: macsec: reject PN update requests + - net/mlx5e: macsec: use update_pn flag instead of PN comparation + - drm/panel: boe-tv101wum-nl6: Completely pull GPW to VGL before TP term + - ixgbe: fix crash with empty VF macvlan list + - net/smc: Fix dependency of SMC on ISM + - net/mlx5e: Again mutually exclude RX-FCS and RX-port-timestamp + - s390/bpf: Fix clobbering the caller's backchain in the trampoline + - s390/bpf: Fix unwinding past the trampoline + - net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn() + - net: tcp: fix crashes trying to free half-baked MTU probes + - pinctrl: renesas: rzn1: Enable missing PINMUX + - af_packet: Fix fortified memcpy() without flex array. + - nfc: nci: assert requested protocol is valid + - octeontx2-pf: Fix page pool frag allocation warning + - rswitch: Fix renesas_eth_sw_remove() implementation + - rswitch: Fix imbalance phy_power_off() calling + - workqueue: Override implicit ordered attribute in + workqueue_apply_unbound_cpumask() + - riscv: signal: fix sigaltstack frame size checking + - ovl: temporarily disable appending lowedirs + - dmaengine: stm32-mdma: abort resume if no ongoing transfer + - dmaengine: stm32-dma: fix stm32_dma_prep_slave_sg in case of MDMA chaining + - dmaengine: stm32-dma: fix residue in case of MDMA chaining + - dmaengine: stm32-mdma: use Link Address Register to compute residue + - dmaengine: stm32-mdma: set in_flight_bytes in case CRQA flag is set + - usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer + - xhci: track port suspend state correctly in unsuccessful resume cases + - xhci: Clear EHB bit only at end of interrupt handler + - xhci: Preserve RsvdP bits in ERSTBA register correctly + - net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read + - usb: dwc3: Soft reset phy on probe for host + - usb: cdns3: Modify the return value of cdns_set_active () to void when + CONFIG_PM_SLEEP is disabled + - usb: hub: Guard against accesses to uninitialized BOS descriptors + - usb: musb: Get the musb_qh poniter after musb_giveback + - usb: musb: Modify the "HWVers" register address + - iio: pressure: bmp280: Fix NULL pointer exception + - iio: imu: bno055: Fix missing Kconfig dependencies + - iio: cros_ec: fix an use-after-free in cros_ec_sensors_push_data() + - iio: adc: imx8qxp: Fix address for command buffer registers + - iio: dac: ad3552r: Correct device IDs + - iio: admv1013: add mixer_vgate corner cases + - iio: pressure: dps310: Adjust Timeout Settings + - iio: pressure: ms5611: ms5611_prom_is_valid false negative bug + - iio: adc: ad7192: Correct reference voltage + - iio: addac: Kconfig: update ad74413r selections + - media: subdev: Don't report V4L2_SUBDEV_CAP_STREAMS when the streams API is + disabled + - arm64: dts: mediatek: mt8195-demo: fix the memory size to 8GB + - arm64: dts: mediatek: mt8195-demo: update and reorder reserved memory + regions + - drm: Do not overrun array in drm_gem_get_pages() + - drm/tiny: correctly print `struct resource *` on error + - drm/atomic-helper: relax unregistered connector check + - drm/amdgpu: add missing NULL check + - drm/amd/display: Don't set dpms_off for seamless boot + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA + - ACPI: resource: Add TongFang GM6BGEQ, GM6BG5Q and GM6BG0Q to + irq1_edge_low_force_override[] + - ACPI: EC: Add quirk for the HP Pavilion Gaming 15-dk1xxx + - serial: Reduce spinlocked portion of uart_rs485_config() + - serial: 8250_omap: Fix errors with no_console_suspend + - serial: core: Fix checks for tx runtime PM state + - binder: fix memory leaks of spam and pending work + - ksmbd: not allow to open file if delelete on close bit is set + - perf/x86/lbr: Filter vsyscall addresses + - x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs + - x86/alternatives: Disable KASAN in apply_alternatives() + - mcb: remove is_added flag from mcb_device struct + - thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple + Ridge + - thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding + - thunderbolt: Correct TMU mode initialization from hardware + - thunderbolt: Restart XDomain discovery handshake after failure + - powerpc/pseries: Fix STK_PARAM access in the hcall tracing code + - powerpc/47x: Fix 47x syscall return crash + - libceph: use kernel_connect() + - ceph: fix incorrect revoked caps assert in ceph_fill_file_size() + - ceph: fix type promotion bug on 32bit systems + - Input: powermate - fix use-after-free in powermate_config_complete + - Input: psmouse - fix fast_reconnect function for PS/2 mode + - Input: xpad - add PXN V900 support + - Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table + - Input: xpad - add HyperX Clutch Gladiate Support + - Input: goodix - ensure int GPIO is in input for gpio_count == 1 && + gpio_int_idx == 0 case + - tee: amdtee: fix use-after-free vulnerability in amdtee_close_session + - mctp: perform route lookups under a RCU read-side lock + - block: Don't invalidate pagecache for invalid falloc modes + - nfp: flower: avoid rmmod nfp crash issues + - can: sja1000: Always restart the Tx queue after an overrun + - power: supply: qcom_battmgr: fix battery_id type + - power: supply: qcom_battmgr: fix enable request endianness + - usb: typec: ucsi: Use GET_CAPABILITY attributes data to set power supply + scope + - cgroup: Remove duplicates in cgroup v1 tasks file + - dma-buf: add dma_fence_timestamp helper + - scsi: ufs: core: Correct clear TM error log + - riscv: Only consider swbp/ss handlers for correct privileged mode + - counter: chrdev: fix getting array extensions + - counter: microchip-tcb-capture: Fix the use of internal GCLK logic + - coresight: Fix run time warnings while reusing ETR buffer + - riscv: Remove duplicate objcopy flag + - RISC-V: Fix wrong use of CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK + - usb: typec: ucsi: Fix missing link removal + - usb: typec: altmodes/displayport: Signal hpd low when exiting mode + - usb: typec: ucsi: Clear EVENT_PENDING bit if ucsi_send_command fails + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call + - usb: cdnsp: Fixes issue with dequeuing not queued requests + - usb: typec: qcom: Update the logic of regulator enable and disable + - usb: misc: onboard_hub: add support for Microchip USB2412 USB 2.0 hub + - dmaengine: idxd: use spin_lock_irqsave before wait_event_lock_irq + - dmaengine: mediatek: Fix deadlock caused by synchronize_irq() + - powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE + - powerpc/64e: Fix wrong test in __ptep_test_and_clear_young() + - fs: Fix kernel-doc warnings + - fs: factor out vfs_parse_monolithic_sep() helper + - ovl: fix regression in parsing of mount options with escaped comma + - ovl: make use of ->layers safe in rcu pathwalk + - ovl: fix regression in showing lowerdir mount option + - ALSA: hda/realtek - Fixed two speaker platform + - Linux 6.5.8 + * Mantic update: v6.5.7 upstream stable release (LP: #2045806) + - ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol + - ASoC: tegra: Fix redundant PLLA and PLLA_OUT0 updates + - maple_tree: add mas_is_active() to detect in-tree walks + - mptcp: Remove unnecessary test for __mptcp_init_sock() + - mptcp: rename timer related helper to less confusing names + - mptcp: fix dangling connection hang-up + - scsi: core: Improve type safety of scsi_rescan_device() + - scsi: Do not attempt to rescan suspended devices + - ata: libata-scsi: Fix delayed scsi_rescan_device() execution + - btrfs: remove btrfs_writepage_endio_finish_ordered + - btrfs: remove end_extent_writepage + - btrfs: don't clear uptodate on write errors + - arm64: add HWCAP for FEAT_HBC (hinted conditional branches) + - arm64: cpufeature: Fix CLRBHB and BC detection + - net: add sysctl accept_ra_min_rtr_lft + - net: change accept_ra_min_rtr_lft to affect all RA lifetimes + - net: release reference to inet6_dev pointer + - iommu/arm-smmu-v3: Avoid constructing invalid range commands + - maple_tree: reduce resets during store setup + - maple_tree: add MAS_UNDERFLOW and MAS_OVERFLOW states + - iommu/apple-dart: Handle DMA_FQ domains in attach_dev() + - scsi: zfcp: Fix a double put in zfcp_port_enqueue() + - iommu/vt-d: Avoid memory allocation in iommu_suspend() + - net: mana: Fix TX CQE error handling + - net: ethernet: mediatek: disable irq before schedule napi + - mptcp: fix delegated action races + - mptcp: userspace pm allow creating id 0 subflow + - qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info + - Bluetooth: hci_codec: Fix leaking content of local_codecs + - wifi: brcmfmac: Replace 1-element arrays with flexible arrays + - Bluetooth: hci_sync: Fix handling of HCI_QUIRK_STRICT_DUPLICATE_FILTER + - wifi: rtw88: rtw8723d: Fix MAC address offset in EEPROM + - wifi: mwifiex: Fix tlv_buf_left calculation + - md/raid5: release batch_last before waiting for another stripe_head + - PCI/PM: Mark devices disconnected if upstream PCIe link is down on resume + - PCI: qcom: Fix IPQ8074 enumeration + - platform/x86/intel/ifs: release cpus_read_lock() + - net: replace calls to sock->ops->connect() with kernel_connect() + - btrfs: always print transaction aborted messages with an error level + - net: prevent rewrite of msg_name in sock_sendmsg() + - drm/i915: Don't set PIPE_CONTROL_FLUSH_L3 for aux inval + - drm/amd: Fix detection of _PR3 on the PCIe root port + - drm/amd: Fix logic error in sienna_cichlid_update_pcie_parameters() + - arm64: Add Cortex-A520 CPU part definition + - [Config] updateconfigs for ARM64_ERRATUM_2966298 + - arm64: errata: Add Cortex-A520 speculative unprivileged load workaround + - HID: sony: Fix a potential memory leak in sony_probe() + - wifi: mt76: fix lock dependency problem for wed_lock + - ubi: Refuse attaching if mtd's erasesize is 0 + - erofs: fix memory leak of LZMA global compressed deduplication + - wifi: cfg80211/mac80211: hold link BSSes when assoc fails for MLO connection + - iwlwifi: mvm: handle PS changes in vif_cfg_changed + - wifi: iwlwifi: dbg_ini: fix structure packing + - wifi: iwlwifi: mvm: Fix a memory corruption issue + - wifi: cfg80211: fix cqm_config access race + - rtla/timerlat_aa: Zero thread sum after every sample analysis + - rtla/timerlat_aa: Fix negative IRQ delay + - rtla/timerlat_aa: Fix previous IRQ delay for IRQs that happens after thread + sample + - wifi: cfg80211: add missing kernel-doc for cqm_rssi_work + - wifi: mac80211: fix mesh id corruption on 32 bit systems + - wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet + - HID: nvidia-shield: add LEDS_CLASS dependency + - erofs: allow empty device tags in flatdev mode + - s390/bpf: Let arch_prepare_bpf_trampoline return program size + - leds: Drop BUG_ON check for LED_COLOR_ID_MULTI + - bpf: Fix tr dereferencing + - bpf: unconditionally reset backtrack_state masks on global func exit + - regulator: mt6358: split ops for buck and linear range LDO regulators + - Bluetooth: Delete unused hci_req_prepare_suspend() declaration + - Bluetooth: Fix hci_link_tx_to RCU lock usage + - Bluetooth: ISO: Fix handling of listen for unicast + - drivers/net: process the result of hdlc_open() and add call of hdlc_close() + in uhdlc_close() + - wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling + - perf/x86/amd/core: Fix overflow reset on hotplug + - rtla/timerlat: Do not stop user-space if a cpu is offline + - regmap: rbtree: Fix wrong register marked as in-cache when creating new node + - wifi: mac80211: fix potential key use-after-free + - perf/x86/amd: Do not WARN() on every IRQ + - iommu/mediatek: Fix share pgtable for iova over 4GB + - wifi: mac80211: Create resources for disabled links + - regulator/core: regulator_register: set device->class earlier + - ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_BLACKLIST_KEYRING + - wifi: iwlwifi: mvm: Fix incorrect usage of scan API + - scsi: target: core: Fix deadlock due to recursive locking + - ima: rework CONFIG_IMA dependency block + - NFSv4: Fix a nfs4_state_manager() race + - ice: always add legacy 32byte RXDID in supported_rxdids + - bpf: tcp_read_skb needs to pop skb regardless of seq + - bpf, sockmap: Do not inc copied_seq when PEEK flag set + - bpf, sockmap: Reject sk_msg egress redirects to non-TCP sockets + - modpost: add missing else to the "of" check + - net: stmmac: platform: fix the incorrect parameter + - net: fix possible store tearing in neigh_periodic_work() + - neighbour: fix data-races around n->output + - ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data() + - ptp: ocp: Fix error handling in ptp_ocp_device_init + - net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent + - ovl: move freeing ovl_entry past rcu delay + - ovl: fetch inode once in ovl_dentry_revalidate_common() + - ipv6: tcp: add a missing nf_reset_ct() in 3WHS handling + - net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg + - ethtool: plca: fix plca enable data type while parsing the value + - net: nfc: llcp: Add lock when modifying device list + - net: renesas: rswitch: Add spin lock protection for irq {un}mask + - rswitch: Fix PHY station management clock setting + - net: ethernet: ti: am65-cpsw: Fix error code in + am65_cpsw_nuss_init_tx_chns() + - ibmveth: Remove condition to recompute TCP header checksum. + - netfilter: nft_payload: rebuild vlan header on h_proto access + - netfilter: handle the connecting collision properly in + nf_conntrack_proto_sctp + - selftests: netfilter: Test nf_tables audit logging + - selftests: netfilter: Extend nft_audit.sh + - netfilter: nf_tables: Deduplicate nft_register_obj audit logs + - netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure + - ipv4: Set offload_failed flag in fibmatch results + - net: stmmac: dwmac-stm32: fix resume on STM32 MCU + - tipc: fix a potential deadlock on &tx->lock + - tcp: fix quick-ack counting to count actual ACKs of new data + - tcp: fix delayed ACKs for MSS boundary condition + - sctp: update transport state when processing a dupcook packet + - sctp: update hb timer immediately after users change hb_interval + - netlink: annotate data-races around sk->sk_err + - net: mana: Fix the tso_bytes calculation + - net: mana: Fix oversized sge0 for GSO packets + - HID: nvidia-shield: Fix a missing led_classdev_unregister() in the probe + error handling path + - HID: sony: remove duplicate NULL check before calling usb_free_urb() + - HID: intel-ish-hid: ipc: Disable and reenable ACPI GPE bit + - net: lan743x: also select PHYLIB + - parisc: Restore __ldcw_align for PA-RISC 2.0 processors + - smb: use kernel_connect() and kernel_bind() + - parisc: Fix crash with nr_cpus=1 option + - dm zoned: free dmz->ddev array in dmz_put_zoned_devices + - RDMA/core: Require admin capabilities to set system parameters + - of: dynamic: Fix potential memory leak in of_changeset_action() + - IB/mlx4: Fix the size of a buffer in add_port_entries() + - gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config() + - gpio: pxa: disable pinctrl calls for MMP_GPIO + - RDMA/cma: Initialize ib_sa_multicast structure to 0 when join + - RDMA/cma: Fix truncation compilation warning in make_cma_ports + - RDMA/bnxt_re: Fix the handling of control path response data + - RDMA/uverbs: Fix typo of sizeof argument + - RDMA/srp: Do not call scsi_done() from srp_abort() + - RDMA/siw: Fix connection failure handling + - RDMA/mlx5: Fix mkey cache possible deadlock on cleanup + - RDMA/mlx5: Fix assigning access flags to cache mkeys + - RDMA/mlx5: Fix mutex unlocking on error flow for steering anchor creation + - RDMA/mlx5: Fix NULL string error + - x86/sev: Change npages to unsigned long in snp_accept_memory() + - x86/sev: Use the GHCB protocol when available for SNP CPUID requests + - ksmbd: fix race condition between session lookup and expire + - ksmbd: fix uaf in smb20_oplock_break_ack + - ksmbd: fix race condition from parallel smb2 lock requests + - RDMA/mlx5: Remove not-used cache disable flag + - Linux 6.5.7 + * Mantic update: v6.5.7 upstream stable release (LP: #2045806) // + CVE-2023-34324 + - xen/events: replace evtchn_rwlock with RCU + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6531 + - io_uring/af_unix: disable sending io_uring over sockets + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * Avoid using damage rectangle under hardware rotation mode when PSR is + enabled (LP: #2045958) + - drm/amd/display: fix hw rotated modes when PSR-SU is enabled + * CVE-2023-46813 + - x86/sev: Disable MMIO emulation from user mode + - x86/sev: Check IOBM for IOIO exceptions from user-space + - x86/sev: Check for user-space IOIO pointing to kernel space + * CVE-2023-6111 + - netfilter: nf_tables: remove catchall element in GC sync path + * CVE-2023-5972 + - nf_tables: fix NULL pointer dereference in nft_inner_init() + - nf_tables: fix NULL pointer dereference in nft_expr_inner_parse() + * Orchid Bay MLK2/Maya Bay MLK soundwire support (LP: #2042090) + - ASoC: Intel: soc-acpi-intel-mtl-match: add rt713 rt1316 config + - ASoC: Intel: sof_sdw_rt_sdca_jack_common: add rt713 support + - ASoC: Intel: sof_sdw_rt712_sdca: construct cards->components by name_prefix + - ASoC: Intel: soc-acpi: rt713+rt1316, no sdw-dmic config + * Build failure if run in a console (LP: #2044512) + - [Packaging] Fix kernel module compression failures + * Fix system suspend problem for Cirrus CS35L41 HDA codec on HP ZBook Fury 16 + G9 (LP: #2042060) + - ALSA: hda: cs35l41: Override the _DSD for HP Zbook Fury 17 G9 to correct + boost type + - ALSA: hda: cs35l41: Use reset label to get GPIO for HP Zbook Fury 17 G9 + - ALSA: hda: cs35l41: Assert reset before system suspend + - ALSA: hda: cs35l41: Assert Reset prior to de-asserting in probe and system + resume + - ALSA: hda: cs35l41: Run boot process during resume callbacks + - ALSA: hda: cs35l41: Force a software reset after hardware reset + - ALSA: hda: cs35l41: Do not unload firmware before reset in system suspend + - ALSA: hda: cs35l41: Check CSPL state after loading firmware + - ASoC: cs35l41: Detect CSPL errors when sending CSPL commands + * Support speaker mute hotkey for Cirrus CS35L41 HDA codec (LP: #2039151) + - ALSA: hda: cs35l41: Support systems with missing _DSD properties + - ALSA: hda: cs35l41: Fix the loop check in cs35l41_add_dsd_properties + - ALSA: hda: cs35l41: Add notification support into component binding + - ALSA: hda/realtek: Support ACPI Notification framework via component binding + - ALSA: hda: cs35l41: Support mute notifications for CS35L41 HDA + - ALSA: hda: cs35l41: Add read-only ALSA control for forced mute + * Add SoF topology support on Intel RaptorLake DELL SKU 0C11 (LP: #2038263) + - ASoC: Intel: soc-acpi-intel-rpl-match: add rt711-l0-rt1316-l12 support + * Update io_uring to 6.6 (LP: #2043730) + - fs: create kiocb_{start,end}_write() helpers + - fs: add IOCB flags related to passing back dio completions + - io_uring/poll: always set 'ctx' in io_cancel_data + - io_uring/timeout: always set 'ctx' in io_cancel_data + - io_uring/cancel: abstract out request match helper + - io_uring/cancel: fix sequence matching for IORING_ASYNC_CANCEL_ANY + - io_uring: use cancelation match helper for poll and timeout requests + - io_uring/cancel: add IORING_ASYNC_CANCEL_USERDATA + - io_uring/cancel: support opcode based lookup and cancelation + - io_uring/cancel: wire up IORING_ASYNC_CANCEL_OP for sync cancel + - io_uring/rw: add write support for IOCB_DIO_CALLER_COMP + - io_uring: Add io_uring command support for sockets + - io_uring/rsrc: Remove unused declaration io_rsrc_put_tw() + - io_uring: cleanup 'ret' handling in io_iopoll_check() + - io_uring/fdinfo: get rid of ref tryget + - io_uring/splice: use fput() directly + - io_uring: have io_file_put() take an io_kiocb rather than the file + - io_uring: remove unnecessary forward declaration + - io_uring/io-wq: don't grab wq->lock for worker activation + - io_uring/io-wq: reduce frequency of acct->lock acquisitions + - io_uring/io-wq: don't gate worker wake up success on wake_up_process() + - io_uring: open code io_fill_cqe_req() + - io_uring: remove return from io_req_cqe_overflow() + - io_uring: never overflow io_aux_cqe + - io_uring/rsrc: keep one global dummy_ubuf + - io_uring: simplify io_run_task_work_sig return + - io_uring/rsrc: Annotate struct io_mapped_ubuf with __counted_by + - io_uring: rename kiocb_end_write() local helper + - io_uring: use kiocb_{start,end}_write() helpers + - io_uring: stop calling free_compound_page() + - io_uring: improve cqe !tracing hot path + - io_uring: cqe init hardening + - io_uring: simplify big_cqe handling + - io_uring: refactor __io_get_cqe() + - io_uring: optimise extra io_get_cqe null check + - io_uring: reorder cqring_flush and wakeups + - io_uring: merge iopoll and normal completion paths + - io_uring: force inline io_fill_cqe_req + - io_uring: compact SQ/CQ heads/tails + - io_uring: add option to remove SQ indirection + - io_uring: move non aligned field to the end + - io_uring: banish non-hot data to end of io_ring_ctx + - io_uring: separate task_work/waiting cache line + - io_uring: move multishot cqe cache in ctx + - io_uring: move iopoll ctx fields around + - io_uring: fix IO hang in io_wq_put_and_exit from do_exit() + - io_uring/fdinfo: only print ->sq_array[] if it's there + - io_uring: fix unprotected iopoll overflow + - Revert "io_uring: fix IO hang in io_wq_put_and_exit from do_exit()" + - io_uring/kbuf: don't allow registered buffer rings on highmem pages + - io_uring: ensure io_lockdep_assert_cq_locked() handles disabled rings + - io_uring: don't allow IORING_SETUP_NO_MMAP rings on highmem pages + - io-wq: fully initialize wqe before calling + cpuhp_state_add_instance_nocalls() + - io_uring: fix crash with IORING_SETUP_NO_MMAP and invalid SQ ring address + - io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid + - io_uring/rw: disable IOCB_DIO_CALLER_COMP + - io_uring: kiocb_done() should *not* trust ->ki_pos if ->{read,write}_iter() + failed + * System hang after unplug/plug DP monitor with AMD W7500 card (LP: #2042912) + - drm/amd/pm: Fix error of MACO flag setting code + * correct cephfs pull request for uidmap support (LP: #2041613) + - Revert "UBUNTU: SAUCE: ceph: BUG if MDS changed truncate_seq with client + caps still outstanding" + - Revert "UBUNTU: SAUCE: ceph: make sure all the files successfully put before + unmounting" + - Revert "UBUNTU: SAUCE: mm: BUG if filemap_alloc_folio gives us a folio with + a non-NULL ->private" + - Revert "UBUNTU: SAUCE: ceph: dump info about cap flushes when we're waiting + too long for them" + - Revert "UBUNTU: SAUCE: rbd: bump RBD_MAX_PARENT_CHAIN_LEN to 128" + * RTL8111EPP: Fix the network lost after resume with DASH (LP: #2043786) + - r8169: add handling DASH when DASH is disabled + - r8169: fix network lost after resume on DASH systems + * kernel BUG: io_uring openat triggers audit reference count underflow + (LP: #2043841) + - audit, io_uring: io_uring openat triggers audit reference count underflow + * Fix ADL: System enabled AHCI can't get into s0ix when attached ODD + (LP: #2037493) + - ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list + * [UBUNTU 23.04] Kernel config option missing for s390x PCI passthrough + (LP: #2042853) + - [Config] CONFIG_VFIO_PCI_ZDEV_KVM=y + * Azure: Fix Azure vendor ID (LP: #2036600) + - SAUCE: (no-up) hv: Fix supply vendor ID + * Mantic update: v6.5.6 upstream stable release (LP: #2044174) + - NFS: Fix error handling for O_DIRECT write scheduling + - NFS: Fix O_DIRECT locking issues + - NFS: More O_DIRECT accounting fixes for error paths + - NFS: Use the correct commit info in nfs_join_page_group() + - NFS: More fixes for nfs_direct_write_reschedule_io() + - NFS/pNFS: Report EINVAL errors from connect() to the server + - SUNRPC: Mark the cred for revalidation if the server rejects it + - NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - NFSv4.1: fix pnfs MDS=DS session trunking + - media: v4l: Use correct dependency for camera sensor drivers + - media: via: Use correct dependency for camera sensor drivers + - gfs2: Fix another freeze/thaw hang + - netfs: Only call folio_start_fscache() one time for each folio + - btrfs: improve error message after failure to add delayed dir index item + - btrfs: remove BUG() after failure to insert delayed dir index item + - ext4: replace the traditional ternary conditional operator with with + max()/min() + - ext4: move setting of trimmed bit into ext4_try_to_trim_range() + - ext4: do not let fstrim block system suspend + - netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention + - netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC + - netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation + fails + - netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration + - netfilter: nf_tables: fix memleak when more than 255 elements expired + - ASoC: meson: spdifin: start hw on dai probe + - netfilter: nf_tables: disallow element removal on anonymous sets + - bpf: Avoid deadlock when using queue and stack maps from NMI + - bpf: Avoid dummy bpf_offload_netdev in __bpf_prog_dev_bound_init + - ALSA: docs: Fix a typo of midi2_ump_probe option for snd-usb-audio + - ALSA: seq: Avoid delivery of events for disabled UMP groups + - ASoC: rt5640: Revert "Fix sleep in atomic context" + - ASoC: rt5640: Fix sleep in atomic context + - ASoC: rt5640: fix typos + - ASoC: rt5640: Do not disable/enable IRQ twice on suspend/resume + - ASoC: rt5640: Enable the IRQ on resume after configuring jack-detect + - ASoC: rt5640: Fix IRQ not being free-ed for HDA jack detect mode + - bpf: Fix a erroneous check after snprintf() + - selftests/bpf: fix unpriv_disabled check in test_verifier + - ALSA: hda/realtek: Splitting the UX3402 into two separate models + - netfilter: conntrack: fix extension size table + - netfilter: nf_tables: Fix entries val in rule reset audit log + - Compiler Attributes: counted_by: Adjust name and identifier expansion + - uapi: stddef.h: Fix header guard location + - uapi: stddef.h: Fix __DECLARE_FLEX_ARRAY for C++ + - memblock tests: Fix compilation errors. + - ASoC: SOF: ipc4-topology: fix wrong sizeof argument + - net: microchip: sparx5: Fix memory leak for + vcap_api_rule_add_keyvalue_test() + - net: microchip: sparx5: Fix memory leak for + vcap_api_rule_add_actionvalue_test() + - net: microchip: sparx5: Fix possible memory leak in + vcap_api_encode_rule_test() + - net: microchip: sparx5: Fix possible memory leaks in + test_vcap_xn_rule_creator() + - net: microchip: sparx5: Fix possible memory leaks in vcap_api_kunit + - selftests: tls: swap the TX and RX sockets in some tests + - net/core: Fix ETH_P_1588 flow dissector + - ALSA: seq: ump: Fix -Wformat-truncation warning + - ASoC: hdaudio.c: Add missing check for devm_kstrdup + - ASoC: imx-audmix: Fix return error with devm_clk_get() + - octeon_ep: fix tx dma unmap len values in SG + - iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set + - ASoC: SOF: core: Only call sof_ops_free() on remove if the probe was + successful + - iavf: add iavf_schedule_aq_request() helper + - iavf: schedule a request immediately after add/delete vlan + - i40e: Fix VF VLAN offloading when port VLAN is configured + - netfilter, bpf: Adjust timeouts of non-confirmed CTs in + bpf_ct_insert_entry() + - ionic: fix 16bit math issue when PAGE_SIZE >= 64KB + - igc: Fix infinite initialization loop with early XDP redirect + - scsi: iscsi_tcp: restrict to TCP sockets + - powerpc/perf/hv-24x7: Update domain value check + - powerpc/dexcr: Move HASHCHK trap handler + - dccp: fix dccp_v4_err()/dccp_v6_err() again + - x86/mm, kexec, ima: Use memblock_free_late() from ima_free_kexec_buffer() + - net: hsr: Properly parse HSRv1 supervisor frames. + - platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() + - platform/x86: intel_scu_ipc: Check status upon timeout in + ipc_wait_for_interrupt() + - platform/x86: intel_scu_ipc: Don't override scu in + intel_scu_ipc_dev_simple_command() + - platform/x86: intel_scu_ipc: Fail IPC send if still busy + - x86/asm: Fix build of UML with KASAN + - x86/srso: Fix srso_show_state() side effect + - x86/srso: Set CPUID feature bits independently of bug or mitigation status + - x86/srso: Don't probe microcode in a guest + - x86/srso: Fix SBPB enablement for spec_rstack_overflow=off + - net: hns3: add cmdq check for vf periodic service task + - net: hns3: fix GRE checksum offload issue + - net: hns3: only enable unicast promisc when mac table full + - net: hns3: fix fail to delete tc flower rules during reset issue + - net: hns3: add 5ms delay before clear firmware reset irq source + - net: bridge: use DEV_STATS_INC() + - team: fix null-ptr-deref when team device type is changed + - net: rds: Fix possible NULL-pointer dereference + - vxlan: Add missing entries to vxlan_get_size() + - netfilter: nf_tables: disable toggling dormant table state more than once + - net: hinic: Fix warning-hinic_set_vlan_fliter() warn: variable dereferenced + before check 'hwdev' + - net/handshake: Fix memory leak in __sock_create() and sock_alloc_file() + - i915/pmu: Move execlist stats initialization to execlist specific setup + - drm/virtio: clean out_fence on complete_submit + - locking/seqlock: Do the lockdep annotation before locking in + do_write_seqcount_begin_nested() + - net: ena: Flush XDP packets on error. + - bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI + - octeontx2-pf: Do xdp_do_flush() after redirects. + - igc: Expose tx-usecs coalesce setting to user + - cxl/region: Match auto-discovered region decoders by HPA range + - proc: nommu: /proc//maps: release mmap read lock + - proc: nommu: fix empty /proc//maps + - cifs: Fix UAF in cifs_demultiplex_thread() + - gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() + - i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() + - i2c: mux: gpio: Add missing fwnode_handle_put() + - i2c: xiic: Correct return value check for xiic_reinit() + - drm/amdgpu: set completion status as preempted for the resubmission + - ASoC: cs35l56: Disable low-power hibernation mode + - drm/amd/display: Update DPG test pattern programming + - drm/amd/display: fix a regression in blank pixel data caused by coding + mistake + - arm64: dts: qcom: sdm845-db845c: Mark cont splash memory region as reserved + - direct_write_fallback(): on error revert the ->ki_pos update from buffered + write + - btrfs: reset destination buffer when read_extent_buffer() gets invalid range + - vfio/mdev: Fix a null-ptr-deref bug for mdev_unregister_parent() + - MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled + - spi: spi-gxp: BUG: Correct spi write return value + - bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() + - bus: ti-sysc: Fix missing AM35xx SoC matching + - firmware: arm_scmi: Harden perf domain info access + - firmware: arm_scmi: Fixup perf power-cost/microwatt support + - power: supply: mt6370: Fix missing error code in mt6370_chg_toggle_cfo() + - clk: sprd: Fix thm_parents incorrect configuration + - clk: si521xx: Use REGCACHE_FLAT instead of NONE + - clk: si521xx: Fix regmap write accessor + - clk: tegra: fix error return case for recalc_rate + - ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 + - ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot + - bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up + - swiotlb: use the calculated number of areas + - power: supply: ucs1002: fix error code in ucs1002_get_property() + - power: supply: rt9467: Fix rt9467_run_aicl() + - power: supply: core: fix use after free in uevent + - firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() + - xtensa: add default definition for XCHAL_HAVE_DIV32 + - xtensa: iss/network: make functions static + - xtensa: boot: don't add include-dirs + - xtensa: umulsidi3: fix conditional expression + - xtensa: boot/lib: fix function prototypes + - power: supply: rk817: Fix node refcount leak + - powerpc/stacktrace: Fix arch_stack_walk_reliable() + - selftests/powerpc: Fix emit_tests to work with run_kselftest.sh + - arm64: dts: imx8mp: Fix SDMA2/3 clocks + - arm64: dts: imx8mp-beacon-kit: Fix audio_pll2 clock + - soc: imx8m: Enable OCOTP clock for imx8mm before reading registers + - arm64: dts: imx8mm-evk: Fix hdmi@3d node + - arm64: dts: imx: Add imx8mm-prt8mm.dtb to build + - firmware: arm_ffa: Don't set the memory region attributes for MEM_LEND + - i915/guc: Get runtime pm in busyness worker only if already active + - accel/ivpu: Do not use wait event interruptible + - gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip + - i2c: npcm7xx: Fix callback completion ordering + - NFSD: Fix zero NFSv4 READ results when RQ_SPLICE_OK is not set + - x86/reboot: VMCLEAR active VMCSes before emergency reboot + - dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock + - bpf: Annotate bpf_long_memcpy with data_race + - ASoC: amd: yc: Add DMI entries to support Victus by HP Gaming Laptop + 15-fb0xxx (8A3E) + - spi: sun6i: reduce DMA RX transfer width to single byte + - spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain + - nvme-fc: Prevent null pointer dereference in nvme_fc_io_getuuid() + - parisc: sba: Fix compile warning wrt list of SBA devices + - parisc: sba-iommu: Fix sparse warnigs + - parisc: ccio-dma: Fix sparse warnings + - parisc: iosapic.c: Fix sparse warnings + - parisc: drivers: Fix sparse warning + - parisc: irq: Make irq_stack_union static to avoid sparse warning + - scsi: qedf: Add synchronization between I/O completions and abort + - scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock + - scsi: ufs: core: Poll HCS.UCRDY before issuing a UIC command + - selftests/ftrace: Correctly enable event in instance-event.tc + - ring-buffer: Avoid softlockup in ring_buffer_resize() + - btrfs: assert delayed node locked when removing delayed item + - selftests: fix dependency checker script + - ring-buffer: Do not attempt to read past "commit" + - net/smc: bugfix for smcr v2 server connect success statistic + - ata: sata_mv: Fix incorrect string length computation in mv_dump_mem() + - efi/x86: Ensure that EFI_RUNTIME_MAP is enabled for kexec + - platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig + - platform/x86: asus-wmi: Support 2023 ROG X16 tablet mode + - thermal/of: add missing of_node_put() + - drm/amdgpu: Store CU info from all XCCs for GFX v9.4.3 + - drm/amdkfd: Update cache info reporting for GFX v9.4.3 + - drm/amdkfd: Update CU masking for GFX 9.4.3 + - drm/amd/display: Don't check registers, if using AUX BL control + - drm/amdgpu/soc21: don't remap HDP registers for SR-IOV + - drm/amdgpu/nbio4.3: set proper rmmio_remap.reg_offset for SR-IOV + - drm/amdgpu: fallback to old RAS error message for aqua_vanjaram + - drm/amdkfd: Checkpoint and restore queues on GFX11 + - drm/amdgpu: Handle null atom context in VBIOS info ioctl + - objtool: Fix _THIS_IP_ detection for cold functions + - nvme-pci: do not set the NUMA node of device if it has none + - riscv: errata: fix T-Head dcache.cva encoding + - scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command + - scsi: pm80xx: Avoid leaking tags when processing + OPC_INB_SET_CONTROLLER_CONFIG command + - smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP + - ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() + - ata: libata-eh: do not thaw the port twice in ata_eh_reset() + - Add DMI ID for MSI Bravo 15 B7ED + - spi: nxp-fspi: reset the FLSHxCR1 registers + - spi: stm32: add a delay before SPI disable + - ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag + - spi: intel-pci: Add support for Granite Rapids SPI serial flash + - bpf: Clarify error expectations from bpf_clone_redirect + - ASoC: rt5640: Only cancel jack-detect work on suspend if active + - ALSA: hda: intel-sdw-acpi: Use u8 type for link index + - ASoC: cs42l42: Ensure a reset pulse meets minimum pulse width. + - ASoC: cs42l42: Don't rely on GPIOD_OUT_LOW to set RESET initially low + - ASoC: cs42l42: Avoid stale SoundWire ATTACH after hard reset + - firmware: cirrus: cs_dsp: Only log list of algorithms in debug build + - ASoC: wm_adsp: Fix missing locking in wm_adsp_[read|write]_ctl() + - memblock tests: fix warning: "__ALIGN_KERNEL" redefined + - memblock tests: fix warning ‘struct seq_file’ declared inside parameter list + - ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link + - ASoC: SOF: sof-audio: Fix DSP core put imbalance on widget setup failure + - media: vb2: frame_vector.c: replace WARN_ONCE with a comment + - NFSv4.1: fix zero value filehandle in post open getattr + - ASoC: SOF: Intel: MTL: Reduce the DSP init timeout + - powerpc/watchpoints: Disable preemption in thread_change_pc() + - powerpc/watchpoint: Disable pagefaults when getting user instruction + - powerpc/watchpoints: Annotate atomic context in more places + - ncsi: Propagate carrier gain/loss events to the NCSI controller + - net: hsr: Add __packed to struct hsr_sup_tlv. + - tsnep: Fix NAPI scheduling + - tsnep: Fix ethtool channels + - tsnep: Fix NAPI polling with budget 0 + - gfs2: fix glock shrinker ref issues + - i2c: designware: fix __i2c_dw_disable() in case master is holding SCL low + - LoongArch: Use _UL() and _ULL() + - LoongArch: Set all reserved memblocks on Node#0 at initialization + - fbdev/sh7760fb: Depend on FB=y + - perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 + - ASoC: cs35l56: Call pm_runtime_dont_use_autosuspend() + - iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range + - spi: zynqmp-gqspi: fix clock imbalance on probe failure + - x86/sgx: Resolves SECS reclaim vs. page fault for EAUG race + - x86/srso: Add SRSO mitigation for Hygon processors + - KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway + - KVM: SVM: Fix TSC_AUX virtualization setup + - KVM: x86/mmu: Open code leaf invalidation from mmu_notifier + - KVM: x86/mmu: Do not filter address spaces in + for_each_tdp_mmu_root_yield_safe() + - KVM: x86/mmu: Stop zapping invalidated TDP MMU roots asynchronously + - mptcp: fix bogus receive window shrinkage with multiple subflows + - mptcp: move __mptcp_error_report in protocol.c + - mptcp: process pending subflow error on close + - Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" + - scsi: core: ata: Do no try to probe for CDL on old drives + - serial: 8250_port: Check IRQ data before use + - nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() + - crypto: sm2 - Fix crash caused by uninitialized context + - ALSA: rawmidi: Fix NULL dereference at proc read + - ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre + M70q + - LoongArch: Fix lockdep static memory detection + - LoongArch: Define relocation types for ABI v2.10 + - LoongArch: numa: Fix high_memory calculation + - LoongArch: Add support for 32_PCREL relocation type + - LoongArch: Add support for 64_PCREL relocation type + - ata: libata-scsi: link ata port and scsi device + - scsi: sd: Differentiate system and runtime start/stop management + - scsi: sd: Do not issue commands to suspended disks on shutdown + - ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES + - io_uring/fs: remove sqe->rw_flags checking from LINKAT + - i2c: i801: unregister tco_pdev in i801_probe() error path + - ASoC: amd: yc: Fix non-functional mic on Lenovo 82QF and 82UG + - kernel/sched: Modify initial boot task idle setup + - sched/rt: Fix live lock between select_fallback_rq() and RT push + - Revert "SUNRPC dont update timeout value on connection reset" + - NFSv4: Fix a state manager thread deadlock regression + - ACPI: NFIT: Fix incorrect calculation of idt size + - timers: Tag (hr)timer softirq as hotplug safe + - drm/tests: Fix incorrect argument in drm_test_mm_insert_range + - cxl/mbox: Fix CEL logic for poison and security commands + - arm64: defconfig: remove CONFIG_COMMON_CLK_NPCM8XX=y + - mm/damon/vaddr-test: fix memory leak in damon_do_test_apply_three_regions() + - selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and + hugetlb_reparenting_test.sh that may cause error + - mm: mempolicy: keep VMA walk if both MPOL_MF_STRICT and MPOL_MF_MOVE are + specified + - mm/slab_common: fix slab_caches list corruption after kmem_cache_destroy() + - mm: page_alloc: fix CMA and HIGHATOMIC landing on the wrong buddy list + - mm: memcontrol: fix GFP_NOFS recursion in memory.high enforcement + - cxl/port: Fix cxl_test register enumeration regression + - cxl/pci: Fix appropriate checking for _OSC while handling CXL RAS registers + - ring-buffer: Fix bytes info in per_cpu buffer stats + - ring-buffer: Update "shortest_full" in polling + - btrfs: refresh dir last index during a rewinddir(3) call + - btrfs: file_remove_privs needs an exclusive lock in direct io write + - btrfs: set last dir index to the current last index when opening dir + - btrfs: fix race between reading a directory and adding entries to it + - btrfs: properly report 0 avail for very full file systems + - media: uvcvideo: Fix OOB read + - bpf: Add override check to kprobe multi link attach + - bpf: Fix BTF_ID symbol generation collision + - bpf: Fix BTF_ID symbol generation collision in tools/ + - net: thunderbolt: Fix TCPv6 GSO checksum calculation + - thermal: sysfs: Fix trip_point_hyst_store() + - tracing/user_events: Align set_bit() address for all archs + - ata: libata-core: Fix ata_port_request_pm() locking + - ata: libata-core: Fix port and device removal + - ata: libata-core: Do not register PM operations for SAS ports + - ata: libata-sata: increase PMP SRST timeout to 10s + - i915: Limit the length of an sg list to the requested length + - drm/i915/gt: Fix reservation address in ggtt_reserve_guc_top + - power: supply: rk817: Add missing module alias + - power: supply: ab8500: Set typing and props + - fs: binfmt_elf_efpic: fix personality for ELF-FDPIC + - drm/amdkfd: Use gpu_offset for user queue's wptr + - drm/amd/display: fix the ability to use lower resolution modes on eDP + - drm/meson: fix memory leak on ->hpd_notify callback + - rbd: move rbd_dev_refresh() definition + - rbd: decouple header read-in from updating rbd_dev->header + - rbd: decouple parent info read-in from updating rbd_dev + - rbd: take header_rwsem in rbd_dev_refresh() only when updating + - memcg: drop kmem.limit_in_bytes + - mm, memcg: reconsider kmem.limit_in_bytes deprecation + - ASoC: amd: yc: Fix a non-functional mic on Lenovo 82TL + - Linux 6.5.6 + * Mantic update: v6.5.5 upstream stable release (LP: #2043416) + - iomap: Fix possible overflow condition in iomap_write_delalloc_scan + - autofs: fix memory leak of waitqueues in autofs_catatonic_mode + - btrfs: handle errors properly in update_inline_extent_backref() + - btrfs: output extra debug info if we failed to find an inline backref + - locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock + - ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer + - kernel/fork: beware of __put_task_struct() calling context + - rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to + _idle() + - scftorture: Forgive memory-allocation failure if KASAN + - ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 + - platform/chrome: cros_ec_lpc: Remove EC panic shutdown timeout + - x86/amd_nb: Add PCI IDs for AMD Family 1Ah-based models + - perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09 + - s390/boot: cleanup number of page table levels setup + - kselftest/arm64: fix a memleak in zt_regs_run() + - perf/imx_ddr: speed up overflow frequency of cycle + - ACPI: video: Add backlight=native DMI quirk for Apple iMac12,1 and iMac12,2 + - hw_breakpoint: fix single-stepping when using bpf_overflow_handler + - ACPI: x86: s2idle: Catch multiple ACPI_TYPE_PACKAGE objects + - selftests/nolibc: fix up kernel parameters support + - selftests/nolibc: prevent out of bounds access in expect_vfprintf + - spi: sun6i: add quirk for dual and quad SPI modes support + - devlink: remove reload failed checks in params get/set callbacks + - crypto: lrw,xts - Replace strlcpy with strscpy + - ice: Don't tx before switchdev is fully configured + - wifi: ath9k: fix fortify warnings + - wifi: ath9k: fix printk specifier + - wifi: rtw88: delete timer and free skb queue when unloading + - wifi: mwifiex: fix fortify warning + - mt76: mt7921: don't assume adequate headroom for SDIO headers + - wifi: wil6210: fix fortify warnings + - can: sun4i_can: Add acceptance register quirk + - can: sun4i_can: Add support for the Allwinner D1 + - [Config] updateconfigs for CAN_SUN4I + - net: Use sockaddr_storage for getsockopt(SO_PEERNAME). + - wifi: ath12k: Fix a NULL pointer dereference in ath12k_mac_op_hw_scan() + - wifi: ath12k: avoid array overflow of hw mode for preferred_hw_mode + - net/ipv4: return the real errno instead of -EINVAL + - crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui() + - Bluetooth: btusb: Add device 0489:e0f5 as MT7922 device + - Bluetooth: btusb: Add a new VID/PID 0489/e0f6 for MT7922 + - Bluetooth: btusb: Add new VID/PID 0489/e102 for MT7922 + - Bluetooth: btusb: Add new VID/PID 04ca/3804 for MT7922 + - Bluetooth: Fix hci_suspend_sync crash + - Bluetooth: btusb: Add support for another MediaTek 7922 VID/PID + - netlink: convert nlk->flags to atomic flags + - tpm_tis: Resend command to recover from data transfer errors + - mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450 + - alx: fix OOB-read compiler warning + - wifi: iwlwifi: pcie: avoid a warning in case prepare card failed + - wifi: mac80211: check S1G action frame size + - netfilter: ebtables: fix fortify warnings in size_entry_mwt() + - wifi: cfg80211: reject auth/assoc to AP with our address + - wifi: cfg80211: ocb: don't leave if not joined + - wifi: mac80211: check for station first in client probe + - wifi: mac80211_hwsim: drop short frames + - Revert "wifi: mac80211_hwsim: check the return value of nla_put_u32" + - libbpf: Free btf_vmlinux when closing bpf_object + - wifi: ath12k: Fix memory leak in rx_desc and tx_desc + - wifi: ath12k: add check max message length while scanning with extraie + - Fix nomenclature for USB and PCI wireless devices + - bpf: Consider non-owning refs trusted + - bpf: Consider non-owning refs to refcounted nodes RCU protected + - drm/bridge: tc358762: Instruct DSI host to generate HSE packets + - drm/edid: Add quirk for OSVR HDK 2.0 + - drm: bridge: samsung-dsim: Drain command transfer FIFO before transfer + - arm64: dts: qcom: sm6125-pdx201: correct ramoops pmsg-size + - arm64: dts: qcom: sm6125-sprout: correct ramoops pmsg-size + - arm64: dts: qcom: sm6350: correct ramoops pmsg-size + - arm64: dts: qcom: sm8150-kumano: correct ramoops pmsg-size + - arm64: dts: qcom: sm8250-edo: correct ramoops pmsg-size + - drm/amdgpu: Increase soft IH ring size + - samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000' + - drm/amdgpu: Update ring scheduler info as needed + - drm/amd/display: Fix underflow issue on 175hz timing + - ASoC: SOF: topology: simplify code to prevent static analysis warnings + - ASoC: Intel: sof_sdw: Update BT offload config for soundwire config + - ALSA: hda: intel-dsp-cfg: add LunarLake support + - drm/amd/display: Use DTBCLK as refclk instead of DPREFCLK + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN31 + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN314 + - drm/amd/display: Use max memclk variable when setting max memclk + - drm/msm/adreno: Use quirk identify hw_apriv + - drm/msm/adreno: Use quirk to identify cached-coherent support + - drm/exynos: fix a possible null-pointer dereference due to data race in + exynos_drm_crtc_atomic_disable() + - io_uring: annotate the struct io_kiocb slab for appropriate user copy + - drm/mediatek: dp: Change logging to dev for mtk_dp_aux_transfer() + - bus: ti-sysc: Configure uart quirks for k3 SoC + - arm64: dts: qcom: sc8280xp-x13s: Add camera activity LED + - md: raid1: fix potential OOB in raid1_remove_disk() + - ext2: fix datatype of block number in ext2_xattr_set2() + - blk-mq: fix tags leak when shrink nr_hw_queues + - ASoC: SOF: amd: clear panic mask status when panic occurs + - x86: bring back rep movsq for user access on CPUs without ERMS + - fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount() + - jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount + - ext4: add two helper functions extent_logical_end() and pa_logical_end() + - ext4: avoid overlapping preallocations due to overflow + - PCI: dwc: Provide deinit callback for i.MX + - ARM: 9317/1: kexec: Make smp stop calls asynchronous + - powerpc/pseries: fix possible memory leak in ibmebus_bus_init() + - PCI: vmd: Disable bridge window for domain reset + - PCI: fu740: Set the number of MSI vectors + - media: mdp3: Fix resource leaks in of_find_device_by_node + - media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer + - media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer() + - media: af9005: Fix null-ptr-deref in af9005_i2c_xfer + - media: anysee: fix null-ptr-deref in anysee_master_xfer + - media: az6007: Fix null-ptr-deref in az6007_i2c_xfer() + - media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer + - scsi: lpfc: Abort outstanding ELS cmds when mailbox timeout error is + detected + - media: tuners: qt1010: replace BUG_ON with a regular error + - media: pci: cx23885: replace BUG with error return + - usb: cdns3: Put the cdns set active part outside the spin lock + - usb: typec: intel_pmc_mux: Add new ACPI ID for Lunar Lake IOM device + - usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc + - tools: iio: iio_generic_buffer: Fix some integer type and calculation + - scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show() + - serial: cpm_uart: Avoid suspicious locking + - misc: open-dice: make OPEN_DICE depend on HAS_IOMEM + - usb: dwc3: dwc3-octeon: Verify clock divider + - usb: ehci: add workaround for chipidea PORTSC.PEC bug + - usb: chipidea: add workaround for chipidea PEC bug + - media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning + - kobject: Add sanity check for kset->kobj.ktype in kset_register() + - interconnect: Fix locking for runpm vs reclaim + - usb: typec: qcom-pmic-typec: register drm_bridge + - printk: Reduce console_unblank() usage in unsafe scenarios + - printk: Keep non-panic-CPUs out of console lock + - printk: Do not take console lock for console_flush_on_panic() + - printk: Consolidate console deferred printing + - printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() + - ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow + - btrfs: introduce struct to consolidate extent buffer write context + - btrfs: zoned: introduce block group context to btrfs_eb_write_context + - btrfs: zoned: return int from btrfs_check_meta_write_pointer + - btrfs: zoned: defer advancing meta write pointer + - btrfs: zoned: activate metadata block group on write time + - mtd: spi-nor: spansion: use CLPEF as an alternative to CLSR + - mtd: spi-nor: spansion: preserve CFR2V[7] when writing MEMLAT + - btrfs: add a helper to read the superblock metadata_uuid + - btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super + - nvmet-tcp: pass iov_len instead of sg->length to bvec_set_page() + - drm: gm12u320: Fix the timeout usage for usb_bulk_msg() + - scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir() + - md: don't dereference mddev after export_rdev() + - md: fix warning for holder mismatch from export_rdev() + - efivarfs: fix statfs() on efivarfs + - PM: hibernate: Fix the exclusive get block device in test_resume mode + - selftests: tracing: Fix to unmount tracefs for recovering environment + - x86/ibt: Suppress spurious ENDBR + - x86/ibt: Avoid duplicate ENDBR in __put_user_nocheck*() + - riscv: kexec: Align the kexeced kernel entry + - x86/sched: Restore the SD_ASYM_PACKING flag in the DIE domain + - scsi: target: core: Fix target_cmd_counter leak + - scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - panic: Reenable preemption in WARN slowpath + - ata: libata-core: fetch sense data for successful commands iff CDL enabled + - x86/boot/compressed: Reserve more memory for page tables + - x86/purgatory: Remove LTO flags + - samples/hw_breakpoint: fix building without module unloading + - blk-mq: prealloc tags when increase tagset nr_hw_queues + - blk-mq: fix tags UAF when shrinking q->nr_hw_queues + - md/raid1: fix error: ISO C90 forbids mixed declarations + - Revert "SUNRPC: Fail faster on bad verifier" + - attr: block mode changes of symlinks + - ovl: fix failed copyup of fileattr on a symlink + - ovl: fix incorrect fdput() on aio completion + - io_uring/net: fix iter retargeting for selected buf + - x86/platform/uv: Use alternate source for socket to node data + - Revert "firewire: core: obsolete usage of GFP_ATOMIC at building node tree" + - drm/amd: Make fence wait in suballocator uninterruptible + - Revert "drm/amd: Disable S/G for APUs when 64GB or more host memory" + - dm: don't attempt to queue IO under RCU protection + - dm: fix a race condition in retrieve_deps + - btrfs: fix lockdep splat and potential deadlock after failure running + delayed items + - btrfs: fix a compilation error if DEBUG is defined in btree_dirty_folio + - btrfs: fix race between finishing block group creation and its item update + - btrfs: release path before inode lookup during the ino lookup ioctl + - btrfs: check for BTRFS_FS_ERROR in pending ordered assert + - tracing/synthetic: Fix order of struct trace_dynamic_info + - tracing: Have tracing_max_latency inc the trace array ref count + - tracing: Have event inject files inc the trace array ref count + - tracing/synthetic: Print out u64 values properly + - tracing: Increase trace array ref count on enable and filter files + - tracing: Have current_trace inc the trace array ref count + - tracing: Have option files inc the trace array ref count + - selinux: fix handling of empty opts in selinux_fs_context_submount() + - nfsd: fix change_info in NFSv4 RENAME replies + - tracefs: Add missing lockdown check to tracefs_create_dir() + - i2c: aspeed: Reset the i2c controller when timeout occurs + - ata: libata: disallow dev-initiated LPM transitions to unsupported states + - ata: libahci: clear pending interrupt status + - scsi: megaraid_sas: Fix deadlock on firmware crashdump + - scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() + - scsi: pm8001: Setup IRQs on resume + - Revert "comedi: add HAS_IOPORT dependencies" + - [Config] updateconfigs for COMEDI/HAS_IOPORT deps + - ext4: fix rec_len verify error + - drm/radeon: make fence wait in suballocator uninterrruptable + - drm/i915: Only check eDP HPD when AUX CH is shared + - drm/amdkfd: Insert missing TLB flush on GFX10 and later + - drm/tests: helpers: Avoid a driver uaf + - drm/amd/display: Adjust the MST resume flow + - drm/amd/display: fix the white screen issue when >= 64GB DRAM + - drm/amd/display: Add DPIA Link Encoder Assignment Fix + - drm/amd/display: Fix 2nd DPIA encoder Assignment + - Revert "memcg: drop kmem.limit_in_bytes" + - drm/amdgpu: fix amdgpu_cs_p1_user_fence + - interconnect: Teach lockdep about icc_bw_lock order + - x86/alternatives: Remove faulty optimization + - x86,static_call: Fix static-call vs return-thunk + - Linux 6.5.5 + * Could not probe Samsung P44 30S3 PM9C1a SSD correctly: nvme nvme0: Device + not ready: aborting installation, CSTS=0x0 (LP: #2041495) // Mantic update: + v6.5.5 upstream stable release (LP: #2043416) + - nvme: avoid bogus CRTO values + * Mantic update: v6.5.4 upstream stable release (LP: #2041999) + - net/ipv6: SKB symmetric hash should incorporate transport ports + - drm/virtio: Conditionally allocate virtio_gpu_fence + - scsi: ufs: core: Add advanced RPMB support where UFSHCI 4.0 does not support + EHS length in UTRD + - scsi: qla2xxx: Adjust IOCB resource on qpair create + - scsi: qla2xxx: Limit TMF to 8 per function + - scsi: qla2xxx: Fix deletion race condition + - scsi: qla2xxx: fix inconsistent TMF timeout + - scsi: qla2xxx: Fix command flush during TMF + - scsi: qla2xxx: Fix erroneous link up failure + - scsi: qla2xxx: Turn off noisy message log + - scsi: qla2xxx: Fix session hang in gnl + - scsi: qla2xxx: Fix TMF leak through + - scsi: qla2xxx: Remove unsupported ql2xenabledif option + - scsi: qla2xxx: Flush mailbox commands on chip reset + - scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit() + - scsi: qla2xxx: Error code did not return to upper layer + - scsi: qla2xxx: Fix firmware resource tracking + - null_blk: fix poll request timeout handling + - kernfs: fix missing kernfs_iattr_rwsem locking + - fbdev/ep93xx-fb: Do not assign to struct fb_info.dev + - clk: qcom: camcc-sc7180: fix async resume during probe + - drm/ast: Fix DRAM init on AST2200 + - ASoC: tegra: Fix SFC conversion for few rates + - ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size + - arm64: tegra: Update AHUB clock parent and rate on Tegra234 + - arm64: tegra: Update AHUB clock parent and rate + - clk: qcom: turingcc-qcs404: fix missing resume during probe + - ARM: dts: qcom: msm8974pro-castor: correct inverted X of touchscreen + - arm64: dts: qcom: msm8953-vince: drop duplicated touschreen parent interrupt + - ARM: dts: qcom: msm8974pro-castor: correct touchscreen function names + - ARM: dts: qcom: msm8974pro-castor: correct touchscreen syna,nosleep-mode + - arm64: dts: renesas: rzg2l: Fix txdv-skew-psec typos + - ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 + - send channel sequence number in SMB3 requests after reconnects + - memcg: drop kmem.limit_in_bytes + - mm: hugetlb_vmemmap: fix a race between vmemmap pmd split + - lib/test_meminit: allocate pages up to order MAX_ORDER + - Multi-gen LRU: avoid race in inc_min_seq() + - parisc: led: Fix LAN receive and transmit LEDs + - parisc: led: Reduce CPU overhead for disk & lan LED computation + - cifs: update desired access while requesting for directory lease + - pinctrl: cherryview: fix address_space_handler() argument + - dt-bindings: clock: xlnx,versal-clk: drop select:false + - clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz + - clk: imx: pll14xx: align pdiv with reference manual + - clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock + - soc: qcom: qmi_encdec: Restrict string length in decode + - clk: qcom: dispcc-sm8450: fix runtime PM imbalance on probe errors + - clk: qcom: dispcc-sm8550: fix runtime PM imbalance on probe errors + - clk: qcom: lpasscc-sc7280: fix missing resume during probe + - clk: qcom: q6sstop-qcs404: fix missing resume during probe + - clk: qcom: mss-sc7180: fix missing resume during probe + - NFS: Fix a potential data corruption + - NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + - bus: mhi: host: Skip MHI reset if device is in RDDM + - kbuild: rpm-pkg: define _arch conditionally + - kbuild: do not run depmod for 'make modules_sign' + - kbuild: dummy-tools: make MPROFILE_KERNEL checks work on BE + - tpm_crb: Fix an error handling path in crb_acpi_add() + - gfs2: Switch to wait_event in gfs2_logd + - gfs2: low-memory forced flush fixes + - mailbox: qcom-ipcc: fix incorrect num_chans counting + - kconfig: fix possible buffer overflow + - tools/mm: fix undefined reference to pthread_once + - Input: iqs7222 - configure power mode before triggering ATI + - perf trace: Really free the evsel->priv area + - pwm: atmel-tcb: Harmonize resource allocation order + - pwm: atmel-tcb: Fix resource freeing in error path and remove + - backlight: lp855x: Initialize PWM state on first brightness change + - backlight: gpio_backlight: Drop output GPIO direction check for initial + power state + - perf parse-events: Separate YYABORT and YYNOMEM cases + - perf parse-events: Move instances of YYABORT to YYNOMEM + - perf parse-events: Separate ENOMEM memory handling + - perf parse-events: Additional error reporting + - KVM: SVM: Don't defer NMI unblocking until next exit for SEV-ES guests + - Input: tca6416-keypad - always expect proper IRQ number in i2c client + - Input: tca6416-keypad - fix interrupt enable disbalance + - perf annotate bpf: Don't enclose non-debug code with an assert() + - x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() + - perf script: Print "cgroup" field on the same line as "comm" + - perf bpf-filter: Fix sample flag check with || + - perf dlfilter: Initialize addr_location before passing it to + thread__find_symbol_fb() + - perf dlfilter: Add al_cleanup() + - perf vendor events: Update the JSON/events descriptions for power10 platform + - perf vendor events: Drop some of the JSON/events for power10 platform + - perf vendor events: Drop STORES_PER_INST metric event for power10 platform + - perf vendor events: Move JSON/events to appropriate files for power10 + platform + - perf vendor events: Update metric event names for power10 platform + - perf top: Don't pass an ERR_PTR() directly to perf_session__delete() + - perf lock: Don't pass an ERR_PTR() directly to perf_session__delete() + - watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load + - perf vendor events arm64: Remove L1D_CACHE_LMISS from AmpereOne list + - pwm: lpc32xx: Remove handling of PWM channels + - accel/ivpu: refactor deprecated strncpy + - perf header: Fix missing PMU caps + - i3c: master: svc: Describe member 'saved_regs' + - perf test stat_bpf_counters_cgrp: Fix shellcheck issue about logical + operators + - perf test stat_bpf_counters_cgrp: Enhance perf stat cgroup BPF counter test + - regulator: tps6287x: Fix n_voltages + - selftests/bpf: Fix flaky cgroup_iter_sleepable subtest + - drm/i915: mark requests for GuC virtual engines to avoid use-after-free + - blk-throttle: use calculate_io/bytes_allowed() for throtl_trim_slice() + - blk-throttle: consider 'carryover_ios/bytes' in throtl_trim_slice() + - netfilter: nf_tables: Audit log setelem reset + - netfilter: nf_tables: Audit log rule reset + - smb: propagate error code of extract_sharename() + - net/sched: fq_pie: avoid stalls in fq_pie_timer() + - sctp: annotate data-races around sk->sk_wmem_queued + - ipv4: annotate data-races around fi->fib_dead + - net: read sk->sk_family once in sk_mc_loop() + - net: fib: avoid warn splat in flow dissector + - xsk: Fix xsk_diag use-after-free error during socket cleanup + - drm/i915/gvt: Verify pfn is "valid" before dereferencing "struct page" + - drm/i915/gvt: Put the page reference obtained by KVM's gfn_to_pfn() + - drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt() + - drm/amd/display: fix mode scaling (RMX_.*) + - net/handshake: fix null-ptr-deref in handshake_nl_done_doit() + - net: use sk_forward_alloc_get() in sk_get_meminfo() + - net: annotate data-races around sk->sk_forward_alloc + - mptcp: annotate data-races around msk->rmem_fwd_alloc + - net: annotate data-races around sk->sk_tsflags + - net: annotate data-races around sk->sk_bind_phc + - ipv4: ignore dst hint for multipath routes + - ipv6: ignore dst hint for multipath routes + - selftests/bpf: Fix a CI failure caused by vsock write + - igb: disable virtualization features on 82580 + - gve: fix frag_list chaining + - veth: Fixing transmit return status for dropped packets + - net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr + - net: phy: micrel: Correct bit assignments for phy_device flags + - bpf, sockmap: Fix skb refcnt race after locking changes + - af_unix: Fix msg_controllen test in scm_pidfd_recv() for MSG_CMSG_COMPAT. + - af_unix: Fix data-races around user->unix_inflight. + - af_unix: Fix data-race around unix_tot_inflight. + - af_unix: Fix data-races around sk->sk_shutdown. + - af_unix: Fix data race around sk->sk_err. + - kcm: Destroy mutex in kcm_exit_net() + - octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler + - igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 + - igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80 + - igb: Change IGB_MIN to allow set rx/tx value between 64 and 80 + - s390/zcrypt: don't leak memory if dev_set_name() fails + - regulator: tps6594-regulator: Fix random kernel crash + - idr: fix param name in idr_alloc_cyclic() doc + - ip_tunnels: use DEV_STATS_INC() + - net/mlx5e: Clear mirred devices array if the rule is split + - net/mlx5: Give esw_offloads_load/unload_rep() "mlx5_" prefix + - net/mlx5: Rework devlink port alloc/free into init/cleanup + - net/mlx5: Push devlink port PF/VF init/cleanup calls out of + devlink_port_register/unregister() + - mlx5/core: E-Switch, Create ACL FT for eswitch manager in switchdev mode + - net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and + offload + - net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times + - net: dsa: sja1105: complete tc-cbs offload support on SJA1110 + - net: phylink: fix sphinx complaint about invalid literal + - bpf: Invoke __bpf_prog_exit_sleepable_recur() on recursion in + kern_sys_bpf(). + - bpf: Assign bpf_tramp_run_ctx::saved_run_ctx before recursion check. + - s390/bpf: Pass through tail call counter in trampolines + - bpf: bpf_sk_storage: Fix invalid wait context lockdep report + - bpf: bpf_sk_storage: Fix the missing uncharge in sk_omem_alloc + - netfilter: nf_tables: Unbreak audit log reset + - net: phy: Provide Module 4 KSZ9477 errata (DS80000754C) + - net: hns3: fix tx timeout issue + - net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() + - net: hns3: fix debugfs concurrency issue between kfree buffer and read + - net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue + - net: hns3: fix the port information display when sfp is absent + - net: hns3: remove GSO partial feature bit + - net: enetc: distinguish error from valid pointers in + enetc_fixup_clear_rss_rfs() + - sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() + - sh: push-switch: Reorder cleanup operations to avoid use-after-free bug + - linux/export: fix reference to exported functions for parisc64 + - watchdog: advantech_ec_wdt: fix Kconfig dependencies + - drm/amd/display: Temporary Disable MST DP Colorspace Property + - ARC: atomics: Add compiler barrier to atomic operations... + - clocksource/drivers/arm_arch_timer: Disable timer before programming CVAL + - dmaengine: sh: rz-dmac: Fix destination and source data size setting + - misc: fastrpc: Fix remote heap allocation request + - misc: fastrpc: Fix incorrect DMA mapping unmap request + - jbd2: fix checkpoint cleanup performance regression + - jbd2: check 'jh->b_transaction' before removing it from checkpoint + - jbd2: correct the end of the journal recovery scan range + - ext4: add correct group descriptors and reserved GDT blocks to system zone + - ext4: fix memory leaks in ext4_fname_{setup_filename,prepare_lookup} + - ext4: drop dio overwrite only flag and associated warning + - f2fs: get out of a repeat loop when getting a locked data page + - f2fs: flush inode if atomic file is aborted + - f2fs: avoid false alarm of circular locking + - lib: test_scanf: Add explicit type cast to result initialization in + test_number_prefix() + - hwspinlock: qcom: add missing regmap config for SFPB MMIO implementation + - memcontrol: ensure memcg acquired by id is properly set up + - ata: ahci: Add Elkhart Lake AHCI controller + - ata: pata_falcon: fix IO base selection for Q40 + - ata: sata_gemini: Add missing MODULE_DESCRIPTION + - ata: pata_ftide010: Add missing MODULE_DESCRIPTION + - fuse: nlookup missing decrement in fuse_direntplus_link + - btrfs: zoned: do not zone finish data relocation block group + - btrfs: fix start transaction qgroup rsv double free + - btrfs: free qgroup rsv on io failure + - btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART + - btrfs: set page extent mapped after read_folio in relocate_one_page + - btrfs: zoned: re-enable metadata over-commit for zoned mode + - btrfs: use the correct superblock to compare fsid in btrfs_validate_super + - btrfs: scrub: avoid unnecessary extent tree search preparing stripes + - btrfs: scrub: avoid unnecessary csum tree search preparing stripes + - btrfs: scrub: fix grouping of read IO + - drm/mxsfb: Disable overlay plane in mxsfb_plane_overlay_atomic_disable() + - mtd: rawnand: brcmnand: Fix crash during the panic_write + - mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write + - mtd: spi-nor: Correct flags for Winbond w25q128 + - mtd: rawnand: brcmnand: Fix potential false time out warning + - mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller + - Revert "drm/amd/display: Remove v_startup workaround for dcn3+" + - drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma + - drm/amd/display: limit the v_startup workaround to ASICs older than DCN3.1 + - drm/amd/display: prevent potential division by zero errors + - KVM: VMX: Refresh available regs and IDT vectoring info before NMI handling + - KVM: SVM: Take and hold ir_list_lock when updating vCPU's Physical ID entry + - KVM: SVM: Don't inject #UD if KVM attempts to skip SEV guest insn + - KVM: SVM: Get source vCPUs from source VM for SEV-ES intrahost migration + - KVM: nSVM: Check instead of asserting on nested TSC scaling support + - KVM: nSVM: Load L1's TSC multiplier based on L1 state, not L2 state + - KVM: SVM: Set target pCPU during IRTE update if target vCPU is running + - KVM: SVM: Skip VMSA init in sev_es_init_vmcb() if pointer is NULL + - MIPS: Only fiddle with CHECKFLAGS if `need-compiler' + - MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install' regression + - perf hists browser: Fix hierarchy mode header + - perf build: Update build rule for generated files + - perf test shell stat_bpf_counters: Fix test on Intel + - perf tools: Handle old data in PERF_RECORD_ATTR + - perf build: Include generated header files properly + - perf hists browser: Fix the number of entries for 'e' key + - drm/amd/display: always switch off ODM before committing more streams + - drm/amd/display: Remove wait while locked + - drm/amdkfd: Add missing gfx11 MQD manager callbacks + - drm/amdgpu: register a dirty framebuffer callback for fbcon + - bpf: fix bpf_probe_read_kernel prototype mismatch + - regulator: raa215300: Change the scope of the variables {clkin_name, + xin_name} + - regulator: raa215300: Fix resource leak in case of error + - parisc: sba_iommu: Fix build warning if procfs if disabled + - kunit: Fix wild-memory-access bug in kunit_free_suite_set() + - net: ipv4: fix one memleak in __inet_del_ifa() + - kselftest/runner.sh: Propagate SIGTERM to runner child + - selftests: Keep symlinks, when possible + - selftests/ftrace: Fix dependencies for some of the synthetic event tests + - net: microchip: vcap api: Fix possible memory leak for vcap_dup_rule() + - octeontx2-pf: Fix page pool cache index corruption. + - net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in + smcr_port_add + - net: stmmac: fix handling of zero coalescing tx-usecs + - net: ethernet: mvpp2_main: fix possible OOB write in + mvpp2_ethtool_get_rxnfc() + - net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in + mtk_hwlro_get_fdir_all() + - hsr: Fix uninit-value access in fill_frame_info() + - net: ethernet: adi: adin1110: use eth_broadcast_addr() to assign broadcast + address + - net:ethernet:adi:adin1110: Fix forwarding offload + - net: dsa: sja1105: hide all multicast addresses from "bridge fdb show" + - net: dsa: sja1105: propagate exact error code from + sja1105_dynamic_config_poll_valid() + - net: dsa: sja1105: fix multicast forwarding working only for last added mdb + entry + - net: dsa: sja1105: serialize sja1105_port_mcast_flood() with other FDB + accesses + - net: dsa: sja1105: block FDB accesses that are concurrent with a switch + reset + - r8152: check budget for r8152_poll() + - kcm: Fix memory leak in error path of kcm_sendmsg() + - platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors + - platform/mellanox: mlxbf-tmfifo: Drop jumbo frames + - platform/mellanox: mlxbf-pmc: Fix potential buffer overflows + - platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events + - platform/mellanox: NVSW_SN2201 should depend on ACPI + - [Config] updateconfigs for NVSW_SN2201 + - net: macb: fix sleep inside spinlock + - veth: Update XDP feature set when bringing up device + - ipv6: fix ip6_sock_set_addr_preferences() typo + - tcp: Factorise sk_family-independent comparison in + inet_bind2_bucket_match(_addr_any). + - tcp: Fix bind() regression for v4-mapped-v6 wildcard address. + - tcp: Fix bind() regression for v4-mapped-v6 non-wildcard address. + - selftest: tcp: Fix address length in bind_wildcard.c. + - ixgbe: fix timestamp configuration code + - igb: clean up in all error paths when enabling SR-IOV + - net: renesas: rswitch: Fix unmasking irq condition + - kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg(). + - vm: fix move_vma() memory accounting being off + - drm/amd/display: Fix a bug when searching for insert_above_mpcc + - Linux 6.5.4 + * CVE-2023-6176 + - net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() + + -- John Cabaj Tue, 16 Jan 2024 14:51:28 -0600 + +linux-oracle (6.5.0-1014.14) mantic; urgency=medium + + * mantic/linux-oracle: 6.5.0-1014.14 -proposed tracker (LP: #2048542) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + + * [arm64] Increase max CPU count to 512 (LP: #2046184) + - [Config]: oracle: Increase max CPU count to 512 + + [ Ubuntu: 6.5.0-15.15 ] + + * mantic/linux: 6.5.0-15.15 -proposed tracker (LP: #2048549) + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6931 + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + + -- John Cabaj Thu, 11 Jan 2024 13:15:55 -0600 + linux-oracle (6.5.0-1013.13) mantic; urgency=medium * mantic/linux-oracle: 6.5.0-1013.13 -proposed tracker (LP: #2041532) diff -u linux-oracle-6.5-6.5.0/debian.oracle/config/annotations linux-oracle-6.5-6.5.0/debian.oracle/config/annotations --- linux-oracle-6.5-6.5.0/debian.oracle/config/annotations +++ linux-oracle-6.5-6.5.0/debian.oracle/config/annotations @@ -29,6 +29,9 @@ CONFIG_NET_FAILOVER policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_NET_FAILOVER note<'OCI requirement'> +CONFIG_NR_CPUS policy<{'amd64': '8192', 'arm64': '512'}> +CONFIG_NR_CPUS note<'LP: #2046184'> + CONFIG_PAGE_POOL policy<{'amd64': 'y', 'arm64': 'y'}> CONFIG_PAGE_POOL note<'OCI requirement'> diff -u linux-oracle-6.5-6.5.0/debian.oracle/reconstruct linux-oracle-6.5-6.5.0/debian.oracle/reconstruct --- linux-oracle-6.5-6.5.0/debian.oracle/reconstruct +++ linux-oracle-6.5-6.5.0/debian.oracle/reconstruct @@ -1,9 +1,4 @@ # Recreate any symlinks created since the orig. -# Remove any files deleted from the orig. -rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.c' -rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.h' -rm -f 'include/linux/ceph/mdsmap.h' -rm -f 'scripts/is_rust_module.sh' chmod +x 'debian.oracle/initramfs-tools.d/oracle.hook.in' chmod +x 'debian.oracle/scripts/helpers/copy-files' chmod +x 'debian/cloud-tools/hv_get_dhcp_info' @@ -20,9 +15,6 @@ chmod +x 'debian/scripts/dkms-build--nvidia-N' chmod +x 'debian/scripts/dkms-build-configure--zfs' chmod +x 'debian/scripts/file-downloader' -chmod +x 'debian/scripts/helpers/close' -chmod +x 'debian/scripts/helpers/open' -chmod +x 'debian/scripts/helpers/rebase' chmod +x 'debian/scripts/link-headers' chmod +x 'debian/scripts/link-lib-rust' chmod +x 'debian/scripts/misc/annotations' @@ -58,4 +50,10 @@ chmod +x 'drivers/watchdog/f71808e_wdt.c' -chmod -x 'scripts/is_rust_module.sh' +chmod +x 'tools/testing/selftests/netfilter/nft_audit.sh' chmod +x 'update-dkms-versions' +# Remove any files deleted from the orig. +rm -f 'arch/parisc/include/asm/mckinley.h' +rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.c' +rm -f 'drivers/media/pci/intel/ipu3/cio2-bridge.h' +rm -f 'include/linux/ceph/mdsmap.h' +rm -f 'scripts/is_rust_module.sh' exit 0 diff -u linux-oracle-6.5-6.5.0/debian.oracle/tracking-bug linux-oracle-6.5-6.5.0/debian.oracle/tracking-bug --- linux-oracle-6.5-6.5.0/debian.oracle/tracking-bug +++ linux-oracle-6.5-6.5.0/debian.oracle/tracking-bug @@ -1 +1 @@ -2041532 2023.10.30-1 +2048363 2024.01.08-1 diff -u linux-oracle-6.5-6.5.0/debian/changelog linux-oracle-6.5-6.5.0/debian/changelog --- linux-oracle-6.5-6.5.0/debian/changelog +++ linux-oracle-6.5-6.5.0/debian/changelog @@ -1,3 +1,1529 @@ +linux-oracle-6.5 (6.5.0-1015.15~22.04.1) jammy; urgency=medium + + * jammy/linux-oracle-6.5: 6.5.0-1015.15~22.04.1 -proposed tracker + (LP: #2048362) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + + [ Ubuntu: 6.5.0-1015.15 ] + + * mantic/linux-oracle: 6.5.0-1015.15 -proposed tracker (LP: #2048363) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + * mantic/linux: 6.5.0-17.17 -proposed tracker (LP: #2049026) + * [UBUNTU 23.04] Regression: Ubuntu 23.04/23.10 do not include uvdevice + anymore (LP: #2048919) + - [Config] Enable S390_UV_UAPI (built-in) + * mantic/linux: 6.5.0-16.16 -proposed tracker (LP: #2048372) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + - [Packaging] update annotations scripts + - debian/dkms-versions -- update from kernel-versions (main/2024.01.08) + * Add missing RPL P/U CPU IDs (LP: #2047398) + - drm/i915/rpl: Update pci ids for RPL P/U + * Fix BCM57416 lost after resume (LP: #2047518) + - bnxt_en: Clear resource reservation during resume + * Hotplugging SCSI disk in QEMU VM fails (LP: #2047382) + - Revert "PCI: acpiphp: Reassign resources on bridge if necessary" + * Update bnxt_en with bug fixes and support for Broadcom 5760X network + adapters (LP: #2045796) + - bnxt_en: use dev_consume_skb_any() in bnxt_tx_int + - eth: bnxt: move and rename reset helpers + - eth: bnxt: take the bit to set as argument of bnxt_queue_sp_work() + - eth: bnxt: handle invalid Tx completions more gracefully + - eth: bnxt: fix one of the W=1 warnings about fortified memcpy() + - eth: bnxt: fix warning for define in struct_group + - bnxt_en: Fix W=1 warning in bnxt_dcb.c from fortify memcpy() + - bnxt_en: Fix W=stringop-overflow warning in bnxt_dcb.c + - bnxt_en: Use the unified RX page pool buffers for XDP and non-XDP + - bnxt_en: Let the page pool manage the DMA mapping + - bnxt_en: Increment rx_resets counter in bnxt_disable_napi() + - bnxt_en: Save ring error counters across reset + - bnxt_en: Display the ring error counters under ethtool -S + - bnxt_en: Add tx_resets ring counter + - bnxt: use the NAPI skb allocation cache + - bnxt_en: Update firmware interface to 1.10.2.171 + - bnxt_en: Enhance hwmon temperature reporting + - bnxt_en: Move hwmon functions into a dedicated file + - bnxt_en: Modify the driver to use hwmon_device_register_with_info + - bnxt_en: Expose threshold temperatures through hwmon + - bnxt_en: Use non-standard attribute to expose shutdown temperature + - bnxt_en: Event handler for Thermal event + - bnxt_en: Support QOS and TPID settings for the SRIOV VLAN + - bnxt_en: Update VNIC resource calculation for VFs + - Revert "bnxt_en: Support QOS and TPID settings for the SRIOV VLAN" + - eth: bnxt: fix backward compatibility with older devices + - bnxt_en: Do not call sleeping hwmon_notify_event() from NAPI + - bnxt_en: Fix invoking hwmon_notify_event + - bnxt_en: add infrastructure to lookup ethtool link mode + - bnxt_en: support lane configuration via ethtool + - bnxt_en: refactor speed independent ethtool modes + - bnxt_en: Refactor NRZ/PAM4 link speed related logic + - bnxt_en: convert to linkmode_set_bit() API + - bnxt_en: extend media types to supported and autoneg modes + - bnxt_en: Fix 2 stray ethtool -S counters + - bnxt_en: Put the TX producer information in the TX BD opaque field + - bnxt_en: Add completion ring pointer in TX and RX ring structures + - bnxt_en: Restructure cp_ring_arr in struct bnxt_cp_ring_info + - bnxt_en: Add completion ring pointer in TX and RX ring structures + - bnxt_en: Remove BNXT_RX_HDL and BNXT_TX_HDL + - bnxt_en: Refactor bnxt_tx_int() + - bnxt_en: New encoding for the TX opaque field + - bnxt_en: Refactor bnxt_hwrm_set_coal() + - bnxt_en: Support up to 8 TX rings per MSIX + - bnxt_en: Add helper to get the number of CP rings required for TX rings + - bnxt_en: Add macros related to TC and TX rings + - bnxt_en: Use existing MSIX vectors for all mqprio TX rings + - bnxt_en: Optimize xmit_more TX path + - bnxt_en: The caller of bnxt_alloc_ctx_mem() should always free bp->ctx + - bnxt_en: Free bp->ctx inside bnxt_free_ctx_mem() + - bnxt_en: Restructure context memory data structures + - bnxt_en: Add page info to struct bnxt_ctx_mem_type + - bnxt_en: Use the pg_info field in bnxt_ctx_mem_type struct + - bnxt_en: Add bnxt_setup_ctxm_pg_tbls() helper function + - bnxt_en: Add support for new backing store query firmware API + - bnxt_en: Add support for HWRM_FUNC_BACKING_STORE_CFG_V2 firmware calls + - bnxt_en: Add db_ring_mask and related macro to bnxt_db_info struct. + - bnxt_en: Modify TX ring indexing logic. + - bnxt_en: Modify RX ring indexing logic. + - bnxt_en: Modify the NAPI logic for the new P7 chips + - bnxt_en: Rename some macros for the P5 chips + - bnxt_en: Fix backing store V2 logic + - bnxt_en: Update firmware interface to 1.10.3.15 + - bnxt_en: Define basic P7 macros + - bnxt_en: Consolidate DB offset calculation + - bnxt_en: Implement the new toggle bit doorbell mechanism on P7 chips + - bnxt_en: Refactor RSS capability fields + - bnxt_en: Add new P7 hardware interface definitions + - bnxt_en: Refactor RX VLAN acceleration logic. + - bnxt_en: Refactor and refine bnxt_tpa_start() and bnxt_tpa_end(). + - bnxt_en: Add support for new RX and TPA_START completion types for P7 + - bnxt_en: Refactor ethtool speeds logic + - bnxt_en: Support new firmware link parameters + - bnxt_en: Support force speed using the new HWRM fields + - bnxt_en: Report the new ethtool link modes in the new firmware interface + - bnxt_en: Add 5760X (P7) PCI IDs + - net: bnxt: fix a potential use-after-free in bnxt_init_tc + * drm: Update file owner during use (LP: #2047461) + - drm: Update file owner during use + * CVE-2023-6622 + - netfilter: nf_tables: bail out on mismatching dynset and set expressions + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * Support Cirrus CS35L41 codec on Dell Oasis 13/14/16 laptops (LP: #2044096) + - ALSA: hda/realtek: Add support dual speaker for Dell + * Add support of MTL audio of Lenovo (LP: #2048078) + - ALSA: hda: intel-nhlt: Ignore vbps when looking for DMIC 32 bps format + * Fix AMDGPU crash on 6.5 kernel (LP: #2047389) + - drm/amdgpu: disable MCBP by default + * Some machines can't pass the pm-graph test (LP: #2046217) + - wifi: iwlwifi: pcie: rescan bus if no parent + * Sound: Add rtl quirk of M90-Gen5 (LP: #2046105) + - ALSA: hda/realtek: Enable headset on Lenovo M90 Gen5 + * linux tools packages for derived kernels refuse to install simultaneously + due to libcpupower name collision (LP: #2035971) + - [Packaging] Statically link libcpupower into cpupower tool + * [Debian] autoreconstruct - Do not generate chmod -x for deleted files + (LP: #2045562) + - [Debian] autoreconstruct - Do not generate chmod -x for deleted files + * CVE-2023-6931 + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + * Mantic update: v6.5.8 upstream stable release (LP: #2046269) + - net: stmmac: remove unneeded stmmac_poll_controller + - RDMA/cxgb4: Check skb value for failure to allocate + - perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7 + - platform/x86: think-lmi: Fix reference leak + - drm/i915: Register engines early to avoid type confusion + - cpuidle, ACPI: Evaluate LPI arch_flags for broadcast timer + - drm/amdgpu: Fix a memory leak + - platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section + mismatch warning + - media: dt-bindings: imx7-csi: Make power-domains not required for imx8mq + - drm/amd/display: implement pipe type definition and adding accessors + - drm/amd/display: apply edge-case DISPCLK WDIVIDER changes to master OTG + pipes only + - scsi: Do not rescan devices with a suspended queue + - ata: pata_parport: fix pata_parport_devchk + - ata: pata_parport: implement set_devctl + - HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect + - quota: Fix slow quotaoff + - dm crypt: Fix reqsize in crypt_iv_eboiv_gen + - ASoC: amd: yc: Fix non-functional mic on Lenovo 82YM + - ASoC: hdmi-codec: Fix broken channel map reporting + - ata: libata-scsi: Disable scsi device manage_system_start_stop + - net: prevent address rewrite in kernel_bind() + - arm64: dts: qcom: sm8150: extend the size of the PDC resource + - dt-bindings: interrupt-controller: renesas,rzg2l-irqc: Update description + for '#interrupt-cells' property + - irqchip: renesas-rzg2l: Fix logic to clear TINT interrupt source + - KEYS: trusted: Remove redundant static calls usage + - ALSA: usb-audio: Fix microphone sound on Opencomm2 Headset + - ALSA: usb-audio: Fix microphone sound on Nexigo webcam. + - ALSA: hda: cs35l41: Cleanup and fix double free in firmware request + - ALSA: hda/realtek: Change model for Intel RVP board + - ASoC: SOF: amd: fix for firmware reload failure after playback + - ASoC: simple-card-utils: fixup simple_util_startup() error handling + - ASoC: Intel: soc-acpi: fix Dell SKU 0B34 + - ASoC: Intel: soc-acpi: Add entry for HDMI_In capture support in MTL match + table + - ASoC: fsl_sai: Don't disable bitclock for i.MX8MP + - ASoC: Intel: sof_sdw: add support for SKU 0B14 + - ASoC: Intel: soc-acpi: Add entry for sof_es8336 in MTL match table. + - ALSA: hda/realtek - ALC287 merge RTK codec with CS CS35L41 AMP + - ALSA: hda/realtek: Add quirk for HP Victus 16-d1xxx to enable mute LED + - ALSA: hda/realtek: Add quirk for mute LEDs on HP ENVY x360 15-eu0xxx + - pinctrl: nuvoton: wpcm450: fix out of bounds write + - pinctrl: starfive: jh7110: Fix failure to set irq after CONFIG_PM is enabled + - drm/msm/dp: do not reinitialize phy unless retry during link training + - drm/msm/dsi: skip the wait for video mode done if not applicable + - drm/msm/dsi: fix irq_of_parse_and_map() error checking + - drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow + - drm/msm/dp: Add newlines to debug printks + - drm/msm/dpu: fail dpu_plane_atomic_check() based on mdp clk limits + - phy: lynx-28g: cancel the CDR check work item on the remove path + - phy: lynx-28g: lock PHY while performing CDR lock workaround + - phy: lynx-28g: serialize concurrent phy_set_mode_ext() calls to shared + registers + - net: dsa: qca8k: fix regmap bulk read/write methods on big endian systems + - net: dsa: qca8k: fix potential MDIO bus conflict when accessing internal + PHYs via management frames + - can: isotp: isotp_sendmsg(): fix TX state detection and wait behavior + - can: sun4i_can: Only show Kconfig if ARCH_SUNXI is set + - arm64: dts: mediatek: fix t-phy unit name + - arm64: dts: mediatek: mt8195: Set DSU PMU status to fail + - devlink: Hold devlink lock on health reporter dump get + - ravb: Fix up dma_free_coherent() call in ravb_remove() + - ravb: Fix use-after-free issue in ravb_tx_timeout_work() + - ieee802154: ca8210: Fix a potential UAF in ca8210_probe + - mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type + - xen-netback: use default TX queue size for vifs + - riscv, bpf: Sign-extend return values + - riscv, bpf: Track both a0 (RISC-V ABI) and a5 (BPF) return values + - xdp: Fix zero-size allocation warning in xskq_create() + - drm/vmwgfx: fix typo of sizeof argument + - bpf: Fix verifier log for async callback return values + - net: refine debug info in skb_checksum_help() + - octeontx2-pf: mcs: update PN only when update_pn is true + - net: macsec: indicate next pn update when offloading + - net: phy: mscc: macsec: reject PN update requests + - net/mlx5e: macsec: use update_pn flag instead of PN comparation + - drm/panel: boe-tv101wum-nl6: Completely pull GPW to VGL before TP term + - ixgbe: fix crash with empty VF macvlan list + - net/smc: Fix dependency of SMC on ISM + - net/mlx5e: Again mutually exclude RX-FCS and RX-port-timestamp + - s390/bpf: Fix clobbering the caller's backchain in the trampoline + - s390/bpf: Fix unwinding past the trampoline + - net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn() + - net: tcp: fix crashes trying to free half-baked MTU probes + - pinctrl: renesas: rzn1: Enable missing PINMUX + - af_packet: Fix fortified memcpy() without flex array. + - nfc: nci: assert requested protocol is valid + - octeontx2-pf: Fix page pool frag allocation warning + - rswitch: Fix renesas_eth_sw_remove() implementation + - rswitch: Fix imbalance phy_power_off() calling + - workqueue: Override implicit ordered attribute in + workqueue_apply_unbound_cpumask() + - riscv: signal: fix sigaltstack frame size checking + - ovl: temporarily disable appending lowedirs + - dmaengine: stm32-mdma: abort resume if no ongoing transfer + - dmaengine: stm32-dma: fix stm32_dma_prep_slave_sg in case of MDMA chaining + - dmaengine: stm32-dma: fix residue in case of MDMA chaining + - dmaengine: stm32-mdma: use Link Address Register to compute residue + - dmaengine: stm32-mdma: set in_flight_bytes in case CRQA flag is set + - usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer + - xhci: track port suspend state correctly in unsuccessful resume cases + - xhci: Clear EHB bit only at end of interrupt handler + - xhci: Preserve RsvdP bits in ERSTBA register correctly + - net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read + - usb: dwc3: Soft reset phy on probe for host + - usb: cdns3: Modify the return value of cdns_set_active () to void when + CONFIG_PM_SLEEP is disabled + - usb: hub: Guard against accesses to uninitialized BOS descriptors + - usb: musb: Get the musb_qh poniter after musb_giveback + - usb: musb: Modify the "HWVers" register address + - iio: pressure: bmp280: Fix NULL pointer exception + - iio: imu: bno055: Fix missing Kconfig dependencies + - iio: cros_ec: fix an use-after-free in cros_ec_sensors_push_data() + - iio: adc: imx8qxp: Fix address for command buffer registers + - iio: dac: ad3552r: Correct device IDs + - iio: admv1013: add mixer_vgate corner cases + - iio: pressure: dps310: Adjust Timeout Settings + - iio: pressure: ms5611: ms5611_prom_is_valid false negative bug + - iio: adc: ad7192: Correct reference voltage + - iio: addac: Kconfig: update ad74413r selections + - media: subdev: Don't report V4L2_SUBDEV_CAP_STREAMS when the streams API is + disabled + - arm64: dts: mediatek: mt8195-demo: fix the memory size to 8GB + - arm64: dts: mediatek: mt8195-demo: update and reorder reserved memory + regions + - drm: Do not overrun array in drm_gem_get_pages() + - drm/tiny: correctly print `struct resource *` on error + - drm/atomic-helper: relax unregistered connector check + - drm/amdgpu: add missing NULL check + - drm/amd/display: Don't set dpms_off for seamless boot + - ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA + - ACPI: resource: Add TongFang GM6BGEQ, GM6BG5Q and GM6BG0Q to + irq1_edge_low_force_override[] + - ACPI: EC: Add quirk for the HP Pavilion Gaming 15-dk1xxx + - serial: Reduce spinlocked portion of uart_rs485_config() + - serial: 8250_omap: Fix errors with no_console_suspend + - serial: core: Fix checks for tx runtime PM state + - binder: fix memory leaks of spam and pending work + - ksmbd: not allow to open file if delelete on close bit is set + - perf/x86/lbr: Filter vsyscall addresses + - x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs + - x86/alternatives: Disable KASAN in apply_alternatives() + - mcb: remove is_added flag from mcb_device struct + - thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple + Ridge + - thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding + - thunderbolt: Correct TMU mode initialization from hardware + - thunderbolt: Restart XDomain discovery handshake after failure + - powerpc/pseries: Fix STK_PARAM access in the hcall tracing code + - powerpc/47x: Fix 47x syscall return crash + - libceph: use kernel_connect() + - ceph: fix incorrect revoked caps assert in ceph_fill_file_size() + - ceph: fix type promotion bug on 32bit systems + - Input: powermate - fix use-after-free in powermate_config_complete + - Input: psmouse - fix fast_reconnect function for PS/2 mode + - Input: xpad - add PXN V900 support + - Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table + - Input: xpad - add HyperX Clutch Gladiate Support + - Input: goodix - ensure int GPIO is in input for gpio_count == 1 && + gpio_int_idx == 0 case + - tee: amdtee: fix use-after-free vulnerability in amdtee_close_session + - mctp: perform route lookups under a RCU read-side lock + - block: Don't invalidate pagecache for invalid falloc modes + - nfp: flower: avoid rmmod nfp crash issues + - can: sja1000: Always restart the Tx queue after an overrun + - power: supply: qcom_battmgr: fix battery_id type + - power: supply: qcom_battmgr: fix enable request endianness + - usb: typec: ucsi: Use GET_CAPABILITY attributes data to set power supply + scope + - cgroup: Remove duplicates in cgroup v1 tasks file + - dma-buf: add dma_fence_timestamp helper + - scsi: ufs: core: Correct clear TM error log + - riscv: Only consider swbp/ss handlers for correct privileged mode + - counter: chrdev: fix getting array extensions + - counter: microchip-tcb-capture: Fix the use of internal GCLK logic + - coresight: Fix run time warnings while reusing ETR buffer + - riscv: Remove duplicate objcopy flag + - RISC-V: Fix wrong use of CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK + - usb: typec: ucsi: Fix missing link removal + - usb: typec: altmodes/displayport: Signal hpd low when exiting mode + - usb: typec: ucsi: Clear EVENT_PENDING bit if ucsi_send_command fails + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - usb: gadget: ncm: Handle decoding of multiple NTB's in unwrap call + - usb: cdnsp: Fixes issue with dequeuing not queued requests + - usb: typec: qcom: Update the logic of regulator enable and disable + - usb: misc: onboard_hub: add support for Microchip USB2412 USB 2.0 hub + - dmaengine: idxd: use spin_lock_irqsave before wait_event_lock_irq + - dmaengine: mediatek: Fix deadlock caused by synchronize_irq() + - powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE + - powerpc/64e: Fix wrong test in __ptep_test_and_clear_young() + - fs: Fix kernel-doc warnings + - fs: factor out vfs_parse_monolithic_sep() helper + - ovl: fix regression in parsing of mount options with escaped comma + - ovl: make use of ->layers safe in rcu pathwalk + - ovl: fix regression in showing lowerdir mount option + - ALSA: hda/realtek - Fixed two speaker platform + - Linux 6.5.8 + * Mantic update: v6.5.7 upstream stable release (LP: #2045806) + - ASoC: soc-utils: Export snd_soc_dai_is_dummy() symbol + - ASoC: tegra: Fix redundant PLLA and PLLA_OUT0 updates + - maple_tree: add mas_is_active() to detect in-tree walks + - mptcp: Remove unnecessary test for __mptcp_init_sock() + - mptcp: rename timer related helper to less confusing names + - mptcp: fix dangling connection hang-up + - scsi: core: Improve type safety of scsi_rescan_device() + - scsi: Do not attempt to rescan suspended devices + - ata: libata-scsi: Fix delayed scsi_rescan_device() execution + - btrfs: remove btrfs_writepage_endio_finish_ordered + - btrfs: remove end_extent_writepage + - btrfs: don't clear uptodate on write errors + - arm64: add HWCAP for FEAT_HBC (hinted conditional branches) + - arm64: cpufeature: Fix CLRBHB and BC detection + - net: add sysctl accept_ra_min_rtr_lft + - net: change accept_ra_min_rtr_lft to affect all RA lifetimes + - net: release reference to inet6_dev pointer + - iommu/arm-smmu-v3: Avoid constructing invalid range commands + - maple_tree: reduce resets during store setup + - maple_tree: add MAS_UNDERFLOW and MAS_OVERFLOW states + - iommu/apple-dart: Handle DMA_FQ domains in attach_dev() + - scsi: zfcp: Fix a double put in zfcp_port_enqueue() + - iommu/vt-d: Avoid memory allocation in iommu_suspend() + - net: mana: Fix TX CQE error handling + - net: ethernet: mediatek: disable irq before schedule napi + - mptcp: fix delegated action races + - mptcp: userspace pm allow creating id 0 subflow + - qed/red_ll2: Fix undefined behavior bug in struct qed_ll2_info + - Bluetooth: hci_codec: Fix leaking content of local_codecs + - wifi: brcmfmac: Replace 1-element arrays with flexible arrays + - Bluetooth: hci_sync: Fix handling of HCI_QUIRK_STRICT_DUPLICATE_FILTER + - wifi: rtw88: rtw8723d: Fix MAC address offset in EEPROM + - wifi: mwifiex: Fix tlv_buf_left calculation + - md/raid5: release batch_last before waiting for another stripe_head + - PCI/PM: Mark devices disconnected if upstream PCIe link is down on resume + - PCI: qcom: Fix IPQ8074 enumeration + - platform/x86/intel/ifs: release cpus_read_lock() + - net: replace calls to sock->ops->connect() with kernel_connect() + - btrfs: always print transaction aborted messages with an error level + - net: prevent rewrite of msg_name in sock_sendmsg() + - drm/i915: Don't set PIPE_CONTROL_FLUSH_L3 for aux inval + - drm/amd: Fix detection of _PR3 on the PCIe root port + - drm/amd: Fix logic error in sienna_cichlid_update_pcie_parameters() + - arm64: Add Cortex-A520 CPU part definition + - [Config] updateconfigs for ARM64_ERRATUM_2966298 + - arm64: errata: Add Cortex-A520 speculative unprivileged load workaround + - HID: sony: Fix a potential memory leak in sony_probe() + - wifi: mt76: fix lock dependency problem for wed_lock + - ubi: Refuse attaching if mtd's erasesize is 0 + - erofs: fix memory leak of LZMA global compressed deduplication + - wifi: cfg80211/mac80211: hold link BSSes when assoc fails for MLO connection + - iwlwifi: mvm: handle PS changes in vif_cfg_changed + - wifi: iwlwifi: dbg_ini: fix structure packing + - wifi: iwlwifi: mvm: Fix a memory corruption issue + - wifi: cfg80211: fix cqm_config access race + - rtla/timerlat_aa: Zero thread sum after every sample analysis + - rtla/timerlat_aa: Fix negative IRQ delay + - rtla/timerlat_aa: Fix previous IRQ delay for IRQs that happens after thread + sample + - wifi: cfg80211: add missing kernel-doc for cqm_rssi_work + - wifi: mac80211: fix mesh id corruption on 32 bit systems + - wifi: mwifiex: Fix oob check condition in mwifiex_process_rx_packet + - HID: nvidia-shield: add LEDS_CLASS dependency + - erofs: allow empty device tags in flatdev mode + - s390/bpf: Let arch_prepare_bpf_trampoline return program size + - leds: Drop BUG_ON check for LED_COLOR_ID_MULTI + - bpf: Fix tr dereferencing + - bpf: unconditionally reset backtrack_state masks on global func exit + - regulator: mt6358: split ops for buck and linear range LDO regulators + - Bluetooth: Delete unused hci_req_prepare_suspend() declaration + - Bluetooth: Fix hci_link_tx_to RCU lock usage + - Bluetooth: ISO: Fix handling of listen for unicast + - drivers/net: process the result of hdlc_open() and add call of hdlc_close() + in uhdlc_close() + - wifi: mt76: mt76x02: fix MT76x0 external LNA gain handling + - perf/x86/amd/core: Fix overflow reset on hotplug + - rtla/timerlat: Do not stop user-space if a cpu is offline + - regmap: rbtree: Fix wrong register marked as in-cache when creating new node + - wifi: mac80211: fix potential key use-after-free + - perf/x86/amd: Do not WARN() on every IRQ + - iommu/mediatek: Fix share pgtable for iova over 4GB + - wifi: mac80211: Create resources for disabled links + - regulator/core: regulator_register: set device->class earlier + - ima: Finish deprecation of IMA_TRUSTED_KEYRING Kconfig + - [Config] updateconfigs for IMA_BLACKLIST_KEYRING + - wifi: iwlwifi: mvm: Fix incorrect usage of scan API + - scsi: target: core: Fix deadlock due to recursive locking + - ima: rework CONFIG_IMA dependency block + - NFSv4: Fix a nfs4_state_manager() race + - ice: always add legacy 32byte RXDID in supported_rxdids + - bpf: tcp_read_skb needs to pop skb regardless of seq + - bpf, sockmap: Do not inc copied_seq when PEEK flag set + - bpf, sockmap: Reject sk_msg egress redirects to non-TCP sockets + - modpost: add missing else to the "of" check + - net: stmmac: platform: fix the incorrect parameter + - net: fix possible store tearing in neigh_periodic_work() + - neighbour: fix data-races around n->output + - ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data() + - ptp: ocp: Fix error handling in ptp_ocp_device_init + - net: dsa: mv88e6xxx: Avoid EEPROM timeout when EEPROM is absent + - ovl: move freeing ovl_entry past rcu delay + - ovl: fetch inode once in ovl_dentry_revalidate_common() + - ipv6: tcp: add a missing nf_reset_ct() in 3WHS handling + - net: usb: smsc75xx: Fix uninit-value access in __smsc75xx_read_reg + - ethtool: plca: fix plca enable data type while parsing the value + - net: nfc: llcp: Add lock when modifying device list + - net: renesas: rswitch: Add spin lock protection for irq {un}mask + - rswitch: Fix PHY station management clock setting + - net: ethernet: ti: am65-cpsw: Fix error code in + am65_cpsw_nuss_init_tx_chns() + - ibmveth: Remove condition to recompute TCP header checksum. + - netfilter: nft_payload: rebuild vlan header on h_proto access + - netfilter: handle the connecting collision properly in + nf_conntrack_proto_sctp + - selftests: netfilter: Test nf_tables audit logging + - selftests: netfilter: Extend nft_audit.sh + - netfilter: nf_tables: Deduplicate nft_register_obj audit logs + - netfilter: nf_tables: nft_set_rbtree: fix spurious insertion failure + - ipv4: Set offload_failed flag in fibmatch results + - net: stmmac: dwmac-stm32: fix resume on STM32 MCU + - tipc: fix a potential deadlock on &tx->lock + - tcp: fix quick-ack counting to count actual ACKs of new data + - tcp: fix delayed ACKs for MSS boundary condition + - sctp: update transport state when processing a dupcook packet + - sctp: update hb timer immediately after users change hb_interval + - netlink: annotate data-races around sk->sk_err + - net: mana: Fix the tso_bytes calculation + - net: mana: Fix oversized sge0 for GSO packets + - HID: nvidia-shield: Fix a missing led_classdev_unregister() in the probe + error handling path + - HID: sony: remove duplicate NULL check before calling usb_free_urb() + - HID: intel-ish-hid: ipc: Disable and reenable ACPI GPE bit + - net: lan743x: also select PHYLIB + - parisc: Restore __ldcw_align for PA-RISC 2.0 processors + - smb: use kernel_connect() and kernel_bind() + - parisc: Fix crash with nr_cpus=1 option + - dm zoned: free dmz->ddev array in dmz_put_zoned_devices + - RDMA/core: Require admin capabilities to set system parameters + - of: dynamic: Fix potential memory leak in of_changeset_action() + - IB/mlx4: Fix the size of a buffer in add_port_entries() + - gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config() + - gpio: pxa: disable pinctrl calls for MMP_GPIO + - RDMA/cma: Initialize ib_sa_multicast structure to 0 when join + - RDMA/cma: Fix truncation compilation warning in make_cma_ports + - RDMA/bnxt_re: Fix the handling of control path response data + - RDMA/uverbs: Fix typo of sizeof argument + - RDMA/srp: Do not call scsi_done() from srp_abort() + - RDMA/siw: Fix connection failure handling + - RDMA/mlx5: Fix mkey cache possible deadlock on cleanup + - RDMA/mlx5: Fix assigning access flags to cache mkeys + - RDMA/mlx5: Fix mutex unlocking on error flow for steering anchor creation + - RDMA/mlx5: Fix NULL string error + - x86/sev: Change npages to unsigned long in snp_accept_memory() + - x86/sev: Use the GHCB protocol when available for SNP CPUID requests + - ksmbd: fix race condition between session lookup and expire + - ksmbd: fix uaf in smb20_oplock_break_ack + - ksmbd: fix race condition from parallel smb2 lock requests + - RDMA/mlx5: Remove not-used cache disable flag + - Linux 6.5.7 + * Mantic update: v6.5.7 upstream stable release (LP: #2045806) // + CVE-2023-34324 + - xen/events: replace evtchn_rwlock with RCU + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6531 + - io_uring/af_unix: disable sending io_uring over sockets + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * Avoid using damage rectangle under hardware rotation mode when PSR is + enabled (LP: #2045958) + - drm/amd/display: fix hw rotated modes when PSR-SU is enabled + * CVE-2023-46813 + - x86/sev: Disable MMIO emulation from user mode + - x86/sev: Check IOBM for IOIO exceptions from user-space + - x86/sev: Check for user-space IOIO pointing to kernel space + * CVE-2023-6111 + - netfilter: nf_tables: remove catchall element in GC sync path + * CVE-2023-5972 + - nf_tables: fix NULL pointer dereference in nft_inner_init() + - nf_tables: fix NULL pointer dereference in nft_expr_inner_parse() + * Orchid Bay MLK2/Maya Bay MLK soundwire support (LP: #2042090) + - ASoC: Intel: soc-acpi-intel-mtl-match: add rt713 rt1316 config + - ASoC: Intel: sof_sdw_rt_sdca_jack_common: add rt713 support + - ASoC: Intel: sof_sdw_rt712_sdca: construct cards->components by name_prefix + - ASoC: Intel: soc-acpi: rt713+rt1316, no sdw-dmic config + * Build failure if run in a console (LP: #2044512) + - [Packaging] Fix kernel module compression failures + * Fix system suspend problem for Cirrus CS35L41 HDA codec on HP ZBook Fury 16 + G9 (LP: #2042060) + - ALSA: hda: cs35l41: Override the _DSD for HP Zbook Fury 17 G9 to correct + boost type + - ALSA: hda: cs35l41: Use reset label to get GPIO for HP Zbook Fury 17 G9 + - ALSA: hda: cs35l41: Assert reset before system suspend + - ALSA: hda: cs35l41: Assert Reset prior to de-asserting in probe and system + resume + - ALSA: hda: cs35l41: Run boot process during resume callbacks + - ALSA: hda: cs35l41: Force a software reset after hardware reset + - ALSA: hda: cs35l41: Do not unload firmware before reset in system suspend + - ALSA: hda: cs35l41: Check CSPL state after loading firmware + - ASoC: cs35l41: Detect CSPL errors when sending CSPL commands + * Support speaker mute hotkey for Cirrus CS35L41 HDA codec (LP: #2039151) + - ALSA: hda: cs35l41: Support systems with missing _DSD properties + - ALSA: hda: cs35l41: Fix the loop check in cs35l41_add_dsd_properties + - ALSA: hda: cs35l41: Add notification support into component binding + - ALSA: hda/realtek: Support ACPI Notification framework via component binding + - ALSA: hda: cs35l41: Support mute notifications for CS35L41 HDA + - ALSA: hda: cs35l41: Add read-only ALSA control for forced mute + * Add SoF topology support on Intel RaptorLake DELL SKU 0C11 (LP: #2038263) + - ASoC: Intel: soc-acpi-intel-rpl-match: add rt711-l0-rt1316-l12 support + * Update io_uring to 6.6 (LP: #2043730) + - fs: create kiocb_{start,end}_write() helpers + - fs: add IOCB flags related to passing back dio completions + - io_uring/poll: always set 'ctx' in io_cancel_data + - io_uring/timeout: always set 'ctx' in io_cancel_data + - io_uring/cancel: abstract out request match helper + - io_uring/cancel: fix sequence matching for IORING_ASYNC_CANCEL_ANY + - io_uring: use cancelation match helper for poll and timeout requests + - io_uring/cancel: add IORING_ASYNC_CANCEL_USERDATA + - io_uring/cancel: support opcode based lookup and cancelation + - io_uring/cancel: wire up IORING_ASYNC_CANCEL_OP for sync cancel + - io_uring/rw: add write support for IOCB_DIO_CALLER_COMP + - io_uring: Add io_uring command support for sockets + - io_uring/rsrc: Remove unused declaration io_rsrc_put_tw() + - io_uring: cleanup 'ret' handling in io_iopoll_check() + - io_uring/fdinfo: get rid of ref tryget + - io_uring/splice: use fput() directly + - io_uring: have io_file_put() take an io_kiocb rather than the file + - io_uring: remove unnecessary forward declaration + - io_uring/io-wq: don't grab wq->lock for worker activation + - io_uring/io-wq: reduce frequency of acct->lock acquisitions + - io_uring/io-wq: don't gate worker wake up success on wake_up_process() + - io_uring: open code io_fill_cqe_req() + - io_uring: remove return from io_req_cqe_overflow() + - io_uring: never overflow io_aux_cqe + - io_uring/rsrc: keep one global dummy_ubuf + - io_uring: simplify io_run_task_work_sig return + - io_uring/rsrc: Annotate struct io_mapped_ubuf with __counted_by + - io_uring: rename kiocb_end_write() local helper + - io_uring: use kiocb_{start,end}_write() helpers + - io_uring: stop calling free_compound_page() + - io_uring: improve cqe !tracing hot path + - io_uring: cqe init hardening + - io_uring: simplify big_cqe handling + - io_uring: refactor __io_get_cqe() + - io_uring: optimise extra io_get_cqe null check + - io_uring: reorder cqring_flush and wakeups + - io_uring: merge iopoll and normal completion paths + - io_uring: force inline io_fill_cqe_req + - io_uring: compact SQ/CQ heads/tails + - io_uring: add option to remove SQ indirection + - io_uring: move non aligned field to the end + - io_uring: banish non-hot data to end of io_ring_ctx + - io_uring: separate task_work/waiting cache line + - io_uring: move multishot cqe cache in ctx + - io_uring: move iopoll ctx fields around + - io_uring: fix IO hang in io_wq_put_and_exit from do_exit() + - io_uring/fdinfo: only print ->sq_array[] if it's there + - io_uring: fix unprotected iopoll overflow + - Revert "io_uring: fix IO hang in io_wq_put_and_exit from do_exit()" + - io_uring/kbuf: don't allow registered buffer rings on highmem pages + - io_uring: ensure io_lockdep_assert_cq_locked() handles disabled rings + - io_uring: don't allow IORING_SETUP_NO_MMAP rings on highmem pages + - io-wq: fully initialize wqe before calling + cpuhp_state_add_instance_nocalls() + - io_uring: fix crash with IORING_SETUP_NO_MMAP and invalid SQ ring address + - io_uring/fdinfo: lock SQ thread while retrieving thread cpu/pid + - io_uring/rw: disable IOCB_DIO_CALLER_COMP + - io_uring: kiocb_done() should *not* trust ->ki_pos if ->{read,write}_iter() + failed + * System hang after unplug/plug DP monitor with AMD W7500 card (LP: #2042912) + - drm/amd/pm: Fix error of MACO flag setting code + * correct cephfs pull request for uidmap support (LP: #2041613) + - Revert "UBUNTU: SAUCE: ceph: BUG if MDS changed truncate_seq with client + caps still outstanding" + - Revert "UBUNTU: SAUCE: ceph: make sure all the files successfully put before + unmounting" + - Revert "UBUNTU: SAUCE: mm: BUG if filemap_alloc_folio gives us a folio with + a non-NULL ->private" + - Revert "UBUNTU: SAUCE: ceph: dump info about cap flushes when we're waiting + too long for them" + - Revert "UBUNTU: SAUCE: rbd: bump RBD_MAX_PARENT_CHAIN_LEN to 128" + * RTL8111EPP: Fix the network lost after resume with DASH (LP: #2043786) + - r8169: add handling DASH when DASH is disabled + - r8169: fix network lost after resume on DASH systems + * kernel BUG: io_uring openat triggers audit reference count underflow + (LP: #2043841) + - audit, io_uring: io_uring openat triggers audit reference count underflow + * Fix ADL: System enabled AHCI can't get into s0ix when attached ODD + (LP: #2037493) + - ata: ahci: Add Intel Alder Lake-P AHCI controller to low power chipsets list + * [UBUNTU 23.04] Kernel config option missing for s390x PCI passthrough + (LP: #2042853) + - [Config] CONFIG_VFIO_PCI_ZDEV_KVM=y + * Azure: Fix Azure vendor ID (LP: #2036600) + - SAUCE: (no-up) hv: Fix supply vendor ID + * Mantic update: v6.5.6 upstream stable release (LP: #2044174) + - NFS: Fix error handling for O_DIRECT write scheduling + - NFS: Fix O_DIRECT locking issues + - NFS: More O_DIRECT accounting fixes for error paths + - NFS: Use the correct commit info in nfs_join_page_group() + - NFS: More fixes for nfs_direct_write_reschedule_io() + - NFS/pNFS: Report EINVAL errors from connect() to the server + - SUNRPC: Mark the cred for revalidation if the server rejects it + - NFSv4.1: use EXCHGID4_FLAG_USE_PNFS_DS for DS server + - NFSv4.1: fix pnfs MDS=DS session trunking + - media: v4l: Use correct dependency for camera sensor drivers + - media: via: Use correct dependency for camera sensor drivers + - gfs2: Fix another freeze/thaw hang + - netfs: Only call folio_start_fscache() one time for each folio + - btrfs: improve error message after failure to add delayed dir index item + - btrfs: remove BUG() after failure to insert delayed dir index item + - ext4: replace the traditional ternary conditional operator with with + max()/min() + - ext4: move setting of trimmed bit into ext4_try_to_trim_range() + - ext4: do not let fstrim block system suspend + - netfilter: nft_set_rbtree: use read spinlock to avoid datapath contention + - netfilter: nft_set_pipapo: call nft_trans_gc_queue_sync() in catchall GC + - netfilter: nft_set_pipapo: stop GC iteration if GC transaction allocation + fails + - netfilter: nft_set_hash: try later when GC hits EAGAIN on iteration + - netfilter: nf_tables: fix memleak when more than 255 elements expired + - ASoC: meson: spdifin: start hw on dai probe + - netfilter: nf_tables: disallow element removal on anonymous sets + - bpf: Avoid deadlock when using queue and stack maps from NMI + - bpf: Avoid dummy bpf_offload_netdev in __bpf_prog_dev_bound_init + - ALSA: docs: Fix a typo of midi2_ump_probe option for snd-usb-audio + - ALSA: seq: Avoid delivery of events for disabled UMP groups + - ASoC: rt5640: Revert "Fix sleep in atomic context" + - ASoC: rt5640: Fix sleep in atomic context + - ASoC: rt5640: fix typos + - ASoC: rt5640: Do not disable/enable IRQ twice on suspend/resume + - ASoC: rt5640: Enable the IRQ on resume after configuring jack-detect + - ASoC: rt5640: Fix IRQ not being free-ed for HDA jack detect mode + - bpf: Fix a erroneous check after snprintf() + - selftests/bpf: fix unpriv_disabled check in test_verifier + - ALSA: hda/realtek: Splitting the UX3402 into two separate models + - netfilter: conntrack: fix extension size table + - netfilter: nf_tables: Fix entries val in rule reset audit log + - Compiler Attributes: counted_by: Adjust name and identifier expansion + - uapi: stddef.h: Fix header guard location + - uapi: stddef.h: Fix __DECLARE_FLEX_ARRAY for C++ + - memblock tests: Fix compilation errors. + - ASoC: SOF: ipc4-topology: fix wrong sizeof argument + - net: microchip: sparx5: Fix memory leak for + vcap_api_rule_add_keyvalue_test() + - net: microchip: sparx5: Fix memory leak for + vcap_api_rule_add_actionvalue_test() + - net: microchip: sparx5: Fix possible memory leak in + vcap_api_encode_rule_test() + - net: microchip: sparx5: Fix possible memory leaks in + test_vcap_xn_rule_creator() + - net: microchip: sparx5: Fix possible memory leaks in vcap_api_kunit + - selftests: tls: swap the TX and RX sockets in some tests + - net/core: Fix ETH_P_1588 flow dissector + - ALSA: seq: ump: Fix -Wformat-truncation warning + - ASoC: hdaudio.c: Add missing check for devm_kstrdup + - ASoC: imx-audmix: Fix return error with devm_clk_get() + - octeon_ep: fix tx dma unmap len values in SG + - iavf: do not process adminq tasks when __IAVF_IN_REMOVE_TASK is set + - ASoC: SOF: core: Only call sof_ops_free() on remove if the probe was + successful + - iavf: add iavf_schedule_aq_request() helper + - iavf: schedule a request immediately after add/delete vlan + - i40e: Fix VF VLAN offloading when port VLAN is configured + - netfilter, bpf: Adjust timeouts of non-confirmed CTs in + bpf_ct_insert_entry() + - ionic: fix 16bit math issue when PAGE_SIZE >= 64KB + - igc: Fix infinite initialization loop with early XDP redirect + - scsi: iscsi_tcp: restrict to TCP sockets + - powerpc/perf/hv-24x7: Update domain value check + - powerpc/dexcr: Move HASHCHK trap handler + - dccp: fix dccp_v4_err()/dccp_v6_err() again + - x86/mm, kexec, ima: Use memblock_free_late() from ima_free_kexec_buffer() + - net: hsr: Properly parse HSRv1 supervisor frames. + - platform/x86: intel_scu_ipc: Check status after timeout in busy_loop() + - platform/x86: intel_scu_ipc: Check status upon timeout in + ipc_wait_for_interrupt() + - platform/x86: intel_scu_ipc: Don't override scu in + intel_scu_ipc_dev_simple_command() + - platform/x86: intel_scu_ipc: Fail IPC send if still busy + - x86/asm: Fix build of UML with KASAN + - x86/srso: Fix srso_show_state() side effect + - x86/srso: Set CPUID feature bits independently of bug or mitigation status + - x86/srso: Don't probe microcode in a guest + - x86/srso: Fix SBPB enablement for spec_rstack_overflow=off + - net: hns3: add cmdq check for vf periodic service task + - net: hns3: fix GRE checksum offload issue + - net: hns3: only enable unicast promisc when mac table full + - net: hns3: fix fail to delete tc flower rules during reset issue + - net: hns3: add 5ms delay before clear firmware reset irq source + - net: bridge: use DEV_STATS_INC() + - team: fix null-ptr-deref when team device type is changed + - net: rds: Fix possible NULL-pointer dereference + - vxlan: Add missing entries to vxlan_get_size() + - netfilter: nf_tables: disable toggling dormant table state more than once + - net: hinic: Fix warning-hinic_set_vlan_fliter() warn: variable dereferenced + before check 'hwdev' + - net/handshake: Fix memory leak in __sock_create() and sock_alloc_file() + - i915/pmu: Move execlist stats initialization to execlist specific setup + - drm/virtio: clean out_fence on complete_submit + - locking/seqlock: Do the lockdep annotation before locking in + do_write_seqcount_begin_nested() + - net: ena: Flush XDP packets on error. + - bnxt_en: Flush XDP for bnxt_poll_nitroa0()'s NAPI + - octeontx2-pf: Do xdp_do_flush() after redirects. + - igc: Expose tx-usecs coalesce setting to user + - cxl/region: Match auto-discovered region decoders by HPA range + - proc: nommu: /proc//maps: release mmap read lock + - proc: nommu: fix empty /proc//maps + - cifs: Fix UAF in cifs_demultiplex_thread() + - gpio: tb10x: Fix an error handling path in tb10x_gpio_probe() + - i2c: mux: demux-pinctrl: check the return value of devm_kstrdup() + - i2c: mux: gpio: Add missing fwnode_handle_put() + - i2c: xiic: Correct return value check for xiic_reinit() + - drm/amdgpu: set completion status as preempted for the resubmission + - ASoC: cs35l56: Disable low-power hibernation mode + - drm/amd/display: Update DPG test pattern programming + - drm/amd/display: fix a regression in blank pixel data caused by coding + mistake + - arm64: dts: qcom: sdm845-db845c: Mark cont splash memory region as reserved + - direct_write_fallback(): on error revert the ->ki_pos update from buffered + write + - btrfs: reset destination buffer when read_extent_buffer() gets invalid range + - vfio/mdev: Fix a null-ptr-deref bug for mdev_unregister_parent() + - MIPS: Alchemy: only build mmc support helpers if au1xmmc is enabled + - spi: spi-gxp: BUG: Correct spi write return value + - bus: ti-sysc: Use fsleep() instead of usleep_range() in sysc_reset() + - bus: ti-sysc: Fix missing AM35xx SoC matching + - firmware: arm_scmi: Harden perf domain info access + - firmware: arm_scmi: Fixup perf power-cost/microwatt support + - power: supply: mt6370: Fix missing error code in mt6370_chg_toggle_cfo() + - clk: sprd: Fix thm_parents incorrect configuration + - clk: si521xx: Use REGCACHE_FLAT instead of NONE + - clk: si521xx: Fix regmap write accessor + - clk: tegra: fix error return case for recalc_rate + - ARM: dts: ti: omap: Fix bandgap thermal cells addressing for omap3/4 + - ARM: dts: ti: omap: motorola-mapphone: Fix abe_clkctrl warning on boot + - bus: ti-sysc: Fix SYSC_QUIRK_SWSUP_SIDLE_ACT handling for uart wake-up + - swiotlb: use the calculated number of areas + - power: supply: ucs1002: fix error code in ucs1002_get_property() + - power: supply: rt9467: Fix rt9467_run_aicl() + - power: supply: core: fix use after free in uevent + - firmware: imx-dsp: Fix an error handling path in imx_dsp_setup_channels() + - xtensa: add default definition for XCHAL_HAVE_DIV32 + - xtensa: iss/network: make functions static + - xtensa: boot: don't add include-dirs + - xtensa: umulsidi3: fix conditional expression + - xtensa: boot/lib: fix function prototypes + - power: supply: rk817: Fix node refcount leak + - powerpc/stacktrace: Fix arch_stack_walk_reliable() + - selftests/powerpc: Fix emit_tests to work with run_kselftest.sh + - arm64: dts: imx8mp: Fix SDMA2/3 clocks + - arm64: dts: imx8mp-beacon-kit: Fix audio_pll2 clock + - soc: imx8m: Enable OCOTP clock for imx8mm before reading registers + - arm64: dts: imx8mm-evk: Fix hdmi@3d node + - arm64: dts: imx: Add imx8mm-prt8mm.dtb to build + - firmware: arm_ffa: Don't set the memory region attributes for MEM_LEND + - i915/guc: Get runtime pm in busyness worker only if already active + - accel/ivpu: Do not use wait event interruptible + - gpio: pmic-eic-sprd: Add can_sleep flag for PMIC EIC chip + - i2c: npcm7xx: Fix callback completion ordering + - NFSD: Fix zero NFSv4 READ results when RQ_SPLICE_OK is not set + - x86/reboot: VMCLEAR active VMCSes before emergency reboot + - dma-debug: don't call __dma_entry_alloc_check_leak() under free_entries_lock + - bpf: Annotate bpf_long_memcpy with data_race + - ASoC: amd: yc: Add DMI entries to support Victus by HP Gaming Laptop + 15-fb0xxx (8A3E) + - spi: sun6i: reduce DMA RX transfer width to single byte + - spi: sun6i: fix race between DMA RX transfer completion and RX FIFO drain + - nvme-fc: Prevent null pointer dereference in nvme_fc_io_getuuid() + - parisc: sba: Fix compile warning wrt list of SBA devices + - parisc: sba-iommu: Fix sparse warnigs + - parisc: ccio-dma: Fix sparse warnings + - parisc: iosapic.c: Fix sparse warnings + - parisc: drivers: Fix sparse warning + - parisc: irq: Make irq_stack_union static to avoid sparse warning + - scsi: qedf: Add synchronization between I/O completions and abort + - scsi: ufs: core: Move __ufshcd_send_uic_cmd() outside host_lock + - scsi: ufs: core: Poll HCS.UCRDY before issuing a UIC command + - selftests/ftrace: Correctly enable event in instance-event.tc + - ring-buffer: Avoid softlockup in ring_buffer_resize() + - btrfs: assert delayed node locked when removing delayed item + - selftests: fix dependency checker script + - ring-buffer: Do not attempt to read past "commit" + - net/smc: bugfix for smcr v2 server connect success statistic + - ata: sata_mv: Fix incorrect string length computation in mv_dump_mem() + - efi/x86: Ensure that EFI_RUNTIME_MAP is enabled for kexec + - platform/mellanox: mlxbf-bootctl: add NET dependency into Kconfig + - platform/x86: asus-wmi: Support 2023 ROG X16 tablet mode + - thermal/of: add missing of_node_put() + - drm/amdgpu: Store CU info from all XCCs for GFX v9.4.3 + - drm/amdkfd: Update cache info reporting for GFX v9.4.3 + - drm/amdkfd: Update CU masking for GFX 9.4.3 + - drm/amd/display: Don't check registers, if using AUX BL control + - drm/amdgpu/soc21: don't remap HDP registers for SR-IOV + - drm/amdgpu/nbio4.3: set proper rmmio_remap.reg_offset for SR-IOV + - drm/amdgpu: fallback to old RAS error message for aqua_vanjaram + - drm/amdkfd: Checkpoint and restore queues on GFX11 + - drm/amdgpu: Handle null atom context in VBIOS info ioctl + - objtool: Fix _THIS_IP_ detection for cold functions + - nvme-pci: do not set the NUMA node of device if it has none + - riscv: errata: fix T-Head dcache.cva encoding + - scsi: pm80xx: Use phy-specific SAS address when sending PHY_START command + - scsi: pm80xx: Avoid leaking tags when processing + OPC_INB_SET_CONTROLLER_CONFIG command + - smb3: correct places where ENOTSUPP is used instead of preferred EOPNOTSUPP + - ata: libata-eh: do not clear ATA_PFLAG_EH_PENDING in ata_eh_reset() + - ata: libata-eh: do not thaw the port twice in ata_eh_reset() + - Add DMI ID for MSI Bravo 15 B7ED + - spi: nxp-fspi: reset the FLSHxCR1 registers + - spi: stm32: add a delay before SPI disable + - ASoC: fsl: imx-pcm-rpmsg: Add SNDRV_PCM_INFO_BATCH flag + - spi: intel-pci: Add support for Granite Rapids SPI serial flash + - bpf: Clarify error expectations from bpf_clone_redirect + - ASoC: rt5640: Only cancel jack-detect work on suspend if active + - ALSA: hda: intel-sdw-acpi: Use u8 type for link index + - ASoC: cs42l42: Ensure a reset pulse meets minimum pulse width. + - ASoC: cs42l42: Don't rely on GPIOD_OUT_LOW to set RESET initially low + - ASoC: cs42l42: Avoid stale SoundWire ATTACH after hard reset + - firmware: cirrus: cs_dsp: Only log list of algorithms in debug build + - ASoC: wm_adsp: Fix missing locking in wm_adsp_[read|write]_ctl() + - memblock tests: fix warning: "__ALIGN_KERNEL" redefined + - memblock tests: fix warning ‘struct seq_file’ declared inside parameter list + - ASoC: imx-rpmsg: Set ignore_pmdown_time for dai_link + - ASoC: SOF: sof-audio: Fix DSP core put imbalance on widget setup failure + - media: vb2: frame_vector.c: replace WARN_ONCE with a comment + - NFSv4.1: fix zero value filehandle in post open getattr + - ASoC: SOF: Intel: MTL: Reduce the DSP init timeout + - powerpc/watchpoints: Disable preemption in thread_change_pc() + - powerpc/watchpoint: Disable pagefaults when getting user instruction + - powerpc/watchpoints: Annotate atomic context in more places + - ncsi: Propagate carrier gain/loss events to the NCSI controller + - net: hsr: Add __packed to struct hsr_sup_tlv. + - tsnep: Fix NAPI scheduling + - tsnep: Fix ethtool channels + - tsnep: Fix NAPI polling with budget 0 + - gfs2: fix glock shrinker ref issues + - i2c: designware: fix __i2c_dw_disable() in case master is holding SCL low + - LoongArch: Use _UL() and _ULL() + - LoongArch: Set all reserved memblocks on Node#0 at initialization + - fbdev/sh7760fb: Depend on FB=y + - perf build: Define YYNOMEM as YYNOABORT for bison < 3.81 + - ASoC: cs35l56: Call pm_runtime_dont_use_autosuspend() + - iommu/arm-smmu-v3: Fix soft lockup triggered by arm_smmu_mm_invalidate_range + - spi: zynqmp-gqspi: fix clock imbalance on probe failure + - x86/sgx: Resolves SECS reclaim vs. page fault for EAUG race + - x86/srso: Add SRSO mitigation for Hygon processors + - KVM: SVM: INTERCEPT_RDTSCP is never intercepted anyway + - KVM: SVM: Fix TSC_AUX virtualization setup + - KVM: x86/mmu: Open code leaf invalidation from mmu_notifier + - KVM: x86/mmu: Do not filter address spaces in + for_each_tdp_mmu_root_yield_safe() + - KVM: x86/mmu: Stop zapping invalidated TDP MMU roots asynchronously + - mptcp: fix bogus receive window shrinkage with multiple subflows + - mptcp: move __mptcp_error_report in protocol.c + - mptcp: process pending subflow error on close + - Revert "tty: n_gsm: fix UAF in gsm_cleanup_mux" + - scsi: core: ata: Do no try to probe for CDL on old drives + - serial: 8250_port: Check IRQ data before use + - nilfs2: fix potential use after free in nilfs_gccache_submit_read_data() + - crypto: sm2 - Fix crash caused by uninitialized context + - ALSA: rawmidi: Fix NULL dereference at proc read + - ALSA: hda: Disable power save for solving pop issue on Lenovo ThinkCentre + M70q + - LoongArch: Fix lockdep static memory detection + - LoongArch: Define relocation types for ABI v2.10 + - LoongArch: numa: Fix high_memory calculation + - LoongArch: Add support for 32_PCREL relocation type + - LoongArch: Add support for 64_PCREL relocation type + - ata: libata-scsi: link ata port and scsi device + - scsi: sd: Differentiate system and runtime start/stop management + - scsi: sd: Do not issue commands to suspended disks on shutdown + - ata: libata-scsi: ignore reserved bits for REPORT SUPPORTED OPERATION CODES + - io_uring/fs: remove sqe->rw_flags checking from LINKAT + - i2c: i801: unregister tco_pdev in i801_probe() error path + - ASoC: amd: yc: Fix non-functional mic on Lenovo 82QF and 82UG + - kernel/sched: Modify initial boot task idle setup + - sched/rt: Fix live lock between select_fallback_rq() and RT push + - Revert "SUNRPC dont update timeout value on connection reset" + - NFSv4: Fix a state manager thread deadlock regression + - ACPI: NFIT: Fix incorrect calculation of idt size + - timers: Tag (hr)timer softirq as hotplug safe + - drm/tests: Fix incorrect argument in drm_test_mm_insert_range + - cxl/mbox: Fix CEL logic for poison and security commands + - arm64: defconfig: remove CONFIG_COMMON_CLK_NPCM8XX=y + - mm/damon/vaddr-test: fix memory leak in damon_do_test_apply_three_regions() + - selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and + hugetlb_reparenting_test.sh that may cause error + - mm: mempolicy: keep VMA walk if both MPOL_MF_STRICT and MPOL_MF_MOVE are + specified + - mm/slab_common: fix slab_caches list corruption after kmem_cache_destroy() + - mm: page_alloc: fix CMA and HIGHATOMIC landing on the wrong buddy list + - mm: memcontrol: fix GFP_NOFS recursion in memory.high enforcement + - cxl/port: Fix cxl_test register enumeration regression + - cxl/pci: Fix appropriate checking for _OSC while handling CXL RAS registers + - ring-buffer: Fix bytes info in per_cpu buffer stats + - ring-buffer: Update "shortest_full" in polling + - btrfs: refresh dir last index during a rewinddir(3) call + - btrfs: file_remove_privs needs an exclusive lock in direct io write + - btrfs: set last dir index to the current last index when opening dir + - btrfs: fix race between reading a directory and adding entries to it + - btrfs: properly report 0 avail for very full file systems + - media: uvcvideo: Fix OOB read + - bpf: Add override check to kprobe multi link attach + - bpf: Fix BTF_ID symbol generation collision + - bpf: Fix BTF_ID symbol generation collision in tools/ + - net: thunderbolt: Fix TCPv6 GSO checksum calculation + - thermal: sysfs: Fix trip_point_hyst_store() + - tracing/user_events: Align set_bit() address for all archs + - ata: libata-core: Fix ata_port_request_pm() locking + - ata: libata-core: Fix port and device removal + - ata: libata-core: Do not register PM operations for SAS ports + - ata: libata-sata: increase PMP SRST timeout to 10s + - i915: Limit the length of an sg list to the requested length + - drm/i915/gt: Fix reservation address in ggtt_reserve_guc_top + - power: supply: rk817: Add missing module alias + - power: supply: ab8500: Set typing and props + - fs: binfmt_elf_efpic: fix personality for ELF-FDPIC + - drm/amdkfd: Use gpu_offset for user queue's wptr + - drm/amd/display: fix the ability to use lower resolution modes on eDP + - drm/meson: fix memory leak on ->hpd_notify callback + - rbd: move rbd_dev_refresh() definition + - rbd: decouple header read-in from updating rbd_dev->header + - rbd: decouple parent info read-in from updating rbd_dev + - rbd: take header_rwsem in rbd_dev_refresh() only when updating + - memcg: drop kmem.limit_in_bytes + - mm, memcg: reconsider kmem.limit_in_bytes deprecation + - ASoC: amd: yc: Fix a non-functional mic on Lenovo 82TL + - Linux 6.5.6 + * Mantic update: v6.5.5 upstream stable release (LP: #2043416) + - iomap: Fix possible overflow condition in iomap_write_delalloc_scan + - autofs: fix memory leak of waitqueues in autofs_catatonic_mode + - btrfs: handle errors properly in update_inline_extent_backref() + - btrfs: output extra debug info if we failed to find an inline backref + - locks: fix KASAN: use-after-free in trace_event_raw_event_filelock_lock + - ACPICA: Add AML_NO_OPERAND_RESOLVE flag to Timer + - kernel/fork: beware of __put_task_struct() calling context + - rcuscale: Move rcu_scale_writer() schedule_timeout_uninterruptible() to + _idle() + - scftorture: Forgive memory-allocation failure if KASAN + - ACPI: video: Add backlight=native DMI quirk for Lenovo Ideapad Z470 + - platform/chrome: cros_ec_lpc: Remove EC panic shutdown timeout + - x86/amd_nb: Add PCI IDs for AMD Family 1Ah-based models + - perf/smmuv3: Enable HiSilicon Erratum 162001900 quirk for HIP08/09 + - s390/boot: cleanup number of page table levels setup + - kselftest/arm64: fix a memleak in zt_regs_run() + - perf/imx_ddr: speed up overflow frequency of cycle + - ACPI: video: Add backlight=native DMI quirk for Apple iMac12,1 and iMac12,2 + - hw_breakpoint: fix single-stepping when using bpf_overflow_handler + - ACPI: x86: s2idle: Catch multiple ACPI_TYPE_PACKAGE objects + - selftests/nolibc: fix up kernel parameters support + - selftests/nolibc: prevent out of bounds access in expect_vfprintf + - spi: sun6i: add quirk for dual and quad SPI modes support + - devlink: remove reload failed checks in params get/set callbacks + - crypto: lrw,xts - Replace strlcpy with strscpy + - ice: Don't tx before switchdev is fully configured + - wifi: ath9k: fix fortify warnings + - wifi: ath9k: fix printk specifier + - wifi: rtw88: delete timer and free skb queue when unloading + - wifi: mwifiex: fix fortify warning + - mt76: mt7921: don't assume adequate headroom for SDIO headers + - wifi: wil6210: fix fortify warnings + - can: sun4i_can: Add acceptance register quirk + - can: sun4i_can: Add support for the Allwinner D1 + - [Config] updateconfigs for CAN_SUN4I + - net: Use sockaddr_storage for getsockopt(SO_PEERNAME). + - wifi: ath12k: Fix a NULL pointer dereference in ath12k_mac_op_hw_scan() + - wifi: ath12k: avoid array overflow of hw mode for preferred_hw_mode + - net/ipv4: return the real errno instead of -EINVAL + - crypto: lib/mpi - avoid null pointer deref in mpi_cmp_ui() + - Bluetooth: btusb: Add device 0489:e0f5 as MT7922 device + - Bluetooth: btusb: Add a new VID/PID 0489/e0f6 for MT7922 + - Bluetooth: btusb: Add new VID/PID 0489/e102 for MT7922 + - Bluetooth: btusb: Add new VID/PID 04ca/3804 for MT7922 + - Bluetooth: Fix hci_suspend_sync crash + - Bluetooth: btusb: Add support for another MediaTek 7922 VID/PID + - netlink: convert nlk->flags to atomic flags + - tpm_tis: Resend command to recover from data transfer errors + - mmc: sdhci-esdhc-imx: improve ESDHC_FLAG_ERR010450 + - alx: fix OOB-read compiler warning + - wifi: iwlwifi: pcie: avoid a warning in case prepare card failed + - wifi: mac80211: check S1G action frame size + - netfilter: ebtables: fix fortify warnings in size_entry_mwt() + - wifi: cfg80211: reject auth/assoc to AP with our address + - wifi: cfg80211: ocb: don't leave if not joined + - wifi: mac80211: check for station first in client probe + - wifi: mac80211_hwsim: drop short frames + - Revert "wifi: mac80211_hwsim: check the return value of nla_put_u32" + - libbpf: Free btf_vmlinux when closing bpf_object + - wifi: ath12k: Fix memory leak in rx_desc and tx_desc + - wifi: ath12k: add check max message length while scanning with extraie + - Fix nomenclature for USB and PCI wireless devices + - bpf: Consider non-owning refs trusted + - bpf: Consider non-owning refs to refcounted nodes RCU protected + - drm/bridge: tc358762: Instruct DSI host to generate HSE packets + - drm/edid: Add quirk for OSVR HDK 2.0 + - drm: bridge: samsung-dsim: Drain command transfer FIFO before transfer + - arm64: dts: qcom: sm6125-pdx201: correct ramoops pmsg-size + - arm64: dts: qcom: sm6125-sprout: correct ramoops pmsg-size + - arm64: dts: qcom: sm6350: correct ramoops pmsg-size + - arm64: dts: qcom: sm8150-kumano: correct ramoops pmsg-size + - arm64: dts: qcom: sm8250-edo: correct ramoops pmsg-size + - drm/amdgpu: Increase soft IH ring size + - samples/hw_breakpoint: Fix kernel BUG 'invalid opcode: 0000' + - drm/amdgpu: Update ring scheduler info as needed + - drm/amd/display: Fix underflow issue on 175hz timing + - ASoC: SOF: topology: simplify code to prevent static analysis warnings + - ASoC: Intel: sof_sdw: Update BT offload config for soundwire config + - ALSA: hda: intel-dsp-cfg: add LunarLake support + - drm/amd/display: Use DTBCLK as refclk instead of DPREFCLK + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN31 + - drm/amd/display: Blocking invalid 420 modes on HDMI TMDS for DCN314 + - drm/amd/display: Use max memclk variable when setting max memclk + - drm/msm/adreno: Use quirk identify hw_apriv + - drm/msm/adreno: Use quirk to identify cached-coherent support + - drm/exynos: fix a possible null-pointer dereference due to data race in + exynos_drm_crtc_atomic_disable() + - io_uring: annotate the struct io_kiocb slab for appropriate user copy + - drm/mediatek: dp: Change logging to dev for mtk_dp_aux_transfer() + - bus: ti-sysc: Configure uart quirks for k3 SoC + - arm64: dts: qcom: sc8280xp-x13s: Add camera activity LED + - md: raid1: fix potential OOB in raid1_remove_disk() + - ext2: fix datatype of block number in ext2_xattr_set2() + - blk-mq: fix tags leak when shrink nr_hw_queues + - ASoC: SOF: amd: clear panic mask status when panic occurs + - x86: bring back rep movsq for user access on CPUs without ERMS + - fs/jfs: prevent double-free in dbUnmount() after failed jfs_remount() + - jfs: fix invalid free of JFS_IP(ipimap)->i_imap in diUnmount + - ext4: add two helper functions extent_logical_end() and pa_logical_end() + - ext4: avoid overlapping preallocations due to overflow + - PCI: dwc: Provide deinit callback for i.MX + - ARM: 9317/1: kexec: Make smp stop calls asynchronous + - powerpc/pseries: fix possible memory leak in ibmebus_bus_init() + - PCI: vmd: Disable bridge window for domain reset + - PCI: fu740: Set the number of MSI vectors + - media: mdp3: Fix resource leaks in of_find_device_by_node + - media: dvb-usb-v2: af9035: Fix null-ptr-deref in af9035_i2c_master_xfer + - media: dw2102: Fix null-ptr-deref in dw2102_i2c_transfer() + - media: af9005: Fix null-ptr-deref in af9005_i2c_xfer + - media: anysee: fix null-ptr-deref in anysee_master_xfer + - media: az6007: Fix null-ptr-deref in az6007_i2c_xfer() + - media: dvb-usb-v2: gl861: Fix null-ptr-deref in gl861_i2c_master_xfer + - scsi: lpfc: Abort outstanding ELS cmds when mailbox timeout error is + detected + - media: tuners: qt1010: replace BUG_ON with a regular error + - media: pci: cx23885: replace BUG with error return + - usb: cdns3: Put the cdns set active part outside the spin lock + - usb: typec: intel_pmc_mux: Add new ACPI ID for Lunar Lake IOM device + - usb: gadget: fsl_qe_udc: validate endpoint index for ch9 udc + - tools: iio: iio_generic_buffer: Fix some integer type and calculation + - scsi: target: iscsi: Fix buffer overflow in lio_target_nacl_info_show() + - serial: cpm_uart: Avoid suspicious locking + - misc: open-dice: make OPEN_DICE depend on HAS_IOMEM + - usb: dwc3: dwc3-octeon: Verify clock divider + - usb: ehci: add workaround for chipidea PORTSC.PEC bug + - usb: chipidea: add workaround for chipidea PEC bug + - media: pci: ipu3-cio2: Initialise timing struct to avoid a compiler warning + - kobject: Add sanity check for kset->kobj.ktype in kset_register() + - interconnect: Fix locking for runpm vs reclaim + - usb: typec: qcom-pmic-typec: register drm_bridge + - printk: Reduce console_unblank() usage in unsafe scenarios + - printk: Keep non-panic-CPUs out of console lock + - printk: Do not take console lock for console_flush_on_panic() + - printk: Consolidate console deferred printing + - printk: Rename abandon_console_lock_in_panic() to other_cpu_in_panic() + - ext4: fix BUG in ext4_mb_new_inode_pa() due to overflow + - btrfs: introduce struct to consolidate extent buffer write context + - btrfs: zoned: introduce block group context to btrfs_eb_write_context + - btrfs: zoned: return int from btrfs_check_meta_write_pointer + - btrfs: zoned: defer advancing meta write pointer + - btrfs: zoned: activate metadata block group on write time + - mtd: spi-nor: spansion: use CLPEF as an alternative to CLSR + - mtd: spi-nor: spansion: preserve CFR2V[7] when writing MEMLAT + - btrfs: add a helper to read the superblock metadata_uuid + - btrfs: compare the correct fsid/metadata_uuid in btrfs_validate_super + - nvmet-tcp: pass iov_len instead of sg->length to bvec_set_page() + - drm: gm12u320: Fix the timeout usage for usb_bulk_msg() + - scsi: qla2xxx: Fix NULL vs IS_ERR() bug for debugfs_create_dir() + - md: don't dereference mddev after export_rdev() + - md: fix warning for holder mismatch from export_rdev() + - efivarfs: fix statfs() on efivarfs + - PM: hibernate: Fix the exclusive get block device in test_resume mode + - selftests: tracing: Fix to unmount tracefs for recovering environment + - x86/ibt: Suppress spurious ENDBR + - x86/ibt: Avoid duplicate ENDBR in __put_user_nocheck*() + - riscv: kexec: Align the kexeced kernel entry + - x86/sched: Restore the SD_ASYM_PACKING flag in the DIE domain + - scsi: target: core: Fix target_cmd_counter leak + - scsi: lpfc: Fix the NULL vs IS_ERR() bug for debugfs_create_file() + - panic: Reenable preemption in WARN slowpath + - ata: libata-core: fetch sense data for successful commands iff CDL enabled + - x86/boot/compressed: Reserve more memory for page tables + - x86/purgatory: Remove LTO flags + - samples/hw_breakpoint: fix building without module unloading + - blk-mq: prealloc tags when increase tagset nr_hw_queues + - blk-mq: fix tags UAF when shrinking q->nr_hw_queues + - md/raid1: fix error: ISO C90 forbids mixed declarations + - Revert "SUNRPC: Fail faster on bad verifier" + - attr: block mode changes of symlinks + - ovl: fix failed copyup of fileattr on a symlink + - ovl: fix incorrect fdput() on aio completion + - io_uring/net: fix iter retargeting for selected buf + - x86/platform/uv: Use alternate source for socket to node data + - Revert "firewire: core: obsolete usage of GFP_ATOMIC at building node tree" + - drm/amd: Make fence wait in suballocator uninterruptible + - Revert "drm/amd: Disable S/G for APUs when 64GB or more host memory" + - dm: don't attempt to queue IO under RCU protection + - dm: fix a race condition in retrieve_deps + - btrfs: fix lockdep splat and potential deadlock after failure running + delayed items + - btrfs: fix a compilation error if DEBUG is defined in btree_dirty_folio + - btrfs: fix race between finishing block group creation and its item update + - btrfs: release path before inode lookup during the ino lookup ioctl + - btrfs: check for BTRFS_FS_ERROR in pending ordered assert + - tracing/synthetic: Fix order of struct trace_dynamic_info + - tracing: Have tracing_max_latency inc the trace array ref count + - tracing: Have event inject files inc the trace array ref count + - tracing/synthetic: Print out u64 values properly + - tracing: Increase trace array ref count on enable and filter files + - tracing: Have current_trace inc the trace array ref count + - tracing: Have option files inc the trace array ref count + - selinux: fix handling of empty opts in selinux_fs_context_submount() + - nfsd: fix change_info in NFSv4 RENAME replies + - tracefs: Add missing lockdown check to tracefs_create_dir() + - i2c: aspeed: Reset the i2c controller when timeout occurs + - ata: libata: disallow dev-initiated LPM transitions to unsupported states + - ata: libahci: clear pending interrupt status + - scsi: megaraid_sas: Fix deadlock on firmware crashdump + - scsi: qla2xxx: Use raw_smp_processor_id() instead of smp_processor_id() + - scsi: pm8001: Setup IRQs on resume + - Revert "comedi: add HAS_IOPORT dependencies" + - [Config] updateconfigs for COMEDI/HAS_IOPORT deps + - ext4: fix rec_len verify error + - drm/radeon: make fence wait in suballocator uninterrruptable + - drm/i915: Only check eDP HPD when AUX CH is shared + - drm/amdkfd: Insert missing TLB flush on GFX10 and later + - drm/tests: helpers: Avoid a driver uaf + - drm/amd/display: Adjust the MST resume flow + - drm/amd/display: fix the white screen issue when >= 64GB DRAM + - drm/amd/display: Add DPIA Link Encoder Assignment Fix + - drm/amd/display: Fix 2nd DPIA encoder Assignment + - Revert "memcg: drop kmem.limit_in_bytes" + - drm/amdgpu: fix amdgpu_cs_p1_user_fence + - interconnect: Teach lockdep about icc_bw_lock order + - x86/alternatives: Remove faulty optimization + - x86,static_call: Fix static-call vs return-thunk + - Linux 6.5.5 + * Could not probe Samsung P44 30S3 PM9C1a SSD correctly: nvme nvme0: Device + not ready: aborting installation, CSTS=0x0 (LP: #2041495) // Mantic update: + v6.5.5 upstream stable release (LP: #2043416) + - nvme: avoid bogus CRTO values + * Mantic update: v6.5.4 upstream stable release (LP: #2041999) + - net/ipv6: SKB symmetric hash should incorporate transport ports + - drm/virtio: Conditionally allocate virtio_gpu_fence + - scsi: ufs: core: Add advanced RPMB support where UFSHCI 4.0 does not support + EHS length in UTRD + - scsi: qla2xxx: Adjust IOCB resource on qpair create + - scsi: qla2xxx: Limit TMF to 8 per function + - scsi: qla2xxx: Fix deletion race condition + - scsi: qla2xxx: fix inconsistent TMF timeout + - scsi: qla2xxx: Fix command flush during TMF + - scsi: qla2xxx: Fix erroneous link up failure + - scsi: qla2xxx: Turn off noisy message log + - scsi: qla2xxx: Fix session hang in gnl + - scsi: qla2xxx: Fix TMF leak through + - scsi: qla2xxx: Remove unsupported ql2xenabledif option + - scsi: qla2xxx: Flush mailbox commands on chip reset + - scsi: qla2xxx: Fix smatch warn for qla_init_iocb_limit() + - scsi: qla2xxx: Error code did not return to upper layer + - scsi: qla2xxx: Fix firmware resource tracking + - null_blk: fix poll request timeout handling + - kernfs: fix missing kernfs_iattr_rwsem locking + - fbdev/ep93xx-fb: Do not assign to struct fb_info.dev + - clk: qcom: camcc-sc7180: fix async resume during probe + - drm/ast: Fix DRAM init on AST2200 + - ASoC: tegra: Fix SFC conversion for few rates + - ARM: dts: samsung: exynos4210-i9100: Fix LCD screen's physical size + - arm64: tegra: Update AHUB clock parent and rate on Tegra234 + - arm64: tegra: Update AHUB clock parent and rate + - clk: qcom: turingcc-qcs404: fix missing resume during probe + - ARM: dts: qcom: msm8974pro-castor: correct inverted X of touchscreen + - arm64: dts: qcom: msm8953-vince: drop duplicated touschreen parent interrupt + - ARM: dts: qcom: msm8974pro-castor: correct touchscreen function names + - ARM: dts: qcom: msm8974pro-castor: correct touchscreen syna,nosleep-mode + - arm64: dts: renesas: rzg2l: Fix txdv-skew-psec typos + - ARM: dts: BCM5301X: Extend RAM to full 256MB for Linksys EA6500 V2 + - send channel sequence number in SMB3 requests after reconnects + - memcg: drop kmem.limit_in_bytes + - mm: hugetlb_vmemmap: fix a race between vmemmap pmd split + - lib/test_meminit: allocate pages up to order MAX_ORDER + - Multi-gen LRU: avoid race in inc_min_seq() + - parisc: led: Fix LAN receive and transmit LEDs + - parisc: led: Reduce CPU overhead for disk & lan LED computation + - cifs: update desired access while requesting for directory lease + - pinctrl: cherryview: fix address_space_handler() argument + - dt-bindings: clock: xlnx,versal-clk: drop select:false + - clk: imx: pll14xx: dynamically configure PLL for 393216000/361267200Hz + - clk: imx: pll14xx: align pdiv with reference manual + - clk: qcom: gcc-mdm9615: use proper parent for pll0_vote clock + - soc: qcom: qmi_encdec: Restrict string length in decode + - clk: qcom: dispcc-sm8450: fix runtime PM imbalance on probe errors + - clk: qcom: dispcc-sm8550: fix runtime PM imbalance on probe errors + - clk: qcom: lpasscc-sc7280: fix missing resume during probe + - clk: qcom: q6sstop-qcs404: fix missing resume during probe + - clk: qcom: mss-sc7180: fix missing resume during probe + - NFS: Fix a potential data corruption + - NFSv4/pnfs: minor fix for cleanup path in nfs4_get_device_info + - bus: mhi: host: Skip MHI reset if device is in RDDM + - kbuild: rpm-pkg: define _arch conditionally + - kbuild: do not run depmod for 'make modules_sign' + - kbuild: dummy-tools: make MPROFILE_KERNEL checks work on BE + - tpm_crb: Fix an error handling path in crb_acpi_add() + - gfs2: Switch to wait_event in gfs2_logd + - gfs2: low-memory forced flush fixes + - mailbox: qcom-ipcc: fix incorrect num_chans counting + - kconfig: fix possible buffer overflow + - tools/mm: fix undefined reference to pthread_once + - Input: iqs7222 - configure power mode before triggering ATI + - perf trace: Really free the evsel->priv area + - pwm: atmel-tcb: Harmonize resource allocation order + - pwm: atmel-tcb: Fix resource freeing in error path and remove + - backlight: lp855x: Initialize PWM state on first brightness change + - backlight: gpio_backlight: Drop output GPIO direction check for initial + power state + - perf parse-events: Separate YYABORT and YYNOMEM cases + - perf parse-events: Move instances of YYABORT to YYNOMEM + - perf parse-events: Separate ENOMEM memory handling + - perf parse-events: Additional error reporting + - KVM: SVM: Don't defer NMI unblocking until next exit for SEV-ES guests + - Input: tca6416-keypad - always expect proper IRQ number in i2c client + - Input: tca6416-keypad - fix interrupt enable disbalance + - perf annotate bpf: Don't enclose non-debug code with an assert() + - x86/virt: Drop unnecessary check on extended CPUID level in cpu_has_svm() + - perf script: Print "cgroup" field on the same line as "comm" + - perf bpf-filter: Fix sample flag check with || + - perf dlfilter: Initialize addr_location before passing it to + thread__find_symbol_fb() + - perf dlfilter: Add al_cleanup() + - perf vendor events: Update the JSON/events descriptions for power10 platform + - perf vendor events: Drop some of the JSON/events for power10 platform + - perf vendor events: Drop STORES_PER_INST metric event for power10 platform + - perf vendor events: Move JSON/events to appropriate files for power10 + platform + - perf vendor events: Update metric event names for power10 platform + - perf top: Don't pass an ERR_PTR() directly to perf_session__delete() + - perf lock: Don't pass an ERR_PTR() directly to perf_session__delete() + - watchdog: intel-mid_wdt: add MODULE_ALIAS() to allow auto-load + - perf vendor events arm64: Remove L1D_CACHE_LMISS from AmpereOne list + - pwm: lpc32xx: Remove handling of PWM channels + - accel/ivpu: refactor deprecated strncpy + - perf header: Fix missing PMU caps + - i3c: master: svc: Describe member 'saved_regs' + - perf test stat_bpf_counters_cgrp: Fix shellcheck issue about logical + operators + - perf test stat_bpf_counters_cgrp: Enhance perf stat cgroup BPF counter test + - regulator: tps6287x: Fix n_voltages + - selftests/bpf: Fix flaky cgroup_iter_sleepable subtest + - drm/i915: mark requests for GuC virtual engines to avoid use-after-free + - blk-throttle: use calculate_io/bytes_allowed() for throtl_trim_slice() + - blk-throttle: consider 'carryover_ios/bytes' in throtl_trim_slice() + - netfilter: nf_tables: Audit log setelem reset + - netfilter: nf_tables: Audit log rule reset + - smb: propagate error code of extract_sharename() + - net/sched: fq_pie: avoid stalls in fq_pie_timer() + - sctp: annotate data-races around sk->sk_wmem_queued + - ipv4: annotate data-races around fi->fib_dead + - net: read sk->sk_family once in sk_mc_loop() + - net: fib: avoid warn splat in flow dissector + - xsk: Fix xsk_diag use-after-free error during socket cleanup + - drm/i915/gvt: Verify pfn is "valid" before dereferencing "struct page" + - drm/i915/gvt: Put the page reference obtained by KVM's gfn_to_pfn() + - drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt() + - drm/amd/display: fix mode scaling (RMX_.*) + - net/handshake: fix null-ptr-deref in handshake_nl_done_doit() + - net: use sk_forward_alloc_get() in sk_get_meminfo() + - net: annotate data-races around sk->sk_forward_alloc + - mptcp: annotate data-races around msk->rmem_fwd_alloc + - net: annotate data-races around sk->sk_tsflags + - net: annotate data-races around sk->sk_bind_phc + - ipv4: ignore dst hint for multipath routes + - ipv6: ignore dst hint for multipath routes + - selftests/bpf: Fix a CI failure caused by vsock write + - igb: disable virtualization features on 82580 + - gve: fix frag_list chaining + - veth: Fixing transmit return status for dropped packets + - net: ipv6/addrconf: avoid integer underflow in ipv6_create_tempaddr + - net: phy: micrel: Correct bit assignments for phy_device flags + - bpf, sockmap: Fix skb refcnt race after locking changes + - af_unix: Fix msg_controllen test in scm_pidfd_recv() for MSG_CMSG_COMPAT. + - af_unix: Fix data-races around user->unix_inflight. + - af_unix: Fix data-race around unix_tot_inflight. + - af_unix: Fix data-races around sk->sk_shutdown. + - af_unix: Fix data race around sk->sk_err. + - kcm: Destroy mutex in kcm_exit_net() + - octeontx2-af: Fix truncation of smq in CN10K NIX AQ enqueue mbox handler + - igc: Change IGC_MIN to allow set rx/tx value between 64 and 80 + - igbvf: Change IGBVF_MIN to allow set rx/tx value between 64 and 80 + - igb: Change IGB_MIN to allow set rx/tx value between 64 and 80 + - s390/zcrypt: don't leak memory if dev_set_name() fails + - regulator: tps6594-regulator: Fix random kernel crash + - idr: fix param name in idr_alloc_cyclic() doc + - ip_tunnels: use DEV_STATS_INC() + - net/mlx5e: Clear mirred devices array if the rule is split + - net/mlx5: Give esw_offloads_load/unload_rep() "mlx5_" prefix + - net/mlx5: Rework devlink port alloc/free into init/cleanup + - net/mlx5: Push devlink port PF/VF init/cleanup calls out of + devlink_port_register/unregister() + - mlx5/core: E-Switch, Create ACL FT for eswitch manager in switchdev mode + - net: dsa: sja1105: fix bandwidth discrepancy between tc-cbs software and + offload + - net: dsa: sja1105: fix -ENOSPC when replacing the same tc-cbs too many times + - net: dsa: sja1105: complete tc-cbs offload support on SJA1110 + - net: phylink: fix sphinx complaint about invalid literal + - bpf: Invoke __bpf_prog_exit_sleepable_recur() on recursion in + kern_sys_bpf(). + - bpf: Assign bpf_tramp_run_ctx::saved_run_ctx before recursion check. + - s390/bpf: Pass through tail call counter in trampolines + - bpf: bpf_sk_storage: Fix invalid wait context lockdep report + - bpf: bpf_sk_storage: Fix the missing uncharge in sk_omem_alloc + - netfilter: nf_tables: Unbreak audit log reset + - net: phy: Provide Module 4 KSZ9477 errata (DS80000754C) + - net: hns3: fix tx timeout issue + - net: hns3: fix byte order conversion issue in hclge_dbg_fd_tcam_read() + - net: hns3: fix debugfs concurrency issue between kfree buffer and read + - net: hns3: fix invalid mutex between tc qdisc and dcb ets command issue + - net: hns3: fix the port information display when sfp is absent + - net: hns3: remove GSO partial feature bit + - net: enetc: distinguish error from valid pointers in + enetc_fixup_clear_rss_rfs() + - sh: boards: Fix CEU buffer size passed to dma_declare_coherent_memory() + - sh: push-switch: Reorder cleanup operations to avoid use-after-free bug + - linux/export: fix reference to exported functions for parisc64 + - watchdog: advantech_ec_wdt: fix Kconfig dependencies + - drm/amd/display: Temporary Disable MST DP Colorspace Property + - ARC: atomics: Add compiler barrier to atomic operations... + - clocksource/drivers/arm_arch_timer: Disable timer before programming CVAL + - dmaengine: sh: rz-dmac: Fix destination and source data size setting + - misc: fastrpc: Fix remote heap allocation request + - misc: fastrpc: Fix incorrect DMA mapping unmap request + - jbd2: fix checkpoint cleanup performance regression + - jbd2: check 'jh->b_transaction' before removing it from checkpoint + - jbd2: correct the end of the journal recovery scan range + - ext4: add correct group descriptors and reserved GDT blocks to system zone + - ext4: fix memory leaks in ext4_fname_{setup_filename,prepare_lookup} + - ext4: drop dio overwrite only flag and associated warning + - f2fs: get out of a repeat loop when getting a locked data page + - f2fs: flush inode if atomic file is aborted + - f2fs: avoid false alarm of circular locking + - lib: test_scanf: Add explicit type cast to result initialization in + test_number_prefix() + - hwspinlock: qcom: add missing regmap config for SFPB MMIO implementation + - memcontrol: ensure memcg acquired by id is properly set up + - ata: ahci: Add Elkhart Lake AHCI controller + - ata: pata_falcon: fix IO base selection for Q40 + - ata: sata_gemini: Add missing MODULE_DESCRIPTION + - ata: pata_ftide010: Add missing MODULE_DESCRIPTION + - fuse: nlookup missing decrement in fuse_direntplus_link + - btrfs: zoned: do not zone finish data relocation block group + - btrfs: fix start transaction qgroup rsv double free + - btrfs: free qgroup rsv on io failure + - btrfs: don't start transaction when joining with TRANS_JOIN_NOSTART + - btrfs: set page extent mapped after read_folio in relocate_one_page + - btrfs: zoned: re-enable metadata over-commit for zoned mode + - btrfs: use the correct superblock to compare fsid in btrfs_validate_super + - btrfs: scrub: avoid unnecessary extent tree search preparing stripes + - btrfs: scrub: avoid unnecessary csum tree search preparing stripes + - btrfs: scrub: fix grouping of read IO + - drm/mxsfb: Disable overlay plane in mxsfb_plane_overlay_atomic_disable() + - mtd: rawnand: brcmnand: Fix crash during the panic_write + - mtd: rawnand: brcmnand: Fix potential out-of-bounds access in oob write + - mtd: spi-nor: Correct flags for Winbond w25q128 + - mtd: rawnand: brcmnand: Fix potential false time out warning + - mtd: rawnand: brcmnand: Fix ECC level field setting for v7.2 controller + - Revert "drm/amd/display: Remove v_startup workaround for dcn3+" + - drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma + - drm/amd/display: limit the v_startup workaround to ASICs older than DCN3.1 + - drm/amd/display: prevent potential division by zero errors + - KVM: VMX: Refresh available regs and IDT vectoring info before NMI handling + - KVM: SVM: Take and hold ir_list_lock when updating vCPU's Physical ID entry + - KVM: SVM: Don't inject #UD if KVM attempts to skip SEV guest insn + - KVM: SVM: Get source vCPUs from source VM for SEV-ES intrahost migration + - KVM: nSVM: Check instead of asserting on nested TSC scaling support + - KVM: nSVM: Load L1's TSC multiplier based on L1 state, not L2 state + - KVM: SVM: Set target pCPU during IRTE update if target vCPU is running + - KVM: SVM: Skip VMSA init in sev_es_init_vmcb() if pointer is NULL + - MIPS: Only fiddle with CHECKFLAGS if `need-compiler' + - MIPS: Fix CONFIG_CPU_DADDI_WORKAROUNDS `modules_install' regression + - perf hists browser: Fix hierarchy mode header + - perf build: Update build rule for generated files + - perf test shell stat_bpf_counters: Fix test on Intel + - perf tools: Handle old data in PERF_RECORD_ATTR + - perf build: Include generated header files properly + - perf hists browser: Fix the number of entries for 'e' key + - drm/amd/display: always switch off ODM before committing more streams + - drm/amd/display: Remove wait while locked + - drm/amdkfd: Add missing gfx11 MQD manager callbacks + - drm/amdgpu: register a dirty framebuffer callback for fbcon + - bpf: fix bpf_probe_read_kernel prototype mismatch + - regulator: raa215300: Change the scope of the variables {clkin_name, + xin_name} + - regulator: raa215300: Fix resource leak in case of error + - parisc: sba_iommu: Fix build warning if procfs if disabled + - kunit: Fix wild-memory-access bug in kunit_free_suite_set() + - net: ipv4: fix one memleak in __inet_del_ifa() + - kselftest/runner.sh: Propagate SIGTERM to runner child + - selftests: Keep symlinks, when possible + - selftests/ftrace: Fix dependencies for some of the synthetic event tests + - net: microchip: vcap api: Fix possible memory leak for vcap_dup_rule() + - octeontx2-pf: Fix page pool cache index corruption. + - net/smc: use smc_lgr_list.lock to protect smc_lgr_list.list iterate in + smcr_port_add + - net: stmmac: fix handling of zero coalescing tx-usecs + - net: ethernet: mvpp2_main: fix possible OOB write in + mvpp2_ethtool_get_rxnfc() + - net: ethernet: mtk_eth_soc: fix possible NULL pointer dereference in + mtk_hwlro_get_fdir_all() + - hsr: Fix uninit-value access in fill_frame_info() + - net: ethernet: adi: adin1110: use eth_broadcast_addr() to assign broadcast + address + - net:ethernet:adi:adin1110: Fix forwarding offload + - net: dsa: sja1105: hide all multicast addresses from "bridge fdb show" + - net: dsa: sja1105: propagate exact error code from + sja1105_dynamic_config_poll_valid() + - net: dsa: sja1105: fix multicast forwarding working only for last added mdb + entry + - net: dsa: sja1105: serialize sja1105_port_mcast_flood() with other FDB + accesses + - net: dsa: sja1105: block FDB accesses that are concurrent with a switch + reset + - r8152: check budget for r8152_poll() + - kcm: Fix memory leak in error path of kcm_sendmsg() + - platform/mellanox: mlxbf-tmfifo: Drop the Rx packet if no more descriptors + - platform/mellanox: mlxbf-tmfifo: Drop jumbo frames + - platform/mellanox: mlxbf-pmc: Fix potential buffer overflows + - platform/mellanox: mlxbf-pmc: Fix reading of unprogrammed events + - platform/mellanox: NVSW_SN2201 should depend on ACPI + - [Config] updateconfigs for NVSW_SN2201 + - net: macb: fix sleep inside spinlock + - veth: Update XDP feature set when bringing up device + - ipv6: fix ip6_sock_set_addr_preferences() typo + - tcp: Factorise sk_family-independent comparison in + inet_bind2_bucket_match(_addr_any). + - tcp: Fix bind() regression for v4-mapped-v6 wildcard address. + - tcp: Fix bind() regression for v4-mapped-v6 non-wildcard address. + - selftest: tcp: Fix address length in bind_wildcard.c. + - ixgbe: fix timestamp configuration code + - igb: clean up in all error paths when enabling SR-IOV + - net: renesas: rswitch: Fix unmasking irq condition + - kcm: Fix error handling for SOCK_DGRAM in kcm_sendmsg(). + - vm: fix move_vma() memory accounting being off + - drm/amd/display: Fix a bug when searching for insert_above_mpcc + - Linux 6.5.4 + * CVE-2023-6176 + - net/tls: do not free tls_rec on async operation in bpf_exec_tx_verdict() + + -- Stefan Bader Wed, 17 Jan 2024 11:21:36 +0100 + +linux-oracle-6.5 (6.5.0-1014.14~22.04.1) jammy; urgency=medium + + * jammy/linux-oracle-6.5: 6.5.0-1014.14~22.04.1 -proposed tracker + (LP: #2048541) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/s2023.10.30) + + [ Ubuntu: 6.5.0-1014.14 ] + + * mantic/linux-oracle: 6.5.0-1014.14 -proposed tracker (LP: #2048542) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync update-dkms-versions helper + - [Packaging] remove helper scripts + * [arm64] Increase max CPU count to 512 (LP: #2046184) + - [Config]: oracle: Increase max CPU count to 512 + * mantic/linux: 6.5.0-15.15 -proposed tracker (LP: #2048549) + * CVE-2024-0193 + - netfilter: nf_tables: skip set commit for deleted/destroyed sets + * CVE-2023-6606 + - smb: client: fix OOB in smbCalcSize() + * CVE-2023-6817 + - netfilter: nft_set_pipapo: skip inactive elements during set walk + * CVE-2023-6932 + - ipv4: igmp: fix refcnt uaf issue when receiving igmp query packet + * CVE-2023-6931 + - perf: Fix perf_event_validate_size() + - perf: Fix perf_event_validate_size() lockdep splat + + -- Stefan Bader Mon, 15 Jan 2024 17:36:57 +0100 + linux-oracle-6.5 (6.5.0-1013.13~22.04.4) jammy; urgency=medium * jammy/linux-oracle-6.5: 6.5.0-1013.13~22.04.4 -proposed tracker diff -u linux-oracle-6.5-6.5.0/debian/control linux-oracle-6.5-6.5.0/debian/control --- linux-oracle-6.5-6.5.0/debian/control +++ linux-oracle-6.5-6.5.0/debian/control @@ -58,7 +58,7 @@ XS-Testsuite: autopkgtest #XS-Testsuite-Depends: gcc-4.7 binutils -Package: linux-oracle-6.5-headers-6.5.0-1013 +Package: linux-oracle-6.5-headers-6.5.0-1015 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -68,33 +68,33 @@ Description: Header files related to Oracle Linux kernel version 6.5.0 This package provides kernel header files for version 6.5.0, for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-oracle-6.5-headers-6.5.0-1013/debian.README.gz for details + /usr/share/doc/linux-oracle-6.5-headers-6.5.0-1015/debian.README.gz for details -Package: linux-oracle-6.5-tools-6.5.0-1013 +Package: linux-oracle-6.5-tools-6.5.0-1015 Build-Profiles: Architecture: amd64 arm64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Oracle Linux kernel version specific tools for version 6.5.0-1013 +Description: Oracle Linux kernel version specific tools for version 6.5.0-1015 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 6.5.0-1013 on + version 6.5.0-1015 on 64 bit x86. - You probably want to install linux-tools-6.5.0-1013-. + You probably want to install linux-tools-6.5.0-1015-. -Package: linux-image-unsigned-6.5.0-1013-oracle +Package: linux-image-unsigned-6.5.0-1015-oracle Build-Profiles: Architecture: amd64 arm64 Section: kernel Priority: optional Provides: linux-image, fuse-module, aufs-dkms, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64], ${linux:rprovides} -Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.5.0-1013-oracle +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-6.5.0-1015-oracle Recommends: grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-ieee1275 [ppc64el] | grub-efi-arm64 [arm64], initramfs-tools | linux-initramfs-tool Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] -Conflicts: linux-image-6.5.0-1013-oracle -Suggests: fdutils, linux-oracle-6.5-doc-6.5.0 | linux-oracle-6.5-source-6.5.0, linux-oracle-6.5-tools, linux-headers-6.5.0-1013-oracle +Conflicts: linux-image-6.5.0-1015-oracle +Suggests: fdutils, linux-oracle-6.5-doc-6.5.0 | linux-oracle-6.5-source-6.5.0, linux-oracle-6.5-tools, linux-headers-6.5.0-1015-oracle Description: Oracle Linux kernel image for version 6.5.0 on 64 bit x86 SMP This package contains the unsigned Oracle Linux kernel image for version 6.5.0 on 64 bit x86 SMP. @@ -107,7 +107,7 @@ the linux-oracle meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-6.5.0-1013-oracle +Package: linux-modules-6.5.0-1015-oracle Build-Profiles: Architecture: amd64 arm64 Section: kernel @@ -126,12 +126,12 @@ the linux-oracle meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-modules-extra-6.5.0-1013-oracle +Package: linux-modules-extra-6.5.0-1015-oracle Build-Profiles: Architecture: amd64 arm64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, wireless-regdb, linux-modules-6.5.0-1013-oracle +Depends: ${misc:Depends}, ${shlibs:Depends}, wireless-regdb, linux-modules-6.5.0-1015-oracle Description: Oracle Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP This package contains the Oracle Linux kernel extra modules for version 6.5.0 on 64 bit x86 SMP. @@ -148,21 +148,21 @@ the linux-oracle meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-6.5.0-1013-oracle +Package: linux-headers-6.5.0-1015-oracle Build-Profiles: Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-oracle-6.5-headers-6.5.0-1013, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-oracle-6.5-headers-6.5.0-1015, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Oracle Linux kernel headers for version 6.5.0 on 64 bit x86 SMP This package provides kernel header files for version 6.5.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-6.5.0-1013/debian.README.gz for details. + /usr/share/doc/linux-headers-6.5.0-1015/debian.README.gz for details. -Package: linux-image-unsigned-6.5.0-1013-oracle-dbgsym +Package: linux-image-unsigned-6.5.0-1015-oracle-dbgsym Build-Profiles: Architecture: amd64 arm64 Section: devel @@ -179,30 +179,30 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-6.5.0-1013-oracle +Package: linux-tools-6.5.0-1015-oracle Build-Profiles: Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-oracle-6.5-tools-6.5.0-1013 -Description: Oracle Linux kernel version specific tools for version 6.5.0-1013 +Depends: ${misc:Depends}, linux-oracle-6.5-tools-6.5.0-1015 +Description: Oracle Linux kernel version specific tools for version 6.5.0-1015 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 6.5.0-1013 on + version 6.5.0-1015 on 64 bit x86. -Package: linux-cloud-tools-6.5.0-1013-oracle +Package: linux-cloud-tools-6.5.0-1015-oracle Build-Profiles: Architecture: amd64 arm64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-oracle-6.5-cloud-tools-6.5.0-1013 -Description: Oracle Linux kernel version specific cloud tools for version 6.5.0-1013 +Depends: ${misc:Depends}, linux-oracle-6.5-cloud-tools-6.5.0-1015 +Description: Oracle Linux kernel version specific cloud tools for version 6.5.0-1015 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 6.5.0-1013 on + version locked tools for cloud for version 6.5.0-1015 on 64 bit x86. -Package: linux-buildinfo-6.5.0-1013-oracle +Package: linux-buildinfo-6.5.0-1015-oracle Build-Profiles: Architecture: amd64 arm64 Section: kernel @@ -218,19 +217,0 @@ - -Package: linux-modules-iwlwifi-6.5.0-1013-oracle -Build-Profiles: -Architecture: amd64 arm64 -Section: kernel -Priority: optional -Depends: - ${misc:Depends}, - linux-image-6.5.0-1013-oracle | linux-image-unsigned-6.5.0-1013-oracle, -Built-Using: ${linux:BuiltUsing} -Description: Linux kernel iwlwifi modules for version 6.5.0-1013 - This package provides the Linux kernel iwlwifi modules for version - 6.5.0-1013. - . - You likely do not want to install this package directly. Instead, install the - one of the linux-modules-iwlwifi-oracle* meta-packages, - which will ensure that upgrades work correctly, and that supporting packages are - also installed. - diff -u linux-oracle-6.5-6.5.0/debian/dkms-versions linux-oracle-6.5-6.5.0/debian/dkms-versions --- linux-oracle-6.5-6.5.0/debian/dkms-versions +++ linux-oracle-6.5-6.5.0/debian/dkms-versions @@ -1,3 +1,2 @@ zfs-linux 2.2.0-0ubuntu1~23.10 modulename=zfs debpath=pool/universe/z/%package%/zfs-dkms_%version%_all.deb arch=amd64 arch=arm64 arch=ppc64el arch=s390x rprovides=spl-modules rprovides=spl-dkms rprovides=zfs-modules rprovides=zfs-dkms -backport-iwlwifi-dkms 11289-0ubuntu1 modulename=iwlwifi debpath=pool/universe/b/%package%/backport-iwlwifi-dkms_%version%_all.deb arch=amd64 rprovides=iwlwifi-modules rprovides=backport-iwlwifi-dkms type=standalone v4l2loopback 0.12.7-2ubuntu4 modulename=v4l2loopback debpath=pool/universe/v/%package%/v4l2loopback-dkms_%version%_all.deb arch=amd64 rprovides=v4l2loopback-modules rprovides=v4l2loopback-dkms diff -u linux-oracle-6.5-6.5.0/debian/rules.d/0-common-vars.mk linux-oracle-6.5-6.5.0/debian/rules.d/0-common-vars.mk --- linux-oracle-6.5-6.5.0/debian/rules.d/0-common-vars.mk +++ linux-oracle-6.5-6.5.0/debian/rules.d/0-common-vars.mk @@ -199,6 +199,12 @@ # FIPS check do_fips_checks=false +# ZSTD compressed kernel modules +do_zstd_ko=true +ifeq ($(series),jammy) +do_zstd_ko= +endif + # Support parallel= in DEB_BUILD_OPTIONS (see #209008) # # These 2 environment variables set the -j value of the kernel build. For example, diff -u linux-oracle-6.5-6.5.0/debian/rules.d/2-binary-arch.mk linux-oracle-6.5-6.5.0/debian/rules.d/2-binary-arch.mk --- linux-oracle-6.5-6.5.0/debian/rules.d/2-binary-arch.mk +++ linux-oracle-6.5-6.5.0/debian/rules.d/2-binary-arch.mk @@ -567,6 +567,8 @@ dh_installchangelogs -p$(1) dh_installdocs -p$(1) dh_compress -p$(1) + # Compress kernel modules, on mantic+ + $(if $(do_zstd_ko),find debian/$(1) -name '*.ko' -print0 | xargs -0 -n1 -P $(CONCURRENCY_LEVEL) -r zstd -19 --quiet --rm, true) dh_fixperms -p$(1) -X/boot/ dh_shlibdeps -p$(1) $(shlibdeps_opts) dh_installdeb -p$(1) @@ -619,7 +621,7 @@ dh_testroot $(call dh_all,$(pkgimg)) -- -Znone - $(call dh_all,$(pkgimg_mods)) + $(call dh_all,$(pkgimg_mods))$(if $(do_zstd_ko), -- -Znone) ifeq ($(do_extras_package),true) ifeq ($(ship_extras_package),false) @@ -631,13 +633,13 @@ | tee -a $(target_flavour).not-shipped.log; else if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \ - $(call dh_all_inline,$(pkgimg_ex)); \ + $(call dh_all_inline,$(pkgimg_ex))$(if $(do_zstd_ko), -- -Znone); \ fi endif endif $(foreach _m,$(all_standalone_dkms_modules), \ - $(if $(enable_$(_m)),$(call dh_all,$(dkms_$(_m)_pkg_name)-$*);)\ + $(if $(enable_$(_m)),$(call dh_all,$(dkms_$(_m)_pkg_name)-$*)$(if $(do_zstd_ko), -- -Znone);)\ ) $(call dh_all,$(pkgbldinfo)) @@ -707,13 +709,11 @@ cd $(builddirpa)/tools/power/acpi && make clean && make CFLAGS="-g -O2 -static -I$(builddirpa)/include" CROSS_COMPILE=$(CROSS_COMPILE) acpidbg endif ifeq ($(do_tools_cpupower),true) - # Allow for multiple installed versions of cpupower and libcpupower.so: - # Override LIB_MIN in order to to generate a versioned .so named - # libcpupower.so.$(abi_release) and link cpupower with that. make -C $(builddirpa)/tools/power/cpupower \ CROSS_COMPILE=$(CROSS_COMPILE) \ CROSS=$(CROSS_COMPILE) \ - LIB_MIN=$(abi_release) CPUFREQ_BENCH=false + STATIC=true \ + CPUFREQ_BENCH=false endif ifeq ($(do_tools_perf),true) cd $(builddirpa) && $(kmake) $(defconfig) @@ -763,10 +763,6 @@ ifeq ($(do_tools_cpupower),true) install -m755 $(builddirpa)/tools/power/cpupower/cpupower \ $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) - # Install only the full versioned libcpupower.so.$(abi_release), not - # the usual symlinks to it. - install -m644 $(builddirpa)/tools/power/cpupower/libcpupower.so.$(abi_release) \ - $(toolspkgdir)/usr/lib/ endif ifeq ($(do_tools_perf),true) install -m755 $(builddirpa)/tools/perf/perf $(toolspkgdir)/usr/lib/$(src_pkg_name)-tools-$(abi_release) reverted: --- linux-oracle-6.5-6.5.0/debian/scripts/helpers/close +++ linux-oracle-6.5-6.5.0.orig/debian/scripts/helpers/close @@ -1,195 +0,0 @@ -#!/bin/bash -eu -export LC_ALL=C.UTF-8 - -usage() { - cat << EOF -Usage: ${P:-$(basename "$0")} [-h|--help] [-d|--dry-run] [-c|--include-config] [-s|--skip-master] [-b BASE_VERSION] - -Prepare the closing release commit. Include all the changelog entries -in the current release, including the changes from the base -kernel. Also close the changelog entry and check for config changes. - -Optional arguments: - -d, --dry-run Perform a trial run with no changes made - printing the commands instead. - -c, --include-config Include config changes in the closing commit. - -s, --skip-master Skip master kernel changelog entries (used when - bootstraping new kernels). - -b BASE_VERSION For derivatives and backports, force the changelog - entries to have the base version as provided (used - when changing the base derivative version of a - backport). - -h, --help Show this help message and exit. - -Examples: - Simply close a release: - \$ cranky close - - Also include any config changes to the closing commit: - \$ cranky close -c - -EOF -} - -dry_run=0 -commit_configs=0 -skip_master_entries=0 -base_version= -while [ "$#" -gt 0 ]; do - case "$1" in - -h|--help) - usage - exit 0 - ;; - -d|--dry-run) - dry_run=1 - ;; - -c|--include-config) - commit_configs=1 - ;; - -s|--skip-master) - skip_master_entries=1 - ;; - -b) - shift - base_version="$1" - ;; - *) - usage - exit 1 - ;; - esac - shift -done - -hl() { echo -e "\e[1m$*\e[0m"; } - -run() { - # Quote args for echo or eval - local quoted=() - for token; do - quoted+=( "$(printf '%q' "$token")" ) - done - # Run - if [ "$dry_run" -eq 1 ]; then - hl "DRY RUN: ${quoted[*]}" - else - hl "${quoted[*]}" - "$@" - echo - fi -} - -# Trick shellcheck so it doesn't complain every time it's necessary to -# use `run $CHROOT`. Use `chroot_run` instead. -shopt -s expand_aliases -alias chroot_run='run ${CHROOT:-}' - -DEBIAN= -# shellcheck disable=SC1091 -. debian/debian.env - -# Check if the "$DEBIAN" directory exists. -if [ ! -d "$DEBIAN" ]; then - echo "You must run this script from the top directory of this repository." - exit 1 -fi - -CONF="$DEBIAN/etc/update.conf" -if [ -f "$CONF" ]; then - # shellcheck disable=SC1090 - . "$CONF" -fi - -# Check if changelog is open -series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution) -if [ "$series" != 'UNRELEASED' ]; then - echo "The last entry of the changelog is already released." - exit 1 -fi - -# Update configs -if [ -d "$DEBIAN/config" ]; then - chroot_run fakeroot debian/rules clean updateconfigs - changes=$(git diff HEAD -- "./$DEBIAN/config/") - if [ "$commit_configs" -eq 0 ] && [ -n "$changes" ]; then - echo "Config has changed! please, review it and commit." - exit 1 - fi -fi - -# For normal trees the fact that the update.conf file exists means that they are rebase -# kernels. There are some special trees which started with uc20-efi, which have that -# file because they logically depend on another source but do not have the directory -# which DEBIAN_MASTER points to. -# Skip inserting parent source entries if this is not a rebase tree. -if [ ! -f "$DEBIAN/etc/update.conf" ]; then - skip_master_entries=1 -elif [ "$DEBIAN_MASTER" != "" -a ! -d "$DEBIAN_MASTER" ]; then - skip_master_entries=1 -fi -if [ $skip_master_entries == 0 ]; then - if [ "$DEBIAN_MASTER" = "" ]; then - echo "DEBIAN_MASTER should be defined either in $DEBIAN/etc/update.conf or the environment" - exit 1 - fi - - if [ -z "${base_version}" ]; then - offset=0 - # If not provided as an option, loop through each entry of the current changelog, - # searching for an entry that refers to the master version used as base - # (ie a line containing "[ Ubuntu: 4.15.0-39.42 ]"): - while true; do - changes=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SChanges -c1 -o"$offset") - if ! [ "$changes" ]; then - echo "Failed to retrieve base master version from changelog file: $DEBIAN/changelog" - exit 1 - fi - base_version=$(echo "$changes" | sed -n -r -e '/^\s.*\[ Ubuntu: ([~0-9.-]*) \]$/{s//\1/p;q}') - [ "$base_version" ] && break - offset=$(( offset + 1 )) - done - fi - - master_version=$(dpkg-parsechangelog -l${DEBIAN_MASTER}/changelog -SVersion) - if ! [ "$master_version" ]; then - echo "Failed to retrieve current master version from changelog: $DEBIAN/changelog" - exit 1 - fi - run ./debian/scripts/misc/insert-ubuntu-changes "$DEBIAN/changelog" "$base_version" "$master_version" \ - "$DEBIAN_MASTER/changelog" -fi - -# Insert local changes -run fakeroot debian/rules insertchanges - -# This should be the last step. If there were no changes to the -# changelog, there is nothing to release, so nothing to commit. -changes=$(git diff HEAD) -if [ -z "$changes" ] && [ "$dry_run" -eq 0 ]; then - hl "No changes to commit." - exit 1 -fi - -# Find the current series from previous changelog entries: -series='' -offset=0 -while true; do - series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution -c1 -o"$offset") - if [ "$series" ] && [ "$series" != 'UNRELEASED' ]; then - break - fi - offset=$(( offset + 1 )) -done -if ! [ "$series" ]; then - echo "Failed to retrieve the package series from changelog: $DEBIAN/changelog" - exit 1 -fi -# Close the changelog -run dch --nomultimaint -c "$DEBIAN/changelog" -r -D "$series" '' - -# Commit changes -package=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SSource) -prefix="Ubuntu$(echo "$package" | sed -r -e 's/linux(-?)/\1/')-" -version=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SVersion) -run git commit -sam "UBUNTU: $prefix$version" reverted: --- linux-oracle-6.5-6.5.0/debian/scripts/helpers/open +++ linux-oracle-6.5-6.5.0.orig/debian/scripts/helpers/open @@ -1,234 +0,0 @@ -#!/bin/bash -eu -export LC_ALL=C.UTF-8 - -out() -{ - local rc=${?} - - trap - EXIT INT TERM HUP - [ "${rc}" -eq 0 ] || echo "Error: Script failed" >&2 - - exit "${rc}" -} - -hl() { - echo -e "\e[1m$*\e[0m" -} - -run() { - # Quote args for echo or eval - local quoted=() - for token; do - quoted+=("$(printf '%q' "$token")") - done - # Run - if [ "$dry_run" -eq 1 ]; then - hl "DRY RUN: ${quoted[*]}" - else - hl "${quoted[*]}" - "$@" - echo - fi -} - -usage() { - cat << EOF -Usage: ${P:-$(basename "$0")} [-h|--help] [-d|--dry-run] [-r|--reuse-abi] - -Create a "start new release" commit. The new commit will contain ABI -changes and any customization required by backport kernels. - -Optional arguments: - -d, --dry-run Perform a trial run with no changes made - printing the commands instead. - -r, --reuse-abi Do not download the previous release ABI files - for the new release and just rename the - current ABI directory. This might cause the - build to fail if the module list or the - retpoline information has changed. - -h, --help Show this help message and exit. - -Environment variable: - CRANKY_MAILENFORCE Regular expression used to validate \$DEBEMAIL. If not - set, it defaults to "@canonical.com$". - -Examples: - Simply start a new release (that will fetch the ABI files from the - archieve repositories): - \$ cranky open - - Start a new release re-using the ABI files already present in the - tree: - \$ cranky open --reuse-abi - -EOF -} - -dry_run=0 -reuse_abi=0 -while [ "$#" -gt 0 ]; do - case "$1" in - -h|--help) - usage - exit 0 - ;; - -d|--dry-run) - dry_run=1 - ;; - -r|--reuse-abi) - reuse_abi=1 - ;; - *) - usage - exit 1 - ;; - esac - shift -done - -trap out EXIT INT TERM HUP - -# Trick shellcheck so it doesn't complain every time it's necessary to -# use `run $CHROOT`. Use `chroot_run` instead. -shopt -s expand_aliases -alias chroot_run='run ${CHROOT:-}' - -# Check DEBEMAIL (used to create the new changelog stanza): -DEBEMAIL="${DEBEMAIL:-}" -CRANKY_MAILENFORCE="${CRANKY_MAILENFORCE:-@canonical.com\$}" -if [ -z "$DEBEMAIL" ] || ! echo "$DEBEMAIL" | grep -qE "$CRANKY_MAILENFORCE"; then - echo "DEBEMAIL is unset, or does not contain \"$CRANKY_MAILENFORCE\": $DEBEMAIL" >&2 - exit 1 -fi - -# Requires a git repo -if [ ! -e .git ]; then - echo "Not a git repository!" >&2 - exit 1 -fi - -# Check the debian directory -if [ ! -e debian/debian.env ]; then - echo "Cannot find debian/debian.env!" >&2 - exit 1 -fi -DEBIAN= -# shellcheck disable=SC1091 -. debian/debian.env -if [ -z "$DEBIAN" ] || [ ! -d "$DEBIAN" ]; then - echo "Invalid DEBIAN directory: $DEBIAN" >&2 - exit 1 -fi - -# Abort if changes or untracked files are found in the debian -# directory (ie, in "debian.master/"). cranky open is expected to -# change and commit files in this directory. -if ! git diff-index --quiet HEAD -- "$DEBIAN/" || \ - [ -n "$(git ls-files --others -- "$DEBIAN/")" ]; then - echo "\"$DEBIAN/\" is not clean!" >&2 - exit 1 -fi - -# Check changelog -series=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SDistribution) -if [ "$series" == 'UNRELEASED' ]; then - echo "$DEBIAN/changelog is not closed!" >&2 - exit 1 -fi - -# Load the info about derivative -BACKPORT_SUFFIX= -BACKPORT_NO_SUFFIX= -derivative_conf="$DEBIAN/etc/update.conf" -if [ -f "$derivative_conf" ]; then - # shellcheck disable=SC1090 - . "$derivative_conf" -fi - -# Run the update script used for backport kernels -if [ -n "$BACKPORT_SUFFIX" ] || [ -n "$BACKPORT_NO_SUFFIX" ]; then - update_from_master_script="$DEBIAN/scripts/helpers/copy-files" - if [ ! -x "$update_from_master_script" ]; then - echo "Backport kernel is missing the"\ - "\"$update_from_master_script\" script!"; - exit 1 - fi - # The tree should be clean at this point, since that is enforced at - # the beginning of the script. Because of that, it's safe to git add - # "$DEBIAN/". - run env CHROOT="$CHROOT" "$update_from_master_script" - run git add "$DEBIAN" - # Update configs after the necessary files were copied from - # the base kernel. It's not expected that `fdr updateconfigs` - # will fail at this point, because the base kernel's - # configuration and annotations file are expected to be in a - # correct state. `fdr updateconfigs` should only change a few - # configuration options that depend on the userspace tooling - # version, such as gcc. - if ! chroot_run fakeroot debian/rules clean updateconfigs; then - echo "Failed to update configs. Please review the previous" \ - "rebase operation and \"$update_from_master_script\""; - exit 1 - fi - run git add "$DEBIAN/config" -fi - -# fdr clean should be called after copy-files, that way we can git add -# any changes in "debian./" (`fdr clean` in trusty will -# usually generate changes in "debian./). Also, fdr clean -# removes an ABI that matches the current version in the -# changelog. Since `fdr startnewrelease` requires `fdr clean`, we need -# to call it before getabis. -chroot_run fakeroot debian/rules clean - -# Update ABI -if [ -d "$DEBIAN/abi" ]; then - # The new ABI directory should use the current version in the - # changelog since `fdr startnewrelease` was't called at this - # point yet: - new=$(dpkg-parsechangelog -l"$DEBIAN/changelog" -SVersion) - - if [ "$reuse_abi" -ne 0 ]; then - if [ -f "$DEBIAN/abi/version" ]; then - # This is an unversioned ABI directory, so simply update the - # version file - echo "$new" | run tee "$DEBIAN/abi/version" >/dev/null - run git add "$DEBIAN/abi/version" - else - # Get the old ABI directory: - old=$(find "$DEBIAN/abi/" -mindepth 1 -maxdepth 1 -type d | \ - grep -P '/abi/[0-9]+\.[0-9]+\.[0-9]+-[0-9]+\.[0-9]+') - if [ -z "${old}" ] ; then - echo "Failed to find the previous ABI directory." \ - "Please check \"$DEBIAN/abi/\"!" >&2 - exit 1 - elif [ "$(echo "$old" | wc -l)" -gt 1 ]; then - echo "Failed to rename the current ABI directory." \ - "Multiple directories found. Please check \"$DEBIAN/abi/\"!" >&2 - exit 1 - fi - new="$DEBIAN/abi/$new" - # Rename the ABI directory - run git mv "$old" "$new" - fi - else - # Call in-tree getabis: - # Use the single argument form since getabis is now - # updated by cranky fix. - run debian/scripts/misc/getabis "${new}" - # getabis already handles the necessary git add/rm calls. - fi -fi - -# Create the new changelog entry: -run fakeroot debian/rules startnewrelease -run git add "$DEBIAN/changelog" - -# Create the commit -run git commit -s -F debian/commit-templates/newrelease - -# Mimic maint-startnewrelease -[ "$dry_run" -eq 0 ] && \ - hl "\n***** Now please inspect the commit before pushing *****" - -exit 0 reverted: --- linux-oracle-6.5-6.5.0/debian/scripts/helpers/rebase +++ linux-oracle-6.5-6.5.0.orig/debian/scripts/helpers/rebase @@ -1,159 +0,0 @@ -#!/bin/bash -e -# -# This script is intended as a helper when rebasing from its master branch. -# - -LOCAL_BRANCH= -RELEASE_REPO= -SOURCE_RELEASE_BRANCH= -OWN= - -function out() -{ - local rc="${?}" - trap - EXIT INT TERM HUP - [ "${rc}" -eq 0 ] || echo "Error: Script failed" - exit "${rc}" -} - -trap out EXIT INT TERM HUP - -if [ -f debian/debian.env ]; then - # shellcheck disable=SC1091 - . debian/debian.env -fi - -if [ ! -d "${DEBIAN}" ]; then - echo You must run this script from the top directory of this repository. - exit 1 -fi - -CONF="${DEBIAN}"/etc/update.conf -if [ -f "${CONF}" ]; then - # shellcheck disable=SC1090 - . "${CONF}" -fi - -usage="$0 [-r RELEASE_REPO] [ -b REMOTE_BRANCH ] [-l LOCAL_BRANCH] [-d]"$'\n\n' -usage+="-r RELEASE_REPO Git repository to fetch the reference branch from."$'\n' -usage+="-b REMOTE_BRANCH Remote branch to fetch from."$'\n' -usage+="-l LOCAL_BRANCH Use LOCAL_BRANCH as the reference branch."$'\n' -usage+="-o Rebase against own kernel."$'\n' -usage+="-d,--dry-run Dry run (do not rebase)." - -# Convert long options to short options -for arg in "$@" -do - shift - case "$arg" in - '--dry-run') set -- "$@" '-d' ;; - '--'*) echo "usage: ${usage}"; exit ;; - *) set -- "$@" "$arg" ;; - esac -done - -# -# command line options: -# [-r RELEASE_REPO] - override default git repository. -# [-b REMOTE_BRANCH] - override default remote branch. -# [-l LOCAL_BRANCH] - do not fetch from remote repo, use a local branch. - -while getopts "r:b:l:od" opt; do - case $opt in - r ) RELEASE_REPO="$OPTARG" ;; - b ) SOURCE_RELEASE_BRANCH="$OPTARG" ;; - l ) LOCAL_BRANCH="$OPTARG" ;; - d ) DRY_RUN=1 ;; - o ) OWN=1 ;; - \? ) echo "usage: ${usage}"; exit ;; - esac -done -shift $((OPTIND - 1)) - -# For normal trees the fact that the update.conf file exists means that they are rebase -# kernels. There are some special trees which started with uc20-efi, which have that -# file because they logically depend on another source but do not have the directory -# which DEBIAN_MASTER points to. -IS_REBASE_KERNEL=true -if [ ! -f "$DEBIAN/etc/update.conf" ]; then - IS_REBASE_KERNEL=false -elif [ "$DEBIAN_MASTER" != "" -a ! -d "$DEBIAN_MASTER" ]; then - IS_REBASE_KERNEL=false -fi -if ! $IS_REBASE_KERNEL && [ -z "$OWN" ]; then - echo "This is not a rebase kernel, no rebase should be needed, please report if otherwise" - exit 0 -fi - -if [ "${OWN}" ] ; then - DEBIAN_MASTER="${DEBIAN}" -fi - -if [ "$DEBIAN_MASTER" = "" ]; then - echo "DEBIAN_MASTER should be defined either in ${DEBIAN}/etc/update.conf or the environment" - exit 1 -fi - -if [ -z "${LOCAL_BRANCH}" ]; then - if [ -z "${RELEASE_REPO}" ] || [ -z "${SOURCE_RELEASE_BRANCH}" ]; then - echo Missing update.conf or missing parameters for remote repo and branch. - exit 1 - fi - # - # Fetch the upstream branch. - # - git fetch "${RELEASE_REPO}" - git fetch "${RELEASE_REPO}" "${SOURCE_RELEASE_BRANCH}" - LOCAL_BRANCH=FETCH_HEAD -fi - -# -# Find the most recent tag on given upstream branch, then -# rebase against it. This avoids the case where there have been some -# commits since the last official tag. -# -MASTER_COMMIT=$(git log --pretty=one "${LOCAL_BRANCH}" "${DEBIAN_MASTER}" | \ - awk ' - /Ubuntu-/ { - if (match($0, /UBUNTU: Ubuntu-/)) { - print $1 - exit - } - } - ' -) -# -# Find the current merge point where current branch was based. -# -BASE_COMMIT=$(git log --pretty=one "${DEBIAN_MASTER}" | \ - awk ' - /Ubuntu-/ { - if (match($0, /UBUNTU: Ubuntu-/)) { - print $1 - exit - } - } - ' -) -if [ "${MASTER_COMMIT}" = "${BASE_COMMIT}" ]; then - echo Already up to date. - exit 0 -fi - -if [ -z "${MASTER_COMMIT}" ] || [ -z "${BASE_COMMIT}" ]; then - echo "Could not find either master or base commit." - echo "master commit: ${MASTER_COMMIT}" - echo "base commit: ${BASE_COMMIT}" - exit 1 -fi - -MASTER_VERSION=$(git show --format=%s -s "$MASTER_COMMIT" | sed 's/^UBUNTU: //') -BASE_VERSION=$(git show --format=%s -s "$BASE_COMMIT" | sed 's/^UBUNTU: //') -echo "Rebase still needed between $BASE_VERSION and $MASTER_VERSION." - -if [ "${DRY_RUN}" ]; then - echo "DRY RUN: git rebase --onto ${MASTER_COMMIT} ${BASE_COMMIT}" - exit 0 -fi - -git rebase --onto "${MASTER_COMMIT}" "${BASE_COMMIT}" diff -u linux-oracle-6.5-6.5.0/debian/scripts/misc/annotations linux-oracle-6.5-6.5.0/debian/scripts/misc/annotations --- linux-oracle-6.5-6.5.0/debian/scripts/misc/annotations +++ linux-oracle-6.5-6.5.0/debian/scripts/misc/annotations @@ -3,272 +3,32 @@ -# Manage Ubuntu kernel .config and annotations -# Copyright © 2022 Canonical Ltd. -import sys -sys.dont_write_bytecode = True -import os -import argparse -import json -from signal import signal, SIGPIPE, SIG_DFL - -from kconfig.annotations import Annotation, KConfig - -VERSION = '0.1' - -SKIP_CONFIGS = ( - # CONFIG_VERSION_SIGNATURE is dynamically set during the build - 'CONFIG_VERSION_SIGNATURE', - # Allow to use a different versions of toolchain tools - 'CONFIG_GCC_VERSION', - 'CONFIG_CC_VERSION_TEXT', - 'CONFIG_AS_VERSION', - 'CONFIG_LD_VERSION', - 'CONFIG_LLD_VERSION', - 'CONFIG_CLANG_VERSION', - 'CONFIG_PAHOLE_VERSION', - 'CONFIG_RUSTC_VERSION_TEXT', - 'CONFIG_BINDGEN_VERSION_TEXT', -) - - -def make_parser(): - parser = argparse.ArgumentParser( - description='Manage Ubuntu kernel .config and annotations', - ) - parser.add_argument('--version', '-v', action='version', version=f'%(prog)s {VERSION}') - - parser.add_argument('--file', '-f', action='store', - help='Pass annotations or .config file to be parsed') - parser.add_argument('--arch', '-a', action='store', - help='Select architecture') - parser.add_argument('--flavour', '-l', action='store', - help='Select flavour (default is "generic")') - parser.add_argument('--config', '-c', action='store', - help='Select a specific config option') - parser.add_argument('--query', '-q', action='store_true', - help='Query annotations') - parser.add_argument('--note', '-n', action='store', - help='Write a specific note to a config option in annotations') - parser.add_argument('--autocomplete', action='store_true', - help='Enable config bash autocomplete: `source <(annotations --autocomplete)`') - parser.add_argument('--source', '-t', action='store_true', - help='Jump to a config definition in the kernel source code') - - ga = parser.add_argument_group(title='Action').add_mutually_exclusive_group(required=False) - ga.add_argument('--write', '-w', action='store', - metavar='VALUE', dest='value', - help='Set a specific config value in annotations (use \'null\' to remove)') - ga.add_argument('--export', '-e', action='store_true', - help='Convert annotations to .config format') - ga.add_argument('--import', '-i', action='store', - metavar="FILE", dest='import_file', - help='Import a full .config for a specific arch and flavour into annotations') - ga.add_argument('--update', '-u', action='store', - metavar="FILE", dest='update_file', - help='Import a partial .config into annotations (only resync configs specified in FILE)') - ga.add_argument('--check', '-k', action='store', - metavar="FILE", dest='check_file', - help='Validate kernel .config with annotations') - return parser - - -_ARGPARSER = make_parser() - - -def arg_fail(message): - print(message) - _ARGPARSER.print_usage() - sys.exit(1) - - -def print_result(config, res): - if res is not None and config not in res: - res = {config or '*': res} - print(json.dumps(res, indent=4)) - - -def do_query(args): - if args.arch is None and args.flavour is not None: - arg_fail('error: --flavour requires --arch') - a = Annotation(args.file) - res = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour) - print_result(args.config, res) - - -def do_autocomplete(args): - a = Annotation(args.file) - res = (c.removeprefix('CONFIG_') for c in a.search_config()) - res_str = ' '.join(res) - print(f'complete -W "{res_str}" annotations') - - -def do_source(args): - if args.config is None: - arg_fail('error: --source requires --config') - if not os.path.exists('tags'): - print('tags not found in the current directory, try: `make tags`') - sys.exit(1) - os.system(f'vim -t {args.config}') - - -def do_note(args): - if args.config is None: - arg_fail('error: --note requires --config') - - # Set the note in annotations - a = Annotation(args.file) - a.set(args.config, note=args.note) - - # Save back to annotations - a.save(args.file) - - # Query and print back the value - a = Annotation(args.file) - res = a.search_config(config=args.config) - print_result(args.config, res) - - -def do_write(args): - if args.config is None: - arg_fail('error: --write requires --config') - - # Set the value in annotations ('null' means remove) - a = Annotation(args.file) - if args.value == 'null': - a.remove(args.config, arch=args.arch, flavour=args.flavour) - else: - a.set(args.config, arch=args.arch, flavour=args.flavour, value=args.value, note=args.note) - - # Save back to annotations - a.save(args.file) - - # Query and print back the value - a = Annotation(args.file) - res = a.search_config(config=args.config) - print_result(args.config, res) - - -def do_export(args): - if args.arch is None: - arg_fail('error: --export requires --arch') - a = Annotation(args.file) - conf = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour) - if conf: - print(a.to_config(conf)) - - -def do_import(args): - if args.arch is None: - arg_fail('error: --arch is required with --import') - if args.flavour is None: - arg_fail('error: --flavour is required with --import') - if args.config is not None: - arg_fail('error: --config cannot be used with --import (try --update)') - - # Merge with the current annotations - a = Annotation(args.file) - c = KConfig(args.import_file) - a.update(c, arch=args.arch, flavour=args.flavour) - - # Save back to annotations - a.save(args.file) - - -def do_update(args): - if args.arch is None: - arg_fail('error: --arch is required with --update') - - # Merge with the current annotations - a = Annotation(args.file) - c = KConfig(args.update_file) - if args.config is None: - configs = list(set(c.config.keys()) - set(SKIP_CONFIGS)) - if configs: - a.update(c, arch=args.arch, flavour=args.flavour, configs=configs) - - # Save back to annotations - a.save(args.file) - - -def do_check(args): - # Determine arch and flavour - if args.arch is None: - arg_fail('error: --arch is required with --check') - - print(f"check-config: loading annotations from {args.file}") - total = good = ret = 0 - - # Load annotations settings - a = Annotation(args.file) - a_configs = a.search_config(arch=args.arch, flavour=args.flavour).keys() - - # Parse target .config - c = KConfig(args.check_file) - c_configs = c.config.keys() - - # Validate .config against annotations - for conf in sorted(a_configs | c_configs): - if conf in SKIP_CONFIGS: - continue - entry = a.search_config(config=conf, arch=args.arch, flavour=args.flavour) - expected = entry[conf] if entry else '-' - value = c.config[conf] if conf in c.config else '-' - if value != expected: - policy = a.config[conf] if conf in a.config else 'undefined' - if 'policy' in policy: - policy = f"policy<{policy['policy']}>" - print(f"check-config: FAIL: ({value} != {expected}): {conf} {policy})") - ret = 1 - else: - good += 1 - total += 1 - - print(f"check-config: {good}/{total} checks passed -- exit {ret}") - sys.exit(ret) - - -def autodetect_annotations(args): - if args.file: - return - # If --file/-f isn't specified try to automatically determine the right - # location of the annotations file looking at debian/debian.env. - try: - with open('debian/debian.env', 'rt', encoding='utf-8') as fd: - args.file = fd.read().rstrip().split('=')[1] + '/config/annotations' - except (FileNotFoundError, IndexError): - arg_fail('error: could not determine DEBDIR, try using: --file/-f') +# This file is not installed; it's just to run annotations from inside a source +# distribution without installing it in the system. +import sys -def main(): - # Prevent broken pipe errors when showing output in pipe to other tools - # (less for example) - signal(SIGPIPE, SIG_DFL) +# Prevent generating .pyc files on import +# +# We may end up adding these files to our git repos by mistake, so simply +# prevent generating them in advance. +# +# There's a tiny performance penalty with this, because python needs to +# re-generate the bytecode on-the-fly every time the script is executed, but +# this overhead is absolutely negligible compared the rest of the kernel build +# time. +sys.dont_write_bytecode = True - # Main annotations program - args = _ARGPARSER.parse_args() - autodetect_annotations(args) +import os # noqa: E402 Import not at top of file +from kconfig import run # noqa: E402 Import not at top of file - if args.config and not args.config.startswith('CONFIG_'): - args.config = 'CONFIG_' + args.config - if args.value: - do_write(args) - elif args.note: - do_note(args) - elif args.export: - do_export(args) - elif args.import_file: - do_import(args) - elif args.update_file: - do_update(args) - elif args.check_file: - do_check(args) - elif args.autocomplete: - do_autocomplete(args) - elif args.source: - do_source(args) - else: - do_query(args) +# Update PATH to make sure that annotations can be executed directly from the +# source directory. +def update_path(): + script_dir = os.path.dirname(os.path.abspath(__file__)) + current_path = os.environ.get("PATH", "") + new_path = f"{script_dir}:{current_path}" + os.environ["PATH"] = new_path -if __name__ == '__main__': - main() +update_path() +exit(run.main()) diff -u linux-oracle-6.5-6.5.0/debian/scripts/misc/gen-auto-reconstruct linux-oracle-6.5-6.5.0/debian/scripts/misc/gen-auto-reconstruct --- linux-oracle-6.5-6.5.0/debian/scripts/misc/gen-auto-reconstruct +++ linux-oracle-6.5-6.5.0/debian/scripts/misc/gen-auto-reconstruct @@ -34,14 +34,6 @@ echo "[ ! -L '$name' ] && ln -sf '$link' '$name'" done - # Identify all removed files since the proffered tag. - echo "# Remove any files deleted from the orig." - git diff "$tag.." --raw --no-renames | awk '(/^:/ && $5 == "D") { print $NF }' | \ - while read name - do - echo "rm -f '$name'" - done - # Identify files with execute permissions added since the proffered tag. git diff "$tag.." --raw --no-renames | awk -F '[: \t]' '{print $2, $3, $NF }' | \ while IFS=" " read old new name @@ -53,12 +45,20 @@ added=$(( new & 0111 )) if [ "$added" -ne 0 ]; then echo "chmod +x '$name'" - else + elif [ "$new" -ne 0 ]; then echo "chmod -x '$name'" fi fi done + # Identify all removed files since the proffered tag. + echo "# Remove any files deleted from the orig." + git diff "$tag.." --raw --no-renames | awk '(/^:/ && $5 == "D") { print $NF }' | \ + while read name + do + echo "rm -f '$name'" + done + # All done, make sure this does not complete in error. echo "exit 0" ) >"$reconstruct" diff -u linux-oracle-6.5-6.5.0/debian/scripts/misc/kconfig/annotations.py linux-oracle-6.5-6.5.0/debian/scripts/misc/kconfig/annotations.py --- linux-oracle-6.5-6.5.0/debian/scripts/misc/kconfig/annotations.py +++ linux-oracle-6.5-6.5.0/debian/scripts/misc/kconfig/annotations.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # -*- mode: python -*- # python module to manage Ubuntu kernel .config and annotations # Copyright © 2022 Canonical Ltd. @@ -12,26 +11,29 @@ from ast import literal_eval from os.path import dirname, abspath +from kconfig.version import ANNOTATIONS_FORMAT_VERSION -class Config(): - def __init__(self, fname): + +class Config: + def __init__(self, fname, do_include=True): """ Basic configuration file object """ self.fname = fname self.config = {} + self.do_include = do_include raw_data = self._load(fname) self._parse(raw_data) @staticmethod def _load(fname: str) -> str: - with open(fname, 'rt', encoding='utf-8') as fd: + with open(fname, "rt", encoding="utf-8") as fd: data = fd.read() return data.rstrip() def __str__(self): - """ Return a JSON representation of the config """ + """Return a JSON representation of the config""" return json.dumps(self.config, indent=4) @abstractmethod @@ -44,14 +46,15 @@ Parse a .config file, individual config options can be accessed via .config[] """ + def _parse(self, data: str): self.config = {} for line in data.splitlines(): - m = re.match(r'^# (CONFIG_.*) is not set$', line) + m = re.match(r"^# (CONFIG_.*) is not set$", line) if m: self.config[m.group(1)] = literal_eval("'n'") continue - m = re.match(r'^(CONFIG_[A-Za-z0-9_]+)=(.*)$', line) + m = re.match(r"^(CONFIG_[A-Za-z0-9_]+)=(.*)$", line) if m: self.config[m.group(1)] = literal_eval("'" + m.group(2) + "'") continue @@ -61,12 +64,13 @@ """ Parse body of annotations file """ + def _parse_body(self, data: str, parent=True): for line in data.splitlines(): # Replace tabs with spaces, squeeze multiple into singles and # remove leading and trailing spaces - line = line.replace('\t', ' ') - line = re.sub(r' +', ' ', line) + line = line.replace("\t", " ") + line = re.sub(r" +", " ", line) line = line.strip() # Ignore empty lines @@ -74,12 +78,12 @@ continue # Catpure flavors of included files - if line.startswith('# FLAVOUR: '): - self.include_flavour += line.split(' ')[2:] + if line.startswith("# FLAVOUR: "): + self.include_flavour += line.split(" ")[2:] continue # Ignore comments - if line.startswith('#'): + if line.startswith("#"): continue # Handle includes (recursively) @@ -87,46 +91,59 @@ if m: if parent: self.include.append(m.group(1)) - include_fname = dirname(abspath(self.fname)) + '/' + m.group(1) - include_data = self._load(include_fname) - self._parse_body(include_data, parent=False) + if self.do_include: + include_fname = dirname(abspath(self.fname)) + "/" + m.group(1) + include_data = self._load(include_fname) + self._parse_body(include_data, parent=False) continue # Handle policy and note lines - if re.match(r'.* (policy|note)<', line): + if re.match(r".* (policy|note)<", line): try: - conf = line.split(' ')[0] + conf = line.split(" ")[0] if conf in self.config: entry = self.config[conf] else: - entry = {'policy': {}} + entry = {"policy": {}} match = False - m = re.match(r'.* policy<(.*?)>', line) + m = re.match(r".* policy<(.*?)>", line) if m: match = True - try: - entry['policy'] |= literal_eval(m.group(1)) - except TypeError: - entry['policy'] = {**entry['policy'], **literal_eval(m.group(1))} + # Update the previous entry considering potential overrides: + # - if the new entry is adding a rule for a new + # arch/flavour, simply add that + # - if the new entry is overriding a previous + # arch-flavour item, then overwrite that item + # - if the new entry is overriding a whole arch, then + # remove all the previous flavour rules of that arch + new_entry = literal_eval(m.group(1)) + for key in new_entry: + if key in self.arch: + for flavour_key in list(entry["policy"].keys()): + if flavour_key.startswith(key): + del entry["policy"][flavour_key] + entry["policy"][key] = new_entry[key] + else: + entry["policy"][key] = new_entry[key] - m = re.match(r'.* note<(.*?)>', line) + m = re.match(r".* note<(.*?)>", line) if m: - entry['oneline'] = match + entry["oneline"] = match match = True - entry['note'] = "'" + m.group(1).replace("'", '') + "'" + entry["note"] = "'" + m.group(1).replace("'", "") + "'" if not match: - raise SyntaxError('syntax error') + raise SyntaxError("syntax error") self.config[conf] = entry except Exception as e: - raise SyntaxError(str(e) + f', line = {line}') from e + raise SyntaxError(str(e) + f", line = {line}") from e continue # Invalid line - raise SyntaxError(f'invalid line: {line}') + raise SyntaxError(f"invalid line: {line}") - def _parse(self, data: str): + def _legacy_parse(self, data: str): """ Parse main annotations file, individual config options can be accessed via self.config[] @@ -136,35 +153,86 @@ self.flavour = [] self.flavour_dep = {} self.include = [] - self.header = '' + self.header = "" self.include_flavour = [] # Parse header (only main header will considered, headers in includes # will be treated as comments) for line in data.splitlines(): - if re.match(r'^#.*', line): - m = re.match(r'^# ARCH: (.*)', line) + if re.match(r"^#.*", line): + m = re.match(r"^# ARCH: (.*)", line) if m: - self.arch = list(m.group(1).split(' ')) - m = re.match(r'^# FLAVOUR: (.*)', line) + self.arch = list(m.group(1).split(" ")) + m = re.match(r"^# FLAVOUR: (.*)", line) if m: - self.flavour = list(m.group(1).split(' ')) - m = re.match(r'^# FLAVOUR_DEP: (.*)', line) + self.flavour = list(m.group(1).split(" ")) + m = re.match(r"^# FLAVOUR_DEP: (.*)", line) if m: self.flavour_dep = literal_eval(m.group(1)) self.header += line + "\n" else: break - # Parse body (handle includes recursively) + # Return an error if architectures are not defined + if not self.arch: + raise SyntaxError("ARCH not defined in annotations") + # Return an error if flavours are not defined + if not self.flavour: + raise SyntaxError("FLAVOUR not defined in annotations") + + # Parse body self._parse_body(data) # Sanity check: Verify that all FLAVOUR_DEP flavors are valid - for src, tgt in self.flavour_dep.items(): - if src not in self.flavour: - raise SyntaxError(f'Invalid source flavour in FLAVOUR_DEP: {src}') - if tgt not in self.include_flavour: - raise SyntaxError(f'Invalid target flavour in FLAVOUR_DEP: {tgt}') + if self.do_include: + for src, tgt in self.flavour_dep.items(): + if src not in self.flavour: + raise SyntaxError(f"Invalid source flavour in FLAVOUR_DEP: {src}") + if tgt not in self.include_flavour: + raise SyntaxError(f"Invalid target flavour in FLAVOUR_DEP: {tgt}") + + def _json_parse(self, data, is_included=False): + data = json.loads(data) + + # Check if version is supported + version = data["attributes"]["_version"] + if version > ANNOTATIONS_FORMAT_VERSION: + raise SyntaxError(f"annotations format version {version} not supported") + + # Check for top-level annotations vs imported annotations + if not is_included: + self.config = data["config"] + self.arch = data["attributes"]["arch"] + self.flavour = data["attributes"]["flavour"] + self.flavour_dep = data["attributes"]["flavour_dep"] + self.include = data["attributes"]["include"] + self.include_flavour = [] + else: + # We are procesing an imported annotations, so merge all the + # configs and attributes. + try: + self.config = data["config"] | self.config + except TypeError: + self.config = {**self.config, **data["config"]} + self.arch = list(set(self.arch) | set(data["attributes"]["arch"])) + self.flavour = list(set(self.flavour) | set(data["attributes"]["flavour"])) + self.include_flavour = list(set(self.include_flavour) | set(data["attributes"]["flavour"])) + self.flavour_dep = self.flavour_dep | data["attributes"]["flavour_dep"] + + # Handle recursive inclusions + if self.do_include: + for f in data["attributes"]["include"]: + include_fname = dirname(abspath(self.fname)) + "/" + f + data = self._load(include_fname) + self._json_parse(data, is_included=True) + + def _parse(self, data: str): + # Try to parse the legacy format first, otherwise use the new JSON + # format. + try: + self._legacy_parse(data) + except SyntaxError: + self._json_parse(data, is_included=False) def _remove_entry(self, config: str): if self.config[config]: @@ -175,34 +243,40 @@ return if arch is not None: if flavour is not None: - flavour = f'{arch}-{flavour}' + flavour = f"{arch}-{flavour}" else: flavour = arch - del self.config[config]['policy'][flavour] - if not self.config[config]['policy']: + del self.config[config]["policy"][flavour] + if not self.config[config]["policy"]: self._remove_entry(config) else: self._remove_entry(config) - def set(self, config: str, arch: str = None, flavour: str = None, - value: str = None, note: str = None): + def set( + self, + config: str, + arch: str = None, + flavour: str = None, + value: str = None, + note: str = None, + ): if value is not None: if config not in self.config: - self.config[config] = {'policy': {}} + self.config[config] = {"policy": {}} if arch is not None: if flavour is not None: - flavour = f'{arch}-{flavour}' + flavour = f"{arch}-{flavour}" else: flavour = arch - self.config[config]['policy'][flavour] = value + self.config[config]["policy"][flavour] = value else: for a in self.arch: - self.config[config]['policy'][a] = value + self.config[config]["policy"][a] = value if note is not None: - self.config[config]['note'] = "'" + note.replace("'", '') + "'" + self.config[config]["note"] = "'" + note.replace("'", "") + "'" def update(self, c: KConfig, arch: str, flavour: str = None, configs: list = None): - """ Merge configs from a Kconfig object into Annotation object """ + """Merge configs from a Kconfig object into Annotation object""" # Determine if we need to import all configs or a single config if not configs: @@ -210,72 +284,75 @@ try: configs |= self.search_config(arch=arch, flavour=flavour).keys() except TypeError: - configs = {**configs, **self.search_config(arch=arch, flavour=flavour).keys()} + configs = { + **configs, + **self.search_config(arch=arch, flavour=flavour).keys(), + } # Import configs from the Kconfig object into Annotations flavour_arg = flavour if flavour is not None: - flavour = arch + f'-{flavour}' + flavour = arch + f"-{flavour}" else: flavour = arch for conf in configs: if conf in c.config: val = c.config[conf] else: - val = '-' + val = "-" if conf in self.config: - if 'policy' in self.config[conf]: + if "policy" in self.config[conf]: # Add a TODO if a config with a note is changing and print # a warning old_val = self.search_config(config=conf, arch=arch, flavour=flavour_arg) if old_val: old_val = old_val[conf] if val != old_val and "note" in self.config[conf]: - self.config[conf]['note'] = "TODO: update note" + self.config[conf]["note"] = "TODO: update note" print(f"WARNING: {conf} changed from {old_val} to {val}, updating note") - self.config[conf]['policy'][flavour] = val + self.config[conf]["policy"][flavour] = val else: - self.config[conf]['policy'] = {flavour: val} + self.config[conf]["policy"] = {flavour: val} else: - self.config[conf] = {'policy': {flavour: val}} + self.config[conf] = {"policy": {flavour: val}} def _compact(self): # Try to remove redundant settings: if the config value of a flavour is # the same as the one of the main arch simply drop it. for conf in self.config.copy(): - if 'policy' not in self.config[conf]: + if "policy" not in self.config[conf]: continue for flavour in self.flavour: - if flavour not in self.config[conf]['policy']: + if flavour not in self.config[conf]["policy"]: continue - m = re.match(r'^(.*?)-(.*)$', flavour) + m = re.match(r"^(.*?)-(.*)$", flavour) if not m: continue arch = m.group(1) - if arch in self.config[conf]['policy']: - if self.config[conf]['policy'][flavour] == self.config[conf]['policy'][arch]: - del self.config[conf]['policy'][flavour] + if arch in self.config[conf]["policy"]: + if self.config[conf]["policy"][flavour] == self.config[conf]["policy"][arch]: + del self.config[conf]["policy"][flavour] continue if flavour not in self.flavour_dep: continue generic = self.flavour_dep[flavour] - if generic in self.config[conf]['policy']: - if self.config[conf]['policy'][flavour] == self.config[conf]['policy'][generic]: - del self.config[conf]['policy'][flavour] + if generic in self.config[conf]["policy"]: + if self.config[conf]["policy"][flavour] == self.config[conf]["policy"][generic]: + del self.config[conf]["policy"][flavour] continue # Remove rules for flavours / arches that are not supported (not # listed in the annotations header). - for flavour in self.config[conf]['policy'].copy(): + for flavour in self.config[conf]["policy"].copy(): if flavour not in list(set(self.arch + self.flavour)): - del self.config[conf]['policy'][flavour] + del self.config[conf]["policy"][flavour] # Remove configs that are all undefined across all arches/flavours # (unless we have includes) if not self.include: - if 'policy' in self.config[conf]: - if list(set(self.config[conf]['policy'].values())) == ['-']: - self.config[conf]['policy'] = {} + if "policy" in self.config[conf]: + if list(set(self.config[conf]["policy"].values())) == ["-"]: + self.config[conf]["policy"] = {} # Drop empty rules - if not self.config[conf]['policy']: + if not self.config[conf]["policy"]: del self.config[conf] else: # Compact same value across all flavour within the same arch @@ -283,16 +360,16 @@ arch_flavours = [i for i in self.flavour if i.startswith(arch)] value = None for flavour in arch_flavours: - if flavour not in self.config[conf]['policy']: + if flavour not in self.config[conf]["policy"]: break if value is None: - value = self.config[conf]['policy'][flavour] - elif value != self.config[conf]['policy'][flavour]: + value = self.config[conf]["policy"][flavour] + elif value != self.config[conf]["policy"][flavour]: break else: for flavour in arch_flavours: - del self.config[conf]['policy'][flavour] - self.config[conf]['policy'][arch] = value + del self.config[conf]["policy"][flavour] + self.config[conf]["policy"][arch] = value # After the first round of compaction we may end up having configs that # are undefined across all arches, so do another round of compaction to # drop these settings that are not needed anymore @@ -300,34 +377,34 @@ if not self.include: for conf in self.config.copy(): # Remove configs that are all undefined across all arches/flavours - if 'policy' in self.config[conf]: - if list(set(self.config[conf]['policy'].values())) == ['-']: - self.config[conf]['policy'] = {} + if "policy" in self.config[conf]: + if list(set(self.config[conf]["policy"].values())) == ["-"]: + self.config[conf]["policy"] = {} # Drop empty rules - if not self.config[conf]['policy']: + if not self.config[conf]["policy"]: del self.config[conf] @staticmethod def _sorted(config): - """ Sort configs alphabetically but return configs with a note first """ + """Sort configs alphabetically but return configs with a note first""" w_note = [] wo_note = [] for c in sorted(config): - if 'note' in config[c]: + if "note" in config[c]: w_note.append(c) else: wo_note.append(c) return w_note + wo_note def save(self, fname: str): - """ Save annotations data to the annotation file """ + """Save annotations data to the annotation file""" # Compact annotations structure self._compact() # Save annotations to disk - with tempfile.NamedTemporaryFile(mode='w+t', delete=False) as tmp: + with tempfile.NamedTemporaryFile(mode="w+t", delete=False) as tmp: # Write header - tmp.write(self.header + '\n') + tmp.write(self.header + "\n") # Write includes for i in self.include: @@ -344,40 +421,43 @@ marker = False for conf in self._sorted(self.config): new_val = self.config[conf] - if 'policy' not in new_val: + if "policy" not in new_val: continue # If new_val is a subset of old_val, skip it unless there are # new notes that are different than the old ones. old_val = tmp_a.config.get(conf) - if old_val and 'policy' in old_val: + if old_val and "policy" in old_val: try: - can_skip = old_val['policy'] == old_val['policy'] | new_val['policy'] + can_skip = old_val["policy"] == old_val["policy"] | new_val["policy"] except TypeError: - can_skip = old_val['policy'] == {**old_val['policy'], **new_val['policy']} + can_skip = old_val["policy"] == { + **old_val["policy"], + **new_val["policy"], + } if can_skip: - if 'note' not in new_val: + if "note" not in new_val: continue - if 'note' in old_val and 'note' in new_val: - if old_val['note'] == new_val['note']: + if "note" in old_val and "note" in new_val: + if old_val["note"] == new_val["note"]: continue # Write out the policy (and note) line(s) - val = dict(sorted(new_val['policy'].items())) + val = dict(sorted(new_val["policy"].items())) line = f"{conf : <47} policy<{val}>" - if 'note' in new_val: - val = new_val['note'] - if new_val.get('oneline', False): + if "note" in new_val: + val = new_val["note"] + if new_val.get("oneline", False): # Single line - line += f' note<{val}>' + line += f" note<{val}>" else: # Separate policy and note lines, # followed by an empty line - line += f'\n{conf : <47} note<{val}>\n' + line += f"\n{conf : <47} note<{val}>\n" elif not marker: # Write out a marker indicating the start of annotations # without notes - tmp.write('\n# ---- Annotations without notes ----\n\n') + tmp.write("\n# ---- Annotations without notes ----\n\n") marker = True tmp.write(line + "\n") @@ -386,10 +466,10 @@ shutil.move(tmp.name, fname) def search_config(self, config: str = None, arch: str = None, flavour: str = None) -> dict: - """ Return config value of a specific config option or architecture """ + """Return config value of a specific config option or architecture""" if flavour is None: - flavour = 'generic' - flavour = f'{arch}-{flavour}' + flavour = "generic" + flavour = f"{arch}-{flavour}" if flavour in self.flavour_dep: generic = self.flavour_dep[flavour] else: @@ -401,14 +481,14 @@ # Get config options of a specific architecture ret = {} for c, val in self.config.items(): - if 'policy' not in val: + if "policy" not in val: continue - if flavour in val['policy']: - ret[c] = val['policy'][flavour] - elif generic != flavour and generic in val['policy']: - ret[c] = val['policy'][generic] - elif arch in val['policy']: - ret[c] = val['policy'][arch] + if flavour in val["policy"]: + ret[c] = val["policy"][flavour] + elif generic != flavour and generic in val["policy"]: + ret[c] = val["policy"][generic] + elif arch in val["policy"]: + ret[c] = val["policy"][arch] return ret if config is not None and arch is None: # Get a specific config option for all architectures @@ -416,24 +496,24 @@ if config is not None and arch is not None: # Get a specific config option for a specific architecture if config in self.config: - if 'policy' in self.config[config]: - if flavour in self.config[config]['policy']: - return {config: self.config[config]['policy'][flavour]} - if generic != flavour and generic in self.config[config]['policy']: - return {config: self.config[config]['policy'][generic]} - if arch in self.config[config]['policy']: - return {config: self.config[config]['policy'][arch]} + if "policy" in self.config[config]: + if flavour in self.config[config]["policy"]: + return {config: self.config[config]["policy"][flavour]} + if generic != flavour and generic in self.config[config]["policy"]: + return {config: self.config[config]["policy"][generic]} + if arch in self.config[config]["policy"]: + return {config: self.config[config]["policy"][arch]} return None @staticmethod def to_config(data: dict) -> str: - """ Convert annotations data to .config format """ - s = '' + """Convert annotations data to .config format""" + s = "" for c in data: v = data[c] - if v == 'n': + if v == "n": s += f"# {c} is not set\n" - elif v == '-': + elif v == "-": pass else: s += f"{c}={v}\n" diff -u linux-oracle-6.5-6.5.0/drivers/acpi/video_detect.c linux-oracle-6.5-6.5.0/drivers/acpi/video_detect.c --- linux-oracle-6.5-6.5.0/drivers/acpi/video_detect.c +++ linux-oracle-6.5-6.5.0/drivers/acpi/video_detect.c @@ -446,6 +446,15 @@ }, }, { + /* https://bugzilla.suse.com/show_bug.cgi?id=1208724 */ + .callback = video_detect_force_native, + /* Lenovo Ideapad Z470 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_VERSION, "IdeaPad Z470"), + }, + }, + { /* https://bugzilla.redhat.com/show_bug.cgi?id=1187004 */ .callback = video_detect_force_native, /* Lenovo Ideapad Z570 */ @@ -487,6 +496,24 @@ }, }, { + /* https://gitlab.freedesktop.org/drm/amd/-/issues/1838 */ + .callback = video_detect_force_native, + /* Apple iMac12,1 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "iMac12,1"), + }, + }, + { + /* https://gitlab.freedesktop.org/drm/amd/-/issues/2753 */ + .callback = video_detect_force_native, + /* Apple iMac12,2 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "iMac12,2"), + }, + }, + { /* https://bugzilla.redhat.com/show_bug.cgi?id=1217249 */ .callback = video_detect_force_native, /* Apple MacBook Pro 12,1 */ diff -u linux-oracle-6.5-6.5.0/drivers/acpi/x86/s2idle.c linux-oracle-6.5-6.5.0/drivers/acpi/x86/s2idle.c --- linux-oracle-6.5-6.5.0/drivers/acpi/x86/s2idle.c +++ linux-oracle-6.5-6.5.0/drivers/acpi/x86/s2idle.c @@ -113,6 +113,12 @@ union acpi_object *package = &out_obj->package.elements[i]; if (package->type == ACPI_TYPE_PACKAGE) { + if (lpi_constraints_table) { + acpi_handle_err(lps0_device_handle, + "Duplicate constraints list\n"); + goto free_acpi_buffer; + } + lpi_constraints_table = kcalloc(package->package.count, sizeof(*lpi_constraints_table), GFP_KERNEL); diff -u linux-oracle-6.5-6.5.0/drivers/android/binder.c linux-oracle-6.5-6.5.0/drivers/android/binder.c --- linux-oracle-6.5-6.5.0/drivers/android/binder.c +++ linux-oracle-6.5-6.5.0/drivers/android/binder.c @@ -4831,6 +4831,8 @@ "undelivered TRANSACTION_ERROR: %u\n", e->cmd); } break; + case BINDER_WORK_TRANSACTION_PENDING: + case BINDER_WORK_TRANSACTION_ONEWAY_SPAM_SUSPECT: case BINDER_WORK_TRANSACTION_COMPLETE: { binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, "undelivered TRANSACTION_COMPLETE\n"); diff -u linux-oracle-6.5-6.5.0/drivers/base/regmap/regcache-rbtree.c linux-oracle-6.5-6.5.0/drivers/base/regmap/regcache-rbtree.c --- linux-oracle-6.5-6.5.0/drivers/base/regmap/regcache-rbtree.c +++ linux-oracle-6.5-6.5.0/drivers/base/regmap/regcache-rbtree.c @@ -453,7 +453,8 @@ if (!rbnode) return -ENOMEM; regcache_rbtree_set_register(map, rbnode, - reg - rbnode->base_reg, value); + (reg - rbnode->base_reg) / map->reg_stride, + value); regcache_rbtree_insert(map, &rbtree_ctx->root, rbnode); rbtree_ctx->cached_rbnode = rbnode; } diff -u linux-oracle-6.5-6.5.0/drivers/block/rbd.c linux-oracle-6.5-6.5.0/drivers/block/rbd.c --- linux-oracle-6.5-6.5.0/drivers/block/rbd.c +++ linux-oracle-6.5-6.5.0/drivers/block/rbd.c @@ -89,7 +89,7 @@ #define RBD_MINORS_PER_MAJOR 256 #define RBD_SINGLE_MAJOR_PART_SHIFT 4 -#define RBD_MAX_PARENT_CHAIN_LEN 128 +#define RBD_MAX_PARENT_CHAIN_LEN 16 #define RBD_SNAP_DEV_NAME_PREFIX "snap_" #define RBD_MAX_SNAP_NAME_LEN \ @@ -632,9 +632,8 @@ static void rbd_dev_remove_parent(struct rbd_device *rbd_dev); static int rbd_dev_refresh(struct rbd_device *rbd_dev); -static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev); -static int rbd_dev_header_info(struct rbd_device *rbd_dev); -static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev); +static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev, + struct rbd_image_header *header); static const char *rbd_dev_v2_snap_name(struct rbd_device *rbd_dev, u64 snap_id); static int _rbd_dev_v2_snap_size(struct rbd_device *rbd_dev, u64 snap_id, @@ -995,15 +994,24 @@ RCU_INIT_POINTER(rbd_dev->layout.pool_ns, NULL); } +static void rbd_image_header_cleanup(struct rbd_image_header *header) +{ + kfree(header->object_prefix); + ceph_put_snap_context(header->snapc); + kfree(header->snap_sizes); + kfree(header->snap_names); + + memset(header, 0, sizeof(*header)); +} + /* * Fill an rbd image header with information from the given format 1 * on-disk header. */ -static int rbd_header_from_disk(struct rbd_device *rbd_dev, - struct rbd_image_header_ondisk *ondisk) +static int rbd_header_from_disk(struct rbd_image_header *header, + struct rbd_image_header_ondisk *ondisk, + bool first_time) { - struct rbd_image_header *header = &rbd_dev->header; - bool first_time = header->object_prefix == NULL; struct ceph_snap_context *snapc; char *object_prefix = NULL; char *snap_names = NULL; @@ -1070,11 +1078,6 @@ if (first_time) { header->object_prefix = object_prefix; header->obj_order = ondisk->options.order; - rbd_init_layout(rbd_dev); - } else { - ceph_put_snap_context(header->snapc); - kfree(header->snap_names); - kfree(header->snap_sizes); } /* The remaining fields always get updated (when we refresh) */ @@ -4859,7 +4862,9 @@ * return, the rbd_dev->header field will contain up-to-date * information about the image. */ -static int rbd_dev_v1_header_info(struct rbd_device *rbd_dev) +static int rbd_dev_v1_header_info(struct rbd_device *rbd_dev, + struct rbd_image_header *header, + bool first_time) { struct rbd_image_header_ondisk *ondisk = NULL; u32 snap_count = 0; @@ -4907,7 +4912,7 @@ snap_count = le32_to_cpu(ondisk->snap_count); } while (snap_count != want_count); - ret = rbd_header_from_disk(rbd_dev, ondisk); + ret = rbd_header_from_disk(header, ondisk, first_time); out: kfree(ondisk); @@ -4931,39 +4936,6 @@ } } -static int rbd_dev_refresh(struct rbd_device *rbd_dev) -{ - u64 mapping_size; - int ret; - - down_write(&rbd_dev->header_rwsem); - mapping_size = rbd_dev->mapping.size; - - ret = rbd_dev_header_info(rbd_dev); - if (ret) - goto out; - - /* - * If there is a parent, see if it has disappeared due to the - * mapped image getting flattened. - */ - if (rbd_dev->parent) { - ret = rbd_dev_v2_parent_info(rbd_dev); - if (ret) - goto out; - } - - rbd_assert(!rbd_is_snap(rbd_dev)); - rbd_dev->mapping.size = rbd_dev->header.image_size; - -out: - up_write(&rbd_dev->header_rwsem); - if (!ret && mapping_size != rbd_dev->mapping.size) - rbd_dev_update_size(rbd_dev); - - return ret; -} - static const struct blk_mq_ops rbd_mq_ops = { .queue_rq = rbd_queue_rq, }; @@ -5503,17 +5475,12 @@ return 0; } -static int rbd_dev_v2_image_size(struct rbd_device *rbd_dev) -{ - return _rbd_dev_v2_snap_size(rbd_dev, CEPH_NOSNAP, - &rbd_dev->header.obj_order, - &rbd_dev->header.image_size); -} - -static int rbd_dev_v2_object_prefix(struct rbd_device *rbd_dev) +static int rbd_dev_v2_object_prefix(struct rbd_device *rbd_dev, + char **pobject_prefix) { size_t size; void *reply_buf; + char *object_prefix; int ret; void *p; @@ -5531,16 +5498,16 @@ goto out; p = reply_buf; - rbd_dev->header.object_prefix = ceph_extract_encoded_string(&p, - p + ret, NULL, GFP_NOIO); + object_prefix = ceph_extract_encoded_string(&p, p + ret, NULL, + GFP_NOIO); + if (IS_ERR(object_prefix)) { + ret = PTR_ERR(object_prefix); + goto out; + } ret = 0; - if (IS_ERR(rbd_dev->header.object_prefix)) { - ret = PTR_ERR(rbd_dev->header.object_prefix); - rbd_dev->header.object_prefix = NULL; - } else { - dout(" object_prefix = %s\n", rbd_dev->header.object_prefix); - } + *pobject_prefix = object_prefix; + dout(" object_prefix = %s\n", object_prefix); out: kfree(reply_buf); @@ -5591,13 +5558,6 @@ return 0; } -static int rbd_dev_v2_features(struct rbd_device *rbd_dev) -{ - return _rbd_dev_v2_snap_features(rbd_dev, CEPH_NOSNAP, - rbd_is_ro(rbd_dev), - &rbd_dev->header.features); -} - /* * These are generic image flags, but since they are used only for * object map, store them in rbd_dev->object_map_flags. @@ -5634,6 +5594,14 @@ u64 overlap; }; +static void rbd_parent_info_cleanup(struct parent_image_info *pii) +{ + kfree(pii->pool_ns); + kfree(pii->image_id); + + memset(pii, 0, sizeof(*pii)); +} + /* * The caller is responsible for @pii. */ @@ -5703,6 +5671,9 @@ if (pii->has_overlap) ceph_decode_64_safe(&p, end, pii->overlap, e_inval); + dout("%s pool_id %llu pool_ns %s image_id %s snap_id %llu has_overlap %d overlap %llu\n", + __func__, pii->pool_id, pii->pool_ns, pii->image_id, pii->snap_id, + pii->has_overlap, pii->overlap); return 0; e_inval: @@ -5741,14 +5712,17 @@ pii->has_overlap = true; ceph_decode_64_safe(&p, end, pii->overlap, e_inval); + dout("%s pool_id %llu pool_ns %s image_id %s snap_id %llu has_overlap %d overlap %llu\n", + __func__, pii->pool_id, pii->pool_ns, pii->image_id, pii->snap_id, + pii->has_overlap, pii->overlap); return 0; e_inval: return -EINVAL; } -static int get_parent_info(struct rbd_device *rbd_dev, - struct parent_image_info *pii) +static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev, + struct parent_image_info *pii) { struct page *req_page, *reply_page; void *p; @@ -5776,7 +5750,7 @@ return ret; } -static int rbd_dev_v2_parent_info(struct rbd_device *rbd_dev) +static int rbd_dev_setup_parent(struct rbd_device *rbd_dev) { struct rbd_spec *parent_spec; struct parent_image_info pii = { 0 }; @@ -5786,37 +5760,12 @@ if (!parent_spec) return -ENOMEM; - ret = get_parent_info(rbd_dev, &pii); + ret = rbd_dev_v2_parent_info(rbd_dev, &pii); if (ret) goto out_err; - dout("%s pool_id %llu pool_ns %s image_id %s snap_id %llu has_overlap %d overlap %llu\n", - __func__, pii.pool_id, pii.pool_ns, pii.image_id, pii.snap_id, - pii.has_overlap, pii.overlap); - - if (pii.pool_id == CEPH_NOPOOL || !pii.has_overlap) { - /* - * Either the parent never existed, or we have - * record of it but the image got flattened so it no - * longer has a parent. When the parent of a - * layered image disappears we immediately set the - * overlap to 0. The effect of this is that all new - * requests will be treated as if the image had no - * parent. - * - * If !pii.has_overlap, the parent image spec is not - * applicable. It's there to avoid duplication in each - * snapshot record. - */ - if (rbd_dev->parent_overlap) { - rbd_dev->parent_overlap = 0; - rbd_dev_parent_put(rbd_dev); - pr_info("%s: clone image has been flattened\n", - rbd_dev->disk->disk_name); - } - + if (pii.pool_id == CEPH_NOPOOL || !pii.has_overlap) goto out; /* No parent? No problem. */ - } /* The ceph file layout needs to fit pool id in 32 bits */ @@ -5828,58 +5777,46 @@ } /* - * The parent won't change (except when the clone is - * flattened, already handled that). So we only need to - * record the parent spec we have not already done so. + * The parent won't change except when the clone is flattened, + * so we only need to record the parent image spec once. */ - if (!rbd_dev->parent_spec) { - parent_spec->pool_id = pii.pool_id; - if (pii.pool_ns && *pii.pool_ns) { - parent_spec->pool_ns = pii.pool_ns; - pii.pool_ns = NULL; - } - parent_spec->image_id = pii.image_id; - pii.image_id = NULL; - parent_spec->snap_id = pii.snap_id; - - rbd_dev->parent_spec = parent_spec; - parent_spec = NULL; /* rbd_dev now owns this */ + parent_spec->pool_id = pii.pool_id; + if (pii.pool_ns && *pii.pool_ns) { + parent_spec->pool_ns = pii.pool_ns; + pii.pool_ns = NULL; } + parent_spec->image_id = pii.image_id; + pii.image_id = NULL; + parent_spec->snap_id = pii.snap_id; + + rbd_assert(!rbd_dev->parent_spec); + rbd_dev->parent_spec = parent_spec; + parent_spec = NULL; /* rbd_dev now owns this */ /* - * We always update the parent overlap. If it's zero we issue - * a warning, as we will proceed as if there was no parent. + * Record the parent overlap. If it's zero, issue a warning as + * we will proceed as if there is no parent. */ - if (!pii.overlap) { - if (parent_spec) { - /* refresh, careful to warn just once */ - if (rbd_dev->parent_overlap) - rbd_warn(rbd_dev, - "clone now standalone (overlap became 0)"); - } else { - /* initial probe */ - rbd_warn(rbd_dev, "clone is standalone (overlap 0)"); - } - } + if (!pii.overlap) + rbd_warn(rbd_dev, "clone is standalone (overlap 0)"); rbd_dev->parent_overlap = pii.overlap; out: ret = 0; out_err: - kfree(pii.pool_ns); - kfree(pii.image_id); + rbd_parent_info_cleanup(&pii); rbd_spec_put(parent_spec); return ret; } -static int rbd_dev_v2_striping_info(struct rbd_device *rbd_dev) +static int rbd_dev_v2_striping_info(struct rbd_device *rbd_dev, + u64 *stripe_unit, u64 *stripe_count) { struct { __le64 stripe_unit; __le64 stripe_count; } __attribute__ ((packed)) striping_info_buf = { 0 }; size_t size = sizeof (striping_info_buf); - void *p; int ret; ret = rbd_obj_method_sync(rbd_dev, &rbd_dev->header_oid, @@ -5891,27 +5828,33 @@ if (ret < size) return -ERANGE; - p = &striping_info_buf; - rbd_dev->header.stripe_unit = ceph_decode_64(&p); - rbd_dev->header.stripe_count = ceph_decode_64(&p); + *stripe_unit = le64_to_cpu(striping_info_buf.stripe_unit); + *stripe_count = le64_to_cpu(striping_info_buf.stripe_count); + dout(" stripe_unit = %llu stripe_count = %llu\n", *stripe_unit, + *stripe_count); + return 0; } -static int rbd_dev_v2_data_pool(struct rbd_device *rbd_dev) +static int rbd_dev_v2_data_pool(struct rbd_device *rbd_dev, s64 *data_pool_id) { - __le64 data_pool_id; + __le64 data_pool_buf; int ret; ret = rbd_obj_method_sync(rbd_dev, &rbd_dev->header_oid, &rbd_dev->header_oloc, "get_data_pool", - NULL, 0, &data_pool_id, sizeof(data_pool_id)); + NULL, 0, &data_pool_buf, + sizeof(data_pool_buf)); + dout("%s: rbd_obj_method_sync returned %d\n", __func__, ret); if (ret < 0) return ret; - if (ret < sizeof(data_pool_id)) + if (ret < sizeof(data_pool_buf)) return -EBADMSG; - rbd_dev->header.data_pool_id = le64_to_cpu(data_pool_id); - WARN_ON(rbd_dev->header.data_pool_id == CEPH_NOPOOL); + *data_pool_id = le64_to_cpu(data_pool_buf); + dout(" data_pool_id = %lld\n", *data_pool_id); + WARN_ON(*data_pool_id == CEPH_NOPOOL); + return 0; } @@ -6103,7 +6046,8 @@ return ret; } -static int rbd_dev_v2_snap_context(struct rbd_device *rbd_dev) +static int rbd_dev_v2_snap_context(struct rbd_device *rbd_dev, + struct ceph_snap_context **psnapc) { size_t size; int ret; @@ -6164,9 +6108,7 @@ for (i = 0; i < snap_count; i++) snapc->snaps[i] = ceph_decode_64(&p); - ceph_put_snap_context(rbd_dev->header.snapc); - rbd_dev->header.snapc = snapc; - + *psnapc = snapc; dout(" snap context seq = %llu, snap_count = %u\n", (unsigned long long)seq, (unsigned int)snap_count); out: @@ -6215,38 +6157,42 @@ return snap_name; } -static int rbd_dev_v2_header_info(struct rbd_device *rbd_dev) +static int rbd_dev_v2_header_info(struct rbd_device *rbd_dev, + struct rbd_image_header *header, + bool first_time) { - bool first_time = rbd_dev->header.object_prefix == NULL; int ret; - ret = rbd_dev_v2_image_size(rbd_dev); + ret = _rbd_dev_v2_snap_size(rbd_dev, CEPH_NOSNAP, + first_time ? &header->obj_order : NULL, + &header->image_size); if (ret) return ret; if (first_time) { - ret = rbd_dev_v2_header_onetime(rbd_dev); + ret = rbd_dev_v2_header_onetime(rbd_dev, header); if (ret) return ret; } - ret = rbd_dev_v2_snap_context(rbd_dev); - if (ret && first_time) { - kfree(rbd_dev->header.object_prefix); - rbd_dev->header.object_prefix = NULL; - } + ret = rbd_dev_v2_snap_context(rbd_dev, &header->snapc); + if (ret) + return ret; - return ret; + return 0; } -static int rbd_dev_header_info(struct rbd_device *rbd_dev) +static int rbd_dev_header_info(struct rbd_device *rbd_dev, + struct rbd_image_header *header, + bool first_time) { rbd_assert(rbd_image_format_valid(rbd_dev->image_format)); + rbd_assert(!header->object_prefix && !header->snapc); if (rbd_dev->image_format == 1) - return rbd_dev_v1_header_info(rbd_dev); + return rbd_dev_v1_header_info(rbd_dev, header, first_time); - return rbd_dev_v2_header_info(rbd_dev); + return rbd_dev_v2_header_info(rbd_dev, header, first_time); } /* @@ -6734,60 +6680,49 @@ */ static void rbd_dev_unprobe(struct rbd_device *rbd_dev) { - struct rbd_image_header *header; - rbd_dev_parent_put(rbd_dev); rbd_object_map_free(rbd_dev); rbd_dev_mapping_clear(rbd_dev); /* Free dynamic fields from the header, then zero it out */ - header = &rbd_dev->header; - ceph_put_snap_context(header->snapc); - kfree(header->snap_sizes); - kfree(header->snap_names); - kfree(header->object_prefix); - memset(header, 0, sizeof (*header)); + rbd_image_header_cleanup(&rbd_dev->header); } -static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev) +static int rbd_dev_v2_header_onetime(struct rbd_device *rbd_dev, + struct rbd_image_header *header) { int ret; - ret = rbd_dev_v2_object_prefix(rbd_dev); + ret = rbd_dev_v2_object_prefix(rbd_dev, &header->object_prefix); if (ret) - goto out_err; + return ret; /* * Get the and check features for the image. Currently the * features are assumed to never change. */ - ret = rbd_dev_v2_features(rbd_dev); + ret = _rbd_dev_v2_snap_features(rbd_dev, CEPH_NOSNAP, + rbd_is_ro(rbd_dev), &header->features); if (ret) - goto out_err; + return ret; /* If the image supports fancy striping, get its parameters */ - if (rbd_dev->header.features & RBD_FEATURE_STRIPINGV2) { - ret = rbd_dev_v2_striping_info(rbd_dev); - if (ret < 0) - goto out_err; + if (header->features & RBD_FEATURE_STRIPINGV2) { + ret = rbd_dev_v2_striping_info(rbd_dev, &header->stripe_unit, + &header->stripe_count); + if (ret) + return ret; } - if (rbd_dev->header.features & RBD_FEATURE_DATA_POOL) { - ret = rbd_dev_v2_data_pool(rbd_dev); + if (header->features & RBD_FEATURE_DATA_POOL) { + ret = rbd_dev_v2_data_pool(rbd_dev, &header->data_pool_id); if (ret) - goto out_err; + return ret; } - rbd_init_layout(rbd_dev); return 0; - -out_err: - rbd_dev->header.features = 0; - kfree(rbd_dev->header.object_prefix); - rbd_dev->header.object_prefix = NULL; - return ret; } /* @@ -6982,13 +6917,15 @@ if (!depth) down_write(&rbd_dev->header_rwsem); - ret = rbd_dev_header_info(rbd_dev); + ret = rbd_dev_header_info(rbd_dev, &rbd_dev->header, true); if (ret) { if (ret == -ENOENT && !need_watch) rbd_print_dne(rbd_dev, false); goto err_out_probe; } + rbd_init_layout(rbd_dev); + /* * If this image is the one being mapped, we have pool name and * id, image name and id, and snap name - need to fill snap id. @@ -7017,7 +6954,7 @@ } if (rbd_dev->header.features & RBD_FEATURE_LAYERING) { - ret = rbd_dev_v2_parent_info(rbd_dev); + ret = rbd_dev_setup_parent(rbd_dev); if (ret) goto err_out_probe; } @@ -7043,6 +6980,107 @@ return ret; } +static void rbd_dev_update_header(struct rbd_device *rbd_dev, + struct rbd_image_header *header) +{ + rbd_assert(rbd_image_format_valid(rbd_dev->image_format)); + rbd_assert(rbd_dev->header.object_prefix); /* !first_time */ + + if (rbd_dev->header.image_size != header->image_size) { + rbd_dev->header.image_size = header->image_size; + + if (!rbd_is_snap(rbd_dev)) { + rbd_dev->mapping.size = header->image_size; + rbd_dev_update_size(rbd_dev); + } + } + + ceph_put_snap_context(rbd_dev->header.snapc); + rbd_dev->header.snapc = header->snapc; + header->snapc = NULL; + + if (rbd_dev->image_format == 1) { + kfree(rbd_dev->header.snap_names); + rbd_dev->header.snap_names = header->snap_names; + header->snap_names = NULL; + + kfree(rbd_dev->header.snap_sizes); + rbd_dev->header.snap_sizes = header->snap_sizes; + header->snap_sizes = NULL; + } +} + +static void rbd_dev_update_parent(struct rbd_device *rbd_dev, + struct parent_image_info *pii) +{ + if (pii->pool_id == CEPH_NOPOOL || !pii->has_overlap) { + /* + * Either the parent never existed, or we have + * record of it but the image got flattened so it no + * longer has a parent. When the parent of a + * layered image disappears we immediately set the + * overlap to 0. The effect of this is that all new + * requests will be treated as if the image had no + * parent. + * + * If !pii.has_overlap, the parent image spec is not + * applicable. It's there to avoid duplication in each + * snapshot record. + */ + if (rbd_dev->parent_overlap) { + rbd_dev->parent_overlap = 0; + rbd_dev_parent_put(rbd_dev); + pr_info("%s: clone has been flattened\n", + rbd_dev->disk->disk_name); + } + } else { + rbd_assert(rbd_dev->parent_spec); + + /* + * Update the parent overlap. If it became zero, issue + * a warning as we will proceed as if there is no parent. + */ + if (!pii->overlap && rbd_dev->parent_overlap) + rbd_warn(rbd_dev, + "clone has become standalone (overlap 0)"); + rbd_dev->parent_overlap = pii->overlap; + } +} + +static int rbd_dev_refresh(struct rbd_device *rbd_dev) +{ + struct rbd_image_header header = { 0 }; + struct parent_image_info pii = { 0 }; + int ret; + + dout("%s rbd_dev %p\n", __func__, rbd_dev); + + ret = rbd_dev_header_info(rbd_dev, &header, false); + if (ret) + goto out; + + /* + * If there is a parent, see if it has disappeared due to the + * mapped image getting flattened. + */ + if (rbd_dev->parent) { + ret = rbd_dev_v2_parent_info(rbd_dev, &pii); + if (ret) + goto out; + } + + down_write(&rbd_dev->header_rwsem); + rbd_dev_update_header(rbd_dev, &header); + if (rbd_dev->parent) + rbd_dev_update_parent(rbd_dev, &pii); + up_write(&rbd_dev->header_rwsem); + +out: + rbd_parent_info_cleanup(&pii); + rbd_image_header_cleanup(&header); + return ret; +} + static ssize_t do_rbd_add(const char *buf, size_t count) { struct rbd_device *rbd_dev = NULL; diff -u linux-oracle-6.5-6.5.0/drivers/bluetooth/btusb.c linux-oracle-6.5-6.5.0/drivers/bluetooth/btusb.c --- linux-oracle-6.5-6.5.0/drivers/bluetooth/btusb.c +++ linux-oracle-6.5-6.5.0/drivers/bluetooth/btusb.c @@ -631,9 +631,24 @@ { USB_DEVICE(0x0489, 0xe0e4), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH | BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x0489, 0xe0f1), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, { USB_DEVICE(0x0489, 0xe0f2), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH | BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x0489, 0xe0f5), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x0489, 0xe0f6), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x0489, 0xe102), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x04ca, 0x3804), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, /* Additional Realtek 8723AE Bluetooth devices */ { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK }, diff -u linux-oracle-6.5-6.5.0/drivers/bus/ti-sysc.c linux-oracle-6.5-6.5.0/drivers/bus/ti-sysc.c --- linux-oracle-6.5-6.5.0/drivers/bus/ti-sysc.c +++ linux-oracle-6.5-6.5.0/drivers/bus/ti-sysc.c @@ -38,6 +38,7 @@ SOC_2420, SOC_2430, SOC_3430, + SOC_AM35, SOC_3630, SOC_4430, SOC_4460, @@ -1096,6 +1097,11 @@ if (ddata->cfg.quirks & (SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_SWSUP_SIDLE_ACT)) { best_mode = SYSC_IDLE_NO; + + /* Clear WAKEUP */ + if (regbits->enwkup_shift >= 0 && + ddata->cfg.sysc_val & BIT(regbits->enwkup_shift)) + reg &= ~BIT(regbits->enwkup_shift); } else { best_mode = fls(ddata->cfg.sidlemodes) - 1; if (best_mode > SYSC_IDLE_MASK) { @@ -1223,6 +1229,13 @@ } } + if (ddata->cfg.quirks & SYSC_QUIRK_SWSUP_SIDLE_ACT) { + /* Set WAKEUP */ + if (regbits->enwkup_shift >= 0 && + ddata->cfg.sysc_val & BIT(regbits->enwkup_shift)) + reg |= BIT(regbits->enwkup_shift); + } + reg &= ~(SYSC_IDLE_MASK << regbits->sidle_shift); reg |= best_mode << regbits->sidle_shift; if (regbits->autoidle_shift >= 0 && @@ -1517,14 +1530,16 @@ static const struct sysc_revision_quirk sysc_revision_quirks[] = { /* These drivers need to be fixed to not use pm_runtime_irq_safe() */ SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x00000046, 0xffffffff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x00000052, 0xffffffff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), /* Uarts on omap4 and later */ SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x50411e03, 0xffff00ff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x47422e03, 0xffffffff, - SYSC_QUIRK_SWSUP_SIDLE | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), + SYSC_QUIRK("uart", 0, 0x50, 0x54, 0x58, 0x47424e03, 0xffffffff, + SYSC_QUIRK_SWSUP_SIDLE_ACT | SYSC_QUIRK_LEGACY_IDLE), /* Quirks that need to be set based on the module address */ SYSC_QUIRK("mcpdm", 0x40132000, 0, 0x10, -ENODEV, 0x50000800, 0xffffffff, @@ -1859,7 +1874,7 @@ dev_warn(ddata->dev, "%s: timed out %08x !+ %08x\n", __func__, val, irq_mask); - if (sysc_soc->soc == SOC_3430) { + if (sysc_soc->soc == SOC_3430 || sysc_soc->soc == SOC_AM35) { /* Clear DSS_SDI_CONTROL */ sysc_write(ddata, 0x44, 0); @@ -2147,8 +2162,7 @@ } if (ddata->cfg.srst_udelay) - usleep_range(ddata->cfg.srst_udelay, - ddata->cfg.srst_udelay * 2); + fsleep(ddata->cfg.srst_udelay); if (ddata->post_reset_quirk) ddata->post_reset_quirk(ddata); @@ -3022,6 +3036,7 @@ static const struct soc_device_attribute sysc_soc_match[] = { SOC_FLAG("OMAP242*", SOC_2420), SOC_FLAG("OMAP243*", SOC_2430), + SOC_FLAG("AM35*", SOC_AM35), SOC_FLAG("OMAP3[45]*", SOC_3430), SOC_FLAG("OMAP3[67]*", SOC_3630), SOC_FLAG("OMAP443*", SOC_4430), @@ -3226,7 +3241,7 @@ * can be dropped if we stop supporting old beagleboard revisions * A to B4 at some point. */ - if (sysc_soc->soc == SOC_3430) + if (sysc_soc->soc == SOC_3430 || sysc_soc->soc == SOC_AM35) error = -ENXIO; else error = -EBUSY; diff -u linux-oracle-6.5-6.5.0/drivers/char/tpm/tpm_crb.c linux-oracle-6.5-6.5.0/drivers/char/tpm/tpm_crb.c --- linux-oracle-6.5-6.5.0/drivers/char/tpm/tpm_crb.c +++ linux-oracle-6.5-6.5.0/drivers/char/tpm/tpm_crb.c @@ -775,12 +775,13 @@ FW_BUG "TPM2 ACPI table has wrong size %u for start method type %d\n", buf->header.length, ACPI_TPM2_COMMAND_BUFFER_WITH_PLUTON); - return -EINVAL; + rc = -EINVAL; + goto out; } crb_pluton = ACPI_ADD_PTR(struct tpm2_crb_pluton, buf, sizeof(*buf)); rc = crb_map_pluton(dev, priv, buf, crb_pluton); if (rc) - return rc; + goto out; } priv->sm = sm; diff -u linux-oracle-6.5-6.5.0/drivers/firmware/cirrus/cs_dsp.c linux-oracle-6.5-6.5.0/drivers/firmware/cirrus/cs_dsp.c --- linux-oracle-6.5-6.5.0/drivers/firmware/cirrus/cs_dsp.c +++ linux-oracle-6.5-6.5.0/drivers/firmware/cirrus/cs_dsp.c @@ -1863,15 +1863,15 @@ return PTR_ERR(adsp2_alg); for (i = 0; i < n_algs; i++) { - cs_dsp_info(dsp, - "%d: ID %x v%d.%d.%d XM@%x YM@%x ZM@%x\n", - i, be32_to_cpu(adsp2_alg[i].alg.id), - (be32_to_cpu(adsp2_alg[i].alg.ver) & 0xff0000) >> 16, - (be32_to_cpu(adsp2_alg[i].alg.ver) & 0xff00) >> 8, - be32_to_cpu(adsp2_alg[i].alg.ver) & 0xff, - be32_to_cpu(adsp2_alg[i].xm), - be32_to_cpu(adsp2_alg[i].ym), - be32_to_cpu(adsp2_alg[i].zm)); + cs_dsp_dbg(dsp, + "%d: ID %x v%d.%d.%d XM@%x YM@%x ZM@%x\n", + i, be32_to_cpu(adsp2_alg[i].alg.id), + (be32_to_cpu(adsp2_alg[i].alg.ver) & 0xff0000) >> 16, + (be32_to_cpu(adsp2_alg[i].alg.ver) & 0xff00) >> 8, + be32_to_cpu(adsp2_alg[i].alg.ver) & 0xff, + be32_to_cpu(adsp2_alg[i].xm), + be32_to_cpu(adsp2_alg[i].ym), + be32_to_cpu(adsp2_alg[i].zm)); alg_region = cs_dsp_create_region(dsp, WMFW_ADSP2_XM, adsp2_alg[i].alg.id, @@ -1996,14 +1996,14 @@ return PTR_ERR(halo_alg); for (i = 0; i < n_algs; i++) { - cs_dsp_info(dsp, - "%d: ID %x v%d.%d.%d XM@%x YM@%x\n", - i, be32_to_cpu(halo_alg[i].alg.id), - (be32_to_cpu(halo_alg[i].alg.ver) & 0xff0000) >> 16, - (be32_to_cpu(halo_alg[i].alg.ver) & 0xff00) >> 8, - be32_to_cpu(halo_alg[i].alg.ver) & 0xff, - be32_to_cpu(halo_alg[i].xm_base), - be32_to_cpu(halo_alg[i].ym_base)); + cs_dsp_dbg(dsp, + "%d: ID %x v%d.%d.%d XM@%x YM@%x\n", + i, be32_to_cpu(halo_alg[i].alg.id), + (be32_to_cpu(halo_alg[i].alg.ver) & 0xff0000) >> 16, + (be32_to_cpu(halo_alg[i].alg.ver) & 0xff00) >> 8, + be32_to_cpu(halo_alg[i].alg.ver) & 0xff, + be32_to_cpu(halo_alg[i].xm_base), + be32_to_cpu(halo_alg[i].ym_base)); ret = cs_dsp_halo_create_regions(dsp, halo_alg[i].alg.id, halo_alg[i].alg.ver, diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -1462,32 +1462,6 @@ } /* - * On APUs with >= 64GB white flickering has been observed w/ SG enabled. - * Disable S/G on such systems until we have a proper fix. - * https://gitlab.freedesktop.org/drm/amd/-/issues/2354 - * https://gitlab.freedesktop.org/drm/amd/-/issues/2735 - */ -bool amdgpu_sg_display_supported(struct amdgpu_device *adev) -{ - switch (amdgpu_sg_display) { - case -1: - break; - case 0: - return false; - case 1: - return true; - default: - return false; - } - if ((totalram_pages() << (PAGE_SHIFT - 10)) + - (adev->gmc.real_vram_size / 1024) >= 64000000) { - DRM_WARN("Disabling S/G due to >=64GB RAM\n"); - return false; - } - return true; -} - -/* * Intel hosts such as Raptor Lake and Sapphire Rapids don't support dynamic * speed switching. Until we have confirmation from Intel that a specific host * supports it, it's safer that we keep it disabled for all. @@ -2334,7 +2308,7 @@ adev->flags |= AMD_IS_PX; if (!(adev->flags & AMD_IS_APU)) { - parent = pci_upstream_bridge(adev->pdev); + parent = pcie_find_root_port(adev->pdev); adev->has_pr3 = parent ? pci_pr3_present(parent) : false; } @@ -3727,10 +3701,6 @@ adev->gfx.mcbp = true; else if (amdgpu_mcbp == 0) adev->gfx.mcbp = false; - else if ((adev->ip_versions[GC_HWIP][0] >= IP_VERSION(9, 0, 0)) && - (adev->ip_versions[GC_HWIP][0] < IP_VERSION(10, 0, 0)) && - adev->gfx.num_gfx_rings) - adev->gfx.mcbp = true; if (amdgpu_sriov_vf(adev)) adev->gfx.mcbp = true; diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c @@ -839,7 +839,7 @@ memcpy(&dev_info->cu_ao_bitmap[0], &adev->gfx.cu_info.ao_cu_bitmap[0], sizeof(adev->gfx.cu_info.ao_cu_bitmap)); memcpy(&dev_info->cu_bitmap[0], &adev->gfx.cu_info.bitmap[0], - sizeof(adev->gfx.cu_info.bitmap)); + sizeof(dev_info->cu_bitmap)); dev_info->vram_type = adev->gmc.vram_type; dev_info->vram_bit_width = adev->gmc.vram_width; dev_info->vce_harvest_config = adev->vce.harvest_config; @@ -940,12 +940,17 @@ struct atom_context *atom_context; atom_context = adev->mode_info.atom_context; - memcpy(vbios_info.name, atom_context->name, sizeof(atom_context->name)); - memcpy(vbios_info.vbios_pn, atom_context->vbios_pn, sizeof(atom_context->vbios_pn)); - vbios_info.version = atom_context->version; - memcpy(vbios_info.vbios_ver_str, atom_context->vbios_ver_str, - sizeof(atom_context->vbios_ver_str)); - memcpy(vbios_info.date, atom_context->date, sizeof(atom_context->date)); + if (atom_context) { + memcpy(vbios_info.name, atom_context->name, + sizeof(atom_context->name)); + memcpy(vbios_info.vbios_pn, atom_context->vbios_pn, + sizeof(atom_context->vbios_pn)); + vbios_info.version = atom_context->version; + memcpy(vbios_info.vbios_ver_str, atom_context->vbios_ver_str, + sizeof(atom_context->vbios_ver_str)); + memcpy(vbios_info.date, atom_context->date, + sizeof(atom_context->date)); + } return copy_to_user(out, &vbios_info, min((size_t)size, sizeof(vbios_info))) ? -EFAULT : 0; diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c @@ -1272,11 +1272,15 @@ pt_base = amdgpu_gmc_pd_addr(adev->gart.bo); - page_table_start.high_part = (u32)(adev->gmc.gart_start >> 44) & 0xF; - page_table_start.low_part = (u32)(adev->gmc.gart_start >> 12); - page_table_end.high_part = (u32)(adev->gmc.gart_end >> 44) & 0xF; - page_table_end.low_part = (u32)(adev->gmc.gart_end >> 12); - page_table_base.high_part = upper_32_bits(pt_base) & 0xF; + page_table_start.high_part = upper_32_bits(adev->gmc.gart_start >> + AMDGPU_GPU_PAGE_SHIFT); + page_table_start.low_part = lower_32_bits(adev->gmc.gart_start >> + AMDGPU_GPU_PAGE_SHIFT); + page_table_end.high_part = upper_32_bits(adev->gmc.gart_end >> + AMDGPU_GPU_PAGE_SHIFT); + page_table_end.low_part = lower_32_bits(adev->gmc.gart_end >> + AMDGPU_GPU_PAGE_SHIFT); + page_table_base.high_part = upper_32_bits(pt_base); page_table_base.low_part = lower_32_bits(pt_base); pa_config->system_aperture.start_addr = (uint64_t)logical_addr_low << 18; @@ -1638,8 +1642,9 @@ } break; } - if (init_data.flags.gpu_vm_support) - init_data.flags.gpu_vm_support = amdgpu_sg_display_supported(adev); + if (init_data.flags.gpu_vm_support && + (amdgpu_sg_display == 0)) + init_data.flags.gpu_vm_support = false; if (init_data.flags.gpu_vm_support) adev->mode_info.gpu_vm_support = true; @@ -2328,14 +2333,62 @@ return detect_mst_link_for_all_connectors(adev_to_drm(adev)); } +static void resume_mst_branch_status(struct drm_dp_mst_topology_mgr *mgr) +{ + int ret; + u8 guid[16]; + u64 tmp64; + + mutex_lock(&mgr->lock); + if (!mgr->mst_primary) + goto out_fail; + + if (drm_dp_read_dpcd_caps(mgr->aux, mgr->dpcd) < 0) { + drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n"); + goto out_fail; + } + + ret = drm_dp_dpcd_writeb(mgr->aux, DP_MSTM_CTRL, + DP_MST_EN | + DP_UP_REQ_EN | + DP_UPSTREAM_IS_SRC); + if (ret < 0) { + drm_dbg_kms(mgr->dev, "mst write failed - undocked during suspend?\n"); + goto out_fail; + } + + /* Some hubs forget their guids after they resume */ + ret = drm_dp_dpcd_read(mgr->aux, DP_GUID, guid, 16); + if (ret != 16) { + drm_dbg_kms(mgr->dev, "dpcd read failed - undocked during suspend?\n"); + goto out_fail; + } + + if (memchr_inv(guid, 0, 16) == NULL) { + tmp64 = get_jiffies_64(); + memcpy(&guid[0], &tmp64, sizeof(u64)); + memcpy(&guid[8], &tmp64, sizeof(u64)); + + ret = drm_dp_dpcd_write(mgr->aux, DP_GUID, guid, 16); + + if (ret != 16) { + drm_dbg_kms(mgr->dev, "check mstb guid failed - undocked during suspend?\n"); + goto out_fail; + } + } + + memcpy(mgr->mst_primary->guid, guid, 16); + +out_fail: + mutex_unlock(&mgr->lock); +} + static void s3_handle_mst(struct drm_device *dev, bool suspend) { struct amdgpu_dm_connector *aconnector; struct drm_connector *connector; struct drm_connector_list_iter iter; struct drm_dp_mst_topology_mgr *mgr; - int ret; - bool need_hotplug = false; drm_connector_list_iter_begin(dev, &iter); drm_for_each_connector_iter(connector, &iter) { @@ -2357,18 +2410,15 @@ if (!dp_is_lttpr_present(aconnector->dc_link)) try_to_configure_aux_timeout(aconnector->dc_link->ddc, LINK_AUX_DEFAULT_TIMEOUT_PERIOD); - ret = drm_dp_mst_topology_mgr_resume(mgr, true); - if (ret < 0) { - dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx, - aconnector->dc_link); - need_hotplug = true; - } + /* TODO: move resume_mst_branch_status() into drm mst resume again + * once topology probing work is pulled out from mst resume into mst + * resume 2nd step. mst resume 2nd step should be called after old + * state getting restored (i.e. drm_atomic_helper_resume()). + */ + resume_mst_branch_status(mgr); } } drm_connector_list_iter_end(&iter); - - if (need_hotplug) - drm_kms_helper_hotplug_event(dev); } static int amdgpu_dm_smu_write_watermarks_table(struct amdgpu_device *adev) @@ -2762,7 +2812,8 @@ struct dm_atomic_state *dm_state = to_dm_atomic_state(dm->atomic_obj.state); enum dc_connection_type new_connection_type = dc_connection_none; struct dc_state *dc_state; - int i, r, j; + int i, r, j, ret; + bool need_hotplug = false; if (amdgpu_in_reset(adev)) { dc_state = dm->cached_dc_state; @@ -2860,7 +2911,7 @@ continue; /* - * this is the case when traversing through already created + * this is the case when traversing through already created end sink * MST connectors, should be skipped */ if (aconnector && aconnector->mst_root) @@ -2920,6 +2971,27 @@ dm->cached_state = NULL; + /* Do mst topology probing after resuming cached state*/ + drm_connector_list_iter_begin(ddev, &iter); + drm_for_each_connector_iter(connector, &iter) { + aconnector = to_amdgpu_dm_connector(connector); + if (aconnector->dc_link->type != dc_connection_mst_branch || + aconnector->mst_root) + continue; + + ret = drm_dp_mst_topology_mgr_resume(&aconnector->mst_mgr, true); + + if (ret < 0) { + dm_helpers_dp_mst_stop_top_mgr(aconnector->dc_link->ctx, + aconnector->dc_link); + need_hotplug = true; + } + } + drm_connector_list_iter_end(&iter); + + if (need_hotplug) + drm_kms_helper_hotplug_event(ddev); + amdgpu_dm_irq_resume_late(adev); amdgpu_dm_smu_write_watermarks_table(adev); @@ -5068,6 +5140,9 @@ if (plane->type == DRM_PLANE_TYPE_CURSOR) return; + if (new_plane_state->rotation != DRM_MODE_ROTATE_0) + goto ffu; + num_clips = drm_plane_get_damage_clips_count(new_plane_state); clips = drm_plane_get_damage_clips(new_plane_state); @@ -5990,8 +6065,6 @@ if (recalculate_timing) drm_mode_set_crtcinfo(&saved_mode, 0); - else - drm_mode_set_crtcinfo(&mode, 0); /* * If scaling is enabled and refresh rate didn't change @@ -6553,6 +6626,8 @@ goto fail; } + drm_mode_set_crtcinfo(mode, 0); + stream = create_validate_stream_for_sink(aconnector, mode, to_dm_connector_state(connector->state), NULL); @@ -7295,7 +7370,7 @@ if (connector_type == DRM_MODE_CONNECTOR_HDMIA) { if (!drm_mode_create_hdmi_colorspace_property(&aconnector->base, supported_colorspaces)) drm_connector_attach_colorspace_property(&aconnector->base); - } else if (connector_type == DRM_MODE_CONNECTOR_DisplayPort || + } else if ((connector_type == DRM_MODE_CONNECTOR_DisplayPort && !aconnector->mst_root) || connector_type == DRM_MODE_CONNECTOR_eDP) { if (!drm_mode_create_dp_colorspace_property(&aconnector->base, supported_colorspaces)) drm_connector_attach_colorspace_property(&aconnector->base); diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c @@ -1054,9 +1054,9 @@ enum controller_dp_color_space test_pattern_color_space = CONTROLLER_DP_COLOR_SPACE_UDEFINED; struct pipe_ctx *odm_pipe; int odm_cnt = 1; - - int width = stream->timing.h_addressable + stream->timing.h_border_left + stream->timing.h_border_right; - int height = stream->timing.v_addressable + stream->timing.v_border_bottom + stream->timing.v_border_top; + int h_active = stream->timing.h_addressable + stream->timing.h_border_left + stream->timing.h_border_right; + int v_active = stream->timing.v_addressable + stream->timing.v_border_bottom + stream->timing.v_border_top; + int odm_slice_width, last_odm_slice_width, offset = 0; if (stream->link->test_pattern_enabled) return; @@ -1066,8 +1066,8 @@ for (odm_pipe = pipe_ctx->next_odm_pipe; odm_pipe; odm_pipe = odm_pipe->next_odm_pipe) odm_cnt++; - - width = width / odm_cnt; + odm_slice_width = h_active / odm_cnt; + last_odm_slice_width = h_active - odm_slice_width * (odm_cnt - 1); if (blank) { dc->hwss.set_abm_immediate_disable(pipe_ctx); @@ -1080,29 +1080,32 @@ test_pattern = CONTROLLER_DP_TEST_PATTERN_VIDEOMODE; } - dc->hwss.set_disp_pattern_generator(dc, - pipe_ctx, - test_pattern, - test_pattern_color_space, - stream->timing.display_color_depth, - &black_color, - width, - height, - 0); + odm_pipe = pipe_ctx; - for (odm_pipe = pipe_ctx->next_odm_pipe; odm_pipe; odm_pipe = odm_pipe->next_odm_pipe) { + while (odm_pipe->next_odm_pipe) { dc->hwss.set_disp_pattern_generator(dc, odm_pipe, - dc->debug.visual_confirm != VISUAL_CONFIRM_DISABLE && blank ? - CONTROLLER_DP_TEST_PATTERN_COLORRAMP : test_pattern, + test_pattern, test_pattern_color_space, stream->timing.display_color_depth, &black_color, - width, - height, - 0); + odm_slice_width, + v_active, + offset); + offset += odm_slice_width; + odm_pipe = odm_pipe->next_odm_pipe; } + dc->hwss.set_disp_pattern_generator(dc, + odm_pipe, + test_pattern, + test_pattern_color_space, + stream->timing.display_color_depth, + &black_color, + last_odm_slice_width, + v_active, + offset); + if (!blank && dc->debug.enable_single_display_2to1_odm_policy) { /* when exiting dynamic ODM need to reinit DPG state for unused pipes */ struct pipe_ctx *old_odm_pipe = dc->current_state->res_ctx.pipe_ctx[pipe_ctx->pipe_idx].next_odm_pipe; @@ -1580,17 +1583,6 @@ || plane_state->update_flags.bits.global_alpha_change || plane_state->update_flags.bits.per_pixel_alpha_change) { // MPCC inst is equal to pipe index in practice - int mpcc_inst = hubp->inst; - int opp_inst; - int opp_count = dc->res_pool->pipe_count; - - for (opp_inst = 0; opp_inst < opp_count; opp_inst++) { - if (dc->res_pool->opps[opp_inst]->mpcc_disconnect_pending[mpcc_inst]) { - dc->res_pool->mpc->funcs->wait_for_idle(dc->res_pool->mpc, mpcc_inst); - dc->res_pool->opps[opp_inst]->mpcc_disconnect_pending[mpcc_inst] = false; - break; - } - } hws->funcs.update_mpcc(dc, pipe_ctx); } diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/display/intel_bios.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/display/intel_bios.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/display/intel_bios.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/display/intel_bios.c @@ -3660,6 +3660,27 @@ return map_aux_ch(devdata->i915, devdata->child.aux_channel); } +bool intel_bios_dp_has_shared_aux_ch(const struct intel_bios_encoder_data *devdata) +{ + struct drm_i915_private *i915; + u8 aux_channel; + int count = 0; + + if (!devdata || !devdata->child.aux_channel) + return false; + + i915 = devdata->i915; + aux_channel = devdata->child.aux_channel; + + list_for_each_entry(devdata, &i915->display.vbt.display_devices, node) { + if (intel_bios_encoder_supports_dp(devdata) && + aux_channel == devdata->child.aux_channel) + count++; + } + + return count > 1; +} + int intel_bios_dp_boost_level(const struct intel_bios_encoder_data *devdata) { if (!devdata || devdata->i915->display.vbt.version < 196 || !devdata->child.iboost) diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/mediatek/mtk_dp.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/mediatek/mtk_dp.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/mediatek/mtk_dp.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/mediatek/mtk_dp.c @@ -847,7 +847,7 @@ u32 phy_status = mtk_dp_read(mtk_dp, MTK_DP_AUX_P0_3628) & AUX_RX_PHY_STATE_AUX_TX_P0_MASK; if (phy_status != AUX_RX_PHY_STATE_AUX_TX_P0_RX_IDLE) { - drm_err(mtk_dp->drm_dev, + dev_err(mtk_dp->dev, "AUX Rx Aux hang, need SW reset\n"); return -EIO; } @@ -2062,7 +2062,7 @@ is_read = true; break; default: - drm_err(mtk_aux->drm_dev, "invalid aux cmd = %d\n", + dev_err(mtk_dp->dev, "invalid aux cmd = %d\n", msg->request); ret = -EINVAL; goto err; @@ -2078,7 +2078,7 @@ to_access, &msg->reply); if (ret) { - drm_info(mtk_dp->drm_dev, + dev_info(mtk_dp->dev, "Failed to do AUX transfer: %d\n", ret); goto err; } diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/a6xx_gpu.c @@ -2489,8 +2489,7 @@ /* Quirk data */ adreno_gpu->info = info; - if (adreno_is_a650(adreno_gpu) || adreno_is_a660_family(adreno_gpu)) - adreno_gpu->base.hw_apriv = true; + adreno_gpu->base.hw_apriv = !!(info->quirks & ADRENO_QUIRK_HAS_HW_APRIV); a6xx_llc_slices_init(pdev, a6xx_gpu); diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/adreno_device.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/adreno_device.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/adreno_device.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/adreno_device.c @@ -275,6 +275,7 @@ }, .gmem = SZ_512K, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT, .init = a6xx_gpu_init, }, { .rev = ADRENO_REV(6, 1, 9, ANY_ID), @@ -286,6 +287,7 @@ }, .gmem = SZ_512K, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT, .init = a6xx_gpu_init, .zapfw = "a615_zap.mdt", .hwcg = a615_hwcg, @@ -299,6 +301,7 @@ }, .gmem = SZ_1M, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT, .init = a6xx_gpu_init, .zapfw = "a630_zap.mdt", .hwcg = a630_hwcg, @@ -312,6 +315,7 @@ }, .gmem = SZ_1M, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT, .init = a6xx_gpu_init, .zapfw = "a640_zap.mdt", .hwcg = a640_hwcg, @@ -325,6 +329,8 @@ }, .gmem = SZ_1M + SZ_128K, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT | + ADRENO_QUIRK_HAS_HW_APRIV, .init = a6xx_gpu_init, .zapfw = "a650_zap.mdt", .hwcg = a650_hwcg, @@ -339,6 +345,8 @@ }, .gmem = SZ_1M + SZ_512K, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT | + ADRENO_QUIRK_HAS_HW_APRIV, .init = a6xx_gpu_init, .zapfw = "a660_zap.mdt", .hwcg = a660_hwcg, @@ -351,6 +359,8 @@ }, .gmem = SZ_512K, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT | + ADRENO_QUIRK_HAS_HW_APRIV, .init = a6xx_gpu_init, .hwcg = a660_hwcg, .address_space_size = SZ_16G, @@ -364,6 +374,7 @@ }, .gmem = SZ_2M, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT, .init = a6xx_gpu_init, .zapfw = "a640_zap.mdt", .hwcg = a640_hwcg, @@ -375,6 +386,8 @@ }, .gmem = SZ_4M, .inactive_period = DRM_MSM_INACTIVE_PERIOD, + .quirks = ADRENO_QUIRK_HAS_CACHED_COHERENT | + ADRENO_QUIRK_HAS_HW_APRIV, .init = a6xx_gpu_init, .zapfw = "a690_zap.mdt", .hwcg = a690_hwcg, @@ -586,9 +599,9 @@ if (ret) return ret; - if (config.rev.core >= 6) - if (!adreno_has_gmu_wrapper(to_adreno_gpu(gpu))) - priv->has_cached_coherent = true; + priv->has_cached_coherent = + !!(info->quirks & ADRENO_QUIRK_HAS_CACHED_COHERENT) && + !adreno_has_gmu_wrapper(to_adreno_gpu(gpu)); return 0; } diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c @@ -1621,7 +1621,7 @@ { VMW_DECLARE_CMD_VAR(*cmd, SVGA3dCmdSetTextureState); SVGA3dTextureState *last_state = (SVGA3dTextureState *) - ((unsigned long) header + header->size + sizeof(header)); + ((unsigned long) header + header->size + sizeof(*header)); SVGA3dTextureState *cur_state = (SVGA3dTextureState *) ((unsigned long) header + sizeof(*cmd)); struct vmw_resource *ctx; diff -u linux-oracle-6.5-6.5.0/drivers/gpu/drm/vmwgfx/vmwgfx_gem.c linux-oracle-6.5-6.5.0/drivers/gpu/drm/vmwgfx/vmwgfx_gem.c --- linux-oracle-6.5-6.5.0/drivers/gpu/drm/vmwgfx/vmwgfx_gem.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/vmwgfx/vmwgfx_gem.c @@ -244,6 +244,7 @@ list_for_each_entry(file, &dev->filelist, lhead) { struct task_struct *task; struct drm_gem_object *gobj; + struct pid *pid; int id; /* @@ -253,8 +254,9 @@ * Therefore, we need to protect this ->comm access using RCU. */ rcu_read_lock(); - task = pid_task(file->pid, PIDTYPE_TGID); - seq_printf(m, "pid %8d command %s:\n", pid_nr(file->pid), + pid = rcu_dereference(file->pid); + task = pid_task(pid, PIDTYPE_TGID); + seq_printf(m, "pid %8d command %s:\n", pid_nr(pid), task ? task->comm : ""); rcu_read_unlock(); diff -u linux-oracle-6.5-6.5.0/drivers/hid/hid-logitech-hidpp.c linux-oracle-6.5-6.5.0/drivers/hid/hid-logitech-hidpp.c --- linux-oracle-6.5-6.5.0/drivers/hid/hid-logitech-hidpp.c +++ linux-oracle-6.5-6.5.0/drivers/hid/hid-logitech-hidpp.c @@ -4515,7 +4515,8 @@ goto hid_hw_init_fail; } - hidpp_connect_event(hidpp); + schedule_work(&hidpp->work); + flush_work(&hidpp->work); if (will_restart) { /* Reset the HID node state */ diff -u linux-oracle-6.5-6.5.0/drivers/hid/hid-nvidia-shield.c linux-oracle-6.5-6.5.0/drivers/hid/hid-nvidia-shield.c --- linux-oracle-6.5-6.5.0/drivers/hid/hid-nvidia-shield.c +++ linux-oracle-6.5-6.5.0/drivers/hid/hid-nvidia-shield.c @@ -482,7 +482,7 @@ led->name = "thunderstrike:blue:led"; led->max_brightness = 1; - led->flags = LED_CORE_SUSPENDRESUME; + led->flags = LED_CORE_SUSPENDRESUME | LED_RETAIN_AT_SHUTDOWN; led->brightness_get = &thunderstrike_led_get_brightness; led->brightness_set = &thunderstrike_led_set_brightness; @@ -694,6 +694,7 @@ err_haptics: if (ts->haptics_dev) input_unregister_device(ts->haptics_dev); + led_classdev_unregister(&ts->led_dev); return ret; } diff -u linux-oracle-6.5-6.5.0/drivers/hwtracing/coresight/coresight-tmc-etr.c linux-oracle-6.5-6.5.0/drivers/hwtracing/coresight/coresight-tmc-etr.c --- linux-oracle-6.5-6.5.0/drivers/hwtracing/coresight/coresight-tmc-etr.c +++ linux-oracle-6.5-6.5.0/drivers/hwtracing/coresight/coresight-tmc-etr.c @@ -1174,16 +1174,6 @@ } /* - * In sysFS mode we can have multiple writers per sink. Since this - * sink is already enabled no memory is needed and the HW need not be - * touched, even if the buffer size has changed. - */ - if (drvdata->mode == CS_MODE_SYSFS) { - atomic_inc(&csdev->refcnt); - goto out; - } - - /* * If we don't have a buffer or it doesn't match the requested size, * use the buffer allocated above. Otherwise reuse the existing buffer. */ @@ -1204,7 +1194,7 @@ static int tmc_enable_etr_sink_sysfs(struct coresight_device *csdev) { - int ret; + int ret = 0; unsigned long flags; struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent); struct etr_buf *sysfs_buf = tmc_etr_get_sysfs_buffer(csdev); @@ -1213,12 +1203,24 @@ return PTR_ERR(sysfs_buf); spin_lock_irqsave(&drvdata->spinlock, flags); + + /* + * In sysFS mode we can have multiple writers per sink. Since this + * sink is already enabled no memory is needed and the HW need not be + * touched, even if the buffer size has changed. + */ + if (drvdata->mode == CS_MODE_SYSFS) { + atomic_inc(&csdev->refcnt); + goto out; + } + ret = tmc_etr_enable_hw(drvdata, sysfs_buf); if (!ret) { drvdata->mode = CS_MODE_SYSFS; atomic_inc(&csdev->refcnt); } +out: spin_unlock_irqrestore(&drvdata->spinlock, flags); if (!ret) diff -u linux-oracle-6.5-6.5.0/drivers/i3c/master/svc-i3c-master.c linux-oracle-6.5-6.5.0/drivers/i3c/master/svc-i3c-master.c --- linux-oracle-6.5-6.5.0/drivers/i3c/master/svc-i3c-master.c +++ linux-oracle-6.5-6.5.0/drivers/i3c/master/svc-i3c-master.c @@ -156,6 +156,7 @@ * @base: I3C master controller * @dev: Corresponding device * @regs: Memory mapping + * @saved_regs: Volatile values for PM operations * @free_slots: Bit array of available slots * @addrs: Array containing the dynamic addresses of each attached device * @descs: Array of descriptors, one per attached device diff -u linux-oracle-6.5-6.5.0/drivers/infiniband/sw/siw/siw_cm.c linux-oracle-6.5-6.5.0/drivers/infiniband/sw/siw/siw_cm.c --- linux-oracle-6.5-6.5.0/drivers/infiniband/sw/siw/siw_cm.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/sw/siw/siw_cm.c @@ -976,6 +976,7 @@ siw_cep_put(cep); new_cep->listen_cep = NULL; if (rv) { + siw_cancel_mpatimer(new_cep); siw_cep_set_free(new_cep); goto error; } @@ -1100,9 +1101,12 @@ /* * Socket close before MPA request received. */ - siw_dbg_cep(cep, "no mpareq: drop listener\n"); - siw_cep_put(cep->listen_cep); - cep->listen_cep = NULL; + if (cep->listen_cep) { + siw_dbg_cep(cep, + "no mpareq: drop listener\n"); + siw_cep_put(cep->listen_cep); + cep->listen_cep = NULL; + } } } release_cep = 1; @@ -1227,7 +1231,11 @@ if (!cep) goto out; - siw_dbg_cep(cep, "state: %d\n", cep->state); + siw_dbg_cep(cep, "cep state: %d, socket state %d\n", + cep->state, sk->sk_state); + + if (sk->sk_state != TCP_ESTABLISHED) + goto out; switch (cep->state) { case SIW_EPSTATE_RDMA_MODE: diff -u linux-oracle-6.5-6.5.0/drivers/infiniband/ulp/srp/ib_srp.c linux-oracle-6.5-6.5.0/drivers/infiniband/ulp/srp/ib_srp.c --- linux-oracle-6.5-6.5.0/drivers/infiniband/ulp/srp/ib_srp.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/ulp/srp/ib_srp.c @@ -2784,7 +2784,6 @@ u32 tag; u16 ch_idx; struct srp_rdma_ch *ch; - int ret; shost_printk(KERN_ERR, target->scsi_host, "SRP abort called\n"); @@ -2798,19 +2797,14 @@ shost_printk(KERN_ERR, target->scsi_host, "Sending SRP abort for tag %#x\n", tag); if (srp_send_tsk_mgmt(ch, tag, scmnd->device->lun, - SRP_TSK_ABORT_TASK, NULL) == 0) - ret = SUCCESS; - else if (target->rport->state == SRP_RPORT_LOST) - ret = FAST_IO_FAIL; - else - ret = FAILED; - if (ret == SUCCESS) { + SRP_TSK_ABORT_TASK, NULL) == 0) { srp_free_req(ch, req, scmnd, 0); - scmnd->result = DID_ABORT << 16; - scsi_done(scmnd); + return SUCCESS; } + if (target->rport->state == SRP_RPORT_LOST) + return FAST_IO_FAIL; - return ret; + return FAILED; } static int srp_reset_device(struct scsi_cmnd *scmnd) diff -u linux-oracle-6.5-6.5.0/drivers/input/serio/i8042-acpipnpio.h linux-oracle-6.5-6.5.0/drivers/input/serio/i8042-acpipnpio.h --- linux-oracle-6.5-6.5.0/drivers/input/serio/i8042-acpipnpio.h +++ linux-oracle-6.5-6.5.0/drivers/input/serio/i8042-acpipnpio.h @@ -619,6 +619,14 @@ .driver_data = (void *)(SERIO_QUIRK_NOMUX) }, { + /* Fujitsu Lifebook E5411 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU CLIENT COMPUTING LIMITED"), + DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK E5411"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOAUX) + }, + { /* Gigabyte M912 */ .matches = { DMI_MATCH(DMI_SYS_VENDOR, "GIGABYTE"), diff -u linux-oracle-6.5-6.5.0/drivers/iommu/intel/iommu.c linux-oracle-6.5-6.5.0/drivers/iommu/intel/iommu.c --- linux-oracle-6.5-6.5.0/drivers/iommu/intel/iommu.c +++ linux-oracle-6.5-6.5.0/drivers/iommu/intel/iommu.c @@ -3020,13 +3020,6 @@ struct intel_iommu *iommu = NULL; unsigned long flag; - for_each_active_iommu(iommu, drhd) { - iommu->iommu_state = kcalloc(MAX_SR_DMAR_REGS, sizeof(u32), - GFP_KERNEL); - if (!iommu->iommu_state) - goto nomem; - } - iommu_flush_all(); for_each_active_iommu(iommu, drhd) { @@ -3046,12 +3039,6 @@ raw_spin_unlock_irqrestore(&iommu->register_lock, flag); } return 0; - -nomem: - for_each_active_iommu(iommu, drhd) - kfree(iommu->iommu_state); - - return -ENOMEM; } static void iommu_resume(void) @@ -3083,9 +3070,6 @@ raw_spin_unlock_irqrestore(&iommu->register_lock, flag); } - - for_each_active_iommu(iommu, drhd) - kfree(iommu->iommu_state); } static struct syscore_ops iommu_syscore_ops = { diff -u linux-oracle-6.5-6.5.0/drivers/iommu/mtk_iommu.c linux-oracle-6.5-6.5.0/drivers/iommu/mtk_iommu.c --- linux-oracle-6.5-6.5.0/drivers/iommu/mtk_iommu.c +++ linux-oracle-6.5-6.5.0/drivers/iommu/mtk_iommu.c @@ -258,7 +258,7 @@ struct device *smicomm_dev; struct mtk_iommu_bank_data *bank; - struct mtk_iommu_domain *share_dom; /* For 2 HWs share pgtable */ + struct mtk_iommu_domain *share_dom; struct regmap *pericfg; struct mutex mutex; /* Protect m4u_group/m4u_dom above */ @@ -625,8 +625,8 @@ struct mtk_iommu_domain *share_dom = data->share_dom; const struct mtk_iommu_iova_region *region; - /* Always use share domain in sharing pgtable case */ - if (MTK_IOMMU_HAS_FLAG(data->plat_data, SHARE_PGTABLE) && share_dom) { + /* Share pgtable when 2 MM IOMMU share the pgtable or one IOMMU use multiple iova ranges */ + if (share_dom) { dom->iop = share_dom->iop; dom->cfg = share_dom->cfg; dom->domain.pgsize_bitmap = share_dom->cfg.pgsize_bitmap; @@ -659,8 +659,7 @@ /* Update our support page sizes bitmap */ dom->domain.pgsize_bitmap = dom->cfg.pgsize_bitmap; - if (MTK_IOMMU_HAS_FLAG(data->plat_data, SHARE_PGTABLE)) - data->share_dom = dom; + data->share_dom = dom; update_iova_region: /* Update the iova region for this domain */ diff -u linux-oracle-6.5-6.5.0/drivers/leds/led-core.c linux-oracle-6.5-6.5.0/drivers/leds/led-core.c --- linux-oracle-6.5-6.5.0/drivers/leds/led-core.c +++ linux-oracle-6.5-6.5.0/drivers/leds/led-core.c @@ -479,10 +479,6 @@ led_parse_fwnode_props(dev, fwnode, &props); - /* We want to label LEDs that can produce full range of colors - * as RGB, not multicolor */ - BUG_ON(props.color == LED_COLOR_ID_MULTI); - if (props.label) { /* * If init_data.devicename is NULL, then it indicates that diff -u linux-oracle-6.5-6.5.0/drivers/md/md.c linux-oracle-6.5-6.5.0/drivers/md/md.c --- linux-oracle-6.5-6.5.0/drivers/md/md.c +++ linux-oracle-6.5-6.5.0/drivers/md/md.c @@ -798,14 +798,14 @@ } else mutex_unlock(&mddev->reconfig_mutex); + md_wakeup_thread(mddev->thread); + wake_up(&mddev->sb_wait); + list_for_each_entry_safe(rdev, tmp, &delete, same_set) { list_del_init(&rdev->same_set); kobject_del(&rdev->kobj); export_rdev(rdev, mddev); } - - md_wakeup_thread(mddev->thread); - wake_up(&mddev->sb_wait); } EXPORT_SYMBOL_GPL(mddev_unlock); @@ -2452,7 +2452,8 @@ if (test_bit(AutoDetected, &rdev->flags)) md_autodetect_dev(rdev->bdev->bd_dev); #endif - blkdev_put(rdev->bdev, mddev->external ? &claim_rdev : rdev); + blkdev_put(rdev->bdev, + test_bit(Holder, &rdev->flags) ? rdev : &claim_rdev); rdev->bdev = NULL; kobject_put(&rdev->kobj); } @@ -3632,6 +3633,7 @@ static struct md_rdev *md_import_device(dev_t newdev, int super_format, int super_minor) { struct md_rdev *rdev; + struct md_rdev *holder; sector_t size; int err; @@ -3646,8 +3648,15 @@ if (err) goto out_clear_rdev; + if (super_format == -2) { + holder = &claim_rdev; + } else { + holder = rdev; + set_bit(Holder, &rdev->flags); + } + rdev->bdev = blkdev_get_by_dev(newdev, BLK_OPEN_READ | BLK_OPEN_WRITE, - super_format == -2 ? &claim_rdev : rdev, NULL); + holder, NULL); if (IS_ERR(rdev->bdev)) { pr_warn("md: could not open device unknown-block(%u,%u).\n", MAJOR(newdev), MINOR(newdev)); @@ -3684,7 +3693,7 @@ return rdev; out_blkdev_put: - blkdev_put(rdev->bdev, super_format == -2 ? &claim_rdev : rdev); + blkdev_put(rdev->bdev, holder); out_clear_rdev: md_rdev_clear(rdev); out_free_rdev: diff -u linux-oracle-6.5-6.5.0/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c linux-oracle-6.5-6.5.0/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c --- linux-oracle-6.5-6.5.0/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c +++ linux-oracle-6.5-6.5.0/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c @@ -355,7 +355,7 @@ void __iomem *const base = cio2->base; u8 lanes, csi2bus = q->csi2.port; u8 sensor_vc = SENSOR_VIR_CH_DFLT; - struct cio2_csi2_timing timing; + struct cio2_csi2_timing timing = { 0 }; int i, r; fmt = cio2_find_format(NULL, &q->subdev_fmt.code); diff -u linux-oracle-6.5-6.5.0/drivers/media/tuners/qt1010.c linux-oracle-6.5-6.5.0/drivers/media/tuners/qt1010.c --- linux-oracle-6.5-6.5.0/drivers/media/tuners/qt1010.c +++ linux-oracle-6.5-6.5.0/drivers/media/tuners/qt1010.c @@ -345,11 +345,12 @@ else valptr = &tmpval; - BUG_ON(i >= ARRAY_SIZE(i2c_data) - 1); - - err = qt1010_init_meas1(priv, i2c_data[i+1].reg, - i2c_data[i].reg, - i2c_data[i].val, valptr); + if (i >= ARRAY_SIZE(i2c_data) - 1) + err = -EIO; + else + err = qt1010_init_meas1(priv, i2c_data[i + 1].reg, + i2c_data[i].reg, + i2c_data[i].val, valptr); i++; break; } diff -u linux-oracle-6.5-6.5.0/drivers/misc/fastrpc.c linux-oracle-6.5-6.5.0/drivers/misc/fastrpc.c --- linux-oracle-6.5-6.5.0/drivers/misc/fastrpc.c +++ linux-oracle-6.5-6.5.0/drivers/misc/fastrpc.c @@ -756,6 +756,7 @@ { struct fastrpc_session_ctx *sess = fl->sctx; struct fastrpc_map *map = NULL; + struct sg_table *table; int err = 0; if (!fastrpc_map_lookup(fl, fd, ppmap, true)) @@ -783,11 +784,12 @@ goto attach_err; } - map->table = dma_buf_map_attachment_unlocked(map->attach, DMA_BIDIRECTIONAL); - if (IS_ERR(map->table)) { - err = PTR_ERR(map->table); + table = dma_buf_map_attachment_unlocked(map->attach, DMA_BIDIRECTIONAL); + if (IS_ERR(table)) { + err = PTR_ERR(table); goto map_err; } + map->table = table; if (attr & FASTRPC_ATTR_SECUREMAP) { map->phys = sg_phys(map->table->sgl); @@ -1871,7 +1873,11 @@ return -EINVAL; } - err = fastrpc_buf_alloc(fl, fl->sctx->dev, req.size, &buf); + if (req.flags == ADSP_MMAP_REMOTE_HEAP_ADDR) + err = fastrpc_remote_heap_alloc(fl, dev, req.size, &buf); + else + err = fastrpc_buf_alloc(fl, dev, req.size, &buf); + if (err) { dev_err(dev, "failed to allocate buffer\n"); return err; @@ -1910,12 +1916,8 @@ /* Add memory to static PD pool, protection thru hypervisor */ if (req.flags == ADSP_MMAP_REMOTE_HEAP_ADDR && fl->cctx->vmcount) { - struct qcom_scm_vmperm perm; - - perm.vmid = QCOM_SCM_VMID_HLOS; - perm.perm = QCOM_SCM_PERM_RWX; - err = qcom_scm_assign_mem(buf->phys, buf->size, - &fl->cctx->perms, &perm, 1); + err = qcom_scm_assign_mem(buf->phys, (u64)buf->size, + &fl->cctx->perms, fl->cctx->vmperms, fl->cctx->vmcount); if (err) { dev_err(fl->sctx->dev, "Failed to assign memory phys 0x%llx size 0x%llx err %d", buf->phys, buf->size, err); diff -u linux-oracle-6.5-6.5.0/drivers/mtd/nand/raw/brcmnand/brcmnand.c linux-oracle-6.5-6.5.0/drivers/mtd/nand/raw/brcmnand/brcmnand.c --- linux-oracle-6.5-6.5.0/drivers/mtd/nand/raw/brcmnand/brcmnand.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/nand/raw/brcmnand/brcmnand.c @@ -272,6 +272,7 @@ const unsigned int *page_sizes; unsigned int page_size_shift; unsigned int max_oob; + u32 ecc_level_shift; u32 features; /* for low-power standby/resume only */ @@ -596,6 +597,34 @@ INTFC_CTLR_READY = BIT(31), }; +/*********************************************************************** + * NAND ACC CONTROL bitfield + * + * Some bits have remained constant throughout hardware revision, while + * others have shifted around. + ***********************************************************************/ + +/* Constant for all versions (where supported) */ +enum { + /* See BRCMNAND_HAS_CACHE_MODE */ + ACC_CONTROL_CACHE_MODE = BIT(22), + + /* See BRCMNAND_HAS_PREFETCH */ + ACC_CONTROL_PREFETCH = BIT(23), + + ACC_CONTROL_PAGE_HIT = BIT(24), + ACC_CONTROL_WR_PREEMPT = BIT(25), + ACC_CONTROL_PARTIAL_PAGE = BIT(26), + ACC_CONTROL_RD_ERASED = BIT(27), + ACC_CONTROL_FAST_PGM_RDIN = BIT(28), + ACC_CONTROL_WR_ECC = BIT(30), + ACC_CONTROL_RD_ECC = BIT(31), +}; + +#define ACC_CONTROL_ECC_SHIFT 16 +/* Only for v7.2 */ +#define ACC_CONTROL_ECC_EXT_SHIFT 13 + static inline bool brcmnand_non_mmio_ops(struct brcmnand_controller *ctrl) { #if IS_ENABLED(CONFIG_MTD_NAND_BRCMNAND_BCMA) @@ -737,6 +766,12 @@ else if (of_property_read_bool(ctrl->dev->of_node, "brcm,nand-has-wp")) ctrl->features |= BRCMNAND_HAS_WP; + /* v7.2 has different ecc level shift in the acc register */ + if (ctrl->nand_version == 0x0702) + ctrl->ecc_level_shift = ACC_CONTROL_ECC_EXT_SHIFT; + else + ctrl->ecc_level_shift = ACC_CONTROL_ECC_SHIFT; + return 0; } @@ -931,30 +966,6 @@ return 0; } -/*********************************************************************** - * NAND ACC CONTROL bitfield - * - * Some bits have remained constant throughout hardware revision, while - * others have shifted around. - ***********************************************************************/ - -/* Constant for all versions (where supported) */ -enum { - /* See BRCMNAND_HAS_CACHE_MODE */ - ACC_CONTROL_CACHE_MODE = BIT(22), - - /* See BRCMNAND_HAS_PREFETCH */ - ACC_CONTROL_PREFETCH = BIT(23), - - ACC_CONTROL_PAGE_HIT = BIT(24), - ACC_CONTROL_WR_PREEMPT = BIT(25), - ACC_CONTROL_PARTIAL_PAGE = BIT(26), - ACC_CONTROL_RD_ERASED = BIT(27), - ACC_CONTROL_FAST_PGM_RDIN = BIT(28), - ACC_CONTROL_WR_ECC = BIT(30), - ACC_CONTROL_RD_ECC = BIT(31), -}; - static inline u32 brcmnand_spare_area_mask(struct brcmnand_controller *ctrl) { if (ctrl->nand_version == 0x0702) @@ -967,18 +978,15 @@ return GENMASK(4, 0); } -#define NAND_ACC_CONTROL_ECC_SHIFT 16 -#define NAND_ACC_CONTROL_ECC_EXT_SHIFT 13 - static inline u32 brcmnand_ecc_level_mask(struct brcmnand_controller *ctrl) { u32 mask = (ctrl->nand_version >= 0x0600) ? 0x1f : 0x0f; - mask <<= NAND_ACC_CONTROL_ECC_SHIFT; + mask <<= ACC_CONTROL_ECC_SHIFT; /* v7.2 includes additional ECC levels */ - if (ctrl->nand_version >= 0x0702) - mask |= 0x7 << NAND_ACC_CONTROL_ECC_EXT_SHIFT; + if (ctrl->nand_version == 0x0702) + mask |= 0x7 << ACC_CONTROL_ECC_EXT_SHIFT; return mask; } @@ -992,8 +1000,8 @@ if (en) { acc_control |= ecc_flags; /* enable RD/WR ECC */ - acc_control |= host->hwcfg.ecc_level - << NAND_ACC_CONTROL_ECC_SHIFT; + acc_control &= ~brcmnand_ecc_level_mask(ctrl); + acc_control |= host->hwcfg.ecc_level << ctrl->ecc_level_shift; } else { acc_control &= ~ecc_flags; /* disable RD/WR ECC */ acc_control &= ~brcmnand_ecc_level_mask(ctrl); @@ -1072,6 +1080,14 @@ cpu_relax(); } while (time_after(limit, jiffies)); + /* + * do a final check after time out in case the CPU was busy and the driver + * did not get enough time to perform the polling to avoid false alarms + */ + val = brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS); + if ((val & mask) == expected_val) + return 0; + dev_warn(ctrl->dev, "timeout on status poll (expected %x got %x)\n", expected_val, val & mask); @@ -1461,19 +1477,33 @@ const u8 *oob, int sas, int sector_1k) { int tbytes = sas << sector_1k; - int j; + int j, k = 0; + u32 last = 0xffffffff; + u8 *plast = (u8 *)&last; /* Adjust OOB values for 1K sector size */ if (sector_1k && (i & 0x01)) tbytes = max(0, tbytes - (int)ctrl->max_oob); tbytes = min_t(int, tbytes, ctrl->max_oob); - for (j = 0; j < tbytes; j += 4) + /* + * tbytes may not be multiple of words. Make sure we don't read out of + * the boundary and stop at last word. + */ + for (j = 0; (j + 3) < tbytes; j += 4) oob_reg_write(ctrl, j, (oob[j + 0] << 24) | (oob[j + 1] << 16) | (oob[j + 2] << 8) | (oob[j + 3] << 0)); + + /* handle the remaing bytes */ + while (j < tbytes) + plast[k++] = oob[j++]; + + if (tbytes & 0x3) + oob_reg_write(ctrl, (tbytes & ~0x3), (__force u32)cpu_to_be32(last)); + return tbytes; } @@ -1592,7 +1622,17 @@ dev_dbg(ctrl->dev, "send native cmd %d addr 0x%llx\n", cmd, cmd_addr); - BUG_ON(ctrl->cmd_pending != 0); + /* + * If we came here through _panic_write and there is a pending + * command, try to wait for it. If it times out, rather than + * hitting BUG_ON, just return so we don't crash while crashing. + */ + if (oops_in_progress) { + if (ctrl->cmd_pending && + bcmnand_ctrl_poll_status(ctrl, NAND_CTRL_RDY, NAND_CTRL_RDY, 0)) + return; + } else + BUG_ON(ctrl->cmd_pending != 0); ctrl->cmd_pending = cmd; ret = bcmnand_ctrl_poll_status(ctrl, NAND_CTRL_RDY, NAND_CTRL_RDY, 0); @@ -2561,7 +2601,7 @@ tmp &= ~brcmnand_ecc_level_mask(ctrl); tmp &= ~brcmnand_spare_area_mask(ctrl); if (ctrl->nand_version >= 0x0302) { - tmp |= cfg->ecc_level << NAND_ACC_CONTROL_ECC_SHIFT; + tmp |= cfg->ecc_level << ctrl->ecc_level_shift; tmp |= cfg->spare_area_size; } nand_writereg(ctrl, acc_control_offs, tmp); diff -u linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/core.c linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/core.c --- linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/core.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/core.c @@ -2898,16 +2898,23 @@ * SFDP standard, or where SFDP tables are not defined at all. * Will replace the spi_nor_manufacturer_init_params() method. */ -static void spi_nor_late_init_params(struct spi_nor *nor) +static int spi_nor_late_init_params(struct spi_nor *nor) { struct spi_nor_flash_parameter *params = nor->params; + int ret; if (nor->manufacturer && nor->manufacturer->fixups && - nor->manufacturer->fixups->late_init) - nor->manufacturer->fixups->late_init(nor); + nor->manufacturer->fixups->late_init) { + ret = nor->manufacturer->fixups->late_init(nor); + if (ret) + return ret; + } - if (nor->info->fixups && nor->info->fixups->late_init) - nor->info->fixups->late_init(nor); + if (nor->info->fixups && nor->info->fixups->late_init) { + ret = nor->info->fixups->late_init(nor); + if (ret) + return ret; + } /* Default method kept for backward compatibility. */ if (!params->set_4byte_addr_mode) @@ -2925,6 +2932,8 @@ if (nor->info->n_banks > 1) params->bank_size = div64_u64(params->size, nor->info->n_banks); + + return 0; } /** @@ -3083,9 +3092,7 @@ spi_nor_init_params_deprecated(nor); } - spi_nor_late_init_params(nor); - - return 0; + return spi_nor_late_init_params(nor); } /** spi_nor_octal_dtr_enable() - enable Octal DTR I/O if needed diff -u linux-oracle-6.5-6.5.0/drivers/mtd/ubi/build.c linux-oracle-6.5-6.5.0/drivers/mtd/ubi/build.c --- linux-oracle-6.5-6.5.0/drivers/mtd/ubi/build.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/ubi/build.c @@ -901,6 +901,13 @@ return -EINVAL; } + /* UBI cannot work on flashes with zero erasesize. */ + if (!mtd->erasesize) { + pr_err("ubi: refuse attaching mtd%d - zero erasesize flash is not supported\n", + mtd->index); + return -EINVAL; + } + if (ubi_num == UBI_DEV_NUM_AUTO) { /* Search for an empty slot in the @ubi_devices array */ for (ubi_num = 0; ubi_num < UBI_MAX_DEVICES; ubi_num++) diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_hsi.h linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_hsi.h --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_hsi.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_hsi.h @@ -2,7 +2,7 @@ * * Copyright (c) 2014-2016 Broadcom Corporation * Copyright (c) 2014-2018 Broadcom Limited - * Copyright (c) 2018-2022 Broadcom Inc. + * Copyright (c) 2018-2023 Broadcom Inc. * * 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 @@ -40,6 +40,8 @@ #define TLV_TYPE_ROCE_SP_COMMAND 0x3UL #define TLV_TYPE_QUERY_ROCE_CC_GEN1 0x4UL #define TLV_TYPE_MODIFY_ROCE_CC_GEN1 0x5UL +#define TLV_TYPE_QUERY_ROCE_CC_GEN2 0x6UL +#define TLV_TYPE_MODIFY_ROCE_CC_GEN2 0x7UL #define TLV_TYPE_ENGINE_CKV_ALIAS_ECC_PUBLIC_KEY 0x8001UL #define TLV_TYPE_ENGINE_CKV_IV 0x8003UL #define TLV_TYPE_ENGINE_CKV_AUTH_TAG 0x8004UL @@ -191,6 +193,14 @@ #define HWRM_QUEUE_VLANPRI2PRI_CFG 0x85UL #define HWRM_QUEUE_GLOBAL_CFG 0x86UL #define HWRM_QUEUE_GLOBAL_QCFG 0x87UL + #define HWRM_QUEUE_ADPTV_QOS_RX_FEATURE_QCFG 0x88UL + #define HWRM_QUEUE_ADPTV_QOS_RX_FEATURE_CFG 0x89UL + #define HWRM_QUEUE_ADPTV_QOS_TX_FEATURE_QCFG 0x8aUL + #define HWRM_QUEUE_ADPTV_QOS_TX_FEATURE_CFG 0x8bUL + #define HWRM_QUEUE_QCAPS 0x8cUL + #define HWRM_QUEUE_ADPTV_QOS_RX_TUNING_QCFG 0x8dUL + #define HWRM_QUEUE_ADPTV_QOS_RX_TUNING_CFG 0x8eUL + #define HWRM_QUEUE_ADPTV_QOS_TX_TUNING_QCFG 0x8fUL #define HWRM_CFA_L2_FILTER_ALLOC 0x90UL #define HWRM_CFA_L2_FILTER_FREE 0x91UL #define HWRM_CFA_L2_FILTER_CFG 0x92UL @@ -209,6 +219,7 @@ #define HWRM_TUNNEL_DST_PORT_QUERY 0xa0UL #define HWRM_TUNNEL_DST_PORT_ALLOC 0xa1UL #define HWRM_TUNNEL_DST_PORT_FREE 0xa2UL + #define HWRM_QUEUE_ADPTV_QOS_TX_TUNING_CFG 0xa3UL #define HWRM_STAT_CTX_ENG_QUERY 0xafUL #define HWRM_STAT_CTX_ALLOC 0xb0UL #define HWRM_STAT_CTX_FREE 0xb1UL @@ -256,6 +267,7 @@ #define HWRM_PORT_EP_TX_CFG 0xdbUL #define HWRM_PORT_CFG 0xdcUL #define HWRM_PORT_QCFG 0xddUL + #define HWRM_PORT_MAC_QCAPS 0xdfUL #define HWRM_TEMP_MONITOR_QUERY 0xe0UL #define HWRM_REG_POWER_QUERY 0xe1UL #define HWRM_CORE_FREQUENCY_QUERY 0xe2UL @@ -315,6 +327,7 @@ #define HWRM_CFA_LAG_GROUP_MEMBER_UNRGTR 0x127UL #define HWRM_CFA_TLS_FILTER_ALLOC 0x128UL #define HWRM_CFA_TLS_FILTER_FREE 0x129UL + #define HWRM_CFA_RELEASE_AFM_FUNC 0x12aUL #define HWRM_ENGINE_CKV_STATUS 0x12eUL #define HWRM_ENGINE_CKV_CKEK_ADD 0x12fUL #define HWRM_ENGINE_CKV_CKEK_DELETE 0x130UL @@ -383,6 +396,13 @@ #define HWRM_FUNC_DBR_RECOVERY_COMPLETED 0x1aaUL #define HWRM_FUNC_SYNCE_CFG 0x1abUL #define HWRM_FUNC_SYNCE_QCFG 0x1acUL + #define HWRM_FUNC_KEY_CTX_FREE 0x1adUL + #define HWRM_FUNC_LAG_MODE_CFG 0x1aeUL + #define HWRM_FUNC_LAG_MODE_QCFG 0x1afUL + #define HWRM_FUNC_LAG_CREATE 0x1b0UL + #define HWRM_FUNC_LAG_UPDATE 0x1b1UL + #define HWRM_FUNC_LAG_FREE 0x1b2UL + #define HWRM_FUNC_LAG_QCFG 0x1b3UL #define HWRM_SELFTEST_QLIST 0x200UL #define HWRM_SELFTEST_EXEC 0x201UL #define HWRM_SELFTEST_IRQ 0x202UL @@ -397,9 +417,9 @@ #define HWRM_MFG_FRU_EEPROM_READ 0x20bUL #define HWRM_MFG_SOC_IMAGE 0x20cUL #define HWRM_MFG_SOC_QSTATUS 0x20dUL - #define HWRM_MFG_PARAM_SEEPROM_SYNC 0x20eUL - #define HWRM_MFG_PARAM_SEEPROM_READ 0x20fUL - #define HWRM_MFG_PARAM_SEEPROM_HEALTH 0x210UL + #define HWRM_MFG_PARAM_CRITICAL_DATA_FINALIZE 0x20eUL + #define HWRM_MFG_PARAM_CRITICAL_DATA_READ 0x20fUL + #define HWRM_MFG_PARAM_CRITICAL_DATA_HEALTH 0x210UL #define HWRM_MFG_PRVSN_EXPORT_CSR 0x211UL #define HWRM_MFG_PRVSN_IMPORT_CERT 0x212UL #define HWRM_MFG_PRVSN_GET_STATE 0x213UL @@ -408,10 +428,20 @@ #define HWRM_MFG_SELFTEST_QLIST 0x216UL #define HWRM_MFG_SELFTEST_EXEC 0x217UL #define HWRM_STAT_GENERIC_QSTATS 0x218UL + #define HWRM_MFG_PRVSN_EXPORT_CERT 0x219UL + #define HWRM_STAT_DB_ERROR_QSTATS 0x21aUL + #define HWRM_UDCC_QCAPS 0x258UL + #define HWRM_UDCC_CFG 0x259UL + #define HWRM_UDCC_QCFG 0x25aUL + #define HWRM_UDCC_SESSION_CFG 0x25bUL + #define HWRM_UDCC_SESSION_QCFG 0x25cUL + #define HWRM_UDCC_SESSION_QUERY 0x25dUL + #define HWRM_UDCC_COMP_CFG 0x25eUL + #define HWRM_UDCC_COMP_QCFG 0x25fUL + #define HWRM_UDCC_COMP_QUERY 0x260UL #define HWRM_TF 0x2bcUL #define HWRM_TF_VERSION_GET 0x2bdUL #define HWRM_TF_SESSION_OPEN 0x2c6UL - #define HWRM_TF_SESSION_ATTACH 0x2c7UL #define HWRM_TF_SESSION_REGISTER 0x2c8UL #define HWRM_TF_SESSION_UNREGISTER 0x2c9UL #define HWRM_TF_SESSION_CLOSE 0x2caUL @@ -426,14 +456,6 @@ #define HWRM_TF_TBL_TYPE_GET 0x2daUL #define HWRM_TF_TBL_TYPE_SET 0x2dbUL #define HWRM_TF_TBL_TYPE_BULK_GET 0x2dcUL - #define HWRM_TF_CTXT_MEM_ALLOC 0x2e2UL - #define HWRM_TF_CTXT_MEM_FREE 0x2e3UL - #define HWRM_TF_CTXT_MEM_RGTR 0x2e4UL - #define HWRM_TF_CTXT_MEM_UNRGTR 0x2e5UL - #define HWRM_TF_EXT_EM_QCAPS 0x2e6UL - #define HWRM_TF_EXT_EM_OP 0x2e7UL - #define HWRM_TF_EXT_EM_CFG 0x2e8UL - #define HWRM_TF_EXT_EM_QCFG 0x2e9UL #define HWRM_TF_EM_INSERT 0x2eaUL #define HWRM_TF_EM_DELETE 0x2ebUL #define HWRM_TF_EM_HASH_INSERT 0x2ecUL @@ -465,6 +487,14 @@ #define HWRM_TFC_IDX_TBL_GET 0x390UL #define HWRM_TFC_IDX_TBL_FREE 0x391UL #define HWRM_TFC_GLOBAL_ID_ALLOC 0x392UL + #define HWRM_TFC_TCAM_SET 0x393UL + #define HWRM_TFC_TCAM_GET 0x394UL + #define HWRM_TFC_TCAM_ALLOC 0x395UL + #define HWRM_TFC_TCAM_ALLOC_SET 0x396UL + #define HWRM_TFC_TCAM_FREE 0x397UL + #define HWRM_TFC_IF_TBL_SET 0x398UL + #define HWRM_TFC_IF_TBL_GET 0x399UL + #define HWRM_TFC_TBL_SCOPE_CONFIG_GET 0x39aUL #define HWRM_SV 0x400UL #define HWRM_DBG_READ_DIRECT 0xff10UL #define HWRM_DBG_READ_INDIRECT 0xff11UL @@ -494,6 +524,8 @@ #define HWRM_DBG_USEQ_RUN 0xff29UL #define HWRM_DBG_USEQ_DELIVERY_REQ 0xff2aUL #define HWRM_DBG_USEQ_RESP_HDR 0xff2bUL + #define HWRM_NVM_GET_VPD_FIELD_INFO 0xffeaUL + #define HWRM_NVM_SET_VPD_FIELD_INFO 0xffebUL #define HWRM_NVM_DEFRAG 0xffecUL #define HWRM_NVM_REQ_ARBITRATION 0xffedUL #define HWRM_NVM_FACTORY_DEFAULTS 0xffeeUL @@ -540,6 +572,7 @@ #define HWRM_ERR_CODE_BUSY 0x10UL #define HWRM_ERR_CODE_RESOURCE_LOCKED 0x11UL #define HWRM_ERR_CODE_PF_UNAVAILABLE 0x12UL + #define HWRM_ERR_CODE_ENTITY_NOT_PRESENT 0x13UL #define HWRM_ERR_CODE_TLV_ENCAPSULATED_RESPONSE 0x8000UL #define HWRM_ERR_CODE_UNKNOWN_ERR 0xfffeUL #define HWRM_ERR_CODE_CMD_NOT_SUPPORTED 0xffffUL @@ -570,9 +603,9 @@ #define HWRM_TARGET_ID_TOOLS 0xFFFD #define HWRM_VERSION_MAJOR 1 #define HWRM_VERSION_MINOR 10 -#define HWRM_VERSION_UPDATE 2 -#define HWRM_VERSION_RSVD 118 -#define HWRM_VERSION_STR "1.10.2.118" +#define HWRM_VERSION_UPDATE 3 +#define HWRM_VERSION_RSVD 15 +#define HWRM_VERSION_STR "1.10.3.15" /* hwrm_ver_get_input (size:192b/24B) */ struct hwrm_ver_get_input { @@ -761,51 +794,54 @@ #define ASYNC_EVENT_CMPL_TYPE_HWRM_ASYNC_EVENT 0x2eUL #define ASYNC_EVENT_CMPL_TYPE_LAST ASYNC_EVENT_CMPL_TYPE_HWRM_ASYNC_EVENT __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_RESET_NOTIFY 0x8UL - #define ASYNC_EVENT_CMPL_EVENT_ID_ERROR_RECOVERY 0x9UL - #define ASYNC_EVENT_CMPL_EVENT_ID_RING_MONITOR_MSG 0xaUL - #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_LLFC_PFC_CHANGE 0x34UL - #define ASYNC_EVENT_CMPL_EVENT_ID_DEFAULT_VNIC_CHANGE 0x35UL - #define ASYNC_EVENT_CMPL_EVENT_ID_HW_FLOW_AGED 0x36UL - #define ASYNC_EVENT_CMPL_EVENT_ID_DEBUG_NOTIFICATION 0x37UL - #define ASYNC_EVENT_CMPL_EVENT_ID_EEM_CACHE_FLUSH_REQ 0x38UL - #define ASYNC_EVENT_CMPL_EVENT_ID_EEM_CACHE_FLUSH_DONE 0x39UL - #define ASYNC_EVENT_CMPL_EVENT_ID_TCP_FLAG_ACTION_CHANGE 0x3aUL - #define ASYNC_EVENT_CMPL_EVENT_ID_EEM_FLOW_ACTIVE 0x3bUL - #define ASYNC_EVENT_CMPL_EVENT_ID_EEM_CFG_CHANGE 0x3cUL - #define ASYNC_EVENT_CMPL_EVENT_ID_TFLIB_DEFAULT_VNIC_CHANGE 0x3dUL - #define ASYNC_EVENT_CMPL_EVENT_ID_TFLIB_LINK_STATUS_CHANGE 0x3eUL - #define ASYNC_EVENT_CMPL_EVENT_ID_QUIESCE_DONE 0x3fUL - #define ASYNC_EVENT_CMPL_EVENT_ID_DEFERRED_RESPONSE 0x40UL - #define ASYNC_EVENT_CMPL_EVENT_ID_PFC_WATCHDOG_CFG_CHANGE 0x41UL - #define ASYNC_EVENT_CMPL_EVENT_ID_ECHO_REQUEST 0x42UL - #define ASYNC_EVENT_CMPL_EVENT_ID_PHC_UPDATE 0x43UL - #define ASYNC_EVENT_CMPL_EVENT_ID_PPS_TIMESTAMP 0x44UL - #define ASYNC_EVENT_CMPL_EVENT_ID_ERROR_REPORT 0x45UL - #define ASYNC_EVENT_CMPL_EVENT_ID_DOORBELL_PACING_THRESHOLD 0x46UL - #define ASYNC_EVENT_CMPL_EVENT_ID_RSS_CHANGE 0x47UL - #define ASYNC_EVENT_CMPL_EVENT_ID_DOORBELL_PACING_NQ_UPDATE 0x48UL - #define ASYNC_EVENT_CMPL_EVENT_ID_MAX_RGTR_EVENT_ID 0x49UL - #define ASYNC_EVENT_CMPL_EVENT_ID_FW_TRACE_MSG 0xfeUL - #define ASYNC_EVENT_CMPL_EVENT_ID_HWRM_ERROR 0xffUL - #define ASYNC_EVENT_CMPL_EVENT_ID_LAST ASYNC_EVENT_CMPL_EVENT_ID_HWRM_ERROR + #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_RESET_NOTIFY 0x8UL + #define ASYNC_EVENT_CMPL_EVENT_ID_ERROR_RECOVERY 0x9UL + #define ASYNC_EVENT_CMPL_EVENT_ID_RING_MONITOR_MSG 0xaUL + #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_LLFC_PFC_CHANGE 0x34UL + #define ASYNC_EVENT_CMPL_EVENT_ID_DEFAULT_VNIC_CHANGE 0x35UL + #define ASYNC_EVENT_CMPL_EVENT_ID_HW_FLOW_AGED 0x36UL + #define ASYNC_EVENT_CMPL_EVENT_ID_DEBUG_NOTIFICATION 0x37UL + #define ASYNC_EVENT_CMPL_EVENT_ID_EEM_CACHE_FLUSH_REQ 0x38UL + #define ASYNC_EVENT_CMPL_EVENT_ID_EEM_CACHE_FLUSH_DONE 0x39UL + #define ASYNC_EVENT_CMPL_EVENT_ID_TCP_FLAG_ACTION_CHANGE 0x3aUL + #define ASYNC_EVENT_CMPL_EVENT_ID_EEM_FLOW_ACTIVE 0x3bUL + #define ASYNC_EVENT_CMPL_EVENT_ID_EEM_CFG_CHANGE 0x3cUL + #define ASYNC_EVENT_CMPL_EVENT_ID_TFLIB_DEFAULT_VNIC_CHANGE 0x3dUL + #define ASYNC_EVENT_CMPL_EVENT_ID_TFLIB_LINK_STATUS_CHANGE 0x3eUL + #define ASYNC_EVENT_CMPL_EVENT_ID_QUIESCE_DONE 0x3fUL + #define ASYNC_EVENT_CMPL_EVENT_ID_DEFERRED_RESPONSE 0x40UL + #define ASYNC_EVENT_CMPL_EVENT_ID_PFC_WATCHDOG_CFG_CHANGE 0x41UL + #define ASYNC_EVENT_CMPL_EVENT_ID_ECHO_REQUEST 0x42UL + #define ASYNC_EVENT_CMPL_EVENT_ID_PHC_UPDATE 0x43UL + #define ASYNC_EVENT_CMPL_EVENT_ID_PPS_TIMESTAMP 0x44UL + #define ASYNC_EVENT_CMPL_EVENT_ID_ERROR_REPORT 0x45UL + #define ASYNC_EVENT_CMPL_EVENT_ID_DOORBELL_PACING_THRESHOLD 0x46UL + #define ASYNC_EVENT_CMPL_EVENT_ID_RSS_CHANGE 0x47UL + #define ASYNC_EVENT_CMPL_EVENT_ID_DOORBELL_PACING_NQ_UPDATE 0x48UL + #define ASYNC_EVENT_CMPL_EVENT_ID_HW_DOORBELL_RECOVERY_READ_ERROR 0x49UL + #define ASYNC_EVENT_CMPL_EVENT_ID_CTX_ERROR 0x4aUL + #define ASYNC_EVENT_CMPL_EVENT_ID_UDCC_SESSION_CHANGE 0x4bUL + #define ASYNC_EVENT_CMPL_EVENT_ID_MAX_RGTR_EVENT_ID 0x4cUL + #define ASYNC_EVENT_CMPL_EVENT_ID_FW_TRACE_MSG 0xfeUL + #define ASYNC_EVENT_CMPL_EVENT_ID_HWRM_ERROR 0xffUL + #define ASYNC_EVENT_CMPL_EVENT_ID_LAST ASYNC_EVENT_CMPL_EVENT_ID_HWRM_ERROR __le32 event_data2; u8 opaque_v; #define ASYNC_EVENT_CMPL_V 0x1UL @@ -1011,6 +1047,7 @@ #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 #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_EVENT_DATA1_TRUSTED_VF_CFG_CHANGE 0x10UL + #define ASYNC_EVENT_CMPL_VF_CFG_CHANGE_EVENT_DATA1_TF_OWNERSHIP_RELEASE 0x20UL }; /* hwrm_async_event_cmpl_default_vnic_change (size:128b/16B) */ @@ -1402,6 +1439,45 @@ #define ASYNC_EVENT_CMPL_ERROR_REPORT_DOORBELL_DROP_THRESHOLD_EVENT_DATA1_EPOCH_SFT 8 }; +/* hwrm_async_event_cmpl_error_report_thermal (size:128b/16B) */ +struct hwrm_async_event_cmpl_error_report_thermal { + __le16 type; + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_TYPE_MASK 0x3fUL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_TYPE_HWRM_ASYNC_EVENT 0x2eUL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_TYPE_LAST ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_TYPE_HWRM_ASYNC_EVENT + __le16 event_id; + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_ID_ERROR_REPORT 0x45UL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_ID_LAST ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_ID_ERROR_REPORT + __le32 event_data2; + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA2_CURRENT_TEMP_MASK 0xffUL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA2_CURRENT_TEMP_SFT 0 + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA2_THRESHOLD_TEMP_MASK 0xff00UL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA2_THRESHOLD_TEMP_SFT 8 + u8 opaque_v; + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_V 0x1UL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_OPAQUE_MASK 0xfeUL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_OPAQUE_SFT 1 + u8 timestamp_lo; + __le16 timestamp_hi; + __le32 event_data1; + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_ERROR_TYPE_MASK 0xffUL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_ERROR_TYPE_SFT 0 + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_ERROR_TYPE_THERMAL_EVENT 0x5UL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_ERROR_TYPE_LAST ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_ERROR_TYPE_THERMAL_EVENT + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_MASK 0x700UL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_SFT 8 + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_WARN (0x0UL << 8) + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_CRITICAL (0x1UL << 8) + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_FATAL (0x2UL << 8) + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_SHUTDOWN (0x3UL << 8) + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_LAST ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_SHUTDOWN + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_TRANSITION_DIR 0x800UL + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_TRANSITION_DIR_DECREASING (0x0UL << 11) + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_TRANSITION_DIR_INCREASING (0x1UL << 11) + #define ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_TRANSITION_DIR_LAST ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_TRANSITION_DIR_INCREASING +}; + /* hwrm_func_reset_input (size:192b/24B) */ struct hwrm_func_reset_input { __le16 req_type; @@ -1502,7 +1578,7 @@ u8 valid; }; -/* hwrm_func_vf_cfg_input (size:448b/56B) */ +/* hwrm_func_vf_cfg_input (size:576b/72B) */ struct hwrm_func_vf_cfg_input { __le16 req_type; __le16 cmpl_ring; @@ -1510,20 +1586,22 @@ __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 - #define FUNC_VF_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS 0x10UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_CMPL_RINGS 0x20UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_TX_RINGS 0x40UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_RX_RINGS 0x80UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_L2_CTXS 0x100UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_VNICS 0x200UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_STAT_CTXS 0x400UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_HW_RING_GRPS 0x800UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_TX_KEY_CTXS 0x1000UL - #define FUNC_VF_CFG_REQ_ENABLES_NUM_RX_KEY_CTXS 0x2000UL + #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 + #define FUNC_VF_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS 0x10UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_CMPL_RINGS 0x20UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_TX_RINGS 0x40UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_RX_RINGS 0x80UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_L2_CTXS 0x100UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_VNICS 0x200UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_STAT_CTXS 0x400UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_HW_RING_GRPS 0x800UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_KTLS_TX_KEY_CTXS 0x1000UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_KTLS_RX_KEY_CTXS 0x2000UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_QUIC_TX_KEY_CTXS 0x4000UL + #define FUNC_VF_CFG_REQ_ENABLES_NUM_QUIC_RX_KEY_CTXS 0x8000UL __le16 mtu; __le16 guest_vlan; __le16 async_event_cr; @@ -1547,8 +1625,12 @@ __le16 num_vnics; __le16 num_stat_ctxs; __le16 num_hw_ring_grps; - __le16 num_tx_key_ctxs; - __le16 num_rx_key_ctxs; + __le32 num_ktls_tx_key_ctxs; + __le32 num_ktls_rx_key_ctxs; + __le16 num_msix; + u8 unused[2]; + __le32 num_quic_tx_key_ctxs; + __le32 num_quic_rx_key_ctxs; }; /* hwrm_func_vf_cfg_output (size:128b/16B) */ @@ -1572,7 +1654,7 @@ u8 unused_0[6]; }; -/* hwrm_func_qcaps_output (size:768b/96B) */ +/* hwrm_func_qcaps_output (size:1088b/136B) */ struct hwrm_func_qcaps_output { __le16 error_code; __le16 req_type; @@ -1676,16 +1758,29 @@ #define FUNC_QCAPS_RESP_MPC_CHNLS_CAP_PRIMATE 0x10UL __le16 max_key_ctxs_alloc; __le32 flags_ext2; - #define FUNC_QCAPS_RESP_FLAGS_EXT2_RX_ALL_PKTS_TIMESTAMPS_SUPPORTED 0x1UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_QUIC_SUPPORTED 0x2UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_KDNET_SUPPORTED 0x4UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_DBR_PACING_EXT_SUPPORTED 0x8UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_SW_DBR_DROP_RECOVERY_SUPPORTED 0x10UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_GENERIC_STATS_SUPPORTED 0x20UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_UDP_GSO_SUPPORTED 0x40UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_SYNCE_SUPPORTED 0x80UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_DBR_PACING_V0_SUPPORTED 0x100UL - #define FUNC_QCAPS_RESP_FLAGS_EXT2_TX_PKT_TS_CMPL_SUPPORTED 0x200UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_RX_ALL_PKTS_TIMESTAMPS_SUPPORTED 0x1UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_QUIC_SUPPORTED 0x2UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_KDNET_SUPPORTED 0x4UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_DBR_PACING_EXT_SUPPORTED 0x8UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_SW_DBR_DROP_RECOVERY_SUPPORTED 0x10UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_GENERIC_STATS_SUPPORTED 0x20UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_UDP_GSO_SUPPORTED 0x40UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_SYNCE_SUPPORTED 0x80UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_DBR_PACING_V0_SUPPORTED 0x100UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_TX_PKT_TS_CMPL_SUPPORTED 0x200UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_HW_LAG_SUPPORTED 0x400UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_ON_CHIP_CTX_SUPPORTED 0x800UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_STEERING_TAG_SUPPORTED 0x1000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_ENHANCED_VF_SCALE_SUPPORTED 0x2000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_KEY_XID_PARTITION_SUPPORTED 0x4000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_CONCURRENT_KTLS_QUIC_SUPPORTED 0x8000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_SCHQ_CROSS_TC_CAP_SUPPORTED 0x10000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_SCHQ_PER_TC_CAP_SUPPORTED 0x20000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_SCHQ_PER_TC_RESERVATION_SUPPORTED 0x40000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_DB_ERROR_STATS_SUPPORTED 0x80000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_ROCE_VF_RESOURCE_MGMT_SUPPORTED 0x100000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_UDCC_SUPPORTED 0x200000UL + #define FUNC_QCAPS_RESP_FLAGS_EXT2_TIMED_TX_SO_TXTIME_SUPPORTED 0x400000UL __le16 tunnel_disable_flag; #define FUNC_QCAPS_RESP_TUNNEL_DISABLE_FLAG_DISABLE_VXLAN 0x1UL #define FUNC_QCAPS_RESP_TUNNEL_DISABLE_FLAG_DISABLE_NGE 0x2UL @@ -1695,7 +1790,21 @@ #define FUNC_QCAPS_RESP_TUNNEL_DISABLE_FLAG_DISABLE_IPINIP 0x20UL #define FUNC_QCAPS_RESP_TUNNEL_DISABLE_FLAG_DISABLE_MPLS 0x40UL #define FUNC_QCAPS_RESP_TUNNEL_DISABLE_FLAG_DISABLE_PPPOE 0x80UL - u8 unused_1; + __le16 xid_partition_cap; + #define FUNC_QCAPS_RESP_XID_PARTITION_CAP_KTLS_TKC 0x1UL + #define FUNC_QCAPS_RESP_XID_PARTITION_CAP_KTLS_RKC 0x2UL + #define FUNC_QCAPS_RESP_XID_PARTITION_CAP_QUIC_TKC 0x4UL + #define FUNC_QCAPS_RESP_XID_PARTITION_CAP_QUIC_RKC 0x8UL + u8 device_serial_number[8]; + __le16 ctxs_per_partition; + u8 unused_2[2]; + __le32 roce_vf_max_av; + __le32 roce_vf_max_cq; + __le32 roce_vf_max_mrw; + __le32 roce_vf_max_qp; + __le32 roce_vf_max_srq; + __le32 roce_vf_max_gid; + u8 unused_3[3]; u8 valid; }; @@ -1710,7 +1819,7 @@ u8 unused_0[6]; }; -/* hwrm_func_qcfg_output (size:896b/112B) */ +/* hwrm_func_qcfg_output (size:1280b/160B) */ struct hwrm_func_qcfg_output { __le16 error_code; __le16 req_type; @@ -1819,7 +1928,7 @@ __le16 alloc_msix; __le16 registered_vfs; __le16 l2_doorbell_bar_size_kb; - u8 unused_1; + u8 active_endpoints; u8 always_1; __le32 reset_addr_poll; __le16 legacy_l2_db_size_kb; @@ -1870,19 +1979,35 @@ #define FUNC_QCFG_RESP_PARTITION_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) #define FUNC_QCFG_RESP_PARTITION_MAX_BW_BW_VALUE_UNIT_LAST FUNC_QCFG_RESP_PARTITION_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 __le16 host_mtu; - __le16 alloc_tx_key_ctxs; - __le16 alloc_rx_key_ctxs; + u8 unused_3[2]; + u8 unused_4[2]; u8 port_kdnet_mode; #define FUNC_QCFG_RESP_PORT_KDNET_MODE_DISABLED 0x0UL #define FUNC_QCFG_RESP_PORT_KDNET_MODE_ENABLED 0x1UL #define FUNC_QCFG_RESP_PORT_KDNET_MODE_LAST FUNC_QCFG_RESP_PORT_KDNET_MODE_ENABLED u8 kdnet_pcie_function; __le16 port_kdnet_fid; - u8 unused_3; + u8 unused_5[2]; + __le32 num_ktls_tx_key_ctxs; + __le32 num_ktls_rx_key_ctxs; + u8 lag_id; + u8 parif; + u8 fw_lag_id; + u8 unused_6; + __le32 num_quic_tx_key_ctxs; + __le32 num_quic_rx_key_ctxs; + __le32 roce_max_av_per_vf; + __le32 roce_max_cq_per_vf; + __le32 roce_max_mrw_per_vf; + __le32 roce_max_qp_per_vf; + __le32 roce_max_srq_per_vf; + __le32 roce_max_gid_per_vf; + __le16 xid_partition_cfg; + u8 unused_7; u8 valid; }; -/* hwrm_func_cfg_input (size:960b/120B) */ +/* hwrm_func_cfg_input (size:1280b/160B) */ struct hwrm_func_cfg_input { __le16 req_type; __le16 cmpl_ring; @@ -1918,7 +2043,6 @@ #define FUNC_CFG_REQ_FLAGS_PPP_PUSH_MODE_DISABLE 0x10000000UL #define FUNC_CFG_REQ_FLAGS_BD_METADATA_ENABLE 0x20000000UL #define FUNC_CFG_REQ_FLAGS_BD_METADATA_DISABLE 0x40000000UL - #define FUNC_CFG_REQ_FLAGS_KEY_CTX_ASSETS_TEST 0x80000000UL __le32 enables; #define FUNC_CFG_REQ_ENABLES_ADMIN_MTU 0x1UL #define FUNC_CFG_REQ_ENABLES_MRU 0x2UL @@ -1950,8 +2074,8 @@ #define FUNC_CFG_REQ_ENABLES_PARTITION_MAX_BW 0x8000000UL #define FUNC_CFG_REQ_ENABLES_TPID 0x10000000UL #define FUNC_CFG_REQ_ENABLES_HOST_MTU 0x20000000UL - #define FUNC_CFG_REQ_ENABLES_TX_KEY_CTXS 0x40000000UL - #define FUNC_CFG_REQ_ENABLES_RX_KEY_CTXS 0x80000000UL + #define FUNC_CFG_REQ_ENABLES_KTLS_TX_KEY_CTXS 0x40000000UL + #define FUNC_CFG_REQ_ENABLES_KTLS_RX_KEY_CTXS 0x80000000UL __le16 admin_mtu; __le16 mru; __le16 num_rsscos_ctxs; @@ -2061,11 +2185,21 @@ #define FUNC_CFG_REQ_PARTITION_MAX_BW_BW_VALUE_UNIT_LAST FUNC_CFG_REQ_PARTITION_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 __be16 tpid; __le16 host_mtu; - __le16 num_tx_key_ctxs; - __le16 num_rx_key_ctxs; + __le32 flags2; + #define FUNC_CFG_REQ_FLAGS2_KTLS_KEY_CTX_ASSETS_TEST 0x1UL + #define FUNC_CFG_REQ_FLAGS2_QUIC_KEY_CTX_ASSETS_TEST 0x2UL __le32 enables2; - #define FUNC_CFG_REQ_ENABLES2_KDNET 0x1UL - #define FUNC_CFG_REQ_ENABLES2_DB_PAGE_SIZE 0x2UL + #define FUNC_CFG_REQ_ENABLES2_KDNET 0x1UL + #define FUNC_CFG_REQ_ENABLES2_DB_PAGE_SIZE 0x2UL + #define FUNC_CFG_REQ_ENABLES2_QUIC_TX_KEY_CTXS 0x4UL + #define FUNC_CFG_REQ_ENABLES2_QUIC_RX_KEY_CTXS 0x8UL + #define FUNC_CFG_REQ_ENABLES2_ROCE_MAX_AV_PER_VF 0x10UL + #define FUNC_CFG_REQ_ENABLES2_ROCE_MAX_CQ_PER_VF 0x20UL + #define FUNC_CFG_REQ_ENABLES2_ROCE_MAX_MRW_PER_VF 0x40UL + #define FUNC_CFG_REQ_ENABLES2_ROCE_MAX_QP_PER_VF 0x80UL + #define FUNC_CFG_REQ_ENABLES2_ROCE_MAX_SRQ_PER_VF 0x100UL + #define FUNC_CFG_REQ_ENABLES2_ROCE_MAX_GID_PER_VF 0x200UL + #define FUNC_CFG_REQ_ENABLES2_XID_PARTITION_CFG 0x400UL u8 port_kdnet_mode; #define FUNC_CFG_REQ_PORT_KDNET_MODE_DISABLED 0x0UL #define FUNC_CFG_REQ_PORT_KDNET_MODE_ENABLED 0x1UL @@ -2083,7 +2217,23 @@ #define FUNC_CFG_REQ_DB_PAGE_SIZE_2MB 0x9UL #define FUNC_CFG_REQ_DB_PAGE_SIZE_4MB 0xaUL #define FUNC_CFG_REQ_DB_PAGE_SIZE_LAST FUNC_CFG_REQ_DB_PAGE_SIZE_4MB - u8 unused_0[6]; + u8 unused_1[2]; + __le32 num_ktls_tx_key_ctxs; + __le32 num_ktls_rx_key_ctxs; + __le32 num_quic_tx_key_ctxs; + __le32 num_quic_rx_key_ctxs; + __le32 roce_max_av_per_vf; + __le32 roce_max_cq_per_vf; + __le32 roce_max_mrw_per_vf; + __le32 roce_max_qp_per_vf; + __le32 roce_max_srq_per_vf; + __le32 roce_max_gid_per_vf; + __le16 xid_partition_cfg; + #define FUNC_CFG_REQ_XID_PARTITION_CFG_KTLS_TKC 0x1UL + #define FUNC_CFG_REQ_XID_PARTITION_CFG_KTLS_RKC 0x2UL + #define FUNC_CFG_REQ_XID_PARTITION_CFG_QUIC_TKC 0x4UL + #define FUNC_CFG_REQ_XID_PARTITION_CFG_QUIC_RKC 0x8UL + __le16 unused_2; }; /* hwrm_func_cfg_output (size:128b/16B) */ @@ -2390,7 +2540,11 @@ __le64 resp_addr; __le32 reserved; __le16 fid; - u8 unused_0[2]; + u8 driver_type; + #define FUNC_DRV_QVER_REQ_DRIVER_TYPE_L2 0x0UL + #define FUNC_DRV_QVER_REQ_DRIVER_TYPE_ROCE 0x1UL + #define FUNC_DRV_QVER_REQ_DRIVER_TYPE_LAST FUNC_DRV_QVER_REQ_DRIVER_TYPE_ROCE + u8 unused_0; }; /* hwrm_func_drv_qver_output (size:256b/32B) */ @@ -2435,7 +2589,7 @@ u8 unused_0[6]; }; -/* hwrm_func_resource_qcaps_output (size:512b/64B) */ +/* hwrm_func_resource_qcaps_output (size:704b/88B) */ struct hwrm_func_resource_qcaps_output { __le16 error_code; __le16 req_type; @@ -2467,15 +2621,20 @@ __le16 max_tx_scheduler_inputs; __le16 flags; #define FUNC_RESOURCE_QCAPS_RESP_FLAGS_MIN_GUARANTEED 0x1UL - __le16 min_tx_key_ctxs; - __le16 max_tx_key_ctxs; - __le16 min_rx_key_ctxs; - __le16 max_rx_key_ctxs; - u8 unused_0[5]; + __le16 min_msix; + __le32 min_ktls_tx_key_ctxs; + __le32 max_ktls_tx_key_ctxs; + __le32 min_ktls_rx_key_ctxs; + __le32 max_ktls_rx_key_ctxs; + __le32 min_quic_tx_key_ctxs; + __le32 max_quic_tx_key_ctxs; + __le32 min_quic_rx_key_ctxs; + __le32 max_quic_rx_key_ctxs; + u8 unused_0[3]; u8 valid; }; -/* hwrm_func_vf_resource_cfg_input (size:512b/64B) */ +/* hwrm_func_vf_resource_cfg_input (size:704b/88B) */ struct hwrm_func_vf_resource_cfg_input { __le16 req_type; __le16 cmpl_ring; @@ -2502,14 +2661,18 @@ __le16 max_hw_ring_grps; __le16 flags; #define FUNC_VF_RESOURCE_CFG_REQ_FLAGS_MIN_GUARANTEED 0x1UL - __le16 min_tx_key_ctxs; - __le16 max_tx_key_ctxs; - __le16 min_rx_key_ctxs; - __le16 max_rx_key_ctxs; - u8 unused_0[2]; + __le16 min_msix; + __le32 min_ktls_tx_key_ctxs; + __le32 max_ktls_tx_key_ctxs; + __le32 min_ktls_rx_key_ctxs; + __le32 max_ktls_rx_key_ctxs; + __le32 min_quic_tx_key_ctxs; + __le32 max_quic_tx_key_ctxs; + __le32 min_quic_rx_key_ctxs; + __le32 max_quic_rx_key_ctxs; }; -/* hwrm_func_vf_resource_cfg_output (size:256b/32B) */ +/* hwrm_func_vf_resource_cfg_output (size:384b/48B) */ struct hwrm_func_vf_resource_cfg_output { __le16 error_code; __le16 req_type; @@ -2523,9 +2686,11 @@ __le16 reserved_vnics; __le16 reserved_stat_ctx; __le16 reserved_hw_ring_grps; - __le16 reserved_tx_key_ctxs; - __le16 reserved_rx_key_ctxs; - u8 unused_0[3]; + __le32 reserved_ktls_tx_key_ctxs; + __le32 reserved_ktls_rx_key_ctxs; + __le32 reserved_quic_tx_key_ctxs; + __le32 reserved_quic_rx_key_ctxs; + u8 unused_0[7]; u8 valid; }; @@ -2592,7 +2757,8 @@ __le16 rkc_entry_size; __le32 tkc_max_entries; __le32 rkc_max_entries; - u8 rsvd1[7]; + __le16 fast_qpmd_qp_num_entries; + u8 rsvd1[5]; u8 valid; }; @@ -2630,27 +2796,28 @@ #define FUNC_BACKING_STORE_CFG_REQ_FLAGS_PREBOOT_MODE 0x1UL #define FUNC_BACKING_STORE_CFG_REQ_FLAGS_MRAV_RESERVATION_SPLIT 0x2UL __le32 enables; - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_QP 0x1UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_SRQ 0x2UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_CQ 0x4UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_VNIC 0x8UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_STAT 0x10UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_SP 0x20UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING0 0x40UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING1 0x80UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING2 0x100UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING3 0x200UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING4 0x400UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING5 0x800UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING6 0x1000UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING7 0x2000UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_MRAV 0x4000UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TIM 0x8000UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING8 0x10000UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING9 0x20000UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING10 0x40000UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TKC 0x80000UL - #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_RKC 0x100000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_QP 0x1UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_SRQ 0x2UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_CQ 0x4UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_VNIC 0x8UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_STAT 0x10UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_SP 0x20UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING0 0x40UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING1 0x80UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING2 0x100UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING3 0x200UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING4 0x400UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING5 0x800UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING6 0x1000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING7 0x2000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_MRAV 0x4000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TIM 0x8000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING8 0x10000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING9 0x20000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_RING10 0x40000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_TKC 0x80000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_RKC 0x100000UL + #define FUNC_BACKING_STORE_CFG_REQ_ENABLES_QP_FAST_QPMD 0x200000UL u8 qpc_pg_size_qpc_lvl; #define FUNC_BACKING_STORE_CFG_REQ_QPC_LVL_MASK 0xfUL #define FUNC_BACKING_STORE_CFG_REQ_QPC_LVL_SFT 0 @@ -3047,7 +3214,7 @@ #define FUNC_BACKING_STORE_CFG_REQ_RKC_PG_SIZE_PG_8M (0x4UL << 4) #define FUNC_BACKING_STORE_CFG_REQ_RKC_PG_SIZE_PG_1G (0x5UL << 4) #define FUNC_BACKING_STORE_CFG_REQ_RKC_PG_SIZE_LAST FUNC_BACKING_STORE_CFG_REQ_RKC_PG_SIZE_PG_1G - u8 rsvd[2]; + __le16 qp_num_fast_qpmd_entries; }; /* hwrm_func_backing_store_cfg_output (size:128b/16B) */ @@ -3344,7 +3511,8 @@ #define FUNC_PTP_CFG_REQ_PTP_FREQ_ADJ_DLL_PHASE_4K 0x1UL #define FUNC_PTP_CFG_REQ_PTP_FREQ_ADJ_DLL_PHASE_8K 0x2UL #define FUNC_PTP_CFG_REQ_PTP_FREQ_ADJ_DLL_PHASE_10M 0x3UL - #define FUNC_PTP_CFG_REQ_PTP_FREQ_ADJ_DLL_PHASE_LAST FUNC_PTP_CFG_REQ_PTP_FREQ_ADJ_DLL_PHASE_10M + #define FUNC_PTP_CFG_REQ_PTP_FREQ_ADJ_DLL_PHASE_25M 0x4UL + #define FUNC_PTP_CFG_REQ_PTP_FREQ_ADJ_DLL_PHASE_LAST FUNC_PTP_CFG_REQ_PTP_FREQ_ADJ_DLL_PHASE_25M u8 unused_0[3]; __le32 ptp_freq_adj_ext_period; __le32 ptp_freq_adj_ext_up; @@ -3477,6 +3645,8 @@ #define FUNC_BACKING_STORE_CFG_V2_REQ_TYPE_CQ_DB_SHADOW 0x19UL #define FUNC_BACKING_STORE_CFG_V2_REQ_TYPE_QUIC_TKC 0x1aUL #define FUNC_BACKING_STORE_CFG_V2_REQ_TYPE_QUIC_RKC 0x1bUL + #define FUNC_BACKING_STORE_CFG_V2_REQ_TYPE_TBL_SCOPE 0x1cUL + #define FUNC_BACKING_STORE_CFG_V2_REQ_TYPE_XID_PARTITION 0x1dUL #define FUNC_BACKING_STORE_CFG_V2_REQ_TYPE_INVALID 0xffffUL #define FUNC_BACKING_STORE_CFG_V2_REQ_TYPE_LAST FUNC_BACKING_STORE_CFG_V2_REQ_TYPE_INVALID __le16 instance; @@ -3528,26 +3698,28 @@ __le16 target_id; __le64 resp_addr; __le16 type; - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_QP 0x0UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_SRQ 0x1UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_CQ 0x2UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_VNIC 0x3UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_STAT 0x4UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_SP_TQM_RING 0x5UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_FP_TQM_RING 0x6UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_MRAV 0xeUL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_TIM 0xfUL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_TKC 0x13UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_RKC 0x14UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_MP_TQM_RING 0x15UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_SQ_DB_SHADOW 0x16UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_RQ_DB_SHADOW 0x17UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_SRQ_DB_SHADOW 0x18UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_CQ_DB_SHADOW 0x19UL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_QUIC_TKC 0x1aUL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_QUIC_RKC 0x1bUL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_INVALID 0xffffUL - #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_LAST FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_INVALID + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_QP 0x0UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_SRQ 0x1UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_CQ 0x2UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_VNIC 0x3UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_STAT 0x4UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_SP_TQM_RING 0x5UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_FP_TQM_RING 0x6UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_MRAV 0xeUL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_TIM 0xfUL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_TKC 0x13UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_RKC 0x14UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_MP_TQM_RING 0x15UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_SQ_DB_SHADOW 0x16UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_RQ_DB_SHADOW 0x17UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_SRQ_DB_SHADOW 0x18UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_CQ_DB_SHADOW 0x19UL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_QUIC_TKC 0x1aUL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_QUIC_RKC 0x1bUL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_TBL_SCOPE 0x1cUL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_XID_PARTITION_TABLE 0x1dUL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_INVALID 0xffffUL + #define FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_LAST FUNC_BACKING_STORE_QCFG_V2_REQ_TYPE_INVALID __le16 instance; u8 rsvd[4]; }; @@ -3559,22 +3731,24 @@ __le16 seq_id; __le16 resp_len; __le16 type; - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_QP 0x0UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_SRQ 0x1UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_CQ 0x2UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_VNIC 0x3UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_STAT 0x4UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_SP_TQM_RING 0x5UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_FP_TQM_RING 0x6UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_MRAV 0xeUL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_TIM 0xfUL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_TKC 0x13UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_RKC 0x14UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_MP_TQM_RING 0x15UL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_QUIC_TKC 0x1aUL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_QUIC_RKC 0x1bUL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_INVALID 0xffffUL - #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_LAST FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_INVALID + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_QP 0x0UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_SRQ 0x1UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_CQ 0x2UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_VNIC 0x3UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_STAT 0x4UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_SP_TQM_RING 0x5UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_FP_TQM_RING 0x6UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_MRAV 0xeUL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_TIM 0xfUL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_TKC 0x13UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_RKC 0x14UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_MP_TQM_RING 0x15UL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_QUIC_TKC 0x1aUL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_QUIC_RKC 0x1bUL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_TBL_SCOPE 0x1cUL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_XID_PARTITION 0x1dUL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_INVALID 0xffffUL + #define FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_LAST FUNC_BACKING_STORE_QCFG_V2_RESP_TYPE_INVALID __le16 instance; __le32 flags; __le64 page_dir; @@ -3609,7 +3783,8 @@ struct qpc_split_entries { __le32 qp_num_l2_entries; __le32 qp_num_qp1_entries; - __le32 rsvd[2]; + __le32 qp_num_fast_qpmd_entries; + __le32 rsvd; }; /* srq_split_entries (size:128b/16B) */ @@ -3640,6 +3815,15 @@ __le32 rsvd2[2]; }; +/* ts_split_entries (size:128b/16B) */ +struct ts_split_entries { + __le32 region_num_entries; + u8 tsid; + u8 lkup_static_bkt_cnt_exp[2]; + u8 rsvd; + __le32 rsvd2[2]; +}; + /* hwrm_func_backing_store_qcaps_v2_input (size:192b/24B) */ struct hwrm_func_backing_store_qcaps_v2_input { __le16 req_type; @@ -3657,8 +3841,8 @@ #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_FP_TQM_RING 0x6UL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_MRAV 0xeUL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_TIM 0xfUL - #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_TKC 0x13UL - #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_RKC 0x14UL + #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_KTLS_TKC 0x13UL + #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_KTLS_RKC 0x14UL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_MP_TQM_RING 0x15UL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_SQ_DB_SHADOW 0x16UL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_RQ_DB_SHADOW 0x17UL @@ -3666,6 +3850,8 @@ #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_CQ_DB_SHADOW 0x19UL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_QUIC_TKC 0x1aUL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_QUIC_RKC 0x1bUL + #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_TBL_SCOPE 0x1cUL + #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_XID_PARTITION 0x1dUL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_INVALID 0xffffUL #define FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_LAST FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_INVALID u8 rsvd[6]; @@ -3687,8 +3873,8 @@ #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_FP_TQM_RING 0x6UL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_MRAV 0xeUL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_TIM 0xfUL - #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_TKC 0x13UL - #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_RKC 0x14UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_KTLS_TKC 0x13UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_KTLS_RKC 0x14UL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_MP_TQM_RING 0x15UL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_SQ_DB_SHADOW 0x16UL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_RQ_DB_SHADOW 0x17UL @@ -3696,13 +3882,16 @@ #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_CQ_DB_SHADOW 0x19UL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_QUIC_TKC 0x1aUL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_QUIC_RKC 0x1bUL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_TBL_SCOPE 0x1cUL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_XID_PARTITION 0x1dUL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_INVALID 0xffffUL #define FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_LAST FUNC_BACKING_STORE_QCAPS_V2_RESP_TYPE_INVALID __le16 entry_size; __le32 flags; - #define FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_ENABLE_CTX_KIND_INIT 0x1UL - #define FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_TYPE_VALID 0x2UL - #define FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_DRIVER_MANAGED_MEMORY 0x4UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_ENABLE_CTX_KIND_INIT 0x1UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_TYPE_VALID 0x2UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_DRIVER_MANAGED_MEMORY 0x4UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_ROCE_QP_PSEUDO_STATIC_ALLOC 0x8UL __le32 instance_bit_map; u8 ctx_init_value; u8 ctx_init_offset; @@ -3712,7 +3901,13 @@ __le32 min_num_entries; __le16 next_valid_type; u8 subtype_valid_cnt; - u8 rsvd2; + u8 exact_cnt_bit_map; + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_EXACT_CNT_BIT_MAP_SPLIT_ENTRY_0_EXACT 0x1UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_EXACT_CNT_BIT_MAP_SPLIT_ENTRY_1_EXACT 0x2UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_EXACT_CNT_BIT_MAP_SPLIT_ENTRY_2_EXACT 0x4UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_EXACT_CNT_BIT_MAP_SPLIT_ENTRY_3_EXACT 0x8UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_EXACT_CNT_BIT_MAP_UNUSED_MASK 0xf0UL + #define FUNC_BACKING_STORE_QCAPS_V2_RESP_EXACT_CNT_BIT_MAP_UNUSED_SFT 4 __le32 split_entry_0; __le32 split_entry_1; __le32 split_entry_2; @@ -3723,56 +3918,55 @@ /* hwrm_func_dbr_pacing_qcfg_input (size:128b/16B) */ struct hwrm_func_dbr_pacing_qcfg_input { - __le16 req_type; - __le16 cmpl_ring; - __le16 seq_id; - __le16 target_id; - __le64 resp_addr; + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; }; /* hwrm_func_dbr_pacing_qcfg_output (size:512b/64B) */ struct hwrm_func_dbr_pacing_qcfg_output { - __le16 error_code; - __le16 req_type; - __le16 seq_id; - __le16 resp_len; - u8 flags; -#define FUNC_DBR_PACING_QCFG_RESP_FLAGS_DBR_NQ_EVENT_ENABLED 0x1UL - u8 unused_0[7]; - __le32 dbr_stat_db_fifo_reg; -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_MASK 0x3UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_SFT 0 -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_PCIE_CFG 0x0UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_GRC 0x1UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_BAR0 0x2UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_BAR1 0x3UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_LAST \ - FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_BAR1 -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_MASK 0xfffffffcUL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SFT 2 - __le32 dbr_stat_db_fifo_reg_watermark_mask; - u8 dbr_stat_db_fifo_reg_watermark_shift; - u8 unused_1[3]; - __le32 dbr_stat_db_fifo_reg_fifo_room_mask; - u8 dbr_stat_db_fifo_reg_fifo_room_shift; - u8 unused_2[3]; - __le32 dbr_throttling_aeq_arm_reg; -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_MASK 0x3UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_SFT 0 -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_PCIE_CFG 0x0UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_GRC 0x1UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_BAR0 0x2UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_BAR1 0x3UL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_LAST \ - FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_BAR1 -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_MASK 0xfffffffcUL -#define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SFT 2 - u8 dbr_throttling_aeq_arm_reg_val; - u8 unused_3[7]; - __le32 primary_nq_id; - __le32 pacing_threshold; - u8 unused_4[7]; - u8 valid; + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 flags; + #define FUNC_DBR_PACING_QCFG_RESP_FLAGS_DBR_NQ_EVENT_ENABLED 0x1UL + u8 unused_0[7]; + __le32 dbr_stat_db_fifo_reg; + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_MASK 0x3UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_SFT 0 + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_PCIE_CFG 0x0UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_GRC 0x1UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_BAR0 0x2UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_BAR1 0x3UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_LAST FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SPACE_BAR1 + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_MASK 0xfffffffcUL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_STAT_DB_FIFO_REG_ADDR_SFT 2 + __le32 dbr_stat_db_fifo_reg_watermark_mask; + u8 dbr_stat_db_fifo_reg_watermark_shift; + u8 unused_1[3]; + __le32 dbr_stat_db_fifo_reg_fifo_room_mask; + u8 dbr_stat_db_fifo_reg_fifo_room_shift; + u8 unused_2[3]; + __le32 dbr_throttling_aeq_arm_reg; + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_MASK 0x3UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_SFT 0 + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_PCIE_CFG 0x0UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_GRC 0x1UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_BAR0 0x2UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_BAR1 0x3UL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_LAST FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SPACE_BAR1 + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_MASK 0xfffffffcUL + #define FUNC_DBR_PACING_QCFG_RESP_DBR_THROTTLING_AEQ_ARM_REG_ADDR_SFT 2 + u8 dbr_throttling_aeq_arm_reg_val; + u8 unused_3[3]; + __le32 dbr_stat_db_max_fifo_depth; + __le32 primary_nq_id; + __le32 pacing_threshold; + u8 unused_4[7]; + u8 valid; }; /* hwrm_func_drv_if_change_input (size:192b/24B) */ @@ -3800,7 +3994,7 @@ u8 valid; }; -/* hwrm_port_phy_cfg_input (size:448b/56B) */ +/* hwrm_port_phy_cfg_input (size:512b/64B) */ struct hwrm_port_phy_cfg_input { __le16 req_type; __le16 cmpl_ring; @@ -3845,6 +4039,8 @@ #define PORT_PHY_CFG_REQ_ENABLES_TX_LPI_TIMER 0x400UL #define PORT_PHY_CFG_REQ_ENABLES_FORCE_PAM4_LINK_SPEED 0x800UL #define PORT_PHY_CFG_REQ_ENABLES_AUTO_PAM4_LINK_SPEED_MASK 0x1000UL + #define PORT_PHY_CFG_REQ_ENABLES_FORCE_LINK_SPEEDS2 0x2000UL + #define PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEEDS2_MASK 0x4000UL __le16 port_id; __le16 force_link_speed; #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_100MB 0x1UL @@ -3875,7 +4071,9 @@ #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; + u8 mgmt_flag; + #define PORT_PHY_CFG_REQ_MGMT_FLAG_LINK_RELEASE 0x1UL + #define PORT_PHY_CFG_REQ_MGMT_FLAG_MGMT_VALID 0x80UL __le16 auto_link_speed; #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_100MB 0x1UL #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEED_1GB 0xaUL @@ -3939,7 +4137,36 @@ #define PORT_PHY_CFG_REQ_AUTO_LINK_PAM4_SPEED_MASK_50G 0x1UL #define PORT_PHY_CFG_REQ_AUTO_LINK_PAM4_SPEED_MASK_100G 0x2UL #define PORT_PHY_CFG_REQ_AUTO_LINK_PAM4_SPEED_MASK_200G 0x4UL - u8 unused_2[2]; + __le16 force_link_speeds2; + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_1GB 0xaUL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_10GB 0x64UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_25GB 0xfaUL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_40GB 0x190UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_50GB 0x1f4UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_100GB 0x3e8UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_50GB_PAM4_56 0x1f5UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_100GB_PAM4_56 0x3e9UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_200GB_PAM4_56 0x7d1UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_400GB_PAM4_56 0xfa1UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_100GB_PAM4_112 0x3eaUL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_200GB_PAM4_112 0x7d2UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_400GB_PAM4_112 0xfa2UL + #define PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_LAST PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_400GB_PAM4_112 + __le16 auto_link_speeds2_mask; + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_1GB 0x1UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_10GB 0x2UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_25GB 0x4UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_40GB 0x8UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_50GB 0x10UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_100GB 0x20UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_50GB_PAM4_56 0x40UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_100GB_PAM4_56 0x80UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_200GB_PAM4_56 0x100UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_400GB_PAM4_56 0x200UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_100GB_PAM4_112 0x400UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_200GB_PAM4_112 0x800UL + #define PORT_PHY_CFG_REQ_AUTO_LINK_SPEEDS2_MASK_400GB_PAM4_112 0x1000UL + u8 unused_2[6]; }; /* hwrm_port_phy_cfg_output (size:128b/16B) */ @@ -3989,7 +4216,8 @@ #define PORT_PHY_QCFG_RESP_SIGNAL_MODE_SFT 0 #define PORT_PHY_QCFG_RESP_SIGNAL_MODE_NRZ 0x0UL #define PORT_PHY_QCFG_RESP_SIGNAL_MODE_PAM4 0x1UL - #define PORT_PHY_QCFG_RESP_SIGNAL_MODE_LAST PORT_PHY_QCFG_RESP_SIGNAL_MODE_PAM4 + #define PORT_PHY_QCFG_RESP_SIGNAL_MODE_PAM4_112 0x2UL + #define PORT_PHY_QCFG_RESP_SIGNAL_MODE_LAST PORT_PHY_QCFG_RESP_SIGNAL_MODE_PAM4_112 #define PORT_PHY_QCFG_RESP_ACTIVE_FEC_MASK 0xf0UL #define PORT_PHY_QCFG_RESP_ACTIVE_FEC_SFT 4 #define PORT_PHY_QCFG_RESP_ACTIVE_FEC_FEC_NONE_ACTIVE (0x0UL << 4) @@ -4012,6 +4240,7 @@ #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_200GB 0x7d0UL + #define PORT_PHY_QCFG_RESP_LINK_SPEED_400GB 0xfa0UL #define PORT_PHY_QCFG_RESP_LINK_SPEED_10MB 0xffffUL #define PORT_PHY_QCFG_RESP_LINK_SPEED_LAST PORT_PHY_QCFG_RESP_LINK_SPEED_10MB u8 duplex_cfg; @@ -4155,7 +4384,23 @@ #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASESR2 0x25UL #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASELR2 0x26UL #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASEER2 0x27UL - #define PORT_PHY_QCFG_RESP_PHY_TYPE_LAST PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASEER2 + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASECR 0x28UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASESR 0x29UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASELR 0x2aUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASEER 0x2bUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASECR2 0x2cUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASESR2 0x2dUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASELR2 0x2eUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASEER2 0x2fUL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASECR8 0x30UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASESR8 0x31UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASELR8 0x32UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASEER8 0x33UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASECR4 0x34UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASESR4 0x35UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASELR4 0x36UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASEER4 0x37UL + #define PORT_PHY_QCFG_RESP_PHY_TYPE_LAST PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASEER4 u8 media_type; #define PORT_PHY_QCFG_RESP_MEDIA_TYPE_UNKNOWN 0x0UL #define PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP 0x1UL @@ -4251,6 +4496,7 @@ u8 option_flags; #define PORT_PHY_QCFG_RESP_OPTION_FLAGS_MEDIA_AUTO_DETECT 0x1UL #define PORT_PHY_QCFG_RESP_OPTION_FLAGS_SIGNAL_MODE_KNOWN 0x2UL + #define PORT_PHY_QCFG_RESP_OPTION_FLAGS_SPEEDS2_SUPPORTED 0x4UL char phy_vendor_name[16]; char phy_vendor_partnumber[16]; __le16 support_pam4_speeds; @@ -4272,7 +4518,53 @@ #define PORT_PHY_QCFG_RESP_LINK_PARTNER_PAM4_ADV_SPEEDS_200GB 0x4UL u8 link_down_reason; #define PORT_PHY_QCFG_RESP_LINK_DOWN_REASON_RF 0x1UL - u8 unused_0[7]; + __le16 support_speeds2; + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_1GB 0x1UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_10GB 0x2UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_25GB 0x4UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_40GB 0x8UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_50GB 0x10UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_100GB 0x20UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_50GB_PAM4_56 0x40UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_100GB_PAM4_56 0x80UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_200GB_PAM4_56 0x100UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_400GB_PAM4_56 0x200UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_100GB_PAM4_112 0x400UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_200GB_PAM4_112 0x800UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_400GB_PAM4_112 0x1000UL + #define PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_800GB_PAM4_112 0x2000UL + __le16 force_link_speeds2; + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_1GB 0xaUL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_10GB 0x64UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_25GB 0xfaUL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_40GB 0x190UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_50GB 0x1f4UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_100GB 0x3e8UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_50GB_PAM4_56 0x1f5UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_100GB_PAM4_56 0x3e9UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_200GB_PAM4_56 0x7d1UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_400GB_PAM4_56 0xfa1UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_100GB_PAM4_112 0x3eaUL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_200GB_PAM4_112 0x7d2UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_400GB_PAM4_112 0xfa2UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_800GB_PAM4_112 0x1f42UL + #define PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_LAST PORT_PHY_QCFG_RESP_FORCE_LINK_SPEEDS2_800GB_PAM4_112 + __le16 auto_link_speeds2; + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_1GB 0x1UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_10GB 0x2UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_25GB 0x4UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_40GB 0x8UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_50GB 0x10UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_100GB 0x20UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_50GB_PAM4_56 0x40UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_100GB_PAM4_56 0x80UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_200GB_PAM4_56 0x100UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_400GB_PAM4_56 0x200UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_100GB_PAM4_112 0x400UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_200GB_PAM4_112 0x800UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_400GB_PAM4_112 0x1000UL + #define PORT_PHY_QCFG_RESP_AUTO_LINK_SPEEDS2_800GB_PAM4_112 0x2000UL + u8 active_lanes; u8 valid; }; @@ -4311,6 +4603,7 @@ #define PORT_MAC_CFG_REQ_ENABLES_COS_FIELD_CFG 0x100UL #define PORT_MAC_CFG_REQ_ENABLES_PTP_FREQ_ADJ_PPB 0x200UL #define PORT_MAC_CFG_REQ_ENABLES_PTP_ADJ_PHASE 0x400UL + #define PORT_MAC_CFG_REQ_ENABLES_PTP_LOAD_CONTROL 0x800UL __le16 port_id; u8 ipg; u8 lpbk; @@ -4344,7 +4637,12 @@ #define PORT_MAC_CFG_REQ_COS_FIELD_CFG_DEFAULT_COS_SFT 5 u8 unused_0[3]; __le32 ptp_freq_adj_ppb; - u8 unused_1[4]; + u8 unused_1[3]; + u8 ptp_load_control; + #define PORT_MAC_CFG_REQ_PTP_LOAD_CONTROL_NONE 0x0UL + #define PORT_MAC_CFG_REQ_PTP_LOAD_CONTROL_IMMEDIATE 0x1UL + #define PORT_MAC_CFG_REQ_PTP_LOAD_CONTROL_PPS_EVENT 0x2UL + #define PORT_MAC_CFG_REQ_PTP_LOAD_CONTROL_LAST PORT_MAC_CFG_REQ_PTP_LOAD_CONTROL_PPS_EVENT __le64 ptp_adj_phase; }; @@ -4389,6 +4687,7 @@ #define PORT_MAC_PTP_QCFG_RESP_FLAGS_HWRM_ACCESS 0x8UL #define PORT_MAC_PTP_QCFG_RESP_FLAGS_PARTIAL_DIRECT_ACCESS_REF_CLOCK 0x10UL #define PORT_MAC_PTP_QCFG_RESP_FLAGS_RTC_CONFIGURED 0x20UL + #define PORT_MAC_PTP_QCFG_RESP_FLAGS_64B_PHC_TIME 0x40UL u8 unused_0[3]; __le32 rx_ts_reg_off_lower; __le32 rx_ts_reg_off_upper; @@ -4599,7 +4898,7 @@ __le64 pfc_pri7_tx_transitions; }; -/* rx_port_stats_ext (size:3776b/472B) */ +/* rx_port_stats_ext (size:3904b/488B) */ struct rx_port_stats_ext { __le64 link_down_events; __le64 continuous_pause_events; @@ -4660,6 +4959,8 @@ __le64 rx_discard_packets_cos7; __le64 rx_fec_corrected_blocks; __le64 rx_fec_uncorrectable_blocks; + __le64 rx_filter_miss; + __le64 rx_fec_symbol_err; }; /* hwrm_port_qstats_ext_input (size:320b/40B) */ @@ -4851,7 +5152,7 @@ u8 unused_0[6]; }; -/* hwrm_port_phy_qcaps_output (size:256b/32B) */ +/* hwrm_port_phy_qcaps_output (size:320b/40B) */ struct hwrm_port_phy_qcaps_output { __le16 error_code; __le16 req_type; @@ -4934,7 +5235,40 @@ #define PORT_PHY_QCAPS_RESP_FLAGS2_PAUSE_UNSUPPORTED 0x1UL #define PORT_PHY_QCAPS_RESP_FLAGS2_PFC_UNSUPPORTED 0x2UL #define PORT_PHY_QCAPS_RESP_FLAGS2_BANK_ADDR_SUPPORTED 0x4UL + #define PORT_PHY_QCAPS_RESP_FLAGS2_SPEEDS2_SUPPORTED 0x8UL u8 internal_port_cnt; + u8 unused_0; + __le16 supported_speeds2_force_mode; + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_1GB 0x1UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_10GB 0x2UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_25GB 0x4UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_40GB 0x8UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_50GB 0x10UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_100GB 0x20UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_50GB_PAM4_56 0x40UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_100GB_PAM4_56 0x80UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_200GB_PAM4_56 0x100UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_400GB_PAM4_56 0x200UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_100GB_PAM4_112 0x400UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_200GB_PAM4_112 0x800UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_400GB_PAM4_112 0x1000UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_FORCE_MODE_800GB_PAM4_112 0x2000UL + __le16 supported_speeds2_auto_mode; + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_1GB 0x1UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_10GB 0x2UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_25GB 0x4UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_40GB 0x8UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_50GB 0x10UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_100GB 0x20UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_50GB_PAM4_56 0x40UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_100GB_PAM4_56 0x80UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_200GB_PAM4_56 0x100UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_400GB_PAM4_56 0x200UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_100GB_PAM4_112 0x400UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_200GB_PAM4_112 0x800UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_400GB_PAM4_112 0x1000UL + #define PORT_PHY_QCAPS_RESP_SUPPORTED_SPEEDS2_AUTO_MODE_800GB_PAM4_112 0x2000UL + u8 unused_1[3]; u8 valid; }; @@ -5355,6 +5689,30 @@ u8 valid; }; +/* hwrm_port_mac_qcaps_input (size:192b/24B) */ +struct hwrm_port_mac_qcaps_input { + __le16 req_type; + __le16 cmpl_ring; + __le16 seq_id; + __le16 target_id; + __le64 resp_addr; + __le16 port_id; + u8 unused_0[6]; +}; + +/* hwrm_port_mac_qcaps_output (size:128b/16B) */ +struct hwrm_port_mac_qcaps_output { + __le16 error_code; + __le16 req_type; + __le16 seq_id; + __le16 resp_len; + u8 flags; + #define PORT_MAC_QCAPS_RESP_FLAGS_LOCAL_LPBK_NOT_SUPPORTED 0x1UL + #define PORT_MAC_QCAPS_RESP_FLAGS_REMOTE_LPBK_SUPPORTED 0x2UL + u8 unused_0[6]; + u8 valid; +}; + /* hwrm_queue_qportcfg_input (size:192b/24B) */ struct hwrm_queue_qportcfg_input { __le16 req_type; @@ -5793,286 +6151,48 @@ #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; + struct { + u8 queue_id; + __le32 queue_id_min_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id_max_bw; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_SCALE_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id_tsa_assign; + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_QCFG_RESP_QUEUE_ID_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id_pri_lvl; + u8 queue_id_bw_weight; + } __packed cfg[7]; u8 unused_2[4]; u8 valid; }; @@ -6136,286 +6256,48 @@ #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; + struct { + u8 queue_id; + __le32 queue_id_min_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MIN_BW_BW_VALUE_UNIT_INVALID + __le32 queue_id_max_bw; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_MASK 0xfffffffUL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_SFT 0 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_SCALE 0x10000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_SCALE_BITS (0x0UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_SCALE_BYTES (0x1UL << 28) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_SCALE_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_SCALE_BYTES + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_MASK 0xe0000000UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_SFT 29 + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_MEGA (0x0UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_KILO (0x2UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_BASE (0x4UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_GIGA (0x6UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_INVALID (0x7UL << 29) + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_LAST QUEUE_COS2BW_CFG_REQ_QUEUE_ID_MAX_BW_BW_VALUE_UNIT_INVALID + u8 queue_id_tsa_assign; + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_TSA_ASSIGN_SP 0x0UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_TSA_ASSIGN_ETS 0x1UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_TSA_ASSIGN_RESERVED_FIRST 0x2UL + #define QUEUE_COS2BW_CFG_REQ_QUEUE_ID_TSA_ASSIGN_RESERVED_LAST 0xffUL + u8 queue_id_pri_lvl; + u8 queue_id_bw_weight; + } __packed cfg[7]; u8 unused_1[5]; }; @@ -6568,6 +6450,7 @@ #define VNIC_CFG_REQ_FLAGS_ROCE_ONLY_VNIC_MODE 0x10UL #define VNIC_CFG_REQ_FLAGS_RSS_DFLT_CR_MODE 0x20UL #define VNIC_CFG_REQ_FLAGS_ROCE_MIRRORING_CAPABLE_VNIC_MODE 0x40UL + #define VNIC_CFG_REQ_FLAGS_PORTCOS_MAPPING_MODE 0x80UL __le32 enables; #define VNIC_CFG_REQ_ENABLES_DFLT_RING_GRP 0x1UL #define VNIC_CFG_REQ_ENABLES_RSS_RULE 0x2UL @@ -6657,12 +6540,16 @@ #define VNIC_QCAPS_RESP_FLAGS_RSS_IPSEC_AH_SPI_IPV6_CAP 0x800000UL #define VNIC_QCAPS_RESP_FLAGS_RSS_IPSEC_ESP_SPI_IPV6_CAP 0x1000000UL #define VNIC_QCAPS_RESP_FLAGS_OUTERMOST_RSS_TRUSTED_VF_CAP 0x2000000UL + #define VNIC_QCAPS_RESP_FLAGS_PORTCOS_MAPPING_MODE 0x4000000UL + #define VNIC_QCAPS_RESP_FLAGS_RSS_PROF_TCAM_MODE_ENABLED 0x8000000UL + #define VNIC_QCAPS_RESP_FLAGS_VNIC_RSS_HASH_MODE_CAP 0x10000000UL + #define VNIC_QCAPS_RESP_FLAGS_HW_TUNNEL_TPA_CAP 0x20000000UL __le16 max_aggs_supported; u8 unused_1[5]; u8 valid; }; -/* hwrm_vnic_tpa_cfg_input (size:320b/40B) */ +/* hwrm_vnic_tpa_cfg_input (size:384b/48B) */ struct hwrm_vnic_tpa_cfg_input { __le16 req_type; __le16 cmpl_ring; @@ -6684,6 +6571,7 @@ #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 + #define VNIC_TPA_CFG_REQ_ENABLES_TNL_TPA_EN 0x10UL __le16 vnic_id; __le16 max_agg_segs; #define VNIC_TPA_CFG_REQ_MAX_AGG_SEGS_1 0x0UL @@ -6703,6 +6591,25 @@ u8 unused_0[2]; __le32 max_agg_timer; __le32 min_agg_len; + __le32 tnl_tpa_en_bitmap; + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_VXLAN 0x1UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_GENEVE 0x2UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_NVGRE 0x4UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_GRE 0x8UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_IPV4 0x10UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_IPV6 0x20UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_VXLAN_GPE 0x40UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_VXLAN_CUST1 0x80UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_GRE_CUST1 0x100UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_UPAR1 0x200UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_UPAR2 0x400UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_UPAR3 0x800UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_UPAR4 0x1000UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_UPAR5 0x2000UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_UPAR6 0x4000UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_UPAR7 0x8000UL + #define VNIC_TPA_CFG_REQ_TNL_TPA_EN_BITMAP_UPAR8 0x10000UL + u8 unused_1[4]; }; /* hwrm_vnic_tpa_cfg_output (size:128b/16B) */ @@ -6758,7 +6665,25 @@ #define VNIC_TPA_QCFG_RESP_MAX_AGGS_LAST VNIC_TPA_QCFG_RESP_MAX_AGGS_MAX __le32 max_agg_timer; __le32 min_agg_len; - u8 unused_0[7]; + __le32 tnl_tpa_en_bitmap; + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_VXLAN 0x1UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_GENEVE 0x2UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_NVGRE 0x4UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_GRE 0x8UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_IPV4 0x10UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_IPV6 0x20UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_VXLAN_GPE 0x40UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_VXLAN_CUST1 0x80UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_GRE_CUST1 0x100UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_UPAR1 0x200UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_UPAR2 0x400UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_UPAR3 0x800UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_UPAR4 0x1000UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_UPAR5 0x2000UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_UPAR6 0x4000UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_UPAR7 0x8000UL + #define VNIC_TPA_QCFG_RESP_TNL_TPA_EN_BITMAP_UPAR8 0x10000UL + u8 unused_0[3]; u8 valid; }; @@ -6793,8 +6718,9 @@ __le64 hash_key_tbl_addr; __le16 rss_ctx_idx; u8 flags; - #define VNIC_RSS_CFG_REQ_FLAGS_HASH_TYPE_INCLUDE 0x1UL - #define VNIC_RSS_CFG_REQ_FLAGS_HASH_TYPE_EXCLUDE 0x2UL + #define VNIC_RSS_CFG_REQ_FLAGS_HASH_TYPE_INCLUDE 0x1UL + #define VNIC_RSS_CFG_REQ_FLAGS_HASH_TYPE_EXCLUDE 0x2UL + #define VNIC_RSS_CFG_REQ_FLAGS_IPSEC_HASH_TYPE_CFG_SUPPORT 0x4UL u8 ring_select_mode; #define VNIC_RSS_CFG_REQ_RING_SELECT_MODE_TOEPLITZ 0x0UL #define VNIC_RSS_CFG_REQ_RING_SELECT_MODE_XOR 0x1UL @@ -6956,14 +6882,15 @@ __le16 target_id; __le64 resp_addr; __le32 enables; - #define RING_ALLOC_REQ_ENABLES_RING_ARB_CFG 0x2UL - #define RING_ALLOC_REQ_ENABLES_STAT_CTX_ID_VALID 0x8UL - #define RING_ALLOC_REQ_ENABLES_MAX_BW_VALID 0x20UL - #define RING_ALLOC_REQ_ENABLES_RX_RING_ID_VALID 0x40UL - #define RING_ALLOC_REQ_ENABLES_NQ_RING_ID_VALID 0x80UL - #define RING_ALLOC_REQ_ENABLES_RX_BUF_SIZE_VALID 0x100UL - #define RING_ALLOC_REQ_ENABLES_SCHQ_ID 0x200UL - #define RING_ALLOC_REQ_ENABLES_MPC_CHNLS_TYPE 0x400UL + #define RING_ALLOC_REQ_ENABLES_RING_ARB_CFG 0x2UL + #define RING_ALLOC_REQ_ENABLES_STAT_CTX_ID_VALID 0x8UL + #define RING_ALLOC_REQ_ENABLES_MAX_BW_VALID 0x20UL + #define RING_ALLOC_REQ_ENABLES_RX_RING_ID_VALID 0x40UL + #define RING_ALLOC_REQ_ENABLES_NQ_RING_ID_VALID 0x80UL + #define RING_ALLOC_REQ_ENABLES_RX_BUF_SIZE_VALID 0x100UL + #define RING_ALLOC_REQ_ENABLES_SCHQ_ID 0x200UL + #define RING_ALLOC_REQ_ENABLES_MPC_CHNLS_TYPE 0x400UL + #define RING_ALLOC_REQ_ENABLES_STEERING_TAG_VALID 0x800UL u8 ring_type; #define RING_ALLOC_REQ_RING_TYPE_L2_CMPL 0x0UL #define RING_ALLOC_REQ_RING_TYPE_TX 0x1UL @@ -7017,7 +6944,7 @@ #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 - __le16 unused_3; + __le16 steering_tag; __le32 reserved3; __le32 stat_ctx_id; __le32 reserved4; @@ -7393,6 +7320,7 @@ #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPGRE_V1 0xaUL #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_L2_ETYPE 0xbUL #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE_V6 0xcUL + #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE 0x10UL #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL #define CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_LAST CFA_L2_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL u8 unused_4; @@ -7575,6 +7503,7 @@ #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPGRE_V1 0xaUL #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_L2_ETYPE 0xbUL #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE_V6 0xcUL + #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE 0x10UL #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL #define CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_LAST CFA_TUNNEL_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL u8 tunnel_flags; @@ -7709,7 +7638,8 @@ #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_IPGRE_V1 0xaUL #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_L2_ETYPE 0xbUL #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_VXLAN_GPE_V6 0xcUL - #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_LAST CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_VXLAN_GPE_V6 + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_VXLAN_GPE 0x10UL + #define CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_LAST CFA_ENCAP_RECORD_ALLOC_REQ_ENCAP_TYPE_VXLAN_GPE u8 unused_0[3]; __le32 encap_data[20]; }; @@ -7799,7 +7729,7 @@ #define CFA_NTUPLE_FILTER_ALLOC_REQ_IP_PROTOCOL_RSVD 0xffUL #define CFA_NTUPLE_FILTER_ALLOC_REQ_IP_PROTOCOL_LAST CFA_NTUPLE_FILTER_ALLOC_REQ_IP_PROTOCOL_RSVD __le16 dst_id; - __le16 mirror_vnic_id; + __le16 rfs_ring_tbl_idx; u8 tunnel_type; #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_NONTUNNEL 0x0UL #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN 0x1UL @@ -7814,6 +7744,7 @@ #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPGRE_V1 0xaUL #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_L2_ETYPE 0xbUL #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE_V6 0xcUL + #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE 0x10UL #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL #define CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_LAST CFA_NTUPLE_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL u8 pri_hint; @@ -7961,6 +7892,7 @@ #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_IPGRE_V1 0xaUL #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_L2_ETYPE 0xbUL #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE_V6 0xcUL + #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE 0x10UL #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL #define CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_LAST CFA_DECAP_FILTER_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL u8 unused_0; @@ -8104,6 +8036,7 @@ #define CFA_FLOW_ALLOC_REQ_TUNNEL_TYPE_IPGRE_V1 0xaUL #define CFA_FLOW_ALLOC_REQ_TUNNEL_TYPE_L2_ETYPE 0xbUL #define CFA_FLOW_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE_V6 0xcUL + #define CFA_FLOW_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE 0x10UL #define CFA_FLOW_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL 0xffUL #define CFA_FLOW_ALLOC_REQ_TUNNEL_TYPE_LAST CFA_FLOW_ALLOC_REQ_TUNNEL_TYPE_ANYTUNNEL }; @@ -8509,6 +8442,7 @@ #define CFA_ADV_FLOW_MGNT_QCAPS_RESP_FLAGS_NTUPLE_FLOW_NO_L2CTX_SUPPORTED 0x40000UL #define CFA_ADV_FLOW_MGNT_QCAPS_RESP_FLAGS_NIC_FLOW_STATS_SUPPORTED 0x80000UL #define CFA_ADV_FLOW_MGNT_QCAPS_RESP_FLAGS_NTUPLE_FLOW_RX_EXT_IP_PROTO_SUPPORTED 0x100000UL + #define CFA_ADV_FLOW_MGNT_QCAPS_RESP_FLAGS_RFS_RING_TBL_IDX_V3_SUPPORTED 0x200000UL u8 unused_0[3]; u8 valid; }; @@ -8529,8 +8463,12 @@ #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_VXLAN_GPE_V6 0xcUL #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_CUSTOM_GRE 0xdUL #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_ECPRI 0xeUL - #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_LAST TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_ECPRI - u8 unused_0[7]; + #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_SRV6 0xfUL + #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_VXLAN_GPE 0x10UL + #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_GRE 0x11UL + #define TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_LAST TUNNEL_DST_PORT_QUERY_REQ_TUNNEL_TYPE_GRE + u8 tunnel_next_proto; + u8 unused_0[6]; }; /* hwrm_tunnel_dst_port_query_output (size:128b/16B) */ @@ -8550,7 +8488,10 @@ #define TUNNEL_DST_PORT_QUERY_RESP_UPAR_IN_USE_UPAR5 0x20UL #define TUNNEL_DST_PORT_QUERY_RESP_UPAR_IN_USE_UPAR6 0x40UL #define TUNNEL_DST_PORT_QUERY_RESP_UPAR_IN_USE_UPAR7 0x80UL - u8 unused_0[2]; + u8 status; + #define TUNNEL_DST_PORT_QUERY_RESP_STATUS_CHIP_LEVEL 0x1UL + #define TUNNEL_DST_PORT_QUERY_RESP_STATUS_FUNC_LEVEL 0x2UL + u8 unused_0; u8 valid; }; @@ -8570,10 +8511,13 @@ #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE_V6 0xcUL #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_CUSTOM_GRE 0xdUL #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_ECPRI 0xeUL - #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_LAST TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_ECPRI - u8 unused_0; + #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_SRV6 0xfUL + #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_VXLAN_GPE 0x10UL + #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GRE 0x11UL + #define TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_LAST TUNNEL_DST_PORT_ALLOC_REQ_TUNNEL_TYPE_GRE + u8 tunnel_next_proto; __be16 tunnel_dst_port_val; - u8 unused_1[4]; + u8 unused_0[4]; }; /* hwrm_tunnel_dst_port_alloc_output (size:128b/16B) */ @@ -8587,7 +8531,8 @@ #define TUNNEL_DST_PORT_ALLOC_RESP_ERROR_INFO_SUCCESS 0x0UL #define TUNNEL_DST_PORT_ALLOC_RESP_ERROR_INFO_ERR_ALLOCATED 0x1UL #define TUNNEL_DST_PORT_ALLOC_RESP_ERROR_INFO_ERR_NO_RESOURCE 0x2UL - #define TUNNEL_DST_PORT_ALLOC_RESP_ERROR_INFO_LAST TUNNEL_DST_PORT_ALLOC_RESP_ERROR_INFO_ERR_NO_RESOURCE + #define TUNNEL_DST_PORT_ALLOC_RESP_ERROR_INFO_ERR_ENABLED 0x3UL + #define TUNNEL_DST_PORT_ALLOC_RESP_ERROR_INFO_LAST TUNNEL_DST_PORT_ALLOC_RESP_ERROR_INFO_ERR_ENABLED u8 upar_in_use; #define TUNNEL_DST_PORT_ALLOC_RESP_UPAR_IN_USE_UPAR0 0x1UL #define TUNNEL_DST_PORT_ALLOC_RESP_UPAR_IN_USE_UPAR1 0x2UL @@ -8617,10 +8562,13 @@ #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN_GPE_V6 0xcUL #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_CUSTOM_GRE 0xdUL #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_ECPRI 0xeUL - #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_LAST TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_ECPRI - u8 unused_0; + #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_SRV6 0xfUL + #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_VXLAN_GPE 0x10UL + #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GRE 0x11UL + #define TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_LAST TUNNEL_DST_PORT_FREE_REQ_TUNNEL_TYPE_GRE + u8 tunnel_next_proto; __le16 tunnel_dst_port_id; - u8 unused_1[4]; + u8 unused_0[4]; }; /* hwrm_tunnel_dst_port_free_output (size:128b/16B) */ @@ -8688,7 +8636,7 @@ __le64 rx_tpa_events; }; -/* hwrm_stat_ctx_alloc_input (size:256b/32B) */ +/* hwrm_stat_ctx_alloc_input (size:320b/40B) */ struct hwrm_stat_ctx_alloc_input { __le16 req_type; __le16 cmpl_ring; @@ -8701,6 +8649,10 @@ #define STAT_CTX_ALLOC_REQ_STAT_CTX_FLAGS_ROCE 0x1UL u8 unused_0; __le16 stats_dma_length; + __le16 flags; + #define STAT_CTX_ALLOC_REQ_FLAGS_STEERING_TAG_VALID 0x1UL + __le16 steering_tag; + __le32 unused_1; }; /* hwrm_stat_ctx_alloc_output (size:128b/16B) */ @@ -8908,7 +8860,7 @@ u8 valid; }; -/* generic_sw_hw_stats (size:1216b/152B) */ +/* generic_sw_hw_stats (size:1408b/176B) */ struct generic_sw_hw_stats { __le64 pcie_statistics_tx_tlp; __le64 pcie_statistics_rx_tlp; @@ -8929,6 +8881,9 @@ __le64 cache_miss_count_cfcs; __le64 cache_miss_count_cfcc; __le64 cache_miss_count_cfcm; + __le64 hw_db_recov_dbs_dropped; + __le64 hw_db_recov_drops_serviced; + __le64 hw_db_recov_dbs_recovered; }; /* hwrm_fw_reset_input (size:192b/24B) */ @@ -9352,7 +9307,7 @@ __le64 resp_addr; }; -/* hwrm_temp_monitor_query_output (size:128b/16B) */ +/* hwrm_temp_monitor_query_output (size:192b/24B) */ struct hwrm_temp_monitor_query_output { __le16 error_code; __le16 req_type; @@ -9362,14 +9317,20 @@ u8 phy_temp; u8 om_temp; u8 flags; - #define TEMP_MONITOR_QUERY_RESP_FLAGS_TEMP_NOT_AVAILABLE 0x1UL - #define TEMP_MONITOR_QUERY_RESP_FLAGS_PHY_TEMP_NOT_AVAILABLE 0x2UL - #define TEMP_MONITOR_QUERY_RESP_FLAGS_OM_NOT_PRESENT 0x4UL - #define TEMP_MONITOR_QUERY_RESP_FLAGS_OM_TEMP_NOT_AVAILABLE 0x8UL - #define TEMP_MONITOR_QUERY_RESP_FLAGS_EXT_TEMP_FIELDS_AVAILABLE 0x10UL + #define TEMP_MONITOR_QUERY_RESP_FLAGS_TEMP_NOT_AVAILABLE 0x1UL + #define TEMP_MONITOR_QUERY_RESP_FLAGS_PHY_TEMP_NOT_AVAILABLE 0x2UL + #define TEMP_MONITOR_QUERY_RESP_FLAGS_OM_NOT_PRESENT 0x4UL + #define TEMP_MONITOR_QUERY_RESP_FLAGS_OM_TEMP_NOT_AVAILABLE 0x8UL + #define TEMP_MONITOR_QUERY_RESP_FLAGS_EXT_TEMP_FIELDS_AVAILABLE 0x10UL + #define TEMP_MONITOR_QUERY_RESP_FLAGS_THRESHOLD_VALUES_AVAILABLE 0x20UL u8 temp2; u8 phy_temp2; u8 om_temp2; + u8 warn_threshold; + u8 critical_threshold; + u8 fatal_threshold; + u8 shutdown_threshold; + u8 unused_0[4]; u8 valid; }; @@ -9793,7 +9754,8 @@ __le32 producer_index; __le32 consumer_index; __le32 cag_vector_ctrl; - u8 unused_0[3]; + __le16 st_tag; + u8 unused_0; u8 valid; }; @@ -10004,7 +9966,7 @@ __le64 resp_addr; }; -/* hwrm_nvm_get_dev_info_output (size:640b/80B) */ +/* hwrm_nvm_get_dev_info_output (size:704b/88B) */ struct hwrm_nvm_get_dev_info_output { __le16 error_code; __le16 req_type; @@ -10034,6 +9996,10 @@ __le16 roce_fw_minor; __le16 roce_fw_build; __le16 roce_fw_patch; + __le16 netctrl_fw_major; + __le16 netctrl_fw_minor; + __le16 netctrl_fw_build; + __le16 netctrl_fw_patch; u8 unused_0[7]; u8 valid; }; diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c @@ -42,13 +42,10 @@ for (i = 0; i < num_msix; i++) { ent[i].vector = bp->irq_tbl[idx + i].vector; ent[i].ring_idx = idx + i; - if (bp->flags & BNXT_FLAG_CHIP_P5) { - ent[i].db_offset = DB_PF_OFFSET_P5; - if (BNXT_VF(bp)) - ent[i].db_offset = DB_VF_OFFSET_P5; - } else { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) + ent[i].db_offset = bp->db_offset; + else ent[i].db_offset = (idx + i) * 0x80; - } } } @@ -333,6 +330,7 @@ edev->pdev = bp->pdev; edev->l2_db_size = bp->db_size; edev->l2_db_size_nc = bp->db_size; + edev->l2_db_offset = bp->db_offset; if (bp->flags & BNXT_FLAG_ROCEV1_CAP) edev->flags |= BNXT_EN_FLAG_ROCEV1_CAP; diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.h @@ -73,6 +73,10 @@ * bytes mapped as non- * cacheable. */ + int l2_db_offset; /* Doorbell offset in + * bytes within + * l2_db_size_nc. + */ u16 chip_num; u16 hw_ring_stats_size; u16 pf_port_id; diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hnae3.h @@ -814,6 +814,7 @@ u8 max_tc; /* Total number of TCs */ u8 num_tc; /* Total number of enabled TCs */ bool mqprio_active; + bool dcb_ets_active; }; #define HNAE3_MAX_DSCP 64 diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c @@ -1519,7 +1519,7 @@ struct hclge_desc desc[3]; int pos = 0; int ret, i; - u32 *req; + __le32 *req; hclge_cmd_setup_basic_desc(&desc[0], HCLGE_OPC_FD_TCAM_OP, true); desc[0].flag |= cpu_to_le16(HCLGE_COMM_CMD_FLAG_NEXT); @@ -1544,22 +1544,22 @@ tcam_msg.loc); /* tcam_data0 ~ tcam_data1 */ - req = (u32 *)req1->tcam_data; + req = (__le32 *)req1->tcam_data; for (i = 0; i < 2; i++) pos += scnprintf(tcam_buf + pos, HCLGE_DBG_TCAM_BUF_SIZE - pos, - "%08x\n", *req++); + "%08x\n", le32_to_cpu(*req++)); /* tcam_data2 ~ tcam_data7 */ - req = (u32 *)req2->tcam_data; + req = (__le32 *)req2->tcam_data; for (i = 0; i < 6; i++) pos += scnprintf(tcam_buf + pos, HCLGE_DBG_TCAM_BUF_SIZE - pos, - "%08x\n", *req++); + "%08x\n", le32_to_cpu(*req++)); /* tcam_data8 ~ tcam_data12 */ - req = (u32 *)req3->tcam_data; + req = (__le32 *)req3->tcam_data; for (i = 0; i < 5; i++) pos += scnprintf(tcam_buf + pos, HCLGE_DBG_TCAM_BUF_SIZE - pos, - "%08x\n", *req++); + "%08x\n", le32_to_cpu(*req++)); return ret; } diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c @@ -3564,9 +3564,14 @@ static void hclge_clear_event_cause(struct hclge_dev *hdev, u32 event_type, u32 regclr) { +#define HCLGE_IMP_RESET_DELAY 5 + switch (event_type) { case HCLGE_VECTOR0_EVENT_PTP: case HCLGE_VECTOR0_EVENT_RST: + if (regclr == BIT(HCLGE_VECTOR0_IMPRESET_INT_B)) + mdelay(HCLGE_IMP_RESET_DELAY); + hclge_write_dev(&hdev->hw, HCLGE_MISC_RESET_STS_REG, regclr); break; case HCLGE_VECTOR0_EVENT_MBX: @@ -7348,6 +7353,12 @@ ret = hclge_fd_tcam_config(hdev, HCLGE_FD_STAGE_1, true, rule->location, NULL, false); if (ret) { + /* if tcam config fail, set rule state to TO_DEL, + * so the rule will be deleted when periodic + * task being scheduled. + */ + hclge_update_fd_list(hdev, HCLGE_FD_TO_DEL, rule->location, NULL); + set_bit(HCLGE_STATE_FD_TBL_CHANGED, &hdev->state); spin_unlock_bh(&hdev->fd_rule_lock); return ret; } @@ -8824,7 +8835,7 @@ if (mac_type == HCLGE_MAC_ADDR_UC) { if (is_all_added) vport->overflow_promisc_flags &= ~HNAE3_OVERFLOW_UPE; - else + else if (hclge_is_umv_space_full(vport, true)) vport->overflow_promisc_flags |= HNAE3_OVERFLOW_UPE; } else { if (is_all_added) @@ -11026,6 +11037,7 @@ static void hclge_info_show(struct hclge_dev *hdev) { + struct hnae3_handle *handle = &hdev->vport->nic; struct device *dev = &hdev->pdev->dev; dev_info(dev, "PF info begin:\n"); @@ -11042,9 +11054,9 @@ dev_info(dev, "This is %s PF\n", hdev->flag & HCLGE_FLAG_MAIN ? "main" : "not main"); dev_info(dev, "DCB %s\n", - hdev->flag & HCLGE_FLAG_DCB_ENABLE ? "enable" : "disable"); + handle->kinfo.tc_info.dcb_ets_active ? "enable" : "disable"); dev_info(dev, "MQPRIO %s\n", - hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE ? "enable" : "disable"); + handle->kinfo.tc_info.mqprio_active ? "enable" : "disable"); dev_info(dev, "Default tx spare buffer size: %u\n", hdev->tx_spare_buf_size); diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h @@ -919,8 +919,6 @@ #define HCLGE_FLAG_MAIN BIT(0) #define HCLGE_FLAG_DCB_CAPABLE BIT(1) -#define HCLGE_FLAG_DCB_ENABLE BIT(2) -#define HCLGE_FLAG_MQPRIO_ENABLE BIT(3) u32 flag; u32 pkt_buf_size; /* Total pf buf size for tx/rx */ diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c @@ -1855,7 +1855,8 @@ unsigned long delta = round_jiffies_relative(HZ); struct hnae3_handle *handle = &hdev->nic; - if (test_bit(HCLGEVF_STATE_RST_FAIL, &hdev->state)) + if (test_bit(HCLGEVF_STATE_RST_FAIL, &hdev->state) || + test_bit(HCLGE_COMM_STATE_CMD_DISABLE, &hdev->hw.hw.comm_state)) return; if (time_is_after_jiffies(hdev->last_serv_processed + HZ)) { diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igb/igb_main.c linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igb/igb_main.c --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igb/igb_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igb/igb_main.c @@ -3827,8 +3827,11 @@ } /* only call pci_enable_sriov() if no VFs are allocated already */ - if (!old_vfs) + if (!old_vfs) { err = pci_enable_sriov(pdev, adapter->vfs_allocated_count); + if (err) + goto err_out; + } goto out; @@ -3933,8 +3936,9 @@ struct pci_dev *pdev = adapter->pdev; struct e1000_hw *hw = &adapter->hw; - /* Virtualization features not supported on i210 family. */ - if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211)) + /* Virtualization features not supported on i210 and 82580 family. */ + if ((hw->mac.type == e1000_i210) || (hw->mac.type == e1000_i211) || + (hw->mac.type == e1000_82580)) return; /* Of the below we really only want the effect of getting diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igc/igc_main.c linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igc/igc_main.c --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igc/igc_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igc/igc_main.c @@ -6433,7 +6433,7 @@ struct igc_ring *ring; int i, drops; - if (unlikely(test_bit(__IGC_DOWN, &adapter->state))) + if (unlikely(!netif_carrier_ok(dev))) return -ENETDOWN; if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c @@ -573,20 +573,8 @@ int otx2_alloc_buffer(struct otx2_nic *pfvf, struct otx2_cq_queue *cq, dma_addr_t *dma) { - if (unlikely(__otx2_alloc_rbuf(pfvf, cq->rbpool, dma))) { - struct refill_work *work; - struct delayed_work *dwork; - - work = &pfvf->refill_wrk[cq->cq_idx]; - dwork = &work->pool_refill_work; - /* Schedule a task if no other task is running */ - if (!cq->refill_task_sched) { - cq->refill_task_sched = true; - schedule_delayed_work(dwork, - msecs_to_jiffies(100)); - } + if (unlikely(__otx2_alloc_rbuf(pfvf, cq->rbpool, dma))) return -ENOMEM; - } return 0; } @@ -1080,39 +1068,20 @@ static void otx2_pool_refill_task(struct work_struct *work) { struct otx2_cq_queue *cq; - struct otx2_pool *rbpool; struct refill_work *wrk; - int qidx, free_ptrs = 0; struct otx2_nic *pfvf; - dma_addr_t bufptr; + int qidx; wrk = container_of(work, struct refill_work, pool_refill_work.work); pfvf = wrk->pf; qidx = wrk - pfvf->refill_wrk; cq = &pfvf->qset.cq[qidx]; - rbpool = cq->rbpool; - free_ptrs = cq->pool_ptrs; - - while (cq->pool_ptrs) { - if (otx2_alloc_rbuf(pfvf, rbpool, &bufptr)) { - /* Schedule a WQ if we fails to free atleast half of the - * pointers else enable napi for this RQ. - */ - if (!((free_ptrs - cq->pool_ptrs) > free_ptrs / 2)) { - struct delayed_work *dwork; - dwork = &wrk->pool_refill_work; - schedule_delayed_work(dwork, - msecs_to_jiffies(100)); - } else { - cq->refill_task_sched = false; - } - return; - } - pfvf->hw_ops->aura_freeptr(pfvf, qidx, bufptr + OTX2_HEAD_ROOM); - cq->pool_ptrs--; - } cq->refill_task_sched = false; + + local_bh_disable(); + napi_schedule(wrk->napi); + local_bh_enable(); } int otx2_config_nix_queues(struct otx2_nic *pfvf) @@ -1432,6 +1401,7 @@ return 0; } + pp_params.order = get_order(buf_size); pp_params.flags = PP_FLAG_PAGE_FRAG | PP_FLAG_DMA_MAP; pp_params.pool_size = min(OTX2_PAGE_POOL_SZ, numptrs); pp_params.nid = NUMA_NO_NODE; diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h @@ -172,4 +172,4 @@ int size, int qidx); -void otx2_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq); -void cn10k_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq); +int otx2_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq); +int cn10k_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq); #endif /* OTX2_TXRX_H */ diff -u linux-oracle-6.5-6.5.0/drivers/net/ethernet/realtek/r8169_main.c linux-oracle-6.5-6.5.0/drivers/net/ethernet/realtek/r8169_main.c --- linux-oracle-6.5-6.5.0/drivers/net/ethernet/realtek/r8169_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/realtek/r8169_main.c @@ -624,6 +624,7 @@ unsigned supports_gmii:1; unsigned aspm_manageable:1; + unsigned dash_enabled:1; dma_addr_t counters_phys_addr; struct rtl8169_counters *counters; struct rtl8169_tc_offsets tc_offset; @@ -1253,14 +1254,26 @@ return r8168ep_ocp_read(tp, 0x128) & BIT(0); } -static enum rtl_dash_type rtl_check_dash(struct rtl8169_private *tp) +static bool rtl_dash_is_enabled(struct rtl8169_private *tp) +{ + switch (tp->dash_type) { + case RTL_DASH_DP: + return r8168dp_check_dash(tp); + case RTL_DASH_EP: + return r8168ep_check_dash(tp); + default: + return false; + } +} + +static enum rtl_dash_type rtl_get_dash_type(struct rtl8169_private *tp) { switch (tp->mac_version) { case RTL_GIGA_MAC_VER_28: case RTL_GIGA_MAC_VER_31: - return r8168dp_check_dash(tp) ? RTL_DASH_DP : RTL_DASH_NONE; + return RTL_DASH_DP; case RTL_GIGA_MAC_VER_51 ... RTL_GIGA_MAC_VER_53: - return r8168ep_check_dash(tp) ? RTL_DASH_EP : RTL_DASH_NONE; + return RTL_DASH_EP; default: return RTL_DASH_NONE; } @@ -1453,7 +1466,7 @@ device_set_wakeup_enable(tp_to_dev(tp), wolopts); - if (tp->dash_type == RTL_DASH_NONE) { + if (!tp->dash_enabled) { rtl_set_d3_pll_down(tp, !wolopts); tp->dev->wol_enabled = wolopts ? 1 : 0; } @@ -2512,7 +2525,7 @@ static void rtl_prepare_power_down(struct rtl8169_private *tp) { - if (tp->dash_type != RTL_DASH_NONE) + if (tp->dash_enabled) return; if (tp->mac_version == RTL_GIGA_MAC_VER_32 || @@ -4640,10 +4653,16 @@ rtl8169_cleanup(tp); rtl_disable_exit_l1(tp); rtl_prepare_power_down(tp); + + if (tp->dash_type != RTL_DASH_NONE) + rtl8168_driver_stop(tp); } static void rtl8169_up(struct rtl8169_private *tp) { + if (tp->dash_type != RTL_DASH_NONE) + rtl8168_driver_start(tp); + pci_set_master(tp->pci_dev); phy_init_hw(tp->phydev); phy_resume(tp->phydev); @@ -4861,7 +4880,7 @@ { struct rtl8169_private *tp = dev_get_drvdata(device); - if (tp->dash_type != RTL_DASH_NONE) + if (tp->dash_enabled) return -EBUSY; if (!netif_running(tp->dev) || !netif_carrier_ok(tp->dev)) @@ -4887,8 +4906,7 @@ /* Restore original MAC address */ rtl_rar_set(tp, tp->dev->perm_addr); - if (system_state == SYSTEM_POWER_OFF && - tp->dash_type == RTL_DASH_NONE) { + if (system_state == SYSTEM_POWER_OFF && !tp->dash_enabled) { pci_wake_from_d3(pdev, tp->saved_wolopts); pci_set_power_state(pdev, PCI_D3hot); } @@ -5246,7 +5264,8 @@ rc = pci_disable_link_state(pdev, PCIE_LINK_STATE_L1); tp->aspm_manageable = !rc; - tp->dash_type = rtl_check_dash(tp); + tp->dash_type = rtl_get_dash_type(tp); + tp->dash_enabled = rtl_dash_is_enabled(tp); tp->cp_cmd = RTL_R16(tp, CPlusCmd) & CPCMD_MASK; @@ -5317,7 +5336,7 @@ /* configure chip for default features */ rtl8169_set_features(dev, dev->features); - if (tp->dash_type == RTL_DASH_NONE) { + if (!tp->dash_enabled) { rtl_set_d3_pll_down(tp, true); } else { rtl_set_d3_pll_down(tp, false); @@ -5357,7 +5376,8 @@ "ok" : "ko"); if (tp->dash_type != RTL_DASH_NONE) { - netdev_info(dev, "DASH enabled\n"); + netdev_info(dev, "DASH %s\n", + tp->dash_enabled ? "enabled" : "disabled"); rtl8168_driver_start(tp); } diff -u linux-oracle-6.5-6.5.0/drivers/net/macsec.c linux-oracle-6.5-6.5.0/drivers/net/macsec.c --- linux-oracle-6.5-6.5.0/drivers/net/macsec.c +++ linux-oracle-6.5-6.5.0/drivers/net/macsec.c @@ -2394,6 +2394,7 @@ ctx.sa.assoc_num = assoc_num; ctx.sa.tx_sa = tx_sa; + ctx.sa.update_pn = !!prev_pn.full64; ctx.secy = secy; ret = macsec_offload(ops->mdo_upd_txsa, &ctx); @@ -2487,6 +2488,7 @@ ctx.sa.assoc_num = assoc_num; ctx.sa.rx_sa = rx_sa; + ctx.sa.update_pn = !!prev_pn.full64; ctx.secy = secy; ret = macsec_offload(ops->mdo_upd_rxsa, &ctx); diff -u linux-oracle-6.5-6.5.0/drivers/net/vxlan/vxlan_core.c linux-oracle-6.5-6.5.0/drivers/net/vxlan/vxlan_core.c --- linux-oracle-6.5-6.5.0/drivers/net/vxlan/vxlan_core.c +++ linux-oracle-6.5-6.5.0/drivers/net/vxlan/vxlan_core.c @@ -4487,6 +4487,10 @@ nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_TX */ nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_REMCSUM_RX */ nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_LOCALBYPASS */ + nla_total_size(0) + /* IFLA_VXLAN_GBP */ + nla_total_size(0) + /* IFLA_VXLAN_GPE */ + nla_total_size(0) + /* IFLA_VXLAN_REMCSUM_NOPARTIAL */ + nla_total_size(sizeof(__u8)) + /* IFLA_VXLAN_VNIFILTER */ nla_total_size(sizeof(struct ip_fan_map) * 256) + 0; } diff -u linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath10k/pci.c linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath10k/pci.c --- linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath10k/pci.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath10k/pci.c @@ -3817,7 +3817,7 @@ module_exit(ath10k_pci_exit); MODULE_AUTHOR("Qualcomm Atheros"); -MODULE_DESCRIPTION("Driver support for Qualcomm Atheros 802.11ac WLAN PCIe/AHB devices"); +MODULE_DESCRIPTION("Driver support for Qualcomm Atheros PCIe/AHB 802.11ac WLAN devices"); MODULE_LICENSE("Dual BSD/GPL"); /* QCA988x 2.0 firmware files */ diff -u linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath11k/pci.c linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath11k/pci.c --- linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath11k/pci.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath11k/pci.c @@ -1036,7 +1036,7 @@ module_exit(ath11k_pci_exit); -MODULE_DESCRIPTION("Driver support for Qualcomm Technologies 802.11ax WLAN PCIe devices"); +MODULE_DESCRIPTION("Driver support for Qualcomm Technologies PCIe 802.11ax WLAN devices"); MODULE_LICENSE("Dual BSD/GPL"); /* firmware files */ diff -u linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/mac.c linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/mac.c --- linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/mac.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/mac.c @@ -2755,9 +2755,12 @@ arg.scan_id = ATH12K_SCAN_ID; if (req->ie_len) { + arg.extraie.ptr = kmemdup(req->ie, req->ie_len, GFP_KERNEL); + if (!arg.extraie.ptr) { + ret = -ENOMEM; + goto exit; + } arg.extraie.len = req->ie_len; - arg.extraie.ptr = kzalloc(req->ie_len, GFP_KERNEL); - memcpy(arg.extraie.ptr, req->ie, req->ie_len); } if (req->n_ssids) { diff -u linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/pci.c linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/pci.c --- linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/pci.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/pci.c @@ -1413,3 +1413,3 @@ -MODULE_DESCRIPTION("Driver support for Qualcomm Technologies 802.11be WLAN PCIe devices"); +MODULE_DESCRIPTION("Driver support for Qualcomm Technologies PCIe 802.11be WLAN devices"); MODULE_LICENSE("Dual BSD/GPL"); diff -u linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c --- linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/pcie/drv.c @@ -1133,12 +1133,6 @@ else sd_reg_ver_addr = SD_REG_VER; - if (!iwl_trans_grab_nic_access(iwl_trans)) { - IWL_ERR(iwl_trans, "Failed to grab nic access before reading crf id\n"); - ret = -EIO; - goto out; - } - /* Enable access to peripheral registers */ val = iwl_read_umac_prph_no_grab(iwl_trans, WFPM_CTRL_REG); val |= ENABLE_WFPM; @@ -1158,9 +1152,6 @@ iwl_trans->hw_crf_id, iwl_trans->hw_cnv_id, iwl_trans->hw_wfpm_id); - iwl_trans_release_nic_access(iwl_trans); - -out: return ret; } @@ -1352,6 +1343,7 @@ if (ret) goto out_free_trans; if (iwl_trans_grab_nic_access(iwl_trans)) { + get_crf_id(iwl_trans); /* all good */ iwl_trans_release_nic_access(iwl_trans); } else { @@ -1361,7 +1353,6 @@ } iwl_trans->hw_rf_id = iwl_read32(iwl_trans, CSR_HW_RF_ID); - get_crf_id(iwl_trans); /* * The RF_ID is set to zero in blank OTP so read version to diff -u linux-oracle-6.5-6.5.0/drivers/net/wireless/marvell/mwifiex/sta_rx.c linux-oracle-6.5-6.5.0/drivers/net/wireless/marvell/mwifiex/sta_rx.c --- linux-oracle-6.5-6.5.0/drivers/net/wireless/marvell/mwifiex/sta_rx.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/marvell/mwifiex/sta_rx.c @@ -86,7 +86,8 @@ rx_pkt_len = le16_to_cpu(local_rx_pd->rx_pkt_length); rx_pkt_hdr = (void *)local_rx_pd + rx_pkt_off; - if (sizeof(*rx_pkt_hdr) + rx_pkt_off > skb->len) { + if (sizeof(rx_pkt_hdr->eth803_hdr) + sizeof(rfc1042_header) + + rx_pkt_off > skb->len) { mwifiex_dbg(priv->adapter, ERROR, "wrong rx packet offset: len=%d, rx_pkt_off=%d\n", skb->len, rx_pkt_off); @@ -95,12 +96,13 @@ return -1; } - if ((!memcmp(&rx_pkt_hdr->rfc1042_hdr, bridge_tunnel_header, - sizeof(bridge_tunnel_header))) || - (!memcmp(&rx_pkt_hdr->rfc1042_hdr, rfc1042_header, - sizeof(rfc1042_header)) && - ntohs(rx_pkt_hdr->rfc1042_hdr.snap_type) != ETH_P_AARP && - ntohs(rx_pkt_hdr->rfc1042_hdr.snap_type) != ETH_P_IPX)) { + if (sizeof(*rx_pkt_hdr) + rx_pkt_off <= skb->len && + ((!memcmp(&rx_pkt_hdr->rfc1042_hdr, bridge_tunnel_header, + sizeof(bridge_tunnel_header))) || + (!memcmp(&rx_pkt_hdr->rfc1042_hdr, rfc1042_header, + sizeof(rfc1042_header)) && + ntohs(rx_pkt_hdr->rfc1042_hdr.snap_type) != ETH_P_AARP && + ntohs(rx_pkt_hdr->rfc1042_hdr.snap_type) != ETH_P_IPX))) { /* * Replace the 803 header and rfc1042 header (llc/snap) with an * EthernetII header, keep the src/dst and snap_type diff -u linux-oracle-6.5-6.5.0/drivers/net/wireless/realtek/rtw88/usb.c linux-oracle-6.5-6.5.0/drivers/net/wireless/realtek/rtw88/usb.c --- linux-oracle-6.5-6.5.0/drivers/net/wireless/realtek/rtw88/usb.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/realtek/rtw88/usb.c @@ -932,3 +932,3 @@ MODULE_AUTHOR("Realtek Corporation"); -MODULE_DESCRIPTION("Realtek 802.11ac wireless USB driver"); +MODULE_DESCRIPTION("Realtek USB 802.11ac wireless driver"); MODULE_LICENSE("Dual BSD/GPL"); diff -u linux-oracle-6.5-6.5.0/drivers/nvme/target/tcp.c linux-oracle-6.5-6.5.0/drivers/nvme/target/tcp.c --- linux-oracle-6.5-6.5.0/drivers/nvme/target/tcp.c +++ linux-oracle-6.5-6.5.0/drivers/nvme/target/tcp.c @@ -348,7 +348,7 @@ while (length) { u32 iov_len = min_t(u32, length, sg->length - sg_offset); - bvec_set_page(iov, sg_page(sg), sg->length, + bvec_set_page(iov, sg_page(sg), iov_len, sg->offset + sg_offset); length -= iov_len; diff -u linux-oracle-6.5-6.5.0/drivers/parisc/ccio-dma.c linux-oracle-6.5-6.5.0/drivers/parisc/ccio-dma.c --- linux-oracle-6.5-6.5.0/drivers/parisc/ccio-dma.c +++ linux-oracle-6.5-6.5.0/drivers/parisc/ccio-dma.c @@ -222,7 +222,7 @@ struct ioc { struct ioa_registers __iomem *ioc_regs; /* I/O MMU base address */ u8 *res_map; /* resource map, bit == pdir entry */ - u64 *pdir_base; /* physical base address */ + __le64 *pdir_base; /* physical base address */ u32 pdir_size; /* bytes, function of IOV Space size */ u32 res_hint; /* next available IOVP - circular search */ @@ -347,7 +347,7 @@ BUG_ON(pages_needed == 0); BUG_ON((pages_needed * IOVP_SIZE) > DMA_CHUNK_SIZE); - DBG_RES("%s() size: %d pages_needed %d\n", + DBG_RES("%s() size: %zu pages_needed %d\n", __func__, size, pages_needed); /* @@ -435,7 +435,7 @@ BUG_ON((pages_mapped * IOVP_SIZE) > DMA_CHUNK_SIZE); BUG_ON(pages_mapped > BITS_PER_LONG); - DBG_RES("%s(): res_idx: %d pages_mapped %d\n", + DBG_RES("%s(): res_idx: %d pages_mapped %lu\n", __func__, res_idx, pages_mapped); #ifdef CCIO_COLLECT_STATS @@ -551,7 +551,7 @@ * index are bits 12:19 of the value returned by LCI. */ static void -ccio_io_pdir_entry(u64 *pdir_ptr, space_t sid, unsigned long vba, +ccio_io_pdir_entry(__le64 *pdir_ptr, space_t sid, unsigned long vba, unsigned long hints) { register unsigned long pa; @@ -727,7 +727,7 @@ unsigned long flags; dma_addr_t iovp; dma_addr_t offset; - u64 *pdir_start; + __le64 *pdir_start; unsigned long hint = hint_lookup[(int)direction]; BUG_ON(!dev); @@ -754,8 +754,8 @@ pdir_start = &(ioc->pdir_base[idx]); - DBG_RUN("%s() 0x%p -> 0x%lx size: %0x%x\n", - __func__, addr, (long)iovp | offset, size); + DBG_RUN("%s() %px -> %#lx size: %zu\n", + __func__, addr, (long)(iovp | offset), size); /* If not cacheline aligned, force SAFE_DMA on the whole mess */ if((size % L1_CACHE_BYTES) || ((unsigned long)addr % L1_CACHE_BYTES)) @@ -813,7 +813,7 @@ return; } - DBG_RUN("%s() iovp 0x%lx/%x\n", + DBG_RUN("%s() iovp %#lx/%zx\n", __func__, (long)iova, size); iova ^= offset; /* clear offset bits */ @@ -1291,7 +1291,7 @@ iova_space_size>>20, iov_order + PAGE_SHIFT); - ioc->pdir_base = (u64 *)__get_free_pages(GFP_KERNEL, + ioc->pdir_base = (__le64 *)__get_free_pages(GFP_KERNEL, get_order(ioc->pdir_size)); if(NULL == ioc->pdir_base) { panic("%s() could not allocate I/O Page Table\n", __func__); diff -u linux-oracle-6.5-6.5.0/drivers/parisc/sba_iommu.c linux-oracle-6.5-6.5.0/drivers/parisc/sba_iommu.c --- linux-oracle-6.5-6.5.0/drivers/parisc/sba_iommu.c +++ linux-oracle-6.5-6.5.0/drivers/parisc/sba_iommu.c @@ -46,8 +46,6 @@ #include #include -#include /* for proc_mckinley_root */ -#include /* for proc_runway_root */ #include /* for PAGE0 */ #include /* for PDC_MODEL_* */ #include /* for is_pdc_pat() */ @@ -122,7 +120,7 @@ #endif static struct proc_dir_entry *proc_runway_root __ro_after_init; -struct proc_dir_entry *proc_mckinley_root __ro_after_init; +static struct proc_dir_entry *proc_mckinley_root __ro_after_init; /************************************ ** SBA register read and write support @@ -204,7 +202,7 @@ sba_dump_pdir_entry(struct ioc *ioc, char *msg, uint pide) { /* start printing from lowest pde in rval */ - u64 *ptr = &(ioc->pdir_base[pide & (~0U * BITS_PER_LONG)]); + __le64 *ptr = &(ioc->pdir_base[pide & (~0U * BITS_PER_LONG)]); unsigned long *rptr = (unsigned long *) &(ioc->res_map[(pide >>3) & ~(sizeof(unsigned long) - 1)]); uint rcnt; @@ -571,7 +569,7 @@ */ static void -sba_io_pdir_entry(u64 *pdir_ptr, space_t sid, unsigned long vba, +sba_io_pdir_entry(__le64 *pdir_ptr, space_t sid, unsigned long vba, unsigned long hint) { u64 pa; /* physical address */ @@ -615,7 +613,7 @@ sba_mark_invalid(struct ioc *ioc, dma_addr_t iova, size_t byte_cnt) { u32 iovp = (u32) SBA_IOVP(ioc,iova); - u64 *pdir_ptr = &ioc->pdir_base[PDIR_INDEX(iovp)]; + __le64 *pdir_ptr = &ioc->pdir_base[PDIR_INDEX(iovp)]; #ifdef ASSERT_PDIR_SANITY /* Assert first pdir entry is set. @@ -716,7 +714,7 @@ unsigned long flags; dma_addr_t iovp; dma_addr_t offset; - u64 *pdir_start; + __le64 *pdir_start; int pide; ioc = GET_IOC(dev); @@ -1434,7 +1432,7 @@ ioc->pdir_size = pdir_size = (iova_space_size/IOVP_SIZE) * sizeof(u64); - DBG_INIT("%s() hpa 0x%lx mem %ldMB IOV %dMB (%d bits)\n", + DBG_INIT("%s() hpa %px mem %ldMB IOV %dMB (%d bits)\n", __func__, ioc->ioc_hpa, (unsigned long) totalram_pages() >> (20 - PAGE_SHIFT), @@ -1471,7 +1469,7 @@ ioc->iovp_mask = ~(iova_space_mask + PAGE_SIZE - 1); #endif - DBG_INIT("%s() IOV base 0x%lx mask 0x%0lx\n", + DBG_INIT("%s() IOV base %#lx mask %#0lx\n", __func__, ioc->ibase, ioc->imask); /* @@ -1583,7 +1581,7 @@ if (!IS_PLUTO(sba_dev->dev)) { ioc_ctl = READ_REG(sba_dev->sba_hpa+IOC_CTRL); - DBG_INIT("%s() hpa 0x%lx ioc_ctl 0x%Lx ->", + DBG_INIT("%s() hpa %px ioc_ctl 0x%Lx ->", __func__, sba_dev->sba_hpa, ioc_ctl); ioc_ctl &= ~(IOC_CTRL_RM | IOC_CTRL_NC | IOC_CTRL_CE); ioc_ctl |= IOC_CTRL_DD | IOC_CTRL_D4 | IOC_CTRL_TC; @@ -1668,14 +1666,14 @@ /* flush out the last writes */ READ_REG(sba_dev->ioc[i].ioc_hpa + ROPE7_CTL); - DBG_INIT(" ioc[%d] ROPE_CFG 0x%Lx ROPE_DBG 0x%Lx\n", + DBG_INIT(" ioc[%d] ROPE_CFG %#lx ROPE_DBG %lx\n", i, - READ_REG(sba_dev->ioc[i].ioc_hpa + 0x40), - READ_REG(sba_dev->ioc[i].ioc_hpa + 0x50) + (unsigned long) READ_REG(sba_dev->ioc[i].ioc_hpa + 0x40), + (unsigned long) READ_REG(sba_dev->ioc[i].ioc_hpa + 0x50) ); - DBG_INIT(" STATUS_CONTROL 0x%Lx FLUSH_CTRL 0x%Lx\n", - READ_REG(sba_dev->ioc[i].ioc_hpa + 0x108), - READ_REG(sba_dev->ioc[i].ioc_hpa + 0x400) + DBG_INIT(" STATUS_CONTROL %#lx FLUSH_CTRL %#lx\n", + (unsigned long) READ_REG(sba_dev->ioc[i].ioc_hpa + 0x108), + (unsigned long) READ_REG(sba_dev->ioc[i].ioc_hpa + 0x400) ); if (IS_PLUTO(sba_dev->dev)) { @@ -1739,7 +1737,7 @@ #ifdef ASSERT_PDIR_SANITY /* Mark first bit busy - ie no IOVA 0 */ sba_dev->ioc[i].res_map[0] = 0x80; - sba_dev->ioc[i].pdir_base[0] = 0xeeffc0addbba0080ULL; + sba_dev->ioc[i].pdir_base[0] = (__force __le64) 0xeeffc0addbba0080ULL; #endif /* Third (and last) part of PIRANHA BUG */ @@ -1899,9 +1897,7 @@ int i; char *version; void __iomem *sba_addr = ioremap(dev->hpa.start, SBA_FUNC_SIZE); -#ifdef CONFIG_PROC_FS - struct proc_dir_entry *root; -#endif + struct proc_dir_entry *root __maybe_unused; sba_dump_ranges(sba_addr); @@ -1967,7 +1963,6 @@ hppa_dma_ops = &sba_ops; -#ifdef CONFIG_PROC_FS switch (dev->id.hversion) { case PLUTO_MCKINLEY_PORT: if (!proc_mckinley_root) @@ -1985,7 +1980,6 @@ proc_create_single("sba_iommu", 0, root, sba_proc_info); proc_create_single("sba_iommu-bitmap", 0, root, sba_proc_bitmap_info); -#endif return 0; } diff -u linux-oracle-6.5-6.5.0/drivers/pci/controller/vmd.c linux-oracle-6.5-6.5.0/drivers/pci/controller/vmd.c --- linux-oracle-6.5-6.5.0/drivers/pci/controller/vmd.c +++ linux-oracle-6.5-6.5.0/drivers/pci/controller/vmd.c @@ -541,8 +541,23 @@ PCI_CLASS_BRIDGE_PCI)) continue; - memset_io(base + PCI_IO_BASE, 0, - PCI_ROM_ADDRESS1 - PCI_IO_BASE); + /* + * Temporarily disable the I/O range before updating + * PCI_IO_BASE. + */ + writel(0x0000ffff, base + PCI_IO_BASE_UPPER16); + /* Update lower 16 bits of I/O base/limit */ + writew(0x00f0, base + PCI_IO_BASE); + /* Update upper 16 bits of I/O base/limit */ + writel(0, base + PCI_IO_BASE_UPPER16); + + /* MMIO Base/Limit */ + writel(0x0000fff0, base + PCI_MEMORY_BASE); + + /* Prefetchable MMIO Base/Limit */ + writel(0, base + PCI_PREF_LIMIT_UPPER32); + writel(0x0000fff0, base + PCI_PREF_MEMORY_BASE); + writel(0xffffffff, base + PCI_PREF_BASE_UPPER32); } } } diff -u linux-oracle-6.5-6.5.0/drivers/perf/fsl_imx8_ddr_perf.c linux-oracle-6.5-6.5.0/drivers/perf/fsl_imx8_ddr_perf.c --- linux-oracle-6.5-6.5.0/drivers/perf/fsl_imx8_ddr_perf.c +++ linux-oracle-6.5-6.5.0/drivers/perf/fsl_imx8_ddr_perf.c @@ -28,6 +28,8 @@ #define CNTL_CLEAR_MASK 0xFFFFFFFD #define CNTL_OVER_MASK 0xFFFFFFFE +#define CNTL_CP_SHIFT 16 +#define CNTL_CP_MASK (0xFF << CNTL_CP_SHIFT) #define CNTL_CSV_SHIFT 24 #define CNTL_CSV_MASK (0xFFU << CNTL_CSV_SHIFT) @@ -35,6 +37,8 @@ #define EVENT_CYCLES_COUNTER 0 #define NUM_COUNTERS 4 +/* For removing bias if cycle counter CNTL.CP is set to 0xf0 */ +#define CYCLES_COUNTER_MASK 0x0FFFFFFF #define AXI_MASKING_REVERT 0xffff0000 /* AXI_MASKING(MSB 16bits) + AXI_ID(LSB 16bits) */ #define to_ddr_pmu(p) container_of(p, struct ddr_pmu, pmu) @@ -428,6 +432,17 @@ writel(0, pmu->base + reg); val = CNTL_EN | CNTL_CLEAR; val |= FIELD_PREP(CNTL_CSV_MASK, config); + + /* + * On i.MX8MP we need to bias the cycle counter to overflow more often. + * We do this by initializing bits [23:16] of the counter value via the + * COUNTER_CTRL Counter Parameter (CP) field. + */ + if (pmu->devtype_data->quirks & DDR_CAP_AXI_ID_FILTER_ENHANCED) { + if (counter == EVENT_CYCLES_COUNTER) + val |= FIELD_PREP(CNTL_CP_MASK, 0xf0); + } + writel(val, pmu->base + reg); } else { /* Disable counter */ @@ -467,6 +482,12 @@ int ret; new_raw_count = ddr_perf_read_counter(pmu, counter); + /* Remove the bias applied in ddr_perf_counter_enable(). */ + if (pmu->devtype_data->quirks & DDR_CAP_AXI_ID_FILTER_ENHANCED) { + if (counter == EVENT_CYCLES_COUNTER) + new_raw_count &= CYCLES_COUNTER_MASK; + } + local64_add(new_raw_count, &event->count); /* diff -u linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_init.c linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_init.c --- linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_init.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_init.c @@ -508,6 +508,7 @@ void qla24xx_handle_adisc_event(scsi_qla_host_t *vha, struct event_arg *ea) { struct fc_port *fcport = ea->fcport; + unsigned long flags; ql_dbg(ql_dbg_disc, vha, 0x20d2, "%s %8phC DS %d LS %d rc %d login %d|%d rscn %d|%d lid %d\n", @@ -522,9 +523,15 @@ ql_dbg(ql_dbg_disc, vha, 0x2066, "%s %8phC: adisc fail: post delete\n", __func__, ea->fcport->port_name); + + spin_lock_irqsave(&vha->work_lock, flags); /* deleted = 0 & logout_on_delete = force fw cleanup */ - fcport->deleted = 0; + if (fcport->deleted == QLA_SESS_DELETED) + fcport->deleted = 0; + fcport->logout_on_delete = 1; + spin_unlock_irqrestore(&vha->work_lock, flags); + qlt_schedule_sess_for_deletion(ea->fcport); return; } @@ -1134,7 +1141,7 @@ u16 *mb; if (!vha->flags.online || (fcport->flags & FCF_ASYNC_SENT)) - return rval; + goto done; ql_dbg(ql_dbg_disc, vha, 0x20d9, "Async-gnlist WWPN %8phC \n", fcport->port_name); @@ -1188,8 +1195,9 @@ done_free_sp: /* ref: INIT */ kref_put(&sp->cmd_kref, qla2x00_sp_release); + fcport->flags &= ~(FCF_ASYNC_SENT); done: - fcport->flags &= ~(FCF_ASYNC_ACTIVE | FCF_ASYNC_SENT); + fcport->flags &= ~(FCF_ASYNC_ACTIVE); return rval; } @@ -1446,7 +1454,6 @@ spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags); ea->fcport->login_gen++; - ea->fcport->deleted = 0; ea->fcport->logout_on_delete = 1; if (!ea->fcport->login_succ && !IS_SW_RESV_ADDR(ea->fcport->d_id)) { @@ -1996,12 +2003,11 @@ int rc, h; unsigned long flags; - if (sp->type == SRB_MARKER) { - complete(&tmf->u.tmf.comp); - return; - } + if (sp->type == SRB_MARKER) + rc = QLA_FUNCTION_FAILED; + else + rc = qla24xx_async_abort_cmd(sp, false); - rc = qla24xx_async_abort_cmd(sp, false); if (rc) { spin_lock_irqsave(sp->qpair->qp_lock_ptr, flags); for (h = 1; h < sp->qpair->req->num_outstanding_cmds; h++) { @@ -2032,10 +2038,14 @@ complete(&tmf->u.tmf.comp); } -#define START_SP_W_RETRIES(_sp, _rval) \ +#define START_SP_W_RETRIES(_sp, _rval, _chip_gen, _login_gen) \ {\ int cnt = 5; \ do { \ + if (_chip_gen != sp->vha->hw->chip_reset || _login_gen != sp->fcport->login_gen) {\ + _rval = EINVAL; \ + break; \ + } \ _rval = qla2x00_start_sp(_sp); \ if (_rval == EAGAIN) \ msleep(1); \ @@ -2058,6 +2068,7 @@ srb_t *sp; int rval = QLA_FUNCTION_FAILED; fc_port_t *fcport = arg->fcport; + u32 chip_gen, login_gen; if (TMF_NOT_READY(arg->fcport)) { ql_dbg(ql_dbg_taskm, vha, 0x8039, @@ -2067,6 +2078,9 @@ return QLA_SUSPENDED; } + chip_gen = vha->hw->chip_reset; + login_gen = fcport->login_gen; + /* ref: INIT */ sp = qla2xxx_get_qpair_sp(vha, arg->qpair, fcport, GFP_KERNEL); if (!sp) @@ -2084,7 +2098,7 @@ tm_iocb->u.tmf.loop_id = fcport->loop_id; tm_iocb->u.tmf.vp_index = vha->vp_idx; - START_SP_W_RETRIES(sp, rval); + START_SP_W_RETRIES(sp, rval, chip_gen, login_gen); ql_dbg(ql_dbg_taskm, vha, 0x8006, "Async-marker hdl=%x loop-id=%x portid=%06x modifier=%x lun=%lld qp=%d rval %d.\n", @@ -2123,6 +2137,17 @@ complete(&tmf->u.tmf.comp); } +static int qla_tmf_wait(struct tmf_arg *arg) +{ + /* there are only 2 types of error handling that reaches here, lun or target reset */ + if (arg->flags & (TCF_LUN_RESET | TCF_ABORT_TASK_SET | TCF_CLEAR_TASK_SET)) + return qla2x00_eh_wait_for_pending_commands(arg->vha, + arg->fcport->d_id.b24, arg->lun, WAIT_LUN); + else + return qla2x00_eh_wait_for_pending_commands(arg->vha, + arg->fcport->d_id.b24, arg->lun, WAIT_TARGET); +} + static int __qla2x00_async_tm_cmd(struct tmf_arg *arg) { @@ -2130,8 +2155,9 @@ struct srb_iocb *tm_iocb; srb_t *sp; int rval = QLA_FUNCTION_FAILED; - fc_port_t *fcport = arg->fcport; + u32 chip_gen, login_gen; + u64 jif; if (TMF_NOT_READY(arg->fcport)) { ql_dbg(ql_dbg_taskm, vha, 0x8032, @@ -2141,6 +2167,9 @@ return QLA_SUSPENDED; } + chip_gen = vha->hw->chip_reset; + login_gen = fcport->login_gen; + /* ref: INIT */ sp = qla2xxx_get_qpair_sp(vha, arg->qpair, fcport, GFP_KERNEL); if (!sp) @@ -2158,7 +2187,7 @@ tm_iocb->u.tmf.flags = arg->flags; tm_iocb->u.tmf.lun = arg->lun; - START_SP_W_RETRIES(sp, rval); + START_SP_W_RETRIES(sp, rval, chip_gen, login_gen); ql_dbg(ql_dbg_taskm, vha, 0x802f, "Async-tmf hdl=%x loop-id=%x portid=%06x ctrl=%x lun=%lld qp=%d rval=%x.\n", @@ -2176,8 +2205,26 @@ "TM IOCB failed (%x).\n", rval); } - if (!test_bit(UNLOADING, &vha->dpc_flags) && !IS_QLAFX00(vha->hw)) - rval = qla26xx_marker(arg); + if (!test_bit(UNLOADING, &vha->dpc_flags) && !IS_QLAFX00(vha->hw)) { + jif = jiffies; + if (qla_tmf_wait(arg)) { + ql_log(ql_log_info, vha, 0x803e, + "Waited %u ms Nexus=%ld:%06x:%llu.\n", + jiffies_to_msecs(jiffies - jif), vha->host_no, + fcport->d_id.b24, arg->lun); + } + + if (chip_gen == vha->hw->chip_reset && login_gen == fcport->login_gen) { + rval = qla26xx_marker(arg); + } else { + ql_log(ql_log_info, vha, 0x803e, + "Skip Marker due to disruption. Nexus=%ld:%06x:%llu.\n", + vha->host_no, fcport->d_id.b24, arg->lun); + rval = QLA_FUNCTION_FAILED; + } + } + if (tm_iocb->u.tmf.data) + rval = tm_iocb->u.tmf.data; done_free_sp: /* ref: INIT */ @@ -2186,30 +2233,42 @@ return rval; } -static void qla_put_tmf(fc_port_t *fcport) +static void qla_put_tmf(struct tmf_arg *arg) { - struct scsi_qla_host *vha = fcport->vha; + struct scsi_qla_host *vha = arg->vha; struct qla_hw_data *ha = vha->hw; unsigned long flags; spin_lock_irqsave(&ha->tgt.sess_lock, flags); - fcport->active_tmf--; + ha->active_tmf--; + list_del(&arg->tmf_elem); spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); } static -int qla_get_tmf(fc_port_t *fcport) +int qla_get_tmf(struct tmf_arg *arg) { - struct scsi_qla_host *vha = fcport->vha; + struct scsi_qla_host *vha = arg->vha; struct qla_hw_data *ha = vha->hw; unsigned long flags; + fc_port_t *fcport = arg->fcport; int rc = 0; - LIST_HEAD(tmf_elem); + struct tmf_arg *t; spin_lock_irqsave(&ha->tgt.sess_lock, flags); - list_add_tail(&tmf_elem, &fcport->tmf_pending); + list_for_each_entry(t, &ha->tmf_active, tmf_elem) { + if (t->fcport == arg->fcport && t->lun == arg->lun) { + /* reject duplicate TMF */ + ql_log(ql_log_warn, vha, 0x802c, + "found duplicate TMF. Nexus=%ld:%06x:%llu.\n", + vha->host_no, fcport->d_id.b24, arg->lun); + spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); + return -EINVAL; + } + } - while (fcport->active_tmf >= MAX_ACTIVE_TMF) { + list_add_tail(&arg->tmf_elem, &ha->tmf_pending); + while (ha->active_tmf >= MAX_ACTIVE_TMF) { spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); msleep(1); @@ -2221,15 +2280,17 @@ rc = EIO; break; } - if (fcport->active_tmf < MAX_ACTIVE_TMF && - list_is_first(&tmf_elem, &fcport->tmf_pending)) + if (ha->active_tmf < MAX_ACTIVE_TMF && + list_is_first(&arg->tmf_elem, &ha->tmf_pending)) break; } - list_del(&tmf_elem); + list_del(&arg->tmf_elem); - if (!rc) - fcport->active_tmf++; + if (!rc) { + ha->active_tmf++; + list_add_tail(&arg->tmf_elem, &ha->tmf_active); + } spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); @@ -2241,9 +2302,8 @@ uint32_t tag) { struct scsi_qla_host *vha = fcport->vha; - struct qla_qpair *qpair; struct tmf_arg a; - int i, rval = QLA_SUCCESS; + int rval = QLA_SUCCESS; if (TMF_NOT_READY(fcport)) return QLA_SUSPENDED; @@ -2251,47 +2311,22 @@ a.vha = fcport->vha; a.fcport = fcport; a.lun = lun; + a.flags = flags; + INIT_LIST_HEAD(&a.tmf_elem); + if (flags & (TCF_LUN_RESET|TCF_ABORT_TASK_SET|TCF_CLEAR_TASK_SET|TCF_CLEAR_ACA)) { a.modifier = MK_SYNC_ID_LUN; - - if (qla_get_tmf(fcport)) - return QLA_FUNCTION_FAILED; } else { a.modifier = MK_SYNC_ID; } - if (vha->hw->mqenable) { - for (i = 0; i < vha->hw->num_qpairs; i++) { - qpair = vha->hw->queue_pair_map[i]; - if (!qpair) - continue; - - if (TMF_NOT_READY(fcport)) { - ql_log(ql_log_warn, vha, 0x8026, - "Unable to send TM due to disruption.\n"); - rval = QLA_SUSPENDED; - break; - } - - a.qpair = qpair; - a.flags = flags|TCF_NOTMCMD_TO_TARGET; - rval = __qla2x00_async_tm_cmd(&a); - if (rval) - break; - } - } - - if (rval) - goto bailout; + if (qla_get_tmf(&a)) + return QLA_FUNCTION_FAILED; a.qpair = vha->hw->base_qpair; - a.flags = flags; rval = __qla2x00_async_tm_cmd(&a); -bailout: - if (a.modifier == MK_SYNC_ID_LUN) - qla_put_tmf(fcport); - + qla_put_tmf(&a); return rval; } @@ -4147,39 +4182,61 @@ return ha->flags.lr_detected; } -void qla_init_iocb_limit(scsi_qla_host_t *vha) +static void __qla_adjust_iocb_limit(struct qla_qpair *qpair) { - u16 i, num_qps; - u32 limit; - struct qla_hw_data *ha = vha->hw; + u8 num_qps; + u16 limit; + struct qla_hw_data *ha = qpair->vha->hw; num_qps = ha->num_qpairs + 1; limit = (ha->orig_fw_iocb_count * QLA_IOCB_PCT_LIMIT) / 100; - ha->base_qpair->fwres.iocbs_total = ha->orig_fw_iocb_count; - ha->base_qpair->fwres.iocbs_limit = limit; - ha->base_qpair->fwres.iocbs_qp_limit = limit / num_qps; - ha->base_qpair->fwres.iocbs_used = 0; + qpair->fwres.iocbs_total = ha->orig_fw_iocb_count; + qpair->fwres.iocbs_limit = limit; + qpair->fwres.iocbs_qp_limit = limit / num_qps; + + qpair->fwres.exch_total = ha->orig_fw_xcb_count; + qpair->fwres.exch_limit = (ha->orig_fw_xcb_count * + QLA_IOCB_PCT_LIMIT) / 100; +} - ha->base_qpair->fwres.exch_total = ha->orig_fw_xcb_count; - ha->base_qpair->fwres.exch_limit = (ha->orig_fw_xcb_count * - QLA_IOCB_PCT_LIMIT) / 100; +void qla_init_iocb_limit(scsi_qla_host_t *vha) +{ + u8 i; + struct qla_hw_data *ha = vha->hw; + + __qla_adjust_iocb_limit(ha->base_qpair); + ha->base_qpair->fwres.iocbs_used = 0; ha->base_qpair->fwres.exch_used = 0; for (i = 0; i < ha->max_qpairs; i++) { if (ha->queue_pair_map[i]) { - ha->queue_pair_map[i]->fwres.iocbs_total = - ha->orig_fw_iocb_count; - ha->queue_pair_map[i]->fwres.iocbs_limit = limit; - ha->queue_pair_map[i]->fwres.iocbs_qp_limit = - limit / num_qps; + __qla_adjust_iocb_limit(ha->queue_pair_map[i]); ha->queue_pair_map[i]->fwres.iocbs_used = 0; - ha->queue_pair_map[i]->fwres.exch_total = ha->orig_fw_xcb_count; - ha->queue_pair_map[i]->fwres.exch_limit = - (ha->orig_fw_xcb_count * QLA_IOCB_PCT_LIMIT) / 100; ha->queue_pair_map[i]->fwres.exch_used = 0; } } + + ha->fwres.iocb_total = ha->orig_fw_iocb_count; + ha->fwres.iocb_limit = (ha->orig_fw_iocb_count * QLA_IOCB_PCT_LIMIT) / 100; + ha->fwres.exch_total = ha->orig_fw_xcb_count; + ha->fwres.exch_limit = (ha->orig_fw_xcb_count * QLA_IOCB_PCT_LIMIT) / 100; + + atomic_set(&ha->fwres.iocb_used, 0); + atomic_set(&ha->fwres.exch_used, 0); +} + +void qla_adjust_iocb_limit(scsi_qla_host_t *vha) +{ + u8 i; + struct qla_hw_data *ha = vha->hw; + + __qla_adjust_iocb_limit(ha->base_qpair); + + for (i = 0; i < ha->max_qpairs; i++) { + if (ha->queue_pair_map[i]) + __qla_adjust_iocb_limit(ha->queue_pair_map[i]); + } } /** @@ -4777,15 +4834,16 @@ if (ha->flags.edif_enabled) mid_init_cb->init_cb.frame_payload_size = cpu_to_le16(ELS_MAX_PAYLOAD); + QLA_FW_STARTED(ha); rval = qla2x00_init_firmware(vha, ha->init_cb_size); next_check: if (rval) { + QLA_FW_STOPPED(ha); ql_log(ql_log_fatal, vha, 0x00d2, "Init Firmware **** FAILED ****.\n"); } else { ql_dbg(ql_dbg_init, vha, 0x00d3, "Init Firmware -- success.\n"); - QLA_FW_STARTED(ha); vha->u_ql2xexchoffld = vha->u_ql2xiniexchg = 0; } @@ -5506,7 +5564,6 @@ INIT_WORK(&fcport->reg_work, qla_register_fcport_fn); INIT_LIST_HEAD(&fcport->gnl_entry); INIT_LIST_HEAD(&fcport->list); - INIT_LIST_HEAD(&fcport->tmf_pending); INIT_LIST_HEAD(&fcport->sess_cmd_list); spin_lock_init(&fcport->sess_cmd_lock); @@ -6090,6 +6147,8 @@ void qla2x00_update_fcport(scsi_qla_host_t *vha, fc_port_t *fcport) { + unsigned long flags; + if (IS_SW_RESV_ADDR(fcport->d_id)) return; @@ -6099,7 +6158,11 @@ qla2x00_set_fcport_disc_state(fcport, DSC_UPD_FCPORT); fcport->login_retry = vha->hw->login_retry_count; fcport->flags &= ~(FCF_LOGIN_NEEDED | FCF_ASYNC_SENT); + + spin_lock_irqsave(&vha->work_lock, flags); fcport->deleted = 0; + spin_unlock_irqrestore(&vha->work_lock, flags); + if (vha->hw->current_topology == ISP_CFG_NL) fcport->logout_on_delete = 0; else @@ -7337,14 +7400,15 @@ } /* purge MBox commands */ - if (atomic_read(&ha->num_pend_mbx_stage3)) { + spin_lock_irqsave(&ha->hardware_lock, flags); + if (test_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags)) { clear_bit(MBX_INTR_WAIT, &ha->mbx_cmd_flags); complete(&ha->mbx_intr_comp); } + spin_unlock_irqrestore(&ha->hardware_lock, flags); i = 0; - while (atomic_read(&ha->num_pend_mbx_stage3) || - atomic_read(&ha->num_pend_mbx_stage2) || + while (atomic_read(&ha->num_pend_mbx_stage2) || atomic_read(&ha->num_pend_mbx_stage1)) { msleep(20); i++; diff -u linux-oracle-6.5-6.5.0/drivers/thermal/thermal_of.c linux-oracle-6.5-6.5.0/drivers/thermal/thermal_of.c --- linux-oracle-6.5-6.5.0/drivers/thermal/thermal_of.c +++ linux-oracle-6.5-6.5.0/drivers/thermal/thermal_of.c @@ -38,8 +38,10 @@ */ for_each_child_of_node(trips, t) { - if (t == trip) + if (t == trip) { + of_node_put(t); goto out; + } i++; } @@ -402,8 +404,10 @@ for_each_child_of_node(cm_np, child) { ret = thermal_of_for_each_cooling_device(tz_np, child, tz, cdev, action); - if (ret) + if (ret) { + of_node_put(child); break; + } } of_node_put(cm_np); diff -u linux-oracle-6.5-6.5.0/drivers/ufs/core/ufshcd.c linux-oracle-6.5-6.5.0/drivers/ufs/core/ufshcd.c --- linux-oracle-6.5-6.5.0/drivers/ufs/core/ufshcd.c +++ linux-oracle-6.5-6.5.0/drivers/ufs/core/ufshcd.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -2324,7 +2325,11 @@ */ static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba) { - return ufshcd_readl(hba, REG_CONTROLLER_STATUS) & UIC_COMMAND_READY; + u32 val; + int ret = read_poll_timeout(ufshcd_readl, val, val & UIC_COMMAND_READY, + 500, UIC_CMD_TIMEOUT * 1000, false, hba, + REG_CONTROLLER_STATUS); + return ret == 0 ? true : false; } /** @@ -2416,7 +2421,6 @@ bool completion) { lockdep_assert_held(&hba->uic_cmd_mutex); - lockdep_assert_held(hba->host->host_lock); if (!ufshcd_ready_for_uic_cmd(hba)) { dev_err(hba->dev, @@ -2443,7 +2447,6 @@ int ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd) { int ret; - unsigned long flags; if (hba->quirks & UFSHCD_QUIRK_BROKEN_UIC_CMD) return 0; @@ -2452,9 +2455,7 @@ mutex_lock(&hba->uic_cmd_mutex); ufshcd_add_delay_before_dme_cmd(hba); - spin_lock_irqsave(hba->host->host_lock, flags); ret = __ufshcd_send_uic_cmd(hba, uic_cmd, true); - spin_unlock_irqrestore(hba->host->host_lock, flags); if (!ret) ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd); @@ -4166,8 +4167,8 @@ wmb(); reenable_intr = true; } - ret = __ufshcd_send_uic_cmd(hba, cmd, false); spin_unlock_irqrestore(hba->host->host_lock, flags); + ret = __ufshcd_send_uic_cmd(hba, cmd, false); if (ret) { dev_err(hba->dev, "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n", @@ -6954,7 +6955,7 @@ mask, 0, 1000, 1000); dev_err(hba->dev, "Clearing task management function with tag %d %s\n", - tag, err ? "succeeded" : "failed"); + tag, err < 0 ? "failed" : "succeeded"); out: return err; @@ -7296,7 +7297,15 @@ /* Advanced RPMB starts from UFS 4.0, so its command type is UTP_CMD_TYPE_UFS_STORAGE */ lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE; - ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, dir, 2); + /* + * According to UFSHCI 4.0 specification page 24, if EHSLUTRDS is 0, host controller takes + * EHS length from CMD UPIU, and SW driver use EHS Length field in CMD UPIU. if it is 1, + * HW controller takes EHS length from UTRD. + */ + if (hba->capabilities & MASK_EHSLUTRD_SUPPORTED) + ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, dir, 2); + else + ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, dir, 0); /* update the task tag and LUN in the request upiu */ req_upiu->header.dword_0 |= cpu_to_be32(upiu_flags << 16 | UFS_UPIU_RPMB_WLUN << 8 | tag); diff -u linux-oracle-6.5-6.5.0/drivers/usb/chipidea/ci_hdrc_imx.c linux-oracle-6.5-6.5.0/drivers/usb/chipidea/ci_hdrc_imx.c --- linux-oracle-6.5-6.5.0/drivers/usb/chipidea/ci_hdrc_imx.c +++ linux-oracle-6.5-6.5.0/drivers/usb/chipidea/ci_hdrc_imx.c @@ -67,11 +67,13 @@ static const struct ci_hdrc_imx_platform_flag imx7ulp_usb_data = { .flags = CI_HDRC_SUPPORTS_RUNTIME_PM | + CI_HDRC_HAS_PORTSC_PEC_MISSED | CI_HDRC_PMQOS, }; static const struct ci_hdrc_imx_platform_flag imx8ulp_usb_data = { - .flags = CI_HDRC_SUPPORTS_RUNTIME_PM, + .flags = CI_HDRC_SUPPORTS_RUNTIME_PM | + CI_HDRC_HAS_PORTSC_PEC_MISSED, }; static const struct of_device_id ci_hdrc_imx_dt_ids[] = { diff -u linux-oracle-6.5-6.5.0/drivers/usb/core/hub.c linux-oracle-6.5-6.5.0/drivers/usb/core/hub.c --- linux-oracle-6.5-6.5.0/drivers/usb/core/hub.c +++ linux-oracle-6.5-6.5.0/drivers/usb/core/hub.c @@ -151,6 +151,10 @@ if (udev->quirks & USB_QUIRK_NO_LPM) return 0; + /* Skip if the device BOS descriptor couldn't be read */ + if (!udev->bos) + return 0; + /* USB 2.1 (and greater) devices indicate LPM support through * their USB 2.0 Extended Capabilities BOS descriptor. */ @@ -327,6 +331,10 @@ if (!udev->lpm_capable || udev->speed < USB_SPEED_SUPER) return; + /* Skip if the device BOS descriptor couldn't be read */ + if (!udev->bos) + return; + hub = usb_hub_to_struct_hub(udev->parent); /* It doesn't take time to transition the roothub into U0, since it * doesn't have an upstream link. @@ -2720,13 +2728,17 @@ static enum usb_ssp_rate get_port_ssp_rate(struct usb_device *hdev, u32 ext_portstatus) { - struct usb_ssp_cap_descriptor *ssp_cap = hdev->bos->ssp_cap; + struct usb_ssp_cap_descriptor *ssp_cap; u32 attr; u8 speed_id; u8 ssac; u8 lanes; int i; + if (!hdev->bos) + goto out; + + ssp_cap = hdev->bos->ssp_cap; if (!ssp_cap) goto out; @@ -4244,8 +4256,15 @@ enum usb3_link_state state) { int timeout; - __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat; - __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat; + __u8 u1_mel; + __le16 u2_mel; + + /* Skip if the device BOS descriptor couldn't be read */ + if (!udev->bos) + return; + + u1_mel = udev->bos->ss_cap->bU1devExitLat; + u2_mel = udev->bos->ss_cap->bU2DevExitLat; /* If the device says it doesn't have *any* exit latency to come out of * U1 or U2, it's probably lying. Assume it doesn't implement that link diff -u linux-oracle-6.5-6.5.0/drivers/video/backlight/gpio_backlight.c linux-oracle-6.5-6.5.0/drivers/video/backlight/gpio_backlight.c --- linux-oracle-6.5-6.5.0/drivers/video/backlight/gpio_backlight.c +++ linux-oracle-6.5-6.5.0/drivers/video/backlight/gpio_backlight.c @@ -87,8 +87,7 @@ /* Not booted with device tree or no phandle link to the node */ bl->props.power = def_value ? FB_BLANK_UNBLANK : FB_BLANK_POWERDOWN; - else if (gpiod_get_direction(gbl->gpiod) == 0 && - gpiod_get_value_cansleep(gbl->gpiod) == 0) + else if (gpiod_get_value_cansleep(gbl->gpiod) == 0) bl->props.power = FB_BLANK_POWERDOWN; else bl->props.power = FB_BLANK_UNBLANK; diff -u linux-oracle-6.5-6.5.0/fs/btrfs/zoned.c linux-oracle-6.5-6.5.0/fs/btrfs/zoned.c --- linux-oracle-6.5-6.5.0/fs/btrfs/zoned.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/zoned.c @@ -65,6 +65,9 @@ #define SUPER_INFO_SECTORS ((u64)BTRFS_SUPER_INFO_SIZE >> SECTOR_SHIFT) +static void wait_eb_writebacks(struct btrfs_block_group *block_group); +static int do_zone_finish(struct btrfs_block_group *block_group, bool fully_written); + static inline bool sb_zone_is_full(const struct blk_zone *zone) { return (zone->cond == BLK_ZONE_COND_FULL) || @@ -1758,41 +1761,121 @@ } } -bool btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info, - struct extent_buffer *eb, - struct btrfs_block_group **cache_ret) +static bool check_bg_is_active(struct btrfs_eb_write_context *ctx, + struct btrfs_block_group **active_bg) { - struct btrfs_block_group *cache; - bool ret = true; + const struct writeback_control *wbc = ctx->wbc; + struct btrfs_block_group *block_group = ctx->zoned_bg; + struct btrfs_fs_info *fs_info = block_group->fs_info; - if (!btrfs_is_zoned(fs_info)) + if (test_bit(BLOCK_GROUP_FLAG_ZONE_IS_ACTIVE, &block_group->runtime_flags)) return true; - cache = btrfs_lookup_block_group(fs_info, eb->start); - if (!cache) - return true; + if (fs_info->treelog_bg == block_group->start) { + if (!btrfs_zone_activate(block_group)) { + int ret_fin = btrfs_zone_finish_one_bg(fs_info); - if (cache->meta_write_pointer != eb->start) { - btrfs_put_block_group(cache); - cache = NULL; - ret = false; - } else { - cache->meta_write_pointer = eb->start + eb->len; - } + if (ret_fin != 1 || !btrfs_zone_activate(block_group)) + return false; + } + } else if (*active_bg != block_group) { + struct btrfs_block_group *tgt = *active_bg; + + /* zoned_meta_io_lock protects fs_info->active_{meta,system}_bg. */ + lockdep_assert_held(&fs_info->zoned_meta_io_lock); - *cache_ret = cache; + if (tgt) { + /* + * If there is an unsent IO left in the allocated area, + * we cannot wait for them as it may cause a deadlock. + */ + if (tgt->meta_write_pointer < tgt->start + tgt->alloc_offset) { + if (wbc->sync_mode == WB_SYNC_NONE || + (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync)) + return false; + } + + /* Pivot active metadata/system block group. */ + btrfs_zoned_meta_io_unlock(fs_info); + wait_eb_writebacks(tgt); + do_zone_finish(tgt, true); + btrfs_zoned_meta_io_lock(fs_info); + if (*active_bg == tgt) { + btrfs_put_block_group(tgt); + *active_bg = NULL; + } + } + if (!btrfs_zone_activate(block_group)) + return false; + if (*active_bg != block_group) { + ASSERT(*active_bg == NULL); + *active_bg = block_group; + btrfs_get_block_group(block_group); + } + } - return ret; + return true; } -void btrfs_revert_meta_write_pointer(struct btrfs_block_group *cache, - struct extent_buffer *eb) +/* + * Check if @ctx->eb is aligned to the write pointer. + * + * Return: + * 0: @ctx->eb is at the write pointer. You can write it. + * -EAGAIN: There is a hole. The caller should handle the case. + * -EBUSY: There is a hole, but the caller can just bail out. + */ +int btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info, + struct btrfs_eb_write_context *ctx) { - if (!btrfs_is_zoned(eb->fs_info) || !cache) - return; + const struct writeback_control *wbc = ctx->wbc; + const struct extent_buffer *eb = ctx->eb; + struct btrfs_block_group *block_group = ctx->zoned_bg; + + if (!btrfs_is_zoned(fs_info)) + return 0; + + if (block_group) { + if (block_group->start > eb->start || + block_group->start + block_group->length <= eb->start) { + btrfs_put_block_group(block_group); + block_group = NULL; + ctx->zoned_bg = NULL; + } + } - ASSERT(cache->meta_write_pointer == eb->start + eb->len); - cache->meta_write_pointer = eb->start; + if (!block_group) { + block_group = btrfs_lookup_block_group(fs_info, eb->start); + if (!block_group) + return 0; + ctx->zoned_bg = block_group; + } + + if (block_group->meta_write_pointer == eb->start) { + struct btrfs_block_group **tgt; + + if (!test_bit(BTRFS_FS_ACTIVE_ZONE_TRACKING, &fs_info->flags)) + return 0; + + if (block_group->flags & BTRFS_BLOCK_GROUP_SYSTEM) + tgt = &fs_info->active_system_bg; + else + tgt = &fs_info->active_meta_bg; + if (check_bg_is_active(ctx, tgt)) + return 0; + } + + /* + * Since we may release fs_info->zoned_meta_io_lock, someone can already + * start writing this eb. In that case, we can just bail out. + */ + if (block_group->meta_write_pointer > eb->start) + return -EBUSY; + + /* If for_sync, this hole will be filled with trasnsaction commit. */ + if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) + return -EAGAIN; + return -EBUSY; } int btrfs_zoned_issue_zeroout(struct btrfs_device *device, u64 physical, u64 length) @@ -2017,6 +2100,10 @@ * and block_group->meta_write_pointer for metadata. */ if (!fully_written) { + if (test_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags)) { + spin_unlock(&block_group->lock); + return -EAGAIN; + } spin_unlock(&block_group->lock); ret = btrfs_inc_block_group_ro(block_group, false); @@ -2045,7 +2132,9 @@ return 0; } - if (block_group->reserved) { + if (block_group->reserved || + test_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, + &block_group->runtime_flags)) { spin_unlock(&block_group->lock); btrfs_dec_block_group_ro(block_group); return -EAGAIN; @@ -2276,7 +2365,10 @@ /* All relocation extents are written. */ if (block_group->start + block_group->alloc_offset == logical + length) { - /* Now, release this block group for further allocations. */ + /* + * Now, release this block group for further allocations and + * zone finish. + */ clear_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags); } @@ -2300,7 +2392,8 @@ spin_lock(&block_group->lock); if (block_group->reserved || block_group->alloc_offset == 0 || - (block_group->flags & BTRFS_BLOCK_GROUP_SYSTEM)) { + (block_group->flags & BTRFS_BLOCK_GROUP_SYSTEM) || + test_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags)) { spin_unlock(&block_group->lock); continue; } diff -u linux-oracle-6.5-6.5.0/fs/ceph/caps.c linux-oracle-6.5-6.5.0/fs/ceph/caps.c --- linux-oracle-6.5-6.5.0/fs/ceph/caps.c +++ linux-oracle-6.5-6.5.0/fs/ceph/caps.c @@ -1944,7 +1944,6 @@ swap(cf, ci->i_prealloc_cap_flush); cf->caps = flushing; cf->wake = wake; - cf->ci = ci; spin_lock(&mdsc->cap_dirty_lock); list_del_init(&ci->i_dirty_item); @@ -3658,7 +3657,7 @@ queue_trunc = ceph_fill_file_size(inode, extra_info->issued, le32_to_cpu(grant->truncate_seq), le64_to_cpu(grant->truncate_size), - size, newcaps); + size); } if (ci->i_auth_cap == cap && (newcaps & CEPH_CAP_ANY_FILE_WR)) { @@ -3825,10 +3824,6 @@ bool wake_ci = false; bool wake_mdsc = false; - /* track latest cap flush ack seen for this inode */ - if (flush_tid > ci->i_last_cap_flush_ack) - ci->i_last_cap_flush_ack = flush_tid; - list_for_each_entry_safe(cf, tmp_cf, &ci->i_cap_flush_list, i_list) { /* Is this the one that was flushed? */ if (cf->tid == flush_tid) @@ -4053,8 +4048,7 @@ doutc(cl, "%p %llx.%llx mds%d seq %d to %lld truncate seq %d\n", inode, ceph_vinop(inode), mds, seq, truncate_size, truncate_seq); queue_trunc = ceph_fill_file_size(inode, issued, - truncate_seq, truncate_size, - size, 0); + truncate_seq, truncate_size, size); return queue_trunc; } @@ -4461,11 +4455,7 @@ session->s_seq, (unsigned)seq); if (!inode) { - if (op == CEPH_CAP_OP_FLUSH_ACK) - pr_info_client(cl, "can't find ino %llx:%llx for flush_ack!\n", - vino.snap, vino.ino); - else - doutc(cl, " i don't have ino %llx\n", vino.ino); + doutc(cl, " i don't have ino %llx\n", vino.ino); switch (op) { case CEPH_CAP_OP_IMPORT: @@ -4523,10 +4513,6 @@ doutc(cl, " no cap on %p %llx.%llx from mds%d\n", inode, ceph_vinop(inode), session->s_mds); spin_unlock(&ci->i_ceph_lock); - if (op == CEPH_CAP_OP_FLUSH_ACK) - pr_info_client(cl, "no cap on %p %llx.%llx from " - "mds%d for flush_ack!\n", - inode, ceph_vinop(inode), session->s_mds); switch (op) { case CEPH_CAP_OP_REVOKE: case CEPH_CAP_OP_GRANT: diff -u linux-oracle-6.5-6.5.0/fs/ceph/file.c linux-oracle-6.5-6.5.0/fs/ceph/file.c --- linux-oracle-6.5-6.5.0/fs/ceph/file.c +++ linux-oracle-6.5-6.5.0/fs/ceph/file.c @@ -3013,7 +3013,7 @@ ret = do_splice_direct(src_file, &src_off, dst_file, &dst_off, src_objlen, flags); /* Abort on short copies or on error */ - if (ret < src_objlen) { + if (ret < (long)src_objlen) { doutc(cl, "Failed partial copy (%zd)\n", ret); goto out; } diff -u linux-oracle-6.5-6.5.0/fs/ceph/inode.c linux-oracle-6.5-6.5.0/fs/ceph/inode.c --- linux-oracle-6.5-6.5.0/fs/ceph/inode.c +++ linux-oracle-6.5-6.5.0/fs/ceph/inode.c @@ -15,7 +15,6 @@ #include #include #include -#include #include "super.h" #include "mds_client.h" @@ -623,7 +622,6 @@ INIT_LIST_HEAD(&ci->i_cap_snaps); ci->i_head_snapc = NULL; ci->i_snap_caps = 0; - ci->i_last_cap_flush_ack = 0; ci->i_last_rd = ci->i_last_wr = jiffies - 3600 * HZ; for (i = 0; i < CEPH_FILE_MODE_BITS; i++) @@ -754,8 +752,7 @@ * truncate() increments the corresponding _seq values.) */ int ceph_fill_file_size(struct inode *inode, int issued, - u32 truncate_seq, u64 truncate_size, - u64 size, int newcaps) + u32 truncate_seq, u64 truncate_size, u64 size) { struct ceph_client *cl = ceph_inode_to_client(inode); struct ceph_inode_info *ci = ceph_inode(inode); @@ -784,23 +781,8 @@ ci->i_truncate_seq = truncate_seq; /* the MDS should have revoked these caps */ - if (issued & (CEPH_CAP_FILE_EXCL | - CEPH_CAP_FILE_RD | - CEPH_CAP_FILE_WR | - CEPH_CAP_FILE_LAZYIO)) { - pr_err_client(cl, - "%p ino %llx.%llx already issued %s, newcaps %s\n", - inode, ceph_vinop(inode), - ceph_cap_string(issued), - ceph_cap_string(newcaps)); - pr_err_client(cl, " truncate_seq %u -> %u\n", - ci->i_truncate_seq, - truncate_seq); - pr_err_client(cl, " size %lld -> %llu\n", - isize, size); - msleep(1000); - BUG(); - } + WARN_ON_ONCE(issued & (CEPH_CAP_FILE_RD | + CEPH_CAP_FILE_LAZYIO)); /* * If we hold relevant caps, or in the case where we're * not the only client referencing this file and we @@ -1137,7 +1119,7 @@ queue_trunc = ceph_fill_file_size(inode, issued, le32_to_cpu(info->truncate_seq), le64_to_cpu(info->truncate_size), - size, info_caps); + size); /* only update max_size on auth cap */ if ((info->cap.flags & CEPH_CAP_FLAG_AUTH) && ci->i_max_size != le64_to_cpu(info->max_size)) { diff -u linux-oracle-6.5-6.5.0/fs/ceph/mds_client.c linux-oracle-6.5-6.5.0/fs/ceph/mds_client.c --- linux-oracle-6.5-6.5.0/fs/ceph/mds_client.c +++ linux-oracle-6.5-6.5.0/fs/ceph/mds_client.c @@ -2277,28 +2277,6 @@ return ret; } -static void dump_cap_flushes(struct ceph_mds_client *mdsc, u64 want_tid) -{ - struct ceph_client *cl = mdsc->fsc->client; - struct ceph_cap_flush *cf; - - pr_info_client(cl, "still waiting for cap flushes through %llu:\n", - want_tid); - spin_lock(&mdsc->cap_dirty_lock); - list_for_each_entry(cf, &mdsc->cap_flush_list, g_list) { - struct inode *inode = &cf->ci->netfs.inode; - - if (cf->tid > want_tid) - break; - pr_info_client(cl, "%p %llx.%llx %s %llu %llu %d%s\n", - inode, ceph_vinop(inode), - ceph_cap_string(cf->caps), cf->tid, - cf->ci->i_last_cap_flush_ack, cf->wake, - cf->is_capsnap ? " is_capsnap" : ""); - } - spin_unlock(&mdsc->cap_dirty_lock); -} - /* * flush all dirty inode data to disk. * @@ -2308,19 +2286,11 @@ u64 want_flush_tid) { struct ceph_client *cl = mdsc->fsc->client; - int i = 0; - long ret; doutc(cl, "want %llu\n", want_flush_tid); - do { - ret = wait_event_timeout(mdsc->cap_flushing_wq, - check_caps_flush(mdsc, want_flush_tid), 60 * HZ); - if (ret == 0 && ++i < 5) - dump_cap_flushes(mdsc, want_flush_tid); - else if (ret == 1) - pr_info_client(cl, "condition evaluated to true after timeout!\n"); - } while (ret == 0); + wait_event(mdsc->cap_flushing_wq, + check_caps_flush(mdsc, want_flush_tid)); doutc(cl, "ok, flushed thru %llu\n", want_flush_tid); } @@ -5904,8 +5874,6 @@ mutex_lock(&mdsc->mutex); if (__verify_registered_session(mdsc, s) < 0) { - pr_info_client(cl, "dropping tid %llu from unregistered session %d\n", - msg->hdr.tid, s->s_mds); mutex_unlock(&mdsc->mutex); goto out; } diff -u linux-oracle-6.5-6.5.0/fs/ceph/snap.c linux-oracle-6.5-6.5.0/fs/ceph/snap.c --- linux-oracle-6.5-6.5.0/fs/ceph/snap.c +++ linux-oracle-6.5-6.5.0/fs/ceph/snap.c @@ -595,7 +595,6 @@ ceph_cap_string(dirty), capsnap->need_flush ? "" : "no_flush"); ihold(inode); - capsnap->cap_flush.ci = ci; capsnap->follows = old_snapc->seq; capsnap->issued = __ceph_caps_issued(ci, NULL); capsnap->dirty = dirty; diff -u linux-oracle-6.5-6.5.0/fs/ceph/super.h linux-oracle-6.5-6.5.0/fs/ceph/super.h --- linux-oracle-6.5-6.5.0/fs/ceph/super.h +++ linux-oracle-6.5-6.5.0/fs/ceph/super.h @@ -210,7 +210,6 @@ bool is_capsnap; /* true means capsnap */ struct list_head g_list; // global struct list_head i_list; // per inode - struct ceph_inode_info *ci; }; /* @@ -416,7 +415,6 @@ struct ceph_snap_context *i_head_snapc; /* set if wr_buffer_head > 0 or dirty|flushing caps */ unsigned i_snap_caps; /* cap bits for snapped files */ - u64 i_last_cap_flush_ack; /* latest cap flush_ack tid for this inode */ unsigned long i_last_rd; unsigned long i_last_wr; @@ -1041,8 +1039,7 @@ struct inode *newino); extern struct inode *ceph_get_snapdir(struct inode *parent); extern int ceph_fill_file_size(struct inode *inode, int issued, - u32 truncate_seq, u64 truncate_size, - u64 size, int newcaps); + u32 truncate_seq, u64 truncate_size, u64 size); extern void ceph_fill_file_time(struct inode *inode, int issued, u64 time_warp_seq, struct timespec64 *ctime, struct timespec64 *mtime, reverted: --- linux-oracle-6.5-6.5.0/fs/crypto/keyring.c +++ linux-oracle-6.5-6.5.0.orig/fs/crypto/keyring.c @@ -237,11 +237,7 @@ * with ->mk_secret. There should be no structural refs * beyond the one associated with the active ref. */ + WARN_ON_ONCE(refcount_read(&mk->mk_active_refs) != 1); - if (refcount_read(&mk->mk_active_refs) != 1) { - printk("fscrypt_destroy_keyring: mk_active_refs = %d\n", - refcount_read(&mk->mk_active_refs)); - WARN_ON_ONCE(refcount_read(&mk->mk_active_refs) != 1); - } WARN_ON_ONCE(refcount_read(&mk->mk_struct_refs) != 1); WARN_ON_ONCE(!is_master_key_secret_present(&mk->mk_secret)); wipe_master_key_secret(&mk->mk_secret); diff -u linux-oracle-6.5-6.5.0/fs/ext4/mballoc.c linux-oracle-6.5-6.5.0/fs/ext4/mballoc.c --- linux-oracle-6.5-6.5.0/fs/ext4/mballoc.c +++ linux-oracle-6.5-6.5.0/fs/ext4/mballoc.c @@ -16,6 +16,7 @@ #include #include #include +#include #include /* @@ -4223,12 +4224,13 @@ static inline void ext4_mb_pa_assert_overlap(struct ext4_allocation_context *ac, - ext4_lblk_t start, ext4_lblk_t end) + ext4_lblk_t start, loff_t end) { struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); struct ext4_inode_info *ei = EXT4_I(ac->ac_inode); struct ext4_prealloc_space *tmp_pa; - ext4_lblk_t tmp_pa_start, tmp_pa_end; + ext4_lblk_t tmp_pa_start; + loff_t tmp_pa_end; struct rb_node *iter; read_lock(&ei->i_prealloc_lock); @@ -4237,7 +4239,7 @@ tmp_pa = rb_entry(iter, struct ext4_prealloc_space, pa_node.inode_node); tmp_pa_start = tmp_pa->pa_lstart; - tmp_pa_end = tmp_pa->pa_lstart + EXT4_C2B(sbi, tmp_pa->pa_len); + tmp_pa_end = pa_logical_end(sbi, tmp_pa); spin_lock(&tmp_pa->pa_lock); if (tmp_pa->pa_deleted == 0) @@ -4259,14 +4261,14 @@ */ static inline void ext4_mb_pa_adjust_overlap(struct ext4_allocation_context *ac, - ext4_lblk_t *start, ext4_lblk_t *end) + ext4_lblk_t *start, loff_t *end) { struct ext4_inode_info *ei = EXT4_I(ac->ac_inode); struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); struct ext4_prealloc_space *tmp_pa = NULL, *left_pa = NULL, *right_pa = NULL; struct rb_node *iter; - ext4_lblk_t new_start, new_end; - ext4_lblk_t tmp_pa_start, tmp_pa_end, left_pa_end = -1, right_pa_start = -1; + ext4_lblk_t new_start, tmp_pa_start, right_pa_start = -1; + loff_t new_end, tmp_pa_end, left_pa_end = -1; new_start = *start; new_end = *end; @@ -4285,7 +4287,7 @@ tmp_pa = rb_entry(iter, struct ext4_prealloc_space, pa_node.inode_node); tmp_pa_start = tmp_pa->pa_lstart; - tmp_pa_end = tmp_pa->pa_lstart + EXT4_C2B(sbi, tmp_pa->pa_len); + tmp_pa_end = pa_logical_end(sbi, tmp_pa); /* PA must not overlap original request */ spin_lock(&tmp_pa->pa_lock); @@ -4365,8 +4367,7 @@ } if (left_pa) { - left_pa_end = - left_pa->pa_lstart + EXT4_C2B(sbi, left_pa->pa_len); + left_pa_end = pa_logical_end(sbi, left_pa); BUG_ON(left_pa_end > ac->ac_o_ex.fe_logical); } @@ -4405,8 +4406,7 @@ struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); struct ext4_super_block *es = sbi->s_es; int bsbits, max; - ext4_lblk_t end; - loff_t size, start_off; + loff_t size, start_off, end; loff_t orig_size __maybe_unused; ext4_lblk_t start; @@ -4433,7 +4433,7 @@ /* first, let's learn actual file size * given current request is allocated */ - size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len); + size = extent_logical_end(sbi, &ac->ac_o_ex); size = size << bsbits; if (size < i_size_read(ac->ac_inode)) size = i_size_read(ac->ac_inode); @@ -4767,7 +4767,6 @@ struct ext4_inode_info *ei = EXT4_I(ac->ac_inode); struct ext4_locality_group *lg; struct ext4_prealloc_space *tmp_pa = NULL, *cpa = NULL; - loff_t tmp_pa_end; struct rb_node *iter; ext4_fsblk_t goal_block; @@ -4863,9 +4862,7 @@ * pa can possibly satisfy the request hence check if it overlaps * original logical start and stop searching if it doesn't. */ - tmp_pa_end = (loff_t)tmp_pa->pa_lstart + EXT4_C2B(sbi, tmp_pa->pa_len); - - if (ac->ac_o_ex.fe_logical >= tmp_pa_end) { + if (ac->ac_o_ex.fe_logical >= pa_logical_end(sbi, tmp_pa)) { spin_unlock(&tmp_pa->pa_lock); goto try_group_pa; } @@ -5181,8 +5178,11 @@ pa = ac->ac_pa; if (ac->ac_b_ex.fe_len < ac->ac_orig_goal_len) { - int new_bex_start; - int new_bex_end; + struct ext4_free_extent ex = { + .fe_logical = ac->ac_g_ex.fe_logical, + .fe_len = ac->ac_orig_goal_len, + }; + loff_t orig_goal_end = extent_logical_end(sbi, &ex); /* we can't allocate as much as normalizer wants. * so, found space must get proper lstart @@ -5201,29 +5201,23 @@ * still cover original start * 3. Else, keep the best ex at start of original request. */ - new_bex_end = ac->ac_g_ex.fe_logical + - EXT4_C2B(sbi, ac->ac_orig_goal_len); - new_bex_start = new_bex_end - EXT4_C2B(sbi, ac->ac_b_ex.fe_len); - if (ac->ac_o_ex.fe_logical >= new_bex_start) - goto adjust_bex; + ex.fe_len = ac->ac_b_ex.fe_len; - new_bex_start = ac->ac_g_ex.fe_logical; - new_bex_end = - new_bex_start + EXT4_C2B(sbi, ac->ac_b_ex.fe_len); - if (ac->ac_o_ex.fe_logical < new_bex_end) + ex.fe_logical = orig_goal_end - EXT4_C2B(sbi, ex.fe_len); + if (ac->ac_o_ex.fe_logical >= ex.fe_logical) goto adjust_bex; - new_bex_start = ac->ac_o_ex.fe_logical; - new_bex_end = - new_bex_start + EXT4_C2B(sbi, ac->ac_b_ex.fe_len); + ex.fe_logical = ac->ac_g_ex.fe_logical; + if (ac->ac_o_ex.fe_logical < extent_logical_end(sbi, &ex)) + goto adjust_bex; + ex.fe_logical = ac->ac_o_ex.fe_logical; adjust_bex: - ac->ac_b_ex.fe_logical = new_bex_start; + ac->ac_b_ex.fe_logical = ex.fe_logical; BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical); BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len); - BUG_ON(new_bex_end > (ac->ac_g_ex.fe_logical + - EXT4_C2B(sbi, ac->ac_orig_goal_len))); + BUG_ON(extent_logical_end(sbi, &ex) > orig_goal_end); } pa->pa_lstart = ac->ac_b_ex.fe_logical; @@ -5770,7 +5764,7 @@ group_pa_eligible = sbi->s_mb_group_prealloc > 0; inode_pa_eligible = true; - size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len); + size = extent_logical_end(sbi, &ac->ac_o_ex); isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1) >> bsbits; @@ -6927,6 +6921,21 @@ return ret; } +static ext4_grpblk_t ext4_last_grp_cluster(struct super_block *sb, + ext4_group_t grp) +{ + if (grp < ext4_get_groups_count(sb)) + return EXT4_CLUSTERS_PER_GROUP(sb) - 1; + return (ext4_blocks_count(EXT4_SB(sb)->s_es) - + ext4_group_first_block_no(sb, grp) - 1) >> + EXT4_CLUSTER_BITS(sb); +} + +static bool ext4_trim_interrupted(void) +{ + return fatal_signal_pending(current) || freezing(current); +} + static int ext4_try_to_trim_range(struct super_block *sb, struct ext4_buddy *e4b, ext4_grpblk_t start, ext4_grpblk_t max, ext4_grpblk_t minblocks) @@ -6934,11 +6943,13 @@ __releases(ext4_group_lock_ptr(sb, e4b->bd_group)) { ext4_grpblk_t next, count, free_count; + bool set_trimmed = false; void *bitmap; bitmap = e4b->bd_bitmap; - start = (e4b->bd_info->bb_first_free > start) ? - e4b->bd_info->bb_first_free : start; + if (start == 0 && max >= ext4_last_grp_cluster(sb, e4b->bd_group)) + set_trimmed = true; + start = max(e4b->bd_info->bb_first_free, start); count = 0; free_count = 0; @@ -6952,16 +6963,14 @@ int ret = ext4_trim_extent(sb, start, next - start, e4b); if (ret && ret != -EOPNOTSUPP) - break; + return count; count += next - start; } free_count += next - start; start = next + 1; - if (fatal_signal_pending(current)) { - count = -ERESTARTSYS; - break; - } + if (ext4_trim_interrupted()) + return count; if (need_resched()) { ext4_unlock_group(sb, e4b->bd_group); @@ -6973,6 +6982,9 @@ break; } + if (set_trimmed) + EXT4_MB_GRP_SET_TRIMMED(e4b->bd_info); + return count; } @@ -6983,7 +6995,6 @@ * @start: first group block to examine * @max: last group block to examine * @minblocks: minimum extent block count - * @set_trimmed: set the trimmed flag if at least one block is trimmed * * ext4_trim_all_free walks through group's block bitmap searching for free * extents. When the free extent is found, mark it as used in group buddy @@ -6993,7 +7004,7 @@ static ext4_grpblk_t ext4_trim_all_free(struct super_block *sb, ext4_group_t group, ext4_grpblk_t start, ext4_grpblk_t max, - ext4_grpblk_t minblocks, bool set_trimmed) + ext4_grpblk_t minblocks) { struct ext4_buddy e4b; int ret; @@ -7010,13 +7021,10 @@ ext4_lock_group(sb, group); if (!EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) || - minblocks < EXT4_SB(sb)->s_last_trim_minblks) { + minblocks < EXT4_SB(sb)->s_last_trim_minblks) ret = ext4_try_to_trim_range(sb, &e4b, start, max, minblocks); - if (ret >= 0 && set_trimmed) - EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info); - } else { + else ret = 0; - } ext4_unlock_group(sb, group); ext4_mb_unload_buddy(&e4b); @@ -7049,7 +7057,6 @@ ext4_fsblk_t first_data_blk = le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block); ext4_fsblk_t max_blks = ext4_blocks_count(EXT4_SB(sb)->s_es); - bool whole_group, eof = false; int ret = 0; start = range->start >> sb->s_blocksize_bits; @@ -7068,10 +7075,8 @@ if (minlen > EXT4_CLUSTERS_PER_GROUP(sb)) goto out; } - if (end >= max_blks - 1) { + if (end >= max_blks - 1) end = max_blks - 1; - eof = true; - } if (end <= first_data_blk) goto out; if (start < first_data_blk) @@ -7085,9 +7090,10 @@ /* end now represents the last cluster to discard in this group */ end = EXT4_CLUSTERS_PER_GROUP(sb) - 1; - whole_group = true; for (group = first_group; group <= last_group; group++) { + if (ext4_trim_interrupted()) + break; grp = ext4_get_group_info(sb, group); if (!grp) continue; @@ -7104,13 +7110,11 @@ * change it for the last group, note that last_cluster is * already computed earlier by ext4_get_group_no_and_offset() */ - if (group == last_group) { + if (group == last_group) end = last_cluster; - whole_group = eof ? true : end == EXT4_CLUSTERS_PER_GROUP(sb) - 1; - } if (grp->bb_free >= minlen) { cnt = ext4_trim_all_free(sb, group, first_cluster, - end, minlen, whole_group); + end, minlen); if (cnt < 0) { ret = cnt; break; @@ -7155,8 +7159,7 @@ ext4_lock_group(sb, group); - start = (e4b.bd_info->bb_first_free > start) ? - e4b.bd_info->bb_first_free : start; + start = max(e4b.bd_info->bb_first_free, start); if (end >= EXT4_CLUSTERS_PER_GROUP(sb)) end = EXT4_CLUSTERS_PER_GROUP(sb) - 1; diff -u linux-oracle-6.5-6.5.0/fs/ext4/namei.c linux-oracle-6.5-6.5.0/fs/ext4/namei.c --- linux-oracle-6.5-6.5.0/fs/ext4/namei.c +++ linux-oracle-6.5-6.5.0/fs/ext4/namei.c @@ -343,17 +343,17 @@ struct buffer_head *bh) { struct ext4_dir_entry_tail *t; + int blocksize = EXT4_BLOCK_SIZE(inode->i_sb); #ifdef PARANOID struct ext4_dir_entry *d, *top; d = (struct ext4_dir_entry *)bh->b_data; top = (struct ext4_dir_entry *)(bh->b_data + - (EXT4_BLOCK_SIZE(inode->i_sb) - - sizeof(struct ext4_dir_entry_tail))); - while (d < top && d->rec_len) + (blocksize - sizeof(struct ext4_dir_entry_tail))); + while (d < top && ext4_rec_len_from_disk(d->rec_len, blocksize)) d = (struct ext4_dir_entry *)(((void *)d) + - le16_to_cpu(d->rec_len)); + ext4_rec_len_from_disk(d->rec_len, blocksize)); if (d != top) return NULL; @@ -364,7 +364,8 @@ #endif if (t->det_reserved_zero1 || - le16_to_cpu(t->det_rec_len) != sizeof(struct ext4_dir_entry_tail) || + (ext4_rec_len_from_disk(t->det_rec_len, blocksize) != + sizeof(struct ext4_dir_entry_tail)) || t->det_reserved_zero2 || t->det_reserved_ft != EXT4_FT_DIR_CSUM) return NULL; @@ -445,13 +446,14 @@ struct ext4_dir_entry *dp; struct dx_root_info *root; int count_offset; + int blocksize = EXT4_BLOCK_SIZE(inode->i_sb); + unsigned int rlen = ext4_rec_len_from_disk(dirent->rec_len, blocksize); - if (le16_to_cpu(dirent->rec_len) == EXT4_BLOCK_SIZE(inode->i_sb)) + if (rlen == blocksize) count_offset = 8; - else if (le16_to_cpu(dirent->rec_len) == 12) { + else if (rlen == 12) { dp = (struct ext4_dir_entry *)(((void *)dirent) + 12); - if (le16_to_cpu(dp->rec_len) != - EXT4_BLOCK_SIZE(inode->i_sb) - 12) + if (ext4_rec_len_from_disk(dp->rec_len, blocksize) != blocksize - 12) return NULL; root = (struct dx_root_info *)(((void *)dp + 12)); if (root->reserved_zero || @@ -1315,6 +1317,7 @@ unsigned int buflen = bh->b_size; char *base = bh->b_data; struct dx_hash_info h = *hinfo; + int blocksize = EXT4_BLOCK_SIZE(dir->i_sb); if (ext4_has_metadata_csum(dir->i_sb)) buflen -= sizeof(struct ext4_dir_entry_tail); @@ -1335,11 +1338,12 @@ map_tail--; map_tail->hash = h.hash; map_tail->offs = ((char *) de - base)>>2; - map_tail->size = le16_to_cpu(de->rec_len); + map_tail->size = ext4_rec_len_from_disk(de->rec_len, + blocksize); count++; cond_resched(); } - de = ext4_next_entry(de, dir->i_sb->s_blocksize); + de = ext4_next_entry(de, blocksize); } return count; } diff -u linux-oracle-6.5-6.5.0/fs/f2fs/f2fs.h linux-oracle-6.5-6.5.0/fs/f2fs/f2fs.h --- linux-oracle-6.5-6.5.0/fs/f2fs/f2fs.h +++ linux-oracle-6.5-6.5.0/fs/f2fs/f2fs.h @@ -2122,15 +2122,6 @@ return down_read_trylock(&sem->internal_rwsem); } -#ifdef CONFIG_DEBUG_LOCK_ALLOC -static inline void f2fs_down_read_nested(struct f2fs_rwsem *sem, int subclass) -{ - down_read_nested(&sem->internal_rwsem, subclass); -} -#else -#define f2fs_down_read_nested(sem, subclass) f2fs_down_read(sem) -#endif - static inline void f2fs_up_read(struct f2fs_rwsem *sem) { up_read(&sem->internal_rwsem); @@ -2141,6 +2132,21 @@ down_write(&sem->internal_rwsem); } +#ifdef CONFIG_DEBUG_LOCK_ALLOC +static inline void f2fs_down_read_nested(struct f2fs_rwsem *sem, int subclass) +{ + down_read_nested(&sem->internal_rwsem, subclass); +} + +static inline void f2fs_down_write_nested(struct f2fs_rwsem *sem, int subclass) +{ + down_write_nested(&sem->internal_rwsem, subclass); +} +#else +#define f2fs_down_read_nested(sem, subclass) f2fs_down_read(sem) +#define f2fs_down_write_nested(sem, subclass) f2fs_down_write(sem) +#endif + static inline int f2fs_down_write_trylock(struct f2fs_rwsem *sem) { return down_write_trylock(&sem->internal_rwsem); diff -u linux-oracle-6.5-6.5.0/fs/f2fs/segment.c linux-oracle-6.5-6.5.0/fs/f2fs/segment.c --- linux-oracle-6.5-6.5.0/fs/f2fs/segment.c +++ linux-oracle-6.5-6.5.0/fs/f2fs/segment.c @@ -205,6 +205,8 @@ f2fs_i_size_write(inode, fi->original_i_size); fi->original_i_size = 0; } + /* avoid stale dirty inode during eviction */ + sync_inode_metadata(inode, 0); } static int __replace_atomic_write_block(struct inode *inode, pgoff_t index, diff -u linux-oracle-6.5-6.5.0/fs/file.c linux-oracle-6.5-6.5.0/fs/file.c --- linux-oracle-6.5-6.5.0/fs/file.c +++ linux-oracle-6.5-6.5.0/fs/file.c @@ -668,7 +668,7 @@ /** * last_fd - return last valid index into fd table - * @cur_fds: files struct + * @fdt: File descriptor table. * * Context: Either rcu read lock or files_lock must be held. * @@ -723,6 +723,7 @@ * * @fd: starting file descriptor to close * @max_fd: last file descriptor to close + * @flags: CLOSE_RANGE flags. * * This closes a range of file descriptors. All file descriptors * from @fd up to and including @max_fd are closed. diff -u linux-oracle-6.5-6.5.0/fs/fs_context.c linux-oracle-6.5-6.5.0/fs/fs_context.c --- linux-oracle-6.5-6.5.0/fs/fs_context.c +++ linux-oracle-6.5-6.5.0/fs/fs_context.c @@ -162,6 +162,10 @@ /** * vfs_parse_fs_string - Convenience function to just parse a string. + * @fc: Filesystem context. + * @key: Parameter name. + * @value: Default value. + * @v_size: Maximum number of bytes in the value. */ int vfs_parse_fs_string(struct fs_context *fc, const char *key, const char *value, size_t v_size) @@ -188,17 +192,19 @@ EXPORT_SYMBOL(vfs_parse_fs_string); /** - * generic_parse_monolithic - Parse key[=val][,key[=val]]* mount data - * @ctx: The superblock configuration to fill in. + * vfs_parse_monolithic_sep - Parse key[=val][,key[=val]]* mount data + * @fc: The superblock configuration to fill in. * @data: The data to parse + * @sep: callback for separating next option * - * Parse a blob of data that's in key[=val][,key[=val]]* form. This can be - * called from the ->monolithic_mount_data() fs_context operation. + * Parse a blob of data that's in key[=val][,key[=val]]* form with a custom + * option separator callback. * * Returns 0 on success or the error returned by the ->parse_option() fs_context * operation on failure. */ -int generic_parse_monolithic(struct fs_context *fc, void *data) +int vfs_parse_monolithic_sep(struct fs_context *fc, void *data, + char *(*sep)(char **)) { char *options = data, *key; int ret = 0; @@ -210,7 +216,7 @@ if (ret) return ret; - while ((key = strsep(&options, ",")) != NULL) { + while ((key = sep(&options)) != NULL) { if (*key) { size_t v_len = 0; char *value = strchr(key, '='); @@ -229,6 +235,28 @@ return ret; } +EXPORT_SYMBOL(vfs_parse_monolithic_sep); + +static char *vfs_parse_comma_sep(char **s) +{ + return strsep(s, ","); +} + +/** + * generic_parse_monolithic - Parse key[=val][,key[=val]]* mount data + * @fc: The superblock configuration to fill in. + * @data: The data to parse + * + * Parse a blob of data that's in key[=val][,key[=val]]* form. This can be + * called from the ->monolithic_mount_data() fs_context operation. + * + * Returns 0 on success or the error returned by the ->parse_option() fs_context + * operation on failure. + */ +int generic_parse_monolithic(struct fs_context *fc, void *data) +{ + return vfs_parse_monolithic_sep(fc, data, vfs_parse_comma_sep); +} EXPORT_SYMBOL(generic_parse_monolithic); /** @@ -354,7 +382,7 @@ static void legacy_fs_context_free(struct fs_context *fc); /** - * vfs_dup_fc_config: Duplicate a filesystem context. + * vfs_dup_fs_context - Duplicate a filesystem context. * @src_fc: The context to copy. */ struct fs_context *vfs_dup_fs_context(struct fs_context *src_fc) @@ -400,7 +428,9 @@ /** * logfc - Log a message to a filesystem context - * @fc: The filesystem context to log to. + * @log: The filesystem context to log to, or NULL to use printk. + * @prefix: A string to prefix the output with, or NULL. + * @level: 'w' for a warning, 'e' for an error. Anything else is a notice. * @fmt: The format of the buffer. */ void logfc(struct fc_log *log, const char *prefix, char level, const char *fmt, ...) reverted: --- linux-oracle-6.5-6.5.0/fs/inode.c +++ linux-oracle-6.5-6.5.0.orig/fs/inode.c @@ -716,11 +716,8 @@ again: spin_lock(&sb->s_inode_list_lock); list_for_each_entry_safe(inode, next, &sb->s_inodes, i_sb_list) { + if (atomic_read(&inode->i_count)) - if (atomic_read(&inode->i_count)) { - printk("evict_inodes inode %p, i_count = %d, was skipped!\n", - inode, atomic_read(&inode->i_count)); continue; - } spin_lock(&inode->i_lock); if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) { diff -u linux-oracle-6.5-6.5.0/fs/iomap/buffered-io.c linux-oracle-6.5-6.5.0/fs/iomap/buffered-io.c --- linux-oracle-6.5-6.5.0/fs/iomap/buffered-io.c +++ linux-oracle-6.5-6.5.0/fs/iomap/buffered-io.c @@ -927,7 +927,7 @@ * the end of this data range, not the end of the folio. */ *punch_start_byte = min_t(loff_t, end_byte, - folio_next_index(folio) << PAGE_SHIFT); + folio_pos(folio) + folio_size(folio)); } /* move offset to start of next folio in range */ diff -u linux-oracle-6.5-6.5.0/fs/namei.c linux-oracle-6.5-6.5.0/fs/namei.c --- linux-oracle-6.5-6.5.0/fs/namei.c +++ linux-oracle-6.5-6.5.0/fs/namei.c @@ -188,7 +188,7 @@ } } - result->refcnt = 1; + atomic_set(&result->refcnt, 1); /* The empty path is special. */ if (unlikely(!len)) { if (empty) @@ -249,7 +249,7 @@ memcpy((char *)result->name, filename, len); result->uptr = NULL; result->aname = NULL; - result->refcnt = 1; + atomic_set(&result->refcnt, 1); audit_getname(result); return result; @@ -261,9 +261,10 @@ if (IS_ERR(name)) return; - BUG_ON(name->refcnt <= 0); + if (WARN_ON_ONCE(!atomic_read(&name->refcnt))) + return; - if (--name->refcnt > 0) + if (!atomic_dec_and_test(&name->refcnt)) return; if (name->name != name->iname) { @@ -643,6 +644,8 @@ /** * path_connected - Verify that a dentry is below mnt.mnt_root + * @mnt: The mountpoint to check. + * @dentry: The dentry to check. * * Rename can sometimes move a file or directory outside of a bind * mount, path_connected allows those cases to be detected. @@ -1083,6 +1086,7 @@ /** * may_follow_link - Check symlink following for unsafe situations * @nd: nameidata pathwalk data + * @inode: Used for idmapping. * * In the case of the sysctl_protected_symlinks sysctl being enabled, * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is diff -u linux-oracle-6.5-6.5.0/fs/nfs/nfs4proc.c linux-oracle-6.5-6.5.0/fs/nfs/nfs4proc.c --- linux-oracle-6.5-6.5.0/fs/nfs/nfs4proc.c +++ linux-oracle-6.5-6.5.0/fs/nfs/nfs4proc.c @@ -2702,8 +2702,12 @@ return status; } if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) { + struct nfs_fh *fh = &o_res->fh; + nfs4_sequence_free_slot(&o_res->seq_res); - nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, NULL); + if (o_arg->claim == NFS4_OPEN_CLAIM_FH) + fh = NFS_FH(d_inode(data->dentry)); + nfs4_proc_getattr(server, fh, o_res->f_attr, NULL); } return 0; } @@ -8787,6 +8791,8 @@ #ifdef CONFIG_NFS_V4_1_MIGRATION calldata->args.flags |= EXCHGID4_FLAG_SUPP_MOVED_MIGR; #endif + if (test_bit(NFS_CS_DS, &clp->cl_flags)) + calldata->args.flags |= EXCHGID4_FLAG_USE_PNFS_DS; msg.rpc_argp = &calldata->args; msg.rpc_resp = &calldata->res; task_setup_data.callback_data = calldata; @@ -8864,6 +8870,8 @@ /* Save the EXCHANGE_ID verifier session trunk tests */ memcpy(clp->cl_confirm.data, argp->verifier.data, sizeof(clp->cl_confirm.data)); + if (resp->flags & EXCHGID4_FLAG_USE_PNFS_DS) + set_bit(NFS_CS_DS, &clp->cl_flags); out: trace_nfs4_exchange_id(clp, status); rpc_put_task(task); @@ -10614,7 +10622,9 @@ */ struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; - nfs4_schedule_state_manager(clp); + set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state); + clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); + wake_up_var(&clp->cl_state); } static const struct inode_operations nfs4_dir_inode_operations = { diff -u linux-oracle-6.5-6.5.0/fs/nfsd/nfs4xdr.c linux-oracle-6.5-6.5.0/fs/nfsd/nfs4xdr.c --- linux-oracle-6.5-6.5.0/fs/nfsd/nfs4xdr.c +++ linux-oracle-6.5-6.5.0/fs/nfsd/nfs4xdr.c @@ -4103,6 +4103,7 @@ struct file *file, unsigned long maxcount) { struct xdr_stream *xdr = resp->xdr; + unsigned int base = xdr->buf->page_len & ~PAGE_MASK; unsigned int starting_len = xdr->buf->len; __be32 zero = xdr_zero; __be32 nfserr; @@ -4111,8 +4112,7 @@ return nfserr_resource; nfserr = nfsd_iter_read(resp->rqstp, read->rd_fhp, file, - read->rd_offset, &maxcount, - xdr->buf->page_len & ~PAGE_MASK, + read->rd_offset, &maxcount, base, &read->rd_eof); read->rd_length = maxcount; if (nfserr) diff -u linux-oracle-6.5-6.5.0/fs/overlayfs/params.c linux-oracle-6.5-6.5.0/fs/overlayfs/params.c --- linux-oracle-6.5-6.5.0/fs/overlayfs/params.c +++ linux-oracle-6.5-6.5.0/fs/overlayfs/params.c @@ -122,6 +122,34 @@ {} }; +static char *ovl_next_opt(char **s) +{ + char *sbegin = *s; + char *p; + + if (sbegin == NULL) + return NULL; + + for (p = sbegin; *p; p++) { + if (*p == '\\') { + p++; + if (!*p) + break; + } else if (*p == ',') { + *p = '\0'; + *s = p + 1; + return sbegin; + } + } + *s = NULL; + return sbegin; +} + +static int ovl_parse_monolithic(struct fs_context *fc, void *data) +{ + return vfs_parse_monolithic_sep(fc, data, ovl_next_opt); +} + static ssize_t ovl_parse_param_split_lowerdirs(char *str) { ssize_t nr_layers = 1, nr_colons = 0; @@ -129,7 +157,8 @@ for (s = d = str;; s++, d++) { if (*s == '\\') { - s++; + /* keep esc chars in split lowerdir */ + *d++ = *s++; } else if (*s == ':') { bool next_colon = (*(s + 1) == ':'); @@ -204,7 +233,7 @@ } } -static int ovl_mount_dir(const char *name, struct path *path) +static int ovl_mount_dir(const char *name, struct path *path, bool upper) { int err = -ENOMEM; char *tmp = kstrdup(name, GFP_KERNEL); @@ -213,7 +242,7 @@ ovl_unescape(tmp); err = ovl_mount_dir_noesc(tmp, path); - if (!err && path->dentry->d_flags & DCACHE_OP_REAL) { + if (!err && upper && path->dentry->d_flags & DCACHE_OP_REAL) { pr_err("filesystem on '%s' not supported as upperdir\n", tmp); path_put_init(path); @@ -234,7 +263,7 @@ struct path path; char *dup; - err = ovl_mount_dir(name, &path); + err = ovl_mount_dir(name, &path, true); if (err) return err; @@ -286,12 +315,6 @@ * Set "/lower1", "/lower2", and "/lower3" as lower layers and * "/data1" and "/data2" as data lower layers. Any existing lower * layers are replaced. - * (2) lowerdir=:/lower4 - * Append "/lower4" to current stack of lower layers. This requires - * that there already is at least one lower layer configured. - * (3) lowerdir=::/lower5 - * Append data "/lower5" as data lower layer. This requires that - * there's at least one regular lower layer present. */ static int ovl_parse_param_lowerdir(const char *name, struct fs_context *fc) { @@ -313,49 +336,9 @@ return 0; } - if (strncmp(name, "::", 2) == 0) { - /* - * This is a data layer. - * There must be at least one regular lower layer - * specified. - */ - if (ctx->nr == 0) { - pr_err("data lower layers without regular lower layers not allowed"); - return -EINVAL; - } - - /* Skip the leading "::". */ - name += 2; - data_layer = true; - /* - * A data layer is automatically an append as there - * must've been at least one regular lower layer. - */ - append = true; - } else if (*name == ':') { - /* - * This is a regular lower layer. - * If users want to append a layer enforce that they - * have already specified a first layer before. It's - * better to be strict. - */ - if (ctx->nr == 0) { - pr_err("cannot append layer if no previous layer has been specified"); - return -EINVAL; - } - - /* - * Once a sequence of data layers has started regular - * lower layers are forbidden. - */ - if (ctx->nr_data > 0) { - pr_err("regular lower layers cannot follow data lower layers"); - return -EINVAL; - } - - /* Skip the leading ":". */ - name++; - append = true; + if (*name == ':') { + pr_err("cannot append lower layer"); + return -EINVAL; } dup = kstrdup(name, GFP_KERNEL); @@ -437,7 +420,7 @@ l = &ctx->lower[nr]; memset(l, 0, sizeof(*l)); - err = ovl_mount_dir_noesc(dup_iter, &l->path); + err = ovl_mount_dir(dup_iter, &l->path, false); if (err) goto out_put; @@ -647,6 +630,7 @@ } static const struct fs_context_operations ovl_context_ops = { + .parse_monolithic = ovl_parse_monolithic, .parse_param = ovl_parse_param, .get_tree = ovl_get_tree, .reconfigure = ovl_reconfigure, @@ -719,12 +703,12 @@ if (ofs->upperdir_locked) ovl_inuse_unlock(ovl_upper_mnt(ofs)->mnt_root); - /* Hack! Reuse ofs->layers as a vfsmount array before freeing it */ - mounts = (struct vfsmount **) ofs->layers; + /* Reuse ofs->config.lowerdirs as a vfsmount array before freeing it */ + mounts = (struct vfsmount **) ofs->config.lowerdirs; for (i = 0; i < ofs->numlayer; i++) { iput(ofs->layers[i].trap); + kfree(ofs->config.lowerdirs[i]); mounts[i] = ofs->layers[i].mnt; - kfree(ofs->layers[i].name); } kern_unmount_array(mounts, ofs->numlayer); kfree(ofs->layers); @@ -732,6 +716,7 @@ free_anon_bdev(ofs->fs[i].pseudo_dev); kfree(ofs->fs); + kfree(ofs->config.lowerdirs); kfree(ofs->config.upperdir); kfree(ofs->config.workdir); if (ofs->creator_cred) @@ -881,16 +866,23 @@ struct super_block *sb = dentry->d_sb; struct ovl_fs *ofs = sb->s_fs_info; size_t nr, nr_merged_lower = ofs->numlayer - ofs->numdatalayer; - const struct ovl_layer *data_layers = &ofs->layers[nr_merged_lower]; - /* ofs->layers[0] is the upper layer */ - seq_printf(m, ",lowerdir=%s", ofs->layers[1].name); - /* dump regular lower layers */ - for (nr = 2; nr < nr_merged_lower; nr++) - seq_printf(m, ":%s", ofs->layers[nr].name); - /* dump data lower layers */ - for (nr = 0; nr < ofs->numdatalayer; nr++) - seq_printf(m, "::%s", data_layers[nr].name); + /* + * lowerdirs[] starts from offset 1, then + * >= 0 regular lower layers prefixed with : and + * >= 0 data-only lower layers prefixed with :: + * + * we need to escase comma and space like seq_show_option() does and + * we also need to escape the colon separator from lowerdir paths. + */ + seq_puts(m, ",lowerdir="); + for (nr = 1; nr < ofs->numlayer; nr++) { + if (nr > 1) + seq_putc(m, ':'); + if (nr >= nr_merged_lower) + seq_putc(m, ':'); + seq_escape(m, ofs->config.lowerdirs[nr], ":, \t\n\\"); + } if (ofs->config.upperdir) { seq_show_option(m, "upperdir", ofs->config.upperdir); seq_show_option(m, "workdir", ofs->config.workdir); diff -u linux-oracle-6.5-6.5.0/fs/proc/internal.h linux-oracle-6.5-6.5.0/fs/proc/internal.h --- linux-oracle-6.5-6.5.0/fs/proc/internal.h +++ linux-oracle-6.5-6.5.0/fs/proc/internal.h @@ -289,9 +289,7 @@ struct inode *inode; struct task_struct *task; struct mm_struct *mm; -#ifdef CONFIG_MMU struct vma_iterator iter; -#endif #ifdef CONFIG_NUMA struct mempolicy *task_mempolicy; #endif diff -u linux-oracle-6.5-6.5.0/fs/quota/dquot.c linux-oracle-6.5-6.5.0/fs/quota/dquot.c --- linux-oracle-6.5-6.5.0/fs/quota/dquot.c +++ linux-oracle-6.5-6.5.0/fs/quota/dquot.c @@ -233,19 +233,18 @@ * All dquots are placed to the end of inuse_list when first created, and this * list is used for invalidate operation, which must look at every dquot. * - * When the last reference of a dquot will be dropped, the dquot will be - * added to releasing_dquots. We'd then queue work item which would call + * When the last reference of a dquot is dropped, the dquot is added to + * releasing_dquots. We'll then queue work item which will call * synchronize_srcu() and after that perform the final cleanup of all the - * dquots on the list. Both releasing_dquots and free_dquots use the - * dq_free list_head in the dquot struct. When a dquot is removed from - * releasing_dquots, a reference count is always subtracted, and if - * dq_count == 0 at that point, the dquot will be added to the free_dquots. + * dquots on the list. Each cleaned up dquot is moved to free_dquots list. + * Both releasing_dquots and free_dquots use the dq_free list_head in the dquot + * struct. * - * Unused dquots (dq_count == 0) are added to the free_dquots list when freed, - * and this list is searched whenever we need an available dquot. Dquots are - * removed from the list as soon as they are used again, and - * dqstats.free_dquots gives the number of dquots on the list. When - * dquot is invalidated it's completely released from memory. + * Unused and cleaned up dquots are in the free_dquots list and this list is + * searched whenever we need an available dquot. Dquots are removed from the + * list as soon as they are used again and dqstats.free_dquots gives the number + * of dquots on the list. When dquot is invalidated it's completely released + * from memory. * * Dirty dquots are added to the dqi_dirty_list of quota_info when mark * dirtied, and this list is searched when writing dirty dquots back to @@ -321,6 +320,7 @@ static inline void put_releasing_dquots(struct dquot *dquot) { list_add_tail(&dquot->dq_free, &releasing_dquots); + set_bit(DQ_RELEASING_B, &dquot->dq_flags); } static inline void remove_free_dquot(struct dquot *dquot) @@ -328,8 +328,10 @@ if (list_empty(&dquot->dq_free)) return; list_del_init(&dquot->dq_free); - if (!atomic_read(&dquot->dq_count)) + if (!test_bit(DQ_RELEASING_B, &dquot->dq_flags)) dqstats_dec(DQST_FREE_DQUOTS); + else + clear_bit(DQ_RELEASING_B, &dquot->dq_flags); } static inline void put_inuse(struct dquot *dquot) @@ -581,12 +583,6 @@ continue; /* Wait for dquot users */ if (atomic_read(&dquot->dq_count)) { - /* dquot in releasing_dquots, flush and retry */ - if (!list_empty(&dquot->dq_free)) { - spin_unlock(&dq_list_lock); - goto restart; - } - atomic_inc(&dquot->dq_count); spin_unlock(&dq_list_lock); /* @@ -606,6 +602,15 @@ goto restart; } /* + * The last user already dropped its reference but dquot didn't + * get fully cleaned up yet. Restart the scan which flushes the + * work cleaning up released dquots. + */ + if (test_bit(DQ_RELEASING_B, &dquot->dq_flags)) { + spin_unlock(&dq_list_lock); + goto restart; + } + /* * Quota now has no users and it has been written on last * dqput() */ @@ -696,6 +701,13 @@ dq_dirty); WARN_ON(!dquot_active(dquot)); + /* If the dquot is releasing we should not touch it */ + if (test_bit(DQ_RELEASING_B, &dquot->dq_flags)) { + spin_unlock(&dq_list_lock); + flush_delayed_work("a_release_work); + spin_lock(&dq_list_lock); + continue; + } /* Now we have active dquot from which someone is * holding reference so we can safely just increase @@ -809,18 +821,18 @@ /* Exchange the list head to avoid livelock. */ list_replace_init(&releasing_dquots, &rls_head); spin_unlock(&dq_list_lock); + synchronize_srcu(&dquot_srcu); restart: - synchronize_srcu(&dquot_srcu); spin_lock(&dq_list_lock); while (!list_empty(&rls_head)) { dquot = list_first_entry(&rls_head, struct dquot, dq_free); - /* Dquot got used again? */ - if (atomic_read(&dquot->dq_count) > 1) { - remove_free_dquot(dquot); - atomic_dec(&dquot->dq_count); - continue; - } + WARN_ON_ONCE(atomic_read(&dquot->dq_count)); + /* + * Note that DQ_RELEASING_B protects us from racing with + * invalidate_dquots() calls so we are safe to work with the + * dquot even after we drop dq_list_lock. + */ if (dquot_dirty(dquot)) { spin_unlock(&dq_list_lock); /* Commit dquot before releasing */ @@ -834,7 +846,6 @@ } /* Dquot is inactive and clean, now move it to free list */ remove_free_dquot(dquot); - atomic_dec(&dquot->dq_count); put_dquot_last(dquot); } spin_unlock(&dq_list_lock); @@ -875,6 +886,7 @@ BUG_ON(!list_empty(&dquot->dq_free)); #endif put_releasing_dquots(dquot); + atomic_dec(&dquot->dq_count); spin_unlock(&dq_list_lock); queue_delayed_work(system_unbound_wq, "a_release_work, 1); } @@ -963,7 +975,7 @@ dqstats_inc(DQST_LOOKUPS); } /* Wait for dq_lock - after this we know that either dquot_release() is - * already finished or it will be canceled due to dq_count > 1 test */ + * already finished or it will be canceled due to dq_count > 0 test */ wait_on_dquot(dquot); /* Read the dquot / allocate space in quota file */ if (!dquot_active(dquot)) { diff -u linux-oracle-6.5-6.5.0/fs/smb/server/smb2pdu.c linux-oracle-6.5-6.5.0/fs/smb/server/smb2pdu.c --- linux-oracle-6.5-6.5.0/fs/smb/server/smb2pdu.c +++ linux-oracle-6.5-6.5.0/fs/smb/server/smb2pdu.c @@ -7029,10 +7029,6 @@ ksmbd_debug(SMB, "would have to wait for getting lock\n"); - spin_lock(&work->conn->llist_lock); - list_add_tail(&smb_lock->clist, - &work->conn->lock_list); - spin_unlock(&work->conn->llist_lock); list_add(&smb_lock->llist, &rollback_list); argv = kmalloc(sizeof(void *), GFP_KERNEL); @@ -7063,9 +7059,6 @@ if (work->state != KSMBD_WORK_ACTIVE) { list_del(&smb_lock->llist); - spin_lock(&work->conn->llist_lock); - list_del(&smb_lock->clist); - spin_unlock(&work->conn->llist_lock); locks_free_lock(flock); if (work->state == KSMBD_WORK_CANCELLED) { @@ -7087,19 +7080,16 @@ } list_del(&smb_lock->llist); - spin_lock(&work->conn->llist_lock); - list_del(&smb_lock->clist); - spin_unlock(&work->conn->llist_lock); release_async_work(work); goto retry; } else if (!rc) { + list_add(&smb_lock->llist, &rollback_list); spin_lock(&work->conn->llist_lock); list_add_tail(&smb_lock->clist, &work->conn->lock_list); list_add_tail(&smb_lock->flist, &fp->lock_list); spin_unlock(&work->conn->llist_lock); - list_add(&smb_lock->llist, &rollback_list); ksmbd_debug(SMB, "successful in taking lock\n"); } else { goto out; @@ -8036,10 +8026,10 @@ goto err_out; } - opinfo_put(opinfo); - ksmbd_fd_put(work, fp); opinfo->op_state = OPLOCK_STATE_NONE; wake_up_interruptible_all(&opinfo->oplock_q); + opinfo_put(opinfo); + ksmbd_fd_put(work, fp); rsp->StructureSize = cpu_to_le16(24); rsp->OplockLevel = rsp_oplevel; diff -u linux-oracle-6.5-6.5.0/include/asm-generic/hyperv-tlfs.h linux-oracle-6.5-6.5.0/include/asm-generic/hyperv-tlfs.h --- linux-oracle-6.5-6.5.0/include/asm-generic/hyperv-tlfs.h +++ linux-oracle-6.5-6.5.0/include/asm-generic/hyperv-tlfs.h @@ -135,7 +135,7 @@ * */ -#define HV_LINUX_VENDOR_ID 0x80 /* Canonical */ +#define HV_LINUX_VENDOR_ID 0x8180 /* Canonical */ /* * Crash notification flags. diff -u linux-oracle-6.5-6.5.0/include/linux/audit.h linux-oracle-6.5-6.5.0/include/linux/audit.h --- linux-oracle-6.5-6.5.0/include/linux/audit.h +++ linux-oracle-6.5-6.5.0/include/linux/audit.h @@ -122,6 +122,8 @@ AUDIT_NFT_OP_OBJ_RESET, AUDIT_NFT_OP_FLOWTABLE_REGISTER, AUDIT_NFT_OP_FLOWTABLE_UNREGISTER, + AUDIT_NFT_OP_SETELEM_RESET, + AUDIT_NFT_OP_RULE_RESET, AUDIT_NFT_OP_INVALID, }; diff -u linux-oracle-6.5-6.5.0/include/linux/fs.h linux-oracle-6.5-6.5.0/include/linux/fs.h --- linux-oracle-6.5-6.5.0/include/linux/fs.h +++ linux-oracle-6.5-6.5.0/include/linux/fs.h @@ -338,6 +338,20 @@ #define IOCB_NOIO (1 << 20) /* can use bio alloc cache */ #define IOCB_ALLOC_CACHE (1 << 21) +/* + * IOCB_DIO_CALLER_COMP can be set by the iocb owner, to indicate that the + * iocb completion can be passed back to the owner for execution from a safe + * context rather than needing to be punted through a workqueue. If this + * flag is set, the bio completion handling may set iocb->dio_complete to a + * handler function and iocb->private to context information for that handler. + * The issuer should call the handler with that context information from task + * context to complete the processing of the iocb. Note that while this + * provides a task context for the dio_complete() callback, it should only be + * used on the completion side for non-IO generating completions. It's fine to + * call blocking functions from this callback, but they should not wait for + * unrelated IO (like cache flushing, new IO generation, etc). + */ +#define IOCB_DIO_CALLER_COMP (1 << 22) /* for use in trace events */ #define TRACE_IOCB_STRINGS \ @@ -351,7 +365,8 @@ { IOCB_WRITE, "WRITE" }, \ { IOCB_WAITQ, "WAITQ" }, \ { IOCB_NOIO, "NOIO" }, \ - { IOCB_ALLOC_CACHE, "ALLOC_CACHE" } + { IOCB_ALLOC_CACHE, "ALLOC_CACHE" }, \ + { IOCB_DIO_CALLER_COMP, "CALLER_COMP" } struct kiocb { struct file *ki_filp; @@ -360,7 +375,23 @@ void *private; int ki_flags; u16 ki_ioprio; /* See linux/ioprio.h */ - struct wait_page_queue *ki_waitq; /* for async buffered IO */ + union { + /* + * Only used for async buffered reads, where it denotes the + * page waitqueue associated with completing the read. Valid + * IFF IOCB_WAITQ is set. + */ + struct wait_page_queue *ki_waitq; + /* + * Can be used for O_DIRECT IO, where the completion handling + * is punted back to the issuer of the IO. May only be set + * if IOCB_DIO_CALLER_COMP is set by the issuer, and the issuer + * must then check for presence of this handler when ki_complete + * is invoked. The data passed in to this handler must be + * assigned to ->private when dio_complete is assigned. + */ + ssize_t (*dio_complete)(void *data); + }; }; static inline bool is_sync_kiocb(struct kiocb *kiocb) @@ -2318,7 +2349,7 @@ struct filename { const char *name; /* pointer to actual string */ const __user char *uptr; /* original userland pointer */ - int refcnt; + atomic_t refcnt; struct audit_names *aname; const char iname[]; }; @@ -2566,6 +2597,42 @@ __sb_end_write(file_inode(file)->i_sb, SB_FREEZE_WRITE); } +/** + * kiocb_start_write - get write access to a superblock for async file io + * @iocb: the io context we want to submit the write with + * + * This is a variant of sb_start_write() for async io submission. + * Should be matched with a call to kiocb_end_write(). + */ +static inline void kiocb_start_write(struct kiocb *iocb) +{ + struct inode *inode = file_inode(iocb->ki_filp); + + sb_start_write(inode->i_sb); + /* + * Fool lockdep by telling it the lock got released so that it + * doesn't complain about the held lock when we return to userspace. + */ + __sb_writers_release(inode->i_sb, SB_FREEZE_WRITE); +} + +/** + * kiocb_end_write - drop write access to a superblock after async file io + * @iocb: the io context we sumbitted the write with + * + * Should be matched with a call to kiocb_start_write(). + */ +static inline void kiocb_end_write(struct kiocb *iocb) +{ + struct inode *inode = file_inode(iocb->ki_filp); + + /* + * Tell lockdep we inherited freeze protection from submission thread. + */ + __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE); + sb_end_write(inode->i_sb); +} + /* * This is used for regular files where some users -- especially the * currently executed binary in a process, previously handled via diff -u linux-oracle-6.5-6.5.0/include/linux/ipv6.h linux-oracle-6.5-6.5.0/include/linux/ipv6.h --- linux-oracle-6.5-6.5.0/include/linux/ipv6.h +++ linux-oracle-6.5-6.5.0/include/linux/ipv6.h @@ -33,6 +33,7 @@ __s32 accept_ra_defrtr; __u32 ra_defrtr_metric; __s32 accept_ra_min_hop_limit; + __s32 accept_ra_min_lft; __s32 accept_ra_pinfo; __s32 ignore_routes_with_linkdown; #ifdef CONFIG_IPV6_ROUTER_PREF @@ -146,6 +147,7 @@ #define IP6SKB_JUMBOGRAM 128 #define IP6SKB_SEG6 256 #define IP6SKB_FAKEJUMBO 512 +#define IP6SKB_MULTIPATH 1024 }; #if defined(CONFIG_NET_L3_MASTER_DEV) diff -u linux-oracle-6.5-6.5.0/include/linux/memcontrol.h linux-oracle-6.5-6.5.0/include/linux/memcontrol.h --- linux-oracle-6.5-6.5.0/include/linux/memcontrol.h +++ linux-oracle-6.5-6.5.0/include/linux/memcontrol.h @@ -919,7 +919,7 @@ return READ_ONCE(mz->lru_zone_size[zone_idx][lru]); } -void mem_cgroup_handle_over_high(void); +void mem_cgroup_handle_over_high(gfp_t gfp_mask); unsigned long mem_cgroup_get_max(struct mem_cgroup *memcg); @@ -1460,7 +1460,7 @@ rcu_read_unlock(); } -static inline void mem_cgroup_handle_over_high(void) +static inline void mem_cgroup_handle_over_high(gfp_t gfp_mask) { } diff -u linux-oracle-6.5-6.5.0/include/linux/perf_event.h linux-oracle-6.5-6.5.0/include/linux/perf_event.h --- linux-oracle-6.5-6.5.0/include/linux/perf_event.h +++ linux-oracle-6.5-6.5.0/include/linux/perf_event.h @@ -1317,15 +1317,31 @@ struct pt_regs *regs); static inline bool -is_default_overflow_handler(struct perf_event *event) +__is_default_overflow_handler(perf_overflow_handler_t overflow_handler) { - if (likely(event->overflow_handler == perf_event_output_forward)) + if (likely(overflow_handler == perf_event_output_forward)) return true; - if (unlikely(event->overflow_handler == perf_event_output_backward)) + if (unlikely(overflow_handler == perf_event_output_backward)) return true; return false; } +#define is_default_overflow_handler(event) \ + __is_default_overflow_handler((event)->overflow_handler) + +#ifdef CONFIG_BPF_SYSCALL +static inline bool uses_default_overflow_handler(struct perf_event *event) +{ + if (likely(is_default_overflow_handler(event))) + return true; + + return __is_default_overflow_handler(event->orig_overflow_handler); +} +#else +#define uses_default_overflow_handler(event) \ + is_default_overflow_handler(event) +#endif + extern void perf_event_header__init_id(struct perf_event_header *header, struct perf_sample_data *data, diff -u linux-oracle-6.5-6.5.0/include/linux/trace_events.h linux-oracle-6.5-6.5.0/include/linux/trace_events.h --- linux-oracle-6.5-6.5.0/include/linux/trace_events.h +++ linux-oracle-6.5-6.5.0/include/linux/trace_events.h @@ -62,13 +62,13 @@ /* Used to find the offset and length of dynamic fields in trace events */ struct trace_dynamic_info { #ifdef CONFIG_CPU_BIG_ENDIAN - u16 offset; u16 len; + u16 offset; #else - u16 len; u16 offset; + u16 len; #endif -}; +} __packed; /* * The trace entry - the most basic unit of tracing. This is what diff -u linux-oracle-6.5-6.5.0/include/net/ip_tunnels.h linux-oracle-6.5-6.5.0/include/net/ip_tunnels.h --- linux-oracle-6.5-6.5.0/include/net/ip_tunnels.h +++ linux-oracle-6.5-6.5.0/include/net/ip_tunnels.h @@ -510,15 +510,14 @@ u64_stats_inc(&tstats->tx_packets); u64_stats_update_end(&tstats->syncp); put_cpu_ptr(tstats); - } else { - struct net_device_stats *err_stats = &dev->stats; + return; + } - if (pkt_len < 0) { - err_stats->tx_errors++; - err_stats->tx_aborted_errors++; - } else { - err_stats->tx_dropped++; - } + if (pkt_len < 0) { + DEV_STATS_INC(dev, tx_errors); + DEV_STATS_INC(dev, tx_aborted_errors); + } else { + DEV_STATS_INC(dev, tx_dropped); } } diff -u linux-oracle-6.5-6.5.0/include/net/scm.h linux-oracle-6.5-6.5.0/include/net/scm.h --- linux-oracle-6.5-6.5.0/include/net/scm.h +++ linux-oracle-6.5-6.5.0/include/net/scm.h @@ -9,6 +9,7 @@ #include #include #include +#include /* Well, we should have at least one descriptor open * to accept passed FDs 8) @@ -128,14 +129,17 @@ static __inline__ void scm_pidfd_recv(struct msghdr *msg, struct scm_cookie *scm) { struct file *pidfd_file = NULL; - int pidfd; + int len, pidfd; - /* - * put_cmsg() doesn't return an error if CMSG is truncated, + /* put_cmsg() doesn't return an error if CMSG is truncated, * that's why we need to opencode these checks here. */ - if ((msg->msg_controllen <= sizeof(struct cmsghdr)) || - (msg->msg_controllen - sizeof(struct cmsghdr)) < sizeof(int)) { + if (msg->msg_flags & MSG_CMSG_COMPAT) + len = sizeof(struct compat_cmsghdr) + sizeof(int); + else + len = sizeof(struct cmsghdr) + sizeof(int); + + if (msg->msg_controllen < len) { msg->msg_flags |= MSG_CTRUNC; return; } diff -u linux-oracle-6.5-6.5.0/include/net/sock.h linux-oracle-6.5-6.5.0/include/net/sock.h --- linux-oracle-6.5-6.5.0/include/net/sock.h +++ linux-oracle-6.5-6.5.0/include/net/sock.h @@ -1053,6 +1053,12 @@ WRITE_ONCE(sk->sk_wmem_queued, sk->sk_wmem_queued + val); } +static inline void sk_forward_alloc_add(struct sock *sk, int val) +{ + /* Paired with lockless reads of sk->sk_forward_alloc */ + WRITE_ONCE(sk->sk_forward_alloc, sk->sk_forward_alloc + val); +} + void sk_stream_write_space(struct sock *sk); /* OOB backlog add */ @@ -1377,7 +1383,7 @@ if (sk->sk_prot->forward_alloc_get) return sk->sk_prot->forward_alloc_get(sk); #endif - return sk->sk_forward_alloc; + return READ_ONCE(sk->sk_forward_alloc); } static inline bool __sk_stream_memory_free(const struct sock *sk, int wake) @@ -1673,14 +1679,14 @@ { if (!sk_has_account(sk)) return; - sk->sk_forward_alloc -= size; + sk_forward_alloc_add(sk, -size); } static inline void sk_mem_uncharge(struct sock *sk, int size) { if (!sk_has_account(sk)) return; - sk->sk_forward_alloc += size; + sk_forward_alloc_add(sk, size); sk_mem_reclaim(sk); } @@ -1900,7 +1906,9 @@ static inline void sockcm_init(struct sockcm_cookie *sockc, const struct sock *sk) { - *sockc = (struct sockcm_cookie) { .tsflags = sk->sk_tsflags }; + *sockc = (struct sockcm_cookie) { + .tsflags = READ_ONCE(sk->sk_tsflags) + }; } int __sock_cmsg_send(struct sock *sk, struct cmsghdr *cmsg, @@ -2695,9 +2703,9 @@ static inline void sock_recv_timestamp(struct msghdr *msg, struct sock *sk, struct sk_buff *skb) { - ktime_t kt = skb->tstamp; struct skb_shared_hwtstamps *hwtstamps = skb_hwtstamps(skb); - + u32 tsflags = READ_ONCE(sk->sk_tsflags); + ktime_t kt = skb->tstamp; /* * generate control messages if * - receive time stamping in software requested @@ -2705,10 +2713,10 @@ * - hardware time stamps available and wanted */ if (sock_flag(sk, SOCK_RCVTSTAMP) || - (sk->sk_tsflags & SOF_TIMESTAMPING_RX_SOFTWARE) || - (kt && sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) || + (tsflags & SOF_TIMESTAMPING_RX_SOFTWARE) || + (kt && tsflags & SOF_TIMESTAMPING_SOFTWARE) || (hwtstamps->hwtstamp && - (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE))) + (tsflags & SOF_TIMESTAMPING_RAW_HARDWARE))) __sock_recv_timestamp(msg, sk, skb); else sock_write_timestamp(sk, kt); @@ -2730,7 +2738,8 @@ #define TSFLAGS_ANY (SOF_TIMESTAMPING_SOFTWARE | \ SOF_TIMESTAMPING_RAW_HARDWARE) - if (sk->sk_flags & FLAGS_RECV_CMSGS || sk->sk_tsflags & TSFLAGS_ANY) + if (sk->sk_flags & FLAGS_RECV_CMSGS || + READ_ONCE(sk->sk_tsflags) & TSFLAGS_ANY) __sock_recv_cmsgs(msg, sk, skb); else if (unlikely(sock_flag(sk, SOCK_TIMESTAMP))) sock_write_timestamp(sk, skb->tstamp); diff -u linux-oracle-6.5-6.5.0/include/net/tcp.h linux-oracle-6.5-6.5.0/include/net/tcp.h --- linux-oracle-6.5-6.5.0/include/net/tcp.h +++ linux-oracle-6.5-6.5.0/include/net/tcp.h @@ -350,12 +350,14 @@ struct sk_buff *tcp_stream_alloc_skb(struct sock *sk, gfp_t gfp, bool force_schedule); -static inline void tcp_dec_quickack_mode(struct sock *sk, - const unsigned int pkts) +static inline void tcp_dec_quickack_mode(struct sock *sk) { struct inet_connection_sock *icsk = inet_csk(sk); if (icsk->icsk_ack.quick) { + /* How many ACKs S/ACKing new data have we sent? */ + const unsigned int pkts = inet_csk_ack_scheduled(sk) ? 1 : 0; + if (pkts >= icsk->icsk_ack.quick) { icsk->icsk_ack.quick = 0; /* Leaving quickack mode we deflate ATO. */ diff -u linux-oracle-6.5-6.5.0/include/scsi/scsi_host.h linux-oracle-6.5-6.5.0/include/scsi/scsi_host.h --- linux-oracle-6.5-6.5.0/include/scsi/scsi_host.h +++ linux-oracle-6.5-6.5.0/include/scsi/scsi_host.h @@ -764,7 +764,7 @@ #define scsi_template_proc_dir(sht) NULL #endif extern void scsi_scan_host(struct Scsi_Host *); -extern void scsi_rescan_device(struct device *); +extern int scsi_rescan_device(struct scsi_device *sdev); extern void scsi_remove_host(struct Scsi_Host *); extern struct Scsi_Host *scsi_host_get(struct Scsi_Host *); extern int scsi_host_busy(struct Scsi_Host *shost); diff -u linux-oracle-6.5-6.5.0/include/sound/cs35l41.h linux-oracle-6.5-6.5.0/include/sound/cs35l41.h --- linux-oracle-6.5-6.5.0/include/sound/cs35l41.h +++ linux-oracle-6.5-6.5.0/include/sound/cs35l41.h @@ -736,6 +736,7 @@ #define CS35L41_REVID_B2 0xB2 #define CS35L41_HALO_CORE_RESET 0x00000200 +#define CS35L41_SOFTWARE_RESET 0x5A000000 #define CS35L41_FS1_WINDOW_MASK 0x000007FF #define CS35L41_FS2_WINDOW_MASK 0x00FFF800 @@ -816,6 +817,8 @@ }; enum cs35l41_cspl_mbox_status { + CSPL_MBOX_STS_ERROR = U32_MAX, + CSPL_MBOX_STS_ERROR2 = 0x00ffffff, // firmware not always sign-extending 24-bit value CSPL_MBOX_STS_RUNNING = 0, CSPL_MBOX_STS_PAUSED = 1, CSPL_MBOX_STS_RDY_FOR_REINIT = 2, diff -u linux-oracle-6.5-6.5.0/io_uring/io-wq.c linux-oracle-6.5-6.5.0/io_uring/io-wq.c --- linux-oracle-6.5-6.5.0/io_uring/io-wq.c +++ linux-oracle-6.5-6.5.0/io_uring/io-wq.c @@ -242,17 +242,25 @@ do_exit(0); } -static inline bool io_acct_run_queue(struct io_wq_acct *acct) +static inline bool __io_acct_run_queue(struct io_wq_acct *acct) { - bool ret = false; + return !test_bit(IO_ACCT_STALLED_BIT, &acct->flags) && + !wq_list_empty(&acct->work_list); +} +/* + * If there's work to do, returns true with acct->lock acquired. If not, + * returns false with no lock held. + */ +static inline bool io_acct_run_queue(struct io_wq_acct *acct) + __acquires(&acct->lock) +{ raw_spin_lock(&acct->lock); - if (!wq_list_empty(&acct->work_list) && - !test_bit(IO_ACCT_STALLED_BIT, &acct->flags)) - ret = true; - raw_spin_unlock(&acct->lock); + if (__io_acct_run_queue(acct)) + return true; - return ret; + raw_spin_unlock(&acct->lock); + return false; } /* @@ -278,11 +286,14 @@ io_worker_release(worker); continue; } - if (wake_up_process(worker->task)) { - io_worker_release(worker); - return true; - } + /* + * If the worker is already running, it's either already + * starting work or finishing work. In either case, if it does + * to go sleep, we'll kick off a new task for this work anyway. + */ + wake_up_process(worker->task); io_worker_release(worker); + return true; } return false; @@ -407,6 +418,7 @@ if (!io_acct_run_queue(acct)) return; + raw_spin_unlock(&acct->lock); atomic_inc(&acct->nr_running); atomic_inc(&wq->worker_refs); io_queue_worker_create(worker, acct, create_worker_cb); @@ -531,9 +543,13 @@ raw_spin_unlock(&worker->lock); } -static void io_worker_handle_work(struct io_worker *worker) +/* + * Called with acct->lock held, drops it before returning + */ +static void io_worker_handle_work(struct io_wq_acct *acct, + struct io_worker *worker) + __releases(&acct->lock) { - struct io_wq_acct *acct = io_wq_get_acct(worker); struct io_wq *wq = worker->wq; bool do_kill = test_bit(IO_WQ_BIT_EXIT, &wq->state); @@ -547,7 +563,6 @@ * can't make progress, any work completion or insertion will * clear the stalled flag. */ - raw_spin_lock(&acct->lock); work = io_get_next_work(acct, worker); raw_spin_unlock(&acct->lock); if (work) { @@ -601,6 +616,10 @@ wake_up(&wq->hash->wait); } } while (work); + + if (!__io_acct_run_queue(acct)) + break; + raw_spin_lock(&acct->lock); } while (1); } @@ -621,8 +640,13 @@ long ret; set_current_state(TASK_INTERRUPTIBLE); + + /* + * If we have work to do, io_acct_run_queue() returns with + * the acct->lock held. If not, it will drop it. + */ while (io_acct_run_queue(acct)) - io_worker_handle_work(worker); + io_worker_handle_work(acct, worker); raw_spin_lock(&wq->lock); /* @@ -655,8 +679,8 @@ } } - if (test_bit(IO_WQ_BIT_EXIT, &wq->state)) - io_worker_handle_work(worker); + if (test_bit(IO_WQ_BIT_EXIT, &wq->state) && io_acct_run_queue(acct)) + io_worker_handle_work(acct, worker); io_worker_exit(worker); return 0; @@ -919,13 +943,10 @@ clear_bit(IO_ACCT_STALLED_BIT, &acct->flags); raw_spin_unlock(&acct->lock); - raw_spin_lock(&wq->lock); rcu_read_lock(); do_create = !io_wq_activate_free_worker(wq, acct); rcu_read_unlock(); - raw_spin_unlock(&wq->lock); - if (do_create && ((work_flags & IO_WQ_WORK_CONCURRENT) || !atomic_read(&acct->nr_running))) { bool did_create; @@ -1130,9 +1151,6 @@ wq = kzalloc(sizeof(struct io_wq), GFP_KERNEL); if (!wq) return ERR_PTR(-ENOMEM); - ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node); - if (ret) - goto err_wq; refcount_inc(&data->hash->refs); wq->hash = data->hash; @@ -1165,13 +1183,14 @@ wq->task = get_task_struct(data->task); atomic_set(&wq->worker_refs, 1); init_completion(&wq->worker_done); + ret = cpuhp_state_add_instance_nocalls(io_wq_online, &wq->cpuhp_node); + if (ret) + goto err; + return wq; err: io_wq_put_hash(data->hash); - cpuhp_state_remove_instance_nocalls(io_wq_online, &wq->cpuhp_node); - free_cpumask_var(wq->cpu_mask); -err_wq: kfree(wq); return ERR_PTR(ret); } diff -u linux-oracle-6.5-6.5.0/io_uring/io_uring.c linux-oracle-6.5-6.5.0/io_uring/io_uring.c --- linux-oracle-6.5-6.5.0/io_uring/io_uring.c +++ linux-oracle-6.5-6.5.0/io_uring/io_uring.c @@ -147,8 +147,6 @@ bool cancel_all); static void io_queue_sqe(struct io_kiocb *req); -static void io_move_task_work_from_local(struct io_ring_ctx *ctx); -static void __io_submit_flush_completions(struct io_ring_ctx *ctx); struct kmem_cache *req_cachep; @@ -316,13 +314,6 @@ goto err; if (io_alloc_hash_table(&ctx->cancel_table_locked, hash_bits)) goto err; - - ctx->dummy_ubuf = kzalloc(sizeof(*ctx->dummy_ubuf), GFP_KERNEL); - if (!ctx->dummy_ubuf) - goto err; - /* set invalid range, so io_import_fixed() fails meeting it */ - ctx->dummy_ubuf->ubuf = -1UL; - if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free, 0, GFP_KERNEL)) goto err; @@ -361,7 +352,6 @@ INIT_WQ_LIST(&ctx->submit_state.compl_reqs); return ctx; err: - kfree(ctx->dummy_ubuf); kfree(ctx->cancel_table.hbs); kfree(ctx->cancel_table_locked.hbs); kfree(ctx->io_bl); @@ -650,7 +640,7 @@ static inline void __io_cq_lock(struct io_ring_ctx *ctx) { - if (!ctx->task_complete) + if (!ctx->lockless_cq) spin_lock(&ctx->completion_lock); } @@ -663,19 +653,14 @@ static inline void __io_cq_unlock_post(struct io_ring_ctx *ctx) { io_commit_cqring(ctx); - - if (ctx->task_complete) { - /* - * ->task_complete implies that only current might be waiting - * for CQEs, and obviously, we currently don't. No one is - * waiting, wakeups are futile, skip them. - */ - io_commit_cqring_flush(ctx); - } else { - spin_unlock(&ctx->completion_lock); - io_commit_cqring_flush(ctx); - io_cqring_wake(ctx); + if (!ctx->task_complete) { + if (!ctx->lockless_cq) + spin_unlock(&ctx->completion_lock); + /* IOPOLL rings only need to wake up if it's also SQPOLL */ + if (!ctx->syscall_iopoll) + io_cqring_wake(ctx); } + io_commit_cqring_flush(ctx); } static void io_cq_unlock_post(struct io_ring_ctx *ctx) @@ -683,8 +668,8 @@ { io_commit_cqring(ctx); spin_unlock(&ctx->completion_lock); - io_commit_cqring_flush(ctx); io_cqring_wake(ctx); + io_commit_cqring_flush(ctx); } /* Returns true if there are no backlogged entries after the flush */ @@ -717,10 +702,10 @@ io_cq_lock(ctx); while (!list_empty(&ctx->cq_overflow_list)) { - struct io_uring_cqe *cqe = io_get_cqe_overflow(ctx, true); + struct io_uring_cqe *cqe; struct io_overflow_cqe *ocqe; - if (!cqe) + if (!io_get_cqe_overflow(ctx, &cqe, true)) break; ocqe = list_first_entry(&ctx->cq_overflow_list, struct io_overflow_cqe, list); @@ -839,15 +824,12 @@ return true; } -bool io_req_cqe_overflow(struct io_kiocb *req) +void io_req_cqe_overflow(struct io_kiocb *req) { - if (!(req->flags & REQ_F_CQE32_INIT)) { - req->extra1 = 0; - req->extra2 = 0; - } - return io_cqring_event_overflow(req->ctx, req->cqe.user_data, - req->cqe.res, req->cqe.flags, - req->extra1, req->extra2); + io_cqring_event_overflow(req->ctx, req->cqe.user_data, + req->cqe.res, req->cqe.flags, + req->big_cqe.extra1, req->big_cqe.extra2); + memset(&req->big_cqe, 0, sizeof(req->big_cqe)); } /* @@ -855,7 +837,7 @@ * control dependency is enough as we're using WRITE_ONCE to * fill the cq entry */ -struct io_uring_cqe *__io_get_cqe(struct io_ring_ctx *ctx, bool overflow) +bool io_cqe_cache_refill(struct io_ring_ctx *ctx, bool overflow) { struct io_rings *rings = ctx->rings; unsigned int off = ctx->cached_cq_tail & (ctx->cq_entries - 1); @@ -867,7 +849,7 @@ * Force overflow the completion. */ if (!overflow && (ctx->check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))) - return NULL; + return false; /* userspace may cheat modifying the tail, be safe and do min */ queued = min(__io_cqring_events(ctx), ctx->cq_entries); @@ -875,7 +857,7 @@ /* we need a contiguous range, limit based on the current array offset */ len = min(free, ctx->cq_entries - off); if (!len) - return NULL; + return false; if (ctx->flags & IORING_SETUP_CQE32) { off <<= 1; @@ -884,12 +866,7 @@ ctx->cqe_cached = &rings->cqes[off]; ctx->cqe_sentinel = ctx->cqe_cached + len; - - ctx->cached_cq_tail++; - ctx->cqe_cached++; - if (ctx->flags & IORING_SETUP_CQE32) - ctx->cqe_cached++; - return &rings->cqes[off]; + return true; } static bool io_fill_cqe_aux(struct io_ring_ctx *ctx, u64 user_data, s32 res, @@ -904,8 +881,7 @@ * submission (by quite a lot). Increment the overflow count in * the ring. */ - cqe = io_get_cqe(ctx); - if (likely(cqe)) { + if (likely(io_get_cqe(ctx, &cqe))) { trace_io_uring_complete(ctx, NULL, user_data, res, cflags, 0, 0); WRITE_ONCE(cqe->user_data, user_data); @@ -929,10 +905,10 @@ lockdep_assert_held(&ctx->uring_lock); for (i = 0; i < state->cqes_count; i++) { - struct io_uring_cqe *cqe = &state->cqes[i]; + struct io_uring_cqe *cqe = &ctx->completion_cqes[i]; if (!io_fill_cqe_aux(ctx, cqe->user_data, cqe->res, cqe->flags)) { - if (ctx->task_complete) { + if (ctx->lockless_cq) { spin_lock(&ctx->completion_lock); io_cqring_event_overflow(ctx, cqe->user_data, cqe->res, cqe->flags, 0, 0); @@ -965,19 +941,22 @@ return __io_post_aux_cqe(ctx, user_data, res, cflags, true); } -bool io_aux_cqe(const struct io_kiocb *req, bool defer, s32 res, u32 cflags, - bool allow_overflow) +/* + * A helper for multishot requests posting additional CQEs. + * Should only be used from a task_work including IO_URING_F_MULTISHOT. + */ +bool io_fill_cqe_req_aux(struct io_kiocb *req, bool defer, s32 res, u32 cflags) { struct io_ring_ctx *ctx = req->ctx; u64 user_data = req->cqe.user_data; struct io_uring_cqe *cqe; if (!defer) - return __io_post_aux_cqe(ctx, user_data, res, cflags, allow_overflow); + return __io_post_aux_cqe(ctx, user_data, res, cflags, false); lockdep_assert_held(&ctx->uring_lock); - if (ctx->submit_state.cqes_count == ARRAY_SIZE(ctx->submit_state.cqes)) { + if (ctx->submit_state.cqes_count == ARRAY_SIZE(ctx->completion_cqes)) { __io_cq_lock(ctx); __io_flush_post_cqes(ctx); /* no need to flush - flush is deferred */ @@ -988,10 +967,10 @@ * however it's main job is to prevent unbounded posted completions, * and in that it works just as well. */ - if (!allow_overflow && test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq)) + if (test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq)) return false; - cqe = &ctx->submit_state.cqes[ctx->submit_state.cqes_count++]; + cqe = &ctx->completion_cqes[ctx->submit_state.cqes_count++]; cqe->user_data = user_data; cqe->res = res; cqe->flags = cflags; @@ -1004,8 +983,10 @@ struct io_rsrc_node *rsrc_node = NULL; io_cq_lock(ctx); - if (!(req->flags & REQ_F_CQE_SKIP)) - io_fill_cqe_req(ctx, req); + if (!(req->flags & REQ_F_CQE_SKIP)) { + if (!io_fill_cqe_req(ctx, req)) + io_req_cqe_overflow(req); + } /* * If we're the last reference to this request, add to our locked @@ -1023,8 +1004,7 @@ io_put_kbuf_comp(req); if (unlikely(req->flags & IO_REQ_CLEAN_FLAGS)) io_clean_op(req); - if (!(req->flags & REQ_F_FIXED_FILE)) - io_put_file(req->file); + io_put_file(req); rsrc_node = req->rsrc_node; /* @@ -1086,7 +1066,8 @@ req->link = NULL; req->async_data = NULL; /* not necessary, but safer to zero */ - req->cqe.res = 0; + memset(&req->cqe, 0, sizeof(req->cqe)); + memset(&req->big_cqe, 0, sizeof(req->big_cqe)); } static void io_flush_cached_locked_reqs(struct io_ring_ctx *ctx, @@ -1531,7 +1512,8 @@ io_req_task_queue(nxt); } -void io_free_batch_list(struct io_ring_ctx *ctx, struct io_wq_work_node *node) +static void io_free_batch_list(struct io_ring_ctx *ctx, + struct io_wq_work_node *node) __must_hold(&ctx->uring_lock) { do { @@ -1558,8 +1540,7 @@ if (unlikely(req->flags & IO_REQ_CLEAN_FLAGS)) io_clean_op(req); } - if (!(req->flags & REQ_F_FIXED_FILE)) - io_put_file(req->file); + io_put_file(req); io_req_put_rsrc_locked(req, ctx); @@ -1569,7 +1550,7 @@ } while (node); } -static void __io_submit_flush_completions(struct io_ring_ctx *ctx) +void __io_submit_flush_completions(struct io_ring_ctx *ctx) __must_hold(&ctx->uring_lock) { struct io_submit_state *state = &ctx->submit_state; @@ -1584,8 +1565,8 @@ comp_list); if (!(req->flags & REQ_F_CQE_SKIP) && - unlikely(!__io_fill_cqe_req(ctx, req))) { - if (ctx->task_complete) { + unlikely(!io_fill_cqe_req(ctx, req))) { + if (ctx->lockless_cq) { spin_lock(&ctx->completion_lock); io_req_cqe_overflow(req); spin_unlock(&ctx->completion_lock); @@ -1640,7 +1621,6 @@ static int io_iopoll_check(struct io_ring_ctx *ctx, long min) { unsigned int nr_events = 0; - int ret = 0; unsigned long check_cq; if (!io_allowed_run_tw(ctx)) @@ -1666,6 +1646,8 @@ return 0; do { + int ret = 0; + /* * If a submit got punted to a workqueue, we can have the * application entering polling for a command before it gets @@ -1694,16 +1676,18 @@ break; } ret = io_do_iopoll(ctx, !min); - if (ret < 0) - break; - nr_events += ret; - ret = 0; + if (unlikely(ret < 0)) + return ret; if (task_sigpending(current)) return -EINTR; - } while (nr_events < min && !need_resched()); + if (need_resched()) + break; - return ret; + nr_events += ret; + } while (nr_events < min); + + return 0; } void io_req_task_complete(struct io_kiocb *req, struct io_tw_state *ts) @@ -2390,8 +2374,21 @@ */ static bool io_get_sqe(struct io_ring_ctx *ctx, const struct io_uring_sqe **sqe) { - unsigned head, mask = ctx->sq_entries - 1; - unsigned sq_idx = ctx->cached_sq_head++ & mask; + unsigned mask = ctx->sq_entries - 1; + unsigned head = ctx->cached_sq_head++ & mask; + + if (!(ctx->flags & IORING_SETUP_NO_SQARRAY)) { + head = READ_ONCE(ctx->sq_array[head]); + if (unlikely(head >= ctx->sq_entries)) { + /* drop invalid entries */ + spin_lock(&ctx->completion_lock); + ctx->cq_extra--; + spin_unlock(&ctx->completion_lock); + WRITE_ONCE(ctx->rings->sq_dropped, + READ_ONCE(ctx->rings->sq_dropped) + 1); + return false; + } + } /* * The cached sq head (or cq tail) serves two purposes: @@ -2401,22 +2398,12 @@ * 2) allows the kernel side to track the head on its own, even * though the application is the one updating it. */ - head = READ_ONCE(ctx->sq_array[sq_idx]); - if (likely(head < ctx->sq_entries)) { - /* double index for 128-byte SQEs, twice as long */ - if (ctx->flags & IORING_SETUP_SQE128) - head <<= 1; - *sqe = &ctx->sq_sqes[head]; - return true; - } - /* drop invalid entries */ - spin_lock(&ctx->completion_lock); - ctx->cq_extra--; - spin_unlock(&ctx->completion_lock); - WRITE_ONCE(ctx->rings->sq_dropped, - READ_ONCE(ctx->rings->sq_dropped) + 1); - return false; + /* double index for 128-byte SQEs, twice as long */ + if (ctx->flags & IORING_SETUP_SQE128) + head <<= 1; + *sqe = &ctx->sq_sqes[head]; + return true; } int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr) @@ -2515,10 +2502,10 @@ if (!llist_empty(&ctx->work_llist)) { __set_current_state(TASK_RUNNING); if (io_run_local_work(ctx) > 0) - return 1; + return 0; } if (io_run_task_work() > 0) - return 1; + return 0; if (task_sigpending(current)) return -EINTR; return 0; @@ -2674,14 +2661,10 @@ static void io_mem_free(void *ptr) { - struct page *page; - if (!ptr) return; - page = virt_to_head_page(ptr); - if (put_page_testzero(page)) - free_compound_page(page); + folio_put(virt_to_folio(ptr)); } static void io_pages_free(struct page ***pages, int npages) @@ -2691,7 +2674,11 @@ if (!pages) return; + page_array = *pages; + if (!page_array) + return; + for (i = 0; i < npages; i++) unpin_user_page(page_array[i]); kvfree(page_array); @@ -2703,7 +2690,7 @@ { struct page **page_array; unsigned int nr_pages; - int ret; + int ret, i; *npages = 0; @@ -2733,6 +2720,20 @@ */ if (page_array[0] != page_array[ret - 1]) goto err; + + /* + * Can't support mapping user allocated ring memory on 32-bit archs + * where it could potentially reside in highmem. Just fail those with + * -EINVAL, just like we did on kernels that didn't support this + * feature. + */ + for (i = 0; i < nr_pages; i++) { + if (PageHighMem(page_array[i])) { + ret = -EINVAL; + goto err; + } + } + *pages = page_array; *npages = nr_pages; return page_to_virt(page_array[0]); @@ -2761,7 +2762,9 @@ ctx->sq_sqes = NULL; } else { io_pages_free(&ctx->ring_pages, ctx->n_ring_pages); + ctx->n_ring_pages = 0; io_pages_free(&ctx->sqe_pages, ctx->n_sqe_pages); + ctx->n_sqe_pages = 0; } } @@ -2796,6 +2799,12 @@ return SIZE_MAX; #endif + if (ctx->flags & IORING_SETUP_NO_SQARRAY) { + if (sq_offset) + *sq_offset = SIZE_MAX; + return off; + } + if (sq_offset) *sq_offset = off; @@ -2938,7 +2947,6 @@ io_wq_put_hash(ctx->hash_map); kfree(ctx->cancel_table.hbs); kfree(ctx->cancel_table_locked.hbs); - kfree(ctx->dummy_ubuf); kfree(ctx->io_bl); xa_destroy(&ctx->io_bl_xa); kfree(ctx); @@ -3768,7 +3776,8 @@ return PTR_ERR(rings); ctx->rings = rings; - ctx->sq_array = (u32 *)((char *)rings + sq_array_offset); + if (!(ctx->flags & IORING_SETUP_NO_SQARRAY)) + ctx->sq_array = (u32 *)((char *)rings + sq_array_offset); rings->sq_ring_mask = p->sq_entries - 1; rings->cq_ring_mask = p->cq_entries - 1; rings->sq_ring_entries = p->sq_entries; @@ -3897,6 +3906,9 @@ !(ctx->flags & IORING_SETUP_SQPOLL)) ctx->task_complete = true; + if (ctx->task_complete || (ctx->flags & IORING_SETUP_IOPOLL)) + ctx->lockless_cq = true; + /* * lazy poll_wq activation relies on ->task_complete for synchronisation * purposes, see io_activate_pollwq() @@ -3976,7 +3988,8 @@ p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries); p->sq_off.flags = offsetof(struct io_rings, sq_flags); p->sq_off.dropped = offsetof(struct io_rings, sq_dropped); - p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings; + if (!(ctx->flags & IORING_SETUP_NO_SQARRAY)) + p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings; p->sq_off.resv1 = 0; if (!(ctx->flags & IORING_SETUP_NO_MMAP)) p->sq_off.user_addr = 0; @@ -4065,7 +4078,8 @@ IORING_SETUP_COOP_TASKRUN | IORING_SETUP_TASKRUN_FLAG | IORING_SETUP_SQE128 | IORING_SETUP_CQE32 | IORING_SETUP_SINGLE_ISSUER | IORING_SETUP_DEFER_TASKRUN | - IORING_SETUP_NO_MMAP | IORING_SETUP_REGISTERED_FD_ONLY)) + IORING_SETUP_NO_MMAP | IORING_SETUP_REGISTERED_FD_ONLY | + IORING_SETUP_NO_SQARRAY)) return -EINVAL; return io_uring_create(entries, &p, params); @@ -4674,8 +4688,20 @@ io_uring_optable_init(); - req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC | - SLAB_ACCOUNT | SLAB_TYPESAFE_BY_RCU); + /* + * Allow user copy in the per-command field, which starts after the + * file in io_kiocb and until the opcode field. The openat2 handling + * requires copying in user memory into the io_kiocb object in that + * range, and HARDENED_USERCOPY will complain if we haven't + * correctly annotated this range. + */ + req_cachep = kmem_cache_create_usercopy("io_kiocb", + sizeof(struct io_kiocb), 0, + SLAB_HWCACHE_ALIGN | SLAB_PANIC | + SLAB_ACCOUNT | SLAB_TYPESAFE_BY_RCU, + offsetof(struct io_kiocb, cmd.data), + sizeof_field(struct io_kiocb, cmd.data), NULL); + #ifdef CONFIG_SYSCTL register_sysctl_init("kernel", kernel_io_uring_disabled_table); diff -u linux-oracle-6.5-6.5.0/io_uring/io_uring.h linux-oracle-6.5-6.5.0/io_uring/io_uring.h --- linux-oracle-6.5-6.5.0/io_uring/io_uring.h +++ linux-oracle-6.5-6.5.0/io_uring/io_uring.h @@ -38,14 +38,13 @@ IOU_STOP_MULTISHOT = -ECANCELED, }; -struct io_uring_cqe *__io_get_cqe(struct io_ring_ctx *ctx, bool overflow); -bool io_req_cqe_overflow(struct io_kiocb *req); +bool io_cqe_cache_refill(struct io_ring_ctx *ctx, bool overflow); +void io_req_cqe_overflow(struct io_kiocb *req); int io_run_task_work_sig(struct io_ring_ctx *ctx); void io_req_defer_failed(struct io_kiocb *req, s32 res); void io_req_complete_post(struct io_kiocb *req, unsigned issue_flags); bool io_post_aux_cqe(struct io_ring_ctx *ctx, u64 user_data, s32 res, u32 cflags); -bool io_aux_cqe(const struct io_kiocb *req, bool defer, s32 res, u32 cflags, - bool allow_overflow); +bool io_fill_cqe_req_aux(struct io_kiocb *req, bool defer, s32 res, u32 cflags); void __io_commit_cqring_flush(struct io_ring_ctx *ctx); struct page **io_pin_pages(unsigned long ubuf, unsigned long len, int *npages); @@ -73,7 +72,7 @@ int io_poll_issue(struct io_kiocb *req, struct io_tw_state *ts); int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr); int io_do_iopoll(struct io_ring_ctx *ctx, bool force_nonspin); -void io_free_batch_list(struct io_ring_ctx *ctx, struct io_wq_work_node *node); +void __io_submit_flush_completions(struct io_ring_ctx *ctx); int io_req_prep_async(struct io_kiocb *req); struct io_wq_work *io_wq_free_work(struct io_wq_work *work); @@ -87,20 +86,33 @@ bool io_match_task_safe(struct io_kiocb *head, struct task_struct *task, bool cancel_all); -#define io_lockdep_assert_cq_locked(ctx) \ - do { \ - lockdep_assert(in_task()); \ - \ - if (ctx->flags & IORING_SETUP_IOPOLL) { \ - lockdep_assert_held(&ctx->uring_lock); \ - } else if (!ctx->task_complete) { \ - lockdep_assert_held(&ctx->completion_lock); \ - } else if (ctx->submitter_task->flags & PF_EXITING) { \ - lockdep_assert(current_work()); \ - } else { \ - lockdep_assert(current == ctx->submitter_task); \ - } \ - } while (0) +#if defined(CONFIG_PROVE_LOCKING) +static inline void io_lockdep_assert_cq_locked(struct io_ring_ctx *ctx) +{ + lockdep_assert(in_task()); + + if (ctx->flags & IORING_SETUP_IOPOLL) { + lockdep_assert_held(&ctx->uring_lock); + } else if (!ctx->task_complete) { + lockdep_assert_held(&ctx->completion_lock); + } else if (ctx->submitter_task) { + /* + * ->submitter_task may be NULL and we can still post a CQE, + * if the ring has been setup with IORING_SETUP_R_DISABLED. + * Not from an SQE, as those cannot be submitted, but via + * updating tagged resources. + */ + if (ctx->submitter_task->flags & PF_EXITING) + lockdep_assert(current_work()); + else + lockdep_assert(current == ctx->submitter_task); + } +} +#else +static inline void io_lockdep_assert_cq_locked(struct io_ring_ctx *ctx) +{ +} +#endif static inline void io_req_task_work_add(struct io_kiocb *req) { @@ -110,31 +122,31 @@ #define io_for_each_link(pos, head) \ for (pos = (head); pos; pos = pos->link) -static inline struct io_uring_cqe *io_get_cqe_overflow(struct io_ring_ctx *ctx, - bool overflow) +static inline bool io_get_cqe_overflow(struct io_ring_ctx *ctx, + struct io_uring_cqe **ret, + bool overflow) { io_lockdep_assert_cq_locked(ctx); - if (likely(ctx->cqe_cached < ctx->cqe_sentinel)) { - struct io_uring_cqe *cqe = ctx->cqe_cached; - - ctx->cached_cq_tail++; - ctx->cqe_cached++; - if (ctx->flags & IORING_SETUP_CQE32) - ctx->cqe_cached++; - return cqe; + if (unlikely(ctx->cqe_cached >= ctx->cqe_sentinel)) { + if (unlikely(!io_cqe_cache_refill(ctx, overflow))) + return false; } - - return __io_get_cqe(ctx, overflow); + *ret = ctx->cqe_cached; + ctx->cached_cq_tail++; + ctx->cqe_cached++; + if (ctx->flags & IORING_SETUP_CQE32) + ctx->cqe_cached++; + return true; } -static inline struct io_uring_cqe *io_get_cqe(struct io_ring_ctx *ctx) +static inline bool io_get_cqe(struct io_ring_ctx *ctx, struct io_uring_cqe **ret) { - return io_get_cqe_overflow(ctx, false); + return io_get_cqe_overflow(ctx, ret, false); } -static inline bool __io_fill_cqe_req(struct io_ring_ctx *ctx, - struct io_kiocb *req) +static __always_inline bool io_fill_cqe_req(struct io_ring_ctx *ctx, + struct io_kiocb *req) { struct io_uring_cqe *cqe; @@ -143,39 +155,22 @@ * submission (by quite a lot). Increment the overflow count in * the ring. */ - cqe = io_get_cqe(ctx); - if (unlikely(!cqe)) + if (unlikely(!io_get_cqe(ctx, &cqe))) return false; - trace_io_uring_complete(req->ctx, req, req->cqe.user_data, - req->cqe.res, req->cqe.flags, - (req->flags & REQ_F_CQE32_INIT) ? req->extra1 : 0, - (req->flags & REQ_F_CQE32_INIT) ? req->extra2 : 0); + if (trace_io_uring_complete_enabled()) + trace_io_uring_complete(req->ctx, req, req->cqe.user_data, + req->cqe.res, req->cqe.flags, + req->big_cqe.extra1, req->big_cqe.extra2); memcpy(cqe, &req->cqe, sizeof(*cqe)); - if (ctx->flags & IORING_SETUP_CQE32) { - u64 extra1 = 0, extra2 = 0; - - if (req->flags & REQ_F_CQE32_INIT) { - extra1 = req->extra1; - extra2 = req->extra2; - } - - WRITE_ONCE(cqe->big_cqe[0], extra1); - WRITE_ONCE(cqe->big_cqe[1], extra2); + memcpy(cqe->big_cqe, &req->big_cqe, sizeof(*cqe)); + memset(&req->big_cqe, 0, sizeof(req->big_cqe)); } return true; } -static inline bool io_fill_cqe_req(struct io_ring_ctx *ctx, - struct io_kiocb *req) -{ - if (likely(__io_fill_cqe_req(ctx, req))) - return true; - return io_req_cqe_overflow(req); -} - static inline void req_set_fail(struct io_kiocb *req) { req->flags |= REQ_F_FAIL; @@ -196,10 +191,10 @@ return req->flags & REQ_F_ASYNC_DATA; } -static inline void io_put_file(struct file *file) +static inline void io_put_file(struct io_kiocb *req) { - if (file) - fput(file); + if (!(req->flags & REQ_F_FIXED_FILE) && req->file) + fput(req->file); } static inline void io_ring_submit_unlock(struct io_ring_ctx *ctx, diff -u linux-oracle-6.5-6.5.0/io_uring/net.c linux-oracle-6.5-6.5.0/io_uring/net.c --- linux-oracle-6.5-6.5.0/io_uring/net.c +++ linux-oracle-6.5-6.5.0/io_uring/net.c @@ -183,6 +183,10 @@ memcpy(async_msg, kmsg, sizeof(*kmsg)); if (async_msg->msg.msg_name) async_msg->msg.msg_name = &async_msg->addr; + + if ((req->flags & REQ_F_BUFFER_SELECT) && !async_msg->msg.msg_iter.nr_segs) + return -EAGAIN; + /* if were using fast_iov, set it to the new one */ if (iter_is_iovec(&kmsg->msg.msg_iter) && !kmsg->free_iov) { size_t fast_idx = iter_iov(&kmsg->msg.msg_iter) - kmsg->fast_iov; @@ -542,6 +546,7 @@ struct io_async_msghdr *iomsg) { iomsg->msg.msg_name = &iomsg->addr; + iomsg->msg.msg_iter.nr_segs = 0; #ifdef CONFIG_COMPAT if (req->ctx->compat) @@ -641,8 +646,8 @@ } if (!mshot_finished) { - if (io_aux_cqe(req, issue_flags & IO_URING_F_COMPLETE_DEFER, - *ret, cflags | IORING_CQE_F_MORE, false)) { + if (io_fill_cqe_req_aux(req, issue_flags & IO_URING_F_COMPLETE_DEFER, + *ret, cflags | IORING_CQE_F_MORE)) { io_recv_prep_retry(req); /* Known not-empty or unknown state, retry */ if (cflags & IORING_CQE_F_SOCK_NONEMPTY || @@ -1366,8 +1371,8 @@ if (ret < 0) return ret; - if (io_aux_cqe(req, issue_flags & IO_URING_F_COMPLETE_DEFER, ret, - IORING_CQE_F_MORE, false)) + if (io_fill_cqe_req_aux(req, issue_flags & IO_URING_F_COMPLETE_DEFER, + ret, IORING_CQE_F_MORE)) goto retry; return -ECANCELED; diff -u linux-oracle-6.5-6.5.0/kernel/auditsc.c linux-oracle-6.5-6.5.0/kernel/auditsc.c --- linux-oracle-6.5-6.5.0/kernel/auditsc.c +++ linux-oracle-6.5-6.5.0/kernel/auditsc.c @@ -143,6 +143,8 @@ { AUDIT_NFT_OP_OBJ_RESET, "nft_reset_obj" }, { AUDIT_NFT_OP_FLOWTABLE_REGISTER, "nft_register_flowtable" }, { AUDIT_NFT_OP_FLOWTABLE_UNREGISTER, "nft_unregister_flowtable" }, + { AUDIT_NFT_OP_SETELEM_RESET, "nft_reset_setelem" }, + { AUDIT_NFT_OP_RULE_RESET, "nft_reset_rule" }, { AUDIT_NFT_OP_INVALID, "nft_invalid" }, }; @@ -2185,7 +2187,7 @@ if (!n->name) continue; if (n->name->uptr == uptr) { - n->name->refcnt++; + atomic_inc(&n->name->refcnt); return n->name; } } @@ -2214,7 +2216,7 @@ n->name = name; n->name_len = AUDIT_NAME_FULL; name->aname = n; - name->refcnt++; + atomic_inc(&name->refcnt); } static inline int audit_copy_fcaps(struct audit_names *name, @@ -2346,7 +2348,7 @@ return; if (name) { n->name = name; - name->refcnt++; + atomic_inc(&name->refcnt); } out: @@ -2473,7 +2475,7 @@ if (found_parent) { found_child->name = found_parent->name; found_child->name_len = AUDIT_NAME_FULL; - found_child->name->refcnt++; + atomic_inc(&found_child->name->refcnt); } } diff -u linux-oracle-6.5-6.5.0/kernel/bpf/btf.c linux-oracle-6.5-6.5.0/kernel/bpf/btf.c --- linux-oracle-6.5-6.5.0/kernel/bpf/btf.c +++ linux-oracle-6.5-6.5.0/kernel/bpf/btf.c @@ -8498,7 +8498,7 @@ tname = btf_name_by_offset(btf, walk_type->name_off); ret = snprintf(safe_tname, sizeof(safe_tname), "%s%s", tname, suffix); - if (ret < 0) + if (ret >= sizeof(safe_tname)) return false; safe_id = btf_find_by_name_kind(btf, safe_tname, BTF_INFO_KIND(walk_type->info)); diff -u linux-oracle-6.5-6.5.0/kernel/bpf/verifier.c linux-oracle-6.5-6.5.0/kernel/bpf/verifier.c --- linux-oracle-6.5-6.5.0/kernel/bpf/verifier.c +++ linux-oracle-6.5-6.5.0/kernel/bpf/verifier.c @@ -4039,11 +4039,9 @@ bitmap_from_u64(mask, bt_reg_mask(bt)); for_each_set_bit(i, mask, 32) { reg = &st->frame[0]->regs[i]; - if (reg->type != SCALAR_VALUE) { - bt_clear_reg(bt, i); - continue; - } - reg->precise = true; + bt_clear_reg(bt, i); + if (reg->type == SCALAR_VALUE) + reg->precise = true; } return 0; } @@ -7841,6 +7839,7 @@ case PTR_TO_BTF_ID | PTR_TRUSTED: case PTR_TO_BTF_ID | MEM_RCU: case PTR_TO_BTF_ID | MEM_ALLOC | NON_OWN_REF: + case PTR_TO_BTF_ID | MEM_ALLOC | NON_OWN_REF | MEM_RCU: /* When referenced PTR_TO_BTF_ID is passed to release function, * its fixed offset must be 0. In the other cases, fixed offset * can be non-zero. This was already checked above. So pass @@ -10302,6 +10301,7 @@ static int ref_set_non_owning(struct bpf_verifier_env *env, struct bpf_reg_state *reg) { struct bpf_verifier_state *state = env->cur_state; + struct btf_record *rec = reg_btf_record(reg); if (!state->active_lock.ptr) { verbose(env, "verifier internal error: ref_set_non_owning w/o active lock\n"); @@ -10314,6 +10314,9 @@ } reg->type |= NON_OWN_REF; + if (rec->refcount_off >= 0) + reg->type |= MEM_RCU; + return 0; } @@ -11154,6 +11157,11 @@ struct bpf_func_state *state; struct bpf_reg_state *reg; + if (in_rbtree_lock_required_cb(env) && (rcu_lock || rcu_unlock)) { + verbose(env, "Calling bpf_rcu_read_{lock,unlock} in unnecessary rbtree callback\n"); + return -EACCES; + } + if (rcu_lock) { verbose(env, "nested rcu read lock (kernel function %s)\n", func_name); return -EINVAL; @@ -14247,7 +14255,7 @@ struct tnum enforce_attach_type_range = tnum_unknown; const struct bpf_prog *prog = env->prog; struct bpf_reg_state *reg; - struct tnum range = tnum_range(0, 1); + struct tnum range = tnum_range(0, 1), const_0 = tnum_const(0); enum bpf_prog_type prog_type = resolve_prog_type(env->prog); int err; struct bpf_func_state *frame = env->cur_state->frame[0]; @@ -14295,8 +14303,8 @@ return -EINVAL; } - if (!tnum_in(tnum_const(0), reg->var_off)) { - verbose_invalid_scalar(env, reg, &range, "async callback", "R0"); + if (!tnum_in(const_0, reg->var_off)) { + verbose_invalid_scalar(env, reg, &const_0, "async callback", "R0"); return -EINVAL; } return 0; @@ -16453,7 +16461,8 @@ return -EINVAL; } - if (env->cur_state->active_rcu_lock) { + if (env->cur_state->active_rcu_lock && + !in_rbtree_lock_required_cb(env)) { verbose(env, "bpf_rcu_read_unlock is missing\n"); return -EINVAL; } diff -u linux-oracle-6.5-6.5.0/kernel/events/core.c linux-oracle-6.5-6.5.0/kernel/events/core.c --- linux-oracle-6.5-6.5.0/kernel/events/core.c +++ linux-oracle-6.5-6.5.0/kernel/events/core.c @@ -1808,31 +1808,34 @@ PERF_EVENT_STATE_INACTIVE; } -static void __perf_event_read_size(struct perf_event *event, int nr_siblings) +static int __perf_event_read_size(u64 read_format, int nr_siblings) { int entry = sizeof(u64); /* value */ int size = 0; int nr = 1; - if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) + if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) size += sizeof(u64); - if (event->attr.read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) + if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING) size += sizeof(u64); - if (event->attr.read_format & PERF_FORMAT_ID) + if (read_format & PERF_FORMAT_ID) entry += sizeof(u64); - if (event->attr.read_format & PERF_FORMAT_LOST) + if (read_format & PERF_FORMAT_LOST) entry += sizeof(u64); - if (event->attr.read_format & PERF_FORMAT_GROUP) { + if (read_format & PERF_FORMAT_GROUP) { nr += nr_siblings; size += sizeof(u64); } - size += entry * nr; - event->read_size = size; + /* + * Since perf_event_validate_size() limits this to 16k and inhibits + * adding more siblings, this will never overflow. + */ + return size + nr * entry; } static void __perf_event_header_size(struct perf_event *event, u64 sample_type) @@ -1882,8 +1885,9 @@ */ static void perf_event__header_size(struct perf_event *event) { - __perf_event_read_size(event, - event->group_leader->nr_siblings); + event->read_size = + __perf_event_read_size(event->attr.read_format, + event->group_leader->nr_siblings); __perf_event_header_size(event, event->attr.sample_type); } @@ -1914,23 +1918,44 @@ event->id_header_size = size; } +/* + * Check that adding an event to the group does not result in anybody + * overflowing the 64k event limit imposed by the output buffer. + * + * Specifically, check that the read_size for the event does not exceed 16k, + * read_size being the one term that grows with groups size. Since read_size + * depends on per-event read_format, also (re)check the existing events. + * + * This leaves 48k for the constant size fields and things like callchains, + * branch stacks and register sets. + */ static bool perf_event_validate_size(struct perf_event *event) { - /* - * The values computed here will be over-written when we actually - * attach the event. - */ - __perf_event_read_size(event, event->group_leader->nr_siblings + 1); - __perf_event_header_size(event, event->attr.sample_type & ~PERF_SAMPLE_READ); - perf_event__id_header_size(event); + struct perf_event *sibling, *group_leader = event->group_leader; + + if (__perf_event_read_size(event->attr.read_format, + group_leader->nr_siblings + 1) > 16*1024) + return false; + + if (__perf_event_read_size(group_leader->attr.read_format, + group_leader->nr_siblings + 1) > 16*1024) + return false; /* - * Sum the lot; should not exceed the 64k limit we have on records. - * Conservative limit to allow for callchains and other variable fields. + * When creating a new group leader, group_leader->ctx is initialized + * after the size has been validated, but we cannot safely use + * for_each_sibling_event() until group_leader->ctx is set. A new group + * leader cannot have any siblings yet, so we can safely skip checking + * the non-existent siblings. */ - if (event->read_size + event->header_size + - event->id_header_size + sizeof(struct perf_event_header) >= 16*1024) - return false; + if (event == group_leader) + return true; + + for_each_sibling_event(sibling, group_leader) { + if (__perf_event_read_size(sibling->attr.read_format, + group_leader->nr_siblings + 1) > 16*1024) + return false; + } return true; } diff -u linux-oracle-6.5-6.5.0/kernel/fork.c linux-oracle-6.5-6.5.0/kernel/fork.c --- linux-oracle-6.5-6.5.0/kernel/fork.c +++ linux-oracle-6.5-6.5.0/kernel/fork.c @@ -990,6 +990,14 @@ } EXPORT_SYMBOL_GPL(__put_task_struct); +void __put_task_struct_rcu_cb(struct rcu_head *rhp) +{ + struct task_struct *task = container_of(rhp, struct task_struct, rcu); + + __put_task_struct(task); +} +EXPORT_SYMBOL_GPL(__put_task_struct_rcu_cb); + void __init __weak arch_task_cache_init(void) { } /* diff -u linux-oracle-6.5-6.5.0/kernel/sched/core.c linux-oracle-6.5-6.5.0/kernel/sched/core.c --- linux-oracle-6.5-6.5.0/kernel/sched/core.c +++ linux-oracle-6.5-6.5.0/kernel/sched/core.c @@ -9272,7 +9272,7 @@ * PF_KTHREAD should already be set at this point; regardless, make it * look like a proper per-CPU kthread. */ - idle->flags |= PF_IDLE | PF_KTHREAD | PF_NO_SETAFFINITY; + idle->flags |= PF_KTHREAD | PF_NO_SETAFFINITY; kthread_set_per_cpu(idle, cpu); #ifdef CONFIG_SMP diff -u linux-oracle-6.5-6.5.0/kernel/trace/bpf_trace.c linux-oracle-6.5-6.5.0/kernel/trace/bpf_trace.c --- linux-oracle-6.5-6.5.0/kernel/trace/bpf_trace.c +++ linux-oracle-6.5-6.5.0/kernel/trace/bpf_trace.c @@ -223,17 +223,6 @@ .arg3_type = ARG_ANYTHING, }; -static __always_inline int -bpf_probe_read_kernel_common(void *dst, u32 size, const void *unsafe_ptr) -{ - int ret; - - ret = copy_from_kernel_nofault(dst, unsafe_ptr, size); - if (unlikely(ret < 0)) - memset(dst, 0, size); - return ret; -} - BPF_CALL_3(bpf_probe_read_kernel, void *, dst, u32, size, const void *, unsafe_ptr) { @@ -2783,6 +2772,17 @@ return arr.mods_cnt; } +static int addrs_check_error_injection_list(unsigned long *addrs, u32 cnt) +{ + u32 i; + + for (i = 0; i < cnt; i++) { + if (!within_error_injection_list(addrs[i])) + return -EINVAL; + } + return 0; +} + int bpf_kprobe_multi_link_attach(const union bpf_attr *attr, struct bpf_prog *prog) { struct bpf_kprobe_multi_link *link = NULL; @@ -2860,6 +2860,11 @@ goto error; } + if (prog->kprobe_override && addrs_check_error_injection_list(addrs, cnt)) { + err = -EINVAL; + goto error; + } + link = kzalloc(sizeof(*link), GFP_KERNEL); if (!link) { err = -ENOMEM; diff -u linux-oracle-6.5-6.5.0/kernel/trace/trace.c linux-oracle-6.5-6.5.0/kernel/trace/trace.c --- linux-oracle-6.5-6.5.0/kernel/trace/trace.c +++ linux-oracle-6.5-6.5.0/kernel/trace/trace.c @@ -1772,7 +1772,7 @@ init_irq_work(&tr->fsnotify_irqwork, latency_fsnotify_workfn_irq); tr->d_max_latency = trace_create_file("tracing_max_latency", TRACE_MODE_WRITE, - d_tracer, &tr->max_latency, + d_tracer, tr, &tracing_max_lat_fops); } @@ -1805,7 +1805,7 @@ #define trace_create_maxlat_file(tr, d_tracer) \ trace_create_file("tracing_max_latency", TRACE_MODE_WRITE, \ - d_tracer, &tr->max_latency, &tracing_max_lat_fops) + d_tracer, tr, &tracing_max_lat_fops) #endif @@ -4987,6 +4987,33 @@ return 0; } +/* + * The private pointer of the inode is the trace_event_file. + * Update the tr ref count associated to it. + */ +int tracing_open_file_tr(struct inode *inode, struct file *filp) +{ + struct trace_event_file *file = inode->i_private; + int ret; + + ret = tracing_check_open_get_tr(file->tr); + if (ret) + return ret; + + filp->private_data = inode->i_private; + + return 0; +} + +int tracing_release_file_tr(struct inode *inode, struct file *filp) +{ + struct trace_event_file *file = inode->i_private; + + trace_array_put(file->tr); + + return 0; +} + static int tracing_mark_open(struct inode *inode, struct file *filp) { stream_open(inode, filp); @@ -6706,14 +6733,18 @@ tracing_max_lat_read(struct file *filp, char __user *ubuf, size_t cnt, loff_t *ppos) { - return tracing_nsecs_read(filp->private_data, ubuf, cnt, ppos); + struct trace_array *tr = filp->private_data; + + return tracing_nsecs_read(&tr->max_latency, ubuf, cnt, ppos); } static ssize_t tracing_max_lat_write(struct file *filp, const char __user *ubuf, size_t cnt, loff_t *ppos) { - return tracing_nsecs_write(filp->private_data, ubuf, cnt, ppos); + struct trace_array *tr = filp->private_data; + + return tracing_nsecs_write(&tr->max_latency, ubuf, cnt, ppos); } #endif @@ -7770,18 +7801,20 @@ #ifdef CONFIG_TRACER_MAX_TRACE static const struct file_operations tracing_max_lat_fops = { - .open = tracing_open_generic, + .open = tracing_open_generic_tr, .read = tracing_max_lat_read, .write = tracing_max_lat_write, .llseek = generic_file_llseek, + .release = tracing_release_generic_tr, }; #endif static const struct file_operations set_tracer_fops = { - .open = tracing_open_generic, + .open = tracing_open_generic_tr, .read = tracing_set_trace_read, .write = tracing_set_trace_write, .llseek = generic_file_llseek, + .release = tracing_release_generic_tr, }; static const struct file_operations tracing_pipe_fops = { @@ -8974,12 +9007,33 @@ return cnt; } +static int tracing_open_options(struct inode *inode, struct file *filp) +{ + struct trace_option_dentry *topt = inode->i_private; + int ret; + + ret = tracing_check_open_get_tr(topt->tr); + if (ret) + return ret; + + filp->private_data = inode->i_private; + return 0; +} + +static int tracing_release_options(struct inode *inode, struct file *file) +{ + struct trace_option_dentry *topt = file->private_data; + + trace_array_put(topt->tr); + return 0; +} static const struct file_operations trace_options_fops = { - .open = tracing_open_generic, + .open = tracing_open_options, .read = trace_options_read, .write = trace_options_write, .llseek = generic_file_llseek, + .release = tracing_release_options, }; /* diff -u linux-oracle-6.5-6.5.0/kernel/workqueue.c linux-oracle-6.5-6.5.0/kernel/workqueue.c --- linux-oracle-6.5-6.5.0/kernel/workqueue.c +++ linux-oracle-6.5-6.5.0/kernel/workqueue.c @@ -5741,9 +5741,13 @@ list_for_each_entry(wq, &workqueues, list) { if (!(wq->flags & WQ_UNBOUND)) continue; + /* creating multiple pwqs breaks ordering guarantee */ - if (wq->flags & __WQ_ORDERED) - continue; + if (!list_empty(&wq->pwqs)) { + if (wq->flags & __WQ_ORDERED_EXPLICIT) + continue; + wq->flags &= ~__WQ_ORDERED; + } ctx = apply_wqattrs_prepare(wq, wq->unbound_attrs, unbound_cpumask); if (!ctx) { reverted: --- linux-oracle-6.5-6.5.0/mm/filemap.c +++ linux-oracle-6.5-6.5.0.orig/mm/filemap.c @@ -973,12 +973,10 @@ n = cpuset_mem_spread_node(); folio = __folio_alloc_node(gfp, order, n); } while (!folio && read_mems_allowed_retry(cpuset_mems_cookie)); + + return folio; - } else { - folio = folio_alloc(gfp, order); } + return folio_alloc(gfp, order); - if (folio) - VM_BUG_ON_FOLIO(folio->private, folio); - return folio; } EXPORT_SYMBOL(filemap_alloc_folio); #endif diff -u linux-oracle-6.5-6.5.0/mm/vmscan.c linux-oracle-6.5-6.5.0/mm/vmscan.c --- linux-oracle-6.5-6.5.0/mm/vmscan.c +++ linux-oracle-6.5-6.5.0/mm/vmscan.c @@ -4440,7 +4440,7 @@ int prev, next; int type, zone; struct lru_gen_folio *lrugen = &lruvec->lrugen; - +restart: spin_lock_irq(&lruvec->lru_lock); VM_WARN_ON_ONCE(!seq_is_valid(lruvec)); @@ -4451,11 +4451,12 @@ VM_WARN_ON_ONCE(!force_scan && (type == LRU_GEN_FILE || can_swap)); - while (!inc_min_seq(lruvec, type, can_swap)) { - spin_unlock_irq(&lruvec->lru_lock); - cond_resched(); - spin_lock_irq(&lruvec->lru_lock); - } + if (inc_min_seq(lruvec, type, can_swap)) + continue; + + spin_unlock_irq(&lruvec->lru_lock); + cond_resched(); + goto restart; } /* diff -u linux-oracle-6.5-6.5.0/net/bluetooth/hci_core.c linux-oracle-6.5-6.5.0/net/bluetooth/hci_core.c --- linux-oracle-6.5-6.5.0/net/bluetooth/hci_core.c +++ linux-oracle-6.5-6.5.0/net/bluetooth/hci_core.c @@ -2436,6 +2436,9 @@ if (hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) return NOTIFY_DONE; + /* To avoid a potential race with hci_unregister_dev. */ + hci_dev_hold(hdev); + if (action == PM_SUSPEND_PREPARE) ret = hci_suspend_dev(hdev); else if (action == PM_POST_SUSPEND) @@ -2445,6 +2448,7 @@ bt_dev_err(hdev, "Suspend notifier action (%lu) failed: %d", action, ret); + hci_dev_put(hdev); return NOTIFY_DONE; } @@ -2780,6 +2784,7 @@ hci_conn_params_clear_all(hdev); hci_discovery_filter_clear(hdev); hci_blocked_keys_clear(hdev); + hci_codec_list_clear(&hdev->local_codecs); hci_dev_unlock(hdev); ida_simple_remove(&hci_index_ida, hdev->id); @@ -3414,7 +3419,12 @@ if (c->type == type && c->sent) { bt_dev_err(hdev, "killing stalled connection %pMR", &c->dst); + /* hci_disconnect might sleep, so, we have to release + * the RCU read lock before calling it. + */ + rcu_read_unlock(); hci_disconnect(c, HCI_ERROR_REMOTE_USER_TERM); + rcu_read_lock(); } } diff -u linux-oracle-6.5-6.5.0/net/bluetooth/hci_event.c linux-oracle-6.5-6.5.0/net/bluetooth/hci_event.c --- linux-oracle-6.5-6.5.0/net/bluetooth/hci_event.c +++ linux-oracle-6.5-6.5.0/net/bluetooth/hci_event.c @@ -33,6 +33,7 @@ #include "hci_request.h" #include "hci_debugfs.h" +#include "hci_codec.h" #include "a2mp.h" #include "amp.h" #include "smp.h" diff -u linux-oracle-6.5-6.5.0/net/bluetooth/hci_sync.c linux-oracle-6.5-6.5.0/net/bluetooth/hci_sync.c --- linux-oracle-6.5-6.5.0/net/bluetooth/hci_sync.c +++ linux-oracle-6.5-6.5.0/net/bluetooth/hci_sync.c @@ -412,11 +412,6 @@ LE_SCAN_FILTER_DUP_ENABLE); } -static int le_scan_restart_sync(struct hci_dev *hdev, void *data) -{ - return hci_le_scan_restart_sync(hdev); -} - static void le_scan_restart(struct work_struct *work) { struct hci_dev *hdev = container_of(work, struct hci_dev, @@ -426,15 +421,15 @@ bt_dev_dbg(hdev, ""); - hci_dev_lock(hdev); - - status = hci_cmd_sync_queue(hdev, le_scan_restart_sync, NULL, NULL); + status = hci_le_scan_restart_sync(hdev); if (status) { bt_dev_err(hdev, "failed to restart LE scan: status %d", status); - goto unlock; + return; } + hci_dev_lock(hdev); + if (!test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks) || !hdev->discovery.scan_start) goto unlock; @@ -5095,6 +5090,7 @@ memset(hdev->eir, 0, sizeof(hdev->eir)); memset(hdev->dev_class, 0, sizeof(hdev->dev_class)); bacpy(&hdev->random_addr, BDADDR_ANY); + hci_codec_list_clear(&hdev->local_codecs); hci_dev_put(hdev); return err; diff -u linux-oracle-6.5-6.5.0/net/bluetooth/iso.c linux-oracle-6.5-6.5.0/net/bluetooth/iso.c --- linux-oracle-6.5-6.5.0/net/bluetooth/iso.c +++ linux-oracle-6.5-6.5.0/net/bluetooth/iso.c @@ -499,7 +499,7 @@ } /* -------- Socket interface ---------- */ -static struct sock *__iso_get_sock_listen_by_addr(bdaddr_t *ba) +static struct sock *__iso_get_sock_listen_by_addr(bdaddr_t *src, bdaddr_t *dst) { struct sock *sk; @@ -507,7 +507,10 @@ if (sk->sk_state != BT_LISTEN) continue; - if (!bacmp(&iso_pi(sk)->src, ba)) + if (bacmp(&iso_pi(sk)->dst, dst)) + continue; + + if (!bacmp(&iso_pi(sk)->src, src)) return sk; } @@ -965,7 +968,7 @@ write_lock(&iso_sk_list.lock); - if (__iso_get_sock_listen_by_addr(&iso_pi(sk)->src)) + if (__iso_get_sock_listen_by_addr(&iso_pi(sk)->src, &iso_pi(sk)->dst)) err = -EADDRINUSE; write_unlock(&iso_sk_list.lock); diff -u linux-oracle-6.5-6.5.0/net/ceph/messenger.c linux-oracle-6.5-6.5.0/net/ceph/messenger.c --- linux-oracle-6.5-6.5.0/net/ceph/messenger.c +++ linux-oracle-6.5-6.5.0/net/ceph/messenger.c @@ -459,8 +459,8 @@ set_sock_callbacks(sock, con); con_sock_state_connecting(con); - ret = sock->ops->connect(sock, (struct sockaddr *)&ss, sizeof(ss), - O_NONBLOCK); + ret = kernel_connect(sock, (struct sockaddr *)&ss, sizeof(ss), + O_NONBLOCK); if (ret == -EINPROGRESS) { dout("connect %s EINPROGRESS sk_state = %u\n", ceph_pr_addr(&con->peer_addr), diff -u linux-oracle-6.5-6.5.0/net/core/scm.c linux-oracle-6.5-6.5.0/net/core/scm.c --- linux-oracle-6.5-6.5.0/net/core/scm.c +++ linux-oracle-6.5-6.5.0/net/core/scm.c @@ -26,6 +26,7 @@ #include #include #include +#include #include @@ -103,6 +104,11 @@ if (fd < 0 || !(file = fget_raw(fd))) return -EBADF; + /* don't allow io_uring files */ + if (io_uring_get_socket(file)) { + fput(file); + return -EINVAL; + } *fpp++ = file; fpl->count++; } diff -u linux-oracle-6.5-6.5.0/net/core/skbuff.c linux-oracle-6.5-6.5.0/net/core/skbuff.c --- linux-oracle-6.5-6.5.0/net/core/skbuff.c +++ linux-oracle-6.5-6.5.0/net/core/skbuff.c @@ -5149,7 +5149,7 @@ serr->ee.ee_info = tstype; serr->opt_stats = opt_stats; serr->header.h4.iif = skb->dev ? skb->dev->ifindex : 0; - if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) { + if (READ_ONCE(sk->sk_tsflags) & SOF_TIMESTAMPING_OPT_ID) { serr->ee.ee_data = skb_shinfo(skb)->tskey; if (sk_is_tcp(sk)) serr->ee.ee_data -= atomic_read(&sk->sk_tskey); @@ -5205,21 +5205,23 @@ { struct sk_buff *skb; bool tsonly, opt_stats = false; + u32 tsflags; if (!sk) return; - if (!hwtstamps && !(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TX_SWHW) && + tsflags = READ_ONCE(sk->sk_tsflags); + if (!hwtstamps && !(tsflags & SOF_TIMESTAMPING_OPT_TX_SWHW) && skb_shinfo(orig_skb)->tx_flags & SKBTX_IN_PROGRESS) return; - tsonly = sk->sk_tsflags & SOF_TIMESTAMPING_OPT_TSONLY; + tsonly = tsflags & SOF_TIMESTAMPING_OPT_TSONLY; if (!skb_may_tx_timestamp(sk, tsonly)) return; if (tsonly) { #ifdef CONFIG_INET - if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_STATS) && + if ((tsflags & SOF_TIMESTAMPING_OPT_STATS) && sk_is_tcp(sk)) { skb = tcp_get_timestamping_opt_stats(sk, orig_skb, ack_skb); diff -u linux-oracle-6.5-6.5.0/net/core/skmsg.c linux-oracle-6.5-6.5.0/net/core/skmsg.c --- linux-oracle-6.5-6.5.0/net/core/skmsg.c +++ linux-oracle-6.5-6.5.0/net/core/skmsg.c @@ -612,12 +612,18 @@ static int sk_psock_handle_skb(struct sk_psock *psock, struct sk_buff *skb, u32 off, u32 len, bool ingress) { + int err = 0; + if (!ingress) { if (!sock_writeable(psock->sk)) return -EAGAIN; return skb_send_sock(psock->sk, skb, off, len); } - return sk_psock_skb_ingress(psock, skb, off, len); + skb_get(skb); + err = sk_psock_skb_ingress(psock, skb, off, len); + if (err < 0) + kfree_skb(skb); + return err; } static void sk_psock_skb_state(struct sk_psock *psock, @@ -685,9 +691,7 @@ } while (len); skb = skb_dequeue(&psock->ingress_skb); - if (!ingress) { - kfree_skb(skb); - } + kfree_skb(skb); } end: mutex_unlock(&psock->work_mutex); diff -u linux-oracle-6.5-6.5.0/net/core/sock.c linux-oracle-6.5-6.5.0/net/core/sock.c --- linux-oracle-6.5-6.5.0/net/core/sock.c +++ linux-oracle-6.5-6.5.0/net/core/sock.c @@ -765,7 +765,8 @@ return false; if (!sk) return true; - switch (sk->sk_family) { + /* IPV6_ADDRFORM can change sk->sk_family under us. */ + switch (READ_ONCE(sk->sk_family)) { case AF_INET: return inet_sk(sk)->mc_loop; #if IS_ENABLED(CONFIG_IPV6) @@ -893,7 +894,7 @@ if (!match) return -EINVAL; - sk->sk_bind_phc = phc_index; + WRITE_ONCE(sk->sk_bind_phc, phc_index); return 0; } @@ -936,7 +937,7 @@ return ret; } - sk->sk_tsflags = val; + WRITE_ONCE(sk->sk_tsflags, val); sock_valbool_flag(sk, SOCK_TSTAMP_NEW, optname == SO_TIMESTAMPING_NEW); if (val & SOF_TIMESTAMPING_RX_SOFTWARE) @@ -1044,7 +1045,7 @@ mem_cgroup_uncharge_skmem(sk->sk_memcg, pages); return -ENOMEM; } - sk->sk_forward_alloc += pages << PAGE_SHIFT; + sk_forward_alloc_add(sk, pages << PAGE_SHIFT); WRITE_ONCE(sk->sk_reserved_mem, sk->sk_reserved_mem + (pages << PAGE_SHIFT)); @@ -1727,8 +1728,8 @@ case SO_TIMESTAMPING_OLD: lv = sizeof(v.timestamping); - v.timestamping.flags = sk->sk_tsflags; - v.timestamping.bind_phc = sk->sk_bind_phc; + v.timestamping.flags = READ_ONCE(sk->sk_tsflags); + v.timestamping.bind_phc = READ_ONCE(sk->sk_bind_phc); break; case SO_RCVTIMEO_OLD: @@ -1833,14 +1834,14 @@ case SO_PEERNAME: { - char address[128]; + struct sockaddr_storage address; - lv = READ_ONCE(sock->ops)->getname(sock, (struct sockaddr *)address, 2); + lv = READ_ONCE(sock->ops)->getname(sock, (struct sockaddr *)&address, 2); if (lv < 0) return -ENOTCONN; if (lv < len) return -EINVAL; - if (copy_to_sockptr(optval, address, len)) + if (copy_to_sockptr(optval, &address, len)) return -EFAULT; goto lenout; } @@ -2755,9 +2756,9 @@ prepare_to_wait(sk_sleep(sk), &wait, TASK_INTERRUPTIBLE); if (refcount_read(&sk->sk_wmem_alloc) < READ_ONCE(sk->sk_sndbuf)) break; - if (sk->sk_shutdown & SEND_SHUTDOWN) + if (READ_ONCE(sk->sk_shutdown) & SEND_SHUTDOWN) break; - if (sk->sk_err) + if (READ_ONCE(sk->sk_err)) break; timeo = schedule_timeout(timeo); } @@ -2785,7 +2786,7 @@ goto failure; err = -EPIPE; - if (sk->sk_shutdown & SEND_SHUTDOWN) + if (READ_ONCE(sk->sk_shutdown) & SEND_SHUTDOWN) goto failure; if (sk_wmem_alloc_get(sk) < READ_ONCE(sk->sk_sndbuf)) @@ -3147,10 +3148,10 @@ { int ret, amt = sk_mem_pages(size); - sk->sk_forward_alloc += amt << PAGE_SHIFT; + sk_forward_alloc_add(sk, amt << PAGE_SHIFT); ret = __sk_mem_raise_allocated(sk, size, amt, kind); if (!ret) - sk->sk_forward_alloc -= amt << PAGE_SHIFT; + sk_forward_alloc_add(sk, -(amt << PAGE_SHIFT)); return ret; } EXPORT_SYMBOL(__sk_mem_schedule); @@ -3182,7 +3183,7 @@ void __sk_mem_reclaim(struct sock *sk, int amount) { amount >>= PAGE_SHIFT; - sk->sk_forward_alloc -= amount << PAGE_SHIFT; + sk_forward_alloc_add(sk, -(amount << PAGE_SHIFT)); __sk_mem_reduce_allocated(sk, amount); } EXPORT_SYMBOL(__sk_mem_reclaim); @@ -3751,7 +3752,7 @@ mem[SK_MEMINFO_RCVBUF] = READ_ONCE(sk->sk_rcvbuf); mem[SK_MEMINFO_WMEM_ALLOC] = sk_wmem_alloc_get(sk); mem[SK_MEMINFO_SNDBUF] = READ_ONCE(sk->sk_sndbuf); - mem[SK_MEMINFO_FWD_ALLOC] = sk->sk_forward_alloc; + mem[SK_MEMINFO_FWD_ALLOC] = sk_forward_alloc_get(sk); mem[SK_MEMINFO_WMEM_QUEUED] = READ_ONCE(sk->sk_wmem_queued); mem[SK_MEMINFO_OPTMEM] = atomic_read(&sk->sk_omem_alloc); mem[SK_MEMINFO_BACKLOG] = READ_ONCE(sk->sk_backlog.len); diff -u linux-oracle-6.5-6.5.0/net/dccp/ipv4.c linux-oracle-6.5-6.5.0/net/dccp/ipv4.c --- linux-oracle-6.5-6.5.0/net/dccp/ipv4.c +++ linux-oracle-6.5-6.5.0/net/dccp/ipv4.c @@ -255,13 +255,8 @@ int err; struct net *net = dev_net(skb->dev); - /* For the first __dccp_basic_hdr_len() check, we only need dh->dccph_x, - * which is in byte 7 of the dccp header. - * Our caller (icmp_socket_deliver()) already pulled 8 bytes for us. - * - * Later on, we want to access the sequence number fields, which are - * beyond 8 bytes, so we have to pskb_may_pull() ourselves. - */ + if (!pskb_may_pull(skb, offset + sizeof(*dh))) + return -EINVAL; dh = (struct dccp_hdr *)(skb->data + offset); if (!pskb_may_pull(skb, offset + __dccp_basic_hdr_len(dh))) return -EINVAL; diff -u linux-oracle-6.5-6.5.0/net/dccp/ipv6.c linux-oracle-6.5-6.5.0/net/dccp/ipv6.c --- linux-oracle-6.5-6.5.0/net/dccp/ipv6.c +++ linux-oracle-6.5-6.5.0/net/dccp/ipv6.c @@ -83,13 +83,8 @@ __u64 seq; struct net *net = dev_net(skb->dev); - /* For the first __dccp_basic_hdr_len() check, we only need dh->dccph_x, - * which is in byte 7 of the dccp header. - * Our caller (icmpv6_notify()) already pulled 8 bytes for us. - * - * Later on, we want to access the sequence number fields, which are - * beyond 8 bytes, so we have to pskb_may_pull() ourselves. - */ + if (!pskb_may_pull(skb, offset + sizeof(*dh))) + return -EINVAL; dh = (struct dccp_hdr *)(skb->data + offset); if (!pskb_may_pull(skb, offset + __dccp_basic_hdr_len(dh))) return -EINVAL; diff -u linux-oracle-6.5-6.5.0/net/ipv4/igmp.c linux-oracle-6.5-6.5.0/net/ipv4/igmp.c --- linux-oracle-6.5-6.5.0/net/ipv4/igmp.c +++ linux-oracle-6.5-6.5.0/net/ipv4/igmp.c @@ -216,8 +216,10 @@ int tv = get_random_u32_below(max_delay); im->tm_running = 1; - if (!mod_timer(&im->timer, jiffies+tv+2)) - refcount_inc(&im->refcnt); + if (refcount_inc_not_zero(&im->refcnt)) { + if (mod_timer(&im->timer, jiffies + tv + 2)) + ip_ma_put(im); + } } static void igmp_gq_start_timer(struct in_device *in_dev) diff -u linux-oracle-6.5-6.5.0/net/ipv4/ip_output.c linux-oracle-6.5-6.5.0/net/ipv4/ip_output.c --- linux-oracle-6.5-6.5.0/net/ipv4/ip_output.c +++ linux-oracle-6.5-6.5.0/net/ipv4/ip_output.c @@ -236,7 +236,7 @@ net_dbg_ratelimited("%s: No header cache and no neighbour!\n", __func__); kfree_skb_reason(skb, SKB_DROP_REASON_NEIGH_CREATEFAIL); - return -EINVAL; + return PTR_ERR(neigh); } static int ip_finish_output_gso(struct net *net, struct sock *sk, @@ -982,7 +982,7 @@ paged = !!cork->gso_size; if (cork->tx_flags & SKBTX_ANY_TSTAMP && - sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) + READ_ONCE(sk->sk_tsflags) & SOF_TIMESTAMPING_OPT_ID) tskey = atomic_inc_return(&sk->sk_tskey) - 1; hh_len = LL_RESERVED_SPACE(rt->dst.dev); diff -u linux-oracle-6.5-6.5.0/net/ipv4/ip_sockglue.c linux-oracle-6.5-6.5.0/net/ipv4/ip_sockglue.c --- linux-oracle-6.5-6.5.0/net/ipv4/ip_sockglue.c +++ linux-oracle-6.5-6.5.0/net/ipv4/ip_sockglue.c @@ -512,7 +512,7 @@ * or without payload (SOF_TIMESTAMPING_OPT_TSONLY). */ info = PKTINFO_SKB_CB(skb); - if (!(sk->sk_tsflags & SOF_TIMESTAMPING_OPT_CMSG) || + if (!(READ_ONCE(sk->sk_tsflags) & SOF_TIMESTAMPING_OPT_CMSG) || !info->ipi_ifindex) return false; diff -u linux-oracle-6.5-6.5.0/net/ipv4/route.c linux-oracle-6.5-6.5.0/net/ipv4/route.c --- linux-oracle-6.5-6.5.0/net/ipv4/route.c +++ linux-oracle-6.5-6.5.0/net/ipv4/route.c @@ -2146,6 +2146,7 @@ int h = fib_multipath_hash(res->fi->fib_net, NULL, skb, hkeys); fib_select_multipath(res, h); + IPCB(skb)->flags |= IPSKB_MULTIPATH; } #endif @@ -3416,6 +3417,8 @@ fa->fa_type == fri.type) { fri.offload = READ_ONCE(fa->offload); fri.trap = READ_ONCE(fa->trap); + fri.offload_failed = + READ_ONCE(fa->offload_failed); break; } } diff -u linux-oracle-6.5-6.5.0/net/ipv4/tcp_input.c linux-oracle-6.5-6.5.0/net/ipv4/tcp_input.c --- linux-oracle-6.5-6.5.0/net/ipv4/tcp_input.c +++ linux-oracle-6.5-6.5.0/net/ipv4/tcp_input.c @@ -243,6 +243,19 @@ if (unlikely(len > icsk->icsk_ack.rcv_mss + MAX_TCP_OPTION_SPACE)) tcp_gro_dev_warn(sk, skb, len); + /* If the skb has a len of exactly 1*MSS and has the PSH bit + * set then it is likely the end of an application write. So + * more data may not be arriving soon, and yet the data sender + * may be waiting for an ACK if cwnd-bound or using TX zero + * copy. So we set ICSK_ACK_PUSHED here so that + * tcp_cleanup_rbuf() will send an ACK immediately if the app + * reads all of the data and is not ping-pong. If len > MSS + * then this logic does not matter (and does not hurt) because + * tcp_cleanup_rbuf() will always ACK immediately if the app + * reads data and there is more than an MSS of unACKed data. + */ + if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_PSH) + icsk->icsk_ack.pending |= ICSK_ACK_PUSHED; } else { /* Otherwise, we make more careful check taking into account, * that SACKs block is variable. diff -u linux-oracle-6.5-6.5.0/net/ipv4/udp.c linux-oracle-6.5-6.5.0/net/ipv4/udp.c --- linux-oracle-6.5-6.5.0/net/ipv4/udp.c +++ linux-oracle-6.5-6.5.0/net/ipv4/udp.c @@ -1443,9 +1443,9 @@ spin_lock(&sk_queue->lock); - sk->sk_forward_alloc += size; + sk_forward_alloc_add(sk, size); amt = (sk->sk_forward_alloc - partial) & ~(PAGE_SIZE - 1); - sk->sk_forward_alloc -= amt; + sk_forward_alloc_add(sk, -amt); if (amt) __sk_mem_reduce_allocated(sk, amt >> PAGE_SHIFT); @@ -1556,7 +1556,7 @@ goto uncharge_drop; } - sk->sk_forward_alloc -= size; + sk_forward_alloc_add(sk, -size); /* no need to setup a destructor, we will explicitly release the * forward allocated memory on dequeue diff -u linux-oracle-6.5-6.5.0/net/ipv6/ip6_output.c linux-oracle-6.5-6.5.0/net/ipv6/ip6_output.c --- linux-oracle-6.5-6.5.0/net/ipv6/ip6_output.c +++ linux-oracle-6.5-6.5.0/net/ipv6/ip6_output.c @@ -1505,7 +1505,7 @@ orig_mtu = mtu; if (cork->tx_flags & SKBTX_ANY_TSTAMP && - sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) + READ_ONCE(sk->sk_tsflags) & SOF_TIMESTAMPING_OPT_ID) tskey = atomic_inc_return(&sk->sk_tskey) - 1; hh_len = LL_RESERVED_SPACE(rt->dst.dev); diff -u linux-oracle-6.5-6.5.0/net/ipv6/ping.c linux-oracle-6.5-6.5.0/net/ipv6/ping.c --- linux-oracle-6.5-6.5.0/net/ipv6/ping.c +++ linux-oracle-6.5-6.5.0/net/ipv6/ping.c @@ -119,7 +119,7 @@ return -EINVAL; ipcm6_init_sk(&ipc6, np); - ipc6.sockc.tsflags = sk->sk_tsflags; + ipc6.sockc.tsflags = READ_ONCE(sk->sk_tsflags); ipc6.sockc.mark = READ_ONCE(sk->sk_mark); fl6.flowi6_oif = oif; diff -u linux-oracle-6.5-6.5.0/net/ipv6/raw.c linux-oracle-6.5-6.5.0/net/ipv6/raw.c --- linux-oracle-6.5-6.5.0/net/ipv6/raw.c +++ linux-oracle-6.5-6.5.0/net/ipv6/raw.c @@ -778,7 +778,7 @@ fl6.flowi6_uid = sk->sk_uid; ipcm6_init(&ipc6); - ipc6.sockc.tsflags = sk->sk_tsflags; + ipc6.sockc.tsflags = READ_ONCE(sk->sk_tsflags); ipc6.sockc.mark = fl6.flowi6_mark; if (sin6) { diff -u linux-oracle-6.5-6.5.0/net/ipv6/tcp_ipv6.c linux-oracle-6.5-6.5.0/net/ipv6/tcp_ipv6.c --- linux-oracle-6.5-6.5.0/net/ipv6/tcp_ipv6.c +++ linux-oracle-6.5-6.5.0/net/ipv6/tcp_ipv6.c @@ -1640,9 +1640,12 @@ struct sock *nsk; sk = req->rsk_listener; - drop_reason = tcp_inbound_md5_hash(sk, skb, - &hdr->saddr, &hdr->daddr, - AF_INET6, dif, sdif); + if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) + drop_reason = SKB_DROP_REASON_XFRM_POLICY; + else + drop_reason = tcp_inbound_md5_hash(sk, skb, + &hdr->saddr, &hdr->daddr, + AF_INET6, dif, sdif); if (drop_reason) { sk_drops_add(sk, skb); reqsk_put(req); @@ -1689,6 +1692,7 @@ } goto discard_and_relse; } + nf_reset_ct(skb); if (nsk == sk) { reqsk_put(req); tcp_v6_restore_cb(skb); diff -u linux-oracle-6.5-6.5.0/net/ipv6/udp.c linux-oracle-6.5-6.5.0/net/ipv6/udp.c --- linux-oracle-6.5-6.5.0/net/ipv6/udp.c +++ linux-oracle-6.5-6.5.0/net/ipv6/udp.c @@ -1368,7 +1368,7 @@ ipcm6_init(&ipc6); ipc6.gso_size = READ_ONCE(up->gso_size); - ipc6.sockc.tsflags = sk->sk_tsflags; + ipc6.sockc.tsflags = READ_ONCE(sk->sk_tsflags); ipc6.sockc.mark = READ_ONCE(sk->sk_mark); /* destination address check */ diff -u linux-oracle-6.5-6.5.0/net/l2tp/l2tp_ip6.c linux-oracle-6.5-6.5.0/net/l2tp/l2tp_ip6.c --- linux-oracle-6.5-6.5.0/net/l2tp/l2tp_ip6.c +++ linux-oracle-6.5-6.5.0/net/l2tp/l2tp_ip6.c @@ -507,7 +507,6 @@ */ if (len > INT_MAX - transhdrlen) return -EMSGSIZE; - ulen = len + transhdrlen; /* Mirror BSD error message compatibility */ if (msg->msg_flags & MSG_OOB) @@ -628,6 +627,7 @@ back_from_confirm: lock_sock(sk); + ulen = len + skb_queue_empty(&sk->sk_write_queue) ? transhdrlen : 0; err = ip6_append_data(sk, ip_generic_getfrag, msg, ulen, transhdrlen, &ipc6, &fl6, (struct rt6_info *)dst, diff -u linux-oracle-6.5-6.5.0/net/mac80211/cfg.c linux-oracle-6.5-6.5.0/net/mac80211/cfg.c --- linux-oracle-6.5-6.5.0/net/mac80211/cfg.c +++ linux-oracle-6.5-6.5.0/net/mac80211/cfg.c @@ -566,6 +566,9 @@ } err = ieee80211_key_link(key, link, sta); + /* KRACK protection, shouldn't happen but just silently accept key */ + if (err == -EALREADY) + err = 0; out_unlock: mutex_unlock(&local->sta_mtx); @@ -4133,19 +4136,20 @@ mutex_lock(&local->mtx); rcu_read_lock(); + sta = sta_info_get_bss(sdata, peer); + if (!sta) { + ret = -ENOLINK; + goto unlock; + } + + qos = sta->sta.wme; + chanctx_conf = rcu_dereference(sdata->vif.bss_conf.chanctx_conf); if (WARN_ON(!chanctx_conf)) { ret = -EINVAL; goto unlock; } band = chanctx_conf->def.chan->band; - sta = sta_info_get_bss(sdata, peer); - if (sta) { - qos = sta->sta.wme; - } else { - ret = -ENOLINK; - goto unlock; - } if (qos) { fc = cpu_to_le16(IEEE80211_FTYPE_DATA | diff -u linux-oracle-6.5-6.5.0/net/mptcp/protocol.c linux-oracle-6.5-6.5.0/net/mptcp/protocol.c --- linux-oracle-6.5-6.5.0/net/mptcp/protocol.c +++ linux-oracle-6.5-6.5.0/net/mptcp/protocol.c @@ -136,9 +136,15 @@ __kfree_skb(skb); } +static void mptcp_rmem_fwd_alloc_add(struct sock *sk, int size) +{ + WRITE_ONCE(mptcp_sk(sk)->rmem_fwd_alloc, + mptcp_sk(sk)->rmem_fwd_alloc + size); +} + static void mptcp_rmem_charge(struct sock *sk, int size) { - mptcp_sk(sk)->rmem_fwd_alloc -= size; + mptcp_rmem_fwd_alloc_add(sk, -size); } static bool mptcp_try_coalesce(struct sock *sk, struct sk_buff *to, @@ -179,7 +185,7 @@ static void __mptcp_rmem_reclaim(struct sock *sk, int amount) { amount >>= PAGE_SHIFT; - mptcp_sk(sk)->rmem_fwd_alloc -= amount << PAGE_SHIFT; + mptcp_rmem_charge(sk, amount << PAGE_SHIFT); __sk_mem_reduce_allocated(sk, amount); } @@ -188,7 +194,7 @@ struct mptcp_sock *msk = mptcp_sk(sk); int reclaimable; - msk->rmem_fwd_alloc += size; + mptcp_rmem_fwd_alloc_add(sk, size); reclaimable = msk->rmem_fwd_alloc - sk_unused_reserved_mem(sk); /* see sk_mem_uncharge() for the rationale behind the following schema */ @@ -343,7 +349,7 @@ if (!__sk_mem_raise_allocated(sk, size, amt, SK_MEM_RECV)) return false; - msk->rmem_fwd_alloc += amount; + mptcp_rmem_fwd_alloc_add(sk, amount); return true; } @@ -401,7 +407,7 @@ return false; } -static void mptcp_stop_timer(struct sock *sk) +static void mptcp_stop_rtx_timer(struct sock *sk) { struct inet_connection_sock *icsk = inet_csk(sk); @@ -766,6 +772,46 @@ return moved; } +static bool __mptcp_subflow_error_report(struct sock *sk, struct sock *ssk) +{ + int err = sock_error(ssk); + int ssk_state; + + if (!err) + return false; + + /* only propagate errors on fallen-back sockets or + * on MPC connect + */ + if (sk->sk_state != TCP_SYN_SENT && !__mptcp_check_fallback(mptcp_sk(sk))) + return false; + + /* We need to propagate only transition to CLOSE state. + * Orphaned socket will see such state change via + * subflow_sched_work_if_closed() and that path will properly + * destroy the msk as needed. + */ + ssk_state = inet_sk_state_load(ssk); + if (ssk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DEAD)) + inet_sk_state_store(sk, ssk_state); + WRITE_ONCE(sk->sk_err, -err); + + /* This barrier is coupled with smp_rmb() in mptcp_poll() */ + smp_wmb(); + sk_error_report(sk); + return true; +} + +void __mptcp_error_report(struct sock *sk) +{ + struct mptcp_subflow_context *subflow; + struct mptcp_sock *msk = mptcp_sk(sk); + + mptcp_for_each_subflow(msk, subflow) + if (__mptcp_subflow_error_report(sk, mptcp_subflow_tcp_sock(subflow))) + break; +} + /* In most cases we will be able to lock the mptcp socket. If its already * owned, we need to defer to the work queue to avoid ABBA deadlock. */ @@ -848,6 +894,7 @@ mptcp_subflow_ctx(ssk)->subflow_id = msk->subflow_id++; mptcp_sockopt_sync_locked(msk, ssk); mptcp_subflow_joined(msk, ssk); + mptcp_stop_tout_timer(sk); return true; } @@ -867,12 +914,12 @@ } } -static bool mptcp_timer_pending(struct sock *sk) +static bool mptcp_rtx_timer_pending(struct sock *sk) { return timer_pending(&inet_csk(sk)->icsk_retransmit_timer); } -static void mptcp_reset_timer(struct sock *sk) +static void mptcp_reset_rtx_timer(struct sock *sk) { struct inet_connection_sock *icsk = inet_csk(sk); unsigned long tout; @@ -1006,10 +1053,10 @@ out: if (snd_una == READ_ONCE(msk->snd_nxt) && snd_una == READ_ONCE(msk->write_seq)) { - if (mptcp_timer_pending(sk) && !mptcp_data_fin_enabled(msk)) - mptcp_stop_timer(sk); + if (mptcp_rtx_timer_pending(sk) && !mptcp_data_fin_enabled(msk)) + mptcp_stop_rtx_timer(sk); } else { - mptcp_reset_timer(sk); + mptcp_reset_rtx_timer(sk); } } @@ -1560,8 +1607,8 @@ out: /* ensure the rtx timer is running */ - if (!mptcp_timer_pending(sk)) - mptcp_reset_timer(sk); + if (!mptcp_rtx_timer_pending(sk)) + mptcp_reset_rtx_timer(sk); if (do_check_data_fin) mptcp_check_send_data_fin(sk); } @@ -1617,8 +1664,8 @@ if (copied) { tcp_push(ssk, 0, info.mss_now, tcp_sk(ssk)->nonagle, info.size_goal); - if (!mptcp_timer_pending(sk)) - mptcp_reset_timer(sk); + if (!mptcp_rtx_timer_pending(sk)) + mptcp_reset_rtx_timer(sk); if (msk->snd_data_fin_enable && msk->snd_nxt + 1 == msk->write_seq) @@ -1773,7 +1820,7 @@ } /* data successfully copied into the write queue */ - sk->sk_forward_alloc -= total_ts; + sk_forward_alloc_add(sk, -total_ts); copied += psize; dfrag->data_len += psize; frag_truesize += psize; @@ -2189,7 +2236,7 @@ sock_put(sk); } -static void mptcp_timeout_timer(struct timer_list *t) +static void mptcp_tout_timer(struct timer_list *t) { struct sock *sk = from_timer(sk, t, sk_timer); @@ -2311,18 +2358,14 @@ bool dispose_it, need_push = false; /* If the first subflow moved to a close state before accept, e.g. due - * to an incoming reset, mptcp either: - * - if either the subflow or the msk are dead, destroy the context - * (the subflow socket is deleted by inet_child_forget) and the msk - * - otherwise do nothing at the moment and take action at accept and/or - * listener shutdown - user-space must be able to accept() the closed - * socket. + * to an incoming reset or listener shutdown, the subflow socket is + * already deleted by inet_child_forget() and the mptcp socket can't + * survive too. */ - if (msk->in_accept_queue && msk->first == ssk) { - if (!sock_flag(sk, SOCK_DEAD) && !sock_flag(ssk, SOCK_DEAD)) - return; - + if (msk->in_accept_queue && msk->first == ssk && + (sock_flag(sk, SOCK_DEAD) || sock_flag(ssk, SOCK_DEAD))) { /* ensure later check in mptcp_worker() will dispose the msk */ + mptcp_set_close_tout(sk, tcp_jiffies32 - (TCP_TIMEWAIT_LEN + 1)); sock_set_flag(sk, SOCK_DEAD); lock_sock_nested(ssk, SINGLE_DEPTH_NESTING); mptcp_subflow_drop_ctx(ssk); @@ -2375,6 +2418,7 @@ } out_release: + __mptcp_subflow_error_report(sk, ssk); release_sock(ssk); sock_put(ssk); @@ -2388,6 +2432,22 @@ if (need_push) __mptcp_push_pending(sk, 0); + + /* Catch every 'all subflows closed' scenario, including peers silently + * closing them, e.g. due to timeout. + * For established sockets, allow an additional timeout before closing, + * as the protocol can still create more subflows. + */ + if (list_is_singular(&msk->conn_list) && msk->first && + inet_sk_state_load(msk->first) == TCP_CLOSE) { + if (sk->sk_state != TCP_ESTABLISHED || + msk->in_accept_queue || sock_flag(sk, SOCK_DEAD)) { + inet_sk_state_store(sk, TCP_CLOSE); + mptcp_close_wake_up(sk); + } else { + mptcp_start_tout_timer(sk); + } + } } void mptcp_close_ssk(struct sock *sk, struct sock *ssk, @@ -2431,23 +2491,14 @@ } -static bool mptcp_should_close(const struct sock *sk) +static bool mptcp_close_tout_expired(const struct sock *sk) { - s32 delta = tcp_jiffies32 - inet_csk(sk)->icsk_mtup.probe_timestamp; - struct mptcp_subflow_context *subflow; - - if (delta >= TCP_TIMEWAIT_LEN || mptcp_sk(sk)->in_accept_queue) - return true; + if (!inet_csk(sk)->icsk_mtup.probe_timestamp || + sk->sk_state == TCP_CLOSE) + return false; - /* if all subflows are in closed status don't bother with additional - * timeout - */ - mptcp_for_each_subflow(mptcp_sk(sk), subflow) { - if (inet_sk_state_load(mptcp_subflow_tcp_sock(subflow)) != - TCP_CLOSE) - return false; - } - return true; + return time_after32(tcp_jiffies32, + inet_csk(sk)->icsk_mtup.probe_timestamp + TCP_TIMEWAIT_LEN); } static void mptcp_check_fastclose(struct mptcp_sock *msk) @@ -2560,27 +2611,28 @@ reset_timer: mptcp_check_and_set_pending(sk); - if (!mptcp_timer_pending(sk)) - mptcp_reset_timer(sk); + if (!mptcp_rtx_timer_pending(sk)) + mptcp_reset_rtx_timer(sk); } /* schedule the timeout timer for the relevant event: either close timeout * or mp_fail timeout. The close timeout takes precedence on the mp_fail one */ -void mptcp_reset_timeout(struct mptcp_sock *msk, unsigned long fail_tout) +void mptcp_reset_tout_timer(struct mptcp_sock *msk, unsigned long fail_tout) { struct sock *sk = (struct sock *)msk; unsigned long timeout, close_timeout; - if (!fail_tout && !sock_flag(sk, SOCK_DEAD)) + if (!fail_tout && !inet_csk(sk)->icsk_mtup.probe_timestamp) return; - close_timeout = inet_csk(sk)->icsk_mtup.probe_timestamp - tcp_jiffies32 + jiffies + TCP_TIMEWAIT_LEN; + close_timeout = inet_csk(sk)->icsk_mtup.probe_timestamp - tcp_jiffies32 + jiffies + + TCP_TIMEWAIT_LEN; /* the close timeout takes precedence on the fail one, and here at least one of * them is active */ - timeout = sock_flag(sk, SOCK_DEAD) ? close_timeout : fail_tout; + timeout = inet_csk(sk)->icsk_mtup.probe_timestamp ? close_timeout : fail_tout; sk_reset_timer(sk, &sk->sk_timer, timeout); } @@ -2599,8 +2651,6 @@ mptcp_subflow_reset(ssk); WRITE_ONCE(mptcp_subflow_ctx(ssk)->fail_tout, 0); unlock_sock_fast(ssk, slow); - - mptcp_reset_timeout(msk, 0); } static void mptcp_do_fastclose(struct sock *sk) @@ -2637,18 +2687,14 @@ if (test_and_clear_bit(MPTCP_WORK_CLOSE_SUBFLOW, &msk->flags)) __mptcp_close_subflow(sk); - /* There is no point in keeping around an orphaned sk timedout or - * closed, but we need the msk around to reply to incoming DATA_FIN, - * even if it is orphaned and in FIN_WAIT2 state - */ - if (sock_flag(sk, SOCK_DEAD)) { - if (mptcp_should_close(sk)) - mptcp_do_fastclose(sk); - - if (sk->sk_state == TCP_CLOSE) { - __mptcp_destroy_sock(sk); - goto unlock; - } + if (mptcp_close_tout_expired(sk)) { + mptcp_do_fastclose(sk); + mptcp_close_wake_up(sk); + } + + if (sock_flag(sk, SOCK_DEAD) && sk->sk_state == TCP_CLOSE) { + __mptcp_destroy_sock(sk); + goto unlock; } if (test_and_clear_bit(MPTCP_WORK_RTX, &msk->flags)) @@ -2663,7 +2709,7 @@ sock_put(sk); } -static int __mptcp_init_sock(struct sock *sk) +static void __mptcp_init_sock(struct sock *sk) { struct mptcp_sock *msk = mptcp_sk(sk); @@ -2689,9 +2735,7 @@ /* re-use the csk retrans timer for MPTCP-level retrans */ timer_setup(&msk->sk.icsk_retransmit_timer, mptcp_retransmit_timer, 0); - timer_setup(&sk->sk_timer, mptcp_timeout_timer, 0); - - return 0; + timer_setup(&sk->sk_timer, mptcp_tout_timer, 0); } static void mptcp_ca_reset(struct sock *sk) @@ -2709,11 +2753,8 @@ static int mptcp_init_sock(struct sock *sk) { struct net *net = sock_net(sk); - int ret; - ret = __mptcp_init_sock(sk); - if (ret) - return ret; + __mptcp_init_sock(sk); if (!mptcp_is_enabled(net)) return -ENOPROTOOPT; @@ -2779,8 +2820,8 @@ } else { pr_debug("Sending DATA_FIN on subflow %p", ssk); tcp_send_ack(ssk); - if (!mptcp_timer_pending(sk)) - mptcp_reset_timer(sk); + if (!mptcp_rtx_timer_pending(sk)) + mptcp_reset_rtx_timer(sk); } break; } @@ -2863,7 +2904,7 @@ might_sleep(); - mptcp_stop_timer(sk); + mptcp_stop_rtx_timer(sk); sk_stop_timer(sk, &sk->sk_timer); msk->pm.status = 0; @@ -2945,7 +2986,6 @@ cleanup: /* orphan all the subflows */ - inet_csk(sk)->icsk_mtup.probe_timestamp = tcp_jiffies32; mptcp_for_each_subflow(msk, subflow) { struct sock *ssk = mptcp_subflow_tcp_sock(subflow); bool slow = lock_sock_fast_nested(ssk); @@ -2982,7 +3022,7 @@ __mptcp_destroy_sock(sk); do_cancel_work = true; } else { - mptcp_reset_timeout(msk, 0); + mptcp_start_tout_timer(sk); } return do_cancel_work; @@ -3045,8 +3085,8 @@ mptcp_check_listen_stop(sk); inet_sk_state_store(sk, TCP_CLOSE); - mptcp_stop_timer(sk); - sk_stop_timer(sk, &sk->sk_timer); + mptcp_stop_rtx_timer(sk); + mptcp_stop_tout_timer(sk); if (msk->token) mptcp_event(MPTCP_EVENT_CLOSED, msk, NULL, GFP_KERNEL); @@ -3242,8 +3282,8 @@ /* move all the rx fwd alloc into the sk_mem_reclaim_final in * inet_sock_destruct() will dispose it */ - sk->sk_forward_alloc += msk->rmem_fwd_alloc; - msk->rmem_fwd_alloc = 0; + sk_forward_alloc_add(sk, msk->rmem_fwd_alloc); + WRITE_ONCE(msk->rmem_fwd_alloc, 0); mptcp_token_destroy(msk); mptcp_pm_free_anno_list(msk); mptcp_free_local_addr_list(msk); @@ -3369,24 +3409,21 @@ sk_reset_timer(ssk, &icsk->icsk_delack_timer, timeout); } -void mptcp_subflow_process_delegated(struct sock *ssk) +void mptcp_subflow_process_delegated(struct sock *ssk, long status) { struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); struct sock *sk = subflow->conn; - if (test_bit(MPTCP_DELEGATE_SEND, &subflow->delegated_status)) { + if (status & BIT(MPTCP_DELEGATE_SEND)) { mptcp_data_lock(sk); if (!sock_owned_by_user(sk)) __mptcp_subflow_push_pending(sk, ssk, true); else __set_bit(MPTCP_PUSH_PENDING, &mptcp_sk(sk)->cb_flags); mptcp_data_unlock(sk); - mptcp_subflow_delegated_done(subflow, MPTCP_DELEGATE_SEND); } - if (test_bit(MPTCP_DELEGATE_ACK, &subflow->delegated_status)) { + if (status & BIT(MPTCP_DELEGATE_ACK)) schedule_3rdack_retransmission(ssk); - mptcp_subflow_delegated_done(subflow, MPTCP_DELEGATE_ACK); - } } static int mptcp_hash(struct sock *sk) @@ -3513,7 +3550,8 @@ static int mptcp_forward_alloc_get(const struct sock *sk) { - return sk->sk_forward_alloc + mptcp_sk(sk)->rmem_fwd_alloc; + return READ_ONCE(sk->sk_forward_alloc) + + READ_ONCE(mptcp_sk(sk)->rmem_fwd_alloc); } static int mptcp_ioctl_outq(const struct mptcp_sock *msk, u64 v) @@ -3891,14 +3929,17 @@ struct sock *ssk = mptcp_subflow_tcp_sock(subflow); bh_lock_sock_nested(ssk); - if (!sock_owned_by_user(ssk) && - mptcp_subflow_has_delegated_action(subflow)) - mptcp_subflow_process_delegated(ssk); - /* ... elsewhere tcp_release_cb_override already processed - * the action or will do at next release_sock(). - * In both case must dequeue the subflow here - on the same - * CPU that scheduled it. - */ + if (!sock_owned_by_user(ssk)) { + mptcp_subflow_process_delegated(ssk, xchg(&subflow->delegated_status, 0)); + } else { + /* tcp_release_cb_override already processed + * the action or will do at next release_sock(). + * In both case must dequeue the subflow here - on the same + * CPU that scheduled it. + */ + smp_wmb(); + clear_bit(MPTCP_DELEGATE_SCHEDULED, &subflow->delegated_status); + } bh_unlock_sock(ssk); sock_put(ssk); diff -u linux-oracle-6.5-6.5.0/net/netfilter/nf_tables_api.c linux-oracle-6.5-6.5.0/net/netfilter/nf_tables_api.c --- linux-oracle-6.5-6.5.0/net/netfilter/nf_tables_api.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nf_tables_api.c @@ -102,6 +102,7 @@ [NFT_MSG_NEWFLOWTABLE] = AUDIT_NFT_OP_FLOWTABLE_REGISTER, [NFT_MSG_GETFLOWTABLE] = AUDIT_NFT_OP_INVALID, [NFT_MSG_DELFLOWTABLE] = AUDIT_NFT_OP_FLOWTABLE_UNREGISTER, + [NFT_MSG_GETSETELEM_RESET] = AUDIT_NFT_OP_SETELEM_RESET, }; static void nft_validate_state_update(struct nft_table *table, u8 new_validate_state) @@ -1218,6 +1219,10 @@ flags & NFT_TABLE_F_OWNER)) return -EOPNOTSUPP; + /* No dormant off/on/off/on games in single transaction */ + if (ctx->table->flags & __NFT_TABLE_F_UPDATE) + return -EINVAL; + trans = nft_trans_alloc(ctx, NFT_MSG_NEWTABLE, sizeof(struct nft_trans_table)); if (trans == NULL) @@ -1445,8 +1450,7 @@ if (!nft_is_active_next(ctx->net, set)) continue; - if (nft_set_is_anonymous(set) && - !list_empty(&set->bindings)) + if (nft_set_is_anonymous(set)) continue; err = nft_delset(ctx, set); @@ -3162,7 +3166,7 @@ if (err < 0) return err; - if (!tb[NFTA_EXPR_DATA]) + if (!tb[NFTA_EXPR_DATA] || !tb[NFTA_EXPR_NAME]) return -EINVAL; type = __nft_expr_type_get(ctx->family, tb[NFTA_EXPR_NAME]); @@ -3424,6 +3428,18 @@ nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES, -ENOBUFS); } +static void audit_log_rule_reset(const struct nft_table *table, + unsigned int base_seq, + unsigned int nentries) +{ + char *buf = kasprintf(GFP_ATOMIC, "%s:%u", + table->name, base_seq); + + audit_log_nfcfg(buf, table->family, nentries, + AUDIT_NFT_OP_RULE_RESET, GFP_ATOMIC); + kfree(buf); +} + struct nft_rule_dump_ctx { char *table; char *chain; @@ -3439,6 +3455,8 @@ struct net *net = sock_net(skb->sk); const struct nft_rule *rule, *prule; unsigned int s_idx = cb->args[0]; + unsigned int entries = 0; + int ret = 0; u64 handle; prule = NULL; @@ -3461,16 +3479,22 @@ NFT_MSG_NEWRULE, NLM_F_MULTI | NLM_F_APPEND, table->family, - table, chain, rule, handle, reset) < 0) - return 1; - + table, chain, rule, handle, reset) < 0) { + ret = 1; + break; + } + entries++; nl_dump_check_consistent(cb, nlmsg_hdr(skb)); cont: prule = rule; cont_skip: (*idx)++; } - return 0; + + if (reset && entries) + audit_log_rule_reset(table, cb->seq, entries); + + return ret; } static int nf_tables_dump_rules(struct sk_buff *skb, @@ -3637,6 +3661,9 @@ if (err < 0) goto err_fill_rule_info; + if (reset) + audit_log_rule_reset(table, nft_pernet(net)->base_seq, 1); + return nfnetlink_unicast(skb2, net, NETLINK_CB(skb).portid); err_fill_rule_info: @@ -5629,13 +5656,25 @@ return nf_tables_fill_setelem(args->skb, set, elem, args->reset); } +static void audit_log_nft_set_reset(const struct nft_table *table, + unsigned int base_seq, + unsigned int nentries) +{ + char *buf = kasprintf(GFP_ATOMIC, "%s:%u", table->name, base_seq); + + audit_log_nfcfg(buf, table->family, nentries, + AUDIT_NFT_OP_SETELEM_RESET, GFP_ATOMIC); + kfree(buf); +} + struct nft_set_dump_ctx { const struct nft_set *set; struct nft_ctx ctx; }; static int nft_set_catchall_dump(struct net *net, struct sk_buff *skb, - const struct nft_set *set, bool reset) + const struct nft_set *set, bool reset, + unsigned int base_seq) { struct nft_set_elem_catchall *catchall; u8 genmask = nft_genmask_cur(net); @@ -5651,6 +5690,8 @@ elem.priv = catchall->elem; ret = nf_tables_fill_setelem(skb, set, &elem, reset); + if (reset && !ret) + audit_log_nft_set_reset(set->table, base_seq, 1); break; } @@ -5730,12 +5771,17 @@ set->ops->walk(&dump_ctx->ctx, set, &args.iter); if (!args.iter.err && args.iter.count == cb->args[0]) - args.iter.err = nft_set_catchall_dump(net, skb, set, reset); - rcu_read_unlock(); - + args.iter.err = nft_set_catchall_dump(net, skb, set, + reset, cb->seq); nla_nest_end(skb, nest); nlmsg_end(skb, nlh); + if (reset && args.iter.count > args.iter.skip) + audit_log_nft_set_reset(table, cb->seq, + args.iter.count - args.iter.skip); + + rcu_read_unlock(); + if (args.iter.err && args.iter.err != -EMSGSIZE) return args.iter.err; if (args.iter.count == cb->args[0]) @@ -5960,13 +6006,13 @@ struct netlink_ext_ack *extack = info->extack; u8 genmask = nft_genmask_cur(info->net); u8 family = info->nfmsg->nfgen_family; + int rem, err = 0, nelems = 0; struct net *net = info->net; struct nft_table *table; struct nft_set *set; struct nlattr *attr; struct nft_ctx ctx; bool reset = false; - int rem, err = 0; table = nft_table_lookup(net, nla[NFTA_SET_ELEM_LIST_TABLE], family, genmask, 0); @@ -6009,8 +6055,13 @@ NL_SET_BAD_ATTR(extack, attr); break; } + nelems++; } + if (reset) + audit_log_nft_set_reset(table, nft_pernet(net)->base_seq, + nelems); + return err; } @@ -6422,6 +6473,12 @@ return ret; } +static void nft_setelem_catchall_destroy(struct nft_set_elem_catchall *catchall) +{ + list_del_rcu(&catchall->list); + kfree_rcu(catchall, rcu); +} + static void nft_setelem_catchall_remove(const struct net *net, const struct nft_set *set, const struct nft_set_elem *elem) @@ -6430,8 +6487,7 @@ list_for_each_entry_safe(catchall, next, &set->catchall_list, list) { if (catchall->elem == elem->priv) { - list_del_rcu(&catchall->list); - kfree_rcu(catchall, rcu); + nft_setelem_catchall_destroy(catchall); break; } } @@ -7144,8 +7200,10 @@ if (IS_ERR(set)) return PTR_ERR(set); - if (!list_empty(&set->bindings) && - (set->flags & (NFT_SET_CONSTANT | NFT_SET_ANONYMOUS))) + if (nft_set_is_anonymous(set)) + return -EOPNOTSUPP; + + if (!list_empty(&set->bindings) && (set->flags & NFT_SET_CONSTANT)) return -EBUSY; nft_ctx_init(&ctx, net, skb, info->nlh, family, table, NULL, nla); @@ -7815,24 +7873,14 @@ return nft_delobj(&ctx, obj); } -void nft_obj_notify(struct net *net, const struct nft_table *table, - struct nft_object *obj, u32 portid, u32 seq, int event, - u16 flags, int family, int report, gfp_t gfp) +static void +__nft_obj_notify(struct net *net, const struct nft_table *table, + struct nft_object *obj, u32 portid, u32 seq, int event, + u16 flags, int family, int report, gfp_t gfp) { struct nftables_pernet *nft_net = nft_pernet(net); struct sk_buff *skb; int err; - char *buf = kasprintf(gfp, "%s:%u", - table->name, nft_net->base_seq); - - audit_log_nfcfg(buf, - family, - obj->handle, - event == NFT_MSG_NEWOBJ ? - AUDIT_NFT_OP_OBJ_REGISTER : - AUDIT_NFT_OP_OBJ_UNREGISTER, - gfp); - kfree(buf); if (!report && !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES)) @@ -7855,13 +7903,35 @@ err: nfnetlink_set_err(net, portid, NFNLGRP_NFTABLES, -ENOBUFS); } + +void nft_obj_notify(struct net *net, const struct nft_table *table, + struct nft_object *obj, u32 portid, u32 seq, int event, + u16 flags, int family, int report, gfp_t gfp) +{ + struct nftables_pernet *nft_net = nft_pernet(net); + char *buf = kasprintf(gfp, "%s:%u", + table->name, nft_net->base_seq); + + audit_log_nfcfg(buf, + family, + obj->handle, + event == NFT_MSG_NEWOBJ ? + AUDIT_NFT_OP_OBJ_REGISTER : + AUDIT_NFT_OP_OBJ_UNREGISTER, + gfp); + kfree(buf); + + __nft_obj_notify(net, table, obj, portid, seq, event, + flags, family, report, gfp); +} EXPORT_SYMBOL_GPL(nft_obj_notify); static void nf_tables_obj_notify(const struct nft_ctx *ctx, struct nft_object *obj, int event) { - nft_obj_notify(ctx->net, ctx->table, obj, ctx->portid, ctx->seq, event, - ctx->flags, ctx->family, ctx->report, GFP_KERNEL); + __nft_obj_notify(ctx->net, ctx->table, obj, ctx->portid, + ctx->seq, event, ctx->flags, ctx->family, + ctx->report, GFP_KERNEL); } /* @@ -9523,12 +9593,15 @@ struct nft_trans_gc *nft_trans_gc_queue_async(struct nft_trans_gc *gc, unsigned int gc_seq, gfp_t gfp) { + struct nft_set *set; + if (nft_trans_gc_space(gc)) return gc; + set = gc->set; nft_trans_gc_queue_work(gc); - return nft_trans_gc_alloc(gc->set, gc_seq, gfp); + return nft_trans_gc_alloc(set, gc_seq, gfp); } void nft_trans_gc_queue_async_done(struct nft_trans_gc *trans) @@ -9543,15 +9616,18 @@ struct nft_trans_gc *nft_trans_gc_queue_sync(struct nft_trans_gc *gc, gfp_t gfp) { + struct nft_set *set; + if (WARN_ON_ONCE(!lockdep_commit_lock_is_held(gc->net))) return NULL; if (nft_trans_gc_space(gc)) return gc; + set = gc->set; call_rcu(&gc->rcu, nft_trans_gc_trans_free); - return nft_trans_gc_alloc(gc->set, 0, gfp); + return nft_trans_gc_alloc(set, 0, gfp); } void nft_trans_gc_queue_sync_done(struct nft_trans_gc *trans) @@ -9566,14 +9642,16 @@ call_rcu(&trans->rcu, nft_trans_gc_trans_free); } -struct nft_trans_gc *nft_trans_gc_catchall(struct nft_trans_gc *gc, - unsigned int gc_seq) +static struct nft_trans_gc *nft_trans_gc_catchall(struct nft_trans_gc *gc, + unsigned int gc_seq, + bool sync) { - struct nft_set_elem_catchall *catchall; + struct nft_set_elem_catchall *catchall, *next; const struct nft_set *set = gc->set; + struct nft_set_elem *elem; struct nft_set_ext *ext; - list_for_each_entry_rcu(catchall, &set->catchall_list, list) { + list_for_each_entry_safe(catchall, next, &set->catchall_list, list) { ext = nft_set_elem_ext(set, catchall->elem); if (!nft_set_elem_expired(ext)) @@ -9583,16 +9661,37 @@ nft_set_elem_dead(ext); dead_elem: - gc = nft_trans_gc_queue_async(gc, gc_seq, GFP_ATOMIC); + if (sync) + gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC); + else + gc = nft_trans_gc_queue_async(gc, gc_seq, GFP_ATOMIC); + if (!gc) return NULL; - nft_trans_gc_elem_add(gc, catchall->elem); + elem = catchall->elem; + if (sync) { + nft_setelem_data_deactivate(gc->net, gc->set, elem); + nft_setelem_catchall_destroy(catchall); + } + + nft_trans_gc_elem_add(gc, elem->priv); } return gc; } +struct nft_trans_gc *nft_trans_gc_catchall_async(struct nft_trans_gc *gc, + unsigned int gc_seq) +{ + return nft_trans_gc_catchall(gc, gc_seq, false); +} + +struct nft_trans_gc *nft_trans_gc_catchall_sync(struct nft_trans_gc *gc) +{ + return nft_trans_gc_catchall(gc, 0, true); +} + static void nf_tables_module_autoload_cleanup(struct net *net) { struct nftables_pernet *nft_net = nft_pernet(net); @@ -9744,7 +9843,7 @@ list_for_each_entry_safe(set, next, set_update_list, pending_update) { list_del_init(&set->pending_update); - if (!set->ops->commit) + if (!set->ops->commit || set->dead) continue; set->ops->commit(set); diff -u linux-oracle-6.5-6.5.0/net/netfilter/nft_set_rbtree.c linux-oracle-6.5-6.5.0/net/netfilter/nft_set_rbtree.c --- linux-oracle-6.5-6.5.0/net/netfilter/nft_set_rbtree.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nft_set_rbtree.c @@ -233,10 +233,9 @@ rb_erase(&rbe->node, &priv->root); } -static int nft_rbtree_gc_elem(const struct nft_set *__set, - struct nft_rbtree *priv, - struct nft_rbtree_elem *rbe, - u8 genmask) +static const struct nft_rbtree_elem * +nft_rbtree_gc_elem(const struct nft_set *__set, struct nft_rbtree *priv, + struct nft_rbtree_elem *rbe, u8 genmask) { struct nft_set *set = (struct nft_set *)__set; struct rb_node *prev = rb_prev(&rbe->node); @@ -246,7 +245,7 @@ gc = nft_trans_gc_alloc(set, 0, GFP_ATOMIC); if (!gc) - return -ENOMEM; + return ERR_PTR(-ENOMEM); /* search for end interval coming before this element. * end intervals don't carry a timeout extension, they @@ -261,6 +260,7 @@ prev = rb_prev(prev); } + rbe_prev = NULL; if (prev) { rbe_prev = rb_entry(prev, struct nft_rbtree_elem, node); nft_rbtree_gc_remove(net, set, priv, rbe_prev); @@ -272,7 +272,7 @@ */ gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC); if (WARN_ON_ONCE(!gc)) - return -ENOMEM; + return ERR_PTR(-ENOMEM); nft_trans_gc_elem_add(gc, rbe_prev); } @@ -280,13 +280,13 @@ nft_rbtree_gc_remove(net, set, priv, rbe); gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC); if (WARN_ON_ONCE(!gc)) - return -ENOMEM; + return ERR_PTR(-ENOMEM); nft_trans_gc_elem_add(gc, rbe); nft_trans_gc_queue_sync_done(gc); - return 0; + return rbe_prev; } static bool nft_rbtree_update_first(const struct nft_set *set, @@ -314,7 +314,7 @@ struct nft_rbtree *priv = nft_set_priv(set); u8 cur_genmask = nft_genmask_cur(net); u8 genmask = nft_genmask_next(net); - int d, err; + int d; /* Descend the tree to search for an existing element greater than the * key value to insert that is greater than the new element. This is the @@ -363,9 +363,14 @@ */ if (nft_set_elem_expired(&rbe->ext) && nft_set_elem_active(&rbe->ext, cur_genmask)) { - err = nft_rbtree_gc_elem(set, priv, rbe, genmask); - if (err < 0) - return err; + const struct nft_rbtree_elem *removed_end; + + removed_end = nft_rbtree_gc_elem(set, priv, rbe, genmask); + if (IS_ERR(removed_end)) + return PTR_ERR(removed_end); + + if (removed_end == rbe_le || removed_end == rbe_ge) + return -EAGAIN; continue; } @@ -486,11 +491,18 @@ struct nft_rbtree_elem *rbe = elem->priv; int err; - write_lock_bh(&priv->lock); - write_seqcount_begin(&priv->count); - err = __nft_rbtree_insert(net, set, rbe, ext); - write_seqcount_end(&priv->count); - write_unlock_bh(&priv->lock); + do { + if (fatal_signal_pending(current)) + return -EINTR; + + cond_resched(); + + write_lock_bh(&priv->lock); + write_seqcount_begin(&priv->count); + err = __nft_rbtree_insert(net, set, rbe, ext); + write_seqcount_end(&priv->count); + write_unlock_bh(&priv->lock); + } while (err == -EAGAIN); return err; } @@ -622,8 +634,7 @@ if (!gc) goto done; - write_lock_bh(&priv->lock); - write_seqcount_begin(&priv->count); + read_lock_bh(&priv->lock); for (node = rb_first(&priv->root); node != NULL; node = rb_next(node)) { /* Ruleset has been updated, try later. */ @@ -670,11 +681,10 @@ nft_trans_gc_elem_add(gc, rbe); } - gc = nft_trans_gc_catchall(gc, gc_seq); + gc = nft_trans_gc_catchall_async(gc, gc_seq); try_later: - write_seqcount_end(&priv->count); - write_unlock_bh(&priv->lock); + read_unlock_bh(&priv->lock); if (gc) nft_trans_gc_queue_async_done(gc); diff -u linux-oracle-6.5-6.5.0/net/sctp/socket.c linux-oracle-6.5-6.5.0/net/sctp/socket.c --- linux-oracle-6.5-6.5.0/net/sctp/socket.c +++ linux-oracle-6.5-6.5.0/net/sctp/socket.c @@ -69,7 +69,7 @@ #include /* Forward declarations for internal helper functions. */ -static bool sctp_writeable(struct sock *sk); +static bool sctp_writeable(const struct sock *sk); static void sctp_wfree(struct sk_buff *skb); static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p, size_t msg_len); @@ -140,7 +140,7 @@ refcount_add(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc); asoc->sndbuf_used += chunk->skb->truesize + sizeof(struct sctp_chunk); - sk->sk_wmem_queued += chunk->skb->truesize + sizeof(struct sctp_chunk); + sk_wmem_queued_add(sk, chunk->skb->truesize + sizeof(struct sctp_chunk)); sk_mem_charge(sk, chunk->skb->truesize); } @@ -2450,6 +2450,7 @@ if (trans) { trans->hbinterval = msecs_to_jiffies(params->spp_hbinterval); + sctp_transport_reset_hb_timer(trans); } else if (asoc) { asoc->hbinterval = msecs_to_jiffies(params->spp_hbinterval); @@ -9144,7 +9145,7 @@ struct sock *sk = asoc->base.sk; sk_mem_uncharge(sk, skb->truesize); - sk->sk_wmem_queued -= skb->truesize + sizeof(struct sctp_chunk); + sk_wmem_queued_add(sk, -(skb->truesize + sizeof(struct sctp_chunk))); asoc->sndbuf_used -= skb->truesize + sizeof(struct sctp_chunk); WARN_ON(refcount_sub_and_test(sizeof(struct sctp_chunk), &sk->sk_wmem_alloc)); @@ -9299,9 +9300,9 @@ * UDP-style sockets or TCP-style sockets, this code should work. * - Daisy */ -static bool sctp_writeable(struct sock *sk) +static bool sctp_writeable(const struct sock *sk) { - return sk->sk_sndbuf > sk->sk_wmem_queued; + return READ_ONCE(sk->sk_sndbuf) > READ_ONCE(sk->sk_wmem_queued); } /* Wait for an association to go into ESTABLISHED state. If timeout is 0, diff -u linux-oracle-6.5-6.5.0/net/smc/smc_stats.h linux-oracle-6.5-6.5.0/net/smc/smc_stats.h --- linux-oracle-6.5-6.5.0/net/smc/smc_stats.h +++ linux-oracle-6.5-6.5.0/net/smc/smc_stats.h @@ -247,8 +247,9 @@ #define SMC_STAT_SERV_SUCC_INC(net, _ini) \ do { \ typeof(_ini) i = (_ini); \ - bool is_v2 = (i->smcd_version & SMC_V2); \ bool is_smcd = (i->is_smcd); \ + u8 version = is_smcd ? i->smcd_version : i->smcr_version; \ + bool is_v2 = (version & SMC_V2); \ typeof(net->smc.smc_stats) smc_stats = (net)->smc.smc_stats; \ if (is_v2 && is_smcd) \ this_cpu_inc(smc_stats->smc[SMC_TYPE_D].srv_v2_succ_cnt); \ diff -u linux-oracle-6.5-6.5.0/net/socket.c linux-oracle-6.5-6.5.0/net/socket.c --- linux-oracle-6.5-6.5.0/net/socket.c +++ linux-oracle-6.5-6.5.0/net/socket.c @@ -88,6 +88,7 @@ #include #include #include +#include #include #include @@ -160,6 +161,7 @@ #ifdef CONFIG_COMPAT .compat_ioctl = compat_sock_ioctl, #endif + .uring_cmd = io_uring_cmd_sock, .mmap = sock_mmap, .release = sock_close, .fasync = sock_fasync, @@ -735,6 +737,14 @@ return ret; } +static int __sock_sendmsg(struct socket *sock, struct msghdr *msg) +{ + int err = security_socket_sendmsg(sock, msg, + msg_data_left(msg)); + + return err ?: sock_sendmsg_nosec(sock, msg); +} + /** * sock_sendmsg - send a message through @sock * @sock: socket @@ -745,10 +755,19 @@ */ int sock_sendmsg(struct socket *sock, struct msghdr *msg) { - int err = security_socket_sendmsg(sock, msg, - msg_data_left(msg)); + struct sockaddr_storage *save_addr = (struct sockaddr_storage *)msg->msg_name; + struct sockaddr_storage address; + int ret; - return err ?: sock_sendmsg_nosec(sock, msg); + if (msg->msg_name) { + memcpy(&address, msg->msg_name, msg->msg_namelen); + msg->msg_name = &address; + } + + ret = __sock_sendmsg(sock, msg); + msg->msg_name = save_addr; + + return ret; } EXPORT_SYMBOL(sock_sendmsg); @@ -825,7 +844,7 @@ static ktime_t get_timestamp(struct sock *sk, struct sk_buff *skb, int *if_index) { - bool cycles = sk->sk_tsflags & SOF_TIMESTAMPING_BIND_PHC; + bool cycles = READ_ONCE(sk->sk_tsflags) & SOF_TIMESTAMPING_BIND_PHC; struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb); struct net_device *orig_dev; ktime_t hwtstamp; @@ -877,12 +896,12 @@ int need_software_tstamp = sock_flag(sk, SOCK_RCVTSTAMP); int new_tstamp = sock_flag(sk, SOCK_TSTAMP_NEW); struct scm_timestamping_internal tss; - int empty = 1, false_tstamp = 0; struct skb_shared_hwtstamps *shhwtstamps = skb_hwtstamps(skb); int if_index; ktime_t hwtstamp; + u32 tsflags; /* Race occurred between timestamp enabling and packet receiving. Fill in the current time for now. */ @@ -924,11 +943,12 @@ } memset(&tss, 0, sizeof(tss)); - if ((sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) && + tsflags = READ_ONCE(sk->sk_tsflags); + if ((tsflags & SOF_TIMESTAMPING_SOFTWARE) && ktime_to_timespec64_cond(skb->tstamp, tss.ts + 0)) empty = 0; if (shhwtstamps && - (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) && + (tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) && !skb_is_swtx_tstamp(skb, false_tstamp)) { if_index = 0; if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP_NETDEV) @@ -936,14 +956,14 @@ else hwtstamp = shhwtstamps->hwtstamp; - if (sk->sk_tsflags & SOF_TIMESTAMPING_BIND_PHC) + if (tsflags & SOF_TIMESTAMPING_BIND_PHC) hwtstamp = ptp_convert_timestamp(&hwtstamp, - sk->sk_bind_phc); + READ_ONCE(sk->sk_bind_phc)); if (ktime_to_timespec64_cond(hwtstamp, tss.ts + 2)) { empty = 0; - if ((sk->sk_tsflags & SOF_TIMESTAMPING_OPT_PKTINFO) && + if ((tsflags & SOF_TIMESTAMPING_OPT_PKTINFO) && !skb_is_err_queue(skb)) put_ts_pktinfo(msg, skb, if_index); } @@ -1135,7 +1155,7 @@ if (sock->type == SOCK_SEQPACKET) msg.msg_flags |= MSG_EOR; - res = sock_sendmsg(sock, &msg); + res = __sock_sendmsg(sock, &msg); *from = msg.msg_iter; return res; } @@ -2147,7 +2167,7 @@ if (sock->file->f_flags & O_NONBLOCK) flags |= MSG_DONTWAIT; msg.msg_flags = flags; - err = sock_sendmsg(sock, &msg); + err = __sock_sendmsg(sock, &msg); out_put: fput_light(sock->file, fput_needed); @@ -2511,7 +2531,7 @@ err = sock_sendmsg_nosec(sock, msg_sys); goto out_freectl; } - err = sock_sendmsg(sock, msg_sys); + err = __sock_sendmsg(sock, msg_sys); /* * If this is sendmmsg() and sending to current destination address was * successful, remember it. @@ -3472,7 +3492,11 @@ int kernel_bind(struct socket *sock, struct sockaddr *addr, int addrlen) { - return READ_ONCE(sock->ops)->bind(sock, addr, addrlen); + struct sockaddr_storage address; + + memcpy(&address, addr, addrlen); + + return READ_ONCE(sock->ops)->bind(sock, (struct sockaddr *)&address, addrlen); } EXPORT_SYMBOL(kernel_bind); diff -u linux-oracle-6.5-6.5.0/net/unix/scm.c linux-oracle-6.5-6.5.0/net/unix/scm.c --- linux-oracle-6.5-6.5.0/net/unix/scm.c +++ linux-oracle-6.5-6.5.0/net/unix/scm.c @@ -64,7 +64,7 @@ /* Paired with READ_ONCE() in wait_for_unix_gc() */ WRITE_ONCE(unix_tot_inflight, unix_tot_inflight + 1); } - user->unix_inflight++; + WRITE_ONCE(user->unix_inflight, user->unix_inflight + 1); spin_unlock(&unix_gc_lock); } @@ -85,7 +85,7 @@ /* Paired with READ_ONCE() in wait_for_unix_gc() */ WRITE_ONCE(unix_tot_inflight, unix_tot_inflight - 1); } - user->unix_inflight--; + WRITE_ONCE(user->unix_inflight, user->unix_inflight - 1); spin_unlock(&unix_gc_lock); } @@ -99,7 +99,7 @@ { struct user_struct *user = current_user(); - if (unlikely(user->unix_inflight > task_rlimit(p, RLIMIT_NOFILE))) + if (unlikely(READ_ONCE(user->unix_inflight) > task_rlimit(p, RLIMIT_NOFILE))) return !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN); return false; } diff -u linux-oracle-6.5-6.5.0/net/wireless/nl80211.c linux-oracle-6.5-6.5.0/net/wireless/nl80211.c --- linux-oracle-6.5-6.5.0/net/wireless/nl80211.c +++ linux-oracle-6.5-6.5.0/net/wireless/nl80211.c @@ -12797,7 +12797,8 @@ } static int cfg80211_cqm_rssi_update(struct cfg80211_registered_device *rdev, - struct net_device *dev) + struct net_device *dev, + struct cfg80211_cqm_config *cqm_config) { struct wireless_dev *wdev = dev->ieee80211_ptr; s32 last, low, high; @@ -12806,7 +12807,7 @@ int err; /* RSSI reporting disabled? */ - if (!wdev->cqm_config) + if (!cqm_config) return rdev_set_cqm_rssi_range_config(rdev, dev, 0, 0); /* @@ -12815,7 +12816,7 @@ * connection is established and enough beacons received to calculate * the average. */ - if (!wdev->cqm_config->last_rssi_event_value && + if (!cqm_config->last_rssi_event_value && wdev->links[0].client.current_bss && rdev->ops->get_station) { struct station_info sinfo = {}; @@ -12829,30 +12830,30 @@ cfg80211_sinfo_release_content(&sinfo); if (sinfo.filled & BIT_ULL(NL80211_STA_INFO_BEACON_SIGNAL_AVG)) - wdev->cqm_config->last_rssi_event_value = + cqm_config->last_rssi_event_value = (s8) sinfo.rx_beacon_signal_avg; } - last = wdev->cqm_config->last_rssi_event_value; - hyst = wdev->cqm_config->rssi_hyst; - n = wdev->cqm_config->n_rssi_thresholds; + last = cqm_config->last_rssi_event_value; + hyst = cqm_config->rssi_hyst; + n = cqm_config->n_rssi_thresholds; for (i = 0; i < n; i++) { i = array_index_nospec(i, n); - if (last < wdev->cqm_config->rssi_thresholds[i]) + if (last < cqm_config->rssi_thresholds[i]) break; } low_index = i - 1; if (low_index >= 0) { low_index = array_index_nospec(low_index, n); - low = wdev->cqm_config->rssi_thresholds[low_index] - hyst; + low = cqm_config->rssi_thresholds[low_index] - hyst; } else { low = S32_MIN; } if (i < n) { i = array_index_nospec(i, n); - high = wdev->cqm_config->rssi_thresholds[i] + hyst - 1; + high = cqm_config->rssi_thresholds[i] + hyst - 1; } else { high = S32_MAX; } @@ -12865,6 +12866,7 @@ u32 hysteresis) { struct cfg80211_registered_device *rdev = info->user_ptr[0]; + struct cfg80211_cqm_config *cqm_config = NULL, *old; struct net_device *dev = info->user_ptr[1]; struct wireless_dev *wdev = dev->ieee80211_ptr; int i, err; @@ -12882,10 +12884,6 @@ wdev->iftype != NL80211_IFTYPE_P2P_CLIENT) return -EOPNOTSUPP; - wdev_lock(wdev); - cfg80211_cqm_config_free(wdev); - wdev_unlock(wdev); - if (n_thresholds <= 1 && rdev->ops->set_cqm_rssi_config) { if (n_thresholds == 0 || thresholds[0] == 0) /* Disabling */ return rdev_set_cqm_rssi_config(rdev, dev, 0, 0); @@ -12902,9 +12900,10 @@ n_thresholds = 0; wdev_lock(wdev); - if (n_thresholds) { - struct cfg80211_cqm_config *cqm_config; + old = rcu_dereference_protected(wdev->cqm_config, + lockdep_is_held(&wdev->mtx)); + if (n_thresholds) { cqm_config = kzalloc(struct_size(cqm_config, rssi_thresholds, n_thresholds), GFP_KERNEL); @@ -12919,11 +12918,18 @@ flex_array_size(cqm_config, rssi_thresholds, n_thresholds)); - wdev->cqm_config = cqm_config; + rcu_assign_pointer(wdev->cqm_config, cqm_config); + } else { + RCU_INIT_POINTER(wdev->cqm_config, NULL); } - err = cfg80211_cqm_rssi_update(rdev, dev); - + err = cfg80211_cqm_rssi_update(rdev, dev, cqm_config); + if (err) { + rcu_assign_pointer(wdev->cqm_config, old); + kfree_rcu(cqm_config, rcu_head); + } else { + kfree_rcu(old, rcu_head); + } unlock: wdev_unlock(wdev); @@ -19074,9 +19080,8 @@ enum nl80211_cqm_rssi_threshold_event rssi_event, s32 rssi_level, gfp_t gfp) { - struct sk_buff *msg; struct wireless_dev *wdev = dev->ieee80211_ptr; - struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy); + struct cfg80211_cqm_config *cqm_config; trace_cfg80211_cqm_rssi_notify(dev, rssi_event, rssi_level); @@ -19084,18 +19089,41 @@ rssi_event != NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH)) return; - if (wdev->cqm_config) { - wdev->cqm_config->last_rssi_event_value = rssi_level; + rcu_read_lock(); + cqm_config = rcu_dereference(wdev->cqm_config); + if (cqm_config) { + cqm_config->last_rssi_event_value = rssi_level; + cqm_config->last_rssi_event_type = rssi_event; + wiphy_work_queue(wdev->wiphy, &wdev->cqm_rssi_work); + } + rcu_read_unlock(); +} +EXPORT_SYMBOL(cfg80211_cqm_rssi_notify); + +void cfg80211_cqm_rssi_notify_work(struct wiphy *wiphy, struct wiphy_work *work) +{ + struct wireless_dev *wdev = container_of(work, struct wireless_dev, + cqm_rssi_work); + struct cfg80211_registered_device *rdev = wiphy_to_rdev(wiphy); + enum nl80211_cqm_rssi_threshold_event rssi_event; + struct cfg80211_cqm_config *cqm_config; + struct sk_buff *msg; + s32 rssi_level; + + wdev_lock(wdev); + cqm_config = rcu_dereference_protected(wdev->cqm_config, + lockdep_is_held(&wdev->mtx)); + if (!wdev->cqm_config) + goto unlock; - cfg80211_cqm_rssi_update(rdev, dev); + cfg80211_cqm_rssi_update(rdev, wdev->netdev, cqm_config); - if (rssi_level == 0) - rssi_level = wdev->cqm_config->last_rssi_event_value; - } + rssi_level = cqm_config->last_rssi_event_value; + rssi_event = cqm_config->last_rssi_event_type; - msg = cfg80211_prepare_cqm(dev, NULL, gfp); + msg = cfg80211_prepare_cqm(wdev->netdev, NULL, GFP_KERNEL); if (!msg) - return; + goto unlock; if (nla_put_u32(msg, NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT, rssi_event)) @@ -19105,14 +19133,15 @@ rssi_level)) goto nla_put_failure; - cfg80211_send_cqm(msg, gfp); + cfg80211_send_cqm(msg, GFP_KERNEL); - return; + goto unlock; nla_put_failure: nlmsg_free(msg); + unlock: + wdev_unlock(wdev); } -EXPORT_SYMBOL(cfg80211_cqm_rssi_notify); void cfg80211_cqm_txe_notify(struct net_device *dev, const u8 *peer, u32 num_packets, diff -u linux-oracle-6.5-6.5.0/security/integrity/ima/Kconfig linux-oracle-6.5-6.5.0/security/integrity/ima/Kconfig --- linux-oracle-6.5-6.5.0/security/integrity/ima/Kconfig +++ linux-oracle-6.5-6.5.0/security/integrity/ima/Kconfig @@ -29,9 +29,11 @@ to learn more about IMA. If unsure, say N. +if IMA + config IMA_KEXEC bool "Enable carrying the IMA measurement list across a soft boot" - depends on IMA && TCG_TPM && HAVE_IMA_KEXEC + depends on TCG_TPM && HAVE_IMA_KEXEC default n help TPM PCRs are only reset on a hard reboot. In order to validate @@ -43,7 +45,6 @@ config IMA_MEASURE_PCR_IDX int - depends on IMA range 8 14 default 10 help @@ -53,7 +54,7 @@ config IMA_LSM_RULES bool - depends on IMA && AUDIT && (SECURITY_SELINUX || SECURITY_SMACK || SECURITY_APPARMOR) + depends on AUDIT && (SECURITY_SELINUX || SECURITY_SMACK || SECURITY_APPARMOR) default y help Disabling this option will disregard LSM based policy rules. @@ -61,7 +62,6 @@ choice prompt "Default template" default IMA_NG_TEMPLATE - depends on IMA help Select the default IMA measurement template. @@ -80,14 +80,12 @@ config IMA_DEFAULT_TEMPLATE string - depends on IMA default "ima-ng" if IMA_NG_TEMPLATE default "ima-sig" if IMA_SIG_TEMPLATE choice prompt "Default integrity hash algorithm" default IMA_DEFAULT_HASH_SHA1 - depends on IMA help Select the default hash algorithm used for the measurement list, integrity appraisal and audit log. The compiled default @@ -117,7 +115,6 @@ config IMA_DEFAULT_HASH string - depends on IMA default "sha1" if IMA_DEFAULT_HASH_SHA1 default "sha256" if IMA_DEFAULT_HASH_SHA256 default "sha512" if IMA_DEFAULT_HASH_SHA512 @@ -126,7 +123,6 @@ config IMA_WRITE_POLICY bool "Enable multiple writes to the IMA policy" - depends on IMA default n help IMA policy can now be updated multiple times. The new rules get @@ -137,7 +133,6 @@ config IMA_READ_POLICY bool "Enable reading back the current IMA policy" - depends on IMA default y if IMA_WRITE_POLICY default n if !IMA_WRITE_POLICY help @@ -147,7 +142,6 @@ config IMA_APPRAISE bool "Appraise integrity measurements" - depends on IMA default n help This option enables local measurement integrity appraisal. @@ -268,7 +262,7 @@ config IMA_BLACKLIST_KEYRING bool "Create IMA machine owner blacklist keyrings (EXPERIMENTAL)" depends on SYSTEM_TRUSTED_KEYRING - depends on IMA_TRUSTED_KEYRING + depends on INTEGRITY_TRUSTED_KEYRING default n help This option creates an IMA blacklist keyring, which contains all @@ -278,7 +272,7 @@ config IMA_LOAD_X509 bool "Load X509 certificate onto the '.ima' trusted keyring" - depends on IMA_TRUSTED_KEYRING + depends on INTEGRITY_TRUSTED_KEYRING default n help File signature verification is based on the public keys @@ -303,7 +297,6 @@ config IMA_MEASURE_ASYMMETRIC_KEYS bool - depends on IMA depends on ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y default y @@ -325,4 +318,5 @@ - depends on IMA default n help This option disables htable to allow measurement of duplicate records. + +endif diff -u linux-oracle-6.5-6.5.0/security/selinux/hooks.c linux-oracle-6.5-6.5.0/security/selinux/hooks.c --- linux-oracle-6.5-6.5.0/security/selinux/hooks.c +++ linux-oracle-6.5-6.5.0/security/selinux/hooks.c @@ -2750,14 +2750,20 @@ static int selinux_fs_context_submount(struct fs_context *fc, struct super_block *reference) { - const struct superblock_security_struct *sbsec; + const struct superblock_security_struct *sbsec = selinux_superblock(reference); struct selinux_mnt_opts *opts; + /* + * Ensure that fc->security remains NULL when no options are set + * as expected by selinux_set_mnt_opts(). + */ + if (!(sbsec->flags & (FSCONTEXT_MNT|CONTEXT_MNT|DEFCONTEXT_MNT))) + return 0; + opts = kzalloc(sizeof(*opts), GFP_KERNEL); if (!opts) return -ENOMEM; - sbsec = selinux_superblock(reference); if (sbsec->flags & FSCONTEXT_MNT) opts->fscontext_sid = sbsec->sid; if (sbsec->flags & CONTEXT_MNT) diff -u linux-oracle-6.5-6.5.0/sound/pci/hda/cs35l41_hda.c linux-oracle-6.5-6.5.0/sound/pci/hda/cs35l41_hda.c --- linux-oracle-6.5-6.5.0/sound/pci/hda/cs35l41_hda.c +++ linux-oracle-6.5-6.5.0/sound/pci/hda/cs35l41_hda.c @@ -19,6 +19,7 @@ #include "hda_component.h" #include "cs35l41_hda.h" #include "hda_cs_dsp_ctl.h" +#include "cs35l41_hda_property.h" #define CS35L41_FIRMWARE_ROOT "cirrus/" #define CS35L41_PART "cs35l41" @@ -32,6 +33,9 @@ #define CAL_AMBIENT_DSP_CTL_NAME "CAL_AMBIENT" #define CAL_DSP_CTL_TYPE 5 #define CAL_DSP_CTL_ALG 205 +#define CS35L41_UUID "50d90cdc-3de4-4f18-b528-c7fe3b71f40d" +#define CS35L41_DSM_GET_MUTE 5 +#define CS35L41_NOTIFY_EVENT 0x91 static bool firmware_autostart = 1; module_param(firmware_autostart, bool, 0444); @@ -184,10 +188,14 @@ cs35l41->speaker_id, "wmfw"); if (!ret) { /* try cirrus/part-dspN-fwtype-sub<-spkidN><-ampname>.bin */ - return cs35l41_request_firmware_file(cs35l41, coeff_firmware, coeff_filename, - CS35L41_FIRMWARE_ROOT, - cs35l41->acpi_subsystem_id, cs35l41->amp_name, - cs35l41->speaker_id, "bin"); + ret = cs35l41_request_firmware_file(cs35l41, coeff_firmware, coeff_filename, + CS35L41_FIRMWARE_ROOT, + cs35l41->acpi_subsystem_id, cs35l41->amp_name, + cs35l41->speaker_id, "bin"); + if (ret) + goto coeff_err; + + return 0; } /* try cirrus/part-dspN-fwtype-sub<-ampname>.wmfw */ @@ -196,10 +204,14 @@ cs35l41->amp_name, -1, "wmfw"); if (!ret) { /* try cirrus/part-dspN-fwtype-sub<-spkidN><-ampname>.bin */ - return cs35l41_request_firmware_file(cs35l41, coeff_firmware, coeff_filename, - CS35L41_FIRMWARE_ROOT, - cs35l41->acpi_subsystem_id, cs35l41->amp_name, - cs35l41->speaker_id, "bin"); + ret = cs35l41_request_firmware_file(cs35l41, coeff_firmware, coeff_filename, + CS35L41_FIRMWARE_ROOT, + cs35l41->acpi_subsystem_id, cs35l41->amp_name, + cs35l41->speaker_id, "bin"); + if (ret) + goto coeff_err; + + return 0; } /* try cirrus/part-dspN-fwtype-sub<-spkidN>.wmfw */ @@ -214,10 +226,14 @@ cs35l41->amp_name, cs35l41->speaker_id, "bin"); if (ret) /* try cirrus/part-dspN-fwtype-sub<-spkidN>.bin */ - return cs35l41_request_firmware_file(cs35l41, coeff_firmware, - coeff_filename, CS35L41_FIRMWARE_ROOT, - cs35l41->acpi_subsystem_id, NULL, - cs35l41->speaker_id, "bin"); + ret = cs35l41_request_firmware_file(cs35l41, coeff_firmware, + coeff_filename, CS35L41_FIRMWARE_ROOT, + cs35l41->acpi_subsystem_id, NULL, + cs35l41->speaker_id, "bin"); + if (ret) + goto coeff_err; + + return 0; } /* try cirrus/part-dspN-fwtype-sub.wmfw */ @@ -233,11 +249,49 @@ if (ret) /* try cirrus/part-dspN-fwtype-sub<-spkidN>.bin */ - return cs35l41_request_firmware_file(cs35l41, coeff_firmware, - coeff_filename, CS35L41_FIRMWARE_ROOT, - cs35l41->acpi_subsystem_id, NULL, - cs35l41->speaker_id, "bin"); + ret = cs35l41_request_firmware_file(cs35l41, coeff_firmware, + coeff_filename, CS35L41_FIRMWARE_ROOT, + cs35l41->acpi_subsystem_id, NULL, + cs35l41->speaker_id, "bin"); + if (ret) + goto coeff_err; } return ret; +coeff_err: + release_firmware(*wmfw_firmware); + kfree(*wmfw_filename); + return ret; +} + +static int cs35l41_fallback_firmware_file(struct cs35l41_hda *cs35l41, + const struct firmware **wmfw_firmware, + char **wmfw_filename, + const struct firmware **coeff_firmware, + char **coeff_filename) +{ + int ret; + + /* Handle fallback */ + dev_warn(cs35l41->dev, "Falling back to default firmware.\n"); + + /* fallback try cirrus/part-dspN-fwtype.wmfw */ + ret = cs35l41_request_firmware_file(cs35l41, wmfw_firmware, wmfw_filename, + CS35L41_FIRMWARE_ROOT, NULL, NULL, -1, "wmfw"); + if (ret) + goto err; + + /* fallback try cirrus/part-dspN-fwtype.bin */ + ret = cs35l41_request_firmware_file(cs35l41, coeff_firmware, coeff_filename, + CS35L41_FIRMWARE_ROOT, NULL, NULL, -1, "bin"); + if (ret) { + release_firmware(*wmfw_firmware); + kfree(*wmfw_filename); + goto err; + } + return 0; + +err: + dev_warn(cs35l41->dev, "Unable to find firmware and tuning\n"); + return ret; } @@ -253,7 +307,6 @@ ret = cs35l41_request_firmware_files_spkid(cs35l41, wmfw_firmware, wmfw_filename, coeff_firmware, coeff_filename); goto out; - } /* try cirrus/part-dspN-fwtype-sub<-ampname>.wmfw */ @@ -266,6 +319,9 @@ CS35L41_FIRMWARE_ROOT, cs35l41->acpi_subsystem_id, cs35l41->amp_name, -1, "bin"); + if (ret) + goto coeff_err; + goto out; } @@ -285,32 +341,23 @@ CS35L41_FIRMWARE_ROOT, cs35l41->acpi_subsystem_id, NULL, -1, "bin"); + if (ret) + goto coeff_err; } out: - if (!ret) - return 0; + if (ret) + /* if all attempts at finding firmware fail, try fallback */ + goto fallback; - /* Handle fallback */ - dev_warn(cs35l41->dev, "Falling back to default firmware.\n"); + return 0; +coeff_err: release_firmware(*wmfw_firmware); kfree(*wmfw_filename); - - /* fallback try cirrus/part-dspN-fwtype.wmfw */ - ret = cs35l41_request_firmware_file(cs35l41, wmfw_firmware, wmfw_filename, - CS35L41_FIRMWARE_ROOT, NULL, NULL, -1, "wmfw"); - if (!ret) - /* fallback try cirrus/part-dspN-fwtype.bin */ - ret = cs35l41_request_firmware_file(cs35l41, coeff_firmware, coeff_filename, - CS35L41_FIRMWARE_ROOT, NULL, NULL, -1, "bin"); - - if (ret) { - release_firmware(*wmfw_firmware); - kfree(*wmfw_filename); - dev_warn(cs35l41->dev, "Unable to find firmware and tuning\n"); - } - return ret; +fallback: + return cs35l41_fallback_firmware_file(cs35l41, wmfw_firmware, wmfw_filename, + coeff_firmware, coeff_filename); } #if IS_ENABLED(CONFIG_EFI) @@ -519,6 +566,31 @@ } +static void cs35l41_mute(struct device *dev, bool mute) +{ + struct cs35l41_hda *cs35l41 = dev_get_drvdata(dev); + struct regmap *reg = cs35l41->regmap; + + dev_dbg(dev, "Mute(%d:%d) Playback Started: %d\n", mute, cs35l41->mute_override, + cs35l41->playback_started); + + if (cs35l41->playback_started) { + if (mute || cs35l41->mute_override) { + dev_dbg(dev, "Muting\n"); + regmap_multi_reg_write(reg, cs35l41_hda_mute, ARRAY_SIZE(cs35l41_hda_mute)); + } else { + dev_dbg(dev, "Unmuting\n"); + if (cs35l41->firmware_running) { + regmap_multi_reg_write(reg, cs35l41_hda_unmute_dsp, + ARRAY_SIZE(cs35l41_hda_unmute_dsp)); + } else { + regmap_multi_reg_write(reg, cs35l41_hda_unmute, + ARRAY_SIZE(cs35l41_hda_unmute)); + } + } + } +} + static void cs35l41_hda_play_done(struct device *dev) { struct cs35l41_hda *cs35l41 = dev_get_drvdata(dev); @@ -528,13 +600,7 @@ cs35l41_global_enable(dev, reg, cs35l41->hw_cfg.bst_type, 1, NULL, cs35l41->firmware_running); - if (cs35l41->firmware_running) { - regmap_multi_reg_write(reg, cs35l41_hda_unmute_dsp, - ARRAY_SIZE(cs35l41_hda_unmute_dsp)); - } else { - regmap_multi_reg_write(reg, cs35l41_hda_unmute, - ARRAY_SIZE(cs35l41_hda_unmute)); - } + cs35l41_mute(dev, false); } static void cs35l41_hda_pause_start(struct device *dev) @@ -544,7 +610,7 @@ dev_dbg(dev, "Pause (Start)\n"); - regmap_multi_reg_write(reg, cs35l41_hda_mute, ARRAY_SIZE(cs35l41_hda_mute)); + cs35l41_mute(dev, true); cs35l41_global_enable(dev, reg, cs35l41->hw_cfg.bst_type, 0, NULL, cs35l41->firmware_running); } @@ -664,43 +730,46 @@ rx_slot); } -static int cs35l41_ready_for_reset(struct cs35l41_hda *cs35l41) +int cs35l41_verify_id(struct cs35l41_hda *cs35l41, unsigned int *regid, unsigned int *reg_revid) { - int ret = 0; + unsigned int mtl_revid, chipid; + int ret; - mutex_lock(&cs35l41->fw_mutex); - if (cs35l41->firmware_running) { + ret = regmap_read(cs35l41->regmap, CS35L41_DEVID, regid); + if (ret) { + dev_err_probe(cs35l41->dev, ret, "Get Device ID failed\n"); + return ret; + } - regcache_cache_only(cs35l41->regmap, false); + ret = regmap_read(cs35l41->regmap, CS35L41_REVID, reg_revid); + if (ret) { + dev_err_probe(cs35l41->dev, ret, "Get Revision ID failed\n"); + return ret; + } - ret = cs35l41_exit_hibernate(cs35l41->dev, cs35l41->regmap); - if (ret) { - dev_warn(cs35l41->dev, "Unable to exit Hibernate."); - goto err; - } + mtl_revid = *reg_revid & CS35L41_MTLREVID_MASK; - /* Test key needs to be unlocked to allow the OTP settings to re-apply */ - cs35l41_test_key_unlock(cs35l41->dev, cs35l41->regmap); - ret = regcache_sync(cs35l41->regmap); - cs35l41_test_key_lock(cs35l41->dev, cs35l41->regmap); - if (ret) { - dev_err(cs35l41->dev, "Failed to restore register cache: %d\n", ret); - goto err; - } + chipid = (mtl_revid % 2) ? CS35L41R_CHIP_ID : CS35L41_CHIP_ID; + if (*regid != chipid) { + dev_err(cs35l41->dev, "CS35L41 Device ID (%X). Expected ID %X\n", *regid, chipid); + return -ENODEV; + } - if (cs35l41->hw_cfg.bst_type == CS35L41_EXT_BOOST) - cs35l41_init_boost(cs35l41->dev, cs35l41->regmap, &cs35l41->hw_cfg); + return 0; +} - cs35l41_shutdown_dsp(cs35l41); - cs35l41_safe_reset(cs35l41->regmap, cs35l41->hw_cfg.bst_type); +static int cs35l41_ready_for_reset(struct cs35l41_hda *cs35l41) +{ + mutex_lock(&cs35l41->fw_mutex); + if (cs35l41->firmware_running) { + cs35l41->cs_dsp.running = false; + cs35l41->cs_dsp.booted = false; + cs35l41->firmware_running = false; } -err: - regcache_cache_only(cs35l41->regmap, true); regcache_mark_dirty(cs35l41->regmap); - mutex_unlock(&cs35l41->fw_mutex); - return ret; + return 0; } static int cs35l41_system_suspend_prep(struct device *dev) @@ -749,13 +818,40 @@ ret = cs35l41_ready_for_reset(cs35l41); - if (ret) dev_err(dev, "System Suspend Failed, not ready for Reset: %d\n", ret); - /* - * Reset GPIO may be shared, so cannot reset here. - * However beyond this point, amps may be powered down. - */ + if (cs35l41->reset_gpio) { + dev_info(cs35l41->dev, "Asserting Reset\n"); + gpiod_set_value_cansleep(cs35l41->reset_gpio, 0); + usleep_range(2000, 2100); + } + + dev_dbg(cs35l41->dev, "System Suspended\n"); + return ret; } +static int cs35l41_wait_boot_done(struct cs35l41_hda *cs35l41) +{ + unsigned int int_status; + int ret; + + ret = regmap_read_poll_timeout(cs35l41->regmap, CS35L41_IRQ1_STATUS4, int_status, + int_status & CS35L41_OTP_BOOT_DONE, 1000, 100000); + if (ret) { + dev_err(cs35l41->dev, "Failed waiting for OTP_BOOT_DONE\n"); + return ret; + } + + ret = regmap_read(cs35l41->regmap, CS35L41_IRQ1_STATUS3, &int_status); + if (ret || (int_status & CS35L41_OTP_BOOT_ERR)) { + dev_err(cs35l41->dev, "OTP Boot status %x error\n", + int_status & CS35L41_OTP_BOOT_ERR); + if (!ret) + ret = -EIO; + return ret; + } + + return 0; +} + static int cs35l41_system_resume(struct device *dev) @@ -771,12 +867,24 @@ } if (cs35l41->reset_gpio) { + gpiod_set_value_cansleep(cs35l41->reset_gpio, 0); usleep_range(2000, 2100); gpiod_set_value_cansleep(cs35l41->reset_gpio, 1); } usleep_range(2000, 2100); + regcache_cache_only(cs35l41->regmap, false); + + regmap_write(cs35l41->regmap, CS35L41_SFT_RESET, CS35L41_SOFTWARE_RESET); + usleep_range(2000, 2100); + + ret = cs35l41_wait_boot_done(cs35l41); + if (ret) + return ret; + + regcache_cache_only(cs35l41->regmap, true); + ret = pm_runtime_force_resume(dev); if (ret) { dev_err(dev, "System Resume Failed: Unable to runtime resume: %d\n", ret); @@ -838,6 +946,7 @@ static int cs35l41_runtime_resume(struct device *dev) { struct cs35l41_hda *cs35l41 = dev_get_drvdata(dev); + unsigned int regid, reg_revid; int ret = 0; dev_dbg(cs35l41->dev, "Runtime Resume\n"); @@ -859,6 +968,10 @@ } } + ret = cs35l41_verify_id(cs35l41, ®id, ®_revid); + if (ret) + goto err; + /* Test key needs to be unlocked to allow the OTP settings to re-apply */ cs35l41_test_key_unlock(cs35l41->dev, cs35l41->regmap); ret = regcache_sync(cs35l41->regmap); @@ -871,6 +984,8 @@ if (cs35l41->hw_cfg.bst_type == CS35L41_EXT_BOOST) cs35l41_init_boost(cs35l41->dev, cs35l41->regmap, &cs35l41->hw_cfg); + dev_dbg(cs35l41->dev, "CS35L41 Resumed (%x), Revision: %02X\n", regid, reg_revid); + err: mutex_unlock(&cs35l41->fw_mutex); @@ -879,6 +994,7 @@ static int cs35l41_smart_amp(struct cs35l41_hda *cs35l41) { + unsigned int fw_status; __be32 halo_sts; int ret; @@ -912,6 +1028,23 @@ goto clean_dsp; } + ret = regmap_read(cs35l41->regmap, CS35L41_DSP_MBOX_2, &fw_status); + if (ret < 0) { + dev_err(cs35l41->dev, + "Failed to read firmware status: %d\n", ret); + goto clean_dsp; + } + + switch (fw_status) { + case CSPL_MBOX_STS_RUNNING: + case CSPL_MBOX_STS_PAUSED: + break; + default: + dev_err(cs35l41->dev, "Firmware status is invalid: %u\n", + fw_status); + goto clean_dsp; + } + ret = cs35l41_set_cspl_mbox_cmd(cs35l41->dev, cs35l41->regmap, CSPL_MBOX_CMD_PAUSE); if (ret) { dev_err(cs35l41->dev, "Error waiting for DSP to pause: %u\n", ret); @@ -949,6 +1082,15 @@ return 0; } +static int cs35l41_mute_override_ctl_get(struct snd_kcontrol *kcontrol, + struct snd_ctl_elem_value *ucontrol) +{ + struct cs35l41_hda *cs35l41 = snd_kcontrol_chip(kcontrol); + + ucontrol->value.integer.value[0] = cs35l41->mute_override; + return 0; +} + static void cs35l41_fw_load_work(struct work_struct *work) { struct cs35l41_hda *cs35l41 = container_of(work, struct cs35l41_hda, fw_load_work); @@ -1032,6 +1174,7 @@ { char fw_type_ctl_name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; char fw_load_ctl_name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; + char mute_override_ctl_name[SNDRV_CTL_ELEM_ID_NAME_MAXLEN]; struct snd_kcontrol_new fw_type_ctl = { .name = fw_type_ctl_name, .iface = SNDRV_CTL_ELEM_IFACE_CARD, @@ -1046,12 +1189,21 @@ .get = cs35l41_fw_load_ctl_get, .put = cs35l41_fw_load_ctl_put, }; + struct snd_kcontrol_new mute_override_ctl = { + .name = mute_override_ctl_name, + .iface = SNDRV_CTL_ELEM_IFACE_CARD, + .info = snd_ctl_boolean_mono_info, + .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, + .get = cs35l41_mute_override_ctl_get, + }; int ret; scnprintf(fw_type_ctl_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN, "%s DSP1 Firmware Type", cs35l41->amp_name); scnprintf(fw_load_ctl_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN, "%s DSP1 Firmware Load", cs35l41->amp_name); + scnprintf(mute_override_ctl_name, SNDRV_CTL_ELEM_ID_NAME_MAXLEN, "%s Forced Mute Status", + cs35l41->amp_name); ret = snd_ctl_add(cs35l41->codec->card, snd_ctl_new1(&fw_type_ctl, cs35l41)); if (ret) { @@ -1069,9 +1221,65 @@ dev_dbg(cs35l41->dev, "Added Control %s\n", fw_load_ctl.name); + ret = snd_ctl_add(cs35l41->codec->card, snd_ctl_new1(&mute_override_ctl, cs35l41)); + if (ret) { + dev_err(cs35l41->dev, "Failed to add KControl %s = %d\n", mute_override_ctl.name, + ret); + return ret; + } + + dev_dbg(cs35l41->dev, "Added Control %s\n", mute_override_ctl.name); + return 0; } +static bool cs35l41_dsm_supported(acpi_handle handle, unsigned int commands) +{ + guid_t guid; + + guid_parse(CS35L41_UUID, &guid); + + return acpi_check_dsm(handle, &guid, 0, BIT(commands)); +} + +static int cs35l41_get_acpi_mute_state(struct cs35l41_hda *cs35l41, acpi_handle handle) +{ + guid_t guid; + union acpi_object *ret; + int mute = -ENODEV; + + guid_parse(CS35L41_UUID, &guid); + + if (cs35l41_dsm_supported(handle, CS35L41_DSM_GET_MUTE)) { + ret = acpi_evaluate_dsm(handle, &guid, 0, CS35L41_DSM_GET_MUTE, NULL); + mute = *ret->buffer.pointer; + dev_dbg(cs35l41->dev, "CS35L41_DSM_GET_MUTE: %d\n", mute); + } + + dev_dbg(cs35l41->dev, "%s: %d\n", __func__, mute); + + return mute; +} + +static void cs35l41_acpi_device_notify(acpi_handle handle, u32 event, struct device *dev) +{ + struct cs35l41_hda *cs35l41 = dev_get_drvdata(dev); + int mute; + + if (event != CS35L41_NOTIFY_EVENT) + return; + + mute = cs35l41_get_acpi_mute_state(cs35l41, handle); + if (mute < 0) { + dev_warn(cs35l41->dev, "Unable to retrieve mute state: %d\n", mute); + return; + } + + dev_dbg(cs35l41->dev, "Requesting mute value: %d\n", mute); + cs35l41->mute_override = (mute > 0); + cs35l41_mute(cs35l41->dev, cs35l41->mute_override); +} + static int cs35l41_hda_bind(struct device *dev, struct device *master, void *master_data) { struct cs35l41_hda *cs35l41 = dev_get_drvdata(dev); @@ -1113,6 +1321,14 @@ comps->playback_hook = cs35l41_hda_playback_hook; comps->pre_playback_hook = cs35l41_hda_pre_playback_hook; comps->post_playback_hook = cs35l41_hda_post_playback_hook; + comps->acpi_notify = cs35l41_acpi_device_notify; + comps->adev = cs35l41->dacpi; + + comps->acpi_notifications_supported = cs35l41_dsm_supported(acpi_device_handle(comps->adev), + CS35L41_DSM_GET_MUTE); + + cs35l41->mute_override = cs35l41_get_acpi_mute_state(cs35l41, + acpi_device_handle(cs35l41->dacpi)) > 0; mutex_unlock(&cs35l41->fw_mutex); @@ -1308,8 +1524,7 @@ return cs35l41_hda_channel_map(cs35l41->dev, 0, NULL, 1, &hw_cfg->spk_pos); } -static int cs35l41_get_speaker_id(struct device *dev, int amp_index, - int num_amps, int fixed_gpio_id) +int cs35l41_get_speaker_id(struct device *dev, int amp_index, int num_amps, int fixed_gpio_id) { struct gpio_desc *speaker_id_desc; int speaker_id = -ENODEV; @@ -1363,49 +1578,6 @@ return speaker_id; } -/* - * Device CLSA010(0/1) doesn't have _DSD so a gpiod_get by the label reset won't work. - * And devices created by serial-multi-instantiate don't have their device struct - * pointing to the correct fwnode, so acpi_dev must be used here. - * And devm functions expect that the device requesting the resource has the correct - * fwnode. - */ -static int cs35l41_no_acpi_dsd(struct cs35l41_hda *cs35l41, struct device *physdev, int id, - const char *hid) -{ - struct cs35l41_hw_cfg *hw_cfg = &cs35l41->hw_cfg; - - /* check I2C address to assign the index */ - cs35l41->index = id == 0x40 ? 0 : 1; - cs35l41->channel_index = 0; - cs35l41->reset_gpio = gpiod_get_index(physdev, NULL, 0, GPIOD_OUT_HIGH); - cs35l41->speaker_id = cs35l41_get_speaker_id(physdev, 0, 0, 2); - hw_cfg->spk_pos = cs35l41->index; - hw_cfg->gpio2.func = CS35L41_INTERRUPT; - hw_cfg->gpio2.valid = true; - hw_cfg->valid = true; - - if (strncmp(hid, "CLSA0100", 8) == 0) { - hw_cfg->bst_type = CS35L41_EXT_BOOST_NO_VSPK_SWITCH; - } else if (strncmp(hid, "CLSA0101", 8) == 0) { - hw_cfg->bst_type = CS35L41_EXT_BOOST; - hw_cfg->gpio1.func = CS35l41_VSPK_SWITCH; - hw_cfg->gpio1.valid = true; - } else { - /* - * Note: CLSA010(0/1) are special cases which use a slightly different design. - * All other HIDs e.g. CSC3551 require valid ACPI _DSD properties to be supported. - */ - dev_err(cs35l41->dev, "Error: ACPI _DSD Properties are missing for HID %s.\n", hid); - hw_cfg->valid = false; - hw_cfg->gpio1.valid = false; - hw_cfg->gpio2.valid = false; - return -EINVAL; - } - - return 0; -} - static int cs35l41_hda_read_acpi(struct cs35l41_hda *cs35l41, const char *hid, int id) { struct cs35l41_hw_cfg *hw_cfg = &cs35l41->hw_cfg; @@ -1423,20 +1595,25 @@ return -ENODEV; } + cs35l41->dacpi = adev; physdev = get_device(acpi_get_first_physical_node(adev)); - acpi_dev_put(adev); sub = acpi_get_subsystem_id(ACPI_HANDLE(physdev)); if (IS_ERR(sub)) sub = NULL; cs35l41->acpi_subsystem_id = sub; + ret = cs35l41_add_dsd_properties(cs35l41, physdev, id, hid); + if (!ret) { + dev_info(cs35l41->dev, "Using extra _DSD properties, bypassing _DSD in ACPI\n"); + goto put_physdev; + } + property = "cirrus,dev-index"; ret = device_property_count_u32(physdev, property); - if (ret <= 0) { - ret = cs35l41_no_acpi_dsd(cs35l41, physdev, id, hid); - goto err_put_physdev; - } + if (ret <= 0) + goto err; + if (ret > ARRAY_SIZE(values)) { ret = -EINVAL; goto err; @@ -1526,7 +1703,11 @@ err: dev_err(cs35l41->dev, "Failed property %s: %d\n", property, ret); -err_put_physdev: + hw_cfg->valid = false; + hw_cfg->gpio1.valid = false; + hw_cfg->gpio2.valid = false; + acpi_dev_put(cs35l41->dacpi); +put_physdev: put_device(physdev); return ret; @@ -1535,7 +1716,7 @@ int cs35l41_hda_probe(struct device *dev, const char *device_name, int id, int irq, struct regmap *regmap) { - unsigned int int_sts, regid, reg_revid, mtl_revid, chipid, int_status; + unsigned int regid, reg_revid; struct cs35l41_hda *cs35l41; int ret; @@ -1569,47 +1750,22 @@ } } if (cs35l41->reset_gpio) { + gpiod_set_value_cansleep(cs35l41->reset_gpio, 0); usleep_range(2000, 2100); gpiod_set_value_cansleep(cs35l41->reset_gpio, 1); } usleep_range(2000, 2100); + regmap_write(cs35l41->regmap, CS35L41_SFT_RESET, CS35L41_SOFTWARE_RESET); + usleep_range(2000, 2100); - ret = regmap_read_poll_timeout(cs35l41->regmap, CS35L41_IRQ1_STATUS4, int_status, - int_status & CS35L41_OTP_BOOT_DONE, 1000, 100000); - if (ret) { - dev_err(cs35l41->dev, "Failed waiting for OTP_BOOT_DONE: %d\n", ret); - goto err; - } - - ret = regmap_read(cs35l41->regmap, CS35L41_IRQ1_STATUS3, &int_sts); - if (ret || (int_sts & CS35L41_OTP_BOOT_ERR)) { - dev_err(cs35l41->dev, "OTP Boot status %x error: %d\n", - int_sts & CS35L41_OTP_BOOT_ERR, ret); - ret = -EIO; - goto err; - } - - ret = regmap_read(cs35l41->regmap, CS35L41_DEVID, ®id); - if (ret) { - dev_err(cs35l41->dev, "Get Device ID failed: %d\n", ret); - goto err; - } - - ret = regmap_read(cs35l41->regmap, CS35L41_REVID, ®_revid); - if (ret) { - dev_err(cs35l41->dev, "Get Revision ID failed: %d\n", ret); + ret = cs35l41_wait_boot_done(cs35l41); + if (ret) goto err; - } - mtl_revid = reg_revid & CS35L41_MTLREVID_MASK; - - chipid = (mtl_revid % 2) ? CS35L41R_CHIP_ID : CS35L41_CHIP_ID; - if (regid != chipid) { - dev_err(cs35l41->dev, "CS35L41 Device ID (%X). Expected ID %X\n", regid, chipid); - ret = -ENODEV; + ret = cs35l41_verify_id(cs35l41, ®id, ®_revid); + if (ret) goto err; - } ret = cs35l41_test_key_unlock(cs35l41->dev, cs35l41->regmap); if (ret) @@ -1629,10 +1785,7 @@ if (ret) goto err; - ret = regmap_multi_reg_write(cs35l41->regmap, cs35l41_hda_mute, - ARRAY_SIZE(cs35l41_hda_mute)); - if (ret) - goto err; + cs35l41_mute(cs35l41->dev, true); INIT_WORK(&cs35l41->fw_load_work, cs35l41_fw_load_work); mutex_init(&cs35l41->fw_mutex); @@ -1669,6 +1822,7 @@ if (cs35l41_safe_reset(cs35l41->regmap, cs35l41->hw_cfg.bst_type)) gpiod_set_value_cansleep(cs35l41->reset_gpio, 0); gpiod_put(cs35l41->reset_gpio); + acpi_dev_put(cs35l41->dacpi); kfree(cs35l41->acpi_subsystem_id); return ret; @@ -1687,6 +1841,8 @@ component_del(cs35l41->dev, &cs35l41_hda_comp_ops); + acpi_dev_put(cs35l41->dacpi); + pm_runtime_put_noidle(cs35l41->dev); if (cs35l41_safe_reset(cs35l41->regmap, cs35l41->hw_cfg.bst_type)) diff -u linux-oracle-6.5-6.5.0/sound/pci/hda/hda_component.h linux-oracle-6.5-6.5.0/sound/pci/hda/hda_component.h --- linux-oracle-6.5-6.5.0/sound/pci/hda/hda_component.h +++ linux-oracle-6.5-6.5.0/sound/pci/hda/hda_component.h @@ -6,6 +6,7 @@ * Cirrus Logic International Semiconductor Ltd. */ +#include #include #define HDA_MAX_COMPONENTS 4 @@ -15,6 +16,9 @@ struct device *dev; char name[HDA_MAX_NAME_SIZE]; struct hda_codec *codec; + struct acpi_device *adev; + bool acpi_notifications_supported; + void (*acpi_notify)(acpi_handle handle, u32 event, struct device *dev); void (*pre_playback_hook)(struct device *dev, int action); void (*playback_hook)(struct device *dev, int action); void (*post_playback_hook)(struct device *dev, int action); diff -u linux-oracle-6.5-6.5.0/sound/pci/hda/patch_realtek.c linux-oracle-6.5-6.5.0/sound/pci/hda/patch_realtek.c --- linux-oracle-6.5-6.5.0/sound/pci/hda/patch_realtek.c +++ linux-oracle-6.5-6.5.0/sound/pci/hda/patch_realtek.c @@ -10,6 +10,7 @@ * Jonathan Woithe */ +#include #include #include #include @@ -4639,6 +4640,22 @@ } } +static void alc245_fixup_hp_mute_led_coefbit(struct hda_codec *codec, + const struct hda_fixup *fix, + int action) +{ + struct alc_spec *spec = codec->spec; + + if (action == HDA_FIXUP_ACT_PRE_PROBE) { + spec->mute_led_polarity = 0; + spec->mute_led_coef.idx = 0x0b; + spec->mute_led_coef.mask = 3 << 2; + spec->mute_led_coef.on = 2 << 2; + spec->mute_led_coef.off = 1 << 2; + snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set); + } +} + /* turn on/off mic-mute LED per capture hook by coef bit */ static int coef_micmute_led_set(struct led_classdev *led_cdev, enum led_brightness brightness) @@ -6688,12 +6705,91 @@ } } +#ifdef CONFIG_ACPI +static void comp_acpi_device_notify(acpi_handle handle, u32 event, void *data) +{ + struct hda_codec *cdc = data; + struct alc_spec *spec = cdc->spec; + int i; + + codec_info(cdc, "ACPI Notification %d\n", event); + + for (i = 0; i < HDA_MAX_COMPONENTS; i++) { + if (spec->comps[i].dev && spec->comps[i].acpi_notify) + spec->comps[i].acpi_notify(acpi_device_handle(spec->comps[i].adev), event, + spec->comps[i].dev); + } +} + +static int comp_bind_acpi(struct device *dev) +{ + struct hda_codec *cdc = dev_to_hda_codec(dev); + struct alc_spec *spec = cdc->spec; + bool support_notifications = false; + struct acpi_device *adev; + int ret; + int i; + + adev = spec->comps[0].adev; + if (!acpi_device_handle(adev)) + return 0; + + for (i = 0; i < HDA_MAX_COMPONENTS; i++) + support_notifications = support_notifications || + spec->comps[i].acpi_notifications_supported; + + if (support_notifications) { + ret = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY, + comp_acpi_device_notify, cdc); + if (ret < 0) { + codec_warn(cdc, "Failed to install notify handler: %d\n", ret); + return 0; + } + + codec_dbg(cdc, "Notify handler installed\n"); + } + + return 0; +} + +static void comp_unbind_acpi(struct device *dev) +{ + struct hda_codec *cdc = dev_to_hda_codec(dev); + struct alc_spec *spec = cdc->spec; + struct acpi_device *adev; + int ret; + + adev = spec->comps[0].adev; + if (!acpi_device_handle(adev)) + return; + + ret = acpi_remove_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY, + comp_acpi_device_notify); + if (ret < 0) + codec_warn(cdc, "Failed to uninstall notify handler: %d\n", ret); +} +#else +static int comp_bind_acpi(struct device *dev) +{ + return 0; +} + +static void comp_unbind_acpi(struct device *dev) +{ +} +#endif + static int comp_bind(struct device *dev) { struct hda_codec *cdc = dev_to_hda_codec(dev); struct alc_spec *spec = cdc->spec; + int ret; + + ret = component_bind_all(dev, spec->comps); + if (ret) + return ret; - return component_bind_all(dev, spec->comps); + return comp_bind_acpi(dev); } static void comp_unbind(struct device *dev) @@ -6701,6 +6797,7 @@ struct hda_codec *cdc = dev_to_hda_codec(dev); struct alc_spec *spec = cdc->spec; + comp_unbind_acpi(dev); component_unbind_all(dev, spec->comps); } @@ -6996,8 +7093,10 @@ snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn); spec->gen.preferred_dacs = preferred_pairs; spec->gen.auto_mute_via_amp = 1; - snd_hda_codec_write_cache(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, - 0x0); /* Make sure 0x14 was disable */ + if (spec->gen.autocfg.speaker_pins[0] != 0x14) { + snd_hda_codec_write_cache(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, + 0x0); /* Make sure 0x14 was disable */ + } } @@ -7165,8 +7264,10 @@ ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, ALC299_FIXUP_PREDATOR_SPK, ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, + ALC289_FIXUP_DELL_SPK1, ALC289_FIXUP_DELL_SPK2, ALC289_FIXUP_DUAL_SPK, + ALC289_FIXUP_RTK_AMP_DUAL_SPK, ALC294_FIXUP_SPK2_TO_DAC1, ALC294_FIXUP_ASUS_DUAL_SPK, ALC285_FIXUP_THINKPAD_X1_GEN7, @@ -7260,7 +7361,11 @@ ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS, ALC236_FIXUP_DELL_DUAL_CODECS, ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI, + ALC245_FIXUP_HP_MUTE_LED_COEFBIT, + ALC245_FIXUP_HP_X360_MUTE_LEDS, ALC287_FIXUP_THINKPAD_I2S_SPK, + ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD, + ALC289_FIXUP_DELL_CS35L41_SPI_2, }; /* A special fixup for Lenovo C940 and Yoga Duet 7; @@ -8487,6 +8592,15 @@ .chained = true, .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE }, + [ALC289_FIXUP_DELL_SPK1] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + { 0x14, 0x90170140 }, + { } + }, + .chained = true, + .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE + }, [ALC289_FIXUP_DELL_SPK2] = { .type = HDA_FIXUP_PINS, .v.pins = (const struct hda_pintbl[]) { @@ -8502,6 +8616,12 @@ .chained = true, .chain_id = ALC289_FIXUP_DELL_SPK2 }, + [ALC289_FIXUP_RTK_AMP_DUAL_SPK] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc285_fixup_speaker2_to_dac1, + .chained = true, + .chain_id = ALC289_FIXUP_DELL_SPK1 + }, [ALC294_FIXUP_SPK2_TO_DAC1] = { .type = HDA_FIXUP_FUNC, .v.func = alc285_fixup_speaker2_to_dac1, @@ -9343,6 +9463,28 @@ .type = HDA_FIXUP_FUNC, .v.func = alc287_fixup_bind_dacs, }, + [ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc287_fixup_bind_dacs, + .chained = true, + .chain_id = ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI, + }, + [ALC245_FIXUP_HP_MUTE_LED_COEFBIT] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc245_fixup_hp_mute_led_coefbit, + }, + [ALC245_FIXUP_HP_X360_MUTE_LEDS] = { + .type = HDA_FIXUP_FUNC, + .v.func = alc245_fixup_hp_mute_led_coefbit, + .chained = true, + .chain_id = ALC245_FIXUP_HP_GPIO_LED + }, + [ALC289_FIXUP_DELL_CS35L41_SPI_2] = { + .type = HDA_FIXUP_FUNC, + .v.func = cs35l41_fixup_spi_two, + .chained = true, + .chain_id = ALC289_FIXUP_DUAL_SPK + }, }; static const struct snd_pci_quirk alc269_fixup_tbl[] = { @@ -9453,13 +9595,15 @@ SND_PCI_QUIRK(0x1028, 0x0c1c, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS), SND_PCI_QUIRK(0x1028, 0x0c1d, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS), SND_PCI_QUIRK(0x1028, 0x0c1e, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS), - SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC245_FIXUP_CS35L41_SPI_2), - SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC245_FIXUP_CS35L41_SPI_2), - SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC245_FIXUP_CS35L41_SPI_2), - SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC245_FIXUP_CS35L41_SPI_2), - SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC245_FIXUP_CS35L41_SPI_2), - SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC245_FIXUP_CS35L41_SPI_2), - SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC245_FIXUP_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC289_FIXUP_DELL_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1028, 0x0cc0, "Dell Oasis 13", ALC289_FIXUP_RTK_AMP_DUAL_SPK), + SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1028, 0x0cc5, "Dell Oasis 14", ALC289_FIXUP_RTK_AMP_DUAL_SPK), SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2), @@ -9585,6 +9729,7 @@ SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT), SND_PCI_QUIRK(0x103c, 0x887a, "HP Laptop 15s-eq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2), + SND_PCI_QUIRK(0x103c, 0x888a, "HP ENVY x360 Convertible 15-eu0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS), SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED), SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED), @@ -9616,6 +9761,7 @@ SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), SND_PCI_QUIRK(0x103c, 0x89d3, "HP EliteBook 645 G9 (MB 89D2)", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF), + SND_PCI_QUIRK(0x103c, 0x8a25, "HP Victus 16-d1xxx (MB 8A25)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT), SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST), SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED), SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED), @@ -9714,7 +9860,8 @@ SND_PCI_QUIRK(0x1043, 0x1d1f, "ASUS ROG Strix G17 2023 (G713PV)", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401), SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE), - SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402", ALC245_FIXUP_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402ZA", ALC245_FIXUP_CS35L41_SPI_2), + SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS UX3402VA", ALC245_FIXUP_CS35L41_SPI_2), SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502), SND_PCI_QUIRK(0x1043, 0x1e12, "ASUS UM3402", ALC287_FIXUP_CS35L41_I2C_2), SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS), @@ -9753,7 +9900,7 @@ SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), - SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC225_FIXUP_HEADSET_JACK), + SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK), SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE), SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC), SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP), @@ -9887,14 +10034,14 @@ SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK), SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK), SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK), - SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI), - SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI), - SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI), - SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI), - SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI), - SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI), - SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI), - SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI), + SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD), + SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD), + SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD), + SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD), + SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD), + SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD), + SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD), + SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD), SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY), SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY), SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), @@ -9976,7 +10123,7 @@ SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC), SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED), SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10), - SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC225_FIXUP_HEADSET_JACK), + SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC295_FIXUP_CHROME_BOOK), SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE), #if 0 @@ -11910,6 +12057,7 @@ SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN), SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN), SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN), + SND_PCI_QUIRK(0x17aa, 0x3364, "Lenovo ThinkCentre M90 Gen5", ALC897_FIXUP_HEADSET_MIC_PIN), SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2), SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD), diff -u linux-oracle-6.5-6.5.0/sound/soc/codecs/cs35l41-lib.c linux-oracle-6.5-6.5.0/sound/soc/codecs/cs35l41-lib.c --- linux-oracle-6.5-6.5.0/sound/soc/codecs/cs35l41-lib.c +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/cs35l41-lib.c @@ -74,6 +74,7 @@ case CS35L41_FABID: case CS35L41_RELID: case CS35L41_OTPID: + case CS35L41_SFT_RESET: case CS35L41_TEST_KEY_CTL: case CS35L41_USER_KEY_CTL: case CS35L41_OTP_CTRL0: @@ -1459,6 +1460,11 @@ continue; } + if (sts == CSPL_MBOX_STS_ERROR || sts == CSPL_MBOX_STS_ERROR2) { + dev_err(dev, "CSPL Error Detected\n"); + return -EINVAL; + } + if (!cs35l41_check_cspl_mbox_sts(cmd, sts)) dev_dbg(dev, "[%u] cmd %u returned invalid sts %u", i, cmd, sts); else diff -u linux-oracle-6.5-6.5.0/sound/soc/intel/common/soc-acpi-intel-mtl-match.c linux-oracle-6.5-6.5.0/sound/soc/intel/common/soc-acpi-intel-mtl-match.c --- linux-oracle-6.5-6.5.0/sound/soc/intel/common/soc-acpi-intel-mtl-match.c +++ linux-oracle-6.5-6.5.0/sound/soc/intel/common/soc-acpi-intel-mtl-match.c @@ -30,6 +30,16 @@ .codecs = {"10EC5682", "RTL5682"}, }; +static const struct snd_soc_acpi_codecs mtl_lt6911_hdmi = { + .num_codecs = 1, + .codecs = {"INTC10B0"} +}; + +static const struct snd_soc_acpi_codecs mtl_essx_83x6 = { + .num_codecs = 3, + .codecs = { "ESSX8316", "ESSX8326", "ESSX8336"}, +}; + struct snd_soc_acpi_mach snd_soc_acpi_intel_mtl_machines[] = { { .comp_ids = &mtl_rt5682_rt5682s_hp, @@ -46,12 +56,27 @@ .sof_tplg_filename = "sof-mtl-max98360a-rt5682.tplg", }, { + .comp_ids = &mtl_essx_83x6, + .drv_name = "mtl_es83x6_c1_h02", + .machine_quirk = snd_soc_acpi_codec_list, + .quirk_data = &mtl_lt6911_hdmi, + .sof_tplg_filename = "sof-mtl-es83x6-ssp1-hdmi-ssp02.tplg", + }, + { .comp_ids = &mtl_rt5682_rt5682s_hp, .drv_name = "mtl_rt1019_rt5682", .machine_quirk = snd_soc_acpi_codec_list, .quirk_data = &mtl_rt1019p_amp, .sof_tplg_filename = "sof-mtl-rt1019-rt5682.tplg", }, + { + .comp_ids = &mtl_essx_83x6, + .drv_name = "sof-essx8336", + .sof_tplg_filename = "sof-mtl-es8336", /* the tplg suffix is added at run time */ + .tplg_quirk_mask = SND_SOC_ACPI_TPLG_INTEL_SSP_NUMBER | + SND_SOC_ACPI_TPLG_INTEL_SSP_MSB | + SND_SOC_ACPI_TPLG_INTEL_DMIC_NUMBER, + }, {}, }; EXPORT_SYMBOL_GPL(snd_soc_acpi_intel_mtl_machines); @@ -119,6 +144,24 @@ } }; +static const struct snd_soc_acpi_adr_device rt713_0_single_adr[] = { + { + .adr = 0x000031025D071301ull, + .num_endpoints = 1, + .endpoints = &single_endpoint, + .name_prefix = "rt713" + } +}; + +static const struct snd_soc_acpi_adr_device rt1713_3_single_adr[] = { + { + .adr = 0x000331025D171301ull, + .num_endpoints = 1, + .endpoints = &single_endpoint, + .name_prefix = "rt713-dmic" + } +}; + static const struct snd_soc_acpi_adr_device mx8373_0_adr[] = { { .adr = 0x000023019F837300ull, @@ -161,6 +204,24 @@ } }; +static const struct snd_soc_acpi_adr_device rt1316_1_group2_adr[] = { + { + .adr = 0x000131025D131601ull, + .num_endpoints = 1, + .endpoints = &spk_l_endpoint, + .name_prefix = "rt1316-1" + } +}; + +static const struct snd_soc_acpi_adr_device rt1316_2_group2_adr[] = { + { + .adr = 0x000230025D131601ull, + .num_endpoints = 1, + .endpoints = &spk_r_endpoint, + .name_prefix = "rt1316-2" + } +}; + static const struct snd_soc_acpi_adr_device rt1318_1_group1_adr[] = { { .adr = 0x000130025D131801ull, @@ -278,6 +339,49 @@ {} }; +static const struct snd_soc_acpi_link_adr mtl_rt713_l0_rt1316_l12_rt1713_l3[] = { + { + .mask = BIT(0), + .num_adr = ARRAY_SIZE(rt713_0_single_adr), + .adr_d = rt713_0_single_adr, + }, + { + .mask = BIT(1), + .num_adr = ARRAY_SIZE(rt1316_1_group2_adr), + .adr_d = rt1316_1_group2_adr, + }, + { + .mask = BIT(2), + .num_adr = ARRAY_SIZE(rt1316_2_group2_adr), + .adr_d = rt1316_2_group2_adr, + }, + { + .mask = BIT(3), + .num_adr = ARRAY_SIZE(rt1713_3_single_adr), + .adr_d = rt1713_3_single_adr, + }, + {} +}; + +static const struct snd_soc_acpi_link_adr mtl_rt713_l0_rt1316_l12[] = { + { + .mask = BIT(0), + .num_adr = ARRAY_SIZE(rt713_0_single_adr), + .adr_d = rt713_0_single_adr, + }, + { + .mask = BIT(1), + .num_adr = ARRAY_SIZE(rt1316_1_group2_adr), + .adr_d = rt1316_1_group2_adr, + }, + { + .mask = BIT(2), + .num_adr = ARRAY_SIZE(rt1316_2_group2_adr), + .adr_d = rt1316_2_group2_adr, + }, + {} +}; + static const struct snd_soc_acpi_adr_device mx8363_2_adr[] = { { .adr = 0x000230019F836300ull, @@ -339,6 +443,18 @@ .sof_tplg_filename = "sof-mtl-rt715-rt711-rt1308-mono.tplg", }, { + .link_mask = GENMASK(3, 0), + .links = mtl_rt713_l0_rt1316_l12_rt1713_l3, + .drv_name = "sof_sdw", + .sof_tplg_filename = "sof-mtl-rt713-l0-rt1316-l12-rt1713-l3.tplg", + }, + { + .link_mask = GENMASK(2, 0), + .links = mtl_rt713_l0_rt1316_l12, + .drv_name = "sof_sdw", + .sof_tplg_filename = "sof-mtl-rt713-l0-rt1316-l12.tplg", + }, + { .link_mask = BIT(3) | BIT(0), .links = mtl_712_only, .drv_name = "sof_sdw", diff -u linux-oracle-6.5-6.5.0/sound/soc/sof/ipc4-topology.c linux-oracle-6.5-6.5.0/sound/soc/sof/ipc4-topology.c --- linux-oracle-6.5-6.5.0/sound/soc/sof/ipc4-topology.c +++ linux-oracle-6.5-6.5.0/sound/soc/sof/ipc4-topology.c @@ -231,7 +231,7 @@ ret = sof_update_ipc_object(scomp, available_fmt, SOF_AUDIO_FMT_NUM_TOKENS, swidget->tuples, - swidget->num_tuples, sizeof(available_fmt), 1); + swidget->num_tuples, sizeof(*available_fmt), 1); if (ret) { dev_err(scomp->dev, "Failed to parse audio format token count\n"); return ret; diff -u linux-oracle-6.5-6.5.0/tools/lib/bpf/libbpf.c linux-oracle-6.5-6.5.0/tools/lib/bpf/libbpf.c --- linux-oracle-6.5-6.5.0/tools/lib/bpf/libbpf.c +++ linux-oracle-6.5-6.5.0/tools/lib/bpf/libbpf.c @@ -8356,6 +8356,7 @@ bpf_object__elf_finish(obj); bpf_object_unload(obj); btf__free(obj->btf); + btf__free(obj->btf_vmlinux); btf_ext__free(obj->btf_ext); for (i = 0; i < obj->nr_maps; i++) diff -u linux-oracle-6.5-6.5.0/tools/testing/selftests/kselftest/runner.sh linux-oracle-6.5-6.5.0/tools/testing/selftests/kselftest/runner.sh --- linux-oracle-6.5-6.5.0/tools/testing/selftests/kselftest/runner.sh +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/kselftest/runner.sh @@ -36,7 +36,8 @@ { # Make sure tests will time out if utility is available. if [ -x /usr/bin/timeout ] && [ $kselftest_timeout -gt 0 ] ; then - /usr/bin/timeout --foreground "$kselftest_timeout" $1 + /usr/bin/timeout --foreground "$kselftest_timeout" \ + /usr/bin/timeout "$kselftest_timeout" $1 else $1 fi diff -u linux-oracle-6.5-6.5.0/tools/testing/selftests/net/tls.c linux-oracle-6.5-6.5.0/tools/testing/selftests/net/tls.c --- linux-oracle-6.5-6.5.0/tools/testing/selftests/net/tls.c +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/net/tls.c @@ -494,11 +494,11 @@ msg.msg_iov = &vec; msg.msg_iovlen = 1; - EXPECT_EQ(sendmsg(self->cfd, &msg, 0), send_len); + EXPECT_EQ(sendmsg(self->fd, &msg, 0), send_len); } while (recvs++ < sends) { - EXPECT_NE(recv(self->fd, mem, send_len, 0), -1); + EXPECT_NE(recv(self->cfd, mem, send_len, 0), -1); } free(mem); @@ -527,9 +527,9 @@ msg.msg_iov = vec; msg.msg_iovlen = iov_len; - EXPECT_EQ(sendmsg(self->cfd, &msg, 0), total_len); + EXPECT_EQ(sendmsg(self->fd, &msg, 0), total_len); buf = malloc(total_len); - EXPECT_NE(recv(self->fd, buf, total_len, 0), -1); + EXPECT_NE(recv(self->cfd, buf, total_len, 0), -1); for (i = 0; i < iov_len; i++) { EXPECT_EQ(memcmp(test_strs[i], buf + len_cmp, strlen(test_strs[i])), only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/Documentation/admin-guide/cgroup-v1/memory.rst +++ linux-oracle-6.5-6.5.0/Documentation/admin-guide/cgroup-v1/memory.rst @@ -92,8 +92,13 @@ memory.oom_control set/show oom controls. memory.numa_stat show the number of memory usage per numa node - memory.kmem.limit_in_bytes This knob is deprecated and writing to - it will return -ENOTSUPP. + memory.kmem.limit_in_bytes Deprecated knob to set and read the kernel + memory hard limit. Kernel hard limit is not + supported since 5.16. Writing any value to + do file will not have any effect same as if + nokmem kernel parameter was specified. + Kernel memory is still charged and reported + by memory.kmem.usage_in_bytes. memory.kmem.usage_in_bytes show current kernel memory allocation memory.kmem.failcnt show the number of kernel memory usage hits limits only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/Documentation/arch/arm64/silicon-errata.rst +++ linux-oracle-6.5-6.5.0/Documentation/arch/arm64/silicon-errata.rst @@ -63,6 +63,8 @@ +----------------+-----------------+-----------------+-----------------------------+ | ARM | Cortex-A510 | #1902691 | ARM64_ERRATUM_1902691 | +----------------+-----------------+-----------------+-----------------------------+ +| ARM | Cortex-A520 | #2966298 | ARM64_ERRATUM_2966298 | ++----------------+-----------------+-----------------+-----------------------------+ | ARM | Cortex-A53 | #826319 | ARM64_ERRATUM_826319 | +----------------+-----------------+-----------------+-----------------------------+ | ARM | Cortex-A53 | #827319 | ARM64_ERRATUM_827319 | @@ -198,6 +200,9 @@ +----------------+-----------------+-----------------+-----------------------------+ | Hisilicon | Hip08 SMMU PMCG | #162001800 | N/A | +----------------+-----------------+-----------------+-----------------------------+ +| Hisilicon | Hip08 SMMU PMCG | #162001900 | N/A | +| | Hip09 SMMU PMCG | | | ++----------------+-----------------+-----------------+-----------------------------+ +----------------+-----------------+-----------------+-----------------------------+ | Qualcomm Tech. | Kryo/Falkor v1 | E1003 | QCOM_FALKOR_ERRATUM_1003 | +----------------+-----------------+-----------------+-----------------------------+ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/Documentation/devicetree/bindings/clock/xlnx,versal-clk.yaml +++ linux-oracle-6.5-6.5.0/Documentation/devicetree/bindings/clock/xlnx,versal-clk.yaml @@ -14,8 +14,6 @@ reads required input clock frequencies from the devicetree and acts as clock provider for all clock consumers of PS clocks. -select: false - properties: compatible: const: xlnx,versal-clk only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/Documentation/devicetree/bindings/interrupt-controller/renesas,rzg2l-irqc.yaml +++ linux-oracle-6.5-6.5.0/Documentation/devicetree/bindings/interrupt-controller/renesas,rzg2l-irqc.yaml @@ -31,8 +31,9 @@ - const: renesas,rzg2l-irqc '#interrupt-cells': - description: The first cell should contain external interrupt number (IRQ0-7) and the - second cell is used to specify the flag. + description: The first cell should contain a macro RZG2L_{NMI,IRQX} included in the + include/dt-bindings/interrupt-controller/irqc-rzg2l.h and the second + cell is used to specify the flag. const: 2 '#address-cells': only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml +++ linux-oracle-6.5-6.5.0/Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml @@ -59,7 +59,6 @@ compatible: contains: enum: - - fsl,imx8mq-csi - fsl,imx8mm-csi then: required: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/Documentation/filesystems/overlayfs.rst +++ linux-oracle-6.5-6.5.0/Documentation/filesystems/overlayfs.rst @@ -339,6 +339,18 @@ rightmost one and going left. In the above example lower1 will be the top, lower2 the middle and lower3 the bottom layer. +Note: directory names containing colons can be provided as lower layer by +escaping the colons with a single backslash. For example: + + mount -t overlay overlay -olowerdir=/a\:lower\:\:dir /merged + +Since kernel version v6.5, directory names containing colons can also +be provided as lower layer using the fsconfig syscall from new mount api: + + fsconfig(fs_fd, FSCONFIG_SET_STRING, "lowerdir", "/a:lower::dir", 0); + +In the latter case, colons in lower layer directory names will be escaped +as an octal characters (\072) when displayed in /proc/self/mountinfo. Metadata only copy up --------------------- only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/Documentation/networking/ip-sysctl.rst +++ linux-oracle-6.5-6.5.0/Documentation/networking/ip-sysctl.rst @@ -2287,6 +2287,14 @@ Default: 1 +accept_ra_min_lft - INTEGER + Minimum acceptable lifetime value in Router Advertisement. + + RA sections with a lifetime less than this value shall be + ignored. Zero lifetimes stay unaffected. + + Default: 0 + accept_ra_pinfo - BOOLEAN Learn Prefix Information in Router Advertisement. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/Documentation/sound/designs/midi-2.0.rst +++ linux-oracle-6.5-6.5.0/Documentation/sound/designs/midi-2.0.rst @@ -74,8 +74,8 @@ doesn't respond to the new UMP inquiries, the driver falls back and builds the topology based on Group Terminal Block (GTB) information from the USB descriptor. Some device might be screwed up by the -unexpected UMP command; in such a case, pass `midi2_probe=0` option to -snd-usb-audio driver for skipping the UMP v1.1 inquiries. +unexpected UMP command; in such a case, pass `midi2_ump_probe=0` +option to snd-usb-audio driver for skipping the UMP v1.1 inquiries. When the MIDI 2.0 device is probed, the kernel creates a rawmidi device for each UMP Endpoint of the device. Its device name is only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arc/include/asm/atomic-llsc.h +++ linux-oracle-6.5-6.5.0/arch/arc/include/asm/atomic-llsc.h @@ -18,7 +18,7 @@ : [val] "=&r" (val) /* Early clobber to prevent reg reuse */ \ : [ctr] "r" (&v->counter), /* Not "m": llock only supports reg direct addr mode */ \ [i] "ir" (i) \ - : "cc"); \ + : "cc", "memory"); \ } \ #define ATOMIC_OP_RETURN(op, asm_op) \ @@ -34,7 +34,7 @@ : [val] "=&r" (val) \ : [ctr] "r" (&v->counter), \ [i] "ir" (i) \ - : "cc"); \ + : "cc", "memory"); \ \ return val; \ } @@ -56,7 +56,7 @@ [orig] "=&r" (orig) \ : [ctr] "r" (&v->counter), \ [i] "ir" (i) \ - : "cc"); \ + : "cc", "memory"); \ \ return orig; \ } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arc/include/asm/atomic64-arcv2.h +++ linux-oracle-6.5-6.5.0/arch/arc/include/asm/atomic64-arcv2.h @@ -60,7 +60,7 @@ " bnz 1b \n" \ : "=&r"(val) \ : "r"(&v->counter), "ir"(a) \ - : "cc"); \ + : "cc", "memory"); \ } \ #define ATOMIC64_OP_RETURN(op, op1, op2) \ @@ -77,7 +77,7 @@ " bnz 1b \n" \ : [val] "=&r"(val) \ : "r"(&v->counter), "ir"(a) \ - : "cc"); /* memory clobber comes from smp_mb() */ \ + : "cc", "memory"); \ \ return val; \ } @@ -99,7 +99,7 @@ " bnz 1b \n" \ : "=&r"(orig), "=&r"(val) \ : "r"(&v->counter), "ir"(a) \ - : "cc"); /* memory clobber comes from smp_mb() */ \ + : "cc", "memory"); \ \ return orig; \ } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/boot/dts/broadcom/bcm4708-linksys-ea6500-v2.dts +++ linux-oracle-6.5-6.5.0/arch/arm/boot/dts/broadcom/bcm4708-linksys-ea6500-v2.dts @@ -19,7 +19,8 @@ memory@0 { device_type = "memory"; - reg = <0x00000000 0x08000000>; + reg = <0x00000000 0x08000000>, + <0x88000000 0x08000000>; }; gpio-keys { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/boot/dts/qcom/qcom-msm8974pro-sony-xperia-shinano-castor.dts +++ linux-oracle-6.5-6.5.0/arch/arm/boot/dts/qcom/qcom-msm8974pro-sony-xperia-shinano-castor.dts @@ -125,15 +125,15 @@ syna,startup-delay-ms = <100>; - rmi-f01@1 { + rmi4-f01@1 { reg = <0x1>; - syna,nosleep = <1>; + syna,nosleep-mode = <1>; }; - rmi-f11@11 { + rmi4-f11@11 { reg = <0x11>; - syna,f11-flip-x = <1>; syna,sensor-type = <1>; + touchscreen-inverted-x; }; }; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/boot/dts/samsung/exynos4210-i9100.dts +++ linux-oracle-6.5-6.5.0/arch/arm/boot/dts/samsung/exynos4210-i9100.dts @@ -207,8 +207,8 @@ power-on-delay = <10>; reset-delay = <10>; - panel-width-mm = <90>; - panel-height-mm = <154>; + panel-width-mm = <56>; + panel-height-mm = <93>; display-timings { timing { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/boot/dts/ti/omap/motorola-mapphone-common.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm/boot/dts/ti/omap/motorola-mapphone-common.dtsi @@ -614,12 +614,12 @@ /* Configure pwm clock source for timers 8 & 9 */ &timer8 { assigned-clocks = <&abe_clkctrl OMAP4_TIMER8_CLKCTRL 24>; - assigned-clock-parents = <&sys_clkin_ck>; + assigned-clock-parents = <&sys_32k_ck>; }; &timer9 { assigned-clocks = <&l4_per_clkctrl OMAP4_TIMER9_CLKCTRL 24>; - assigned-clock-parents = <&sys_clkin_ck>; + assigned-clock-parents = <&sys_32k_ck>; }; /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/boot/dts/ti/omap/omap3-cpu-thermal.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm/boot/dts/ti/omap/omap3-cpu-thermal.dtsi @@ -12,8 +12,7 @@ polling-delay = <1000>; /* milliseconds */ coefficients = <0 20000>; - /* sensor ID */ - thermal-sensors = <&bandgap 0>; + thermal-sensors = <&bandgap>; cpu_trips: trips { cpu_alert0: cpu_alert { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/boot/dts/ti/omap/omap4-cpu-thermal.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm/boot/dts/ti/omap/omap4-cpu-thermal.dtsi @@ -12,7 +12,10 @@ polling-delay-passive = <250>; /* milliseconds */ polling-delay = <1000>; /* milliseconds */ - /* sensor ID */ + /* + * See 44xx files for single sensor addressing, omap5 and dra7 need + * also sensor ID for addressing. + */ thermal-sensors = <&bandgap 0>; cpu_trips: trips { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/boot/dts/ti/omap/omap443x.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm/boot/dts/ti/omap/omap443x.dtsi @@ -69,6 +69,7 @@ }; &cpu_thermal { + thermal-sensors = <&bandgap>; coefficients = <0 20000>; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/boot/dts/ti/omap/omap4460.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm/boot/dts/ti/omap/omap4460.dtsi @@ -79,6 +79,7 @@ }; &cpu_thermal { + thermal-sensors = <&bandgap>; coefficients = <348 (-9301)>; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/kernel/hw_breakpoint.c +++ linux-oracle-6.5-6.5.0/arch/arm/kernel/hw_breakpoint.c @@ -626,7 +626,7 @@ hw->address &= ~alignment_mask; hw->ctrl.len <<= offset; - if (is_default_overflow_handler(bp)) { + if (uses_default_overflow_handler(bp)) { /* * Mismatch breakpoints are required for single-stepping * breakpoints. @@ -798,7 +798,7 @@ * Otherwise, insert a temporary mismatch breakpoint so that * we can single-step over the watchpoint trigger. */ - if (!is_default_overflow_handler(wp)) + if (!uses_default_overflow_handler(wp)) continue; step: enable_single_step(wp, instruction_pointer(regs)); @@ -811,7 +811,7 @@ info->trigger = addr; pr_debug("watchpoint fired: address = 0x%x\n", info->trigger); perf_bp_event(wp, regs); - if (is_default_overflow_handler(wp)) + if (uses_default_overflow_handler(wp)) enable_single_step(wp, instruction_pointer(regs)); } @@ -886,7 +886,7 @@ info->trigger = addr; pr_debug("breakpoint fired: address = 0x%x\n", addr); perf_bp_event(bp, regs); - if (is_default_overflow_handler(bp)) + if (uses_default_overflow_handler(bp)) enable_single_step(bp, addr); goto unlock; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm/kernel/machine_kexec.c +++ linux-oracle-6.5-6.5.0/arch/arm/kernel/machine_kexec.c @@ -94,16 +94,28 @@ } } +static DEFINE_PER_CPU(call_single_data_t, cpu_stop_csd) = + CSD_INIT(machine_crash_nonpanic_core, NULL); + void crash_smp_send_stop(void) { static int cpus_stopped; unsigned long msecs; + call_single_data_t *csd; + int cpu, this_cpu = raw_smp_processor_id(); if (cpus_stopped) return; atomic_set(&waiting_for_crash_ipi, num_online_cpus() - 1); - smp_call_function(machine_crash_nonpanic_core, NULL, false); + for_each_online_cpu(cpu) { + if (cpu == this_cpu) + continue; + + csd = &per_cpu(cpu_stop_csd, cpu); + smp_call_function_single_async(cpu, csd); + } + msecs = 1000; /* Wait at most a second for the other cpus to stop */ while ((atomic_read(&waiting_for_crash_ipi) > 0) && msecs) { mdelay(1); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/freescale/Makefile +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/freescale/Makefile @@ -66,6 +66,7 @@ dtb-$(CONFIG_ARCH_MXC) += imx8mm-nitrogen-r2.dtb dtb-$(CONFIG_ARCH_MXC) += imx8mm-phg.dtb dtb-$(CONFIG_ARCH_MXC) += imx8mm-phyboard-polis-rdk.dtb +dtb-$(CONFIG_ARCH_MXC) += imx8mm-prt8mm.dtb dtb-$(CONFIG_ARCH_MXC) += imx8mm-tqma8mqml-mba8mx.dtb dtb-$(CONFIG_ARCH_MXC) += imx8mm-var-som-symphony.dtb dtb-$(CONFIG_ARCH_MXC) += imx8mm-venice-gw71xx-0x.dtb only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/freescale/imx8mm-evk.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/freescale/imx8mm-evk.dtsi @@ -26,7 +26,7 @@ port { hdmi_connector_in: endpoint { - remote-endpoint = <&adv7533_out>; + remote-endpoint = <&adv7535_out>; }; }; }; @@ -72,6 +72,13 @@ enable-active-high; }; + reg_vddext_3v3: regulator-vddext-3v3 { + compatible = "regulator-fixed"; + regulator-name = "VDDEXT_3V3"; + regulator-min-microvolt = <3300000>; + regulator-max-microvolt = <3300000>; + }; + backlight: backlight { compatible = "pwm-backlight"; pwms = <&pwm1 0 5000000 0>; @@ -317,15 +324,16 @@ hdmi@3d { compatible = "adi,adv7535"; - reg = <0x3d>, <0x3c>, <0x3e>, <0x3f>; - reg-names = "main", "cec", "edid", "packet"; + reg = <0x3d>; + interrupt-parent = <&gpio1>; + interrupts = <9 IRQ_TYPE_EDGE_FALLING>; adi,dsi-lanes = <4>; - - adi,input-depth = <8>; - adi,input-colorspace = "rgb"; - adi,input-clock = "1x"; - adi,input-style = <1>; - adi,input-justification = "evenly"; + avdd-supply = <&buck5_reg>; + dvdd-supply = <&buck5_reg>; + pvdd-supply = <&buck5_reg>; + a2vdd-supply = <&buck5_reg>; + v3p3-supply = <®_vddext_3v3>; + v1p2-supply = <&buck5_reg>; ports { #address-cells = <1>; @@ -334,7 +342,7 @@ port@0 { reg = <0>; - adv7533_in: endpoint { + adv7535_in: endpoint { remote-endpoint = <&dsi_out>; }; }; @@ -342,7 +350,7 @@ port@1 { reg = <1>; - adv7533_out: endpoint { + adv7535_out: endpoint { remote-endpoint = <&hdmi_connector_in>; }; }; @@ -408,7 +416,7 @@ reg = <1>; dsi_out: endpoint { - remote-endpoint = <&adv7533_in>; + remote-endpoint = <&adv7535_in>; data-lanes = <1 2 3 4>; }; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/freescale/imx8mp-beacon-kit.dts +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/freescale/imx8mp-beacon-kit.dts @@ -381,9 +381,10 @@ &sai3 { pinctrl-names = "default"; pinctrl-0 = <&pinctrl_sai3>; - assigned-clocks = <&clk IMX8MP_CLK_SAI3>; + assigned-clocks = <&clk IMX8MP_CLK_SAI3>, + <&clk IMX8MP_AUDIO_PLL2> ; assigned-clock-parents = <&clk IMX8MP_AUDIO_PLL2_OUT>; - assigned-clock-rates = <12288000>; + assigned-clock-rates = <12288000>, <361267200>; fsl,sai-mclk-direction-output; status = "okay"; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/freescale/imx8mp.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/freescale/imx8mp.dtsi @@ -794,6 +794,12 @@ reg = ; clocks = <&clk IMX8MP_CLK_AUDIO_ROOT>, <&clk IMX8MP_CLK_AUDIO_AXI>; + assigned-clocks = <&clk IMX8MP_CLK_AUDIO_AHB>, + <&clk IMX8MP_CLK_AUDIO_AXI_SRC>; + assigned-clock-parents = <&clk IMX8MP_SYS_PLL1_800M>, + <&clk IMX8MP_SYS_PLL1_800M>; + assigned-clock-rates = <400000000>, + <600000000>; }; pgc_gpu2d: power-domain@6 { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/mediatek/mt7622.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/mediatek/mt7622.dtsi @@ -905,7 +905,7 @@ status = "disabled"; }; - sata_phy: t-phy@1a243000 { + sata_phy: t-phy { compatible = "mediatek,mt7622-tphy", "mediatek,generic-tphy-v1"; #address-cells = <2>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/mediatek/mt7986a.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/mediatek/mt7986a.dtsi @@ -434,7 +434,7 @@ }; }; - pcie_phy: t-phy@11c00000 { + pcie_phy: t-phy { compatible = "mediatek,mt7986-tphy", "mediatek,generic-tphy-v2"; #address-cells = <2>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/mediatek/mt8195-demo.dts +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/mediatek/mt8195-demo.dts @@ -48,7 +48,7 @@ memory@40000000 { device_type = "memory"; - reg = <0 0x40000000 0 0x80000000>; + reg = <0 0x40000000 0x2 0x00000000>; }; reserved-memory { @@ -56,13 +56,8 @@ #size-cells = <2>; ranges; - /* 2 MiB reserved for ARM Trusted Firmware (BL31) */ - bl31_secmon_reserved: secmon@54600000 { - no-map; - reg = <0 0x54600000 0x0 0x200000>; - }; - - /* 12 MiB reserved for OP-TEE (BL32) + /* + * 12 MiB reserved for OP-TEE (BL32) * +-----------------------+ 0x43e0_0000 * | SHMEM 2MiB | * +-----------------------+ 0x43c0_0000 @@ -75,6 +70,34 @@ no-map; reg = <0 0x43200000 0 0x00c00000>; }; + + scp_mem: memory@50000000 { + compatible = "shared-dma-pool"; + reg = <0 0x50000000 0 0x2900000>; + no-map; + }; + + vpu_mem: memory@53000000 { + compatible = "shared-dma-pool"; + reg = <0 0x53000000 0 0x1400000>; /* 20 MB */ + }; + + /* 2 MiB reserved for ARM Trusted Firmware (BL31) */ + bl31_secmon_mem: memory@54600000 { + no-map; + reg = <0 0x54600000 0x0 0x200000>; + }; + + snd_dma_mem: memory@60000000 { + compatible = "shared-dma-pool"; + reg = <0 0x60000000 0 0x1100000>; + no-map; + }; + + apu_mem: memory@62000000 { + compatible = "shared-dma-pool"; + reg = <0 0x62000000 0 0x1400000>; /* 20 MB */ + }; }; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/mediatek/mt8195.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/mediatek/mt8195.dtsi @@ -313,6 +313,7 @@ interrupts = ; cpus = <&cpu0>, <&cpu1>, <&cpu2>, <&cpu3>, <&cpu4>, <&cpu5>, <&cpu6>, <&cpu7>; + status = "fail"; }; dmic_codec: dmic-codec { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/nvidia/tegra186.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/nvidia/tegra186.dtsi @@ -135,7 +135,8 @@ clocks = <&bpmp TEGRA186_CLK_AHUB>; clock-names = "ahub"; assigned-clocks = <&bpmp TEGRA186_CLK_AHUB>; - assigned-clock-parents = <&bpmp TEGRA186_CLK_PLL_A_OUT0>; + assigned-clock-parents = <&bpmp TEGRA186_CLK_PLLP_OUT0>; + assigned-clock-rates = <81600000>; #address-cells = <1>; #size-cells = <1>; ranges = <0x02900800 0x02900800 0x11800>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/nvidia/tegra194.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/nvidia/tegra194.dtsi @@ -231,7 +231,8 @@ clocks = <&bpmp TEGRA194_CLK_AHUB>; clock-names = "ahub"; assigned-clocks = <&bpmp TEGRA194_CLK_AHUB>; - assigned-clock-parents = <&bpmp TEGRA194_CLK_PLLA_OUT0>; + assigned-clock-parents = <&bpmp TEGRA194_CLK_PLLP_OUT0>; + assigned-clock-rates = <81600000>; status = "disabled"; #address-cells = <2>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/nvidia/tegra210.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/nvidia/tegra210.dtsi @@ -1386,7 +1386,8 @@ clocks = <&tegra_car TEGRA210_CLK_D_AUDIO>; clock-names = "ahub"; assigned-clocks = <&tegra_car TEGRA210_CLK_D_AUDIO>; - assigned-clock-parents = <&tegra_car TEGRA210_CLK_PLL_A_OUT0>; + assigned-clock-parents = <&tegra_car TEGRA210_CLK_PLL_P>; + assigned-clock-rates = <81600000>; #address-cells = <1>; #size-cells = <1>; ranges = <0x702d0000 0x702d0000 0x0000e400>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/nvidia/tegra234.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/nvidia/tegra234.dtsi @@ -180,7 +180,8 @@ clocks = <&bpmp TEGRA234_CLK_AHUB>; clock-names = "ahub"; assigned-clocks = <&bpmp TEGRA234_CLK_AHUB>; - assigned-clock-parents = <&bpmp TEGRA234_CLK_PLLA_OUT0>; + assigned-clock-parents = <&bpmp TEGRA234_CLK_PLLP_OUT0>; + assigned-clock-rates = <81600000>; status = "disabled"; #address-cells = <2>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/qcom/sdm845-db845c.dts +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sdm845-db845c.dts @@ -101,6 +101,14 @@ }; }; + reserved-memory { + /* Cont splash region set up by the bootloader */ + cont_splash_mem: framebuffer@9d400000 { + reg = <0x0 0x9d400000 0x0 0x2400000>; + no-map; + }; + }; + lt9611_1v8: lt9611-vdd18-regulator { compatible = "regulator-fixed"; regulator-name = "LT9611_1V8"; @@ -506,6 +514,7 @@ }; &mdss { + memory-region = <&cont_splash_mem>; status = "okay"; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dts +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dts @@ -79,7 +79,7 @@ reg = <0x0 0xffc40000 0x0 0xc0000>; record-size = <0x1000>; console-size = <0x40000>; - msg-size = <0x20000 0x20000>; + pmsg-size = <0x20000>; }; cmdline_mem: memory@ffd00000 { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dts +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm6125-xiaomi-laurel-sprout.dts @@ -52,7 +52,7 @@ reg = <0x0 0xffc40000 0x0 0xc0000>; record-size = <0x1000>; console-size = <0x40000>; - msg-size = <0x20000 0x20000>; + pmsg-size = <0x20000>; }; cmdline_mem: memory@ffd00000 { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano.dtsi @@ -222,7 +222,7 @@ reg = <0x0 0xffc00000 0x0 0x100000>; record-size = <0x1000>; console-size = <0x40000>; - msg-size = <0x20000 0x20000>; + pmsg-size = <0x20000>; ecc-size = <16>; no-map; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/renesas/rzg2l-smarc-som.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/renesas/rzg2l-smarc-som.dtsi @@ -100,7 +100,7 @@ rxc-skew-psec = <2400>; txc-skew-psec = <2400>; rxdv-skew-psec = <0>; - txdv-skew-psec = <0>; + txen-skew-psec = <0>; rxd0-skew-psec = <0>; rxd1-skew-psec = <0>; rxd2-skew-psec = <0>; @@ -128,7 +128,7 @@ rxc-skew-psec = <2400>; txc-skew-psec = <2400>; rxdv-skew-psec = <0>; - txdv-skew-psec = <0>; + txen-skew-psec = <0>; rxd0-skew-psec = <0>; rxd1-skew-psec = <0>; rxd2-skew-psec = <0>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/renesas/rzg2lc-smarc-som.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/renesas/rzg2lc-smarc-som.dtsi @@ -77,7 +77,7 @@ rxc-skew-psec = <2400>; txc-skew-psec = <2400>; rxdv-skew-psec = <0>; - txdv-skew-psec = <0>; + txen-skew-psec = <0>; rxd0-skew-psec = <0>; rxd1-skew-psec = <0>; rxd2-skew-psec = <0>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/boot/dts/renesas/rzg2ul-smarc-som.dtsi +++ linux-oracle-6.5-6.5.0/arch/arm64/boot/dts/renesas/rzg2ul-smarc-som.dtsi @@ -83,7 +83,7 @@ rxc-skew-psec = <2400>; txc-skew-psec = <2400>; rxdv-skew-psec = <0>; - txdv-skew-psec = <0>; + txen-skew-psec = <0>; rxd0-skew-psec = <0>; rxd1-skew-psec = <0>; rxd2-skew-psec = <0>; @@ -112,7 +112,7 @@ rxc-skew-psec = <2400>; txc-skew-psec = <2400>; rxdv-skew-psec = <0>; - txdv-skew-psec = <0>; + txen-skew-psec = <0>; rxd0-skew-psec = <0>; rxd1-skew-psec = <0>; rxd2-skew-psec = <0>; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/include/asm/acpi.h +++ linux-oracle-6.5-6.5.0/arch/arm64/include/asm/acpi.h @@ -9,6 +9,7 @@ #ifndef _ASM_ACPI_H #define _ASM_ACPI_H +#include #include #include #include @@ -42,6 +43,25 @@ #define ACPI_MADT_GICC_SPE (offsetof(struct acpi_madt_generic_interrupt, \ spe_interrupt) + sizeof(u16)) +/* + * Arm® Functional Fixed Hardware Specification Version 1.2. + * Table 2: Arm Architecture context loss flags + */ +#define CPUIDLE_CORE_CTXT BIT(0) /* Core context Lost */ + +static inline unsigned int arch_get_idle_state_flags(u32 arch_flags) +{ + if (arch_flags & CPUIDLE_CORE_CTXT) + return CPUIDLE_FLAG_TIMER_STOP; + + return 0; +} +#define arch_get_idle_state_flags arch_get_idle_state_flags + +#define CPUIDLE_TRACE_CTXT BIT(1) /* Trace context loss */ +#define CPUIDLE_GICR_CTXT BIT(2) /* GICR */ +#define CPUIDLE_GICD_CTXT BIT(3) /* GICD */ + /* Basic configuration for ACPI */ #ifdef CONFIG_ACPI pgprot_t __acpi_get_mem_attribute(phys_addr_t addr); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/include/asm/cpufeature.h +++ linux-oracle-6.5-6.5.0/arch/arm64/include/asm/cpufeature.h @@ -663,7 +663,7 @@ isar2 = read_sanitised_ftr_reg(SYS_ID_AA64ISAR2_EL1); return cpuid_feature_extract_unsigned_field(isar2, - ID_AA64ISAR2_EL1_BC_SHIFT); + ID_AA64ISAR2_EL1_CLRBHB_SHIFT); } const struct cpumask *system_32bit_el0_cpumask(void); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/include/asm/cputype.h +++ linux-oracle-6.5-6.5.0/arch/arm64/include/asm/cputype.h @@ -79,6 +79,7 @@ #define ARM_CPU_PART_CORTEX_A78AE 0xD42 #define ARM_CPU_PART_CORTEX_X1 0xD44 #define ARM_CPU_PART_CORTEX_A510 0xD46 +#define ARM_CPU_PART_CORTEX_A520 0xD80 #define ARM_CPU_PART_CORTEX_A710 0xD47 #define ARM_CPU_PART_CORTEX_A715 0xD4D #define ARM_CPU_PART_CORTEX_X2 0xD48 @@ -148,6 +149,7 @@ #define MIDR_CORTEX_A78AE MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A78AE) #define MIDR_CORTEX_X1 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_X1) #define MIDR_CORTEX_A510 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A510) +#define MIDR_CORTEX_A520 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A520) #define MIDR_CORTEX_A710 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A710) #define MIDR_CORTEX_A715 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_A715) #define MIDR_CORTEX_X2 MIDR_CPU_MODEL(ARM_CPU_IMP_ARM, ARM_CPU_PART_CORTEX_X2) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/include/asm/hwcap.h +++ linux-oracle-6.5-6.5.0/arch/arm64/include/asm/hwcap.h @@ -138,6 +138,7 @@ #define KERNEL_HWCAP_SME_B16B16 __khwcap2_feature(SME_B16B16) #define KERNEL_HWCAP_SME_F16F16 __khwcap2_feature(SME_F16F16) #define KERNEL_HWCAP_MOPS __khwcap2_feature(MOPS) +#define KERNEL_HWCAP_HBC __khwcap2_feature(HBC) /* * This yields a mask that user programs can use to figure out what only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/include/uapi/asm/hwcap.h +++ linux-oracle-6.5-6.5.0/arch/arm64/include/uapi/asm/hwcap.h @@ -103,5 +103,6 @@ #define HWCAP2_SME_B16B16 (1UL << 41) #define HWCAP2_SME_F16F16 (1UL << 42) #define HWCAP2_MOPS (1UL << 43) +#define HWCAP2_HBC (1UL << 44) #endif /* _UAPI__ASM_HWCAP_H */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/kernel/cpu_errata.c +++ linux-oracle-6.5-6.5.0/arch/arm64/kernel/cpu_errata.c @@ -730,6 +730,14 @@ .cpu_enable = cpu_clear_bf16_from_user_emulation, }, #endif +#ifdef CONFIG_ARM64_ERRATUM_2966298 + { + .desc = "ARM erratum 2966298", + .capability = ARM64_WORKAROUND_2966298, + /* Cortex-A520 r0p0 - r0p1 */ + ERRATA_MIDR_REV_RANGE(MIDR_CORTEX_A520, 0, 0, 1), + }, +#endif #ifdef CONFIG_AMPERE_ERRATUM_AC03_CPU_38 { .desc = "AmpereOne erratum AC03_CPU_38", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/kernel/cpufeature.c +++ linux-oracle-6.5-6.5.0/arch/arm64/kernel/cpufeature.c @@ -222,7 +222,8 @@ static const struct arm64_ftr_bits ftr_id_aa64isar2[] = { ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64ISAR2_EL1_CSSC_SHIFT, 4, 0), ARM64_FTR_BITS(FTR_VISIBLE, FTR_NONSTRICT, FTR_LOWER_SAFE, ID_AA64ISAR2_EL1_RPRFM_SHIFT, 4, 0), - ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_HIGHER_SAFE, ID_AA64ISAR2_EL1_BC_SHIFT, 4, 0), + ARM64_FTR_BITS(FTR_HIDDEN, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR2_EL1_CLRBHB_SHIFT, 4, 0), + ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR2_EL1_BC_SHIFT, 4, 0), ARM64_FTR_BITS(FTR_VISIBLE, FTR_STRICT, FTR_LOWER_SAFE, ID_AA64ISAR2_EL1_MOPS_SHIFT, 4, 0), ARM64_FTR_BITS(FTR_VISIBLE_IF_IS_ENABLED(CONFIG_ARM64_PTR_AUTH), FTR_STRICT, FTR_EXACT, ID_AA64ISAR2_EL1_APA3_SHIFT, 4, 0), @@ -2844,6 +2845,7 @@ HWCAP_CAP(ID_AA64ISAR2_EL1, RPRES, IMP, CAP_HWCAP, KERNEL_HWCAP_RPRES), HWCAP_CAP(ID_AA64ISAR2_EL1, WFxT, IMP, CAP_HWCAP, KERNEL_HWCAP_WFXT), HWCAP_CAP(ID_AA64ISAR2_EL1, MOPS, IMP, CAP_HWCAP, KERNEL_HWCAP_MOPS), + HWCAP_CAP(ID_AA64ISAR2_EL1, BC, IMP, CAP_HWCAP, KERNEL_HWCAP_HBC), #ifdef CONFIG_ARM64_SME HWCAP_CAP(ID_AA64PFR1_EL1, SME, IMP, CAP_HWCAP, KERNEL_HWCAP_SME), HWCAP_CAP(ID_AA64SMFR0_EL1, FA64, IMP, CAP_HWCAP, KERNEL_HWCAP_SME_FA64), only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/kernel/cpuinfo.c +++ linux-oracle-6.5-6.5.0/arch/arm64/kernel/cpuinfo.c @@ -126,6 +126,7 @@ [KERNEL_HWCAP_SME_B16B16] = "smeb16b16", [KERNEL_HWCAP_SME_F16F16] = "smef16f16", [KERNEL_HWCAP_MOPS] = "mops", + [KERNEL_HWCAP_HBC] = "hbc", }; #ifdef CONFIG_COMPAT only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/kernel/hw_breakpoint.c +++ linux-oracle-6.5-6.5.0/arch/arm64/kernel/hw_breakpoint.c @@ -654,7 +654,7 @@ perf_bp_event(bp, regs); /* Do we need to handle the stepping? */ - if (is_default_overflow_handler(bp)) + if (uses_default_overflow_handler(bp)) step = 1; unlock: rcu_read_unlock(); @@ -733,7 +733,7 @@ static int watchpoint_report(struct perf_event *wp, unsigned long addr, struct pt_regs *regs) { - int step = is_default_overflow_handler(wp); + int step = uses_default_overflow_handler(wp); struct arch_hw_breakpoint *info = counter_arch_bp(wp); info->trigger = addr; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/tools/cpucaps +++ linux-oracle-6.5-6.5.0/arch/arm64/tools/cpucaps @@ -83,6 +83,7 @@ WORKAROUND_2457168 WORKAROUND_2645198 WORKAROUND_2658417 +WORKAROUND_2966298 WORKAROUND_AMPERE_AC03_CPU_38 WORKAROUND_TRBE_OVERWRITE_FILL_MODE WORKAROUND_TSB_FLUSH_FAILURE only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/arm64/tools/sysreg +++ linux-oracle-6.5-6.5.0/arch/arm64/tools/sysreg @@ -1347,7 +1347,11 @@ 0b0000 NI 0b0001 IMP EndEnum -Res0 47:28 +Res0 47:32 +UnsignedEnum 31:28 CLRBHB + 0b0000 NI + 0b0001 IMP +EndEnum UnsignedEnum 27:24 PAC_frac 0b0000 NI 0b0001 IMP only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/loongarch/include/asm/addrspace.h +++ linux-oracle-6.5-6.5.0/arch/loongarch/include/asm/addrspace.h @@ -19,7 +19,7 @@ */ #ifndef __ASSEMBLY__ #ifndef PHYS_OFFSET -#define PHYS_OFFSET _AC(0, UL) +#define PHYS_OFFSET _UL(0) #endif extern unsigned long vm_map_base; #endif /* __ASSEMBLY__ */ @@ -43,7 +43,7 @@ * Memory above this physical address will be considered highmem. */ #ifndef HIGHMEM_START -#define HIGHMEM_START (_AC(1, UL) << _AC(DMW_PABITS, UL)) +#define HIGHMEM_START (_UL(1) << _UL(DMW_PABITS)) #endif #define TO_PHYS(x) ( ((x) & TO_PHYS_MASK)) @@ -65,16 +65,16 @@ #define _ATYPE_ #define _ATYPE32_ #define _ATYPE64_ -#define _CONST64_(x) x #else #define _ATYPE_ __PTRDIFF_TYPE__ #define _ATYPE32_ int #define _ATYPE64_ __s64 +#endif + #ifdef CONFIG_64BIT -#define _CONST64_(x) x ## UL +#define _CONST64_(x) _UL(x) #else -#define _CONST64_(x) x ## ULL -#endif +#define _CONST64_(x) _ULL(x) #endif /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/loongarch/include/asm/elf.h +++ linux-oracle-6.5-6.5.0/arch/loongarch/include/asm/elf.h @@ -111,6 +111,15 @@ #define R_LARCH_TLS_GD_HI20 98 #define R_LARCH_32_PCREL 99 #define R_LARCH_RELAX 100 +#define R_LARCH_DELETE 101 +#define R_LARCH_ALIGN 102 +#define R_LARCH_PCREL20_S2 103 +#define R_LARCH_CFA 104 +#define R_LARCH_ADD6 105 +#define R_LARCH_SUB6 106 +#define R_LARCH_ADD_ULEB128 107 +#define R_LARCH_SUB_ULEB128 108 +#define R_LARCH_64_PCREL 109 #ifndef ELF_ARCH only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/loongarch/kernel/mem.c +++ linux-oracle-6.5-6.5.0/arch/loongarch/kernel/mem.c @@ -50,7 +50,6 @@ } memblock_set_current_limit(PFN_PHYS(max_low_pfn)); - memblock_set_node(0, PHYS_ADDR_MAX, &memblock.memory, 0); /* Reserve the first 2MB */ memblock_reserve(PHYS_OFFSET, 0x200000); @@ -58,4 +57,7 @@ /* Reserve the kernel text/data/bss */ memblock_reserve(__pa_symbol(&_text), __pa_symbol(&_end) - __pa_symbol(&_text)); + + memblock_set_node(0, PHYS_ADDR_MAX, &memblock.memory, 0); + memblock_set_node(0, PHYS_ADDR_MAX, &memblock.reserved, 0); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/loongarch/kernel/module.c +++ linux-oracle-6.5-6.5.0/arch/loongarch/kernel/module.c @@ -367,6 +367,24 @@ return apply_r_larch_pcala(mod, location, got, rela_stack, rela_stack_top, type); } +static int apply_r_larch_32_pcrel(struct module *mod, u32 *location, Elf_Addr v, + s64 *rela_stack, size_t *rela_stack_top, unsigned int type) +{ + ptrdiff_t offset = (void *)v - (void *)location; + + *(u32 *)location = offset; + return 0; +} + +static int apply_r_larch_64_pcrel(struct module *mod, u32 *location, Elf_Addr v, + s64 *rela_stack, size_t *rela_stack_top, unsigned int type) +{ + ptrdiff_t offset = (void *)v - (void *)location; + + *(u64 *)location = offset; + return 0; +} + /* * reloc_handlers_rela() - Apply a particular relocation to a module * @mod: the module to apply the reloc to @@ -382,7 +400,7 @@ /* The handlers for known reloc types */ static reloc_rela_handler reloc_rela_handlers[] = { - [R_LARCH_NONE ... R_LARCH_RELAX] = apply_r_larch_error, + [R_LARCH_NONE ... R_LARCH_64_PCREL] = apply_r_larch_error, [R_LARCH_NONE] = apply_r_larch_none, [R_LARCH_32] = apply_r_larch_32, @@ -396,6 +414,8 @@ [R_LARCH_SOP_POP_32_S_10_5 ... R_LARCH_SOP_POP_32_U] = apply_r_larch_sop_imm_field, [R_LARCH_ADD32 ... R_LARCH_SUB64] = apply_r_larch_add_sub, [R_LARCH_PCALA_HI20...R_LARCH_PCALA64_HI12] = apply_r_larch_pcala, + [R_LARCH_32_PCREL] = apply_r_larch_32_pcrel, + [R_LARCH_64_PCREL] = apply_r_larch_64_pcrel, }; int apply_relocate_add(Elf_Shdr *sechdrs, const char *strtab, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/loongarch/kernel/numa.c +++ linux-oracle-6.5-6.5.0/arch/loongarch/kernel/numa.c @@ -468,7 +468,7 @@ void __init mem_init(void) { - high_memory = (void *) __va(get_num_physpages() << PAGE_SHIFT); + high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT); memblock_free_all(); setup_zero_pages(); /* This comes from node 0 */ } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/loongarch/kernel/vmlinux.lds.S +++ linux-oracle-6.5-6.5.0/arch/loongarch/kernel/vmlinux.lds.S @@ -53,33 +53,6 @@ . = ALIGN(PECOFF_SEGMENT_ALIGN); _etext = .; - /* - * struct alt_inst entries. From the header (alternative.h): - * "Alternative instructions for different CPU types or capabilities" - * Think locking instructions on spinlocks. - */ - . = ALIGN(4); - .altinstructions : AT(ADDR(.altinstructions) - LOAD_OFFSET) { - __alt_instructions = .; - *(.altinstructions) - __alt_instructions_end = .; - } - -#ifdef CONFIG_RELOCATABLE - . = ALIGN(8); - .la_abs : AT(ADDR(.la_abs) - LOAD_OFFSET) { - __la_abs_begin = .; - *(.la_abs) - __la_abs_end = .; - } -#endif - - .got : ALIGN(16) { *(.got) } - .plt : ALIGN(16) { *(.plt) } - .got.plt : ALIGN(16) { *(.got.plt) } - - .data.rel : { *(.data.rel*) } - . = ALIGN(PECOFF_SEGMENT_ALIGN); __init_begin = .; __inittext_begin = .; @@ -94,6 +67,18 @@ __initdata_begin = .; + /* + * struct alt_inst entries. From the header (alternative.h): + * "Alternative instructions for different CPU types or capabilities" + * Think locking instructions on spinlocks. + */ + . = ALIGN(4); + .altinstructions : AT(ADDR(.altinstructions) - LOAD_OFFSET) { + __alt_instructions = .; + *(.altinstructions) + __alt_instructions_end = .; + } + INIT_DATA_SECTION(16) .exit.data : { EXIT_DATA @@ -113,6 +98,11 @@ _sdata = .; RO_DATA(4096) + + .got : ALIGN(16) { *(.got) } + .plt : ALIGN(16) { *(.plt) } + .got.plt : ALIGN(16) { *(.got.plt) } + RW_DATA(1 << CONFIG_L1_CACHE_SHIFT, PAGE_SIZE, THREAD_SIZE) .rela.dyn : ALIGN(8) { @@ -121,6 +111,17 @@ __rela_dyn_end = .; } + .data.rel : { *(.data.rel*) } + +#ifdef CONFIG_RELOCATABLE + . = ALIGN(8); + .la_abs : AT(ADDR(.la_abs) - LOAD_OFFSET) { + __la_abs_begin = .; + *(.la_abs) + __la_abs_end = .; + } +#endif + .sdata : { *(.sdata) } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/mips/Makefile +++ linux-oracle-6.5-6.5.0/arch/mips/Makefile @@ -299,8 +299,8 @@ endif endif - ifeq ($(KBUILD_SYM32)$(call cc-option-yn,-msym32), yy) - cflags-y += -msym32 -DKBUILD_64BIT_SYM32 + ifeq ($(KBUILD_SYM32), y) + cflags-$(KBUILD_SYM32) += -msym32 -DKBUILD_64BIT_SYM32 else ifeq ($(CONFIG_CPU_DADDI_WORKAROUNDS), y) $(error CONFIG_CPU_DADDI_WORKAROUNDS unsupported without -msym32) @@ -341,7 +341,7 @@ KBUILD_LDFLAGS += -m $(ld-emul) -ifdef CONFIG_MIPS +ifdef need-compiler CHECKFLAGS += $(shell $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -dM -E -x c /dev/null | \ grep -E -vw '__GNUC_(MINOR_|PATCHLEVEL_)?_' | \ sed -e "s/^\#define /-D'/" -e "s/ /'='/" -e "s/$$/'/" -e 's/\$$/&&/g') only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/mips/cavium-octeon/octeon-usb.c +++ linux-oracle-6.5-6.5.0/arch/mips/cavium-octeon/octeon-usb.c @@ -243,11 +243,11 @@ while (div < ARRAY_SIZE(clk_div)) { uint64_t rate = octeon_get_io_clock_rate() / clk_div[div]; if (rate <= 300000000 && rate >= 150000000) - break; + return div; div++; } - return div; + return -EINVAL; } static int dwc3_octeon_config_power(struct device *dev, void __iomem *base) @@ -374,6 +374,10 @@ /* Step 4b: Select controller clock frequency. */ div = dwc3_octeon_get_divider(); + if (div < 0) { + dev_err(dev, "clock divider invalid\n"); + return div; + } val = dwc3_octeon_readq(uctl_ctl_reg); val &= ~USBDRD_UCTL_CTL_H_CLKDIV_SEL; val |= FIELD_PREP(USBDRD_UCTL_CTL_H_CLKDIV_SEL, div); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/parisc/include/asm/ldcw.h +++ linux-oracle-6.5-6.5.0/arch/parisc/include/asm/ldcw.h @@ -2,39 +2,42 @@ #ifndef __PARISC_LDCW_H #define __PARISC_LDCW_H -#ifndef CONFIG_PA20 /* Because kmalloc only guarantees 8-byte alignment for kmalloc'd data, and GCC only guarantees 8-byte alignment for stack locals, we can't be assured of 16-byte alignment for atomic lock data even if we specify "__attribute ((aligned(16)))" in the type declaration. So, we use a struct containing an array of four ints for the atomic lock type and dynamically select the 16-byte aligned int from the array - for the semaphore. */ + for the semaphore. */ + +/* From: "Jim Hull" + I've attached a summary of the change, but basically, for PA 2.0, as + long as the ",CO" (coherent operation) completer is implemented, then the + 16-byte alignment requirement for ldcw and ldcd is relaxed, and instead + they only require "natural" alignment (4-byte for ldcw, 8-byte for + ldcd). + + Although the cache control hint is accepted by all PA 2.0 processors, + it is only implemented on PA8800/PA8900 CPUs. Prior PA8X00 CPUs still + require 16-byte alignment. If the address is unaligned, the operation + of the instruction is undefined. The ldcw instruction does not generate + unaligned data reference traps so misaligned accesses are not detected. + This hid the problem for years. So, restore the 16-byte alignment dropped + by Kyle McMartin in "Remove __ldcw_align for PA-RISC 2.0 processors". */ #define __PA_LDCW_ALIGNMENT 16 -#define __PA_LDCW_ALIGN_ORDER 4 #define __ldcw_align(a) ({ \ unsigned long __ret = (unsigned long) &(a)->lock[0]; \ __ret = (__ret + __PA_LDCW_ALIGNMENT - 1) \ & ~(__PA_LDCW_ALIGNMENT - 1); \ (volatile unsigned int *) __ret; \ }) -#define __LDCW "ldcw" -#else /*CONFIG_PA20*/ -/* From: "Jim Hull" - I've attached a summary of the change, but basically, for PA 2.0, as - long as the ",CO" (coherent operation) completer is specified, then the - 16-byte alignment requirement for ldcw and ldcd is relaxed, and instead - they only require "natural" alignment (4-byte for ldcw, 8-byte for - ldcd). */ - -#define __PA_LDCW_ALIGNMENT 4 -#define __PA_LDCW_ALIGN_ORDER 2 -#define __ldcw_align(a) (&(a)->slock) +#ifdef CONFIG_PA20 #define __LDCW "ldcw,co" - -#endif /*!CONFIG_PA20*/ +#else +#define __LDCW "ldcw" +#endif /* LDCW, the only atomic read-write operation PA-RISC has. *sigh*. We don't explicitly expose that "*a" may be written as reload only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/parisc/include/asm/led.h +++ linux-oracle-6.5-6.5.0/arch/parisc/include/asm/led.h @@ -11,8 +11,8 @@ #define LED1 0x02 #define LED0 0x01 /* bottom (or furthest left) LED */ -#define LED_LAN_TX LED0 /* for LAN transmit activity */ -#define LED_LAN_RCV LED1 /* for LAN receive activity */ +#define LED_LAN_RCV LED0 /* for LAN receive activity */ +#define LED_LAN_TX LED1 /* for LAN transmit activity */ #define LED_DISK_IO LED2 /* for disk activity */ #define LED_HEARTBEAT LED3 /* heartbeat */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/parisc/include/asm/ropes.h +++ linux-oracle-6.5-6.5.0/arch/parisc/include/asm/ropes.h @@ -29,7 +29,7 @@ struct ioc { void __iomem *ioc_hpa; /* I/O MMU base address */ char *res_map; /* resource map, bit == pdir entry */ - u64 *pdir_base; /* physical base address */ + __le64 *pdir_base; /* physical base address */ unsigned long ibase; /* pdir IOV Space base - shared w/lba_pci */ unsigned long imask; /* pdir IOV Space mask - shared w/lba_pci */ #ifdef ZX1_SUPPORT @@ -86,6 +86,9 @@ struct ioc ioc[MAX_IOC]; }; +/* list of SBA's in system, see drivers/parisc/sba_iommu.c */ +extern struct sba_device *sba_list; + #define ASTRO_RUNWAY_PORT 0x582 #define IKE_MERCED_PORT 0x803 #define REO_MERCED_PORT 0x804 @@ -110,7 +113,7 @@ #define SBA_PDIR_VALID_BIT 0x8000000000000000ULL -#define SBA_AGPGART_COOKIE 0x0000badbadc0ffeeULL +#define SBA_AGPGART_COOKIE (__force __le64) 0x0000badbadc0ffeeULL #define SBA_FUNC_ID 0x0000 /* function id */ #define SBA_FCLASS 0x0008 /* function class, bist, header, rev... */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/parisc/include/asm/spinlock_types.h +++ linux-oracle-6.5-6.5.0/arch/parisc/include/asm/spinlock_types.h @@ -9,15 +9,10 @@ #ifndef __ASSEMBLY__ typedef struct { -#ifdef CONFIG_PA20 - volatile unsigned int slock; -# define __ARCH_SPIN_LOCK_UNLOCKED { __ARCH_SPIN_LOCK_UNLOCKED_VAL } -#else volatile unsigned int lock[4]; # define __ARCH_SPIN_LOCK_UNLOCKED \ { { __ARCH_SPIN_LOCK_UNLOCKED_VAL, __ARCH_SPIN_LOCK_UNLOCKED_VAL, \ __ARCH_SPIN_LOCK_UNLOCKED_VAL, __ARCH_SPIN_LOCK_UNLOCKED_VAL } } -#endif } arch_spinlock_t; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/parisc/kernel/drivers.c +++ linux-oracle-6.5-6.5.0/arch/parisc/kernel/drivers.c @@ -925,9 +925,9 @@ pr_info("#define PARISC_MODEL \"%s\"\n\n", boot_cpu_data.pdc.sys_model_name); + #define p ((unsigned long *)&boot_cpu_data.pdc.model) pr_info("#define PARISC_PDC_MODEL 0x%lx, 0x%lx, 0x%lx, " "0x%lx, 0x%lx, 0x%lx, 0x%lx, 0x%lx, 0x%lx\n\n", - #define p ((unsigned long *)&boot_cpu_data.pdc.model) p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7], p[8]); #undef p only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/parisc/kernel/irq.c +++ linux-oracle-6.5-6.5.0/arch/parisc/kernel/irq.c @@ -365,7 +365,7 @@ volatile unsigned int lock[1]; }; -DEFINE_PER_CPU(union irq_stack_union, irq_stack_union) = { +static DEFINE_PER_CPU(union irq_stack_union, irq_stack_union) = { .slock = { 1,1,1,1 }, }; #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/parisc/kernel/smp.c +++ linux-oracle-6.5-6.5.0/arch/parisc/kernel/smp.c @@ -440,7 +440,9 @@ if (cpu_online(cpu)) return 0; - if (num_online_cpus() < setup_max_cpus && smp_boot_one_cpu(cpu, tidle)) + if (num_online_cpus() < nr_cpu_ids && + num_online_cpus() < setup_max_cpus && + smp_boot_one_cpu(cpu, tidle)) return -EIO; return cpu_online(cpu) ? 0 : -EIO; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/include/asm/nohash/32/pte-8xx.h +++ linux-oracle-6.5-6.5.0/arch/powerpc/include/asm/nohash/32/pte-8xx.h @@ -94,6 +94,13 @@ #define pte_wrprotect pte_wrprotect +static inline int pte_read(pte_t pte) +{ + return (pte_val(pte) & _PAGE_RO) != _PAGE_NA; +} + +#define pte_read pte_read + static inline int pte_write(pte_t pte) { return !(pte_val(pte) & _PAGE_RO); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/include/asm/nohash/64/pgtable.h +++ linux-oracle-6.5-6.5.0/arch/powerpc/include/asm/nohash/64/pgtable.h @@ -197,7 +197,7 @@ { unsigned long old; - if (pte_young(*ptep)) + if (!pte_young(*ptep)) return 0; old = pte_update(mm, addr, ptep, _PAGE_ACCESSED, 0, 0); return (old & _PAGE_ACCESSED) != 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/include/asm/nohash/pgtable.h +++ linux-oracle-6.5-6.5.0/arch/powerpc/include/asm/nohash/pgtable.h @@ -25,7 +25,9 @@ return pte_val(pte) & _PAGE_RW; } #endif +#ifndef pte_read static inline int pte_read(pte_t pte) { return 1; } +#endif static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/kernel/entry_32.S +++ linux-oracle-6.5-6.5.0/arch/powerpc/kernel/entry_32.S @@ -138,8 +138,9 @@ lis r4,icache_44x_need_flush@ha lwz r5,icache_44x_need_flush@l(r4) cmplwi cr0,r5,0 - bne- 2f + bne- .L44x_icache_flush #endif /* CONFIG_PPC_47x */ +.L44x_icache_flush_return: kuep_unlock lwz r4,_LINK(r1) lwz r5,_CCR(r1) @@ -173,10 +174,11 @@ b 1b #ifdef CONFIG_44x -2: li r7,0 +.L44x_icache_flush: + li r7,0 iccci r0,r0 stw r7,icache_44x_need_flush@l(r4) - b 1b + b .L44x_icache_flush_return #endif /* CONFIG_44x */ .globl ret_from_fork only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/kernel/hw_breakpoint.c +++ linux-oracle-6.5-6.5.0/arch/powerpc/kernel/hw_breakpoint.c @@ -505,11 +505,13 @@ struct arch_hw_breakpoint *info; int i; + preempt_disable(); + for (i = 0; i < nr_wp_slots(); i++) { if (unlikely(tsk->thread.last_hit_ubp[i])) goto reset; } - return; + goto out; reset: regs_set_return_msr(regs, regs->msr & ~MSR_SE); @@ -518,6 +520,9 @@ __set_breakpoint(i, info); tsk->thread.last_hit_ubp[i] = NULL; } + +out: + preempt_enable(); } static bool is_larx_stcx_instr(int type) @@ -632,6 +637,11 @@ } } +/* + * Handle a DABR or DAWR exception. + * + * Called in atomic context. + */ int hw_breakpoint_handler(struct die_args *args) { bool err = false; @@ -758,6 +768,8 @@ /* * Handle single-step exceptions following a DABR hit. + * + * Called in atomic context. */ static int single_step_dabr_instruction(struct die_args *args) { @@ -815,6 +827,8 @@ /* * Handle debug exception notifications. + * + * Called in atomic context. */ int hw_breakpoint_exceptions_notify( struct notifier_block *unused, unsigned long val, void *data) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/kernel/hw_breakpoint_constraints.c +++ linux-oracle-6.5-6.5.0/arch/powerpc/kernel/hw_breakpoint_constraints.c @@ -131,8 +131,13 @@ int *type, int *size, unsigned long *ea) { struct instruction_op op; + int err; - if (__get_user_instr(*instr, (void __user *)regs->nip)) + pagefault_disable(); + err = __get_user_instr(*instr, (void __user *)regs->nip); + pagefault_enable(); + + if (err) return; analyse_instr(&op, regs, *instr); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/kernel/traps.c +++ linux-oracle-6.5-6.5.0/arch/powerpc/kernel/traps.c @@ -1512,23 +1512,11 @@ return; } - if (cpu_has_feature(CPU_FTR_DEXCR_NPHIE) && user_mode(regs)) { - ppc_inst_t insn; - - if (get_user_instr(insn, (void __user *)regs->nip)) { - _exception(SIGSEGV, regs, SEGV_MAPERR, regs->nip); - return; - } - - if (ppc_inst_primary_opcode(insn) == 31 && - get_xop(ppc_inst_val(insn)) == OP_31_XOP_HASHCHK) { - _exception(SIGILL, regs, ILL_ILLOPN, regs->nip); - return; - } + /* User mode considers other cases after enabling IRQs */ + if (!user_mode(regs)) { + _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip); + return; } - - _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip); - return; } #ifdef CONFIG_PPC_TRANSACTIONAL_MEM if (reason & REASON_TM) { @@ -1561,16 +1549,44 @@ /* * If we took the program check in the kernel skip down to sending a - * SIGILL. The subsequent cases all relate to emulating instructions - * which we should only do for userspace. We also do not want to enable - * interrupts for kernel faults because that might lead to further - * faults, and loose the context of the original exception. + * SIGILL. The subsequent cases all relate to user space, such as + * emulating instructions which we should only do for user space. We + * also do not want to enable interrupts for kernel faults because that + * might lead to further faults, and loose the context of the original + * exception. */ if (!user_mode(regs)) goto sigill; interrupt_cond_local_irq_enable(regs); + /* + * (reason & REASON_TRAP) is mostly handled before enabling IRQs, + * except get_user_instr() can sleep so we cannot reliably inspect the + * current instruction in that context. Now that we know we are + * handling a user space trap and can sleep, we can check if the trap + * was a hashchk failure. + */ + if (reason & REASON_TRAP) { + if (cpu_has_feature(CPU_FTR_DEXCR_NPHIE)) { + ppc_inst_t insn; + + if (get_user_instr(insn, (void __user *)regs->nip)) { + _exception(SIGSEGV, regs, SEGV_MAPERR, regs->nip); + return; + } + + if (ppc_inst_primary_opcode(insn) == 31 && + get_xop(ppc_inst_val(insn)) == OP_31_XOP_HASHCHK) { + _exception(SIGILL, regs, ILL_ILLOPN, regs->nip); + return; + } + } + + _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip); + return; + } + /* (reason & REASON_ILLEGAL) would be the obvious thing here, * but there seems to be a hardware bug on the 405GP (RevD) * that means ESR is sometimes set incorrectly - either to only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/perf/hv-24x7.c +++ linux-oracle-6.5-6.5.0/arch/powerpc/perf/hv-24x7.c @@ -1418,7 +1418,7 @@ } domain = event_get_domain(event); - if (domain >= HV_PERF_DOMAIN_MAX) { + if (domain == 0 || domain >= HV_PERF_DOMAIN_MAX) { pr_devel("invalid domain %d\n", domain); return -EINVAL; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/powerpc/platforms/pseries/ibmebus.c +++ linux-oracle-6.5-6.5.0/arch/powerpc/platforms/pseries/ibmebus.c @@ -460,6 +460,7 @@ if (err) { printk(KERN_WARNING "%s: device_register returned %i\n", __func__, err); + put_device(&ibmebus_bus_device); bus_unregister(&ibmebus_bus_type); return err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/riscv/include/asm/errata_list.h +++ linux-oracle-6.5-6.5.0/arch/riscv/include/asm/errata_list.h @@ -100,7 +100,7 @@ * | 31 - 25 | 24 - 20 | 19 - 15 | 14 - 12 | 11 - 7 | 6 - 0 | * 0000001 01001 rs1 000 00000 0001011 * dcache.cva rs1 (clean, virtual address) - * 0000001 00100 rs1 000 00000 0001011 + * 0000001 00101 rs1 000 00000 0001011 * * dcache.cipa rs1 (clean then invalidate, physical address) * | 31 - 25 | 24 - 20 | 19 - 15 | 14 - 12 | 11 - 7 | 6 - 0 | @@ -113,7 +113,7 @@ * 0000000 11001 00000 000 00000 0001011 */ #define THEAD_inval_A0 ".long 0x0265000b" -#define THEAD_clean_A0 ".long 0x0245000b" +#define THEAD_clean_A0 ".long 0x0255000b" #define THEAD_flush_A0 ".long 0x0275000b" #define THEAD_SYNC_S ".long 0x0190000b" only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/riscv/include/asm/kprobes.h +++ linux-oracle-6.5-6.5.0/arch/riscv/include/asm/kprobes.h @@ -40,6 +40,15 @@ int kprobe_fault_handler(struct pt_regs *regs, unsigned int trapnr); bool kprobe_breakpoint_handler(struct pt_regs *regs); bool kprobe_single_step_handler(struct pt_regs *regs); +#else +static inline bool kprobe_breakpoint_handler(struct pt_regs *regs) +{ + return false; +} +static inline bool kprobe_single_step_handler(struct pt_regs *regs) +{ + return false; +} #endif /* CONFIG_KPROBES */ #endif /* _ASM_RISCV_KPROBES_H */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/riscv/include/asm/uprobes.h +++ linux-oracle-6.5-6.5.0/arch/riscv/include/asm/uprobes.h @@ -34,7 +34,18 @@ bool simulate; }; +#ifdef CONFIG_UPROBES bool uprobe_breakpoint_handler(struct pt_regs *regs); bool uprobe_single_step_handler(struct pt_regs *regs); +#else +static inline bool uprobe_breakpoint_handler(struct pt_regs *regs) +{ + return false; +} +static inline bool uprobe_single_step_handler(struct pt_regs *regs) +{ + return false; +} +#endif /* CONFIG_UPROBES */ #endif /* _ASM_RISCV_UPROBES_H */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/riscv/kernel/elf_kexec.c +++ linux-oracle-6.5-6.5.0/arch/riscv/kernel/elf_kexec.c @@ -98,7 +98,13 @@ kbuf.image = image; kbuf.buf_min = lowest_paddr; kbuf.buf_max = ULONG_MAX; - kbuf.buf_align = PAGE_SIZE; + + /* + * Current riscv boot protocol requires 2MB alignment for + * RV64 and 4MB alignment for RV32 + * + */ + kbuf.buf_align = PMD_SIZE; kbuf.mem = KEXEC_BUF_MEM_UNKNOWN; kbuf.memsz = ALIGN(kernel_len, PAGE_SIZE); kbuf.top_down = false; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/riscv/kernel/irq.c +++ linux-oracle-6.5-6.5.0/arch/riscv/kernel/irq.c @@ -60,7 +60,7 @@ } #endif /* CONFIG_VMAP_STACK */ -#ifdef CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK +#ifdef CONFIG_SOFTIRQ_ON_OWN_STACK void do_softirq_own_stack(void) { #ifdef CONFIG_IRQ_STACKS @@ -92,7 +92,7 @@ #endif __do_softirq(); } -#endif /* CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK */ +#endif /* CONFIG_SOFTIRQ_ON_OWN_STACK */ #else static void init_irq_stacks(void) {} only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/riscv/kernel/signal.c +++ linux-oracle-6.5-6.5.0/arch/riscv/kernel/signal.c @@ -311,13 +311,6 @@ /* Align the stack frame. */ sp &= ~0xfUL; - /* - * Fail if the size of the altstack is not large enough for the - * sigframe construction. - */ - if (current->sas_ss_size && sp < current->sas_ss_sp) - return (void __user __force *)-1UL; - return (void __user *)sp; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/riscv/kernel/traps.c +++ linux-oracle-6.5-6.5.0/arch/riscv/kernel/traps.c @@ -13,6 +13,8 @@ #include #include #include +#include +#include #include #include #include @@ -246,22 +248,28 @@ return GET_INSN_LENGTH(insn); } +static bool probe_single_step_handler(struct pt_regs *regs) +{ + bool user = user_mode(regs); + + return user ? uprobe_single_step_handler(regs) : kprobe_single_step_handler(regs); +} + +static bool probe_breakpoint_handler(struct pt_regs *regs) +{ + bool user = user_mode(regs); + + return user ? uprobe_breakpoint_handler(regs) : kprobe_breakpoint_handler(regs); +} + void handle_break(struct pt_regs *regs) { -#ifdef CONFIG_KPROBES - if (kprobe_single_step_handler(regs)) + if (probe_single_step_handler(regs)) return; - if (kprobe_breakpoint_handler(regs)) - return; -#endif -#ifdef CONFIG_UPROBES - if (uprobe_single_step_handler(regs)) + if (probe_breakpoint_handler(regs)) return; - if (uprobe_breakpoint_handler(regs)) - return; -#endif current->thread.bad_cause = regs->cause; if (user_mode(regs)) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/riscv/net/bpf_jit_comp64.c +++ linux-oracle-6.5-6.5.0/arch/riscv/net/bpf_jit_comp64.c @@ -239,7 +239,7 @@ emit_addi(RV_REG_SP, RV_REG_SP, stack_adjust, ctx); /* Set return value. */ if (!is_tail_call) - emit_mv(RV_REG_A0, RV_REG_A5, ctx); + emit_addiw(RV_REG_A0, RV_REG_A5, 0, ctx); emit_jalr(RV_REG_ZERO, is_tail_call ? RV_REG_T3 : RV_REG_RA, is_tail_call ? 20 : 0, /* skip reserved nops and TCC init */ ctx); @@ -757,8 +757,10 @@ if (ret) return ret; - if (save_ret) - emit_sd(RV_REG_FP, -retval_off, regmap[BPF_REG_0], ctx); + if (save_ret) { + emit_sd(RV_REG_FP, -retval_off, RV_REG_A0, ctx); + emit_sd(RV_REG_FP, -(retval_off - 8), regmap[BPF_REG_0], ctx); + } /* update branch with beqz */ if (ctx->insns) { @@ -844,7 +846,7 @@ save_ret = flags & (BPF_TRAMP_F_CALL_ORIG | BPF_TRAMP_F_RET_FENTRY_RET); if (save_ret) { - stack_size += 8; + stack_size += 16; /* Save both A5 (BPF R0) and A0 */ retval_off = stack_size; } @@ -931,6 +933,7 @@ if (ret) goto out; emit_sd(RV_REG_FP, -retval_off, RV_REG_A0, ctx); + emit_sd(RV_REG_FP, -(retval_off - 8), regmap[BPF_REG_0], ctx); im->ip_after_call = ctx->insns + ctx->ninsns; /* 2 nops reserved for auipc+jalr pair */ emit(rv_nop(), ctx); @@ -962,8 +965,10 @@ if (flags & BPF_TRAMP_F_RESTORE_REGS) restore_args(nregs, args_off, ctx); - if (save_ret) + if (save_ret) { emit_ld(RV_REG_A0, -retval_off, RV_REG_FP, ctx); + emit_ld(regmap[BPF_REG_0], -(retval_off - 8), RV_REG_FP, ctx); + } emit_ld(RV_REG_S1, -sreg_off, RV_REG_FP, ctx); @@ -1436,7 +1441,8 @@ if (ret) return ret; - emit_mv(bpf_to_rv_reg(BPF_REG_0, ctx), RV_REG_A0, ctx); + if (insn->src_reg != BPF_PSEUDO_CALL) + emit_mv(bpf_to_rv_reg(BPF_REG_0, ctx), RV_REG_A0, ctx); break; } /* tail call */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/s390/boot/startup.c +++ linux-oracle-6.5-6.5.0/arch/s390/boot/startup.c @@ -176,6 +176,7 @@ unsigned long asce_limit; unsigned long rte_size; unsigned long pages; + unsigned long vsize; unsigned long vmax; pages = ident_map_size / PAGE_SIZE; @@ -183,11 +184,9 @@ vmemmap_size = SECTION_ALIGN_UP(pages) * sizeof(struct page); /* choose kernel address space layout: 4 or 3 levels. */ - vmemmap_start = round_up(ident_map_size, _REGION3_SIZE); - if (IS_ENABLED(CONFIG_KASAN) || - vmalloc_size > _REGION2_SIZE || - vmemmap_start + vmemmap_size + vmalloc_size + MODULES_LEN > - _REGION2_SIZE) { + vsize = round_up(ident_map_size, _REGION3_SIZE) + vmemmap_size + MODULES_LEN; + vsize = size_add(vsize, vmalloc_size); + if (IS_ENABLED(CONFIG_KASAN) || (vsize > _REGION2_SIZE)) { asce_limit = _REGION1_SIZE; rte_size = _REGION2_SIZE; } else { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/s390/net/bpf_jit_comp.c +++ linux-oracle-6.5-6.5.0/arch/s390/net/bpf_jit_comp.c @@ -2066,6 +2066,7 @@ * func_addr's original caller */ int stack_size; /* Trampoline stack size */ + int backchain_off; /* Offset of backchain */ int stack_args_off; /* Offset of stack arguments for calling * func_addr, has to be at the top */ @@ -2086,8 +2087,10 @@ * for __bpf_prog_enter() return value and * func_addr respectively */ - int r14_off; /* Offset of saved %r14 */ int run_ctx_off; /* Offset of struct bpf_tramp_run_ctx */ + int tccnt_off; /* Offset of saved tailcall counter */ + int r14_off; /* Offset of saved %r14, has to be at the + * bottom */ int do_fexit; /* do_fexit: label */ }; @@ -2246,8 +2249,12 @@ * Calculate the stack layout. */ - /* Reserve STACK_FRAME_OVERHEAD bytes for the callees. */ + /* + * Allocate STACK_FRAME_OVERHEAD bytes for the callees. As the s390x + * ABI requires, put our backchain at the end of the allocated memory. + */ tjit->stack_size = STACK_FRAME_OVERHEAD; + tjit->backchain_off = tjit->stack_size - sizeof(u64); tjit->stack_args_off = alloc_stack(tjit, nr_stack_args * sizeof(u64)); tjit->reg_args_off = alloc_stack(tjit, nr_reg_args * sizeof(u64)); tjit->ip_off = alloc_stack(tjit, sizeof(u64)); @@ -2255,15 +2262,28 @@ tjit->bpf_args_off = alloc_stack(tjit, nr_bpf_args * sizeof(u64)); tjit->retval_off = alloc_stack(tjit, sizeof(u64)); tjit->r7_r8_off = alloc_stack(tjit, 2 * sizeof(u64)); - tjit->r14_off = alloc_stack(tjit, sizeof(u64)); tjit->run_ctx_off = alloc_stack(tjit, sizeof(struct bpf_tramp_run_ctx)); - /* The caller has already reserved STACK_FRAME_OVERHEAD bytes. */ - tjit->stack_size -= STACK_FRAME_OVERHEAD; + tjit->tccnt_off = alloc_stack(tjit, sizeof(u64)); + tjit->r14_off = alloc_stack(tjit, sizeof(u64) * 2); + /* + * In accordance with the s390x ABI, the caller has allocated + * STACK_FRAME_OVERHEAD bytes for us. 8 of them contain the caller's + * backchain, and the rest we can use. + */ + tjit->stack_size -= STACK_FRAME_OVERHEAD - sizeof(u64); tjit->orig_stack_args_off = tjit->stack_size + STACK_FRAME_OVERHEAD; + /* lgr %r1,%r15 */ + EMIT4(0xb9040000, REG_1, REG_15); /* aghi %r15,-stack_size */ EMIT4_IMM(0xa70b0000, REG_15, -tjit->stack_size); + /* stg %r1,backchain_off(%r15) */ + EMIT6_DISP_LH(0xe3000000, 0x0024, REG_1, REG_0, REG_15, + tjit->backchain_off); + /* mvc tccnt_off(4,%r15),stack_size+STK_OFF_TCCNT(%r15) */ + _EMIT6(0xd203f000 | tjit->tccnt_off, + 0xf000 | (tjit->stack_size + STK_OFF_TCCNT)); /* stmg %r2,%rN,fwd_reg_args_off(%r15) */ if (nr_reg_args) EMIT6_DISP_LH(0xeb000000, 0x0024, REG_2, @@ -2400,6 +2420,8 @@ (nr_stack_args * sizeof(u64) - 1) << 16 | tjit->stack_args_off, 0xf000 | tjit->orig_stack_args_off); + /* mvc STK_OFF_TCCNT(4,%r15),tccnt_off(%r15) */ + _EMIT6(0xd203f000 | STK_OFF_TCCNT, 0xf000 | tjit->tccnt_off); /* lgr %r1,%r8 */ EMIT4(0xb9040000, REG_1, REG_8); /* %r1() */ @@ -2456,6 +2478,9 @@ if (flags & (BPF_TRAMP_F_CALL_ORIG | BPF_TRAMP_F_RET_FENTRY_RET)) EMIT6_DISP_LH(0xe3000000, 0x0004, REG_2, REG_0, REG_15, tjit->retval_off); + /* mvc stack_size+STK_OFF_TCCNT(4,%r15),tccnt_off(%r15) */ + _EMIT6(0xd203f000 | (tjit->stack_size + STK_OFF_TCCNT), + 0xf000 | tjit->tccnt_off); /* aghi %r15,stack_size */ EMIT4_IMM(0xa70b0000, REG_15, tjit->stack_size); /* Emit an expoline for the following indirect jump. */ @@ -2503,7 +2528,7 @@ return -E2BIG; } - return ret; + return tjit.common.prg; } bool bpf_jit_supports_subprog_tailcalls(void) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/sh/boards/mach-ap325rxa/setup.c +++ linux-oracle-6.5-6.5.0/arch/sh/boards/mach-ap325rxa/setup.c @@ -531,7 +531,7 @@ device_initialize(&ap325rxa_ceu_device.dev); dma_declare_coherent_memory(&ap325rxa_ceu_device.dev, ceu_dma_membase, ceu_dma_membase, - ceu_dma_membase + CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(&ap325rxa_ceu_device); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/sh/boards/mach-ecovec24/setup.c +++ linux-oracle-6.5-6.5.0/arch/sh/boards/mach-ecovec24/setup.c @@ -1454,15 +1454,13 @@ device_initialize(&ecovec_ceu_devices[0]->dev); dma_declare_coherent_memory(&ecovec_ceu_devices[0]->dev, ceu0_dma_membase, ceu0_dma_membase, - ceu0_dma_membase + - CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(ecovec_ceu_devices[0]); device_initialize(&ecovec_ceu_devices[1]->dev); dma_declare_coherent_memory(&ecovec_ceu_devices[1]->dev, ceu1_dma_membase, ceu1_dma_membase, - ceu1_dma_membase + - CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(ecovec_ceu_devices[1]); gpiod_add_lookup_table(&cn12_power_gpiod_table); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/sh/boards/mach-kfr2r09/setup.c +++ linux-oracle-6.5-6.5.0/arch/sh/boards/mach-kfr2r09/setup.c @@ -603,7 +603,7 @@ device_initialize(&kfr2r09_ceu_device.dev); dma_declare_coherent_memory(&kfr2r09_ceu_device.dev, ceu_dma_membase, ceu_dma_membase, - ceu_dma_membase + CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(&kfr2r09_ceu_device); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/sh/boards/mach-migor/setup.c +++ linux-oracle-6.5-6.5.0/arch/sh/boards/mach-migor/setup.c @@ -604,7 +604,7 @@ device_initialize(&migor_ceu_device.dev); dma_declare_coherent_memory(&migor_ceu_device.dev, ceu_dma_membase, ceu_dma_membase, - ceu_dma_membase + CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(&migor_ceu_device); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/sh/boards/mach-se/7724/setup.c +++ linux-oracle-6.5-6.5.0/arch/sh/boards/mach-se/7724/setup.c @@ -940,15 +940,13 @@ device_initialize(&ms7724se_ceu_devices[0]->dev); dma_declare_coherent_memory(&ms7724se_ceu_devices[0]->dev, ceu0_dma_membase, ceu0_dma_membase, - ceu0_dma_membase + - CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(ms7724se_ceu_devices[0]); device_initialize(&ms7724se_ceu_devices[1]->dev); dma_declare_coherent_memory(&ms7724se_ceu_devices[1]->dev, ceu1_dma_membase, ceu1_dma_membase, - ceu1_dma_membase + - CEU_BUFFER_MEMORY_SIZE - 1); + CEU_BUFFER_MEMORY_SIZE); platform_device_add(ms7724se_ceu_devices[1]); return platform_add_devices(ms7724se_devices, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/sh/drivers/push-switch.c +++ linux-oracle-6.5-6.5.0/arch/sh/drivers/push-switch.c @@ -101,8 +101,8 @@ device_remove_file(&pdev->dev, &dev_attr_switch); platform_set_drvdata(pdev, NULL); - flush_work(&psw->work); timer_shutdown_sync(&psw->debounce); + flush_work(&psw->work); free_irq(irq, pdev); kfree(psw); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/Kconfig +++ linux-oracle-6.5-6.5.0/arch/x86/Kconfig @@ -1955,6 +1955,7 @@ select UCS2_STRING select EFI_RUNTIME_WRAPPERS select ARCH_USE_MEMREMAP_PROT + select EFI_RUNTIME_MAP if KEXEC_CORE help This enables the kernel to use EFI runtime services that are available (such as the EFI variable services). @@ -2030,7 +2031,6 @@ config EFI_RUNTIME_MAP bool "Export EFI runtime maps to sysfs" if EXPERT depends on EFI - default KEXEC_CORE help Export EFI runtime memory regions to /sys/firmware/efi/runtime-map. That memory map is required by the 2nd kernel to set up EFI virtual only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/boot/compressed/ident_map_64.c +++ linux-oracle-6.5-6.5.0/arch/x86/boot/compressed/ident_map_64.c @@ -59,6 +59,14 @@ return NULL; } + /* Consumed more tables than expected? */ + if (pages->pgt_buf_offset == BOOT_PGT_SIZE_WARN) { + debug_putstr("pgt_buf running low in " __FILE__ "\n"); + debug_putstr("Need to raise BOOT_PGT_SIZE?\n"); + debug_putaddr(pages->pgt_buf_offset); + debug_putaddr(pages->pgt_buf_size); + } + entry = pages->pgt_buf + pages->pgt_buf_offset; pages->pgt_buf_offset += PAGE_SIZE; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/boot/compressed/sev.c +++ linux-oracle-6.5-6.5.0/arch/x86/boot/compressed/sev.c @@ -103,6 +103,16 @@ return ES_OK; } +static enum es_result vc_ioio_check(struct es_em_ctxt *ctxt, u16 port, size_t size) +{ + return ES_OK; +} + +static bool fault_in_kernel_space(unsigned long address) +{ + return false; +} + #undef __init #define __init only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/events/amd/core.c +++ linux-oracle-6.5-6.5.0/arch/x86/events/amd/core.c @@ -534,8 +534,12 @@ /* Clear enable bits i.e. PerfCntrGlobalCtl.PerfCntrEn */ wrmsrl(MSR_AMD64_PERF_CNTR_GLOBAL_CTL, 0); - /* Clear overflow bits i.e. PerfCntrGLobalStatus.PerfCntrOvfl */ - wrmsrl(MSR_AMD64_PERF_CNTR_GLOBAL_STATUS_CLR, amd_pmu_global_cntr_mask); + /* + * Clear freeze and overflow bits i.e. PerfCntrGLobalStatus.LbrFreeze + * and PerfCntrGLobalStatus.PerfCntrOvfl + */ + wrmsrl(MSR_AMD64_PERF_CNTR_GLOBAL_STATUS_CLR, + GLOBAL_STATUS_LBRS_FROZEN | amd_pmu_global_cntr_mask); } static int amd_pmu_cpu_prepare(int cpu) @@ -570,6 +574,7 @@ int i, nb_id; cpuc->perf_ctr_virt_mask = AMD64_EVENTSEL_HOSTONLY; + amd_pmu_cpu_reset(cpu); if (!x86_pmu.amd_nb_constraints) return; @@ -591,8 +596,6 @@ cpuc->amd_nb->nb_id = nb_id; cpuc->amd_nb->refcnt++; - - amd_pmu_cpu_reset(cpu); } static void amd_pmu_cpu_dead(int cpu) @@ -601,6 +604,7 @@ kfree(cpuhw->lbr_sel); cpuhw->lbr_sel = NULL; + amd_pmu_cpu_reset(cpu); if (!x86_pmu.amd_nb_constraints) return; @@ -613,8 +617,6 @@ cpuhw->amd_nb = NULL; } - - amd_pmu_cpu_reset(cpu); } static inline void amd_pmu_set_global_ctl(u64 ctl) @@ -884,7 +886,7 @@ struct hw_perf_event *hwc; struct perf_event *event; int handled = 0, idx; - u64 status, mask; + u64 reserved, status, mask; bool pmu_enabled; /* @@ -909,6 +911,14 @@ status &= ~GLOBAL_STATUS_LBRS_FROZEN; } + reserved = status & ~amd_pmu_global_cntr_mask; + if (reserved) + pr_warn_once("Reserved PerfCntrGlobalStatus bits are set (0x%llx), please consider updating microcode\n", + reserved); + + /* Clear any reserved bits set by buggy microcode */ + status &= amd_pmu_global_cntr_mask; + for (idx = 0; idx < x86_pmu.num_counters; idx++) { if (!test_bit(idx, cpuc->active_mask)) continue; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/events/utils.c +++ linux-oracle-6.5-6.5.0/arch/x86/events/utils.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 #include +#include #include "perf_event.h" @@ -132,9 +133,9 @@ * The LBR logs any address in the IP, even if the IP just * faulted. This means userspace can control the from address. * Ensure we don't blindly read any address by validating it is - * a known text address. + * a known text address and not a vsyscall address. */ - if (kernel_text_address(from)) { + if (kernel_text_address(from) && !in_gate_area_no_mm(from)) { addr = (void *)from; /* * Assume we can get the maximum possible size only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/boot.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/boot.h @@ -40,23 +40,40 @@ #ifdef CONFIG_X86_64 # define BOOT_STACK_SIZE 0x4000 +/* + * Used by decompressor's startup_32() to allocate page tables for identity + * mapping of the 4G of RAM in 4-level paging mode: + * - 1 level4 table; + * - 1 level3 table; + * - 4 level2 table that maps everything with 2M pages; + * + * The additional level5 table needed for 5-level paging is allocated from + * trampoline_32bit memory. + */ # define BOOT_INIT_PGT_SIZE (6*4096) -# ifdef CONFIG_RANDOMIZE_BASE + /* - * Assuming all cross the 512GB boundary: - * 1 page for level4 - * (2+2)*4 pages for kernel, param, cmd_line, and randomized kernel - * 2 pages for first 2M (video RAM: CONFIG_X86_VERBOSE_BOOTUP). - * Total is 19 pages. + * Total number of page tables kernel_add_identity_map() can allocate, + * including page tables consumed by startup_32(). + * + * Worst-case scenario: + * - 5-level paging needs 1 level5 table; + * - KASLR needs to map kernel, boot_params, cmdline and randomized kernel, + * assuming all of them cross 256T boundary: + * + 4*2 level4 table; + * + 4*2 level3 table; + * + 4*2 level2 table; + * - X86_VERBOSE_BOOTUP needs to map the first 2M (video RAM): + * + 1 level4 table; + * + 1 level3 table; + * + 1 level2 table; + * Total: 28 tables + * + * Add 4 spare table in case decompressor touches anything beyond what is + * accounted above. Warn if it happens. */ -# ifdef CONFIG_X86_VERBOSE_BOOTUP -# define BOOT_PGT_SIZE (19*4096) -# else /* !CONFIG_X86_VERBOSE_BOOTUP */ -# define BOOT_PGT_SIZE (17*4096) -# endif -# else /* !CONFIG_RANDOMIZE_BASE */ -# define BOOT_PGT_SIZE BOOT_INIT_PGT_SIZE -# endif +# define BOOT_PGT_SIZE_WARN (28*4096) +# define BOOT_PGT_SIZE (32*4096) #else /* !CONFIG_X86_64 */ # define BOOT_STACK_SIZE 0x1000 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/kexec.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/kexec.h @@ -205,8 +205,6 @@ #endif #endif -typedef void crash_vmclear_fn(void); -extern crash_vmclear_fn __rcu *crash_vmclear_loaded_vmcss; extern void kdump_nmi_shootdown_cpus(void); #endif /* __ASSEMBLY__ */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/kvm_host.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/kvm_host.h @@ -1400,7 +1400,6 @@ * the thread holds the MMU lock in write mode. */ spinlock_t tdp_mmu_pages_lock; - struct workqueue_struct *tdp_mmu_zap_wq; #endif /* CONFIG_X86_64 */ /* @@ -1814,7 +1813,7 @@ void kvm_mmu_destroy(struct kvm_vcpu *vcpu); int kvm_mmu_create(struct kvm_vcpu *vcpu); -int kvm_mmu_init_vm(struct kvm *kvm); +void kvm_mmu_init_vm(struct kvm *kvm); void kvm_mmu_uninit_vm(struct kvm *kvm); void kvm_mmu_after_set_cpuid(struct kvm_vcpu *vcpu); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/linkage.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/linkage.h @@ -8,6 +8,14 @@ #undef notrace #define notrace __attribute__((no_instrument_function)) +#ifdef CONFIG_64BIT +/* + * The generic version tends to create spurious ENDBR instructions under + * certain conditions. + */ +#define _THIS_IP_ ({ unsigned long __here; asm ("lea 0(%%rip), %0" : "=r" (__here)); __here; }) +#endif + #ifdef CONFIG_X86_32 #define asmlinkage CPP_ASMLINKAGE __attribute__((regparm(0))) #endif /* CONFIG_X86_32 */ @@ -97,6 +105,13 @@ CFI_POST_PADDING \ SYM_FUNC_END(__cfi_##name) +/* UML needs to be able to override memcpy() and friends for KASAN. */ +#ifdef CONFIG_UML +# define SYM_FUNC_ALIAS_MEMFUNC SYM_FUNC_ALIAS_WEAK +#else +# define SYM_FUNC_ALIAS_MEMFUNC SYM_FUNC_ALIAS +#endif + /* SYM_TYPED_FUNC_START -- use for indirectly called globals, w/ CFI type */ #define SYM_TYPED_FUNC_START(name) \ SYM_TYPED_START(name, SYM_L_GLOBAL, SYM_F_ALIGN) \ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/msr-index.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/msr-index.h @@ -637,12 +637,17 @@ /* AMD Last Branch Record MSRs */ #define MSR_AMD64_LBR_SELECT 0xc000010e -/* Fam 17h MSRs */ -#define MSR_F17H_IRPERF 0xc00000e9 +/* Zen4 */ +#define MSR_ZEN4_BP_CFG 0xc001102e +#define MSR_ZEN4_BP_CFG_SHARED_BTB_FIX_BIT 5 +/* Zen 2 */ #define MSR_ZEN2_SPECTRAL_CHICKEN 0xc00110e3 #define MSR_ZEN2_SPECTRAL_CHICKEN_BIT BIT_ULL(1) +/* Fam 17h MSRs */ +#define MSR_F17H_IRPERF 0xc00000e9 + /* Fam 16h MSRs */ #define MSR_F16H_L2I_PERF_CTL 0xc0010230 #define MSR_F16H_L2I_PERF_CTR 0xc0010231 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/processor.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/processor.h @@ -676,12 +676,10 @@ #ifdef CONFIG_CPU_SUP_AMD extern u32 amd_get_nodes_per_socket(void); extern u32 amd_get_highest_perf(void); -extern bool cpu_has_ibpb_brtype_microcode(void); extern void amd_clear_divider(void); #else static inline u32 amd_get_nodes_per_socket(void) { return 0; } static inline u32 amd_get_highest_perf(void) { return 0; } -static inline bool cpu_has_ibpb_brtype_microcode(void) { return false; } static inline void amd_clear_divider(void) { } #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/reboot.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/reboot.h @@ -25,6 +25,8 @@ #define MRR_BIOS 0 #define MRR_APM 1 +typedef void crash_vmclear_fn(void); +extern crash_vmclear_fn __rcu *crash_vmclear_loaded_vmcss; void cpu_emergency_disable_virtualization(void); typedef void (*nmi_shootdown_cb)(int, struct pt_regs*); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/uaccess_64.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/uaccess_64.h @@ -116,7 +116,7 @@ "2:\n" _ASM_EXTABLE_UA(1b, 2b) :"+c" (len), "+D" (to), "+S" (from), ASM_CALL_CONSTRAINT - : : "memory", "rax", "r8", "r9", "r10", "r11"); + : : "memory", "rax"); clac(); return len; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/include/asm/virtext.h +++ linux-oracle-6.5-6.5.0/arch/x86/include/asm/virtext.h @@ -101,12 +101,6 @@ return 0; } - if (boot_cpu_data.extended_cpuid_level < SVM_CPUID_FUNC) { - if (msg) - *msg = "can't execute cpuid_8000000a"; - return 0; - } - if (!boot_cpu_has(X86_FEATURE_SVM)) { if (msg) *msg = "svm not available"; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/alternative.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/alternative.c @@ -403,6 +403,17 @@ u8 insn_buff[MAX_PATCH_LEN]; DPRINTK(ALT, "alt table %px, -> %px", start, end); + + /* + * In the case CONFIG_X86_5LEVEL=y, KASAN_SHADOW_START is defined using + * cpu_feature_enabled(X86_FEATURE_LA57) and is therefore patched here. + * During the process, KASAN becomes confused seeing partial LA57 + * conversion and triggers a false-positive out-of-bound report. + * + * Disable KASAN until the patching is complete. + */ + kasan_disable_current(); + /* * The scan order should be from start to end. A later scanned * alternative code can overwrite previously scanned alternative code. @@ -452,6 +463,8 @@ text_poke_early(instr, insn_buff, insn_buff_sz); } + + kasan_enable_current(); } static inline bool is_jcc32(struct insn *insn) @@ -720,13 +733,8 @@ { s32 *s; - /* - * Do not patch out the default return thunks if those needed are the - * ones generated by the compiler. - */ - if (cpu_feature_enabled(X86_FEATURE_RETHUNK) && - (x86_return_thunk == __x86_return_thunk)) - return; + if (cpu_feature_enabled(X86_FEATURE_RETHUNK)) + static_call_force_reinit(); for (s = start; s < end; s++) { void *dest = NULL, *addr = (void *)s + *s; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/amd_nb.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/amd_nb.c @@ -24,6 +24,8 @@ #define PCI_DEVICE_ID_AMD_19H_M40H_ROOT 0x14b5 #define PCI_DEVICE_ID_AMD_19H_M60H_ROOT 0x14d8 #define PCI_DEVICE_ID_AMD_19H_M70H_ROOT 0x14e8 +#define PCI_DEVICE_ID_AMD_1AH_M00H_ROOT 0x153a +#define PCI_DEVICE_ID_AMD_1AH_M20H_ROOT 0x1507 #define PCI_DEVICE_ID_AMD_MI200_ROOT 0x14bb #define PCI_DEVICE_ID_AMD_17H_DF_F4 0x1464 @@ -39,6 +41,7 @@ #define PCI_DEVICE_ID_AMD_19H_M60H_DF_F4 0x14e4 #define PCI_DEVICE_ID_AMD_19H_M70H_DF_F4 0x14f4 #define PCI_DEVICE_ID_AMD_19H_M78H_DF_F4 0x12fc +#define PCI_DEVICE_ID_AMD_1AH_M00H_DF_F4 0x12c4 #define PCI_DEVICE_ID_AMD_MI200_DF_F4 0x14d4 /* Protect the PCI config register pairs used for SMN. */ @@ -56,6 +59,8 @@ { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M40H_ROOT) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M60H_ROOT) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M70H_ROOT) }, + { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_1AH_M00H_ROOT) }, + { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_1AH_M20H_ROOT) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_MI200_ROOT) }, {} }; @@ -85,6 +90,8 @@ { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M60H_DF_F3) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M70H_DF_F3) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M78H_DF_F3) }, + { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_1AH_M00H_DF_F3) }, + { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_1AH_M20H_DF_F3) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_MI200_DF_F3) }, {} }; @@ -106,6 +113,7 @@ { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M40H_DF_F4) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_19H_M50H_DF_F4) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CNB17H_F4) }, + { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_1AH_M00H_DF_F4) }, { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_MI200_DF_F4) }, {} }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/apic/x2apic_uv_x.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/apic/x2apic_uv_x.c @@ -1571,7 +1571,7 @@ { struct uv_gam_range_entry *gre = uv_gre_table; int nums, numn, nump; - int cpu, i, lnid; + int i, lnid, apicid; int minsock = _min_socket; int maxsock = _max_socket; int minpnode = _min_pnode; @@ -1622,15 +1622,14 @@ /* Set socket -> node values: */ lnid = NUMA_NO_NODE; - for_each_possible_cpu(cpu) { - int nid = cpu_to_node(cpu); - int apicid, sockid; + for (apicid = 0; apicid < ARRAY_SIZE(__apicid_to_node); apicid++) { + int nid = __apicid_to_node[apicid]; + int sockid; - if (lnid == nid) + if ((nid == NUMA_NO_NODE) || (lnid == nid)) continue; lnid = nid; - apicid = per_cpu(x86_cpu_to_apicid, cpu); sockid = apicid >> uv_cpuid.socketid_shift; if (_socket_to_node[sockid - minsock] == SOCK_EMPTY) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/callthunks.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/callthunks.c @@ -272,7 +272,6 @@ pr_info("Setting up call depth tracking\n"); mutex_lock(&text_mutex); callthunks_setup(&cs, &builtin_coretext); - static_call_force_reinit(); thunks_initialized = true; mutex_unlock(&text_mutex); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/cpu/amd.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/cpu/amd.c @@ -80,6 +80,10 @@ AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x17, 0x00, 0x0, 0x2f, 0xf), AMD_MODEL_RANGE(0x17, 0x50, 0x0, 0x5f, 0xf)); +static const int amd_erratum_1485[] = + AMD_LEGACY_ERRATUM(AMD_MODEL_RANGE(0x19, 0x10, 0x0, 0x1f, 0xf), + AMD_MODEL_RANGE(0x19, 0x60, 0x0, 0xaf, 0xf)); + static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum) { int osvw_id = *erratum++; @@ -766,6 +770,15 @@ if (cpu_has(c, X86_FEATURE_TOPOEXT)) smp_num_siblings = ((cpuid_ebx(0x8000001e) >> 8) & 0xff) + 1; + + if (!cpu_has(c, X86_FEATURE_HYPERVISOR) && !cpu_has(c, X86_FEATURE_IBPB_BRTYPE)) { + if (c->x86 == 0x17 && boot_cpu_has(X86_FEATURE_AMD_IBPB)) + setup_force_cpu_cap(X86_FEATURE_IBPB_BRTYPE); + else if (c->x86 >= 0x19 && !wrmsrl_safe(MSR_IA32_PRED_CMD, PRED_CMD_SBPB)) { + setup_force_cpu_cap(X86_FEATURE_IBPB_BRTYPE); + setup_force_cpu_cap(X86_FEATURE_SBPB); + } + } } static void init_amd_k8(struct cpuinfo_x86 *c) @@ -1140,6 +1153,10 @@ pr_notice_once("AMD Zen1 DIV0 bug detected. Disable SMT for full protection.\n"); setup_force_cpu_bug(X86_BUG_DIV0); } + + if (!cpu_has(c, X86_FEATURE_HYPERVISOR) && + cpu_has_amd_erratum(c, amd_erratum_1485)) + msr_set_bit(MSR_ZEN4_BP_CFG, MSR_ZEN4_BP_CFG_SHARED_BTB_FIX_BIT); } #ifdef CONFIG_X86_32 @@ -1301,25 +1318,6 @@ on_each_cpu(zenbleed_check_cpu, NULL, 1); } -bool cpu_has_ibpb_brtype_microcode(void) -{ - switch (boot_cpu_data.x86) { - /* Zen1/2 IBPB flushes branch type predictions too. */ - case 0x17: - return boot_cpu_has(X86_FEATURE_AMD_IBPB); - case 0x19: - /* Poke the MSR bit on Zen3/4 to check its presence. */ - if (!wrmsrl_safe(MSR_IA32_PRED_CMD, PRED_CMD_SBPB)) { - setup_force_cpu_cap(X86_FEATURE_SBPB); - return true; - } else { - return false; - } - default: - return false; - } -} - /* * Issue a DIV 0/1 insn to clear any division data from previous DIV * operations. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/cpu/bugs.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/cpu/bugs.c @@ -2404,27 +2404,16 @@ static void __init srso_select_mitigation(void) { - bool has_microcode; + bool has_microcode = boot_cpu_has(X86_FEATURE_IBPB_BRTYPE); if (!boot_cpu_has_bug(X86_BUG_SRSO) || cpu_mitigations_off()) goto pred_cmd; - /* - * The first check is for the kernel running as a guest in order - * for guests to verify whether IBPB is a viable mitigation. - */ - has_microcode = boot_cpu_has(X86_FEATURE_IBPB_BRTYPE) || cpu_has_ibpb_brtype_microcode(); if (!has_microcode) { pr_warn("IBPB-extending microcode not applied!\n"); pr_warn(SRSO_NOTICE); } else { /* - * Enable the synthetic (even if in a real CPUID leaf) - * flags for guests. - */ - setup_force_cpu_cap(X86_FEATURE_IBPB_BRTYPE); - - /* * Zen1/2 with SMT off aren't vulnerable after the right * IBPB microcode has been applied. */ @@ -2444,7 +2433,7 @@ switch (srso_cmd) { case SRSO_CMD_OFF: - return; + goto pred_cmd; case SRSO_CMD_MICROCODE: if (has_microcode) { @@ -2717,7 +2706,7 @@ return sysfs_emit(buf, "%s%s\n", srso_strings[srso_mitigation], - (cpu_has_ibpb_brtype_microcode() ? "" : ", no microcode")); + boot_cpu_has(X86_FEATURE_IBPB_BRTYPE) ? "" : ", no microcode"); } static ssize_t gds_show_state(char *buf) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/cpu/sgx/encl.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/cpu/sgx/encl.c @@ -235,6 +235,21 @@ return epc_page; } +/* + * Ensure the SECS page is not swapped out. Must be called with encl->lock + * to protect the enclave states including SECS and ensure the SECS page is + * not swapped out again while being used. + */ +static struct sgx_epc_page *sgx_encl_load_secs(struct sgx_encl *encl) +{ + struct sgx_epc_page *epc_page = encl->secs.epc_page; + + if (!epc_page) + epc_page = sgx_encl_eldu(&encl->secs, NULL); + + return epc_page; +} + static struct sgx_encl_page *__sgx_encl_load_page(struct sgx_encl *encl, struct sgx_encl_page *entry) { @@ -248,11 +263,9 @@ return entry; } - if (!(encl->secs.epc_page)) { - epc_page = sgx_encl_eldu(&encl->secs, NULL); - if (IS_ERR(epc_page)) - return ERR_CAST(epc_page); - } + epc_page = sgx_encl_load_secs(encl); + if (IS_ERR(epc_page)) + return ERR_CAST(epc_page); epc_page = sgx_encl_eldu(entry, encl->secs.epc_page); if (IS_ERR(epc_page)) @@ -339,6 +352,13 @@ mutex_lock(&encl->lock); + epc_page = sgx_encl_load_secs(encl); + if (IS_ERR(epc_page)) { + if (PTR_ERR(epc_page) == -EBUSY) + vmret = VM_FAULT_NOPAGE; + goto err_out_unlock; + } + epc_page = sgx_alloc_epc_page(encl_page, false); if (IS_ERR(epc_page)) { if (PTR_ERR(epc_page) == -EBUSY) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/crash.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/crash.c @@ -48,27 +48,6 @@ unsigned int type; }; -/* - * This is used to VMCLEAR all VMCSs loaded on the - * processor. And when loading kvm_intel module, the - * callback function pointer will be assigned. - * - * protected by rcu. - */ -crash_vmclear_fn __rcu *crash_vmclear_loaded_vmcss = NULL; -EXPORT_SYMBOL_GPL(crash_vmclear_loaded_vmcss); - -static inline void cpu_crash_vmclear_loaded_vmcss(void) -{ - crash_vmclear_fn *do_vmclear_operation = NULL; - - rcu_read_lock(); - do_vmclear_operation = rcu_dereference(crash_vmclear_loaded_vmcss); - if (do_vmclear_operation) - do_vmclear_operation(); - rcu_read_unlock(); -} - #if defined(CONFIG_SMP) && defined(CONFIG_X86_LOCAL_APIC) static void kdump_nmi_callback(int cpu, struct pt_regs *regs) @@ -76,11 +55,6 @@ crash_save_cpu(regs, cpu); /* - * VMCLEAR VMCSs loaded on all cpus if needed. - */ - cpu_crash_vmclear_loaded_vmcss(); - - /* * Disable Intel PT to stop its logging */ cpu_emergency_stop_pt(); @@ -133,11 +107,6 @@ crash_smp_send_stop(); - /* - * VMCLEAR VMCSs loaded on this cpu if needed. - */ - cpu_crash_vmclear_loaded_vmcss(); - cpu_emergency_disable_virtualization(); /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/sev-shared.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/sev-shared.c @@ -256,7 +256,7 @@ return 0; } -static int sev_cpuid_hv(struct cpuid_leaf *leaf) +static int __sev_cpuid_hv_msr(struct cpuid_leaf *leaf) { int ret; @@ -279,6 +279,45 @@ return ret; } +static int __sev_cpuid_hv_ghcb(struct ghcb *ghcb, struct es_em_ctxt *ctxt, struct cpuid_leaf *leaf) +{ + u32 cr4 = native_read_cr4(); + int ret; + + ghcb_set_rax(ghcb, leaf->fn); + ghcb_set_rcx(ghcb, leaf->subfn); + + if (cr4 & X86_CR4_OSXSAVE) + /* Safe to read xcr0 */ + ghcb_set_xcr0(ghcb, xgetbv(XCR_XFEATURE_ENABLED_MASK)); + else + /* xgetbv will cause #UD - use reset value for xcr0 */ + ghcb_set_xcr0(ghcb, 1); + + ret = sev_es_ghcb_hv_call(ghcb, ctxt, SVM_EXIT_CPUID, 0, 0); + if (ret != ES_OK) + return ret; + + if (!(ghcb_rax_is_valid(ghcb) && + ghcb_rbx_is_valid(ghcb) && + ghcb_rcx_is_valid(ghcb) && + ghcb_rdx_is_valid(ghcb))) + return ES_VMM_ERROR; + + leaf->eax = ghcb->save.rax; + leaf->ebx = ghcb->save.rbx; + leaf->ecx = ghcb->save.rcx; + leaf->edx = ghcb->save.rdx; + + return ES_OK; +} + +static int sev_cpuid_hv(struct ghcb *ghcb, struct es_em_ctxt *ctxt, struct cpuid_leaf *leaf) +{ + return ghcb ? __sev_cpuid_hv_ghcb(ghcb, ctxt, leaf) + : __sev_cpuid_hv_msr(leaf); +} + /* * This may be called early while still running on the initial identity * mapping. Use RIP-relative addressing to obtain the correct address @@ -388,19 +427,20 @@ return false; } -static void snp_cpuid_hv(struct cpuid_leaf *leaf) +static void snp_cpuid_hv(struct ghcb *ghcb, struct es_em_ctxt *ctxt, struct cpuid_leaf *leaf) { - if (sev_cpuid_hv(leaf)) + if (sev_cpuid_hv(ghcb, ctxt, leaf)) sev_es_terminate(SEV_TERM_SET_LINUX, GHCB_TERM_CPUID_HV); } -static int snp_cpuid_postprocess(struct cpuid_leaf *leaf) +static int snp_cpuid_postprocess(struct ghcb *ghcb, struct es_em_ctxt *ctxt, + struct cpuid_leaf *leaf) { struct cpuid_leaf leaf_hv = *leaf; switch (leaf->fn) { case 0x1: - snp_cpuid_hv(&leaf_hv); + snp_cpuid_hv(ghcb, ctxt, &leaf_hv); /* initial APIC ID */ leaf->ebx = (leaf_hv.ebx & GENMASK(31, 24)) | (leaf->ebx & GENMASK(23, 0)); @@ -419,7 +459,7 @@ break; case 0xB: leaf_hv.subfn = 0; - snp_cpuid_hv(&leaf_hv); + snp_cpuid_hv(ghcb, ctxt, &leaf_hv); /* extended APIC ID */ leaf->edx = leaf_hv.edx; @@ -467,7 +507,7 @@ } break; case 0x8000001E: - snp_cpuid_hv(&leaf_hv); + snp_cpuid_hv(ghcb, ctxt, &leaf_hv); /* extended APIC ID */ leaf->eax = leaf_hv.eax; @@ -488,7 +528,7 @@ * Returns -EOPNOTSUPP if feature not enabled. Any other non-zero return value * should be treated as fatal by caller. */ -static int snp_cpuid(struct cpuid_leaf *leaf) +static int snp_cpuid(struct ghcb *ghcb, struct es_em_ctxt *ctxt, struct cpuid_leaf *leaf) { const struct snp_cpuid_table *cpuid_table = snp_cpuid_get_table(); @@ -522,7 +562,7 @@ return 0; } - return snp_cpuid_postprocess(leaf); + return snp_cpuid_postprocess(ghcb, ctxt, leaf); } /* @@ -544,14 +584,14 @@ leaf.fn = fn; leaf.subfn = subfn; - ret = snp_cpuid(&leaf); + ret = snp_cpuid(NULL, NULL, &leaf); if (!ret) goto cpuid_done; if (ret != -EOPNOTSUPP) goto fail; - if (sev_cpuid_hv(&leaf)) + if (__sev_cpuid_hv_msr(&leaf)) goto fail; cpuid_done: @@ -592,6 +632,23 @@ sev_es_terminate(SEV_TERM_SET_GEN, GHCB_SEV_ES_GEN_REQ); } +static enum es_result vc_insn_string_check(struct es_em_ctxt *ctxt, + unsigned long address, + bool write) +{ + if (user_mode(ctxt->regs) && fault_in_kernel_space(address)) { + ctxt->fi.vector = X86_TRAP_PF; + ctxt->fi.error_code = X86_PF_USER; + ctxt->fi.cr2 = address; + if (write) + ctxt->fi.error_code |= X86_PF_WRITE; + + return ES_EXCEPTION; + } + + return ES_OK; +} + static enum es_result vc_insn_string_read(struct es_em_ctxt *ctxt, void *src, char *buf, unsigned int data_size, @@ -599,7 +656,12 @@ bool backwards) { int i, b = backwards ? -1 : 1; - enum es_result ret = ES_OK; + unsigned long address = (unsigned long)src; + enum es_result ret; + + ret = vc_insn_string_check(ctxt, address, false); + if (ret != ES_OK) + return ret; for (i = 0; i < count; i++) { void *s = src + (i * data_size * b); @@ -620,7 +682,12 @@ bool backwards) { int i, s = backwards ? -1 : 1; - enum es_result ret = ES_OK; + unsigned long address = (unsigned long)dst; + enum es_result ret; + + ret = vc_insn_string_check(ctxt, address, true); + if (ret != ES_OK) + return ret; for (i = 0; i < count; i++) { void *d = dst + (i * data_size * s); @@ -656,6 +723,9 @@ static enum es_result vc_ioio_exitinfo(struct es_em_ctxt *ctxt, u64 *exitinfo) { struct insn *insn = &ctxt->insn; + size_t size; + u64 port; + *exitinfo = 0; switch (insn->opcode.bytes[0]) { @@ -664,7 +734,7 @@ case 0x6d: *exitinfo |= IOIO_TYPE_INS; *exitinfo |= IOIO_SEG_ES; - *exitinfo |= (ctxt->regs->dx & 0xffff) << 16; + port = ctxt->regs->dx & 0xffff; break; /* OUTS opcodes */ @@ -672,41 +742,43 @@ case 0x6f: *exitinfo |= IOIO_TYPE_OUTS; *exitinfo |= IOIO_SEG_DS; - *exitinfo |= (ctxt->regs->dx & 0xffff) << 16; + port = ctxt->regs->dx & 0xffff; break; /* IN immediate opcodes */ case 0xe4: case 0xe5: *exitinfo |= IOIO_TYPE_IN; - *exitinfo |= (u8)insn->immediate.value << 16; + port = (u8)insn->immediate.value & 0xffff; break; /* OUT immediate opcodes */ case 0xe6: case 0xe7: *exitinfo |= IOIO_TYPE_OUT; - *exitinfo |= (u8)insn->immediate.value << 16; + port = (u8)insn->immediate.value & 0xffff; break; /* IN register opcodes */ case 0xec: case 0xed: *exitinfo |= IOIO_TYPE_IN; - *exitinfo |= (ctxt->regs->dx & 0xffff) << 16; + port = ctxt->regs->dx & 0xffff; break; /* OUT register opcodes */ case 0xee: case 0xef: *exitinfo |= IOIO_TYPE_OUT; - *exitinfo |= (ctxt->regs->dx & 0xffff) << 16; + port = ctxt->regs->dx & 0xffff; break; default: return ES_DECODE_FAILED; } + *exitinfo |= port << 16; + switch (insn->opcode.bytes[0]) { case 0x6c: case 0x6e: @@ -716,12 +788,15 @@ case 0xee: /* Single byte opcodes */ *exitinfo |= IOIO_DATA_8; + size = 1; break; default: /* Length determined by instruction parsing */ *exitinfo |= (insn->opnd_bytes == 2) ? IOIO_DATA_16 : IOIO_DATA_32; + size = (insn->opnd_bytes == 2) ? 2 : 4; } + switch (insn->addr_bytes) { case 2: *exitinfo |= IOIO_ADDR_16; @@ -737,7 +812,7 @@ if (insn_has_rep_prefix(insn)) *exitinfo |= IOIO_REP; - return ES_OK; + return vc_ioio_check(ctxt, (u16)port, size); } static enum es_result vc_handle_ioio(struct ghcb *ghcb, struct es_em_ctxt *ctxt) @@ -848,14 +923,15 @@ return ret; } -static int vc_handle_cpuid_snp(struct pt_regs *regs) +static int vc_handle_cpuid_snp(struct ghcb *ghcb, struct es_em_ctxt *ctxt) { + struct pt_regs *regs = ctxt->regs; struct cpuid_leaf leaf; int ret; leaf.fn = regs->ax; leaf.subfn = regs->cx; - ret = snp_cpuid(&leaf); + ret = snp_cpuid(ghcb, ctxt, &leaf); if (!ret) { regs->ax = leaf.eax; regs->bx = leaf.ebx; @@ -874,7 +950,7 @@ enum es_result ret; int snp_cpuid_ret; - snp_cpuid_ret = vc_handle_cpuid_snp(regs); + snp_cpuid_ret = vc_handle_cpuid_snp(ghcb, ctxt); if (!snp_cpuid_ret) return ES_OK; if (snp_cpuid_ret != -EOPNOTSUPP) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kernel/sev.c +++ linux-oracle-6.5-6.5.0/arch/x86/kernel/sev.c @@ -524,6 +524,33 @@ return ES_OK; } +static enum es_result vc_ioio_check(struct es_em_ctxt *ctxt, u16 port, size_t size) +{ + BUG_ON(size > 4); + + if (user_mode(ctxt->regs)) { + struct thread_struct *t = ¤t->thread; + struct io_bitmap *iobm = t->io_bitmap; + size_t idx; + + if (!iobm) + goto fault; + + for (idx = port; idx < port + size; ++idx) { + if (test_bit(idx, iobm->bitmap)) + goto fault; + } + } + + return ES_OK; + +fault: + ctxt->fi.vector = X86_TRAP_GP; + ctxt->fi.error_code = 0; + + return ES_EXCEPTION; +} + /* Include code shared with pre-decompression boot stage */ #include "sev-shared.c" @@ -868,8 +895,7 @@ void snp_accept_memory(phys_addr_t start, phys_addr_t end) { - unsigned long vaddr; - unsigned int npages; + unsigned long vaddr, npages; if (!cc_platform_has(CC_ATTR_GUEST_SEV_SNP)) return; @@ -1509,6 +1535,9 @@ return ES_DECODE_FAILED; } + if (user_mode(ctxt->regs)) + return ES_UNSUPPORTED; + switch (mmio) { case INSN_MMIO_WRITE: memcpy(ghcb->shared_buffer, reg_data, bytes); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/mmu/mmu.c +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/mmu/mmu.c @@ -6206,21 +6206,17 @@ kvm_mmu_zap_all_fast(kvm); } -int kvm_mmu_init_vm(struct kvm *kvm) +void kvm_mmu_init_vm(struct kvm *kvm) { struct kvm_page_track_notifier_node *node = &kvm->arch.mmu_sp_tracker; - int r; INIT_LIST_HEAD(&kvm->arch.active_mmu_pages); INIT_LIST_HEAD(&kvm->arch.zapped_obsolete_pages); INIT_LIST_HEAD(&kvm->arch.possible_nx_huge_pages); spin_lock_init(&kvm->arch.mmu_unsync_pages_lock); - if (tdp_mmu_enabled) { - r = kvm_mmu_init_tdp_mmu(kvm); - if (r < 0) - return r; - } + if (tdp_mmu_enabled) + kvm_mmu_init_tdp_mmu(kvm); node->track_write = kvm_mmu_pte_write; node->track_flush_slot = kvm_mmu_invalidate_zap_pages_in_memslot; @@ -6233,8 +6229,6 @@ kvm->arch.split_desc_cache.kmem_cache = pte_list_desc_cache; kvm->arch.split_desc_cache.gfp_zero = __GFP_ZERO; - - return 0; } static void mmu_free_vm_memory_caches(struct kvm *kvm) @@ -6294,7 +6288,6 @@ void kvm_zap_gfn_range(struct kvm *kvm, gfn_t gfn_start, gfn_t gfn_end) { bool flush; - int i; if (WARN_ON_ONCE(gfn_end <= gfn_start)) return; @@ -6305,11 +6298,8 @@ flush = kvm_rmap_zap_gfn_range(kvm, gfn_start, gfn_end); - if (tdp_mmu_enabled) { - for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) - flush = kvm_tdp_mmu_zap_leafs(kvm, i, gfn_start, - gfn_end, true, flush); - } + if (tdp_mmu_enabled) + flush = kvm_tdp_mmu_zap_leafs(kvm, gfn_start, gfn_end, flush); if (flush) kvm_flush_remote_tlbs_range(kvm, gfn_start, gfn_end - gfn_start); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/mmu/mmu_internal.h +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/mmu/mmu_internal.h @@ -56,7 +56,12 @@ bool tdp_mmu_page; bool unsync; - u8 mmu_valid_gen; + union { + u8 mmu_valid_gen; + + /* Only accessed under slots_lock. */ + bool tdp_mmu_scheduled_root_to_zap; + }; /* * The shadow page can't be replaced by an equivalent huge page @@ -98,13 +103,7 @@ struct kvm_rmap_head parent_ptes; /* rmap pointers to parent sptes */ tdp_ptep_t ptep; }; - union { - DECLARE_BITMAP(unsync_child_bitmap, 512); - struct { - struct work_struct tdp_mmu_async_work; - void *tdp_mmu_async_data; - }; - }; + DECLARE_BITMAP(unsync_child_bitmap, 512); /* * Tracks shadow pages that, if zapped, would allow KVM to create an NX only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/mmu/tdp_mmu.c +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/mmu/tdp_mmu.c @@ -12,18 +12,10 @@ #include /* Initializes the TDP MMU for the VM, if enabled. */ -int kvm_mmu_init_tdp_mmu(struct kvm *kvm) +void kvm_mmu_init_tdp_mmu(struct kvm *kvm) { - struct workqueue_struct *wq; - - wq = alloc_workqueue("kvm", WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE, 0); - if (!wq) - return -ENOMEM; - INIT_LIST_HEAD(&kvm->arch.tdp_mmu_roots); spin_lock_init(&kvm->arch.tdp_mmu_pages_lock); - kvm->arch.tdp_mmu_zap_wq = wq; - return 1; } /* Arbitrarily returns true so that this may be used in if statements. */ @@ -46,20 +38,15 @@ * ultimately frees all roots. */ kvm_tdp_mmu_invalidate_all_roots(kvm); - - /* - * Destroying a workqueue also first flushes the workqueue, i.e. no - * need to invoke kvm_tdp_mmu_zap_invalidated_roots(). - */ - destroy_workqueue(kvm->arch.tdp_mmu_zap_wq); + kvm_tdp_mmu_zap_invalidated_roots(kvm); WARN_ON(atomic64_read(&kvm->arch.tdp_mmu_pages)); WARN_ON(!list_empty(&kvm->arch.tdp_mmu_roots)); /* * Ensure that all the outstanding RCU callbacks to free shadow pages - * can run before the VM is torn down. Work items on tdp_mmu_zap_wq - * can call kvm_tdp_mmu_put_root and create new callbacks. + * can run before the VM is torn down. Putting the last reference to + * zapped roots will create new callbacks. */ rcu_barrier(); } @@ -86,46 +73,6 @@ tdp_mmu_free_sp(sp); } -static void tdp_mmu_zap_root(struct kvm *kvm, struct kvm_mmu_page *root, - bool shared); - -static void tdp_mmu_zap_root_work(struct work_struct *work) -{ - struct kvm_mmu_page *root = container_of(work, struct kvm_mmu_page, - tdp_mmu_async_work); - struct kvm *kvm = root->tdp_mmu_async_data; - - read_lock(&kvm->mmu_lock); - - /* - * A TLB flush is not necessary as KVM performs a local TLB flush when - * allocating a new root (see kvm_mmu_load()), and when migrating vCPU - * to a different pCPU. Note, the local TLB flush on reuse also - * invalidates any paging-structure-cache entries, i.e. TLB entries for - * intermediate paging structures, that may be zapped, as such entries - * are associated with the ASID on both VMX and SVM. - */ - tdp_mmu_zap_root(kvm, root, true); - - /* - * Drop the refcount using kvm_tdp_mmu_put_root() to test its logic for - * avoiding an infinite loop. By design, the root is reachable while - * it's being asynchronously zapped, thus a different task can put its - * last reference, i.e. flowing through kvm_tdp_mmu_put_root() for an - * asynchronously zapped root is unavoidable. - */ - kvm_tdp_mmu_put_root(kvm, root, true); - - read_unlock(&kvm->mmu_lock); -} - -static void tdp_mmu_schedule_zap_root(struct kvm *kvm, struct kvm_mmu_page *root) -{ - root->tdp_mmu_async_data = kvm; - INIT_WORK(&root->tdp_mmu_async_work, tdp_mmu_zap_root_work); - queue_work(kvm->arch.tdp_mmu_zap_wq, &root->tdp_mmu_async_work); -} - void kvm_tdp_mmu_put_root(struct kvm *kvm, struct kvm_mmu_page *root, bool shared) { @@ -211,8 +158,12 @@ #define for_each_valid_tdp_mmu_root_yield_safe(_kvm, _root, _as_id, _shared) \ __for_each_tdp_mmu_root_yield_safe(_kvm, _root, _as_id, _shared, true) -#define for_each_tdp_mmu_root_yield_safe(_kvm, _root, _as_id) \ - __for_each_tdp_mmu_root_yield_safe(_kvm, _root, _as_id, false, false) +#define for_each_tdp_mmu_root_yield_safe(_kvm, _root, _shared) \ + for (_root = tdp_mmu_next_root(_kvm, NULL, _shared, false); \ + _root; \ + _root = tdp_mmu_next_root(_kvm, _root, _shared, false)) \ + if (!kvm_lockdep_assert_mmu_lock_held(_kvm, _shared)) { \ + } else /* * Iterate over all TDP MMU roots. Requires that mmu_lock be held for write, @@ -292,7 +243,7 @@ * by a memslot update or by the destruction of the VM. Initialize the * refcount to two; one reference for the vCPU, and one reference for * the TDP MMU itself, which is held until the root is invalidated and - * is ultimately put by tdp_mmu_zap_root_work(). + * is ultimately put by kvm_tdp_mmu_zap_invalidated_roots(). */ refcount_set(&root->tdp_mmu_root_count, 2); @@ -877,13 +828,12 @@ * true if a TLB flush is needed before releasing the MMU lock, i.e. if one or * more SPTEs were zapped since the MMU lock was last acquired. */ -bool kvm_tdp_mmu_zap_leafs(struct kvm *kvm, int as_id, gfn_t start, gfn_t end, - bool can_yield, bool flush) +bool kvm_tdp_mmu_zap_leafs(struct kvm *kvm, gfn_t start, gfn_t end, bool flush) { struct kvm_mmu_page *root; - for_each_tdp_mmu_root_yield_safe(kvm, root, as_id) - flush = tdp_mmu_zap_leafs(kvm, root, start, end, can_yield, flush); + for_each_tdp_mmu_root_yield_safe(kvm, root, false) + flush = tdp_mmu_zap_leafs(kvm, root, start, end, true, flush); return flush; } @@ -891,7 +841,6 @@ void kvm_tdp_mmu_zap_all(struct kvm *kvm) { struct kvm_mmu_page *root; - int i; /* * Zap all roots, including invalid roots, as all SPTEs must be dropped @@ -905,10 +854,8 @@ * is being destroyed or the userspace VMM has exited. In both cases, * KVM_RUN is unreachable, i.e. no vCPUs will ever service the request. */ - for (i = 0; i < KVM_ADDRESS_SPACE_NUM; i++) { - for_each_tdp_mmu_root_yield_safe(kvm, root, i) - tdp_mmu_zap_root(kvm, root, false); - } + for_each_tdp_mmu_root_yield_safe(kvm, root, false) + tdp_mmu_zap_root(kvm, root, false); } /* @@ -917,18 +864,47 @@ */ void kvm_tdp_mmu_zap_invalidated_roots(struct kvm *kvm) { - flush_workqueue(kvm->arch.tdp_mmu_zap_wq); + struct kvm_mmu_page *root; + + read_lock(&kvm->mmu_lock); + + for_each_tdp_mmu_root_yield_safe(kvm, root, true) { + if (!root->tdp_mmu_scheduled_root_to_zap) + continue; + + root->tdp_mmu_scheduled_root_to_zap = false; + KVM_BUG_ON(!root->role.invalid, kvm); + + /* + * A TLB flush is not necessary as KVM performs a local TLB + * flush when allocating a new root (see kvm_mmu_load()), and + * when migrating a vCPU to a different pCPU. Note, the local + * TLB flush on reuse also invalidates paging-structure-cache + * entries, i.e. TLB entries for intermediate paging structures, + * that may be zapped, as such entries are associated with the + * ASID on both VMX and SVM. + */ + tdp_mmu_zap_root(kvm, root, true); + + /* + * The referenced needs to be put *after* zapping the root, as + * the root must be reachable by mmu_notifiers while it's being + * zapped + */ + kvm_tdp_mmu_put_root(kvm, root, true); + } + + read_unlock(&kvm->mmu_lock); } /* * Mark each TDP MMU root as invalid to prevent vCPUs from reusing a root that * is about to be zapped, e.g. in response to a memslots update. The actual - * zapping is performed asynchronously. Using a separate workqueue makes it - * easy to ensure that the destruction is performed before the "fast zap" - * completes, without keeping a separate list of invalidated roots; the list is - * effectively the list of work items in the workqueue. + * zapping is done separately so that it happens with mmu_lock with read, + * whereas invalidating roots must be done with mmu_lock held for write (unless + * the VM is being destroyed). * - * Note, the asynchronous worker is gifted the TDP MMU's reference. + * Note, kvm_tdp_mmu_zap_invalidated_roots() is gifted the TDP MMU's reference. * See kvm_tdp_mmu_get_vcpu_root_hpa(). */ void kvm_tdp_mmu_invalidate_all_roots(struct kvm *kvm) @@ -953,19 +929,20 @@ /* * As above, mmu_lock isn't held when destroying the VM! There can't * be other references to @kvm, i.e. nothing else can invalidate roots - * or be consuming roots, but walking the list of roots does need to be - * guarded against roots being deleted by the asynchronous zap worker. + * or get/put references to roots. */ - rcu_read_lock(); - - list_for_each_entry_rcu(root, &kvm->arch.tdp_mmu_roots, link) { + list_for_each_entry(root, &kvm->arch.tdp_mmu_roots, link) { + /* + * Note, invalid roots can outlive a memslot update! Invalid + * roots must be *zapped* before the memslot update completes, + * but a different task can acquire a reference and keep the + * root alive after its been zapped. + */ if (!root->role.invalid) { + root->tdp_mmu_scheduled_root_to_zap = true; root->role.invalid = true; - tdp_mmu_schedule_zap_root(kvm, root); } } - - rcu_read_unlock(); } /* @@ -1146,8 +1123,13 @@ bool kvm_tdp_mmu_unmap_gfn_range(struct kvm *kvm, struct kvm_gfn_range *range, bool flush) { - return kvm_tdp_mmu_zap_leafs(kvm, range->slot->as_id, range->start, - range->end, range->may_block, flush); + struct kvm_mmu_page *root; + + __for_each_tdp_mmu_root_yield_safe(kvm, root, range->slot->as_id, false, false) + flush = tdp_mmu_zap_leafs(kvm, root, range->start, range->end, + range->may_block, flush); + + return flush; } typedef bool (*tdp_handler_t)(struct kvm *kvm, struct tdp_iter *iter, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/mmu/tdp_mmu.h +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/mmu/tdp_mmu.h @@ -7,7 +7,7 @@ #include "spte.h" -int kvm_mmu_init_tdp_mmu(struct kvm *kvm); +void kvm_mmu_init_tdp_mmu(struct kvm *kvm); void kvm_mmu_uninit_tdp_mmu(struct kvm *kvm); hpa_t kvm_tdp_mmu_get_vcpu_root_hpa(struct kvm_vcpu *vcpu); @@ -20,8 +20,7 @@ void kvm_tdp_mmu_put_root(struct kvm *kvm, struct kvm_mmu_page *root, bool shared); -bool kvm_tdp_mmu_zap_leafs(struct kvm *kvm, int as_id, gfn_t start, - gfn_t end, bool can_yield, bool flush); +bool kvm_tdp_mmu_zap_leafs(struct kvm *kvm, gfn_t start, gfn_t end, bool flush); bool kvm_tdp_mmu_zap_sp(struct kvm *kvm, struct kvm_mmu_page *sp); void kvm_tdp_mmu_zap_all(struct kvm *kvm); void kvm_tdp_mmu_invalidate_all_roots(struct kvm *kvm); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/svm/avic.c +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/svm/avic.c @@ -791,6 +791,7 @@ int ret = 0; unsigned long flags; struct amd_svm_iommu_ir *ir; + u64 entry; /** * In some cases, the existing irte is updated and re-set, @@ -824,6 +825,18 @@ ir->data = pi->ir_data; spin_lock_irqsave(&svm->ir_list_lock, flags); + + /* + * Update the target pCPU for IOMMU doorbells if the vCPU is running. + * If the vCPU is NOT running, i.e. is blocking or scheduled out, KVM + * will update the pCPU info when the vCPU awkened and/or scheduled in. + * See also avic_vcpu_load(). + */ + entry = READ_ONCE(*(svm->avic_physical_id_cache)); + if (entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK) + amd_iommu_update_ga(entry & AVIC_PHYSICAL_ID_ENTRY_HOST_PHYSICAL_ID_MASK, + true, pi->ir_data); + list_add(&ir->node, &svm->ir_list); spin_unlock_irqrestore(&svm->ir_list_lock, flags); out: @@ -986,10 +999,11 @@ avic_update_iommu_vcpu_affinity(struct kvm_vcpu *vcpu, int cpu, bool r) { int ret = 0; - unsigned long flags; struct amd_svm_iommu_ir *ir; struct vcpu_svm *svm = to_svm(vcpu); + lockdep_assert_held(&svm->ir_list_lock); + if (!kvm_arch_has_assigned_device(vcpu->kvm)) return 0; @@ -997,19 +1011,15 @@ * Here, we go through the per-vcpu ir_list to update all existing * interrupt remapping table entry targeting this vcpu. */ - spin_lock_irqsave(&svm->ir_list_lock, flags); - if (list_empty(&svm->ir_list)) - goto out; + return 0; list_for_each_entry(ir, &svm->ir_list, node) { ret = amd_iommu_update_ga(cpu, r, ir->data); if (ret) - break; + return ret; } -out: - spin_unlock_irqrestore(&svm->ir_list_lock, flags); - return ret; + return 0; } void avic_vcpu_load(struct kvm_vcpu *vcpu, int cpu) @@ -1017,6 +1027,7 @@ u64 entry; int h_physical_id = kvm_cpu_get_apicid(cpu); struct vcpu_svm *svm = to_svm(vcpu); + unsigned long flags; lockdep_assert_preemption_disabled(); @@ -1033,6 +1044,15 @@ if (kvm_vcpu_is_blocking(vcpu)) return; + /* + * Grab the per-vCPU interrupt remapping lock even if the VM doesn't + * _currently_ have assigned devices, as that can change. Holding + * ir_list_lock ensures that either svm_ir_list_add() will consume + * up-to-date entry information, or that this task will wait until + * svm_ir_list_add() completes to set the new target pCPU. + */ + spin_lock_irqsave(&svm->ir_list_lock, flags); + entry = READ_ONCE(*(svm->avic_physical_id_cache)); WARN_ON_ONCE(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK); @@ -1042,25 +1062,48 @@ WRITE_ONCE(*(svm->avic_physical_id_cache), entry); avic_update_iommu_vcpu_affinity(vcpu, h_physical_id, true); + + spin_unlock_irqrestore(&svm->ir_list_lock, flags); } void avic_vcpu_put(struct kvm_vcpu *vcpu) { u64 entry; struct vcpu_svm *svm = to_svm(vcpu); + unsigned long flags; lockdep_assert_preemption_disabled(); + /* + * Note, reading the Physical ID entry outside of ir_list_lock is safe + * as only the pCPU that has loaded (or is loading) the vCPU is allowed + * to modify the entry, and preemption is disabled. I.e. the vCPU + * can't be scheduled out and thus avic_vcpu_{put,load}() can't run + * recursively. + */ entry = READ_ONCE(*(svm->avic_physical_id_cache)); /* Nothing to do if IsRunning == '0' due to vCPU blocking. */ if (!(entry & AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK)) return; + /* + * Take and hold the per-vCPU interrupt remapping lock while updating + * the Physical ID entry even though the lock doesn't protect against + * multiple writers (see above). Holding ir_list_lock ensures that + * either svm_ir_list_add() will consume up-to-date entry information, + * or that this task will wait until svm_ir_list_add() completes to + * mark the vCPU as not running. + */ + spin_lock_irqsave(&svm->ir_list_lock, flags); + avic_update_iommu_vcpu_affinity(vcpu, -1, 0); entry &= ~AVIC_PHYSICAL_ID_ENTRY_IS_RUNNING_MASK; WRITE_ONCE(*(svm->avic_physical_id_cache), entry); + + spin_unlock_irqrestore(&svm->ir_list_lock, flags); + } void avic_refresh_virtual_apic_mode(struct kvm_vcpu *vcpu) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/svm/nested.c +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/svm/nested.c @@ -695,10 +695,9 @@ vmcb02->control.tsc_offset = vcpu->arch.tsc_offset; - if (svm->tsc_ratio_msr != kvm_caps.default_tsc_scaling_ratio) { - WARN_ON(!svm->tsc_scaling_enabled); + if (svm->tsc_scaling_enabled && + svm->tsc_ratio_msr != kvm_caps.default_tsc_scaling_ratio) nested_svm_update_tsc_ratio_msr(vcpu); - } vmcb02->control.int_ctl = (svm->nested.ctl.int_ctl & int_ctl_vmcb12_bits) | @@ -1101,8 +1100,8 @@ vmcb_mark_dirty(vmcb01, VMCB_INTERCEPTS); } - if (svm->tsc_ratio_msr != kvm_caps.default_tsc_scaling_ratio) { - WARN_ON(!svm->tsc_scaling_enabled); + if (kvm_caps.has_tsc_control && + vcpu->arch.tsc_scaling_ratio != vcpu->arch.l1_tsc_scaling_ratio) { vcpu->arch.tsc_scaling_ratio = vcpu->arch.l1_tsc_scaling_ratio; __svm_write_tsc_multiplier(vcpu->arch.tsc_scaling_ratio); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/svm/sev.c +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/svm/sev.c @@ -1725,7 +1725,7 @@ * Note, the source is not required to have the same number of * vCPUs as the destination when migrating a vanilla SEV VM. */ - src_vcpu = kvm_get_vcpu(dst_kvm, i); + src_vcpu = kvm_get_vcpu(src_kvm, i); src_svm = to_svm(src_vcpu); /* @@ -2881,7 +2881,10 @@ svm->sev_es.ghcb_sa); break; case SVM_VMGEXIT_NMI_COMPLETE: - ret = svm_invoke_exit_handler(vcpu, SVM_EXIT_IRET); + ++vcpu->stat.nmi_window_exits; + svm->nmi_masked = false; + kvm_make_request(KVM_REQ_EVENT, vcpu); + ret = 1; break; case SVM_VMGEXIT_AP_HLT_LOOP: ret = kvm_emulate_ap_reset_hold(vcpu); @@ -2942,6 +2945,32 @@ count, in); } +static void sev_es_vcpu_after_set_cpuid(struct vcpu_svm *svm) +{ + struct kvm_vcpu *vcpu = &svm->vcpu; + + if (boot_cpu_has(X86_FEATURE_V_TSC_AUX)) { + bool v_tsc_aux = guest_cpuid_has(vcpu, X86_FEATURE_RDTSCP) || + guest_cpuid_has(vcpu, X86_FEATURE_RDPID); + + set_msr_interception(vcpu, svm->msrpm, MSR_TSC_AUX, v_tsc_aux, v_tsc_aux); + } +} + +void sev_vcpu_after_set_cpuid(struct vcpu_svm *svm) +{ + struct kvm_vcpu *vcpu = &svm->vcpu; + struct kvm_cpuid_entry2 *best; + + /* For sev guests, the memory encryption bit is not reserved in CR3. */ + best = kvm_find_cpuid_entry(vcpu, 0x8000001F); + if (best) + vcpu->arch.reserved_gpa_bits &= ~(1UL << (best->ebx & 0x3f)); + + if (sev_es_guest(svm->vcpu.kvm)) + sev_es_vcpu_after_set_cpuid(svm); +} + static void sev_es_init_vmcb(struct vcpu_svm *svm) { struct kvm_vcpu *vcpu = &svm->vcpu; @@ -2952,9 +2981,12 @@ /* * An SEV-ES guest requires a VMSA area that is a separate from the * VMCB page. Do not include the encryption mask on the VMSA physical - * address since hardware will access it using the guest key. + * address since hardware will access it using the guest key. Note, + * the VMSA will be NULL if this vCPU is the destination for intrahost + * migration, and will be copied later. */ - svm->vmcb->control.vmsa_pa = __pa(svm->sev_es.vmsa); + if (svm->sev_es.vmsa) + svm->vmcb->control.vmsa_pa = __pa(svm->sev_es.vmsa); /* Can't intercept CR register access, HV can't modify CR registers */ svm_clr_intercept(svm, INTERCEPT_CR0_READ); @@ -2985,14 +3017,6 @@ set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTBRANCHTOIP, 1, 1); set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTFROMIP, 1, 1); set_msr_interception(vcpu, svm->msrpm, MSR_IA32_LASTINTTOIP, 1, 1); - - if (boot_cpu_has(X86_FEATURE_V_TSC_AUX) && - (guest_cpuid_has(&svm->vcpu, X86_FEATURE_RDTSCP) || - guest_cpuid_has(&svm->vcpu, X86_FEATURE_RDPID))) { - set_msr_interception(vcpu, svm->msrpm, MSR_TSC_AUX, 1, 1); - if (guest_cpuid_has(&svm->vcpu, X86_FEATURE_RDTSCP)) - svm_clr_intercept(svm, INTERCEPT_RDTSCP); - } } void sev_init_vmcb(struct vcpu_svm *svm) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/svm/svm.h +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/svm/svm.h @@ -733,6 +733,7 @@ void sev_hardware_unsetup(void); int sev_cpu_init(struct svm_cpu_data *sd); void sev_init_vmcb(struct vcpu_svm *svm); +void sev_vcpu_after_set_cpuid(struct vcpu_svm *svm); void sev_free_vcpu(struct kvm_vcpu *vcpu); int sev_handle_vmgexit(struct kvm_vcpu *vcpu); int sev_es_string_io(struct vcpu_svm *svm, int size, unsigned int port, int in); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/vmx/vmx.c +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/vmx/vmx.c @@ -41,7 +41,7 @@ #include #include #include -#include +#include #include #include #include @@ -754,7 +754,6 @@ return ret; } -#ifdef CONFIG_KEXEC_CORE static void crash_vmclear_local_loaded_vmcss(void) { int cpu = raw_smp_processor_id(); @@ -764,7 +763,6 @@ loaded_vmcss_on_cpu_link) vmcs_clear(v->vmcs); } -#endif /* CONFIG_KEXEC_CORE */ static void __loaded_vmcs_clear(void *arg) { @@ -7243,13 +7241,20 @@ flags); vcpu->arch.cr2 = native_read_cr2(); + vcpu->arch.regs_avail &= ~VMX_REGS_LAZY_LOAD_SET; + + vmx->idt_vectoring_info = 0; vmx_enable_fb_clear(vmx); - if (unlikely(vmx->fail)) + if (unlikely(vmx->fail)) { vmx->exit_reason.full = 0xdead; - else - vmx->exit_reason.full = vmcs_read32(VM_EXIT_REASON); + goto out; + } + + vmx->exit_reason.full = vmcs_read32(VM_EXIT_REASON); + if (likely(!vmx->exit_reason.failed_vmentry)) + vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); if ((u16)vmx->exit_reason.basic == EXIT_REASON_EXCEPTION_NMI && is_nmi(vmx_get_intr_info(vcpu))) { @@ -7258,6 +7263,7 @@ kvm_after_interrupt(vcpu); } +out: guest_state_exit_irqoff(); } @@ -7379,8 +7385,6 @@ loadsegment(es, __USER_DS); #endif - vcpu->arch.regs_avail &= ~VMX_REGS_LAZY_LOAD_SET; - pt_guest_exit(vmx); kvm_load_host_xsave_state(vcpu); @@ -7397,17 +7401,12 @@ vmx->nested.nested_run_pending = 0; } - vmx->idt_vectoring_info = 0; - if (unlikely(vmx->fail)) return EXIT_FASTPATH_NONE; if (unlikely((u16)vmx->exit_reason.basic == EXIT_REASON_MCE_DURING_VMENTRY)) kvm_machine_check(); - if (likely(!vmx->exit_reason.failed_vmentry)) - vmx->idt_vectoring_info = vmcs_read32(IDT_VECTORING_INFO_FIELD); - trace_kvm_exit(vcpu, KVM_ISA_VMX); if (unlikely(vmx->exit_reason.failed_vmentry)) @@ -8622,10 +8621,9 @@ { allow_smaller_maxphyaddr = false; -#ifdef CONFIG_KEXEC_CORE RCU_INIT_POINTER(crash_vmclear_loaded_vmcss, NULL); synchronize_rcu(); -#endif + vmx_cleanup_l1d_flush(); } @@ -8674,10 +8672,9 @@ pi_init_cpu(cpu); } -#ifdef CONFIG_KEXEC_CORE rcu_assign_pointer(crash_vmclear_loaded_vmcss, crash_vmclear_local_loaded_vmcss); -#endif + vmx_check_vmcs12_offsets(); /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/kvm/x86.c +++ linux-oracle-6.5-6.5.0/arch/x86/kvm/x86.c @@ -12302,9 +12302,7 @@ if (ret) goto out; - ret = kvm_mmu_init_vm(kvm); - if (ret) - goto out_page_track; + kvm_mmu_init_vm(kvm); ret = static_call(kvm_x86_vm_init)(kvm); if (ret) @@ -12349,7 +12347,6 @@ out_uninit_mmu: kvm_mmu_uninit_vm(kvm); -out_page_track: kvm_page_track_cleanup(kvm); out: return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/lib/copy_user_64.S +++ linux-oracle-6.5-6.5.0/arch/x86/lib/copy_user_64.S @@ -27,7 +27,7 @@ * NOTE! The calling convention is very intentionally the same as * for 'rep movs', so that we can rewrite the function call with * just a plain 'rep movs' on machines that have FSRM. But to make - * it simpler for us, we can clobber rsi/rdi and rax/r8-r11 freely. + * it simpler for us, we can clobber rsi/rdi and rax freely. */ SYM_FUNC_START(rep_movs_alternative) cmpq $64,%rcx @@ -68,55 +68,24 @@ _ASM_EXTABLE_UA( 3b, .Lcopy_user_tail) .Llarge: -0: ALTERNATIVE "jmp .Lunrolled", "rep movsb", X86_FEATURE_ERMS +0: ALTERNATIVE "jmp .Llarge_movsq", "rep movsb", X86_FEATURE_ERMS 1: RET - _ASM_EXTABLE_UA( 0b, 1b) + _ASM_EXTABLE_UA( 0b, 1b) - .p2align 4 -.Lunrolled: -10: movq (%rsi),%r8 -11: movq 8(%rsi),%r9 -12: movq 16(%rsi),%r10 -13: movq 24(%rsi),%r11 -14: movq %r8,(%rdi) -15: movq %r9,8(%rdi) -16: movq %r10,16(%rdi) -17: movq %r11,24(%rdi) -20: movq 32(%rsi),%r8 -21: movq 40(%rsi),%r9 -22: movq 48(%rsi),%r10 -23: movq 56(%rsi),%r11 -24: movq %r8,32(%rdi) -25: movq %r9,40(%rdi) -26: movq %r10,48(%rdi) -27: movq %r11,56(%rdi) - addq $64,%rsi - addq $64,%rdi - subq $64,%rcx - cmpq $64,%rcx - jae .Lunrolled - cmpl $8,%ecx - jae .Lword +.Llarge_movsq: + movq %rcx,%rax + shrq $3,%rcx + andl $7,%eax +0: rep movsq + movl %eax,%ecx testl %ecx,%ecx jne .Lcopy_user_tail RET - _ASM_EXTABLE_UA(10b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(11b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(12b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(13b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(14b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(15b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(16b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(17b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(20b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(21b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(22b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(23b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(24b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(25b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(26b, .Lcopy_user_tail) - _ASM_EXTABLE_UA(27b, .Lcopy_user_tail) +1: leaq (%rax,%rcx,8),%rcx + jmp .Lcopy_user_tail + + _ASM_EXTABLE_UA( 0b, 1b) SYM_FUNC_END(rep_movs_alternative) EXPORT_SYMBOL(rep_movs_alternative) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/lib/memcpy_64.S +++ linux-oracle-6.5-6.5.0/arch/x86/lib/memcpy_64.S @@ -40,7 +40,7 @@ SYM_FUNC_END(__memcpy) EXPORT_SYMBOL(__memcpy) -SYM_FUNC_ALIAS(memcpy, __memcpy) +SYM_FUNC_ALIAS_MEMFUNC(memcpy, __memcpy) EXPORT_SYMBOL(memcpy) SYM_FUNC_START_LOCAL(memcpy_orig) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/lib/memmove_64.S +++ linux-oracle-6.5-6.5.0/arch/x86/lib/memmove_64.S @@ -212,5 +212,5 @@ SYM_FUNC_END(__memmove) EXPORT_SYMBOL(__memmove) -SYM_FUNC_ALIAS(memmove, __memmove) +SYM_FUNC_ALIAS_MEMFUNC(memmove, __memmove) EXPORT_SYMBOL(memmove) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/lib/memset_64.S +++ linux-oracle-6.5-6.5.0/arch/x86/lib/memset_64.S @@ -40,7 +40,7 @@ SYM_FUNC_END(__memset) EXPORT_SYMBOL(__memset) -SYM_FUNC_ALIAS(memset, __memset) +SYM_FUNC_ALIAS_MEMFUNC(memset, __memset) EXPORT_SYMBOL(memset) SYM_FUNC_START_LOCAL(memset_orig) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/lib/putuser.S +++ linux-oracle-6.5-6.5.0/arch/x86/lib/putuser.S @@ -56,7 +56,6 @@ EXPORT_SYMBOL(__put_user_1) SYM_FUNC_START(__put_user_nocheck_1) - ENDBR ASM_STAC 2: movb %al,(%_ASM_CX) xor %ecx,%ecx @@ -76,7 +75,6 @@ EXPORT_SYMBOL(__put_user_2) SYM_FUNC_START(__put_user_nocheck_2) - ENDBR ASM_STAC 4: movw %ax,(%_ASM_CX) xor %ecx,%ecx @@ -96,7 +94,6 @@ EXPORT_SYMBOL(__put_user_4) SYM_FUNC_START(__put_user_nocheck_4) - ENDBR ASM_STAC 6: movl %eax,(%_ASM_CX) xor %ecx,%ecx @@ -119,7 +116,6 @@ EXPORT_SYMBOL(__put_user_8) SYM_FUNC_START(__put_user_nocheck_8) - ENDBR ASM_STAC 9: mov %_ASM_AX,(%_ASM_CX) #ifdef CONFIG_X86_32 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/x86/purgatory/Makefile +++ linux-oracle-6.5-6.5.0/arch/x86/purgatory/Makefile @@ -19,6 +19,10 @@ # optimization flags. KBUILD_CFLAGS := $(filter-out -fprofile-sample-use=% -fprofile-use=%,$(KBUILD_CFLAGS)) +# When LTO is enabled, llvm emits many text sections, which is not supported +# by kexec. Remove -flto=* flags. +KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_LTO),$(KBUILD_CFLAGS)) + # When linking purgatory.ro with -r unresolved symbols are not checked, # also link a purgatory.chk binary without -r to check for unresolved symbols. PURGATORY_LDFLAGS := -e purgatory_start -z nodefaultlib only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/xtensa/boot/Makefile +++ linux-oracle-6.5-6.5.0/arch/xtensa/boot/Makefile @@ -9,8 +9,7 @@ # KBUILD_CFLAGS used when building rest of boot (takes effect recursively) -KBUILD_CFLAGS += -fno-builtin -Iarch/$(ARCH)/boot/include -HOSTFLAGS += -Iarch/$(ARCH)/boot/include +KBUILD_CFLAGS += -fno-builtin subdir-y := lib targets += vmlinux.bin vmlinux.bin.gz only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/xtensa/boot/lib/zmem.c +++ linux-oracle-6.5-6.5.0/arch/xtensa/boot/lib/zmem.c @@ -4,13 +4,14 @@ /* bits taken from ppc */ extern void *avail_ram, *end_avail; +void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp); -void exit (void) +static void exit(void) { for (;;); } -void *zalloc(unsigned size) +static void *zalloc(unsigned int size) { void *p = avail_ram; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/xtensa/lib/umulsidi3.S +++ linux-oracle-6.5-6.5.0/arch/xtensa/lib/umulsidi3.S @@ -3,7 +3,9 @@ #include #include -#if !XCHAL_HAVE_MUL16 && !XCHAL_HAVE_MUL32 && !XCHAL_HAVE_MAC16 +#if XCHAL_HAVE_MUL16 || XCHAL_HAVE_MUL32 || XCHAL_HAVE_MAC16 +#define XCHAL_NO_MUL 0 +#else #define XCHAL_NO_MUL 1 #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/arch/xtensa/platforms/iss/network.c +++ linux-oracle-6.5-6.5.0/arch/xtensa/platforms/iss/network.c @@ -201,7 +201,7 @@ return simc_write(lp->tp.info.tuntap.fd, (*skb)->data, (*skb)->len); } -unsigned short tuntap_protocol(struct sk_buff *skb) +static unsigned short tuntap_protocol(struct sk_buff *skb) { return eth_type_trans(skb, skb->dev); } @@ -441,7 +441,7 @@ return -EINVAL; } -void iss_net_user_timer_expire(struct timer_list *unused) +static void iss_net_user_timer_expire(struct timer_list *unused) { } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/block/blk-mq.c +++ linux-oracle-6.5-6.5.0/block/blk-mq.c @@ -4402,6 +4402,7 @@ int new_nr_hw_queues) { struct blk_mq_tags **new_tags; + int i; if (set->nr_hw_queues >= new_nr_hw_queues) goto done; @@ -4416,6 +4417,16 @@ sizeof(*set->tags)); kfree(set->tags); set->tags = new_tags; + + for (i = set->nr_hw_queues; i < new_nr_hw_queues; i++) { + if (!__blk_mq_alloc_map_and_rqs(set, i)) { + while (--i >= set->nr_hw_queues) + __blk_mq_free_map_and_rqs(set, i); + return -ENOMEM; + } + cond_resched(); + } + done: set->nr_hw_queues = new_nr_hw_queues; return 0; @@ -4704,7 +4715,8 @@ { struct request_queue *q; LIST_HEAD(head); - int prev_nr_hw_queues; + int prev_nr_hw_queues = set->nr_hw_queues; + int i; lockdep_assert_held(&set->tag_list_lock); @@ -4731,7 +4743,6 @@ blk_mq_sysfs_unregister_hctxs(q); } - prev_nr_hw_queues = set->nr_hw_queues; if (blk_mq_realloc_tag_set_tags(set, nr_hw_queues) < 0) goto reregister; @@ -4767,6 +4778,10 @@ list_for_each_entry(q, &set->tag_list, tag_set_list) blk_mq_unfreeze_queue(q); + + /* Free the excess tags when nr_hw_queues shrink. */ + for (i = set->nr_hw_queues; i < prev_nr_hw_queues; i++) + __blk_mq_free_map_and_rqs(set, i); } void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/block/blk-throttle.c +++ linux-oracle-6.5-6.5.0/block/blk-throttle.c @@ -697,11 +697,41 @@ return true; } +static unsigned int calculate_io_allowed(u32 iops_limit, + unsigned long jiffy_elapsed) +{ + unsigned int io_allowed; + u64 tmp; + + /* + * jiffy_elapsed should not be a big value as minimum iops can be + * 1 then at max jiffy elapsed should be equivalent of 1 second as we + * will allow dispatch after 1 second and after that slice should + * have been trimmed. + */ + + tmp = (u64)iops_limit * jiffy_elapsed; + do_div(tmp, HZ); + + if (tmp > UINT_MAX) + io_allowed = UINT_MAX; + else + io_allowed = tmp; + + return io_allowed; +} + +static u64 calculate_bytes_allowed(u64 bps_limit, unsigned long jiffy_elapsed) +{ + return mul_u64_u64_div_u64(bps_limit, (u64)jiffy_elapsed, (u64)HZ); +} + /* Trim the used slices and adjust slice start accordingly */ static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw) { - unsigned long nr_slices, time_elapsed, io_trim; - u64 bytes_trim, tmp; + unsigned long time_elapsed; + long long bytes_trim; + int io_trim; BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw])); @@ -723,67 +753,38 @@ throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice); - time_elapsed = jiffies - tg->slice_start[rw]; - - nr_slices = time_elapsed / tg->td->throtl_slice; - - if (!nr_slices) + time_elapsed = rounddown(jiffies - tg->slice_start[rw], + tg->td->throtl_slice); + if (!time_elapsed) return; - tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices; - do_div(tmp, HZ); - bytes_trim = tmp; - - io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) / - HZ; - if (!bytes_trim && !io_trim) + bytes_trim = calculate_bytes_allowed(tg_bps_limit(tg, rw), + time_elapsed) + + tg->carryover_bytes[rw]; + io_trim = calculate_io_allowed(tg_iops_limit(tg, rw), time_elapsed) + + tg->carryover_ios[rw]; + if (bytes_trim <= 0 && io_trim <= 0) return; - if (tg->bytes_disp[rw] >= bytes_trim) + tg->carryover_bytes[rw] = 0; + if ((long long)tg->bytes_disp[rw] >= bytes_trim) tg->bytes_disp[rw] -= bytes_trim; else tg->bytes_disp[rw] = 0; - if (tg->io_disp[rw] >= io_trim) + tg->carryover_ios[rw] = 0; + if ((int)tg->io_disp[rw] >= io_trim) tg->io_disp[rw] -= io_trim; else tg->io_disp[rw] = 0; - tg->slice_start[rw] += nr_slices * tg->td->throtl_slice; + tg->slice_start[rw] += time_elapsed; throtl_log(&tg->service_queue, - "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu", - rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim, - tg->slice_start[rw], tg->slice_end[rw], jiffies); -} - -static unsigned int calculate_io_allowed(u32 iops_limit, - unsigned long jiffy_elapsed) -{ - unsigned int io_allowed; - u64 tmp; - - /* - * jiffy_elapsed should not be a big value as minimum iops can be - * 1 then at max jiffy elapsed should be equivalent of 1 second as we - * will allow dispatch after 1 second and after that slice should - * have been trimmed. - */ - - tmp = (u64)iops_limit * jiffy_elapsed; - do_div(tmp, HZ); - - if (tmp > UINT_MAX) - io_allowed = UINT_MAX; - else - io_allowed = tmp; - - return io_allowed; -} - -static u64 calculate_bytes_allowed(u64 bps_limit, unsigned long jiffy_elapsed) -{ - return mul_u64_u64_div_u64(bps_limit, (u64)jiffy_elapsed, (u64)HZ); + "[%c] trim slice nr=%lu bytes=%lld io=%d start=%lu end=%lu jiffies=%lu", + rw == READ ? 'R' : 'W', time_elapsed / tg->td->throtl_slice, + bytes_trim, io_trim, tg->slice_start[rw], tg->slice_end[rw], + jiffies); } static void __tg_update_carryover(struct throtl_grp *tg, bool rw) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/block/fops.c +++ linux-oracle-6.5-6.5.0/block/fops.c @@ -659,24 +659,35 @@ filemap_invalidate_lock(inode->i_mapping); - /* Invalidate the page cache, including dirty pages. */ - error = truncate_bdev_range(bdev, file_to_blk_mode(file), start, end); - if (error) - goto fail; - + /* + * Invalidate the page cache, including dirty pages, for valid + * de-allocate mode calls to fallocate(). + */ switch (mode) { case FALLOC_FL_ZERO_RANGE: case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE: + error = truncate_bdev_range(bdev, file_to_blk_mode(file), start, end); + if (error) + goto fail; + error = blkdev_issue_zeroout(bdev, start >> SECTOR_SHIFT, len >> SECTOR_SHIFT, GFP_KERNEL, BLKDEV_ZERO_NOUNMAP); break; case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE: + error = truncate_bdev_range(bdev, file_to_blk_mode(file), start, end); + if (error) + goto fail; + error = blkdev_issue_zeroout(bdev, start >> SECTOR_SHIFT, len >> SECTOR_SHIFT, GFP_KERNEL, BLKDEV_ZERO_NOFALLBACK); break; case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE: + error = truncate_bdev_range(bdev, file_to_blk_mode(file), start, end); + if (error) + goto fail; + error = blkdev_issue_discard(bdev, start >> SECTOR_SHIFT, len >> SECTOR_SHIFT, GFP_KERNEL); break; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/crypto/lrw.c +++ linux-oracle-6.5-6.5.0/crypto/lrw.c @@ -357,10 +357,10 @@ * cipher name. */ if (!strncmp(cipher_name, "ecb(", 4)) { - unsigned len; + int len; - len = strlcpy(ecb_name, cipher_name + 4, sizeof(ecb_name)); - if (len < 2 || len >= sizeof(ecb_name)) + len = strscpy(ecb_name, cipher_name + 4, sizeof(ecb_name)); + if (len < 2) goto err_free_inst; if (ecb_name[len - 1] != ')') only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/crypto/sm2.c +++ linux-oracle-6.5-6.5.0/crypto/sm2.c @@ -278,10 +278,14 @@ if (!ec) return -ENOMEM; - err = __sm2_set_pub_key(ec, key, keylen); + err = sm2_ec_ctx_init(ec); if (err) goto out_free_ec; + err = __sm2_set_pub_key(ec, key, keylen); + if (err) + goto out_deinit_ec; + bits_len = SM2_DEFAULT_USERID_LEN * 8; entl[0] = bits_len >> 8; entl[1] = bits_len & 0xff; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/crypto/xts.c +++ linux-oracle-6.5-6.5.0/crypto/xts.c @@ -396,10 +396,10 @@ * cipher name. */ if (!strncmp(cipher_name, "ecb(", 4)) { - unsigned len; + int len; - len = strlcpy(ctx->name, cipher_name + 4, sizeof(ctx->name)); - if (len < 2 || len >= sizeof(ctx->name)) + len = strscpy(ctx->name, cipher_name + 4, sizeof(ctx->name)); + if (len < 2) goto err_free_inst; if (ctx->name[len - 1] != ')') only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/debian.master/upstream-stable +++ linux-oracle-6.5-6.5.0/debian.master/upstream-stable @@ -0,0 +1,3 @@ +# The following upstream stable releases have been ported: +[upstream-stable] + linux-6.5.y = v6.5.8 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/debian/scripts/misc/kconfig/run.py +++ linux-oracle-6.5-6.5.0/debian/scripts/misc/kconfig/run.py @@ -0,0 +1,365 @@ +# -*- mode: python -*- +# Manage Ubuntu kernel .config and annotations +# Copyright © 2022 Canonical Ltd. + +import sys +import os +import argparse +import json +from signal import signal, SIGPIPE, SIG_DFL + +try: + from argcomplete import autocomplete +except ModuleNotFoundError: + # Allow to run this program also when argcomplete is not available + def autocomplete(_unused): + pass + + +from kconfig.annotations import Annotation, KConfig # noqa: E402 Import not at top of file +from kconfig.utils import autodetect_annotations, arg_fail # noqa: E402 Import not at top of file +from kconfig.version import VERSION, ANNOTATIONS_FORMAT_VERSION # noqa: E402 Import not at top of file + + +SKIP_CONFIGS = ( + # CONFIG_VERSION_SIGNATURE is dynamically set during the build + "CONFIG_VERSION_SIGNATURE", + # Allow to use a different versions of toolchain tools + "CONFIG_GCC_VERSION", + "CONFIG_CC_VERSION_TEXT", + "CONFIG_AS_VERSION", + "CONFIG_LD_VERSION", + "CONFIG_LLD_VERSION", + "CONFIG_CLANG_VERSION", + "CONFIG_PAHOLE_VERSION", + "CONFIG_RUSTC_VERSION_TEXT", + "CONFIG_BINDGEN_VERSION_TEXT", +) + + +def make_parser(): + parser = argparse.ArgumentParser( + description="Manage Ubuntu kernel .config and annotations", + ) + parser.add_argument("--version", "-v", action="version", version=f"%(prog)s {VERSION}") + + parser.add_argument( + "--file", + "-f", + action="store", + help="Pass annotations or .config file to be parsed", + ) + parser.add_argument("--arch", "-a", action="store", help="Select architecture") + parser.add_argument("--flavour", "-l", action="store", help='Select flavour (default is "generic")') + parser.add_argument("--config", "-c", action="store", help="Select a specific config option") + parser.add_argument("--query", "-q", action="store_true", help="Query annotations") + parser.add_argument( + "--note", + "-n", + action="store", + help="Write a specific note to a config option in annotations", + ) + parser.add_argument( + "--autocomplete", + action="store_true", + help="Enable config bash autocomplete: `source <(annotations --autocomplete)`", + ) + parser.add_argument( + "--source", + "-t", + action="store_true", + help="Jump to a config definition in the kernel source code", + ) + parser.add_argument( + "--no-include", + action="store_true", + help="Do not process included annotations (stop at the main file)", + ) + + ga = parser.add_argument_group(title="Action").add_mutually_exclusive_group(required=False) + ga.add_argument( + "--write", + "-w", + action="store", + metavar="VALUE", + dest="value", + help="Set a specific config value in annotations (use 'null' to remove)", + ) + ga.add_argument( + "--export", + "-e", + action="store_true", + help="Convert annotations to .config format", + ) + ga.add_argument( + "--import", + "-i", + action="store", + metavar="FILE", + dest="import_file", + help="Import a full .config for a specific arch and flavour into annotations", + ) + ga.add_argument( + "--update", + "-u", + action="store", + metavar="FILE", + dest="update_file", + help="Import a partial .config into annotations (only resync configs specified in FILE)", + ) + ga.add_argument( + "--check", + "-k", + action="store", + metavar="FILE", + dest="check_file", + help="Validate kernel .config with annotations", + ) + return parser + + +_ARGPARSER = make_parser() + + +def export_result(data): + # Dump metadata / attributes first + out = '{\n "attributes": {\n' + for key, value in sorted(data["attributes"].items()): + out += f' "{key}": {json.dumps(value)},\n' + out = out.rstrip(",\n") + out += "\n }," + print(out) + + configs_with_note = {key: value for key, value in data["config"].items() if "note" in value} + configs_without_note = {key: value for key, value in data["config"].items() if "note" not in value} + + # Dump configs, sorted alphabetically, showing items with a note first + out = ' "config": {\n' + for key in sorted(configs_with_note) + sorted(configs_without_note): + policy = data["config"][key]["policy"] + if "note" in data["config"][key]: + note = data["config"][key]["note"] + out += f' "{key}": {{"policy": {json.dumps(policy)}, "note": {json.dumps(note)}}},\n' + else: + out += f' "{key}": {{"policy": {json.dumps(policy)}}},\n' + out = out.rstrip(",\n") + out += "\n }\n}" + print(out) + + +def print_result(config, data): + if data is not None and config is not None and config not in data: + data = {config: data} + print(json.dumps(data, sort_keys=True, indent=2)) + + +def do_query(args): + if args.arch is None and args.flavour is not None: + arg_fail(_ARGPARSER, "error: --flavour requires --arch") + a = Annotation(args.file, do_include=(not args.no_include)) + res = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour) + # If no arguments are specified dump the whole annotations structure + if args.config is None and args.arch is None and args.flavour is None: + res = { + "attributes": { + "arch": a.arch, + "flavour": a.flavour, + "flavour_dep": a.flavour_dep, + "include": a.include, + "_version": ANNOTATIONS_FORMAT_VERSION, + }, + "config": res, + } + export_result(res) + else: + print_result(args.config, res) + + +def do_autocomplete(args): + a = Annotation(args.file) + res = (c.removeprefix("CONFIG_") for c in a.search_config()) + res_str = " ".join(res) + print(f'complete -W "{res_str}" annotations') + + +def do_source(args): + if args.config is None: + arg_fail(_ARGPARSER, "error: --source requires --config") + if not os.path.exists("tags"): + print("tags not found in the current directory, try: `make tags`") + sys.exit(1) + os.system(f"vim -t {args.config}") + + +def do_note(args): + if args.config is None: + arg_fail(_ARGPARSER, "error: --note requires --config") + + # Set the note in annotations + a = Annotation(args.file) + a.set(args.config, note=args.note) + + # Save back to annotations + a.save(args.file) + + # Query and print back the value + a = Annotation(args.file) + res = a.search_config(config=args.config) + print_result(args.config, res) + + +def do_write(args): + if args.config is None: + arg_fail(_ARGPARSER, "error: --write requires --config") + + # Set the value in annotations ('null' means remove) + a = Annotation(args.file) + if args.value == "null": + a.remove(args.config, arch=args.arch, flavour=args.flavour) + else: + a.set( + args.config, + arch=args.arch, + flavour=args.flavour, + value=args.value, + note=args.note, + ) + + # Save back to annotations + a.save(args.file) + + # Query and print back the value + a = Annotation(args.file) + res = a.search_config(config=args.config) + print_result(args.config, res) + + +def do_export(args): + if args.arch is None: + arg_fail(_ARGPARSER, "error: --export requires --arch") + a = Annotation(args.file) + conf = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour) + if conf: + print(a.to_config(conf)) + + +def do_import(args): + if args.arch is None: + arg_fail(_ARGPARSER, "error: --arch is required with --import") + if args.flavour is None: + arg_fail(_ARGPARSER, "error: --flavour is required with --import") + if args.config is not None: + arg_fail(_ARGPARSER, "error: --config cannot be used with --import (try --update)") + + # Merge with the current annotations + a = Annotation(args.file) + c = KConfig(args.import_file) + a.update(c, arch=args.arch, flavour=args.flavour) + + # Save back to annotations + a.save(args.file) + + +def do_update(args): + if args.arch is None: + arg_fail(_ARGPARSER, "error: --arch is required with --update") + + # Merge with the current annotations + a = Annotation(args.file) + c = KConfig(args.update_file) + if args.config is None: + configs = list(set(c.config.keys()) - set(SKIP_CONFIGS)) + if configs: + a.update(c, arch=args.arch, flavour=args.flavour, configs=configs) + + # Save back to annotations + a.save(args.file) + + +def do_check(args): + # Determine arch and flavour + if args.arch is None: + arg_fail(_ARGPARSER, "error: --arch is required with --check") + + print(f"check-config: loading annotations from {args.file}") + total = good = ret = 0 + + # Load annotations settings + a = Annotation(args.file) + a_configs = a.search_config(arch=args.arch, flavour=args.flavour).keys() + + # Parse target .config + c = KConfig(args.check_file) + c_configs = c.config.keys() + + # Validate .config against annotations + for conf in sorted(a_configs | c_configs): + if conf in SKIP_CONFIGS: + continue + entry = a.search_config(config=conf, arch=args.arch, flavour=args.flavour) + expected = entry[conf] if entry else "-" + value = c.config[conf] if conf in c.config else "-" + if value != expected: + policy = a.config[conf] if conf in a.config else "undefined" + if "policy" in policy: + policy = f"policy<{policy['policy']}>" + print(f"check-config: {conf} changed from {expected} to {value}: {policy})") + ret = 1 + else: + good += 1 + total += 1 + + num = total - good + if ret: + if os.path.exists(".git"): + print(f"check-config: {num} config options have been changed, review them with `git diff`") + else: + print(f"check-config: {num} config options have changed") + else: + print("check-config: all good") + sys.exit(ret) + + +def main(): + # Prevent broken pipe errors when showing output in pipe to other tools + # (less for example) + signal(SIGPIPE, SIG_DFL) + + # Main annotations program + autocomplete(_ARGPARSER) + args = _ARGPARSER.parse_args() + + if args.file is None: + args.file = autodetect_annotations() + if args.file is None: + arg_fail( + _ARGPARSER, + "error: could not determine DEBDIR, try using: --file/-f", + show_usage=False, + ) + + if args.config and not args.config.startswith("CONFIG_"): + args.config = "CONFIG_" + args.config + + if args.value: + do_write(args) + elif args.note: + do_note(args) + elif args.export: + do_export(args) + elif args.import_file: + do_import(args) + elif args.update_file: + do_update(args) + elif args.check_file: + do_check(args) + elif args.autocomplete: + do_autocomplete(args) + elif args.source: + do_source(args) + else: + do_query(args) + + +if __name__ == "__main__": + main() only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/debian/scripts/misc/kconfig/utils.py +++ linux-oracle-6.5-6.5.0/debian/scripts/misc/kconfig/utils.py @@ -0,0 +1,20 @@ +# -*- mode: python -*- +# Misc helpers for Kconfig and annotations +# Copyright © 2023 Canonical Ltd. + +import sys + + +def autodetect_annotations(): + try: + with open("debian/debian.env", "rt", encoding="utf-8") as fd: + return fd.read().rstrip().split("=")[1] + "/config/annotations" + except (FileNotFoundError, IndexError): + return None + + +def arg_fail(parser, message, show_usage=True): + print(message) + if show_usage: + parser.print_usage() + sys.exit(1) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/debian/scripts/misc/kconfig/version.py +++ linux-oracle-6.5-6.5.0/debian/scripts/misc/kconfig/version.py @@ -0,0 +1,10 @@ +# -*- mode: python -*- +# version of annotations module +# Copyright © 2022 Canonical Ltd. + +VERSION = "0.1" + +ANNOTATIONS_FORMAT_VERSION = 5 + +if __name__ == "__main__": + print(VERSION) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/accel/ivpu/ivpu_ipc.c +++ linux-oracle-6.5-6.5.0/drivers/accel/ivpu/ivpu_ipc.c @@ -209,10 +209,10 @@ struct ivpu_ipc_rx_msg *rx_msg; int wait_ret, ret = 0; - wait_ret = wait_event_interruptible_timeout(cons->rx_msg_wq, - (IS_KTHREAD() && kthread_should_stop()) || - !list_empty(&cons->rx_msg_list), - msecs_to_jiffies(timeout_ms)); + wait_ret = wait_event_timeout(cons->rx_msg_wq, + (IS_KTHREAD() && kthread_should_stop()) || + !list_empty(&cons->rx_msg_list), + msecs_to_jiffies(timeout_ms)); if (IS_KTHREAD() && kthread_should_stop()) return -EINTR; @@ -220,9 +220,6 @@ if (wait_ret == 0) return -ETIMEDOUT; - if (wait_ret < 0) - return -ERESTARTSYS; - spin_lock_irq(&cons->rx_msg_lock); rx_msg = list_first_entry_or_null(&cons->rx_msg_list, struct ivpu_ipc_rx_msg, link); if (!rx_msg) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/accel/ivpu/ivpu_jsm_msg.c +++ linux-oracle-6.5-6.5.0/drivers/accel/ivpu/ivpu_jsm_msg.c @@ -118,8 +118,7 @@ struct vpu_jsm_msg resp; int ret; - if (!strncpy(req.payload.dyndbg_control.dyndbg_cmd, command, VPU_DYNDBG_CMD_MAX_LEN - 1)) - return -ENOMEM; + strscpy(req.payload.dyndbg_control.dyndbg_cmd, command, VPU_DYNDBG_CMD_MAX_LEN); ret = ivpu_ipc_send_receive(vdev, &req, VPU_JSM_MSG_DYNDBG_CONTROL_RSP, &resp, VPU_IPC_CHAN_ASYNC_CMD, vdev->timeout.jsm); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/acpi/acpica/psopcode.c +++ linux-oracle-6.5-6.5.0/drivers/acpi/acpica/psopcode.c @@ -603,7 +603,7 @@ /* 7E */ ACPI_OP("Timer", ARGP_TIMER_OP, ARGI_TIMER_OP, ACPI_TYPE_ANY, AML_CLASS_EXECUTE, AML_TYPE_EXEC_0A_0T_1R, - AML_FLAGS_EXEC_0A_0T_1R), + AML_FLAGS_EXEC_0A_0T_1R | AML_NO_OPERAND_RESOLVE), /* ACPI 5.0 opcodes */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/acpi/arm64/iort.c +++ linux-oracle-6.5-6.5.0/drivers/acpi/arm64/iort.c @@ -1708,7 +1708,10 @@ static struct acpi_platform_list pmcg_plat_info[] __initdata = { /* HiSilicon Hip08 Platform */ {"HISI ", "HIP08 ", 0, ACPI_SIG_IORT, greater_than_or_equal, - "Erratum #162001800", IORT_SMMU_V3_PMCG_HISI_HIP08}, + "Erratum #162001800, Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP08}, + /* HiSilicon Hip09 Platform */ + {"HISI ", "HIP09 ", 0, ACPI_SIG_IORT, greater_than_or_equal, + "Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP09}, { } }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/acpi/ec.c +++ linux-oracle-6.5-6.5.0/drivers/acpi/ec.c @@ -1915,6 +1915,17 @@ }, { /* + * HP Pavilion Gaming Laptop 15-dk1xxx + * https://github.com/systemd/systemd/issues/28942 + */ + .callback = ec_honor_dsdt_gpe, + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "HP"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Gaming Laptop 15-dk1xxx"), + }, + }, + { + /* * Samsung hardware * https://bugzilla.kernel.org/show_bug.cgi?id=44161 */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/acpi/nfit/core.c +++ linux-oracle-6.5-6.5.0/drivers/acpi/nfit/core.c @@ -855,7 +855,7 @@ { if (idt->header.length < sizeof(*idt)) return 0; - return sizeof(*idt) + sizeof(u32) * (idt->line_count - 1); + return sizeof(*idt) + sizeof(u32) * idt->line_count; } static bool add_idt(struct acpi_nfit_desc *acpi_desc, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/acpi/processor_idle.c +++ linux-oracle-6.5-6.5.0/drivers/acpi/processor_idle.c @@ -1217,8 +1217,7 @@ strscpy(state->desc, lpi->desc, CPUIDLE_DESC_LEN); state->exit_latency = lpi->wake_latency; state->target_residency = lpi->min_residency; - if (lpi->arch_flags) - state->flags |= CPUIDLE_FLAG_TIMER_STOP; + state->flags |= arch_get_idle_state_flags(lpi->arch_flags); if (i != 0 && lpi->entry_method == ACPI_CSTATE_FFH) state->flags |= CPUIDLE_FLAG_RCU_IDLE; state->enter = acpi_idle_lpi_enter; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/acpi/resource.c +++ linux-oracle-6.5-6.5.0/drivers/acpi/resource.c @@ -440,6 +440,13 @@ }, }, { + .ident = "Asus ExpertBook B1402CBA", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_BOARD_NAME, "B1402CBA"), + }, + }, + { .ident = "Asus ExpertBook B1502CBA", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), @@ -500,16 +507,23 @@ static const struct dmi_system_id pcspecialist_laptop[] = { { - .ident = "PCSpecialist Elimina Pro 16 M", - /* - * Some models have product-name "Elimina Pro 16 M", - * others "GM6BGEQ". Match on board-name to match both. - */ + /* TongFang GM6BGEQ / PCSpecialist Elimina Pro 16 M, RTX 3050 */ .matches = { - DMI_MATCH(DMI_SYS_VENDOR, "PCSpecialist"), DMI_MATCH(DMI_BOARD_NAME, "GM6BGEQ"), }, }, + { + /* TongFang GM6BG5Q, RTX 4050 */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GM6BG5Q"), + }, + }, + { + /* TongFang GM6BG0Q / PCSpecialist Elimina Pro 16 M, RTX 4060 */ + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "GM6BG0Q"), + }, + }, { } }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/ahci.c +++ linux-oracle-6.5-6.5.0/drivers/ata/ahci.c @@ -421,6 +421,9 @@ { PCI_VDEVICE(INTEL, 0x34d3), board_ahci_low_power }, /* Ice Lake LP AHCI */ { PCI_VDEVICE(INTEL, 0x02d3), board_ahci_low_power }, /* Comet Lake PCH-U AHCI */ { PCI_VDEVICE(INTEL, 0x02d7), board_ahci_low_power }, /* Comet Lake PCH RAID */ + /* Elkhart Lake IDs 0x4b60 & 0x4b62 https://sata-io.org/product/8803 not tested yet */ + { PCI_VDEVICE(INTEL, 0x4b63), board_ahci_low_power }, /* Elkhart Lake AHCI */ + { PCI_VDEVICE(INTEL, 0x7ae2), board_ahci_low_power }, /* Alder Lake-P AHCI */ /* JMicron 360/1/3/5/6, match class to avoid IDE function */ { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, @@ -1881,6 +1884,15 @@ else dev_info(&pdev->dev, "SSS flag set, parallel bus scan disabled\n"); + if (!(hpriv->cap & HOST_CAP_PART)) + host->flags |= ATA_HOST_NO_PART; + + if (!(hpriv->cap & HOST_CAP_SSC)) + host->flags |= ATA_HOST_NO_SSC; + + if (!(hpriv->cap2 & HOST_CAP2_SDS)) + host->flags |= ATA_HOST_NO_DEVSLP; + if (pi.flags & ATA_FLAG_EM) ahci_reset_em(host); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/libahci.c +++ linux-oracle-6.5-6.5.0/drivers/ata/libahci.c @@ -1256,6 +1256,26 @@ return sprintf(buf, "%d\n", emp->blink_policy); } +static void ahci_port_clear_pending_irq(struct ata_port *ap) +{ + struct ahci_host_priv *hpriv = ap->host->private_data; + void __iomem *port_mmio = ahci_port_base(ap); + u32 tmp; + + /* clear SError */ + tmp = readl(port_mmio + PORT_SCR_ERR); + dev_dbg(ap->host->dev, "PORT_SCR_ERR 0x%x\n", tmp); + writel(tmp, port_mmio + PORT_SCR_ERR); + + /* clear port IRQ */ + tmp = readl(port_mmio + PORT_IRQ_STAT); + dev_dbg(ap->host->dev, "PORT_IRQ_STAT 0x%x\n", tmp); + if (tmp) + writel(tmp, port_mmio + PORT_IRQ_STAT); + + writel(1 << ap->port_no, hpriv->mmio + HOST_IRQ_STAT); +} + static void ahci_port_init(struct device *dev, struct ata_port *ap, int port_no, void __iomem *mmio, void __iomem *port_mmio) @@ -1270,18 +1290,7 @@ if (rc) dev_warn(dev, "%s (%d)\n", emsg, rc); - /* clear SError */ - tmp = readl(port_mmio + PORT_SCR_ERR); - dev_dbg(dev, "PORT_SCR_ERR 0x%x\n", tmp); - writel(tmp, port_mmio + PORT_SCR_ERR); - - /* clear port IRQ */ - tmp = readl(port_mmio + PORT_IRQ_STAT); - dev_dbg(dev, "PORT_IRQ_STAT 0x%x\n", tmp); - if (tmp) - writel(tmp, port_mmio + PORT_IRQ_STAT); - - writel(1 << port_no, mmio + HOST_IRQ_STAT); + ahci_port_clear_pending_irq(ap); /* mark esata ports */ tmp = readl(port_mmio + PORT_CMD); @@ -1602,6 +1611,8 @@ tf.status = ATA_BUSY; ata_tf_to_fis(&tf, 0, 0, d2h_fis); + ahci_port_clear_pending_irq(ap); + rc = sata_link_hardreset(link, timing, deadline, online, ahci_check_ready); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/libata-core.c +++ linux-oracle-6.5-6.5.0/drivers/ata/libata-core.c @@ -1978,6 +1978,96 @@ } /** + * ata_dev_power_set_standby - Set a device power mode to standby + * @dev: target device + * + * Issue a STANDBY IMMEDIATE command to set a device power mode to standby. + * For an HDD device, this spins down the disks. + * + * LOCKING: + * Kernel thread context (may sleep). + */ +void ata_dev_power_set_standby(struct ata_device *dev) +{ + unsigned long ap_flags = dev->link->ap->flags; + struct ata_taskfile tf; + unsigned int err_mask; + + /* Issue STANDBY IMMEDIATE command only if supported by the device */ + if (dev->class != ATA_DEV_ATA && dev->class != ATA_DEV_ZAC) + return; + + /* + * Some odd clown BIOSes issue spindown on power off (ACPI S4 or S5) + * causing some drives to spin up and down again. For these, do nothing + * if we are being called on shutdown. + */ + if ((ap_flags & ATA_FLAG_NO_POWEROFF_SPINDOWN) && + system_state == SYSTEM_POWER_OFF) + return; + + if ((ap_flags & ATA_FLAG_NO_HIBERNATE_SPINDOWN) && + system_entering_hibernation()) + return; + + ata_tf_init(dev, &tf); + tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; + tf.protocol = ATA_PROT_NODATA; + tf.command = ATA_CMD_STANDBYNOW1; + + ata_dev_notice(dev, "Entering standby power mode\n"); + + err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); + if (err_mask) + ata_dev_err(dev, "STANDBY IMMEDIATE failed (err_mask=0x%x)\n", + err_mask); +} + +/** + * ata_dev_power_set_active - Set a device power mode to active + * @dev: target device + * + * Issue a VERIFY command to enter to ensure that the device is in the + * active power mode. For a spun-down HDD (standby or idle power mode), + * the VERIFY command will complete after the disk spins up. + * + * LOCKING: + * Kernel thread context (may sleep). + */ +void ata_dev_power_set_active(struct ata_device *dev) +{ + struct ata_taskfile tf; + unsigned int err_mask; + + /* + * Issue READ VERIFY SECTORS command for 1 sector at lba=0 only + * if supported by the device. + */ + if (dev->class != ATA_DEV_ATA && dev->class != ATA_DEV_ZAC) + return; + + ata_tf_init(dev, &tf); + tf.flags |= ATA_TFLAG_DEVICE | ATA_TFLAG_ISADDR; + tf.protocol = ATA_PROT_NODATA; + tf.command = ATA_CMD_VERIFY; + tf.nsect = 1; + if (dev->flags & ATA_DFLAG_LBA) { + tf.flags |= ATA_TFLAG_LBA; + tf.device |= ATA_LBA; + } else { + /* CHS */ + tf.lbal = 0x1; /* sect */ + } + + ata_dev_notice(dev, "Entering active power mode\n"); + + err_mask = ata_exec_internal(dev, &tf, NULL, DMA_NONE, NULL, 0, 0); + if (err_mask) + ata_dev_err(dev, "VERIFY failed (err_mask=0x%x)\n", + err_mask); +} + +/** * ata_read_log_page - read a specific log page * @dev: target device * @log: log to read @@ -4935,11 +5025,8 @@ * timeout using the policy 0xD. For these commands, invoke EH * to get the command sense data. */ - if (qc->result_tf.status & ATA_SENSE && - ((ata_is_ncq(qc->tf.protocol) && - dev->flags & ATA_DFLAG_CDL_ENABLED) || - (!ata_is_ncq(qc->tf.protocol) && - ata_id_sense_reporting_enabled(dev->id)))) { + if (qc->flags & ATA_QCFLAG_HAS_CDL && + qc->result_tf.status & ATA_SENSE) { /* * Tell SCSI EH to not overwrite scmd->result even if * this command is finished with result SAM_STAT_GOOD. @@ -5207,17 +5294,19 @@ struct ata_link *link; unsigned long flags; - /* Previous resume operation might still be in - * progress. Wait for PM_PENDING to clear. + spin_lock_irqsave(ap->lock, flags); + + /* + * A previous PM operation might still be in progress. Wait for + * ATA_PFLAG_PM_PENDING to clear. */ if (ap->pflags & ATA_PFLAG_PM_PENDING) { + spin_unlock_irqrestore(ap->lock, flags); ata_port_wait_eh(ap); - WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); + spin_lock_irqsave(ap->lock, flags); } - /* request PM ops to EH */ - spin_lock_irqsave(ap->lock, flags); - + /* Request PM operation to EH */ ap->pm_mesg = mesg; ap->pflags |= ATA_PFLAG_PM_PENDING; ata_for_each_link(link, ap, HOST_FIRST) { @@ -5229,10 +5318,8 @@ spin_unlock_irqrestore(ap->lock, flags); - if (!async) { + if (!async) ata_port_wait_eh(ap); - WARN_ON(ap->pflags & ATA_PFLAG_PM_PENDING); - } } /* @@ -5248,11 +5335,27 @@ static void ata_port_suspend(struct ata_port *ap, pm_message_t mesg) { + /* + * We are about to suspend the port, so we do not care about + * scsi_rescan_device() calls scheduled by previous resume operations. + * The next resume will schedule the rescan again. So cancel any rescan + * that is not done yet. + */ + cancel_delayed_work_sync(&ap->scsi_rescan_task); + ata_port_request_pm(ap, mesg, 0, ata_port_suspend_ehi, false); } static void ata_port_suspend_async(struct ata_port *ap, pm_message_t mesg) { + /* + * We are about to suspend the port, so we do not care about + * scsi_rescan_device() calls scheduled by previous resume operations. + * The next resume will schedule the rescan again. So cancel any rescan + * that is not done yet. + */ + cancel_delayed_work_sync(&ap->scsi_rescan_task); + ata_port_request_pm(ap, mesg, 0, ata_port_suspend_ehi, true); } @@ -5399,7 +5502,7 @@ #endif const struct device_type ata_port_type = { - .name = "ata_port", + .name = ATA_PORT_TYPE_NAME, #ifdef CONFIG_PM .pm = &ata_port_pm_ops, #endif @@ -6133,11 +6236,30 @@ if (!ap->ops->error_handler) goto skip_eh; - /* tell EH we're leaving & flush EH */ + /* Wait for any ongoing EH */ + ata_port_wait_eh(ap); + + mutex_lock(&ap->scsi_scan_mutex); spin_lock_irqsave(ap->lock, flags); + + /* Remove scsi devices */ + ata_for_each_link(link, ap, HOST_FIRST) { + ata_for_each_dev(dev, link, ALL) { + if (dev->sdev) { + spin_unlock_irqrestore(ap->lock, flags); + scsi_remove_device(dev->sdev); + spin_lock_irqsave(ap->lock, flags); + dev->sdev = NULL; + } + } + } + + /* Tell EH to disable all devices */ ap->pflags |= ATA_PFLAG_UNLOADING; ata_port_schedule_eh(ap); + spin_unlock_irqrestore(ap->lock, flags); + mutex_unlock(&ap->scsi_scan_mutex); /* wait till EH commits suicide */ ata_port_wait_eh(ap); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/libata-eh.c +++ linux-oracle-6.5-6.5.0/drivers/ata/libata-eh.c @@ -106,6 +106,14 @@ UINT_MAX, }; +static const unsigned int ata_eh_pm_timeouts[] = { + 10000, /* most drives spin up by 10sec */ + 10000, /* > 99% working drives spin up before 20sec */ + 35000, /* give > 30 secs of idleness for outlier devices */ + 5000, /* and sweet one last chance */ + UINT_MAX, /* > 1 min has elapsed, give up */ +}; + static const unsigned int ata_eh_other_timeouts[] = { 5000, /* same rationale as identify timeout */ 10000, /* ditto */ @@ -147,6 +155,8 @@ .timeouts = ata_eh_other_timeouts, }, { .commands = CMDS(ATA_CMD_FLUSH, ATA_CMD_FLUSH_EXT), .timeouts = ata_eh_flush_timeouts }, + { .commands = CMDS(ATA_CMD_VERIFY), + .timeouts = ata_eh_pm_timeouts }, }; #undef CMDS @@ -498,7 +508,19 @@ struct ata_device *dev; unsigned long flags; - /* Restore SControl IPM and SPD for the next driver and + /* + * Unless we are restarting, transition all enabled devices to + * standby power mode. + */ + if (system_state != SYSTEM_RESTART) { + ata_for_each_link(link, ap, PMP_FIRST) { + ata_for_each_dev(dev, link, ENABLED) + ata_dev_power_set_standby(dev); + } + } + + /* + * Restore SControl IPM and SPD for the next driver and * disable attached devices. */ ata_for_each_link(link, ap, PMP_FIRST) { @@ -690,6 +712,10 @@ ehc->saved_xfer_mode[devno] = dev->xfer_mode; if (ata_ncq_enabled(dev)) ehc->saved_ncq_enabled |= 1 << devno; + + /* If we are resuming, wake up the device */ + if (ap->pflags & ATA_PFLAG_RESUMING) + ehc->i.dev_action[devno] |= ATA_EH_SET_ACTIVE; } } @@ -753,6 +779,8 @@ /* clean up */ spin_lock_irqsave(ap->lock, flags); + ap->pflags &= ~ATA_PFLAG_RESUMING; + if (ap->pflags & ATA_PFLAG_LOADING) ap->pflags &= ~ATA_PFLAG_LOADING; else if ((ap->pflags & ATA_PFLAG_SCSI_HOTPLUG) && @@ -1244,6 +1272,13 @@ struct ata_eh_context *ehc = &link->eh_context; unsigned long flags; + /* + * If the device is still enabled, transition it to standby power mode + * (i.e. spin down HDDs). + */ + if (ata_dev_enabled(dev)) + ata_dev_power_set_standby(dev); + ata_dev_disable(dev); spin_lock_irqsave(ap->lock, flags); @@ -2822,23 +2857,13 @@ } } - /* - * Some controllers can't be frozen very well and may set spurious - * error conditions during reset. Clear accumulated error - * information and re-thaw the port if frozen. As reset is the - * final recovery action and we cross check link onlineness against - * device classification later, no hotplug event is lost by this. - */ + /* clear cached SError */ spin_lock_irqsave(link->ap->lock, flags); - memset(&link->eh_info, 0, sizeof(link->eh_info)); + link->eh_info.serror = 0; if (slave) - memset(&slave->eh_info, 0, sizeof(link->eh_info)); - ap->pflags &= ~ATA_PFLAG_EH_PENDING; + slave->eh_info.serror = 0; spin_unlock_irqrestore(link->ap->lock, flags); - if (ata_port_is_frozen(ap)) - ata_eh_thaw_port(ap); - /* * Make sure onlineness and classification result correspond. * Hotplug could have happened during reset and some @@ -3052,6 +3077,15 @@ if (ehc->i.flags & ATA_EHI_DID_RESET) readid_flags |= ATA_READID_POSTRESET; + /* + * When resuming, before executing any command, make sure to + * transition the device to the active power mode. + */ + if ((action & ATA_EH_SET_ACTIVE) && ata_dev_enabled(dev)) { + ata_dev_power_set_active(dev); + ata_eh_done(link, dev, ATA_EH_SET_ACTIVE); + } + if ((action & ATA_EH_REVALIDATE) && ata_dev_enabled(dev)) { WARN_ON(dev->class == ATA_DEV_PMP); @@ -4025,6 +4059,7 @@ unsigned long flags; int rc = 0; struct ata_device *dev; + struct ata_link *link; /* are we suspending? */ spin_lock_irqsave(ap->lock, flags); @@ -4037,6 +4072,12 @@ WARN_ON(ap->pflags & ATA_PFLAG_SUSPENDED); + /* Set all devices attached to the port in standby mode */ + ata_for_each_link(link, ap, HOST_FIRST) { + ata_for_each_dev(dev, link, ENABLED) + ata_dev_power_set_standby(dev); + } + /* * If we have a ZPODD attached, check its zero * power ready status before the port is frozen. @@ -4119,6 +4160,7 @@ /* update the flags */ spin_lock_irqsave(ap->lock, flags); ap->pflags &= ~(ATA_PFLAG_PM_PENDING | ATA_PFLAG_SUSPENDED); + ap->pflags |= ATA_PFLAG_RESUMING; spin_unlock_irqrestore(ap->lock, flags); } #endif /* CONFIG_PM */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/libata-sata.c +++ linux-oracle-6.5-6.5.0/drivers/ata/libata-sata.c @@ -396,10 +396,23 @@ case ATA_LPM_MED_POWER_WITH_DIPM: case ATA_LPM_MIN_POWER_WITH_PARTIAL: case ATA_LPM_MIN_POWER: - if (ata_link_nr_enabled(link) > 0) - /* no restrictions on LPM transitions */ + if (ata_link_nr_enabled(link) > 0) { + /* assume no restrictions on LPM transitions */ scontrol &= ~(0x7 << 8); - else { + + /* + * If the controller does not support partial, slumber, + * or devsleep, then disallow these transitions. + */ + if (link->ap->host->flags & ATA_HOST_NO_PART) + scontrol |= (0x1 << 8); + + if (link->ap->host->flags & ATA_HOST_NO_SSC) + scontrol |= (0x2 << 8); + + if (link->ap->host->flags & ATA_HOST_NO_DEVSLP) + scontrol |= (0x4 << 8); + } else { /* empty port, power off */ scontrol &= ~0xf; scontrol |= (0x1 << 2); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/libata-scsi.c +++ linux-oracle-6.5-6.5.0/drivers/ata/libata-scsi.c @@ -1100,14 +1100,13 @@ } } else { sdev->sector_size = ata_id_logical_sector_size(dev->id); + /* - * Stop the drive on suspend but do not issue START STOP UNIT - * on resume as this is not necessary and may fail: the device - * will be woken up by ata_port_pm_resume() with a port reset - * and device revalidation. + * Ask the sd driver to issue START STOP UNIT on runtime suspend + * and resume only. For system level suspend/resume, devices + * power state is handled directly by libata EH. */ - sdev->manage_start_stop = 1; - sdev->no_start_on_resume = 1; + sdev->manage_runtime_start_stop = true; } /* @@ -1140,6 +1139,42 @@ } /** + * ata_scsi_slave_alloc - Early setup of SCSI device + * @sdev: SCSI device to examine + * + * This is called from scsi_alloc_sdev() when the scsi device + * associated with an ATA device is scanned on a port. + * + * LOCKING: + * Defined by SCSI layer. We don't really care. + */ + +int ata_scsi_slave_alloc(struct scsi_device *sdev) +{ + struct ata_port *ap = ata_shost_to_port(sdev->host); + struct device_link *link; + + ata_scsi_sdev_config(sdev); + + /* + * Create a link from the ata_port device to the scsi device to ensure + * that PM does suspend/resume in the correct order: the scsi device is + * consumer (child) and the ata port the supplier (parent). + */ + link = device_link_add(&sdev->sdev_gendev, &ap->tdev, + DL_FLAG_STATELESS | + DL_FLAG_PM_RUNTIME | DL_FLAG_RPM_ACTIVE); + if (!link) { + ata_port_err(ap, "Failed to create link to scsi device %s\n", + dev_name(&sdev->sdev_gendev)); + return -ENODEV; + } + + return 0; +} +EXPORT_SYMBOL_GPL(ata_scsi_slave_alloc); + +/** * ata_scsi_slave_config - Set SCSI device attributes * @sdev: SCSI device to examine * @@ -1155,14 +1190,11 @@ { struct ata_port *ap = ata_shost_to_port(sdev->host); struct ata_device *dev = __ata_scsi_find_dev(ap, sdev); - int rc = 0; - - ata_scsi_sdev_config(sdev); if (dev) - rc = ata_scsi_dev_config(sdev, dev); + return ata_scsi_dev_config(sdev, dev); - return rc; + return 0; } EXPORT_SYMBOL_GPL(ata_scsi_slave_config); @@ -1189,6 +1221,8 @@ if (!ap->ops->error_handler) return; + device_link_remove(&sdev->sdev_gendev, &ap->tdev); + spin_lock_irqsave(ap->lock, flags); dev = __ata_scsi_find_dev(ap, sdev); if (dev && dev->sdev) { @@ -1248,7 +1282,7 @@ } if (cdb[4] & 0x1) { - tf->nsect = 1; /* 1 sector, lba=0 */ + tf->nsect = 1; /* 1 sector, lba=0 */ if (qc->dev->flags & ATA_DFLAG_LBA) { tf->flags |= ATA_TFLAG_LBA; @@ -1264,7 +1298,7 @@ tf->lbah = 0x0; /* cyl high */ } - tf->command = ATA_CMD_VERIFY; /* READ VERIFY */ + tf->command = ATA_CMD_VERIFY; /* READ VERIFY */ } else { /* Some odd clown BIOSen issue spindown on power off (ACPI S4 * or S5) causing some drives to spin up and down again. @@ -1274,7 +1308,7 @@ goto skip; if ((qc->ap->flags & ATA_FLAG_NO_HIBERNATE_SPINDOWN) && - system_entering_hibernation()) + system_entering_hibernation()) goto skip; /* Issue ATA STANDBY IMMEDIATE command */ @@ -1892,6 +1926,9 @@ hdr[2] = 0x7; /* claim SPC-5 version compatibility */ } + if (args->dev->flags & ATA_DFLAG_CDL) + hdr[2] = 0xd; /* claim SPC-6 version compatibility */ + memcpy(rbuf, hdr, sizeof(hdr)); memcpy(&rbuf[8], "ATA ", 8); ata_id_string(args->id, &rbuf[16], ATA_ID_PROD, 16); @@ -4448,7 +4485,7 @@ break; case MAINTENANCE_IN: - if (scsicmd[1] == MI_REPORT_SUPPORTED_OPERATION_CODES) + if ((scsicmd[1] & 0x1f) == MI_REPORT_SUPPORTED_OPERATION_CODES) ata_scsi_rbuf_fill(&args, ata_scsiop_maint_in); else ata_scsi_set_invalid_field(dev, cmd, 1, 0xff); @@ -4861,7 +4898,7 @@ struct ata_link *link; struct ata_device *dev; unsigned long flags; - bool delay_rescan = false; + int ret = 0; mutex_lock(&ap->scsi_scan_mutex); spin_lock_irqsave(ap->lock, flags); @@ -4870,37 +4907,34 @@ ata_for_each_dev(dev, link, ENABLED) { struct scsi_device *sdev = dev->sdev; + /* + * If the port was suspended before this was scheduled, + * bail out. + */ + if (ap->pflags & ATA_PFLAG_SUSPENDED) + goto unlock; + if (!sdev) continue; if (scsi_device_get(sdev)) continue; - /* - * If the rescan work was scheduled because of a resume - * event, the port is already fully resumed, but the - * SCSI device may not yet be fully resumed. In such - * case, executing scsi_rescan_device() may cause a - * deadlock with the PM code on device_lock(). Prevent - * this by giving up and retrying rescan after a short - * delay. - */ - delay_rescan = sdev->sdev_gendev.power.is_suspended; - if (delay_rescan) { - scsi_device_put(sdev); - break; - } - spin_unlock_irqrestore(ap->lock, flags); - scsi_rescan_device(&(sdev->sdev_gendev)); + ret = scsi_rescan_device(sdev); scsi_device_put(sdev); spin_lock_irqsave(ap->lock, flags); + + if (ret) + goto unlock; } } +unlock: spin_unlock_irqrestore(ap->lock, flags); mutex_unlock(&ap->scsi_scan_mutex); - if (delay_rescan) + /* Reschedule with a delay if scsi_rescan_device() returned an error */ + if (ret) schedule_delayed_work(&ap->scsi_rescan_task, msecs_to_jiffies(5)); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/libata-transport.c +++ linux-oracle-6.5-6.5.0/drivers/ata/libata-transport.c @@ -266,6 +266,10 @@ put_device(dev); } +static const struct device_type ata_port_sas_type = { + .name = ATA_PORT_TYPE_NAME, +}; + /** ata_tport_add - initialize a transport ATA port structure * * @parent: parent device @@ -283,7 +287,10 @@ struct device *dev = &ap->tdev; device_initialize(dev); - dev->type = &ata_port_type; + if (ap->flags & ATA_FLAG_SAS_HOST) + dev->type = &ata_port_sas_type; + else + dev->type = &ata_port_type; dev->parent = parent; ata_host_get(ap->host); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/libata.h +++ linux-oracle-6.5-6.5.0/drivers/ata/libata.h @@ -30,6 +30,8 @@ ATA_DNXFER_QUIET = (1 << 31), }; +#define ATA_PORT_TYPE_NAME "ata_port" + extern atomic_t ata_print_id; extern int atapi_passthru16; extern int libata_fua; @@ -60,6 +62,8 @@ extern int ata_dev_revalidate(struct ata_device *dev, unsigned int new_class, unsigned int readid_flags); extern int ata_dev_configure(struct ata_device *dev); +extern void ata_dev_power_set_standby(struct ata_device *dev); +extern void ata_dev_power_set_active(struct ata_device *dev); extern int sata_down_spd_limit(struct ata_link *link, u32 spd_limit); extern int ata_down_xfermask_limit(struct ata_device *dev, unsigned int sel); extern unsigned int ata_dev_set_feature(struct ata_device *dev, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/pata_falcon.c +++ linux-oracle-6.5-6.5.0/drivers/ata/pata_falcon.c @@ -123,8 +123,8 @@ struct resource *base_res, *ctl_res, *irq_res; struct ata_host *host; struct ata_port *ap; - void __iomem *base; - int irq = 0; + void __iomem *base, *ctl_base; + int irq = 0, io_offset = 1, reg_shift = 2; /* Falcon defaults */ dev_info(&pdev->dev, "Atari Falcon and Q40/Q60 PATA controller\n"); @@ -165,26 +165,34 @@ ap->pio_mask = ATA_PIO4; ap->flags |= ATA_FLAG_SLAVE_POSS | ATA_FLAG_NO_IORDY; - base = (void __iomem *)base_mem_res->start; /* N.B. this assumes data_addr will be used for word-sized I/O only */ - ap->ioaddr.data_addr = base + 0 + 0 * 4; - ap->ioaddr.error_addr = base + 1 + 1 * 4; - ap->ioaddr.feature_addr = base + 1 + 1 * 4; - ap->ioaddr.nsect_addr = base + 1 + 2 * 4; - ap->ioaddr.lbal_addr = base + 1 + 3 * 4; - ap->ioaddr.lbam_addr = base + 1 + 4 * 4; - ap->ioaddr.lbah_addr = base + 1 + 5 * 4; - ap->ioaddr.device_addr = base + 1 + 6 * 4; - ap->ioaddr.status_addr = base + 1 + 7 * 4; - ap->ioaddr.command_addr = base + 1 + 7 * 4; - - base = (void __iomem *)ctl_mem_res->start; - ap->ioaddr.altstatus_addr = base + 1; - ap->ioaddr.ctl_addr = base + 1; - - ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", - (unsigned long)base_mem_res->start, - (unsigned long)ctl_mem_res->start); + ap->ioaddr.data_addr = (void __iomem *)base_mem_res->start; + + if (base_res) { /* only Q40 has IO resources */ + io_offset = 0x10000; + reg_shift = 0; + base = (void __iomem *)base_res->start; + ctl_base = (void __iomem *)ctl_res->start; + } else { + base = (void __iomem *)base_mem_res->start; + ctl_base = (void __iomem *)ctl_mem_res->start; + } + + ap->ioaddr.error_addr = base + io_offset + (1 << reg_shift); + ap->ioaddr.feature_addr = base + io_offset + (1 << reg_shift); + ap->ioaddr.nsect_addr = base + io_offset + (2 << reg_shift); + ap->ioaddr.lbal_addr = base + io_offset + (3 << reg_shift); + ap->ioaddr.lbam_addr = base + io_offset + (4 << reg_shift); + ap->ioaddr.lbah_addr = base + io_offset + (5 << reg_shift); + ap->ioaddr.device_addr = base + io_offset + (6 << reg_shift); + ap->ioaddr.status_addr = base + io_offset + (7 << reg_shift); + ap->ioaddr.command_addr = base + io_offset + (7 << reg_shift); + + ap->ioaddr.altstatus_addr = ctl_base + io_offset; + ap->ioaddr.ctl_addr = ctl_base + io_offset; + + ata_port_desc(ap, "cmd %px ctl %px data %px", + base, ctl_base, ap->ioaddr.data_addr); irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); if (irq_res && irq_res->start > 0) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/pata_ftide010.c +++ linux-oracle-6.5-6.5.0/drivers/ata/pata_ftide010.c @@ -567,6 +567,7 @@ }; module_platform_driver(pata_ftide010_driver); +MODULE_DESCRIPTION("low level driver for Faraday Technology FTIDE010"); MODULE_AUTHOR("Linus Walleij "); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:" DRV_NAME); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/pata_parport/pata_parport.c +++ linux-oracle-6.5-6.5.0/drivers/ata/pata_parport/pata_parport.c @@ -51,6 +51,13 @@ ata_sff_pause(ap); } +static void pata_parport_set_devctl(struct ata_port *ap, u8 ctl) +{ + struct pi_adapter *pi = ap->host->private_data; + + pi->proto->write_regr(pi, 1, 6, ctl); +} + static bool pata_parport_devchk(struct ata_port *ap, unsigned int device) { struct pi_adapter *pi = ap->host->private_data; @@ -64,7 +71,7 @@ pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 0xaa); pi->proto->write_regr(pi, 0, ATA_REG_LBAL, 0x55); - pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 055); + pi->proto->write_regr(pi, 0, ATA_REG_NSECT, 0x55); pi->proto->write_regr(pi, 0, ATA_REG_LBAL, 0xaa); nsect = pi->proto->read_regr(pi, 0, ATA_REG_NSECT); @@ -252,6 +259,7 @@ .hardreset = NULL, .sff_dev_select = pata_parport_dev_select, + .sff_set_devctl = pata_parport_set_devctl, .sff_check_status = pata_parport_check_status, .sff_check_altstatus = pata_parport_check_altstatus, .sff_tf_load = pata_parport_tf_load, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/sata_gemini.c +++ linux-oracle-6.5-6.5.0/drivers/ata/sata_gemini.c @@ -428,6 +428,7 @@ }; module_platform_driver(gemini_sata_driver); +MODULE_DESCRIPTION("low level driver for Cortina Systems Gemini SATA bridge"); MODULE_AUTHOR("Linus Walleij "); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:" DRV_NAME); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ata/sata_mv.c +++ linux-oracle-6.5-6.5.0/drivers/ata/sata_mv.c @@ -1255,8 +1255,8 @@ for (b = 0; b < bytes; ) { for (w = 0, o = 0; b < bytes && w < 4; w++) { - o += snprintf(linebuf + o, sizeof(linebuf) - o, - "%08x ", readl(start + b)); + o += scnprintf(linebuf + o, sizeof(linebuf) - o, + "%08x ", readl(start + b)); b += sizeof(u32); } dev_dbg(dev, "%s: %p: %s\n", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/block/null_blk/main.c +++ linux-oracle-6.5-6.5.0/drivers/block/null_blk/main.c @@ -1643,9 +1643,12 @@ struct nullb_queue *nq = hctx->driver_data; LIST_HEAD(list); int nr = 0; + struct request *rq; spin_lock(&nq->poll_lock); list_splice_init(&nq->poll_list, &list); + list_for_each_entry(rq, &list, queuelist) + blk_mq_set_request_complete(rq); spin_unlock(&nq->poll_lock); while (!list_empty(&list)) { @@ -1671,16 +1674,21 @@ struct blk_mq_hw_ctx *hctx = rq->mq_hctx; struct nullb_cmd *cmd = blk_mq_rq_to_pdu(rq); - pr_info("rq %p timed out\n", rq); - if (hctx->type == HCTX_TYPE_POLL) { struct nullb_queue *nq = hctx->driver_data; spin_lock(&nq->poll_lock); + /* The request may have completed meanwhile. */ + if (blk_mq_request_completed(rq)) { + spin_unlock(&nq->poll_lock); + return BLK_EH_DONE; + } list_del_init(&rq->queuelist); spin_unlock(&nq->poll_lock); } + pr_info("rq %p timed out\n", rq); + /* * If the device is marked as blocking (i.e. memory backed or zoned * device), the submission path may be blocked waiting for resources only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/bus/mhi/host/pm.c +++ linux-oracle-6.5-6.5.0/drivers/bus/mhi/host/pm.c @@ -470,6 +470,10 @@ /* Trigger MHI RESET so that the device will not access host memory */ if (!MHI_PM_IN_FATAL_STATE(mhi_cntrl->pm_state)) { + /* Skip MHI RESET if in RDDM state */ + if (mhi_cntrl->rddm_image && mhi_get_exec_env(mhi_cntrl) == MHI_EE_RDDM) + goto skip_mhi_reset; + dev_dbg(dev, "Triggering MHI Reset in device\n"); mhi_set_mhi_state(mhi_cntrl, MHI_STATE_RESET); @@ -495,6 +499,7 @@ } } +skip_mhi_reset: dev_dbg(dev, "Waiting for all pending event ring processing to complete\n"); mhi_event = mhi_cntrl->mhi_event; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/char/agp/parisc-agp.c +++ linux-oracle-6.5-6.5.0/drivers/char/agp/parisc-agp.c @@ -394,8 +394,6 @@ static int __init parisc_agp_init(void) { - extern struct sba_device *sba_list; - int err = -1; struct parisc_device *sba = NULL, *lba = NULL; struct lba_device *lbadev = NULL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/char/tpm/tpm_tis_core.c +++ linux-oracle-6.5-6.5.0/drivers/char/tpm/tpm_tis_core.c @@ -512,10 +512,17 @@ int rc; u32 ordinal; unsigned long dur; + unsigned int try; - rc = tpm_tis_send_data(chip, buf, len); - if (rc < 0) - return rc; + for (try = 0; try < TPM_RETRY; try++) { + rc = tpm_tis_send_data(chip, buf, len); + if (rc >= 0) + /* Data transfer done successfully */ + break; + else if (rc != -EIO) + /* Data transfer failed, not recoverable */ + return rc; + } rc = tpm_tis_verify_crc(priv, len, buf); if (rc < 0) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/clk-si521xx.c +++ linux-oracle-6.5-6.5.0/drivers/clk/clk-si521xx.c @@ -96,7 +96,7 @@ unsigned int val) { struct i2c_client *i2c = context; - const u8 data[3] = { reg, 1, val }; + const u8 data[2] = { reg, val }; const int count = ARRAY_SIZE(data); int ret; @@ -146,7 +146,7 @@ static const struct regmap_config si521xx_regmap_config = { .reg_bits = 8, .val_bits = 8, - .cache_type = REGCACHE_NONE, + .cache_type = REGCACHE_FLAT, .max_register = SI521XX_REG_DA, .rd_table = &si521xx_readable_table, .wr_table = &si521xx_writeable_table, @@ -281,9 +281,10 @@ { const u16 chip_info = (u16)(uintptr_t)device_get_match_data(&client->dev); const struct clk_parent_data clk_parent_data = { .index = 0 }; - struct si521xx *si; + const u8 data[3] = { SI521XX_REG_BC, 1, 1 }; unsigned char name[6] = "DIFF0"; struct clk_init_data init = {}; + struct si521xx *si; int i, ret; if (!chip_info) @@ -308,7 +309,7 @@ "Failed to allocate register map\n"); /* Always read back 1 Byte via I2C */ - ret = regmap_write(si->regmap, SI521XX_REG_BC, 1); + ret = i2c_master_send(client, data, ARRAY_SIZE(data)); if (ret < 0) return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/imx/clk-pll14xx.c +++ linux-oracle-6.5-6.5.0/drivers/clk/imx/clk-pll14xx.c @@ -64,8 +64,6 @@ PLL_1443X_RATE(650000000U, 325, 3, 2, 0), PLL_1443X_RATE(594000000U, 198, 2, 2, 0), PLL_1443X_RATE(519750000U, 173, 2, 2, 16384), - PLL_1443X_RATE(393216000U, 262, 2, 3, 9437), - PLL_1443X_RATE(361267200U, 361, 3, 3, 17511), }; struct imx_pll14xx_clk imx_1443x_pll = { @@ -139,11 +137,10 @@ /* * Fractional PLL constrains: * - * a) 6MHz <= prate <= 25MHz - * b) 1 <= p <= 63 (1 <= p <= 4 prate = 24MHz) - * c) 64 <= m <= 1023 - * d) 0 <= s <= 6 - * e) -32768 <= k <= 32767 + * a) 1 <= p <= 63 + * b) 64 <= m <= 1023 + * c) 0 <= s <= 6 + * d) -32768 <= k <= 32767 * * fvco = (m * 65536 + k) * prate / (p * 65536) */ @@ -186,7 +183,7 @@ } /* Finally calculate best values */ - for (pdiv = 1; pdiv <= 7; pdiv++) { + for (pdiv = 1; pdiv <= 63; pdiv++) { for (sdiv = 0; sdiv <= 6; sdiv++) { /* calc mdiv = round(rate * pdiv * 2^sdiv) / prate) */ mdiv = DIV_ROUND_CLOSEST(rate * (pdiv << sdiv), prate); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/qcom/camcc-sc7180.c +++ linux-oracle-6.5-6.5.0/drivers/clk/qcom/camcc-sc7180.c @@ -1664,7 +1664,7 @@ return ret; } - ret = pm_runtime_get(&pdev->dev); + ret = pm_runtime_resume_and_get(&pdev->dev); if (ret) return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/qcom/dispcc-sm8450.c +++ linux-oracle-6.5-6.5.0/drivers/clk/qcom/dispcc-sm8450.c @@ -1776,8 +1776,10 @@ return ret; regmap = qcom_cc_map(pdev, &disp_cc_sm8450_desc); - if (IS_ERR(regmap)) - return PTR_ERR(regmap); + if (IS_ERR(regmap)) { + ret = PTR_ERR(regmap); + goto err_put_rpm; + } clk_lucid_evo_pll_configure(&disp_cc_pll0, regmap, &disp_cc_pll0_config); clk_lucid_evo_pll_configure(&disp_cc_pll1, regmap, &disp_cc_pll1_config); @@ -1792,9 +1794,16 @@ regmap_update_bits(regmap, 0xe05c, BIT(0), BIT(0)); ret = qcom_cc_really_probe(pdev, &disp_cc_sm8450_desc, regmap); + if (ret) + goto err_put_rpm; pm_runtime_put(&pdev->dev); + return 0; + +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); + return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/qcom/dispcc-sm8550.c +++ linux-oracle-6.5-6.5.0/drivers/clk/qcom/dispcc-sm8550.c @@ -1761,8 +1761,10 @@ return ret; regmap = qcom_cc_map(pdev, &disp_cc_sm8550_desc); - if (IS_ERR(regmap)) - return PTR_ERR(regmap); + if (IS_ERR(regmap)) { + ret = PTR_ERR(regmap); + goto err_put_rpm; + } clk_lucid_evo_pll_configure(&disp_cc_pll0, regmap, &disp_cc_pll0_config); clk_lucid_evo_pll_configure(&disp_cc_pll1, regmap, &disp_cc_pll1_config); @@ -1777,9 +1779,16 @@ regmap_update_bits(regmap, 0xe054, BIT(0), BIT(0)); ret = qcom_cc_really_probe(pdev, &disp_cc_sm8550_desc, regmap); + if (ret) + goto err_put_rpm; pm_runtime_put(&pdev->dev); + return 0; + +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); + return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/qcom/gcc-mdm9615.c +++ linux-oracle-6.5-6.5.0/drivers/clk/qcom/gcc-mdm9615.c @@ -58,7 +58,7 @@ .enable_mask = BIT(0), .hw.init = &(struct clk_init_data){ .name = "pll0_vote", - .parent_names = (const char *[]){ "pll8" }, + .parent_names = (const char *[]){ "pll0" }, .num_parents = 1, .ops = &clk_pll_vote_ops, }, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/qcom/lpasscc-sc7280.c +++ linux-oracle-6.5-6.5.0/drivers/clk/qcom/lpasscc-sc7280.c @@ -118,9 +118,13 @@ ret = pm_clk_add(&pdev->dev, "iface"); if (ret < 0) { dev_err(&pdev->dev, "failed to acquire iface clock\n"); - goto destroy_pm_clk; + goto err_destroy_pm_clk; } + ret = pm_runtime_resume_and_get(&pdev->dev); + if (ret) + goto err_destroy_pm_clk; + if (!of_property_read_bool(pdev->dev.of_node, "qcom,adsp-pil-mode")) { lpass_regmap_config.name = "qdsp6ss"; lpass_regmap_config.max_register = 0x3f; @@ -128,7 +132,7 @@ ret = qcom_cc_probe_by_index(pdev, 0, desc); if (ret) - goto destroy_pm_clk; + goto err_put_rpm; } lpass_regmap_config.name = "top_cc"; @@ -137,11 +141,15 @@ ret = qcom_cc_probe_by_index(pdev, 1, desc); if (ret) - goto destroy_pm_clk; + goto err_put_rpm; + + pm_runtime_put(&pdev->dev); return 0; -destroy_pm_clk: +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); +err_destroy_pm_clk: pm_clk_destroy(&pdev->dev); return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/qcom/mss-sc7180.c +++ linux-oracle-6.5-6.5.0/drivers/clk/qcom/mss-sc7180.c @@ -87,11 +87,22 @@ return ret; } + ret = pm_runtime_resume_and_get(&pdev->dev); + if (ret) + return ret; + ret = qcom_cc_probe(pdev, &mss_sc7180_desc); if (ret < 0) - return ret; + goto err_put_rpm; + + pm_runtime_put(&pdev->dev); return 0; + +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); + + return ret; } static const struct dev_pm_ops mss_sc7180_pm_ops = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/qcom/q6sstop-qcs404.c +++ linux-oracle-6.5-6.5.0/drivers/clk/qcom/q6sstop-qcs404.c @@ -174,21 +174,32 @@ return ret; } + ret = pm_runtime_resume_and_get(&pdev->dev); + if (ret) + return ret; + q6sstop_regmap_config.name = "q6sstop_tcsr"; desc = &tcsr_qcs404_desc; ret = qcom_cc_probe_by_index(pdev, 1, desc); if (ret) - return ret; + goto err_put_rpm; q6sstop_regmap_config.name = "q6sstop_cc"; desc = &q6sstop_qcs404_desc; ret = qcom_cc_probe_by_index(pdev, 0, desc); if (ret) - return ret; + goto err_put_rpm; + + pm_runtime_put(&pdev->dev); return 0; + +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); + + return ret; } static const struct dev_pm_ops q6sstopcc_pm_ops = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/qcom/turingcc-qcs404.c +++ linux-oracle-6.5-6.5.0/drivers/clk/qcom/turingcc-qcs404.c @@ -125,11 +125,22 @@ return ret; } + ret = pm_runtime_resume_and_get(&pdev->dev); + if (ret) + return ret; + ret = qcom_cc_probe(pdev, &turingcc_desc); if (ret < 0) - return ret; + goto err_put_rpm; + + pm_runtime_put(&pdev->dev); return 0; + +err_put_rpm: + pm_runtime_put_sync(&pdev->dev); + + return ret; } static const struct dev_pm_ops turingcc_pm_ops = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/sprd/ums512-clk.c +++ linux-oracle-6.5-6.5.0/drivers/clk/sprd/ums512-clk.c @@ -800,7 +800,7 @@ 0x250, 0, 3, UMS512_MUX_FLAG); static const struct clk_parent_data thm_parents[] = { - { .fw_name = "ext-32m" }, + { .fw_name = "ext-32k" }, { .hw = &clk_250k.hw }, }; static SPRD_MUX_CLK_DATA(thm0_clk, "thm0-clk", thm_parents, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clk/tegra/clk-bpmp.c +++ linux-oracle-6.5-6.5.0/drivers/clk/tegra/clk-bpmp.c @@ -159,7 +159,7 @@ err = tegra_bpmp_clk_transfer(clk->bpmp, &msg); if (err < 0) - return err; + return 0; return response.rate; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/clocksource/arm_arch_timer.c +++ linux-oracle-6.5-6.5.0/drivers/clocksource/arm_arch_timer.c @@ -792,6 +792,13 @@ u64 cnt; ctrl = arch_timer_reg_read(access, ARCH_TIMER_REG_CTRL, clk); + + /* Timer must be disabled before programming CVAL */ + if (ctrl & ARCH_TIMER_CTRL_ENABLE) { + ctrl &= ~ARCH_TIMER_CTRL_ENABLE; + arch_timer_reg_write(access, ARCH_TIMER_REG_CTRL, ctrl, clk); + } + ctrl |= ARCH_TIMER_CTRL_ENABLE; ctrl &= ~ARCH_TIMER_CTRL_IT_MASK; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/comedi/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/comedi/Kconfig @@ -67,7 +67,6 @@ config COMEDI_PARPORT tristate "Parallel port support" - depends on HAS_IOPORT help Enable support for the standard parallel port. A cheap and easy way to get a few more digital I/O lines. Steal @@ -80,7 +79,6 @@ config COMEDI_SSV_DNP tristate "SSV Embedded Systems DIL/Net-PC support" depends on X86_32 || COMPILE_TEST - depends on HAS_IOPORT help Enable support for SSV Embedded Systems DIL/Net-PC @@ -91,7 +89,6 @@ menuconfig COMEDI_ISA_DRIVERS bool "Comedi ISA and PC/104 drivers" - depends on ISA help Enable comedi ISA and PC/104 drivers to be built @@ -103,8 +100,7 @@ config COMEDI_PCL711 tristate "Advantech PCL-711/711b and ADlink ACL-8112 ISA card support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Advantech PCL-711 and 711b, ADlink ACL-8112 @@ -165,9 +161,8 @@ config COMEDI_PCL812 tristate "Advantech PCL-812/813 and ADlink ACL-8112/8113/8113/8216" - depends on HAS_IOPORT select COMEDI_ISADMA if ISA_DMA_API - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Advantech PCL-812/PG, PCL-813/B, ADLink ACL-8112DG/HG/PG, ACL-8113, ACL-8216, ICP DAS A-821PGH/PGL/PGL-NDA, @@ -178,9 +173,8 @@ config COMEDI_PCL816 tristate "Advantech PCL-814 and PCL-816 ISA card support" - depends on HAS_IOPORT select COMEDI_ISADMA if ISA_DMA_API - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Advantech PCL-814 and PCL-816 ISA cards @@ -189,9 +183,8 @@ config COMEDI_PCL818 tristate "Advantech PCL-718 and PCL-818 ISA card support" - depends on HAS_IOPORT select COMEDI_ISADMA if ISA_DMA_API - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Advantech PCL-818 ISA cards PCL-818L, PCL-818H, PCL-818HD, PCL-818HG, PCL-818 and PCL-718 @@ -210,7 +203,7 @@ config COMEDI_AMPLC_DIO200_ISA tristate "Amplicon PC212E/PC214E/PC215E/PC218E/PC272E" - depends on COMEDI_AMPLC_DIO200 + select COMEDI_AMPLC_DIO200 help Enable support for Amplicon PC212E, PC214E, PC215E, PC218E and PC272E ISA DIO boards @@ -262,8 +255,7 @@ config COMEDI_DAS16M1 tristate "MeasurementComputing CIO-DAS16/M1DAS-16 ISA card support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 help Enable support for Measurement Computing CIO-DAS16/M1 ISA cards. @@ -273,7 +265,7 @@ config COMEDI_DAS08_ISA tristate "DAS-08 compatible ISA and PC/104 card support" - depends on COMEDI_DAS08 + select COMEDI_DAS08 help Enable support for Keithley Metrabyte/ComputerBoards DAS08 and compatible ISA and PC/104 cards: @@ -286,9 +278,8 @@ config COMEDI_DAS16 tristate "DAS-16 compatible ISA and PC/104 card support" - depends on HAS_IOPORT select COMEDI_ISADMA if ISA_DMA_API - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 help Enable support for Keithley Metrabyte/ComputerBoards DAS16 @@ -305,8 +296,7 @@ config COMEDI_DAS800 tristate "DAS800 and compatible ISA card support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Keithley Metrabyte DAS800 and compatible ISA cards Keithley Metrabyte DAS-800, DAS-801, DAS-802 @@ -318,9 +308,8 @@ config COMEDI_DAS1800 tristate "DAS1800 and compatible ISA card support" - depends on HAS_IOPORT select COMEDI_ISADMA if ISA_DMA_API - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for DAS1800 and compatible ISA cards Keithley Metrabyte DAS-1701ST, DAS-1701ST-DA, DAS-1701/AO, @@ -334,8 +323,7 @@ config COMEDI_DAS6402 tristate "DAS6402 and compatible ISA card support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for DAS6402 and compatible ISA cards Computerboards, Keithley Metrabyte DAS6402 and compatibles @@ -414,8 +402,7 @@ config COMEDI_AIO_AIO12_8 tristate "I/O Products PC/104 AIO12-8 Analog I/O Board support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 help Enable support for I/O Products PC/104 AIO12-8 Analog I/O Board @@ -469,9 +456,8 @@ config COMEDI_NI_AT_A2150 tristate "NI AT-A2150 ISA card support" - depends on HAS_IOPORT select COMEDI_ISADMA if ISA_DMA_API - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for National Instruments AT-A2150 cards @@ -480,8 +466,7 @@ config COMEDI_NI_AT_AO tristate "NI AT-AO-6/10 EISA card support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for National Instruments AT-AO-6/10 cards @@ -512,7 +497,7 @@ config COMEDI_NI_LABPC_ISA tristate "NI Lab-PC and compatibles ISA support" - depends on COMEDI_NI_LABPC + select COMEDI_NI_LABPC help Enable support for National Instruments Lab-PC and compatibles Lab-PC-1200, Lab-PC-1200AI, Lab-PC+. @@ -576,7 +561,7 @@ menuconfig COMEDI_PCI_DRIVERS tristate "Comedi PCI drivers" - depends on PCI && HAS_IOPORT + depends on PCI help Enable support for comedi PCI drivers. @@ -725,8 +710,7 @@ config COMEDI_ADL_PCI9111 tristate "ADLink PCI-9111HR support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for ADlink PCI9111 cards @@ -736,7 +720,7 @@ config COMEDI_ADL_PCI9118 tristate "ADLink PCI-9118DG, PCI-9118HG, PCI-9118HR support" depends on HAS_DMA - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for ADlink PCI-9118DG, PCI-9118HG, PCI-9118HR cards @@ -745,8 +729,7 @@ config COMEDI_ADV_PCI1710 tristate "Advantech PCI-171x and PCI-1731 support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Advantech PCI-1710, PCI-1710HG, PCI-1711, PCI-1713 and PCI-1731 @@ -790,8 +773,7 @@ config COMEDI_ADV_PCI_DIO tristate "Advantech PCI DIO card support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 help Enable support for Advantech PCI DIO cards @@ -804,7 +786,7 @@ config COMEDI_AMPLC_DIO200_PCI tristate "Amplicon PCI215/PCI272/PCIe215/PCIe236/PCIe296 DIO support" - depends on COMEDI_AMPLC_DIO200 + select COMEDI_AMPLC_DIO200 help Enable support for Amplicon PCI215, PCI272, PCIe215, PCIe236 and PCIe296 DIO boards. @@ -832,8 +814,7 @@ config COMEDI_AMPLC_PCI224 tristate "Amplicon PCI224 and PCI234 support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Amplicon PCI224 and PCI234 AO boards @@ -842,8 +823,7 @@ config COMEDI_AMPLC_PCI230 tristate "Amplicon PCI230 and PCI260 support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 help Enable support for Amplicon PCI230 and PCI260 Multifunction I/O @@ -862,7 +842,7 @@ config COMEDI_DAS08_PCI tristate "DAS-08 PCI support" - depends on COMEDI_DAS08 + select COMEDI_DAS08 help Enable support for PCI DAS-08 cards. @@ -949,8 +929,7 @@ config COMEDI_CB_PCIDAS tristate "MeasurementComputing PCI-DAS support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 help Enable support for ComputerBoards/MeasurementComputing PCI-DAS with @@ -974,8 +953,7 @@ config COMEDI_CB_PCIMDAS tristate "MeasurementComputing PCIM-DAS1602/16, PCIe-DAS1602/16 support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 help Enable support for ComputerBoards/MeasurementComputing PCI Migration @@ -995,8 +973,7 @@ config COMEDI_ME4000 tristate "Meilhaus ME-4000 support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Meilhaus PCI data acquisition cards ME-4650, ME-4670i, ME-4680, ME-4680i and ME-4680is @@ -1054,7 +1031,7 @@ config COMEDI_NI_LABPC_PCI tristate "NI Lab-PC PCI-1200 support" - depends on COMEDI_NI_LABPC + select COMEDI_NI_LABPC help Enable support for National Instruments Lab-PC PCI-1200. @@ -1076,7 +1053,6 @@ config COMEDI_NI_PCIMIO tristate "NI PCI-MIO-E series and M series support" depends on HAS_DMA - depends on HAS_IOPORT select COMEDI_NI_TIOCMD select COMEDI_8255 help @@ -1098,8 +1074,7 @@ config COMEDI_RTD520 tristate "Real Time Devices PCI4520/DM7520 support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for Real Time Devices PCI4520/DM7520 @@ -1139,8 +1114,7 @@ config COMEDI_CB_DAS16_CS tristate "CB DAS16 series PCMCIA support" - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 help Enable support for the ComputerBoards/MeasurementComputing PCMCIA cards DAS16/16, PCM-DAS16D/12 and PCM-DAS16s/16 @@ -1150,7 +1124,7 @@ config COMEDI_DAS08_CS tristate "CB DAS08 PCMCIA support" - depends on COMEDI_DAS08 + select COMEDI_DAS08 help Enable support for the ComputerBoards/MeasurementComputing DAS-08 PCMCIA card @@ -1160,7 +1134,6 @@ config COMEDI_NI_DAQ_700_CS tristate "NI DAQCard-700 PCMCIA support" - depends on HAS_IOPORT help Enable support for the National Instruments PCMCIA DAQCard-700 DIO @@ -1169,7 +1142,6 @@ config COMEDI_NI_DAQ_DIO24_CS tristate "NI DAQ-Card DIO-24 PCMCIA support" - depends on HAS_IOPORT select COMEDI_8255 help Enable support for the National Instruments PCMCIA DAQ-Card DIO-24 @@ -1179,7 +1151,7 @@ config COMEDI_NI_LABPC_CS tristate "NI DAQCard-1200 PCMCIA support" - depends on COMEDI_NI_LABPC + select COMEDI_NI_LABPC help Enable support for the National Instruments PCMCIA DAQCard-1200 @@ -1188,7 +1160,6 @@ config COMEDI_NI_MIO_CS tristate "NI DAQCard E series PCMCIA support" - depends on HAS_IOPORT select COMEDI_NI_TIO select COMEDI_8255 help @@ -1201,7 +1172,6 @@ config COMEDI_QUATECH_DAQP_CS tristate "Quatech DAQP PCMCIA data capture card support" - depends on HAS_IOPORT help Enable support for the Quatech DAQP PCMCIA data capture cards DAQP-208 and DAQP-308 @@ -1278,14 +1248,12 @@ config COMEDI_8254 tristate - depends on HAS_IOPORT config COMEDI_8255 tristate config COMEDI_8255_SA tristate "Standalone 8255 support" - depends on HAS_IOPORT select COMEDI_8255 help Enable support for 8255 digital I/O as a standalone driver. @@ -1317,7 +1285,7 @@ called kcomedilib. config COMEDI_AMPLC_DIO200 - depends on COMEDI_8254 + select COMEDI_8254 tristate config COMEDI_AMPLC_PC236 @@ -1326,7 +1294,7 @@ config COMEDI_DAS08 tristate - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 config COMEDI_ISADMA @@ -1334,8 +1302,7 @@ config COMEDI_NI_LABPC tristate - depends on HAS_IOPORT - depends on COMEDI_8254 + select COMEDI_8254 select COMEDI_8255 config COMEDI_NI_LABPC_ISADMA only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/counter/counter-chrdev.c +++ linux-oracle-6.5-6.5.0/drivers/counter/counter-chrdev.c @@ -247,8 +247,8 @@ if (*id == component_id) return 0; - if (ext->type == COUNTER_COMP_ARRAY) { - element = ext->priv; + if (ext[*ext_idx].type == COUNTER_COMP_ARRAY) { + element = ext[*ext_idx].priv; if (component_id - *id < element->length) return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/counter/microchip-tcb-capture.c +++ linux-oracle-6.5-6.5.0/drivers/counter/microchip-tcb-capture.c @@ -98,7 +98,7 @@ priv->qdec_mode = 0; /* Set highest rate based on whether soc has gclk or not */ bmr &= ~(ATMEL_TC_QDEN | ATMEL_TC_POSEN); - if (priv->tc_cfg->has_gclk) + if (!priv->tc_cfg->has_gclk) cmr |= ATMEL_TC_TIMER_CLOCK2; else cmr |= ATMEL_TC_TIMER_CLOCK1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/cxl/core/mbox.c +++ linux-oracle-6.5-6.5.0/drivers/cxl/core/mbox.c @@ -715,24 +715,25 @@ for (i = 0; i < cel_entries; i++) { u16 opcode = le16_to_cpu(cel_entry[i].opcode); struct cxl_mem_command *cmd = cxl_mem_find_command(opcode); + int enabled = 0; - if (!cmd && (!cxl_is_poison_command(opcode) || - !cxl_is_security_command(opcode))) { - dev_dbg(dev, - "Opcode 0x%04x unsupported by driver\n", opcode); - continue; - } - - if (cmd) + if (cmd) { set_bit(cmd->info.id, mds->enabled_cmds); + enabled++; + } - if (cxl_is_poison_command(opcode)) + if (cxl_is_poison_command(opcode)) { cxl_set_poison_cmd_enabled(&mds->poison, opcode); + enabled++; + } - if (cxl_is_security_command(opcode)) + if (cxl_is_security_command(opcode)) { cxl_set_security_cmd_enabled(&mds->security, opcode); + enabled++; + } - dev_dbg(dev, "Opcode 0x%04x enabled\n", opcode); + dev_dbg(dev, "Opcode 0x%04x %s\n", opcode, + enabled ? "enabled" : "unsupported by driver"); } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/cxl/core/port.c +++ linux-oracle-6.5-6.5.0/drivers/cxl/core/port.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-2.0-only /* Copyright(c) 2020 Intel Corporation. All rights reserved. */ +#include #include #include #include @@ -706,16 +707,20 @@ return cxl_setup_regs(map); } -static inline int cxl_port_setup_regs(struct cxl_port *port, - resource_size_t component_reg_phys) +static int cxl_port_setup_regs(struct cxl_port *port, + resource_size_t component_reg_phys) { + if (dev_is_platform(port->uport_dev)) + return 0; return cxl_setup_comp_regs(&port->dev, &port->comp_map, component_reg_phys); } -static inline int cxl_dport_setup_regs(struct cxl_dport *dport, - resource_size_t component_reg_phys) +static int cxl_dport_setup_regs(struct cxl_dport *dport, + resource_size_t component_reg_phys) { + if (dev_is_platform(dport->dport_dev)) + return 0; return cxl_setup_comp_regs(dport->dport_dev, &dport->comp_map, component_reg_phys); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/cxl/core/region.c +++ linux-oracle-6.5-6.5.0/drivers/cxl/core/region.c @@ -717,13 +717,35 @@ return 0; } +static int match_auto_decoder(struct device *dev, void *data) +{ + struct cxl_region_params *p = data; + struct cxl_decoder *cxld; + struct range *r; + + if (!is_switch_decoder(dev)) + return 0; + + cxld = to_cxl_decoder(dev); + r = &cxld->hpa_range; + + if (p->res && p->res->start == r->start && p->res->end == r->end) + return 1; + + return 0; +} + static struct cxl_decoder *cxl_region_find_decoder(struct cxl_port *port, struct cxl_region *cxlr) { struct device *dev; int id = 0; - dev = device_find_child(&port->dev, &id, match_free_decoder); + if (test_bit(CXL_REGION_F_AUTO, &cxlr->flags)) + dev = device_find_child(&port->dev, &cxlr->params, + match_auto_decoder); + else + dev = device_find_child(&port->dev, &id, match_free_decoder); if (!dev) return NULL; /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/cxl/pci.c +++ linux-oracle-6.5-6.5.0/drivers/cxl/pci.c @@ -541,9 +541,9 @@ return 0; } - /* BIOS has CXL error control */ - if (!host_bridge->native_cxl_error) - return -ENXIO; + /* BIOS has PCIe AER error control */ + if (!host_bridge->native_aer) + return 0; rc = pcie_capability_read_word(pdev, PCI_EXP_DEVCTL, &cap); if (rc) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/dma-buf/dma-fence-unwrap.c +++ linux-oracle-6.5-6.5.0/drivers/dma-buf/dma-fence-unwrap.c @@ -76,16 +76,11 @@ dma_fence_unwrap_for_each(tmp, &iter[i], fences[i]) { if (!dma_fence_is_signaled(tmp)) { ++count; - } else if (test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, - &tmp->flags)) { - if (ktime_after(tmp->timestamp, timestamp)) - timestamp = tmp->timestamp; } else { - /* - * Use the current time if the fence is - * currently signaling. - */ - timestamp = ktime_get(); + ktime_t t = dma_fence_timestamp(tmp); + + if (ktime_after(t, timestamp)) + timestamp = t; } } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/dma-buf/sync_file.c +++ linux-oracle-6.5-6.5.0/drivers/dma-buf/sync_file.c @@ -268,13 +268,10 @@ sizeof(info->driver_name)); info->status = dma_fence_get_status(fence); - while (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags) && - !test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags)) - cpu_relax(); info->timestamp_ns = - test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags) ? - ktime_to_ns(fence->timestamp) : - ktime_set(0, 0); + dma_fence_is_signaled(fence) ? + ktime_to_ns(dma_fence_timestamp(fence)) : + ktime_set(0, 0); return info->status; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/dma/idxd/device.c +++ linux-oracle-6.5-6.5.0/drivers/dma/idxd/device.c @@ -492,6 +492,7 @@ union idxd_command_reg cmd; DECLARE_COMPLETION_ONSTACK(done); u32 stat; + unsigned long flags; if (idxd_device_is_halted(idxd)) { dev_warn(&idxd->pdev->dev, "Device is HALTED!\n"); @@ -505,7 +506,7 @@ cmd.operand = operand; cmd.int_req = 1; - spin_lock(&idxd->cmd_lock); + spin_lock_irqsave(&idxd->cmd_lock, flags); wait_event_lock_irq(idxd->cmd_waitq, !test_bit(IDXD_FLAG_CMD_RUNNING, &idxd->flags), idxd->cmd_lock); @@ -522,7 +523,7 @@ * After command submitted, release lock and go to sleep until * the command completes via interrupt. */ - spin_unlock(&idxd->cmd_lock); + spin_unlock_irqrestore(&idxd->cmd_lock, flags); wait_for_completion(&done); stat = ioread32(idxd->reg_base + IDXD_CMDSTS_OFFSET); spin_lock(&idxd->cmd_lock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/dma/mediatek/mtk-uart-apdma.c +++ linux-oracle-6.5-6.5.0/drivers/dma/mediatek/mtk-uart-apdma.c @@ -451,9 +451,8 @@ mtk_uart_apdma_write(c, VFF_EN, VFF_EN_CLR_B); mtk_uart_apdma_write(c, VFF_INT_EN, VFF_INT_EN_CLR_B); - synchronize_irq(c->irq); - spin_unlock_irqrestore(&c->vc.lock, flags); + synchronize_irq(c->irq); return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/dma/sh/rz-dmac.c +++ linux-oracle-6.5-6.5.0/drivers/dma/sh/rz-dmac.c @@ -9,6 +9,7 @@ * Copyright 2012 Javier Martin, Vista Silicon */ +#include #include #include #include @@ -145,8 +146,8 @@ #define CHCFG_REQD BIT(3) #define CHCFG_SEL(bits) ((bits) & 0x07) #define CHCFG_MEM_COPY (0x80400008) -#define CHCFG_FILL_DDS(a) (((a) << 16) & GENMASK(19, 16)) -#define CHCFG_FILL_SDS(a) (((a) << 12) & GENMASK(15, 12)) +#define CHCFG_FILL_DDS_MASK GENMASK(19, 16) +#define CHCFG_FILL_SDS_MASK GENMASK(15, 12) #define CHCFG_FILL_TM(a) (((a) & BIT(5)) << 22) #define CHCFG_FILL_AM(a) (((a) & GENMASK(4, 2)) << 6) #define CHCFG_FILL_LVL(a) (((a) & BIT(1)) << 5) @@ -607,13 +608,15 @@ if (val == CHCFG_DS_INVALID) return -EINVAL; - channel->chcfg |= CHCFG_FILL_DDS(val); + channel->chcfg &= ~CHCFG_FILL_DDS_MASK; + channel->chcfg |= FIELD_PREP(CHCFG_FILL_DDS_MASK, val); val = rz_dmac_ds_to_val_mapping(config->src_addr_width); if (val == CHCFG_DS_INVALID) return -EINVAL; - channel->chcfg |= CHCFG_FILL_SDS(val); + channel->chcfg &= ~CHCFG_FILL_SDS_MASK; + channel->chcfg |= FIELD_PREP(CHCFG_FILL_SDS_MASK, val); return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/dma/stm32-dma.c +++ linux-oracle-6.5-6.5.0/drivers/dma/stm32-dma.c @@ -1113,8 +1113,10 @@ chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_PFCTRL; /* Activate Double Buffer Mode if DMA triggers STM32 MDMA and more than 1 sg */ - if (chan->trig_mdma && sg_len > 1) + if (chan->trig_mdma && sg_len > 1) { chan->chan_reg.dma_scr |= STM32_DMA_SCR_DBM; + chan->chan_reg.dma_scr &= ~STM32_DMA_SCR_CT; + } for_each_sg(sgl, sg, sg_len, i) { ret = stm32_dma_set_xfer_param(chan, direction, &buswidth, @@ -1387,11 +1389,12 @@ residue = stm32_dma_get_remaining_bytes(chan); - if (chan->desc->cyclic && !stm32_dma_is_current_sg(chan)) { + if ((chan->desc->cyclic || chan->trig_mdma) && !stm32_dma_is_current_sg(chan)) { n_sg++; if (n_sg == chan->desc->num_sgs) n_sg = 0; - residue = sg_req->len; + if (!chan->trig_mdma) + residue = sg_req->len; } /* @@ -1401,7 +1404,7 @@ * residue = remaining bytes from NDTR + remaining * periods/sg to be transferred */ - if (!chan->desc->cyclic || n_sg != 0) + if ((!chan->desc->cyclic && !chan->trig_mdma) || n_sg != 0) for (i = n_sg; i < desc->num_sgs; i++) residue += desc->sg_req[i].len; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/dma/stm32-mdma.c +++ linux-oracle-6.5-6.5.0/drivers/dma/stm32-mdma.c @@ -778,8 +778,6 @@ /* Enable interrupts */ ccr &= ~STM32_MDMA_CCR_IRQ_MASK; ccr |= STM32_MDMA_CCR_TEIE | STM32_MDMA_CCR_CTCIE; - if (sg_len > 1) - ccr |= STM32_MDMA_CCR_BTIE; desc->ccr = ccr; return 0; @@ -1237,6 +1235,10 @@ unsigned long flags; u32 status, reg; + /* Transfer can be terminated */ + if (!chan->desc || (stm32_mdma_read(dmadev, STM32_MDMA_CCR(chan->id)) & STM32_MDMA_CCR_EN)) + return -EPERM; + hwdesc = chan->desc->node[chan->curr_hwdesc].hwdesc; spin_lock_irqsave(&chan->vchan.lock, flags); @@ -1317,21 +1319,35 @@ static size_t stm32_mdma_desc_residue(struct stm32_mdma_chan *chan, struct stm32_mdma_desc *desc, - u32 curr_hwdesc) + u32 curr_hwdesc, + struct dma_tx_state *state) { struct stm32_mdma_device *dmadev = stm32_mdma_get_dev(chan); struct stm32_mdma_hwdesc *hwdesc; - u32 cbndtr, residue, modulo, burst_size; + u32 cisr, clar, cbndtr, residue, modulo, burst_size; int i; + cisr = stm32_mdma_read(dmadev, STM32_MDMA_CISR(chan->id)); + residue = 0; - for (i = curr_hwdesc + 1; i < desc->count; i++) { + /* Get the next hw descriptor to process from current transfer */ + clar = stm32_mdma_read(dmadev, STM32_MDMA_CLAR(chan->id)); + for (i = desc->count - 1; i >= 0; i--) { hwdesc = desc->node[i].hwdesc; + + if (hwdesc->clar == clar) + break;/* Current transfer found, stop cumulating */ + + /* Cumulate residue of unprocessed hw descriptors */ residue += STM32_MDMA_CBNDTR_BNDT(hwdesc->cbndtr); } cbndtr = stm32_mdma_read(dmadev, STM32_MDMA_CBNDTR(chan->id)); residue += cbndtr & STM32_MDMA_CBNDTR_BNDT_MASK; + state->in_flight_bytes = 0; + if (chan->chan_config.m2m_hw && (cisr & STM32_MDMA_CISR_CRQA)) + state->in_flight_bytes = cbndtr & STM32_MDMA_CBNDTR_BNDT_MASK; + if (!chan->mem_burst) return residue; @@ -1361,11 +1377,10 @@ vdesc = vchan_find_desc(&chan->vchan, cookie); if (chan->desc && cookie == chan->desc->vdesc.tx.cookie) - residue = stm32_mdma_desc_residue(chan, chan->desc, - chan->curr_hwdesc); + residue = stm32_mdma_desc_residue(chan, chan->desc, chan->curr_hwdesc, state); else if (vdesc) - residue = stm32_mdma_desc_residue(chan, - to_stm32_mdma_desc(vdesc), 0); + residue = stm32_mdma_desc_residue(chan, to_stm32_mdma_desc(vdesc), 0, state); + dma_set_residue(state, residue); spin_unlock_irqrestore(&chan->vchan.lock, flags); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/firewire/core-device.c +++ linux-oracle-6.5-6.5.0/drivers/firewire/core-device.c @@ -1211,7 +1211,7 @@ * without actually having a link. */ create: - device = kzalloc(sizeof(*device), GFP_KERNEL); + device = kzalloc(sizeof(*device), GFP_ATOMIC); if (device == NULL) break; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/firewire/core-topology.c +++ linux-oracle-6.5-6.5.0/drivers/firewire/core-topology.c @@ -101,7 +101,7 @@ { struct fw_node *node; - node = kzalloc(struct_size(node, ports, port_count), GFP_KERNEL); + node = kzalloc(struct_size(node, ports, port_count), GFP_ATOMIC); if (node == NULL) return NULL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/firewire/sbp2.c +++ linux-oracle-6.5-6.5.0/drivers/firewire/sbp2.c @@ -81,7 +81,8 @@ * * - power condition * Set the power condition field in the START STOP UNIT commands sent by - * sd_mod on suspend, resume, and shutdown (if manage_start_stop is on). + * sd_mod on suspend, resume, and shutdown (if manage_system_start_stop or + * manage_runtime_start_stop is on). * Some disks need this to spin down or to resume properly. * * - override internal blacklist @@ -1517,8 +1518,10 @@ sdev->use_10_for_rw = 1; - if (sbp2_param_exclusive_login) - sdev->manage_start_stop = 1; + if (sbp2_param_exclusive_login) { + sdev->manage_system_start_stop = true; + sdev->manage_runtime_start_stop = true; + } if (sdev->type == TYPE_ROM) sdev->use_10_for_ms = 1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/firmware/arm_ffa/driver.c +++ linux-oracle-6.5-6.5.0/drivers/firmware/arm_ffa/driver.c @@ -397,6 +397,19 @@ return num_pages; } +static u8 ffa_memory_attributes_get(u32 func_id) +{ + /* + * For the memory lend or donate operation, if the receiver is a PE or + * a proxy endpoint, the owner/sender must not specify the attributes + */ + if (func_id == FFA_FN_NATIVE(MEM_LEND) || + func_id == FFA_MEM_LEND) + return 0; + + return FFA_MEM_NORMAL | FFA_MEM_WRITE_BACK | FFA_MEM_INNER_SHAREABLE; +} + static int ffa_setup_and_transmit(u32 func_id, void *buffer, u32 max_fragsize, struct ffa_mem_ops_args *args) @@ -413,8 +426,7 @@ mem_region->tag = args->tag; mem_region->flags = args->flags; mem_region->sender_id = drv_info->vm_id; - mem_region->attributes = FFA_MEM_NORMAL | FFA_MEM_WRITE_BACK | - FFA_MEM_INNER_SHAREABLE; + mem_region->attributes = ffa_memory_attributes_get(func_id); ep_mem_access = &mem_region->ep_mem_access[0]; for (idx = 0; idx < args->nattrs; idx++, ep_mem_access++) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/firmware/arm_scmi/perf.c +++ linux-oracle-6.5-6.5.0/drivers/firmware/arm_scmi/perf.c @@ -139,7 +139,7 @@ struct scmi_perf_info { u32 version; - int num_domains; + u16 num_domains; enum scmi_power_scale power_scale; u64 stats_addr; u32 stats_size; @@ -356,11 +356,26 @@ return ret; } +static inline struct perf_dom_info * +scmi_perf_domain_lookup(const struct scmi_protocol_handle *ph, u32 domain) +{ + struct scmi_perf_info *pi = ph->get_priv(ph); + + if (domain >= pi->num_domains) + return ERR_PTR(-EINVAL); + + return pi->dom_info + domain; +} + static int scmi_perf_limits_set(const struct scmi_protocol_handle *ph, u32 domain, u32 max_perf, u32 min_perf) { struct scmi_perf_info *pi = ph->get_priv(ph); - struct perf_dom_info *dom = pi->dom_info + domain; + struct perf_dom_info *dom; + + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return PTR_ERR(dom); if (PROTOCOL_REV_MAJOR(pi->version) >= 0x3 && !max_perf && !min_perf) return -EINVAL; @@ -408,8 +423,11 @@ static int scmi_perf_limits_get(const struct scmi_protocol_handle *ph, u32 domain, u32 *max_perf, u32 *min_perf) { - struct scmi_perf_info *pi = ph->get_priv(ph); - struct perf_dom_info *dom = pi->dom_info + domain; + struct perf_dom_info *dom; + + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return PTR_ERR(dom); if (dom->fc_info && dom->fc_info[PERF_FC_LIMIT].get_addr) { struct scmi_fc_info *fci = &dom->fc_info[PERF_FC_LIMIT]; @@ -449,8 +467,11 @@ static int scmi_perf_level_set(const struct scmi_protocol_handle *ph, u32 domain, u32 level, bool poll) { - struct scmi_perf_info *pi = ph->get_priv(ph); - struct perf_dom_info *dom = pi->dom_info + domain; + struct perf_dom_info *dom; + + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return PTR_ERR(dom); if (dom->fc_info && dom->fc_info[PERF_FC_LEVEL].set_addr) { struct scmi_fc_info *fci = &dom->fc_info[PERF_FC_LEVEL]; @@ -490,8 +511,11 @@ static int scmi_perf_level_get(const struct scmi_protocol_handle *ph, u32 domain, u32 *level, bool poll) { - struct scmi_perf_info *pi = ph->get_priv(ph); - struct perf_dom_info *dom = pi->dom_info + domain; + struct perf_dom_info *dom; + + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return PTR_ERR(dom); if (dom->fc_info && dom->fc_info[PERF_FC_LEVEL].get_addr) { *level = ioread32(dom->fc_info[PERF_FC_LEVEL].get_addr); @@ -574,13 +598,14 @@ unsigned long freq; struct scmi_opp *opp; struct perf_dom_info *dom; - struct scmi_perf_info *pi = ph->get_priv(ph); domain = scmi_dev_domain_id(dev); if (domain < 0) - return domain; + return -EINVAL; - dom = pi->dom_info + domain; + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return PTR_ERR(dom); for (opp = dom->opp, idx = 0; idx < dom->opp_count; idx++, opp++) { freq = opp->perf * dom->mult_factor; @@ -603,14 +628,17 @@ scmi_dvfs_transition_latency_get(const struct scmi_protocol_handle *ph, struct device *dev) { + int domain; struct perf_dom_info *dom; - struct scmi_perf_info *pi = ph->get_priv(ph); - int domain = scmi_dev_domain_id(dev); + domain = scmi_dev_domain_id(dev); if (domain < 0) - return domain; + return -EINVAL; + + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return PTR_ERR(dom); - dom = pi->dom_info + domain; /* uS to nS */ return dom->opp[dom->opp_count - 1].trans_latency_us * 1000; } @@ -618,8 +646,11 @@ static int scmi_dvfs_freq_set(const struct scmi_protocol_handle *ph, u32 domain, unsigned long freq, bool poll) { - struct scmi_perf_info *pi = ph->get_priv(ph); - struct perf_dom_info *dom = pi->dom_info + domain; + struct perf_dom_info *dom; + + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return PTR_ERR(dom); return scmi_perf_level_set(ph, domain, freq / dom->mult_factor, poll); } @@ -630,11 +661,14 @@ int ret; u32 level; struct scmi_perf_info *pi = ph->get_priv(ph); - struct perf_dom_info *dom = pi->dom_info + domain; ret = scmi_perf_level_get(ph, domain, &level, poll); - if (!ret) + if (!ret) { + struct perf_dom_info *dom = pi->dom_info + domain; + + /* Note domain is validated implicitly by scmi_perf_level_get */ *freq = level * dom->mult_factor; + } return ret; } @@ -643,15 +677,14 @@ u32 domain, unsigned long *freq, unsigned long *power) { - struct scmi_perf_info *pi = ph->get_priv(ph); struct perf_dom_info *dom; unsigned long opp_freq; int idx, ret = -EINVAL; struct scmi_opp *opp; - dom = pi->dom_info + domain; - if (!dom) - return -EIO; + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return PTR_ERR(dom); for (opp = dom->opp, idx = 0; idx < dom->opp_count; idx++, opp++) { opp_freq = opp->perf * dom->mult_factor; @@ -670,10 +703,16 @@ static bool scmi_fast_switch_possible(const struct scmi_protocol_handle *ph, struct device *dev) { + int domain; struct perf_dom_info *dom; - struct scmi_perf_info *pi = ph->get_priv(ph); - dom = pi->dom_info + scmi_dev_domain_id(dev); + domain = scmi_dev_domain_id(dev); + if (domain < 0) + return false; + + dom = scmi_perf_domain_lookup(ph, domain); + if (IS_ERR(dom)) + return false; return dom->fc_info && dom->fc_info[PERF_FC_LEVEL].set_addr; } @@ -819,6 +858,8 @@ if (!pinfo) return -ENOMEM; + pinfo->version = version; + ret = scmi_perf_attributes_get(ph, pinfo); if (ret) return ret; @@ -838,8 +879,6 @@ scmi_perf_domain_init_fc(ph, domain, &dom->fc_info); } - pinfo->version = version; - return ph->set_priv(ph, pinfo); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/firmware/imx/imx-dsp.c +++ linux-oracle-6.5-6.5.0/drivers/firmware/imx/imx-dsp.c @@ -115,6 +115,7 @@ dsp_chan->idx = i % 2; dsp_chan->ch = mbox_request_channel_byname(cl, chan_name); if (IS_ERR(dsp_chan->ch)) { + kfree(dsp_chan->name); ret = PTR_ERR(dsp_chan->ch); if (ret != -EPROBE_DEFER) dev_err(dev, "Failed to request mbox chan %s ret %d\n", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpio/gpio-aspeed.c +++ linux-oracle-6.5-6.5.0/drivers/gpio/gpio-aspeed.c @@ -973,7 +973,7 @@ else if (param == PIN_CONFIG_BIAS_DISABLE || param == PIN_CONFIG_BIAS_PULL_DOWN || param == PIN_CONFIG_DRIVE_STRENGTH) - return pinctrl_gpio_set_config(offset, config); + return pinctrl_gpio_set_config(chip->base + offset, config); else if (param == PIN_CONFIG_DRIVE_OPEN_DRAIN || param == PIN_CONFIG_DRIVE_OPEN_SOURCE) /* Return -ENOTSUPP to trigger emulation, as per datasheet */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpio/gpio-pmic-eic-sprd.c +++ linux-oracle-6.5-6.5.0/drivers/gpio/gpio-pmic-eic-sprd.c @@ -352,6 +352,7 @@ pmic_eic->chip.set_config = sprd_pmic_eic_set_config; pmic_eic->chip.set = sprd_pmic_eic_set; pmic_eic->chip.get = sprd_pmic_eic_get; + pmic_eic->chip.can_sleep = true; irq = &pmic_eic->chip.irq; gpio_irq_chip_set_chip(irq, &pmic_eic_irq_chip); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpio/gpio-pxa.c +++ linux-oracle-6.5-6.5.0/drivers/gpio/gpio-pxa.c @@ -238,6 +238,7 @@ switch (gpio_type) { case PXA3XX_GPIO: case MMP2_GPIO: + case MMP_GPIO: return false; default: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpio/gpio-tb10x.c +++ linux-oracle-6.5-6.5.0/drivers/gpio/gpio-tb10x.c @@ -195,7 +195,7 @@ handle_edge_irq, IRQ_NOREQUEST, IRQ_NOPROBE, IRQ_GC_INIT_MASK_CACHE); if (ret) - return ret; + goto err_remove_domain; gc = tb10x_gpio->domain->gc->gc[0]; gc->reg_base = tb10x_gpio->base; @@ -209,6 +209,10 @@ } return 0; + +err_remove_domain: + irq_domain_remove(tb10x_gpio->domain); + return ret; } static int tb10x_gpio_remove(struct platform_device *pdev) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu.h @@ -1296,7 +1296,6 @@ void amdgpu_device_pci_config_reset(struct amdgpu_device *adev); int amdgpu_device_pci_reset(struct amdgpu_device *adev); bool amdgpu_device_need_post(struct amdgpu_device *adev); -bool amdgpu_sg_display_supported(struct amdgpu_device *adev); bool amdgpu_device_pcie_dynamic_switching_supported(void); bool amdgpu_device_should_use_aspm(struct amdgpu_device *adev); bool amdgpu_device_aspm_support_quirk(void); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c @@ -492,7 +492,7 @@ cu_info->cu_active_number = acu_info.number; cu_info->cu_ao_mask = acu_info.ao_cu_mask; memcpy(&cu_info->cu_bitmap[0], &acu_info.bitmap[0], - sizeof(acu_info.bitmap)); + sizeof(cu_info->cu_bitmap)); cu_info->num_shader_engines = adev->gfx.config.max_shader_engines; cu_info->num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se; cu_info->num_cu_per_sh = adev->gfx.config.max_cu_per_sh; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -127,7 +127,6 @@ struct drm_gem_object *gobj; struct amdgpu_bo *bo; unsigned long size; - int r; gobj = drm_gem_object_lookup(p->filp, data->handle); if (gobj == NULL) @@ -139,23 +138,14 @@ drm_gem_object_put(gobj); size = amdgpu_bo_size(bo); - if (size != PAGE_SIZE || (data->offset + 8) > size) { - r = -EINVAL; - goto error_unref; - } - - if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) { - r = -EINVAL; - goto error_unref; - } + if (size != PAGE_SIZE || data->offset > (size - 8)) + return -EINVAL; - *offset = data->offset; + if (amdgpu_ttm_tt_get_usermm(bo->tbo.ttm)) + return -EINVAL; + *offset = data->offset; return 0; - -error_unref: - amdgpu_bo_unref(&bo); - return r; } static int amdgpu_cs_p1_bo_handles(struct amdgpu_cs_parser *p, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c @@ -38,6 +38,8 @@ #include #include #include +#include +#include #include #include #include @@ -529,11 +531,29 @@ return true; } +static int amdgpu_dirtyfb(struct drm_framebuffer *fb, struct drm_file *file, + unsigned int flags, unsigned int color, + struct drm_clip_rect *clips, unsigned int num_clips) +{ + + if (file) + return -ENOSYS; + + return drm_atomic_helper_dirtyfb(fb, file, flags, color, clips, + num_clips); +} + static const struct drm_framebuffer_funcs amdgpu_fb_funcs = { .destroy = drm_gem_fb_destroy, .create_handle = drm_gem_fb_create_handle, }; +static const struct drm_framebuffer_funcs amdgpu_fb_funcs_atomic = { + .destroy = drm_gem_fb_destroy, + .create_handle = drm_gem_fb_create_handle, + .dirty = amdgpu_dirtyfb +}; + uint32_t amdgpu_display_supported_domains(struct amdgpu_device *adev, uint64_t bo_flags) { @@ -1136,7 +1156,11 @@ if (ret) goto err; - ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs); + if (drm_drv_uses_atomic_modeset(dev)) + ret = drm_framebuffer_init(dev, &rfb->base, + &amdgpu_fb_funcs_atomic); + else + ret = drm_framebuffer_init(dev, &rfb->base, &amdgpu_fb_funcs); if (ret) goto err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c @@ -169,6 +169,7 @@ csum += pia[size - 1]; if (csum) { DRM_ERROR("Bad Product Info Area checksum: 0x%02x", csum); + kfree(pia); return -EIO; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c @@ -963,6 +963,7 @@ list_for_each_entry(file, &dev->filelist, lhead) { struct task_struct *task; struct drm_gem_object *gobj; + struct pid *pid; int id; /* @@ -972,8 +973,9 @@ * Therefore, we need to protect this ->comm access using RCU. */ rcu_read_lock(); - task = pid_task(file->pid, PIDTYPE_TGID); - seq_printf(m, "pid %8d command %s:\n", pid_nr(file->pid), + pid = rcu_dereference(file->pid); + task = pid_task(pid, PIDTYPE_TGID); + seq_printf(m, "pid %8d command %s:\n", pid_nr(pid), task ? task->comm : ""); rcu_read_unlock(); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h @@ -43,6 +43,7 @@ #define AMDGPU_GFX_LBPW_DISABLED_MODE 0x00000008L #define AMDGPU_MAX_GC_INSTANCES 8 +#define KGD_MAX_QUEUES 128 #define AMDGPU_MAX_GFX_QUEUES KGD_MAX_QUEUES #define AMDGPU_MAX_COMPUTE_QUEUES KGD_MAX_QUEUES @@ -254,7 +255,7 @@ uint32_t number; uint32_t ao_cu_mask; uint32_t ao_cu_bitmap[4][4]; - uint32_t bitmap[4][4]; + uint32_t bitmap[AMDGPU_MAX_GC_INSTANCES][4][4]; }; struct amdgpu_gfx_ras { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.c @@ -138,6 +138,7 @@ /** * amdgpu_ih_ring_write - write IV to the ring buffer * + * @adev: amdgpu_device pointer * @ih: ih ring to write to * @iv: the iv to write * @num_dw: size of the iv in dw @@ -145,8 +146,8 @@ * Writes an IV to the ring buffer using the CPU and increment the wptr. * Used for testing and delegating IVs to a software ring. */ -void amdgpu_ih_ring_write(struct amdgpu_ih_ring *ih, const uint32_t *iv, - unsigned int num_dw) +void amdgpu_ih_ring_write(struct amdgpu_device *adev, struct amdgpu_ih_ring *ih, + const uint32_t *iv, unsigned int num_dw) { uint32_t wptr = le32_to_cpu(*ih->wptr_cpu) >> 2; unsigned int i; @@ -161,6 +162,9 @@ if (wptr != READ_ONCE(ih->rptr)) { wmb(); WRITE_ONCE(*ih->wptr_cpu, cpu_to_le32(wptr)); + } else if (adev->irq.retry_cam_enabled) { + dev_warn_once(adev->dev, "IH soft ring buffer overflow 0x%X, 0x%X\n", + wptr, ih->rptr); } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ih.h @@ -27,6 +27,9 @@ /* Maximum number of IVs processed at once */ #define AMDGPU_IH_MAX_NUM_IVS 32 +#define IH_RING_SIZE (256 * 1024) +#define IH_SW_RING_SIZE (8 * 1024) /* enough for 256 CAM entries */ + struct amdgpu_device; struct amdgpu_iv_entry; @@ -97,8 +100,8 @@ int amdgpu_ih_ring_init(struct amdgpu_device *adev, struct amdgpu_ih_ring *ih, unsigned ring_size, bool use_bus_addr); void amdgpu_ih_ring_fini(struct amdgpu_device *adev, struct amdgpu_ih_ring *ih); -void amdgpu_ih_ring_write(struct amdgpu_ih_ring *ih, const uint32_t *iv, - unsigned int num_dw); +void amdgpu_ih_ring_write(struct amdgpu_device *adev, struct amdgpu_ih_ring *ih, + const uint32_t *iv, unsigned int num_dw); int amdgpu_ih_wait_on_checkpoint_process_ts(struct amdgpu_device *adev, struct amdgpu_ih_ring *ih); int amdgpu_ih_process(struct amdgpu_device *adev, struct amdgpu_ih_ring *ih); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c @@ -493,7 +493,7 @@ struct amdgpu_iv_entry *entry, unsigned int num_dw) { - amdgpu_ih_ring_write(&adev->irq.ih_soft, entry->iv_entry, num_dw); + amdgpu_ih_ring_write(adev, &adev->irq.ih_soft, entry->iv_entry, num_dw); schedule_work(&adev->irq.ih_soft_work); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_object.h @@ -250,7 +250,7 @@ struct amdgpu_device *adev = amdgpu_ttm_adev(bo->tbo.bdev); struct amdgpu_res_cursor cursor; - if (bo->tbo.resource->mem_type != TTM_PL_VRAM) + if (!bo->tbo.resource || bo->tbo.resource->mem_type != TTM_PL_VRAM) return false; amdgpu_res_first(bo->tbo.resource, 0, amdgpu_bo_size(bo), &cursor); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c @@ -1061,7 +1061,8 @@ info->ce_count = obj->err_data.ce_count; if (err_data.ce_count) { - if (adev->smuio.funcs && + if (!adev->aid_mask && + adev->smuio.funcs && adev->smuio.funcs->get_socket_id && adev->smuio.funcs->get_die_id) { dev_info(adev->dev, "socket: %d, die: %d " @@ -1081,7 +1082,8 @@ } } if (err_data.ue_count) { - if (adev->smuio.funcs && + if (!adev->aid_mask && + adev->smuio.funcs && adev->smuio.funcs->get_socket_id && adev->smuio.funcs->get_die_id) { dev_info(adev->dev, "socket: %d, die: %d " only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_ring_mux.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ring_mux.h @@ -56,6 +56,15 @@ AMDGPU_MUX_OFFSET_TYPE_CE, }; +enum ib_complete_status { + /* IB not started/reset value, default value. */ + IB_COMPLETION_STATUS_DEFAULT = 0, + /* IB preempted, started but not completed. */ + IB_COMPLETION_STATUS_PREEMPTED = 1, + /* IB completed. */ + IB_COMPLETION_STATUS_COMPLETED = 2, +}; + struct amdgpu_ring_mux { struct amdgpu_ring *real_ring; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_sa.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/amdgpu_sa.c @@ -81,7 +81,7 @@ unsigned int size) { struct drm_suballoc *sa = drm_suballoc_new(&sa_manager->base, size, - GFP_KERNEL, true, 0); + GFP_KERNEL, false, 0); if (IS_ERR(sa)) { *sa_bo = NULL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/aqua_vanjaram_reg_init.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/aqua_vanjaram_reg_init.c @@ -134,7 +134,7 @@ for (i = 0; i < AMDGPU_MAX_RINGS; i++) { ring = adev->rings[i]; - if (!ring || !ring->sched.ready) + if (!ring || !ring->sched.ready || ring->no_scheduler) continue; aqua_vanjaram_xcp_gpu_sched_update(adev, ring, ring->xcp_id); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c @@ -9448,7 +9448,7 @@ gfx_v10_0_set_user_wgp_inactive_bitmap_per_sh( adev, disable_masks[i * 2 + j]); bitmap = gfx_v10_0_get_cu_active_bitmap_per_sh(adev); - cu_info->bitmap[i][j] = bitmap; + cu_info->bitmap[0][i][j] = bitmap; for (k = 0; k < adev->gfx.config.max_cu_per_sh; k++) { if (bitmap & mask) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c @@ -6394,7 +6394,7 @@ * SE6: {SH0,SH1} --> {bitmap[2][2], bitmap[2][3]} * SE7: {SH0,SH1} --> {bitmap[3][2], bitmap[3][3]} */ - cu_info->bitmap[i % 4][j + (i / 4) * 2] = bitmap; + cu_info->bitmap[0][i % 4][j + (i / 4) * 2] = bitmap; for (k = 0; k < adev->gfx.config.max_cu_per_sh; k++) { if (bitmap & mask) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c @@ -3577,7 +3577,7 @@ gfx_v6_0_set_user_cu_inactive_bitmap( adev, disable_masks[i * 2 + j]); bitmap = gfx_v6_0_get_cu_enabled(adev); - cu_info->bitmap[i][j] = bitmap; + cu_info->bitmap[0][i][j] = bitmap; for (k = 0; k < adev->gfx.config.max_cu_per_sh; k++) { if (bitmap & mask) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c @@ -5122,7 +5122,7 @@ gfx_v7_0_set_user_cu_inactive_bitmap( adev, disable_masks[i * 2 + j]); bitmap = gfx_v7_0_get_cu_active_bitmap(adev); - cu_info->bitmap[i][j] = bitmap; + cu_info->bitmap[0][i][j] = bitmap; for (k = 0; k < adev->gfx.config.max_cu_per_sh; k ++) { if (bitmap & mask) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c @@ -7121,7 +7121,7 @@ gfx_v8_0_set_user_cu_inactive_bitmap( adev, disable_masks[i * 2 + j]); bitmap = gfx_v8_0_get_cu_active_bitmap(adev); - cu_info->bitmap[i][j] = bitmap; + cu_info->bitmap[0][i][j] = bitmap; for (k = 0; k < adev->gfx.config.max_cu_per_sh; k ++) { if (bitmap & mask) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c @@ -1497,7 +1497,7 @@ amdgpu_gfx_select_se_sh(adev, i, j, 0xffffffff, 0); for (k = 0; k < adev->gfx.config.max_cu_per_sh; k ++) { - if (cu_info->bitmap[i][j] & mask) { + if (cu_info->bitmap[0][i][j] & mask) { if (counter == pg_always_on_cu_num) WREG32_SOC15(GC, 0, mmRLC_PG_ALWAYS_ON_CU_MASK, cu_bitmap); if (counter < always_on_cu_num) @@ -5230,6 +5230,9 @@ de_payload_cpu_addr = adev->virt.csa_cpu_addr + payload_offset; } + ((struct v9_de_ib_state *)de_payload_cpu_addr)->ib_completion_status = + IB_COMPLETION_STATUS_PREEMPTED; + if (offset + (payload_size >> 2) <= ring->buf_mask + 1) { memcpy((void *)&ring->ring[offset], de_payload_cpu_addr, payload_size); } else { @@ -7234,7 +7237,7 @@ * SE6,SH0 --> bitmap[2][1] * SE7,SH0 --> bitmap[3][1] */ - cu_info->bitmap[i % 4][j + i / 4] = bitmap; + cu_info->bitmap[0][i % 4][j + i / 4] = bitmap; for (k = 0; k < adev->gfx.config.max_cu_per_sh; k ++) { if (bitmap & mask) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/gfx_v9_4_3.c @@ -4228,7 +4228,7 @@ } static void gfx_v9_4_3_set_user_cu_inactive_bitmap(struct amdgpu_device *adev, - u32 bitmap) + u32 bitmap, int xcc_id) { u32 data; @@ -4238,15 +4238,15 @@ data = bitmap << GC_USER_SHADER_ARRAY_CONFIG__INACTIVE_CUS__SHIFT; data &= GC_USER_SHADER_ARRAY_CONFIG__INACTIVE_CUS_MASK; - WREG32_SOC15(GC, GET_INST(GC, 0), regGC_USER_SHADER_ARRAY_CONFIG, data); + WREG32_SOC15(GC, GET_INST(GC, xcc_id), regGC_USER_SHADER_ARRAY_CONFIG, data); } -static u32 gfx_v9_4_3_get_cu_active_bitmap(struct amdgpu_device *adev) +static u32 gfx_v9_4_3_get_cu_active_bitmap(struct amdgpu_device *adev, int xcc_id) { u32 data, mask; - data = RREG32_SOC15(GC, GET_INST(GC, 0), regCC_GC_SHADER_ARRAY_CONFIG); - data |= RREG32_SOC15(GC, GET_INST(GC, 0), regGC_USER_SHADER_ARRAY_CONFIG); + data = RREG32_SOC15(GC, GET_INST(GC, xcc_id), regCC_GC_SHADER_ARRAY_CONFIG); + data |= RREG32_SOC15(GC, GET_INST(GC, xcc_id), regGC_USER_SHADER_ARRAY_CONFIG); data &= CC_GC_SHADER_ARRAY_CONFIG__INACTIVE_CUS_MASK; data >>= CC_GC_SHADER_ARRAY_CONFIG__INACTIVE_CUS__SHIFT; @@ -4259,7 +4259,7 @@ static int gfx_v9_4_3_get_cu_info(struct amdgpu_device *adev, struct amdgpu_cu_info *cu_info) { - int i, j, k, counter, active_cu_number = 0; + int i, j, k, counter, xcc_id, active_cu_number = 0; u32 mask, bitmap, ao_bitmap, ao_cu_mask = 0; unsigned disable_masks[4 * 4]; @@ -4278,46 +4278,38 @@ adev->gfx.config.max_sh_per_se); mutex_lock(&adev->grbm_idx_mutex); - for (i = 0; i < adev->gfx.config.max_shader_engines; i++) { - for (j = 0; j < adev->gfx.config.max_sh_per_se; j++) { - mask = 1; - ao_bitmap = 0; - counter = 0; - gfx_v9_4_3_xcc_select_se_sh(adev, i, j, 0xffffffff, 0); - gfx_v9_4_3_set_user_cu_inactive_bitmap( - adev, disable_masks[i * adev->gfx.config.max_sh_per_se + j]); - bitmap = gfx_v9_4_3_get_cu_active_bitmap(adev); - - /* - * The bitmap(and ao_cu_bitmap) in cu_info structure is - * 4x4 size array, and it's usually suitable for Vega - * ASICs which has 4*2 SE/SH layout. - * But for Arcturus, SE/SH layout is changed to 8*1. - * To mostly reduce the impact, we make it compatible - * with current bitmap array as below: - * SE4,SH0 --> bitmap[0][1] - * SE5,SH0 --> bitmap[1][1] - * SE6,SH0 --> bitmap[2][1] - * SE7,SH0 --> bitmap[3][1] - */ - cu_info->bitmap[i % 4][j + i / 4] = bitmap; - - for (k = 0; k < adev->gfx.config.max_cu_per_sh; k++) { - if (bitmap & mask) { - if (counter < adev->gfx.config.max_cu_per_sh) - ao_bitmap |= mask; - counter++; + for (xcc_id = 0; xcc_id < NUM_XCC(adev->gfx.xcc_mask); xcc_id++) { + for (i = 0; i < adev->gfx.config.max_shader_engines; i++) { + for (j = 0; j < adev->gfx.config.max_sh_per_se; j++) { + mask = 1; + ao_bitmap = 0; + counter = 0; + gfx_v9_4_3_xcc_select_se_sh(adev, i, j, 0xffffffff, xcc_id); + gfx_v9_4_3_set_user_cu_inactive_bitmap( + adev, + disable_masks[i * adev->gfx.config.max_sh_per_se + j], + xcc_id); + bitmap = gfx_v9_4_3_get_cu_active_bitmap(adev, xcc_id); + + cu_info->bitmap[xcc_id][i][j] = bitmap; + + for (k = 0; k < adev->gfx.config.max_cu_per_sh; k++) { + if (bitmap & mask) { + if (counter < adev->gfx.config.max_cu_per_sh) + ao_bitmap |= mask; + counter++; + } + mask <<= 1; } - mask <<= 1; + active_cu_number += counter; + if (i < 2 && j < 2) + ao_cu_mask |= (ao_bitmap << (i * 16 + j * 8)); + cu_info->ao_cu_bitmap[i][j] = ao_bitmap; } - active_cu_number += counter; - if (i < 2 && j < 2) - ao_cu_mask |= (ao_bitmap << (i * 16 + j * 8)); - cu_info->ao_cu_bitmap[i % 4][j + i / 4] = ao_bitmap; } + gfx_v9_4_3_xcc_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff, + xcc_id); } - gfx_v9_4_3_xcc_select_se_sh(adev, 0xffffffff, 0xffffffff, 0xffffffff, - 0); mutex_unlock(&adev->grbm_idx_mutex); cu_info->number = active_cu_number; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/ih_v6_0.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/ih_v6_0.c @@ -535,7 +535,7 @@ * use bus address for ih ring by psp bl */ use_bus_addr = (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP) ? false : true; - r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 256 * 1024, use_bus_addr); + r = amdgpu_ih_ring_init(adev, &adev->irq.ih, IH_RING_SIZE, use_bus_addr); if (r) return r; @@ -548,7 +548,7 @@ /* initialize ih control register offset */ ih_v6_0_init_register_offset(adev); - r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, PAGE_SIZE, true); + r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, IH_SW_RING_SIZE, true); if (r) return r; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/navi10_ih.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/navi10_ih.c @@ -565,7 +565,7 @@ use_bus_addr = false; else use_bus_addr = true; - r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 256 * 1024, use_bus_addr); + r = amdgpu_ih_ring_init(adev, &adev->irq.ih, IH_RING_SIZE, use_bus_addr); if (r) return r; @@ -578,7 +578,7 @@ /* initialize ih control registers offset */ navi10_ih_init_register_offset(adev); - r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, PAGE_SIZE, true); + r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, IH_SW_RING_SIZE, true); if (r) return r; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/nbio_v4_3.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/nbio_v4_3.c @@ -345,6 +345,9 @@ data &= ~RCC_DEV0_EPF2_STRAP2__STRAP_NO_SOFT_RESET_DEV0_F2_MASK; WREG32_SOC15(NBIO, 0, regRCC_DEV0_EPF2_STRAP2, data); } + if (amdgpu_sriov_vf(adev)) + adev->rmmio_remap.reg_offset = SOC15_REG_OFFSET(NBIO, 0, + regBIF_BX_DEV0_EPF0_VF0_HDP_MEM_COHERENCY_FLUSH_CNTL) << 2; } static u32 nbio_v4_3_get_rom_offset(struct amdgpu_device *adev) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/soc21.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/soc21.c @@ -786,7 +786,7 @@ * for the purpose of expose those registers * to process space */ - if (adev->nbio.funcs->remap_hdp_registers) + if (adev->nbio.funcs->remap_hdp_registers && !amdgpu_sriov_vf(adev)) adev->nbio.funcs->remap_hdp_registers(adev); /* enable the doorbell aperture */ adev->nbio.funcs->enable_doorbell_aperture(adev, true); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/vega10_ih.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/vega10_ih.c @@ -485,7 +485,7 @@ if (r) return r; - r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 256 * 1024, true); + r = amdgpu_ih_ring_init(adev, &adev->irq.ih, IH_RING_SIZE, true); if (r) return r; @@ -510,7 +510,7 @@ /* initialize ih control registers offset */ vega10_ih_init_register_offset(adev); - r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, PAGE_SIZE, true); + r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, IH_SW_RING_SIZE, true); if (r) return r; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdgpu/vega20_ih.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdgpu/vega20_ih.c @@ -539,7 +539,7 @@ (adev->ip_versions[OSSSYS_HWIP][0] == IP_VERSION(4, 4, 2))) use_bus_addr = false; - r = amdgpu_ih_ring_init(adev, &adev->irq.ih, 256 * 1024, use_bus_addr); + r = amdgpu_ih_ring_init(adev, &adev->irq.ih, IH_RING_SIZE, use_bus_addr); if (r) return r; @@ -565,7 +565,7 @@ /* initialize ih control registers offset */ vega20_ih_init_register_offset(adev); - r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, PAGE_SIZE, use_bus_addr); + r = amdgpu_ih_ring_init(adev, &adev->irq.ih_soft, IH_SW_RING_SIZE, use_bus_addr); if (r) return r; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_crat.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_crat.c @@ -2154,7 +2154,8 @@ amdgpu_amdkfd_get_cu_info(kdev->adev, &cu_info); cu->num_simd_per_cu = cu_info.simd_per_cu; - cu->num_simd_cores = cu_info.simd_per_cu * cu_info.cu_active_number; + cu->num_simd_cores = cu_info.simd_per_cu * + (cu_info.cu_active_number / kdev->kfd->num_nodes); cu->max_waves_simd = cu_info.max_waves_per_simd; cu->wave_front_size = cu_info.wave_front_size; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_crat.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_crat.h @@ -79,6 +79,10 @@ #define CRAT_SUBTYPE_IOLINK_AFFINITY 5 #define CRAT_SUBTYPE_MAX 6 +/* + * Do not change the value of CRAT_SIBLINGMAP_SIZE from 32 + * as it breaks the ABI. + */ #define CRAT_SIBLINGMAP_SIZE 32 /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c @@ -216,7 +216,7 @@ if (q->wptr_bo) { wptr_addr_off = (uint64_t)q->properties.write_ptr & (PAGE_SIZE - 1); - queue_input.wptr_mc_addr = ((uint64_t)q->wptr_bo->tbo.resource->start << PAGE_SHIFT) + wptr_addr_off; + queue_input.wptr_mc_addr = amdgpu_bo_gpu_offset(q->wptr_bo) + wptr_addr_off; } queue_input.is_kfd_process = 1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c @@ -97,18 +97,22 @@ void mqd_symmetrically_map_cu_mask(struct mqd_manager *mm, const uint32_t *cu_mask, uint32_t cu_mask_count, - uint32_t *se_mask) + uint32_t *se_mask, uint32_t inst) { struct kfd_cu_info cu_info; uint32_t cu_per_sh[KFD_MAX_NUM_SE][KFD_MAX_NUM_SH_PER_SE] = {0}; bool wgp_mode_req = KFD_GC_VERSION(mm->dev) >= IP_VERSION(10, 0, 0); uint32_t en_mask = wgp_mode_req ? 0x3 : 0x1; - int i, se, sh, cu, cu_bitmap_sh_mul, inc = wgp_mode_req ? 2 : 1; + int i, se, sh, cu, cu_bitmap_sh_mul, cu_inc = wgp_mode_req ? 2 : 1; + uint32_t cu_active_per_node; + int inc = cu_inc * NUM_XCC(mm->dev->xcc_mask); + int xcc_inst = inst + ffs(mm->dev->xcc_mask) - 1; amdgpu_amdkfd_get_cu_info(mm->dev->adev, &cu_info); - if (cu_mask_count > cu_info.cu_active_number) - cu_mask_count = cu_info.cu_active_number; + cu_active_per_node = cu_info.cu_active_number / mm->dev->kfd->num_nodes; + if (cu_mask_count > cu_active_per_node) + cu_mask_count = cu_active_per_node; /* Exceeding these bounds corrupts the stack and indicates a coding error. * Returning with no CU's enabled will hang the queue, which should be @@ -141,7 +145,8 @@ for (se = 0; se < cu_info.num_shader_engines; se++) for (sh = 0; sh < cu_info.num_shader_arrays_per_engine; sh++) cu_per_sh[se][sh] = hweight32( - cu_info.cu_bitmap[se % 4][sh + (se / 4) * cu_bitmap_sh_mul]); + cu_info.cu_bitmap[xcc_inst][se % 4][sh + (se / 4) * + cu_bitmap_sh_mul]); /* Symmetrically map cu_mask to all SEs & SHs: * se_mask programs up to 2 SH in the upper and lower 16 bits. @@ -164,20 +169,33 @@ * cu_mask[0] bit8 -> se_mask[0] bit1 (SE0,SH0,CU1) * ... * + * For GFX 9.4.3, the following code only looks at a + * subset of the cu_mask corresponding to the inst parameter. + * If we have n XCCs under one GPU node + * cu_mask[0] bit0 -> XCC0 se_mask[0] bit0 (XCC0,SE0,SH0,CU0) + * cu_mask[0] bit1 -> XCC1 se_mask[0] bit0 (XCC1,SE0,SH0,CU0) + * .. + * cu_mask[0] bitn -> XCCn se_mask[0] bit0 (XCCn,SE0,SH0,CU0) + * cu_mask[0] bit n+1 -> XCC0 se_mask[1] bit0 (XCC0,SE1,SH0,CU0) + * + * For example, if there are 6 XCCs under 1 KFD node, this code + * running for each inst, will look at the bits as: + * inst, inst + 6, inst + 12... + * * First ensure all CUs are disabled, then enable user specified CUs. */ for (i = 0; i < cu_info.num_shader_engines; i++) se_mask[i] = 0; - i = 0; - for (cu = 0; cu < 16; cu += inc) { + i = inst; + for (cu = 0; cu < 16; cu += cu_inc) { for (sh = 0; sh < cu_info.num_shader_arrays_per_engine; sh++) { for (se = 0; se < cu_info.num_shader_engines; se++) { if (cu_per_sh[se][sh] > cu) { if (cu_mask[i / 32] & (en_mask << (i % 32))) se_mask[se] |= en_mask << (cu + sh * 16); i += inc; - if (i == cu_mask_count) + if (i >= cu_mask_count) return; } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.h @@ -138,7 +138,7 @@ void mqd_symmetrically_map_cu_mask(struct mqd_manager *mm, const uint32_t *cu_mask, uint32_t cu_mask_count, - uint32_t *se_mask); + uint32_t *se_mask, uint32_t inst); int kfd_hiq_load_mqd_kiq(struct mqd_manager *mm, void *mqd, uint32_t pipe_id, uint32_t queue_id, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_cik.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_cik.c @@ -52,7 +52,7 @@ return; mqd_symmetrically_map_cu_mask(mm, - minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask); + minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask, 0); m = get_mqd(mqd); m->compute_static_thread_mgmt_se0 = se_mask[0]; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v10.c @@ -52,7 +52,7 @@ return; mqd_symmetrically_map_cu_mask(mm, - minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask); + minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask, 0); m = get_mqd(mqd); m->compute_static_thread_mgmt_se0 = se_mask[0]; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v11.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v11.c @@ -71,7 +71,7 @@ } mqd_symmetrically_map_cu_mask(mm, - minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask); + minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask, 0); m->compute_static_thread_mgmt_se0 = se_mask[0]; m->compute_static_thread_mgmt_se1 = se_mask[1]; @@ -321,6 +321,43 @@ return 0; } +static void checkpoint_mqd(struct mqd_manager *mm, void *mqd, void *mqd_dst, void *ctl_stack_dst) +{ + struct v11_compute_mqd *m; + + m = get_mqd(mqd); + + memcpy(mqd_dst, m, sizeof(struct v11_compute_mqd)); +} + +static void restore_mqd(struct mqd_manager *mm, void **mqd, + struct kfd_mem_obj *mqd_mem_obj, uint64_t *gart_addr, + struct queue_properties *qp, + const void *mqd_src, + const void *ctl_stack_src, const u32 ctl_stack_size) +{ + uint64_t addr; + struct v11_compute_mqd *m; + + m = (struct v11_compute_mqd *) mqd_mem_obj->cpu_ptr; + addr = mqd_mem_obj->gpu_addr; + + memcpy(m, mqd_src, sizeof(*m)); + + *mqd = m; + if (gart_addr) + *gart_addr = addr; + + m->cp_hqd_pq_doorbell_control = + qp->doorbell_off << + CP_HQD_PQ_DOORBELL_CONTROL__DOORBELL_OFFSET__SHIFT; + pr_debug("cp_hqd_pq_doorbell_control 0x%x\n", + m->cp_hqd_pq_doorbell_control); + + qp->is_active = 0; +} + + static void init_mqd_hiq(struct mqd_manager *mm, void **mqd, struct kfd_mem_obj *mqd_mem_obj, uint64_t *gart_addr, struct queue_properties *q) @@ -437,6 +474,9 @@ mqd->is_occupied = kfd_is_occupied_cp; mqd->mqd_size = sizeof(struct v11_compute_mqd); mqd->get_wave_state = get_wave_state; + mqd->mqd_stride = kfd_mqd_stride; + mqd->checkpoint_mqd = checkpoint_mqd; + mqd->restore_mqd = restore_mqd; #if defined(CONFIG_DEBUG_FS) mqd->debugfs_show_mqd = debugfs_show_mqd; #endif @@ -452,6 +492,7 @@ mqd->destroy_mqd = kfd_destroy_mqd_cp; mqd->is_occupied = kfd_is_occupied_cp; mqd->mqd_size = sizeof(struct v11_compute_mqd); + mqd->mqd_stride = kfd_mqd_stride; #if defined(CONFIG_DEBUG_FS) mqd->debugfs_show_mqd = debugfs_show_mqd; #endif @@ -480,7 +521,10 @@ mqd->update_mqd = update_mqd_sdma; mqd->destroy_mqd = kfd_destroy_mqd_sdma; mqd->is_occupied = kfd_is_occupied_sdma; + mqd->checkpoint_mqd = checkpoint_mqd; + mqd->restore_mqd = restore_mqd; mqd->mqd_size = sizeof(struct v11_sdma_mqd); + mqd->mqd_stride = kfd_mqd_stride; #if defined(CONFIG_DEBUG_FS) mqd->debugfs_show_mqd = debugfs_show_mqd_sdma; #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c @@ -60,7 +60,7 @@ } static void update_cu_mask(struct mqd_manager *mm, void *mqd, - struct mqd_update_info *minfo) + struct mqd_update_info *minfo, uint32_t inst) { struct v9_mqd *m; uint32_t se_mask[KFD_MAX_NUM_SE] = {0}; @@ -69,27 +69,36 @@ return; mqd_symmetrically_map_cu_mask(mm, - minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask); + minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask, inst); m = get_mqd(mqd); + m->compute_static_thread_mgmt_se0 = se_mask[0]; m->compute_static_thread_mgmt_se1 = se_mask[1]; m->compute_static_thread_mgmt_se2 = se_mask[2]; m->compute_static_thread_mgmt_se3 = se_mask[3]; - m->compute_static_thread_mgmt_se4 = se_mask[4]; - m->compute_static_thread_mgmt_se5 = se_mask[5]; - m->compute_static_thread_mgmt_se6 = se_mask[6]; - m->compute_static_thread_mgmt_se7 = se_mask[7]; - - pr_debug("update cu mask to %#x %#x %#x %#x %#x %#x %#x %#x\n", - m->compute_static_thread_mgmt_se0, - m->compute_static_thread_mgmt_se1, - m->compute_static_thread_mgmt_se2, - m->compute_static_thread_mgmt_se3, - m->compute_static_thread_mgmt_se4, - m->compute_static_thread_mgmt_se5, - m->compute_static_thread_mgmt_se6, - m->compute_static_thread_mgmt_se7); + if (KFD_GC_VERSION(mm->dev) != IP_VERSION(9, 4, 3)) { + m->compute_static_thread_mgmt_se4 = se_mask[4]; + m->compute_static_thread_mgmt_se5 = se_mask[5]; + m->compute_static_thread_mgmt_se6 = se_mask[6]; + m->compute_static_thread_mgmt_se7 = se_mask[7]; + + pr_debug("update cu mask to %#x %#x %#x %#x %#x %#x %#x %#x\n", + m->compute_static_thread_mgmt_se0, + m->compute_static_thread_mgmt_se1, + m->compute_static_thread_mgmt_se2, + m->compute_static_thread_mgmt_se3, + m->compute_static_thread_mgmt_se4, + m->compute_static_thread_mgmt_se5, + m->compute_static_thread_mgmt_se6, + m->compute_static_thread_mgmt_se7); + } else { + pr_debug("inst: %u, update cu mask to %#x %#x %#x %#x\n", + inst, m->compute_static_thread_mgmt_se0, + m->compute_static_thread_mgmt_se1, + m->compute_static_thread_mgmt_se2, + m->compute_static_thread_mgmt_se3); + } } static void set_priority(struct v9_mqd *m, struct queue_properties *q) @@ -290,7 +299,8 @@ if (mm->dev->kfd->cwsr_enabled && q->ctx_save_restore_area_address) m->cp_hqd_ctx_save_control = 0; - update_cu_mask(mm, mqd, minfo); + if (KFD_GC_VERSION(mm->dev) != IP_VERSION(9, 4, 3)) + update_cu_mask(mm, mqd, minfo, 0); set_priority(m, q); q->is_active = QUEUE_IS_ACTIVE(*q); @@ -654,6 +664,8 @@ m = get_mqd(mqd + size * xcc); update_mqd(mm, m, q, minfo); + update_cu_mask(mm, mqd, minfo, xcc); + if (q->format == KFD_QUEUE_FORMAT_AQL) { switch (xcc) { case 0: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_vi.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_vi.c @@ -55,7 +55,7 @@ return; mqd_symmetrically_map_cu_mask(mm, - minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask); + minfo->cu_mask.ptr, minfo->cu_mask.count, se_mask, 0); m = get_mqd(mqd); m->compute_static_thread_mgmt_se0 = se_mask[0]; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_priv.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_priv.h @@ -1487,8 +1487,7 @@ static inline bool kfd_flush_tlb_after_unmap(struct kfd_dev *dev) { - return KFD_GC_VERSION(dev) == IP_VERSION(9, 4, 3) || - KFD_GC_VERSION(dev) == IP_VERSION(9, 4, 2) || + return KFD_GC_VERSION(dev) > IP_VERSION(9, 4, 2) || (KFD_GC_VERSION(dev) == IP_VERSION(9, 4, 1) && dev->sdma_fw_version >= 18) || KFD_GC_VERSION(dev) == IP_VERSION(9, 4, 0); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_topology.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_topology.c @@ -450,8 +450,7 @@ sysfs_show_32bit_prop(buffer, offs, "cpu_cores_count", dev->node_props.cpu_cores_count); sysfs_show_32bit_prop(buffer, offs, "simd_count", - dev->gpu ? (dev->node_props.simd_count * - NUM_XCC(dev->gpu->xcc_mask)) : 0); + dev->gpu ? dev->node_props.simd_count : 0); sysfs_show_32bit_prop(buffer, offs, "mem_banks_count", dev->node_props.mem_banks_count); sysfs_show_32bit_prop(buffer, offs, "caches_count", @@ -1651,14 +1650,17 @@ static int fill_in_l2_l3_pcache(struct kfd_cache_properties **props_ext, struct kfd_gpu_cache_info *pcache_info, struct kfd_cu_info *cu_info, - int cache_type, unsigned int cu_processor_id) + int cache_type, unsigned int cu_processor_id, + struct kfd_node *knode) { unsigned int cu_sibling_map_mask; int first_active_cu; - int i, j, k; + int i, j, k, xcc, start, end; struct kfd_cache_properties *pcache = NULL; - cu_sibling_map_mask = cu_info->cu_bitmap[0][0]; + start = ffs(knode->xcc_mask) - 1; + end = start + NUM_XCC(knode->xcc_mask); + cu_sibling_map_mask = cu_info->cu_bitmap[start][0][0]; cu_sibling_map_mask &= ((1 << pcache_info[cache_type].num_cu_shared) - 1); first_active_cu = ffs(cu_sibling_map_mask); @@ -1693,16 +1695,18 @@ cu_sibling_map_mask = cu_sibling_map_mask >> (first_active_cu - 1); k = 0; - for (i = 0; i < cu_info->num_shader_engines; i++) { - for (j = 0; j < cu_info->num_shader_arrays_per_engine; j++) { - pcache->sibling_map[k] = (uint8_t)(cu_sibling_map_mask & 0xFF); - pcache->sibling_map[k+1] = (uint8_t)((cu_sibling_map_mask >> 8) & 0xFF); - pcache->sibling_map[k+2] = (uint8_t)((cu_sibling_map_mask >> 16) & 0xFF); - pcache->sibling_map[k+3] = (uint8_t)((cu_sibling_map_mask >> 24) & 0xFF); - k += 4; + for (xcc = start; xcc < end; xcc++) { + for (i = 0; i < cu_info->num_shader_engines; i++) { + for (j = 0; j < cu_info->num_shader_arrays_per_engine; j++) { + pcache->sibling_map[k] = (uint8_t)(cu_sibling_map_mask & 0xFF); + pcache->sibling_map[k+1] = (uint8_t)((cu_sibling_map_mask >> 8) & 0xFF); + pcache->sibling_map[k+2] = (uint8_t)((cu_sibling_map_mask >> 16) & 0xFF); + pcache->sibling_map[k+3] = (uint8_t)((cu_sibling_map_mask >> 24) & 0xFF); + k += 4; - cu_sibling_map_mask = cu_info->cu_bitmap[i % 4][j + i / 4]; - cu_sibling_map_mask &= ((1 << pcache_info[cache_type].num_cu_shared) - 1); + cu_sibling_map_mask = cu_info->cu_bitmap[xcc][i % 4][j + i / 4]; + cu_sibling_map_mask &= ((1 << pcache_info[cache_type].num_cu_shared) - 1); + } } } pcache->sibling_map_size = k; @@ -1720,7 +1724,7 @@ static void kfd_fill_cache_non_crat_info(struct kfd_topology_device *dev, struct kfd_node *kdev) { struct kfd_gpu_cache_info *pcache_info = NULL; - int i, j, k; + int i, j, k, xcc, start, end; int ct = 0; unsigned int cu_processor_id; int ret; @@ -1754,37 +1758,42 @@ * then it will consider only one CU from * the shared unit */ + start = ffs(kdev->xcc_mask) - 1; + end = start + NUM_XCC(kdev->xcc_mask); + for (ct = 0; ct < num_of_cache_types; ct++) { cu_processor_id = gpu_processor_id; if (pcache_info[ct].cache_level == 1) { - for (i = 0; i < pcu_info->num_shader_engines; i++) { - for (j = 0; j < pcu_info->num_shader_arrays_per_engine; j++) { - for (k = 0; k < pcu_info->num_cu_per_sh; k += pcache_info[ct].num_cu_shared) { + for (xcc = start; xcc < end; xcc++) { + for (i = 0; i < pcu_info->num_shader_engines; i++) { + for (j = 0; j < pcu_info->num_shader_arrays_per_engine; j++) { + for (k = 0; k < pcu_info->num_cu_per_sh; k += pcache_info[ct].num_cu_shared) { - ret = fill_in_l1_pcache(&props_ext, pcache_info, pcu_info, - pcu_info->cu_bitmap[i % 4][j + i / 4], ct, + ret = fill_in_l1_pcache(&props_ext, pcache_info, pcu_info, + pcu_info->cu_bitmap[xcc][i % 4][j + i / 4], ct, cu_processor_id, k); - if (ret < 0) - break; + if (ret < 0) + break; - if (!ret) { - num_of_entries++; - list_add_tail(&props_ext->list, &dev->cache_props); + if (!ret) { + num_of_entries++; + list_add_tail(&props_ext->list, &dev->cache_props); + } + + /* Move to next CU block */ + num_cu_shared = ((k + pcache_info[ct].num_cu_shared) <= + pcu_info->num_cu_per_sh) ? + pcache_info[ct].num_cu_shared : + (pcu_info->num_cu_per_sh - k); + cu_processor_id += num_cu_shared; } - - /* Move to next CU block */ - num_cu_shared = ((k + pcache_info[ct].num_cu_shared) <= - pcu_info->num_cu_per_sh) ? - pcache_info[ct].num_cu_shared : - (pcu_info->num_cu_per_sh - k); - cu_processor_id += num_cu_shared; } } } } else { ret = fill_in_l2_l3_pcache(&props_ext, pcache_info, - pcu_info, ct, cu_processor_id); + pcu_info, ct, cu_processor_id, kdev); if (ret < 0) break; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/amdkfd/kfd_topology.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/amdkfd/kfd_topology.h @@ -86,7 +86,7 @@ struct attribute attr; }; -#define CACHE_SIBLINGMAP_SIZE 64 +#define CACHE_SIBLINGMAP_SIZE 128 struct kfd_cache_properties { struct list_head list; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_plane.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_plane.c @@ -1260,6 +1260,13 @@ attributes.rotation_angle = 0; attributes.attribute_flags.value = 0; + /* Enable cursor degamma ROM on DCN3+ for implicit sRGB degamma in DRM + * legacy gamma setup. + */ + if (crtc_state->cm_is_degamma_srgb && + adev->dm.dc->caps.color.dpp.gamma_corr) + attributes.attribute_flags.bits.ENABLE_CURSOR_DEGAMMA = 1; + attributes.pitch = afb->base.pitches[0] / afb->base.format->cpp[0]; if (crtc_state->stream) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/Makefile +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/Makefile @@ -78,3 +78,4 @@ AMD_DISPLAY_DMUB = $(addprefix $(AMDDALPATH)/dc/,$(DC_DMUB)) AMD_DISPLAY_EDID = $(addprefix $(AMDDALPATH)/dc/,$(DC_EDID)) AMD_DISPLAY_FILES += $(AMD_DISPLAY_DMUB) $(AMD_DISPLAY_EDID) + only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn20/dcn20_clk_mgr.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn20/dcn20_clk_mgr.c @@ -157,7 +157,7 @@ int32_t N; int32_t j; - if (!pipe_ctx->stream) + if (!resource_is_pipe_type(pipe_ctx, OTG_MASTER)) continue; /* Virtual encoders don't have this function */ if (!stream_enc->funcs->get_fifo_cal_average_level) @@ -188,7 +188,7 @@ int32_t N; int32_t j; - if (!pipe_ctx->stream) + if (!resource_is_pipe_type(pipe_ctx, OTG_MASTER)) continue; /* Virtual encoders don't have this function */ if (!stream_enc->funcs->get_fifo_cal_average_level) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn32/dcn32_clk_mgr.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/clk_mgr/dcn32/dcn32_clk_mgr.c @@ -355,7 +355,7 @@ int32_t N; int32_t j; - if (!pipe_ctx->stream) + if (!resource_is_pipe_type(pipe_ctx, OTG_MASTER)) continue; /* Virtual encoders don't have this function */ if (!stream_enc->funcs->get_fifo_cal_average_level) @@ -401,7 +401,7 @@ int32_t N; int32_t j; - if (!pipe_ctx->stream) + if (!resource_is_pipe_type(pipe_ctx, OTG_MASTER)) continue; /* Virtual encoders don't have this function */ if (!stream_enc->funcs->get_fifo_cal_average_level) @@ -802,7 +802,7 @@ khz_to_mhz_ceil(clk_mgr_base->clks.dramclk_khz)); else dcn32_smu_set_hard_min_by_freq(clk_mgr, PPCLK_UCLK, - clk_mgr_base->bw_params->clk_table.entries[clk_mgr_base->bw_params->clk_table.num_entries_per_clk.num_memclk_levels - 1].memclk_mhz); + clk_mgr_base->bw_params->max_memclk_mhz); } else { dcn32_smu_set_hard_min_by_freq(clk_mgr, PPCLK_UCLK, clk_mgr_base->bw_params->clk_table.entries[0].memclk_mhz); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/core/dc.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -1263,6 +1263,9 @@ if (stream == NULL) continue; + if (stream->apply_seamless_boot_optimization) + continue; + // only looking for first odm pipe if (pipe->prev_odm_pipe) continue; @@ -2061,12 +2064,12 @@ } } - /* Check for case where we are going from odm 2:1 to max - * pipe scenario. For these cases, we will call - * commit_minimal_transition_state() to exit out of odm 2:1 - * first before processing new streams + /* ODM Combine 2:1 power optimization is only applied for single stream + * scenario, it uses extra pipes than needed to reduce power consumption + * We need to switch off this feature to make room for new streams. */ - if (stream_count == dc->res_pool->pipe_count) { + if (stream_count > dc->current_state->stream_count && + dc->current_state->stream_count == 1) { for (i = 0; i < dc->res_pool->pipe_count; i++) { pipe = &dc->current_state->res_ctx.pipe_ctx[i]; if (pipe->next_odm_pipe) @@ -3589,6 +3592,45 @@ top_pipe_to_program->stream->update_flags.raw = 0; } +static void wait_for_outstanding_hw_updates(struct dc *dc, const struct dc_state *dc_context) +{ +/* + * This function calls HWSS to wait for any potentially double buffered + * operations to complete. It should be invoked as a pre-amble prior + * to full update programming before asserting any HW locks. + */ + int pipe_idx; + int opp_inst; + int opp_count = dc->res_pool->pipe_count; + struct hubp *hubp; + int mpcc_inst; + const struct pipe_ctx *pipe_ctx; + + for (pipe_idx = 0; pipe_idx < dc->res_pool->pipe_count; pipe_idx++) { + pipe_ctx = &dc_context->res_ctx.pipe_ctx[pipe_idx]; + + if (!pipe_ctx->stream) + continue; + + if (pipe_ctx->stream_res.tg->funcs->wait_drr_doublebuffer_pending_clear) + pipe_ctx->stream_res.tg->funcs->wait_drr_doublebuffer_pending_clear(pipe_ctx->stream_res.tg); + + hubp = pipe_ctx->plane_res.hubp; + if (!hubp) + continue; + + mpcc_inst = hubp->inst; + // MPCC inst is equal to pipe index in practice + for (opp_inst = 0; opp_inst < opp_count; opp_inst++) { + if (dc->res_pool->opps[opp_inst]->mpcc_disconnect_pending[mpcc_inst]) { + dc->res_pool->mpc->funcs->wait_for_idle(dc->res_pool->mpc, mpcc_inst); + dc->res_pool->opps[opp_inst]->mpcc_disconnect_pending[mpcc_inst] = false; + break; + } + } + } +} + static void commit_planes_for_stream(struct dc *dc, struct dc_surface_update *srf_updates, int surface_count, @@ -3607,24 +3649,9 @@ // dc->current_state anymore, so we have to cache it before we apply // the new SubVP context subvp_prev_use = false; - - dc_z10_restore(dc); - - if (update_type == UPDATE_TYPE_FULL) { - /* wait for all double-buffer activity to clear on all pipes */ - int pipe_idx; - - for (pipe_idx = 0; pipe_idx < dc->res_pool->pipe_count; pipe_idx++) { - struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[pipe_idx]; - - if (!pipe_ctx->stream) - continue; - - if (pipe_ctx->stream_res.tg->funcs->wait_drr_doublebuffer_pending_clear) - pipe_ctx->stream_res.tg->funcs->wait_drr_doublebuffer_pending_clear(pipe_ctx->stream_res.tg); - } - } + if (update_type == UPDATE_TYPE_FULL) + wait_for_outstanding_hw_updates(dc, context); if (update_type == UPDATE_TYPE_FULL) { dc_allow_idle_optimizations(dc, false); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/core/dc_link_enc_cfg.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/core/dc_link_enc_cfg.c @@ -169,11 +169,23 @@ /* Return first available DIG link encoder. */ static enum engine_id find_first_avail_link_enc( const struct dc_context *ctx, - const struct dc_state *state) + const struct dc_state *state, + enum engine_id eng_id_requested) { enum engine_id eng_id = ENGINE_ID_UNKNOWN; int i; + if (eng_id_requested != ENGINE_ID_UNKNOWN) { + + for (i = 0; i < ctx->dc->res_pool->res_cap->num_dig_link_enc; i++) { + eng_id = state->res_ctx.link_enc_cfg_ctx.link_enc_avail[i]; + if (eng_id == eng_id_requested) + return eng_id; + } + } + + eng_id = ENGINE_ID_UNKNOWN; + for (i = 0; i < ctx->dc->res_pool->res_cap->num_dig_link_enc; i++) { eng_id = state->res_ctx.link_enc_cfg_ctx.link_enc_avail[i]; if (eng_id != ENGINE_ID_UNKNOWN) @@ -287,7 +299,7 @@ struct dc_stream_state *streams[], uint8_t stream_count) { - enum engine_id eng_id = ENGINE_ID_UNKNOWN; + enum engine_id eng_id = ENGINE_ID_UNKNOWN, eng_id_req = ENGINE_ID_UNKNOWN; int i; int j; @@ -377,8 +389,14 @@ * assigned to that endpoint. */ link_enc = get_link_enc_used_by_link(state, stream->link); - if (link_enc == NULL) - eng_id = find_first_avail_link_enc(stream->ctx, state); + if (link_enc == NULL) { + + if (stream->link->ep_type == DISPLAY_ENDPOINT_USB4_DPIA && + stream->link->dpia_preferred_eng_id != ENGINE_ID_UNKNOWN) + eng_id_req = stream->link->dpia_preferred_eng_id; + + eng_id = find_first_avail_link_enc(stream->ctx, state, eng_id_req); + } else eng_id = link_enc->preferred_engine; @@ -402,7 +420,9 @@ DC_LOG_DEBUG("%s: CUR %s(%d) - enc_id(%d)\n", __func__, assignment.ep_id.ep_type == DISPLAY_ENDPOINT_PHY ? "PHY" : "DPIA", - assignment.ep_id.link_id.enum_id - 1, + assignment.ep_id.ep_type == DISPLAY_ENDPOINT_PHY ? + assignment.ep_id.link_id.enum_id : + assignment.ep_id.link_id.enum_id - 1, assignment.eng_id); } for (i = 0; i < MAX_PIPES; i++) { @@ -413,7 +433,9 @@ DC_LOG_DEBUG("%s: NEW %s(%d) - enc_id(%d)\n", __func__, assignment.ep_id.ep_type == DISPLAY_ENDPOINT_PHY ? "PHY" : "DPIA", - assignment.ep_id.link_id.enum_id - 1, + assignment.ep_id.ep_type == DISPLAY_ENDPOINT_PHY ? + assignment.ep_id.link_id.enum_id : + assignment.ep_id.link_id.enum_id - 1, assignment.eng_id); } @@ -478,7 +500,6 @@ if (stream) link = stream->link; - // dm_output_to_console("%s: No link using DIG(%d).\n", __func__, eng_id); return link; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/core/dc_resource.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/core/dc_resource.c @@ -1348,6 +1348,41 @@ return secondary_pipe; } +bool resource_is_pipe_type(const struct pipe_ctx *pipe_ctx, enum pipe_type type) +{ +#ifdef DBG + if (pipe_ctx->stream == NULL) { + /* a free pipe with dangling states */ + ASSERT(!pipe_ctx->plane_state); + ASSERT(!pipe_ctx->prev_odm_pipe); + ASSERT(!pipe_ctx->next_odm_pipe); + ASSERT(!pipe_ctx->top_pipe); + ASSERT(!pipe_ctx->bottom_pipe); + } else if (pipe_ctx->top_pipe) { + /* a secondary DPP pipe must be signed to a plane */ + ASSERT(pipe_ctx->plane_state) + } + /* Add more checks here to prevent corrupted pipe ctx. It is very hard + * to debug this issue afterwards because we can't pinpoint the code + * location causing inconsistent pipe context states. + */ +#endif + switch (type) { + case OTG_MASTER: + return !pipe_ctx->prev_odm_pipe && + !pipe_ctx->top_pipe && + pipe_ctx->stream; + case OPP_HEAD: + return !pipe_ctx->top_pipe && pipe_ctx->stream; + case DPP_PIPE: + return pipe_ctx->plane_state && pipe_ctx->stream; + case FREE_PIPE: + return !pipe_ctx->plane_state && !pipe_ctx->stream; + default: + return false; + } +} + struct pipe_ctx *resource_get_head_pipe_for_stream( struct resource_context *res_ctx, struct dc_stream_state *stream) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dc.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dc.h @@ -1479,6 +1479,7 @@ * object creation. */ enum engine_id eng_id; + enum engine_id dpia_preferred_eng_id; bool test_pattern_enabled; union compliance_test_state compliance_test_state; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dc_hw_types.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dc_hw_types.h @@ -465,6 +465,7 @@ struct fixed31_32 v_scale_ratio; enum dc_rotation_angle rotation; bool mirror; + struct dc_stream_state *stream; }; /* IPP related types */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c @@ -964,7 +964,9 @@ return; } - if (link->panel_cntl) { + if (link->panel_cntl && !(link->dpcd_sink_ext_caps.bits.oled || + link->dpcd_sink_ext_caps.bits.hdr_aux_backlight_control == 1 || + link->dpcd_sink_ext_caps.bits.sdr_aux_backlight_control == 1)) { bool is_backlight_on = link->panel_cntl->funcs->is_panel_backlight_on(link->panel_cntl); if ((enable && is_backlight_on) || (!enable && !is_backlight_on)) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c @@ -3406,7 +3406,8 @@ .h_scale_ratio = pipe_ctx->plane_res.scl_data.ratios.horz, .v_scale_ratio = pipe_ctx->plane_res.scl_data.ratios.vert, .rotation = pipe_ctx->plane_state->rotation, - .mirror = pipe_ctx->plane_state->horizontal_mirror + .mirror = pipe_ctx->plane_state->horizontal_mirror, + .stream = pipe_ctx->stream, }; bool pipe_split_on = false; bool odm_combine_on = (pipe_ctx->next_odm_pipe != NULL) || only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c @@ -212,8 +212,9 @@ /* check insert_above_mpcc exist in tree->opp_list */ struct mpcc *temp_mpcc = tree->opp_list; - while (temp_mpcc && temp_mpcc->mpcc_bot != insert_above_mpcc) - temp_mpcc = temp_mpcc->mpcc_bot; + if (temp_mpcc != insert_above_mpcc) + while (temp_mpcc && temp_mpcc->mpcc_bot != insert_above_mpcc) + temp_mpcc = temp_mpcc->mpcc_bot; if (temp_mpcc == NULL) return NULL; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hubp.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hubp.c @@ -1075,8 +1075,16 @@ if (src_y_offset < 0) src_y_offset = 0; /* Save necessary cursor info x, y position. w, h is saved in attribute func. */ - hubp->cur_rect.x = src_x_offset + param->viewport.x; - hubp->cur_rect.y = src_y_offset + param->viewport.y; + if (param->stream->link->psr_settings.psr_version >= DC_PSR_VERSION_SU_1 && + param->rotation != ROTATION_ANGLE_0) { + hubp->cur_rect.x = 0; + hubp->cur_rect.y = 0; + hubp->cur_rect.w = param->stream->timing.h_addressable; + hubp->cur_rect.h = param->stream->timing.v_addressable; + } else { + hubp->cur_rect.x = src_x_offset + param->viewport.x; + hubp->cur_rect.y = src_y_offset + param->viewport.y; + } } void hubp2_clk_cntl(struct hubp *hubp, bool enable) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_resource.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn314/dcn314_resource.c @@ -1029,6 +1029,28 @@ I2C_COMMON_MASK_SH_LIST_DCN30(_MASK) }; +/* ========================================================== */ + +/* + * DPIA index | Preferred Encoder | Host Router + * 0 | C | 0 + * 1 | First Available | 0 + * 2 | D | 1 + * 3 | First Available | 1 + */ +/* ========================================================== */ +static const enum engine_id dpia_to_preferred_enc_id_table[] = { + ENGINE_ID_DIGC, + ENGINE_ID_DIGC, + ENGINE_ID_DIGD, + ENGINE_ID_DIGD +}; + +static enum engine_id dcn314_get_preferred_eng_id_dpia(unsigned int dpia_index) +{ + return dpia_to_preferred_enc_id_table[dpia_index]; +} + static struct dce_i2c_hw *dcn31_i2c_hw_create( struct dc_context *ctx, uint32_t inst) @@ -1777,6 +1799,7 @@ .update_bw_bounding_box = dcn314_update_bw_bounding_box, .patch_unknown_plane_state = dcn20_patch_unknown_plane_state, .get_panel_config_defaults = dcn314_get_panel_config_defaults, + .get_preferred_eng_id_dpia = dcn314_get_preferred_eng_id_dpia, }; static struct clock_source *dcn30_clock_source_create( only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_dccg.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dcn32/dcn32_dccg.c @@ -281,7 +281,8 @@ struct dcn_dccg *dccg_dcn = TO_DCN_DCCG(dccg); /* set the dtbclk_p source */ - dccg32_set_dtbclk_p_src(dccg, src, otg_inst); + /* always program refclk as DTBCLK. No use-case expected to require DPREFCLK as refclk */ + dccg32_set_dtbclk_p_src(dccg, DTBCLK0, otg_inst); /* enabled to select one of the DTBCLKs for pipe */ switch (dp_hpo_inst) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dml/dcn20/dcn20_fpu.c @@ -1099,6 +1099,11 @@ context->res_ctx.pipe_ctx[i].plane_res.bw.dppclk_khz = pipes[pipe_idx].clks_cfg.dppclk_mhz * 1000; context->res_ctx.pipe_ctx[i].pipe_dlg_param = pipes[pipe_idx].pipe.dest; + if (dc->ctx->dce_version < DCN_VERSION_3_1 && + context->res_ctx.pipe_ctx[i].stream->adaptive_sync_infopacket.valid) + dcn20_adjust_freesync_v_startup( + &context->res_ctx.pipe_ctx[i].stream->timing, + &context->res_ctx.pipe_ctx[i].pipe_dlg_param.vstartup_start); pipe_idx++; } @@ -1927,7 +1932,6 @@ int vlevel = 0; int pipe_split_from[MAX_PIPES]; int pipe_cnt = 0; - int i = 0; display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_ATOMIC); DC_LOGGER_INIT(dc->ctx->logger); @@ -1951,15 +1955,6 @@ dcn20_calculate_wm(dc, context, pipes, &pipe_cnt, pipe_split_from, vlevel, fast_validate); dcn20_calculate_dlg_params(dc, context, pipes, pipe_cnt, vlevel); - for (i = 0; i < dc->res_pool->pipe_count; i++) { - if (!context->res_ctx.pipe_ctx[i].stream) - continue; - if (context->res_ctx.pipe_ctx[i].stream->adaptive_sync_infopacket.valid) - dcn20_adjust_freesync_v_startup( - &context->res_ctx.pipe_ctx[i].stream->timing, - &context->res_ctx.pipe_ctx[i].pipe_dlg_param.vstartup_start); - } - BW_VAL_TRACE_END_WATERMARKS(); goto validate_out; @@ -2232,7 +2227,6 @@ int vlevel = 0; int pipe_split_from[MAX_PIPES]; int pipe_cnt = 0; - int i = 0; display_e2e_pipe_params_st *pipes = kzalloc(dc->res_pool->pipe_count * sizeof(display_e2e_pipe_params_st), GFP_ATOMIC); DC_LOGGER_INIT(dc->ctx->logger); @@ -2261,15 +2255,6 @@ dcn21_calculate_wm(dc, context, pipes, &pipe_cnt, pipe_split_from, vlevel, fast_validate); dcn20_calculate_dlg_params(dc, context, pipes, pipe_cnt, vlevel); - for (i = 0; i < dc->res_pool->pipe_count; i++) { - if (!context->res_ctx.pipe_ctx[i].stream) - continue; - if (context->res_ctx.pipe_ctx[i].stream->adaptive_sync_infopacket.valid) - dcn20_adjust_freesync_v_startup( - &context->res_ctx.pipe_ctx[i].stream->timing, - &context->res_ctx.pipe_ctx[i].pipe_dlg_param.vstartup_start); - } - BW_VAL_TRACE_END_WATERMARKS(); goto validate_out; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn31/display_mode_vba_31.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dml/dcn31/display_mode_vba_31.c @@ -4135,7 +4135,9 @@ } if (v->OutputFormat[k] == dm_420 && v->HActive[k] > DCN31_MAX_FMT_420_BUFFER_WIDTH && v->ODMCombineEnablePerState[i][k] != dm_odm_combine_mode_4to1) { - if (v->HActive[k] / 2 > DCN31_MAX_FMT_420_BUFFER_WIDTH) { + if (v->Output[k] == dm_hdmi) { + FMTBufferExceeded = true; + } else if (v->HActive[k] / 2 > DCN31_MAX_FMT_420_BUFFER_WIDTH) { v->ODMCombineEnablePerState[i][k] = dm_odm_combine_mode_4to1; v->PlaneRequiredDISPCLK = v->PlaneRequiredDISPCLKWithODMCombine4To1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn314/display_mode_vba_314.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dml/dcn314/display_mode_vba_314.c @@ -4227,7 +4227,9 @@ } if (v->OutputFormat[k] == dm_420 && v->HActive[k] > DCN314_MAX_FMT_420_BUFFER_WIDTH && v->ODMCombineEnablePerState[i][k] != dm_odm_combine_mode_4to1) { - if (v->HActive[k] / 2 > DCN314_MAX_FMT_420_BUFFER_WIDTH) { + if (v->Output[k] == dm_hdmi) { + FMTBufferExceeded = true; + } else if (v->HActive[k] / 2 > DCN314_MAX_FMT_420_BUFFER_WIDTH) { v->ODMCombineEnablePerState[i][k] = dm_odm_combine_mode_4to1; v->PlaneRequiredDISPCLK = v->PlaneRequiredDISPCLKWithODMCombine4To1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/dml/dcn32/display_mode_vba_util_32.c @@ -3459,6 +3459,7 @@ double TimeForFetchingMetaPTE = 0; double TimeForFetchingRowInVBlank = 0; double LinesToRequestPrefetchPixelData = 0; + double LinesForPrefetchBandwidth = 0; unsigned int HostVMDynamicLevelsTrips; double trip_to_mem; double Tvm_trips; @@ -3888,11 +3889,15 @@ TimeForFetchingMetaPTE = Tvm_oto; TimeForFetchingRowInVBlank = Tr0_oto; *PrefetchBandwidth = prefetch_bw_oto; + /* Clamp to oto for bandwidth calculation */ + LinesForPrefetchBandwidth = dst_y_prefetch_oto; } else { *DestinationLinesForPrefetch = dst_y_prefetch_equ; TimeForFetchingMetaPTE = Tvm_equ; TimeForFetchingRowInVBlank = Tr0_equ; *PrefetchBandwidth = prefetch_bw_equ; + /* Clamp to equ for bandwidth calculation */ + LinesForPrefetchBandwidth = dst_y_prefetch_equ; } *DestinationLinesToRequestVMInVBlank = dml_ceil(4.0 * TimeForFetchingMetaPTE / LineTime, 1.0) / 4.0; @@ -3900,7 +3905,7 @@ *DestinationLinesToRequestRowInVBlank = dml_ceil(4.0 * TimeForFetchingRowInVBlank / LineTime, 1.0) / 4.0; - LinesToRequestPrefetchPixelData = *DestinationLinesForPrefetch - + LinesToRequestPrefetchPixelData = LinesForPrefetchBandwidth - *DestinationLinesToRequestVMInVBlank - 2 * *DestinationLinesToRequestRowInVBlank; #ifdef __DML_VBA_DEBUG__ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/inc/core_types.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/inc/core_types.h @@ -65,6 +65,7 @@ struct clk_bw_params; struct resource_funcs { + enum engine_id (*get_preferred_eng_id_dpia)(unsigned int dpia_index); void (*destroy)(struct resource_pool **pool); void (*link_init)(struct dc_link *link); struct panel_cntl*(*panel_cntl_create)( only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/inc/resource.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/inc/resource.h @@ -153,6 +153,112 @@ struct dc_state *context, const struct resource_pool *pool); +/* + * pipe types are identified based on MUXes in DCN front end that are capable + * of taking input from one DCN pipeline to another DCN pipeline. The name is + * in a form of XXXX_YYYY, where XXXX is the DCN front end hardware block the + * pipeline ends with and YYYY is the rendering role that the pipe is in. + * + * For instance OTG_MASTER is a pipe ending with OTG hardware block in its + * pipeline and it is in a role of a master pipe for timing generation. + * + * For quick reference a diagram of each pipe type's areas of responsibility + * for outputting timings on the screen is shown below: + * + * Timing Active for Stream 0 + * __________________________________________________ + * |OTG master 0 (OPP head 0)|OPP head 2 (DPP pipe 2) | + * | (DPP pipe 0)| | + * | Top Plane 0 | | + * | ______________|____ | + * | |DPP pipe 1 |DPP | | + * | | |pipe| | + * | | Bottom |3 | | + * | | Plane 1 | | | + * | | | | | + * | |______________|____| | + * | | | + * | | | + * | ODM slice 0 | ODM slice 1 | + * |_________________________|________________________| + * + * Timing Active for Stream 1 + * __________________________________________________ + * |OTG master 4 (OPP head 4) | + * | | + * | | + * | | + * | | + * | | + * | Blank Pixel Data | + * | (generated by DPG4) | + * | | + * | | + * | | + * | | + * | | + * |__________________________________________________| + * + * Inter-pipe Relation + * __________________________________________________ + * |PIPE IDX| DPP PIPES | OPP HEADS | OTG MASTER | + * | | plane 0 | slice 0 | | + * | 0 | -------------MPC---------ODM----------- | + * | | plane 1 | | | | | + * | 1 | ------------- | | | | + * | | plane 0 | slice 1 | | | + * | 2 | -------------MPC--------- | | + * | | plane 1 | | | | + * | 3 | ------------- | | | + * | | | blank | | + * | 4 | | ----------------------- | + * | | | | | + * | 5 | (FREE) | | | + * |________|_______________|___________|_____________| + */ +enum pipe_type { + /* free pipe - free pipe is an uninitialized pipe without a stream + * associated with it. It is a free DCN pipe resource. It can be + * acquired as any type of pipe. + */ + FREE_PIPE, + + /* OTG master pipe - the master pipe of its OPP head pipes with a + * functional OTG. It merges all its OPP head pipes pixel data in ODM + * block and output to backend DIG. OTG master pipe is responsible for + * generating entire crtc timing to backend DIG. An OTG master pipe may + * or may not have a plane. If it has a plane it blends it as the left + * most MPC slice of the top most layer. If it doesn't have a plane it + * can output pixel data from its OPP head pipes' test pattern + * generators (DPG) such as solid black pixel data to blank the screen. + */ + OTG_MASTER, + + /* OPP head pipe - the head pipe of an MPC blending tree with a + * functional OPP outputting to an OTG. OPP head pipe is responsible for + * processing output pixels in its own ODM slice. It may or may not have + * a plane. If it has a plane it blends it as the top most layer within + * its own ODM slice. If it doesn't have a plane it can output pixel + * data from its DPG such as solid black pixel data to blank the pixel + * data in its own ODM slice. OTG master pipe is also an OPP head pipe + * but with more responsibility. + */ + OPP_HEAD, + + /* DPP pipe - the pipe with a functional DPP outputting to an OPP head + * pipe's MPC. DPP pipe is responsible for processing pixel data from + * its own MPC slice of a plane. It must be connected to an OPP head + * pipe and it must have a plane associated with it. + */ + DPP_PIPE, +}; + +/* + * Determine if the input pipe ctx is of a pipe type. + * return - true if pipe ctx is of the input type. + */ +bool resource_is_pipe_type(const struct pipe_ctx *pipe_ctx, enum pipe_type type); + struct pipe_ctx *find_idle_secondary_pipe( struct resource_context *res_ctx, const struct resource_pool *pool, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/link/accessories/link_dp_cts.c @@ -428,15 +428,24 @@ stream->timing.display_color_depth; struct bit_depth_reduction_params params; struct output_pixel_processor *opp = pipe_ctx->stream_res.opp; - int width = pipe_ctx->stream->timing.h_addressable + + struct pipe_ctx *odm_pipe; + int odm_cnt = 1; + int h_active = pipe_ctx->stream->timing.h_addressable + pipe_ctx->stream->timing.h_border_left + pipe_ctx->stream->timing.h_border_right; - int height = pipe_ctx->stream->timing.v_addressable + + int v_active = pipe_ctx->stream->timing.v_addressable + pipe_ctx->stream->timing.v_border_bottom + pipe_ctx->stream->timing.v_border_top; + int odm_slice_width, last_odm_slice_width, offset = 0; memset(¶ms, 0, sizeof(params)); + for (odm_pipe = pipe_ctx->next_odm_pipe; odm_pipe; odm_pipe = odm_pipe->next_odm_pipe) + odm_cnt++; + + odm_slice_width = h_active / odm_cnt; + last_odm_slice_width = h_active - odm_slice_width * (odm_cnt - 1); + switch (test_pattern) { case DP_TEST_PATTERN_COLOR_SQUARES: controller_test_pattern = @@ -473,16 +482,13 @@ { /* disable bit depth reduction */ pipe_ctx->stream->bit_depth_params = params; - opp->funcs->opp_program_bit_depth_reduction(opp, ¶ms); - if (pipe_ctx->stream_res.tg->funcs->set_test_pattern) + if (pipe_ctx->stream_res.tg->funcs->set_test_pattern) { + opp->funcs->opp_program_bit_depth_reduction(opp, ¶ms); pipe_ctx->stream_res.tg->funcs->set_test_pattern(pipe_ctx->stream_res.tg, controller_test_pattern, color_depth); - else if (link->dc->hwss.set_disp_pattern_generator) { - struct pipe_ctx *odm_pipe; + } else if (link->dc->hwss.set_disp_pattern_generator) { enum controller_dp_color_space controller_color_space; - int opp_cnt = 1; - int offset = 0; - int dpg_width = width; + struct output_pixel_processor *odm_opp; switch (test_pattern_color_space) { case DP_TEST_PATTERN_COLOR_SPACE_RGB: @@ -502,24 +508,9 @@ break; } - for (odm_pipe = pipe_ctx->next_odm_pipe; odm_pipe; odm_pipe = odm_pipe->next_odm_pipe) - opp_cnt++; - dpg_width = width / opp_cnt; - offset = dpg_width; - - link->dc->hwss.set_disp_pattern_generator(link->dc, - pipe_ctx, - controller_test_pattern, - controller_color_space, - color_depth, - NULL, - dpg_width, - height, - 0); - - for (odm_pipe = pipe_ctx->next_odm_pipe; odm_pipe; odm_pipe = odm_pipe->next_odm_pipe) { - struct output_pixel_processor *odm_opp = odm_pipe->stream_res.opp; - + odm_pipe = pipe_ctx; + while (odm_pipe->next_odm_pipe) { + odm_opp = odm_pipe->stream_res.opp; odm_opp->funcs->opp_program_bit_depth_reduction(odm_opp, ¶ms); link->dc->hwss.set_disp_pattern_generator(link->dc, odm_pipe, @@ -527,11 +518,23 @@ controller_color_space, color_depth, NULL, - dpg_width, - height, + odm_slice_width, + v_active, offset); - offset += offset; + offset += odm_slice_width; + odm_pipe = odm_pipe->next_odm_pipe; } + odm_opp = odm_pipe->stream_res.opp; + odm_opp->funcs->opp_program_bit_depth_reduction(odm_opp, ¶ms); + link->dc->hwss.set_disp_pattern_generator(link->dc, + odm_pipe, + controller_test_pattern, + controller_color_space, + color_depth, + NULL, + last_odm_slice_width, + v_active, + offset); } } break; @@ -540,23 +543,17 @@ /* restore bitdepth reduction */ resource_build_bit_depth_reduction_params(pipe_ctx->stream, ¶ms); pipe_ctx->stream->bit_depth_params = params; - opp->funcs->opp_program_bit_depth_reduction(opp, ¶ms); - if (pipe_ctx->stream_res.tg->funcs->set_test_pattern) + if (pipe_ctx->stream_res.tg->funcs->set_test_pattern) { + opp->funcs->opp_program_bit_depth_reduction(opp, ¶ms); pipe_ctx->stream_res.tg->funcs->set_test_pattern(pipe_ctx->stream_res.tg, - CONTROLLER_DP_TEST_PATTERN_VIDEOMODE, - color_depth); - else if (link->dc->hwss.set_disp_pattern_generator) { - struct pipe_ctx *odm_pipe; - int opp_cnt = 1; - int dpg_width; - - for (odm_pipe = pipe_ctx->next_odm_pipe; odm_pipe; odm_pipe = odm_pipe->next_odm_pipe) - opp_cnt++; - - dpg_width = width / opp_cnt; - for (odm_pipe = pipe_ctx->next_odm_pipe; odm_pipe; odm_pipe = odm_pipe->next_odm_pipe) { - struct output_pixel_processor *odm_opp = odm_pipe->stream_res.opp; - + CONTROLLER_DP_TEST_PATTERN_VIDEOMODE, + color_depth); + } else if (link->dc->hwss.set_disp_pattern_generator) { + struct output_pixel_processor *odm_opp; + + odm_pipe = pipe_ctx; + while (odm_pipe->next_odm_pipe) { + odm_opp = odm_pipe->stream_res.opp; odm_opp->funcs->opp_program_bit_depth_reduction(odm_opp, ¶ms); link->dc->hwss.set_disp_pattern_generator(link->dc, odm_pipe, @@ -564,19 +561,23 @@ CONTROLLER_DP_COLOR_SPACE_UDEFINED, color_depth, NULL, - dpg_width, - height, - 0); + odm_slice_width, + v_active, + offset); + offset += odm_slice_width; + odm_pipe = odm_pipe->next_odm_pipe; } + odm_opp = odm_pipe->stream_res.opp; + odm_opp->funcs->opp_program_bit_depth_reduction(odm_opp, ¶ms); link->dc->hwss.set_disp_pattern_generator(link->dc, - pipe_ctx, + odm_pipe, CONTROLLER_DP_TEST_PATTERN_VIDEOMODE, CONTROLLER_DP_COLOR_SPACE_UDEFINED, color_depth, NULL, - dpg_width, - height, - 0); + last_odm_slice_width, + v_active, + offset); } } break; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/dc/link/link_factory.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/dc/link/link_factory.c @@ -783,6 +783,10 @@ /* Set dpia port index : 0 to number of dpia ports */ link->ddc_hw_inst = init_params->connector_index; + // Assign Dpia preferred eng_id + if (link->dc->res_pool->funcs->get_preferred_eng_id_dpia) + link->dpia_preferred_eng_id = link->dc->res_pool->funcs->get_preferred_eng_id_dpia(link->ddc_hw_inst); + /* TODO: Create link encoder */ link->psr_settings.psr_version = DC_PSR_VERSION_UNSUPPORTED; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/display/modules/freesync/freesync.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/display/modules/freesync/freesync.c @@ -338,7 +338,9 @@ * - Delta for CEIL: delta_from_mid_point_in_us_1 * - Delta for FLOOR: delta_from_mid_point_in_us_2 */ - if ((last_render_time_in_us / mid_point_frames_ceil) < in_out_vrr->min_duration_in_us) { + if (mid_point_frames_ceil && + (last_render_time_in_us / mid_point_frames_ceil) < + in_out_vrr->min_duration_in_us) { /* Check for out of range. * If using CEIL produces a value that is out of range, * then we are forced to use FLOOR. @@ -385,8 +387,9 @@ /* Either we've calculated the number of frames to insert, * or we need to insert min duration frames */ - if (last_render_time_in_us / frames_to_insert < - in_out_vrr->min_duration_in_us){ + if (frames_to_insert && + (last_render_time_in_us / frames_to_insert) < + in_out_vrr->min_duration_in_us){ frames_to_insert -= (frames_to_insert > 1) ? 1 : 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/include/kgd_kfd_interface.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/include/kgd_kfd_interface.h @@ -31,12 +31,12 @@ #include #include #include +#include "amdgpu_irq.h" +#include "amdgpu_gfx.h" struct pci_dev; struct amdgpu_device; -#define KGD_MAX_QUEUES 128 - struct kfd_dev; struct kgd_mem; @@ -68,7 +68,7 @@ uint32_t wave_front_size; uint32_t max_scratch_slots_per_cu; uint32_t lds_size; - uint32_t cu_bitmap[4][4]; + uint32_t cu_bitmap[AMDGPU_MAX_GC_INSTANCES][4][4]; }; /* For getting GPU local memory information from KGD */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c @@ -2081,36 +2081,41 @@ return ret; } +#define MAX(a, b) ((a) > (b) ? (a) : (b)) + static int sienna_cichlid_update_pcie_parameters(struct smu_context *smu, uint32_t pcie_gen_cap, uint32_t pcie_width_cap) { struct smu_11_0_dpm_context *dpm_context = smu->smu_dpm.dpm_context; struct smu_11_0_pcie_table *pcie_table = &dpm_context->dpm_tables.pcie_table; - u32 smu_pcie_arg; + uint8_t *table_member1, *table_member2; + uint32_t min_gen_speed, max_gen_speed; + uint32_t min_lane_width, max_lane_width; + uint32_t smu_pcie_arg; int ret, i; - /* PCIE gen speed and lane width override */ - if (!amdgpu_device_pcie_dynamic_switching_supported()) { - if (pcie_table->pcie_gen[NUM_LINK_LEVELS - 1] < pcie_gen_cap) - pcie_gen_cap = pcie_table->pcie_gen[NUM_LINK_LEVELS - 1]; + GET_PPTABLE_MEMBER(PcieGenSpeed, &table_member1); + GET_PPTABLE_MEMBER(PcieLaneCount, &table_member2); - if (pcie_table->pcie_lane[NUM_LINK_LEVELS - 1] < pcie_width_cap) - pcie_width_cap = pcie_table->pcie_lane[NUM_LINK_LEVELS - 1]; + min_gen_speed = MAX(0, table_member1[0]); + max_gen_speed = MIN(pcie_gen_cap, table_member1[1]); + min_gen_speed = min_gen_speed > max_gen_speed ? + max_gen_speed : min_gen_speed; + min_lane_width = MAX(1, table_member2[0]); + max_lane_width = MIN(pcie_width_cap, table_member2[1]); + min_lane_width = min_lane_width > max_lane_width ? + max_lane_width : min_lane_width; - /* Force all levels to use the same settings */ - for (i = 0; i < NUM_LINK_LEVELS; i++) { - pcie_table->pcie_gen[i] = pcie_gen_cap; - pcie_table->pcie_lane[i] = pcie_width_cap; - } + if (!amdgpu_device_pcie_dynamic_switching_supported()) { + pcie_table->pcie_gen[0] = max_gen_speed; + pcie_table->pcie_lane[0] = max_lane_width; } else { - for (i = 0; i < NUM_LINK_LEVELS; i++) { - if (pcie_table->pcie_gen[i] > pcie_gen_cap) - pcie_table->pcie_gen[i] = pcie_gen_cap; - if (pcie_table->pcie_lane[i] > pcie_width_cap) - pcie_table->pcie_lane[i] = pcie_width_cap; - } + pcie_table->pcie_gen[0] = min_gen_speed; + pcie_table->pcie_lane[0] = min_lane_width; } + pcie_table->pcie_gen[1] = max_gen_speed; + pcie_table->pcie_lane[1] = max_lane_width; for (i = 0; i < NUM_LINK_LEVELS; i++) { smu_pcie_arg = (i << 16 | only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_0_ppt.c @@ -343,12 +343,12 @@ if (powerplay_table->platform_caps & SMU_13_0_0_PP_PLATFORM_CAP_HARDWAREDC) smu->dc_controlled_by_gpio = true; - if (powerplay_table->platform_caps & SMU_13_0_0_PP_PLATFORM_CAP_BACO || - powerplay_table->platform_caps & SMU_13_0_0_PP_PLATFORM_CAP_MACO) + if (powerplay_table->platform_caps & SMU_13_0_0_PP_PLATFORM_CAP_BACO) { smu_baco->platform_support = true; - if (powerplay_table->platform_caps & SMU_13_0_0_PP_PLATFORM_CAP_MACO) - smu_baco->maco_support = true; + if (powerplay_table->platform_caps & SMU_13_0_0_PP_PLATFORM_CAP_MACO) + smu_baco->maco_support = true; + } /* * We are in the transition to a new OD mechanism. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_7_ppt.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/amd/pm/swsmu/smu13/smu_v13_0_7_ppt.c @@ -333,12 +333,13 @@ if (powerplay_table->platform_caps & SMU_13_0_7_PP_PLATFORM_CAP_HARDWAREDC) smu->dc_controlled_by_gpio = true; - if (powerplay_table->platform_caps & SMU_13_0_7_PP_PLATFORM_CAP_BACO || - powerplay_table->platform_caps & SMU_13_0_7_PP_PLATFORM_CAP_MACO) + if (powerplay_table->platform_caps & SMU_13_0_7_PP_PLATFORM_CAP_BACO) { smu_baco->platform_support = true; - if (smu_baco->platform_support && (BoardTable->HsrEnabled || BoardTable->VddqOffEnabled)) - smu_baco->maco_support = true; + if ((powerplay_table->platform_caps & SMU_13_0_7_PP_PLATFORM_CAP_MACO) + && (BoardTable->HsrEnabled || BoardTable->VddqOffEnabled)) + smu_baco->maco_support = true; + } #if 0 if (!overdrive_lowerlimits->FeatureCtrlMask || only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/ast/ast_post.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/ast/ast_post.c @@ -291,7 +291,7 @@ ; } while (ast_read32(ast, 0x10100) != 0xa8); } else {/* AST2100/1100 */ - if (ast->chip == AST2100 || ast->chip == 2200) + if (ast->chip == AST2100 || ast->chip == AST2200) dram_reg_info = ast2100_dram_table_data; else dram_reg_info = ast1100_dram_table_data; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/bridge/samsung-dsim.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/bridge/samsung-dsim.c @@ -1009,7 +1009,7 @@ do { u32 reg = samsung_dsim_read(dsi, DSIM_FIFOCTRL_REG); - if (!(reg & DSIM_SFR_HEADER_FULL)) + if (reg & DSIM_SFR_HEADER_EMPTY) return 0; if (!cond_resched()) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/bridge/tc358762.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/bridge/tc358762.c @@ -231,7 +231,7 @@ dsi->lanes = 1; dsi->format = MIPI_DSI_FMT_RGB888; dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE | - MIPI_DSI_MODE_LPM; + MIPI_DSI_MODE_LPM | MIPI_DSI_MODE_VIDEO_HSE; ret = tc358762_parse_dt(ctx); if (ret < 0) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/drm_atomic_helper.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/drm_atomic_helper.c @@ -290,7 +290,8 @@ update_connector_routing(struct drm_atomic_state *state, struct drm_connector *connector, struct drm_connector_state *old_connector_state, - struct drm_connector_state *new_connector_state) + struct drm_connector_state *new_connector_state, + bool added_by_user) { const struct drm_connector_helper_funcs *funcs; struct drm_encoder *new_encoder; @@ -339,9 +340,13 @@ * there's a chance the connector may have been destroyed during the * process, but it's better to ignore that then cause * drm_atomic_helper_resume() to fail. + * + * Last, we want to ignore connector registration when the connector + * was not pulled in the atomic state by user-space (ie, was pulled + * in by the driver, e.g. when updating a DP-MST stream). */ if (!state->duplicated && drm_connector_is_unregistered(connector) && - crtc_state->active) { + added_by_user && crtc_state->active) { drm_dbg_atomic(connector->dev, "[CONNECTOR:%d:%s] is not registered\n", connector->base.id, connector->name); @@ -620,7 +625,10 @@ struct drm_connector *connector; struct drm_connector_state *old_connector_state, *new_connector_state; int i, ret; - unsigned int connectors_mask = 0; + unsigned int connectors_mask = 0, user_connectors_mask = 0; + + for_each_oldnew_connector_in_state(state, connector, old_connector_state, new_connector_state, i) + user_connectors_mask |= BIT(i); for_each_oldnew_crtc_in_state(state, crtc, old_crtc_state, new_crtc_state, i) { bool has_connectors = @@ -685,7 +693,8 @@ */ ret = update_connector_routing(state, connector, old_connector_state, - new_connector_state); + new_connector_state, + BIT(i) & user_connectors_mask); if (ret) return ret; if (old_connector_state->crtc) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/drm_auth.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/drm_auth.c @@ -235,7 +235,8 @@ static int drm_master_check_perm(struct drm_device *dev, struct drm_file *file_priv) { - if (file_priv->pid == task_pid(current) && file_priv->was_master) + if (file_priv->was_master && + rcu_access_pointer(file_priv->pid) == task_pid(current)) return 0; if (!capable(CAP_SYS_ADMIN)) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/drm_debugfs.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/drm_debugfs.c @@ -90,15 +90,17 @@ */ mutex_lock(&dev->filelist_mutex); list_for_each_entry_reverse(priv, &dev->filelist, lhead) { - struct task_struct *task; bool is_current_master = drm_is_current_master(priv); + struct task_struct *task; + struct pid *pid; - rcu_read_lock(); /* locks pid_task()->comm */ - task = pid_task(priv->pid, PIDTYPE_TGID); + rcu_read_lock(); /* Locks priv->pid and pid_task()->comm! */ + pid = rcu_dereference(priv->pid); + task = pid_task(pid, PIDTYPE_TGID); uid = task ? __task_cred(task)->euid : GLOBAL_ROOT_UID; seq_printf(m, "%20s %5d %3d %c %c %5d %10u\n", task ? task->comm : "", - pid_vnr(priv->pid), + pid_vnr(pid), priv->minor->index, is_current_master ? 'y' : 'n', priv->authenticated ? 'y' : 'n', only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/drm_edid.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/drm_edid.c @@ -230,6 +230,7 @@ /* OSVR HDK and HDK2 VR Headsets */ EDID_QUIRK('S', 'V', 'R', 0x1019, EDID_QUIRK_NON_DESKTOP), + EDID_QUIRK('A', 'U', 'O', 0x1111, EDID_QUIRK_NON_DESKTOP), }; /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/drm_file.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/drm_file.c @@ -160,7 +160,7 @@ /* Get a unique identifier for fdinfo: */ file->client_id = atomic64_inc_return(&ident); - file->pid = get_pid(task_tgid(current)); + rcu_assign_pointer(file->pid, get_pid(task_tgid(current))); file->minor = minor; /* for compatibility root is always authenticated */ @@ -200,7 +200,7 @@ drm_syncobj_release(file); if (drm_core_check_feature(dev, DRIVER_GEM)) drm_gem_release(dev, file); - put_pid(file->pid); + put_pid(rcu_access_pointer(file->pid)); kfree(file); return ERR_PTR(ret); @@ -291,7 +291,7 @@ WARN_ON(!list_empty(&file->event_list)); - put_pid(file->pid); + put_pid(rcu_access_pointer(file->pid)); kfree(file); } @@ -505,6 +505,40 @@ } EXPORT_SYMBOL(drm_release); +void drm_file_update_pid(struct drm_file *filp) +{ + struct drm_device *dev; + struct pid *pid, *old; + + /* + * Master nodes need to keep the original ownership in order for + * drm_master_check_perm to keep working correctly. (See comment in + * drm_auth.c.) + */ + if (filp->was_master) + return; + + pid = task_tgid(current); + + /* + * Quick unlocked check since the model is a single handover followed by + * exclusive repeated use. + */ + if (pid == rcu_access_pointer(filp->pid)) + return; + + dev = filp->minor->dev; + mutex_lock(&dev->filelist_mutex); + old = rcu_replace_pointer(filp->pid, pid, 1); + mutex_unlock(&dev->filelist_mutex); + + if (pid != old) { + get_pid(pid); + synchronize_rcu(); + put_pid(old); + } +} + /** * drm_release_noglobal - release method for DRM file * @inode: device inode only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/drm_gem.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/drm_gem.c @@ -537,7 +537,7 @@ struct page **pages; struct folio *folio; struct folio_batch fbatch; - int i, j, npages; + long i, j, npages; if (WARN_ON(!obj->filp)) return ERR_PTR(-EINVAL); @@ -561,11 +561,13 @@ i = 0; while (i < npages) { + long nr; folio = shmem_read_folio_gfp(mapping, i, mapping_gfp_mask(mapping)); if (IS_ERR(folio)) goto fail; - for (j = 0; j < folio_nr_pages(folio); j++, i++) + nr = min(npages - i, folio_nr_pages(folio)); + for (j = 0; j < nr; j++, i++) pages[i] = folio_file_page(folio, i); /* Make sure shmem keeps __GFP_DMA32 allocated pages in the only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/drm_ioctl.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/drm_ioctl.c @@ -775,6 +775,9 @@ struct drm_device *dev = file_priv->minor->dev; int retcode; + /* Update drm_file owner if fd was passed along. */ + drm_file_update_pid(file_priv); + if (drm_dev_is_unplugged(dev)) return -ENODEV; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/exynos/exynos_drm_crtc.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/exynos/exynos_drm_crtc.c @@ -39,13 +39,12 @@ if (exynos_crtc->ops->atomic_disable) exynos_crtc->ops->atomic_disable(exynos_crtc); + spin_lock_irq(&crtc->dev->event_lock); if (crtc->state->event && !crtc->state->active) { - spin_lock_irq(&crtc->dev->event_lock); drm_crtc_send_vblank_event(crtc, crtc->state->event); - spin_unlock_irq(&crtc->dev->event_lock); - crtc->state->event = NULL; } + spin_unlock_irq(&crtc->dev->event_lock); } static int exynos_crtc_atomic_check(struct drm_crtc *crtc, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/display/intel_bios.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/display/intel_bios.h @@ -271,6 +271,7 @@ int intel_bios_dp_boost_level(const struct intel_bios_encoder_data *devdata); int intel_bios_dp_max_lane_count(const struct intel_bios_encoder_data *devdata); int intel_bios_dp_max_link_rate(const struct intel_bios_encoder_data *devdata); +bool intel_bios_dp_has_shared_aux_ch(const struct intel_bios_encoder_data *devdata); int intel_bios_hdmi_boost_level(const struct intel_bios_encoder_data *devdata); int intel_bios_hdmi_ddc_pin(const struct intel_bios_encoder_data *devdata); int intel_bios_hdmi_level_shift(const struct intel_bios_encoder_data *devdata); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/display/intel_dp.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/display/intel_dp.c @@ -5503,8 +5503,13 @@ /* * VBT and straps are liars. Also check HPD as that seems * to be the most reliable piece of information available. + * + * ... expect on devices that forgot to hook HPD up for eDP + * (eg. Acer Chromebook C710), so we'll check it only if multiple + * ports are attempting to use the same AUX CH, according to VBT. */ - if (!intel_digital_port_connected(encoder)) { + if (intel_bios_dp_has_shared_aux_ch(encoder->devdata) && + !intel_digital_port_connected(encoder)) { /* * If this fails, presume the DPCD answer came * from some other port using the same AUX CH. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gem/i915_gem_shmem.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gem/i915_gem_shmem.c @@ -100,6 +100,7 @@ st->nents = 0; for (i = 0; i < page_count; i++) { struct folio *folio; + unsigned long nr_pages; const unsigned int shrink[] = { I915_SHRINK_BOUND | I915_SHRINK_UNBOUND, 0, @@ -150,6 +151,8 @@ } } while (1); + nr_pages = min_t(unsigned long, + folio_nr_pages(folio), page_count - i); if (!i || sg->length >= max_segment || folio_pfn(folio) != next_pfn) { @@ -157,13 +160,13 @@ sg = sg_next(sg); st->nents++; - sg_set_folio(sg, folio, folio_size(folio), 0); + sg_set_folio(sg, folio, nr_pages * PAGE_SIZE, 0); } else { /* XXX: could overflow? */ - sg->length += folio_size(folio); + sg->length += nr_pages * PAGE_SIZE; } - next_pfn = folio_pfn(folio) + folio_nr_pages(folio); - i += folio_nr_pages(folio) - 1; + next_pfn = folio_pfn(folio) + nr_pages; + i += nr_pages - 1; /* Check that the i965g/gm workaround works. */ GEM_BUG_ON(gfp & __GFP_DMA32 && next_pfn >= 0x00100000UL); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gt/gen8_engine_cs.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gt/gen8_engine_cs.c @@ -271,8 +271,17 @@ if (GRAPHICS_VER_FULL(rq->i915) >= IP_VER(12, 70)) bit_group_0 |= PIPE_CONTROL_CCS_FLUSH; + /* + * L3 fabric flush is needed for AUX CCS invalidation + * which happens as part of pipe-control so we can + * ignore PIPE_CONTROL_FLUSH_L3. Also PIPE_CONTROL_FLUSH_L3 + * deals with Protected Memory which is not needed for + * AUX CCS invalidation and lead to unwanted side effects. + */ + if (mode & EMIT_FLUSH) + bit_group_1 |= PIPE_CONTROL_FLUSH_L3; + bit_group_1 |= PIPE_CONTROL_TILE_CACHE_FLUSH; - bit_group_1 |= PIPE_CONTROL_FLUSH_L3; bit_group_1 |= PIPE_CONTROL_RENDER_TARGET_CACHE_FLUSH; bit_group_1 |= PIPE_CONTROL_DEPTH_CACHE_FLUSH; /* Wa_1409600907:tgl,adl-p */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gt/intel_engine_cs.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gt/intel_engine_cs.c @@ -558,7 +558,6 @@ DRIVER_CAPS(i915)->has_logical_contexts = true; ewma__engine_latency_init(&engine->latency); - seqcount_init(&engine->stats.execlists.lock); ATOMIC_INIT_NOTIFIER_HEAD(&engine->context_status_notifier); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gt/intel_engine_types.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gt/intel_engine_types.h @@ -58,6 +58,7 @@ typedef u32 intel_engine_mask_t; #define ALL_ENGINES ((intel_engine_mask_t)~0ul) +#define VIRTUAL_ENGINES BIT(BITS_PER_TYPE(intel_engine_mask_t) - 1) struct intel_hw_status_page { struct list_head timelines; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gt/intel_execlists_submission.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gt/intel_execlists_submission.c @@ -3550,6 +3550,8 @@ logical_ring_default_vfuncs(engine); logical_ring_default_irqs(engine); + seqcount_init(&engine->stats.execlists.lock); + if (engine->flags & I915_ENGINE_HAS_RCS_REG_STATE) rcs_submission_override(engine); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gt/intel_ggtt.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gt/intel_ggtt.c @@ -511,20 +511,31 @@ vm->clear_range(vm, vma_res->start, vma_res->vma_size); } +/* + * Reserve the top of the GuC address space for firmware images. Addresses + * beyond GUC_GGTT_TOP in the GuC address space are inaccessible by GuC, + * which makes for a suitable range to hold GuC/HuC firmware images if the + * size of the GGTT is 4G. However, on a 32-bit platform the size of the GGTT + * is limited to 2G, which is less than GUC_GGTT_TOP, but we reserve a chunk + * of the same size anyway, which is far more than needed, to keep the logic + * in uc_fw_ggtt_offset() simple. + */ +#define GUC_TOP_RESERVE_SIZE (SZ_4G - GUC_GGTT_TOP) + static int ggtt_reserve_guc_top(struct i915_ggtt *ggtt) { - u64 size; + u64 offset; int ret; if (!intel_uc_uses_guc(&ggtt->vm.gt->uc)) return 0; - GEM_BUG_ON(ggtt->vm.total <= GUC_GGTT_TOP); - size = ggtt->vm.total - GUC_GGTT_TOP; + GEM_BUG_ON(ggtt->vm.total <= GUC_TOP_RESERVE_SIZE); + offset = ggtt->vm.total - GUC_TOP_RESERVE_SIZE; - ret = i915_gem_gtt_reserve(&ggtt->vm, NULL, &ggtt->uc_fw, size, - GUC_GGTT_TOP, I915_COLOR_UNEVICTABLE, - PIN_NOEVICT); + ret = i915_gem_gtt_reserve(&ggtt->vm, NULL, &ggtt->uc_fw, + GUC_TOP_RESERVE_SIZE, offset, + I915_COLOR_UNEVICTABLE, PIN_NOEVICT); if (ret) drm_dbg(&ggtt->vm.i915->drm, "Failed to reserve top of GGTT for GuC\n"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c @@ -1433,6 +1433,36 @@ int srcu, ret; /* + * Ideally the busyness worker should take a gt pm wakeref because the + * worker only needs to be active while gt is awake. However, the + * gt_park path cancels the worker synchronously and this complicates + * the flow if the worker is also running at the same time. The cancel + * waits for the worker and when the worker releases the wakeref, that + * would call gt_park and would lead to a deadlock. + * + * The resolution is to take the global pm wakeref if runtime pm is + * already active. If not, we don't need to update the busyness stats as + * the stats would already be updated when the gt was parked. + * + * Note: + * - We do not requeue the worker if we cannot take a reference to runtime + * pm since intel_guc_busyness_unpark would requeue the worker in the + * resume path. + * + * - If the gt was parked longer than time taken for GT timestamp to roll + * over, we ignore those rollovers since we don't care about tracking + * the exact GT time. We only care about roll overs when the gt is + * active and running workloads. + * + * - There is a window of time between gt_park and runtime suspend, + * where the worker may run. This is acceptable since the worker will + * not find any new data to update busyness. + */ + wakeref = intel_runtime_pm_get_if_active(>->i915->runtime_pm); + if (!wakeref) + return; + + /* * Synchronize with gt reset to make sure the worker does not * corrupt the engine/guc stats. NB: can't actually block waiting * for a reset to complete as the reset requires flushing out @@ -1440,10 +1470,9 @@ */ ret = intel_gt_reset_trylock(gt, &srcu); if (ret) - return; + goto err_trylock; - with_intel_runtime_pm(>->i915->runtime_pm, wakeref) - __update_guc_busyness_stats(guc); + __update_guc_busyness_stats(guc); /* adjust context stats for overflow */ xa_for_each(&guc->context_lookup, index, ce) @@ -1452,6 +1481,9 @@ intel_gt_reset_unlock(gt, srcu); guc_enable_busyness_worker(guc); + +err_trylock: + intel_runtime_pm_put(>->i915->runtime_pm, wakeref); } static int guc_action_enable_usage_stats(struct intel_guc *guc) @@ -5470,6 +5502,9 @@ ve->base.flags = I915_ENGINE_IS_VIRTUAL; + BUILD_BUG_ON(ilog2(VIRTUAL_ENGINES) < I915_NUM_ENGINES); + ve->base.mask = VIRTUAL_ENGINES; + intel_context_init(&ve->context, &ve->base); for (n = 0; n < count; n++) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gvt/gtt.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gvt/gtt.c @@ -1174,6 +1174,7 @@ { const struct intel_gvt_gtt_pte_ops *ops = vgpu->gvt->gtt.pte_ops; kvm_pfn_t pfn; + int ret; if (!HAS_PAGE_SIZES(vgpu->gvt->gt->i915, I915_GTT_PAGE_SIZE_2M)) return 0; @@ -1183,7 +1184,13 @@ pfn = gfn_to_pfn(vgpu->vfio_device.kvm, ops->get_pfn(entry)); if (is_error_noslot_pfn(pfn)) return -EINVAL; - return PageTransHuge(pfn_to_page(pfn)); + + if (!pfn_valid(pfn)) + return -EINVAL; + + ret = PageTransHuge(pfn_to_page(pfn)); + kvm_release_pfn_clean(pfn); + return ret; } static int split_2MB_gtt_entry(struct intel_vgpu *vgpu, @@ -2876,24 +2883,6 @@ } /** - * intel_vgpu_reset_gtt - reset the all GTT related status - * @vgpu: a vGPU - * - * This function is called from vfio core to reset reset all - * GTT related status, including GGTT, PPGTT, scratch page. - * - */ -void intel_vgpu_reset_gtt(struct intel_vgpu *vgpu) -{ - /* Shadow pages are only created when there is no page - * table tracking data, so remove page tracking data after - * removing the shadow pages. - */ - intel_vgpu_destroy_all_ppgtt_mm(vgpu); - intel_vgpu_reset_ggtt(vgpu, true); -} - -/** * intel_gvt_restore_ggtt - restore all vGPU's ggtt entries * @gvt: intel gvt device * only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/gvt/gtt.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/gvt/gtt.h @@ -224,7 +224,6 @@ void intel_vgpu_invalidate_ppgtt(struct intel_vgpu *vgpu); int intel_gvt_init_gtt(struct intel_gvt *gvt); -void intel_vgpu_reset_gtt(struct intel_vgpu *vgpu); void intel_gvt_clean_gtt(struct intel_gvt *gvt); struct intel_vgpu_mm *intel_gvt_find_ppgtt_mm(struct intel_vgpu *vgpu, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/i915_gem.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/i915_gem.c @@ -1199,6 +1199,13 @@ goto err_unlock; } + /* + * Register engines early to ensure the engine list is in its final + * rb-tree form, lowering the amount of code that has to deal with + * the intermediate llist state. + */ + intel_engines_driver_register(dev_priv); + return 0; /* @@ -1246,8 +1253,6 @@ void i915_gem_driver_register(struct drm_i915_private *i915) { i915_gem_driver_register__shrinker(i915); - - intel_engines_driver_register(i915); } void i915_gem_driver_unregister(struct drm_i915_private *i915) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/i915/i915_request.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/i915/i915_request.c @@ -134,9 +134,7 @@ i915_sw_fence_fini(&rq->semaphore); /* - * Keep one request on each engine for reserved use under mempressure - * do not use with virtual engines as this really is only needed for - * kernel contexts. + * Keep one request on each engine for reserved use under mempressure. * * We do not hold a reference to the engine here and so have to be * very careful in what rq->engine we poke. The virtual engine is @@ -166,8 +164,7 @@ * know that if the rq->execution_mask is a single bit, rq->engine * can be a physical engine with the exact corresponding mask. */ - if (!intel_engine_is_virtual(rq->engine) && - is_power_of_2(rq->execution_mask) && + if (is_power_of_2(rq->execution_mask) && !cmpxchg(&rq->engine->request_pool, NULL, rq)) return; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/meson/meson_encoder_hdmi.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/meson/meson_encoder_hdmi.c @@ -332,6 +332,8 @@ return; cec_notifier_set_phys_addr_from_edid(encoder_hdmi->cec_notifier, edid); + + kfree(edid); } else cec_notifier_phys_addr_invalidate(encoder_hdmi->cec_notifier); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/msm/adreno/adreno_gpu.h +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/adreno/adreno_gpu.h @@ -32,6 +32,8 @@ #define ADRENO_QUIRK_TWO_PASS_USE_WFI BIT(0) #define ADRENO_QUIRK_FAULT_DETECT_MASK BIT(1) #define ADRENO_QUIRK_LMLOADKILL_DISABLE BIT(2) +#define ADRENO_QUIRK_HAS_HW_APRIV BIT(3) +#define ADRENO_QUIRK_HAS_CACHED_COHERENT BIT(4) struct adreno_rev { uint8_t core; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c @@ -119,6 +119,7 @@ struct dpu_sw_pipe_cfg *pipe_cfg) { int src_width, src_height, dst_height, fps; + u64 plane_pixel_rate, plane_bit_rate; u64 plane_prefill_bw; u64 plane_bw; u32 hw_latency_lines; @@ -136,13 +137,12 @@ scale_factor = src_height > dst_height ? mult_frac(src_height, 1, dst_height) : 1; - plane_bw = - src_width * mode->vtotal * fps * fmt->bpp * - scale_factor; - - plane_prefill_bw = - src_width * hw_latency_lines * fps * fmt->bpp * - scale_factor * mode->vtotal; + plane_pixel_rate = src_width * mode->vtotal * fps; + plane_bit_rate = plane_pixel_rate * fmt->bpp; + + plane_bw = plane_bit_rate * scale_factor; + + plane_prefill_bw = plane_bw * hw_latency_lines; if ((vbp+vpw) > hw_latency_lines) do_div(plane_prefill_bw, (vbp+vpw)); @@ -733,9 +733,11 @@ static int dpu_plane_atomic_check_pipe(struct dpu_plane *pdpu, struct dpu_sw_pipe *pipe, struct dpu_sw_pipe_cfg *pipe_cfg, - const struct dpu_format *fmt) + const struct dpu_format *fmt, + const struct drm_display_mode *mode) { uint32_t min_src_size; + struct dpu_kms *kms = _dpu_plane_get_kms(&pdpu->base); min_src_size = DPU_FORMAT_IS_YUV(fmt) ? 2 : 1; @@ -774,6 +776,12 @@ return -EINVAL; } + /* max clk check */ + if (_dpu_plane_calc_clk(mode, pipe_cfg) > kms->perf.max_core_clk_rate) { + DPU_DEBUG_PLANE(pdpu, "plane exceeds max mdp core clk limits\n"); + return -E2BIG; + } + return 0; } @@ -899,12 +907,13 @@ r_pipe_cfg->dst_rect.x1 = pipe_cfg->dst_rect.x2; } - ret = dpu_plane_atomic_check_pipe(pdpu, pipe, pipe_cfg, fmt); + ret = dpu_plane_atomic_check_pipe(pdpu, pipe, pipe_cfg, fmt, &crtc_state->adjusted_mode); if (ret) return ret; if (r_pipe->sspp) { - ret = dpu_plane_atomic_check_pipe(pdpu, r_pipe, r_pipe_cfg, fmt); + ret = dpu_plane_atomic_check_pipe(pdpu, r_pipe, r_pipe_cfg, fmt, + &crtc_state->adjusted_mode); if (ret) return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/msm/dp/dp_ctrl.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/dp/dp_ctrl.c @@ -1774,13 +1774,6 @@ return rc; while (--link_train_max_retries) { - rc = dp_ctrl_reinitialize_mainlink(ctrl); - if (rc) { - DRM_ERROR("Failed to reinitialize mainlink. rc=%d\n", - rc); - break; - } - training_step = DP_TRAINING_NONE; rc = dp_ctrl_setup_main_link(ctrl, &training_step); if (rc == 0) { @@ -1832,6 +1825,12 @@ /* stop link training before start re training */ dp_ctrl_clear_training_pattern(ctrl); } + + rc = dp_ctrl_reinitialize_mainlink(ctrl); + if (rc) { + DRM_ERROR("Failed to reinitialize mainlink. rc=%d\n", rc); + break; + } } if (ctrl->link->sink_request & DP_TEST_LINK_PHY_TEST_PATTERN) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/msm/dp/dp_link.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/dp/dp_link.c @@ -1090,7 +1090,7 @@ } else if (dp_link_read_psr_error_status(link)) { DRM_ERROR("PSR IRQ_HPD received\n"); } else if (dp_link_psr_capability_changed(link)) { - drm_dbg_dp(link->drm_dev, "PSR Capability changed"); + drm_dbg_dp(link->drm_dev, "PSR Capability changed\n"); } else { ret = dp_link_process_link_status_update(link); if (!ret) { @@ -1107,7 +1107,7 @@ } } - drm_dbg_dp(link->drm_dev, "sink request=%#x", + drm_dbg_dp(link->drm_dev, "sink request=%#x\n", dp_link->sink_request); return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/msm/dsi/dsi_host.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/msm/dsi/dsi_host.c @@ -1075,9 +1075,21 @@ static void dsi_wait4video_eng_busy(struct msm_dsi_host *msm_host) { + u32 data; + if (!(msm_host->mode_flags & MIPI_DSI_MODE_VIDEO)) return; + data = dsi_read(msm_host, REG_DSI_STATUS0); + + /* if video mode engine is not busy, its because + * either timing engine was not turned on or the + * DSI controller has finished transmitting the video + * data already, so no need to wait in those cases + */ + if (!(data & DSI_STATUS0_VIDEO_MODE_ENGINE_BUSY)) + return; + if (msm_host->power_on && msm_host->enabled) { dsi_wait4video_done(msm_host); /* delay 4 ms to skip BLLP */ @@ -1887,10 +1899,9 @@ } msm_host->irq = irq_of_parse_and_map(pdev->dev.of_node, 0); - if (msm_host->irq < 0) { - ret = msm_host->irq; - dev_err(&pdev->dev, "failed to get irq: %d\n", ret); - return ret; + if (!msm_host->irq) { + dev_err(&pdev->dev, "failed to get irq\n"); + return -EINVAL; } /* do not autoenable, will be enabled later */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/mxsfb/mxsfb_kms.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/mxsfb/mxsfb_kms.c @@ -611,6 +611,14 @@ writel(ctrl, mxsfb->base + LCDC_AS_CTRL); } +static void mxsfb_plane_overlay_atomic_disable(struct drm_plane *plane, + struct drm_atomic_state *state) +{ + struct mxsfb_drm_private *mxsfb = to_mxsfb_drm_private(plane->dev); + + writel(0, mxsfb->base + LCDC_AS_CTRL); +} + static bool mxsfb_format_mod_supported(struct drm_plane *plane, uint32_t format, uint64_t modifier) @@ -626,6 +634,7 @@ static const struct drm_plane_helper_funcs mxsfb_plane_overlay_helper_funcs = { .atomic_check = mxsfb_plane_atomic_check, .atomic_update = mxsfb_plane_overlay_atomic_update, + .atomic_disable = mxsfb_plane_overlay_atomic_disable, }; static const struct drm_plane_funcs mxsfb_plane_funcs = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/nouveau/nouveau_drm.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/nouveau/nouveau_drm.c @@ -1115,7 +1115,10 @@ } get_task_comm(tmpname, current); - snprintf(name, sizeof(name), "%s[%d]", tmpname, pid_nr(fpriv->pid)); + rcu_read_lock(); + snprintf(name, sizeof(name), "%s[%d]", + tmpname, pid_nr(rcu_dereference(fpriv->pid))); + rcu_read_unlock(); if (!(cli = kzalloc(sizeof(*cli), GFP_KERNEL))) { ret = -ENOMEM; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c @@ -1343,9 +1343,7 @@ _INIT_DCS_CMD(0xB1, 0x01, 0xBF, 0x11), _INIT_DCS_CMD(0xCB, 0x86), _INIT_DCS_CMD(0xD2, 0x3C, 0xFA), - _INIT_DCS_CMD(0xE9, 0xC5), - _INIT_DCS_CMD(0xD3, 0x00, 0x00, 0x00, 0x00, 0x80, 0x0C, 0x01), - _INIT_DCS_CMD(0xE9, 0x3F), + _INIT_DCS_CMD(0xD3, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x0C, 0x01), _INIT_DCS_CMD(0xE7, 0x02, 0x00, 0x28, 0x01, 0x7E, 0x0F, 0x7E, 0x10, 0xA0, 0x00, 0x00, 0x20, 0x40, 0x50, 0x40), _INIT_DCS_CMD(0xBD, 0x02), _INIT_DCS_CMD(0xD8, 0xFF, 0xFF, 0xBF, 0xFE, 0xAA, 0xA0, 0xFF, 0xFF, 0xBF, 0xFE, 0xAA, 0xA0), only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/radeon/radeon_sa.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/radeon/radeon_sa.c @@ -123,7 +123,7 @@ unsigned int size, unsigned int align) { struct drm_suballoc *sa = drm_suballoc_new(&sa_manager->base, size, - GFP_KERNEL, true, align); + GFP_KERNEL, false, align); if (IS_ERR(sa)) { *sa_bo = NULL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/scheduler/sched_main.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/scheduler/sched_main.c @@ -929,7 +929,7 @@ if (next) { next->s_fence->scheduled.timestamp = - job->s_fence->finished.timestamp; + dma_fence_timestamp(&job->s_fence->finished); /* start TO timer for next job */ drm_sched_start_timeout(sched); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/tests/drm_mm_test.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/tests/drm_mm_test.c @@ -939,7 +939,7 @@ KUNIT_ASSERT_FALSE(test, __drm_test_mm_insert_range(test, count, size, 0, max - 1)); KUNIT_ASSERT_FALSE(test, __drm_test_mm_insert_range(test, count, size, 0, max / 2)); KUNIT_ASSERT_FALSE(test, __drm_test_mm_insert_range(test, count, size, - max / 2, max / 2)); + max / 2, max)); KUNIT_ASSERT_FALSE(test, __drm_test_mm_insert_range(test, count, size, max / 4 + 1, 3 * max / 4 - 1)); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/tiny/gm12u320.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/tiny/gm12u320.c @@ -70,10 +70,10 @@ #define READ_STATUS_SIZE 13 #define MISC_VALUE_SIZE 4 -#define CMD_TIMEOUT msecs_to_jiffies(200) -#define DATA_TIMEOUT msecs_to_jiffies(1000) -#define IDLE_TIMEOUT msecs_to_jiffies(2000) -#define FIRST_FRAME_TIMEOUT msecs_to_jiffies(2000) +#define CMD_TIMEOUT 200 +#define DATA_TIMEOUT 1000 +#define IDLE_TIMEOUT 2000 +#define FIRST_FRAME_TIMEOUT 2000 #define MISC_REQ_GET_SET_ECO_A 0xff #define MISC_REQ_GET_SET_ECO_B 0x35 @@ -389,7 +389,7 @@ * switches back to showing its logo. */ queue_delayed_work(system_long_wq, &gm12u320->fb_update.work, - IDLE_TIMEOUT); + msecs_to_jiffies(IDLE_TIMEOUT)); return; err: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/tiny/simpledrm.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/tiny/simpledrm.c @@ -745,7 +745,7 @@ ret = devm_aperture_acquire_from_firmware(dev, res->start, resource_size(res)); if (ret) { - drm_err(dev, "could not acquire memory range %pr: %d\n", &res, ret); + drm_err(dev, "could not acquire memory range %pr: %d\n", res, ret); return ERR_PTR(ret); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/gpu/drm/virtio/virtgpu_submit.c +++ linux-oracle-6.5-6.5.0/drivers/gpu/drm/virtio/virtgpu_submit.c @@ -64,13 +64,9 @@ struct virtio_gpu_fence *fence, u32 ring_idx) { - struct virtio_gpu_fpriv *vfpriv = file->driver_priv; struct virtio_gpu_fence_event *e = NULL; int ret; - if (!(vfpriv->ring_idx_mask & BIT_ULL(ring_idx))) - return 0; - e = kzalloc(sizeof(*e), GFP_KERNEL); if (!e) return -ENOMEM; @@ -151,7 +147,6 @@ submit->buf = NULL; submit->buflist = NULL; submit->sync_file = NULL; - submit->out_fence = NULL; submit->out_fence_fd = -1; } @@ -164,18 +159,30 @@ struct virtio_gpu_fpriv *vfpriv = file->driver_priv; struct virtio_gpu_device *vgdev = dev->dev_private; struct virtio_gpu_fence *out_fence; + bool drm_fence_event; int err; memset(submit, 0, sizeof(*submit)); - out_fence = virtio_gpu_fence_alloc(vgdev, fence_ctx, ring_idx); - if (!out_fence) - return -ENOMEM; - - err = virtio_gpu_fence_event_create(dev, file, out_fence, ring_idx); - if (err) { - dma_fence_put(&out_fence->f); - return err; + if ((exbuf->flags & VIRTGPU_EXECBUF_RING_IDX) && + (vfpriv->ring_idx_mask & BIT_ULL(ring_idx))) + drm_fence_event = true; + else + drm_fence_event = false; + + if ((exbuf->flags & VIRTGPU_EXECBUF_FENCE_FD_OUT) || + exbuf->num_bo_handles || + drm_fence_event) + out_fence = virtio_gpu_fence_alloc(vgdev, fence_ctx, ring_idx); + else + out_fence = NULL; + + if (drm_fence_event) { + err = virtio_gpu_fence_event_create(dev, file, out_fence, ring_idx); + if (err) { + dma_fence_put(&out_fence->f); + return err; + } } submit->out_fence = out_fence; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/hid/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/hid/Kconfig @@ -792,6 +792,7 @@ tristate "NVIDIA SHIELD devices" depends on USB_HID depends on BT_HIDP + depends on LEDS_CLASS help Support for NVIDIA SHIELD accessories. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/hid/hid-sony.c +++ linux-oracle-6.5-6.5.0/drivers/hid/hid-sony.c @@ -2155,6 +2155,8 @@ return ret; err: + usb_free_urb(sc->ghl_urb); + hid_hw_stop(hdev); return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/hid/intel-ish-hid/ipc/pci-ish.c +++ linux-oracle-6.5-6.5.0/drivers/hid/intel-ish-hid/ipc/pci-ish.c @@ -133,6 +133,14 @@ } wakeup = &adev->wakeup; + /* + * Call acpi_disable_gpe(), so that reference count + * gpe_event_info->runtime_count doesn't overflow. + * When gpe_event_info->runtime_count = 0, the call + * to acpi_disable_gpe() simply return. + */ + acpi_disable_gpe(wakeup->gpe_device, wakeup->gpe_number); + acpi_sts = acpi_enable_gpe(wakeup->gpe_device, wakeup->gpe_number); if (ACPI_FAILURE(acpi_sts)) { dev_err(dev, "enable ose_gpe failed\n"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/hwspinlock/qcom_hwspinlock.c +++ linux-oracle-6.5-6.5.0/drivers/hwspinlock/qcom_hwspinlock.c @@ -69,9 +69,18 @@ .unlock = qcom_hwspinlock_unlock, }; +static const struct regmap_config sfpb_mutex_config = { + .reg_bits = 32, + .reg_stride = 4, + .val_bits = 32, + .max_register = 0x100, + .fast_io = true, +}; + static const struct qcom_hwspinlock_of_data of_sfpb_mutex = { .offset = 0x4, .stride = 0x4, + .regmap_config = &sfpb_mutex_config, }; static const struct regmap_config tcsr_msm8226_mutex_config = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/i2c/busses/i2c-aspeed.c +++ linux-oracle-6.5-6.5.0/drivers/i2c/busses/i2c-aspeed.c @@ -698,13 +698,16 @@ if (time_left == 0) { /* - * If timed out and bus is still busy in a multi master - * environment, attempt recovery at here. + * In a multi-master setup, if a timeout occurs, attempt + * recovery. But if the bus is idle, we still need to reset the + * i2c controller to clear the remaining interrupts. */ if (bus->multi_master && (readl(bus->base + ASPEED_I2C_CMD_REG) & ASPEED_I2CD_BUS_BUSY_STS)) aspeed_i2c_recover_bus(bus); + else + aspeed_i2c_reset(bus); /* * If timed out and the state is still pending, drop the pending only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/i2c/busses/i2c-designware-common.c +++ linux-oracle-6.5-6.5.0/drivers/i2c/busses/i2c-designware-common.c @@ -441,8 +441,25 @@ void __i2c_dw_disable(struct dw_i2c_dev *dev) { + unsigned int raw_intr_stats; + unsigned int enable; int timeout = 100; + bool abort_needed; unsigned int status; + int ret; + + regmap_read(dev->map, DW_IC_RAW_INTR_STAT, &raw_intr_stats); + regmap_read(dev->map, DW_IC_ENABLE, &enable); + + abort_needed = raw_intr_stats & DW_IC_INTR_MST_ON_HOLD; + if (abort_needed) { + regmap_write(dev->map, DW_IC_ENABLE, enable | DW_IC_ENABLE_ABORT); + ret = regmap_read_poll_timeout(dev->map, DW_IC_ENABLE, enable, + !(enable & DW_IC_ENABLE_ABORT), 10, + 100); + if (ret) + dev_err(dev->dev, "timeout while trying to abort current transfer\n"); + } do { __i2c_dw_disable_nowait(dev); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/i2c/busses/i2c-designware-core.h +++ linux-oracle-6.5-6.5.0/drivers/i2c/busses/i2c-designware-core.h @@ -98,6 +98,7 @@ #define DW_IC_INTR_START_DET BIT(10) #define DW_IC_INTR_GEN_CALL BIT(11) #define DW_IC_INTR_RESTART_DET BIT(12) +#define DW_IC_INTR_MST_ON_HOLD BIT(13) #define DW_IC_INTR_DEFAULT_MASK (DW_IC_INTR_RX_FULL | \ DW_IC_INTR_TX_ABRT | \ @@ -108,6 +109,8 @@ DW_IC_INTR_RX_UNDER | \ DW_IC_INTR_RD_REQ) +#define DW_IC_ENABLE_ABORT BIT(1) + #define DW_IC_STATUS_ACTIVITY BIT(0) #define DW_IC_STATUS_TFE BIT(2) #define DW_IC_STATUS_RFNE BIT(3) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/i2c/busses/i2c-i801.c +++ linux-oracle-6.5-6.5.0/drivers/i2c/busses/i2c-i801.c @@ -1754,6 +1754,7 @@ "SMBus I801 adapter at %04lx", priv->smba); err = i2c_add_adapter(&priv->adapter); if (err) { + platform_device_unregister(priv->tco_pdev); i801_acpi_remove(priv); return err; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/i2c/busses/i2c-npcm7xx.c +++ linux-oracle-6.5-6.5.0/drivers/i2c/busses/i2c-npcm7xx.c @@ -695,6 +695,7 @@ { struct i2c_msg *msgs; int msgs_num; + bool do_complete = false; msgs = bus->msgs; msgs_num = bus->msgs_num; @@ -723,23 +724,17 @@ msgs[1].flags & I2C_M_RD) msgs[1].len = info; } - if (completion_done(&bus->cmd_complete) == false) - complete(&bus->cmd_complete); - break; - + do_complete = true; + break; case I2C_NACK_IND: /* MASTER transmit got a NACK before tx all bytes */ bus->cmd_err = -ENXIO; - if (bus->master_or_slave == I2C_MASTER) - complete(&bus->cmd_complete); - + do_complete = true; break; case I2C_BUS_ERR_IND: /* Bus error */ bus->cmd_err = -EAGAIN; - if (bus->master_or_slave == I2C_MASTER) - complete(&bus->cmd_complete); - + do_complete = true; break; case I2C_WAKE_UP_IND: /* I2C wake up */ @@ -753,6 +748,8 @@ if (bus->slave) bus->master_or_slave = I2C_SLAVE; #endif + if (do_complete) + complete(&bus->cmd_complete); } static u8 npcm_i2c_fifo_usage(struct npcm_i2c *bus) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/i2c/busses/i2c-xiic.c +++ linux-oracle-6.5-6.5.0/drivers/i2c/busses/i2c-xiic.c @@ -710,7 +710,7 @@ * reset the IP instead of just flush fifos */ ret = xiic_reinit(i2c); - if (!ret) + if (ret < 0) dev_dbg(i2c->adap.dev.parent, "reinit failed\n"); if (i2c->rx_msg) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/i2c/muxes/i2c-demux-pinctrl.c +++ linux-oracle-6.5-6.5.0/drivers/i2c/muxes/i2c-demux-pinctrl.c @@ -243,6 +243,10 @@ props[i].name = devm_kstrdup(&pdev->dev, "status", GFP_KERNEL); props[i].value = devm_kstrdup(&pdev->dev, "ok", GFP_KERNEL); + if (!props[i].name || !props[i].value) { + err = -ENOMEM; + goto err_rollback; + } props[i].length = 3; of_changeset_init(&priv->chan[i].chgset); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/i2c/muxes/i2c-mux-gpio.c +++ linux-oracle-6.5-6.5.0/drivers/i2c/muxes/i2c-mux-gpio.c @@ -105,8 +105,10 @@ } else if (is_acpi_node(child)) { rc = acpi_get_local_address(ACPI_HANDLE_FWNODE(child), values + i); - if (rc) + if (rc) { + fwnode_handle_put(child); return dev_err_probe(dev, rc, "Cannot get address\n"); + } } i++; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/adc/ad7192.c +++ linux-oracle-6.5-6.5.0/drivers/iio/adc/ad7192.c @@ -177,6 +177,7 @@ struct ad7192_state { const struct ad7192_chip_info *chip_info; struct regulator *avdd; + struct regulator *vref; struct clk *mclk; u16 int_vref_mv; u32 fclk; @@ -1014,10 +1015,30 @@ if (ret) return dev_err_probe(&spi->dev, ret, "Failed to enable specified DVdd supply\n"); - ret = regulator_get_voltage(st->avdd); - if (ret < 0) { - dev_err(&spi->dev, "Device tree error, reference voltage undefined\n"); - return ret; + st->vref = devm_regulator_get_optional(&spi->dev, "vref"); + if (IS_ERR(st->vref)) { + if (PTR_ERR(st->vref) != -ENODEV) + return PTR_ERR(st->vref); + + ret = regulator_get_voltage(st->avdd); + if (ret < 0) + return dev_err_probe(&spi->dev, ret, + "Device tree error, AVdd voltage undefined\n"); + } else { + ret = regulator_enable(st->vref); + if (ret) { + dev_err(&spi->dev, "Failed to enable specified Vref supply\n"); + return ret; + } + + ret = devm_add_action_or_reset(&spi->dev, ad7192_reg_disable, st->vref); + if (ret) + return ret; + + ret = regulator_get_voltage(st->vref); + if (ret < 0) + return dev_err_probe(&spi->dev, ret, + "Device tree error, Vref voltage undefined\n"); } st->int_vref_mv = ret / 1000; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/adc/imx8qxp-adc.c +++ linux-oracle-6.5-6.5.0/drivers/iio/adc/imx8qxp-adc.c @@ -38,8 +38,8 @@ #define IMX8QXP_ADR_ADC_FCTRL 0x30 #define IMX8QXP_ADR_ADC_SWTRIG 0x34 #define IMX8QXP_ADR_ADC_TCTRL(tid) (0xc0 + (tid) * 4) -#define IMX8QXP_ADR_ADC_CMDH(cid) (0x100 + (cid) * 8) -#define IMX8QXP_ADR_ADC_CMDL(cid) (0x104 + (cid) * 8) +#define IMX8QXP_ADR_ADC_CMDL(cid) (0x100 + (cid) * 8) +#define IMX8QXP_ADR_ADC_CMDH(cid) (0x104 + (cid) * 8) #define IMX8QXP_ADR_ADC_RESFIFO 0x300 #define IMX8QXP_ADR_ADC_TST 0xffc only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/addac/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/iio/addac/Kconfig @@ -24,6 +24,8 @@ depends on GPIOLIB && SPI select REGMAP_SPI select CRC8 + select IIO_BUFFER + select IIO_TRIGGERED_BUFFER help Say yes here to build support for Analog Devices AD74412R/AD74413R quad-channel software configurable input/output solution. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c +++ linux-oracle-6.5-6.5.0/drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c @@ -190,8 +190,11 @@ /* * Ignore samples if the buffer is not set: it is needed if the ODR is * set but the buffer is not enabled yet. + * + * Note: iio_device_claim_buffer_mode() returns -EBUSY if the buffer + * is not enabled. */ - if (!iio_buffer_enabled(indio_dev)) + if (iio_device_claim_buffer_mode(indio_dev) < 0) return 0; out = (s16 *)st->samples; @@ -210,6 +213,7 @@ iio_push_to_buffers_with_timestamp(indio_dev, st->samples, timestamp + delta); + iio_device_release_buffer_mode(indio_dev); return 0; } EXPORT_SYMBOL_GPL(cros_ec_sensors_push_data); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/dac/ad3552r.c +++ linux-oracle-6.5-6.5.0/drivers/iio/dac/ad3552r.c @@ -140,8 +140,8 @@ }; enum ad3542r_id { - AD3542R_ID = 0x4008, - AD3552R_ID = 0x4009, + AD3542R_ID = 0x4009, + AD3552R_ID = 0x4008, }; enum ad3552r_ch_output_range { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/frequency/admv1013.c +++ linux-oracle-6.5-6.5.0/drivers/iio/frequency/admv1013.c @@ -351,9 +351,9 @@ if (vcm < 0) return vcm; - if (vcm < 1800000) + if (vcm <= 1800000) mixer_vgate = (2389 * vcm / 1000000 + 8100) / 100; - else if (vcm > 1800000 && vcm < 2600000) + else if (vcm > 1800000 && vcm <= 2600000) mixer_vgate = (2375 * vcm / 1000000 + 125) / 100; else return -EINVAL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/imu/bno055/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/iio/imu/bno055/Kconfig @@ -2,6 +2,8 @@ config BOSCH_BNO055 tristate + select IIO_BUFFER + select IIO_TRIGGERED_BUFFER config BOSCH_BNO055_SERIAL tristate "Bosch BNO055 attached via UART" only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/pressure/bmp280-core.c +++ linux-oracle-6.5-6.5.0/drivers/iio/pressure/bmp280-core.c @@ -2179,7 +2179,7 @@ * however as it happens, the BMP085 shares the chip ID of BMP180 * so we look for an IRQ if we have that. */ - if (irq > 0 || (chip_id == BMP180_CHIP_ID)) { + if (irq > 0 && (chip_id == BMP180_CHIP_ID)) { ret = bmp085_fetch_eoc_irq(dev, name, irq, data); if (ret) return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/pressure/dps310.c +++ linux-oracle-6.5-6.5.0/drivers/iio/pressure/dps310.c @@ -57,8 +57,8 @@ #define DPS310_RESET_MAGIC 0x09 #define DPS310_COEF_BASE 0x10 -/* Make sure sleep time is <= 20ms for usleep_range */ -#define DPS310_POLL_SLEEP_US(t) min(20000, (t) / 8) +/* Make sure sleep time is <= 30ms for usleep_range */ +#define DPS310_POLL_SLEEP_US(t) min(30000, (t) / 8) /* Silently handle error in rate value here */ #define DPS310_POLL_TIMEOUT_US(rc) ((rc) <= 0 ? 1000000 : 1000000 / (rc)) @@ -402,8 +402,8 @@ if (rc) return rc; - /* Wait for device chip access: 2.5ms in specification */ - usleep_range(2500, 12000); + /* Wait for device chip access: 15ms in specification */ + usleep_range(15000, 55000); return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iio/pressure/ms5611_core.c +++ linux-oracle-6.5-6.5.0/drivers/iio/pressure/ms5611_core.c @@ -76,7 +76,7 @@ crc = (crc >> 12) & 0x000F; - return crc_orig != 0x0000 && crc == crc_orig; + return crc == crc_orig; } static int ms5611_read_prom(struct iio_dev *indio_dev) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/core/cma.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/core/cma.c @@ -4946,7 +4946,7 @@ int err = 0; struct sockaddr *addr = (struct sockaddr *)&mc->addr; struct net_device *ndev = NULL; - struct ib_sa_multicast ib; + struct ib_sa_multicast ib = {}; enum ib_gid_type gid_type; bool send_only; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/core/cma_configfs.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/core/cma_configfs.c @@ -217,7 +217,7 @@ return -ENOMEM; for (i = 0; i < ports_num; i++) { - char port_str[10]; + char port_str[11]; ports[i].port_num = i + 1; snprintf(port_str, sizeof(port_str), "%u", i + 1); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/core/nldev.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/core/nldev.c @@ -2529,6 +2529,7 @@ }, [RDMA_NLDEV_CMD_SYS_SET] = { .doit = nldev_set_sys_set_doit, + .flags = RDMA_NL_ADMIN_PERM, }, [RDMA_NLDEV_CMD_STAT_SET] = { .doit = nldev_stat_set_doit, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/core/uverbs_main.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/core/uverbs_main.c @@ -535,7 +535,7 @@ if (hdr->in_words * 4 != count) return -EINVAL; - if (count < method_elm->req_size + sizeof(hdr)) { + if (count < method_elm->req_size + sizeof(*hdr)) { /* * rdma-core v18 and v19 have a bug where they send DESTROY_CQ * with a 16 byte write instead of 24. Old kernels didn't only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/hw/bnxt_re/qplib_rcfw.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/hw/bnxt_re/qplib_rcfw.c @@ -664,7 +664,6 @@ blocked = cookie & RCFW_CMD_IS_BLOCKING; cookie &= RCFW_MAX_COOKIE_VALUE; crsqe = &rcfw->crsqe_tbl[cookie]; - crsqe->is_in_used = false; if (WARN_ONCE(test_bit(FIRMWARE_STALL_DETECTED, &rcfw->cmdq.flags), @@ -680,8 +679,14 @@ atomic_dec(&rcfw->timeout_send); if (crsqe->is_waiter_alive) { - if (crsqe->resp) + if (crsqe->resp) { memcpy(crsqe->resp, qp_event, sizeof(*qp_event)); + /* Insert write memory barrier to ensure that + * response data is copied before clearing the + * flags + */ + smp_wmb(); + } if (!blocked) wait_cmds++; } @@ -693,6 +698,8 @@ if (!is_waiter_alive) crsqe->resp = NULL; + crsqe->is_in_used = false; + hwq->cons += req_size; /* This is a case to handle below scenario - only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/hw/cxgb4/cm.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/hw/cxgb4/cm.c @@ -1965,6 +1965,9 @@ int win; skb = get_skb(NULL, sizeof(*req), GFP_KERNEL); + if (!skb) + return -ENOMEM; + req = __skb_put_zero(skb, sizeof(*req)); req->op_compl = htonl(WR_OP_V(FW_OFLD_CONNECTION_WR)); req->len16_pkd = htonl(FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*req), 16))); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/hw/mlx4/sysfs.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/hw/mlx4/sysfs.c @@ -223,7 +223,7 @@ static int add_port_entries(struct mlx4_ib_dev *device, int port_num) { int i; - char buff[11]; + char buff[12]; struct mlx4_ib_iov_port *port = NULL; int ret = 0 ; struct ib_port_attr attr; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/hw/mlx5/fs.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/hw/mlx5/fs.c @@ -2470,8 +2470,8 @@ mlx5_steering_anchor_destroy_res(ft_prio); put_flow_table: put_flow_table(dev, ft_prio, true); - mutex_unlock(&dev->flow_db->lock); free_obj: + mutex_unlock(&dev->flow_db->lock); kfree(obj); return err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/hw/mlx5/main.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/hw/mlx5/main.c @@ -2070,7 +2070,7 @@ case MLX5_IB_MMAP_DEVICE_MEM: return "Device Memory"; default: - return NULL; + return "Unknown"; } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/infiniband/hw/mlx5/mr.c +++ linux-oracle-6.5-6.5.0/drivers/infiniband/hw/mlx5/mr.c @@ -301,7 +301,8 @@ static void set_cache_mkc(struct mlx5_cache_ent *ent, void *mkc) { - set_mkc_access_pd_addr_fields(mkc, 0, 0, ent->dev->umrc.pd); + set_mkc_access_pd_addr_fields(mkc, ent->rb_key.access_flags, 0, + ent->dev->umrc.pd); MLX5_SET(mkc, mkc, free, 1); MLX5_SET(mkc, mkc, umr_en, 1); MLX5_SET(mkc, mkc, access_mode_1_0, ent->rb_key.access_mode & 0x3); @@ -1024,19 +1025,26 @@ if (!dev->cache.wq) return; - cancel_delayed_work_sync(&dev->cache.remove_ent_dwork); mutex_lock(&dev->cache.rb_lock); for (node = rb_first(root); node; node = rb_next(node)) { ent = rb_entry(node, struct mlx5_cache_ent, node); xa_lock_irq(&ent->mkeys); ent->disabled = true; xa_unlock_irq(&ent->mkeys); - cancel_delayed_work_sync(&ent->dwork); } + mutex_unlock(&dev->cache.rb_lock); + + /* + * After all entries are disabled and will not reschedule on WQ, + * flush it and all async commands. + */ + flush_workqueue(dev->cache.wq); mlx5_mkey_cache_debugfs_cleanup(dev); mlx5_cmd_cleanup_async_ctx(&dev->async_ctx); + /* At this point all entries are disabled and have no concurrent work. */ + mutex_lock(&dev->cache.rb_lock); node = rb_first(root); while (node) { ent = rb_entry(node, struct mlx5_cache_ent, node); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/input/joystick/xpad.c +++ linux-oracle-6.5-6.5.0/drivers/input/joystick/xpad.c @@ -130,6 +130,7 @@ { 0x0079, 0x18d4, "GPD Win 2 X-Box Controller", 0, XTYPE_XBOX360 }, { 0x03eb, 0xff01, "Wooting One (Legacy)", 0, XTYPE_XBOX360 }, { 0x03eb, 0xff02, "Wooting Two (Legacy)", 0, XTYPE_XBOX360 }, + { 0x03f0, 0x0495, "HyperX Clutch Gladiate", 0, XTYPE_XBOXONE }, { 0x044f, 0x0f00, "Thrustmaster Wheel", 0, XTYPE_XBOX }, { 0x044f, 0x0f03, "Thrustmaster Wheel", 0, XTYPE_XBOX }, { 0x044f, 0x0f07, "Thrustmaster, Inc. Controller", 0, XTYPE_XBOX }, @@ -271,6 +272,7 @@ { 0x1038, 0x1430, "SteelSeries Stratus Duo", 0, XTYPE_XBOX360 }, { 0x1038, 0x1431, "SteelSeries Stratus Duo", 0, XTYPE_XBOX360 }, { 0x11c9, 0x55f0, "Nacon GC-100XF", 0, XTYPE_XBOX360 }, + { 0x11ff, 0x0511, "PXN V900", 0, XTYPE_XBOX360 }, { 0x1209, 0x2882, "Ardwiino Controller", 0, XTYPE_XBOX360 }, { 0x12ab, 0x0004, "Honey Bee Xbox360 dancepad", MAP_DPAD_TO_BUTTONS, XTYPE_XBOX360 }, { 0x12ab, 0x0301, "PDP AFTERGLOW AX.1", 0, XTYPE_XBOX360 }, @@ -457,6 +459,7 @@ { USB_INTERFACE_INFO('X', 'B', 0) }, /* Xbox USB-IF not-approved class */ XPAD_XBOX360_VENDOR(0x0079), /* GPD Win 2 controller */ XPAD_XBOX360_VENDOR(0x03eb), /* Wooting Keyboards (Legacy) */ + XPAD_XBOXONE_VENDOR(0x03f0), /* HP HyperX Xbox One controllers */ XPAD_XBOX360_VENDOR(0x044f), /* Thrustmaster Xbox 360 controllers */ XPAD_XBOX360_VENDOR(0x045e), /* Microsoft Xbox 360 controllers */ XPAD_XBOXONE_VENDOR(0x045e), /* Microsoft Xbox One controllers */ @@ -475,6 +478,7 @@ XPAD_XBOX360_VENDOR(0x1038), /* SteelSeries controllers */ XPAD_XBOXONE_VENDOR(0x10f5), /* Turtle Beach Controllers */ XPAD_XBOX360_VENDOR(0x11c9), /* Nacon GC100XF */ + XPAD_XBOX360_VENDOR(0x11ff), /* PXN V900 */ XPAD_XBOX360_VENDOR(0x1209), /* Ardwiino Controllers */ XPAD_XBOX360_VENDOR(0x12ab), /* Xbox 360 dance pads */ XPAD_XBOX360_VENDOR(0x1430), /* RedOctane Xbox 360 controllers */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/input/keyboard/tca6416-keypad.c +++ linux-oracle-6.5-6.5.0/drivers/input/keyboard/tca6416-keypad.c @@ -148,7 +148,7 @@ if (chip->use_polling) schedule_delayed_work(&chip->dwork, msecs_to_jiffies(100)); else - enable_irq(chip->irqnum); + enable_irq(chip->client->irq); return 0; } @@ -160,7 +160,7 @@ if (chip->use_polling) cancel_delayed_work_sync(&chip->dwork); else - disable_irq(chip->irqnum); + disable_irq(chip->client->irq); } static int tca6416_setup_registers(struct tca6416_keypad_chip *chip) @@ -266,12 +266,7 @@ goto fail1; if (!chip->use_polling) { - if (pdata->irq_is_gpio) - chip->irqnum = gpio_to_irq(client->irq); - else - chip->irqnum = client->irq; - - error = request_threaded_irq(chip->irqnum, NULL, + error = request_threaded_irq(client->irq, NULL, tca6416_keys_isr, IRQF_TRIGGER_FALLING | IRQF_ONESHOT | IRQF_NO_AUTOEN, @@ -279,7 +274,7 @@ if (error) { dev_dbg(&client->dev, "Unable to claim irq %d; error %d\n", - chip->irqnum, error); + client->irq, error); goto fail1; } } @@ -297,10 +292,8 @@ return 0; fail2: - if (!chip->use_polling) { - free_irq(chip->irqnum, chip); - enable_irq(chip->irqnum); - } + if (!chip->use_polling) + free_irq(client->irq, chip); fail1: input_free_device(input); kfree(chip); @@ -311,10 +304,8 @@ { struct tca6416_keypad_chip *chip = i2c_get_clientdata(client); - if (!chip->use_polling) { - free_irq(chip->irqnum, chip); - enable_irq(chip->irqnum); - } + if (!chip->use_polling) + free_irq(client->irq, chip); input_unregister_device(chip->input); kfree(chip); @@ -323,10 +314,9 @@ static int tca6416_keypad_suspend(struct device *dev) { struct i2c_client *client = to_i2c_client(dev); - struct tca6416_keypad_chip *chip = i2c_get_clientdata(client); if (device_may_wakeup(dev)) - enable_irq_wake(chip->irqnum); + enable_irq_wake(client->irq); return 0; } @@ -334,10 +324,9 @@ static int tca6416_keypad_resume(struct device *dev) { struct i2c_client *client = to_i2c_client(dev); - struct tca6416_keypad_chip *chip = i2c_get_clientdata(client); if (device_may_wakeup(dev)) - disable_irq_wake(chip->irqnum); + disable_irq_wake(client->irq); return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/input/misc/iqs7222.c +++ linux-oracle-6.5-6.5.0/drivers/input/misc/iqs7222.c @@ -1381,9 +1381,6 @@ if (error) return error; - sys_setup &= ~IQS7222_SYS_SETUP_INTF_MODE_MASK; - sys_setup &= ~IQS7222_SYS_SETUP_PWR_MODE_MASK; - for (i = 0; i < IQS7222_NUM_RETRIES; i++) { /* * Trigger ATI from streaming and normal-power modes so that @@ -1561,8 +1558,11 @@ return error; } - if (dir == READ) + if (dir == READ) { + iqs7222->sys_setup[0] &= ~IQS7222_SYS_SETUP_INTF_MODE_MASK; + iqs7222->sys_setup[0] &= ~IQS7222_SYS_SETUP_PWR_MODE_MASK; return 0; + } return iqs7222_ati_trigger(iqs7222); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/input/misc/powermate.c +++ linux-oracle-6.5-6.5.0/drivers/input/misc/powermate.c @@ -425,6 +425,7 @@ pm->requires_update = 0; usb_kill_urb(pm->irq); input_unregister_device(pm->input); + usb_kill_urb(pm->config); usb_free_urb(pm->irq); usb_free_urb(pm->config); powermate_free_buffers(interface_to_usbdev(intf), pm); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/input/mouse/elantech.c +++ linux-oracle-6.5-6.5.0/drivers/input/mouse/elantech.c @@ -2114,6 +2114,7 @@ psmouse->protocol_handler = elantech_process_byte; psmouse->disconnect = elantech_disconnect; psmouse->reconnect = elantech_reconnect; + psmouse->fast_reconnect = NULL; psmouse->pktsize = info->hw_version > 1 ? 6 : 4; return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/input/mouse/synaptics.c +++ linux-oracle-6.5-6.5.0/drivers/input/mouse/synaptics.c @@ -1623,6 +1623,7 @@ psmouse->set_rate = synaptics_set_rate; psmouse->disconnect = synaptics_disconnect; psmouse->reconnect = synaptics_reconnect; + psmouse->fast_reconnect = NULL; psmouse->cleanup = synaptics_reset; /* Synaptics can usually stay in sync without extra help */ psmouse->resync_time = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/input/touchscreen/goodix.c +++ linux-oracle-6.5-6.5.0/drivers/input/touchscreen/goodix.c @@ -900,6 +900,25 @@ dev_info(dev, "No ACPI GpioInt resource, assuming that the GPIO order is reset, int\n"); ts->irq_pin_access_method = IRQ_PIN_ACCESS_ACPI_GPIO; gpio_mapping = acpi_goodix_int_last_gpios; + } else if (ts->gpio_count == 1 && ts->gpio_int_idx == 0) { + /* + * On newer devices there is only 1 GpioInt resource and _PS0 + * does the whole reset sequence for us. + */ + acpi_device_fix_up_power(ACPI_COMPANION(dev)); + + /* + * Before the _PS0 call the int GPIO may have been in output + * mode and the call should have put the int GPIO in input mode, + * but the GPIO subsys cached state may still think it is + * in output mode, causing gpiochip_lock_as_irq() failure. + * + * Add a mapping for the int GPIO to make the + * gpiod_int = gpiod_get(..., GPIOD_IN) call succeed, + * which will explicitly set the direction to input. + */ + ts->irq_pin_access_method = IRQ_PIN_ACCESS_NONE; + gpio_mapping = acpi_goodix_int_first_gpios; } else { dev_warn(dev, "Unexpected ACPI resources: gpio_count %d, gpio_int_idx %d\n", ts->gpio_count, ts->gpio_int_idx); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/interconnect/core.c +++ linux-oracle-6.5-6.5.0/drivers/interconnect/core.c @@ -28,6 +28,7 @@ static int providers_count; static bool synced_state; static DEFINE_MUTEX(icc_lock); +static DEFINE_MUTEX(icc_bw_lock); static struct dentry *icc_debugfs_dir; static void icc_summary_show_one(struct seq_file *s, struct icc_node *n) @@ -631,7 +632,7 @@ if (WARN_ON(IS_ERR(path) || !path->num_nodes)) return -EINVAL; - mutex_lock(&icc_lock); + mutex_lock(&icc_bw_lock); old_avg = path->reqs[0].avg_bw; old_peak = path->reqs[0].peak_bw; @@ -663,7 +664,7 @@ apply_constraints(path); } - mutex_unlock(&icc_lock); + mutex_unlock(&icc_bw_lock); trace_icc_set_bw_end(path, ret); @@ -872,6 +873,7 @@ return; mutex_lock(&icc_lock); + mutex_lock(&icc_bw_lock); node->provider = provider; list_add_tail(&node->node_list, &provider->nodes); @@ -900,6 +902,7 @@ node->avg_bw = 0; node->peak_bw = 0; + mutex_unlock(&icc_bw_lock); mutex_unlock(&icc_lock); } EXPORT_SYMBOL_GPL(icc_node_add); @@ -1025,6 +1028,7 @@ return; mutex_lock(&icc_lock); + mutex_lock(&icc_bw_lock); synced_state = true; list_for_each_entry(p, &icc_providers, provider_list) { dev_dbg(p->dev, "interconnect provider is in synced state\n"); @@ -1037,13 +1041,21 @@ } } } + mutex_unlock(&icc_bw_lock); mutex_unlock(&icc_lock); } EXPORT_SYMBOL_GPL(icc_sync_state); static int __init icc_init(void) { - struct device_node *root = of_find_node_by_path("/"); + struct device_node *root; + + /* Teach lockdep about lock ordering wrt. shrinker: */ + fs_reclaim_acquire(GFP_KERNEL); + might_lock(&icc_bw_lock); + fs_reclaim_release(GFP_KERNEL); + + root = of_find_node_by_path("/"); providers_count = of_count_icc_providers(root); of_node_put(root); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iommu/apple-dart.c +++ linux-oracle-6.5-6.5.0/drivers/iommu/apple-dart.c @@ -671,8 +671,7 @@ return ret; switch (domain->type) { - case IOMMU_DOMAIN_DMA: - case IOMMU_DOMAIN_UNMANAGED: + default: ret = apple_dart_domain_add_streams(dart_domain, cfg); if (ret) return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-sva.c +++ linux-oracle-6.5-6.5.0/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3-sva.c @@ -186,6 +186,15 @@ } } +/* + * Cloned from the MAX_TLBI_OPS in arch/arm64/include/asm/tlbflush.h, this + * is used as a threshold to replace per-page TLBI commands to issue in the + * command queue with an address-space TLBI command, when SMMU w/o a range + * invalidation feature handles too many per-page TLBI commands, which will + * otherwise result in a soft lockup. + */ +#define CMDQ_MAX_TLBI_OPS (1 << (PAGE_SHIFT - 3)) + static void arm_smmu_mm_invalidate_range(struct mmu_notifier *mn, struct mm_struct *mm, unsigned long start, unsigned long end) @@ -200,10 +209,22 @@ * range. So do a simple translation here by calculating size correctly. */ size = end - start; + if (!(smmu_domain->smmu->features & ARM_SMMU_FEAT_RANGE_INV)) { + if (size >= CMDQ_MAX_TLBI_OPS * PAGE_SIZE) + size = 0; + } + + if (!(smmu_domain->smmu->features & ARM_SMMU_FEAT_BTM)) { + if (!size) + arm_smmu_tlb_inv_asid(smmu_domain->smmu, + smmu_mn->cd->asid); + else + arm_smmu_tlb_inv_range_asid(start, size, + smmu_mn->cd->asid, + PAGE_SIZE, false, + smmu_domain); + } - if (!(smmu_domain->smmu->features & ARM_SMMU_FEAT_BTM)) - arm_smmu_tlb_inv_range_asid(start, size, smmu_mn->cd->asid, - PAGE_SIZE, false, smmu_domain); arm_smmu_atc_inv_domain(smmu_domain, mm->pasid, start, size); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c +++ linux-oracle-6.5-6.5.0/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c @@ -1895,18 +1895,23 @@ /* Get the leaf page size */ tg = __ffs(smmu_domain->domain.pgsize_bitmap); + num_pages = size >> tg; + /* Convert page size of 12,14,16 (log2) to 1,2,3 */ cmd->tlbi.tg = (tg - 10) / 2; /* - * Determine what level the granule is at. For non-leaf, io-pgtable - * assumes .tlb_flush_walk can invalidate multiple levels at once, - * so ignore the nominal last-level granule and leave TTL=0. + * Determine what level the granule is at. For non-leaf, both + * io-pgtable and SVA pass a nominal last-level granule because + * they don't know what level(s) actually apply, so ignore that + * and leave TTL=0. However for various errata reasons we still + * want to use a range command, so avoid the SVA corner case + * where both scale and num could be 0 as well. */ if (cmd->tlbi.leaf) cmd->tlbi.ttl = 4 - ((ilog2(granule) - 3) / (tg - 3)); - - num_pages = size >> tg; + else if ((num_pages & CMDQ_TLBI_RANGE_NUM_MAX) == 1) + num_pages++; } cmds.num = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/iommu/intel/iommu.h +++ linux-oracle-6.5-6.5.0/drivers/iommu/intel/iommu.h @@ -680,7 +680,7 @@ struct iopf_queue *iopf_queue; unsigned char iopfq_name[16]; struct q_inval *qi; /* Queued invalidation info */ - u32 *iommu_state; /* Store iommu states between suspend and resume.*/ + u32 iommu_state[MAX_SR_DMAR_REGS]; /* Store iommu states between suspend and resume.*/ #ifdef CONFIG_IRQ_REMAP struct ir_table *ir_table; /* Interrupt remapping info */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/irqchip/irq-renesas-rzg2l.c +++ linux-oracle-6.5-6.5.0/drivers/irqchip/irq-renesas-rzg2l.c @@ -118,7 +118,7 @@ raw_spin_lock(&priv->lock); reg = readl_relaxed(priv->base + TSSR(tssr_index)); - reg &= ~(TSSEL_MASK << tssr_offset); + reg &= ~(TSSEL_MASK << TSSEL_SHIFT(tssr_offset)); writel_relaxed(reg, priv->base + TSSR(tssr_index)); raw_spin_unlock(&priv->lock); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mailbox/qcom-ipcc.c +++ linux-oracle-6.5-6.5.0/drivers/mailbox/qcom-ipcc.c @@ -227,10 +227,8 @@ ret = of_parse_phandle_with_args(client_dn, "mboxes", "#mbox-cells", j, &curr_ph); of_node_put(curr_ph.np); - if (!ret && curr_ph.np == controller_dn) { + if (!ret && curr_ph.np == controller_dn) ipcc->num_chans++; - break; - } } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mcb/mcb-core.c +++ linux-oracle-6.5-6.5.0/drivers/mcb/mcb-core.c @@ -387,17 +387,13 @@ static int __mcb_bus_add_devices(struct device *dev, void *data) { - struct mcb_device *mdev = to_mcb_device(dev); int retval; - if (mdev->is_added) - return 0; - retval = device_attach(dev); - if (retval < 0) + if (retval < 0) { dev_err(dev, "Error adding device (%d)\n", retval); - - mdev->is_added = true; + return retval; + } return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mcb/mcb-parse.c +++ linux-oracle-6.5-6.5.0/drivers/mcb/mcb-parse.c @@ -99,8 +99,6 @@ mdev->mem.end = mdev->mem.start + size - 1; mdev->mem.flags = IORESOURCE_MEM; - mdev->is_added = false; - ret = mcb_device_register(bus, mdev); if (ret < 0) goto err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/dm-core.h +++ linux-oracle-6.5-6.5.0/drivers/md/dm-core.h @@ -214,6 +214,7 @@ /* a list of devices used by this table */ struct list_head devices; + struct rw_semaphore devices_lock; /* events get handed up using this callback */ void (*event_fn)(void *data); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/dm-crypt.c +++ linux-oracle-6.5-6.5.0/drivers/md/dm-crypt.c @@ -753,7 +753,8 @@ int err; u8 *buf; - reqsize = ALIGN(crypto_skcipher_reqsize(tfm), __alignof__(__le64)); + reqsize = sizeof(*req) + crypto_skcipher_reqsize(tfm); + reqsize = ALIGN(reqsize, __alignof__(__le64)); req = kmalloc(reqsize + cc->iv_size, GFP_NOIO); if (!req) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/dm-ioctl.c +++ linux-oracle-6.5-6.5.0/drivers/md/dm-ioctl.c @@ -1630,6 +1630,8 @@ struct dm_dev_internal *dd; struct dm_target_deps *deps; + down_read(&table->devices_lock); + deps = get_result_buffer(param, param_size, &len); /* @@ -1644,7 +1646,7 @@ needed = struct_size(deps, dev, count); if (len < needed) { param->flags |= DM_BUFFER_FULL_FLAG; - return; + goto out; } /* @@ -1656,6 +1658,9 @@ deps->dev[count++] = huge_encode_dev(dd->dm_dev->bdev->bd_dev); param->data_size = param->data_start + needed; + +out: + up_read(&table->devices_lock); } static int table_deps(struct file *filp, struct dm_ioctl *param, size_t param_size) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/dm-table.c +++ linux-oracle-6.5-6.5.0/drivers/md/dm-table.c @@ -135,6 +135,7 @@ return -ENOMEM; INIT_LIST_HEAD(&t->devices); + init_rwsem(&t->devices_lock); if (!num_targets) num_targets = KEYS_PER_NODE; @@ -359,16 +360,20 @@ if (dev == disk_devt(t->md->disk)) return -EINVAL; + down_write(&t->devices_lock); + dd = find_device(&t->devices, dev); if (!dd) { dd = kmalloc(sizeof(*dd), GFP_KERNEL); - if (!dd) - return -ENOMEM; + if (!dd) { + r = -ENOMEM; + goto unlock_ret_r; + } r = dm_get_table_device(t->md, dev, mode, &dd->dm_dev); if (r) { kfree(dd); - return r; + goto unlock_ret_r; } refcount_set(&dd->count, 1); @@ -378,12 +383,17 @@ } else if (dd->dm_dev->mode != (mode | dd->dm_dev->mode)) { r = upgrade_mode(dd, mode, t->md); if (r) - return r; + goto unlock_ret_r; } refcount_inc(&dd->count); out: + up_write(&t->devices_lock); *result = dd->dm_dev; return 0; + +unlock_ret_r: + up_write(&t->devices_lock); + return r; } EXPORT_SYMBOL(dm_get_device); @@ -419,9 +429,12 @@ void dm_put_device(struct dm_target *ti, struct dm_dev *d) { int found = 0; - struct list_head *devices = &ti->table->devices; + struct dm_table *t = ti->table; + struct list_head *devices = &t->devices; struct dm_dev_internal *dd; + down_write(&t->devices_lock); + list_for_each_entry(dd, devices, list) { if (dd->dm_dev == d) { found = 1; @@ -430,14 +443,17 @@ } if (!found) { DMERR("%s: device %s not in table devices list", - dm_device_name(ti->table->md), d->name); - return; + dm_device_name(t->md), d->name); + goto unlock_ret; } if (refcount_dec_and_test(&dd->count)) { - dm_put_table_device(ti->table->md, d); + dm_put_table_device(t->md, d); list_del(&dd->list); kfree(dd); } + +unlock_ret: + up_write(&t->devices_lock); } EXPORT_SYMBOL(dm_put_device); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/dm-zoned-target.c +++ linux-oracle-6.5-6.5.0/drivers/md/dm-zoned-target.c @@ -748,17 +748,16 @@ /* * Cleanup zoned device information. */ -static void dmz_put_zoned_device(struct dm_target *ti) +static void dmz_put_zoned_devices(struct dm_target *ti) { struct dmz_target *dmz = ti->private; int i; - for (i = 0; i < dmz->nr_ddevs; i++) { - if (dmz->ddev[i]) { + for (i = 0; i < dmz->nr_ddevs; i++) + if (dmz->ddev[i]) dm_put_device(ti, dmz->ddev[i]); - dmz->ddev[i] = NULL; - } - } + + kfree(dmz->ddev); } static int dmz_fixup_devices(struct dm_target *ti) @@ -948,7 +947,7 @@ err_meta: dmz_dtr_metadata(dmz->metadata); err_dev: - dmz_put_zoned_device(ti); + dmz_put_zoned_devices(ti); err: kfree(dmz->dev); kfree(dmz); @@ -978,7 +977,7 @@ bioset_exit(&dmz->bio_set); - dmz_put_zoned_device(ti); + dmz_put_zoned_devices(ti); mutex_destroy(&dmz->chunk_lock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/dm.c +++ linux-oracle-6.5-6.5.0/drivers/md/dm.c @@ -715,24 +715,6 @@ rcu_read_unlock(); } -static inline struct dm_table *dm_get_live_table_bio(struct mapped_device *md, - int *srcu_idx, blk_opf_t bio_opf) -{ - if (bio_opf & REQ_NOWAIT) - return dm_get_live_table_fast(md); - else - return dm_get_live_table(md, srcu_idx); -} - -static inline void dm_put_live_table_bio(struct mapped_device *md, int srcu_idx, - blk_opf_t bio_opf) -{ - if (bio_opf & REQ_NOWAIT) - dm_put_live_table_fast(md); - else - dm_put_live_table(md, srcu_idx); -} - static char *_dm_claim_ptr = "I belong to device-mapper"; /* @@ -1833,9 +1815,8 @@ struct mapped_device *md = bio->bi_bdev->bd_disk->private_data; int srcu_idx; struct dm_table *map; - blk_opf_t bio_opf = bio->bi_opf; - map = dm_get_live_table_bio(md, &srcu_idx, bio_opf); + map = dm_get_live_table(md, &srcu_idx); /* If suspended, or map not yet available, queue this IO for later */ if (unlikely(test_bit(DMF_BLOCK_IO_FOR_SUSPEND, &md->flags)) || @@ -1851,7 +1832,7 @@ dm_split_and_process_bio(md, map, bio); out: - dm_put_live_table_bio(md, srcu_idx, bio_opf); + dm_put_live_table(md, srcu_idx); } static bool dm_poll_dm_io(struct dm_io *io, struct io_comp_batch *iob, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/md.h +++ linux-oracle-6.5-6.5.0/drivers/md/md.h @@ -211,6 +211,9 @@ * check if there is collision between raid1 * serial bios. */ + Holder, /* rdev is used as holder while opening + * underlying disk exclusively. + */ }; static inline int is_badblock(struct md_rdev *rdev, sector_t s, int sectors, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/raid1.c +++ linux-oracle-6.5-6.5.0/drivers/md/raid1.c @@ -1831,6 +1831,9 @@ int number = rdev->raid_disk; struct raid1_info *p = conf->mirrors + number; + if (unlikely(number >= conf->raid_disks)) + goto abort; + if (rdev != p->rdev) p = conf->mirrors + conf->raid_disks + number; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/md/raid5.c +++ linux-oracle-6.5-6.5.0/drivers/md/raid5.c @@ -854,6 +854,13 @@ set_bit(R5_INACTIVE_BLOCKED, &conf->cache_state); r5l_wake_reclaim(conf->log, 0); + + /* release batch_last before wait to avoid risk of deadlock */ + if (ctx && ctx->batch_last) { + raid5_release_stripe(ctx->batch_last); + ctx->batch_last = NULL; + } + wait_event_lock_irq(conf->wait_for_stripe, is_inactive_blocked(conf, hash), *(conf->hash_locks + hash)); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/common/videobuf2/frame_vector.c +++ linux-oracle-6.5-6.5.0/drivers/media/common/videobuf2/frame_vector.c @@ -31,6 +31,10 @@ * different type underlying the specified range of virtual addresses. * When the function isn't able to map a single page, it returns error. * + * Note that get_vaddr_frames() cannot follow VM_IO mappings. It used + * to be able to do that, but that could (racily) return non-refcounted + * pfns. + * * This function takes care of grabbing mmap_lock as necessary. */ int get_vaddr_frames(unsigned long start, unsigned int nr_frames, bool write, @@ -59,8 +63,6 @@ if (likely(ret > 0)) return ret; - /* This used to (racily) return non-refcounted pfns. Let people know */ - WARN_ONCE(1, "get_vaddr_frames() cannot follow VM_IO mapping"); vec->nr_frames = 0; return ret ? ret : -EFAULT; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/pci/cx23885/cx23885-video.c +++ linux-oracle-6.5-6.5.0/drivers/media/pci/cx23885/cx23885-video.c @@ -413,7 +413,7 @@ dev->height >> 1); break; default: - BUG(); + return -EINVAL; /* should not happen */ } dprintk(2, "[%p/%d] buffer_init - %dx%d %dbpp 0x%08x - dma=0x%08lx\n", buf, buf->vb.vb2_buf.index, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/platform/marvell/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/media/platform/marvell/Kconfig @@ -7,7 +7,7 @@ depends on V4L_PLATFORM_DRIVERS depends on PCI && I2C && VIDEO_DEV depends on COMMON_CLK - select VIDEO_OV7670 + select VIDEO_OV7670 if MEDIA_SUBDRV_AUTOSELECT && VIDEO_CAMERA_SENSOR select VIDEOBUF2_VMALLOC select VIDEOBUF2_DMA_CONTIG select VIDEOBUF2_DMA_SG @@ -22,7 +22,7 @@ depends on I2C && VIDEO_DEV depends on ARCH_MMP || COMPILE_TEST depends on COMMON_CLK - select VIDEO_OV7670 + select VIDEO_OV7670 if MEDIA_SUBDRV_AUTOSELECT && VIDEO_CAMERA_SENSOR select I2C_GPIO select VIDEOBUF2_VMALLOC select VIDEOBUF2_DMA_CONTIG only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/platform/mediatek/mdp3/mtk-mdp3-comp.c +++ linux-oracle-6.5-6.5.0/drivers/media/platform/mediatek/mdp3/mtk-mdp3-comp.c @@ -892,11 +892,13 @@ ret = cmdq_dev_get_client_reg(&comp_pdev->dev, &cmdq_reg, index); if (ret != 0) { dev_err(&comp_pdev->dev, "cmdq_dev_get_subsys fail!\n"); + put_device(&comp_pdev->dev); return -EINVAL; } comp->subsys_id = cmdq_reg.subsys; dev_dbg(&comp_pdev->dev, "subsys id=%d\n", cmdq_reg.subsys); + put_device(&comp_pdev->dev); return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/platform/via/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/media/platform/via/Kconfig @@ -7,7 +7,7 @@ depends on V4L_PLATFORM_DRIVERS depends on FB_VIA && VIDEO_DEV select VIDEOBUF2_DMA_SG - select VIDEO_OV7670 + select VIDEO_OV7670 if VIDEO_CAMERA_SENSOR help Driver support for the integrated camera controller in VIA Chrome9 chipsets. Currently only tested on OLPC xo-1.5 systems only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/dvb-usb-v2/af9035.c +++ linux-oracle-6.5-6.5.0/drivers/media/usb/dvb-usb-v2/af9035.c @@ -322,6 +322,8 @@ ret = -EOPNOTSUPP; } else if ((msg[0].addr == state->af9033_i2c_addr[0]) || (msg[0].addr == state->af9033_i2c_addr[1])) { + if (msg[0].len < 3 || msg[1].len < 1) + return -EOPNOTSUPP; /* demod access via firmware interface */ u32 reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 | msg[0].buf[2]; @@ -381,6 +383,8 @@ ret = -EOPNOTSUPP; } else if ((msg[0].addr == state->af9033_i2c_addr[0]) || (msg[0].addr == state->af9033_i2c_addr[1])) { + if (msg[0].len < 3) + return -EOPNOTSUPP; /* demod access via firmware interface */ u32 reg = msg[0].buf[0] << 16 | msg[0].buf[1] << 8 | msg[0].buf[2]; @@ -388,10 +392,7 @@ if (msg[0].addr == state->af9033_i2c_addr[1]) reg |= 0x100000; - ret = (msg[0].len >= 3) ? af9035_wr_regs(d, reg, - &msg[0].buf[3], - msg[0].len - 3) - : -EOPNOTSUPP; + ret = af9035_wr_regs(d, reg, &msg[0].buf[3], msg[0].len - 3); } else { /* I2C write */ u8 buf[MAX_XFER_SIZE]; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/dvb-usb-v2/anysee.c +++ linux-oracle-6.5-6.5.0/drivers/media/usb/dvb-usb-v2/anysee.c @@ -202,7 +202,7 @@ while (i < num) { if (num > i + 1 && (msg[i+1].flags & I2C_M_RD)) { - if (msg[i].len > 2 || msg[i+1].len > 60) { + if (msg[i].len != 2 || msg[i + 1].len > 60) { ret = -EOPNOTSUPP; break; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/dvb-usb-v2/az6007.c +++ linux-oracle-6.5-6.5.0/drivers/media/usb/dvb-usb-v2/az6007.c @@ -788,6 +788,10 @@ if (az6007_xfer_debug) printk(KERN_DEBUG "az6007: I2C W addr=0x%x len=%d\n", addr, msgs[i].len); + if (msgs[i].len < 1) { + ret = -EIO; + goto err; + } req = AZ6007_I2C_WR; index = msgs[i].buf[0]; value = addr | (1 << 8); @@ -802,6 +806,10 @@ if (az6007_xfer_debug) printk(KERN_DEBUG "az6007: I2C R addr=0x%x len=%d\n", addr, msgs[i].len); + if (msgs[i].len < 1) { + ret = -EIO; + goto err; + } req = AZ6007_I2C_RD; index = msgs[i].buf[0]; value = addr; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/dvb-usb-v2/gl861.c +++ linux-oracle-6.5-6.5.0/drivers/media/usb/dvb-usb-v2/gl861.c @@ -120,7 +120,7 @@ } else if (num == 2 && !(msg[0].flags & I2C_M_RD) && (msg[1].flags & I2C_M_RD)) { /* I2C write + read */ - if (msg[0].len > 1 || msg[1].len > sizeof(ctx->buf)) { + if (msg[0].len != 1 || msg[1].len > sizeof(ctx->buf)) { ret = -EOPNOTSUPP; goto err; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/dvb-usb/af9005.c +++ linux-oracle-6.5-6.5.0/drivers/media/usb/dvb-usb/af9005.c @@ -422,6 +422,10 @@ if (ret == 0) ret = 2; } else { + if (msg[0].len < 2) { + ret = -EOPNOTSUPP; + goto unlock; + } /* write one or more registers */ reg = msg[0].buf[0]; addr = msg[0].addr; @@ -431,6 +435,7 @@ ret = 1; } +unlock: mutex_unlock(&d->i2c_mutex); return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/dvb-usb/dw2102.c +++ linux-oracle-6.5-6.5.0/drivers/media/usb/dvb-usb/dw2102.c @@ -128,6 +128,10 @@ switch (num) { case 2: + if (msg[0].len < 1) { + num = -EOPNOTSUPP; + break; + } /* read stv0299 register */ value = msg[0].buf[0];/* register */ for (i = 0; i < msg[1].len; i++) { @@ -139,6 +143,10 @@ case 1: switch (msg[0].addr) { case 0x68: + if (msg[0].len < 2) { + num = -EOPNOTSUPP; + break; + } /* write to stv0299 register */ buf6[0] = 0x2a; buf6[1] = msg[0].buf[0]; @@ -148,6 +156,10 @@ break; case 0x60: if (msg[0].flags == 0) { + if (msg[0].len < 4) { + num = -EOPNOTSUPP; + break; + } /* write to tuner pll */ buf6[0] = 0x2c; buf6[1] = 5; @@ -159,6 +171,10 @@ dw210x_op_rw(d->udev, 0xb2, 0, 0, buf6, 7, DW210X_WRITE_MSG); } else { + if (msg[0].len < 1) { + num = -EOPNOTSUPP; + break; + } /* read from tuner */ dw210x_op_rw(d->udev, 0xb5, 0, 0, buf6, 1, DW210X_READ_MSG); @@ -166,12 +182,20 @@ } break; case (DW2102_RC_QUERY): + if (msg[0].len < 2) { + num = -EOPNOTSUPP; + break; + } dw210x_op_rw(d->udev, 0xb8, 0, 0, buf6, 2, DW210X_READ_MSG); msg[0].buf[0] = buf6[0]; msg[0].buf[1] = buf6[1]; break; case (DW2102_VOLTAGE_CTRL): + if (msg[0].len < 1) { + num = -EOPNOTSUPP; + break; + } buf6[0] = 0x30; buf6[1] = msg[0].buf[0]; dw210x_op_rw(d->udev, 0xb2, 0, 0, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/em28xx/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/media/usb/em28xx/Kconfig @@ -12,8 +12,8 @@ select VIDEO_SAA711X if MEDIA_SUBDRV_AUTOSELECT select VIDEO_TVP5150 if MEDIA_SUBDRV_AUTOSELECT select VIDEO_MSP3400 if MEDIA_SUBDRV_AUTOSELECT - select VIDEO_MT9V011 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_CAMERA_SUPPORT - select VIDEO_OV2640 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_CAMERA_SUPPORT + select VIDEO_MT9V011 if MEDIA_SUBDRV_AUTOSELECT && VIDEO_CAMERA_SENSOR + select VIDEO_OV2640 if MEDIA_SUBDRV_AUTOSELECT && VIDEO_CAMERA_SENSOR help This is a video4linux driver for Empia 28xx based TV cards. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/go7007/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/media/usb/go7007/Kconfig @@ -12,8 +12,8 @@ select VIDEO_TW2804 if MEDIA_SUBDRV_AUTOSELECT select VIDEO_TW9903 if MEDIA_SUBDRV_AUTOSELECT select VIDEO_TW9906 if MEDIA_SUBDRV_AUTOSELECT - select VIDEO_OV7640 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_CAMERA_SUPPORT select VIDEO_UDA1342 if MEDIA_SUBDRV_AUTOSELECT + select VIDEO_OV7640 if MEDIA_SUBDRV_AUTOSELECT && VIDEO_CAMERA_SENSOR help This is a video4linux driver for the WIS GO7007 MPEG encoder chip. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/usb/uvc/uvc_ctrl.c +++ linux-oracle-6.5-6.5.0/drivers/media/usb/uvc/uvc_ctrl.c @@ -1402,6 +1402,9 @@ query_menu->id = id; query_menu->index = index; + if (index >= BITS_PER_TYPE(mapping->menu_mask)) + return -EINVAL; + ret = mutex_lock_interruptible(&chain->ctrl_mutex); if (ret < 0) return -ERESTARTSYS; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/media/v4l2-core/v4l2-subdev.c +++ linux-oracle-6.5-6.5.0/drivers/media/v4l2-core/v4l2-subdev.c @@ -517,6 +517,13 @@ V4L2_SUBDEV_CLIENT_CAP_STREAMS; int rval; + /* + * If the streams API is not enabled, remove V4L2_SUBDEV_CAP_STREAMS. + * Remove this when the API is no longer experimental. + */ + if (!v4l2_subdev_enable_streams_api) + streams_subdev = false; + switch (cmd) { case VIDIOC_SUBDEV_QUERYCAP: { struct v4l2_subdev_capability *cap = arg; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/misc/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/misc/Kconfig @@ -496,6 +496,7 @@ config OPEN_DICE tristate "Open Profile for DICE driver" depends on OF_RESERVED_MEM + depends on HAS_IOMEM help This driver exposes a DICE reserved memory region to userspace via a character device. The memory region contains Compound Device only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mmc/host/sdhci-esdhc-imx.c +++ linux-oracle-6.5-6.5.0/drivers/mmc/host/sdhci-esdhc-imx.c @@ -171,8 +171,8 @@ #define ESDHC_FLAG_HS400 BIT(9) /* * The IP has errata ERR010450 - * uSDHC: Due to the I/O timing limit, for SDR mode, SD card clock can't - * exceed 150MHz, for DDR mode, SD card clock can't exceed 45MHz. + * uSDHC: At 1.8V due to the I/O timing limit, for SDR mode, SD card + * clock can't exceed 150MHz, for DDR mode, SD card clock can't exceed 45MHz. */ #define ESDHC_FLAG_ERR010450 BIT(10) /* The IP supports HS400ES mode */ @@ -961,7 +961,8 @@ | ESDHC_CLOCK_MASK); sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL); - if (imx_data->socdata->flags & ESDHC_FLAG_ERR010450) { + if ((imx_data->socdata->flags & ESDHC_FLAG_ERR010450) && + (!(host->quirks2 & SDHCI_QUIRK2_NO_1_8_V))) { unsigned int max_clock; max_clock = imx_data->is_ddr ? 45000000 : 150000000; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/atmel.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/atmel.c @@ -48,9 +48,11 @@ .is_locked = at25fs_nor_is_locked, }; -static void at25fs_nor_late_init(struct spi_nor *nor) +static int at25fs_nor_late_init(struct spi_nor *nor) { nor->params->locking_ops = &at25fs_nor_locking_ops; + + return 0; } static const struct spi_nor_fixups at25fs_nor_fixups = { @@ -149,9 +151,11 @@ .is_locked = atmel_nor_is_global_protected, }; -static void atmel_nor_global_protection_late_init(struct spi_nor *nor) +static int atmel_nor_global_protection_late_init(struct spi_nor *nor) { nor->params->locking_ops = &atmel_nor_global_protection_ops; + + return 0; } static const struct spi_nor_fixups atmel_nor_global_protection_fixups = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/core.h +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/core.h @@ -377,6 +377,7 @@ * than reading the status register to indicate they * are ready for a new command * @locking_ops: SPI NOR locking methods. + * @priv: flash's private data. */ struct spi_nor_flash_parameter { u64 bank_size; @@ -405,6 +406,7 @@ int (*ready)(struct spi_nor *nor); const struct spi_nor_locking_ops *locking_ops; + void *priv; }; /** @@ -431,7 +433,7 @@ const struct sfdp_parameter_header *bfpt_header, const struct sfdp_bfpt *bfpt); int (*post_sfdp)(struct spi_nor *nor); - void (*late_init)(struct spi_nor *nor); + int (*late_init)(struct spi_nor *nor); }; /** only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/issi.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/issi.c @@ -29,7 +29,7 @@ .post_bfpt = is25lp256_post_bfpt_fixups, }; -static void pm25lv_nor_late_init(struct spi_nor *nor) +static int pm25lv_nor_late_init(struct spi_nor *nor) { struct spi_nor_erase_map *map = &nor->params->erase_map; int i; @@ -38,6 +38,8 @@ for (i = 0; i < SNOR_ERASE_TYPE_MAX; i++) if (map->erase_type[i].size == 4096) map->erase_type[i].opcode = SPINOR_OP_BE_4K_PMC; + + return 0; } static const struct spi_nor_fixups pm25lv_nor_fixups = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/macronix.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/macronix.c @@ -110,10 +110,12 @@ nor->params->quad_enable = spi_nor_sr1_bit6_quad_enable; } -static void macronix_nor_late_init(struct spi_nor *nor) +static int macronix_nor_late_init(struct spi_nor *nor) { if (!nor->params->set_4byte_addr_mode) nor->params->set_4byte_addr_mode = spi_nor_set_4byte_addr_mode_en4b_ex4b; + + return 0; } static const struct spi_nor_fixups macronix_nor_fixups = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/micron-st.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/micron-st.c @@ -429,7 +429,7 @@ nor->params->quad_enable = NULL; } -static void micron_st_nor_late_init(struct spi_nor *nor) +static int micron_st_nor_late_init(struct spi_nor *nor) { struct spi_nor_flash_parameter *params = nor->params; @@ -438,6 +438,8 @@ if (!params->set_4byte_addr_mode) params->set_4byte_addr_mode = spi_nor_set_4byte_addr_mode_wren_en4b_ex4b; + + return 0; } static const struct spi_nor_fixups micron_st_nor_fixups = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/spansion.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/spansion.c @@ -4,14 +4,18 @@ * Copyright (C) 2014, Freescale Semiconductor, Inc. */ +#include +#include #include #include "core.h" /* flash_info mfr_flag. Used to clear sticky prorietary SR bits. */ #define USE_CLSR BIT(0) +#define USE_CLPEF BIT(1) #define SPINOR_OP_CLSR 0x30 /* Clear status register 1 */ +#define SPINOR_OP_CLPEF 0x82 /* Clear program/erase failure flags */ #define SPINOR_OP_RD_ANY_REG 0x65 /* Read any register */ #define SPINOR_OP_WR_ANY_REG 0x71 /* Write any register */ #define SPINOR_REG_CYPRESS_VREG 0x00800000 @@ -25,6 +29,7 @@ #define SPINOR_REG_CYPRESS_CFR2 0x3 #define SPINOR_REG_CYPRESS_CFR2V \ (SPINOR_REG_CYPRESS_VREG + SPINOR_REG_CYPRESS_CFR2) +#define SPINOR_REG_CYPRESS_CFR2_MEMLAT_MASK GENMASK(3, 0) #define SPINOR_REG_CYPRESS_CFR2_MEMLAT_11_24 0xb #define SPINOR_REG_CYPRESS_CFR2_ADRBYT BIT(7) #define SPINOR_REG_CYPRESS_CFR3 0x4 @@ -57,22 +62,32 @@ SPI_MEM_OP_DUMMY(ndummy, 0), \ SPI_MEM_OP_DATA_IN(1, buf, 0)) -#define SPANSION_CLSR_OP \ - SPI_MEM_OP(SPI_MEM_OP_CMD(SPINOR_OP_CLSR, 0), \ +#define SPANSION_OP(opcode) \ + SPI_MEM_OP(SPI_MEM_OP_CMD(opcode, 0), \ SPI_MEM_OP_NO_ADDR, \ SPI_MEM_OP_NO_DUMMY, \ SPI_MEM_OP_NO_DATA) /** + * struct spansion_nor_params - Spansion private parameters. + * @clsr: Clear Status Register or Clear Program and Erase Failure Flag + * opcode. + */ +struct spansion_nor_params { + u8 clsr; +}; + +/** * spansion_nor_clear_sr() - Clear the Status Register. * @nor: pointer to 'struct spi_nor'. */ static void spansion_nor_clear_sr(struct spi_nor *nor) { + const struct spansion_nor_params *priv_params = nor->params->priv; int ret; if (nor->spimem) { - struct spi_mem_op op = SPANSION_CLSR_OP; + struct spi_mem_op op = SPANSION_OP(priv_params->clsr); spi_nor_spimem_setup_op(nor, &op, nor->reg_proto); @@ -148,8 +163,18 @@ int ret; u8 addr_mode_nbytes = nor->params->addr_mode_nbytes; + op = (struct spi_mem_op) + CYPRESS_NOR_RD_ANY_REG_OP(addr_mode_nbytes, + SPINOR_REG_CYPRESS_CFR2V, 0, buf); + + ret = spi_nor_read_any_reg(nor, &op, nor->reg_proto); + if (ret) + return ret; + /* Use 24 dummy cycles for memory array reads. */ - *buf = SPINOR_REG_CYPRESS_CFR2_MEMLAT_11_24; + *buf &= ~SPINOR_REG_CYPRESS_CFR2_MEMLAT_MASK; + *buf |= FIELD_PREP(SPINOR_REG_CYPRESS_CFR2_MEMLAT_MASK, + SPINOR_REG_CYPRESS_CFR2_MEMLAT_11_24); op = (struct spi_mem_op) CYPRESS_NOR_WR_ANY_REG_OP(addr_mode_nbytes, SPINOR_REG_CYPRESS_CFR2V, 1, buf); @@ -528,9 +553,11 @@ return 0; } -static void s25fs256t_late_init(struct spi_nor *nor) +static int s25fs256t_late_init(struct spi_nor *nor) { cypress_nor_ecc_init(nor); + + return 0; } static struct spi_nor_fixups s25fs256t_fixups = { @@ -586,7 +613,7 @@ return cypress_nor_get_page_size(nor); } -static void s25hx_t_late_init(struct spi_nor *nor) +static int s25hx_t_late_init(struct spi_nor *nor) { struct spi_nor_flash_parameter *params = nor->params; @@ -598,6 +625,8 @@ /* Replace ready() with multi die version */ if (params->n_dice) params->ready = cypress_nor_sr_ready_and_clear; + + return 0; } static struct spi_nor_fixups s25hx_t_fixups = { @@ -665,10 +694,12 @@ return 0; } -static void s28hx_t_late_init(struct spi_nor *nor) +static int s28hx_t_late_init(struct spi_nor *nor) { nor->params->octal_dtr_enable = cypress_nor_octal_dtr_enable; cypress_nor_ecc_init(nor); + + return 0; } static const struct spi_nor_fixups s28hx_t_fixups = { @@ -792,47 +823,54 @@ FIXUP_FLAGS(SPI_NOR_4B_OPCODES) }, { "s25fs256t", INFO6(0x342b19, 0x0f0890, 0, 0) PARSE_SFDP + MFR_FLAGS(USE_CLPEF) .fixups = &s25fs256t_fixups }, { "s25hl512t", INFO6(0x342a1a, 0x0f0390, 256 * 1024, 256) PARSE_SFDP - MFR_FLAGS(USE_CLSR) + MFR_FLAGS(USE_CLPEF) .fixups = &s25hx_t_fixups }, { "s25hl01gt", INFO6(0x342a1b, 0x0f0390, 256 * 1024, 512) PARSE_SFDP - MFR_FLAGS(USE_CLSR) + MFR_FLAGS(USE_CLPEF) .fixups = &s25hx_t_fixups }, { "s25hl02gt", INFO6(0x342a1c, 0x0f0090, 0, 0) PARSE_SFDP + MFR_FLAGS(USE_CLPEF) FLAGS(NO_CHIP_ERASE) .fixups = &s25hx_t_fixups }, { "s25hs512t", INFO6(0x342b1a, 0x0f0390, 256 * 1024, 256) PARSE_SFDP - MFR_FLAGS(USE_CLSR) + MFR_FLAGS(USE_CLPEF) .fixups = &s25hx_t_fixups }, { "s25hs01gt", INFO6(0x342b1b, 0x0f0390, 256 * 1024, 512) PARSE_SFDP - MFR_FLAGS(USE_CLSR) + MFR_FLAGS(USE_CLPEF) .fixups = &s25hx_t_fixups }, { "s25hs02gt", INFO6(0x342b1c, 0x0f0090, 0, 0) PARSE_SFDP + MFR_FLAGS(USE_CLPEF) FLAGS(NO_CHIP_ERASE) .fixups = &s25hx_t_fixups }, { "cy15x104q", INFO6(0x042cc2, 0x7f7f7f, 512 * 1024, 1) FLAGS(SPI_NOR_NO_ERASE) }, { "s28hl512t", INFO(0x345a1a, 0, 256 * 1024, 256) PARSE_SFDP + MFR_FLAGS(USE_CLPEF) .fixups = &s28hx_t_fixups, }, { "s28hl01gt", INFO(0x345a1b, 0, 256 * 1024, 512) PARSE_SFDP + MFR_FLAGS(USE_CLPEF) .fixups = &s28hx_t_fixups, }, { "s28hs512t", INFO(0x345b1a, 0, 256 * 1024, 256) PARSE_SFDP + MFR_FLAGS(USE_CLPEF) .fixups = &s28hx_t_fixups, }, { "s28hs01gt", INFO(0x345b1b, 0, 256 * 1024, 512) PARSE_SFDP + MFR_FLAGS(USE_CLPEF) .fixups = &s28hx_t_fixups, }, }; @@ -876,17 +914,35 @@ return !(nor->bouncebuf[0] & SR_WIP); } -static void spansion_nor_late_init(struct spi_nor *nor) +static int spansion_nor_late_init(struct spi_nor *nor) { - if (nor->params->size > SZ_16M) { + struct spi_nor_flash_parameter *params = nor->params; + struct spansion_nor_params *priv_params; + u8 mfr_flags = nor->info->mfr_flags; + + if (params->size > SZ_16M) { nor->flags |= SNOR_F_4B_OPCODES; /* No small sector erase for 4-byte command set */ nor->erase_opcode = SPINOR_OP_SE; nor->mtd.erasesize = nor->info->sector_size; } - if (nor->info->mfr_flags & USE_CLSR) - nor->params->ready = spansion_nor_sr_ready_and_clear; + if (mfr_flags & (USE_CLSR | USE_CLPEF)) { + priv_params = devm_kmalloc(nor->dev, sizeof(*priv_params), + GFP_KERNEL); + if (!priv_params) + return -ENOMEM; + + if (mfr_flags & USE_CLSR) + priv_params->clsr = SPINOR_OP_CLSR; + else if (mfr_flags & USE_CLPEF) + priv_params->clsr = SPINOR_OP_CLPEF; + + params->priv = priv_params; + params->ready = spansion_nor_sr_ready_and_clear; + } + + return 0; } static const struct spi_nor_fixups spansion_nor_fixups = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/sst.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/sst.c @@ -49,9 +49,11 @@ .is_locked = sst26vf_nor_is_locked, }; -static void sst26vf_nor_late_init(struct spi_nor *nor) +static int sst26vf_nor_late_init(struct spi_nor *nor) { nor->params->locking_ops = &sst26vf_nor_locking_ops; + + return 0; } static const struct spi_nor_fixups sst26vf_nor_fixups = { @@ -203,10 +205,12 @@ return ret; } -static void sst_nor_late_init(struct spi_nor *nor) +static int sst_nor_late_init(struct spi_nor *nor) { if (nor->info->mfr_flags & SST_WRITE) nor->mtd._write = sst_nor_write; + + return 0; } static const struct spi_nor_fixups sst_nor_fixups = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/winbond.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/winbond.c @@ -120,8 +120,9 @@ NO_SFDP_FLAGS(SECT_4K) }, { "w25q80bl", INFO(0xef4014, 0, 64 * 1024, 16) NO_SFDP_FLAGS(SECT_4K) }, - { "w25q128", INFO(0xef4018, 0, 64 * 1024, 256) - NO_SFDP_FLAGS(SECT_4K) }, + { "w25q128", INFO(0xef4018, 0, 0, 0) + PARSE_SFDP + FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) }, { "w25q256", INFO(0xef4019, 0, 64 * 1024, 512) NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) .fixups = &w25q256_fixups }, @@ -216,7 +217,7 @@ .is_locked = spi_nor_otp_is_locked_sr2, }; -static void winbond_nor_late_init(struct spi_nor *nor) +static int winbond_nor_late_init(struct spi_nor *nor) { struct spi_nor_flash_parameter *params = nor->params; @@ -232,6 +233,8 @@ * from BFPT, if any. */ params->set_4byte_addr_mode = winbond_nor_set_4byte_addr_mode; + + return 0; } static const struct spi_nor_fixups winbond_nor_fixups = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/mtd/spi-nor/xilinx.c +++ linux-oracle-6.5-6.5.0/drivers/mtd/spi-nor/xilinx.c @@ -155,10 +155,12 @@ return 0; } -static void xilinx_nor_late_init(struct spi_nor *nor) +static int xilinx_nor_late_init(struct spi_nor *nor) { nor->params->setup = xilinx_nor_setup; nor->params->ready = xilinx_nor_sr_ready; + + return 0; } static const struct spi_nor_fixups xilinx_nor_fixups = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/can/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/can/Kconfig @@ -185,10 +185,10 @@ config CAN_SUN4I tristate "Allwinner A10 CAN controller" - depends on MACH_SUN4I || MACH_SUN7I || COMPILE_TEST + depends on MACH_SUN4I || MACH_SUN7I || (RISCV && ARCH_SUNXI) || COMPILE_TEST help Say Y here if you want to use CAN controller found on Allwinner - A10/A20 SoCs. + A10/A20/D1 SoCs. To compile this driver as a module, choose M here: the module will be called sun4i_can. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/can/sja1000/sja1000.c +++ linux-oracle-6.5-6.5.0/drivers/net/can/sja1000/sja1000.c @@ -392,7 +392,13 @@ struct net_device *dev = (struct net_device *)dev_id; netdev_dbg(dev, "performing a soft reset upon overrun\n"); - sja1000_start(dev); + + netif_tx_lock(dev); + + can_free_echo_skb(dev, 0, NULL); + sja1000_set_mode(dev, CAN_MODE_START); + + netif_tx_unlock(dev); return IRQ_HANDLED; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/can/sun4i_can.c +++ linux-oracle-6.5-6.5.0/drivers/net/can/sun4i_can.c @@ -91,6 +91,8 @@ #define SUN4I_REG_BUF12_ADDR 0x0070 /* CAN Tx/Rx Buffer 12 */ #define SUN4I_REG_ACPC_ADDR 0x0040 /* CAN Acceptance Code 0 */ #define SUN4I_REG_ACPM_ADDR 0x0044 /* CAN Acceptance Mask 0 */ +#define SUN4I_REG_ACPC_ADDR_D1 0x0028 /* CAN Acceptance Code 0 on the D1 */ +#define SUN4I_REG_ACPM_ADDR_D1 0x002C /* CAN Acceptance Mask 0 on the D1 */ #define SUN4I_REG_RBUF_RBACK_START_ADDR 0x0180 /* CAN transmit buffer start */ #define SUN4I_REG_RBUF_RBACK_END_ADDR 0x01b0 /* CAN transmit buffer end */ @@ -205,9 +207,11 @@ * struct sun4ican_quirks - Differences between SoC variants. * * @has_reset: SoC needs reset deasserted. + * @acp_offset: Offset of ACPC and ACPM registers */ struct sun4ican_quirks { bool has_reset; + int acp_offset; }; struct sun4ican_priv { @@ -216,6 +220,7 @@ struct clk *clk; struct reset_control *reset; spinlock_t cmdreg_lock; /* lock for concurrent cmd register writes */ + int acp_offset; }; static const struct can_bittiming_const sun4ican_bittiming_const = { @@ -338,8 +343,8 @@ } /* set filters - we accept all */ - writel(0x00000000, priv->base + SUN4I_REG_ACPC_ADDR); - writel(0xFFFFFFFF, priv->base + SUN4I_REG_ACPM_ADDR); + writel(0x00000000, priv->base + SUN4I_REG_ACPC_ADDR + priv->acp_offset); + writel(0xFFFFFFFF, priv->base + SUN4I_REG_ACPM_ADDR + priv->acp_offset); /* clear error counters and error code capture */ writel(0, priv->base + SUN4I_REG_ERRC_ADDR); @@ -768,10 +773,17 @@ static const struct sun4ican_quirks sun4ican_quirks_a10 = { .has_reset = false, + .acp_offset = 0, }; static const struct sun4ican_quirks sun4ican_quirks_r40 = { .has_reset = true, + .acp_offset = 0, +}; + +static const struct sun4ican_quirks sun4ican_quirks_d1 = { + .has_reset = true, + .acp_offset = (SUN4I_REG_ACPC_ADDR_D1 - SUN4I_REG_ACPC_ADDR), }; static const struct of_device_id sun4ican_of_match[] = { @@ -785,6 +797,9 @@ .compatible = "allwinner,sun8i-r40-can", .data = &sun4ican_quirks_r40 }, { + .compatible = "allwinner,sun20i-d1-can", + .data = &sun4ican_quirks_d1 + }, { /* sentinel */ }, }; @@ -870,6 +885,7 @@ priv->base = addr; priv->clk = clk; priv->reset = reset; + priv->acp_offset = quirks->acp_offset; spin_lock_init(&priv->cmdreg_lock); platform_set_drvdata(pdev, dev); @@ -907,4 +923,4 @@ MODULE_AUTHOR("Peter Chen "); MODULE_AUTHOR("Gerhard Bertelsmann "); MODULE_LICENSE("Dual BSD/GPL"); -MODULE_DESCRIPTION("CAN driver for Allwinner SoCs (A10/A20)"); +MODULE_DESCRIPTION("CAN driver for Allwinner SoCs (A10/A20/D1)"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/microchip/ksz_common.c +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/microchip/ksz_common.c @@ -2337,13 +2337,27 @@ { struct ksz_device *dev = ds->priv; - if (dev->chip_id == KSZ8830_CHIP_ID) { + switch (dev->chip_id) { + case KSZ8830_CHIP_ID: /* Silicon Errata Sheet (DS80000830A): * Port 1 does not work with LinkMD Cable-Testing. * Port 1 does not respond to received PAUSE control frames. */ if (!port) return MICREL_KSZ8_P1_ERRATA; + break; + case KSZ9477_CHIP_ID: + /* KSZ9477 Errata DS80000754C + * + * Module 4: Energy Efficient Ethernet (EEE) feature select must + * be manually disabled + * The EEE feature is enabled by default, but it is not fully + * operational. It must be manually disabled through register + * controls. If not disabled, the PHY ports can auto-negotiate + * to enable EEE, and this feature can cause link drops when + * linked to another device supporting EEE. + */ + return MICREL_NO_EEE; } return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/mv88e6xxx/chip.c +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/mv88e6xxx/chip.c @@ -3040,14 +3040,16 @@ * from the wrong location resulting in the switch booting * to wrong mode and inoperable. */ - mv88e6xxx_g1_wait_eeprom_done(chip); + if (chip->info->ops->get_eeprom) + mv88e6xxx_g2_eeprom_wait(chip); gpiod_set_value_cansleep(gpiod, 1); usleep_range(10000, 20000); gpiod_set_value_cansleep(gpiod, 0); usleep_range(10000, 20000); - mv88e6xxx_g1_wait_eeprom_done(chip); + if (chip->info->ops->get_eeprom) + mv88e6xxx_g2_eeprom_wait(chip); } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/mv88e6xxx/global1.c +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/mv88e6xxx/global1.c @@ -75,37 +75,6 @@ return mv88e6xxx_g1_wait_bit(chip, MV88E6XXX_G1_STS, bit, 1); } -void mv88e6xxx_g1_wait_eeprom_done(struct mv88e6xxx_chip *chip) -{ - const unsigned long timeout = jiffies + 1 * HZ; - u16 val; - int err; - - /* Wait up to 1 second for the switch to finish reading the - * EEPROM. - */ - while (time_before(jiffies, timeout)) { - err = mv88e6xxx_g1_read(chip, MV88E6XXX_G1_STS, &val); - if (err) { - dev_err(chip->dev, "Error reading status"); - return; - } - - /* If the switch is still resetting, it may not - * respond on the bus, and so MDIO read returns - * 0xffff. Differentiate between that, and waiting for - * the EEPROM to be done by bit 0 being set. - */ - if (val != 0xffff && - val & BIT(MV88E6XXX_G1_STS_IRQ_EEPROM_DONE)) - return; - - usleep_range(1000, 2000); - } - - dev_err(chip->dev, "Timeout waiting for EEPROM done"); -} - /* Offset 0x01: Switch MAC Address Register Bytes 0 & 1 * Offset 0x02: Switch MAC Address Register Bytes 2 & 3 * Offset 0x03: Switch MAC Address Register Bytes 4 & 5 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/mv88e6xxx/global1.h +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/mv88e6xxx/global1.h @@ -282,7 +282,6 @@ int mv88e6185_g1_reset(struct mv88e6xxx_chip *chip); int mv88e6352_g1_reset(struct mv88e6xxx_chip *chip); int mv88e6250_g1_reset(struct mv88e6xxx_chip *chip); -void mv88e6xxx_g1_wait_eeprom_done(struct mv88e6xxx_chip *chip); int mv88e6185_g1_ppu_enable(struct mv88e6xxx_chip *chip); int mv88e6185_g1_ppu_disable(struct mv88e6xxx_chip *chip); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/mv88e6xxx/global2.c +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/mv88e6xxx/global2.c @@ -340,7 +340,7 @@ * Offset 0x15: EEPROM Addr (for 8-bit data access) */ -static int mv88e6xxx_g2_eeprom_wait(struct mv88e6xxx_chip *chip) +int mv88e6xxx_g2_eeprom_wait(struct mv88e6xxx_chip *chip) { int bit = __bf_shf(MV88E6XXX_G2_EEPROM_CMD_BUSY); int err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/mv88e6xxx/global2.h +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/mv88e6xxx/global2.h @@ -365,6 +365,7 @@ int mv88e6xxx_g2_device_mapping_write(struct mv88e6xxx_chip *chip, int target, int port); +int mv88e6xxx_g2_eeprom_wait(struct mv88e6xxx_chip *chip); extern const struct mv88e6xxx_irq_ops mv88e6097_watchdog_ops; extern const struct mv88e6xxx_irq_ops mv88e6250_watchdog_ops; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/qca/qca8k-8xxx.c +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/qca/qca8k-8xxx.c @@ -505,8 +505,8 @@ void *val_buf, size_t val_len) { int i, count = val_len / sizeof(u32), ret; - u32 reg = *(u32 *)reg_buf & U16_MAX; struct qca8k_priv *priv = ctx; + u32 reg = *(u16 *)reg_buf; if (priv->mgmt_master && !qca8k_read_eth(priv, reg, val_buf, val_len)) @@ -527,8 +527,8 @@ const void *val_buf, size_t val_len) { int i, count = val_len / sizeof(u32), ret; - u32 reg = *(u32 *)reg_buf & U16_MAX; struct qca8k_priv *priv = ctx; + u32 reg = *(u16 *)reg_buf; u32 *val = (u32 *)val_buf; if (priv->mgmt_master && @@ -666,6 +666,15 @@ goto err_read_skb; } + /* It seems that accessing the switch's internal PHYs via management + * packets still uses the MDIO bus within the switch internally, and + * these accesses can conflict with external MDIO accesses to other + * devices on the MDIO bus. + * We therefore need to lock the MDIO bus onto which the switch is + * connected. + */ + mutex_lock(&priv->bus->mdio_lock); + /* Actually start the request: * 1. Send mdio master packet * 2. Busy Wait for mdio master command @@ -678,6 +687,7 @@ mgmt_master = priv->mgmt_master; if (!mgmt_master) { mutex_unlock(&mgmt_eth_data->mutex); + mutex_unlock(&priv->bus->mdio_lock); ret = -EINVAL; goto err_mgmt_master; } @@ -765,6 +775,7 @@ QCA8K_ETHERNET_TIMEOUT); mutex_unlock(&mgmt_eth_data->mutex); + mutex_unlock(&priv->bus->mdio_lock); return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/sja1105/sja1105.h +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/sja1105/sja1105.h @@ -132,6 +132,8 @@ int max_frame_mem; int num_ports; bool multiple_cascade_ports; + /* Every {port, TXQ} has its own CBS shaper */ + bool fixed_cbs_mapping; enum dsa_tag_protocol tag_proto; const struct sja1105_dynamic_table_ops *dyn_ops; const struct sja1105_table_ops *static_ops; @@ -264,6 +266,8 @@ * the switch doesn't confuse them with one another. */ struct mutex mgmt_lock; + /* Serializes accesses to the FDB */ + struct mutex fdb_lock; /* PTP two-step TX timestamp ID, and its serialization lock */ spinlock_t ts_id_lock; u8 ts_id; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/sja1105/sja1105_dynamic_config.c +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/sja1105/sja1105_dynamic_config.c @@ -1175,18 +1175,15 @@ static int sja1105_dynamic_config_poll_valid(struct sja1105_private *priv, - struct sja1105_dyn_cmd *cmd, - const struct sja1105_dynamic_table_ops *ops) + const struct sja1105_dynamic_table_ops *ops, + void *entry, bool check_valident, + bool check_errors) { u8 packed_buf[SJA1105_MAX_DYN_CMD_SIZE] = {}; + struct sja1105_dyn_cmd cmd = {}; int rc; - /* We don't _need_ to read the full entry, just the command area which - * is a fixed SJA1105_SIZE_DYN_CMD. But our cmd_packing() API expects a - * buffer that contains the full entry too. Additionally, our API - * doesn't really know how many bytes into the buffer does the command - * area really begin. So just read back the whole entry. - */ + /* Read back the whole entry + command structure. */ rc = sja1105_xfer_buf(priv, SPI_READ, ops->addr, packed_buf, ops->packed_size); if (rc) @@ -1195,11 +1192,25 @@ /* Unpack the command structure, and return it to the caller in case it * needs to perform further checks on it (VALIDENT). */ - memset(cmd, 0, sizeof(*cmd)); - ops->cmd_packing(packed_buf, cmd, UNPACK); + ops->cmd_packing(packed_buf, &cmd, UNPACK); /* Hardware hasn't cleared VALID => still working on it */ - return cmd->valid ? -EAGAIN : 0; + if (cmd.valid) + return -EAGAIN; + + if (check_valident && !cmd.valident && !(ops->access & OP_VALID_ANYWAY)) + return -ENOENT; + + if (check_errors && cmd.errors) + return -EINVAL; + + /* Don't dereference possibly NULL pointer - maybe caller + * only wanted to see whether the entry existed or not. + */ + if (entry) + ops->entry_packing(packed_buf, entry, UNPACK); + + return 0; } /* Poll the dynamic config entry's control area until the hardware has @@ -1208,16 +1219,19 @@ */ static int sja1105_dynamic_config_wait_complete(struct sja1105_private *priv, - struct sja1105_dyn_cmd *cmd, - const struct sja1105_dynamic_table_ops *ops) + const struct sja1105_dynamic_table_ops *ops, + void *entry, bool check_valident, + bool check_errors) { - int rc; + int err, rc; - return read_poll_timeout(sja1105_dynamic_config_poll_valid, - rc, rc != -EAGAIN, - SJA1105_DYNAMIC_CONFIG_SLEEP_US, - SJA1105_DYNAMIC_CONFIG_TIMEOUT_US, - false, priv, cmd, ops); + err = read_poll_timeout(sja1105_dynamic_config_poll_valid, + rc, rc != -EAGAIN, + SJA1105_DYNAMIC_CONFIG_SLEEP_US, + SJA1105_DYNAMIC_CONFIG_TIMEOUT_US, + false, priv, ops, entry, check_valident, + check_errors); + return err < 0 ? err : rc; } /* Provides read access to the settings through the dynamic interface @@ -1286,25 +1300,14 @@ mutex_lock(&priv->dynamic_config_lock); rc = sja1105_xfer_buf(priv, SPI_WRITE, ops->addr, packed_buf, ops->packed_size); - if (rc < 0) { - mutex_unlock(&priv->dynamic_config_lock); - return rc; - } - - rc = sja1105_dynamic_config_wait_complete(priv, &cmd, ops); - mutex_unlock(&priv->dynamic_config_lock); if (rc < 0) - return rc; + goto out; - if (!cmd.valident && !(ops->access & OP_VALID_ANYWAY)) - return -ENOENT; + rc = sja1105_dynamic_config_wait_complete(priv, ops, entry, true, false); +out: + mutex_unlock(&priv->dynamic_config_lock); - /* Don't dereference possibly NULL pointer - maybe caller - * only wanted to see whether the entry existed or not. - */ - if (entry) - ops->entry_packing(packed_buf, entry, UNPACK); - return 0; + return rc; } int sja1105_dynamic_config_write(struct sja1105_private *priv, @@ -1356,22 +1359,14 @@ mutex_lock(&priv->dynamic_config_lock); rc = sja1105_xfer_buf(priv, SPI_WRITE, ops->addr, packed_buf, ops->packed_size); - if (rc < 0) { - mutex_unlock(&priv->dynamic_config_lock); - return rc; - } - - rc = sja1105_dynamic_config_wait_complete(priv, &cmd, ops); - mutex_unlock(&priv->dynamic_config_lock); if (rc < 0) - return rc; + goto out; - cmd = (struct sja1105_dyn_cmd) {0}; - ops->cmd_packing(packed_buf, &cmd, UNPACK); - if (cmd.errors) - return -EINVAL; + rc = sja1105_dynamic_config_wait_complete(priv, ops, NULL, false, true); +out: + mutex_unlock(&priv->dynamic_config_lock); - return 0; + return rc; } static u8 sja1105_crc8_add(u8 crc, u8 byte, u8 poly) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/sja1105/sja1105_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/sja1105/sja1105_main.c @@ -1805,6 +1805,7 @@ struct dsa_db db) { struct sja1105_private *priv = ds->priv; + int rc; if (!vid) { switch (db.type) { @@ -1819,12 +1820,16 @@ } } - return priv->info->fdb_add_cmd(ds, port, addr, vid); + mutex_lock(&priv->fdb_lock); + rc = priv->info->fdb_add_cmd(ds, port, addr, vid); + mutex_unlock(&priv->fdb_lock); + + return rc; } -static int sja1105_fdb_del(struct dsa_switch *ds, int port, - const unsigned char *addr, u16 vid, - struct dsa_db db) +static int __sja1105_fdb_del(struct dsa_switch *ds, int port, + const unsigned char *addr, u16 vid, + struct dsa_db db) { struct sja1105_private *priv = ds->priv; @@ -1844,6 +1849,20 @@ return priv->info->fdb_del_cmd(ds, port, addr, vid); } +static int sja1105_fdb_del(struct dsa_switch *ds, int port, + const unsigned char *addr, u16 vid, + struct dsa_db db) +{ + struct sja1105_private *priv = ds->priv; + int rc; + + mutex_lock(&priv->fdb_lock); + rc = __sja1105_fdb_del(ds, port, addr, vid, db); + mutex_unlock(&priv->fdb_lock); + + return rc; +} + static int sja1105_fdb_dump(struct dsa_switch *ds, int port, dsa_fdb_dump_cb_t *cb, void *data) { @@ -1875,13 +1894,14 @@ if (!(l2_lookup.destports & BIT(port))) continue; - /* We need to hide the FDB entry for unknown multicast */ - if (l2_lookup.macaddr == SJA1105_UNKNOWN_MULTICAST && - l2_lookup.mask_macaddr == SJA1105_UNKNOWN_MULTICAST) - continue; - u64_to_ether_addr(l2_lookup.macaddr, macaddr); + /* Hardware FDB is shared for fdb and mdb, "bridge fdb show" + * only wants to see unicast + */ + if (is_multicast_ether_addr(macaddr)) + continue; + /* We need to hide the dsa_8021q VLANs from the user. */ if (vid_is_dsa_8021q(l2_lookup.vlanid)) l2_lookup.vlanid = 0; @@ -1905,6 +1925,8 @@ }; int i; + mutex_lock(&priv->fdb_lock); + for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) { struct sja1105_l2_lookup_entry l2_lookup = {0}; u8 macaddr[ETH_ALEN]; @@ -1918,7 +1940,7 @@ if (rc) { dev_err(ds->dev, "Failed to read FDB: %pe\n", ERR_PTR(rc)); - return; + break; } if (!(l2_lookup.destports & BIT(port))) @@ -1930,14 +1952,16 @@ u64_to_ether_addr(l2_lookup.macaddr, macaddr); - rc = sja1105_fdb_del(ds, port, macaddr, l2_lookup.vlanid, db); + rc = __sja1105_fdb_del(ds, port, macaddr, l2_lookup.vlanid, db); if (rc) { dev_err(ds->dev, "Failed to delete FDB entry %pM vid %lld: %pe\n", macaddr, l2_lookup.vlanid, ERR_PTR(rc)); - return; + break; } } + + mutex_unlock(&priv->fdb_lock); } static int sja1105_mdb_add(struct dsa_switch *ds, int port, @@ -2122,11 +2146,36 @@ } #define BYTES_PER_KBIT (1000LL / 8) +/* Port 0 (the uC port) does not have CBS shapers */ +#define SJA1110_FIXED_CBS(port, prio) ((((port) - 1) * SJA1105_NUM_TC) + (prio)) + +static int sja1105_find_cbs_shaper(struct sja1105_private *priv, + int port, int prio) +{ + int i; + + if (priv->info->fixed_cbs_mapping) { + i = SJA1110_FIXED_CBS(port, prio); + if (i >= 0 && i < priv->info->num_cbs_shapers) + return i; + + return -1; + } + + for (i = 0; i < priv->info->num_cbs_shapers; i++) + if (priv->cbs[i].port == port && priv->cbs[i].prio == prio) + return i; + + return -1; +} static int sja1105_find_unused_cbs_shaper(struct sja1105_private *priv) { int i; + if (priv->info->fixed_cbs_mapping) + return -1; + for (i = 0; i < priv->info->num_cbs_shapers; i++) if (!priv->cbs[i].idle_slope && !priv->cbs[i].send_slope) return i; @@ -2157,14 +2206,20 @@ { struct sja1105_private *priv = ds->priv; struct sja1105_cbs_entry *cbs; + s64 port_transmit_rate_kbps; int index; if (!offload->enable) return sja1105_delete_cbs_shaper(priv, port, offload->queue); - index = sja1105_find_unused_cbs_shaper(priv); - if (index < 0) - return -ENOSPC; + /* The user may be replacing an existing shaper */ + index = sja1105_find_cbs_shaper(priv, port, offload->queue); + if (index < 0) { + /* That isn't the case - see if we can allocate a new one */ + index = sja1105_find_unused_cbs_shaper(priv); + if (index < 0) + return -ENOSPC; + } cbs = &priv->cbs[index]; cbs->port = port; @@ -2174,9 +2229,17 @@ */ cbs->credit_hi = offload->hicredit; cbs->credit_lo = abs(offload->locredit); - /* User space is in kbits/sec, hardware in bytes/sec */ - cbs->idle_slope = offload->idleslope * BYTES_PER_KBIT; - cbs->send_slope = abs(offload->sendslope * BYTES_PER_KBIT); + /* User space is in kbits/sec, while the hardware in bytes/sec times + * link speed. Since the given offload->sendslope is good only for the + * current link speed anyway, and user space is likely to reprogram it + * when that changes, don't even bother to track the port's link speed, + * but deduce the port transmit rate from idleslope - sendslope. + */ + port_transmit_rate_kbps = offload->idleslope - offload->sendslope; + cbs->idle_slope = div_s64(offload->idleslope * BYTES_PER_KBIT, + port_transmit_rate_kbps); + cbs->send_slope = div_s64(abs(offload->sendslope * BYTES_PER_KBIT), + port_transmit_rate_kbps); /* Convert the negative values from 64-bit 2's complement * to 32-bit 2's complement (for the case of 0x80000000 whose * negative is still negative). @@ -2241,6 +2304,7 @@ int rc, i; s64 now; + mutex_lock(&priv->fdb_lock); mutex_lock(&priv->mgmt_lock); mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; @@ -2353,6 +2417,7 @@ goto out; out: mutex_unlock(&priv->mgmt_lock); + mutex_unlock(&priv->fdb_lock); return rc; } @@ -2922,7 +2987,9 @@ { struct sja1105_l2_lookup_entry *l2_lookup; struct sja1105_table *table; - int match; + int match, rc; + + mutex_lock(&priv->fdb_lock); table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP]; l2_lookup = table->entries; @@ -2935,7 +3002,8 @@ if (match == table->entry_count) { NL_SET_ERR_MSG_MOD(extack, "Could not find FDB entry for unknown multicast"); - return -ENOSPC; + rc = -ENOSPC; + goto out; } if (flags.val & BR_MCAST_FLOOD) @@ -2943,10 +3011,13 @@ else l2_lookup[match].destports &= ~BIT(to); - return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, - l2_lookup[match].index, - &l2_lookup[match], - true); + rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP, + l2_lookup[match].index, + &l2_lookup[match], true); +out: + mutex_unlock(&priv->fdb_lock); + + return rc; } static int sja1105_port_pre_bridge_flags(struct dsa_switch *ds, int port, @@ -3316,6 +3387,7 @@ mutex_init(&priv->ptp_data.lock); mutex_init(&priv->dynamic_config_lock); mutex_init(&priv->mgmt_lock); + mutex_init(&priv->fdb_lock); spin_lock_init(&priv->ts_id_lock); rc = sja1105_parse_dt(priv); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/dsa/sja1105/sja1105_spi.c +++ linux-oracle-6.5-6.5.0/drivers/net/dsa/sja1105/sja1105_spi.c @@ -781,6 +781,7 @@ .tag_proto = DSA_TAG_PROTO_SJA1110, .can_limit_mcast_flood = true, .multiple_cascade_ports = true, + .fixed_cbs_mapping = true, .ptp_ts_bits = 32, .ptpegr_ts_bytes = 8, .max_frame_mem = SJA1110_MAX_FRAME_MEMORY, @@ -831,6 +832,7 @@ .tag_proto = DSA_TAG_PROTO_SJA1110, .can_limit_mcast_flood = true, .multiple_cascade_ports = true, + .fixed_cbs_mapping = true, .ptp_ts_bits = 32, .ptpegr_ts_bytes = 8, .max_frame_mem = SJA1110_MAX_FRAME_MEMORY, @@ -881,6 +883,7 @@ .tag_proto = DSA_TAG_PROTO_SJA1110, .can_limit_mcast_flood = true, .multiple_cascade_ports = true, + .fixed_cbs_mapping = true, .ptp_ts_bits = 32, .ptpegr_ts_bytes = 8, .max_frame_mem = SJA1110_MAX_FRAME_MEMORY, @@ -931,6 +934,7 @@ .tag_proto = DSA_TAG_PROTO_SJA1110, .can_limit_mcast_flood = true, .multiple_cascade_ports = true, + .fixed_cbs_mapping = true, .ptp_ts_bits = 32, .ptpegr_ts_bytes = 8, .max_frame_mem = SJA1110_MAX_FRAME_MEMORY, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/adi/adin1110.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/adi/adin1110.c @@ -739,7 +739,7 @@ u32 port_rules = 0; u8 mask[ETH_ALEN]; - memset(mask, 0xFF, ETH_ALEN); + eth_broadcast_addr(mask); if (accept_broadcast && port_priv->state == BR_STATE_FORWARDING) port_rules = adin1110_port_rules(port_priv, true, true); @@ -760,7 +760,7 @@ return -EADDRNOTAVAIL; eth_hw_addr_set(netdev, dev_addr); - memset(mask, 0xFF, ETH_ALEN); + eth_broadcast_addr(mask); mac_slot = (!port_priv->nr) ? ADIN_MAC_P1_ADDR_SLOT : ADIN_MAC_P2_ADDR_SLOT; port_rules = adin1110_port_rules(port_priv, true, false); @@ -1271,7 +1271,7 @@ goto out; /* Allow only BPDUs to be passed to the CPU */ - memset(mask, 0xFF, ETH_ALEN); + eth_broadcast_addr(mask); port_rules = adin1110_port_rules(port_priv, true, false); ret = adin1110_write_mac_address(port_priv, mac_slot, mac, mask, port_rules); @@ -1385,8 +1385,8 @@ return -ENOMEM; other_port = priv->ports[!port_priv->nr]; - port_rules = adin1110_port_rules(port_priv, false, true); - memset(mask, 0xFF, ETH_ALEN); + port_rules = adin1110_port_rules(other_port, false, true); + eth_broadcast_addr(mask); return adin1110_write_mac_address(other_port, mac_nr, (u8 *)fdb->addr, mask, port_rules); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/amazon/ena/ena_netdev.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/amazon/ena/ena_netdev.c @@ -1833,6 +1833,9 @@ return work_done; error: + if (xdp_flags & ENA_XDP_REDIRECT) + xdp_do_flush(); + adapter = netdev_priv(rx_ring->netdev); if (rc == -ENOSPC) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/atheros/alx/ethtool.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/atheros/alx/ethtool.c @@ -292,9 +292,8 @@ spin_lock(&alx->stats_lock); alx_update_hw_stats(hw); - BUILD_BUG_ON(sizeof(hw->stats) - offsetof(struct alx_hw_stats, rx_ok) < - ALX_NUM_STATS * sizeof(u64)); - memcpy(data, &hw->stats.rx_ok, ALX_NUM_STATS * sizeof(u64)); + BUILD_BUG_ON(sizeof(hw->stats) != ALX_NUM_STATS * sizeof(u64)); + memcpy(data, &hw->stats, sizeof(hw->stats)); spin_unlock(&alx->stats_lock); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/Makefile +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/Makefile @@ -4,3 +4,4 @@ bnxt_en-y := bnxt.o bnxt_hwrm.o bnxt_sriov.o bnxt_ethtool.o bnxt_dcb.o bnxt_ulp.o bnxt_xdp.o bnxt_ptp.o bnxt_vfr.o bnxt_devlink.o bnxt_dim.o bnxt_coredump.o bnxt_en-$(CONFIG_BNXT_FLOWER_OFFLOAD) += bnxt_tc.o bnxt_en-$(CONFIG_DEBUG_FS) += bnxt_debugfs.o +bnxt_en-$(CONFIG_BNXT_HWMON) += bnxt_hwmon.o only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt.c @@ -52,8 +52,6 @@ #include #include #include -#include -#include #include #include #include @@ -71,6 +69,7 @@ #include "bnxt_tc.h" #include "bnxt_devlink.h" #include "bnxt_debugfs.h" +#include "bnxt_hwmon.h" #define BNXT_TX_TIMEOUT (5 * HZ) #define BNXT_DEF_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_HW | \ @@ -121,6 +120,10 @@ [BCM57508] = { "Broadcom BCM57508 NetXtreme-E 10Gb/25Gb/50Gb/100Gb/200Gb Ethernet" }, [BCM57504] = { "Broadcom BCM57504 NetXtreme-E 10Gb/25Gb/50Gb/100Gb/200Gb Ethernet" }, [BCM57502] = { "Broadcom BCM57502 NetXtreme-E 10Gb/25Gb/50Gb Ethernet" }, + [BCM57608] = { "Broadcom BCM57608 NetXtreme-E 10Gb/25Gb/50Gb/100Gb/200Gb/400Gb Ethernet" }, + [BCM57604] = { "Broadcom BCM57604 NetXtreme-E 10Gb/25Gb/50Gb/100Gb/200Gb Ethernet" }, + [BCM57602] = { "Broadcom BCM57602 NetXtreme-E 10Gb/25Gb/50Gb/100Gb Ethernet" }, + [BCM57601] = { "Broadcom BCM57601 NetXtreme-E 10Gb/25Gb/50Gb/100Gb/200Gb/400Gb Ethernet" }, [BCM57508_NPAR] = { "Broadcom BCM57508 NetXtreme-E Ethernet Partition" }, [BCM57504_NPAR] = { "Broadcom BCM57504 NetXtreme-E Ethernet Partition" }, [BCM57502_NPAR] = { "Broadcom BCM57502 NetXtreme-E Ethernet Partition" }, @@ -175,6 +178,10 @@ { PCI_VDEVICE(BROADCOM, 0x1750), .driver_data = BCM57508 }, { PCI_VDEVICE(BROADCOM, 0x1751), .driver_data = BCM57504 }, { PCI_VDEVICE(BROADCOM, 0x1752), .driver_data = BCM57502 }, + { PCI_VDEVICE(BROADCOM, 0x1760), .driver_data = BCM57608 }, + { PCI_VDEVICE(BROADCOM, 0x1761), .driver_data = BCM57604 }, + { PCI_VDEVICE(BROADCOM, 0x1762), .driver_data = BCM57602 }, + { PCI_VDEVICE(BROADCOM, 0x1763), .driver_data = BCM57601 }, { PCI_VDEVICE(BROADCOM, 0x1800), .driver_data = BCM57502_NPAR }, { PCI_VDEVICE(BROADCOM, 0x1801), .driver_data = BCM57504_NPAR }, { PCI_VDEVICE(BROADCOM, 0x1802), .driver_data = BCM57508_NPAR }, @@ -255,22 +262,28 @@ writel(DB_CP_IRQ_DIS_FLAGS, db) #define BNXT_DB_CQ(db, idx) \ - writel(DB_CP_FLAGS | RING_CMP(idx), (db)->doorbell) + writel(DB_CP_FLAGS | DB_RING_IDX(db, idx), (db)->doorbell) #define BNXT_DB_NQ_P5(db, idx) \ - bnxt_writeq(bp, (db)->db_key64 | DBR_TYPE_NQ | RING_CMP(idx), \ + bnxt_writeq(bp, (db)->db_key64 | DBR_TYPE_NQ | DB_RING_IDX(db, idx),\ (db)->doorbell) +#define BNXT_DB_NQ_P7(db, idx) \ + bnxt_writeq(bp, (db)->db_key64 | DBR_TYPE_NQ_MASK | \ + DB_RING_IDX(db, idx), (db)->doorbell) + #define BNXT_DB_CQ_ARM(db, idx) \ - writel(DB_CP_REARM_FLAGS | RING_CMP(idx), (db)->doorbell) + writel(DB_CP_REARM_FLAGS | DB_RING_IDX(db, idx), (db)->doorbell) #define BNXT_DB_NQ_ARM_P5(db, idx) \ - bnxt_writeq(bp, (db)->db_key64 | DBR_TYPE_NQ_ARM | RING_CMP(idx),\ - (db)->doorbell) + bnxt_writeq(bp, (db)->db_key64 | DBR_TYPE_NQ_ARM | \ + DB_RING_IDX(db, idx), (db)->doorbell) static void bnxt_db_nq(struct bnxt *bp, struct bnxt_db_info *db, u32 idx) { - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P7) + BNXT_DB_NQ_P7(db, idx); + else if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) BNXT_DB_NQ_P5(db, idx); else BNXT_DB_CQ(db, idx); @@ -278,7 +291,7 @@ static void bnxt_db_nq_arm(struct bnxt *bp, struct bnxt_db_info *db, u32 idx) { - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) BNXT_DB_NQ_ARM_P5(db, idx); else BNXT_DB_CQ_ARM(db, idx); @@ -286,13 +299,67 @@ static void bnxt_db_cq(struct bnxt *bp, struct bnxt_db_info *db, u32 idx) { - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) bnxt_writeq(bp, db->db_key64 | DBR_TYPE_CQ_ARMALL | - RING_CMP(idx), db->doorbell); + DB_RING_IDX(db, idx), db->doorbell); else BNXT_DB_CQ(db, idx); } +static void bnxt_queue_fw_reset_work(struct bnxt *bp, unsigned long delay) +{ + if (!(test_bit(BNXT_STATE_IN_FW_RESET, &bp->state))) + return; + + if (BNXT_PF(bp)) + queue_delayed_work(bnxt_pf_wq, &bp->fw_reset_task, delay); + else + schedule_delayed_work(&bp->fw_reset_task, delay); +} + +static void __bnxt_queue_sp_work(struct bnxt *bp) +{ + if (BNXT_PF(bp)) + queue_work(bnxt_pf_wq, &bp->sp_task); + else + schedule_work(&bp->sp_task); +} + +static void bnxt_queue_sp_work(struct bnxt *bp, unsigned int event) +{ + set_bit(event, &bp->sp_event); + __bnxt_queue_sp_work(bp); +} + +static void bnxt_sched_reset_rxr(struct bnxt *bp, struct bnxt_rx_ring_info *rxr) +{ + if (!rxr->bnapi->in_reset) { + rxr->bnapi->in_reset = true; + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) + set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event); + else + set_bit(BNXT_RST_RING_SP_EVENT, &bp->sp_event); + __bnxt_queue_sp_work(bp); + } + rxr->rx_next_cons = 0xffff; +} + +void bnxt_sched_reset_txr(struct bnxt *bp, struct bnxt_tx_ring_info *txr, + u16 curr) +{ + struct bnxt_napi *bnapi = txr->bnapi; + + if (bnapi->tx_fault) + return; + + netdev_err(bp->dev, "Invalid Tx completion (ring:%d tx_hw_cons:%u cons:%u prod:%u curr:%u)", + txr->txq_index, txr->tx_hw_cons, + txr->tx_cons, txr->tx_prod, curr); + WARN_ON_ONCE(1); + bnapi->tx_fault = 1; + bnxt_queue_sp_work(bp, BNXT_RESET_TASK_SP_EVENT); +} + const u16 bnxt_lhint_arr[] = { TX_BD_FLAGS_LHINT_512_AND_SMALLER, TX_BD_FLAGS_LHINT_512_TO_1023, @@ -328,6 +395,8 @@ static void bnxt_txr_db_kick(struct bnxt *bp, struct bnxt_tx_ring_info *txr, u16 prod) { + /* Sync BD data before updating doorbell */ + wmb(); bnxt_db_write(bp, &txr->tx_db, prod); txr->kick_pending = 0; } @@ -335,7 +404,7 @@ 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 *txbd, *txbd0; struct tx_bd_ext *txbd1; struct netdev_queue *txq; int i; @@ -377,11 +446,9 @@ len = skb_headlen(skb); last_frag = skb_shinfo(skb)->nr_frags; - txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + txbd = &txr->tx_desc_ring[TX_RING(bp, prod)][TX_IDX(prod)]; - txbd->tx_bd_opaque = prod; - - tx_buf = &txr->tx_buf_ring[prod]; + tx_buf = &txr->tx_buf_ring[RING_TX(bp, prod)]; tx_buf->skb = skb; tx_buf->nr_frags = last_frag; @@ -466,12 +533,15 @@ txbd->tx_bd_len_flags_type = tx_push->tx_bd_len_flags_type; txbd->tx_bd_haddr = txr->data_mapping; + txbd->tx_bd_opaque = SET_TX_OPAQUE(bp, txr, prod, 2); prod = NEXT_TX(prod); - txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + tx_push->tx_bd_opaque = txbd->tx_bd_opaque; + txbd = &txr->tx_desc_ring[TX_RING(bp, 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); + cpu_to_le32(DB_KEY_TX_PUSH | DB_LONG_TX_PUSH | + DB_RING_IDX(&txr->tx_db, prod)); WRITE_ONCE(txr->tx_prod, prod); tx_buf->is_push = 1; @@ -509,10 +579,11 @@ ((last_frag + 2) << TX_BD_FLAGS_BD_CNT_SHIFT); txbd->tx_bd_haddr = cpu_to_le64(mapping); + txbd->tx_bd_opaque = SET_TX_OPAQUE(bp, txr, prod, 2 + last_frag); prod = NEXT_TX(prod); txbd1 = (struct tx_bd_ext *) - &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + &txr->tx_desc_ring[TX_RING(bp, prod)][TX_IDX(prod)]; txbd1->tx_bd_hsize_lflags = lflags; if (skb_is_gso(skb)) { @@ -548,11 +619,12 @@ txbd1->tx_bd_cfa_meta = cpu_to_le32(vlan_tag_flags); txbd1->tx_bd_cfa_action = cpu_to_le32(cfa_action << TX_BD_CFA_ACTION_SHIFT); + txbd0 = txbd; 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)]; + txbd = &txr->tx_desc_ring[TX_RING(bp, prod)][TX_IDX(prod)]; len = skb_frag_size(frag); mapping = skb_frag_dma_map(&pdev->dev, frag, 0, len, @@ -561,7 +633,7 @@ if (unlikely(dma_mapping_error(&pdev->dev, mapping))) goto tx_dma_error; - tx_buf = &txr->tx_buf_ring[prod]; + tx_buf = &txr->tx_buf_ring[RING_TX(bp, prod)]; dma_unmap_addr_set(tx_buf, mapping, mapping); txbd->tx_bd_haddr = cpu_to_le64(mapping); @@ -579,16 +651,17 @@ skb_tx_timestamp(skb); - /* Sync BD data before updating doorbell */ - wmb(); - prod = NEXT_TX(prod); WRITE_ONCE(txr->tx_prod, prod); - if (!netdev_xmit_more() || netif_xmit_stopped(txq)) + if (!netdev_xmit_more() || netif_xmit_stopped(txq)) { bnxt_txr_db_kick(bp, txr, prod); - else + } else { + if (free_size >= bp->tx_wake_thresh) + txbd0->tx_bd_len_flags_type |= + cpu_to_le32(TX_BD_FLAGS_NO_CMPL); txr->kick_pending = 1; + } tx_done: @@ -609,7 +682,7 @@ /* start back at beginning and unmap skb */ prod = txr->tx_prod; - tx_buf = &txr->tx_buf_ring[prod]; + tx_buf = &txr->tx_buf_ring[RING_TX(bp, prod)]; dma_unmap_single(&pdev->dev, dma_unmap_addr(tx_buf, mapping), skb_headlen(skb), DMA_TO_DEVICE); prod = NEXT_TX(prod); @@ -617,7 +690,7 @@ /* unmap remaining mapped pages */ for (i = 0; i < last_frag; i++) { prod = NEXT_TX(prod); - tx_buf = &txr->tx_buf_ring[prod]; + tx_buf = &txr->tx_buf_ring[RING_TX(bp, prod)]; dma_unmap_page(&pdev->dev, dma_unmap_addr(tx_buf, mapping), skb_frag_size(&skb_shinfo(skb)->frags[i]), DMA_TO_DEVICE); @@ -633,26 +706,32 @@ return NETDEV_TX_OK; } -static void bnxt_tx_int(struct bnxt *bp, struct bnxt_napi *bnapi, int budget) +static void __bnxt_tx_int(struct bnxt *bp, struct bnxt_tx_ring_info *txr, + int budget) { - 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 nr_pkts = bnapi->tx_pkts; - int i; + u16 hw_cons = txr->tx_hw_cons; unsigned int tx_bytes = 0; + u16 cons = txr->tx_cons; + int tx_pkts = 0; - for (i = 0; i < nr_pkts; i++) { + while (RING_TX(bp, cons) != hw_cons) { struct bnxt_sw_tx_bd *tx_buf; struct sk_buff *skb; int j, last; - tx_buf = &txr->tx_buf_ring[cons]; + tx_buf = &txr->tx_buf_ring[RING_TX(bp, cons)]; cons = NEXT_TX(cons); skb = tx_buf->skb; tx_buf->skb = NULL; + if (unlikely(!skb)) { + bnxt_sched_reset_txr(bp, txr, cons); + return; + } + + tx_pkts++; tx_bytes += skb->len; if (tx_buf->is_push) { @@ -666,7 +745,7 @@ for (j = 0; j < last; j++) { cons = NEXT_TX(cons); - tx_buf = &txr->tx_buf_ring[cons]; + tx_buf = &txr->tx_buf_ring[RING_TX(bp, cons)]; dma_unmap_page( &pdev->dev, dma_unmap_addr(tx_buf, mapping), @@ -674,7 +753,7 @@ DMA_TO_DEVICE); } if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)) { - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (BNXT_CHIP_P5(bp)) { /* PTP worker takes ownership of the skb */ if (!bnxt_get_tx_ts_p5(bp, skb)) skb = NULL; @@ -686,23 +765,33 @@ next_tx_int: cons = NEXT_TX(cons); - dev_kfree_skb_any(skb); + dev_consume_skb_any(skb); } - bnapi->tx_pkts = 0; WRITE_ONCE(txr->tx_cons, cons); - __netif_txq_completed_wake(txq, nr_pkts, tx_bytes, + __netif_txq_completed_wake(txq, tx_pkts, tx_bytes, bnxt_tx_avail(bp, txr), bp->tx_wake_thresh, READ_ONCE(txr->dev_state) == BNXT_DEV_STATE_CLOSING); } +static void bnxt_tx_int(struct bnxt *bp, struct bnxt_napi *bnapi, int budget) +{ + struct bnxt_tx_ring_info *txr; + int i; + + bnxt_for_each_napi_tx(i, bnapi, txr) { + if (txr->tx_hw_cons != txr->tx_cons) + __bnxt_tx_int(bp, txr, budget); + } + bnapi->events &= ~BNXT_TX_CMP_EVENT; +} + static struct page *__bnxt_alloc_rx_page(struct bnxt *bp, dma_addr_t *mapping, struct bnxt_rx_ring_info *rxr, unsigned int *offset, gfp_t gfp) { - struct device *dev = &bp->pdev->dev; struct page *page; if (PAGE_SIZE > BNXT_RX_PAGE_SIZE) { @@ -715,12 +804,7 @@ if (!page) return NULL; - *mapping = dma_map_page_attrs(dev, page, *offset, BNXT_RX_PAGE_SIZE, - bp->rx_dir, DMA_ATTR_WEAK_ORDERING); - if (dma_mapping_error(dev, *mapping)) { - page_pool_recycle_direct(rxr->page_pool, page); - return NULL; - } + *mapping = page_pool_get_dma_addr(page) + *offset; return page; } @@ -751,8 +835,8 @@ 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]; + struct rx_bd *rxbd = &rxr->rx_desc_ring[RX_RING(bp, prod)][RX_IDX(prod)]; + struct bnxt_sw_rx_bd *rx_buf = &rxr->rx_buf_ring[RING_RX(bp, prod)]; dma_addr_t mapping; if (BNXT_RX_PAGE_MODE(bp)) { @@ -785,9 +869,10 @@ { u16 prod = rxr->rx_prod; struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf; + struct bnxt *bp = rxr->bnapi->bp; struct rx_bd *cons_bd, *prod_bd; - prod_rx_buf = &rxr->rx_buf_ring[prod]; + prod_rx_buf = &rxr->rx_buf_ring[RING_RX(bp, prod)]; cons_rx_buf = &rxr->rx_buf_ring[cons]; prod_rx_buf->data = data; @@ -795,8 +880,8 @@ 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 = &rxr->rx_desc_ring[RX_RING(bp, prod)][RX_IDX(prod)]; + cons_bd = &rxr->rx_desc_ring[RX_RING(bp, cons)][RX_IDX(cons)]; prod_bd->rx_bd_haddr = cons_bd->rx_bd_haddr; } @@ -816,57 +901,24 @@ u16 prod, gfp_t gfp) { struct rx_bd *rxbd = - &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)]; + &rxr->rx_agg_desc_ring[RX_AGG_RING(bp, 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 (BNXT_RX_PAGE_MODE(bp)) { - page = __bnxt_alloc_rx_page(bp, &mapping, rxr, &offset, gfp); - - if (!page) - return -ENOMEM; - - } else { - 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; - } + page = __bnxt_alloc_rx_page(bp, &mapping, rxr, &offset, gfp); - mapping = dma_map_page_attrs(&pdev->dev, page, offset, - BNXT_RX_PAGE_SIZE, DMA_FROM_DEVICE, - DMA_ATTR_WEAK_ORDERING); - if (dma_mapping_error(&pdev->dev, mapping)) { - __free_page(page); - return -EIO; - } - } + if (!page) + return -ENOMEM; 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); + rxr->rx_sw_agg_prod = RING_RX_AGG(bp, NEXT_RX_AGG(sw_prod)); rx_agg_buf->page = page; rx_agg_buf->offset = offset; @@ -908,7 +960,7 @@ bool p5_tpa = false; u32 i; - if ((bp->flags & BNXT_FLAG_CHIP_P5) && tpa) + if ((bp->flags & BNXT_FLAG_CHIP_P5_PLUS) && tpa) p5_tpa = true; for (i = 0; i < agg_bufs; i++) { @@ -942,13 +994,13 @@ prod_rx_buf->mapping = cons_rx_buf->mapping; - prod_bd = &rxr->rx_agg_desc_ring[RX_RING(prod)][RX_IDX(prod)]; + prod_bd = &rxr->rx_agg_desc_ring[RX_AGG_RING(bp, 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); + sw_prod = RING_RX_AGG(bp, NEXT_RX_AGG(sw_prod)); } rxr->rx_agg_prod = prod; rxr->rx_sw_agg_prod = sw_prod; @@ -972,9 +1024,9 @@ return NULL; } dma_addr -= bp->rx_dma_offset; - dma_unmap_page_attrs(&bp->pdev->dev, dma_addr, BNXT_RX_PAGE_SIZE, - bp->rx_dir, DMA_ATTR_WEAK_ORDERING); - skb = build_skb(data_ptr - bp->rx_offset, BNXT_RX_PAGE_SIZE); + dma_sync_single_for_cpu(&bp->pdev->dev, dma_addr, BNXT_RX_PAGE_SIZE, + bp->rx_dir); + skb = napi_build_skb(data_ptr - bp->rx_offset, BNXT_RX_PAGE_SIZE); if (!skb) { page_pool_recycle_direct(rxr->page_pool, page); return NULL; @@ -1006,8 +1058,8 @@ return NULL; } dma_addr -= bp->rx_dma_offset; - dma_unmap_page_attrs(&bp->pdev->dev, dma_addr, BNXT_RX_PAGE_SIZE, - bp->rx_dir, DMA_ATTR_WEAK_ORDERING); + dma_sync_single_for_cpu(&bp->pdev->dev, dma_addr, BNXT_RX_PAGE_SIZE, + bp->rx_dir); if (unlikely(!payload)) payload = eth_get_headlen(bp->dev, data_ptr, len); @@ -1049,7 +1101,7 @@ return NULL; } - skb = build_skb(data, bp->rx_buf_size); + skb = napi_build_skb(data, bp->rx_buf_size); dma_unmap_single_attrs(&bp->pdev->dev, dma_addr, bp->rx_buf_use_size, bp->rx_dir, DMA_ATTR_WEAK_ORDERING); if (!skb) { @@ -1075,7 +1127,7 @@ u32 i, total_frag_len = 0; bool p5_tpa = false; - if ((bp->flags & BNXT_FLAG_CHIP_P5) && tpa) + if ((bp->flags & BNXT_FLAG_CHIP_P5_PLUS) && tpa) p5_tpa = true; for (i = 0; i < agg_bufs; i++) { @@ -1123,9 +1175,8 @@ return 0; } - dma_unmap_page_attrs(&pdev->dev, mapping, BNXT_RX_PAGE_SIZE, - bp->rx_dir, - DMA_ATTR_WEAK_ORDERING); + dma_sync_single_for_cpu(&pdev->dev, mapping, BNXT_RX_PAGE_SIZE, + bp->rx_dir); total_frag_len += frag_len; prod = NEXT_RX_AGG(prod); @@ -1145,6 +1196,7 @@ total_frag_len = __bnxt_rx_agg_pages(bp, cpr, shinfo, idx, agg_bufs, tpa, NULL); if (!total_frag_len) { + skb_mark_for_recycle(skb); dev_kfree_skb(skb); return NULL; } @@ -1230,7 +1282,7 @@ } else if (cmp_type == CMP_TYPE_RX_L2_TPA_END_CMP) { struct rx_tpa_end_cmp *tpa_end = cmp; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return 0; agg_bufs = TPA_END_AGG_BUFS(tpa_end); @@ -1244,38 +1296,6 @@ return 0; } -static void bnxt_queue_fw_reset_work(struct bnxt *bp, unsigned long delay) -{ - if (!(test_bit(BNXT_STATE_IN_FW_RESET, &bp->state))) - return; - - if (BNXT_PF(bp)) - queue_delayed_work(bnxt_pf_wq, &bp->fw_reset_task, delay); - else - schedule_delayed_work(&bp->fw_reset_task, delay); -} - -static void bnxt_queue_sp_work(struct bnxt *bp) -{ - if (BNXT_PF(bp)) - queue_work(bnxt_pf_wq, &bp->sp_task); - else - schedule_work(&bp->sp_task); -} - -static void bnxt_sched_reset(struct bnxt *bp, struct bnxt_rx_ring_info *rxr) -{ - if (!rxr->bnapi->in_reset) { - rxr->bnapi->in_reset = true; - if (bp->flags & BNXT_FLAG_CHIP_P5) - set_bit(BNXT_RESET_TASK_SP_EVENT, &bp->sp_event); - else - set_bit(BNXT_RST_RING_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); - } - rxr->rx_next_cons = 0xffff; -} - static u16 bnxt_alloc_agg_idx(struct bnxt_rx_ring_info *rxr, u16 agg_id) { struct bnxt_tpa_idx_map *map = rxr->rx_tpa_idx_map; @@ -1303,8 +1323,39 @@ return map->agg_id_tbl[agg_id]; } +static void bnxt_tpa_metadata(struct bnxt_tpa_info *tpa_info, + struct rx_tpa_start_cmp *tpa_start, + struct rx_tpa_start_cmp_ext *tpa_start1) +{ + tpa_info->cfa_code_valid = 1; + tpa_info->cfa_code = TPA_START_CFA_CODE(tpa_start1); + tpa_info->vlan_valid = 0; + if (tpa_info->flags2 & RX_CMP_FLAGS2_META_FORMAT_VLAN) { + tpa_info->vlan_valid = 1; + tpa_info->metadata = + le32_to_cpu(tpa_start1->rx_tpa_start_cmp_metadata); + } +} + +static void bnxt_tpa_metadata_v2(struct bnxt_tpa_info *tpa_info, + struct rx_tpa_start_cmp *tpa_start, + struct rx_tpa_start_cmp_ext *tpa_start1) +{ + tpa_info->vlan_valid = 0; + if (TPA_START_VLAN_VALID(tpa_start)) { + u32 tpid_sel = TPA_START_VLAN_TPID_SEL(tpa_start); + u32 vlan_proto = ETH_P_8021Q; + + tpa_info->vlan_valid = 1; + if (tpid_sel == RX_TPA_START_METADATA1_TPID_8021AD) + vlan_proto = ETH_P_8021AD; + tpa_info->metadata = vlan_proto << 16 | + TPA_START_METADATA0_TCI(tpa_start1); + } +} + static void bnxt_tpa_start(struct bnxt *bp, struct bnxt_rx_ring_info *rxr, - struct rx_tpa_start_cmp *tpa_start, + u8 cmp_type, struct rx_tpa_start_cmp *tpa_start, struct rx_tpa_start_cmp_ext *tpa_start1) { struct bnxt_sw_rx_bd *cons_rx_buf, *prod_rx_buf; @@ -1313,7 +1364,7 @@ struct rx_bd *prod_bd; dma_addr_t mapping; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { agg_id = TPA_START_AGG_ID_P5(tpa_start); agg_id = bnxt_alloc_agg_idx(rxr, agg_id); } else { @@ -1322,7 +1373,7 @@ 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]; + prod_rx_buf = &rxr->rx_buf_ring[RING_RX(bp, prod)]; tpa_info = &rxr->rx_tpa[agg_id]; if (unlikely(cons != rxr->rx_next_cons || @@ -1330,20 +1381,16 @@ netdev_warn(bp->dev, "TPA cons %x, expected cons %x, error code %x\n", cons, rxr->rx_next_cons, TPA_START_ERROR_CODE(tpa_start1)); - bnxt_sched_reset(bp, rxr); + bnxt_sched_reset_rxr(bp, rxr); return; } - /* Store cfa_code in tpa_info to use in tpa_end - * completion processing. - */ - tpa_info->cfa_code = TPA_START_CFA_CODE(tpa_start1); 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 = &rxr->rx_desc_ring[RX_RING(bp, prod)][RX_IDX(prod)]; prod_bd->rx_bd_haddr = cpu_to_le64(mapping); @@ -1356,12 +1403,13 @@ 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; + if (TPA_START_IS_IPV6(tpa_start1)) + tpa_info->gso_type = SKB_GSO_TCPV6; /* RSS profiles 1 and 3 with extract code 0 for inner 4-tuple */ - if (hash_type == 3 || TPA_START_IS_IPV6(tpa_start1)) + else if (cmp_type == CMP_TYPE_RX_L2_TPA_START_CMP && + TPA_START_HASH_TYPE(tpa_start) == 3) tpa_info->gso_type = SKB_GSO_TCPV6; tpa_info->rss_hash = le32_to_cpu(tpa_start->rx_tpa_start_cmp_rss_hash); @@ -1371,13 +1419,16 @@ netif_warn(bp, rx_err, 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); + if (cmp_type == CMP_TYPE_RX_L2_TPA_START_CMP) + bnxt_tpa_metadata(tpa_info, tpa_start, tpa_start1); + else + bnxt_tpa_metadata_v2(tpa_info, tpa_start, tpa_start1); tpa_info->agg_count = 0; rxr->rx_prod = NEXT_RX(prod); - cons = NEXT_RX(cons); - rxr->rx_next_cons = NEXT_RX(cons); + cons = RING_RX(bp, NEXT_RX(cons)); + rxr->rx_next_cons = RING_RX(bp, NEXT_RX(cons)); cons_rx_buf = &rxr->rx_buf_ring[cons]; bnxt_reuse_rx_data(rxr, cons, cons_rx_buf->data); @@ -1576,7 +1627,7 @@ 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; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) payload_off = TPA_END_PAYLOAD_OFF_P5(tpa_end1); else payload_off = TPA_END_PAYLOAD_OFF(tpa_end); @@ -1607,6 +1658,7 @@ { struct bnxt_napi *bnapi = cpr->bnapi; struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + struct net_device *dev = bp->dev; u8 *data_ptr, agg_bufs; unsigned int len; struct bnxt_tpa_info *tpa_info; @@ -1624,7 +1676,7 @@ return NULL; } - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { agg_id = TPA_END_AGG_ID_P5(tpa_end); agg_id = bnxt_lookup_agg_idx(rxr, agg_id); agg_bufs = TPA_END_AGG_BUFS_P5(tpa_end1); @@ -1689,7 +1741,7 @@ tpa_info->data_ptr = new_data + bp->rx_offset; tpa_info->mapping = new_mapping; - skb = build_skb(data, bp->rx_buf_size); + skb = napi_build_skb(data, bp->rx_buf_size); dma_unmap_single_attrs(&bp->pdev->dev, mapping, bp->rx_buf_use_size, bp->rx_dir, DMA_ATTR_WEAK_ORDERING); @@ -1713,14 +1765,15 @@ } } - skb->protocol = - eth_type_trans(skb, bnxt_get_pkt_dev(bp, tpa_info->cfa_code)); + if (tpa_info->cfa_code_valid) + dev = bnxt_get_pkt_dev(bp, tpa_info->cfa_code); + skb->protocol = eth_type_trans(skb, 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 & BNXT_HW_FEATURE_VLAN_ALL_RX)) { + if (tpa_info->vlan_valid && + (dev->features & BNXT_HW_FEATURE_VLAN_ALL_RX)) { __be16 vlan_proto = htons(tpa_info->metadata >> RX_CMP_FLAGS2_METADATA_TPID_SFT); u16 vtag = tpa_info->metadata & RX_CMP_FLAGS2_METADATA_TCI_MASK; @@ -1767,9 +1820,68 @@ return; } skb_record_rx_queue(skb, bnapi->index); + skb_mark_for_recycle(skb); napi_gro_receive(&bnapi->napi, skb); } +static struct sk_buff *bnxt_rx_vlan(struct sk_buff *skb, u8 cmp_type, + struct rx_cmp *rxcmp, + struct rx_cmp_ext *rxcmp1) +{ + __be16 vlan_proto; + u16 vtag; + + if (cmp_type == CMP_TYPE_RX_L2_CMP) { + __le32 flags2 = rxcmp1->rx_cmp_flags2; + u32 meta_data; + + if (!(flags2 & cpu_to_le32(RX_CMP_FLAGS2_META_FORMAT_VLAN))) + return skb; + + meta_data = le32_to_cpu(rxcmp1->rx_cmp_meta_data); + vtag = meta_data & RX_CMP_FLAGS2_METADATA_TCI_MASK; + vlan_proto = htons(meta_data >> RX_CMP_FLAGS2_METADATA_TPID_SFT); + if (eth_type_vlan(vlan_proto)) + __vlan_hwaccel_put_tag(skb, vlan_proto, vtag); + else + goto vlan_err; + } else if (cmp_type == CMP_TYPE_RX_L2_V3_CMP) { + if (RX_CMP_VLAN_VALID(rxcmp)) { + u32 tpid_sel = RX_CMP_VLAN_TPID_SEL(rxcmp); + + if (tpid_sel == RX_CMP_METADATA1_TPID_8021Q) + vlan_proto = htons(ETH_P_8021Q); + else if (tpid_sel == RX_CMP_METADATA1_TPID_8021AD) + vlan_proto = htons(ETH_P_8021AD); + else + goto vlan_err; + vtag = RX_CMP_METADATA0_TCI(rxcmp1); + __vlan_hwaccel_put_tag(skb, vlan_proto, vtag); + } + } + return skb; +vlan_err: + dev_kfree_skb(skb); + return NULL; +} + +static enum pkt_hash_types bnxt_rss_ext_op(struct bnxt *bp, + struct rx_cmp *rxcmp) +{ + u8 ext_op; + + ext_op = RX_CMP_V3_HASH_TYPE(bp, rxcmp); + switch (ext_op) { + case EXT_OP_INNER_4: + case EXT_OP_OUTER_4: + case EXT_OP_INNFL_3: + case EXT_OP_OUTFL_3: + return PKT_HASH_TYPE_L4; + default: + return PKT_HASH_TYPE_L3; + } +} + /* returns the following: * 1 - 1 packet successfully received * 0 - successful TPA_START, packet not completed yet @@ -1786,7 +1898,7 @@ struct rx_cmp *rxcmp; struct rx_cmp_ext *rxcmp1; u32 tmp_raw_cons = *raw_cons; - u16 cfa_code, cons, prod, cp_cons = RING_CMP(tmp_raw_cons); + u16 cons, prod, cp_cons = RING_CMP(tmp_raw_cons); struct bnxt_sw_rx_bd *rx_buf; unsigned int len; u8 *data_ptr, agg_bufs, cmp_type; @@ -1822,8 +1934,10 @@ dma_rmb(); 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, + if (cmp_type == CMP_TYPE_RX_L2_TPA_START_CMP || + cmp_type == CMP_TYPE_RX_L2_TPA_START_V3_CMP) { + bnxt_tpa_start(bp, rxr, cmp_type, + (struct rx_tpa_start_cmp *)rxcmp, (struct rx_tpa_start_cmp_ext *)rxcmp1); *event |= BNXT_RX_EVENT; @@ -1854,7 +1968,7 @@ if (rxr->rx_next_cons != 0xffff) netdev_warn(bp->dev, "RX cons %x != expected cons %x\n", cons, rxr->rx_next_cons); - bnxt_sched_reset(bp, rxr); + bnxt_sched_reset_rxr(bp, rxr); if (rc1) return rc1; goto next_rx_no_prod_no_len; @@ -1888,11 +2002,11 @@ rc = -EIO; if (rx_err & RX_CMPL_ERRORS_BUFFER_ERROR_MASK) { bnapi->cp_ring.sw_stats.rx.rx_buf_errors++; - if (!(bp->flags & BNXT_FLAG_CHIP_P5) && + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS) && !(bp->fw_cap & BNXT_FW_CAP_RING_MONITOR)) { netdev_warn_once(bp->dev, "RX buffer error %x\n", rx_err); - bnxt_sched_reset(bp, rxr); + bnxt_sched_reset_rxr(bp, rxr); } } goto next_rx_no_len; @@ -1976,32 +2090,32 @@ } if (RX_CMP_HASH_VALID(rxcmp)) { - u32 hash_type = RX_CMP_HASH_TYPE(rxcmp); - enum pkt_hash_types type = PKT_HASH_TYPE_L4; + enum pkt_hash_types type; - /* 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; + if (cmp_type == CMP_TYPE_RX_L2_V3_CMP) { + type = bnxt_rss_ext_op(bp, rxcmp); + } else { + u32 hash_type = RX_CMP_HASH_TYPE(rxcmp); + + /* 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; + else + type = PKT_HASH_TYPE_L4; + } skb_set_hash(skb, le32_to_cpu(rxcmp->rx_cmp_rss_hash), type); } - cfa_code = RX_CMP_CFA_CODE(rxcmp1); - skb->protocol = eth_type_trans(skb, bnxt_get_pkt_dev(bp, cfa_code)); - - if ((rxcmp1->rx_cmp_flags2 & - cpu_to_le32(RX_CMP_FLAGS2_META_FORMAT_VLAN)) && - (skb->dev->features & BNXT_HW_FEATURE_VLAN_ALL_RX)) { - u32 meta_data = le32_to_cpu(rxcmp1->rx_cmp_meta_data); - u16 vtag = meta_data & RX_CMP_FLAGS2_METADATA_TCI_MASK; - __be16 vlan_proto = htons(meta_data >> - RX_CMP_FLAGS2_METADATA_TPID_SFT); - - if (eth_type_vlan(vlan_proto)) { - __vlan_hwaccel_put_tag(skb, vlan_proto, vtag); - } else { - dev_kfree_skb(skb); + if (cmp_type == CMP_TYPE_RX_L2_CMP) + dev = bnxt_get_pkt_dev(bp, RX_CMP_CFA_CODE(rxcmp1)); + skb->protocol = eth_type_trans(skb, dev); + + if (skb->dev->features & BNXT_HW_FEATURE_VLAN_ALL_RX) { + skb = bnxt_rx_vlan(skb, cmp_type, rxcmp, rxcmp1); + if (!skb) goto next_rx; - } } skb_checksum_none_assert(skb); @@ -2019,7 +2133,7 @@ if (unlikely((flags & RX_CMP_FLAGS_ITYPES_MASK) == RX_CMP_FLAGS_ITYPE_PTP_W_TS) || bp->ptp_all_rx_tstamp) { - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { u32 cmpl_ts = le32_to_cpu(rxcmp1->rx_cmp_timestamp); u64 ns, ts; @@ -2044,7 +2158,7 @@ next_rx_no_len: rxr->rx_prod = NEXT_RX(prod); - rxr->rx_next_cons = NEXT_RX(cons); + rxr->rx_next_cons = RING_RX(bp, NEXT_RX(cons)); next_rx_no_prod_no_len: *raw_cons = tmp_raw_cons; @@ -2083,7 +2197,8 @@ */ dma_rmb(); cmp_type = RX_CMP_TYPE(rxcmp); - if (cmp_type == CMP_TYPE_RX_L2_CMP) { + if (cmp_type == CMP_TYPE_RX_L2_CMP || + cmp_type == CMP_TYPE_RX_L2_V3_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) { @@ -2141,7 +2256,114 @@ return INVALID_HW_RING_ID; } -static void bnxt_event_error_report(struct bnxt *bp, u32 data1, u32 data2) +static u16 bnxt_get_force_speed(struct bnxt_link_info *link_info) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) + return link_info->force_link_speed2; + if (link_info->req_signal_mode == BNXT_SIG_MODE_PAM4) + return link_info->force_pam4_link_speed; + return link_info->force_link_speed; +} + +static void bnxt_set_force_speed(struct bnxt_link_info *link_info) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) { + link_info->req_link_speed = link_info->force_link_speed2; + link_info->req_signal_mode = BNXT_SIG_MODE_NRZ; + switch (link_info->req_link_speed) { + case BNXT_LINK_SPEED_50GB_PAM4: + case BNXT_LINK_SPEED_100GB_PAM4: + case BNXT_LINK_SPEED_200GB_PAM4: + case BNXT_LINK_SPEED_400GB_PAM4: + link_info->req_signal_mode = BNXT_SIG_MODE_PAM4; + break; + case BNXT_LINK_SPEED_100GB_PAM4_112: + case BNXT_LINK_SPEED_200GB_PAM4_112: + case BNXT_LINK_SPEED_400GB_PAM4_112: + link_info->req_signal_mode = BNXT_SIG_MODE_PAM4_112; + break; + default: + link_info->req_signal_mode = BNXT_SIG_MODE_NRZ; + } + return; + } + link_info->req_link_speed = link_info->force_link_speed; + link_info->req_signal_mode = BNXT_SIG_MODE_NRZ; + if (link_info->force_pam4_link_speed) { + link_info->req_link_speed = link_info->force_pam4_link_speed; + link_info->req_signal_mode = BNXT_SIG_MODE_PAM4; + } +} + +static void bnxt_set_auto_speed(struct bnxt_link_info *link_info) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) { + link_info->advertising = link_info->auto_link_speeds2; + return; + } + link_info->advertising = link_info->auto_link_speeds; + link_info->advertising_pam4 = link_info->auto_pam4_link_speeds; +} + +static bool bnxt_force_speed_updated(struct bnxt_link_info *link_info) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) { + if (link_info->req_link_speed != link_info->force_link_speed2) + return true; + return false; + } + if (link_info->req_signal_mode == BNXT_SIG_MODE_NRZ && + link_info->req_link_speed != link_info->force_link_speed) + return true; + if (link_info->req_signal_mode == BNXT_SIG_MODE_PAM4 && + link_info->req_link_speed != link_info->force_pam4_link_speed) + return true; + return false; +} + +static bool bnxt_auto_speed_updated(struct bnxt_link_info *link_info) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) { + if (link_info->advertising != link_info->auto_link_speeds2) + return true; + return false; + } + if (link_info->advertising != link_info->auto_link_speeds || + link_info->advertising_pam4 != link_info->auto_pam4_link_speeds) + return true; + return false; +} + +#define BNXT_EVENT_THERMAL_CURRENT_TEMP(data2) \ + ((data2) & \ + ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA2_CURRENT_TEMP_MASK) + +#define BNXT_EVENT_THERMAL_THRESHOLD_TEMP(data2) \ + (((data2) & \ + ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA2_THRESHOLD_TEMP_MASK) >>\ + ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA2_THRESHOLD_TEMP_SFT) + +#define EVENT_DATA1_THERMAL_THRESHOLD_TYPE(data1) \ + ((data1) & \ + ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_MASK) + +#define EVENT_DATA1_THERMAL_THRESHOLD_DIR_INCREASING(data1) \ + (((data1) & \ + ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_TRANSITION_DIR) ==\ + ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_TRANSITION_DIR_INCREASING) + +/* Return true if the workqueue has to be scheduled */ +static bool bnxt_event_error_report(struct bnxt *bp, u32 data1, u32 data2) { u32 err_type = BNXT_EVENT_ERROR_REPORT_TYPE(data1); @@ -2156,11 +2378,53 @@ case ASYNC_EVENT_CMPL_ERROR_REPORT_BASE_EVENT_DATA1_ERROR_TYPE_DOORBELL_DROP_THRESHOLD: netdev_warn(bp->dev, "One or more MMIO doorbells dropped by the device!\n"); break; + case ASYNC_EVENT_CMPL_ERROR_REPORT_BASE_EVENT_DATA1_ERROR_TYPE_THERMAL_THRESHOLD: { + u32 type = EVENT_DATA1_THERMAL_THRESHOLD_TYPE(data1); + char *threshold_type; + bool notify = false; + char *dir_str; + + switch (type) { + case ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_WARN: + threshold_type = "warning"; + break; + case ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_CRITICAL: + threshold_type = "critical"; + break; + case ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_FATAL: + threshold_type = "fatal"; + break; + case ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_SHUTDOWN: + threshold_type = "shutdown"; + break; + default: + netdev_err(bp->dev, "Unknown Thermal threshold type event\n"); + return false; + } + if (EVENT_DATA1_THERMAL_THRESHOLD_DIR_INCREASING(data1)) { + dir_str = "above"; + notify = true; + } else { + dir_str = "below"; + } + netdev_warn(bp->dev, "Chip temperature has gone %s the %s thermal threshold!\n", + dir_str, threshold_type); + netdev_warn(bp->dev, "Temperature (In Celsius), Current: %lu, threshold: %lu\n", + BNXT_EVENT_THERMAL_CURRENT_TEMP(data2), + BNXT_EVENT_THERMAL_THRESHOLD_TEMP(data2)); + if (notify) { + bp->thermal_threshold_type = type; + set_bit(BNXT_THERMAL_THRESHOLD_SP_EVENT, &bp->sp_event); + return true; + } + return false; + } default: netdev_err(bp->dev, "FW reported unknown error type %u\n", err_type); break; } + return false; } #define BNXT_GET_EVENT_PORT(data) \ @@ -2206,7 +2470,7 @@ /* print unsupported speed warning in forced speed mode only */ if (!(link_info->autoneg & BNXT_AUTONEG_SPEED) && (data1 & 0x20000)) { - u16 fw_speed = link_info->force_link_speed; + u16 fw_speed = bnxt_get_force_speed(link_info); u32 speed = bnxt_fw_to_ethtool_speed(fw_speed); if (speed != SPEED_UNKNOWN) @@ -2324,7 +2588,7 @@ struct bnxt_rx_ring_info *rxr; u16 grp_idx; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) goto async_event_process_exit; netdev_warn(bp->dev, "Ring monitor event, ring type %lu id 0x%x\n", @@ -2339,7 +2603,7 @@ goto async_event_process_exit; } rxr = bp->bnapi[grp_idx]->rx_ring; - bnxt_sched_reset(bp, rxr); + bnxt_sched_reset_rxr(bp, rxr); goto async_event_process_exit; } case ASYNC_EVENT_CMPL_EVENT_ID_ECHO_REQUEST: { @@ -2361,7 +2625,8 @@ goto async_event_process_exit; } case ASYNC_EVENT_CMPL_EVENT_ID_ERROR_REPORT: { - bnxt_event_error_report(bp, data1, data2); + if (bnxt_event_error_report(bp, data1, data2)) + break; goto async_event_process_exit; } case ASYNC_EVENT_CMPL_EVENT_ID_PHC_UPDATE: { @@ -2394,7 +2659,7 @@ default: goto async_event_process_exit; } - bnxt_queue_sp_work(bp); + __bnxt_queue_sp_work(bp); async_event_process_exit: return 0; } @@ -2423,8 +2688,7 @@ } 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); - bnxt_queue_sp_work(bp); + bnxt_queue_sp_work(bp, BNXT_HWRM_EXEC_FWD_REQ_SP_EVENT); break; case CMPL_BASE_TYPE_HWRM_ASYNC_EVENT: @@ -2497,7 +2761,6 @@ struct bnxt_napi *bnapi = cpr->bnapi; u32 raw_cons = cpr->cp_raw_cons; u32 cons; - int tx_pkts = 0; int rx_pkts = 0; u8 event = 0; struct tx_cmp *txcmp; @@ -2505,6 +2768,7 @@ cpr->has_more_work = 0; cpr->had_work_done = 1; while (1) { + u8 cmp_type; int rc; cons = RING_CMP(raw_cons); @@ -2517,17 +2781,27 @@ * reading any further. */ dma_rmb(); - if (TX_CMP_TYPE(txcmp) == CMP_TYPE_TX_L2_CMP) { - tx_pkts++; + cmp_type = TX_CMP_TYPE(txcmp); + if (cmp_type == CMP_TYPE_TX_L2_CMP) { + u32 opaque = txcmp->tx_cmp_opaque; + struct bnxt_tx_ring_info *txr; + u16 tx_freed; + + txr = bnapi->tx_ring[TX_OPAQUE_RING(opaque)]; + event |= BNXT_TX_CMP_EVENT; + txr->tx_hw_cons = TX_OPAQUE_PROD(bp, opaque); + tx_freed = (txr->tx_hw_cons - txr->tx_cons) & + bp->tx_ring_mask; /* return full budget so NAPI will complete. */ - if (unlikely(tx_pkts >= bp->tx_wake_thresh)) { + if (unlikely(tx_freed >= bp->tx_wake_thresh)) { rx_pkts = budget; raw_cons = NEXT_RAW_CMP(raw_cons); if (budget) cpr->has_more_work = 1; break; } - } else if ((TX_CMP_TYPE(txcmp) & 0x30) == 0x10) { + } else if (cmp_type >= CMP_TYPE_RX_L2_CMP && + cmp_type <= CMP_TYPE_RX_L2_TPA_START_V3_CMP) { if (likely(budget)) rc = bnxt_rx_pkt(bp, cpr, &raw_cons, &event); else @@ -2544,12 +2818,9 @@ rx_pkts++; 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))) { + } else if (unlikely(cmp_type == CMPL_BASE_TYPE_HWRM_DONE || + cmp_type == CMPL_BASE_TYPE_HWRM_FWD_REQ || + cmp_type == CMPL_BASE_TYPE_HWRM_ASYNC_EVENT)) { bnxt_hwrm_handler(bp, txcmp); } raw_cons = NEXT_RAW_CMP(raw_cons); @@ -2564,7 +2835,7 @@ xdp_do_flush(); if (event & BNXT_TX_EVENT) { - struct bnxt_tx_ring_info *txr = bnapi->tx_ring; + struct bnxt_tx_ring_info *txr = bnapi->tx_ring[0]; u16 prod = txr->tx_prod; /* Sync BD data before updating doorbell */ @@ -2574,7 +2845,6 @@ } cpr->cp_raw_cons = raw_cons; - bnapi->tx_pkts += tx_pkts; bnapi->events |= event; return rx_pkts; } @@ -2582,7 +2852,7 @@ static void __bnxt_poll_work_done(struct bnxt *bp, struct bnxt_napi *bnapi, int budget) { - if (bnapi->tx_pkts) + if ((bnapi->events & BNXT_TX_CMP_EVENT) && !bnapi->tx_fault) bnapi->tx_int(bp, bnapi, budget); if ((bnapi->events & BNXT_RX_EVENT) && !(bnapi->in_reset)) { @@ -2595,7 +2865,7 @@ bnxt_db_write(bp, &rxr->rx_agg_db, rxr->rx_agg_prod); } - bnapi->events = 0; + bnapi->events &= BNXT_TX_CMP_EVENT; } static int bnxt_poll_work(struct bnxt *bp, struct bnxt_cp_ring_info *cpr, @@ -2626,6 +2896,7 @@ struct rx_cmp_ext *rxcmp1; u32 cp_cons, tmp_raw_cons; u32 raw_cons = cpr->cp_raw_cons; + bool flush_xdp = false; u32 rx_pkts = 0; u8 event = 0; @@ -2660,6 +2931,8 @@ rx_pkts++; else if (rc == -EBUSY) /* partial completion */ break; + if (event & BNXT_REDIRECT_EVENT) + flush_xdp = true; } else if (unlikely(TX_CMP_TYPE(txcmp) == CMPL_BASE_TYPE_HWRM_DONE)) { bnxt_hwrm_handler(bp, txcmp); @@ -2679,6 +2952,8 @@ if (event & BNXT_AGG_EVENT) bnxt_db_write(bp, &rxr->rx_agg_db, rxr->rx_agg_prod); + if (flush_xdp) + xdp_do_flush(); if (!bnxt_has_work(bp, cpr) && rx_pkts < budget) { napi_complete_done(napi, rx_pkts); @@ -2730,10 +3005,10 @@ struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; int i, work_done = 0; - for (i = 0; i < 2; i++) { - struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[i]; + for (i = 0; i < cpr->cp_ring_count; i++) { + struct bnxt_cp_ring_info *cpr2 = &cpr->cp_ring_arr[i]; - if (cpr2) { + if (cpr2->had_nqe_notify) { work_done += __bnxt_poll_work(bp, cpr2, budget - work_done); cpr->has_more_work |= cpr2->has_more_work; @@ -2748,14 +3023,22 @@ struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; int i; - for (i = 0; i < 2; i++) { - struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[i]; + for (i = 0; i < cpr->cp_ring_count; i++) { + struct bnxt_cp_ring_info *cpr2 = &cpr->cp_ring_arr[i]; struct bnxt_db_info *db; - if (cpr2 && cpr2->had_work_done) { + if (cpr2->had_work_done) { + u32 tgl = 0; + + if (dbr_type == DBR_TYPE_CQ_ARMALL) { + cpr2->had_nqe_notify = 0; + tgl = cpr2->toggle; + } db = &cpr2->cp_db; - bnxt_writeq(bp, db->db_key64 | dbr_type | - RING_CMP(cpr2->cp_raw_cons), db->doorbell); + bnxt_writeq(bp, + db->db_key64 | dbr_type | DB_TOGGLE(tgl) | + DB_RING_IDX(db, cpr2->cp_raw_cons), + db->doorbell); cpr2->had_work_done = 0; } } @@ -2782,6 +3065,8 @@ work_done = __bnxt_poll_cqs(bp, bnapi, budget); } while (1) { + u16 type; + cons = RING_CMP(raw_cons); nqcmp = &cpr->nq_desc_ring[CP_RING(cons)][CP_IDX(cons)]; @@ -2803,15 +3088,21 @@ */ dma_rmb(); - if (nqcmp->type == cpu_to_le16(NQ_CN_TYPE_CQ_NOTIFICATION)) { + type = le16_to_cpu(nqcmp->type); + if (NQE_CN_TYPE(type) == NQ_CN_TYPE_CQ_NOTIFICATION) { u32 idx = le32_to_cpu(nqcmp->cq_handle_low); + u32 cq_type = BNXT_NQ_HDL_TYPE(idx); struct bnxt_cp_ring_info *cpr2; /* No more budget for RX work */ - if (budget && work_done >= budget && idx == BNXT_RX_HDL) + if (budget && work_done >= budget && + cq_type == BNXT_NQ_HDL_TYPE_RX) break; - cpr2 = cpr->cp_ring_arr[idx]; + idx = BNXT_NQ_HDL_IDX(idx); + cpr2 = &cpr->cp_ring_arr[idx]; + cpr2->had_nqe_notify = 1; + cpr2->toggle = NQE_CN_TOGGLE(type); work_done += __bnxt_poll_work(bp, cpr2, budget - work_done); cpr->has_more_work |= cpr2->has_more_work; @@ -2826,8 +3117,9 @@ BNXT_DB_NQ_P5(&cpr->cp_db, raw_cons); } poll_done: - cpr_rx = cpr->cp_ring_arr[BNXT_RX_HDL]; - if (cpr_rx && (bp->flags & BNXT_FLAG_DIM)) { + cpr_rx = &cpr->cp_ring_arr[0]; + if (cpr_rx->cp_ring_type == BNXT_NQ_HDL_TYPE_RX && + (bp->flags & BNXT_FLAG_DIM)) { struct dim_sample dim_sample = {}; dim_update_sample(cpr->event_ctr, @@ -2952,10 +3244,6 @@ rx_buf->data = NULL; if (BNXT_RX_PAGE_MODE(bp)) { - mapping -= bp->rx_dma_offset; - dma_unmap_page_attrs(&pdev->dev, mapping, - BNXT_RX_PAGE_SIZE, bp->rx_dir, - DMA_ATTR_WEAK_ORDERING); page_pool_recycle_direct(rxr->page_pool, data); } else { dma_unmap_single_attrs(&pdev->dev, mapping, @@ -2976,30 +3264,13 @@ if (!page) continue; - if (BNXT_RX_PAGE_MODE(bp)) { - dma_unmap_page_attrs(&pdev->dev, rx_agg_buf->mapping, - BNXT_RX_PAGE_SIZE, bp->rx_dir, - DMA_ATTR_WEAK_ORDERING); - rx_agg_buf->page = NULL; - __clear_bit(i, rxr->rx_agg_bmap); + rx_agg_buf->page = NULL; + __clear_bit(i, rxr->rx_agg_bmap); - page_pool_recycle_direct(rxr->page_pool, page); - } else { - dma_unmap_page_attrs(&pdev->dev, rx_agg_buf->mapping, - BNXT_RX_PAGE_SIZE, DMA_FROM_DEVICE, - DMA_ATTR_WEAK_ORDERING); - rx_agg_buf->page = NULL; - __clear_bit(i, rxr->rx_agg_bmap); - - __free_page(page); - } + page_pool_recycle_direct(rxr->page_pool, page); } skip_rx_agg_free: - if (rxr->rx_page) { - __free_page(rxr->rx_page); - rxr->rx_page = NULL; - } map = rxr->rx_tpa_idx_map; if (map) memset(map->agg_idx_bmap, 0, sizeof(map->agg_idx_bmap)); @@ -3022,20 +3293,20 @@ bnxt_free_rx_skbs(bp); } -static void bnxt_init_ctx_mem(struct bnxt_mem_init *mem_init, void *p, int len) +static void bnxt_init_ctx_mem(struct bnxt_ctx_mem_type *ctxm, void *p, int len) { - u8 init_val = mem_init->init_val; - u16 offset = mem_init->offset; + u8 init_val = ctxm->init_value; + u16 offset = ctxm->init_offset; u8 *p2 = p; int i; if (!init_val) return; - if (offset == BNXT_MEM_INVALID_OFFSET) { + if (offset == BNXT_CTX_INIT_INVALID_OFFSET) { memset(p, init_val, len); return; } - for (i = 0; i < len; i += mem_init->size) + for (i = 0; i < len; i += ctxm->entry_size) *(p2 + i + offset) = init_val; } @@ -3102,8 +3373,8 @@ if (!rmem->pg_arr[i]) return -ENOMEM; - if (rmem->mem_init) - bnxt_init_ctx_mem(rmem->mem_init, rmem->pg_arr[i], + if (rmem->ctx_mem) + bnxt_init_ctx_mem(rmem->ctx_mem, rmem->pg_arr[i], rmem->page_size); if (rmem->nr_pages > 1 || rmem->depth > 0) { if (i == rmem->nr_pages - 2 && @@ -3150,7 +3421,7 @@ int i, j; bp->max_tpa = MAX_TPA; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { if (!bp->max_tpa_v2) return 0; bp->max_tpa = max_t(u16, bp->max_tpa_v2, MAX_TPA_P5); @@ -3165,7 +3436,7 @@ if (!rxr->rx_tpa) return -ENOMEM; - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) continue; for (j = 0; j < bp->max_tpa; j++) { agg = kcalloc(MAX_SKB_FRAGS, sizeof(*agg), GFP_KERNEL); @@ -3218,11 +3489,15 @@ { struct page_pool_params pp = { 0 }; - pp.pool_size = bp->rx_ring_size; + pp.pool_size = bp->rx_agg_ring_size; + if (BNXT_RX_PAGE_MODE(bp)) + pp.pool_size += bp->rx_ring_size; pp.nid = dev_to_node(&bp->pdev->dev); pp.napi = &rxr->bnapi->napi; pp.dev = &bp->pdev->dev; - pp.dma_dir = DMA_BIDIRECTIONAL; + pp.dma_dir = bp->rx_dir; + pp.max_len = PAGE_SIZE; + pp.flags = PP_FLAG_DMA_MAP | PP_FLAG_DMA_SYNC_DEV; if (PAGE_SIZE > BNXT_RX_PAGE_SIZE) pp.flags |= PP_FLAG_PAGE_FRAG; @@ -3318,6 +3593,15 @@ } } +#define BNXT_TC_TO_RING_BASE(bp, tc) \ + ((tc) * (bp)->tx_nr_rings_per_tc) + +#define BNXT_RING_TO_TC_OFF(bp, tx) \ + ((tx) % (bp)->tx_nr_rings_per_tc) + +#define BNXT_RING_TO_TC(bp, tx) \ + ((tx) / (bp)->tx_nr_rings_per_tc) + static int bnxt_alloc_tx_rings(struct bnxt *bp) { int i, j, rc; @@ -3373,7 +3657,7 @@ spin_lock_init(&txr->xdp_tx_lock); if (i < bp->tx_nr_rings_xdp) continue; - if (i % bp->tx_nr_rings_per_tc == (bp->tx_nr_rings_per_tc - 1)) + if (BNXT_RING_TO_TC_OFF(bp, i) == (bp->tx_nr_rings_per_tc - 1)) j++; } return 0; @@ -3456,36 +3740,33 @@ bnxt_free_ring(bp, &ring->ring_mem); - for (j = 0; j < 2; j++) { - struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[j]; + if (!cpr->cp_ring_arr) + continue; - if (cpr2) { - ring = &cpr2->cp_ring_struct; - bnxt_free_ring(bp, &ring->ring_mem); - bnxt_free_cp_arrays(cpr2); - kfree(cpr2); - cpr->cp_ring_arr[j] = NULL; - } + for (j = 0; j < cpr->cp_ring_count; j++) { + struct bnxt_cp_ring_info *cpr2 = &cpr->cp_ring_arr[j]; + + ring = &cpr2->cp_ring_struct; + bnxt_free_ring(bp, &ring->ring_mem); + bnxt_free_cp_arrays(cpr2); } + kfree(cpr->cp_ring_arr); + cpr->cp_ring_arr = NULL; + cpr->cp_ring_count = 0; } } -static struct bnxt_cp_ring_info *bnxt_alloc_cp_sub_ring(struct bnxt *bp) +static int bnxt_alloc_cp_sub_ring(struct bnxt *bp, + struct bnxt_cp_ring_info *cpr) { struct bnxt_ring_mem_info *rmem; struct bnxt_ring_struct *ring; - struct bnxt_cp_ring_info *cpr; int rc; - cpr = kzalloc(sizeof(*cpr), GFP_KERNEL); - if (!cpr) - return NULL; - rc = bnxt_alloc_cp_arrays(cpr, bp->cp_nr_pages); if (rc) { bnxt_free_cp_arrays(cpr); - kfree(cpr); - return NULL; + return -ENOMEM; } ring = &cpr->cp_ring_struct; rmem = &ring->ring_mem; @@ -3498,23 +3779,26 @@ if (rc) { bnxt_free_ring(bp, rmem); bnxt_free_cp_arrays(cpr); - kfree(cpr); - cpr = NULL; } - return cpr; + return rc; } static int bnxt_alloc_cp_rings(struct bnxt *bp) { bool sh = !!(bp->flags & BNXT_FLAG_SHARED_RINGS); - int i, rc, ulp_base_vec, ulp_msix; + int i, j, rc, ulp_base_vec, ulp_msix; + int tcs = netdev_get_num_tc(bp->dev); + if (!tcs) + tcs = 1; ulp_msix = bnxt_get_ulp_msix_num(bp); ulp_base_vec = bnxt_get_ulp_msix_base(bp); - for (i = 0; i < bp->cp_nr_rings; i++) { + for (i = 0, j = 0; i < bp->cp_nr_rings; i++) { struct bnxt_napi *bnapi = bp->bnapi[i]; - struct bnxt_cp_ring_info *cpr; + struct bnxt_cp_ring_info *cpr, *cpr2; struct bnxt_ring_struct *ring; + int cp_count = 0, k; + int rx = 0, tx = 0; if (!bnapi) continue; @@ -3532,35 +3816,55 @@ else ring->map_idx = i; - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) continue; if (i < bp->rx_nr_rings) { - struct bnxt_cp_ring_info *cpr2 = - bnxt_alloc_cp_sub_ring(bp); - - cpr->cp_ring_arr[BNXT_RX_HDL] = cpr2; - if (!cpr2) - return -ENOMEM; - cpr2->bnapi = bnapi; + cp_count++; + rx = 1; + } + if (i < bp->tx_nr_rings_xdp) { + cp_count++; + tx = 1; + } else if ((sh && i < bp->tx_nr_rings) || + (!sh && i >= bp->rx_nr_rings)) { + cp_count += tcs; + tx = 1; } - if ((sh && i < bp->tx_nr_rings) || - (!sh && i >= bp->rx_nr_rings)) { - struct bnxt_cp_ring_info *cpr2 = - bnxt_alloc_cp_sub_ring(bp); - cpr->cp_ring_arr[BNXT_TX_HDL] = cpr2; - if (!cpr2) - return -ENOMEM; + cpr->cp_ring_arr = kcalloc(cp_count, sizeof(*cpr), + GFP_KERNEL); + if (!cpr->cp_ring_arr) + return -ENOMEM; + cpr->cp_ring_count = cp_count; + + for (k = 0; k < cp_count; k++) { + cpr2 = &cpr->cp_ring_arr[k]; + rc = bnxt_alloc_cp_sub_ring(bp, cpr2); + if (rc) + return rc; cpr2->bnapi = bnapi; + cpr2->cp_idx = k; + if (!k && rx) { + bp->rx_ring[i].rx_cpr = cpr2; + cpr2->cp_ring_type = BNXT_NQ_HDL_TYPE_RX; + } else { + int n, tc = k - rx; + + n = BNXT_TC_TO_RING_BASE(bp, tc) + j; + bp->tx_ring[n].tx_cpr = cpr2; + cpr2->cp_ring_type = BNXT_NQ_HDL_TYPE_TX; + } } + if (tx) + j++; } return 0; } static void bnxt_init_ring_struct(struct bnxt *bp) { - int i; + int i, j; for (i = 0; i < bp->cp_nr_rings; i++) { struct bnxt_napi *bnapi = bp->bnapi[i]; @@ -3605,18 +3909,16 @@ rmem->vmem = (void **)&rxr->rx_agg_ring; skip_rx: - txr = bnapi->tx_ring; - if (!txr) - continue; - - ring = &txr->tx_ring_struct; - rmem = &ring->ring_mem; - rmem->nr_pages = bp->tx_nr_pages; - rmem->page_size = HW_RXBD_RING_SIZE; - rmem->pg_arr = (void **)txr->tx_desc_ring; - rmem->dma_arr = txr->tx_desc_mapping; - rmem->vmem_size = SW_TXBD_RING_SIZE * bp->tx_nr_pages; - rmem->vmem = (void **)&txr->tx_buf_ring; + bnxt_for_each_napi_tx(j, bnapi, txr) { + ring = &txr->tx_ring_struct; + rmem = &ring->ring_mem; + rmem->nr_pages = bp->tx_nr_pages; + rmem->page_size = HW_TXBD_RING_SIZE; + rmem->pg_arr = (void **)txr->tx_desc_ring; + rmem->dma_arr = txr->tx_desc_mapping; + rmem->vmem_size = SW_TXBD_RING_SIZE * bp->tx_nr_pages; + rmem->vmem = (void **)&txr->tx_buf_ring; + } } } @@ -3737,11 +4039,10 @@ ring->fw_ring_id = INVALID_HW_RING_ID; cpr->rx_ring_coal.coal_ticks = bp->rx_coal.coal_ticks; cpr->rx_ring_coal.coal_bufs = bp->rx_coal.coal_bufs; - for (j = 0; j < 2; j++) { - struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[j]; - - if (!cpr2) - continue; + if (!cpr->cp_ring_arr) + continue; + for (j = 0; j < cpr->cp_ring_count; j++) { + struct bnxt_cp_ring_info *cpr2 = &cpr->cp_ring_arr[j]; ring = &cpr2->cp_ring_struct; ring->fw_ring_id = INVALID_HW_RING_ID; @@ -3829,7 +4130,7 @@ int num_vnics = 1; #ifdef CONFIG_RFS_ACCEL - if ((bp->flags & (BNXT_FLAG_RFS | BNXT_FLAG_CHIP_P5)) == BNXT_FLAG_RFS) + if ((bp->flags & (BNXT_FLAG_RFS | BNXT_FLAG_CHIP_P5_PLUS)) == BNXT_FLAG_RFS) num_vnics += bp->rx_nr_rings; #endif @@ -4102,7 +4403,7 @@ } } - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) goto vnic_skip_grps; if (vnic->flags & BNXT_VNIC_RSS_FLAG) @@ -4116,13 +4417,13 @@ goto out; } vnic_skip_grps: - if ((bp->flags & BNXT_FLAG_NEW_RSS_CAP) && + if ((bp->rss_cap & BNXT_RSS_CAP_NEW_RSS_CAP) && !(vnic->flags & BNXT_VNIC_RSS_FLAG)) continue; /* Allocate rss table and hash key */ size = L1_CACHE_ALIGN(HW_HASH_INDEX_SIZE * sizeof(u16)); - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) size = L1_CACHE_ALIGN(BNXT_MAX_RSS_TABLE_SIZE_P5); vnic->rss_table_size = size + HW_HASH_KEY_SIZE; @@ -4232,7 +4533,7 @@ int rc; if (!(bp->fw_cap & BNXT_FW_CAP_EXT_HW_STATS_SUPPORTED) || - !(bp->flags & BNXT_FLAG_CHIP_P5)) + !(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) return -EOPNOTSUPP; rc = hwrm_req_init(bp, req, HWRM_FUNC_QSTATS_EXT); @@ -4270,7 +4571,7 @@ stats = &cpr->stats; rc = bnxt_hwrm_func_qstat_ext(bp, stats); if (rc) { - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) mask = (1ULL << 48) - 1; else mask = -1ULL; @@ -4416,7 +4717,7 @@ static void bnxt_clear_ring_indices(struct bnxt *bp) { - int i; + int i, j; if (!bp->bnapi) return; @@ -4433,10 +4734,10 @@ cpr = &bnapi->cp_ring; cpr->cp_raw_cons = 0; - txr = bnapi->tx_ring; - if (txr) { + bnxt_for_each_napi_tx(j, bnapi, txr) { txr->tx_prod = 0; txr->tx_cons = 0; + txr->tx_hw_cons = 0; } rxr = bnapi->rx_ring; @@ -4446,6 +4747,7 @@ rxr->rx_sw_agg_prod = 0; rxr->rx_next_cons = 0; } + bnapi->events = 0; } } @@ -4549,7 +4851,7 @@ bp->bnapi[i] = bnapi; bp->bnapi[i]->index = i; bp->bnapi[i]->bp = bp; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { struct bnxt_cp_ring_info *cpr = &bp->bnapi[i]->cp_ring; @@ -4567,11 +4869,13 @@ for (i = 0; i < bp->rx_nr_rings; i++) { struct bnxt_rx_ring_info *rxr = &bp->rx_ring[i]; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { rxr->rx_ring_struct.ring_mem.flags = BNXT_RMEM_RING_PTE_FLAG; rxr->rx_agg_ring_struct.ring_mem.flags = BNXT_RMEM_RING_PTE_FLAG; + } else { + rxr->rx_cpr = &bp->bnapi[i]->cp_ring; } rxr->bnapi = bp->bnapi[i]; bp->bnapi[i]->rx_ring = &bp->rx_ring[i]; @@ -4594,22 +4898,33 @@ else j = bp->rx_nr_rings; - for (i = 0; i < bp->tx_nr_rings; i++, j++) { + for (i = 0; i < bp->tx_nr_rings; i++) { struct bnxt_tx_ring_info *txr = &bp->tx_ring[i]; + struct bnxt_napi *bnapi2; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) txr->tx_ring_struct.ring_mem.flags = BNXT_RMEM_RING_PTE_FLAG; - txr->bnapi = bp->bnapi[j]; - bp->bnapi[j]->tx_ring = txr; bp->tx_ring_map[i] = bp->tx_nr_rings_xdp + i; if (i >= bp->tx_nr_rings_xdp) { + int k = j + BNXT_RING_TO_TC_OFF(bp, i); + + bnapi2 = bp->bnapi[k]; txr->txq_index = i - bp->tx_nr_rings_xdp; - bp->bnapi[j]->tx_int = bnxt_tx_int; + txr->tx_napi_idx = + BNXT_RING_TO_TC(bp, txr->txq_index); + bnapi2->tx_ring[txr->tx_napi_idx] = txr; + bnapi2->tx_int = bnxt_tx_int; } else { - bp->bnapi[j]->flags |= BNXT_NAPI_FLAG_XDP; - bp->bnapi[j]->tx_int = bnxt_tx_int_xdp; + bnapi2 = bp->bnapi[j]; + bnapi2->flags |= BNXT_NAPI_FLAG_XDP; + bnapi2->tx_ring[0] = txr; + bnapi2->tx_int = bnxt_tx_int_xdp; + j++; } + txr->bnapi = bnapi2; + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) + txr->tx_cpr = &bnapi2->cp_ring; } rc = bnxt_alloc_stats(bp); @@ -5134,7 +5449,7 @@ nsegs = (MAX_SKB_FRAGS - n) / n; } - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { segs = MAX_TPA_SEGS_P5; max_aggs = bp->max_tpa; } else { @@ -5160,35 +5475,25 @@ static u16 bnxt_cp_ring_for_rx(struct bnxt *bp, struct bnxt_rx_ring_info *rxr) { - if (bp->flags & BNXT_FLAG_CHIP_P5) { - struct bnxt_napi *bnapi = rxr->bnapi; - struct bnxt_cp_ring_info *cpr; - - cpr = bnapi->cp_ring.cp_ring_arr[BNXT_RX_HDL]; - return cpr->cp_ring_struct.fw_ring_id; - } else { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) + return rxr->rx_cpr->cp_ring_struct.fw_ring_id; + else return bnxt_cp_ring_from_grp(bp, &rxr->rx_ring_struct); - } } static u16 bnxt_cp_ring_for_tx(struct bnxt *bp, struct bnxt_tx_ring_info *txr) { - if (bp->flags & BNXT_FLAG_CHIP_P5) { - struct bnxt_napi *bnapi = txr->bnapi; - struct bnxt_cp_ring_info *cpr; - - cpr = bnapi->cp_ring.cp_ring_arr[BNXT_TX_HDL]; - return cpr->cp_ring_struct.fw_ring_id; - } else { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) + return txr->tx_cpr->cp_ring_struct.fw_ring_id; + else return bnxt_cp_ring_from_grp(bp, &txr->tx_ring_struct); - } } static int bnxt_alloc_rss_indir_tbl(struct bnxt *bp) { int entries; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) entries = BNXT_MAX_RSS_TABLE_ENTRIES_P5; else entries = HW_HASH_INDEX_SIZE; @@ -5238,7 +5543,7 @@ int bnxt_get_nr_rss_ctxs(struct bnxt *bp, int rx_rings) { - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return DIV_ROUND_UP(rx_rings, BNXT_RSS_TABLE_ENTRIES_P5); if (BNXT_CHIP_TYPE_NITRO_A0(bp)) return 2; @@ -5284,7 +5589,7 @@ __bnxt_hwrm_vnic_set_rss(struct bnxt *bp, struct hwrm_vnic_rss_cfg_input *req, struct bnxt_vnic_info *vnic) { - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) bnxt_fill_hw_rss_tbl_p5(bp, vnic); else bnxt_fill_hw_rss_tbl(bp, vnic); @@ -5309,7 +5614,7 @@ struct hwrm_vnic_rss_cfg_input *req; int rc; - if ((bp->flags & BNXT_FLAG_CHIP_P5) || + if ((bp->flags & BNXT_FLAG_CHIP_P5_PLUS) || vnic->fw_rss_cos_lb_ctx[0] == INVALID_HW_RING_ID) return 0; @@ -5474,7 +5779,7 @@ if (rc) return rc; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { struct bnxt_rx_ring_info *rxr = &bp->rx_ring[0]; req->default_rx_ring_id = @@ -5574,7 +5879,7 @@ if (rc) return rc; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) goto vnic_no_ring_grps; /* map ring groups to this vnic */ @@ -5609,7 +5914,8 @@ int rc; bp->hw_ring_stats_size = sizeof(struct ctx_hw_stats); - bp->flags &= ~(BNXT_FLAG_NEW_RSS_CAP | BNXT_FLAG_ROCE_MIRROR_CAP); + bp->flags &= ~BNXT_FLAG_ROCE_MIRROR_CAP; + bp->rss_cap &= ~BNXT_RSS_CAP_NEW_RSS_CAP; if (bp->hwrm_spec_code < 0x10600) return 0; @@ -5622,9 +5928,9 @@ if (!rc) { u32 flags = le32_to_cpu(resp->flags); - if (!(bp->flags & BNXT_FLAG_CHIP_P5) && + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS) && (flags & VNIC_QCAPS_RESP_FLAGS_RSS_DFLT_CR_CAP)) - bp->flags |= BNXT_FLAG_NEW_RSS_CAP; + bp->rss_cap |= BNXT_RSS_CAP_NEW_RSS_CAP; if (flags & VNIC_QCAPS_RESP_FLAGS_ROCE_MIRRORING_CAPABLE_VNIC_CAP) bp->flags |= BNXT_FLAG_ROCE_MIRROR_CAP; @@ -5633,17 +5939,19 @@ * VLAN_STRIP_CAP properly. */ if ((flags & VNIC_QCAPS_RESP_FLAGS_VLAN_STRIP_CAP) || - (BNXT_CHIP_P5_THOR(bp) && + (BNXT_CHIP_P5(bp) && !(bp->fw_cap & BNXT_FW_CAP_EXT_HW_STATS_SUPPORTED))) bp->fw_cap |= BNXT_FW_CAP_VLAN_RX_STRIP; if (flags & VNIC_QCAPS_RESP_FLAGS_RSS_HASH_TYPE_DELTA_CAP) - bp->fw_cap |= BNXT_FW_CAP_RSS_HASH_TYPE_DELTA; + bp->rss_cap |= BNXT_RSS_CAP_RSS_HASH_TYPE_DELTA; + if (flags & VNIC_QCAPS_RESP_FLAGS_RSS_PROF_TCAM_MODE_ENABLED) + bp->rss_cap |= BNXT_RSS_CAP_RSS_TCAM; bp->max_tpa_v2 = le16_to_cpu(resp->max_aggs_supported); if (bp->max_tpa_v2) { - if (BNXT_CHIP_P5_THOR(bp)) + if (BNXT_CHIP_P5(bp)) bp->hw_ring_stats_size = BNXT_RING_STATS_SIZE_P5; else - bp->hw_ring_stats_size = BNXT_RING_STATS_SIZE_P5_SR2; + bp->hw_ring_stats_size = BNXT_RING_STATS_SIZE_P7; } } hwrm_req_drop(bp, req); @@ -5657,7 +5965,7 @@ int rc; u16 i; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return 0; rc = hwrm_req_init(bp, req, HWRM_RING_GRP_ALLOC); @@ -5690,7 +5998,7 @@ struct hwrm_ring_grp_free_input *req; u16 i; - if (!bp->grp_info || (bp->flags & BNXT_FLAG_CHIP_P5)) + if (!bp->grp_info || (bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) return; if (hwrm_req_init(bp, req, HWRM_RING_GRP_FREE)) @@ -5755,7 +6063,7 @@ case HWRM_RING_ALLOC_RX: req->ring_type = RING_ALLOC_REQ_RING_TYPE_RX; req->length = cpu_to_le32(bp->rx_ring_mask + 1); - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { u16 flags = 0; /* Association of rx ring with stats context */ @@ -5770,7 +6078,7 @@ } break; case HWRM_RING_ALLOC_AGG: - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { req->ring_type = RING_ALLOC_REQ_RING_TYPE_RX_AGG; /* Association of agg ring with rx ring */ grp_info = &bp->grp_info[ring->grp_idx]; @@ -5788,7 +6096,7 @@ 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_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { /* Association of cp ring with nq */ grp_info = &bp->grp_info[map_index]; req->nq_ring_id = cpu_to_le16(grp_info->cp_fw_ring_id); @@ -5834,7 +6142,7 @@ if (BNXT_PF(bp)) { struct hwrm_func_cfg_input *req; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (rc) return rc; @@ -5856,14 +6164,34 @@ } } +static void bnxt_set_db_mask(struct bnxt *bp, struct bnxt_db_info *db, + u32 ring_type) +{ + switch (ring_type) { + case HWRM_RING_ALLOC_TX: + db->db_ring_mask = bp->tx_ring_mask; + break; + case HWRM_RING_ALLOC_RX: + db->db_ring_mask = bp->rx_ring_mask; + break; + case HWRM_RING_ALLOC_AGG: + db->db_ring_mask = bp->rx_agg_ring_mask; + break; + case HWRM_RING_ALLOC_CMPL: + case HWRM_RING_ALLOC_NQ: + db->db_ring_mask = bp->cp_ring_mask; + break; + } + if (bp->flags & BNXT_FLAG_CHIP_P7) { + db->db_epoch_mask = db->db_ring_mask + 1; + db->db_epoch_shift = DBR_EPOCH_SFT - ilog2(db->db_epoch_mask); + } +} + static void bnxt_set_db(struct bnxt *bp, struct bnxt_db_info *db, u32 ring_type, u32 map_idx, u32 xid) { - if (bp->flags & BNXT_FLAG_CHIP_P5) { - if (BNXT_PF(bp)) - db->doorbell = bp->bar1 + DB_PF_OFFSET_P5; - else - db->doorbell = bp->bar1 + DB_VF_OFFSET_P5; + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { switch (ring_type) { case HWRM_RING_ALLOC_TX: db->db_key64 = DBR_PATH_L2 | DBR_TYPE_SQ; @@ -5880,6 +6208,11 @@ break; } db->db_key64 |= (u64)xid << DBR_XID_SFT; + + if (bp->flags & BNXT_FLAG_CHIP_P7) + db->db_key64 |= DBR_VALID; + + db->doorbell = bp->bar1 + bp->db_offset; } else { db->doorbell = bp->bar1 + map_idx * 0x80; switch (ring_type) { @@ -5895,6 +6228,7 @@ break; } } + bnxt_set_db_mask(bp, db, ring_type); } static int bnxt_hwrm_ring_alloc(struct bnxt *bp) @@ -5903,7 +6237,7 @@ int i, rc = 0; u32 type; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) type = HWRM_RING_ALLOC_NQ; else type = HWRM_RING_ALLOC_CMPL; @@ -5939,15 +6273,13 @@ struct bnxt_ring_struct *ring; u32 map_idx; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { + struct bnxt_cp_ring_info *cpr2 = txr->tx_cpr; struct bnxt_napi *bnapi = txr->bnapi; - struct bnxt_cp_ring_info *cpr, *cpr2; u32 type2 = HWRM_RING_ALLOC_CMPL; - cpr = &bnapi->cp_ring; - cpr2 = cpr->cp_ring_arr[BNXT_TX_HDL]; ring = &cpr2->cp_ring_struct; - ring->handle = BNXT_TX_HDL; + ring->handle = BNXT_SET_NQ_HDL(cpr2); map_idx = bnapi->index; rc = hwrm_ring_alloc_send_msg(bp, ring, type2, map_idx); if (rc) @@ -5979,14 +6311,12 @@ if (!agg_rings) bnxt_db_write(bp, &rxr->rx_db, rxr->rx_prod); bp->grp_info[map_idx].rx_fw_ring_id = ring->fw_ring_id; - if (bp->flags & BNXT_FLAG_CHIP_P5) { - struct bnxt_cp_ring_info *cpr = &bnapi->cp_ring; + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { + struct bnxt_cp_ring_info *cpr2 = rxr->rx_cpr; u32 type2 = HWRM_RING_ALLOC_CMPL; - struct bnxt_cp_ring_info *cpr2; - cpr2 = cpr->cp_ring_arr[BNXT_RX_HDL]; ring = &cpr2->cp_ring_struct; - ring->handle = BNXT_RX_HDL; + ring->handle = BNXT_SET_NQ_HDL(cpr2); rc = hwrm_ring_alloc_send_msg(bp, ring, type2, map_idx); if (rc) goto err_out; @@ -6094,7 +6424,7 @@ } } - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) type = RING_FREE_REQ_RING_TYPE_RX_AGG; else type = RING_FREE_REQ_RING_TYPE_RX; @@ -6121,7 +6451,7 @@ */ bnxt_disable_int_sync(bp); - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) type = RING_FREE_REQ_RING_TYPE_NQ; else type = RING_FREE_REQ_RING_TYPE_L2_CMPL; @@ -6131,18 +6461,16 @@ struct bnxt_ring_struct *ring; int j; - for (j = 0; j < 2; j++) { - struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[j]; + for (j = 0; j < cpr->cp_ring_count && cpr->cp_ring_arr; j++) { + struct bnxt_cp_ring_info *cpr2 = &cpr->cp_ring_arr[j]; - if (cpr2) { - ring = &cpr2->cp_ring_struct; - if (ring->fw_ring_id == INVALID_HW_RING_ID) - continue; - 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; - } + ring = &cpr2->cp_ring_struct; + if (ring->fw_ring_id == INVALID_HW_RING_ID) + continue; + 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; } ring = &cpr->cp_ring_struct; if (ring->fw_ring_id != INVALID_HW_RING_ID) { @@ -6190,14 +6518,15 @@ cp = le16_to_cpu(resp->alloc_cmpl_rings); stats = le16_to_cpu(resp->alloc_stat_ctx); hw_resc->resv_irqs = cp; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { int rx = hw_resc->resv_rx_rings; int tx = hw_resc->resv_tx_rings; if (bp->flags & BNXT_FLAG_AGG_RINGS) rx >>= 1; if (cp < (rx + tx)) { - bnxt_trim_rings(bp, &rx, &tx, cp, false); + rx = cp / 2; + tx = rx; if (bp->flags & BNXT_FLAG_AGG_RINGS) rx <<= 1; hw_resc->resv_rx_rings = rx; @@ -6245,7 +6574,7 @@ struct hwrm_func_cfg_input *req; u32 enables = 0; - if (hwrm_req_init(bp, req, HWRM_FUNC_CFG)) + if (bnxt_hwrm_func_cfg_short_req_init(bp, &req)) return NULL; req->fid = cpu_to_le16(0xffff); @@ -6254,7 +6583,7 @@ if (BNXT_NEW_RM(bp)) { enables |= rx_rings ? FUNC_CFG_REQ_ENABLES_NUM_RX_RINGS : 0; enables |= stats ? FUNC_CFG_REQ_ENABLES_NUM_STAT_CTXS : 0; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { enables |= cp_rings ? FUNC_CFG_REQ_ENABLES_NUM_MSIX : 0; enables |= tx_rings + ring_grps ? FUNC_CFG_REQ_ENABLES_NUM_CMPL_RINGS : 0; @@ -6270,7 +6599,7 @@ enables |= vnics ? FUNC_CFG_REQ_ENABLES_NUM_VNICS : 0; req->num_rx_rings = cpu_to_le16(rx_rings); - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { req->num_cmpl_rings = cpu_to_le16(tx_rings + ring_grps); req->num_msix = cpu_to_le16(cp_rings); req->num_rsscos_ctxs = @@ -6279,7 +6608,7 @@ req->num_cmpl_rings = cpu_to_le16(cp_rings); req->num_hw_ring_grps = cpu_to_le16(ring_grps); req->num_rsscos_ctxs = cpu_to_le16(1); - if (!(bp->flags & BNXT_FLAG_NEW_RSS_CAP) && + if (!(bp->rss_cap & BNXT_RSS_CAP_NEW_RSS_CAP) && bnxt_rfs_supported(bp)) req->num_rsscos_ctxs = cpu_to_le16(ring_grps + 1); @@ -6305,7 +6634,7 @@ enables |= rx_rings ? FUNC_VF_CFG_REQ_ENABLES_NUM_RX_RINGS | FUNC_VF_CFG_REQ_ENABLES_NUM_RSSCOS_CTXS : 0; enables |= stats ? FUNC_VF_CFG_REQ_ENABLES_NUM_STAT_CTXS : 0; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { enables |= tx_rings + ring_grps ? FUNC_VF_CFG_REQ_ENABLES_NUM_CMPL_RINGS : 0; } else { @@ -6320,7 +6649,7 @@ req->num_l2_ctxs = cpu_to_le16(BNXT_VF_MAX_L2_CTX); req->num_tx_rings = cpu_to_le16(tx_rings); req->num_rx_rings = cpu_to_le16(rx_rings); - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { req->num_cmpl_rings = cpu_to_le16(tx_rings + ring_grps); req->num_rsscos_ctxs = cpu_to_le16(DIV_ROUND_UP(ring_grps, 64)); } else { @@ -6416,7 +6745,7 @@ { int cp; - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) return bnxt_nq_rings_in_use(bp); cp = bp->tx_nr_rings + bp->rx_nr_rings; @@ -6473,7 +6802,8 @@ bnxt_check_rss_tbl_no_rmgr(bp); return false; } - if ((bp->flags & BNXT_FLAG_RFS) && !(bp->flags & BNXT_FLAG_CHIP_P5)) + if ((bp->flags & BNXT_FLAG_RFS) && + !(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) vnic = rx + 1; if (bp->flags & BNXT_FLAG_AGG_RINGS) rx <<= 1; @@ -6481,9 +6811,9 @@ if (hw_resc->resv_rx_rings != rx || hw_resc->resv_cp_rings != cp || hw_resc->resv_vnics != vnic || hw_resc->resv_stat_ctxs != stat || (hw_resc->resv_hw_ring_grps != grp && - !(bp->flags & BNXT_FLAG_CHIP_P5))) + !(bp->flags & BNXT_FLAG_CHIP_P5_PLUS))) return true; - if ((bp->flags & BNXT_FLAG_CHIP_P5) && BNXT_PF(bp) && + if ((bp->flags & BNXT_FLAG_CHIP_P5_PLUS) && BNXT_PF(bp) && hw_resc->resv_irqs != nq) return true; return false; @@ -6498,13 +6828,15 @@ int grp, rx_rings, rc; int vnic = 1, stat; bool sh = false; + int tx_cp; if (!bnxt_need_reserve_rings(bp)) return 0; if (bp->flags & BNXT_FLAG_SHARED_RINGS) sh = true; - if ((bp->flags & BNXT_FLAG_RFS) && !(bp->flags & BNXT_FLAG_CHIP_P5)) + if ((bp->flags & BNXT_FLAG_RFS) && + !(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) vnic = rx + 1; if (bp->flags & BNXT_FLAG_AGG_RINGS) rx <<= 1; @@ -6547,7 +6879,8 @@ rc = bnxt_trim_rings(bp, &rx_rings, &tx, cp, sh); if (bp->flags & BNXT_FLAG_AGG_RINGS) rx = rx_rings << 1; - cp = sh ? max_t(int, tx, rx_rings) : tx + rx_rings; + tx_cp = bnxt_num_tx_to_cp(bp, tx); + cp = sh ? max_t(int, tx_cp, rx_rings) : tx_cp + rx_rings; bp->tx_nr_rings = tx; /* If we cannot reserve all the RX rings, reset the RSS map only @@ -6594,7 +6927,7 @@ FUNC_VF_CFG_REQ_FLAGS_STAT_CTX_ASSETS_TEST | FUNC_VF_CFG_REQ_FLAGS_VNIC_ASSETS_TEST | FUNC_VF_CFG_REQ_FLAGS_RSSCOS_CTX_ASSETS_TEST; - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) flags |= FUNC_VF_CFG_REQ_FLAGS_RING_GRP_ASSETS_TEST; req->flags = cpu_to_le32(flags); @@ -6616,7 +6949,7 @@ FUNC_CFG_REQ_FLAGS_CMPL_ASSETS_TEST | FUNC_CFG_REQ_FLAGS_STAT_CTX_ASSETS_TEST | FUNC_CFG_REQ_FLAGS_VNIC_ASSETS_TEST; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) flags |= FUNC_CFG_REQ_FLAGS_RSSCOS_CTX_ASSETS_TEST | FUNC_CFG_REQ_FLAGS_NQ_ASSETS_TEST; else @@ -6810,10 +7143,40 @@ return hwrm_req_send(bp, req_rx); } +static int +bnxt_hwrm_set_rx_coal(struct bnxt *bp, struct bnxt_napi *bnapi, + struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req) +{ + u16 ring_id = bnxt_cp_ring_for_rx(bp, bnapi->rx_ring); + + req->ring_id = cpu_to_le16(ring_id); + return hwrm_req_send(bp, req); +} + +static int +bnxt_hwrm_set_tx_coal(struct bnxt *bp, struct bnxt_napi *bnapi, + struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req) +{ + struct bnxt_tx_ring_info *txr; + int i, rc; + + bnxt_for_each_napi_tx(i, bnapi, txr) { + u16 ring_id; + + ring_id = bnxt_cp_ring_for_tx(bp, txr); + req->ring_id = cpu_to_le16(ring_id); + rc = hwrm_req_send(bp, req); + if (rc) + return rc; + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) + return 0; + } + return 0; +} + int bnxt_hwrm_set_coal(struct bnxt *bp) { - struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req_rx, *req_tx, - *req; + struct hwrm_ring_cmpl_ring_cfg_aggint_params_input *req_rx, *req_tx; int i, rc; rc = hwrm_req_init(bp, req_rx, HWRM_RING_CMPL_RING_CFG_AGGINT_PARAMS); @@ -6834,29 +7197,19 @@ for (i = 0; i < bp->cp_nr_rings; i++) { struct bnxt_napi *bnapi = bp->bnapi[i]; struct bnxt_coal *hw_coal; - u16 ring_id; - req = req_rx; - if (!bnapi->rx_ring) { - ring_id = bnxt_cp_ring_for_tx(bp, bnapi->tx_ring); - req = req_tx; - } else { - ring_id = bnxt_cp_ring_for_rx(bp, bnapi->rx_ring); - } - req->ring_id = cpu_to_le16(ring_id); - - rc = hwrm_req_send(bp, req); + if (!bnapi->rx_ring) + rc = bnxt_hwrm_set_tx_coal(bp, bnapi, req_tx); + else + rc = bnxt_hwrm_set_rx_coal(bp, bnapi, req_rx); if (rc) break; - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) continue; - if (bnapi->rx_ring && bnapi->tx_ring) { - req = req_tx; - ring_id = bnxt_cp_ring_for_tx(bp, bnapi->tx_ring); - req->ring_id = cpu_to_le16(ring_id); - rc = hwrm_req_send(bp, req); + if (bnapi->rx_ring && bnapi->tx_ring[0]) { + rc = bnxt_hwrm_set_tx_coal(bp, bnapi, req_tx); if (rc) break; } @@ -6952,7 +7305,6 @@ { struct hwrm_func_qcfg_output *resp; struct hwrm_func_qcfg_input *req; - u32 min_db_offset = 0; u16 flags; int rc; @@ -7010,16 +7362,17 @@ if (bp->db_size) goto func_qcfg_exit; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + bp->db_offset = le16_to_cpu(resp->legacy_l2_db_size_kb) * 1024; + if (BNXT_CHIP_P5(bp)) { if (BNXT_PF(bp)) - min_db_offset = DB_PF_OFFSET_P5; + bp->db_offset = DB_PF_OFFSET_P5; else - min_db_offset = DB_VF_OFFSET_P5; + bp->db_offset = DB_VF_OFFSET_P5; } bp->db_size = PAGE_ALIGN(le16_to_cpu(resp->l2_doorbell_bar_size_kb) * 1024); if (!bp->db_size || bp->db_size > pci_resource_len(bp->pdev, 2) || - bp->db_size <= min_db_offset) + bp->db_size <= bp->db_offset) bp->db_size = pci_resource_len(bp->pdev, 2); func_qcfg_exit: @@ -7027,37 +7380,99 @@ return rc; } -static void bnxt_init_ctx_initializer(struct bnxt_ctx_mem_info *ctx, - struct hwrm_func_backing_store_qcaps_output *resp) +static void bnxt_init_ctx_initializer(struct bnxt_ctx_mem_type *ctxm, + u8 init_val, u8 init_offset, + bool init_mask_set) +{ + ctxm->init_value = init_val; + ctxm->init_offset = BNXT_CTX_INIT_INVALID_OFFSET; + if (init_mask_set) + ctxm->init_offset = init_offset * 4; + else + ctxm->init_value = 0; +} + +static int bnxt_alloc_all_ctx_pg_info(struct bnxt *bp, int ctx_max) { - struct bnxt_mem_init *mem_init; - u16 init_mask; - u8 init_val; - u8 *offset; - int i; - - init_val = resp->ctx_kind_initializer; - init_mask = le16_to_cpu(resp->ctx_init_mask); - offset = &resp->qp_init_offset; - mem_init = &ctx->mem_init[BNXT_CTX_MEM_INIT_QP]; - for (i = 0; i < BNXT_CTX_MEM_INIT_MAX; i++, mem_init++, offset++) { - mem_init->init_val = init_val; - mem_init->offset = BNXT_MEM_INVALID_OFFSET; - if (!init_mask) + struct bnxt_ctx_mem_info *ctx = bp->ctx; + u16 type; + + for (type = 0; type < ctx_max; type++) { + struct bnxt_ctx_mem_type *ctxm = &ctx->ctx_arr[type]; + int n = 1; + + if (!ctxm->max_entries) continue; - if (i == BNXT_CTX_MEM_INIT_STAT) - offset = &resp->stat_init_offset; - if (init_mask & (1 << i)) - mem_init->offset = *offset * 4; - else - mem_init->init_val = 0; + + if (ctxm->instance_bmap) + n = hweight32(ctxm->instance_bmap); + ctxm->pg_info = kcalloc(n, sizeof(*ctxm->pg_info), GFP_KERNEL); + if (!ctxm->pg_info) + return -ENOMEM; + } + return 0; +} + +#define BNXT_CTX_INIT_VALID(flags) \ + (!!((flags) & \ + FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_ENABLE_CTX_KIND_INIT)) + +static int bnxt_hwrm_func_backing_store_qcaps_v2(struct bnxt *bp) +{ + struct hwrm_func_backing_store_qcaps_v2_output *resp; + struct hwrm_func_backing_store_qcaps_v2_input *req; + struct bnxt_ctx_mem_info *ctx; + u16 type; + int rc; + + rc = hwrm_req_init(bp, req, HWRM_FUNC_BACKING_STORE_QCAPS_V2); + if (rc) + return rc; + + ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); + if (!ctx) + return -ENOMEM; + bp->ctx = ctx; + + resp = hwrm_req_hold(bp, req); + + for (type = 0; type < BNXT_CTX_V2_MAX; ) { + struct bnxt_ctx_mem_type *ctxm = &ctx->ctx_arr[type]; + u8 init_val, init_off, i; + __le32 *p; + u32 flags; + + req->type = cpu_to_le16(type); + rc = hwrm_req_send(bp, req); + if (rc) + goto ctx_done; + flags = le32_to_cpu(resp->flags); + type = le16_to_cpu(resp->next_valid_type); + if (!(flags & FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_TYPE_VALID)) + continue; + + ctxm->type = le16_to_cpu(resp->type); + ctxm->entry_size = le16_to_cpu(resp->entry_size); + ctxm->flags = flags; + ctxm->instance_bmap = le32_to_cpu(resp->instance_bit_map); + ctxm->entry_multiple = resp->entry_multiple; + ctxm->max_entries = le32_to_cpu(resp->max_num_entries); + ctxm->min_entries = le32_to_cpu(resp->min_num_entries); + init_val = resp->ctx_init_value; + init_off = resp->ctx_init_offset; + bnxt_init_ctx_initializer(ctxm, init_val, init_off, + BNXT_CTX_INIT_VALID(flags)); + ctxm->split_entry_cnt = min_t(u8, resp->subtype_valid_cnt, + BNXT_MAX_SPLIT_ENTRY); + for (i = 0, p = &resp->split_entry_0; i < ctxm->split_entry_cnt; + i++, p++) + ctxm->split[i] = le32_to_cpu(*p); } - ctx->mem_init[BNXT_CTX_MEM_INIT_QP].size = ctx->qp_entry_size; - ctx->mem_init[BNXT_CTX_MEM_INIT_SRQ].size = ctx->srq_entry_size; - ctx->mem_init[BNXT_CTX_MEM_INIT_CQ].size = ctx->cq_entry_size; - ctx->mem_init[BNXT_CTX_MEM_INIT_VNIC].size = ctx->vnic_entry_size; - ctx->mem_init[BNXT_CTX_MEM_INIT_STAT].size = ctx->stat_entry_size; - ctx->mem_init[BNXT_CTX_MEM_INIT_MRAV].size = ctx->mrav_entry_size; + rc = bnxt_alloc_all_ctx_pg_info(bp, BNXT_CTX_V2_MAX); + +ctx_done: + hwrm_req_drop(bp, req); + return rc; } static int bnxt_hwrm_func_backing_store_qcaps(struct bnxt *bp) @@ -7069,6 +7484,9 @@ if (bp->hwrm_spec_code < 0x10902 || BNXT_VF(bp) || bp->ctx) return 0; + if (bp->fw_cap & BNXT_FW_CAP_BACKING_STORE_V2) + return bnxt_hwrm_func_backing_store_qcaps_v2(bp); + rc = hwrm_req_init(bp, req, HWRM_FUNC_BACKING_STORE_QCAPS); if (rc) return rc; @@ -7076,48 +7494,83 @@ resp = hwrm_req_hold(bp, req); rc = hwrm_req_send_silent(bp, req); if (!rc) { - struct bnxt_ctx_pg_info *ctx_pg; + struct bnxt_ctx_mem_type *ctxm; struct bnxt_ctx_mem_info *ctx; - int i, tqm_rings; + u8 init_val, init_idx = 0; + u16 init_mask; - ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); + ctx = bp->ctx; if (!ctx) { - rc = -ENOMEM; - goto ctx_err; + ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); + if (!ctx) { + rc = -ENOMEM; + goto ctx_err; + } + bp->ctx = ctx; } - ctx->qp_max_entries = le32_to_cpu(resp->qp_max_entries); - ctx->qp_min_qp1_entries = le16_to_cpu(resp->qp_min_qp1_entries); - ctx->qp_max_l2_entries = le16_to_cpu(resp->qp_max_l2_entries); - ctx->qp_entry_size = le16_to_cpu(resp->qp_entry_size); - ctx->srq_max_l2_entries = le16_to_cpu(resp->srq_max_l2_entries); - ctx->srq_max_entries = le32_to_cpu(resp->srq_max_entries); - ctx->srq_entry_size = le16_to_cpu(resp->srq_entry_size); - ctx->cq_max_l2_entries = le16_to_cpu(resp->cq_max_l2_entries); - ctx->cq_max_entries = le32_to_cpu(resp->cq_max_entries); - ctx->cq_entry_size = le16_to_cpu(resp->cq_entry_size); - ctx->vnic_max_vnic_entries = - le16_to_cpu(resp->vnic_max_vnic_entries); - ctx->vnic_max_ring_table_entries = + init_val = resp->ctx_kind_initializer; + init_mask = le16_to_cpu(resp->ctx_init_mask); + + ctxm = &ctx->ctx_arr[BNXT_CTX_QP]; + ctxm->max_entries = le32_to_cpu(resp->qp_max_entries); + ctxm->qp_qp1_entries = le16_to_cpu(resp->qp_min_qp1_entries); + ctxm->qp_l2_entries = le16_to_cpu(resp->qp_max_l2_entries); + ctxm->entry_size = le16_to_cpu(resp->qp_entry_size); + bnxt_init_ctx_initializer(ctxm, init_val, resp->qp_init_offset, + (init_mask & (1 << init_idx++)) != 0); + + ctxm = &ctx->ctx_arr[BNXT_CTX_SRQ]; + ctxm->srq_l2_entries = le16_to_cpu(resp->srq_max_l2_entries); + ctxm->max_entries = le32_to_cpu(resp->srq_max_entries); + ctxm->entry_size = le16_to_cpu(resp->srq_entry_size); + bnxt_init_ctx_initializer(ctxm, init_val, resp->srq_init_offset, + (init_mask & (1 << init_idx++)) != 0); + + ctxm = &ctx->ctx_arr[BNXT_CTX_CQ]; + ctxm->cq_l2_entries = le16_to_cpu(resp->cq_max_l2_entries); + ctxm->max_entries = le32_to_cpu(resp->cq_max_entries); + ctxm->entry_size = le16_to_cpu(resp->cq_entry_size); + bnxt_init_ctx_initializer(ctxm, init_val, resp->cq_init_offset, + (init_mask & (1 << init_idx++)) != 0); + + ctxm = &ctx->ctx_arr[BNXT_CTX_VNIC]; + ctxm->vnic_entries = le16_to_cpu(resp->vnic_max_vnic_entries); + ctxm->max_entries = ctxm->vnic_entries + le16_to_cpu(resp->vnic_max_ring_table_entries); - ctx->vnic_entry_size = le16_to_cpu(resp->vnic_entry_size); - ctx->stat_max_entries = le32_to_cpu(resp->stat_max_entries); - ctx->stat_entry_size = le16_to_cpu(resp->stat_entry_size); - ctx->tqm_entry_size = le16_to_cpu(resp->tqm_entry_size); - ctx->tqm_min_entries_per_ring = - le32_to_cpu(resp->tqm_min_entries_per_ring); - ctx->tqm_max_entries_per_ring = - le32_to_cpu(resp->tqm_max_entries_per_ring); - ctx->tqm_entries_multiple = resp->tqm_entries_multiple; - if (!ctx->tqm_entries_multiple) - ctx->tqm_entries_multiple = 1; - ctx->mrav_max_entries = le32_to_cpu(resp->mrav_max_entries); - ctx->mrav_entry_size = le16_to_cpu(resp->mrav_entry_size); - ctx->mrav_num_entries_units = + ctxm->entry_size = le16_to_cpu(resp->vnic_entry_size); + bnxt_init_ctx_initializer(ctxm, init_val, + resp->vnic_init_offset, + (init_mask & (1 << init_idx++)) != 0); + + ctxm = &ctx->ctx_arr[BNXT_CTX_STAT]; + ctxm->max_entries = le32_to_cpu(resp->stat_max_entries); + ctxm->entry_size = le16_to_cpu(resp->stat_entry_size); + bnxt_init_ctx_initializer(ctxm, init_val, + resp->stat_init_offset, + (init_mask & (1 << init_idx++)) != 0); + + ctxm = &ctx->ctx_arr[BNXT_CTX_STQM]; + ctxm->entry_size = le16_to_cpu(resp->tqm_entry_size); + ctxm->min_entries = le32_to_cpu(resp->tqm_min_entries_per_ring); + ctxm->max_entries = le32_to_cpu(resp->tqm_max_entries_per_ring); + ctxm->entry_multiple = resp->tqm_entries_multiple; + if (!ctxm->entry_multiple) + ctxm->entry_multiple = 1; + + memcpy(&ctx->ctx_arr[BNXT_CTX_FTQM], ctxm, sizeof(*ctxm)); + + ctxm = &ctx->ctx_arr[BNXT_CTX_MRAV]; + ctxm->max_entries = le32_to_cpu(resp->mrav_max_entries); + ctxm->entry_size = le16_to_cpu(resp->mrav_entry_size); + ctxm->mrav_num_entries_units = le16_to_cpu(resp->mrav_num_entries_units); - ctx->tim_entry_size = le16_to_cpu(resp->tim_entry_size); - ctx->tim_max_entries = le32_to_cpu(resp->tim_max_entries); - - bnxt_init_ctx_initializer(ctx, resp); + bnxt_init_ctx_initializer(ctxm, init_val, + resp->mrav_init_offset, + (init_mask & (1 << init_idx++)) != 0); + + ctxm = &ctx->ctx_arr[BNXT_CTX_TIM]; + ctxm->entry_size = le16_to_cpu(resp->tim_entry_size); + ctxm->max_entries = le32_to_cpu(resp->tim_max_entries); ctx->tqm_fp_rings_count = resp->tqm_fp_rings_count; if (!ctx->tqm_fp_rings_count) @@ -7125,16 +7578,11 @@ else if (ctx->tqm_fp_rings_count > BNXT_MAX_TQM_FP_RINGS) ctx->tqm_fp_rings_count = BNXT_MAX_TQM_FP_RINGS; - tqm_rings = ctx->tqm_fp_rings_count + BNXT_MAX_TQM_SP_RINGS; - ctx_pg = kcalloc(tqm_rings, sizeof(*ctx_pg), GFP_KERNEL); - if (!ctx_pg) { - kfree(ctx); - rc = -ENOMEM; - goto ctx_err; - } - for (i = 0; i < tqm_rings; i++, ctx_pg++) - ctx->tqm_mem[i] = ctx_pg; - bp->ctx = ctx; + ctxm = &ctx->ctx_arr[BNXT_CTX_FTQM]; + memcpy(ctxm, &ctx->ctx_arr[BNXT_CTX_STQM], sizeof(*ctxm)); + ctxm->instance_bmap = (1 << ctx->tqm_fp_rings_count) - 1; + + rc = bnxt_alloc_all_ctx_pg_info(bp, BNXT_CTX_MAX); } else { rc = 0; } @@ -7173,6 +7621,7 @@ struct hwrm_func_backing_store_cfg_input *req; struct bnxt_ctx_mem_info *ctx = bp->ctx; struct bnxt_ctx_pg_info *ctx_pg; + struct bnxt_ctx_mem_type *ctxm; void **__req = (void **)&req; u32 req_len = sizeof(*req); __le32 *num_entries; @@ -7194,82 +7643,99 @@ req->enables = cpu_to_le32(enables); if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_QP) { - ctx_pg = &ctx->qp_mem; + ctxm = &ctx->ctx_arr[BNXT_CTX_QP]; + ctx_pg = ctxm->pg_info; req->qp_num_entries = cpu_to_le32(ctx_pg->entries); - req->qp_num_qp1_entries = cpu_to_le16(ctx->qp_min_qp1_entries); - req->qp_num_l2_entries = cpu_to_le16(ctx->qp_max_l2_entries); - req->qp_entry_size = cpu_to_le16(ctx->qp_entry_size); + req->qp_num_qp1_entries = cpu_to_le16(ctxm->qp_qp1_entries); + req->qp_num_l2_entries = cpu_to_le16(ctxm->qp_l2_entries); + req->qp_entry_size = cpu_to_le16(ctxm->entry_size); bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, &req->qpc_pg_size_qpc_lvl, &req->qpc_page_dir); } if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_SRQ) { - ctx_pg = &ctx->srq_mem; + ctxm = &ctx->ctx_arr[BNXT_CTX_SRQ]; + ctx_pg = ctxm->pg_info; req->srq_num_entries = cpu_to_le32(ctx_pg->entries); - req->srq_num_l2_entries = cpu_to_le16(ctx->srq_max_l2_entries); - req->srq_entry_size = cpu_to_le16(ctx->srq_entry_size); + req->srq_num_l2_entries = cpu_to_le16(ctxm->srq_l2_entries); + req->srq_entry_size = cpu_to_le16(ctxm->entry_size); bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, &req->srq_pg_size_srq_lvl, &req->srq_page_dir); } if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_CQ) { - ctx_pg = &ctx->cq_mem; + ctxm = &ctx->ctx_arr[BNXT_CTX_CQ]; + ctx_pg = ctxm->pg_info; req->cq_num_entries = cpu_to_le32(ctx_pg->entries); - req->cq_num_l2_entries = cpu_to_le16(ctx->cq_max_l2_entries); - req->cq_entry_size = cpu_to_le16(ctx->cq_entry_size); + req->cq_num_l2_entries = cpu_to_le16(ctxm->cq_l2_entries); + req->cq_entry_size = cpu_to_le16(ctxm->entry_size); bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, &req->cq_pg_size_cq_lvl, &req->cq_page_dir); } if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_VNIC) { - ctx_pg = &ctx->vnic_mem; - req->vnic_num_vnic_entries = - cpu_to_le16(ctx->vnic_max_vnic_entries); + ctxm = &ctx->ctx_arr[BNXT_CTX_VNIC]; + ctx_pg = ctxm->pg_info; + req->vnic_num_vnic_entries = cpu_to_le16(ctxm->vnic_entries); req->vnic_num_ring_table_entries = - cpu_to_le16(ctx->vnic_max_ring_table_entries); - req->vnic_entry_size = cpu_to_le16(ctx->vnic_entry_size); + cpu_to_le16(ctxm->max_entries - ctxm->vnic_entries); + req->vnic_entry_size = cpu_to_le16(ctxm->entry_size); bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, &req->vnic_pg_size_vnic_lvl, &req->vnic_page_dir); } if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_STAT) { - ctx_pg = &ctx->stat_mem; - req->stat_num_entries = cpu_to_le32(ctx->stat_max_entries); - req->stat_entry_size = cpu_to_le16(ctx->stat_entry_size); + ctxm = &ctx->ctx_arr[BNXT_CTX_STAT]; + ctx_pg = ctxm->pg_info; + req->stat_num_entries = cpu_to_le32(ctxm->max_entries); + req->stat_entry_size = cpu_to_le16(ctxm->entry_size); bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, &req->stat_pg_size_stat_lvl, &req->stat_page_dir); } if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_MRAV) { - ctx_pg = &ctx->mrav_mem; + u32 units; + + ctxm = &ctx->ctx_arr[BNXT_CTX_MRAV]; + ctx_pg = ctxm->pg_info; req->mrav_num_entries = cpu_to_le32(ctx_pg->entries); - if (ctx->mrav_num_entries_units) - flags |= - FUNC_BACKING_STORE_CFG_REQ_FLAGS_MRAV_RESERVATION_SPLIT; - req->mrav_entry_size = cpu_to_le16(ctx->mrav_entry_size); + units = ctxm->mrav_num_entries_units; + if (units) { + u32 num_mr, num_ah = ctxm->mrav_av_entries; + u32 entries; + + num_mr = ctx_pg->entries - num_ah; + entries = ((num_mr / units) << 16) | (num_ah / units); + req->mrav_num_entries = cpu_to_le32(entries); + flags |= FUNC_BACKING_STORE_CFG_REQ_FLAGS_MRAV_RESERVATION_SPLIT; + } + req->mrav_entry_size = cpu_to_le16(ctxm->entry_size); bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, &req->mrav_pg_size_mrav_lvl, &req->mrav_page_dir); } if (enables & FUNC_BACKING_STORE_CFG_REQ_ENABLES_TIM) { - ctx_pg = &ctx->tim_mem; + ctxm = &ctx->ctx_arr[BNXT_CTX_TIM]; + ctx_pg = ctxm->pg_info; req->tim_num_entries = cpu_to_le32(ctx_pg->entries); - req->tim_entry_size = cpu_to_le16(ctx->tim_entry_size); + req->tim_entry_size = cpu_to_le16(ctxm->entry_size); bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, &req->tim_pg_size_tim_lvl, &req->tim_page_dir); } + ctxm = &ctx->ctx_arr[BNXT_CTX_STQM]; for (i = 0, num_entries = &req->tqm_sp_num_entries, pg_attr = &req->tqm_sp_pg_size_tqm_sp_lvl, pg_dir = &req->tqm_sp_page_dir, - ena = FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_SP; + ena = FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_SP, + ctx_pg = ctxm->pg_info; i < BNXT_MAX_TQM_RINGS; + ctx_pg = &ctx->ctx_arr[BNXT_CTX_FTQM].pg_info[i], i++, num_entries++, pg_attr++, pg_dir++, ena <<= 1) { if (!(enables & ena)) continue; - req->tqm_entry_size = cpu_to_le16(ctx->tqm_entry_size); - ctx_pg = ctx->tqm_mem[i]; + req->tqm_entry_size = cpu_to_le16(ctxm->entry_size); *num_entries = cpu_to_le32(ctx_pg->entries); bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, pg_attr, pg_dir); } @@ -7293,7 +7759,7 @@ static int bnxt_alloc_ctx_pg_tbls(struct bnxt *bp, struct bnxt_ctx_pg_info *ctx_pg, u32 mem_size, - u8 depth, struct bnxt_mem_init *mem_init) + u8 depth, struct bnxt_ctx_mem_type *ctxm) { struct bnxt_ring_mem_info *rmem = &ctx_pg->ring_mem; int rc; @@ -7331,7 +7797,7 @@ rmem->pg_tbl_map = ctx_pg->ctx_dma_arr[i]; rmem->depth = 1; rmem->nr_pages = MAX_CTX_PAGES; - rmem->mem_init = mem_init; + rmem->ctx_mem = ctxm; if (i == (nr_tbls - 1)) { int rem = ctx_pg->nr_pages % MAX_CTX_PAGES; @@ -7346,7 +7812,7 @@ rmem->nr_pages = DIV_ROUND_UP(mem_size, BNXT_PAGE_SIZE); if (rmem->nr_pages > 1 || depth) rmem->depth = 1; - rmem->mem_init = mem_init; + rmem->ctx_mem = ctxm; rc = bnxt_alloc_ctx_mem_blk(bp, ctx_pg); } return rc; @@ -7381,38 +7847,140 @@ ctx_pg->nr_pages = 0; } +static int bnxt_setup_ctxm_pg_tbls(struct bnxt *bp, + struct bnxt_ctx_mem_type *ctxm, u32 entries, + u8 pg_lvl) +{ + struct bnxt_ctx_pg_info *ctx_pg = ctxm->pg_info; + int i, rc = 0, n = 1; + u32 mem_size; + + if (!ctxm->entry_size || !ctx_pg) + return -EINVAL; + if (ctxm->instance_bmap) + n = hweight32(ctxm->instance_bmap); + if (ctxm->entry_multiple) + entries = roundup(entries, ctxm->entry_multiple); + entries = clamp_t(u32, entries, ctxm->min_entries, ctxm->max_entries); + mem_size = entries * ctxm->entry_size; + for (i = 0; i < n && !rc; i++) { + ctx_pg[i].entries = entries; + rc = bnxt_alloc_ctx_pg_tbls(bp, &ctx_pg[i], mem_size, pg_lvl, + ctxm->init_value ? ctxm : NULL); + } + return rc; +} + +static int bnxt_hwrm_func_backing_store_cfg_v2(struct bnxt *bp, + struct bnxt_ctx_mem_type *ctxm, + bool last) +{ + struct hwrm_func_backing_store_cfg_v2_input *req; + u32 instance_bmap = ctxm->instance_bmap; + int i, j, rc = 0, n = 1; + __le32 *p; + + if (!(ctxm->flags & BNXT_CTX_MEM_TYPE_VALID) || !ctxm->pg_info) + return 0; + + if (instance_bmap) + n = hweight32(ctxm->instance_bmap); + else + instance_bmap = 1; + + rc = hwrm_req_init(bp, req, HWRM_FUNC_BACKING_STORE_CFG_V2); + if (rc) + return rc; + hwrm_req_hold(bp, req); + req->type = cpu_to_le16(ctxm->type); + req->entry_size = cpu_to_le16(ctxm->entry_size); + req->subtype_valid_cnt = ctxm->split_entry_cnt; + for (i = 0, p = &req->split_entry_0; i < ctxm->split_entry_cnt; i++) + p[i] = cpu_to_le32(ctxm->split[i]); + for (i = 0, j = 0; j < n && !rc; i++) { + struct bnxt_ctx_pg_info *ctx_pg; + + if (!(instance_bmap & (1 << i))) + continue; + req->instance = cpu_to_le16(i); + ctx_pg = &ctxm->pg_info[j++]; + if (!ctx_pg->entries) + continue; + req->num_entries = cpu_to_le32(ctx_pg->entries); + bnxt_hwrm_set_pg_attr(&ctx_pg->ring_mem, + &req->page_size_pbl_level, + &req->page_dir); + if (last && j == n) + req->flags = + cpu_to_le32(FUNC_BACKING_STORE_CFG_V2_REQ_FLAGS_BS_CFG_ALL_DONE); + rc = hwrm_req_send(bp, req); + } + hwrm_req_drop(bp, req); + return rc; +} + +static int bnxt_backing_store_cfg_v2(struct bnxt *bp, u32 ena) +{ + struct bnxt_ctx_mem_info *ctx = bp->ctx; + struct bnxt_ctx_mem_type *ctxm; + u16 last_type; + int rc = 0; + u16 type; + + if (!ena) + return 0; + else if (ena & FUNC_BACKING_STORE_CFG_REQ_ENABLES_TIM) + last_type = BNXT_CTX_MAX - 1; + else + last_type = BNXT_CTX_L2_MAX - 1; + ctx->ctx_arr[last_type].last = 1; + + for (type = 0 ; type < BNXT_CTX_V2_MAX; type++) { + ctxm = &ctx->ctx_arr[type]; + + rc = bnxt_hwrm_func_backing_store_cfg_v2(bp, ctxm, ctxm->last); + if (rc) + return rc; + } + return 0; +} + void bnxt_free_ctx_mem(struct bnxt *bp) { struct bnxt_ctx_mem_info *ctx = bp->ctx; - int i; + u16 type; if (!ctx) return; - if (ctx->tqm_mem[0]) { - for (i = 0; i < ctx->tqm_fp_rings_count + 1; i++) - bnxt_free_ctx_pg_tbls(bp, ctx->tqm_mem[i]); - kfree(ctx->tqm_mem[0]); - ctx->tqm_mem[0] = NULL; + for (type = 0; type < BNXT_CTX_V2_MAX; type++) { + struct bnxt_ctx_mem_type *ctxm = &ctx->ctx_arr[type]; + struct bnxt_ctx_pg_info *ctx_pg = ctxm->pg_info; + int i, n = 1; + + if (!ctx_pg) + continue; + if (ctxm->instance_bmap) + n = hweight32(ctxm->instance_bmap); + for (i = 0; i < n; i++) + bnxt_free_ctx_pg_tbls(bp, &ctx_pg[i]); + + kfree(ctx_pg); + ctxm->pg_info = NULL; } - bnxt_free_ctx_pg_tbls(bp, &ctx->tim_mem); - bnxt_free_ctx_pg_tbls(bp, &ctx->mrav_mem); - bnxt_free_ctx_pg_tbls(bp, &ctx->stat_mem); - bnxt_free_ctx_pg_tbls(bp, &ctx->vnic_mem); - bnxt_free_ctx_pg_tbls(bp, &ctx->cq_mem); - bnxt_free_ctx_pg_tbls(bp, &ctx->srq_mem); - bnxt_free_ctx_pg_tbls(bp, &ctx->qp_mem); ctx->flags &= ~BNXT_CTX_FLAG_INITED; + kfree(ctx); + bp->ctx = NULL; } static int bnxt_alloc_ctx_mem(struct bnxt *bp) { - struct bnxt_ctx_pg_info *ctx_pg; + struct bnxt_ctx_mem_type *ctxm; struct bnxt_ctx_mem_info *ctx; - struct bnxt_mem_init *init; - u32 mem_size, ena, entries; - u32 entries_sp, min; + u32 l2_qps, qp1_qps, max_qps; + u32 ena, entries_sp, entries; + u32 srqs, max_srqs, min; u32 num_mr, num_ah; u32 extra_srqs = 0; u32 extra_qps = 0; @@ -7429,120 +7997,93 @@ if (!ctx || (ctx->flags & BNXT_CTX_FLAG_INITED)) return 0; + ctxm = &ctx->ctx_arr[BNXT_CTX_QP]; + l2_qps = ctxm->qp_l2_entries; + qp1_qps = ctxm->qp_qp1_entries; + max_qps = ctxm->max_entries; + ctxm = &ctx->ctx_arr[BNXT_CTX_SRQ]; + srqs = ctxm->srq_l2_entries; + max_srqs = ctxm->max_entries; if ((bp->flags & BNXT_FLAG_ROCE_CAP) && !is_kdump_kernel()) { pg_lvl = 2; - extra_qps = 65536; - extra_srqs = 8192; + extra_qps = min_t(u32, 65536, max_qps - l2_qps - qp1_qps); + extra_srqs = min_t(u32, 8192, max_srqs - srqs); } - ctx_pg = &ctx->qp_mem; - ctx_pg->entries = ctx->qp_min_qp1_entries + ctx->qp_max_l2_entries + - extra_qps; - if (ctx->qp_entry_size) { - mem_size = ctx->qp_entry_size * ctx_pg->entries; - init = &ctx->mem_init[BNXT_CTX_MEM_INIT_QP]; - rc = bnxt_alloc_ctx_pg_tbls(bp, ctx_pg, mem_size, pg_lvl, init); - if (rc) - return rc; - } + ctxm = &ctx->ctx_arr[BNXT_CTX_QP]; + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, l2_qps + qp1_qps + extra_qps, + pg_lvl); + if (rc) + return rc; - ctx_pg = &ctx->srq_mem; - ctx_pg->entries = ctx->srq_max_l2_entries + extra_srqs; - if (ctx->srq_entry_size) { - mem_size = ctx->srq_entry_size * ctx_pg->entries; - init = &ctx->mem_init[BNXT_CTX_MEM_INIT_SRQ]; - rc = bnxt_alloc_ctx_pg_tbls(bp, ctx_pg, mem_size, pg_lvl, init); - if (rc) - return rc; - } + ctxm = &ctx->ctx_arr[BNXT_CTX_SRQ]; + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, srqs + extra_srqs, pg_lvl); + if (rc) + return rc; - ctx_pg = &ctx->cq_mem; - ctx_pg->entries = ctx->cq_max_l2_entries + extra_qps * 2; - if (ctx->cq_entry_size) { - mem_size = ctx->cq_entry_size * ctx_pg->entries; - init = &ctx->mem_init[BNXT_CTX_MEM_INIT_CQ]; - rc = bnxt_alloc_ctx_pg_tbls(bp, ctx_pg, mem_size, pg_lvl, init); - if (rc) - return rc; - } + ctxm = &ctx->ctx_arr[BNXT_CTX_CQ]; + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, ctxm->cq_l2_entries + + extra_qps * 2, pg_lvl); + if (rc) + return rc; - ctx_pg = &ctx->vnic_mem; - ctx_pg->entries = ctx->vnic_max_vnic_entries + - ctx->vnic_max_ring_table_entries; - if (ctx->vnic_entry_size) { - mem_size = ctx->vnic_entry_size * ctx_pg->entries; - init = &ctx->mem_init[BNXT_CTX_MEM_INIT_VNIC]; - rc = bnxt_alloc_ctx_pg_tbls(bp, ctx_pg, mem_size, 1, init); - if (rc) - return rc; - } + ctxm = &ctx->ctx_arr[BNXT_CTX_VNIC]; + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, ctxm->max_entries, 1); + if (rc) + return rc; - ctx_pg = &ctx->stat_mem; - ctx_pg->entries = ctx->stat_max_entries; - if (ctx->stat_entry_size) { - mem_size = ctx->stat_entry_size * ctx_pg->entries; - init = &ctx->mem_init[BNXT_CTX_MEM_INIT_STAT]; - rc = bnxt_alloc_ctx_pg_tbls(bp, ctx_pg, mem_size, 1, init); - if (rc) - return rc; - } + ctxm = &ctx->ctx_arr[BNXT_CTX_STAT]; + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, ctxm->max_entries, 1); + if (rc) + return rc; ena = 0; if (!(bp->flags & BNXT_FLAG_ROCE_CAP)) goto skip_rdma; - ctx_pg = &ctx->mrav_mem; + ctxm = &ctx->ctx_arr[BNXT_CTX_MRAV]; /* 128K extra is needed to accommodate static AH context * allocation by f/w. */ - num_mr = 1024 * 256; - num_ah = 1024 * 128; - ctx_pg->entries = num_mr + num_ah; - if (ctx->mrav_entry_size) { - mem_size = ctx->mrav_entry_size * ctx_pg->entries; - init = &ctx->mem_init[BNXT_CTX_MEM_INIT_MRAV]; - rc = bnxt_alloc_ctx_pg_tbls(bp, ctx_pg, mem_size, 2, init); - if (rc) - return rc; - } + num_mr = min_t(u32, ctxm->max_entries / 2, 1024 * 256); + num_ah = min_t(u32, num_mr, 1024 * 128); + ctxm->split_entry_cnt = BNXT_CTX_MRAV_AV_SPLIT_ENTRY + 1; + if (!ctxm->mrav_av_entries || ctxm->mrav_av_entries > num_ah) + ctxm->mrav_av_entries = num_ah; + + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, num_mr + num_ah, 2); + if (rc) + return rc; ena = FUNC_BACKING_STORE_CFG_REQ_ENABLES_MRAV; - if (ctx->mrav_num_entries_units) - ctx_pg->entries = - ((num_mr / ctx->mrav_num_entries_units) << 16) | - (num_ah / ctx->mrav_num_entries_units); - - ctx_pg = &ctx->tim_mem; - ctx_pg->entries = ctx->qp_mem.entries; - if (ctx->tim_entry_size) { - mem_size = ctx->tim_entry_size * ctx_pg->entries; - rc = bnxt_alloc_ctx_pg_tbls(bp, ctx_pg, mem_size, 1, NULL); - if (rc) - return rc; - } + + ctxm = &ctx->ctx_arr[BNXT_CTX_TIM]; + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, l2_qps + qp1_qps + extra_qps, 1); + if (rc) + return rc; ena |= FUNC_BACKING_STORE_CFG_REQ_ENABLES_TIM; skip_rdma: - min = ctx->tqm_min_entries_per_ring; - entries_sp = ctx->vnic_max_vnic_entries + ctx->qp_max_l2_entries + - 2 * (extra_qps + ctx->qp_min_qp1_entries) + min; - entries_sp = roundup(entries_sp, ctx->tqm_entries_multiple); - entries = ctx->qp_max_l2_entries + 2 * (extra_qps + ctx->qp_min_qp1_entries); - entries = roundup(entries, ctx->tqm_entries_multiple); - entries = clamp_t(u32, entries, min, ctx->tqm_max_entries_per_ring); - for (i = 0; i < ctx->tqm_fp_rings_count + 1; i++) { - ctx_pg = ctx->tqm_mem[i]; - ctx_pg->entries = i ? entries : entries_sp; - if (ctx->tqm_entry_size) { - mem_size = ctx->tqm_entry_size * ctx_pg->entries; - rc = bnxt_alloc_ctx_pg_tbls(bp, ctx_pg, mem_size, 1, - NULL); - if (rc) - return rc; - } + ctxm = &ctx->ctx_arr[BNXT_CTX_STQM]; + min = ctxm->min_entries; + entries_sp = ctx->ctx_arr[BNXT_CTX_VNIC].vnic_entries + l2_qps + + 2 * (extra_qps + qp1_qps) + min; + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, entries_sp, 2); + if (rc) + return rc; + + ctxm = &ctx->ctx_arr[BNXT_CTX_FTQM]; + entries = l2_qps + 2 * (extra_qps + qp1_qps); + rc = bnxt_setup_ctxm_pg_tbls(bp, ctxm, entries, 2); + if (rc) + return rc; + for (i = 0; i < ctx->tqm_fp_rings_count + 1; i++) ena |= FUNC_BACKING_STORE_CFG_REQ_ENABLES_TQM_SP << i; - } ena |= FUNC_BACKING_STORE_CFG_REQ_DFLT_ENABLES; - rc = bnxt_hwrm_func_backing_store_cfg(bp, ena); + + if (bp->fw_cap & BNXT_FW_CAP_BACKING_STORE_V2) + rc = bnxt_backing_store_cfg_v2(bp, ena); + else + rc = bnxt_hwrm_func_backing_store_cfg(bp, ena); if (rc) { netdev_err(bp->dev, "Failed configuring context mem, rc = %d.\n", rc); @@ -7590,7 +8131,7 @@ hw_resc->min_stat_ctxs = le16_to_cpu(resp->min_stat_ctx); hw_resc->max_stat_ctxs = le16_to_cpu(resp->max_stat_ctx); - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { u16 max_msix = le16_to_cpu(resp->max_msix); hw_resc->max_nqs = max_msix; @@ -7619,7 +8160,7 @@ u8 flags; int rc; - if (bp->hwrm_spec_code < 0x10801 || !BNXT_CHIP_P5_THOR(bp)) { + if (bp->hwrm_spec_code < 0x10801 || !BNXT_CHIP_P5(bp)) { rc = -ENODEV; goto no_ptp; } @@ -7651,7 +8192,7 @@ if (flags & PORT_MAC_PTP_QCFG_RESP_FLAGS_PARTIAL_DIRECT_ACCESS_REF_CLOCK) { ptp->refclk_regs[0] = le32_to_cpu(resp->ts_ref_clock_reg_lower); ptp->refclk_regs[1] = le32_to_cpu(resp->ts_ref_clock_reg_upper); - } else if (bp->flags & BNXT_FLAG_CHIP_P5) { + } else if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { ptp->refclk_regs[0] = BNXT_TS_REG_TIMESYNC_TS0_LOWER; ptp->refclk_regs[1] = BNXT_TS_REG_TIMESYNC_TS0_UPPER; } else { @@ -7723,6 +8264,8 @@ bp->fw_cap |= BNXT_FW_CAP_HOT_RESET_IF; if (BNXT_PF(bp) && (flags_ext & FUNC_QCAPS_RESP_FLAGS_EXT_FW_LIVEPATCH_SUPPORTED)) bp->fw_cap |= BNXT_FW_CAP_LIVEPATCH; + if (flags_ext & FUNC_QCAPS_RESP_FLAGS_EXT_BS_V2_SUPPORTED) + bp->fw_cap |= BNXT_FW_CAP_BACKING_STORE_V2; flags_ext2 = le32_to_cpu(resp->flags_ext2); if (flags_ext2 & FUNC_QCAPS_RESP_FLAGS_EXT2_RX_ALL_PKTS_TIMESTAMPS_SUPPORTED) @@ -8358,7 +8901,7 @@ int i; /* Chip bug. Counter intermittently becomes 0. */ - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) ignore_zero = true; for (i = 0; i < bp->cp_nr_rings; i++) { @@ -8552,7 +9095,7 @@ return; bnxt_hwrm_clear_vnic_filter(bp); - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) { + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) { /* clear all RSS setting before free vnic ctx */ bnxt_hwrm_clear_vnic_rss(bp); bnxt_hwrm_vnic_ctx_free(bp); @@ -8561,7 +9104,7 @@ if (bp->flags & BNXT_FLAG_TPA) bnxt_set_tpa(bp, false); bnxt_hwrm_vnic_free(bp); - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) bnxt_hwrm_vnic_ctx_free(bp); } @@ -8590,7 +9133,7 @@ else return -EINVAL; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (rc) return rc; @@ -8608,7 +9151,7 @@ if (BNXT_VF(bp) || bp->hwrm_spec_code < 0x10803) return 0; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (rc) return rc; @@ -8718,7 +9261,7 @@ static int bnxt_setup_vnic(struct bnxt *bp, u16 vnic_id) { - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return __bnxt_setup_vnic_p5(bp, vnic_id); else return __bnxt_setup_vnic(bp, vnic_id); @@ -8729,7 +9272,7 @@ #ifdef CONFIG_RFS_ACCEL int i, rc = 0; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return 0; for (i = 0; i < bp->rx_nr_rings; i++) { @@ -8742,7 +9285,7 @@ vnic = &bp->vnic_info[vnic_id]; vnic->flags |= BNXT_VNIC_RFS_FLAG; - if (bp->flags & BNXT_FLAG_NEW_RSS_CAP) + if (bp->rss_cap & BNXT_RSS_CAP_NEW_RSS_CAP) vnic->flags |= BNXT_VNIC_RFS_NEW_RSS_FLAG; rc = bnxt_hwrm_vnic_alloc(bp, vnic_id, ring_id, 1); if (rc) { @@ -8836,7 +9379,7 @@ rc = bnxt_setup_vnic(bp, 0); if (rc) goto err_out; - if (bp->fw_cap & BNXT_FW_CAP_RSS_HASH_TYPE_DELTA) + if (bp->rss_cap & BNXT_RSS_CAP_RSS_HASH_TYPE_DELTA) bnxt_hwrm_update_rss_hash_cfg(bp); if (bp->flags & BNXT_FLAG_RFS) { @@ -8954,8 +9497,8 @@ return rc; } -static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max, - bool shared) +static int __bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max, + bool shared) { int _rx = *rx, _tx = *tx; @@ -8978,6 +9521,46 @@ return 0; } +static int __bnxt_num_tx_to_cp(struct bnxt *bp, int tx, int tx_sets, int tx_xdp) +{ + return (tx - tx_xdp) / tx_sets + tx_xdp; +} + +int bnxt_num_tx_to_cp(struct bnxt *bp, int tx) +{ + int tcs = netdev_get_num_tc(bp->dev); + + if (!tcs) + tcs = 1; + return __bnxt_num_tx_to_cp(bp, tx, tcs, bp->tx_nr_rings_xdp); +} + +static int bnxt_num_cp_to_tx(struct bnxt *bp, int tx_cp) +{ + int tcs = netdev_get_num_tc(bp->dev); + + return (tx_cp - bp->tx_nr_rings_xdp) * tcs + + bp->tx_nr_rings_xdp; +} + +static int bnxt_trim_rings(struct bnxt *bp, int *rx, int *tx, int max, + bool sh) +{ + int tx_cp = bnxt_num_tx_to_cp(bp, *tx); + + if (tx_cp != *tx) { + int tx_saved = tx_cp, rc; + + rc = __bnxt_trim_rings(bp, rx, &tx_cp, max, sh); + if (rc) + return rc; + if (tx_cp != tx_saved) + *tx = bnxt_num_cp_to_tx(bp, tx_cp); + return 0; + } + return __bnxt_trim_rings(bp, rx, tx, max, sh); +} + static void bnxt_setup_msix(struct bnxt *bp) { const int len = sizeof(bp->irq_tbl[0].name); @@ -8990,7 +9573,7 @@ for (i = 0; i < tcs; i++) { count = bp->tx_nr_rings_per_tc; - off = i * count; + off = BNXT_TC_TO_RING_BASE(bp, i); netdev_set_tc_queue(dev, i, count, off); } } @@ -9071,7 +9654,7 @@ { unsigned int cp = bp->hw_resc.max_cp_rings; - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) cp -= bnxt_get_ulp_msix_num(bp); return cp; @@ -9081,7 +9664,7 @@ { struct bnxt_hw_resc *hw_resc = &bp->hw_resc; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return min_t(unsigned int, hw_resc->max_irqs, hw_resc->max_nqs); return min_t(unsigned int, hw_resc->max_irqs, hw_resc->max_cp_rings); @@ -9097,7 +9680,7 @@ unsigned int cp; cp = bnxt_get_max_func_cp_rings_for_en(bp); - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return cp - bp->rx_nr_rings - bp->tx_nr_rings; else return cp - bp->cp_nr_rings; @@ -9116,7 +9699,7 @@ int max_idx, avail_msix; max_idx = bp->total_irqs; - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) max_idx = min_t(int, bp->total_irqs, max_cp); avail_msix = max_idx - bp->cp_nr_rings; if (!BNXT_NEW_RM(bp) || avail_msix >= num) @@ -9140,7 +9723,7 @@ static int bnxt_init_msix(struct bnxt *bp) { - int i, total_vecs, max, rc = 0, min = 1, ulp_msix; + int i, total_vecs, max, rc = 0, min = 1, ulp_msix, tx_cp; struct msix_entry *msix_ent; total_vecs = bnxt_get_num_msix(bp); @@ -9182,9 +9765,10 @@ if (rc) goto msix_setup_exit; + tx_cp = bnxt_num_tx_to_cp(bp, 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; + max_t(int, tx_cp, bp->rx_nr_rings) : + tx_cp + bp->rx_nr_rings; } else { rc = -ENOMEM; @@ -9394,7 +9978,7 @@ if (bp->flags & BNXT_FLAG_USING_MSIX) { int (*poll_fn)(struct napi_struct *, int) = bnxt_poll; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) poll_fn = bnxt_poll_p5; else if (BNXT_CHIP_TYPE_NITRO_A0(bp)) cp_nr_rings--; @@ -9422,10 +10006,16 @@ return; for (i = 0; i < bp->cp_nr_rings; i++) { - struct bnxt_cp_ring_info *cpr = &bp->bnapi[i]->cp_ring; + struct bnxt_napi *bnapi = bp->bnapi[i]; + struct bnxt_cp_ring_info *cpr; - napi_disable(&bp->bnapi[i]->napi); - if (bp->bnapi[i]->rx_ring) + cpr = &bnapi->cp_ring; + if (bnapi->tx_fault) + cpr->sw_stats.tx.tx_resets++; + if (bnapi->in_reset) + cpr->sw_stats.rx.rx_resets++; + napi_disable(&bnapi->napi); + if (bnapi->rx_ring) cancel_work_sync(&cpr->dim.work); } } @@ -9439,13 +10029,11 @@ struct bnxt_napi *bnapi = bp->bnapi[i]; struct bnxt_cp_ring_info *cpr; + bnapi->tx_fault = 0; + cpr = &bnapi->cp_ring; - if (bnapi->in_reset) - cpr->sw_stats.rx.rx_resets++; bnapi->in_reset = false; - bnapi->tx_pkts = 0; - if (bnapi->rx_ring) { INIT_WORK(&cpr->dim.work, bnxt_dim_work); cpr->dim.mode = DIM_CQ_PERIOD_MODE_START_FROM_EQE; @@ -9549,7 +10137,10 @@ signal = "(NRZ) "; break; case PORT_PHY_QCFG_RESP_SIGNAL_MODE_PAM4: - signal = "(PAM4) "; + signal = "(PAM4 56Gbps) "; + break; + case PORT_PHY_QCFG_RESP_SIGNAL_MODE_PAM4_112: + signal = "(PAM4 112Gbps) "; break; default: break; @@ -9577,7 +10168,9 @@ if (!resp->supported_speeds_auto_mode && !resp->supported_speeds_force_mode && !resp->supported_pam4_speeds_auto_mode && - !resp->supported_pam4_speeds_force_mode) + !resp->supported_pam4_speeds_force_mode && + !resp->supported_speeds2_auto_mode && + !resp->supported_speeds2_force_mode) return true; return false; } @@ -9623,6 +10216,7 @@ /* Phy re-enabled, reprobe the speeds */ link_info->support_auto_speeds = 0; link_info->support_pam4_auto_speeds = 0; + link_info->support_auto_speeds2 = 0; } } if (resp->supported_speeds_auto_mode) @@ -9631,6 +10225,9 @@ if (resp->supported_pam4_speeds_auto_mode) link_info->support_pam4_auto_speeds = le16_to_cpu(resp->supported_pam4_speeds_auto_mode); + if (resp->supported_speeds2_auto_mode) + link_info->support_auto_speeds2 = + le16_to_cpu(resp->supported_speeds2_auto_mode); bp->port_count = resp->port_cnt; @@ -9646,13 +10243,41 @@ return ((supported | diff) != supported); } +static bool bnxt_support_speed_dropped(struct bnxt_link_info *link_info) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + + /* Check if any advertised speeds are no longer supported. The caller + * holds the link_lock mutex, so we can modify link_info settings. + */ + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) { + if (bnxt_support_dropped(link_info->advertising, + link_info->support_auto_speeds2)) { + link_info->advertising = link_info->support_auto_speeds2; + return true; + } + return false; + } + if (bnxt_support_dropped(link_info->advertising, + link_info->support_auto_speeds)) { + link_info->advertising = link_info->support_auto_speeds; + return true; + } + if (bnxt_support_dropped(link_info->advertising_pam4, + link_info->support_pam4_auto_speeds)) { + link_info->advertising_pam4 = link_info->support_pam4_auto_speeds; + return true; + } + return false; +} + int bnxt_update_link(struct bnxt *bp, bool chng_link_state) { struct bnxt_link_info *link_info = &bp->link_info; struct hwrm_port_phy_qcfg_output *resp; struct hwrm_port_phy_qcfg_input *req; u8 link_state = link_info->link_state; - bool support_changed = false; + bool support_changed; int rc; rc = hwrm_req_init(bp, req, HWRM_PORT_PHY_QCFG); @@ -9681,18 +10306,25 @@ 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) + if (link_info->phy_link_status == BNXT_LINK_LINK) { link_info->link_speed = le16_to_cpu(resp->link_speed); - else + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) + link_info->active_lanes = resp->active_lanes; + } else { link_info->link_speed = 0; + link_info->active_lanes = 0; + } link_info->force_link_speed = le16_to_cpu(resp->force_link_speed); link_info->force_pam4_link_speed = le16_to_cpu(resp->force_pam4_link_speed); + link_info->force_link_speed2 = le16_to_cpu(resp->force_link_speeds2); link_info->support_speeds = le16_to_cpu(resp->support_speeds); link_info->support_pam4_speeds = le16_to_cpu(resp->support_pam4_speeds); + link_info->support_speeds2 = le16_to_cpu(resp->support_speeds2); link_info->auto_link_speeds = le16_to_cpu(resp->auto_link_speed_mask); link_info->auto_pam4_link_speeds = le16_to_cpu(resp->auto_pam4_link_speed_mask); + link_info->auto_link_speeds2 = le16_to_cpu(resp->auto_link_speeds2); link_info->lp_auto_link_speeds = le16_to_cpu(resp->link_partner_adv_speeds); link_info->lp_auto_pam4_link_speeds = @@ -9766,19 +10398,7 @@ if (!BNXT_PHY_CFG_ABLE(bp)) return 0; - /* Check if any advertised speeds are no longer supported. The caller - * holds the link_lock mutex, so we can modify link_info settings. - */ - if (bnxt_support_dropped(link_info->advertising, - link_info->support_auto_speeds)) { - link_info->advertising = link_info->support_auto_speeds; - support_changed = true; - } - if (bnxt_support_dropped(link_info->advertising_pam4, - link_info->support_pam4_auto_speeds)) { - link_info->advertising_pam4 = link_info->support_pam4_auto_speeds; - support_changed = true; - } + support_changed = bnxt_support_speed_dropped(link_info); if (support_changed && (link_info->autoneg & BNXT_AUTONEG_SPEED)) bnxt_hwrm_set_link_setting(bp, true, false); return 0; @@ -9843,7 +10463,11 @@ { if (bp->link_info.autoneg & BNXT_AUTONEG_SPEED) { req->auto_mode |= PORT_PHY_CFG_REQ_AUTO_MODE_SPEED_MASK; - if (bp->link_info.advertising) { + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) { + req->enables |= + cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEEDS2_MASK); + req->auto_link_speeds2_mask = cpu_to_le16(bp->link_info.advertising); + } else if (bp->link_info.advertising) { req->enables |= cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_AUTO_LINK_SPEED_MASK); req->auto_link_speed_mask = cpu_to_le16(bp->link_info.advertising); } @@ -9857,7 +10481,12 @@ req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_RESTART_AUTONEG); } else { req->flags |= cpu_to_le32(PORT_PHY_CFG_REQ_FLAGS_FORCE); - if (bp->link_info.req_signal_mode == BNXT_SIG_MODE_PAM4) { + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) { + req->force_link_speeds2 = cpu_to_le16(bp->link_info.req_link_speed); + req->enables |= cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_FORCE_LINK_SPEEDS2); + netif_info(bp, link, bp->dev, "Forcing FW speed2: %d\n", + (u32)bp->link_info.req_link_speed); + } else if (bp->link_info.req_signal_mode == BNXT_SIG_MODE_PAM4) { req->force_pam4_link_speed = cpu_to_le16(bp->link_info.req_link_speed); req->enables |= cpu_to_le32(PORT_PHY_CFG_REQ_ENABLES_FORCE_PAM4_LINK_SPEED); } else { @@ -10122,8 +10751,6 @@ if (!test_bit(BNXT_STATE_IN_FW_RESET, &bp->state)) bnxt_ulp_stop(bp); bnxt_free_ctx_mem(bp); - kfree(bp->ctx); - bp->ctx = NULL; bnxt_dcb_free(bp); rc = bnxt_fw_init_one(bp); if (rc) { @@ -10268,79 +10895,6 @@ } while (handle && handle != 0xffff); } -#ifdef CONFIG_BNXT_HWMON -static ssize_t bnxt_show_temp(struct device *dev, - struct device_attribute *devattr, char *buf) -{ - struct hwrm_temp_monitor_query_output *resp; - struct hwrm_temp_monitor_query_input *req; - struct bnxt *bp = dev_get_drvdata(dev); - u32 len = 0; - int rc; - - rc = hwrm_req_init(bp, req, HWRM_TEMP_MONITOR_QUERY); - if (rc) - return rc; - resp = hwrm_req_hold(bp, req); - rc = hwrm_req_send(bp, req); - if (!rc) - len = sprintf(buf, "%u\n", resp->temp * 1000); /* display millidegree */ - hwrm_req_drop(bp, req); - if (rc) - return rc; - return len; -} -static SENSOR_DEVICE_ATTR(temp1_input, 0444, bnxt_show_temp, NULL, 0); - -static struct attribute *bnxt_attrs[] = { - &sensor_dev_attr_temp1_input.dev_attr.attr, - NULL -}; -ATTRIBUTE_GROUPS(bnxt); - -static void bnxt_hwmon_close(struct bnxt *bp) -{ - if (bp->hwmon_dev) { - hwmon_device_unregister(bp->hwmon_dev); - bp->hwmon_dev = NULL; - } -} - -static void bnxt_hwmon_open(struct bnxt *bp) -{ - struct hwrm_temp_monitor_query_input *req; - struct pci_dev *pdev = bp->pdev; - int rc; - - rc = hwrm_req_init(bp, req, HWRM_TEMP_MONITOR_QUERY); - if (!rc) - rc = hwrm_req_send_silent(bp, req); - if (rc == -EACCES || rc == -EOPNOTSUPP) { - bnxt_hwmon_close(bp); - return; - } - - if (bp->hwmon_dev) - return; - - bp->hwmon_dev = hwmon_device_register_with_groups(&pdev->dev, - DRV_MODULE_NAME, bp, - bnxt_groups); - if (IS_ERR(bp->hwmon_dev)) { - bp->hwmon_dev = NULL; - dev_warn(&pdev->dev, "Cannot register hwmon device\n"); - } -} -#else -static void bnxt_hwmon_close(struct bnxt *bp) -{ -} - -static void bnxt_hwmon_open(struct bnxt *bp) -{ -} -#endif - static bool bnxt_eee_config_ok(struct bnxt *bp) { struct ethtool_eee *eee = &bp->eee; @@ -10392,19 +10946,14 @@ if (!(link_info->autoneg & BNXT_AUTONEG_SPEED)) { if (BNXT_AUTO_MODE(link_info->auto_mode)) update_link = true; - if (link_info->req_signal_mode == BNXT_SIG_MODE_NRZ && - link_info->req_link_speed != link_info->force_link_speed) - update_link = true; - else if (link_info->req_signal_mode == BNXT_SIG_MODE_PAM4 && - link_info->req_link_speed != link_info->force_pam4_link_speed) + if (bnxt_force_speed_updated(link_info)) 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 || - link_info->advertising_pam4 != link_info->auto_pam4_link_speeds) + if (bnxt_auto_speed_updated(link_info)) update_link = true; } @@ -10669,7 +11218,6 @@ bnxt_reenable_sriov(bp); } } - bnxt_hwmon_open(bp); } return rc; @@ -10710,8 +11258,10 @@ bnxt_free_skbs(bp); /* Save ring stats before shutdown */ - if (bp->bnapi && irq_re_init) + if (bp->bnapi && irq_re_init) { bnxt_get_ring_stats(bp, &bp->net_stats_prev); + bnxt_get_ring_err_stats(bp, &bp->ring_err_stats_prev); + } if (irq_re_init) { bnxt_free_irq(bp); bnxt_del_napi(bp); @@ -10752,7 +11302,6 @@ { struct bnxt *bp = netdev_priv(dev); - bnxt_hwmon_close(bp); bnxt_close_nic(bp, true, true); bnxt_hwrm_shutdown_link(bp); bnxt_hwrm_if_change(bp, false); @@ -10960,6 +11509,35 @@ clear_bit(BNXT_STATE_READ_STATS, &bp->state); } +static void bnxt_get_one_ring_err_stats(struct bnxt *bp, + struct bnxt_total_ring_err_stats *stats, + struct bnxt_cp_ring_info *cpr) +{ + struct bnxt_sw_stats *sw_stats = &cpr->sw_stats; + u64 *hw_stats = cpr->stats.sw_stats; + + stats->rx_total_l4_csum_errors += sw_stats->rx.rx_l4_csum_errors; + stats->rx_total_resets += sw_stats->rx.rx_resets; + stats->rx_total_buf_errors += sw_stats->rx.rx_buf_errors; + stats->rx_total_oom_discards += sw_stats->rx.rx_oom_discards; + stats->rx_total_netpoll_discards += sw_stats->rx.rx_netpoll_discards; + stats->rx_total_ring_discards += + BNXT_GET_RING_STATS64(hw_stats, rx_discard_pkts); + stats->tx_total_resets += sw_stats->tx.tx_resets; + stats->tx_total_ring_discards += + BNXT_GET_RING_STATS64(hw_stats, tx_discard_pkts); + stats->total_missed_irqs += sw_stats->cmn.missed_irqs; +} + +void bnxt_get_ring_err_stats(struct bnxt *bp, + struct bnxt_total_ring_err_stats *stats) +{ + int i; + + for (i = 0; i < bp->cp_nr_rings; i++) + bnxt_get_one_ring_err_stats(bp, stats, &bp->bnapi[i]->cp_ring); +} + static bool bnxt_mc_list_updated(struct bnxt *bp, u32 *rx_mask) { struct net_device *dev = bp->dev; @@ -11048,8 +11626,7 @@ if (mask != vnic->rx_mask || uc_update || mc_update) { vnic->rx_mask = mask; - set_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); + bnxt_queue_sp_work(bp, BNXT_RX_MASK_SP_EVENT); } } @@ -11155,7 +11732,7 @@ /* If the chip and firmware supports RFS */ static bool bnxt_rfs_supported(struct bnxt *bp) { - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { if (bp->fw_cap & BNXT_FW_CAP_CFA_RFS_RING_TBL_IDX_V2) return true; return false; @@ -11165,7 +11742,7 @@ return false; if (BNXT_PF(bp) && !BNXT_CHIP_TYPE_NITRO_A0(bp)) return true; - if (bp->flags & BNXT_FLAG_NEW_RSS_CAP) + if (bp->rss_cap & BNXT_RSS_CAP_NEW_RSS_CAP) return true; return false; } @@ -11176,7 +11753,7 @@ #ifdef CONFIG_RFS_ACCEL int vnics, max_vnics, max_rss_ctxs; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return bnxt_rfs_supported(bp); if (!(bp->flags & BNXT_FLAG_MSIX_CAP) || !bnxt_can_reserve_rings(bp) || !bp->rx_nr_rings) return false; @@ -11186,7 +11763,7 @@ max_rss_ctxs = bnxt_get_max_func_rss_ctxs(bp); /* RSS contexts not a limiting factor */ - if (bp->flags & BNXT_FLAG_NEW_RSS_CAP) + if (bp->rss_cap & BNXT_RSS_CAP_NEW_RSS_CAP) max_rss_ctxs = max_vnics; if (vnics > max_vnics || vnics > max_rss_ctxs) { if (bp->rx_nr_rings > 1) @@ -11278,7 +11855,7 @@ update_tpa = true; if ((bp->flags & BNXT_FLAG_TPA) == 0 || (flags & BNXT_FLAG_TPA) == 0 || - (bp->flags & BNXT_FLAG_CHIP_P5)) + (bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) re_init = true; } @@ -11520,15 +12097,13 @@ 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; + struct bnxt_tx_ring_info *txr; + int i = bnapi->index, j; - 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); + bnxt_for_each_napi_tx(j, bnapi, txr) + netdev_info(bnapi->bp->dev, "[%d.%d]: tx{fw_ring: %d prod: %x cons: %x}\n", + i, j, txr->tx_ring_struct.fw_ring_id, txr->tx_prod, + txr->tx_cons); } static void bnxt_dump_rx_sw_state(struct bnxt_napi *bnapi) @@ -11614,8 +12189,7 @@ 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); - bnxt_queue_sp_work(bp); + bnxt_queue_sp_work(bp, BNXT_RESET_TASK_SP_EVENT); } static void bnxt_fw_health_check(struct bnxt *bp) @@ -11652,8 +12226,7 @@ return; fw_reset: - set_bit(BNXT_FW_EXCEPTION_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); + bnxt_queue_sp_work(bp, BNXT_FW_EXCEPTION_SP_EVENT); } static void bnxt_timer(struct timer_list *t) @@ -11670,21 +12243,15 @@ if (bp->fw_cap & BNXT_FW_CAP_ERROR_RECOVERY) bnxt_fw_health_check(bp); - if (BNXT_LINK_IS_UP(bp) && bp->stats_coal_ticks) { - set_bit(BNXT_PERIODIC_STATS_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); - } + if (BNXT_LINK_IS_UP(bp) && bp->stats_coal_ticks) + bnxt_queue_sp_work(bp, BNXT_PERIODIC_STATS_SP_EVENT); - if (bnxt_tc_flower_enabled(bp)) { - set_bit(BNXT_FLOW_STATS_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); - } + if (bnxt_tc_flower_enabled(bp)) + bnxt_queue_sp_work(bp, BNXT_FLOW_STATS_SP_EVENT); #ifdef CONFIG_RFS_ACCEL - if ((bp->flags & BNXT_FLAG_RFS) && bp->ntp_fltr_count) { - set_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); - } + if ((bp->flags & BNXT_FLAG_RFS) && bp->ntp_fltr_count) + bnxt_queue_sp_work(bp, BNXT_RX_NTP_FLTR_SP_EVENT); #endif /*CONFIG_RFS_ACCEL*/ if (bp->link_info.phy_retry) { @@ -11692,21 +12259,16 @@ bp->link_info.phy_retry = false; netdev_warn(bp->dev, "failed to update phy settings after maximum retries.\n"); } else { - set_bit(BNXT_UPDATE_PHY_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); + bnxt_queue_sp_work(bp, BNXT_UPDATE_PHY_SP_EVENT); } } - if (test_bit(BNXT_STATE_L2_FILTER_RETRY, &bp->state)) { - set_bit(BNXT_RX_MASK_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); - } + if (test_bit(BNXT_STATE_L2_FILTER_RETRY, &bp->state)) + bnxt_queue_sp_work(bp, BNXT_RX_MASK_SP_EVENT); + + if ((BNXT_CHIP_P5(bp)) && !bp->chip_rev && netif_carrier_ok(dev)) + bnxt_queue_sp_work(bp, BNXT_RING_COAL_NOW_SP_EVENT); - if ((bp->flags & BNXT_FLAG_CHIP_P5) && !bp->chip_rev && - netif_carrier_ok(dev)) { - set_bit(BNXT_RING_COAL_NOW_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); - } bnxt_restart_timer: mod_timer(&bp->timer, jiffies + bp->current_interval); } @@ -11813,8 +12375,6 @@ if (pci_is_enabled(bp->pdev)) pci_disable_device(bp->pdev); bnxt_free_ctx_mem(bp); - kfree(bp->ctx); - bp->ctx = NULL; } static bool is_bnxt_fw_ok(struct bnxt *bp) @@ -11957,7 +12517,7 @@ { int i; - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) return; for (i = 0; i < bp->cp_nr_rings; i++) { @@ -11970,12 +12530,11 @@ continue; cpr = &bnapi->cp_ring; - for (j = 0; j < 2; j++) { - struct bnxt_cp_ring_info *cpr2 = cpr->cp_ring_arr[j]; + for (j = 0; j < cpr->cp_ring_count; j++) { + struct bnxt_cp_ring_info *cpr2 = &cpr->cp_ring_arr[j]; u32 val[2]; - if (!cpr2 || cpr2->has_more_work || - !bnxt_has_work(bp, cpr2)) + if (cpr2->has_more_work || !bnxt_has_work(bp, cpr2)) continue; if (cpr2->cp_raw_cons != cpr2->last_cp_raw_cons) { @@ -12006,16 +12565,9 @@ } else { link_info->autoneg |= BNXT_AUTONEG_FLOW_CTRL; } - link_info->advertising = link_info->auto_link_speeds; - link_info->advertising_pam4 = link_info->auto_pam4_link_speeds; + bnxt_set_auto_speed(link_info); } else { - link_info->req_link_speed = link_info->force_link_speed; - link_info->req_signal_mode = BNXT_SIG_MODE_NRZ; - if (link_info->force_pam4_link_speed) { - link_info->req_link_speed = - link_info->force_pam4_link_speed; - link_info->req_signal_mode = BNXT_SIG_MODE_PAM4; - } + bnxt_set_force_speed(link_info); link_info->req_duplex = link_info->duplex_setting; } if (link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) @@ -12109,6 +12661,9 @@ if (test_and_clear_bit(BNXT_FW_ECHO_REQUEST_SP_EVENT, &bp->sp_event)) bnxt_fw_echo_reply(bp); + if (test_and_clear_bit(BNXT_THERMAL_THRESHOLD_SP_EVENT, &bp->sp_event)) + bnxt_hwmon_notify_event(bp); + /* These functions below will clear BNXT_STATE_IN_SP_TASK. They * must be the last functions to be called before exiting. */ @@ -12138,23 +12693,27 @@ clear_bit(BNXT_STATE_IN_SP_TASK, &bp->state); } +static void _bnxt_get_max_rings(struct bnxt *bp, int *max_rx, int *max_tx, + int *max_cp); + /* Under rtnl_lock */ int bnxt_check_rings(struct bnxt *bp, int tx, int rx, bool sh, int tcs, int tx_xdp) { - int max_rx, max_tx, tx_sets = 1; + int max_rx, max_tx, max_cp, tx_sets = 1, tx_cp; int tx_rings_needed, stats; int rx_rings = rx; - int cp, vnics, rc; + int cp, vnics; if (tcs) tx_sets = tcs; - rc = bnxt_get_max_rings(bp, &max_rx, &max_tx, sh); - if (rc) - return rc; + if (bp->flags & BNXT_FLAG_AGG_RINGS) + rx_rings <<= 1; + + _bnxt_get_max_rings(bp, &max_rx, &max_tx, &max_cp); - if (max_rx < rx) + if (max_rx < rx_rings) return -ENOMEM; tx_rings_needed = tx * tx_sets + tx_xdp; @@ -12162,12 +12721,14 @@ return -ENOMEM; vnics = 1; - if ((bp->flags & (BNXT_FLAG_RFS | BNXT_FLAG_CHIP_P5)) == BNXT_FLAG_RFS) - vnics += rx_rings; - - if (bp->flags & BNXT_FLAG_AGG_RINGS) - rx_rings <<= 1; - cp = sh ? max_t(int, tx_rings_needed, rx) : tx_rings_needed + rx; + if ((bp->flags & (BNXT_FLAG_RFS | BNXT_FLAG_CHIP_P5_PLUS)) == + BNXT_FLAG_RFS) + vnics += rx; + + tx_cp = __bnxt_num_tx_to_cp(bp, tx_rings_needed, tx_sets, tx_xdp); + cp = sh ? max_t(int, tx_cp, rx) : tx_cp + rx; + if (max_cp < cp) + return -ENOMEM; stats = cp; if (BNXT_NEW_RM(bp)) { cp += bnxt_get_ulp_msix_num(bp); @@ -12237,6 +12798,20 @@ bp->stats_coal_ticks = BNXT_DEF_STATS_COAL_TICKS; } +/* FW that pre-reserves 1 VNIC per function */ +static bool bnxt_fw_pre_resv_vnics(struct bnxt *bp) +{ + u16 fw_maj = BNXT_FW_MAJ(bp), fw_bld = BNXT_FW_BLD(bp); + + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS) && + (fw_maj > 218 || (fw_maj == 218 && fw_bld >= 18))) + return true; + if ((bp->flags & BNXT_FLAG_CHIP_P5_PLUS) && + (fw_maj > 216 || (fw_maj == 216 && fw_bld >= 172))) + return true; + return false; +} + static int bnxt_fw_init_one_p1(struct bnxt *bp) { int rc; @@ -12293,6 +12868,9 @@ if (rc) return -ENODEV; + if (bnxt_fw_pre_resv_vnics(bp)) + bp->fw_cap |= BNXT_FW_CAP_PRE_RESV_VNICS; + bnxt_hwrm_func_qcfg(bp); bnxt_hwrm_vnic_qcaps(bp); bnxt_hwrm_port_led_qcaps(bp); @@ -12300,20 +12878,21 @@ if (bp->fw_cap & BNXT_FW_CAP_PTP) __bnxt_hwrm_ptp_qcfg(bp); bnxt_dcb_init(bp); + bnxt_hwmon_init(bp); return 0; } static void bnxt_set_dflt_rss_hash_type(struct bnxt *bp) { - bp->flags &= ~BNXT_FLAG_UDP_RSS_CAP; + bp->rss_cap &= ~BNXT_RSS_CAP_UDP_RSS_CAP; 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 (bp->fw_cap & BNXT_FW_CAP_RSS_HASH_TYPE_DELTA) + if (bp->rss_cap & BNXT_RSS_CAP_RSS_HASH_TYPE_DELTA) bp->rss_hash_delta = bp->rss_hash_cfg; if (BNXT_CHIP_P4_PLUS(bp) && bp->hwrm_spec_code >= 0x10501) { - bp->flags |= BNXT_FLAG_UDP_RSS_CAP; + bp->rss_cap |= BNXT_RSS_CAP_UDP_RSS_CAP; bp->rss_hash_cfg |= VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4 | VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6; } @@ -12783,7 +13362,7 @@ { struct bnxt *bp = netdev_priv(dev); bool sh = false; - int rc; + int rc, tx_cp; if (tc > bp->max_tc) { netdev_err(dev, "Too many traffic classes requested: %d. Max supported is %d.\n", @@ -12814,8 +13393,9 @@ netdev_reset_tc(dev); } bp->tx_nr_rings += bp->tx_nr_rings_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; + tx_cp = bnxt_num_tx_to_cp(bp, bp->tx_nr_rings); + bp->cp_nr_rings = sh ? max_t(int, tx_cp, bp->rx_nr_rings) : + tx_cp + bp->rx_nr_rings; if (netif_running(bp->dev)) return bnxt_open_nic(bp, true, false); @@ -12985,8 +13565,7 @@ bp->ntp_fltr_count++; spin_unlock_bh(&bp->ntp_fltr_lock); - set_bit(BNXT_RX_NTP_FLTR_SP_EVENT, &bp->sp_event); - bnxt_queue_sp_work(bp); + bnxt_queue_sp_work(bp, BNXT_RX_NTP_FLTR_SP_EVENT); return new_fltr->sw_id; @@ -13209,6 +13788,7 @@ bnxt_clear_int_mode(bp); bnxt_hwrm_func_drv_unrgtr(bp); bnxt_free_hwrm_resources(bp); + bnxt_hwmon_uninit(bp); bnxt_ethtool_free(bp); bnxt_dcb_free(bp); kfree(bp->ptp_cfg); @@ -13217,8 +13797,6 @@ bp->fw_health = NULL; bnxt_cleanup_pci(bp); bnxt_free_ctx_mem(bp); - kfree(bp->ctx); - bp->ctx = NULL; kfree(bp->rss_indir_tbl); bp->rss_indir_tbl = NULL; bnxt_free_port_stats(bp); @@ -13287,7 +13865,7 @@ max_irq = min_t(int, bnxt_get_max_func_irqs(bp) - bnxt_get_ulp_msix_num(bp), hw_resc->max_stat_ctxs - bnxt_get_ulp_stat_ctxs(bp)); - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) *max_cp = min_t(int, *max_cp, max_irq); max_ring_grps = hw_resc->max_hw_ring_grps; if (BNXT_CHIP_TYPE_NITRO_A0(bp) && BNXT_PF(bp)) { @@ -13296,8 +13874,11 @@ } if (bp->flags & BNXT_FLAG_AGG_RINGS) *max_rx >>= 1; - if (bp->flags & BNXT_FLAG_CHIP_P5) { - bnxt_trim_rings(bp, max_rx, max_tx, *max_cp, false); + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { + if (*max_cp < (*max_rx + *max_tx)) { + *max_rx = *max_cp / 2; + *max_tx = *max_rx; + } /* On P5 chips, max_cp output param should be available NQs */ *max_cp = max_irq; } @@ -13598,7 +14179,8 @@ } max_irqs = bnxt_get_max_irq(pdev); - dev = alloc_etherdev_mq(sizeof(*bp), max_irqs); + dev = alloc_etherdev_mqs(sizeof(*bp), max_irqs * BNXT_MAX_QUEUE, + max_irqs); if (!dev) return -ENOMEM; @@ -13640,10 +14222,10 @@ if (BNXT_PF(bp)) bnxt_vpd_read_info(bp); - if (BNXT_CHIP_P5(bp)) { - bp->flags |= BNXT_FLAG_CHIP_P5; - if (BNXT_CHIP_SR2(bp)) - bp->flags |= BNXT_FLAG_CHIP_SR2; + if (BNXT_CHIP_P5_PLUS(bp)) { + bp->flags |= BNXT_FLAG_CHIP_P5_PLUS; + if (BNXT_CHIP_P7(bp)) + bp->flags |= BNXT_FLAG_CHIP_P7; } rc = bnxt_alloc_rss_indir_tbl(bp); @@ -13706,7 +14288,7 @@ bp->gro_func = bnxt_gro_func_5730x; if (BNXT_CHIP_P4(bp)) bp->gro_func = bnxt_gro_func_5731x; - else if (BNXT_CHIP_P5(bp)) + else if (BNXT_CHIP_P5_PLUS(bp)) bp->gro_func = bnxt_gro_func_5750x; } if (!BNXT_CHIP_P4_PLUS(bp)) @@ -13805,6 +14387,7 @@ init_err_pci_clean: bnxt_hwrm_func_drv_unrgtr(bp); bnxt_free_hwrm_resources(bp); + bnxt_hwmon_uninit(bp); bnxt_ethtool_free(bp); bnxt_ptp_clear(bp); kfree(bp->ptp_cfg); @@ -13813,8 +14396,6 @@ bp->fw_health = NULL; bnxt_cleanup_pci(bp); bnxt_free_ctx_mem(bp); - kfree(bp->ctx); - bp->ctx = NULL; kfree(bp->rss_indir_tbl); bp->rss_indir_tbl = NULL; @@ -13867,8 +14448,6 @@ bnxt_hwrm_func_drv_unrgtr(bp); pci_disable_device(bp->pdev); bnxt_free_ctx_mem(bp); - kfree(bp->ctx); - bp->ctx = NULL; rtnl_unlock(); return rc; } @@ -13901,6 +14480,8 @@ if (rc) goto resume_exit; + bnxt_clear_reservations(bp, true); + if (bnxt_hwrm_func_drv_rgtr(bp, NULL, 0, false)) { rc = -ENODEV; goto resume_exit; @@ -13965,8 +14546,6 @@ if (pci_is_enabled(pdev)) pci_disable_device(pdev); bnxt_free_ctx_mem(bp); - kfree(bp->ctx); - bp->ctx = NULL; rtnl_unlock(); /* Request a slot slot reset. */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt.h @@ -18,7 +18,7 @@ */ #define DRV_VER_MAJ 1 #define DRV_VER_MIN 10 -#define DRV_VER_UPD 2 +#define DRV_VER_UPD 3 #include #include @@ -61,6 +61,24 @@ __le64 tx_bd_haddr; } __packed; +#define TX_OPAQUE_IDX_MASK 0x0000ffff +#define TX_OPAQUE_BDS_MASK 0x00ff0000 +#define TX_OPAQUE_BDS_SHIFT 16 +#define TX_OPAQUE_RING_MASK 0xff000000 +#define TX_OPAQUE_RING_SHIFT 24 + +#define SET_TX_OPAQUE(bp, txr, idx, bds) \ + (((txr)->tx_napi_idx << TX_OPAQUE_RING_SHIFT) | \ + ((bds) << TX_OPAQUE_BDS_SHIFT) | ((idx) & (bp)->tx_ring_mask)) + +#define TX_OPAQUE_IDX(opq) ((opq) & TX_OPAQUE_IDX_MASK) +#define TX_OPAQUE_RING(opq) (((opq) & TX_OPAQUE_RING_MASK) >> \ + TX_OPAQUE_RING_SHIFT) +#define TX_OPAQUE_BDS(opq) (((opq) & TX_OPAQUE_BDS_MASK) >> \ + TX_OPAQUE_BDS_SHIFT) +#define TX_OPAQUE_PROD(bp, opq) ((TX_OPAQUE_IDX(opq) + TX_OPAQUE_BDS(opq)) &\ + (bp)->tx_ring_mask) + struct tx_bd_ext { __le32 tx_bd_hsize_lflags; #define TX_BD_FLAGS_TCP_UDP_CHKSUM (1 << 0) @@ -121,11 +139,15 @@ __le32 tx_cmp_flags_type; #define CMP_TYPE (0x3f << 0) #define CMP_TYPE_TX_L2_CMP 0 + #define CMP_TYPE_TX_L2_COAL_CMP 2 + #define CMP_TYPE_TX_L2_PKT_TS_CMP 4 #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_RX_TPA_AGG_CMP 22 + #define CMP_TYPE_RX_L2_V3_CMP 23 + #define CMP_TYPE_RX_L2_TPA_START_V3_CMP 25 #define CMP_TYPE_STATUS_CMP 32 #define CMP_TYPE_REMOTE_DRIVER_REQ 34 #define CMP_TYPE_REMOTE_DRIVER_RESP 36 @@ -152,9 +174,13 @@ #define TX_CMP_ERRORS_DMA_ERROR (1 << 6) #define TX_CMP_ERRORS_HINT_TOO_SHORT (1 << 7) - __le32 tx_cmp_unsed_3; + __le32 sq_cons_idx; + #define TX_CMP_SQ_CONS_IDX_MASK 0x00ffffff }; +#define TX_CMP_SQ_CONS_IDX(txcmp) \ + (le32_to_cpu((txcmp)->sq_cons_idx) & TX_CMP_SQ_CONS_IDX_MASK) + struct rx_cmp { __le32 rx_cmp_len_flags_type; #define RX_CMP_CMP_TYPE (0x3f << 0) @@ -182,8 +208,20 @@ #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_V3_RSS_EXT_OP_LEGACY (0xf << 12) + #define RX_CMP_V3_RSS_EXT_OP_LEGACY_SHIFT 12 + #define RX_CMP_V3_RSS_EXT_OP_NEW (0xf << 8) + #define RX_CMP_V3_RSS_EXT_OP_NEW_SHIFT 8 #define RX_CMP_PAYLOAD_OFFSET (0xff << 16) #define RX_CMP_PAYLOAD_OFFSET_SHIFT 16 + #define RX_CMP_SUB_NS_TS (0xf << 16) + #define RX_CMP_SUB_NS_TS_SHIFT 16 + #define RX_CMP_METADATA1 (0xf << 28) + #define RX_CMP_METADATA1_SHIFT 28 + #define RX_CMP_METADATA1_TPID_SEL (0x7 << 28) + #define RX_CMP_METADATA1_TPID_8021Q (0x1 << 28) + #define RX_CMP_METADATA1_TPID_8021AD (0x0 << 28) + #define RX_CMP_METADATA1_VALID (0x8 << 28) __le32 rx_cmp_rss_hash; }; @@ -197,6 +235,30 @@ (((le32_to_cpu((rxcmp)->rx_cmp_misc_v1) & RX_CMP_RSS_HASH_TYPE) >>\ RX_CMP_RSS_HASH_TYPE_SHIFT) & RSS_PROFILE_ID_MASK) +#define RX_CMP_V3_HASH_TYPE_LEGACY(rxcmp) \ + ((le32_to_cpu((rxcmp)->rx_cmp_misc_v1) & RX_CMP_V3_RSS_EXT_OP_LEGACY) >>\ + RX_CMP_V3_RSS_EXT_OP_LEGACY_SHIFT) + +#define RX_CMP_V3_HASH_TYPE_NEW(rxcmp) \ + ((le32_to_cpu((rxcmp)->rx_cmp_misc_v1) & RX_CMP_V3_RSS_EXT_OP_NEW) >>\ + RX_CMP_V3_RSS_EXT_OP_NEW_SHIFT) + +#define RX_CMP_V3_HASH_TYPE(bp, rxcmp) \ + (((bp)->rss_cap & BNXT_RSS_CAP_RSS_TCAM) ? \ + RX_CMP_V3_HASH_TYPE_NEW(rxcmp) : \ + RX_CMP_V3_HASH_TYPE_LEGACY(rxcmp)) + +#define EXT_OP_INNER_4 0x0 +#define EXT_OP_OUTER_4 0x2 +#define EXT_OP_INNFL_3 0x8 +#define EXT_OP_OUTFL_3 0xa + +#define RX_CMP_VLAN_VALID(rxcmp) \ + ((rxcmp)->rx_cmp_misc_v1 & cpu_to_le32(RX_CMP_METADATA1_VALID)) + +#define RX_CMP_VLAN_TPID_SEL(rxcmp) \ + (le32_to_cpu((rxcmp)->rx_cmp_misc_v1) & RX_CMP_METADATA1_TPID_SEL) + struct rx_cmp_ext { __le32 rx_cmp_flags2; #define RX_CMP_FLAGS2_IP_CS_CALC 0x1 @@ -244,6 +306,9 @@ #define RX_CMPL_CFA_CODE_MASK (0xffff << 16) #define RX_CMPL_CFA_CODE_SFT 16 + #define RX_CMPL_METADATA0_TCI_MASK (0xffff << 16) + #define RX_CMPL_METADATA0_VID_MASK (0x0fff << 16) + #define RX_CMPL_METADATA0_SFT 16 __le32 rx_cmp_timestamp; }; @@ -269,6 +334,10 @@ ((le32_to_cpu((rxcmpl1)->rx_cmp_cfa_code_errors_v2) & \ RX_CMPL_CFA_CODE_MASK) >> RX_CMPL_CFA_CODE_SFT) +#define RX_CMP_METADATA0_TCI(rxcmp1) \ + ((le32_to_cpu((rxcmp1)->rx_cmp_cfa_code_errors_v2) & \ + RX_CMPL_METADATA0_TCI_MASK) >> RX_CMPL_METADATA0_SFT) + struct rx_agg_cmp { __le32 rx_agg_cmp_len_flags_type; #define RX_AGG_CMP_TYPE (0x3f << 0) @@ -311,10 +380,18 @@ #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_V3_RSS_HASH_TYPE (0x1ff << 7) + #define RX_TPA_START_CMP_V3_RSS_HASH_TYPE_SHIFT 7 #define RX_TPA_START_CMP_AGG_ID (0x7f << 25) #define RX_TPA_START_CMP_AGG_ID_SHIFT 25 #define RX_TPA_START_CMP_AGG_ID_P5 (0xffff << 16) #define RX_TPA_START_CMP_AGG_ID_SHIFT_P5 16 + #define RX_TPA_START_CMP_METADATA1 (0xf << 28) + #define RX_TPA_START_CMP_METADATA1_SHIFT 28 + #define RX_TPA_START_METADATA1_TPID_SEL (0x7 << 28) + #define RX_TPA_START_METADATA1_TPID_8021Q (0x1 << 28) + #define RX_TPA_START_METADATA1_TPID_8021AD (0x0 << 28) + #define RX_TPA_START_METADATA1_VALID (0x8 << 28) __le32 rx_tpa_start_cmp_rss_hash; }; @@ -328,6 +405,11 @@ RX_TPA_START_CMP_RSS_HASH_TYPE) >> \ RX_TPA_START_CMP_RSS_HASH_TYPE_SHIFT) & RSS_PROFILE_ID_MASK) +#define TPA_START_V3_HASH_TYPE(rx_tpa_start) \ + (((le32_to_cpu((rx_tpa_start)->rx_tpa_start_cmp_misc_v1) & \ + RX_TPA_START_CMP_V3_RSS_HASH_TYPE) >> \ + RX_TPA_START_CMP_V3_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) @@ -340,6 +422,14 @@ ((rx_tpa_start)->rx_tpa_start_cmp_len_flags_type & \ cpu_to_le32(RX_TPA_START_CMP_FLAGS_ERROR)) +#define TPA_START_VLAN_VALID(rx_tpa_start) \ + ((rx_tpa_start)->rx_tpa_start_cmp_misc_v1 & \ + cpu_to_le32(RX_TPA_START_METADATA1_VALID)) + +#define TPA_START_VLAN_TPID_SEL(rx_tpa_start) \ + (le32_to_cpu((rx_tpa_start)->rx_tpa_start_cmp_misc_v1) & \ + RX_TPA_START_METADATA1_TPID_SEL) + struct rx_tpa_start_cmp_ext { __le32 rx_tpa_start_cmp_flags2; #define RX_TPA_START_CMP_FLAGS2_IP_CS_CALC (0x1 << 0) @@ -350,6 +440,8 @@ #define RX_TPA_START_CMP_FLAGS2_CSUM_CMPL_VALID (0x1 << 9) #define RX_TPA_START_CMP_FLAGS2_EXT_META_FORMAT (0x3 << 10) #define RX_TPA_START_CMP_FLAGS2_EXT_META_FORMAT_SHIFT 10 + #define RX_TPA_START_CMP_V3_FLAGS2_T_IP_TYPE (0x1 << 10) + #define RX_TPA_START_CMP_V3_FLAGS2_AGG_GRO (0x1 << 11) #define RX_TPA_START_CMP_FLAGS2_CSUM_CMPL (0xffff << 16) #define RX_TPA_START_CMP_FLAGS2_CSUM_CMPL_SHIFT 16 @@ -363,6 +455,9 @@ #define RX_TPA_START_CMP_ERRORS_BUFFER_ERROR_FLUSH (0x5 << 1) #define RX_TPA_START_CMP_CFA_CODE (0xffff << 16) #define RX_TPA_START_CMPL_CFA_CODE_SHIFT 16 + #define RX_TPA_START_CMP_METADATA0_TCI_MASK (0xffff << 16) + #define RX_TPA_START_CMP_METADATA0_VID_MASK (0x0fff << 16) + #define RX_TPA_START_CMP_METADATA0_SFT 16 __le32 rx_tpa_start_cmp_hdr_info; }; @@ -379,6 +474,11 @@ RX_TPA_START_CMP_ERRORS_BUFFER_ERROR_MASK) >> \ RX_TPA_START_CMP_ERRORS_BUFFER_ERROR_SHIFT) +#define TPA_START_METADATA0_TCI(rx_tpa_start) \ + ((le32_to_cpu((rx_tpa_start)->rx_tpa_start_cmp_cfa_code_v2) & \ + RX_TPA_START_CMP_METADATA0_TCI_MASK) >> \ + RX_TPA_START_CMP_METADATA0_SFT) + struct rx_tpa_end_cmp { __le32 rx_tpa_end_cmp_len_flags_type; #define RX_TPA_END_CMP_TYPE (0x3f << 0) @@ -523,6 +623,8 @@ #define NQ_CN_TYPE_SFT 0 #define NQ_CN_TYPE_CQ_NOTIFICATION 0x30UL #define NQ_CN_TYPE_LAST NQ_CN_TYPE_CQ_NOTIFICATION + #define NQ_CN_TOGGLE_MASK 0xc0UL + #define NQ_CN_TOGGLE_SFT 6 __le16 reserved16; __le32 cq_handle_low; __le32 v; @@ -530,6 +632,23 @@ __le32 cq_handle_high; }; +#define BNXT_NQ_HDL_IDX_MASK 0x00ffffff +#define BNXT_NQ_HDL_TYPE_MASK 0xff000000 +#define BNXT_NQ_HDL_TYPE_SHIFT 24 +#define BNXT_NQ_HDL_TYPE_RX 0x00 +#define BNXT_NQ_HDL_TYPE_TX 0x01 + +#define BNXT_NQ_HDL_IDX(hdl) ((hdl) & BNXT_NQ_HDL_IDX_MASK) +#define BNXT_NQ_HDL_TYPE(hdl) (((hdl) & BNXT_NQ_HDL_TYPE_MASK) >> \ + BNXT_NQ_HDL_TYPE_SHIFT) + +#define BNXT_SET_NQ_HDL(cpr) \ + (((cpr)->cp_ring_type << BNXT_NQ_HDL_TYPE_SHIFT) | (cpr)->cp_idx) + +#define NQE_CN_TYPE(type) ((type) & NQ_CN_TYPE_MASK) +#define NQE_CN_TOGGLE(type) (((type) & NQ_CN_TOGGLE_MASK) >> \ + NQ_CN_TOGGLE_SFT) + #define DB_IDX_MASK 0xffffff #define DB_IDX_VALID (0x1 << 26) #define DB_IRQ_DIS (0x1 << 27) @@ -545,9 +664,14 @@ /* 64-bit doorbell */ #define DBR_INDEX_MASK 0x0000000000ffffffULL +#define DBR_EPOCH_MASK 0x01000000UL +#define DBR_EPOCH_SFT 24 +#define DBR_TOGGLE_MASK 0x06000000UL +#define DBR_TOGGLE_SFT 25 #define DBR_XID_MASK 0x000fffff00000000ULL #define DBR_XID_SFT 32 #define DBR_PATH_L2 (0x1ULL << 56) +#define DBR_VALID (0x1ULL << 58) #define DBR_TYPE_SQ (0x0ULL << 60) #define DBR_TYPE_RQ (0x1ULL << 60) #define DBR_TYPE_SRQ (0x2ULL << 60) @@ -560,6 +684,7 @@ #define DBR_TYPE_CQ_CUTOFF_ACK (0x9ULL << 60) #define DBR_TYPE_NQ (0xaULL << 60) #define DBR_TYPE_NQ_ARM (0xbULL << 60) +#define DBR_TYPE_NQ_MASK (0xeULL << 60) #define DBR_TYPE_NULL (0xfULL << 60) #define DB_PF_OFFSET_P5 0x10000 @@ -655,10 +780,12 @@ */ #define BNXT_MIN_TX_DESC_CNT (MAX_SKB_FRAGS + 2) -#define RX_RING(x) (((x) & ~(RX_DESC_CNT - 1)) >> (BNXT_PAGE_SHIFT - 4)) +#define RX_RING(bp, x) (((x) & (bp)->rx_ring_mask) >> (BNXT_PAGE_SHIFT - 4)) +#define RX_AGG_RING(bp, x) (((x) & (bp)->rx_agg_ring_mask) >> \ + (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_RING(bp, x) (((x) & (bp)->tx_ring_mask) >> (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)) @@ -685,11 +812,14 @@ #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 RING_RX(bp, idx) ((idx) & (bp)->rx_ring_mask) +#define NEXT_RX(idx) ((idx) + 1) -#define NEXT_RX_AGG(idx) (((idx) + 1) & bp->rx_agg_ring_mask) +#define RING_RX_AGG(bp, idx) ((idx) & (bp)->rx_agg_ring_mask) +#define NEXT_RX_AGG(idx) ((idx) + 1) -#define NEXT_TX(idx) (((idx) + 1) & bp->tx_ring_mask) +#define RING_TX(bp, idx) ((idx) & (bp)->tx_ring_mask) +#define NEXT_TX(idx) ((idx) + 1) #define ADV_RAW_CMP(idx, n) ((idx) + (n)) #define NEXT_RAW_CMP(idx) ADV_RAW_CMP(idx, 1) @@ -702,6 +832,7 @@ #define BNXT_AGG_EVENT 2 #define BNXT_TX_EVENT 4 #define BNXT_REDIRECT_EVENT 8 +#define BNXT_TX_CMP_EVENT 0x10 struct bnxt_sw_tx_bd { union { @@ -730,13 +861,6 @@ dma_addr_t mapping; }; -struct bnxt_mem_init { - u8 init_val; - u16 offset; -#define BNXT_MEM_INVALID_OFFSET 0xffff - u16 size; -}; - struct bnxt_ring_mem_info { int nr_pages; int page_size; @@ -746,7 +870,7 @@ #define BNXT_RMEM_USE_FULL_PAGE_FLAG 4 u16 depth; - struct bnxt_mem_init *mem_init; + struct bnxt_ctx_mem_type *ctx_mem; void **pg_arr; dma_addr_t *dma_arr; @@ -788,13 +912,27 @@ u64 db_key64; u32 db_key32; }; + u32 db_ring_mask; + u32 db_epoch_mask; + u8 db_epoch_shift; }; +#define DB_EPOCH(db, idx) (((idx) & (db)->db_epoch_mask) << \ + ((db)->db_epoch_shift)) + +#define DB_TOGGLE(tgl) ((tgl) << DBR_TOGGLE_SFT) + +#define DB_RING_IDX(db, idx) (((idx) & (db)->db_ring_mask) | \ + DB_EPOCH(db, idx)) + struct bnxt_tx_ring_info { struct bnxt_napi *bnapi; + struct bnxt_cp_ring_info *tx_cpr; u16 tx_prod; u16 tx_cons; + u16 tx_hw_cons; u16 txq_index; + u8 tx_napi_idx; u8 kick_pending; struct bnxt_db_info tx_db; @@ -889,6 +1027,8 @@ u16 cfa_code; /* cfa_code in TPA start compl */ u8 agg_count; + u8 vlan_valid:1; + u8 cfa_code_valid:1; struct rx_agg_cmp *agg_arr; }; @@ -901,6 +1041,7 @@ struct bnxt_rx_ring_info { struct bnxt_napi *bnapi; + struct bnxt_cp_ring_info *rx_cpr; u16 rx_prod; u16 rx_agg_prod; u16 rx_sw_agg_prod; @@ -919,9 +1060,6 @@ 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]; @@ -942,15 +1080,32 @@ u64 rx_netpoll_discards; }; +struct bnxt_tx_sw_stats { + u64 tx_resets; +}; + struct bnxt_cmn_sw_stats { u64 missed_irqs; }; struct bnxt_sw_stats { struct bnxt_rx_sw_stats rx; + struct bnxt_tx_sw_stats tx; struct bnxt_cmn_sw_stats cmn; }; +struct bnxt_total_ring_err_stats { + u64 rx_total_l4_csum_errors; + u64 rx_total_resets; + u64 rx_total_buf_errors; + u64 rx_total_oom_discards; + u64 rx_total_netpoll_discards; + u64 rx_total_ring_discards; + u64 tx_total_resets; + u64 tx_total_ring_discards; + u64 total_missed_irqs; +}; + struct bnxt_stats_mem { u64 *sw_stats; u64 *hw_masks; @@ -966,6 +1121,11 @@ u8 had_work_done:1; u8 has_more_work:1; + u8 had_nqe_notify:1; + u8 toggle; + + u8 cp_ring_type; + u8 cp_idx; u32 last_cp_raw_cons; @@ -990,11 +1150,18 @@ struct bnxt_ring_struct cp_ring_struct; - struct bnxt_cp_ring_info *cp_ring_arr[2]; -#define BNXT_RX_HDL 0 -#define BNXT_TX_HDL 1 + int cp_ring_count; + struct bnxt_cp_ring_info *cp_ring_arr; }; +#define BNXT_MAX_QUEUE 8 +#define BNXT_MAX_TXR_PER_NAPI BNXT_MAX_QUEUE + +#define bnxt_for_each_napi_tx(iter, bnapi, txr) \ + for (iter = 0, txr = (bnapi)->tx_ring[0]; txr; \ + txr = (iter < BNXT_MAX_TXR_PER_NAPI - 1) ? \ + (bnapi)->tx_ring[++iter] : NULL) + struct bnxt_napi { struct napi_struct napi; struct bnxt *bp; @@ -1002,12 +1169,12 @@ int index; struct bnxt_cp_ring_info cp_ring; struct bnxt_rx_ring_info *rx_ring; - struct bnxt_tx_ring_info *tx_ring; + struct bnxt_tx_ring_info *tx_ring[BNXT_MAX_TXR_PER_NAPI]; void (*tx_int)(struct bnxt *, struct bnxt_napi *, int budget); - int tx_pkts; u8 events; + u8 tx_fault:1; u32 flags; #define BNXT_NAPI_FLAG_XDP 0x1 @@ -1193,6 +1360,7 @@ #define BNXT_LINK_STATE_DOWN 1 #define BNXT_LINK_STATE_UP 2 #define BNXT_LINK_IS_UP(bp) ((bp)->link_info.link_state == BNXT_LINK_STATE_UP) + u8 active_lanes; 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 @@ -1227,8 +1395,11 @@ #define BNXT_LINK_SPEED_50GB PORT_PHY_QCFG_RESP_LINK_SPEED_50GB #define BNXT_LINK_SPEED_100GB PORT_PHY_QCFG_RESP_LINK_SPEED_100GB #define BNXT_LINK_SPEED_200GB PORT_PHY_QCFG_RESP_LINK_SPEED_200GB +#define BNXT_LINK_SPEED_400GB PORT_PHY_QCFG_RESP_LINK_SPEED_400GB u16 support_speeds; u16 support_pam4_speeds; + u16 support_speeds2; + 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 @@ -1244,12 +1415,52 @@ #define BNXT_LINK_PAM4_SPEED_MSK_50GB PORT_PHY_QCFG_RESP_SUPPORT_PAM4_SPEEDS_50G #define BNXT_LINK_PAM4_SPEED_MSK_100GB PORT_PHY_QCFG_RESP_SUPPORT_PAM4_SPEEDS_100G #define BNXT_LINK_PAM4_SPEED_MSK_200GB PORT_PHY_QCFG_RESP_SUPPORT_PAM4_SPEEDS_200G + u16 auto_link_speeds2; +#define BNXT_LINK_SPEEDS2_MSK_1GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_1GB +#define BNXT_LINK_SPEEDS2_MSK_10GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_10GB +#define BNXT_LINK_SPEEDS2_MSK_25GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_25GB +#define BNXT_LINK_SPEEDS2_MSK_40GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_40GB +#define BNXT_LINK_SPEEDS2_MSK_50GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_50GB +#define BNXT_LINK_SPEEDS2_MSK_100GB PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_100GB +#define BNXT_LINK_SPEEDS2_MSK_50GB_PAM4 \ + PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_50GB_PAM4_56 +#define BNXT_LINK_SPEEDS2_MSK_100GB_PAM4 \ + PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_100GB_PAM4_56 +#define BNXT_LINK_SPEEDS2_MSK_200GB_PAM4 \ + PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_200GB_PAM4_56 +#define BNXT_LINK_SPEEDS2_MSK_400GB_PAM4 \ + PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_400GB_PAM4_56 +#define BNXT_LINK_SPEEDS2_MSK_100GB_PAM4_112 \ + PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_100GB_PAM4_112 +#define BNXT_LINK_SPEEDS2_MSK_200GB_PAM4_112 \ + PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_200GB_PAM4_112 +#define BNXT_LINK_SPEEDS2_MSK_400GB_PAM4_112 \ + PORT_PHY_QCFG_RESP_SUPPORT_SPEEDS2_400GB_PAM4_112 + u16 support_auto_speeds; u16 support_pam4_auto_speeds; + u16 support_auto_speeds2; + u16 lp_auto_link_speeds; u16 lp_auto_pam4_link_speeds; u16 force_link_speed; u16 force_pam4_link_speed; + u16 force_link_speed2; +#define BNXT_LINK_SPEED_50GB_PAM4 \ + PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_50GB_PAM4_56 +#define BNXT_LINK_SPEED_100GB_PAM4 \ + PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_100GB_PAM4_56 +#define BNXT_LINK_SPEED_200GB_PAM4 \ + PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_200GB_PAM4_56 +#define BNXT_LINK_SPEED_400GB_PAM4 \ + PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_400GB_PAM4_56 +#define BNXT_LINK_SPEED_100GB_PAM4_112 \ + PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_100GB_PAM4_112 +#define BNXT_LINK_SPEED_200GB_PAM4_112 \ + PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_200GB_PAM4_112 +#define BNXT_LINK_SPEED_400GB_PAM4_112 \ + PORT_PHY_CFG_REQ_FORCE_LINK_SPEEDS2_400GB_PAM4_112 + u32 preemphasis; u8 module_status; u8 active_fec_sig_mode; @@ -1280,6 +1491,8 @@ u8 req_signal_mode; #define BNXT_SIG_MODE_NRZ PORT_PHY_QCFG_RESP_SIGNAL_MODE_NRZ #define BNXT_SIG_MODE_PAM4 PORT_PHY_QCFG_RESP_SIGNAL_MODE_PAM4 +#define BNXT_SIG_MODE_PAM4_112 PORT_PHY_QCFG_RESP_SIGNAL_MODE_PAM4_112 +#define BNXT_SIG_MODE_MAX (PORT_PHY_QCFG_RESP_SIGNAL_MODE_LAST + 1) u8 req_duplex; u8 req_flow_ctrl; u16 req_link_speed; @@ -1339,8 +1552,6 @@ (PORT_PHY_CFG_REQ_FLAGS_FEC_CLAUSE74_DISABLE | \ BNXT_FEC_RS_OFF(link_info)) -#define BNXT_MAX_QUEUE 8 - struct bnxt_queue_info { u8 queue_id; u8 queue_profile; @@ -1369,7 +1580,7 @@ }; #define CHIMP_REG_VIEW_ADDR \ - ((bp->flags & BNXT_FLAG_CHIP_P5) ? 0x80000000 : 0xb1000000) + ((bp->flags & BNXT_FLAG_CHIP_P5_PLUS) ? 0x80000000 : 0xb1000000) #define BNXT_GRCPF_REG_CHIMP_COMM 0x0 #define BNXT_GRCPF_REG_CHIMP_COMM_TRIGGER 0x100 @@ -1493,53 +1704,73 @@ attr = FUNC_BACKING_STORE_CFG_REQ_QPC_PG_SIZE_PG_4K; \ } while (0) +struct bnxt_ctx_mem_type { + u16 type; + u16 entry_size; + u32 flags; +#define BNXT_CTX_MEM_TYPE_VALID FUNC_BACKING_STORE_QCAPS_V2_RESP_FLAGS_TYPE_VALID + u32 instance_bmap; + u8 init_value; + u8 entry_multiple; + u16 init_offset; +#define BNXT_CTX_INIT_INVALID_OFFSET 0xffff + u32 max_entries; + u32 min_entries; + u8 last:1; + u8 split_entry_cnt; +#define BNXT_MAX_SPLIT_ENTRY 4 + union { + struct { + u32 qp_l2_entries; + u32 qp_qp1_entries; + u32 qp_fast_qpmd_entries; + }; + u32 srq_l2_entries; + u32 cq_l2_entries; + u32 vnic_entries; + struct { + u32 mrav_av_entries; + u32 mrav_num_entries_units; + }; + u32 split[BNXT_MAX_SPLIT_ENTRY]; + }; + struct bnxt_ctx_pg_info *pg_info; +}; + +#define BNXT_CTX_MRAV_AV_SPLIT_ENTRY 0 + +#define BNXT_CTX_QP FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_QP +#define BNXT_CTX_SRQ FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_SRQ +#define BNXT_CTX_CQ FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_CQ +#define BNXT_CTX_VNIC FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_VNIC +#define BNXT_CTX_STAT FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_STAT +#define BNXT_CTX_STQM FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_SP_TQM_RING +#define BNXT_CTX_FTQM FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_FP_TQM_RING +#define BNXT_CTX_MRAV FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_MRAV +#define BNXT_CTX_TIM FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_TIM +#define BNXT_CTX_TKC FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_TKC +#define BNXT_CTX_RKC FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_RKC +#define BNXT_CTX_MTQM FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_MP_TQM_RING +#define BNXT_CTX_SQDBS FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_SQ_DB_SHADOW +#define BNXT_CTX_RQDBS FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_RQ_DB_SHADOW +#define BNXT_CTX_SRQDBS FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_SRQ_DB_SHADOW +#define BNXT_CTX_CQDBS FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_CQ_DB_SHADOW +#define BNXT_CTX_QTKC FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_QUIC_TKC +#define BNXT_CTX_QRKC FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_QUIC_RKC +#define BNXT_CTX_TBLSC FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_TBL_SCOPE +#define BNXT_CTX_XPAR FUNC_BACKING_STORE_QCAPS_V2_REQ_TYPE_XID_PARTITION + +#define BNXT_CTX_MAX (BNXT_CTX_TIM + 1) +#define BNXT_CTX_L2_MAX (BNXT_CTX_FTQM + 1) +#define BNXT_CTX_V2_MAX (BNXT_CTX_XPAR + 1) +#define BNXT_CTX_INV ((u16)-1) + struct bnxt_ctx_mem_info { - u32 qp_max_entries; - u16 qp_min_qp1_entries; - u16 qp_max_l2_entries; - u16 qp_entry_size; - u16 srq_max_l2_entries; - u32 srq_max_entries; - u16 srq_entry_size; - u16 cq_max_l2_entries; - u32 cq_max_entries; - u16 cq_entry_size; - u16 vnic_max_vnic_entries; - u16 vnic_max_ring_table_entries; - u16 vnic_entry_size; - u32 stat_max_entries; - u16 stat_entry_size; - u16 tqm_entry_size; - u32 tqm_min_entries_per_ring; - u32 tqm_max_entries_per_ring; - u32 mrav_max_entries; - u16 mrav_entry_size; - u16 tim_entry_size; - u32 tim_max_entries; - u16 mrav_num_entries_units; - u8 tqm_entries_multiple; u8 tqm_fp_rings_count; u32 flags; #define BNXT_CTX_FLAG_INITED 0x01 - - struct bnxt_ctx_pg_info qp_mem; - struct bnxt_ctx_pg_info srq_mem; - struct bnxt_ctx_pg_info cq_mem; - struct bnxt_ctx_pg_info vnic_mem; - struct bnxt_ctx_pg_info stat_mem; - struct bnxt_ctx_pg_info mrav_mem; - struct bnxt_ctx_pg_info tim_mem; - struct bnxt_ctx_pg_info *tqm_mem[BNXT_MAX_TQM_RINGS]; - -#define BNXT_CTX_MEM_INIT_QP 0 -#define BNXT_CTX_MEM_INIT_SRQ 1 -#define BNXT_CTX_MEM_INIT_CQ 2 -#define BNXT_CTX_MEM_INIT_VNIC 3 -#define BNXT_CTX_MEM_INIT_STAT 4 -#define BNXT_CTX_MEM_INIT_MRAV 5 -#define BNXT_CTX_MEM_INIT_MAX 6 - struct bnxt_mem_init mem_init[BNXT_CTX_MEM_INIT_MAX]; + struct bnxt_ctx_mem_type ctx_arr[BNXT_CTX_V2_MAX]; }; enum bnxt_health_severity { @@ -1675,6 +1906,10 @@ BCM57508_NPAR, BCM57504_NPAR, BCM57502_NPAR, + BCM57608, + BCM57604, + BCM57602, + BCM57601, BCM58802, BCM58804, BCM58808, @@ -1722,14 +1957,14 @@ #define CHIP_NUM_57504 0x1751 #define CHIP_NUM_57502 0x1752 +#define CHIP_NUM_57608 0x1760 + #define CHIP_NUM_58802 0xd802 #define CHIP_NUM_58804 0xd804 #define CHIP_NUM_58808 0xd808 u8 chip_rev; -#define CHIP_NUM_58818 0xd818 - #define BNXT_CHIP_NUM_5730X(chip_num) \ ((chip_num) >= CHIP_NUM_57301 && \ (chip_num) <= CHIP_NUM_57304) @@ -1779,7 +2014,7 @@ atomic_t intr_sem; u32 flags; - #define BNXT_FLAG_CHIP_P5 0x1 + #define BNXT_FLAG_CHIP_P5_PLUS 0x1 #define BNXT_FLAG_VF 0x2 #define BNXT_FLAG_LRO 0x4 #ifdef CONFIG_INET @@ -1798,8 +2033,6 @@ #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_NEW_RSS_CAP 0x2000 #define BNXT_FLAG_WOL_CAP 0x4000 #define BNXT_FLAG_ROCEV1_CAP 0x8000 #define BNXT_FLAG_ROCEV2_CAP 0x10000 @@ -1807,7 +2040,7 @@ BNXT_FLAG_ROCEV2_CAP) #define BNXT_FLAG_NO_AGG_RINGS 0x20000 #define BNXT_FLAG_RX_PAGE_MODE 0x40000 - #define BNXT_FLAG_CHIP_SR2 0x80000 + #define BNXT_FLAG_CHIP_P7 0x80000 #define BNXT_FLAG_MULTI_HOST 0x100000 #define BNXT_FLAG_DSN_VALID 0x200000 #define BNXT_FLAG_DOUBLE_DB 0x400000 @@ -1833,21 +2066,21 @@ #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) #define BNXT_SUPPORTS_TPA(bp) (!BNXT_CHIP_TYPE_NITRO_A0(bp) && \ - (!((bp)->flags & BNXT_FLAG_CHIP_P5) || \ + (!((bp)->flags & BNXT_FLAG_CHIP_P5_PLUS) ||\ (bp)->max_tpa_v2) && !is_kdump_kernel()) #define BNXT_RX_JUMBO_MODE(bp) ((bp)->flags & BNXT_FLAG_JUMBO) -#define BNXT_CHIP_SR2(bp) \ - ((bp)->chip_num == CHIP_NUM_58818) +#define BNXT_CHIP_P7(bp) \ + ((bp)->chip_num == CHIP_NUM_57608) -#define BNXT_CHIP_P5_THOR(bp) \ +#define BNXT_CHIP_P5(bp) \ ((bp)->chip_num == CHIP_NUM_57508 || \ (bp)->chip_num == CHIP_NUM_57504 || \ (bp)->chip_num == CHIP_NUM_57502) /* Chip class phase 5 */ -#define BNXT_CHIP_P5(bp) \ - (BNXT_CHIP_P5_THOR(bp) || BNXT_CHIP_SR2(bp)) +#define BNXT_CHIP_P5_PLUS(bp) \ + (BNXT_CHIP_P5(bp) || BNXT_CHIP_P7(bp)) /* Chip class phase 4.x */ #define BNXT_CHIP_P4(bp) \ @@ -1858,7 +2091,7 @@ !BNXT_CHIP_TYPE_NITRO_A0(bp))) #define BNXT_CHIP_P4_PLUS(bp) \ - (BNXT_CHIP_P4(bp) || BNXT_CHIP_P5(bp)) + (BNXT_CHIP_P4(bp) || BNXT_CHIP_P5_PLUS(bp)) struct bnxt_aux_priv *aux_priv; struct bnxt_en_dev *edev; @@ -1919,6 +2152,11 @@ u16 rss_indir_tbl_entries; u32 rss_hash_cfg; u32 rss_hash_delta; + u32 rss_cap; +#define BNXT_RSS_CAP_RSS_HASH_TYPE_DELTA BIT(0) +#define BNXT_RSS_CAP_UDP_RSS_CAP BIT(1) +#define BNXT_RSS_CAP_NEW_RSS_CAP BIT(2) +#define BNXT_RSS_CAP_RSS_TCAM BIT(3) u16 max_mtu; u8 max_tc; @@ -1984,7 +2222,6 @@ #define BNXT_FW_CAP_CFA_RFS_RING_TBL_IDX_V2 BIT_ULL(16) #define BNXT_FW_CAP_PCIE_STATS_SUPPORTED BIT_ULL(17) #define BNXT_FW_CAP_EXT_STATS_SUPPORTED BIT_ULL(18) - #define BNXT_FW_CAP_RSS_HASH_TYPE_DELTA BIT_ULL(19) #define BNXT_FW_CAP_ERR_RECOVER_RELOAD BIT_ULL(20) #define BNXT_FW_CAP_HOT_RESET BIT_ULL(21) #define BNXT_FW_CAP_PTP_RTC BIT_ULL(22) @@ -1998,6 +2235,10 @@ #define BNXT_FW_CAP_RING_MONITOR BIT_ULL(30) #define BNXT_FW_CAP_DBG_QCAPS BIT_ULL(31) #define BNXT_FW_CAP_PTP BIT_ULL(32) + #define BNXT_FW_CAP_THRESHOLD_TEMP_SUPPORTED BIT_ULL(33) + #define BNXT_FW_CAP_DFLT_VLAN_TPID_PCP BIT_ULL(34) + #define BNXT_FW_CAP_PRE_RESV_VNICS BIT_ULL(35) + #define BNXT_FW_CAP_BACKING_STORE_V2 BIT_ULL(36) u32 fw_dbg_cap; @@ -2020,6 +2261,8 @@ u8 pri2cos_idx[8]; u8 pri2cos_valid; + struct bnxt_total_ring_err_stats ring_err_stats_prev; + u16 hwrm_max_req_len; u16 hwrm_max_ext_req_len; unsigned int hwrm_cmd_timeout; @@ -2036,6 +2279,7 @@ #define BNXT_FW_VER_CODE(maj, min, bld, rsv) \ ((u64)(maj) << 48 | (u64)(min) << 32 | (u64)(bld) << 16 | (rsv)) #define BNXT_FW_MAJ(bp) ((bp)->fw_ver_code >> 48) +#define BNXT_FW_BLD(bp) (((bp)->fw_ver_code >> 16) & 0xffff) u16 vxlan_fw_dst_port_id; u16 nge_fw_dst_port_id; @@ -2073,6 +2317,7 @@ #define BNXT_FW_RESET_NOTIFY_SP_EVENT 18 #define BNXT_FW_EXCEPTION_SP_EVENT 19 #define BNXT_LINK_CFG_CHANGE_SP_EVENT 21 +#define BNXT_THERMAL_THRESHOLD_SP_EVENT 22 #define BNXT_FW_ECHO_REQUEST_SP_EVENT 23 struct delayed_work fw_reset_task; @@ -2107,6 +2352,7 @@ /* ensure atomic 64-bit doorbell writes on 32-bit systems. */ spinlock_t db_lock; #endif + int db_offset; /* db_offset within db_size */ int db_size; #define BNXT_NTP_FLTR_MAX_FLTR 4096 @@ -2140,6 +2386,7 @@ #define BNXT_PHY_FL_NO_PAUSE (PORT_PHY_QCAPS_RESP_FLAGS2_PAUSE_UNSUPPORTED << 8) #define BNXT_PHY_FL_NO_PFC (PORT_PHY_QCAPS_RESP_FLAGS2_PFC_UNSUPPORTED << 8) #define BNXT_PHY_FL_BANK_SEL (PORT_PHY_QCAPS_RESP_FLAGS2_BANK_ADDR_SUPPORTED << 8) +#define BNXT_PHY_FL_SPEEDS2 (PORT_PHY_QCAPS_RESP_FLAGS2_SPEEDS2_SUPPORTED << 8) u8 num_tests; struct bnxt_test_info *test_info; @@ -2168,7 +2415,14 @@ struct bnxt_tc_info *tc_info; struct list_head tc_indr_block_list; struct dentry *debugfs_pdev; +#ifdef CONFIG_BNXT_HWMON struct device *hwmon_dev; + u8 warn_thresh_temp; + u8 crit_thresh_temp; + u8 fatal_thresh_temp; + u8 shutdown_thresh_temp; +#endif + u32 thermal_threshold_type; enum board_idx board_idx; }; @@ -2176,15 +2430,15 @@ #define BNXT_NUM_TX_RING_STATS 8 #define BNXT_NUM_TPA_RING_STATS 4 #define BNXT_NUM_TPA_RING_STATS_P5 5 -#define BNXT_NUM_TPA_RING_STATS_P5_SR2 6 +#define BNXT_NUM_TPA_RING_STATS_P7 6 #define BNXT_RING_STATS_SIZE_P5 \ ((BNXT_NUM_RX_RING_STATS + BNXT_NUM_TX_RING_STATS + \ BNXT_NUM_TPA_RING_STATS_P5) * 8) -#define BNXT_RING_STATS_SIZE_P5_SR2 \ +#define BNXT_RING_STATS_SIZE_P7 \ ((BNXT_NUM_RX_RING_STATS + BNXT_NUM_TX_RING_STATS + \ - BNXT_NUM_TPA_RING_STATS_P5_SR2) * 8) + BNXT_NUM_TPA_RING_STATS_P7) * 8) #define BNXT_GET_RING_STATS64(sw, counter) \ (*((sw) + offsetof(struct ctx_hw_stats, counter) / 8)) @@ -2267,10 +2521,11 @@ static inline void bnxt_db_write_relaxed(struct bnxt *bp, struct bnxt_db_info *db, u32 idx) { - if (bp->flags & BNXT_FLAG_CHIP_P5) { - bnxt_writeq_relaxed(bp, db->db_key64 | idx, db->doorbell); + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { + bnxt_writeq_relaxed(bp, db->db_key64 | DB_RING_IDX(db, idx), + db->doorbell); } else { - u32 db_val = db->db_key32 | idx; + u32 db_val = db->db_key32 | DB_RING_IDX(db, idx); writel_relaxed(db_val, db->doorbell); if (bp->flags & BNXT_FLAG_DOUBLE_DB) @@ -2282,10 +2537,11 @@ static inline void bnxt_db_write(struct bnxt *bp, struct bnxt_db_info *db, u32 idx) { - if (bp->flags & BNXT_FLAG_CHIP_P5) { - bnxt_writeq(bp, db->db_key64 | idx, db->doorbell); + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { + bnxt_writeq(bp, db->db_key64 | DB_RING_IDX(db, idx), + db->doorbell); } else { - u32 db_val = db->db_key32 | idx; + u32 db_val = db->db_key32 | DB_RING_IDX(db, idx); writel(db_val, db->doorbell); if (bp->flags & BNXT_FLAG_DOUBLE_DB) @@ -2321,6 +2577,7 @@ int bnxt_nq_rings_in_use(struct bnxt *bp); int bnxt_hwrm_set_coal(struct bnxt *); void bnxt_free_ctx_mem(struct bnxt *bp); +int bnxt_num_tx_to_cp(struct bnxt *bp, int tx); unsigned int bnxt_get_max_func_stat_ctxs(struct bnxt *bp); unsigned int bnxt_get_avail_stat_ctxs_for_en(struct bnxt *bp); unsigned int bnxt_get_max_func_cp_rings(struct bnxt *bp); @@ -2329,6 +2586,8 @@ int bnxt_reserve_rings(struct bnxt *bp, bool irq_re_init); void bnxt_tx_disable(struct bnxt *bp); void bnxt_tx_enable(struct bnxt *bp); +void bnxt_sched_reset_txr(struct bnxt *bp, struct bnxt_tx_ring_info *txr, + u16 curr); void bnxt_report_link(struct bnxt *bp); int bnxt_update_link(struct bnxt *bp, bool chng_link_state); int bnxt_hwrm_set_pause(struct bnxt *); @@ -2344,6 +2603,8 @@ void bnxt_half_close_nic(struct bnxt *bp); void bnxt_reenable_sriov(struct bnxt *bp); int bnxt_close_nic(struct bnxt *, bool, bool); +void bnxt_get_ring_err_stats(struct bnxt *bp, + struct bnxt_total_ring_err_stats *stats); int bnxt_dbg_hwrm_rd_reg(struct bnxt *bp, u32 reg_off, u16 num_words, u32 *reg_buf); void bnxt_fw_exception(struct bnxt *bp); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.c @@ -98,7 +98,6 @@ { struct hwrm_queue_cos2bw_cfg_input *req; struct bnxt_cos2bw_cfg cos2bw; - void *data; int rc, i; rc = hwrm_req_init(bp, req, HWRM_QUEUE_COS2BW_CFG); @@ -129,11 +128,15 @@ cpu_to_le32((ets->tc_tx_bw[i] * 100) | BW_VALUE_UNIT_PERCENT1_100); } - data = &req->unused_0 + qidx * (sizeof(cos2bw) - 4); - memcpy(data, &cos2bw.queue_id, sizeof(cos2bw) - 4); if (qidx == 0) { req->queue_id0 = cos2bw.queue_id; - req->unused_0 = 0; + req->queue_id0_min_bw = cos2bw.min_bw; + req->queue_id0_max_bw = cos2bw.max_bw; + req->queue_id0_tsa_assign = cos2bw.tsa; + req->queue_id0_pri_lvl = cos2bw.pri_lvl; + req->queue_id0_bw_weight = cos2bw.bw_weight; + } else { + memcpy(&req->cfg[i - 1], &cos2bw.cfg, sizeof(cos2bw.cfg)); } } return hwrm_req_send(bp, req); @@ -144,7 +147,6 @@ struct hwrm_queue_cos2bw_qcfg_output *resp; struct hwrm_queue_cos2bw_qcfg_input *req; struct bnxt_cos2bw_cfg cos2bw; - void *data; int rc, i; rc = hwrm_req_init(bp, req, HWRM_QUEUE_COS2BW_QCFG); @@ -158,13 +160,19 @@ return rc; } - data = &resp->queue_id0 + offsetof(struct bnxt_cos2bw_cfg, queue_id); - for (i = 0; i < bp->max_tc; i++, data += sizeof(cos2bw.cfg)) { + for (i = 0; i < bp->max_tc; i++) { int tc; - memcpy(&cos2bw.cfg, data, sizeof(cos2bw.cfg)); - if (i == 0) + if (i == 0) { cos2bw.queue_id = resp->queue_id0; + cos2bw.min_bw = resp->queue_id0_min_bw; + cos2bw.max_bw = resp->queue_id0_max_bw; + cos2bw.tsa = resp->queue_id0_tsa_assign; + cos2bw.pri_lvl = resp->queue_id0_pri_lvl; + cos2bw.bw_weight = resp->queue_id0_bw_weight; + } else { + memcpy(&cos2bw.cfg, &resp->cfg[i - 1], sizeof(cos2bw.cfg)); + } tc = bnxt_queue_to_tc(bp, cos2bw.queue_id); if (tc < 0) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.h @@ -27,11 +27,12 @@ u8 queue_id; __le32 min_bw; __le32 max_bw; -#define BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) u8 tsa; u8 pri_lvl; u8 bw_weight; ); +/* for min_bw / max_bw */ +#define BW_VALUE_UNIT_PERCENT1_100 (0x1UL << 29) u8 unused; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_devlink.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_devlink.c @@ -62,7 +62,7 @@ if (~bp->fw_cap & BNXT_FW_CAP_HOT_RESET_IF) return -EOPNOTSUPP; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (rc) return rc; @@ -498,8 +498,6 @@ } bnxt_cancel_reservations(bp, false); bnxt_free_ctx_mem(bp); - kfree(bp->ctx); - bp->ctx = NULL; break; } case DEVLINK_RELOAD_ACTION_FW_ACTIVATE: { @@ -770,7 +768,7 @@ } /* earlier devices present as an array of raw bytes */ - if (!BNXT_CHIP_P5(bp)) { + if (!BNXT_CHIP_P5_PLUS(bp)) { dim = 0; i = 0; bits *= 3; /* array of 3 version components */ @@ -790,7 +788,7 @@ goto exit; bnxt_copy_from_nvm_data(&ver, data, bits, bytes); - if (BNXT_CHIP_P5(bp)) { + if (BNXT_CHIP_P5_PLUS(bp)) { *nvm_cfg_ver <<= 8; *nvm_cfg_ver |= ver.vu8; } else { @@ -810,7 +808,7 @@ if (!strlen(buf)) return 0; - if ((bp->flags & BNXT_FLAG_CHIP_P5) && + if ((bp->flags & BNXT_FLAG_CHIP_P5_PLUS) && (!strcmp(key, DEVLINK_INFO_VERSION_GENERIC_FW_NCSI) || !strcmp(key, DEVLINK_INFO_VERSION_GENERIC_FW_ROCE))) return 0; @@ -1036,7 +1034,7 @@ if (rc) return rc; - if (BNXT_CHIP_P5(bp)) { + if (BNXT_CHIP_P5_PLUS(bp)) { rc = bnxt_dl_livepatch_info_put(bp, req, BNXT_FW_SRT_PATCH); if (rc) return rc; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c @@ -8,6 +8,7 @@ * the Free Software Foundation. */ +#include #include #include #include @@ -339,13 +340,16 @@ RX_NETPOLL_DISCARDS, }; -static struct { - u64 counter; - char string[ETH_GSTRING_LEN]; -} bnxt_sw_func_stats[] = { - {0, "rx_total_discard_pkts"}, - {0, "tx_total_discard_pkts"}, - {0, "rx_total_netpoll_discards"}, +static const char *const bnxt_ring_err_stats_arr[] = { + "rx_total_l4_csum_errors", + "rx_total_resets", + "rx_total_buf_errors", + "rx_total_oom_discards", + "rx_total_netpoll_discards", + "rx_total_ring_discards", + "tx_total_resets", + "tx_total_ring_discards", + "total_missed_irqs", }; #define NUM_RING_RX_SW_STATS ARRAY_SIZE(bnxt_rx_sw_stats_str) @@ -495,7 +499,7 @@ BNXT_TX_STATS_PRI_ENTRIES(tx_packets), }; -#define BNXT_NUM_SW_FUNC_STATS ARRAY_SIZE(bnxt_sw_func_stats) +#define BNXT_NUM_RING_ERR_STATS ARRAY_SIZE(bnxt_ring_err_stats_arr) #define BNXT_NUM_PORT_STATS ARRAY_SIZE(bnxt_port_stats_arr) #define BNXT_NUM_STATS_PRI \ (ARRAY_SIZE(bnxt_rx_bytes_pri_arr) + \ @@ -507,9 +511,9 @@ { if (BNXT_SUPPORTS_TPA(bp)) { if (bp->max_tpa_v2) { - if (BNXT_CHIP_P5_THOR(bp)) + if (BNXT_CHIP_P5(bp)) return BNXT_NUM_TPA_RING_STATS_P5; - return BNXT_NUM_TPA_RING_STATS_P5_SR2; + return BNXT_NUM_TPA_RING_STATS_P7; } return BNXT_NUM_TPA_RING_STATS; } @@ -524,22 +528,28 @@ bnxt_get_num_tpa_ring_stats(bp); tx = NUM_RING_TX_HW_STATS; cmn = NUM_RING_CMN_SW_STATS; - return rx * bp->rx_nr_rings + tx * bp->tx_nr_rings + + return rx * bp->rx_nr_rings + + tx * (bp->tx_nr_rings_xdp + bp->tx_nr_rings_per_tc) + cmn * bp->cp_nr_rings; } static int bnxt_get_num_stats(struct bnxt *bp) { int num_stats = bnxt_get_num_ring_stats(bp); + int len; - num_stats += BNXT_NUM_SW_FUNC_STATS; + num_stats += BNXT_NUM_RING_ERR_STATS; if (bp->flags & BNXT_FLAG_PORT_STATS) num_stats += BNXT_NUM_PORT_STATS; if (bp->flags & BNXT_FLAG_PORT_STATS_EXT) { - num_stats += bp->fw_rx_stats_ext_size + - bp->fw_tx_stats_ext_size; + len = min_t(int, bp->fw_rx_stats_ext_size, + ARRAY_SIZE(bnxt_port_stats_ext_arr)); + num_stats += len; + len = min_t(int, bp->fw_tx_stats_ext_size, + ARRAY_SIZE(bnxt_tx_port_stats_ext_arr)); + num_stats += len; if (bp->pri2cos_valid) num_stats += BNXT_NUM_STATS_PRI; } @@ -583,18 +593,17 @@ static void bnxt_get_ethtool_stats(struct net_device *dev, struct ethtool_stats *stats, u64 *buf) { - u32 i, j = 0; + struct bnxt_total_ring_err_stats ring_err_stats = {0}; struct bnxt *bp = netdev_priv(dev); + u64 *curr, *prev; u32 tpa_stats; + u32 i, j = 0; if (!bp->bnapi) { - j += bnxt_get_num_ring_stats(bp) + BNXT_NUM_SW_FUNC_STATS; + j += bnxt_get_num_ring_stats(bp); goto skip_ring_stats; } - for (i = 0; i < BNXT_NUM_SW_FUNC_STATS; i++) - bnxt_sw_func_stats[i].counter = 0; - tpa_stats = bnxt_get_num_tpa_ring_stats(bp); for (i = 0; i < bp->cp_nr_rings; i++) { struct bnxt_napi *bnapi = bp->bnapi[i]; @@ -631,19 +640,16 @@ sw = (u64 *)&cpr->sw_stats.cmn; for (k = 0; k < NUM_RING_CMN_SW_STATS; j++, k++) buf[j] = sw[k]; - - bnxt_sw_func_stats[RX_TOTAL_DISCARDS].counter += - BNXT_GET_RING_STATS64(sw_stats, rx_discard_pkts); - bnxt_sw_func_stats[TX_TOTAL_DISCARDS].counter += - BNXT_GET_RING_STATS64(sw_stats, tx_discard_pkts); - bnxt_sw_func_stats[RX_NETPOLL_DISCARDS].counter += - cpr->sw_stats.rx.rx_netpoll_discards; } - for (i = 0; i < BNXT_NUM_SW_FUNC_STATS; i++, j++) - buf[j] = bnxt_sw_func_stats[i].counter; + bnxt_get_ring_err_stats(bp, &ring_err_stats); skip_ring_stats: + curr = &ring_err_stats.rx_total_l4_csum_errors; + prev = &bp->ring_err_stats_prev.rx_total_l4_csum_errors; + for (i = 0; i < BNXT_NUM_RING_ERR_STATS; i++, j++, curr++, prev++) + buf[j] = *curr + *prev; + if (bp->flags & BNXT_FLAG_PORT_STATS) { u64 *port_stats = bp->port_stats.sw_stats; @@ -653,12 +659,17 @@ if (bp->flags & BNXT_FLAG_PORT_STATS_EXT) { u64 *rx_port_stats_ext = bp->rx_port_stats_ext.sw_stats; u64 *tx_port_stats_ext = bp->tx_port_stats_ext.sw_stats; + u32 len; - for (i = 0; i < bp->fw_rx_stats_ext_size; i++, j++) { + len = min_t(u32, bp->fw_rx_stats_ext_size, + ARRAY_SIZE(bnxt_port_stats_ext_arr)); + for (i = 0; i < len; i++, j++) { buf[j] = *(rx_port_stats_ext + bnxt_port_stats_ext_arr[i].offset); } - for (i = 0; i < bp->fw_tx_stats_ext_size; i++, j++) { + len = min_t(u32, bp->fw_tx_stats_ext_size, + ARRAY_SIZE(bnxt_tx_port_stats_ext_arr)); + for (i = 0; i < len; i++, j++) { buf[j] = *(tx_port_stats_ext + bnxt_tx_port_stats_ext_arr[i].offset); } @@ -745,8 +756,8 @@ buf += ETH_GSTRING_LEN; } } - for (i = 0; i < BNXT_NUM_SW_FUNC_STATS; i++) { - strcpy(buf, bnxt_sw_func_stats[i].string); + for (i = 0; i < BNXT_NUM_RING_ERR_STATS; i++) { + strscpy(buf, bnxt_ring_err_stats_arr[i], ETH_GSTRING_LEN); buf += ETH_GSTRING_LEN; } @@ -757,11 +768,17 @@ } } if (bp->flags & BNXT_FLAG_PORT_STATS_EXT) { - for (i = 0; i < bp->fw_rx_stats_ext_size; i++) { + u32 len; + + len = min_t(u32, bp->fw_rx_stats_ext_size, + ARRAY_SIZE(bnxt_port_stats_ext_arr)); + for (i = 0; i < len; i++) { strcpy(buf, bnxt_port_stats_ext_arr[i].string); buf += ETH_GSTRING_LEN; } - for (i = 0; i < bp->fw_tx_stats_ext_size; i++) { + len = min_t(u32, bp->fw_tx_stats_ext_size, + ARRAY_SIZE(bnxt_tx_port_stats_ext_arr)); + for (i = 0; i < len; i++) { strcpy(buf, bnxt_tx_port_stats_ext_arr[i].string); buf += ETH_GSTRING_LEN; @@ -907,6 +924,7 @@ bool sh = false; int tx_xdp = 0; int rc = 0; + int tx_cp; if (channel->other_count) return -EINVAL; @@ -978,8 +996,9 @@ 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; + tx_cp = bnxt_num_tx_to_cp(bp, bp->tx_nr_rings); + bp->cp_nr_rings = sh ? max_t(int, tx_cp, bp->rx_nr_rings) : + tx_cp + bp->rx_nr_rings; /* After changing number of rx channels, update NTUPLE feature. */ netdev_update_features(dev); @@ -1184,7 +1203,7 @@ 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)) + if (tuple == 4 && !(bp->rss_cap & BNXT_RSS_CAP_UDP_RSS_CAP)) return -EINVAL; rss_hash_cfg &= ~VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV4; if (tuple == 4) @@ -1194,7 +1213,7 @@ 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)) + if (tuple == 4 && !(bp->rss_cap & BNXT_RSS_CAP_UDP_RSS_CAP)) return -EINVAL; rss_hash_cfg &= ~VNIC_RSS_CFG_REQ_HASH_TYPE_UDP_IPV6; if (tuple == 4) @@ -1234,7 +1253,7 @@ if (bp->rss_hash_cfg == rss_hash_cfg) return 0; - if (bp->fw_cap & BNXT_FW_CAP_RSS_HASH_TYPE_DELTA) + if (bp->rss_cap & BNXT_RSS_CAP_RSS_HASH_TYPE_DELTA) bp->rss_hash_delta = bp->rss_hash_cfg ^ rss_hash_cfg; bp->rss_hash_cfg = rss_hash_cfg; if (netif_running(bp->dev)) { @@ -1303,7 +1322,7 @@ { struct bnxt *bp = netdev_priv(dev); - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) return ALIGN(bp->rx_nr_rings, BNXT_RSS_TABLE_ENTRIES_P5); return HW_HASH_INDEX_SIZE; } @@ -1507,94 +1526,569 @@ return speed_mask; } -#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_speeds) & BNXT_LINK_SPEED_MSK_100GB) \ - ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ - 100000baseCR4_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; \ - if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ - 100000baseCR4_Full)) \ - (fw_speeds) |= BNXT_LINK_SPEED_MSK_100GB; \ -} - -#define BNXT_FW_TO_ETHTOOL_PAM4_SPDS(fw_speeds, lk_ksettings, name) \ -{ \ - if ((fw_speeds) & BNXT_LINK_PAM4_SPEED_MSK_50GB) \ - ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ - 50000baseCR_Full); \ - if ((fw_speeds) & BNXT_LINK_PAM4_SPEED_MSK_100GB) \ - ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ - 100000baseCR2_Full);\ - if ((fw_speeds) & BNXT_LINK_PAM4_SPEED_MSK_200GB) \ - ethtool_link_ksettings_add_link_mode(lk_ksettings, name,\ - 200000baseCR4_Full);\ -} - -#define BNXT_ETHTOOL_TO_FW_PAM4_SPDS(fw_speeds, lk_ksettings, name) \ -{ \ - if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ - 50000baseCR_Full)) \ - (fw_speeds) |= BNXT_LINK_PAM4_SPEED_MSK_50GB; \ - if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ - 100000baseCR2_Full)) \ - (fw_speeds) |= BNXT_LINK_PAM4_SPEED_MSK_100GB; \ - if (ethtool_link_ksettings_test_link_mode(lk_ksettings, name, \ - 200000baseCR4_Full)) \ - (fw_speeds) |= BNXT_LINK_PAM4_SPEED_MSK_200GB; \ +enum bnxt_media_type { + BNXT_MEDIA_UNKNOWN = 0, + BNXT_MEDIA_TP, + BNXT_MEDIA_CR, + BNXT_MEDIA_SR, + BNXT_MEDIA_LR_ER_FR, + BNXT_MEDIA_KR, + BNXT_MEDIA_KX, + BNXT_MEDIA_X, + __BNXT_MEDIA_END, +}; + +static const enum bnxt_media_type bnxt_phy_types[] = { + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASECR] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASEKR4] = BNXT_MEDIA_KR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASELR] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASESR] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASEKR2] = BNXT_MEDIA_KR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASEKX] = BNXT_MEDIA_KX, + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASEKR] = BNXT_MEDIA_KR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASET] = BNXT_MEDIA_TP, + [PORT_PHY_QCFG_RESP_PHY_TYPE_BASETE] = BNXT_MEDIA_TP, + [PORT_PHY_QCFG_RESP_PHY_TYPE_25G_BASECR_CA_L] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_25G_BASECR_CA_S] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_25G_BASECR_CA_N] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_25G_BASESR] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASECR4] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASESR4] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASELR4] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASEER4] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASESR10] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_40G_BASECR4] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_40G_BASESR4] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_40G_BASELR4] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_40G_BASEER4] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_40G_ACTIVE_CABLE] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_1G_BASET] = BNXT_MEDIA_TP, + [PORT_PHY_QCFG_RESP_PHY_TYPE_1G_BASESX] = BNXT_MEDIA_X, + [PORT_PHY_QCFG_RESP_PHY_TYPE_1G_BASECX] = BNXT_MEDIA_X, + [PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASECR4] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASESR4] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASELR4] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASEER4] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_50G_BASECR] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_50G_BASESR] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_50G_BASELR] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_50G_BASEER] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASECR2] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASESR2] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASELR2] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASEER2] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASECR] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASESR] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASELR] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_100G_BASEER] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASECR2] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASESR2] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASELR2] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_200G_BASEER2] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASECR8] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASESR8] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASELR8] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASEER8] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASECR4] = BNXT_MEDIA_CR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASESR4] = BNXT_MEDIA_SR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASELR4] = BNXT_MEDIA_LR_ER_FR, + [PORT_PHY_QCFG_RESP_PHY_TYPE_400G_BASEER4] = BNXT_MEDIA_LR_ER_FR, +}; + +static enum bnxt_media_type +bnxt_get_media(struct bnxt_link_info *link_info) +{ + switch (link_info->media_type) { + case PORT_PHY_QCFG_RESP_MEDIA_TYPE_TP: + return BNXT_MEDIA_TP; + case PORT_PHY_QCFG_RESP_MEDIA_TYPE_DAC: + return BNXT_MEDIA_CR; + default: + if (link_info->phy_type < ARRAY_SIZE(bnxt_phy_types)) + return bnxt_phy_types[link_info->phy_type]; + return BNXT_MEDIA_UNKNOWN; + } +} + +enum bnxt_link_speed_indices { + BNXT_LINK_SPEED_UNKNOWN = 0, + BNXT_LINK_SPEED_100MB_IDX, + BNXT_LINK_SPEED_1GB_IDX, + BNXT_LINK_SPEED_10GB_IDX, + BNXT_LINK_SPEED_25GB_IDX, + BNXT_LINK_SPEED_40GB_IDX, + BNXT_LINK_SPEED_50GB_IDX, + BNXT_LINK_SPEED_100GB_IDX, + BNXT_LINK_SPEED_200GB_IDX, + BNXT_LINK_SPEED_400GB_IDX, + __BNXT_LINK_SPEED_END +}; + +static enum bnxt_link_speed_indices bnxt_fw_speed_idx(u16 speed) +{ + switch (speed) { + case BNXT_LINK_SPEED_100MB: return BNXT_LINK_SPEED_100MB_IDX; + case BNXT_LINK_SPEED_1GB: return BNXT_LINK_SPEED_1GB_IDX; + case BNXT_LINK_SPEED_10GB: return BNXT_LINK_SPEED_10GB_IDX; + case BNXT_LINK_SPEED_25GB: return BNXT_LINK_SPEED_25GB_IDX; + case BNXT_LINK_SPEED_40GB: return BNXT_LINK_SPEED_40GB_IDX; + case BNXT_LINK_SPEED_50GB: + case BNXT_LINK_SPEED_50GB_PAM4: + return BNXT_LINK_SPEED_50GB_IDX; + case BNXT_LINK_SPEED_100GB: + case BNXT_LINK_SPEED_100GB_PAM4: + case BNXT_LINK_SPEED_100GB_PAM4_112: + return BNXT_LINK_SPEED_100GB_IDX; + case BNXT_LINK_SPEED_200GB: + case BNXT_LINK_SPEED_200GB_PAM4: + case BNXT_LINK_SPEED_200GB_PAM4_112: + return BNXT_LINK_SPEED_200GB_IDX; + case BNXT_LINK_SPEED_400GB: + case BNXT_LINK_SPEED_400GB_PAM4: + case BNXT_LINK_SPEED_400GB_PAM4_112: + return BNXT_LINK_SPEED_400GB_IDX; + default: return BNXT_LINK_SPEED_UNKNOWN; + } +} + +static const enum ethtool_link_mode_bit_indices +bnxt_link_modes[__BNXT_LINK_SPEED_END][BNXT_SIG_MODE_MAX][__BNXT_MEDIA_END] = { + [BNXT_LINK_SPEED_100MB_IDX] = { + { + [BNXT_MEDIA_TP] = ETHTOOL_LINK_MODE_100baseT_Full_BIT, + }, + }, + [BNXT_LINK_SPEED_1GB_IDX] = { + { + [BNXT_MEDIA_TP] = ETHTOOL_LINK_MODE_1000baseT_Full_BIT, + /* historically baseT, but DAC is more correctly baseX */ + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_1000baseX_Full_BIT, + [BNXT_MEDIA_KX] = ETHTOOL_LINK_MODE_1000baseKX_Full_BIT, + [BNXT_MEDIA_X] = ETHTOOL_LINK_MODE_1000baseX_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_1000baseKX_Full_BIT, + }, + }, + [BNXT_LINK_SPEED_10GB_IDX] = { + { + [BNXT_MEDIA_TP] = ETHTOOL_LINK_MODE_10000baseT_Full_BIT, + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_10000baseCR_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_10000baseSR_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_10000baseLR_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_10000baseKR_Full_BIT, + [BNXT_MEDIA_KX] = ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT, + }, + }, + [BNXT_LINK_SPEED_25GB_IDX] = { + { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_25000baseCR_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_25000baseSR_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_25000baseKR_Full_BIT, + }, + }, + [BNXT_LINK_SPEED_40GB_IDX] = { + { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT, + }, + }, + [BNXT_LINK_SPEED_50GB_IDX] = { + [BNXT_SIG_MODE_NRZ] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT, + }, + [BNXT_SIG_MODE_PAM4] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_50000baseCR_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_50000baseSR_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_50000baseKR_Full_BIT, + }, + }, + [BNXT_LINK_SPEED_100GB_IDX] = { + [BNXT_SIG_MODE_NRZ] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT, + }, + [BNXT_SIG_MODE_PAM4] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT, + }, + [BNXT_SIG_MODE_PAM4_112] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_100000baseCR_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_100000baseSR_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_100000baseKR_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT, + }, + }, + [BNXT_LINK_SPEED_200GB_IDX] = { + [BNXT_SIG_MODE_PAM4] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT, + }, + [BNXT_SIG_MODE_PAM4_112] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT, + }, + }, + [BNXT_LINK_SPEED_400GB_IDX] = { + [BNXT_SIG_MODE_PAM4] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT, + }, + [BNXT_SIG_MODE_PAM4_112] = { + [BNXT_MEDIA_CR] = ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT, + [BNXT_MEDIA_KR] = ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT, + [BNXT_MEDIA_SR] = ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT, + [BNXT_MEDIA_LR_ER_FR] = ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT, + }, + }, +}; + +#define BNXT_LINK_MODE_UNKNOWN -1 + +static enum ethtool_link_mode_bit_indices +bnxt_get_link_mode(struct bnxt_link_info *link_info) +{ + enum ethtool_link_mode_bit_indices link_mode; + enum bnxt_link_speed_indices speed; + enum bnxt_media_type media; + u8 sig_mode; + + if (link_info->phy_link_status != BNXT_LINK_LINK) + return BNXT_LINK_MODE_UNKNOWN; + + media = bnxt_get_media(link_info); + if (BNXT_AUTO_MODE(link_info->auto_mode)) { + speed = bnxt_fw_speed_idx(link_info->link_speed); + sig_mode = link_info->active_fec_sig_mode & + PORT_PHY_QCFG_RESP_SIGNAL_MODE_MASK; + } else { + speed = bnxt_fw_speed_idx(link_info->req_link_speed); + sig_mode = link_info->req_signal_mode; + } + if (sig_mode >= BNXT_SIG_MODE_MAX) + return BNXT_LINK_MODE_UNKNOWN; + + /* Note ETHTOOL_LINK_MODE_10baseT_Half_BIT == 0 is a legal Linux + * link mode, but since no such devices exist, the zeroes in the + * map can be conveniently used to represent unknown link modes. + */ + link_mode = bnxt_link_modes[speed][sig_mode][media]; + if (!link_mode) + return BNXT_LINK_MODE_UNKNOWN; + + switch (link_mode) { + case ETHTOOL_LINK_MODE_100baseT_Full_BIT: + if (~link_info->duplex & BNXT_LINK_DUPLEX_FULL) + link_mode = ETHTOOL_LINK_MODE_100baseT_Half_BIT; + break; + case ETHTOOL_LINK_MODE_1000baseT_Full_BIT: + if (~link_info->duplex & BNXT_LINK_DUPLEX_FULL) + link_mode = ETHTOOL_LINK_MODE_1000baseT_Half_BIT; + break; + default: + break; + } + + return link_mode; +} + +static void bnxt_get_ethtool_modes(struct bnxt_link_info *link_info, + struct ethtool_link_ksettings *lk_ksettings) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + + if (!(bp->phy_flags & BNXT_PHY_FL_NO_PAUSE)) { + linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, + lk_ksettings->link_modes.supported); + linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, + lk_ksettings->link_modes.supported); + } + + if (link_info->support_auto_speeds || link_info->support_auto_speeds2 || + link_info->support_pam4_auto_speeds) + linkmode_set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, + lk_ksettings->link_modes.supported); + + if (~link_info->autoneg & BNXT_AUTONEG_FLOW_CTRL) + return; + + if (link_info->auto_pause_setting & BNXT_LINK_PAUSE_RX) + linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, + lk_ksettings->link_modes.advertising); + if (hweight8(link_info->auto_pause_setting & BNXT_LINK_PAUSE_BOTH) == 1) + linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, + lk_ksettings->link_modes.advertising); + if (link_info->lp_pause & BNXT_LINK_PAUSE_RX) + linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, + lk_ksettings->link_modes.lp_advertising); + if (hweight8(link_info->lp_pause & BNXT_LINK_PAUSE_BOTH) == 1) + linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, + lk_ksettings->link_modes.lp_advertising); +} + +static const u16 bnxt_nrz_speed_masks[] = { + [BNXT_LINK_SPEED_100MB_IDX] = BNXT_LINK_SPEED_MSK_100MB, + [BNXT_LINK_SPEED_1GB_IDX] = BNXT_LINK_SPEED_MSK_1GB, + [BNXT_LINK_SPEED_10GB_IDX] = BNXT_LINK_SPEED_MSK_10GB, + [BNXT_LINK_SPEED_25GB_IDX] = BNXT_LINK_SPEED_MSK_25GB, + [BNXT_LINK_SPEED_40GB_IDX] = BNXT_LINK_SPEED_MSK_40GB, + [BNXT_LINK_SPEED_50GB_IDX] = BNXT_LINK_SPEED_MSK_50GB, + [BNXT_LINK_SPEED_100GB_IDX] = BNXT_LINK_SPEED_MSK_100GB, + [__BNXT_LINK_SPEED_END - 1] = 0 /* make any legal speed a valid index */ +}; + +static const u16 bnxt_pam4_speed_masks[] = { + [BNXT_LINK_SPEED_50GB_IDX] = BNXT_LINK_PAM4_SPEED_MSK_50GB, + [BNXT_LINK_SPEED_100GB_IDX] = BNXT_LINK_PAM4_SPEED_MSK_100GB, + [BNXT_LINK_SPEED_200GB_IDX] = BNXT_LINK_PAM4_SPEED_MSK_200GB, + [__BNXT_LINK_SPEED_END - 1] = 0 /* make any legal speed a valid index */ +}; + +static const u16 bnxt_nrz_speeds2_masks[] = { + [BNXT_LINK_SPEED_1GB_IDX] = BNXT_LINK_SPEEDS2_MSK_1GB, + [BNXT_LINK_SPEED_10GB_IDX] = BNXT_LINK_SPEEDS2_MSK_10GB, + [BNXT_LINK_SPEED_25GB_IDX] = BNXT_LINK_SPEEDS2_MSK_25GB, + [BNXT_LINK_SPEED_40GB_IDX] = BNXT_LINK_SPEEDS2_MSK_40GB, + [BNXT_LINK_SPEED_50GB_IDX] = BNXT_LINK_SPEEDS2_MSK_50GB, + [BNXT_LINK_SPEED_100GB_IDX] = BNXT_LINK_SPEEDS2_MSK_100GB, + [__BNXT_LINK_SPEED_END - 1] = 0 /* make any legal speed a valid index */ +}; + +static const u16 bnxt_pam4_speeds2_masks[] = { + [BNXT_LINK_SPEED_50GB_IDX] = BNXT_LINK_SPEEDS2_MSK_50GB_PAM4, + [BNXT_LINK_SPEED_100GB_IDX] = BNXT_LINK_SPEEDS2_MSK_100GB_PAM4, + [BNXT_LINK_SPEED_200GB_IDX] = BNXT_LINK_SPEEDS2_MSK_200GB_PAM4, + [BNXT_LINK_SPEED_400GB_IDX] = BNXT_LINK_SPEEDS2_MSK_400GB_PAM4, +}; + +static const u16 bnxt_pam4_112_speeds2_masks[] = { + [BNXT_LINK_SPEED_100GB_IDX] = BNXT_LINK_SPEEDS2_MSK_100GB_PAM4_112, + [BNXT_LINK_SPEED_200GB_IDX] = BNXT_LINK_SPEEDS2_MSK_200GB_PAM4_112, + [BNXT_LINK_SPEED_400GB_IDX] = BNXT_LINK_SPEEDS2_MSK_400GB_PAM4_112, +}; + +static enum bnxt_link_speed_indices +bnxt_encoding_speed_idx(u8 sig_mode, u16 phy_flags, u16 speed_msk) +{ + const u16 *speeds; + int idx, len; + + switch (sig_mode) { + case BNXT_SIG_MODE_NRZ: + if (phy_flags & BNXT_PHY_FL_SPEEDS2) { + speeds = bnxt_nrz_speeds2_masks; + len = ARRAY_SIZE(bnxt_nrz_speeds2_masks); + } else { + speeds = bnxt_nrz_speed_masks; + len = ARRAY_SIZE(bnxt_nrz_speed_masks); + } + break; + case BNXT_SIG_MODE_PAM4: + if (phy_flags & BNXT_PHY_FL_SPEEDS2) { + speeds = bnxt_pam4_speeds2_masks; + len = ARRAY_SIZE(bnxt_pam4_speeds2_masks); + } else { + speeds = bnxt_pam4_speed_masks; + len = ARRAY_SIZE(bnxt_pam4_speed_masks); + } + break; + case BNXT_SIG_MODE_PAM4_112: + speeds = bnxt_pam4_112_speeds2_masks; + len = ARRAY_SIZE(bnxt_pam4_112_speeds2_masks); + break; + default: + return BNXT_LINK_SPEED_UNKNOWN; + } + + for (idx = 0; idx < len; idx++) { + if (speeds[idx] == speed_msk) + return idx; + } + + return BNXT_LINK_SPEED_UNKNOWN; +} + +#define BNXT_FW_SPEED_MSK_BITS 16 + +static void +__bnxt_get_ethtool_speeds(unsigned long fw_mask, enum bnxt_media_type media, + u8 sig_mode, u16 phy_flags, unsigned long *et_mask) +{ + enum ethtool_link_mode_bit_indices link_mode; + enum bnxt_link_speed_indices speed; + u8 bit; + + for_each_set_bit(bit, &fw_mask, BNXT_FW_SPEED_MSK_BITS) { + speed = bnxt_encoding_speed_idx(sig_mode, phy_flags, 1 << bit); + if (!speed) + continue; + + link_mode = bnxt_link_modes[speed][sig_mode][media]; + if (!link_mode) + continue; + + linkmode_set_bit(link_mode, et_mask); + } +} + +static void +bnxt_get_ethtool_speeds(unsigned long fw_mask, enum bnxt_media_type media, + u8 sig_mode, u16 phy_flags, unsigned long *et_mask) +{ + if (media) { + __bnxt_get_ethtool_speeds(fw_mask, media, sig_mode, phy_flags, + et_mask); + return; + } + + /* list speeds for all media if unknown */ + for (media = 1; media < __BNXT_MEDIA_END; media++) + __bnxt_get_ethtool_speeds(fw_mask, media, sig_mode, phy_flags, + et_mask); +} + +static void +bnxt_get_all_ethtool_support_speeds(struct bnxt_link_info *link_info, + enum bnxt_media_type media, + struct ethtool_link_ksettings *lk_ksettings) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + u16 sp_nrz, sp_pam4, sp_pam4_112 = 0; + u16 phy_flags = bp->phy_flags; + + if (phy_flags & BNXT_PHY_FL_SPEEDS2) { + sp_nrz = link_info->support_speeds2; + sp_pam4 = link_info->support_speeds2; + sp_pam4_112 = link_info->support_speeds2; + } else { + sp_nrz = link_info->support_speeds; + sp_pam4 = link_info->support_pam4_speeds; + } + bnxt_get_ethtool_speeds(sp_nrz, media, BNXT_SIG_MODE_NRZ, phy_flags, + lk_ksettings->link_modes.supported); + bnxt_get_ethtool_speeds(sp_pam4, media, BNXT_SIG_MODE_PAM4, phy_flags, + lk_ksettings->link_modes.supported); + bnxt_get_ethtool_speeds(sp_pam4_112, media, BNXT_SIG_MODE_PAM4_112, + phy_flags, lk_ksettings->link_modes.supported); +} + +static void +bnxt_get_all_ethtool_adv_speeds(struct bnxt_link_info *link_info, + enum bnxt_media_type media, + struct ethtool_link_ksettings *lk_ksettings) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + u16 sp_nrz, sp_pam4, sp_pam4_112 = 0; + u16 phy_flags = bp->phy_flags; + + sp_nrz = link_info->advertising; + if (phy_flags & BNXT_PHY_FL_SPEEDS2) { + sp_pam4 = link_info->advertising; + sp_pam4_112 = link_info->advertising; + } else { + sp_pam4 = link_info->advertising_pam4; + } + bnxt_get_ethtool_speeds(sp_nrz, media, BNXT_SIG_MODE_NRZ, phy_flags, + lk_ksettings->link_modes.advertising); + bnxt_get_ethtool_speeds(sp_pam4, media, BNXT_SIG_MODE_PAM4, phy_flags, + lk_ksettings->link_modes.advertising); + bnxt_get_ethtool_speeds(sp_pam4_112, media, BNXT_SIG_MODE_PAM4_112, + phy_flags, lk_ksettings->link_modes.advertising); +} + +static void +bnxt_get_all_ethtool_lp_speeds(struct bnxt_link_info *link_info, + enum bnxt_media_type media, + struct ethtool_link_ksettings *lk_ksettings) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + u16 phy_flags = bp->phy_flags; + + bnxt_get_ethtool_speeds(link_info->lp_auto_link_speeds, media, + BNXT_SIG_MODE_NRZ, phy_flags, + lk_ksettings->link_modes.lp_advertising); + bnxt_get_ethtool_speeds(link_info->lp_auto_pam4_link_speeds, media, + BNXT_SIG_MODE_PAM4, phy_flags, + lk_ksettings->link_modes.lp_advertising); +} + +static void bnxt_update_speed(u32 *delta, bool installed_media, u16 *speeds, + u16 speed_msk, const unsigned long *et_mask, + enum ethtool_link_mode_bit_indices mode) +{ + bool mode_desired = linkmode_test_bit(mode, et_mask); + + if (!mode) + return; + + /* enabled speeds for installed media should override */ + if (installed_media && mode_desired) { + *speeds |= speed_msk; + *delta |= speed_msk; + return; + } + + /* many to one mapping, only allow one change per fw_speed bit */ + if (!(*delta & speed_msk) && (mode_desired == !(*speeds & speed_msk))) { + *speeds ^= speed_msk; + *delta |= speed_msk; + } +} + +static void bnxt_set_ethtool_speeds(struct bnxt_link_info *link_info, + const unsigned long *et_mask) +{ + struct bnxt *bp = container_of(link_info, struct bnxt, link_info); + u16 const *sp_msks, *sp_pam4_msks, *sp_pam4_112_msks; + enum bnxt_media_type media = bnxt_get_media(link_info); + u16 *adv, *adv_pam4, *adv_pam4_112 = NULL; + u32 delta_pam4_112 = 0; + u32 delta_pam4 = 0; + u32 delta_nrz = 0; + int i, m; + + adv = &link_info->advertising; + if (bp->phy_flags & BNXT_PHY_FL_SPEEDS2) { + adv_pam4 = &link_info->advertising; + adv_pam4_112 = &link_info->advertising; + sp_msks = bnxt_nrz_speeds2_masks; + sp_pam4_msks = bnxt_pam4_speeds2_masks; + sp_pam4_112_msks = bnxt_pam4_112_speeds2_masks; + } else { + adv_pam4 = &link_info->advertising_pam4; + sp_msks = bnxt_nrz_speed_masks; + sp_pam4_msks = bnxt_pam4_speed_masks; + } + for (i = 1; i < __BNXT_LINK_SPEED_END; i++) { + /* accept any legal media from user */ + for (m = 1; m < __BNXT_MEDIA_END; m++) { + bnxt_update_speed(&delta_nrz, m == media, + adv, sp_msks[i], et_mask, + bnxt_link_modes[i][BNXT_SIG_MODE_NRZ][m]); + bnxt_update_speed(&delta_pam4, m == media, + adv_pam4, sp_pam4_msks[i], et_mask, + bnxt_link_modes[i][BNXT_SIG_MODE_PAM4][m]); + if (!adv_pam4_112) + continue; + + bnxt_update_speed(&delta_pam4_112, m == media, + adv_pam4_112, sp_pam4_112_msks[i], et_mask, + bnxt_link_modes[i][BNXT_SIG_MODE_PAM4_112][m]); + } + } } static void bnxt_fw_to_ethtool_advertised_fec(struct bnxt_link_info *link_info, @@ -1618,36 +2112,6 @@ lk_ksettings->link_modes.advertising); } -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); - fw_speeds = link_info->advertising_pam4; - BNXT_FW_TO_ETHTOOL_PAM4_SPDS(fw_speeds, lk_ksettings, advertising); - bnxt_fw_to_ethtool_advertised_fec(link_info, lk_ksettings); -} - -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); - fw_speeds = link_info->lp_auto_pam4_link_speeds; - BNXT_FW_TO_ETHTOOL_PAM4_SPDS(fw_speeds, lk_ksettings, lp_advertising); -} - static void bnxt_fw_to_ethtool_support_fec(struct bnxt_link_info *link_info, struct ethtool_link_ksettings *lk_ksettings) { @@ -1669,30 +2133,6 @@ lk_ksettings->link_modes.supported); } -static void bnxt_fw_to_ethtool_support_spds(struct bnxt_link_info *link_info, - struct ethtool_link_ksettings *lk_ksettings) -{ - struct bnxt *bp = container_of(link_info, struct bnxt, link_info); - u16 fw_speeds = link_info->support_speeds; - - BNXT_FW_TO_ETHTOOL_SPDS(fw_speeds, 0, lk_ksettings, supported); - fw_speeds = link_info->support_pam4_speeds; - BNXT_FW_TO_ETHTOOL_PAM4_SPDS(fw_speeds, lk_ksettings, supported); - - if (!(bp->phy_flags & BNXT_PHY_FL_NO_PAUSE)) { - 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 || - link_info->support_pam4_auto_speeds) - ethtool_link_ksettings_add_link_mode(lk_ksettings, supported, - Autoneg); - bnxt_fw_to_ethtool_support_fec(link_info, lk_ksettings); -} - u32 bnxt_fw_to_ethtool_speed(u16 fw_link_speed) { switch (fw_link_speed) { @@ -1711,70 +2151,100 @@ case BNXT_LINK_SPEED_40GB: return SPEED_40000; case BNXT_LINK_SPEED_50GB: + case BNXT_LINK_SPEED_50GB_PAM4: return SPEED_50000; case BNXT_LINK_SPEED_100GB: + case BNXT_LINK_SPEED_100GB_PAM4: + case BNXT_LINK_SPEED_100GB_PAM4_112: return SPEED_100000; case BNXT_LINK_SPEED_200GB: + case BNXT_LINK_SPEED_200GB_PAM4: + case BNXT_LINK_SPEED_200GB_PAM4_112: return SPEED_200000; + case BNXT_LINK_SPEED_400GB: + case BNXT_LINK_SPEED_400GB_PAM4: + case BNXT_LINK_SPEED_400GB_PAM4_112: + return SPEED_400000; default: return SPEED_UNKNOWN; } } +static void bnxt_get_default_speeds(struct ethtool_link_ksettings *lk_ksettings, + struct bnxt_link_info *link_info) +{ + struct ethtool_link_settings *base = &lk_ksettings->base; + + if (link_info->link_state == BNXT_LINK_STATE_UP) { + base->speed = bnxt_fw_to_ethtool_speed(link_info->link_speed); + base->duplex = DUPLEX_HALF; + if (link_info->duplex & BNXT_LINK_DUPLEX_FULL) + base->duplex = DUPLEX_FULL; + lk_ksettings->lanes = link_info->active_lanes; + } else if (!link_info->autoneg) { + base->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; + } +} + 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; + enum ethtool_link_mode_bit_indices link_mode; + struct bnxt *bp = netdev_priv(dev); + struct bnxt_link_info *link_info; + enum bnxt_media_type media; + ethtool_link_ksettings_zero_link_mode(lk_ksettings, lp_advertising); + ethtool_link_ksettings_zero_link_mode(lk_ksettings, advertising); ethtool_link_ksettings_zero_link_mode(lk_ksettings, supported); + base->duplex = DUPLEX_UNKNOWN; + base->speed = SPEED_UNKNOWN; + link_info = &bp->link_info; + mutex_lock(&bp->link_lock); - bnxt_fw_to_ethtool_support_spds(link_info, lk_ksettings); + bnxt_get_ethtool_modes(link_info, lk_ksettings); + media = bnxt_get_media(link_info); + bnxt_get_all_ethtool_support_speeds(link_info, media, lk_ksettings); + bnxt_fw_to_ethtool_support_fec(link_info, lk_ksettings); + link_mode = bnxt_get_link_mode(link_info); + if (link_mode != BNXT_LINK_MODE_UNKNOWN) + ethtool_params_from_link_mode(lk_ksettings, link_mode); + else + bnxt_get_default_speeds(lk_ksettings, link_info); - 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); + bnxt_fw_to_ethtool_advertised_fec(link_info, lk_ksettings); + linkmode_set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, + lk_ksettings->link_modes.advertising); base->autoneg = AUTONEG_ENABLE; - base->duplex = DUPLEX_UNKNOWN; - if (link_info->phy_link_status == BNXT_LINK_LINK) { - bnxt_fw_to_ethtool_lp_adv(link_info, lk_ksettings); - if (link_info->duplex & BNXT_LINK_DUPLEX_FULL) - base->duplex = DUPLEX_FULL; - else - base->duplex = DUPLEX_HALF; - } - ethtool_speed = bnxt_fw_to_ethtool_speed(link_info->link_speed); + bnxt_get_all_ethtool_adv_speeds(link_info, media, lk_ksettings); + if (link_info->phy_link_status == BNXT_LINK_LINK) + bnxt_get_all_ethtool_lp_speeds(link_info, media, + lk_ksettings); } 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); + linkmode_set_bit(ETHTOOL_LINK_MODE_TP_BIT, + lk_ksettings->link_modes.supported); + linkmode_set_bit(ETHTOOL_LINK_MODE_TP_BIT, + lk_ksettings->link_modes.advertising); } else { - ethtool_link_ksettings_add_link_mode(lk_ksettings, supported, - FIBRE); - ethtool_link_ksettings_add_link_mode(lk_ksettings, advertising, - FIBRE); + linkmode_set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT, + lk_ksettings->link_modes.supported); + linkmode_set_bit(ETHTOOL_LINK_MODE_FIBRE_BIT, + lk_ksettings->link_modes.advertising); 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) + else base->port = PORT_FIBRE; } base->phy_address = link_info->phy_addr; @@ -1783,13 +2253,16 @@ return 0; } -static int bnxt_force_link_speed(struct net_device *dev, u32 ethtool_speed) +static int +bnxt_force_link_speed(struct net_device *dev, u32 ethtool_speed, u32 lanes) { struct bnxt *bp = netdev_priv(dev); struct bnxt_link_info *link_info = &bp->link_info; u16 support_pam4_spds = link_info->support_pam4_speeds; + u16 support_spds2 = link_info->support_speeds2; u16 support_spds = link_info->support_speeds; u8 sig_mode = BNXT_SIG_MODE_NRZ; + u32 lanes_needed = 1; u16 fw_speed = 0; switch (ethtool_speed) { @@ -1798,7 +2271,8 @@ fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_100MB; break; case SPEED_1000: - if (support_spds & BNXT_LINK_SPEED_MSK_1GB) + if ((support_spds & BNXT_LINK_SPEED_MSK_1GB) || + (support_spds2 & BNXT_LINK_SPEEDS2_MSK_1GB)) fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_1GB; break; case SPEED_2500: @@ -1806,41 +2280,88 @@ fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_2_5GB; break; case SPEED_10000: - if (support_spds & BNXT_LINK_SPEED_MSK_10GB) + if ((support_spds & BNXT_LINK_SPEED_MSK_10GB) || + (support_spds2 & BNXT_LINK_SPEEDS2_MSK_10GB)) fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_10GB; break; case SPEED_20000: - if (support_spds & BNXT_LINK_SPEED_MSK_20GB) + if (support_spds & BNXT_LINK_SPEED_MSK_20GB) { fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_20GB; + lanes_needed = 2; + } break; case SPEED_25000: - if (support_spds & BNXT_LINK_SPEED_MSK_25GB) + if ((support_spds & BNXT_LINK_SPEED_MSK_25GB) || + (support_spds2 & BNXT_LINK_SPEEDS2_MSK_25GB)) fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_25GB; break; case SPEED_40000: - if (support_spds & BNXT_LINK_SPEED_MSK_40GB) + if ((support_spds & BNXT_LINK_SPEED_MSK_40GB) || + (support_spds2 & BNXT_LINK_SPEEDS2_MSK_40GB)) { fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_40GB; + lanes_needed = 4; + } break; case SPEED_50000: - if (support_spds & BNXT_LINK_SPEED_MSK_50GB) { + if (((support_spds & BNXT_LINK_SPEED_MSK_50GB) || + (support_spds2 & BNXT_LINK_SPEEDS2_MSK_50GB)) && + lanes != 1) { fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_50GB; + lanes_needed = 2; } else if (support_pam4_spds & BNXT_LINK_PAM4_SPEED_MSK_50GB) { fw_speed = PORT_PHY_CFG_REQ_FORCE_PAM4_LINK_SPEED_50GB; sig_mode = BNXT_SIG_MODE_PAM4; + } else if (support_spds2 & BNXT_LINK_SPEEDS2_MSK_50GB_PAM4) { + fw_speed = BNXT_LINK_SPEED_50GB_PAM4; + sig_mode = BNXT_SIG_MODE_PAM4; } break; case SPEED_100000: - if (support_spds & BNXT_LINK_SPEED_MSK_100GB) { + if (((support_spds & BNXT_LINK_SPEED_MSK_100GB) || + (support_spds2 & BNXT_LINK_SPEEDS2_MSK_100GB)) && + lanes != 2 && lanes != 1) { fw_speed = PORT_PHY_CFG_REQ_FORCE_LINK_SPEED_100GB; + lanes_needed = 4; } else if (support_pam4_spds & BNXT_LINK_PAM4_SPEED_MSK_100GB) { fw_speed = PORT_PHY_CFG_REQ_FORCE_PAM4_LINK_SPEED_100GB; sig_mode = BNXT_SIG_MODE_PAM4; + lanes_needed = 2; + } else if ((support_spds2 & BNXT_LINK_SPEEDS2_MSK_100GB_PAM4) && + lanes != 1) { + fw_speed = BNXT_LINK_SPEED_100GB_PAM4; + sig_mode = BNXT_SIG_MODE_PAM4; + lanes_needed = 2; + } else if (support_spds2 & BNXT_LINK_SPEEDS2_MSK_100GB_PAM4_112) { + fw_speed = BNXT_LINK_SPEED_100GB_PAM4_112; + sig_mode = BNXT_SIG_MODE_PAM4_112; } break; case SPEED_200000: if (support_pam4_spds & BNXT_LINK_PAM4_SPEED_MSK_200GB) { fw_speed = PORT_PHY_CFG_REQ_FORCE_PAM4_LINK_SPEED_200GB; sig_mode = BNXT_SIG_MODE_PAM4; + lanes_needed = 4; + } else if ((support_spds2 & BNXT_LINK_SPEEDS2_MSK_200GB_PAM4) && + lanes != 2) { + fw_speed = BNXT_LINK_SPEED_200GB_PAM4; + sig_mode = BNXT_SIG_MODE_PAM4; + lanes_needed = 4; + } else if (support_spds2 & BNXT_LINK_SPEEDS2_MSK_200GB_PAM4_112) { + fw_speed = BNXT_LINK_SPEED_200GB_PAM4_112; + sig_mode = BNXT_SIG_MODE_PAM4_112; + lanes_needed = 2; + } + break; + case SPEED_400000: + if ((support_spds2 & BNXT_LINK_SPEEDS2_MSK_400GB_PAM4) && + lanes != 4) { + fw_speed = BNXT_LINK_SPEED_400GB_PAM4; + sig_mode = BNXT_SIG_MODE_PAM4; + lanes_needed = 8; + } else if (support_spds2 & BNXT_LINK_SPEEDS2_MSK_400GB_PAM4_112) { + fw_speed = BNXT_LINK_SPEED_400GB_PAM4_112; + sig_mode = BNXT_SIG_MODE_PAM4_112; + lanes_needed = 4; } break; } @@ -1850,6 +2371,11 @@ return -EINVAL; } + if (lanes && lanes != lanes_needed) { + netdev_err(dev, "unsupported number of lanes for speed\n"); + return -EINVAL; + } + if (link_info->req_link_speed == fw_speed && link_info->req_signal_mode == sig_mode && link_info->autoneg == 0) @@ -1894,7 +2420,7 @@ struct bnxt_link_info *link_info = &bp->link_info; const struct ethtool_link_settings *base = &lk_ksettings->base; bool set_pause = false; - u32 speed; + u32 speed, lanes = 0; int rc = 0; if (!BNXT_PHY_CFG_ABLE(bp)) @@ -1902,12 +2428,8 @@ mutex_lock(&bp->link_lock); if (base->autoneg == AUTONEG_ENABLE) { - link_info->advertising = 0; - link_info->advertising_pam4 = 0; - BNXT_ETHTOOL_TO_FW_SPDS(link_info->advertising, lk_ksettings, - advertising); - BNXT_ETHTOOL_TO_FW_PAM4_SPDS(link_info->advertising_pam4, - lk_ksettings, advertising); + bnxt_set_ethtool_speeds(link_info, + lk_ksettings->link_modes.advertising); link_info->autoneg |= BNXT_AUTONEG_SPEED; if (!link_info->advertising && !link_info->advertising_pam4) { link_info->advertising = link_info->support_auto_speeds; @@ -1935,7 +2457,8 @@ goto set_setting_exit; } speed = base->speed; - rc = bnxt_force_link_speed(dev, speed); + lanes = lk_ksettings->lanes; + rc = bnxt_force_link_speed(dev, speed, lanes); if (rc) { if (rc == -EALREADY) rc = 0; @@ -3612,7 +4135,8 @@ * reading any further. */ dma_rmb(); - if (TX_CMP_TYPE(txcmp) == CMP_TYPE_RX_L2_CMP) { + if (TX_CMP_TYPE(txcmp) == CMP_TYPE_RX_L2_CMP || + TX_CMP_TYPE(txcmp) == CMP_TYPE_RX_L2_V3_CMP) { rc = bnxt_rx_loopback(bp, cpr, raw_cons, pkt_size); raw_cons = NEXT_RAW_CMP(raw_cons); raw_cons = NEXT_RAW_CMP(raw_cons); @@ -3636,8 +4160,8 @@ int rc; cpr = &rxr->bnapi->cp_ring; - if (bp->flags & BNXT_FLAG_CHIP_P5) - cpr = cpr->cp_ring_arr[BNXT_RX_HDL]; + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) + cpr = rxr->rx_cpr; pkt_size = min(bp->dev->mtu + ETH_HLEN, bp->rx_copy_thresh); skb = netdev_alloc_skb(bp->dev, pkt_size); if (!skb) @@ -4141,6 +4665,7 @@ } const struct ethtool_ops bnxt_ethtool_ops = { + .cap_link_lanes_supported = 1, .supported_coalesce_params = ETHTOOL_COALESCE_USECS | ETHTOOL_COALESCE_MAX_FRAMES | ETHTOOL_COALESCE_USECS_IRQ | only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_hwmon.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_hwmon.c @@ -0,0 +1,241 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2023 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 "bnxt_hsi.h" +#include "bnxt.h" +#include "bnxt_hwrm.h" +#include "bnxt_hwmon.h" + +void bnxt_hwmon_notify_event(struct bnxt *bp) +{ + u32 attr; + + if (!bp->hwmon_dev) + return; + + switch (bp->thermal_threshold_type) { + case ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_WARN: + attr = hwmon_temp_max_alarm; + break; + case ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_CRITICAL: + attr = hwmon_temp_crit_alarm; + break; + case ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_FATAL: + case ASYNC_EVENT_CMPL_ERROR_REPORT_THERMAL_EVENT_DATA1_THRESHOLD_TYPE_SHUTDOWN: + attr = hwmon_temp_emergency_alarm; + break; + default: + return; + } + + hwmon_notify_event(&bp->pdev->dev, hwmon_temp, attr, 0); +} + +static int bnxt_hwrm_temp_query(struct bnxt *bp, u8 *temp) +{ + struct hwrm_temp_monitor_query_output *resp; + struct hwrm_temp_monitor_query_input *req; + int rc; + + rc = hwrm_req_init(bp, req, HWRM_TEMP_MONITOR_QUERY); + if (rc) + return rc; + resp = hwrm_req_hold(bp, req); + rc = hwrm_req_send_silent(bp, req); + if (rc) + goto drop_req; + + if (temp) { + *temp = resp->temp; + } else if (resp->flags & + TEMP_MONITOR_QUERY_RESP_FLAGS_THRESHOLD_VALUES_AVAILABLE) { + bp->fw_cap |= BNXT_FW_CAP_THRESHOLD_TEMP_SUPPORTED; + bp->warn_thresh_temp = resp->warn_threshold; + bp->crit_thresh_temp = resp->critical_threshold; + bp->fatal_thresh_temp = resp->fatal_threshold; + bp->shutdown_thresh_temp = resp->shutdown_threshold; + } +drop_req: + hwrm_req_drop(bp, req); + return rc; +} + +static umode_t bnxt_hwmon_is_visible(const void *_data, enum hwmon_sensor_types type, + u32 attr, int channel) +{ + const struct bnxt *bp = _data; + + if (type != hwmon_temp) + return 0; + + switch (attr) { + case hwmon_temp_input: + return 0444; + case hwmon_temp_max: + case hwmon_temp_crit: + case hwmon_temp_emergency: + case hwmon_temp_max_alarm: + case hwmon_temp_crit_alarm: + case hwmon_temp_emergency_alarm: + if (!(bp->fw_cap & BNXT_FW_CAP_THRESHOLD_TEMP_SUPPORTED)) + return 0; + return 0444; + default: + return 0; + } +} + +static int bnxt_hwmon_read(struct device *dev, enum hwmon_sensor_types type, u32 attr, + int channel, long *val) +{ + struct bnxt *bp = dev_get_drvdata(dev); + u8 temp = 0; + int rc; + + switch (attr) { + case hwmon_temp_input: + rc = bnxt_hwrm_temp_query(bp, &temp); + if (!rc) + *val = temp * 1000; + return rc; + case hwmon_temp_max: + *val = bp->warn_thresh_temp * 1000; + return 0; + case hwmon_temp_crit: + *val = bp->crit_thresh_temp * 1000; + return 0; + case hwmon_temp_emergency: + *val = bp->fatal_thresh_temp * 1000; + return 0; + case hwmon_temp_max_alarm: + rc = bnxt_hwrm_temp_query(bp, &temp); + if (!rc) + *val = temp >= bp->warn_thresh_temp; + return rc; + case hwmon_temp_crit_alarm: + rc = bnxt_hwrm_temp_query(bp, &temp); + if (!rc) + *val = temp >= bp->crit_thresh_temp; + return rc; + case hwmon_temp_emergency_alarm: + rc = bnxt_hwrm_temp_query(bp, &temp); + if (!rc) + *val = temp >= bp->fatal_thresh_temp; + return rc; + default: + return -EOPNOTSUPP; + } +} + +static const struct hwmon_channel_info *bnxt_hwmon_info[] = { + HWMON_CHANNEL_INFO(temp, HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_CRIT | + HWMON_T_EMERGENCY | HWMON_T_MAX_ALARM | + HWMON_T_CRIT_ALARM | HWMON_T_EMERGENCY_ALARM), + NULL +}; + +static const struct hwmon_ops bnxt_hwmon_ops = { + .is_visible = bnxt_hwmon_is_visible, + .read = bnxt_hwmon_read, +}; + +static const struct hwmon_chip_info bnxt_hwmon_chip_info = { + .ops = &bnxt_hwmon_ops, + .info = bnxt_hwmon_info, +}; + +static ssize_t temp1_shutdown_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct bnxt *bp = dev_get_drvdata(dev); + + return sysfs_emit(buf, "%u\n", bp->shutdown_thresh_temp * 1000); +} + +static ssize_t temp1_shutdown_alarm_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct bnxt *bp = dev_get_drvdata(dev); + u8 temp; + int rc; + + rc = bnxt_hwrm_temp_query(bp, &temp); + if (rc) + return -EIO; + + return sysfs_emit(buf, "%u\n", temp >= bp->shutdown_thresh_temp); +} + +static DEVICE_ATTR_RO(temp1_shutdown); +static DEVICE_ATTR_RO(temp1_shutdown_alarm); + +static struct attribute *bnxt_temp_extra_attrs[] = { + &dev_attr_temp1_shutdown.attr, + &dev_attr_temp1_shutdown_alarm.attr, + NULL, +}; + +static umode_t bnxt_temp_extra_attrs_visible(struct kobject *kobj, + struct attribute *attr, int index) +{ + struct device *dev = kobj_to_dev(kobj); + struct bnxt *bp = dev_get_drvdata(dev); + + /* Shutdown temperature setting in NVM is optional */ + if (!(bp->fw_cap & BNXT_FW_CAP_THRESHOLD_TEMP_SUPPORTED) || + !bp->shutdown_thresh_temp) + return 0; + + return attr->mode; +} + +static const struct attribute_group bnxt_temp_extra_group = { + .attrs = bnxt_temp_extra_attrs, + .is_visible = bnxt_temp_extra_attrs_visible, +}; +__ATTRIBUTE_GROUPS(bnxt_temp_extra); + +void bnxt_hwmon_uninit(struct bnxt *bp) +{ + if (bp->hwmon_dev) { + hwmon_device_unregister(bp->hwmon_dev); + bp->hwmon_dev = NULL; + } +} + +void bnxt_hwmon_init(struct bnxt *bp) +{ + struct pci_dev *pdev = bp->pdev; + int rc; + + /* temp1_xxx is only sensor, ensure not registered if it will fail */ + rc = bnxt_hwrm_temp_query(bp, NULL); + if (rc == -EACCES || rc == -EOPNOTSUPP) { + bnxt_hwmon_uninit(bp); + return; + } + + if (bp->hwmon_dev) + return; + + bp->hwmon_dev = hwmon_device_register_with_info(&pdev->dev, + DRV_MODULE_NAME, bp, + &bnxt_hwmon_chip_info, + bnxt_temp_extra_groups); + if (IS_ERR(bp->hwmon_dev)) { + bp->hwmon_dev = NULL; + dev_warn(&pdev->dev, "Cannot register hwmon device\n"); + } +} only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_hwmon.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_hwmon.h @@ -0,0 +1,30 @@ +/* Broadcom NetXtreme-C/E network driver. + * + * Copyright (c) 2023 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_HWMON_H +#define BNXT_HWMON_H + +#ifdef CONFIG_BNXT_HWMON +void bnxt_hwmon_notify_event(struct bnxt *bp); +void bnxt_hwmon_uninit(struct bnxt *bp); +void bnxt_hwmon_init(struct bnxt *bp); +#else +static inline void bnxt_hwmon_notify_event(struct bnxt *bp) +{ +} + +static inline void bnxt_hwmon_uninit(struct bnxt *bp) +{ +} + +static inline void bnxt_hwmon_init(struct bnxt *bp) +{ +} +#endif +#endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_hwrm.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_hwrm.c @@ -485,6 +485,8 @@ if (msg_len > BNXT_HWRM_MAX_REQ_LEN && msg_len > bp->hwrm_max_ext_req_len) { + netdev_warn(bp->dev, "oversized hwrm request, req_type 0x%x", + req_type); rc = -E2BIG; goto exit; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_hwrm.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_hwrm.h @@ -137,4 +137,18 @@ int hwrm_req_replace(struct bnxt *bp, void *req, void *new_req, u32 len); void hwrm_req_alloc_flags(struct bnxt *bp, void *req, gfp_t flags); void *hwrm_req_dma_slice(struct bnxt *bp, void *req, u32 size, dma_addr_t *dma); + +/* Older devices can only support req length of 128. + * HWRM_FUNC_CFG requests which don't need fields starting at + * num_quic_tx_key_ctxs can use this helper to avoid getting -E2BIG. + */ +static inline int +bnxt_hwrm_func_cfg_short_req_init(struct bnxt *bp, + struct hwrm_func_cfg_input **req) +{ + u32 req_len; + + req_len = min_t(u32, sizeof(**req), bp->hwrm_max_ext_req_len); + return __hwrm_req_init(bp, (void **)req, HWRM_FUNC_CFG, req_len); +} #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_ptp.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_ptp.c @@ -650,7 +650,7 @@ int rc, i; reg_arr = ptp->refclk_regs; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (BNXT_CHIP_P5(bp)) { rc = bnxt_map_regs(bp, reg_arr, 2, BNXT_PTP_GRC_WIN); if (rc) return rc; @@ -967,7 +967,7 @@ rc = err; goto out; } - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (BNXT_CHIP_P5(bp)) { spin_lock_bh(&ptp->ptp_lock); bnxt_refclk_read(bp, NULL, &ptp->current_time); WRITE_ONCE(ptp->old_time, ptp->current_time); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c @@ -95,7 +95,7 @@ /*TODO: if the driver supports VLAN filter on guest VLAN, * the spoof check should also include vlan anti-spoofing */ - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (!rc) { req->fid = cpu_to_le16(vf->fw_fid); req->flags = cpu_to_le32(func_flags); @@ -146,7 +146,7 @@ if (!(bp->fw_cap & BNXT_FW_CAP_TRUSTED_VF)) return 0; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (rc) return rc; @@ -232,7 +232,7 @@ } vf = &bp->pf.vf[vf_id]; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (rc) return rc; @@ -274,7 +274,7 @@ if (vlan_tag == vf->vlan) return 0; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (!rc) { req->fid = cpu_to_le16(vf->fw_fid); req->dflt_vlan = cpu_to_le16(vlan_tag); @@ -314,7 +314,7 @@ } if (min_tx_rate == vf->min_tx_rate && max_tx_rate == vf->max_tx_rate) return 0; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (!rc) { req->fid = cpu_to_le16(vf->fw_fid); req->enables = cpu_to_le32(FUNC_CFG_REQ_ENABLES_MAX_BW | @@ -491,7 +491,7 @@ struct bnxt_vf_info *vf; int rc; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (rc) return rc; @@ -536,7 +536,7 @@ if (rc) return rc; - if (bp->flags & BNXT_FLAG_CHIP_P5) { + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) { vf_msix = hw_resc->max_nqs - bnxt_nq_rings_in_use(bp); vf_ring_grps = 0; } else { @@ -550,7 +550,6 @@ vf_rx_rings = hw_resc->max_rx_rings - bp->rx_nr_rings; vf_tx_rings = hw_resc->max_tx_rings - bp->tx_nr_rings; vf_vnics = hw_resc->max_vnics - bp->nr_vnics; - vf_vnics = min_t(u16, vf_vnics, vf_rx_rings); vf_rss = hw_resc->max_rsscos_ctxs - bp->rsscos_nr_ctxs; req->min_rsscos_ctx = cpu_to_le16(BNXT_VF_MIN_RSS_CTX); @@ -566,17 +565,26 @@ req->min_l2_ctxs = cpu_to_le16(min); req->min_vnics = cpu_to_le16(min); req->min_stat_ctx = cpu_to_le16(min); - if (!(bp->flags & BNXT_FLAG_CHIP_P5)) + if (!(bp->flags & BNXT_FLAG_CHIP_P5_PLUS)) req->min_hw_ring_grps = cpu_to_le16(min); } else { vf_cp_rings /= num_vfs; vf_tx_rings /= num_vfs; vf_rx_rings /= num_vfs; - vf_vnics /= num_vfs; + if ((bp->fw_cap & BNXT_FW_CAP_PRE_RESV_VNICS) && + vf_vnics >= pf->max_vfs) { + /* Take into account that FW has pre-reserved 1 VNIC for + * each pf->max_vfs. + */ + vf_vnics = (vf_vnics - pf->max_vfs + num_vfs) / num_vfs; + } else { + vf_vnics /= num_vfs; + } vf_stat_ctx /= num_vfs; vf_ring_grps /= num_vfs; vf_rss /= num_vfs; + vf_vnics = min_t(u16, vf_vnics, vf_rx_rings); req->min_cmpl_rings = cpu_to_le16(vf_cp_rings); req->min_tx_rings = cpu_to_le16(vf_tx_rings); req->min_rx_rings = cpu_to_le16(vf_rx_rings); @@ -594,7 +602,7 @@ req->max_stat_ctx = cpu_to_le16(vf_stat_ctx); req->max_hw_ring_grps = cpu_to_le16(vf_ring_grps); req->max_rsscos_ctx = cpu_to_le16(vf_rss); - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) req->max_msix = cpu_to_le16(vf_msix / num_vfs); hwrm_req_hold(bp, req); @@ -622,7 +630,7 @@ le16_to_cpu(req->min_rsscos_ctx) * n; hw_resc->max_stat_ctxs -= le16_to_cpu(req->min_stat_ctx) * n; hw_resc->max_vnics -= le16_to_cpu(req->min_vnics) * n; - if (bp->flags & BNXT_FLAG_CHIP_P5) + if (bp->flags & BNXT_FLAG_CHIP_P5_PLUS) hw_resc->max_nqs -= vf_msix; rc = pf->active_vfs; @@ -645,7 +653,7 @@ u32 mtu, i; int rc; - rc = hwrm_req_init(bp, req, HWRM_FUNC_CFG); + rc = bnxt_hwrm_func_cfg_short_req_init(bp, &req); if (rc) return rc; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c @@ -2075,6 +2075,7 @@ rhashtable_destroy(&tc_info->flow_table); free_tc_info: kfree(tc_info); + bp->tc_info = NULL; return rc; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c @@ -42,17 +42,17 @@ /* fill up the first buffer */ prod = txr->tx_prod; - tx_buf = &txr->tx_buf_ring[prod]; + tx_buf = &txr->tx_buf_ring[RING_TX(bp, prod)]; tx_buf->nr_frags = num_frags; if (xdp) tx_buf->page = virt_to_head_page(xdp->data); - txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + txbd = &txr->tx_desc_ring[TX_RING(bp, prod)][TX_IDX(prod)]; flags = (len << TX_BD_LEN_SHIFT) | ((num_frags + 1) << TX_BD_FLAGS_BD_CNT_SHIFT) | bnxt_lhint_arr[len >> 9]; txbd->tx_bd_len_flags_type = cpu_to_le32(flags); - txbd->tx_bd_opaque = prod; + txbd->tx_bd_opaque = SET_TX_OPAQUE(bp, txr, prod, 1 + num_frags); txbd->tx_bd_haddr = cpu_to_le64(mapping); /* now let us fill up the frags into the next buffers */ @@ -67,10 +67,10 @@ WRITE_ONCE(txr->tx_prod, prod); /* first fill up the first buffer */ - frag_tx_buf = &txr->tx_buf_ring[prod]; + frag_tx_buf = &txr->tx_buf_ring[RING_TX(bp, prod)]; frag_tx_buf->page = skb_frag_page(frag); - txbd = &txr->tx_desc_ring[TX_RING(prod)][TX_IDX(prod)]; + txbd = &txr->tx_desc_ring[TX_RING(bp, prod)][TX_IDX(prod)]; frag_len = skb_frag_size(frag); frag_mapping = skb_frag_dma_map(&pdev->dev, frag, 0, @@ -127,20 +127,20 @@ void bnxt_tx_int_xdp(struct bnxt *bp, struct bnxt_napi *bnapi, int budget) { - struct bnxt_tx_ring_info *txr = bnapi->tx_ring; + struct bnxt_tx_ring_info *txr = bnapi->tx_ring[0]; struct bnxt_rx_ring_info *rxr = bnapi->rx_ring; + u16 tx_hw_cons = txr->tx_hw_cons; bool rx_doorbell_needed = false; - int nr_pkts = bnapi->tx_pkts; struct bnxt_sw_tx_bd *tx_buf; u16 tx_cons = txr->tx_cons; u16 last_tx_cons = tx_cons; - int i, j, frags; + int j, frags; if (!budget) return; - for (i = 0; i < nr_pkts; i++) { - tx_buf = &txr->tx_buf_ring[tx_cons]; + while (RING_TX(bp, tx_cons) != tx_hw_cons) { + tx_buf = &txr->tx_buf_ring[RING_TX(bp, tx_cons)]; if (tx_buf->action == XDP_REDIRECT) { struct pci_dev *pdev = bp->pdev; @@ -153,20 +153,24 @@ tx_buf->action = 0; tx_buf->xdpf = NULL; } else if (tx_buf->action == XDP_TX) { + tx_buf->action = 0; rx_doorbell_needed = true; last_tx_cons = tx_cons; frags = tx_buf->nr_frags; for (j = 0; j < frags; j++) { tx_cons = NEXT_TX(tx_cons); - tx_buf = &txr->tx_buf_ring[tx_cons]; + tx_buf = &txr->tx_buf_ring[RING_TX(bp, tx_cons)]; page_pool_recycle_direct(rxr->page_pool, tx_buf->page); } + } else { + bnxt_sched_reset_txr(bp, txr, tx_cons); + return; } tx_cons = NEXT_TX(tx_cons); } - bnapi->tx_pkts = 0; + bnapi->events &= ~BNXT_TX_CMP_EVENT; WRITE_ONCE(txr->tx_cons, tx_cons); if (rx_doorbell_needed) { tx_buf = &txr->tx_buf_ring[last_tx_cons]; @@ -245,7 +249,7 @@ pdev = bp->pdev; offset = bp->rx_offset; - txr = rxr->bnapi->tx_ring; + txr = rxr->bnapi->tx_ring[0]; /* BNXT_RX_PAGE_MODE(bp) when XDP enabled */ orig_data = xdp.data; @@ -271,7 +275,7 @@ case XDP_TX: rx_buf = &rxr->rx_buf_ring[cons]; mapping = rx_buf->mapping - bp->rx_dma_offset; - *event = 0; + *event &= BNXT_TX_CMP_EVENT; if (unlikely(xdp_buff_has_frags(&xdp))) { struct skb_shared_info *sinfo = xdp_get_shared_info_from_buff(&xdp); @@ -394,7 +398,7 @@ static int bnxt_xdp_set(struct bnxt *bp, struct bpf_prog *prog) { struct net_device *dev = bp->dev; - int tx_xdp = 0, rc, tc; + int tx_xdp = 0, tx_cp, rc, tc; struct bpf_prog *old; if (prog && !prog->aux->xdp_has_frags && @@ -442,7 +446,8 @@ } 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); + tx_cp = bnxt_num_tx_to_cp(bp, bp->tx_nr_rings); + bp->cp_nr_rings = max_t(int, tx_cp, bp->rx_nr_rings); bnxt_set_tpa_flags(bp); bnxt_set_ring_params(bp); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/cadence/macb_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/cadence/macb_main.c @@ -757,8 +757,6 @@ if (rx_pause) ctrl |= MACB_BIT(PAE); - macb_set_tx_clk(bp, speed); - /* Initialize rings & buffers as clearing MACB_BIT(TE) in link down * cleared the pipeline and control registers. */ @@ -778,6 +776,9 @@ spin_unlock_irqrestore(&bp->lock, flags); + if (!(bp->caps & MACB_CAPS_MACB_IS_EMAC)) + macb_set_tx_clk(bp, speed); + /* Enable Rx and Tx; Enable PTP unicast */ ctrl = macb_readl(bp, NCR); if (gem_has_ptp(bp)) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/engleder/tsnep_ethtool.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/engleder/tsnep_ethtool.c @@ -300,10 +300,8 @@ { struct tsnep_adapter *adapter = netdev_priv(netdev); - ch->max_rx = adapter->num_rx_queues; - ch->max_tx = adapter->num_tx_queues; - ch->rx_count = adapter->num_rx_queues; - ch->tx_count = adapter->num_tx_queues; + ch->max_combined = adapter->num_queues; + ch->combined_count = adapter->num_queues; } static int tsnep_ethtool_get_ts_info(struct net_device *netdev, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/engleder/tsnep_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/engleder/tsnep_main.c @@ -86,8 +86,11 @@ /* handle TX/RX queue 0 interrupt */ if ((active & adapter->queue[0].irq_mask) != 0) { - tsnep_disable_irq(adapter, adapter->queue[0].irq_mask); - napi_schedule(&adapter->queue[0].napi); + if (napi_schedule_prep(&adapter->queue[0].napi)) { + tsnep_disable_irq(adapter, adapter->queue[0].irq_mask); + /* schedule after masking to avoid races */ + __napi_schedule(&adapter->queue[0].napi); + } } return IRQ_HANDLED; @@ -98,8 +101,11 @@ struct tsnep_queue *queue = arg; /* handle TX/RX queue interrupt */ - tsnep_disable_irq(queue->adapter, queue->irq_mask); - napi_schedule(&queue->napi); + if (napi_schedule_prep(&queue->napi)) { + tsnep_disable_irq(queue->adapter, queue->irq_mask); + /* schedule after masking to avoid races */ + __napi_schedule(&queue->napi); + } return IRQ_HANDLED; } @@ -1727,6 +1733,10 @@ if (queue->tx) complete = tsnep_tx_poll(queue->tx, budget); + /* handle case where we are called by netpoll with a budget of 0 */ + if (unlikely(budget <= 0)) + return budget; + if (queue->rx) { done = queue->rx->xsk_pool ? tsnep_rx_poll_zc(queue->rx, napi, budget) : only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/freescale/enetc/enetc_pf.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/freescale/enetc/enetc_pf.c @@ -1402,7 +1402,7 @@ return; si = enetc_psi_create(pdev); - if (si) + if (!IS_ERR(si)) enetc_psi_destroy(pdev); } DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_FREESCALE, ENETC_DEV_ID_PF, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/google/gve/gve_rx_dqo.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/google/gve/gve_rx_dqo.c @@ -492,7 +492,10 @@ if (!skb) return -1; - skb_shinfo(rx->ctx.skb_tail)->frag_list = skb; + if (rx->ctx.skb_tail == rx->ctx.skb_head) + skb_shinfo(rx->ctx.skb_head)->frag_list = skb; + else + rx->ctx.skb_tail->next = skb; rx->ctx.skb_tail = skb; num_frags = 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c @@ -1411,9 +1411,9 @@ return 0; out: - mutex_destroy(&handle->dbgfs_lock); debugfs_remove_recursive(handle->hnae3_dbgfs); handle->hnae3_dbgfs = NULL; + mutex_destroy(&handle->dbgfs_lock); return ret; } @@ -1421,6 +1421,9 @@ { u32 i; + debugfs_remove_recursive(handle->hnae3_dbgfs); + handle->hnae3_dbgfs = NULL; + for (i = 0; i < ARRAY_SIZE(hns3_dbg_cmd); i++) if (handle->dbgfs_buf[i]) { kvfree(handle->dbgfs_buf[i]); @@ -1428,8 +1431,6 @@ } mutex_destroy(&handle->dbgfs_lock); - debugfs_remove_recursive(handle->hnae3_dbgfs); - handle->hnae3_dbgfs = NULL; } void hns3_dbg_register_debugfs(const char *debugfs_dir_name) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3_enet.c @@ -2102,8 +2102,12 @@ */ if (test_bit(HNS3_NIC_STATE_TX_PUSH_ENABLE, &priv->state) && num && !ring->pending_buf && num <= HNS3_MAX_PUSH_BD_NUM && doorbell) { + /* This smp_store_release() pairs with smp_load_aquire() in + * hns3_nic_reclaim_desc(). Ensure that the BD valid bit + * is updated. + */ + smp_store_release(&ring->last_to_use, ring->next_to_use); hns3_tx_push_bd(ring, num); - WRITE_ONCE(ring->last_to_use, ring->next_to_use); return; } @@ -2114,6 +2118,11 @@ return; } + /* This smp_store_release() pairs with smp_load_aquire() in + * hns3_nic_reclaim_desc(). Ensure that the BD valid bit is updated. + */ + smp_store_release(&ring->last_to_use, ring->next_to_use); + if (ring->tqp->mem_base) hns3_tx_mem_doorbell(ring); else @@ -2121,7 +2130,6 @@ ring->tqp->io_base + HNS3_RING_TX_RING_TAIL_REG); ring->pending_buf = 0; - WRITE_ONCE(ring->last_to_use, ring->next_to_use); } static void hns3_tsyn(struct net_device *netdev, struct sk_buff *skb, @@ -3307,8 +3315,6 @@ netdev->priv_flags |= IFF_UNICAST_FLT; - netdev->gso_partial_features |= NETIF_F_GSO_GRE_CSUM; - netdev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_RXCSUM | NETIF_F_SG | NETIF_F_GSO | @@ -3346,6 +3352,15 @@ NETIF_F_HW_TC); netdev->hw_enc_features |= netdev->vlan_features | NETIF_F_TSO_MANGLEID; + + /* The device_version V3 hardware can't offload the checksum for IP in + * GRE packets, but can do it for NvGRE. So default to disable the + * checksum and GSO offload for GRE. + */ + if (ae_dev->dev_version > HNAE3_DEVICE_VERSION_V2) { + netdev->features &= ~NETIF_F_GSO_GRE; + netdev->features &= ~NETIF_F_GSO_GRE_CSUM; + } } static int hns3_alloc_buffer(struct hns3_enet_ring *ring, @@ -3562,9 +3577,8 @@ static bool hns3_nic_reclaim_desc(struct hns3_enet_ring *ring, int *bytes, int *pkts, int budget) { - /* pair with ring->last_to_use update in hns3_tx_doorbell(), - * smp_store_release() is not used in hns3_tx_doorbell() because - * the doorbell operation already have the needed barrier operation. + /* This smp_load_acquire() pairs with smp_store_release() in + * hns3_tx_doorbell(). */ int ltu = smp_load_acquire(&ring->last_to_use); int ntc = ring->next_to_clean; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c @@ -773,7 +773,9 @@ hns3_get_ksettings(h, cmd); break; case HNAE3_MEDIA_TYPE_FIBER: - if (module_type == HNAE3_MODULE_TYPE_CR) + if (module_type == HNAE3_MODULE_TYPE_UNKNOWN) + cmd->base.port = PORT_OTHER; + else if (module_type == HNAE3_MODULE_TYPE_CR) cmd->base.port = PORT_DA; else cmd->base.port = PORT_FIBRE; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c @@ -259,7 +259,7 @@ int ret; if (!(hdev->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) || - hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE) + h->kinfo.tc_info.mqprio_active) return -EINVAL; ret = hclge_ets_validate(hdev, ets, &num_tc, &map_changed); @@ -275,10 +275,7 @@ } hclge_tm_schd_info_update(hdev, num_tc); - if (num_tc > 1) - hdev->flag |= HCLGE_FLAG_DCB_ENABLE; - else - hdev->flag &= ~HCLGE_FLAG_DCB_ENABLE; + h->kinfo.tc_info.dcb_ets_active = num_tc > 1; ret = hclge_ieee_ets_to_tm_info(hdev, ets); if (ret) @@ -487,7 +484,7 @@ struct hclge_vport *vport = hclge_get_vport(h); struct hclge_dev *hdev = vport->back; - if (hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE) + if (h->kinfo.tc_info.mqprio_active) return 0; return hdev->dcbx_cap; @@ -611,7 +608,8 @@ if (!test_bit(HCLGE_STATE_NIC_REGISTERED, &hdev->state)) return -EBUSY; - if (hdev->flag & HCLGE_FLAG_DCB_ENABLE) + kinfo = &vport->nic.kinfo; + if (kinfo->tc_info.dcb_ets_active) return -EINVAL; ret = hclge_mqprio_qopt_check(hdev, mqprio_qopt); @@ -625,7 +623,6 @@ if (ret) return ret; - kinfo = &vport->nic.kinfo; memcpy(&old_tc_info, &kinfo->tc_info, sizeof(old_tc_info)); hclge_sync_mqprio_qopt(&kinfo->tc_info, mqprio_qopt); kinfo->tc_info.mqprio_active = tc > 0; @@ -634,13 +631,6 @@ if (ret) goto err_out; - hdev->flag &= ~HCLGE_FLAG_DCB_ENABLE; - - if (tc > 1) - hdev->flag |= HCLGE_FLAG_MQPRIO_ENABLE; - else - hdev->flag &= ~HCLGE_FLAG_MQPRIO_ENABLE; - return hclge_notify_init_up(hdev); err_out: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/huawei/hinic/hinic_port.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/huawei/hinic/hinic_port.c @@ -456,9 +456,6 @@ u16 out_size = sizeof(vlan_filter); int err; - if (!hwdev) - return -EINVAL; - vlan_filter.func_idx = HINIC_HWIF_FUNC_IDX(hwif); vlan_filter.enable = en; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/ibm/ibmveth.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/ibm/ibmveth.c @@ -1303,24 +1303,23 @@ * the user space for finding a flow. During this process, OVS computes * checksum on the first packet when CHECKSUM_PARTIAL flag is set. * - * So, re-compute TCP pseudo header checksum when configured for - * trunk mode. + * So, re-compute TCP pseudo header checksum. */ + if (iph_proto == IPPROTO_TCP) { struct tcphdr *tcph = (struct tcphdr *)(skb->data + iphlen); + if (tcph->check == 0x0000) { /* Recompute TCP pseudo header checksum */ - if (adapter->is_active_trunk) { - tcphdrlen = skb->len - iphlen; - if (skb_proto == ETH_P_IP) - tcph->check = - ~csum_tcpudp_magic(iph->saddr, - iph->daddr, tcphdrlen, iph_proto, 0); - else if (skb_proto == ETH_P_IPV6) - tcph->check = - ~csum_ipv6_magic(&iph6->saddr, - &iph6->daddr, tcphdrlen, iph_proto, 0); - } + tcphdrlen = skb->len - iphlen; + if (skb_proto == ETH_P_IP) + tcph->check = + ~csum_tcpudp_magic(iph->saddr, + iph->daddr, tcphdrlen, iph_proto, 0); + else if (skb_proto == ETH_P_IPV6) + tcph->check = + ~csum_ipv6_magic(&iph6->saddr, + &iph6->daddr, tcphdrlen, iph_proto, 0); /* Setup SKB fields for checksum offload */ skb_partial_csum_set(skb, iphlen, offsetof(struct tcphdr, check)); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c @@ -4464,9 +4464,7 @@ goto error_pvid; i40e_vlan_stripping_enable(vsi); - i40e_vc_reset_vf(vf, true); - /* During reset the VF got a new VSI, so refresh a pointer. */ - vsi = pf->vsi[vf->lan_vsi_idx]; + /* Locked once because multiple functions below iterate list */ spin_lock_bh(&vsi->mac_filter_hash_lock); @@ -4552,6 +4550,10 @@ */ vf->port_vlan_id = le16_to_cpu(vsi->info.pvid); + i40e_vc_reset_vf(vf, true); + /* During reset the VF got a new VSI, so refresh a pointer. */ + vsi = pf->vsi[vf->lan_vsi_idx]; + ret = i40e_config_vf_promiscuous_mode(vf, vsi->id, allmulti, alluni); if (ret) { dev_err(&pf->pdev->dev, "Unable to config vf promiscuous mode\n"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/iavf/iavf.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/iavf/iavf.h @@ -521,7 +521,7 @@ int iavf_process_config(struct iavf_adapter *adapter); int iavf_parse_vf_resource_msg(struct iavf_adapter *adapter); void iavf_schedule_reset(struct iavf_adapter *adapter, u64 flags); -void iavf_schedule_request_stats(struct iavf_adapter *adapter); +void iavf_schedule_aq_request(struct iavf_adapter *adapter, u64 flags); void iavf_schedule_finish_config(struct iavf_adapter *adapter); void iavf_reset(struct iavf_adapter *adapter); void iavf_set_ethtool_ops(struct net_device *netdev); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/iavf/iavf_ethtool.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/iavf/iavf_ethtool.c @@ -362,7 +362,7 @@ unsigned int i; /* Explicitly request stats refresh */ - iavf_schedule_request_stats(adapter); + iavf_schedule_aq_request(adapter, IAVF_FLAG_AQ_REQUEST_STATS); iavf_add_ethtool_stats(&data, adapter, iavf_gstrings_stats); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/iavf/iavf_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/iavf/iavf_main.c @@ -314,15 +314,13 @@ } /** - * iavf_schedule_request_stats - Set the flags and schedule statistics request + * iavf_schedule_aq_request - Set the flags and schedule aq request * @adapter: board private structure - * - * Sets IAVF_FLAG_AQ_REQUEST_STATS flag so iavf_watchdog_task() will explicitly - * request and refresh ethtool stats + * @flags: requested aq flags **/ -void iavf_schedule_request_stats(struct iavf_adapter *adapter) +void iavf_schedule_aq_request(struct iavf_adapter *adapter, u64 flags) { - adapter->aq_required |= IAVF_FLAG_AQ_REQUEST_STATS; + adapter->aq_required |= flags; mod_delayed_work(adapter->wq, &adapter->watchdog_task, 0); } @@ -823,7 +821,7 @@ list_add_tail(&f->list, &adapter->vlan_filter_list); f->state = IAVF_VLAN_ADD; adapter->num_vlan_filters++; - adapter->aq_required |= IAVF_FLAG_AQ_ADD_VLAN_FILTER; + iavf_schedule_aq_request(adapter, IAVF_FLAG_AQ_ADD_VLAN_FILTER); } clearout: @@ -845,7 +843,7 @@ f = iavf_find_vlan(adapter, vlan); if (f) { f->state = IAVF_VLAN_REMOVE; - adapter->aq_required |= IAVF_FLAG_AQ_DEL_VLAN_FILTER; + iavf_schedule_aq_request(adapter, IAVF_FLAG_AQ_DEL_VLAN_FILTER); } spin_unlock_bh(&adapter->mac_vlan_list_lock); @@ -1421,7 +1419,8 @@ iavf_clear_fdir_filters(adapter); iavf_clear_adv_rss_conf(adapter); - if (!(adapter->flags & IAVF_FLAG_PF_COMMS_FAILED)) { + if (!(adapter->flags & IAVF_FLAG_PF_COMMS_FAILED) && + !(test_bit(__IAVF_IN_REMOVE_TASK, &adapter->crit_section))) { /* cancel any current operation */ adapter->current_op = VIRTCHNL_OP_UNKNOWN; /* Schedule operations to close down the HW. Don't wait only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/ice/ice_eswitch.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/ice/ice_eswitch.c @@ -331,6 +331,9 @@ np = netdev_priv(netdev); vsi = np->vsi; + if (!vsi || !ice_is_switchdev_running(vsi->back)) + return NETDEV_TX_BUSY; + if (ice_is_reset_in_progress(vsi->back->state) || test_bit(ICE_VF_DIS, vsi->back->state)) return NETDEV_TX_BUSY; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/ice/ice_virtchnl.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/ice/ice_virtchnl.c @@ -2615,12 +2615,14 @@ goto err; } - /* Read flexiflag registers to determine whether the - * corresponding RXDID is configured and supported or not. - * Since Legacy 16byte descriptor format is not supported, - * start from Legacy 32byte descriptor. + /* RXDIDs supported by DDP package can be read from the register + * to get the supported RXDID bitmap. But the legacy 32byte RXDID + * is not listed in DDP package, add it in the bitmap manually. + * Legacy 16byte descriptor is not supported. */ - for (i = ICE_RXDID_LEGACY_1; i < ICE_FLEX_DESC_RXDID_MAX_NUM; i++) { + rxdid->supported_rxdids |= BIT(ICE_RXDID_LEGACY_1); + + for (i = ICE_RXDID_FLEX_NIC; i < ICE_FLEX_DESC_RXDID_MAX_NUM; i++) { regval = rd32(hw, GLFLXP_RXDID_FLAGS(i, 0)); if ((regval >> GLFLXP_RXDID_FLAGS_FLEXIFLAG_4N_S) & GLFLXP_RXDID_FLAGS_FLEXIFLAG_4N_M) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/igb/igb.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igb/igb.h @@ -34,11 +34,11 @@ /* TX/RX descriptor defines */ #define IGB_DEFAULT_TXD 256 #define IGB_DEFAULT_TX_WORK 128 -#define IGB_MIN_TXD 80 +#define IGB_MIN_TXD 64 #define IGB_MAX_TXD 4096 #define IGB_DEFAULT_RXD 256 -#define IGB_MIN_RXD 80 +#define IGB_MIN_RXD 64 #define IGB_MAX_RXD 4096 #define IGB_DEFAULT_ITR 3 /* dynamic */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/igbvf/igbvf.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igbvf/igbvf.h @@ -39,11 +39,11 @@ /* Tx/Rx descriptor defines */ #define IGBVF_DEFAULT_TXD 256 #define IGBVF_MAX_TXD 4096 -#define IGBVF_MIN_TXD 80 +#define IGBVF_MIN_TXD 64 #define IGBVF_DEFAULT_RXD 256 #define IGBVF_MAX_RXD 4096 -#define IGBVF_MIN_RXD 80 +#define IGBVF_MIN_RXD 64 #define IGBVF_MIN_ITR_USECS 10 /* 100000 irq/sec */ #define IGBVF_MAX_ITR_USECS 10000 /* 100 irq/sec */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/igc/igc.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igc/igc.h @@ -368,11 +368,11 @@ /* TX/RX descriptor defines */ #define IGC_DEFAULT_TXD 256 #define IGC_DEFAULT_TX_WORK 128 -#define IGC_MIN_TXD 80 +#define IGC_MIN_TXD 64 #define IGC_MAX_TXD 4096 #define IGC_DEFAULT_RXD 256 -#define IGC_MIN_RXD 80 +#define IGC_MIN_RXD 64 #define IGC_MAX_RXD 4096 /* Supported Rx Buffer Sizes */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/igc/igc_ethtool.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/igc/igc_ethtool.c @@ -868,6 +868,18 @@ spin_unlock(&adapter->stats64_lock); } +static int igc_ethtool_get_previous_rx_coalesce(struct igc_adapter *adapter) +{ + return (adapter->rx_itr_setting <= 3) ? + adapter->rx_itr_setting : adapter->rx_itr_setting >> 2; +} + +static int igc_ethtool_get_previous_tx_coalesce(struct igc_adapter *adapter) +{ + return (adapter->tx_itr_setting <= 3) ? + adapter->tx_itr_setting : adapter->tx_itr_setting >> 2; +} + static int igc_ethtool_get_coalesce(struct net_device *netdev, struct ethtool_coalesce *ec, struct kernel_ethtool_coalesce *kernel_coal, @@ -875,17 +887,8 @@ { struct igc_adapter *adapter = netdev_priv(netdev); - if (adapter->rx_itr_setting <= 3) - ec->rx_coalesce_usecs = adapter->rx_itr_setting; - else - ec->rx_coalesce_usecs = adapter->rx_itr_setting >> 2; - - if (!(adapter->flags & IGC_FLAG_QUEUE_PAIRS)) { - if (adapter->tx_itr_setting <= 3) - ec->tx_coalesce_usecs = adapter->tx_itr_setting; - else - ec->tx_coalesce_usecs = adapter->tx_itr_setting >> 2; - } + ec->rx_coalesce_usecs = igc_ethtool_get_previous_rx_coalesce(adapter); + ec->tx_coalesce_usecs = igc_ethtool_get_previous_tx_coalesce(adapter); return 0; } @@ -910,8 +913,12 @@ ec->tx_coalesce_usecs == 2) return -EINVAL; - if ((adapter->flags & IGC_FLAG_QUEUE_PAIRS) && ec->tx_coalesce_usecs) + if ((adapter->flags & IGC_FLAG_QUEUE_PAIRS) && + ec->tx_coalesce_usecs != igc_ethtool_get_previous_tx_coalesce(adapter)) { + NL_SET_ERR_MSG_MOD(extack, + "Queue Pair mode enabled, both Rx and Tx coalescing controlled by rx-usecs"); return -EINVAL; + } /* If ITR is disabled, disable DMAC */ if (ec->rx_coalesce_usecs == 0) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c @@ -979,6 +979,7 @@ u32 tsync_tx_ctl = IXGBE_TSYNCTXCTL_ENABLED; u32 tsync_rx_ctl = IXGBE_TSYNCRXCTL_ENABLED; u32 tsync_rx_mtrl = PTP_EV_PORT << 16; + u32 aflags = adapter->flags; bool is_l2 = false; u32 regval; @@ -996,20 +997,20 @@ case HWTSTAMP_FILTER_NONE: tsync_rx_ctl = 0; tsync_rx_mtrl = 0; - adapter->flags &= ~(IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); + aflags &= ~(IXGBE_FLAG_RX_HWTSTAMP_ENABLED | + IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); break; case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: tsync_rx_ctl |= IXGBE_TSYNCRXCTL_TYPE_L4_V1; tsync_rx_mtrl |= IXGBE_RXMTRL_V1_SYNC_MSG; - adapter->flags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); + aflags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | + IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); break; case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: tsync_rx_ctl |= IXGBE_TSYNCRXCTL_TYPE_L4_V1; tsync_rx_mtrl |= IXGBE_RXMTRL_V1_DELAY_REQ_MSG; - adapter->flags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); + aflags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | + IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); break; case HWTSTAMP_FILTER_PTP_V2_EVENT: case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: @@ -1023,8 +1024,8 @@ tsync_rx_ctl |= IXGBE_TSYNCRXCTL_TYPE_EVENT_V2; is_l2 = true; config->rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT; - adapter->flags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); + aflags |= (IXGBE_FLAG_RX_HWTSTAMP_ENABLED | + IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); break; case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: case HWTSTAMP_FILTER_NTP_ALL: @@ -1035,7 +1036,7 @@ if (hw->mac.type >= ixgbe_mac_X550) { tsync_rx_ctl |= IXGBE_TSYNCRXCTL_TYPE_ALL; config->rx_filter = HWTSTAMP_FILTER_ALL; - adapter->flags |= IXGBE_FLAG_RX_HWTSTAMP_ENABLED; + aflags |= IXGBE_FLAG_RX_HWTSTAMP_ENABLED; break; } fallthrough; @@ -1046,8 +1047,6 @@ * Delay_Req messages and hardware does not support * timestamping all packets => return error */ - adapter->flags &= ~(IXGBE_FLAG_RX_HWTSTAMP_ENABLED | - IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER); config->rx_filter = HWTSTAMP_FILTER_NONE; return -ERANGE; } @@ -1079,8 +1078,8 @@ IXGBE_TSYNCRXCTL_TYPE_ALL | IXGBE_TSYNCRXCTL_TSIP_UT_EN; config->rx_filter = HWTSTAMP_FILTER_ALL; - adapter->flags |= IXGBE_FLAG_RX_HWTSTAMP_ENABLED; - adapter->flags &= ~IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER; + aflags |= IXGBE_FLAG_RX_HWTSTAMP_ENABLED; + aflags &= ~IXGBE_FLAG_RX_HWTSTAMP_IN_REGISTER; is_l2 = true; break; default: @@ -1113,6 +1112,9 @@ IXGBE_WRITE_FLUSH(hw); + /* configure adapter flags only when HW is actually configured */ + adapter->flags = aflags; + /* clear TX/RX time stamp registers, just to be sure */ ixgbe_ptp_clear_tx_timestamp(adapter); IXGBE_READ_REG(hw, IXGBE_RXSTMPH); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c @@ -28,6 +28,9 @@ struct vf_macvlans *mv_list; int num_vf_macvlans, i; + /* Initialize list of VF macvlans */ + INIT_LIST_HEAD(&adapter->vf_mvs.l); + num_vf_macvlans = hw->mac.num_rar_entries - (IXGBE_MAX_PF_MACVLANS + 1 + num_vfs); if (!num_vf_macvlans) @@ -36,8 +39,6 @@ mv_list = kcalloc(num_vf_macvlans, sizeof(struct vf_macvlans), GFP_KERNEL); if (mv_list) { - /* Initialize list of VF macvlans */ - INIT_LIST_HEAD(&adapter->vf_mvs.l); for (i = 0; i < num_vf_macvlans; i++) { mv_list[i].vf = -1; mv_list[i].free = true; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c @@ -5586,6 +5586,11 @@ break; case ETHTOOL_GRXCLSRLALL: for (i = 0; i < MVPP2_N_RFS_ENTRIES_PER_FLOW; i++) { + if (loc == info->rule_cnt) { + ret = -EMSGSIZE; + break; + } + if (port->rfs_rules[i]) rules[loc++] = i; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeon_ep/octep_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeon_ep/octep_main.c @@ -734,13 +734,13 @@ dma_map_sg_err: if (si > 0) { dma_unmap_single(iq->dev, sglist[0].dma_ptr[0], - sglist[0].len[0], DMA_TO_DEVICE); - sglist[0].len[0] = 0; + sglist[0].len[3], DMA_TO_DEVICE); + sglist[0].len[3] = 0; } while (si > 1) { dma_unmap_page(iq->dev, sglist[si >> 2].dma_ptr[si & 3], - sglist[si >> 2].len[si & 3], DMA_TO_DEVICE); - sglist[si >> 2].len[si & 3] = 0; + sglist[si >> 2].len[3 - (si & 3)], DMA_TO_DEVICE); + sglist[si >> 2].len[3 - (si & 3)] = 0; si--; } tx_buffer->gather = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeon_ep/octep_tx.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeon_ep/octep_tx.c @@ -69,12 +69,12 @@ compl_sg++; dma_unmap_single(iq->dev, tx_buffer->sglist[0].dma_ptr[0], - tx_buffer->sglist[0].len[0], DMA_TO_DEVICE); + tx_buffer->sglist[0].len[3], DMA_TO_DEVICE); i = 1; /* entry 0 is main skb, unmapped above */ while (frags--) { dma_unmap_page(iq->dev, tx_buffer->sglist[i >> 2].dma_ptr[i & 3], - tx_buffer->sglist[i >> 2].len[i & 3], DMA_TO_DEVICE); + tx_buffer->sglist[i >> 2].len[3 - (i & 3)], DMA_TO_DEVICE); i++; } @@ -131,13 +131,13 @@ dma_unmap_single(iq->dev, tx_buffer->sglist[0].dma_ptr[0], - tx_buffer->sglist[0].len[0], + tx_buffer->sglist[0].len[3], DMA_TO_DEVICE); i = 1; /* entry 0 is main skb, unmapped above */ while (frags--) { dma_unmap_page(iq->dev, tx_buffer->sglist[i >> 2].dma_ptr[i & 3], - tx_buffer->sglist[i >> 2].len[i & 3], DMA_TO_DEVICE); + tx_buffer->sglist[i >> 2].len[3 - (i & 3)], DMA_TO_DEVICE); i++; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeon_ep/octep_tx.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeon_ep/octep_tx.h @@ -17,7 +17,21 @@ #define TX_BUFTYPE_NET_SG 2 #define NUM_TX_BUFTYPES 3 -/* Hardware format for Scatter/Gather list */ +/* Hardware format for Scatter/Gather list + * + * 63 48|47 32|31 16|15 0 + * ----------------------------------------- + * | Len 0 | Len 1 | Len 2 | Len 3 | + * ----------------------------------------- + * | Ptr 0 | + * ----------------------------------------- + * | Ptr 1 | + * ----------------------------------------- + * | Ptr 2 | + * ----------------------------------------- + * | Ptr 3 | + * ----------------------------------------- + */ struct octep_tx_sglist_desc { u16 len[4]; dma_addr_t dma_ptr[4]; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c @@ -846,6 +846,21 @@ return 0; } +static void nix_get_aq_req_smq(struct rvu *rvu, struct nix_aq_enq_req *req, + u16 *smq, u16 *smq_mask) +{ + struct nix_cn10k_aq_enq_req *aq_req; + + if (!is_rvu_otx2(rvu)) { + aq_req = (struct nix_cn10k_aq_enq_req *)req; + *smq = aq_req->sq.smq; + *smq_mask = aq_req->sq_mask.smq; + } else { + *smq = req->sq.smq; + *smq_mask = req->sq_mask.smq; + } +} + static int rvu_nix_blk_aq_enq_inst(struct rvu *rvu, struct nix_hw *nix_hw, struct nix_aq_enq_req *req, struct nix_aq_enq_rsp *rsp) @@ -857,6 +872,7 @@ struct rvu_block *block; struct admin_queue *aq; struct rvu_pfvf *pfvf; + u16 smq, smq_mask; void *ctx, *mask; bool ena; u64 cfg; @@ -928,13 +944,14 @@ if (rc) return rc; + nix_get_aq_req_smq(rvu, req, &smq, &smq_mask); /* Check if SQ pointed SMQ belongs to this PF/VF or not */ if (req->ctype == NIX_AQ_CTYPE_SQ && ((req->op == NIX_AQ_INSTOP_INIT && req->sq.ena) || (req->op == NIX_AQ_INSTOP_WRITE && - req->sq_mask.ena && req->sq_mask.smq && req->sq.ena))) { + req->sq_mask.ena && req->sq.ena && smq_mask))) { if (!is_valid_txschq(rvu, blkaddr, NIX_TXSCH_LVL_SMQ, - pcifunc, req->sq.smq)) + pcifunc, smq)) return NIX_AF_ERR_AQ_ENQUEUE; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/cn10k.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/cn10k.c @@ -107,12 +107,13 @@ } #define NPA_MAX_BURST 16 -void cn10k_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq) +int cn10k_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq) { struct otx2_nic *pfvf = dev; + int cnt = cq->pool_ptrs; u64 ptrs[NPA_MAX_BURST]; - int num_ptrs = 1; dma_addr_t bufptr; + int num_ptrs = 1; /* Refill pool with new buffers */ while (cq->pool_ptrs) { @@ -131,6 +132,7 @@ num_ptrs = 1; } } + return cnt - cq->pool_ptrs; } void cn10k_sqe_flush(void *dev, struct otx2_snd_queue *sq, int size, int qidx) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/cn10k.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/cn10k.h @@ -24,7 +24,7 @@ return weight; } -void cn10k_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq); +int cn10k_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq); void cn10k_sqe_flush(void *dev, struct otx2_snd_queue *sq, int size, int qidx); int cn10k_sq_aq_init(void *dev, u16 qidx, u16 sqb_aura); int cn10k_lmtst_init(struct otx2_nic *pfvf); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/cn10k_macsec.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/cn10k_macsec.c @@ -1357,10 +1357,12 @@ if (netif_running(secy->netdev)) { /* Keys cannot be changed after creation */ - err = cn10k_write_tx_sa_pn(pfvf, txsc, sa_num, - sw_tx_sa->next_pn); - if (err) - return err; + if (ctx->sa.update_pn) { + err = cn10k_write_tx_sa_pn(pfvf, txsc, sa_num, + sw_tx_sa->next_pn); + if (err) + return err; + } err = cn10k_mcs_link_tx_sa2sc(pfvf, secy, txsc, sa_num, sw_tx_sa->active); @@ -1529,6 +1531,9 @@ if (err) return err; + if (!ctx->sa.update_pn) + return 0; + err = cn10k_mcs_write_rx_sa_pn(pfvf, rxsc, sa_num, rx_sa->next_pn); if (err) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h @@ -301,6 +301,7 @@ struct refill_work { struct delayed_work pool_refill_work; struct otx2_nic *pf; + struct napi_struct *napi; }; /* PTPv2 originTimestamp structure */ @@ -373,7 +374,7 @@ int (*sq_aq_init)(void *dev, u16 qidx, u16 sqb_aura); void (*sqe_flush)(void *dev, struct otx2_snd_queue *sq, int size, int qidx); - void (*refill_pool_ptrs)(void *dev, struct otx2_cq_queue *cq); + int (*refill_pool_ptrs)(void *dev, struct otx2_cq_queue *cq); void (*aura_freeptr)(void *dev, int aura, u64 buf); }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c @@ -1942,6 +1942,10 @@ netif_tx_disable(netdev); + for (wrk = 0; wrk < pf->qset.cq_cnt; wrk++) + cancel_delayed_work_sync(&pf->refill_wrk[wrk].pool_refill_work); + devm_kfree(pf->dev, pf->refill_wrk); + otx2_free_hw_resources(pf); otx2_free_cints(pf, pf->hw.cint_cnt); otx2_disable_napi(pf); @@ -1949,9 +1953,6 @@ for (qidx = 0; qidx < netdev->num_tx_queues; qidx++) netdev_tx_reset_queue(netdev_get_tx_queue(netdev, qidx)); - for (wrk = 0; wrk < pf->qset.cq_cnt; wrk++) - cancel_delayed_work_sync(&pf->refill_wrk[wrk].pool_refill_work); - devm_kfree(pf->dev, pf->refill_wrk); kfree(qset->sq); kfree(qset->cq); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c @@ -29,7 +29,8 @@ static bool otx2_xdp_rcv_pkt_handler(struct otx2_nic *pfvf, struct bpf_prog *prog, struct nix_cqe_rx_s *cqe, - struct otx2_cq_queue *cq); + struct otx2_cq_queue *cq, + bool *need_xdp_flush); static int otx2_nix_cq_op_status(struct otx2_nic *pfvf, struct otx2_cq_queue *cq) @@ -337,7 +338,7 @@ static void otx2_rcv_pkt_handler(struct otx2_nic *pfvf, struct napi_struct *napi, struct otx2_cq_queue *cq, - struct nix_cqe_rx_s *cqe) + struct nix_cqe_rx_s *cqe, bool *need_xdp_flush) { struct nix_rx_parse_s *parse = &cqe->parse; struct nix_rx_sg_s *sg = &cqe->sg; @@ -353,7 +354,7 @@ } if (pfvf->xdp_prog) - if (otx2_xdp_rcv_pkt_handler(pfvf, pfvf->xdp_prog, cqe, cq)) + if (otx2_xdp_rcv_pkt_handler(pfvf, pfvf->xdp_prog, cqe, cq, need_xdp_flush)) return; skb = napi_get_frags(napi); @@ -388,6 +389,7 @@ struct napi_struct *napi, struct otx2_cq_queue *cq, int budget) { + bool need_xdp_flush = false; struct nix_cqe_rx_s *cqe; int processed_cqe = 0; @@ -409,13 +411,15 @@ cq->cq_head++; cq->cq_head &= (cq->cqe_cnt - 1); - otx2_rcv_pkt_handler(pfvf, napi, cq, cqe); + otx2_rcv_pkt_handler(pfvf, napi, cq, cqe, &need_xdp_flush); cqe->hdr.cqe_type = NIX_XQE_TYPE_INVALID; cqe->sg.seg_addr = 0x00; processed_cqe++; cq->pend_cqe--; } + if (need_xdp_flush) + xdp_do_flush(); /* Free CQEs to HW */ otx2_write64(pfvf, NIX_LF_CQ_OP_DOOR, @@ -424,9 +428,10 @@ return processed_cqe; } -void otx2_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq) +int otx2_refill_pool_ptrs(void *dev, struct otx2_cq_queue *cq) { struct otx2_nic *pfvf = dev; + int cnt = cq->pool_ptrs; dma_addr_t bufptr; while (cq->pool_ptrs) { @@ -435,6 +440,8 @@ otx2_aura_freeptr(pfvf, cq->cq_idx, bufptr + OTX2_HEAD_ROOM); cq->pool_ptrs--; } + + return cnt - cq->pool_ptrs; } static int otx2_tx_napi_handler(struct otx2_nic *pfvf, @@ -521,6 +528,7 @@ struct otx2_cq_queue *cq; struct otx2_qset *qset; struct otx2_nic *pfvf; + int filled_cnt = -1; cq_poll = container_of(napi, struct otx2_cq_poll, napi); pfvf = (struct otx2_nic *)cq_poll->dev; @@ -541,7 +549,7 @@ } if (rx_cq && rx_cq->pool_ptrs) - pfvf->hw_ops->refill_pool_ptrs(pfvf, rx_cq); + filled_cnt = pfvf->hw_ops->refill_pool_ptrs(pfvf, rx_cq); /* Clear the IRQ */ otx2_write64(pfvf, NIX_LF_CINTX_INT(cq_poll->cint_idx), BIT_ULL(0)); @@ -561,9 +569,25 @@ otx2_config_irq_coalescing(pfvf, i); } - /* Re-enable interrupts */ - otx2_write64(pfvf, NIX_LF_CINTX_ENA_W1S(cq_poll->cint_idx), - BIT_ULL(0)); + if (unlikely(!filled_cnt)) { + struct refill_work *work; + struct delayed_work *dwork; + + work = &pfvf->refill_wrk[cq->cq_idx]; + dwork = &work->pool_refill_work; + /* Schedule a task if no other task is running */ + if (!cq->refill_task_sched) { + work->napi = napi; + cq->refill_task_sched = true; + schedule_delayed_work(dwork, + msecs_to_jiffies(100)); + } + } else { + /* Re-enable interrupts */ + otx2_write64(pfvf, + NIX_LF_CINTX_ENA_W1S(cq_poll->cint_idx), + BIT_ULL(0)); + } } return workdone; } @@ -1334,7 +1358,8 @@ static bool otx2_xdp_rcv_pkt_handler(struct otx2_nic *pfvf, struct bpf_prog *prog, struct nix_cqe_rx_s *cqe, - struct otx2_cq_queue *cq) + struct otx2_cq_queue *cq, + bool *need_xdp_flush) { unsigned char *hard_start, *data; int qidx = cq->cq_idx; @@ -1371,8 +1396,10 @@ otx2_dma_unmap_page(pfvf, iova, pfvf->rbsize, DMA_FROM_DEVICE); - if (!err) + if (!err) { + *need_xdp_flush = true; return true; + } put_page(page); break; default: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mediatek/mtk_eth_soc.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mediatek/mtk_eth_soc.c @@ -2860,6 +2860,9 @@ int i; for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) { + if (cnt == cmd->rule_cnt) + return -EMSGSIZE; + if (mac->hwlro_ip[i]) { rule_locs[cnt] = i; cnt++; @@ -3033,8 +3036,8 @@ eth->rx_events++; if (likely(napi_schedule_prep(ð->rx_napi))) { - __napi_schedule(ð->rx_napi); mtk_rx_irq_disable(eth, eth->soc->txrx.rx_irq_done_mask); + __napi_schedule(ð->rx_napi); } return IRQ_HANDLED; @@ -3046,8 +3049,8 @@ eth->tx_events++; if (likely(napi_schedule_prep(ð->tx_napi))) { - __napi_schedule(ð->tx_napi); mtk_tx_irq_disable(eth, MTK_TX_DONE_INT); + __napi_schedule(ð->tx_napi); } return IRQ_HANDLED; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/ct.c @@ -17,8 +17,10 @@ if (err) return err; - if (mlx5e_is_eswitch_flow(parse_state->flow)) + if (mlx5e_is_eswitch_flow(parse_state->flow)) { attr->esw_attr->split_count = attr->esw_attr->out_count; + parse_state->if_count = 0; + } attr->flags |= MLX5_ATTR_FLAG_CT; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/mirred.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/mirred.c @@ -294,6 +294,7 @@ if (err) return err; + parse_state->if_count = 0; esw_attr->out_count++; return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/pedit.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/pedit.c @@ -98,8 +98,10 @@ attr->action |= MLX5_FLOW_CONTEXT_ACTION_MOD_HDR; - if (ns_type == MLX5_FLOW_NAMESPACE_FDB) + if (ns_type == MLX5_FLOW_NAMESPACE_FDB) { esw_attr->split_count = esw_attr->out_count; + parse_state->if_count = 0; + } return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/redirect_ingress.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/redirect_ingress.c @@ -66,6 +66,7 @@ if (err) return err; + parse_state->if_count = 0; esw_attr->out_count++; return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/vlan.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/vlan.c @@ -166,6 +166,7 @@ return err; esw_attr->split_count = esw_attr->out_count; + parse_state->if_count = 0; return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/vlan_mangle.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en/tc/act/vlan_mangle.c @@ -65,8 +65,10 @@ if (err) return err; - if (ns_type == MLX5_FLOW_NAMESPACE_FDB) + if (ns_type == MLX5_FLOW_NAMESPACE_FDB) { attr->esw_attr->split_count = attr->esw_attr->out_count; + parse_state->if_count = 0; + } return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_accel/macsec.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en_accel/macsec.c @@ -612,7 +612,7 @@ goto out; } - if (tx_sa->next_pn != ctx_tx_sa->next_pn_halves.lower) { + if (ctx->sa.update_pn) { netdev_err(netdev, "MACsec offload: update TX sa %d PN isn't supported\n", assoc_num); err = -EINVAL; @@ -1017,7 +1017,7 @@ goto out; } - if (rx_sa->next_pn != ctx_rx_sa->next_pn_halves.lower) { + if (ctx->sa.update_pn) { netdev_err(ctx->netdev, "MACsec offload update RX sa %d PN isn't supported\n", assoc_num); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en_main.c @@ -3952,13 +3952,14 @@ struct mlx5e_channels *chs = &priv->channels; struct mlx5e_params new_params; int err; + bool rx_ts_over_crc = !enable; mutex_lock(&priv->state_lock); new_params = chs->params; new_params.scatter_fcs_en = enable; err = mlx5e_safe_switch_params(priv, &new_params, mlx5e_set_rx_port_ts_wrap, - &new_params.scatter_fcs_en, true); + &rx_ts_over_crc, true); mutex_unlock(&priv->state_lock); return err; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c @@ -3939,6 +3939,7 @@ } i_split = i + 1; + parse_state->if_count = 0; list_add(&attr->list, &flow->attrs); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/esw/devlink_port.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/esw/devlink_port.c @@ -22,20 +22,17 @@ mlx5_core_is_ec_vf_vport(esw->dev, vport_num); } -static struct devlink_port *mlx5_esw_dl_port_alloc(struct mlx5_eswitch *esw, u16 vport_num) +static void mlx5_esw_offloads_pf_vf_devlink_port_attrs_set(struct mlx5_eswitch *esw, + u16 vport_num, + struct devlink_port *dl_port) { struct mlx5_core_dev *dev = esw->dev; struct devlink_port_attrs attrs = {}; struct netdev_phys_item_id ppid = {}; - struct devlink_port *dl_port; u32 controller_num = 0; bool external; u16 pfnum; - dl_port = kzalloc(sizeof(*dl_port), GFP_KERNEL); - if (!dl_port) - return NULL; - mlx5_esw_get_port_parent_id(dev, &ppid); pfnum = mlx5_get_dev_index(dev); external = mlx5_core_is_ecpf_esw_manager(dev); @@ -63,12 +60,40 @@ devlink_port_attrs_pci_vf_set(dl_port, 0, pfnum, vport_num - 1, false); } - return dl_port; } -static void mlx5_esw_dl_port_free(struct devlink_port *dl_port) +int mlx5_esw_offloads_pf_vf_devlink_port_init(struct mlx5_eswitch *esw, u16 vport_num) { - kfree(dl_port); + struct devlink_port *dl_port; + struct mlx5_vport *vport; + + if (!mlx5_esw_devlink_port_supported(esw, vport_num)) + return 0; + + vport = mlx5_eswitch_get_vport(esw, vport_num); + if (IS_ERR(vport)) + return PTR_ERR(vport); + + dl_port = kzalloc(sizeof(*dl_port), GFP_KERNEL); + if (!dl_port) + return -ENOMEM; + + mlx5_esw_offloads_pf_vf_devlink_port_attrs_set(esw, vport_num, dl_port); + + vport->dl_port = dl_port; + return 0; +} + +void mlx5_esw_offloads_pf_vf_devlink_port_cleanup(struct mlx5_eswitch *esw, u16 vport_num) +{ + struct mlx5_vport *vport; + + vport = mlx5_eswitch_get_vport(esw, vport_num); + if (IS_ERR(vport) || !vport->dl_port) + return; + + kfree(vport->dl_port); + vport->dl_port = NULL; } static const struct devlink_port_ops mlx5_esw_dl_port_ops = { @@ -89,35 +114,29 @@ struct devlink *devlink; int err; - if (!mlx5_esw_devlink_port_supported(esw, vport_num)) - return 0; - vport = mlx5_eswitch_get_vport(esw, vport_num); if (IS_ERR(vport)) return PTR_ERR(vport); - dl_port = mlx5_esw_dl_port_alloc(esw, vport_num); + dl_port = vport->dl_port; if (!dl_port) - return -ENOMEM; + return 0; devlink = priv_to_devlink(dev); dl_port_index = mlx5_esw_vport_to_devlink_port_index(dev, vport_num); err = devl_port_register_with_ops(devlink, dl_port, dl_port_index, &mlx5_esw_dl_port_ops); if (err) - goto reg_err; + return err; err = devl_rate_leaf_create(dl_port, vport, NULL); if (err) goto rate_err; - vport->dl_port = dl_port; return 0; rate_err: devl_port_unregister(dl_port); -reg_err: - mlx5_esw_dl_port_free(dl_port); return err; } @@ -125,11 +144,8 @@ { struct mlx5_vport *vport; - if (!mlx5_esw_devlink_port_supported(esw, vport_num)) - return; - vport = mlx5_eswitch_get_vport(esw, vport_num); - if (IS_ERR(vport)) + if (IS_ERR(vport) || !vport->dl_port) return; if (vport->dl_port->devlink_rate) { @@ -138,8 +154,6 @@ } devl_port_unregister(vport->dl_port); - mlx5_esw_dl_port_free(vport->dl_port); - vport->dl_port = NULL; } struct devlink_port *mlx5_esw_offloads_devlink_port(struct mlx5_eswitch *esw, u16 vport_num) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/eswitch.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.c @@ -1078,7 +1078,7 @@ if (err) return err; - err = esw_offloads_load_rep(esw, vport_num); + err = mlx5_esw_offloads_load_rep(esw, vport_num); if (err) goto err_rep; @@ -1091,10 +1091,35 @@ void mlx5_eswitch_unload_vport(struct mlx5_eswitch *esw, u16 vport_num) { - esw_offloads_unload_rep(esw, vport_num); + mlx5_esw_offloads_unload_rep(esw, vport_num); mlx5_esw_vport_disable(esw, vport_num); } +static int mlx5_eswitch_load_pf_vf_vport(struct mlx5_eswitch *esw, u16 vport_num, + enum mlx5_eswitch_vport_event enabled_events) +{ + int err; + + err = mlx5_esw_offloads_init_pf_vf_rep(esw, vport_num); + if (err) + return err; + + err = mlx5_eswitch_load_vport(esw, vport_num, enabled_events); + if (err) + goto err_load; + return 0; + +err_load: + mlx5_esw_offloads_cleanup_pf_vf_rep(esw, vport_num); + return err; +} + +static void mlx5_eswitch_unload_pf_vf_vport(struct mlx5_eswitch *esw, u16 vport_num) +{ + mlx5_eswitch_unload_vport(esw, vport_num); + mlx5_esw_offloads_cleanup_pf_vf_rep(esw, vport_num); +} + void mlx5_eswitch_unload_vf_vports(struct mlx5_eswitch *esw, u16 num_vfs) { struct mlx5_vport *vport; @@ -1103,7 +1128,7 @@ mlx5_esw_for_each_vf_vport(esw, i, vport, num_vfs) { if (!vport->enabled) continue; - mlx5_eswitch_unload_vport(esw, vport->vport); + mlx5_eswitch_unload_pf_vf_vport(esw, vport->vport); } } @@ -1116,7 +1141,7 @@ mlx5_esw_for_each_ec_vf_vport(esw, i, vport, num_ec_vfs) { if (!vport->enabled) continue; - mlx5_eswitch_unload_vport(esw, vport->vport); + mlx5_eswitch_unload_pf_vf_vport(esw, vport->vport); } } @@ -1128,7 +1153,7 @@ int err; mlx5_esw_for_each_vf_vport(esw, i, vport, num_vfs) { - err = mlx5_eswitch_load_vport(esw, vport->vport, enabled_events); + err = mlx5_eswitch_load_pf_vf_vport(esw, vport->vport, enabled_events); if (err) goto vf_err; } @@ -1148,7 +1173,7 @@ int err; mlx5_esw_for_each_ec_vf_vport(esw, i, vport, num_ec_vfs) { - err = mlx5_eswitch_load_vport(esw, vport->vport, enabled_events); + err = mlx5_eswitch_load_pf_vf_vport(esw, vport->vport, enabled_events); if (err) goto vf_err; } @@ -1187,12 +1212,19 @@ mlx5_eswitch_enable_pf_vf_vports(struct mlx5_eswitch *esw, enum mlx5_eswitch_vport_event enabled_events) { + bool pf_needed; int ret; + pf_needed = mlx5_core_is_ecpf_esw_manager(esw->dev) || + esw->mode == MLX5_ESWITCH_LEGACY; + /* Enable PF vport */ - ret = mlx5_eswitch_load_vport(esw, MLX5_VPORT_PF, enabled_events); - if (ret) - return ret; + if (pf_needed) { + ret = mlx5_eswitch_load_pf_vf_vport(esw, MLX5_VPORT_PF, + enabled_events); + if (ret) + return ret; + } /* Enable external host PF HCA */ ret = host_pf_enable_hca(esw->dev); @@ -1201,7 +1233,7 @@ /* Enable ECPF vport */ if (mlx5_ecpf_vport_exists(esw->dev)) { - ret = mlx5_eswitch_load_vport(esw, MLX5_VPORT_ECPF, enabled_events); + ret = mlx5_eswitch_load_pf_vf_vport(esw, MLX5_VPORT_ECPF, enabled_events); if (ret) goto ecpf_err; if (mlx5_core_ec_sriov_enabled(esw->dev)) { @@ -1224,11 +1256,12 @@ mlx5_eswitch_unload_ec_vf_vports(esw, esw->esw_funcs.num_ec_vfs); ec_vf_err: if (mlx5_ecpf_vport_exists(esw->dev)) - mlx5_eswitch_unload_vport(esw, MLX5_VPORT_ECPF); + mlx5_eswitch_unload_pf_vf_vport(esw, MLX5_VPORT_ECPF); ecpf_err: host_pf_disable_hca(esw->dev); pf_hca_err: - mlx5_eswitch_unload_vport(esw, MLX5_VPORT_PF); + if (pf_needed) + mlx5_eswitch_unload_pf_vf_vport(esw, MLX5_VPORT_PF); return ret; } @@ -1242,11 +1275,14 @@ if (mlx5_ecpf_vport_exists(esw->dev)) { if (mlx5_core_ec_sriov_enabled(esw->dev)) mlx5_eswitch_unload_ec_vf_vports(esw, esw->esw_funcs.num_vfs); - mlx5_eswitch_unload_vport(esw, MLX5_VPORT_ECPF); + mlx5_eswitch_unload_pf_vf_vport(esw, MLX5_VPORT_ECPF); } host_pf_disable_hca(esw->dev); - mlx5_eswitch_unload_vport(esw, MLX5_VPORT_PF); + + if (mlx5_core_is_ecpf_esw_manager(esw->dev) || + esw->mode == MLX5_ESWITCH_LEGACY) + mlx5_eswitch_unload_pf_vf_vport(esw, MLX5_VPORT_PF); } static void mlx5_eswitch_get_devlink_param(struct mlx5_eswitch *esw) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h @@ -725,8 +725,10 @@ u16 vport, struct mlx5_flow_spec *spec); -int esw_offloads_load_rep(struct mlx5_eswitch *esw, u16 vport_num); -void esw_offloads_unload_rep(struct mlx5_eswitch *esw, u16 vport_num); +int mlx5_esw_offloads_init_pf_vf_rep(struct mlx5_eswitch *esw, u16 vport_num); +void mlx5_esw_offloads_cleanup_pf_vf_rep(struct mlx5_eswitch *esw, u16 vport_num); +int mlx5_esw_offloads_load_rep(struct mlx5_eswitch *esw, u16 vport_num); +void mlx5_esw_offloads_unload_rep(struct mlx5_eswitch *esw, u16 vport_num); int mlx5_esw_offloads_rep_load(struct mlx5_eswitch *esw, u16 vport_num); void mlx5_esw_offloads_rep_unload(struct mlx5_eswitch *esw, u16 vport_num); @@ -739,6 +741,8 @@ enum mlx5_eswitch_vport_event enabled_events); void mlx5_eswitch_unload_vf_vports(struct mlx5_eswitch *esw, u16 num_vfs); +int mlx5_esw_offloads_pf_vf_devlink_port_init(struct mlx5_eswitch *esw, u16 vport_num); +void mlx5_esw_offloads_pf_vf_devlink_port_cleanup(struct mlx5_eswitch *esw, u16 vport_num); int mlx5_esw_offloads_devlink_port_register(struct mlx5_eswitch *esw, u16 vport_num); void mlx5_esw_offloads_devlink_port_unregister(struct mlx5_eswitch *esw, u16 vport_num); struct devlink_port *mlx5_esw_offloads_devlink_port(struct mlx5_eswitch *esw, u16 vport_num); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c @@ -2424,7 +2424,23 @@ __esw_offloads_unload_rep(esw, rep, rep_type); } -int esw_offloads_load_rep(struct mlx5_eswitch *esw, u16 vport_num) +int mlx5_esw_offloads_init_pf_vf_rep(struct mlx5_eswitch *esw, u16 vport_num) +{ + if (esw->mode != MLX5_ESWITCH_OFFLOADS) + return 0; + + return mlx5_esw_offloads_pf_vf_devlink_port_init(esw, vport_num); +} + +void mlx5_esw_offloads_cleanup_pf_vf_rep(struct mlx5_eswitch *esw, u16 vport_num) +{ + if (esw->mode != MLX5_ESWITCH_OFFLOADS) + return; + + mlx5_esw_offloads_pf_vf_devlink_port_cleanup(esw, vport_num); +} + +int mlx5_esw_offloads_load_rep(struct mlx5_eswitch *esw, u16 vport_num) { int err; @@ -2448,7 +2464,7 @@ return err; } -void esw_offloads_unload_rep(struct mlx5_eswitch *esw, u16 vport_num) +void mlx5_esw_offloads_unload_rep(struct mlx5_eswitch *esw, u16 vport_num) { if (esw->mode != MLX5_ESWITCH_OFFLOADS) return; @@ -3076,26 +3092,47 @@ esw_acl_ingress_ofld_cleanup(esw, vport); } -static int esw_create_uplink_offloads_acl_tables(struct mlx5_eswitch *esw) +static int esw_create_offloads_acl_tables(struct mlx5_eswitch *esw) { - struct mlx5_vport *vport; + struct mlx5_vport *uplink, *manager; + int ret; - vport = mlx5_eswitch_get_vport(esw, MLX5_VPORT_UPLINK); - if (IS_ERR(vport)) - return PTR_ERR(vport); + uplink = mlx5_eswitch_get_vport(esw, MLX5_VPORT_UPLINK); + if (IS_ERR(uplink)) + return PTR_ERR(uplink); + + ret = esw_vport_create_offloads_acl_tables(esw, uplink); + if (ret) + return ret; + + manager = mlx5_eswitch_get_vport(esw, esw->manager_vport); + if (IS_ERR(manager)) { + ret = PTR_ERR(manager); + goto err_manager; + } + + ret = esw_vport_create_offloads_acl_tables(esw, manager); + if (ret) + goto err_manager; - return esw_vport_create_offloads_acl_tables(esw, vport); + return 0; + +err_manager: + esw_vport_destroy_offloads_acl_tables(esw, uplink); + return ret; } -static void esw_destroy_uplink_offloads_acl_tables(struct mlx5_eswitch *esw) +static void esw_destroy_offloads_acl_tables(struct mlx5_eswitch *esw) { struct mlx5_vport *vport; - vport = mlx5_eswitch_get_vport(esw, MLX5_VPORT_UPLINK); - if (IS_ERR(vport)) - return; + vport = mlx5_eswitch_get_vport(esw, esw->manager_vport); + if (!IS_ERR(vport)) + esw_vport_destroy_offloads_acl_tables(esw, vport); - esw_vport_destroy_offloads_acl_tables(esw, vport); + vport = mlx5_eswitch_get_vport(esw, MLX5_VPORT_UPLINK); + if (!IS_ERR(vport)) + esw_vport_destroy_offloads_acl_tables(esw, vport); } int mlx5_eswitch_reload_reps(struct mlx5_eswitch *esw) @@ -3140,7 +3177,7 @@ } esw->fdb_table.offloads.indir = indir; - err = esw_create_uplink_offloads_acl_tables(esw); + err = esw_create_offloads_acl_tables(esw); if (err) goto create_acl_err; @@ -3181,7 +3218,7 @@ create_restore_err: esw_destroy_offloads_table(esw); create_offloads_err: - esw_destroy_uplink_offloads_acl_tables(esw); + esw_destroy_offloads_acl_tables(esw); create_acl_err: mlx5_esw_indir_table_destroy(esw->fdb_table.offloads.indir); create_indir_err: @@ -3197,7 +3234,7 @@ esw_destroy_offloads_fdb_tables(esw); esw_destroy_restore_table(esw); esw_destroy_offloads_table(esw); - esw_destroy_uplink_offloads_acl_tables(esw); + esw_destroy_offloads_acl_tables(esw); mlx5_esw_indir_table_destroy(esw->fdb_table.offloads.indir); mutex_destroy(&esw->fdb_table.offloads.vports.lock); } @@ -3355,7 +3392,7 @@ vport->info.link_state = MLX5_VPORT_ADMIN_STATE_DOWN; /* Uplink vport rep must load first. */ - err = esw_offloads_load_rep(esw, MLX5_VPORT_UPLINK); + err = mlx5_esw_offloads_load_rep(esw, MLX5_VPORT_UPLINK); if (err) goto err_uplink; @@ -3366,7 +3403,7 @@ return 0; err_vports: - esw_offloads_unload_rep(esw, MLX5_VPORT_UPLINK); + mlx5_esw_offloads_unload_rep(esw, MLX5_VPORT_UPLINK); err_uplink: esw_offloads_steering_cleanup(esw); err_steering_init: @@ -3404,7 +3441,7 @@ void esw_offloads_disable(struct mlx5_eswitch *esw) { mlx5_eswitch_disable_pf_vf_vports(esw); - esw_offloads_unload_rep(esw, MLX5_VPORT_UPLINK); + mlx5_esw_offloads_unload_rep(esw, MLX5_VPORT_UPLINK); esw_set_passing_vport_metadata(esw, false); esw_offloads_steering_cleanup(esw); mapping_destroy(esw->offloads.reg_c0_obj_pool); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.c @@ -310,8 +310,8 @@ .fdb_clear_offload = mlxsw_sp_nve_vxlan_clear_offload, }; -static bool mlxsw_sp2_nve_vxlan_learning_set(struct mlxsw_sp *mlxsw_sp, - bool learning_en) +static int mlxsw_sp2_nve_vxlan_learning_set(struct mlxsw_sp *mlxsw_sp, + bool learning_en) { char tnpc_pl[MLXSW_REG_TNPC_LEN]; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/microchip/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/microchip/Kconfig @@ -46,6 +46,7 @@ tristate "LAN743x support" depends on PCI depends on PTP_1588_CLOCK_OPTIONAL + select PHYLIB select FIXED_PHY select CRC16 select CRC32 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/microchip/vcap/vcap_api.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/microchip/vcap/vcap_api.c @@ -1021,18 +1021,32 @@ list_for_each_entry(ckf, &ri->data.keyfields, ctrl.list) { newckf = kmemdup(ckf, sizeof(*newckf), GFP_KERNEL); if (!newckf) - return ERR_PTR(-ENOMEM); + goto err; list_add_tail(&newckf->ctrl.list, &duprule->data.keyfields); } list_for_each_entry(caf, &ri->data.actionfields, ctrl.list) { newcaf = kmemdup(caf, sizeof(*newcaf), GFP_KERNEL); if (!newcaf) - return ERR_PTR(-ENOMEM); + goto err; list_add_tail(&newcaf->ctrl.list, &duprule->data.actionfields); } return duprule; + +err: + list_for_each_entry_safe(ckf, newckf, &duprule->data.keyfields, ctrl.list) { + list_del(&ckf->ctrl.list); + kfree(ckf); + } + + list_for_each_entry_safe(caf, newcaf, &duprule->data.actionfields, ctrl.list) { + list_del(&caf->ctrl.list); + kfree(caf); + } + + kfree(duprule); + return ERR_PTR(-ENOMEM); } static void vcap_apply_width(u8 *dst, int width, int bytes) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/microchip/vcap/vcap_api_kunit.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/microchip/vcap/vcap_api_kunit.c @@ -243,10 +243,9 @@ } /* Helper function to create a rule of a specific size */ -static struct vcap_rule * -test_vcap_xn_rule_creator(struct kunit *test, int cid, enum vcap_user user, - u16 priority, - int id, int size, int expected_addr) +static void test_vcap_xn_rule_creator(struct kunit *test, int cid, + enum vcap_user user, u16 priority, + int id, int size, int expected_addr) { struct vcap_rule *rule; struct vcap_rule_internal *ri; @@ -311,7 +310,7 @@ ret = vcap_add_rule(rule); KUNIT_EXPECT_EQ(test, 0, ret); KUNIT_EXPECT_EQ(test, expected_addr, ri->addr); - return rule; + vcap_free_rule(rule); } /* Prepare testing rule deletion */ @@ -995,6 +994,16 @@ KUNIT_EXPECT_EQ(test, (u32)0x00000000, actwords[11]); } +static void vcap_free_ckf(struct vcap_rule *rule) +{ + struct vcap_client_keyfield *ckf, *next_ckf; + + list_for_each_entry_safe(ckf, next_ckf, &rule->keyfields, ctrl.list) { + list_del(&ckf->ctrl.list); + kfree(ckf); + } +} + static void vcap_api_rule_add_keyvalue_test(struct kunit *test) { struct vcap_admin admin = { @@ -1027,6 +1036,7 @@ KUNIT_EXPECT_EQ(test, VCAP_FIELD_BIT, kf->ctrl.type); KUNIT_EXPECT_EQ(test, 0x0, kf->data.u1.value); KUNIT_EXPECT_EQ(test, 0x1, kf->data.u1.mask); + vcap_free_ckf(rule); INIT_LIST_HEAD(&rule->keyfields); ret = vcap_rule_add_key_bit(rule, VCAP_KF_LOOKUP_FIRST_IS, VCAP_BIT_1); @@ -1039,6 +1049,7 @@ KUNIT_EXPECT_EQ(test, VCAP_FIELD_BIT, kf->ctrl.type); KUNIT_EXPECT_EQ(test, 0x1, kf->data.u1.value); KUNIT_EXPECT_EQ(test, 0x1, kf->data.u1.mask); + vcap_free_ckf(rule); INIT_LIST_HEAD(&rule->keyfields); ret = vcap_rule_add_key_bit(rule, VCAP_KF_LOOKUP_FIRST_IS, @@ -1052,6 +1063,7 @@ KUNIT_EXPECT_EQ(test, VCAP_FIELD_BIT, kf->ctrl.type); KUNIT_EXPECT_EQ(test, 0x0, kf->data.u1.value); KUNIT_EXPECT_EQ(test, 0x0, kf->data.u1.mask); + vcap_free_ckf(rule); INIT_LIST_HEAD(&rule->keyfields); ret = vcap_rule_add_key_u32(rule, VCAP_KF_TYPE, 0x98765432, 0xff00ffab); @@ -1064,6 +1076,7 @@ KUNIT_EXPECT_EQ(test, VCAP_FIELD_U32, kf->ctrl.type); KUNIT_EXPECT_EQ(test, 0x98765432, kf->data.u32.value); KUNIT_EXPECT_EQ(test, 0xff00ffab, kf->data.u32.mask); + vcap_free_ckf(rule); INIT_LIST_HEAD(&rule->keyfields); ret = vcap_rule_add_key_u128(rule, VCAP_KF_L3_IP6_SIP, &dip); @@ -1078,6 +1091,18 @@ KUNIT_EXPECT_EQ(test, dip.value[idx], kf->data.u128.value[idx]); for (idx = 0; idx < ARRAY_SIZE(dip.mask); ++idx) KUNIT_EXPECT_EQ(test, dip.mask[idx], kf->data.u128.mask[idx]); + vcap_free_ckf(rule); +} + +static void vcap_free_caf(struct vcap_rule *rule) +{ + struct vcap_client_actionfield *caf, *next_caf; + + list_for_each_entry_safe(caf, next_caf, + &rule->actionfields, ctrl.list) { + list_del(&caf->ctrl.list); + kfree(caf); + } } static void vcap_api_rule_add_actionvalue_test(struct kunit *test) @@ -1105,6 +1130,7 @@ KUNIT_EXPECT_EQ(test, VCAP_AF_POLICE_ENA, af->ctrl.action); KUNIT_EXPECT_EQ(test, VCAP_FIELD_BIT, af->ctrl.type); KUNIT_EXPECT_EQ(test, 0x0, af->data.u1.value); + vcap_free_caf(rule); INIT_LIST_HEAD(&rule->actionfields); ret = vcap_rule_add_action_bit(rule, VCAP_AF_POLICE_ENA, VCAP_BIT_1); @@ -1116,6 +1142,7 @@ KUNIT_EXPECT_EQ(test, VCAP_AF_POLICE_ENA, af->ctrl.action); KUNIT_EXPECT_EQ(test, VCAP_FIELD_BIT, af->ctrl.type); KUNIT_EXPECT_EQ(test, 0x1, af->data.u1.value); + vcap_free_caf(rule); INIT_LIST_HEAD(&rule->actionfields); ret = vcap_rule_add_action_bit(rule, VCAP_AF_POLICE_ENA, VCAP_BIT_ANY); @@ -1127,6 +1154,7 @@ KUNIT_EXPECT_EQ(test, VCAP_AF_POLICE_ENA, af->ctrl.action); KUNIT_EXPECT_EQ(test, VCAP_FIELD_BIT, af->ctrl.type); KUNIT_EXPECT_EQ(test, 0x0, af->data.u1.value); + vcap_free_caf(rule); INIT_LIST_HEAD(&rule->actionfields); ret = vcap_rule_add_action_u32(rule, VCAP_AF_TYPE, 0x98765432); @@ -1138,6 +1166,7 @@ KUNIT_EXPECT_EQ(test, VCAP_AF_TYPE, af->ctrl.action); KUNIT_EXPECT_EQ(test, VCAP_FIELD_U32, af->ctrl.type); KUNIT_EXPECT_EQ(test, 0x98765432, af->data.u32.value); + vcap_free_caf(rule); INIT_LIST_HEAD(&rule->actionfields); ret = vcap_rule_add_action_u32(rule, VCAP_AF_MASK_MODE, 0xaabbccdd); @@ -1149,6 +1178,7 @@ KUNIT_EXPECT_EQ(test, VCAP_AF_MASK_MODE, af->ctrl.action); KUNIT_EXPECT_EQ(test, VCAP_FIELD_U32, af->ctrl.type); KUNIT_EXPECT_EQ(test, 0xaabbccdd, af->data.u32.value); + vcap_free_caf(rule); } static void vcap_api_rule_find_keyset_basic_test(struct kunit *test) @@ -1408,6 +1438,10 @@ ret = list_empty(&is2_admin.rules); KUNIT_EXPECT_EQ(test, false, ret); KUNIT_EXPECT_EQ(test, 0, ret); + + vcap_enable_lookups(&test_vctrl, &test_netdev, 0, 0, + rule->cookie, false); + vcap_free_rule(rule); /* Check that the rule has been freed: tricky to access since this @@ -1418,6 +1452,8 @@ KUNIT_EXPECT_EQ(test, true, ret); ret = list_empty(&rule->actionfields); KUNIT_EXPECT_EQ(test, true, ret); + + vcap_del_rule(&test_vctrl, &test_netdev, id); } static void vcap_api_set_rule_counter_test(struct kunit *test) @@ -1561,6 +1597,11 @@ test_vcap_xn_rule_creator(test, 10000, VCAP_USER_QOS, 20, 400, 6, 774); test_vcap_xn_rule_creator(test, 10000, VCAP_USER_QOS, 30, 300, 3, 771); test_vcap_xn_rule_creator(test, 10000, VCAP_USER_QOS, 40, 200, 2, 768); + + vcap_del_rule(&test_vctrl, &test_netdev, 200); + vcap_del_rule(&test_vctrl, &test_netdev, 300); + vcap_del_rule(&test_vctrl, &test_netdev, 400); + vcap_del_rule(&test_vctrl, &test_netdev, 500); } static void vcap_api_rule_insert_reverse_order_test(struct kunit *test) @@ -1619,6 +1660,11 @@ ++idx; } KUNIT_EXPECT_EQ(test, 768, admin.last_used_addr); + + vcap_del_rule(&test_vctrl, &test_netdev, 500); + vcap_del_rule(&test_vctrl, &test_netdev, 400); + vcap_del_rule(&test_vctrl, &test_netdev, 300); + vcap_del_rule(&test_vctrl, &test_netdev, 200); } static void vcap_api_rule_remove_at_end_test(struct kunit *test) @@ -1819,6 +1865,9 @@ KUNIT_EXPECT_EQ(test, 786, test_init_start); KUNIT_EXPECT_EQ(test, 8, test_init_count); KUNIT_EXPECT_EQ(test, 794, admin.last_used_addr); + + vcap_del_rule(&test_vctrl, &test_netdev, 200); + vcap_del_rule(&test_vctrl, &test_netdev, 300); } static struct kunit_case vcap_api_rule_remove_test_cases[] = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/microsoft/mana/mana_en.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/microsoft/mana/mana_en.c @@ -89,63 +89,137 @@ return 0; } +static void mana_add_sge(struct mana_tx_package *tp, struct mana_skb_head *ash, + int sg_i, dma_addr_t da, int sge_len, u32 gpa_mkey) +{ + ash->dma_handle[sg_i] = da; + ash->size[sg_i] = sge_len; + + tp->wqe_req.sgl[sg_i].address = da; + tp->wqe_req.sgl[sg_i].mem_key = gpa_mkey; + tp->wqe_req.sgl[sg_i].size = sge_len; +} + static int mana_map_skb(struct sk_buff *skb, struct mana_port_context *apc, - struct mana_tx_package *tp) + struct mana_tx_package *tp, int gso_hs) { struct mana_skb_head *ash = (struct mana_skb_head *)skb->head; + int hsg = 1; /* num of SGEs of linear part */ struct gdma_dev *gd = apc->ac->gdma_dev; + int skb_hlen = skb_headlen(skb); + int sge0_len, sge1_len = 0; struct gdma_context *gc; struct device *dev; skb_frag_t *frag; dma_addr_t da; + int sg_i; int i; gc = gd->gdma_context; dev = gc->dev; - da = dma_map_single(dev, skb->data, skb_headlen(skb), DMA_TO_DEVICE); + if (gso_hs && gso_hs < skb_hlen) { + sge0_len = gso_hs; + sge1_len = skb_hlen - gso_hs; + } else { + sge0_len = skb_hlen; + } + + da = dma_map_single(dev, skb->data, sge0_len, DMA_TO_DEVICE); if (dma_mapping_error(dev, da)) return -ENOMEM; - ash->dma_handle[0] = da; - ash->size[0] = skb_headlen(skb); + mana_add_sge(tp, ash, 0, da, sge0_len, gd->gpa_mkey); - tp->wqe_req.sgl[0].address = ash->dma_handle[0]; - tp->wqe_req.sgl[0].mem_key = gd->gpa_mkey; - tp->wqe_req.sgl[0].size = ash->size[0]; + if (sge1_len) { + sg_i = 1; + da = dma_map_single(dev, skb->data + sge0_len, sge1_len, + DMA_TO_DEVICE); + if (dma_mapping_error(dev, da)) + goto frag_err; + + mana_add_sge(tp, ash, sg_i, da, sge1_len, gd->gpa_mkey); + hsg = 2; + } for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { + sg_i = hsg + i; + frag = &skb_shinfo(skb)->frags[i]; da = skb_frag_dma_map(dev, frag, 0, skb_frag_size(frag), DMA_TO_DEVICE); - if (dma_mapping_error(dev, da)) goto frag_err; - ash->dma_handle[i + 1] = da; - ash->size[i + 1] = skb_frag_size(frag); - - tp->wqe_req.sgl[i + 1].address = ash->dma_handle[i + 1]; - tp->wqe_req.sgl[i + 1].mem_key = gd->gpa_mkey; - tp->wqe_req.sgl[i + 1].size = ash->size[i + 1]; + mana_add_sge(tp, ash, sg_i, da, skb_frag_size(frag), + gd->gpa_mkey); } return 0; frag_err: - for (i = i - 1; i >= 0; i--) - dma_unmap_page(dev, ash->dma_handle[i + 1], ash->size[i + 1], + for (i = sg_i - 1; i >= hsg; i--) + dma_unmap_page(dev, ash->dma_handle[i], ash->size[i], DMA_TO_DEVICE); - dma_unmap_single(dev, ash->dma_handle[0], ash->size[0], DMA_TO_DEVICE); + for (i = hsg - 1; i >= 0; i--) + dma_unmap_single(dev, ash->dma_handle[i], ash->size[i], + DMA_TO_DEVICE); return -ENOMEM; } +/* Handle the case when GSO SKB linear length is too large. + * MANA NIC requires GSO packets to put only the packet header to SGE0. + * So, we need 2 SGEs for the skb linear part which contains more than the + * header. + * Return a positive value for the number of SGEs, or a negative value + * for an error. + */ +static int mana_fix_skb_head(struct net_device *ndev, struct sk_buff *skb, + int gso_hs) +{ + int num_sge = 1 + skb_shinfo(skb)->nr_frags; + int skb_hlen = skb_headlen(skb); + + if (gso_hs < skb_hlen) { + num_sge++; + } else if (gso_hs > skb_hlen) { + if (net_ratelimit()) + netdev_err(ndev, + "TX nonlinear head: hs:%d, skb_hlen:%d\n", + gso_hs, skb_hlen); + + return -EINVAL; + } + + return num_sge; +} + +/* Get the GSO packet's header size */ +static int mana_get_gso_hs(struct sk_buff *skb) +{ + int gso_hs; + + if (skb->encapsulation) { + gso_hs = skb_inner_tcp_all_headers(skb); + } else { + if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) { + gso_hs = skb_transport_offset(skb) + + sizeof(struct udphdr); + } else { + gso_hs = skb_tcp_all_headers(skb); + } + } + + return gso_hs; +} + netdev_tx_t mana_start_xmit(struct sk_buff *skb, struct net_device *ndev) { enum mana_tx_pkt_format pkt_fmt = MANA_SHORT_PKT_FMT; struct mana_port_context *apc = netdev_priv(ndev); + int gso_hs = 0; /* zero for non-GSO pkts */ u16 txq_idx = skb_get_queue_mapping(skb); struct gdma_dev *gd = apc->ac->gdma_dev; bool ipv4 = false, ipv6 = false; @@ -157,7 +231,6 @@ struct mana_txq *txq; struct mana_cq *cq; int err, len; - u16 ihs; if (unlikely(!apc->port_is_up)) goto tx_drop; @@ -207,19 +280,6 @@ pkg.wqe_req.client_data_unit = 0; pkg.wqe_req.num_sge = 1 + skb_shinfo(skb)->nr_frags; - WARN_ON_ONCE(pkg.wqe_req.num_sge > MAX_TX_WQE_SGL_ENTRIES); - - if (pkg.wqe_req.num_sge <= ARRAY_SIZE(pkg.sgl_array)) { - pkg.wqe_req.sgl = pkg.sgl_array; - } else { - pkg.sgl_ptr = kmalloc_array(pkg.wqe_req.num_sge, - sizeof(struct gdma_sge), - GFP_ATOMIC); - if (!pkg.sgl_ptr) - goto tx_drop_count; - - pkg.wqe_req.sgl = pkg.sgl_ptr; - } if (skb->protocol == htons(ETH_P_IP)) ipv4 = true; @@ -227,6 +287,26 @@ ipv6 = true; if (skb_is_gso(skb)) { + int num_sge; + + gso_hs = mana_get_gso_hs(skb); + + num_sge = mana_fix_skb_head(ndev, skb, gso_hs); + if (num_sge > 0) + pkg.wqe_req.num_sge = num_sge; + else + goto tx_drop_count; + + u64_stats_update_begin(&tx_stats->syncp); + if (skb->encapsulation) { + tx_stats->tso_inner_packets++; + tx_stats->tso_inner_bytes += skb->len - gso_hs; + } else { + tx_stats->tso_packets++; + tx_stats->tso_bytes += skb->len - gso_hs; + } + u64_stats_update_end(&tx_stats->syncp); + pkg.tx_oob.s_oob.is_outer_ipv4 = ipv4; pkg.tx_oob.s_oob.is_outer_ipv6 = ipv6; @@ -250,28 +330,6 @@ &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); } - - if (skb->encapsulation) { - ihs = skb_inner_tcp_all_headers(skb); - u64_stats_update_begin(&tx_stats->syncp); - tx_stats->tso_inner_packets++; - tx_stats->tso_inner_bytes += skb->len - ihs; - u64_stats_update_end(&tx_stats->syncp); - } else { - if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) { - ihs = skb_transport_offset(skb) + sizeof(struct udphdr); - } else { - ihs = skb_tcp_all_headers(skb); - if (ipv6_has_hopopt_jumbo(skb)) - ihs -= sizeof(struct hop_jumbo_hdr); - } - - u64_stats_update_begin(&tx_stats->syncp); - tx_stats->tso_packets++; - tx_stats->tso_bytes += skb->len - ihs; - u64_stats_update_end(&tx_stats->syncp); - } - } else if (skb->ip_summed == CHECKSUM_PARTIAL) { csum_type = mana_checksum_info(skb); @@ -294,11 +352,25 @@ } else { /* Can't do offload of this type of checksum */ if (skb_checksum_help(skb)) - goto free_sgl_ptr; + goto tx_drop_count; } } - if (mana_map_skb(skb, apc, &pkg)) { + WARN_ON_ONCE(pkg.wqe_req.num_sge > MAX_TX_WQE_SGL_ENTRIES); + + if (pkg.wqe_req.num_sge <= ARRAY_SIZE(pkg.sgl_array)) { + pkg.wqe_req.sgl = pkg.sgl_array; + } else { + pkg.sgl_ptr = kmalloc_array(pkg.wqe_req.num_sge, + sizeof(struct gdma_sge), + GFP_ATOMIC); + if (!pkg.sgl_ptr) + goto tx_drop_count; + + pkg.wqe_req.sgl = pkg.sgl_ptr; + } + + if (mana_map_skb(skb, apc, &pkg, gso_hs)) { u64_stats_update_begin(&tx_stats->syncp); tx_stats->mana_map_err++; u64_stats_update_end(&tx_stats->syncp); @@ -1256,11 +1328,16 @@ struct mana_skb_head *ash = (struct mana_skb_head *)skb->head; struct gdma_context *gc = apc->ac->gdma_dev->gdma_context; struct device *dev = gc->dev; - int i; + int hsg, i; - dma_unmap_single(dev, ash->dma_handle[0], ash->size[0], DMA_TO_DEVICE); + /* Number of SGEs of linear part */ + hsg = (skb_is_gso(skb) && skb_headlen(skb) > ash->size[0]) ? 2 : 1; - for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++) + for (i = 0; i < hsg; i++) + dma_unmap_single(dev, ash->dma_handle[i], ash->size[i], + DMA_TO_DEVICE); + + for (i = hsg; i < skb_shinfo(skb)->nr_frags + hsg; i++) dma_unmap_page(dev, ash->dma_handle[i], ash->size[i], DMA_TO_DEVICE); } @@ -1315,19 +1392,23 @@ case CQE_TX_VPORT_IDX_OUT_OF_RANGE: case CQE_TX_VPORT_DISABLED: case CQE_TX_VLAN_TAGGING_VIOLATION: - WARN_ONCE(1, "TX: CQE error %d: ignored.\n", - cqe_oob->cqe_hdr.cqe_type); + if (net_ratelimit()) + netdev_err(ndev, "TX: CQE error %d\n", + cqe_oob->cqe_hdr.cqe_type); + apc->eth_stats.tx_cqe_err++; break; default: - /* If the CQE type is unexpected, log an error, assert, - * and go through the error path. + /* If the CQE type is unknown, log an error, + * and still free the SKB, update tail, etc. */ - WARN_ONCE(1, "TX: Unexpected CQE type %d: HW BUG?\n", - cqe_oob->cqe_hdr.cqe_type); + if (net_ratelimit()) + netdev_err(ndev, "TX: unknown CQE type %d\n", + cqe_oob->cqe_hdr.cqe_type); + apc->eth_stats.tx_cqe_unknown_type++; - return; + break; } if (WARN_ON_ONCE(txq->gdma_txq_id != completions[i].wq_num)) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/netronome/nfp/flower/cmsg.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/netronome/nfp/flower/cmsg.c @@ -210,6 +210,7 @@ unsigned int msg_len = nfp_flower_cmsg_get_data_len(skb); struct nfp_flower_cmsg_merge_hint *msg; struct nfp_fl_payload *sub_flows[2]; + struct nfp_flower_priv *priv; int err, i, flow_cnt; msg = nfp_flower_cmsg_get_data(skb); @@ -228,14 +229,15 @@ return; } - rtnl_lock(); + priv = app->priv; + mutex_lock(&priv->nfp_fl_lock); for (i = 0; i < flow_cnt; i++) { u32 ctx = be32_to_cpu(msg->flow[i].host_ctx); sub_flows[i] = nfp_flower_get_fl_payload_from_ctx(app, ctx); if (!sub_flows[i]) { nfp_flower_cmsg_warn(app, "Invalid flow in merge hint\n"); - goto err_rtnl_unlock; + goto err_mutex_unlock; } } @@ -244,8 +246,8 @@ if (err == -ENOMEM) nfp_flower_cmsg_warn(app, "Flow merge memory fail.\n"); -err_rtnl_unlock: - rtnl_unlock(); +err_mutex_unlock: + mutex_unlock(&priv->nfp_fl_lock); } static void only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/netronome/nfp/flower/conntrack.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/netronome/nfp/flower/conntrack.c @@ -2130,8 +2130,6 @@ struct nfp_fl_ct_flow_entry *ct_entry; struct netlink_ext_ack *extack = NULL; - ASSERT_RTNL(); - extack = flow->common.extack; switch (flow->command) { case FLOW_CLS_REPLACE: @@ -2177,9 +2175,13 @@ switch (type) { case TC_SETUP_CLSFLOWER: - rtnl_lock(); + while (!mutex_trylock(&zt->priv->nfp_fl_lock)) { + if (!zt->nft) /* avoid deadlock */ + return err; + msleep(20); + } err = nfp_fl_ct_offload_nft_flow(zt, flow); - rtnl_unlock(); + mutex_unlock(&zt->priv->nfp_fl_lock); break; default: return -EOPNOTSUPP; @@ -2207,6 +2209,7 @@ struct nfp_fl_ct_flow_entry *ct_entry; struct nfp_fl_ct_zone_entry *zt; struct rhashtable *m_table; + struct nf_flowtable *nft; if (!ct_map_ent) return -ENOENT; @@ -2225,8 +2228,12 @@ if (ct_map_ent->cookie > 0) kfree(ct_map_ent); - if (!zt->pre_ct_count) { - zt->nft = NULL; + if (!zt->pre_ct_count && zt->nft) { + nft = zt->nft; + zt->nft = NULL; /* avoid deadlock */ + nf_flow_table_offload_del_cb(nft, + nfp_fl_ct_handle_nft_flow, + zt); nfp_fl_ct_clean_nft_entries(zt); } break; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/netronome/nfp/flower/main.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/netronome/nfp/flower/main.h @@ -297,6 +297,7 @@ * @predt_list: List to keep track of decap pretun flows * @neigh_table: Table to keep track of neighbor entries * @predt_lock: Lock to serialise predt/neigh table updates + * @nfp_fl_lock: Lock to protect the flow offload operation */ struct nfp_flower_priv { struct nfp_app *app; @@ -339,6 +340,7 @@ struct list_head predt_list; struct rhashtable neigh_table; spinlock_t predt_lock; /* Lock to serialise predt/neigh table updates */ + struct mutex nfp_fl_lock; /* Protect the flow operation */ }; /** only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/netronome/nfp/flower/metadata.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/netronome/nfp/flower/metadata.c @@ -528,6 +528,8 @@ if (err) goto err_free_stats_ctx_table; + mutex_init(&priv->nfp_fl_lock); + err = rhashtable_init(&priv->ct_zone_table, &nfp_zone_table_params); if (err) goto err_free_merge_table; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/netronome/nfp/flower/offload.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/netronome/nfp/flower/offload.c @@ -1009,8 +1009,6 @@ u64 parent_ctx = 0; int err; - ASSERT_RTNL(); - if (sub_flow1 == sub_flow2 || nfp_flower_is_merge_flow(sub_flow1) || nfp_flower_is_merge_flow(sub_flow2)) @@ -1727,19 +1725,30 @@ nfp_flower_repr_offload(struct nfp_app *app, struct net_device *netdev, struct flow_cls_offload *flower) { + struct nfp_flower_priv *priv = app->priv; + int ret; + if (!eth_proto_is_802_3(flower->common.protocol)) return -EOPNOTSUPP; + mutex_lock(&priv->nfp_fl_lock); switch (flower->command) { case FLOW_CLS_REPLACE: - return nfp_flower_add_offload(app, netdev, flower); + ret = nfp_flower_add_offload(app, netdev, flower); + break; case FLOW_CLS_DESTROY: - return nfp_flower_del_offload(app, netdev, flower); + ret = nfp_flower_del_offload(app, netdev, flower); + break; case FLOW_CLS_STATS: - return nfp_flower_get_stats(app, netdev, flower); + ret = nfp_flower_get_stats(app, netdev, flower); + break; default: - return -EOPNOTSUPP; + ret = -EOPNOTSUPP; + break; } + mutex_unlock(&priv->nfp_fl_lock); + + return ret; } static int nfp_flower_setup_tc_block_cb(enum tc_setup_type type, @@ -1778,6 +1787,7 @@ repr_priv = repr->app_priv; repr_priv->block_shared = f->block_shared; f->driver_block_list = &nfp_block_cb_list; + f->unlocked_driver_cb = true; switch (f->command) { case FLOW_BLOCK_BIND: @@ -1876,6 +1886,8 @@ nfp_flower_internal_port_can_offload(app, netdev))) return -EOPNOTSUPP; + f->unlocked_driver_cb = true; + switch (f->command) { case FLOW_BLOCK_BIND: cb_priv = nfp_flower_indr_block_cb_priv_lookup(app, netdev); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/netronome/nfp/flower/qos_conf.c @@ -523,25 +523,31 @@ { struct netlink_ext_ack *extack = flow->common.extack; struct nfp_flower_priv *fl_priv = app->priv; + int ret; if (!(fl_priv->flower_ext_feats & NFP_FL_FEATS_VF_RLIM)) { NL_SET_ERR_MSG_MOD(extack, "unsupported offload: loaded firmware does not support qos rate limit offload"); return -EOPNOTSUPP; } + mutex_lock(&fl_priv->nfp_fl_lock); switch (flow->command) { case TC_CLSMATCHALL_REPLACE: - return nfp_flower_install_rate_limiter(app, netdev, flow, - extack); + ret = nfp_flower_install_rate_limiter(app, netdev, flow, extack); + break; case TC_CLSMATCHALL_DESTROY: - return nfp_flower_remove_rate_limiter(app, netdev, flow, - extack); + ret = nfp_flower_remove_rate_limiter(app, netdev, flow, extack); + break; case TC_CLSMATCHALL_STATS: - return nfp_flower_stats_rate_limiter(app, netdev, flow, - extack); + ret = nfp_flower_stats_rate_limiter(app, netdev, flow, extack); + break; default: - return -EOPNOTSUPP; + ret = -EOPNOTSUPP; + break; } + mutex_unlock(&fl_priv->nfp_fl_lock); + + return ret; } /* Offload tc action, currently only for tc police */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/pensando/ionic/ionic_dev.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/pensando/ionic/ionic_dev.h @@ -187,6 +187,7 @@ struct ionic_desc_info *desc_info, struct ionic_cq_info *cq_info, void *cb_arg); +#define IONIC_MAX_BUF_LEN ((u16)-1) #define IONIC_PAGE_SIZE PAGE_SIZE #define IONIC_PAGE_SPLIT_SZ (PAGE_SIZE / 2) #define IONIC_PAGE_GFP_MASK (GFP_ATOMIC | __GFP_NOWARN |\ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/pensando/ionic/ionic_txrx.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/pensando/ionic/ionic_txrx.c @@ -207,7 +207,8 @@ return NULL; } - frag_len = min_t(u16, len, IONIC_PAGE_SIZE - buf_info->page_offset); + frag_len = min_t(u16, len, min_t(u32, IONIC_MAX_BUF_LEN, + IONIC_PAGE_SIZE - buf_info->page_offset)); len -= frag_len; dma_sync_single_for_cpu(dev, @@ -452,7 +453,8 @@ /* fill main descriptor - buf[0] */ desc->addr = cpu_to_le64(buf_info->dma_addr + buf_info->page_offset); - frag_len = min_t(u16, len, IONIC_PAGE_SIZE - buf_info->page_offset); + frag_len = min_t(u16, len, min_t(u32, IONIC_MAX_BUF_LEN, + IONIC_PAGE_SIZE - buf_info->page_offset)); desc->len = cpu_to_le16(frag_len); remain_len -= frag_len; buf_info++; @@ -471,7 +473,9 @@ } sg_elem->addr = cpu_to_le64(buf_info->dma_addr + buf_info->page_offset); - frag_len = min_t(u16, remain_len, IONIC_PAGE_SIZE - buf_info->page_offset); + frag_len = min_t(u16, remain_len, min_t(u32, IONIC_MAX_BUF_LEN, + IONIC_PAGE_SIZE - + buf_info->page_offset)); sg_elem->len = cpu_to_le16(frag_len); remain_len -= frag_len; buf_info++; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/qlogic/qed/qed_ll2.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/qlogic/qed/qed_ll2.h @@ -110,9 +110,9 @@ enum core_tx_dest tx_dest; u8 tx_stats_en; bool main_func_queue; + struct qed_ll2_cbs cbs; struct qed_ll2_rx_queue rx_queue; struct qed_ll2_tx_queue tx_queue; - struct qed_ll2_cbs cbs; }; extern const struct qed_ll2_ops qed_ll2_ops_pass; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/renesas/ravb_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/renesas/ravb_main.c @@ -2168,6 +2168,8 @@ of_phy_deregister_fixed_link(np); } + cancel_work_sync(&priv->work); + if (info->multi_irqs) { free_irq(priv->tx_irqs[RAVB_NC], ndev); free_irq(priv->rx_irqs[RAVB_NC], ndev); @@ -2892,8 +2894,6 @@ clk_disable_unprepare(priv->gptp_clk); clk_disable_unprepare(priv->refclk); - dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat, - priv->desc_bat_dma); /* Set reset mode */ ravb_write(ndev, CCC_OPC_RESET, CCC); unregister_netdev(ndev); @@ -2901,6 +2901,8 @@ netif_napi_del(&priv->napi[RAVB_NC]); netif_napi_del(&priv->napi[RAVB_BE]); ravb_mdio_release(priv); + dma_free_coherent(ndev->dev.parent, priv->desc_bat_size, priv->desc_bat, + priv->desc_bat_dma); pm_runtime_put_sync(&pdev->dev); pm_runtime_disable(&pdev->dev); reset_control_assert(priv->rstc); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/renesas/rswitch.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/renesas/rswitch.c @@ -4,6 +4,7 @@ * Copyright (C) 2022 Renesas Electronics Corporation */ +#include #include #include #include @@ -799,6 +800,7 @@ struct net_device *ndev = napi->dev; struct rswitch_private *priv; struct rswitch_device *rdev; + unsigned long flags; int quota = budget; rdev = netdev_priv(ndev); @@ -816,10 +818,12 @@ netif_wake_subqueue(ndev, 0); - napi_complete(napi); - - rswitch_enadis_data_irq(priv, rdev->tx_queue->index, true); - rswitch_enadis_data_irq(priv, rdev->rx_queue->index, true); + if (napi_complete_done(napi, budget - quota)) { + spin_lock_irqsave(&priv->lock, flags); + rswitch_enadis_data_irq(priv, rdev->tx_queue->index, true); + rswitch_enadis_data_irq(priv, rdev->rx_queue->index, true); + spin_unlock_irqrestore(&priv->lock, flags); + } out: return budget - quota; @@ -835,8 +839,10 @@ struct rswitch_device *rdev = netdev_priv(ndev); if (napi_schedule_prep(&rdev->napi)) { + spin_lock(&rdev->priv->lock); rswitch_enadis_data_irq(rdev->priv, rdev->tx_queue->index, false); rswitch_enadis_data_irq(rdev->priv, rdev->rx_queue->index, false); + spin_unlock(&rdev->priv->lock); __napi_schedule(&rdev->napi); } } @@ -1044,7 +1050,7 @@ static void rswitch_etha_enable_mii(struct rswitch_etha *etha) { rswitch_modify(etha->addr, MPIC, MPIC_PSMCS_MASK | MPIC_PSMHT_MASK, - MPIC_PSMCS(0x05) | MPIC_PSMHT(0x06)); + MPIC_PSMCS(etha->psmcs) | MPIC_PSMHT(0x06)); rswitch_modify(etha->addr, MPSM, 0, MPSM_MFF_C45); } @@ -1249,7 +1255,7 @@ phy_print_status(phydev); if (phydev->link) phy_power_on(rdev->serdes); - else + else if (rdev->serdes->power_count) phy_power_off(rdev->serdes); rdev->etha->link = phydev->link; @@ -1430,14 +1436,17 @@ static int rswitch_open(struct net_device *ndev) { struct rswitch_device *rdev = netdev_priv(ndev); + unsigned long flags; phy_start(ndev->phydev); napi_enable(&rdev->napi); netif_start_queue(ndev); + spin_lock_irqsave(&rdev->priv->lock, flags); rswitch_enadis_data_irq(rdev->priv, rdev->tx_queue->index, true); rswitch_enadis_data_irq(rdev->priv, rdev->rx_queue->index, true); + spin_unlock_irqrestore(&rdev->priv->lock, flags); if (bitmap_empty(rdev->priv->opened_ports, RSWITCH_NUM_PORTS)) iowrite32(GWCA_TS_IRQ_BIT, rdev->priv->addr + GWTSDIE); @@ -1451,6 +1460,7 @@ { struct rswitch_device *rdev = netdev_priv(ndev); struct rswitch_gwca_ts_info *ts_info, *ts_info2; + unsigned long flags; netif_tx_stop_all_queues(ndev); bitmap_clear(rdev->priv->opened_ports, rdev->port, 1); @@ -1466,8 +1476,10 @@ kfree(ts_info); } + spin_lock_irqsave(&rdev->priv->lock, flags); rswitch_enadis_data_irq(rdev->priv, rdev->tx_queue->index, false); rswitch_enadis_data_irq(rdev->priv, rdev->rx_queue->index, false); + spin_unlock_irqrestore(&rdev->priv->lock, flags); phy_stop(ndev->phydev); napi_disable(&rdev->napi); @@ -1670,6 +1682,12 @@ etha->index = index; etha->addr = priv->addr + RSWITCH_ETHA_OFFSET + index * RSWITCH_ETHA_SIZE; etha->coma_addr = priv->addr; + + /* MPIC.PSMCS = (clk [MHz] / (MDC frequency [MHz] * 2) - 1. + * Calculating PSMCS value as MDC frequency = 2.5MHz. So, multiply + * both the numerator and the denominator by 10. + */ + etha->psmcs = clk_get_rate(priv->clk) / 100000 / (25 * 2) - 1; } static int rswitch_device_alloc(struct rswitch_private *priv, int index) @@ -1869,6 +1887,11 @@ priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL); if (!priv) return -ENOMEM; + spin_lock_init(&priv->lock); + + priv->clk = devm_clk_get(&pdev->dev, NULL); + if (IS_ERR(priv->clk)) + return PTR_ERR(priv->clk); priv->ptp_priv = rcar_gen4_ptp_alloc(pdev); if (!priv->ptp_priv) @@ -1919,15 +1942,17 @@ rswitch_gwca_hw_deinit(priv); rcar_gen4_ptp_unregister(priv->ptp_priv); - for (i = 0; i < RSWITCH_NUM_PORTS; i++) { + rswitch_for_each_enabled_port(priv, i) { struct rswitch_device *rdev = priv->rdev[i]; - phy_exit(priv->rdev[i]->serdes); - rswitch_ether_port_deinit_one(rdev); unregister_netdev(rdev->ndev); - rswitch_device_free(priv, i); + rswitch_ether_port_deinit_one(rdev); + phy_exit(priv->rdev[i]->serdes); } + for (i = 0; i < RSWITCH_NUM_PORTS; i++) + rswitch_device_free(priv, i); + rswitch_gwca_ts_queue_free(priv); rswitch_gwca_linkfix_free(priv); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/renesas/rswitch.h +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/renesas/rswitch.h @@ -915,6 +915,7 @@ bool external_phy; struct mii_bus *mii; phy_interface_t phy_interface; + u32 psmcs; u8 mac_addr[MAX_ADDR_LEN]; int link; int speed; @@ -1011,6 +1012,9 @@ struct rswitch_etha etha[RSWITCH_NUM_PORTS]; struct rswitch_mfwd mfwd; + spinlock_t lock; /* lock interrupt registers' control */ + struct clk *clk; + bool gwca_halt; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c @@ -105,6 +105,7 @@ int (*parse_data)(struct stm32_dwmac *dwmac, struct device *dev); u32 syscfg_eth_mask; + bool clk_rx_enable_in_suspend; }; static int stm32_dwmac_init(struct plat_stmmacenet_data *plat_dat) @@ -122,7 +123,8 @@ if (ret) return ret; - if (!dwmac->dev->power.is_suspended) { + if (!dwmac->ops->clk_rx_enable_in_suspend || + !dwmac->dev->power.is_suspended) { ret = clk_prepare_enable(dwmac->clk_rx); if (ret) { clk_disable_unprepare(dwmac->clk_tx); @@ -514,7 +516,8 @@ .suspend = stm32mp1_suspend, .resume = stm32mp1_resume, .parse_data = stm32mp1_parse_data, - .syscfg_eth_mask = SYSCFG_MP1_ETH_MASK + .syscfg_eth_mask = SYSCFG_MP1_ETH_MASK, + .clk_rx_enable_in_suspend = true }; static const struct of_device_id stm32_dwmac_match[] = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -2703,9 +2703,7 @@ /* We still have pending packets, let's call for a new scheduling */ if (tx_q->dirty_tx != tx_q->cur_tx) - hrtimer_start(&tx_q->txtimer, - STMMAC_COAL_TIMER(priv->tx_coal_timer[queue]), - HRTIMER_MODE_REL); + stmmac_tx_timer_arm(priv, queue); __netif_tx_unlock_bh(netdev_get_tx_queue(priv->dev, queue)); @@ -2986,9 +2984,13 @@ static void stmmac_tx_timer_arm(struct stmmac_priv *priv, u32 queue) { struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; + u32 tx_coal_timer = priv->tx_coal_timer[queue]; + + if (!tx_coal_timer) + return; hrtimer_start(&tx_q->txtimer, - STMMAC_COAL_TIMER(priv->tx_coal_timer[queue]), + STMMAC_COAL_TIMER(tx_coal_timer), HRTIMER_MODE_REL); } @@ -5938,33 +5940,6 @@ return IRQ_HANDLED; } -#ifdef CONFIG_NET_POLL_CONTROLLER -/* Polling receive - used by NETCONSOLE and other diagnostic tools - * to allow network I/O with interrupts disabled. - */ -static void stmmac_poll_controller(struct net_device *dev) -{ - struct stmmac_priv *priv = netdev_priv(dev); - int i; - - /* If adapter is down, do nothing */ - if (test_bit(STMMAC_DOWN, &priv->state)) - return; - - if (priv->plat->multi_msi_en) { - for (i = 0; i < priv->plat->rx_queues_to_use; i++) - stmmac_msi_intr_rx(0, &priv->dma_conf.rx_queue[i]); - - for (i = 0; i < priv->plat->tx_queues_to_use; i++) - stmmac_msi_intr_tx(0, &priv->dma_conf.tx_queue[i]); - } else { - disable_irq(dev->irq); - stmmac_interrupt(dev->irq, dev); - enable_irq(dev->irq); - } -} -#endif - /** * stmmac_ioctl - Entry point for the Ioctl * @dev: Device pointer. @@ -6800,9 +6775,6 @@ .ndo_eth_ioctl = stmmac_ioctl, .ndo_setup_tc = stmmac_setup_tc, .ndo_select_queue = stmmac_select_queue, -#ifdef CONFIG_NET_POLL_CONTROLLER - .ndo_poll_controller = stmmac_poll_controller, -#endif .ndo_set_mac_address = stmmac_set_mac_address, .ndo_vlan_rx_add_vid = stmmac_vlan_rx_add_vid, .ndo_vlan_rx_kill_vid = stmmac_vlan_rx_kill_vid, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c @@ -901,7 +901,7 @@ struct platform_device *pdev = to_platform_device(dev); int ret; - ret = stmmac_pltfr_init(pdev, priv->plat->bsp_priv); + ret = stmmac_pltfr_init(pdev, priv->plat); if (ret) return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ethernet/ti/am65-cpsw-nuss.c +++ linux-oracle-6.5-6.5.0/drivers/net/ethernet/ti/am65-cpsw-nuss.c @@ -1749,6 +1749,7 @@ if (tx_chn->irq <= 0) { dev_err(dev, "Failed to get tx dma irq %d\n", tx_chn->irq); + ret = tx_chn->irq ?: -ENXIO; goto err; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/ieee802154/ca8210.c +++ linux-oracle-6.5-6.5.0/drivers/net/ieee802154/ca8210.c @@ -2741,7 +2741,6 @@ struct device_node *np = spi->dev.of_node; struct ca8210_priv *priv = spi_get_drvdata(spi); struct ca8210_platform_data *pdata = spi->dev.platform_data; - int ret = 0; if (!np) return -EFAULT; @@ -2758,18 +2757,8 @@ dev_crit(&spi->dev, "Failed to register external clk\n"); return PTR_ERR(priv->clk); } - ret = of_clk_add_provider(np, of_clk_src_simple_get, priv->clk); - if (ret) { - clk_unregister(priv->clk); - dev_crit( - &spi->dev, - "Failed to register external clock as clock provider\n" - ); - } else { - dev_info(&spi->dev, "External clock set as clock provider\n"); - } - return ret; + return of_clk_add_provider(np, of_clk_src_simple_get, priv->clk); } /** @@ -2781,8 +2770,8 @@ { struct ca8210_priv *priv = spi_get_drvdata(spi); - if (!priv->clk) - return + if (IS_ERR_OR_NULL(priv->clk)) + return; of_clk_del_provider(spi->dev.of_node); clk_unregister(priv->clk); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/phy/micrel.c +++ linux-oracle-6.5-6.5.0/drivers/net/phy/micrel.c @@ -1800,9 +1800,6 @@ /* Transmit waveform amplitude can be improved (1000BASE-T, 100BASE-TX, 10BASE-Te) */ {0x1c, 0x04, 0x00d0}, - /* Energy Efficient Ethernet (EEE) feature select must be manually disabled */ - {0x07, 0x3c, 0x0000}, - /* Register settings are required to meet data sheet supply current specifications */ {0x1c, 0x13, 0x6eff}, {0x1c, 0x14, 0xe6ff}, @@ -1847,6 +1844,12 @@ return err; } + /* According to KSZ9477 Errata DS80000754C (Module 4) all EEE modes + * in this switch shall be regarded as broken. + */ + if (phydev->dev_flags & MICREL_NO_EEE) + phydev->eee_broken_modes = -1; + err = genphy_restart_aneg(phydev); if (err) return err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/phy/mscc/mscc_macsec.c +++ linux-oracle-6.5-6.5.0/drivers/net/phy/mscc/mscc_macsec.c @@ -849,6 +849,9 @@ struct macsec_flow *flow; int ret; + if (ctx->sa.update_pn) + return -EINVAL; + flow = vsc8584_macsec_find_flow(ctx, MACSEC_INGR); if (IS_ERR(flow)) return PTR_ERR(flow); @@ -900,6 +903,9 @@ struct macsec_flow *flow; int ret; + if (ctx->sa.update_pn) + return -EINVAL; + flow = vsc8584_macsec_find_flow(ctx, MACSEC_EGR); if (IS_ERR(flow)) return PTR_ERR(flow); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/team/team.c +++ linux-oracle-6.5-6.5.0/drivers/net/team/team.c @@ -2127,7 +2127,12 @@ static void team_setup_by_port(struct net_device *dev, struct net_device *port_dev) { - dev->header_ops = port_dev->header_ops; + struct team *team = netdev_priv(dev); + + if (port_dev->type == ARPHRD_ETHER) + dev->header_ops = team->header_ops_cache; + else + dev->header_ops = port_dev->header_ops; dev->type = port_dev->type; dev->hard_header_len = port_dev->hard_header_len; dev->needed_headroom = port_dev->needed_headroom; @@ -2174,8 +2179,11 @@ static void team_setup(struct net_device *dev) { + struct team *team = netdev_priv(dev); + ether_setup(dev); dev->max_mtu = ETH_MAX_MTU; + team->header_ops_cache = dev->header_ops; dev->netdev_ops = &team_netdev_ops; dev->ethtool_ops = &team_ethtool_ops; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/thunderbolt/main.c +++ linux-oracle-6.5-6.5.0/drivers/net/thunderbolt/main.c @@ -1049,12 +1049,11 @@ *tucso = ~csum_tcpudp_magic(ip_hdr(skb)->saddr, ip_hdr(skb)->daddr, 0, ip_hdr(skb)->protocol, 0); - } else if (skb_is_gso_v6(skb)) { + } else if (skb_is_gso(skb) && skb_is_gso_v6(skb)) { tucso = dest + ((void *)&(tcp_hdr(skb)->check) - data); *tucso = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr, 0, IPPROTO_TCP, 0); - return false; } else if (protocol == htons(ETH_P_IPV6)) { tucso = dest + skb_checksum_start_offset(skb) + skb->csum_offset; *tucso = ~csum_ipv6_magic(&ipv6_hdr(skb)->saddr, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/usb/dm9601.c +++ linux-oracle-6.5-6.5.0/drivers/net/usb/dm9601.c @@ -222,13 +222,18 @@ struct usbnet *dev = netdev_priv(netdev); __le16 res; + int err; if (phy_id) { netdev_dbg(dev->net, "Only internal phy supported\n"); return 0; } - dm_read_shared_word(dev, 1, loc, &res); + err = dm_read_shared_word(dev, 1, loc, &res); + if (err < 0) { + netdev_err(dev->net, "MDIO read error: %d\n", err); + return err; + } netdev_dbg(dev->net, "dm9601_mdio_read() phy_id=0x%02x, loc=0x%02x, returns=0x%04x\n", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/usb/r8152.c +++ linux-oracle-6.5-6.5.0/drivers/net/usb/r8152.c @@ -2629,6 +2629,9 @@ struct r8152 *tp = container_of(napi, struct r8152, napi); int work_done; + if (!budget) + return 0; + work_done = rx_bottom(tp, budget); if (work_done < budget) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/usb/smsc75xx.c +++ linux-oracle-6.5-6.5.0/drivers/net/usb/smsc75xx.c @@ -90,7 +90,9 @@ ret = fn(dev, USB_VENDOR_REQUEST_READ_REGISTER, USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE, 0, index, &buf, 4); - if (unlikely(ret < 0)) { + if (unlikely(ret < 4)) { + ret = ret < 0 ? ret : -ENODATA; + netdev_warn(dev->net, "Failed to read reg index 0x%08x: %d\n", index, ret); return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/veth.c +++ linux-oracle-6.5-6.5.0/drivers/net/veth.c @@ -344,6 +344,7 @@ { struct veth_priv *rcv_priv, *priv = netdev_priv(dev); struct veth_rq *rq = NULL; + int ret = NETDEV_TX_OK; struct net_device *rcv; int length = skb->len; bool use_napi = false; @@ -376,6 +377,7 @@ } else { drop: atomic64_inc(&priv->dropped); + ret = NET_XMIT_DROP; } if (use_napi) @@ -383,7 +385,7 @@ rcu_read_unlock(); - return NETDEV_TX_OK; + return ret; } static u64 veth_stats_tx(struct net_device *dev, u64 *packets, u64 *bytes) @@ -1445,6 +1447,8 @@ netif_carrier_on(peer); } + veth_set_xdp_features(dev); + return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wan/fsl_ucc_hdlc.c +++ linux-oracle-6.5-6.5.0/drivers/net/wan/fsl_ucc_hdlc.c @@ -34,6 +34,8 @@ #define TDM_PPPOHT_SLIC_MAXIN #define RX_BD_ERRORS (R_CD_S | R_OV_S | R_CR_S | R_AB_S | R_NO_S | R_LG_S) +static int uhdlc_close(struct net_device *dev); + static struct ucc_tdm_info utdm_primary_info = { .uf_info = { .tsa = 0, @@ -708,6 +710,7 @@ hdlc_device *hdlc = dev_to_hdlc(dev); struct ucc_hdlc_private *priv = hdlc->priv; struct ucc_tdm *utdm = priv->utdm; + int rc = 0; if (priv->hdlc_busy != 1) { if (request_irq(priv->ut_info->uf_info.irq, @@ -731,10 +734,13 @@ napi_enable(&priv->napi); netdev_reset_queue(dev); netif_start_queue(dev); - hdlc_open(dev); + + rc = hdlc_open(dev); + if (rc) + uhdlc_close(dev); } - return 0; + return rc; } static void uhdlc_memclean(struct ucc_hdlc_private *priv) @@ -824,6 +830,8 @@ netdev_reset_queue(dev); priv->hdlc_busy = 0; + hdlc_close(dev); + return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/ath10k/usb.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath10k/usb.c @@ -1126,5 +1126,5 @@ module_usb_driver(ath10k_usb_driver); MODULE_AUTHOR("Atheros Communications, Inc."); -MODULE_DESCRIPTION("Driver support for Qualcomm Atheros 802.11ac WLAN USB devices"); +MODULE_DESCRIPTION("Driver support for Qualcomm Atheros USB 802.11ac WLAN devices"); MODULE_LICENSE("Dual BSD/GPL"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/ath12k/dp.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/dp.c @@ -1129,6 +1129,7 @@ struct ath12k_dp *dp = &ab->dp; struct sk_buff *skb; int i; + u32 pool_id, tx_spt_page; if (!dp->spt_info) return; @@ -1148,6 +1149,14 @@ dev_kfree_skb_any(skb); } + for (i = 0; i < ATH12K_NUM_RX_SPT_PAGES; i++) { + if (!dp->spt_info->rxbaddr[i]) + continue; + + kfree(dp->spt_info->rxbaddr[i]); + dp->spt_info->rxbaddr[i] = NULL; + } + spin_unlock_bh(&dp->rx_desc_lock); /* TX Descriptor cleanup */ @@ -1170,6 +1179,21 @@ spin_unlock_bh(&dp->tx_desc_lock[i]); } + for (pool_id = 0; pool_id < ATH12K_HW_MAX_QUEUES; pool_id++) { + spin_lock_bh(&dp->tx_desc_lock[pool_id]); + + for (i = 0; i < ATH12K_TX_SPT_PAGES_PER_POOL; i++) { + tx_spt_page = i + pool_id * ATH12K_TX_SPT_PAGES_PER_POOL; + if (!dp->spt_info->txbaddr[tx_spt_page]) + continue; + + kfree(dp->spt_info->txbaddr[tx_spt_page]); + dp->spt_info->txbaddr[tx_spt_page] = NULL; + } + + spin_unlock_bh(&dp->tx_desc_lock[pool_id]); + } + /* unmap SPT pages */ for (i = 0; i < dp->num_spt_pages; i++) { if (!dp->spt_info[i].vaddr) @@ -1343,6 +1367,8 @@ return -ENOMEM; } + dp->spt_info->rxbaddr[i] = &rx_descs[0]; + for (j = 0; j < ATH12K_MAX_SPT_ENTRIES; j++) { rx_descs[j].cookie = ath12k_dp_cc_cookie_gen(i, j); rx_descs[j].magic = ATH12K_DP_RX_DESC_MAGIC; @@ -1368,8 +1394,10 @@ return -ENOMEM; } + tx_spt_page = i + pool_id * ATH12K_TX_SPT_PAGES_PER_POOL; + dp->spt_info->txbaddr[tx_spt_page] = &tx_descs[0]; + for (j = 0; j < ATH12K_MAX_SPT_ENTRIES; j++) { - tx_spt_page = i + pool_id * ATH12K_TX_SPT_PAGES_PER_POOL; ppt_idx = ATH12K_NUM_RX_SPT_PAGES + tx_spt_page; tx_descs[j].desc_id = ath12k_dp_cc_cookie_gen(ppt_idx, j); tx_descs[j].pool_id = pool_id; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/ath12k/dp.h +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/dp.h @@ -289,6 +289,8 @@ struct ath12k_spt_info { dma_addr_t paddr; u64 *vaddr; + struct ath12k_rx_desc_info *rxbaddr[ATH12K_NUM_RX_SPT_PAGES]; + struct ath12k_tx_desc_info *txbaddr[ATH12K_NUM_TX_SPT_PAGES]; }; struct ath12k_reo_queue_ref { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/ath12k/wmi.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath12k/wmi.c @@ -2162,12 +2162,6 @@ if (arg->num_bssid) len += sizeof(*bssid) * arg->num_bssid; - len += TLV_HDR_SIZE; - if (arg->extraie.len) - extraie_len_with_pad = - roundup(arg->extraie.len, sizeof(u32)); - len += extraie_len_with_pad; - if (arg->num_hint_bssid) len += TLV_HDR_SIZE + arg->num_hint_bssid * sizeof(*hint_bssid); @@ -2176,6 +2170,18 @@ len += TLV_HDR_SIZE + arg->num_hint_s_ssid * sizeof(*s_ssid); + len += TLV_HDR_SIZE; + if (arg->extraie.len) + extraie_len_with_pad = + roundup(arg->extraie.len, sizeof(u32)); + if (extraie_len_with_pad <= (wmi->wmi_ab->max_msg_len[ar->pdev_idx] - len)) { + len += extraie_len_with_pad; + } else { + ath12k_warn(ar->ab, "discard large size %d bytes extraie for scan start\n", + arg->extraie.len); + extraie_len_with_pad = 0; + } + skb = ath12k_wmi_alloc_skb(wmi->wmi_ab, len); if (!skb) return -ENOMEM; @@ -2265,7 +2271,7 @@ tlv->header = ath12k_wmi_tlv_hdr(WMI_TAG_ARRAY_BYTE, len); ptr += TLV_HDR_SIZE; - if (arg->extraie.len) + if (extraie_len_with_pad) memcpy(ptr, arg->extraie.ptr, arg->extraie.len); @@ -3704,6 +3710,10 @@ for (i = 0 ; i < svc_rdy_ext->n_hw_mode_caps; i++) { hw_mode_caps = &svc_rdy_ext->hw_mode_caps[i]; mode = le32_to_cpu(hw_mode_caps->hw_mode_id); + + if (mode >= WMI_HOST_HW_MODE_MAX) + continue; + pref = soc->wmi_ab.preferred_hw_mode; if (ath12k_hw_mode_pri_map[mode] < ath12k_hw_mode_pri_map[pref]) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/ath9k/ahb.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath9k/ahb.c @@ -132,8 +132,8 @@ ah = sc->sc_ah; ath9k_hw_name(ah, hw_name, sizeof(hw_name)); - wiphy_info(hw->wiphy, "%s mem=0x%lx, irq=%d\n", - hw_name, (unsigned long)mem, irq); + wiphy_info(hw->wiphy, "%s mem=0x%p, irq=%d\n", + hw_name, mem, irq); return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/ath9k/mac.h +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath9k/mac.h @@ -115,8 +115,10 @@ u8 qid; u16 desc_id; u8 tid; - u32 ba_low; - u32 ba_high; + struct_group(ba, + u32 ba_low; + u32 ba_high; + ); u32 evm0; u32 evm1; u32 evm2; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/ath9k/pci.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath9k/pci.c @@ -988,8 +988,8 @@ sc->sc_ah->msi_reg = 0; ath9k_hw_name(sc->sc_ah, hw_name, sizeof(hw_name)); - wiphy_info(hw->wiphy, "%s mem=0x%lx, irq=%d\n", - hw_name, (unsigned long)sc->mem, pdev->irq); + wiphy_info(hw->wiphy, "%s mem=0x%p, irq=%d\n", + hw_name, sc->mem, pdev->irq); return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/ath9k/xmit.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/ath9k/xmit.c @@ -468,7 +468,7 @@ isaggr = bf_isaggr(bf); if (isaggr) { seq_st = ts->ts_seqnum; - memcpy(ba, &ts->ba_low, WME_BA_BMP_SIZE >> 3); + memcpy(ba, &ts->ba, WME_BA_BMP_SIZE >> 3); } while (bf) { @@ -551,7 +551,7 @@ if (isaggr && txok) { if (ts->ts_flags & ATH9K_TX_BA) { seq_st = ts->ts_seqnum; - memcpy(ba, &ts->ba_low, WME_BA_BMP_SIZE >> 3); + memcpy(ba, &ts->ba, WME_BA_BMP_SIZE >> 3); } else { /* * AR5416 can become deaf/mute when BA only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/wil6210/txrx.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/wil6210/txrx.c @@ -666,7 +666,7 @@ struct wil_tid_crypto_rx *c = mc ? &s->group_crypto_rx : &s->tid_crypto_rx[tid]; struct wil_tid_crypto_rx_single *cc = &c->key_id[key_id]; - const u8 *pn = (u8 *)&d->mac.pn_15_0; + const u8 *pn = (u8 *)&d->mac.pn; if (!cc->key_set) { wil_err_ratelimited(wil, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/wil6210/txrx.h +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/wil6210/txrx.h @@ -343,8 +343,10 @@ u32 d0; u32 d1; u16 w4; - u16 pn_15_0; - u32 pn_47_16; + struct_group_attr(pn, __packed, + u16 pn_15_0; + u32 pn_47_16; + ); } __packed; /* Rx descriptor - DMA part only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/wil6210/txrx_edma.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/wil6210/txrx_edma.c @@ -548,7 +548,7 @@ s = &wil->sta[cid]; c = mc ? &s->group_crypto_rx : &s->tid_crypto_rx[tid]; cc = &c->key_id[key_id]; - pn = (u8 *)&st->ext.pn_15_0; + pn = (u8 *)&st->ext.pn; if (!cc->key_set) { wil_err_ratelimited(wil, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ath/wil6210/txrx_edma.h +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ath/wil6210/txrx_edma.h @@ -330,8 +330,10 @@ u32 d0; u32 d1; __le16 seq_num; /* only lower 12 bits */ - u16 pn_15_0; - u32 pn_47_16; + struct_group_attr(pn, __packed, + u16 pn_15_0; + u32 pn_47_16; + ); } __packed; struct wil_rx_status_extended { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/atmel/at76c50x-usb.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/atmel/at76c50x-usb.c @@ -10,7 +10,7 @@ * Copyright (c) 2007 Kalle Valo * Copyright (c) 2010 Sebastian Smolorz * - * This file is part of the Berlios driver for WLAN USB devices based on the + * This file is part of the Berlios driver for USB WLAN devices based on the * Atmel AT76C503A/505/505A. * * Some iw_handler code was taken from airo.c, (C) 1999 Benjamin Reed @@ -143,7 +143,7 @@ { USB_DEVICE(0x0cde, 0x0001), USB_DEVICE_DATA(BOARD_503_ISL3861) }, /* Dynalink/Askey WLL013 (intersil) */ { USB_DEVICE(0x069a, 0x0320), USB_DEVICE_DATA(BOARD_503_ISL3861) }, - /* EZ connect 11Mpbs Wireless USB Adapter SMC2662W v1 */ + /* EZ connect 11Mpbs USB Wireless Adapter SMC2662W v1 */ { USB_DEVICE(0x0d5c, 0xa001), USB_DEVICE_DATA(BOARD_503_ISL3861) }, /* BenQ AWL300 */ { USB_DEVICE(0x04a5, 0x9000), USB_DEVICE_DATA(BOARD_503_ISL3861) }, @@ -195,7 +195,7 @@ { USB_DEVICE(0x04a5, 0x9001), USB_DEVICE_DATA(BOARD_503) }, /* 3Com 3CRSHEW696 */ { USB_DEVICE(0x0506, 0x0a01), USB_DEVICE_DATA(BOARD_503) }, - /* Siemens Santis ADSL WLAN USB adapter WLL 013 */ + /* Siemens Santis ADSL USB WLAN adapter WLL 013 */ { USB_DEVICE(0x0681, 0x001b), USB_DEVICE_DATA(BOARD_503) }, /* Belkin F5D6050, version 2 */ { USB_DEVICE(0x050d, 0x0050), USB_DEVICE_DATA(BOARD_503) }, @@ -238,7 +238,7 @@ { USB_DEVICE(0x1915, 0x2233), USB_DEVICE_DATA(BOARD_505_2958) }, /* Xterasys XN-2122B, IBlitzz BWU613B/BWU613SB */ { USB_DEVICE(0x12fd, 0x1001), USB_DEVICE_DATA(BOARD_505_2958) }, - /* Corega WLAN USB Stick 11 */ + /* Corega USB WLAN Stick 11 */ { USB_DEVICE(0x07aa, 0x7613), USB_DEVICE_DATA(BOARD_505_2958) }, /* Microstar MSI Box MS6978 */ { USB_DEVICE(0x0db0, 0x1020), USB_DEVICE_DATA(BOARD_505_2958) }, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil_types.h +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil_types.h @@ -442,7 +442,12 @@ * fixed parameter portion is assumed, otherwise * ssid in the fixed portion is ignored */ - __le16 channel_list[1]; /* list of chanspecs */ + union { + __le16 padding; /* Reserve space for at least 1 entry for abort + * which uses an on stack brcmf_scan_params_v2_le + */ + DECLARE_FLEX_ARRAY(__le16, channel_list); /* chanspecs */ + }; }; struct brcmf_scan_results { @@ -702,7 +707,7 @@ struct brcmf_chanspec_list { __le32 count; /* # of entries */ - __le32 element[1]; /* variable length uint32 list */ + __le32 element[]; /* variable length uint32 list */ }; /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/intel/iwlwifi/fw/error-dump.h +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/fw/error-dump.h @@ -310,9 +310,9 @@ struct iwl_fw_ini_error_dump_range { __le32 range_data_size; union { - __le32 internal_base_addr; - __le64 dram_base_addr; - __le32 page_num; + __le32 internal_base_addr __packed; + __le64 dram_base_addr __packed; + __le32 page_num __packed; struct iwl_fw_ini_fifo_hdr fifo_hdr; struct iwl_cmd_header fw_pkt_hdr; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/fw.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/mvm/fw.c @@ -802,7 +802,7 @@ mvm->nvm_data->bands[0].n_channels = 1; mvm->nvm_data->bands[0].n_bitrates = 1; mvm->nvm_data->bands[0].bitrates = - (void *)((u8 *)mvm->nvm_data->channels + 1); + (void *)(mvm->nvm_data->channels + 1); mvm->nvm_data->bands[0].bitrates->hw_value = 10; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/mld-mac80211.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/mvm/mld-mac80211.c @@ -731,73 +731,78 @@ mvmvif->associated = vif->cfg.assoc; - if (!(changes & BSS_CHANGED_ASSOC)) - return; + if (changes & BSS_CHANGED_ASSOC) { + if (vif->cfg.assoc) { + /* clear statistics to get clean beacon counter */ + iwl_mvm_request_statistics(mvm, true); + iwl_mvm_sf_update(mvm, vif, false); + iwl_mvm_power_vif_assoc(mvm, vif); + + for_each_mvm_vif_valid_link(mvmvif, i) { + memset(&mvmvif->link[i]->beacon_stats, 0, + sizeof(mvmvif->link[i]->beacon_stats)); + + if (vif->p2p) { + iwl_mvm_update_smps(mvm, vif, + IWL_MVM_SMPS_REQ_PROT, + IEEE80211_SMPS_DYNAMIC, i); + } + + rcu_read_lock(); + link_conf = rcu_dereference(vif->link_conf[i]); + if (link_conf && !link_conf->dtim_period) + protect = true; + rcu_read_unlock(); + } - if (vif->cfg.assoc) { - /* clear statistics to get clean beacon counter */ - iwl_mvm_request_statistics(mvm, true); - iwl_mvm_sf_update(mvm, vif, false); - iwl_mvm_power_vif_assoc(mvm, vif); - - for_each_mvm_vif_valid_link(mvmvif, i) { - memset(&mvmvif->link[i]->beacon_stats, 0, - sizeof(mvmvif->link[i]->beacon_stats)); - - if (vif->p2p) { - iwl_mvm_update_smps(mvm, vif, - IWL_MVM_SMPS_REQ_PROT, - IEEE80211_SMPS_DYNAMIC, i); + if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) && + protect) { + /* If we're not restarting and still haven't + * heard a beacon (dtim period unknown) then + * make sure we still have enough minimum time + * remaining in the time event, since the auth + * might actually have taken quite a while + * (especially for SAE) and so the remaining + * time could be small without us having heard + * a beacon yet. + */ + iwl_mvm_protect_assoc(mvm, vif, 0); } - rcu_read_lock(); - link_conf = rcu_dereference(vif->link_conf[i]); - if (link_conf && !link_conf->dtim_period) - protect = true; - rcu_read_unlock(); - } + iwl_mvm_sf_update(mvm, vif, false); + + /* FIXME: need to decide about misbehaving AP handling */ + iwl_mvm_power_vif_assoc(mvm, vif); + } else if (iwl_mvm_mld_vif_have_valid_ap_sta(mvmvif)) { + iwl_mvm_mei_host_disassociated(mvm); - if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status) && - protect) { - /* If we're not restarting and still haven't - * heard a beacon (dtim period unknown) then - * make sure we still have enough minimum time - * remaining in the time event, since the auth - * might actually have taken quite a while - * (especially for SAE) and so the remaining - * time could be small without us having heard - * a beacon yet. + /* If update fails - SF might be running in associated + * mode while disassociated - which is forbidden. */ - iwl_mvm_protect_assoc(mvm, vif, 0); + ret = iwl_mvm_sf_update(mvm, vif, false); + WARN_ONCE(ret && + !test_bit(IWL_MVM_STATUS_HW_RESTART_REQUESTED, + &mvm->status), + "Failed to update SF upon disassociation\n"); + + /* If we get an assert during the connection (after the + * station has been added, but before the vif is set + * to associated), mac80211 will re-add the station and + * then configure the vif. Since the vif is not + * associated, we would remove the station here and + * this would fail the recovery. + */ + iwl_mvm_mld_vif_delete_all_stas(mvm, vif); } - iwl_mvm_sf_update(mvm, vif, false); - - /* FIXME: need to decide about misbehaving AP handling */ - iwl_mvm_power_vif_assoc(mvm, vif); - } else if (iwl_mvm_mld_vif_have_valid_ap_sta(mvmvif)) { - iwl_mvm_mei_host_disassociated(mvm); - - /* If update fails - SF might be running in associated - * mode while disassociated - which is forbidden. - */ - ret = iwl_mvm_sf_update(mvm, vif, false); - WARN_ONCE(ret && - !test_bit(IWL_MVM_STATUS_HW_RESTART_REQUESTED, - &mvm->status), - "Failed to update SF upon disassociation\n"); - - /* If we get an assert during the connection (after the - * station has been added, but before the vif is set - * to associated), mac80211 will re-add the station and - * then configure the vif. Since the vif is not - * associated, we would remove the station here and - * this would fail the recovery. - */ - iwl_mvm_mld_vif_delete_all_stas(mvm, vif); + iwl_mvm_bss_info_changed_station_assoc(mvm, vif, changes); } - iwl_mvm_bss_info_changed_station_assoc(mvm, vif, changes); + if (changes & BSS_CHANGED_PS) { + ret = iwl_mvm_power_update_mac(mvm); + if (ret) + IWL_ERR(mvm, "failed to update power mode\n"); + } } static void only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/intel/iwlwifi/mvm/scan.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/mvm/scan.c @@ -2342,7 +2342,7 @@ if (gen_flags & IWL_UMAC_SCAN_GEN_FLAGS_V2_FRAGMENTED_LMAC2) gp->num_of_fragments[SCAN_HB_LMAC_IDX] = IWL_SCAN_NUM_OF_FRAGS; - if (version < 12) { + if (version < 16) { gp->scan_start_mac_or_link_id = scan_vif->id; } else { struct iwl_mvm_vif_link_info *link_info; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/intel/iwlwifi/pcie/trans.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/intel/iwlwifi/pcie/trans.c @@ -2086,8 +2086,11 @@ pci_lock_rescan_remove(); pci_dev_put(pdev); pci_stop_and_remove_bus_device(pdev); - if (removal->rescan) - pci_rescan_bus(bus->parent); + if (removal->rescan && bus) { + if (bus->parent) + bus = bus->parent; + pci_rescan_bus(bus); + } pci_unlock_rescan_remove(); kfree(removal); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/intersil/orinoco/orinoco_usb.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/intersil/orinoco/orinoco_usb.c @@ -129,18 +129,18 @@ #define USB_AVAYA8_VENDOR_ID 0x0D98 #define USB_AVAYAE_VENDOR_ID 0x0D9E -#define USB_AVAYA_WIRELESS_ID 0x0300 /* Avaya Wireless USB Card */ +#define USB_AVAYA_WIRELESS_ID 0x0300 /* Avaya USB Wireless Card */ #define USB_AGERE_VENDOR_ID 0x0D4E /* Agere Systems */ -#define USB_AGERE_MODEL0801_ID 0x1000 /* Wireless USB Card Model 0801 */ -#define USB_AGERE_MODEL0802_ID 0x1001 /* Wireless USB Card Model 0802 */ -#define USB_AGERE_REBRANDED_ID 0x047A /* WLAN USB Card */ +#define USB_AGERE_MODEL0801_ID 0x1000 /* USB Wireless Card Model 0801 */ +#define USB_AGERE_MODEL0802_ID 0x1001 /* USB Wireless Card Model 0802 */ +#define USB_AGERE_REBRANDED_ID 0x047A /* USB WLAN Card */ #define USB_ELSA_VENDOR_ID 0x05CC #define USB_ELSA_AIRLANCER_ID 0x3100 /* ELSA AirLancer USB-11 */ #define USB_LEGEND_VENDOR_ID 0x0E7C -#define USB_LEGEND_JOYNET_ID 0x0300 /* Joynet WLAN USB Card */ +#define USB_LEGEND_JOYNET_ID 0x0300 /* Joynet USB WLAN Card */ #define USB_SAMSUNG_VENDOR_ID 0x04E8 #define USB_SAMSUNG_SEW2001U1_ID 0x5002 /* Samsung SEW-2001u Card */ @@ -154,7 +154,7 @@ #define USB_FUJITSU_E1100_ID 0x1002 /* connect2AIR WLAN E-1100 USB */ #define USB_2WIRE_VENDOR_ID 0x1630 -#define USB_2WIRE_WIRELESS_ID 0xff81 /* 2Wire Wireless USB adapter */ +#define USB_2WIRE_WIRELESS_ID 0xff81 /* 2Wire USB Wireless adapter */ #define EZUSB_REQUEST_FW_TRANS 0xA0 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/legacy/rndis_wlan.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/legacy/rndis_wlan.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0-or-later /* - * Driver for RNDIS based wireless USB devices. + * Driver for RNDIS based USB wireless devices. * * Copyright (C) 2007 by Bjorge Dijkstra * Copyright (C) 2008-2009 by Jussi Kivilinna only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c @@ -965,8 +965,8 @@ } } - tlv_buf_left -= (sizeof(*tlv_rxba) + tlv_len); - tmp = (u8 *)tlv_rxba + tlv_len + sizeof(*tlv_rxba); + tlv_buf_left -= (sizeof(tlv_rxba->header) + tlv_len); + tmp = (u8 *)tlv_rxba + sizeof(tlv_rxba->header) + tlv_len; tlv_rxba = (struct mwifiex_ie_types_rxba_sync *)tmp; } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/marvell/mwifiex/tdls.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/marvell/mwifiex/tdls.c @@ -735,6 +735,7 @@ int ret; u16 capab; struct ieee80211_ht_cap *ht_cap; + unsigned int extra; u8 radio, *pos; capab = priv->curr_bss_params.bss_descriptor.cap_info_bitmap; @@ -753,7 +754,10 @@ switch (action_code) { case WLAN_PUB_ACTION_TDLS_DISCOVER_RES: - skb_put(skb, sizeof(mgmt->u.action.u.tdls_discover_resp) + 1); + /* See the layout of 'struct ieee80211_mgmt'. */ + extra = sizeof(mgmt->u.action.u.tdls_discover_resp) + + sizeof(mgmt->u.action.category); + skb_put(skb, extra); mgmt->u.action.category = WLAN_CATEGORY_PUBLIC; mgmt->u.action.u.tdls_discover_resp.action_code = WLAN_PUB_ACTION_TDLS_DISCOVER_RES; @@ -762,8 +766,7 @@ mgmt->u.action.u.tdls_discover_resp.capability = cpu_to_le16(capab); /* move back for addr4 */ - memmove(pos + ETH_ALEN, &mgmt->u.action.category, - sizeof(mgmt->u.action.u.tdls_discover_resp)); + memmove(pos + ETH_ALEN, &mgmt->u.action, extra); /* init address 4 */ eth_broadcast_addr(pos); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/dma.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/dma.c @@ -93,13 +93,13 @@ { struct mt76_txwi_cache *t = NULL; - spin_lock(&dev->wed_lock); + spin_lock_bh(&dev->wed_lock); if (!list_empty(&dev->rxwi_cache)) { t = list_first_entry(&dev->rxwi_cache, struct mt76_txwi_cache, list); list_del(&t->list); } - spin_unlock(&dev->wed_lock); + spin_unlock_bh(&dev->wed_lock); return t; } @@ -145,9 +145,9 @@ if (!t) return; - spin_lock(&dev->wed_lock); + spin_lock_bh(&dev->wed_lock); list_add(&t->list, &dev->rxwi_cache); - spin_unlock(&dev->wed_lock); + spin_unlock_bh(&dev->wed_lock); } EXPORT_SYMBOL_GPL(mt76_put_rxwi); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt7603/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt7603/Kconfig @@ -5,7 +5,7 @@ depends on MAC80211 depends on PCI help - This adds support for MT7603E wireless PCIe devices and the WLAN core + This adds support for MT7603E PCIe wireless devices and the WLAN core on MT7628/MT7688 SoC devices. This family supports IEEE 802.11n 2x2 to 300Mbps PHY rate only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt7615/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt7615/Kconfig @@ -11,7 +11,7 @@ depends on MAC80211 depends on PCI help - This adds support for MT7615-based wireless PCIe devices, + This adds support for MT7615-based PCIe wireless devices, which support concurrent dual-band operation at both 5GHz and 2.4GHz, IEEE 802.11ac 4x4:4SS 1733Mbps PHY rate, wave2 MU-MIMO up to 4 users/group and 160MHz channels. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt76x0/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt76x0/Kconfig @@ -10,7 +10,7 @@ depends on MAC80211 depends on USB help - This adds support for MT7610U-based wireless USB 2.0 dongles, + This adds support for MT7610U-based USB 2.0 wireless dongles, which comply with IEEE 802.11ac standards and support 1x1 433Mbps PHY rate. @@ -22,7 +22,7 @@ depends on MAC80211 depends on PCI help - This adds support for MT7610/MT7630-based wireless PCIe devices, + This adds support for MT7610/MT7630-based PCIe wireless devices, which comply with IEEE 802.11ac standards and support 1x1 433Mbps PHY rate. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.c @@ -131,15 +131,8 @@ s8 *lna_2g, s8 *lna_5g, struct ieee80211_channel *chan) { - u16 val; u8 lna; - val = mt76x02_eeprom_get(dev, MT_EE_NIC_CONF_1); - if (val & MT_EE_NIC_CONF_1_LNA_EXT_2G) - *lna_2g = 0; - if (val & MT_EE_NIC_CONF_1_LNA_EXT_5G) - memset(lna_5g, 0, sizeof(s8) * 3); - if (chan->band == NL80211_BAND_2GHZ) lna = *lna_2g; else if (chan->hw_value <= 64) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt76x2/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt76x2/Kconfig @@ -9,7 +9,7 @@ depends on MAC80211 depends on PCI help - This adds support for MT7612/MT7602/MT7662-based wireless PCIe + This adds support for MT7612/MT7602/MT7662-based PCIe wireless devices, which comply with IEEE 802.11ac standards and support 2SS to 866Mbit/s PHY rate. @@ -22,7 +22,7 @@ depends on MAC80211 depends on USB help - This adds support for MT7612U-based wireless USB 3.0 dongles, + This adds support for MT7612U-based USB 3.0 wireless dongles, which comply with IEEE 802.11ac standards and support 2SS to 866Mbit/s PHY rate. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.c @@ -256,7 +256,8 @@ struct ieee80211_channel *chan = dev->mphy.chandef.chan; int channel = chan->hw_value; s8 lna_5g[3], lna_2g; - u8 lna; + bool use_lna; + u8 lna = 0; u16 val; if (chan->band == NL80211_BAND_2GHZ) @@ -275,7 +276,15 @@ dev->cal.rx.mcu_gain |= (lna_5g[1] & 0xff) << 16; dev->cal.rx.mcu_gain |= (lna_5g[2] & 0xff) << 24; - lna = mt76x02_get_lna_gain(dev, &lna_2g, lna_5g, chan); + val = mt76x02_eeprom_get(dev, MT_EE_NIC_CONF_1); + if (chan->band == NL80211_BAND_2GHZ) + use_lna = !(val & MT_EE_NIC_CONF_1_LNA_EXT_2G); + else + use_lna = !(val & MT_EE_NIC_CONF_1_LNA_EXT_5G); + + if (use_lna) + lna = mt76x02_get_lna_gain(dev, &lna_2g, lna_5g, chan); + dev->cal.rx.lna_gain = mt76x02_sign_extend(lna, 8); } EXPORT_SYMBOL_GPL(mt76x2_read_rx_gain); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt7915/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt7915/Kconfig @@ -7,7 +7,7 @@ depends on PCI select RELAY help - This adds support for MT7915-based wireless PCIe devices, + This adds support for MT7915-based PCIe wireless devices, which support concurrent dual-band operation at both 5GHz and 2.4GHz IEEE 802.11ax 4x4:4SS 1024-QAM, 160MHz channels, OFDMA, spatial reuse and dual carrier modulation. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt7921/mac.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt7921/mac.c @@ -1180,6 +1180,10 @@ if (unlikely(tx_info->skb->len <= ETH_HLEN)) return -EINVAL; + err = skb_cow_head(skb, MT_SDIO_TXD_SIZE + MT_SDIO_HDR_SIZE); + if (err) + return err; + if (!wcid) wcid = &dev->mt76.global_wcid; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt76/mt7996/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt76/mt7996/Kconfig @@ -7,7 +7,7 @@ depends on MAC80211 depends on PCI help - This adds support for MT7996-based wireless PCIe devices, + This adds support for MT7996-based PCIe wireless devices, which support concurrent tri-band operation at 6GHz, 5GHz, and 2.4GHz IEEE 802.11be 4x4:4SS 4096-QAM, 320MHz channels. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/mediatek/mt7601u/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/mediatek/mt7601u/Kconfig @@ -4,4 +4,4 @@ depends on MAC80211 depends on USB help - This adds support for MT7601U-based wireless USB dongles. + This adds support for MT7601U-based USB wireless dongles. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/purelifi/plfxlc/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/purelifi/plfxlc/Kconfig @@ -3,7 +3,7 @@ tristate "pureLiFi X, XL, XC device support" depends on CFG80211 && MAC80211 && USB help - This option adds support for pureLiFi LiFi wireless USB + This option adds support for pureLiFi LiFi USB wireless adapters. The pureLiFi X, XL, XC USB devices are based on 802.11 OFDM PHY but uses light as the transmission medium. The driver supports common 802.11 encryption/authentication only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/ralink/rt2x00/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/ralink/rt2x00/Kconfig @@ -170,7 +170,7 @@ config RT2800USB_RT3573 bool "rt2800usb - Include support for rt3573 devices (EXPERIMENTAL)" help - This enables support for RT3573 chipset based wireless USB devices + This enables support for RT3573 chipset based USB wireless devices in the rt2800usb driver. config RT2800USB_RT53XX only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/realtek/rtw88/main.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/realtek/rtw88/main.c @@ -2183,10 +2183,12 @@ release_firmware(wow_fw->firmware); destroy_workqueue(rtwdev->tx_wq); + timer_delete_sync(&rtwdev->tx_report.purge_timer); spin_lock_irqsave(&rtwdev->tx_report.q_lock, flags); skb_queue_purge(&rtwdev->tx_report.queue); - skb_queue_purge(&rtwdev->coex.queue); spin_unlock_irqrestore(&rtwdev->tx_report.q_lock, flags); + skb_queue_purge(&rtwdev->coex.queue); + skb_queue_purge(&rtwdev->c2h_queue); list_for_each_entry_safe(rsvd_pkt, tmp, &rtwdev->rsvd_page_list, build_list) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/realtek/rtw88/pci.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/realtek/rtw88/pci.c @@ -1828,5 +1828,5 @@ EXPORT_SYMBOL(rtw_pci_shutdown); MODULE_AUTHOR("Realtek Corporation"); -MODULE_DESCRIPTION("Realtek 802.11ac wireless PCI driver"); +MODULE_DESCRIPTION("Realtek PCI 802.11ac wireless driver"); MODULE_LICENSE("Dual BSD/GPL"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/realtek/rtw88/rtw8723d.h +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/realtek/rtw88/rtw8723d.h @@ -46,6 +46,7 @@ u8 vender_id[2]; /* 0x100 */ u8 product_id[2]; /* 0x102 */ u8 usb_option; /* 0x104 */ + u8 res5[2]; /* 0x105 */ u8 mac_addr[ETH_ALEN]; /* 0x107 */ }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/realtek/rtw89/pci.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/realtek/rtw89/pci.c @@ -3939,5 +3939,5 @@ EXPORT_SYMBOL(rtw89_pci_remove); MODULE_AUTHOR("Realtek Corporation"); -MODULE_DESCRIPTION("Realtek 802.11ax wireless PCI driver"); +MODULE_DESCRIPTION("Realtek PCI 802.11ax wireless driver"); MODULE_LICENSE("Dual BSD/GPL"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/virtual/mac80211_hwsim.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/virtual/mac80211_hwsim.c @@ -582,9 +582,8 @@ */ /* Add vendor data */ - err = nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_TEST, val + 1); - if (err) - return err; + nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_TEST, val + 1); + /* Send the event - this will call nla_nest_end() */ cfg80211_vendor_event(skb, GFP_KERNEL); } @@ -5626,14 +5625,15 @@ frame_data_len = nla_len(info->attrs[HWSIM_ATTR_FRAME]); frame_data = (void *)nla_data(info->attrs[HWSIM_ATTR_FRAME]); + if (frame_data_len < sizeof(struct ieee80211_hdr_3addr) || + frame_data_len > IEEE80211_MAX_DATA_LEN) + goto err; + /* Allocate new skb here */ skb = alloc_skb(frame_data_len, GFP_KERNEL); if (skb == NULL) goto err; - if (frame_data_len > IEEE80211_MAX_DATA_LEN) - goto err; - /* Copy the data */ skb_put_data(skb, frame_data, frame_data_len); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/wireless/zydas/zd1201.c +++ linux-oracle-6.5-6.5.0/drivers/net/wireless/zydas/zd1201.c @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0-only /* - * Driver for ZyDAS zd1201 based wireless USB devices. + * Driver for ZyDAS zd1201 based USB wireless devices. * * Copyright (c) 2004, 2005 Jeroen Vreeken (pe1rxq@amsat.org) * @@ -23,8 +23,8 @@ #include "zd1201.h" static const struct usb_device_id zd1201_table[] = { - {USB_DEVICE(0x0586, 0x3400)}, /* Peabird Wireless USB Adapter */ - {USB_DEVICE(0x0ace, 0x1201)}, /* ZyDAS ZD1201 Wireless USB Adapter */ + {USB_DEVICE(0x0586, 0x3400)}, /* Peabird USB Wireless Adapter */ + {USB_DEVICE(0x0ace, 0x1201)}, /* ZyDAS ZD1201 USB Wireless Adapter */ {USB_DEVICE(0x050d, 0x6051)}, /* Belkin F5D6051 usb adapter */ {USB_DEVICE(0x0db0, 0x6823)}, /* MSI UB11B usb adapter */ {USB_DEVICE(0x1044, 0x8004)}, /* Gigabyte GN-WLBZ101 */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/net/xen-netback/interface.c +++ linux-oracle-6.5-6.5.0/drivers/net/xen-netback/interface.c @@ -41,8 +41,6 @@ #include #include -#define XENVIF_QUEUE_LENGTH 32 - /* Number of bytes allowed on the internal guest Rx queue. */ #define XENVIF_RX_QUEUE_BYTES (XEN_NETIF_RX_RING_SIZE/2 * PAGE_SIZE) @@ -530,8 +528,6 @@ dev->features = dev->hw_features | NETIF_F_RXCSUM; dev->ethtool_ops = &xenvif_ethtool_ops; - dev->tx_queue_len = XENVIF_QUEUE_LENGTH; - dev->min_mtu = ETH_MIN_MTU; dev->max_mtu = ETH_MAX_MTU - VLAN_ETH_HLEN; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/nvme/host/core.c +++ linux-oracle-6.5-6.5.0/drivers/nvme/host/core.c @@ -2245,25 +2245,8 @@ else ctrl->ctrl_config = NVME_CC_CSS_NVM; - if (ctrl->cap & NVME_CAP_CRMS_CRWMS) { - u32 crto; - - ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CRTO, &crto); - if (ret) { - dev_err(ctrl->device, "Reading CRTO failed (%d)\n", - ret); - return ret; - } - - if (ctrl->cap & NVME_CAP_CRMS_CRIMS) { - ctrl->ctrl_config |= NVME_CC_CRIME; - timeout = NVME_CRTO_CRIMT(crto); - } else { - timeout = NVME_CRTO_CRWMT(crto); - } - } else { - timeout = NVME_CAP_TIMEOUT(ctrl->cap); - } + if (ctrl->cap & NVME_CAP_CRMS_CRWMS && ctrl->cap & NVME_CAP_CRMS_CRIMS) + ctrl->ctrl_config |= NVME_CC_CRIME; ctrl->ctrl_config |= (NVME_CTRL_PAGE_SHIFT - 12) << NVME_CC_MPS_SHIFT; ctrl->ctrl_config |= NVME_CC_AMS_RR | NVME_CC_SHN_NONE; @@ -2277,6 +2260,39 @@ if (ret) return ret; + /* CAP value may change after initial CC write */ + ret = ctrl->ops->reg_read64(ctrl, NVME_REG_CAP, &ctrl->cap); + if (ret) + return ret; + + timeout = NVME_CAP_TIMEOUT(ctrl->cap); + if (ctrl->cap & NVME_CAP_CRMS_CRWMS) { + u32 crto, ready_timeout; + + ret = ctrl->ops->reg_read32(ctrl, NVME_REG_CRTO, &crto); + if (ret) { + dev_err(ctrl->device, "Reading CRTO failed (%d)\n", + ret); + return ret; + } + + /* + * CRTO should always be greater or equal to CAP.TO, but some + * devices are known to get this wrong. Use the larger of the + * two values. + */ + if (ctrl->ctrl_config & NVME_CC_CRIME) + ready_timeout = NVME_CRTO_CRIMT(crto); + else + ready_timeout = NVME_CRTO_CRWMT(crto); + + if (ready_timeout < timeout) + dev_warn_once(ctrl->device, "bad crto:%x cap:%llx\n", + crto, ctrl->cap); + else + timeout = ready_timeout; + } + ctrl->ctrl_config |= NVME_CC_ENABLE; ret = ctrl->ops->reg_write32(ctrl, NVME_REG_CC, ctrl->ctrl_config); if (ret) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/nvme/host/fc.c +++ linux-oracle-6.5-6.5.0/drivers/nvme/host/fc.c @@ -1924,7 +1924,7 @@ struct nvme_fc_fcp_op *op = fcp_req_to_fcp_op(req); struct request *rq = op->rq; - if (!IS_ENABLED(CONFIG_BLK_CGROUP_FC_APPID) || !rq->bio) + if (!IS_ENABLED(CONFIG_BLK_CGROUP_FC_APPID) || !rq || !rq->bio) return NULL; return blkcg_get_fc_appid(rq->bio); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/nvme/host/pci.c +++ linux-oracle-6.5-6.5.0/drivers/nvme/host/pci.c @@ -2916,9 +2916,6 @@ struct nvme_dev *dev; int ret = -ENOMEM; - if (node == NUMA_NO_NODE) - set_dev_node(&pdev->dev, first_memory_node); - dev = kzalloc_node(sizeof(*dev), GFP_KERNEL, node); if (!dev) return ERR_PTR(-ENOMEM); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/of/dynamic.c +++ linux-oracle-6.5-6.5.0/drivers/of/dynamic.c @@ -927,13 +927,13 @@ { struct of_changeset_entry *ce; + if (WARN_ON(action >= ARRAY_SIZE(action_names))) + return -EINVAL; + ce = kzalloc(sizeof(*ce), GFP_KERNEL); if (!ce) return -ENOMEM; - if (WARN_ON(action >= ARRAY_SIZE(action_names))) - return -EINVAL; - /* get a reference to the node */ ce->action = action; ce->np = of_node_get(np); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/parisc/iommu-helpers.h +++ linux-oracle-6.5-6.5.0/drivers/parisc/iommu-helpers.h @@ -14,13 +14,13 @@ static inline unsigned int iommu_fill_pdir(struct ioc *ioc, struct scatterlist *startsg, int nents, unsigned long hint, - void (*iommu_io_pdir_entry)(u64 *, space_t, unsigned long, + void (*iommu_io_pdir_entry)(__le64 *, space_t, unsigned long, unsigned long)) { struct scatterlist *dma_sg = startsg; /* pointer to current DMA */ unsigned int n_mappings = 0; unsigned long dma_offset = 0, dma_len = 0; - u64 *pdirp = NULL; + __le64 *pdirp = NULL; /* Horrible hack. For efficiency's sake, dma_sg starts one * entry below the true start (it is immediately incremented @@ -31,8 +31,8 @@ unsigned long vaddr; long size; - DBG_RUN_SG(" %d : %08lx/%05x %p/%05x\n", nents, - (unsigned long)sg_dma_address(startsg), cnt, + DBG_RUN_SG(" %d : %08lx %p/%05x\n", nents, + (unsigned long)sg_dma_address(startsg), sg_virt(startsg), startsg->length ); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/parisc/iosapic.c +++ linux-oracle-6.5-6.5.0/drivers/parisc/iosapic.c @@ -202,9 +202,9 @@ static DEFINE_SPINLOCK(iosapic_lock); -static inline void iosapic_eoi(void __iomem *addr, unsigned int data) +static inline void iosapic_eoi(__le32 __iomem *addr, __le32 data) { - __raw_writel(data, addr); + __raw_writel((__force u32)data, addr); } /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/parisc/iosapic_private.h +++ linux-oracle-6.5-6.5.0/drivers/parisc/iosapic_private.h @@ -118,8 +118,8 @@ struct vector_info { struct iosapic_info *iosapic; /* I/O SAPIC this vector is on */ struct irt_entry *irte; /* IRT entry */ - u32 __iomem *eoi_addr; /* precalculate EOI reg address */ - u32 eoi_data; /* IA64: ? PA: swapped txn_data */ + __le32 __iomem *eoi_addr; /* precalculate EOI reg address */ + __le32 eoi_data; /* IA64: ? PA: swapped txn_data */ int txn_irq; /* virtual IRQ number for processor */ ulong txn_addr; /* IA64: id_eid PA: partial HPA */ u32 txn_data; /* CPU interrupt bit */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/parisc/led.c +++ linux-oracle-6.5-6.5.0/drivers/parisc/led.c @@ -56,8 +56,8 @@ static int led_type __read_mostly = -1; static unsigned char lastleds; /* LED state from most recent update */ static unsigned int led_heartbeat __read_mostly = 1; -static unsigned int led_diskio __read_mostly = 1; -static unsigned int led_lanrxtx __read_mostly = 1; +static unsigned int led_diskio __read_mostly; +static unsigned int led_lanrxtx __read_mostly; static char lcd_text[32] __read_mostly; static char lcd_text_default[32] __read_mostly; static int lcd_no_led_support __read_mostly = 0; /* KittyHawk doesn't support LED on its LCD */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pci/controller/dwc/pci-imx6.c +++ linux-oracle-6.5-6.5.0/drivers/pci/controller/dwc/pci-imx6.c @@ -1040,6 +1040,7 @@ static const struct dw_pcie_host_ops imx6_pcie_host_ops = { .host_init = imx6_pcie_host_init, + .host_deinit = imx6_pcie_host_exit, }; static const struct dw_pcie_ops dw_pcie_ops = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pci/controller/dwc/pcie-fu740.c +++ linux-oracle-6.5-6.5.0/drivers/pci/controller/dwc/pcie-fu740.c @@ -299,6 +299,7 @@ pci->dev = dev; pci->ops = &dw_pcie_ops; pci->pp.ops = &fu740_pcie_host_ops; + pci->pp.num_vectors = MAX_MSI_IRQS; /* SiFive specific region: mgmt */ afp->mgmt_base = devm_platform_ioremap_resource_byname(pdev, "mgmt"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pci/controller/dwc/pcie-qcom.c +++ linux-oracle-6.5-6.5.0/drivers/pci/controller/dwc/pcie-qcom.c @@ -43,7 +43,6 @@ #define PARF_PHY_REFCLK 0x4c #define PARF_CONFIG_BITS 0x50 #define PARF_DBI_BASE_ADDR 0x168 -#define PARF_SLV_ADDR_SPACE_SIZE_2_3_3 0x16c /* Register offset specific to IP ver 2.3.3 */ #define PARF_MHI_CLOCK_RESET_CTRL 0x174 #define PARF_AXI_MSTR_WR_ADDR_HALT 0x178 #define PARF_AXI_MSTR_WR_ADDR_HALT_V2 0x1a8 @@ -797,8 +796,7 @@ u16 offset = dw_pcie_find_capability(pci, PCI_CAP_ID_EXP); u32 val; - writel(SLV_ADDR_SPACE_SZ, - pcie->parf + PARF_SLV_ADDR_SPACE_SIZE_2_3_3); + writel(SLV_ADDR_SPACE_SZ, pcie->parf + PARF_SLV_ADDR_SPACE_SIZE); val = readl(pcie->parf + PARF_PHY_CTRL); val &= ~PHY_TEST_PWR_DOWN; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pci/hotplug/acpiphp_glue.c +++ linux-oracle-6.5-6.5.0/drivers/pci/hotplug/acpiphp_glue.c @@ -512,15 +512,12 @@ if (pass && dev->subordinate) { check_hotplug_bridge(slot, dev); pcibios_resource_survey_bus(dev->subordinate); - if (pci_is_root_bus(bus)) - __pci_bus_size_bridges(dev->subordinate, &add_list); + __pci_bus_size_bridges(dev->subordinate, + &add_list); } } } - if (pci_is_root_bus(bus)) - __pci_bus_assign_resources(bus, &add_list, NULL); - else - pci_assign_unassigned_bridge_resources(bus->self); + __pci_bus_assign_resources(bus, &add_list, NULL); } acpiphp_sanitize_bus(bus); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pci/pci-driver.c +++ linux-oracle-6.5-6.5.0/drivers/pci/pci-driver.c @@ -572,7 +572,19 @@ static void pci_pm_bridge_power_up_actions(struct pci_dev *pci_dev) { - pci_bridge_wait_for_secondary_bus(pci_dev, "resume"); + int ret; + + ret = pci_bridge_wait_for_secondary_bus(pci_dev, "resume"); + if (ret) { + /* + * The downstream link failed to come up, so mark the + * devices below as disconnected to make sure we don't + * attempt to resume them. + */ + pci_walk_bus(pci_dev->subordinate, pci_dev_set_disconnected, + NULL); + return; + } /* * When powering on a bridge from D3cold, the whole hierarchy may be only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/perf/arm-cmn.c +++ linux-oracle-6.5-6.5.0/drivers/perf/arm-cmn.c @@ -1862,7 +1862,7 @@ u64 delta; int i; - for (i = 0; i < CMN_DTM_NUM_COUNTERS; i++) { + for (i = 0; i < CMN_DT_NUM_COUNTERS; i++) { if (status & (1U << i)) { ret = IRQ_HANDLED; if (WARN_ON(!dtc->counters[i])) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/perf/arm_smmuv3_pmu.c +++ linux-oracle-6.5-6.5.0/drivers/perf/arm_smmuv3_pmu.c @@ -115,6 +115,7 @@ #define SMMU_PMCG_PA_SHIFT 12 #define SMMU_PMCG_EVCNTR_RDONLY BIT(0) +#define SMMU_PMCG_HARDEN_DISABLE BIT(1) static int cpuhp_state_num; @@ -159,6 +160,20 @@ writel(SMMU_PMCG_CR_ENABLE, smmu_pmu->reg_base + SMMU_PMCG_CR); } +static int smmu_pmu_apply_event_filter(struct smmu_pmu *smmu_pmu, + struct perf_event *event, int idx); + +static inline void smmu_pmu_enable_quirk_hip08_09(struct pmu *pmu) +{ + struct smmu_pmu *smmu_pmu = to_smmu_pmu(pmu); + unsigned int idx; + + for_each_set_bit(idx, smmu_pmu->used_counters, smmu_pmu->num_counters) + smmu_pmu_apply_event_filter(smmu_pmu, smmu_pmu->events[idx], idx); + + smmu_pmu_enable(pmu); +} + static inline void smmu_pmu_disable(struct pmu *pmu) { struct smmu_pmu *smmu_pmu = to_smmu_pmu(pmu); @@ -167,6 +182,22 @@ writel(0, smmu_pmu->reg_base + SMMU_PMCG_IRQ_CTRL); } +static inline void smmu_pmu_disable_quirk_hip08_09(struct pmu *pmu) +{ + struct smmu_pmu *smmu_pmu = to_smmu_pmu(pmu); + unsigned int idx; + + /* + * The global disable of PMU sometimes fail to stop the counting. + * Harden this by writing an invalid event type to each used counter + * to forcibly stop counting. + */ + for_each_set_bit(idx, smmu_pmu->used_counters, smmu_pmu->num_counters) + writel(0xffff, smmu_pmu->reg_base + SMMU_PMCG_EVTYPER(idx)); + + smmu_pmu_disable(pmu); +} + static inline void smmu_pmu_counter_set_value(struct smmu_pmu *smmu_pmu, u32 idx, u64 value) { @@ -765,7 +796,10 @@ switch (model) { case IORT_SMMU_V3_PMCG_HISI_HIP08: /* HiSilicon Erratum 162001800 */ - smmu_pmu->options |= SMMU_PMCG_EVCNTR_RDONLY; + smmu_pmu->options |= SMMU_PMCG_EVCNTR_RDONLY | SMMU_PMCG_HARDEN_DISABLE; + break; + case IORT_SMMU_V3_PMCG_HISI_HIP09: + smmu_pmu->options |= SMMU_PMCG_HARDEN_DISABLE; break; } @@ -890,6 +924,16 @@ if (!dev->of_node) smmu_pmu_get_acpi_options(smmu_pmu); + /* + * For platforms suffer this quirk, the PMU disable sometimes fails to + * stop the counters. This will leads to inaccurate or error counting. + * Forcibly disable the counters with these quirk handler. + */ + if (smmu_pmu->options & SMMU_PMCG_HARDEN_DISABLE) { + smmu_pmu->pmu.pmu_enable = smmu_pmu_enable_quirk_hip08_09; + smmu_pmu->pmu.pmu_disable = smmu_pmu_disable_quirk_hip08_09; + } + /* Pick one CPU to be the preferred one to use */ smmu_pmu->on_cpu = raw_smp_processor_id(); WARN_ON(irq_set_affinity(smmu_pmu->irq, cpumask_of(smmu_pmu->on_cpu))); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/phy/freescale/phy-fsl-lynx-28g.c +++ linux-oracle-6.5-6.5.0/drivers/phy/freescale/phy-fsl-lynx-28g.c @@ -126,6 +126,10 @@ struct lynx_28g_priv { void __iomem *base; struct device *dev; + /* Serialize concurrent access to registers shared between lanes, + * like PCCn + */ + spinlock_t pcc_lock; struct lynx_28g_pll pll[LYNX_28G_NUM_PLL]; struct lynx_28g_lane lane[LYNX_28G_NUM_LANE]; @@ -396,6 +400,8 @@ if (powered_up) lynx_28g_power_off(phy); + spin_lock(&priv->pcc_lock); + switch (submode) { case PHY_INTERFACE_MODE_SGMII: case PHY_INTERFACE_MODE_1000BASEX: @@ -412,6 +418,8 @@ lane->interface = submode; out: + spin_unlock(&priv->pcc_lock); + /* Power up the lane if necessary */ if (powered_up) lynx_28g_power_on(phy); @@ -507,11 +515,12 @@ for (i = 0; i < LYNX_28G_NUM_LANE; i++) { lane = &priv->lane[i]; - if (!lane->init) - continue; + mutex_lock(&lane->phy->mutex); - if (!lane->powered_up) + if (!lane->init || !lane->powered_up) { + mutex_unlock(&lane->phy->mutex); continue; + } rrstctl = lynx_28g_lane_read(lane, LNaRRSTCTL); if (!(rrstctl & LYNX_28G_LNaRRSTCTL_CDR_LOCK)) { @@ -520,6 +529,8 @@ rrstctl = lynx_28g_lane_read(lane, LNaRRSTCTL); } while (!(rrstctl & LYNX_28G_LNaRRSTCTL_RST_DONE)); } + + mutex_unlock(&lane->phy->mutex); } queue_delayed_work(system_power_efficient_wq, &priv->cdr_check, msecs_to_jiffies(1000)); @@ -592,6 +603,7 @@ dev_set_drvdata(dev, priv); + spin_lock_init(&priv->pcc_lock); INIT_DELAYED_WORK(&priv->cdr_check, lynx_28g_cdr_lock_check); queue_delayed_work(system_power_efficient_wq, &priv->cdr_check, @@ -603,6 +615,14 @@ return PTR_ERR_OR_ZERO(provider); } +static void lynx_28g_remove(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + struct lynx_28g_priv *priv = dev_get_drvdata(dev); + + cancel_delayed_work_sync(&priv->cdr_check); +} + static const struct of_device_id lynx_28g_of_match_table[] = { { .compatible = "fsl,lynx-28g" }, { }, @@ -611,6 +631,7 @@ static struct platform_driver lynx_28g_driver = { .probe = lynx_28g_probe, + .remove_new = lynx_28g_remove, .driver = { .name = "lynx-28g", .of_match_table = lynx_28g_of_match_table, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pinctrl/intel/pinctrl-cherryview.c +++ linux-oracle-6.5-6.5.0/drivers/pinctrl/intel/pinctrl-cherryview.c @@ -1701,7 +1701,6 @@ struct intel_community_context *cctx; struct intel_community *community; struct device *dev = &pdev->dev; - struct acpi_device *adev = ACPI_COMPANION(dev); struct intel_pinctrl *pctrl; acpi_status status; unsigned int i; @@ -1769,7 +1768,7 @@ if (ret) return ret; - status = acpi_install_address_space_handler(adev->handle, + status = acpi_install_address_space_handler(ACPI_HANDLE(dev), community->acpi_space_id, chv_pinctrl_mmio_access_handler, NULL, pctrl); @@ -1786,7 +1785,7 @@ struct intel_pinctrl *pctrl = platform_get_drvdata(pdev); const struct intel_community *community = &pctrl->communities[0]; - acpi_remove_address_space_handler(ACPI_COMPANION(&pdev->dev), + acpi_remove_address_space_handler(ACPI_HANDLE(&pdev->dev), community->acpi_space_id, chv_pinctrl_mmio_access_handler); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pinctrl/nuvoton/pinctrl-wpcm450.c +++ linux-oracle-6.5-6.5.0/drivers/pinctrl/nuvoton/pinctrl-wpcm450.c @@ -1062,13 +1062,13 @@ if (ret < 0) return ret; - gpio = &pctrl->gpio_bank[reg]; - gpio->pctrl = pctrl; - if (reg >= WPCM450_NUM_BANKS) return dev_err_probe(dev, -EINVAL, "GPIO index %d out of range!\n", reg); + gpio = &pctrl->gpio_bank[reg]; + gpio->pctrl = pctrl; + bank = &wpcm450_banks[reg]; gpio->bank = bank; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pinctrl/renesas/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/pinctrl/renesas/Kconfig @@ -235,6 +235,7 @@ depends on OF depends on ARCH_RZN1 || COMPILE_TEST select GENERIC_PINCONF + select PINMUX help This selects pinctrl driver for Renesas RZ/N1 devices. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pinctrl/starfive/pinctrl-starfive-jh7110.c +++ linux-oracle-6.5-6.5.0/drivers/pinctrl/starfive/pinctrl-starfive-jh7110.c @@ -968,8 +968,6 @@ if (ret) return dev_err_probe(dev, ret, "could not register gpiochip\n"); - irq_domain_set_pm_device(sfp->gc.irq.domain, dev); - dev_info(dev, "StarFive GPIO chip registered %d GPIOs\n", sfp->gc.ngpio); return pinctrl_enable(sfp->pctl); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/chrome/cros_ec_lpc.c +++ linux-oracle-6.5-6.5.0/drivers/platform/chrome/cros_ec_lpc.c @@ -327,8 +327,8 @@ dev_emerg(ec_dev->dev, "CrOS EC Panic Reported. Shutdown is imminent!"); blocking_notifier_call_chain(&ec_dev->panic_notifier, 0, ec_dev); kobject_uevent_env(&ec_dev->dev->kobj, KOBJ_CHANGE, (char **)env); - /* Begin orderly shutdown. Force shutdown after 1 second. */ - hw_protection_shutdown("CrOS EC Panic", 1000); + /* Begin orderly shutdown. EC will force reset after a short period. */ + hw_protection_shutdown("CrOS EC Panic", -1); /* Do not query for other events after a panic is reported */ return; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/mellanox/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/platform/mellanox/Kconfig @@ -60,6 +60,7 @@ tristate "Mellanox BlueField Firmware Boot Control driver" depends on ARM64 depends on ACPI + depends on NET help The Mellanox BlueField firmware implements functionality to request swapping the primary and alternate eMMC boot partition, @@ -80,8 +81,8 @@ config NVSW_SN2201 tristate "Nvidia SN2201 platform driver support" - depends on HWMON - depends on I2C + depends on HWMON && I2C + depends on ACPI || COMPILE_TEST select REGMAP_I2C help This driver provides support for the Nvidia SN2201 platform. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/mellanox/mlxbf-pmc.c +++ linux-oracle-6.5-6.5.0/drivers/platform/mellanox/mlxbf-pmc.c @@ -191,6 +191,7 @@ }; static const struct mlxbf_pmc_events mlxbf_pmc_trio_events_1[] = { + { 0x0, "DISABLE" }, { 0xa0, "TPIO_DATA_BEAT" }, { 0xa1, "TDMA_DATA_BEAT" }, { 0xa2, "MAP_DATA_BEAT" }, @@ -214,6 +215,7 @@ }; static const struct mlxbf_pmc_events mlxbf_pmc_trio_events_2[] = { + { 0x0, "DISABLE" }, { 0xa0, "TPIO_DATA_BEAT" }, { 0xa1, "TDMA_DATA_BEAT" }, { 0xa2, "MAP_DATA_BEAT" }, @@ -246,6 +248,7 @@ }; static const struct mlxbf_pmc_events mlxbf_pmc_ecc_events[] = { + { 0x0, "DISABLE" }, { 0x100, "ECC_SINGLE_ERROR_CNT" }, { 0x104, "ECC_DOUBLE_ERROR_CNT" }, { 0x114, "SERR_INJ" }, @@ -258,6 +261,7 @@ }; static const struct mlxbf_pmc_events mlxbf_pmc_mss_events[] = { + { 0x0, "DISABLE" }, { 0xc0, "RXREQ_MSS" }, { 0xc1, "RXDAT_MSS" }, { 0xc2, "TXRSP_MSS" }, @@ -265,6 +269,7 @@ }; static const struct mlxbf_pmc_events mlxbf_pmc_hnf_events[] = { + { 0x0, "DISABLE" }, { 0x45, "HNF_REQUESTS" }, { 0x46, "HNF_REJECTS" }, { 0x47, "ALL_BUSY" }, @@ -323,6 +328,7 @@ }; static const struct mlxbf_pmc_events mlxbf_pmc_hnfnet_events[] = { + { 0x0, "DISABLE" }, { 0x12, "CDN_REQ" }, { 0x13, "DDN_REQ" }, { 0x14, "NDN_REQ" }, @@ -892,7 +898,7 @@ uint64_t *result) { uint32_t perfcfg_offset, perfval_offset; - uint64_t perfmon_cfg, perfevt, perfctl; + uint64_t perfmon_cfg, perfevt; if (cnt_num >= pmc->block[blk_num].counters) return -EINVAL; @@ -906,25 +912,6 @@ /* Set counter in "read" mode */ perfmon_cfg = FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_ADDR, - MLXBF_PMC_PERFCTL); - perfmon_cfg |= FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_STROBE, 1); - perfmon_cfg |= FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_WR_R_B, 0); - - if (mlxbf_pmc_write(pmc->block[blk_num].mmio_base + perfcfg_offset, - MLXBF_PMC_WRITE_REG_64, perfmon_cfg)) - return -EFAULT; - - /* Check if the counter is enabled */ - - if (mlxbf_pmc_read(pmc->block[blk_num].mmio_base + perfval_offset, - MLXBF_PMC_READ_REG_64, &perfctl)) - return -EFAULT; - - if (!FIELD_GET(MLXBF_PMC_PERFCTL_EN0, perfctl)) - return -EINVAL; - - /* Set counter in "read" mode */ - perfmon_cfg = FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_ADDR, MLXBF_PMC_PERFEVT); perfmon_cfg |= FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_STROBE, 1); perfmon_cfg |= FIELD_PREP(MLXBF_PMC_PERFMON_CONFIG_WR_R_B, 0); @@ -1008,7 +995,7 @@ } else return -EINVAL; - return sprintf(buf, "0x%llx\n", value); + return sysfs_emit(buf, "0x%llx\n", value); } /* Store function for "counter" sysfs files */ @@ -1078,13 +1065,13 @@ err = mlxbf_pmc_read_event(blk_num, cnt_num, is_l3, &evt_num); if (err) - return sprintf(buf, "No event being monitored\n"); + return sysfs_emit(buf, "No event being monitored\n"); evt_name = mlxbf_pmc_get_event_name(pmc->block_name[blk_num], evt_num); if (!evt_name) return -EINVAL; - return sprintf(buf, "0x%llx: %s\n", evt_num, evt_name); + return sysfs_emit(buf, "0x%llx: %s\n", evt_num, evt_name); } /* Store function for "event" sysfs files */ @@ -1139,9 +1126,9 @@ return -EINVAL; for (i = 0, buf[0] = '\0'; i < size; ++i) { - len += sprintf(e_info, "0x%x: %s\n", events[i].evt_num, - events[i].evt_name); - if (len > PAGE_SIZE) + len += snprintf(e_info, sizeof(e_info), "0x%x: %s\n", + events[i].evt_num, events[i].evt_name); + if (len >= PAGE_SIZE) break; strcat(buf, e_info); ret = len; @@ -1168,7 +1155,7 @@ value = FIELD_GET(MLXBF_PMC_L3C_PERF_CNT_CFG_EN, perfcnt_cfg); - return sprintf(buf, "%d\n", value); + return sysfs_emit(buf, "%d\n", value); } /* Store function for "enable" sysfs files - only for l3cache */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/mellanox/mlxbf-tmfifo.c +++ linux-oracle-6.5-6.5.0/drivers/platform/mellanox/mlxbf-tmfifo.c @@ -59,6 +59,7 @@ * @vq: pointer to the virtio virtqueue * @desc: current descriptor of the pending packet * @desc_head: head descriptor of the pending packet + * @drop_desc: dummy desc for packet dropping * @cur_len: processed length of the current descriptor * @rem_len: remaining length of the pending packet * @pkt_len: total length of the pending packet @@ -75,6 +76,7 @@ struct virtqueue *vq; struct vring_desc *desc; struct vring_desc *desc_head; + struct vring_desc drop_desc; int cur_len; int rem_len; u32 pkt_len; @@ -86,6 +88,14 @@ struct mlxbf_tmfifo *fifo; }; +/* Check whether vring is in drop mode. */ +#define IS_VRING_DROP(_r) ({ \ + typeof(_r) (r) = (_r); \ + (r->desc_head == &r->drop_desc ? true : false); }) + +/* A stub length to drop maximum length packet. */ +#define VRING_DROP_DESC_MAX_LEN GENMASK(15, 0) + /* Interrupt types. */ enum { MLXBF_TM_RX_LWM_IRQ, @@ -214,7 +224,7 @@ static efi_char16_t mlxbf_tmfifo_efi_name[] = L"RshimMacAddr"; /* Maximum L2 header length. */ -#define MLXBF_TMFIFO_NET_L2_OVERHEAD 36 +#define MLXBF_TMFIFO_NET_L2_OVERHEAD (ETH_HLEN + VLAN_HLEN) /* Supported virtio-net features. */ #define MLXBF_TMFIFO_NET_FEATURES \ @@ -262,6 +272,7 @@ vring->align = SMP_CACHE_BYTES; vring->index = i; vring->vdev_id = tm_vdev->vdev.id.device; + vring->drop_desc.len = VRING_DROP_DESC_MAX_LEN; dev = &tm_vdev->vdev.dev; size = vring_size(vring->num, vring->align); @@ -367,7 +378,7 @@ return len; } -static void mlxbf_tmfifo_release_pending_pkt(struct mlxbf_tmfifo_vring *vring) +static void mlxbf_tmfifo_release_pkt(struct mlxbf_tmfifo_vring *vring) { struct vring_desc *desc_head; u32 len = 0; @@ -596,19 +607,25 @@ if (vring->cur_len + sizeof(u64) <= len) { /* The whole word. */ - if (is_rx) - memcpy(addr + vring->cur_len, &data, sizeof(u64)); - else - memcpy(&data, addr + vring->cur_len, sizeof(u64)); + if (!IS_VRING_DROP(vring)) { + if (is_rx) + memcpy(addr + vring->cur_len, &data, + sizeof(u64)); + else + memcpy(&data, addr + vring->cur_len, + sizeof(u64)); + } vring->cur_len += sizeof(u64); } else { /* Leftover bytes. */ - if (is_rx) - memcpy(addr + vring->cur_len, &data, - len - vring->cur_len); - else - memcpy(&data, addr + vring->cur_len, - len - vring->cur_len); + if (!IS_VRING_DROP(vring)) { + if (is_rx) + memcpy(addr + vring->cur_len, &data, + len - vring->cur_len); + else + memcpy(&data, addr + vring->cur_len, + len - vring->cur_len); + } vring->cur_len = len; } @@ -625,13 +642,14 @@ * flag is set. */ static void mlxbf_tmfifo_rxtx_header(struct mlxbf_tmfifo_vring *vring, - struct vring_desc *desc, + struct vring_desc **desc, bool is_rx, bool *vring_change) { struct mlxbf_tmfifo *fifo = vring->fifo; struct virtio_net_config *config; struct mlxbf_tmfifo_msg_hdr hdr; int vdev_id, hdr_len; + bool drop_rx = false; /* Read/Write packet header. */ if (is_rx) { @@ -651,8 +669,8 @@ if (ntohs(hdr.len) > __virtio16_to_cpu(virtio_legacy_is_little_endian(), config->mtu) + - MLXBF_TMFIFO_NET_L2_OVERHEAD) - return; + MLXBF_TMFIFO_NET_L2_OVERHEAD) + drop_rx = true; } else { vdev_id = VIRTIO_ID_CONSOLE; hdr_len = 0; @@ -667,16 +685,25 @@ if (!tm_dev2) return; - vring->desc = desc; + vring->desc = *desc; vring = &tm_dev2->vrings[MLXBF_TMFIFO_VRING_RX]; *vring_change = true; } + + if (drop_rx && !IS_VRING_DROP(vring)) { + if (vring->desc_head) + mlxbf_tmfifo_release_pkt(vring); + *desc = &vring->drop_desc; + vring->desc_head = *desc; + vring->desc = *desc; + } + vring->pkt_len = ntohs(hdr.len) + hdr_len; } else { /* Network virtio has an extra header. */ hdr_len = (vring->vdev_id == VIRTIO_ID_NET) ? sizeof(struct virtio_net_hdr) : 0; - vring->pkt_len = mlxbf_tmfifo_get_pkt_len(vring, desc); + vring->pkt_len = mlxbf_tmfifo_get_pkt_len(vring, *desc); hdr.type = (vring->vdev_id == VIRTIO_ID_NET) ? VIRTIO_ID_NET : VIRTIO_ID_CONSOLE; hdr.len = htons(vring->pkt_len - hdr_len); @@ -709,15 +736,23 @@ /* Get the descriptor of the next packet. */ if (!vring->desc) { desc = mlxbf_tmfifo_get_next_pkt(vring, is_rx); - if (!desc) - return false; + if (!desc) { + /* Drop next Rx packet to avoid stuck. */ + if (is_rx) { + desc = &vring->drop_desc; + vring->desc_head = desc; + vring->desc = desc; + } else { + return false; + } + } } else { desc = vring->desc; } /* Beginning of a packet. Start to Rx/Tx packet header. */ if (vring->pkt_len == 0) { - mlxbf_tmfifo_rxtx_header(vring, desc, is_rx, &vring_change); + mlxbf_tmfifo_rxtx_header(vring, &desc, is_rx, &vring_change); (*avail)--; /* Return if new packet is for another ring. */ @@ -743,17 +778,24 @@ vring->rem_len -= len; /* Get the next desc on the chain. */ - if (vring->rem_len > 0 && + if (!IS_VRING_DROP(vring) && vring->rem_len > 0 && (virtio16_to_cpu(vdev, desc->flags) & VRING_DESC_F_NEXT)) { idx = virtio16_to_cpu(vdev, desc->next); desc = &vr->desc[idx]; goto mlxbf_tmfifo_desc_done; } - /* Done and release the pending packet. */ - mlxbf_tmfifo_release_pending_pkt(vring); + /* Done and release the packet. */ desc = NULL; fifo->vring[is_rx] = NULL; + if (!IS_VRING_DROP(vring)) { + mlxbf_tmfifo_release_pkt(vring); + } else { + vring->pkt_len = 0; + vring->desc_head = NULL; + vring->desc = NULL; + return false; + } /* * Make sure the load/store are in order before @@ -933,7 +975,7 @@ /* Release the pending packet. */ if (vring->desc) - mlxbf_tmfifo_release_pending_pkt(vring); + mlxbf_tmfifo_release_pkt(vring); vq = vring->vq; if (vq) { vring->vq = NULL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/x86/asus-nb-wmi.c +++ linux-oracle-6.5-6.5.0/drivers/platform/x86/asus-nb-wmi.c @@ -480,6 +480,15 @@ }, { .callback = dmi_matched, + .ident = "ASUS ROG FLOW X16", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "GV601V"), + }, + .driver_data = &quirk_asus_tablet_mode, + }, + { + .callback = dmi_matched, .ident = "ASUS VivoBook E410MA", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/x86/eeepc-laptop.c +++ linux-oracle-6.5-6.5.0/drivers/platform/x86/eeepc-laptop.c @@ -1394,7 +1394,7 @@ * and machine-specific scripts find the fixed name convenient. But * It's also good for us to exclude multiple instances because both * our hwmon and our wlan rfkill subdevice use global ACPI objects - * (the EC and the wlan PCI slot respectively). + * (the EC and the PCI wlan slot respectively). */ result = eeepc_platform_init(eeepc); if (result) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/x86/hp/hp-wmi.c +++ linux-oracle-6.5-6.5.0/drivers/platform/x86/hp/hp-wmi.c @@ -1548,7 +1548,13 @@ .restore = hp_wmi_resume_handler, }; -static struct platform_driver hp_wmi_driver = { +/* + * hp_wmi_bios_remove() lives in .exit.text. For drivers registered via + * module_platform_driver_probe() this is ok because they cannot get unbound at + * runtime. So mark the driver struct with __refdata to prevent modpost + * triggering a section mismatch warning. + */ +static struct platform_driver hp_wmi_driver __refdata = { .driver = { .name = "hp-wmi", .pm = &hp_wmi_pm_ops, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/x86/intel/ifs/runtest.c +++ linux-oracle-6.5-6.5.0/drivers/platform/x86/intel/ifs/runtest.c @@ -331,14 +331,15 @@ switch (test->test_num) { case IFS_TYPE_SAF: if (!ifsd->loaded) - return -EPERM; - ifs_test_core(cpu, dev); + ret = -EPERM; + else + ifs_test_core(cpu, dev); break; case IFS_TYPE_ARRAY_BIST: ifs_array_test_core(cpu, dev); break; default: - return -EINVAL; + ret = -EINVAL; } out: cpus_read_unlock(); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/x86/intel_scu_ipc.c +++ linux-oracle-6.5-6.5.0/drivers/platform/x86/intel_scu_ipc.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include @@ -231,19 +232,15 @@ /* Wait till scu status is busy */ static inline int busy_loop(struct intel_scu_ipc_dev *scu) { - unsigned long end = jiffies + IPC_TIMEOUT; - - do { - u32 status; - - status = ipc_read_status(scu); - if (!(status & IPC_STATUS_BUSY)) - return (status & IPC_STATUS_ERR) ? -EIO : 0; + u8 status; + int err; - usleep_range(50, 100); - } while (time_before(jiffies, end)); + err = readx_poll_timeout(ipc_read_status, scu, status, !(status & IPC_STATUS_BUSY), + 100, jiffies_to_usecs(IPC_TIMEOUT)); + if (err) + return err; - return -ETIMEDOUT; + return (status & IPC_STATUS_ERR) ? -EIO : 0; } /* Wait till ipc ioc interrupt is received or timeout in 10 HZ */ @@ -251,10 +248,12 @@ { int status; - if (!wait_for_completion_timeout(&scu->cmd_complete, IPC_TIMEOUT)) - return -ETIMEDOUT; + wait_for_completion_timeout(&scu->cmd_complete, IPC_TIMEOUT); status = ipc_read_status(scu); + if (status & IPC_STATUS_BUSY) + return -ETIMEDOUT; + if (status & IPC_STATUS_ERR) return -EIO; @@ -266,6 +265,24 @@ return scu->irq > 0 ? ipc_wait_for_interrupt(scu) : busy_loop(scu); } +static struct intel_scu_ipc_dev *intel_scu_ipc_get(struct intel_scu_ipc_dev *scu) +{ + u8 status; + + if (!scu) + scu = ipcdev; + if (!scu) + return ERR_PTR(-ENODEV); + + status = ipc_read_status(scu); + if (status & IPC_STATUS_BUSY) { + dev_dbg(&scu->dev, "device is busy\n"); + return ERR_PTR(-EBUSY); + } + + return scu; +} + /* Read/Write power control(PMIC in Langwell, MSIC in PenWell) registers */ static int pwr_reg_rdwr(struct intel_scu_ipc_dev *scu, u16 *addr, u8 *data, u32 count, u32 op, u32 id) @@ -279,11 +296,10 @@ memset(cbuf, 0, sizeof(cbuf)); mutex_lock(&ipclock); - if (!scu) - scu = ipcdev; - if (!scu) { + scu = intel_scu_ipc_get(scu); + if (IS_ERR(scu)) { mutex_unlock(&ipclock); - return -ENODEV; + return PTR_ERR(scu); } for (nc = 0; nc < count; nc++, offset += 2) { @@ -438,13 +454,12 @@ int err; mutex_lock(&ipclock); - if (!scu) - scu = ipcdev; - if (!scu) { + scu = intel_scu_ipc_get(scu); + if (IS_ERR(scu)) { mutex_unlock(&ipclock); - return -ENODEV; + return PTR_ERR(scu); } - scu = ipcdev; + cmdval = sub << 12 | cmd; ipc_command(scu, cmdval); err = intel_scu_ipc_check_status(scu); @@ -484,11 +499,10 @@ return -EINVAL; mutex_lock(&ipclock); - if (!scu) - scu = ipcdev; - if (!scu) { + scu = intel_scu_ipc_get(scu); + if (IS_ERR(scu)) { mutex_unlock(&ipclock); - return -ENODEV; + return PTR_ERR(scu); } memcpy(inbuf, in, inlen); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/platform/x86/think-lmi.c +++ linux-oracle-6.5-6.5.0/drivers/platform/x86/think-lmi.c @@ -1248,6 +1248,24 @@ kset_unregister(tlmi_priv.authentication_kset); } +static int tlmi_validate_setting_name(struct kset *attribute_kset, char *name) +{ + struct kobject *duplicate; + + if (!strcmp(name, "Reserved")) + return -EINVAL; + + duplicate = kset_find_obj(attribute_kset, name); + if (duplicate) { + pr_debug("Duplicate attribute name found - %s\n", name); + /* kset_find_obj() returns a reference */ + kobject_put(duplicate); + return -EBUSY; + } + + return 0; +} + static int tlmi_sysfs_init(void) { int i, ret; @@ -1276,10 +1294,8 @@ continue; /* check for duplicate or reserved values */ - if (kset_find_obj(tlmi_priv.attribute_kset, tlmi_priv.setting[i]->display_name) || - !strcmp(tlmi_priv.setting[i]->display_name, "Reserved")) { - pr_debug("duplicate or reserved attribute name found - %s\n", - tlmi_priv.setting[i]->display_name); + if (tlmi_validate_setting_name(tlmi_priv.attribute_kset, + tlmi_priv.setting[i]->display_name) < 0) { kfree(tlmi_priv.setting[i]->possible_values); kfree(tlmi_priv.setting[i]); tlmi_priv.setting[i] = NULL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/power/supply/ab8500_btemp.c +++ linux-oracle-6.5-6.5.0/drivers/power/supply/ab8500_btemp.c @@ -115,7 +115,6 @@ static enum power_supply_property ab8500_btemp_props[] = { POWER_SUPPLY_PROP_PRESENT, POWER_SUPPLY_PROP_ONLINE, - POWER_SUPPLY_PROP_TECHNOLOGY, POWER_SUPPLY_PROP_TEMP, }; @@ -532,12 +531,6 @@ else val->intval = 1; break; - case POWER_SUPPLY_PROP_TECHNOLOGY: - if (di->bm->bi) - val->intval = di->bm->bi->technology; - else - val->intval = POWER_SUPPLY_TECHNOLOGY_UNKNOWN; - break; case POWER_SUPPLY_PROP_TEMP: val->intval = ab8500_btemp_get_temp(di); break; @@ -662,7 +655,7 @@ static const struct power_supply_desc ab8500_btemp_desc = { .name = "ab8500_btemp", - .type = POWER_SUPPLY_TYPE_BATTERY, + .type = POWER_SUPPLY_TYPE_UNKNOWN, .properties = ab8500_btemp_props, .num_properties = ARRAY_SIZE(ab8500_btemp_props), .get_property = ab8500_btemp_get_property, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/power/supply/ab8500_chargalg.c +++ linux-oracle-6.5-6.5.0/drivers/power/supply/ab8500_chargalg.c @@ -1720,7 +1720,7 @@ static const struct power_supply_desc ab8500_chargalg_desc = { .name = "ab8500_chargalg", - .type = POWER_SUPPLY_TYPE_BATTERY, + .type = POWER_SUPPLY_TYPE_UNKNOWN, .properties = ab8500_chargalg_props, .num_properties = ARRAY_SIZE(ab8500_chargalg_props), .get_property = ab8500_chargalg_get_property, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/power/supply/mt6370-charger.c +++ linux-oracle-6.5-6.5.0/drivers/power/supply/mt6370-charger.c @@ -324,7 +324,7 @@ if (fl_strobe) { dev_err(priv->dev, "Flash led is still in strobe mode\n"); - return ret; + return -EINVAL; } /* cfo off */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/power/supply/power_supply_sysfs.c +++ linux-oracle-6.5-6.5.0/drivers/power/supply/power_supply_sysfs.c @@ -482,6 +482,13 @@ if (ret) return ret; + /* + * Kernel generates KOBJ_REMOVE uevent in device removal path, after + * resources have been freed. Exit early to avoid use-after-free. + */ + if (psy->removing) + return 0; + prop_buf = (char *)get_zeroed_page(GFP_KERNEL); if (!prop_buf) return -ENOMEM; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/power/supply/qcom_battmgr.c +++ linux-oracle-6.5-6.5.0/drivers/power/supply/qcom_battmgr.c @@ -105,7 +105,7 @@ struct qcom_battmgr_update_request { struct pmic_glink_hdr hdr; - u32 battery_id; + __le32 battery_id; }; struct qcom_battmgr_charge_time_request { @@ -1282,9 +1282,9 @@ { struct qcom_battmgr *battmgr = container_of(work, struct qcom_battmgr, enable_work); struct qcom_battmgr_enable_request req = { - .hdr.owner = PMIC_GLINK_OWNER_BATTMGR, - .hdr.type = PMIC_GLINK_NOTIFY, - .hdr.opcode = BATTMGR_REQUEST_NOTIFICATION, + .hdr.owner = cpu_to_le32(PMIC_GLINK_OWNER_BATTMGR), + .hdr.type = cpu_to_le32(PMIC_GLINK_NOTIFY), + .hdr.opcode = cpu_to_le32(BATTMGR_REQUEST_NOTIFICATION), }; int ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/power/supply/rk817_charger.c +++ linux-oracle-6.5-6.5.0/drivers/power/supply/rk817_charger.c @@ -1045,6 +1045,13 @@ queue_delayed_work(system_wq, &charger->work, msecs_to_jiffies(8000)); } +static void rk817_cleanup_node(void *data) +{ + struct device_node *node = data; + + of_node_put(node); +} + static int rk817_charger_probe(struct platform_device *pdev) { struct rk808 *rk808 = dev_get_drvdata(pdev->dev.parent); @@ -1061,11 +1068,13 @@ if (!node) return -ENODEV; + ret = devm_add_action_or_reset(&pdev->dev, rk817_cleanup_node, node); + if (ret) + return ret; + charger = devm_kzalloc(&pdev->dev, sizeof(*charger), GFP_KERNEL); - if (!charger) { - of_node_put(node); + if (!charger) return -ENOMEM; - } charger->rk808 = rk808; @@ -1211,3 +1220,4 @@ MODULE_AUTHOR("Maya Matuszczyk "); MODULE_AUTHOR("Chris Morgan "); MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:rk817-charger"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/power/supply/rt9467-charger.c +++ linux-oracle-6.5-6.5.0/drivers/power/supply/rt9467-charger.c @@ -598,8 +598,8 @@ reinit_completion(&data->aicl_done); ret = wait_for_completion_timeout(&data->aicl_done, msecs_to_jiffies(3500)); - if (ret) - return ret; + if (ret == 0) + return -ETIMEDOUT; ret = rt9467_get_value_from_ranges(data, F_IAICR, RT9467_RANGE_IAICR, &aicr_get); if (ret) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/power/supply/ucs1002_power.c +++ linux-oracle-6.5-6.5.0/drivers/power/supply/ucs1002_power.c @@ -384,7 +384,8 @@ case POWER_SUPPLY_PROP_USB_TYPE: return ucs1002_get_usb_type(info, val); case POWER_SUPPLY_PROP_HEALTH: - return val->intval = info->health; + val->intval = info->health; + return 0; case POWER_SUPPLY_PROP_PRESENT: val->intval = info->present; return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ptp/ptp_ocp.c +++ linux-oracle-6.5-6.5.0/drivers/ptp/ptp_ocp.c @@ -3998,7 +3998,6 @@ return 0; out: - ptp_ocp_dev_release(&bp->dev); put_device(&bp->dev); return err; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pwm/pwm-atmel-tcb.c +++ linux-oracle-6.5-6.5.0/drivers/pwm/pwm-atmel-tcb.c @@ -422,13 +422,14 @@ struct atmel_tcb_pwm_chip *tcbpwm; const struct atmel_tcb_config *config; struct device_node *np = pdev->dev.of_node; - struct regmap *regmap; - struct clk *clk, *gclk = NULL; - struct clk *slow_clk; char clk_name[] = "t0_clk"; int err; int channel; + tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL); + if (tcbpwm == NULL) + return -ENOMEM; + err = of_property_read_u32(np, "reg", &channel); if (err < 0) { dev_err(&pdev->dev, @@ -437,49 +438,43 @@ return err; } - regmap = syscon_node_to_regmap(np->parent); - if (IS_ERR(regmap)) - return PTR_ERR(regmap); - - slow_clk = of_clk_get_by_name(np->parent, "slow_clk"); - if (IS_ERR(slow_clk)) - return PTR_ERR(slow_clk); + tcbpwm->regmap = syscon_node_to_regmap(np->parent); + if (IS_ERR(tcbpwm->regmap)) + return PTR_ERR(tcbpwm->regmap); + + tcbpwm->slow_clk = of_clk_get_by_name(np->parent, "slow_clk"); + if (IS_ERR(tcbpwm->slow_clk)) + return PTR_ERR(tcbpwm->slow_clk); clk_name[1] += channel; - clk = of_clk_get_by_name(np->parent, clk_name); - if (IS_ERR(clk)) - clk = of_clk_get_by_name(np->parent, "t0_clk"); - if (IS_ERR(clk)) - return PTR_ERR(clk); + tcbpwm->clk = of_clk_get_by_name(np->parent, clk_name); + if (IS_ERR(tcbpwm->clk)) + tcbpwm->clk = of_clk_get_by_name(np->parent, "t0_clk"); + if (IS_ERR(tcbpwm->clk)) { + err = PTR_ERR(tcbpwm->clk); + goto err_slow_clk; + } match = of_match_node(atmel_tcb_of_match, np->parent); config = match->data; if (config->has_gclk) { - gclk = of_clk_get_by_name(np->parent, "gclk"); - if (IS_ERR(gclk)) - return PTR_ERR(gclk); - } - - tcbpwm = devm_kzalloc(&pdev->dev, sizeof(*tcbpwm), GFP_KERNEL); - if (tcbpwm == NULL) { - err = -ENOMEM; - goto err_slow_clk; + tcbpwm->gclk = of_clk_get_by_name(np->parent, "gclk"); + if (IS_ERR(tcbpwm->gclk)) { + err = PTR_ERR(tcbpwm->gclk); + goto err_clk; + } } tcbpwm->chip.dev = &pdev->dev; tcbpwm->chip.ops = &atmel_tcb_pwm_ops; tcbpwm->chip.npwm = NPWM; tcbpwm->channel = channel; - tcbpwm->regmap = regmap; - tcbpwm->clk = clk; - tcbpwm->gclk = gclk; - tcbpwm->slow_clk = slow_clk; tcbpwm->width = config->counter_width; - err = clk_prepare_enable(slow_clk); + err = clk_prepare_enable(tcbpwm->slow_clk); if (err) - goto err_slow_clk; + goto err_gclk; spin_lock_init(&tcbpwm->lock); @@ -494,8 +489,14 @@ err_disable_clk: clk_disable_unprepare(tcbpwm->slow_clk); +err_gclk: + clk_put(tcbpwm->gclk); + +err_clk: + clk_put(tcbpwm->clk); + err_slow_clk: - clk_put(slow_clk); + clk_put(tcbpwm->slow_clk); return err; } @@ -507,8 +508,9 @@ pwmchip_remove(&tcbpwm->chip); clk_disable_unprepare(tcbpwm->slow_clk); - clk_put(tcbpwm->slow_clk); + clk_put(tcbpwm->gclk); clk_put(tcbpwm->clk); + clk_put(tcbpwm->slow_clk); } static const struct of_device_id atmel_tcb_pwm_dt_ids[] = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/pwm/pwm-lpc32xx.c +++ linux-oracle-6.5-6.5.0/drivers/pwm/pwm-lpc32xx.c @@ -51,10 +51,10 @@ if (duty_cycles > 255) duty_cycles = 255; - val = readl(lpc32xx->base + (pwm->hwpwm << 2)); + val = readl(lpc32xx->base); val &= ~0xFFFF; val |= (period_cycles << 8) | duty_cycles; - writel(val, lpc32xx->base + (pwm->hwpwm << 2)); + writel(val, lpc32xx->base); return 0; } @@ -69,9 +69,9 @@ if (ret) return ret; - val = readl(lpc32xx->base + (pwm->hwpwm << 2)); + val = readl(lpc32xx->base); val |= PWM_ENABLE; - writel(val, lpc32xx->base + (pwm->hwpwm << 2)); + writel(val, lpc32xx->base); return 0; } @@ -81,9 +81,9 @@ struct lpc32xx_pwm_chip *lpc32xx = to_lpc32xx_pwm_chip(chip); u32 val; - val = readl(lpc32xx->base + (pwm->hwpwm << 2)); + val = readl(lpc32xx->base); val &= ~PWM_ENABLE; - writel(val, lpc32xx->base + (pwm->hwpwm << 2)); + writel(val, lpc32xx->base); clk_disable_unprepare(lpc32xx->clk); } @@ -141,9 +141,9 @@ lpc32xx->chip.npwm = 1; /* If PWM is disabled, configure the output to the default value */ - val = readl(lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); + val = readl(lpc32xx->base); val &= ~PWM_PIN_LEVEL; - writel(val, lpc32xx->base + (lpc32xx->chip.pwms[0].hwpwm << 2)); + writel(val, lpc32xx->base); ret = devm_pwmchip_add(&pdev->dev, &lpc32xx->chip); if (ret < 0) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/regulator/core.c +++ linux-oracle-6.5-6.5.0/drivers/regulator/core.c @@ -5542,6 +5542,8 @@ goto rinse; } device_initialize(&rdev->dev); + dev_set_drvdata(&rdev->dev, rdev); + rdev->dev.class = ®ulator_class; spin_lock_init(&rdev->err_lock); /* @@ -5603,11 +5605,9 @@ rdev->supply_name = regulator_desc->supply_name; /* register with sysfs */ - rdev->dev.class = ®ulator_class; rdev->dev.parent = config->dev; dev_set_name(&rdev->dev, "regulator.%lu", (unsigned long) atomic_inc_return(®ulator_no)); - dev_set_drvdata(&rdev->dev, rdev); /* set regulator constraints */ if (init_data) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/regulator/mt6358-regulator.c +++ linux-oracle-6.5-6.5.0/drivers/regulator/mt6358-regulator.c @@ -43,7 +43,7 @@ .desc = { \ .name = #vreg, \ .of_match = of_match_ptr(match), \ - .ops = &mt6358_volt_range_ops, \ + .ops = &mt6358_buck_ops, \ .type = REGULATOR_VOLTAGE, \ .id = MT6358_ID_##vreg, \ .owner = THIS_MODULE, \ @@ -139,7 +139,7 @@ .desc = { \ .name = #vreg, \ .of_match = of_match_ptr(match), \ - .ops = &mt6358_volt_range_ops, \ + .ops = &mt6358_buck_ops, \ .type = REGULATOR_VOLTAGE, \ .id = MT6366_ID_##vreg, \ .owner = THIS_MODULE, \ @@ -450,7 +450,7 @@ } } -static const struct regulator_ops mt6358_volt_range_ops = { +static const struct regulator_ops mt6358_buck_ops = { .list_voltage = regulator_list_voltage_linear, .map_voltage = regulator_map_voltage_linear, .set_voltage_sel = regulator_set_voltage_sel_regmap, @@ -464,6 +464,18 @@ .get_mode = mt6358_regulator_get_mode, }; +static const struct regulator_ops mt6358_volt_range_ops = { + .list_voltage = regulator_list_voltage_linear, + .map_voltage = regulator_map_voltage_linear, + .set_voltage_sel = regulator_set_voltage_sel_regmap, + .get_voltage_sel = mt6358_get_buck_voltage_sel, + .set_voltage_time_sel = regulator_set_voltage_time_sel, + .enable = regulator_enable_regmap, + .disable = regulator_disable_regmap, + .is_enabled = regulator_is_enabled_regmap, + .get_status = mt6358_get_status, +}; + static const struct regulator_ops mt6358_volt_table_ops = { .list_voltage = regulator_list_voltage_table, .map_voltage = regulator_map_voltage_iterate, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/regulator/raa215300.c +++ linux-oracle-6.5-6.5.0/drivers/regulator/raa215300.c @@ -38,10 +38,6 @@ #define RAA215300_REG_BLOCK_EN_RTC_EN BIT(6) #define RAA215300_RTC_DEFAULT_ADDR 0x6f -const char *clkin_name = "clkin"; -const char *xin_name = "xin"; -static struct clk *clk; - static const struct regmap_config raa215300_regmap_config = { .reg_bits = 8, .val_bits = 8, @@ -51,10 +47,6 @@ static void raa215300_rtc_unregister_device(void *data) { i2c_unregister_device(data); - if (!clk) { - clk_unregister_fixed_rate(clk); - clk = NULL; - } } static int raa215300_clk_present(struct i2c_client *client, const char *name) @@ -71,8 +63,10 @@ static int raa215300_i2c_probe(struct i2c_client *client) { struct device *dev = &client->dev; - const char *clk_name = xin_name; + const char *clkin_name = "clkin"; unsigned int pmic_version, val; + const char *xin_name = "xin"; + const char *clk_name = NULL; struct regmap *regmap; int ret; @@ -114,24 +108,32 @@ ret = raa215300_clk_present(client, xin_name); if (ret < 0) { return ret; - } else if (!ret) { + } else if (ret) { + clk_name = xin_name; + } else { ret = raa215300_clk_present(client, clkin_name); if (ret < 0) return ret; - - clk_name = clkin_name; + if (ret) + clk_name = clkin_name; } - if (ret) { + if (clk_name) { char *name = pmic_version >= 0x12 ? "isl1208" : "raa215300_a0"; struct device_node *np = client->dev.of_node; u32 addr = RAA215300_RTC_DEFAULT_ADDR; struct i2c_board_info info = {}; struct i2c_client *rtc_client; + struct clk_hw *hw; ssize_t size; - clk = clk_register_fixed_rate(NULL, clk_name, NULL, 0, 32000); - clk_register_clkdev(clk, clk_name, NULL); + hw = devm_clk_hw_register_fixed_rate(dev, clk_name, NULL, 0, 32000); + if (IS_ERR(hw)) + return PTR_ERR(hw); + + ret = devm_clk_hw_register_clkdev(dev, hw, clk_name, NULL); + if (ret) + return dev_err_probe(dev, ret, "Failed to initialize clkdev\n"); if (np) { int i; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/regulator/tps6287x-regulator.c +++ linux-oracle-6.5-6.5.0/drivers/regulator/tps6287x-regulator.c @@ -119,7 +119,7 @@ .ramp_mask = TPS6287X_CTRL1_VRAMP, .ramp_delay_table = tps6287x_ramp_table, .n_ramp_values = ARRAY_SIZE(tps6287x_ramp_table), - .n_voltages = 256, + .n_voltages = 256 * ARRAY_SIZE(tps6287x_voltage_ranges), .linear_ranges = tps6287x_voltage_ranges, .n_linear_ranges = ARRAY_SIZE(tps6287x_voltage_ranges), .linear_range_selectors = tps6287x_voltage_range_sel, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/regulator/tps6594-regulator.c +++ linux-oracle-6.5-6.5.0/drivers/regulator/tps6594-regulator.c @@ -384,21 +384,19 @@ if (irq < 0) return -EINVAL; - irq_data[*irq_idx + j].dev = tps->dev; - irq_data[*irq_idx + j].type = irq_type; - irq_data[*irq_idx + j].rdev = rdev; + irq_data[*irq_idx].dev = tps->dev; + irq_data[*irq_idx].type = irq_type; + irq_data[*irq_idx].rdev = rdev; error = devm_request_threaded_irq(tps->dev, irq, NULL, - tps6594_regulator_irq_handler, - IRQF_ONESHOT, - irq_type->irq_name, - &irq_data[*irq_idx]); - (*irq_idx)++; + tps6594_regulator_irq_handler, IRQF_ONESHOT, + irq_type->irq_name, &irq_data[*irq_idx]); if (error) { dev_err(tps->dev, "tps6594 failed to request %s IRQ %d: %d\n", irq_type->irq_name, irq, error); return error; } + (*irq_idx)++; } return 0; } @@ -420,8 +418,8 @@ int error, i, irq, multi, delta; int irq_idx = 0; int buck_idx = 0; - int ext_reg_irq_nb = 2; - + size_t ext_reg_irq_nb = 2; + size_t reg_irq_nb; enum { MULTI_BUCK12, MULTI_BUCK123, @@ -484,15 +482,16 @@ } } - if (tps->chip_id == LP8764) + if (tps->chip_id == LP8764) { /* There is only 4 buck on LP8764 */ buck_configured[4] = 1; + reg_irq_nb = size_mul(REGS_INT_NB, (BUCK_NB - 1)); + } else { + reg_irq_nb = size_mul(REGS_INT_NB, (size_add(BUCK_NB, LDO_NB))); + } - irq_data = devm_kmalloc_array(tps->dev, - REGS_INT_NB * sizeof(struct tps6594_regulator_irq_data), - ARRAY_SIZE(tps6594_bucks_irq_types) + - ARRAY_SIZE(tps6594_ldos_irq_types), - GFP_KERNEL); + irq_data = devm_kmalloc_array(tps->dev, reg_irq_nb, + sizeof(struct tps6594_regulator_irq_data), GFP_KERNEL); if (!irq_data) return -ENOMEM; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/s390/crypto/zcrypt_api.c +++ linux-oracle-6.5-6.5.0/drivers/s390/crypto/zcrypt_api.c @@ -413,6 +413,7 @@ ZCRYPT_NAME "_%d", (int)MINOR(devt)); nodename[sizeof(nodename) - 1] = '\0'; if (dev_set_name(&zcdndev->device, nodename)) { + kfree(zcdndev); rc = -EINVAL; goto unlockout; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/s390/net/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/s390/net/Kconfig @@ -103,7 +103,7 @@ config ISM tristate "Support for ISM vPCI Adapter" - depends on PCI && SMC + depends on PCI default n help Select this option if you want to use the Internal Shared Memory only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/s390/scsi/zfcp_aux.c +++ linux-oracle-6.5-6.5.0/drivers/s390/scsi/zfcp_aux.c @@ -518,12 +518,12 @@ if (port) { put_device(&port->dev); retval = -EEXIST; - goto err_out; + goto err_put; } port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL); if (!port) - goto err_out; + goto err_put; rwlock_init(&port->unit_list_lock); INIT_LIST_HEAD(&port->unit_list); @@ -546,7 +546,7 @@ if (dev_set_name(&port->dev, "0x%016llx", (unsigned long long)wwpn)) { kfree(port); - goto err_out; + goto err_put; } retval = -EINVAL; @@ -563,7 +563,8 @@ return port; -err_out: +err_put: zfcp_ccw_adapter_put(adapter); +err_out: return ERR_PTR(retval); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/aacraid/commsup.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/aacraid/commsup.c @@ -1451,7 +1451,7 @@ #endif break; } - scsi_rescan_device(&device->sdev_gendev); + scsi_rescan_device(device); break; default: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/iscsi_tcp.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/iscsi_tcp.c @@ -724,6 +724,10 @@ return -EEXIST; } + err = -EINVAL; + if (!sk_is_tcp(sock->sk)) + goto free_socket; + err = iscsi_conn_bind(cls_session, cls_conn, is_leading); if (err) goto free_socket; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/lpfc/lpfc.h +++ linux-oracle-6.5-6.5.0/drivers/scsi/lpfc/lpfc.h @@ -872,6 +872,7 @@ enum lpfc_hba_bit_flags { FABRIC_COMANDS_BLOCKED, HBA_PCI_ERR, + MBX_TMO_ERR, }; struct lpfc_hba { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/lpfc/lpfc_debugfs.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/lpfc/lpfc_debugfs.c @@ -6073,7 +6073,7 @@ phba->hba_debugfs_root, phba, &lpfc_debugfs_op_multixripools); - if (!phba->debug_multixri_pools) { + if (IS_ERR(phba->debug_multixri_pools)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "0527 Cannot create debugfs multixripools\n"); goto debug_failed; @@ -6085,7 +6085,7 @@ debugfs_create_file(name, S_IFREG | 0644, phba->hba_debugfs_root, phba, &lpfc_cgn_buffer_op); - if (!phba->debug_cgn_buffer) { + if (IS_ERR(phba->debug_cgn_buffer)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "6527 Cannot create debugfs " "cgn_buffer\n"); @@ -6098,7 +6098,7 @@ debugfs_create_file(name, S_IFREG | 0644, phba->hba_debugfs_root, phba, &lpfc_rx_monitor_op); - if (!phba->debug_rx_monitor) { + if (IS_ERR(phba->debug_rx_monitor)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "6528 Cannot create debugfs " "rx_monitor\n"); @@ -6111,7 +6111,7 @@ debugfs_create_file(name, 0644, phba->hba_debugfs_root, phba, &lpfc_debugfs_ras_log); - if (!phba->debug_ras_log) { + if (IS_ERR(phba->debug_ras_log)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "6148 Cannot create debugfs" " ras_log\n"); @@ -6132,7 +6132,7 @@ debugfs_create_file(name, S_IFREG | 0644, phba->hba_debugfs_root, phba, &lpfc_debugfs_op_lockstat); - if (!phba->debug_lockstat) { + if (IS_ERR(phba->debug_lockstat)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "4610 Can't create debugfs lockstat\n"); goto debug_failed; @@ -6358,7 +6358,7 @@ debugfs_create_file(name, 0644, vport->vport_debugfs_root, vport, &lpfc_debugfs_op_scsistat); - if (!vport->debug_scsistat) { + if (IS_ERR(vport->debug_scsistat)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "4611 Cannot create debugfs scsistat\n"); goto debug_failed; @@ -6369,7 +6369,7 @@ debugfs_create_file(name, 0644, vport->vport_debugfs_root, vport, &lpfc_debugfs_op_ioktime); - if (!vport->debug_ioktime) { + if (IS_ERR(vport->debug_ioktime)) { lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT, "0815 Cannot create debugfs ioktime\n"); goto debug_failed; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/lpfc/lpfc_els.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/lpfc/lpfc_els.c @@ -9588,11 +9588,13 @@ lpfc_els_flush_cmd(struct lpfc_vport *vport) { LIST_HEAD(abort_list); + LIST_HEAD(cancel_list); struct lpfc_hba *phba = vport->phba; struct lpfc_sli_ring *pring; struct lpfc_iocbq *tmp_iocb, *piocb; u32 ulp_command; unsigned long iflags = 0; + bool mbx_tmo_err; lpfc_fabric_abort_vport(vport); @@ -9614,15 +9616,16 @@ if (phba->sli_rev == LPFC_SLI_REV4) spin_lock(&pring->ring_lock); + mbx_tmo_err = test_bit(MBX_TMO_ERR, &phba->bit_flags); /* First we need to issue aborts to outstanding cmds on txcmpl */ list_for_each_entry_safe(piocb, tmp_iocb, &pring->txcmplq, list) { - if (piocb->cmd_flag & LPFC_IO_LIBDFC) + if (piocb->cmd_flag & LPFC_IO_LIBDFC && !mbx_tmo_err) continue; if (piocb->vport != vport) continue; - if (piocb->cmd_flag & LPFC_DRIVER_ABORTED) + if (piocb->cmd_flag & LPFC_DRIVER_ABORTED && !mbx_tmo_err) continue; /* On the ELS ring we can have ELS_REQUESTs or @@ -9641,8 +9644,8 @@ */ if (phba->link_state == LPFC_LINK_DOWN) piocb->cmd_cmpl = lpfc_cmpl_els_link_down; - } - if (ulp_command == CMD_GEN_REQUEST64_CR) + } else if (ulp_command == CMD_GEN_REQUEST64_CR || + mbx_tmo_err) list_add_tail(&piocb->dlist, &abort_list); } @@ -9654,11 +9657,19 @@ list_for_each_entry_safe(piocb, tmp_iocb, &abort_list, dlist) { spin_lock_irqsave(&phba->hbalock, iflags); list_del_init(&piocb->dlist); - lpfc_sli_issue_abort_iotag(phba, pring, piocb, NULL); + if (mbx_tmo_err) + list_move_tail(&piocb->list, &cancel_list); + else + lpfc_sli_issue_abort_iotag(phba, pring, piocb, NULL); + spin_unlock_irqrestore(&phba->hbalock, iflags); } - /* Make sure HBA is alive */ - lpfc_issue_hb_tmo(phba); + if (!list_empty(&cancel_list)) + lpfc_sli_cancel_iocbs(phba, &cancel_list, IOSTAT_LOCAL_REJECT, + IOERR_SLI_ABORTED); + else + /* Make sure HBA is alive */ + lpfc_issue_hb_tmo(phba); if (!list_empty(&abort_list)) lpfc_printf_vlog(vport, KERN_ERR, LOG_TRACE_EVENT, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/lpfc/lpfc_init.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/lpfc/lpfc_init.c @@ -7550,6 +7550,8 @@ void lpfc_reset_hba(struct lpfc_hba *phba) { + int rc = 0; + /* If resets are disabled then set error state and return. */ if (!phba->cfg_enable_hba_reset) { phba->link_state = LPFC_HBA_ERROR; @@ -7560,13 +7562,25 @@ if (phba->sli.sli_flag & LPFC_SLI_ACTIVE) { lpfc_offline_prep(phba, LPFC_MBX_WAIT); } else { + if (test_bit(MBX_TMO_ERR, &phba->bit_flags)) { + /* Perform a PCI function reset to start from clean */ + rc = lpfc_pci_function_reset(phba); + lpfc_els_flush_all_cmd(phba); + } lpfc_offline_prep(phba, LPFC_MBX_NO_WAIT); lpfc_sli_flush_io_rings(phba); } lpfc_offline(phba); - lpfc_sli_brdrestart(phba); - lpfc_online(phba); - lpfc_unblock_mgmt_io(phba); + clear_bit(MBX_TMO_ERR, &phba->bit_flags); + if (unlikely(rc)) { + lpfc_printf_log(phba, KERN_ERR, LOG_SLI, + "8888 PCI function reset failed rc %x\n", + rc); + } else { + lpfc_sli_brdrestart(phba); + lpfc_online(phba); + lpfc_unblock_mgmt_io(phba); + } } /** only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/lpfc/lpfc_sli.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/lpfc/lpfc_sli.c @@ -3935,6 +3935,8 @@ uint64_t sli_intr, cnt; phba = from_timer(phba, t, eratt_poll); + if (!(phba->hba_flag & HBA_SETUP)) + return; /* Here we will also keep track of interrupts per sec of the hba */ sli_intr = phba->sli.slistat.sli_intr; @@ -7693,7 +7695,9 @@ spin_unlock_irq(&phba->hbalock); } else { lpfc_printf_log(phba, KERN_ERR, LOG_TRACE_EVENT, - "3161 Failure to post sgl to port.\n"); + "3161 Failure to post sgl to port,status %x " + "blkcnt %d totalcnt %d postcnt %d\n", + status, block_cnt, total_cnt, post_cnt); return -EIO; } @@ -8478,6 +8482,7 @@ spin_unlock_irq(&phba->hbalock); } } + phba->hba_flag &= ~HBA_SETUP; lpfc_sli4_dip(phba); @@ -9282,6 +9287,7 @@ * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing * it to fail all outstanding SCSI IO. */ + set_bit(MBX_TMO_ERR, &phba->bit_flags); spin_lock_irq(&phba->pport->work_port_lock); phba->pport->work_port_events &= ~WORKER_MBOX_TMO; spin_unlock_irq(&phba->pport->work_port_lock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/megaraid/megaraid_sas.h +++ linux-oracle-6.5-6.5.0/drivers/scsi/megaraid/megaraid_sas.h @@ -2332,7 +2332,7 @@ u32 support_morethan256jbod; /* FW support for more than 256 PD/JBOD */ bool use_seqnum_jbod_fp; /* Added for PD sequence */ bool smp_affinity_enable; - spinlock_t crashdump_lock; + struct mutex crashdump_lock; struct megasas_register_set __iomem *reg_set; u32 __iomem *reply_post_host_index_addr[MR_MAX_MSIX_REG_ARRAY]; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/megaraid/megaraid_sas_base.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/megaraid/megaraid_sas_base.c @@ -3271,14 +3271,13 @@ struct megasas_instance *instance = (struct megasas_instance *) shost->hostdata; int val = 0; - unsigned long flags; if (kstrtoint(buf, 0, &val) != 0) return -EINVAL; - spin_lock_irqsave(&instance->crashdump_lock, flags); + mutex_lock(&instance->crashdump_lock); instance->fw_crash_buffer_offset = val; - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); return strlen(buf); } @@ -3293,24 +3292,23 @@ unsigned long dmachunk = CRASH_DMA_BUF_SIZE; unsigned long chunk_left_bytes; unsigned long src_addr; - unsigned long flags; u32 buff_offset; - spin_lock_irqsave(&instance->crashdump_lock, flags); + mutex_lock(&instance->crashdump_lock); buff_offset = instance->fw_crash_buffer_offset; if (!instance->crash_dump_buf || !((instance->fw_crash_state == AVAILABLE) || (instance->fw_crash_state == COPYING))) { dev_err(&instance->pdev->dev, "Firmware crash dump is not available\n"); - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); return -EINVAL; } if (buff_offset > (instance->fw_crash_buffer_size * dmachunk)) { dev_err(&instance->pdev->dev, "Firmware crash dump offset is out of range\n"); - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); return 0; } @@ -3322,7 +3320,7 @@ src_addr = (unsigned long)instance->crash_buf[buff_offset / dmachunk] + (buff_offset % dmachunk); memcpy(buf, (void *)src_addr, size); - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); return size; } @@ -3347,7 +3345,6 @@ struct megasas_instance *instance = (struct megasas_instance *) shost->hostdata; int val = 0; - unsigned long flags; if (kstrtoint(buf, 0, &val) != 0) return -EINVAL; @@ -3361,9 +3358,9 @@ instance->fw_crash_state = val; if ((val == COPIED) || (val == COPY_ERROR)) { - spin_lock_irqsave(&instance->crashdump_lock, flags); + mutex_lock(&instance->crashdump_lock); megasas_free_host_crash_buffer(instance); - spin_unlock_irqrestore(&instance->crashdump_lock, flags); + mutex_unlock(&instance->crashdump_lock); if (val == COPY_ERROR) dev_info(&instance->pdev->dev, "application failed to " "copy Firmware crash dump\n"); @@ -7422,7 +7419,7 @@ init_waitqueue_head(&instance->int_cmd_wait_q); init_waitqueue_head(&instance->abort_cmd_wait_q); - spin_lock_init(&instance->crashdump_lock); + mutex_init(&instance->crashdump_lock); spin_lock_init(&instance->mfi_pool_lock); spin_lock_init(&instance->hba_lock); spin_lock_init(&instance->stream_lock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/mvumi.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/mvumi.c @@ -1500,7 +1500,7 @@ sdev = scsi_device_lookup(mhba->shost, 0, id, 0); if (sdev) { - scsi_rescan_device(&sdev->sdev_gendev); + scsi_rescan_device(sdev); scsi_device_put(sdev); } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/pm8001/pm8001_hwi.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/pm8001/pm8001_hwi.c @@ -4180,7 +4180,7 @@ payload.sas_identify.dev_type = SAS_END_DEVICE; payload.sas_identify.initiator_bits = SAS_PROTOCOL_ALL; memcpy(payload.sas_identify.sas_addr, - pm8001_ha->sas_addr, SAS_ADDR_SIZE); + &pm8001_ha->phy[phy_id].dev_sas_addr, SAS_ADDR_SIZE); payload.sas_identify.phy_id = phy_id; return pm8001_mpi_build_cmd(pm8001_ha, 0, opcode, &payload, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/pm8001/pm8001_init.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/pm8001/pm8001_init.c @@ -275,7 +275,6 @@ return ret; } -static u32 pm8001_setup_irq(struct pm8001_hba_info *pm8001_ha); static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha); /** @@ -296,13 +295,6 @@ pm8001_dbg(pm8001_ha, INIT, "pm8001_alloc: PHY:%x\n", pm8001_ha->chip->n_phy); - /* Setup Interrupt */ - rc = pm8001_setup_irq(pm8001_ha); - if (rc) { - pm8001_dbg(pm8001_ha, FAIL, - "pm8001_setup_irq failed [ret: %d]\n", rc); - goto err_out; - } /* Request Interrupt */ rc = pm8001_request_irq(pm8001_ha); if (rc) @@ -1034,47 +1026,38 @@ } #endif -static u32 pm8001_setup_irq(struct pm8001_hba_info *pm8001_ha) -{ - struct pci_dev *pdev; - - pdev = pm8001_ha->pdev; - -#ifdef PM8001_USE_MSIX - if (pci_find_capability(pdev, PCI_CAP_ID_MSIX)) - return pm8001_setup_msix(pm8001_ha); - pm8001_dbg(pm8001_ha, INIT, "MSIX not supported!!!\n"); -#endif - return 0; -} - /** * pm8001_request_irq - register interrupt * @pm8001_ha: our ha struct. */ static u32 pm8001_request_irq(struct pm8001_hba_info *pm8001_ha) { - struct pci_dev *pdev; + struct pci_dev *pdev = pm8001_ha->pdev; +#ifdef PM8001_USE_MSIX int rc; - pdev = pm8001_ha->pdev; + if (pci_find_capability(pdev, PCI_CAP_ID_MSIX)) { + rc = pm8001_setup_msix(pm8001_ha); + if (rc) { + pm8001_dbg(pm8001_ha, FAIL, + "pm8001_setup_irq failed [ret: %d]\n", rc); + return rc; + } -#ifdef PM8001_USE_MSIX - if (pdev->msix_cap && pci_msi_enabled()) - return pm8001_request_msix(pm8001_ha); - else { - pm8001_dbg(pm8001_ha, INIT, "MSIX not supported!!!\n"); - goto intx; + if (pdev->msix_cap && pci_msi_enabled()) + return pm8001_request_msix(pm8001_ha); } + + pm8001_dbg(pm8001_ha, INIT, "MSIX not supported!!!\n"); #endif -intx: /* initialize the INT-X interrupt */ pm8001_ha->irq_vector[0].irq_id = 0; pm8001_ha->irq_vector[0].drv_inst = pm8001_ha; - rc = request_irq(pdev->irq, pm8001_interrupt_handler_intx, IRQF_SHARED, - pm8001_ha->name, SHOST_TO_SAS_HA(pm8001_ha->shost)); - return rc; + + return request_irq(pdev->irq, pm8001_interrupt_handler_intx, + IRQF_SHARED, pm8001_ha->name, + SHOST_TO_SAS_HA(pm8001_ha->shost)); } /** only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/pm8001/pm80xx_hwi.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/pm8001/pm80xx_hwi.c @@ -3671,10 +3671,12 @@ (struct set_ctrl_cfg_resp *)(piomb + 4); u32 status = le32_to_cpu(pPayload->status); u32 err_qlfr_pgcd = le32_to_cpu(pPayload->err_qlfr_pgcd); + u32 tag = le32_to_cpu(pPayload->tag); pm8001_dbg(pm8001_ha, MSG, "SET CONTROLLER RESP: status 0x%x qlfr_pgcd 0x%x\n", status, err_qlfr_pgcd); + pm8001_tag_free(pm8001_ha, tag); return 0; } @@ -4676,7 +4678,7 @@ payload.sas_identify.dev_type = SAS_END_DEVICE; payload.sas_identify.initiator_bits = SAS_PROTOCOL_ALL; memcpy(payload.sas_identify.sas_addr, - &pm8001_ha->sas_addr, SAS_ADDR_SIZE); + &pm8001_ha->phy[phy_id].dev_sas_addr, SAS_ADDR_SIZE); payload.sas_identify.phy_id = phy_id; return pm8001_mpi_build_cmd(pm8001_ha, 0, opcode, &payload, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qedf/qedf_io.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qedf/qedf_io.c @@ -1904,6 +1904,7 @@ goto drop_rdata_kref; } + spin_lock_irqsave(&fcport->rport_lock, flags); if (!test_bit(QEDF_CMD_OUTSTANDING, &io_req->flags) || test_bit(QEDF_CMD_IN_CLEANUP, &io_req->flags) || test_bit(QEDF_CMD_IN_ABORT, &io_req->flags)) { @@ -1911,17 +1912,20 @@ "io_req xid=0x%x sc_cmd=%p already in cleanup or abort processing or already completed.\n", io_req->xid, io_req->sc_cmd); rc = 1; + spin_unlock_irqrestore(&fcport->rport_lock, flags); goto drop_rdata_kref; } + /* Set the command type to abort */ + io_req->cmd_type = QEDF_ABTS; + spin_unlock_irqrestore(&fcport->rport_lock, flags); + kref_get(&io_req->refcount); xid = io_req->xid; qedf->control_requests++; qedf->packet_aborts++; - /* Set the command type to abort */ - io_req->cmd_type = QEDF_ABTS; io_req->return_scsi_cmd_on_abts = return_scsi_cmd_on_abts; set_bit(QEDF_CMD_IN_ABORT, &io_req->flags); @@ -2210,7 +2214,9 @@ refcount, fcport, fcport->rdata->ids.port_id); /* Cleanup cmds re-use the same TID as the original I/O */ + spin_lock_irqsave(&fcport->rport_lock, flags); io_req->cmd_type = QEDF_CLEANUP; + spin_unlock_irqrestore(&fcport->rport_lock, flags); io_req->return_scsi_cmd_on_abts = return_scsi_cmd_on_abts; init_completion(&io_req->cleanup_done); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qedf/qedf_main.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qedf/qedf_main.c @@ -2805,6 +2805,8 @@ struct qedf_ioreq *io_req; struct qedf_rport *fcport; u32 comp_type; + u8 io_comp_type; + unsigned long flags; comp_type = (cqe->cqe_data >> FCOE_CQE_CQE_TYPE_SHIFT) & FCOE_CQE_CQE_TYPE_MASK; @@ -2838,11 +2840,14 @@ return; } + spin_lock_irqsave(&fcport->rport_lock, flags); + io_comp_type = io_req->cmd_type; + spin_unlock_irqrestore(&fcport->rport_lock, flags); switch (comp_type) { case FCOE_GOOD_COMPLETION_CQE_TYPE: atomic_inc(&fcport->free_sqes); - switch (io_req->cmd_type) { + switch (io_comp_type) { case QEDF_SCSI_CMD: qedf_scsi_completion(qedf, cqe, io_req); break; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_attr.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_attr.c @@ -3093,8 +3093,6 @@ vha->flags.difdix_supported = 1; ql_dbg(ql_dbg_user, vha, 0x7082, "Registered for DIF/DIX type 1 and 3 protection.\n"); - if (ql2xenabledif == 1) - prot = SHOST_DIX_TYPE0_PROTECTION; scsi_host_set_prot(vha->host, prot | SHOST_DIF_TYPE1_PROTECTION | SHOST_DIF_TYPE2_PROTECTION only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_dbg.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_dbg.c @@ -18,7 +18,7 @@ * | Queue Command and IO tracing | 0x3074 | 0x300b | * | | | 0x3027-0x3028 | * | | | 0x303d-0x3041 | - * | | | 0x302d,0x3033 | + * | | | 0x302e,0x3033 | * | | | 0x3036,0x3038 | * | | | 0x303a | * | DPC Thread | 0x4023 | 0x4002,0x4013 | only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_def.h +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_def.h @@ -466,6 +466,7 @@ } struct tmf_arg { + struct list_head tmf_elem; struct qla_qpair *qpair; struct fc_port *fcport; struct scsi_qla_host *vha; @@ -2541,7 +2542,6 @@ typedef struct fc_port { struct list_head list; struct scsi_qla_host *vha; - struct list_head tmf_pending; unsigned int conf_compl_supported:1; unsigned int deleted:2; @@ -2562,9 +2562,6 @@ unsigned int do_prli_nvme:1; uint8_t nvme_flag; - uint8_t active_tmf; -#define MAX_ACTIVE_TMF 8 - uint8_t node_name[WWN_SIZE]; uint8_t port_name[WWN_SIZE]; port_id_t d_id; @@ -3745,6 +3742,16 @@ u16 pad; }; +struct qla_fw_res { + u16 iocb_total; + u16 iocb_limit; + atomic_t iocb_used; + + u16 exch_total; + u16 exch_limit; + atomic_t exch_used; +}; + #define QLA_IOCB_PCT_LIMIT 95 struct qla_buf_pool { @@ -4387,7 +4394,6 @@ uint8_t aen_mbx_count; atomic_t num_pend_mbx_stage1; atomic_t num_pend_mbx_stage2; - atomic_t num_pend_mbx_stage3; uint16_t frame_payload_size; uint32_t login_retry_count; @@ -4656,6 +4662,8 @@ uint32_t flt_region_aux_img_status_sec; }; uint8_t active_image; + uint8_t active_tmf; +#define MAX_ACTIVE_TMF 8 /* Needed for BEACON */ uint16_t beacon_blink_led; @@ -4670,6 +4678,8 @@ struct qla_msix_entry *msix_entries; + struct list_head tmf_pending; + struct list_head tmf_active; struct list_head vp_list; /* list of VP */ unsigned long vp_idx_map[(MAX_MULTI_ID_FABRIC / 8) / sizeof(unsigned long)]; @@ -4799,6 +4809,7 @@ struct els_reject elsrej; u8 edif_post_stop_cnt_down; struct qla_vp_map *vp_map; + struct qla_fw_res fwres ____cacheline_aligned; }; #define RX_ELS_SIZE (roundup(sizeof(struct enode) + ELS_MAX_PAYLOAD, SMP_CACHE_BYTES)) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_dfs.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_dfs.c @@ -116,7 +116,7 @@ sprintf(wwn, "pn-%016llx", wwn_to_u64(fp->port_name)); fp->dfs_rport_dir = debugfs_create_dir(wwn, vha->dfs_rport_root); - if (!fp->dfs_rport_dir) + if (IS_ERR(fp->dfs_rport_dir)) return; if (NVME_TARGET(vha->hw, fp)) debugfs_create_file("dev_loss_tmo", 0600, fp->dfs_rport_dir, @@ -276,6 +276,16 @@ seq_printf(s, "estimate exchange used[%d] high water limit [%d] n", exch_used, ha->base_qpair->fwres.exch_limit); + + if (ql2xenforce_iocb_limit == 2) { + iocbs_used = atomic_read(&ha->fwres.iocb_used); + exch_used = atomic_read(&ha->fwres.exch_used); + seq_printf(s, " estimate iocb2 used [%d] high water limit [%d]\n", + iocbs_used, ha->fwres.iocb_limit); + + seq_printf(s, " estimate exchange2 used[%d] high water limit [%d] \n", + exch_used, ha->fwres.exch_limit); + } } return 0; @@ -698,14 +708,14 @@ if (IS_QLA27XX(ha) || IS_QLA83XX(ha) || IS_QLA28XX(ha)) { ha->tgt.dfs_naqp = debugfs_create_file("naqp", 0400, ha->dfs_dir, vha, &dfs_naqp_ops); - if (!ha->tgt.dfs_naqp) { + if (IS_ERR(ha->tgt.dfs_naqp)) { ql_log(ql_log_warn, vha, 0xd011, "Unable to create debugFS naqp node.\n"); goto out; } } vha->dfs_rport_root = debugfs_create_dir("rports", ha->dfs_dir); - if (!vha->dfs_rport_root) { + if (IS_ERR(vha->dfs_rport_root)) { ql_log(ql_log_warn, vha, 0xd012, "Unable to create debugFS rports node.\n"); goto out; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_gbl.h +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_gbl.h @@ -143,6 +143,7 @@ void qla_edif_clear_appdata(struct scsi_qla_host *vha, struct fc_port *fcport); const char *sc_to_str(uint16_t cmd); +void qla_adjust_iocb_limit(scsi_qla_host_t *vha); /* * Global Data in qla_os.c source file. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_inline.h +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_inline.h @@ -386,6 +386,7 @@ RESOURCE_IOCB = BIT_0, RESOURCE_EXCH = BIT_1, /* exchange */ RESOURCE_FORCE = BIT_2, + RESOURCE_HA = BIT_3, }; static inline int @@ -393,7 +394,7 @@ { u16 iocbs_used, i; u16 exch_used; - struct qla_hw_data *ha = qp->vha->hw; + struct qla_hw_data *ha = qp->hw; if (!ql2xenforce_iocb_limit) { iores->res_type = RESOURCE_NONE; @@ -428,15 +429,69 @@ return -ENOSPC; } } + + if (ql2xenforce_iocb_limit == 2) { + if ((iores->iocb_cnt + atomic_read(&ha->fwres.iocb_used)) >= + ha->fwres.iocb_limit) { + iores->res_type = RESOURCE_NONE; + return -ENOSPC; + } + + if (iores->res_type & RESOURCE_EXCH) { + if ((iores->exch_cnt + atomic_read(&ha->fwres.exch_used)) >= + ha->fwres.exch_limit) { + iores->res_type = RESOURCE_NONE; + return -ENOSPC; + } + } + } + force: qp->fwres.iocbs_used += iores->iocb_cnt; qp->fwres.exch_used += iores->exch_cnt; + if (ql2xenforce_iocb_limit == 2) { + atomic_add(iores->iocb_cnt, &ha->fwres.iocb_used); + atomic_add(iores->exch_cnt, &ha->fwres.exch_used); + iores->res_type |= RESOURCE_HA; + } return 0; } +/* + * decrement to zero. This routine will not decrement below zero + * @v: pointer of type atomic_t + * @amount: amount to decrement from v + */ +static void qla_atomic_dtz(atomic_t *v, int amount) +{ + int c, old, dec; + + c = atomic_read(v); + for (;;) { + dec = c - amount; + if (unlikely(dec < 0)) + dec = 0; + + old = atomic_cmpxchg((v), c, dec); + if (likely(old == c)) + break; + c = old; + } +} + static inline void qla_put_fw_resources(struct qla_qpair *qp, struct iocb_resource *iores) { + struct qla_hw_data *ha = qp->hw; + + if (iores->res_type & RESOURCE_HA) { + if (iores->res_type & RESOURCE_IOCB) + qla_atomic_dtz(&ha->fwres.iocb_used, iores->iocb_cnt); + + if (iores->res_type & RESOURCE_EXCH) + qla_atomic_dtz(&ha->fwres.exch_used, iores->exch_cnt); + } + if (iores->res_type & RESOURCE_IOCB) { if (qp->fwres.iocbs_used >= iores->iocb_cnt) { qp->fwres.iocbs_used -= iores->iocb_cnt; @@ -522,7 +577,7 @@ static inline struct qla_qpair * qla_mapq_nvme_select_qpair(struct qla_hw_data *ha, struct qla_qpair *qpair) { - int cpuid = smp_processor_id(); + int cpuid = raw_smp_processor_id(); if (qpair->cpuid != cpuid && ha->qp_cpu_map[cpuid]) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_iocb.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_iocb.c @@ -3882,6 +3882,7 @@ { mrk->entry_type = MARKER_TYPE; mrk->modifier = sp->u.iocb_cmd.u.tmf.modifier; + mrk->handle = make_handle(sp->qpair->req->id, sp->handle); if (sp->u.iocb_cmd.u.tmf.modifier != MK_SYNC_ALL) { mrk->nport_handle = cpu_to_le16(sp->u.iocb_cmd.u.tmf.loop_id); int_to_scsilun(sp->u.iocb_cmd.u.tmf.lun, (struct scsi_lun *)&mrk->lun); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_isr.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_isr.c @@ -1121,8 +1121,12 @@ unsigned long flags; fc_port_t *fcport = NULL; - if (!vha->hw->flags.fw_started) + if (!vha->hw->flags.fw_started) { + ql_log(ql_log_warn, vha, 0x50ff, + "Dropping AEN - %04x %04x %04x %04x.\n", + mb[0], mb[1], mb[2], mb[3]); return; + } /* Setup to process RIO completion. */ handle_cnt = 0; @@ -2539,7 +2543,6 @@ case CS_PORT_BUSY: case CS_INCOMPLETE: case CS_PORT_UNAVAILABLE: - case CS_TIMEOUT: case CS_RESET: if (atomic_read(&fcport->state) == FCS_ONLINE) { ql_dbg(ql_dbg_disc, fcport->vha, 0x3021, @@ -3814,7 +3817,7 @@ if (!ha->flags.fw_started) return; - if (rsp->qpair->cpuid != smp_processor_id() || !rsp->qpair->rcv_intr) { + if (rsp->qpair->cpuid != raw_smp_processor_id() || !rsp->qpair->rcv_intr) { rsp->qpair->rcv_intr = 1; if (!rsp->qpair->cpu_mapped) @@ -4305,7 +4308,7 @@ } ha = qpair->hw; - queue_work_on(smp_processor_id(), ha->wq, &qpair->q_work); + queue_work(ha->wq, &qpair->q_work); return IRQ_HANDLED; } @@ -4331,7 +4334,7 @@ wrt_reg_dword(®->hccr, HCCRX_CLR_RISC_INT); spin_unlock_irqrestore(&ha->hardware_lock, flags); - queue_work_on(smp_processor_id(), ha->wq, &qpair->q_work); + queue_work(ha->wq, &qpair->q_work); return IRQ_HANDLED; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_mbx.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_mbx.c @@ -273,7 +273,6 @@ spin_unlock_irqrestore(&ha->hardware_lock, flags); wait_time = jiffies; - atomic_inc(&ha->num_pend_mbx_stage3); if (!wait_for_completion_timeout(&ha->mbx_intr_comp, mcp->tov * HZ)) { ql_dbg(ql_dbg_mbx, vha, 0x117a, @@ -290,7 +289,6 @@ spin_unlock_irqrestore(&ha->hardware_lock, flags); atomic_dec(&ha->num_pend_mbx_stage2); - atomic_dec(&ha->num_pend_mbx_stage3); rval = QLA_ABORTED; goto premature_exit; } @@ -302,11 +300,9 @@ ha->flags.mbox_busy = 0; spin_unlock_irqrestore(&ha->hardware_lock, flags); atomic_dec(&ha->num_pend_mbx_stage2); - atomic_dec(&ha->num_pend_mbx_stage3); rval = QLA_ABORTED; goto premature_exit; } - atomic_dec(&ha->num_pend_mbx_stage3); if (time_after(jiffies, wait_time + 5 * HZ)) ql_log(ql_log_warn, vha, 0x1015, "cmd=0x%x, waited %d msecs\n", @@ -2213,6 +2209,9 @@ ql_dbg(ql_dbg_mbx + ql_dbg_verbose, vha, 0x1054, "Entered %s.\n", __func__); + if (!ha->flags.fw_started) + return QLA_FUNCTION_FAILED; + mcp->mb[0] = MBC_GET_FIRMWARE_STATE; mcp->out_mb = MBX_0; if (IS_FWI2_CAPABLE(vha->hw)) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_nvme.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_nvme.c @@ -132,6 +132,7 @@ "Failed to allocate qpair\n"); return -EINVAL; } + qla_adjust_iocb_limit(vha); } *handle = qpair; @@ -667,7 +668,7 @@ rval = qla2x00_start_nvme_mq(sp); if (rval != QLA_SUCCESS) { - ql_log(ql_log_warn, vha, 0x212d, + ql_dbg(ql_dbg_io + ql_dbg_verbose, vha, 0x212d, "qla2x00_start_nvme_mq failed = %d\n", rval); sp->priv = NULL; priv->sp = NULL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_os.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_os.c @@ -44,10 +44,11 @@ MODULE_PARM_DESC(ql2xfulldump_on_mpifail, "Set this to take full dump on MPI hang."); -int ql2xenforce_iocb_limit = 1; +int ql2xenforce_iocb_limit = 2; module_param(ql2xenforce_iocb_limit, int, S_IRUGO | S_IWUSR); MODULE_PARM_DESC(ql2xenforce_iocb_limit, - "Enforce IOCB throttling, to avoid FW congestion. (default: 1)"); + "Enforce IOCB throttling, to avoid FW congestion. (default: 2) " + "1: track usage per queue, 2: track usage per adapter"); /* * CT6 CTX allocation cache @@ -1488,8 +1489,9 @@ goto eh_reset_failed; } err = 3; - if (qla2x00_eh_wait_for_pending_commands(vha, sdev->id, - sdev->lun, WAIT_LUN) != QLA_SUCCESS) { + if (qla2x00_eh_wait_for_pending_commands(vha, fcport->d_id.b24, + cmd->device->lun, + WAIT_LUN) != QLA_SUCCESS) { ql_log(ql_log_warn, vha, 0x800d, "wait for pending cmds failed for cmd=%p.\n", cmd); goto eh_reset_failed; @@ -1555,8 +1557,8 @@ goto eh_reset_failed; } err = 3; - if (qla2x00_eh_wait_for_pending_commands(vha, sdev->id, - 0, WAIT_TARGET) != QLA_SUCCESS) { + if (qla2x00_eh_wait_for_pending_commands(vha, fcport->d_id.b24, 0, + WAIT_TARGET) != QLA_SUCCESS) { ql_log(ql_log_warn, vha, 0x800d, "wait for pending cmds failed for cmd=%p.\n", cmd); goto eh_reset_failed; @@ -3006,9 +3008,10 @@ ha->max_exchg = FW_MAX_EXCHANGES_CNT; atomic_set(&ha->num_pend_mbx_stage1, 0); atomic_set(&ha->num_pend_mbx_stage2, 0); - atomic_set(&ha->num_pend_mbx_stage3, 0); atomic_set(&ha->zio_threshold, DEFAULT_ZIO_THRESHOLD); ha->last_zio_threshold = DEFAULT_ZIO_THRESHOLD; + INIT_LIST_HEAD(&ha->tmf_pending); + INIT_LIST_HEAD(&ha->tmf_active); /* Assign ISP specific operations. */ if (IS_QLA2100(ha)) { @@ -3285,6 +3288,13 @@ host->max_id = ha->max_fibre_devices; host->cmd_per_lun = 3; host->unique_id = host->host_no; + + if (ql2xenabledif && ql2xenabledif != 2) { + ql_log(ql_log_warn, base_vha, 0x302d, + "Invalid value for ql2xenabledif, resetting it to default (2)\n"); + ql2xenabledif = 2; + } + if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) host->max_cmd_len = 32; else @@ -3521,8 +3531,6 @@ base_vha->flags.difdix_supported = 1; ql_dbg(ql_dbg_init, base_vha, 0x00f1, "Registering for DIF/DIX type 1 and 3 protection.\n"); - if (ql2xenabledif == 1) - prot = SHOST_DIX_TYPE0_PROTECTION; if (ql2xprotmask) scsi_host_set_prot(host, ql2xprotmask); else only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/qla_target.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/qla_target.c @@ -1068,10 +1068,6 @@ (struct imm_ntfy_from_isp *)sess->iocb, SRB_NACK_LOGO); } - spin_lock_irqsave(&vha->work_lock, flags); - sess->flags &= ~FCF_ASYNC_SENT; - spin_unlock_irqrestore(&vha->work_lock, flags); - spin_lock_irqsave(&ha->tgt.sess_lock, flags); if (sess->se_sess) { sess->se_sess = NULL; @@ -1081,7 +1077,6 @@ qla2x00_set_fcport_disc_state(sess, DSC_DELETED); sess->fw_login_state = DSC_LS_PORT_UNAVAIL; - sess->deleted = QLA_SESS_DELETED; if (sess->login_succ && !IS_SW_RESV_ADDR(sess->d_id)) { vha->fcport_count--; @@ -1133,10 +1128,15 @@ sess->explicit_logout = 0; spin_unlock_irqrestore(&ha->tgt.sess_lock, flags); - sess->free_pending = 0; qla2x00_dfs_remove_rport(vha, sess); + spin_lock_irqsave(&vha->work_lock, flags); + sess->flags &= ~FCF_ASYNC_SENT; + sess->deleted = QLA_SESS_DELETED; + sess->free_pending = 0; + spin_unlock_irqrestore(&vha->work_lock, flags); + ql_dbg(ql_dbg_disc, vha, 0xf001, "Unregistration of sess %p %8phC finished fcp_cnt %d\n", sess, sess->port_name, vha->fcport_count); @@ -1185,12 +1185,12 @@ * management from being sent. */ sess->flags |= FCF_ASYNC_SENT; + sess->deleted = QLA_SESS_DELETION_IN_PROGRESS; spin_unlock_irqrestore(&sess->vha->work_lock, flags); if (sess->se_sess) vha->hw->tgt.tgt_ops->clear_nacl_from_fcport_map(sess); - sess->deleted = QLA_SESS_DELETION_IN_PROGRESS; qla2x00_set_fcport_disc_state(sess, DSC_DELETE_PEND); sess->last_rscn_gen = sess->rscn_gen; sess->last_login_gen = sess->login_gen; @@ -4425,8 +4425,7 @@ queue_work_on(cmd->se_cmd.cpuid, qla_tgt_wq, &cmd->work); } else if (ha->msix_count) { if (cmd->atio.u.isp24.fcp_cmnd.rddata) - queue_work_on(smp_processor_id(), qla_tgt_wq, - &cmd->work); + queue_work(qla_tgt_wq, &cmd->work); else queue_work_on(cmd->se_cmd.cpuid, qla_tgt_wq, &cmd->work); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/qla2xxx/tcm_qla2xxx.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/qla2xxx/tcm_qla2xxx.c @@ -310,7 +310,7 @@ cmd->trc_flags |= TRC_CMD_DONE; INIT_WORK(&cmd->work, tcm_qla2xxx_complete_free); - queue_work_on(smp_processor_id(), tcm_qla2xxx_free_wq, &cmd->work); + queue_work(tcm_qla2xxx_free_wq, &cmd->work); } /* @@ -547,7 +547,7 @@ cmd->trc_flags |= TRC_DATA_IN; cmd->cmd_in_wq = 1; INIT_WORK(&cmd->work, tcm_qla2xxx_handle_data_work); - queue_work_on(smp_processor_id(), tcm_qla2xxx_free_wq, &cmd->work); + queue_work(tcm_qla2xxx_free_wq, &cmd->work); } static int tcm_qla2xxx_chk_dif_tags(uint32_t tag) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/scsi.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/scsi.c @@ -613,6 +613,17 @@ bool cdl_supported; unsigned char *buf; + /* + * Support for CDL was defined in SPC-5. Ignore devices reporting an + * lower SPC version. This also avoids problems with old drives choking + * on MAINTENANCE_IN / MI_REPORT_SUPPORTED_OPERATION_CODES with a + * service action specified, as done in scsi_cdl_check_cmd(). + */ + if (sdev->scsi_level < SCSI_SPC_5) { + sdev->cdl_supported = 0; + return; + } + buf = kmalloc(SCSI_CDL_CHECK_BUF_LEN, GFP_KERNEL); if (!buf) { sdev->cdl_supported = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/scsi_lib.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/scsi_lib.c @@ -2458,7 +2458,7 @@ envp[idx++] = "SDEV_MEDIA_CHANGE=1"; break; case SDEV_EVT_INQUIRY_CHANGE_REPORTED: - scsi_rescan_device(&sdev->sdev_gendev); + scsi_rescan_device(sdev); envp[idx++] = "SDEV_UA=INQUIRY_DATA_HAS_CHANGED"; break; case SDEV_EVT_CAPACITY_CHANGE_REPORTED: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/scsi_priv.h +++ linux-oracle-6.5-6.5.0/drivers/scsi/scsi_priv.h @@ -138,7 +138,6 @@ extern int scsi_scan_host_selected(struct Scsi_Host *, unsigned int, unsigned int, u64, enum scsi_scan_mode); extern void scsi_forget_host(struct Scsi_Host *); -extern void scsi_rescan_device(struct device *); /* scsi_sysctl.c */ #ifdef CONFIG_SYSCTL only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/scsi_scan.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/scsi_scan.c @@ -822,7 +822,7 @@ * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so * non-zero LUNs can be scanned. */ - sdev->scsi_level = inq_result[2] & 0x07; + sdev->scsi_level = inq_result[2] & 0x0f; if (sdev->scsi_level >= 2 || (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1)) sdev->scsi_level++; @@ -1619,12 +1619,25 @@ } EXPORT_SYMBOL(scsi_add_device); -void scsi_rescan_device(struct device *dev) +int scsi_rescan_device(struct scsi_device *sdev) { - struct scsi_device *sdev = to_scsi_device(dev); + struct device *dev = &sdev->sdev_gendev; + int ret = 0; device_lock(dev); + /* + * Bail out if the device or its queue are not running. Otherwise, + * the rescan may block waiting for commands to be executed, with us + * holding the device lock. This can result in a potential deadlock + * in the power management core code when system resume is on-going. + */ + if (sdev->sdev_state != SDEV_RUNNING || + blk_queue_pm_only(sdev->request_queue)) { + ret = -EWOULDBLOCK; + goto unlock; + } + scsi_attach_vpd(sdev); scsi_cdl_check(sdev); @@ -1638,7 +1651,11 @@ drv->rescan(dev); module_put(dev->driver->owner); } + +unlock: device_unlock(dev); + + return ret; } EXPORT_SYMBOL(scsi_rescan_device); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/scsi_sysfs.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/scsi_sysfs.c @@ -747,7 +747,7 @@ store_rescan_field (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { - scsi_rescan_device(dev); + scsi_rescan_device(to_scsi_device(dev)); return count; } static DEVICE_ATTR(rescan, S_IWUSR, NULL, store_rescan_field); @@ -840,7 +840,7 @@ * waiting for pending I/O to finish. */ blk_mq_run_hw_queues(sdev->request_queue, true); - scsi_rescan_device(dev); + scsi_rescan_device(sdev); } return ret == 0 ? count : -EINVAL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/sd.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/sd.c @@ -213,18 +213,32 @@ } static ssize_t -manage_start_stop_show(struct device *dev, struct device_attribute *attr, - char *buf) +manage_start_stop_show(struct device *dev, + struct device_attribute *attr, char *buf) { struct scsi_disk *sdkp = to_scsi_disk(dev); struct scsi_device *sdp = sdkp->device; - return sprintf(buf, "%u\n", sdp->manage_start_stop); + return sysfs_emit(buf, "%u\n", + sdp->manage_system_start_stop && + sdp->manage_runtime_start_stop); } +static DEVICE_ATTR_RO(manage_start_stop); static ssize_t -manage_start_stop_store(struct device *dev, struct device_attribute *attr, - const char *buf, size_t count) +manage_system_start_stop_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct scsi_disk *sdkp = to_scsi_disk(dev); + struct scsi_device *sdp = sdkp->device; + + return sysfs_emit(buf, "%u\n", sdp->manage_system_start_stop); +} + +static ssize_t +manage_system_start_stop_store(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) { struct scsi_disk *sdkp = to_scsi_disk(dev); struct scsi_device *sdp = sdkp->device; @@ -236,11 +250,42 @@ if (kstrtobool(buf, &v)) return -EINVAL; - sdp->manage_start_stop = v; + sdp->manage_system_start_stop = v; return count; } -static DEVICE_ATTR_RW(manage_start_stop); +static DEVICE_ATTR_RW(manage_system_start_stop); + +static ssize_t +manage_runtime_start_stop_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct scsi_disk *sdkp = to_scsi_disk(dev); + struct scsi_device *sdp = sdkp->device; + + return sysfs_emit(buf, "%u\n", sdp->manage_runtime_start_stop); +} + +static ssize_t +manage_runtime_start_stop_store(struct device *dev, + struct device_attribute *attr, + const char *buf, size_t count) +{ + struct scsi_disk *sdkp = to_scsi_disk(dev); + struct scsi_device *sdp = sdkp->device; + bool v; + + if (!capable(CAP_SYS_ADMIN)) + return -EACCES; + + if (kstrtobool(buf, &v)) + return -EINVAL; + + sdp->manage_runtime_start_stop = v; + + return count; +} +static DEVICE_ATTR_RW(manage_runtime_start_stop); static ssize_t allow_restart_show(struct device *dev, struct device_attribute *attr, char *buf) @@ -572,6 +617,8 @@ &dev_attr_FUA.attr, &dev_attr_allow_restart.attr, &dev_attr_manage_start_stop.attr, + &dev_attr_manage_system_start_stop.attr, + &dev_attr_manage_runtime_start_stop.attr, &dev_attr_protection_type.attr, &dev_attr_protection_mode.attr, &dev_attr_app_tag_own.attr, @@ -3733,7 +3780,8 @@ device_del(&sdkp->disk_dev); del_gendisk(sdkp->disk); - sd_shutdown(dev); + if (!sdkp->suspended) + sd_shutdown(dev); put_disk(sdkp->disk); return 0; @@ -3810,13 +3858,20 @@ sd_sync_cache(sdkp, NULL); } - if (system_state != SYSTEM_RESTART && sdkp->device->manage_start_stop) { + if (system_state != SYSTEM_RESTART && + sdkp->device->manage_system_start_stop) { sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n"); sd_start_stop_device(sdkp, 0); } } -static int sd_suspend_common(struct device *dev, bool ignore_stop_errors) +static inline bool sd_do_start_stop(struct scsi_device *sdev, bool runtime) +{ + return (sdev->manage_system_start_stop && !runtime) || + (sdev->manage_runtime_start_stop && runtime); +} + +static int sd_suspend_common(struct device *dev, bool runtime) { struct scsi_disk *sdkp = dev_get_drvdata(dev); struct scsi_sense_hdr sshdr; @@ -3848,15 +3903,18 @@ } } - if (sdkp->device->manage_start_stop) { + if (sd_do_start_stop(sdkp->device, runtime)) { if (!sdkp->device->silence_suspend) sd_printk(KERN_NOTICE, sdkp, "Stopping disk\n"); /* an error is not worth aborting a system sleep */ ret = sd_start_stop_device(sdkp, 0); - if (ignore_stop_errors) + if (!runtime) ret = 0; } + if (!ret) + sdkp->suspended = true; + return ret; } @@ -3865,15 +3923,15 @@ if (pm_runtime_suspended(dev)) return 0; - return sd_suspend_common(dev, true); + return sd_suspend_common(dev, false); } static int sd_suspend_runtime(struct device *dev) { - return sd_suspend_common(dev, false); + return sd_suspend_common(dev, true); } -static int sd_resume(struct device *dev) +static int sd_resume(struct device *dev, bool runtime) { struct scsi_disk *sdkp = dev_get_drvdata(dev); int ret = 0; @@ -3881,16 +3939,21 @@ if (!sdkp) /* E.g.: runtime resume at the start of sd_probe() */ return 0; - if (!sdkp->device->manage_start_stop) + if (!sd_do_start_stop(sdkp->device, runtime)) { + sdkp->suspended = false; return 0; + } if (!sdkp->device->no_start_on_resume) { sd_printk(KERN_NOTICE, sdkp, "Starting disk\n"); ret = sd_start_stop_device(sdkp, 1); } - if (!ret) + if (!ret) { opal_unlock_from_suspend(sdkp->opal_dev); + sdkp->suspended = false; + } + return ret; } @@ -3899,7 +3962,7 @@ if (pm_runtime_suspended(dev)) return 0; - return sd_resume(dev); + return sd_resume(dev, false); } static int sd_resume_runtime(struct device *dev) @@ -3926,7 +3989,7 @@ "Failed to clear sense data\n"); } - return sd_resume(dev); + return sd_resume(dev, true); } /** only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/sd.h +++ linux-oracle-6.5-6.5.0/drivers/scsi/sd.h @@ -131,6 +131,7 @@ u8 provisioning_mode; u8 zeroing_mode; u8 nr_actuators; /* Number of actuators */ + bool suspended; /* Disk is suspended (stopped) */ unsigned ATO : 1; /* state of disk ATO bit */ unsigned cache_override : 1; /* temp override of WCE,RCD */ unsigned WCE : 1; /* state of disk WCE bit */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/smartpqi/smartpqi_init.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/smartpqi/smartpqi_init.c @@ -2257,7 +2257,7 @@ device->advertised_queue_depth = device->queue_depth; scsi_change_queue_depth(device->sdev, device->advertised_queue_depth); if (device->rescan) { - scsi_rescan_device(&device->sdev->sdev_gendev); + scsi_rescan_device(device->sdev); device->rescan = false; } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/storvsc_drv.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/storvsc_drv.c @@ -472,7 +472,7 @@ sdev = scsi_device_lookup(wrk->host, 0, wrk->tgt_id, wrk->lun); if (!sdev) goto done; - scsi_rescan_device(&sdev->sdev_gendev); + scsi_rescan_device(sdev); scsi_device_put(sdev); done: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/scsi/virtio_scsi.c +++ linux-oracle-6.5-6.5.0/drivers/scsi/virtio_scsi.c @@ -325,7 +325,7 @@ /* Handle "Parameters changed", "Mode parameters changed", and "Capacity data has changed". */ if (asc == 0x2a && (ascq == 0x00 || ascq == 0x01 || ascq == 0x09)) - scsi_rescan_device(&sdev->sdev_gendev); + scsi_rescan_device(sdev); scsi_device_put(sdev); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/soc/imx/soc-imx8m.c +++ linux-oracle-6.5-6.5.0/drivers/soc/imx/soc-imx8m.c @@ -100,6 +100,7 @@ { void __iomem *ocotp_base; struct device_node *np; + struct clk *clk; u32 offset = of_machine_is_compatible("fsl,imx8mp") ? IMX8MP_OCOTP_UID_OFFSET : 0; @@ -109,11 +110,20 @@ ocotp_base = of_iomap(np, 0); WARN_ON(!ocotp_base); + clk = of_clk_get_by_name(np, NULL); + if (IS_ERR(clk)) { + WARN_ON(IS_ERR(clk)); + return; + } + + clk_prepare_enable(clk); soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH + offset); soc_uid <<= 32; soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW + offset); + clk_disable_unprepare(clk); + clk_put(clk); iounmap(ocotp_base); of_node_put(np); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/soc/qcom/qmi_encdec.c +++ linux-oracle-6.5-6.5.0/drivers/soc/qcom/qmi_encdec.c @@ -534,8 +534,8 @@ decoded_bytes += rc; } - if (string_len > temp_ei->elem_len) { - pr_err("%s: String len %d > Max Len %d\n", + if (string_len >= temp_ei->elem_len) { + pr_err("%s: String len %d >= Max Len %d\n", __func__, string_len, temp_ei->elem_len); return -ETOOSMALL; } else if (string_len > tlv_len) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/spi/spi-gxp.c +++ linux-oracle-6.5-6.5.0/drivers/spi/spi-gxp.c @@ -195,7 +195,7 @@ return ret; } - return write_len; + return 0; } static int do_gxp_exec_mem_op(struct spi_mem *mem, const struct spi_mem_op *op) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/spi/spi-intel-pci.c +++ linux-oracle-6.5-6.5.0/drivers/spi/spi-intel-pci.c @@ -72,6 +72,7 @@ { PCI_VDEVICE(INTEL, 0x4da4), (unsigned long)&bxt_info }, { PCI_VDEVICE(INTEL, 0x51a4), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0x54a4), (unsigned long)&cnl_info }, + { PCI_VDEVICE(INTEL, 0x5794), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0x7a24), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0x7aa4), (unsigned long)&cnl_info }, { PCI_VDEVICE(INTEL, 0x7e23), (unsigned long)&cnl_info }, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/spi/spi-nxp-fspi.c +++ linux-oracle-6.5-6.5.0/drivers/spi/spi-nxp-fspi.c @@ -1085,6 +1085,13 @@ fspi_writel(f, FSPI_AHBCR_PREF_EN | FSPI_AHBCR_RDADDROPT, base + FSPI_AHBCR); + /* Reset the FLSHxCR1 registers. */ + reg = FSPI_FLSHXCR1_TCSH(0x3) | FSPI_FLSHXCR1_TCSS(0x3); + fspi_writel(f, reg, base + FSPI_FLSHA1CR1); + fspi_writel(f, reg, base + FSPI_FLSHA2CR1); + fspi_writel(f, reg, base + FSPI_FLSHB1CR1); + fspi_writel(f, reg, base + FSPI_FLSHB2CR1); + /* AHB Read - Set lut sequence ID for all CS. */ fspi_writel(f, SEQID_LUT, base + FSPI_FLSHA1CR2); fspi_writel(f, SEQID_LUT, base + FSPI_FLSHA2CR2); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/spi/spi-stm32.c +++ linux-oracle-6.5-6.5.0/drivers/spi/spi-stm32.c @@ -275,6 +275,7 @@ * @fifo_size: size of the embedded fifo in bytes * @cur_midi: master inter-data idleness in ns * @cur_speed: speed configured in Hz + * @cur_half_period: time of a half bit in us * @cur_bpw: number of bits in a single SPI data frame * @cur_fthlv: fifo threshold level (data frames in a single data packet) * @cur_comm: SPI communication mode @@ -302,6 +303,7 @@ unsigned int cur_midi; unsigned int cur_speed; + unsigned int cur_half_period; unsigned int cur_bpw; unsigned int cur_fthlv; unsigned int cur_comm; @@ -466,6 +468,8 @@ spi->cur_speed = spi->clk_rate / (1 << mbrdiv); + spi->cur_half_period = DIV_ROUND_CLOSEST(USEC_PER_SEC, 2 * spi->cur_speed); + return mbrdiv - 1; } @@ -707,6 +711,10 @@ return; } + /* Add a delay to make sure that transmission is ended. */ + if (spi->cur_half_period) + udelay(spi->cur_half_period); + if (spi->cur_usedma && spi->dma_tx) dmaengine_terminate_async(spi->dma_tx); if (spi->cur_usedma && spi->dma_rx) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/spi/spi-sun6i.c +++ linux-oracle-6.5-6.5.0/drivers/spi/spi-sun6i.c @@ -83,6 +83,9 @@ #define SUN6I_XMIT_CNT_REG 0x34 #define SUN6I_BURST_CTL_CNT_REG 0x38 +#define SUN6I_BURST_CTL_CNT_STC_MASK GENMASK(23, 0) +#define SUN6I_BURST_CTL_CNT_DRM BIT(28) +#define SUN6I_BURST_CTL_CNT_QUAD_EN BIT(29) #define SUN6I_TXDATA_REG 0x200 #define SUN6I_RXDATA_REG 0x300 @@ -90,6 +93,7 @@ struct sun6i_spi_cfg { unsigned long fifo_depth; bool has_clk_ctl; + u32 mode_bits; }; struct sun6i_spi { @@ -102,6 +106,7 @@ struct reset_control *rstc; struct completion done; + struct completion dma_rx_done; const u8 *tx_buf; u8 *rx_buf; @@ -196,6 +201,13 @@ return SUN6I_MAX_XFER_SIZE - 1; } +static void sun6i_spi_dma_rx_cb(void *param) +{ + struct sun6i_spi *sspi = param; + + complete(&sspi->dma_rx_done); +} + static int sun6i_spi_prepare_dma(struct sun6i_spi *sspi, struct spi_transfer *tfr) { @@ -207,7 +219,7 @@ struct dma_slave_config rxconf = { .direction = DMA_DEV_TO_MEM, .src_addr = sspi->dma_addr_rx, - .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES, + .src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE, .src_maxburst = 8, }; @@ -220,6 +232,8 @@ DMA_PREP_INTERRUPT); if (!rxdesc) return -EINVAL; + rxdesc->callback_param = sspi; + rxdesc->callback = sun6i_spi_dma_rx_cb; } txdesc = NULL; @@ -266,7 +280,7 @@ unsigned int div, div_cdr1, div_cdr2, timeout; unsigned int start, end, tx_time; unsigned int trig_level; - unsigned int tx_len = 0, rx_len = 0; + unsigned int tx_len = 0, rx_len = 0, nbits = 0; bool use_dma; int ret = 0; u32 reg; @@ -275,6 +289,7 @@ return -EINVAL; reinit_completion(&sspi->done); + reinit_completion(&sspi->dma_rx_done); sspi->tx_buf = tfr->tx_buf; sspi->rx_buf = tfr->rx_buf; sspi->len = tfr->len; @@ -418,13 +433,29 @@ sun6i_spi_write(sspi, SUN6I_GBL_CTL_REG, reg); /* Setup the transfer now... */ - if (sspi->tx_buf) + if (sspi->tx_buf) { tx_len = tfr->len; + nbits = tfr->tx_nbits; + } else if (tfr->rx_buf) { + nbits = tfr->rx_nbits; + } + + switch (nbits) { + case SPI_NBITS_DUAL: + reg = SUN6I_BURST_CTL_CNT_DRM; + break; + case SPI_NBITS_QUAD: + reg = SUN6I_BURST_CTL_CNT_QUAD_EN; + break; + case SPI_NBITS_SINGLE: + default: + reg = FIELD_PREP(SUN6I_BURST_CTL_CNT_STC_MASK, tx_len); + } /* Setup the counters */ + sun6i_spi_write(sspi, SUN6I_BURST_CTL_CNT_REG, reg); sun6i_spi_write(sspi, SUN6I_BURST_CNT_REG, tfr->len); sun6i_spi_write(sspi, SUN6I_XMIT_CNT_REG, tx_len); - sun6i_spi_write(sspi, SUN6I_BURST_CTL_CNT_REG, tx_len); if (!use_dma) { /* Fill the TX FIFO */ @@ -459,6 +490,22 @@ start = jiffies; timeout = wait_for_completion_timeout(&sspi->done, msecs_to_jiffies(tx_time)); + + if (!use_dma) { + sun6i_spi_drain_fifo(sspi); + } else { + if (timeout && rx_len) { + /* + * Even though RX on the peripheral side has finished + * RX DMA might still be in flight + */ + timeout = wait_for_completion_timeout(&sspi->dma_rx_done, + timeout); + if (!timeout) + dev_warn(&master->dev, "RX DMA timeout\n"); + } + } + end = jiffies; if (!timeout) { dev_warn(&master->dev, @@ -486,7 +533,6 @@ /* Transfer complete */ if (status & SUN6I_INT_CTL_TC) { sun6i_spi_write(sspi, SUN6I_INT_STA_REG, SUN6I_INT_CTL_TC); - sun6i_spi_drain_fifo(sspi); complete(&sspi->done); return IRQ_HANDLED; } @@ -623,7 +669,8 @@ master->set_cs = sun6i_spi_set_cs; master->transfer_one = sun6i_spi_transfer_one; master->num_chipselect = 4; - master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST; + master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST | + sspi->cfg->mode_bits; master->bits_per_word_mask = SPI_BPW_MASK(8); master->dev.of_node = pdev->dev.of_node; master->auto_runtime_pm = true; @@ -644,6 +691,7 @@ } init_completion(&sspi->done); + init_completion(&sspi->dma_rx_done); sspi->rstc = devm_reset_control_get_exclusive(&pdev->dev, NULL); if (IS_ERR(sspi->rstc)) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/spi/spi-zynqmp-gqspi.c +++ linux-oracle-6.5-6.5.0/drivers/spi/spi-zynqmp-gqspi.c @@ -1342,9 +1342,9 @@ return 0; clk_dis_all: - pm_runtime_put_sync(&pdev->dev); - pm_runtime_set_suspended(&pdev->dev); pm_runtime_disable(&pdev->dev); + pm_runtime_put_noidle(&pdev->dev); + pm_runtime_set_suspended(&pdev->dev); clk_disable_unprepare(xqspi->refclk); clk_dis_pclk: clk_disable_unprepare(xqspi->pclk); @@ -1368,11 +1368,15 @@ { struct zynqmp_qspi *xqspi = platform_get_drvdata(pdev); + pm_runtime_get_sync(&pdev->dev); + zynqmp_gqspi_write(xqspi, GQSPI_EN_OFST, 0x0); + + pm_runtime_disable(&pdev->dev); + pm_runtime_put_noidle(&pdev->dev); + pm_runtime_set_suspended(&pdev->dev); clk_disable_unprepare(xqspi->refclk); clk_disable_unprepare(xqspi->pclk); - pm_runtime_set_suspended(&pdev->dev); - pm_runtime_disable(&pdev->dev); } MODULE_DEVICE_TABLE(of, zynqmp_qspi_of_match); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/staging/wlan-ng/prism2usb.c +++ linux-oracle-6.5-6.5.0/drivers/staging/wlan-ng/prism2usb.c @@ -11,45 +11,45 @@ static const struct usb_device_id usb_prism_tbl[] = { PRISM_DEV(0x04bb, 0x0922, "IOData AirPort WN-B11/USBS"), - PRISM_DEV(0x07aa, 0x0012, "Corega Wireless LAN USB Stick-11"), - PRISM_DEV(0x09aa, 0x3642, "Prism2.x 11Mbps WLAN USB Adapter"), - PRISM_DEV(0x1668, 0x0408, "Actiontec Prism2.5 11Mbps WLAN USB Adapter"), - PRISM_DEV(0x1668, 0x0421, "Actiontec Prism2.5 11Mbps WLAN USB Adapter"), - PRISM_DEV(0x1915, 0x2236, "Linksys WUSB11v3.0 11Mbps WLAN USB Adapter"), - PRISM_DEV(0x066b, 0x2212, "Linksys WUSB11v2.5 11Mbps WLAN USB Adapter"), - PRISM_DEV(0x066b, 0x2213, "Linksys WUSB12v1.1 11Mbps WLAN USB Adapter"), + PRISM_DEV(0x07aa, 0x0012, "Corega USB Wireless LAN Stick-11"), + PRISM_DEV(0x09aa, 0x3642, "Prism2.x 11Mbps USB WLAN Adapter"), + PRISM_DEV(0x1668, 0x0408, "Actiontec Prism2.5 11Mbps USB WLAN Adapter"), + PRISM_DEV(0x1668, 0x0421, "Actiontec Prism2.5 11Mbps USB WLAN Adapter"), + PRISM_DEV(0x1915, 0x2236, "Linksys WUSB11v3.0 11Mbps USB WLAN Adapter"), + PRISM_DEV(0x066b, 0x2212, "Linksys WUSB11v2.5 11Mbps USB WLAN Adapter"), + PRISM_DEV(0x066b, 0x2213, "Linksys WUSB12v1.1 11Mbps USB WLAN Adapter"), PRISM_DEV(0x0411, 0x0016, "Melco WLI-USB-S11 11Mbps WLAN Adapter"), - PRISM_DEV(0x08de, 0x7a01, "PRISM25 IEEE 802.11 Mini USB Adapter"), - PRISM_DEV(0x8086, 0x1111, "Intel PRO/Wireless 2011B LAN USB Adapter"), + PRISM_DEV(0x08de, 0x7a01, "PRISM25 USB IEEE 802.11 Mini Adapter"), + PRISM_DEV(0x8086, 0x1111, "Intel PRO/Wireless 2011B USB LAN Adapter"), PRISM_DEV(0x0d8e, 0x7a01, "PRISM25 IEEE 802.11 Mini USB Adapter"), - PRISM_DEV(0x045e, 0x006e, "Microsoft MN510 Wireless USB Adapter"), + PRISM_DEV(0x045e, 0x006e, "Microsoft MN510 USB Wireless Adapter"), PRISM_DEV(0x0967, 0x0204, "Acer Warplink USB Adapter"), PRISM_DEV(0x0cde, 0x0002, "Z-Com 725/726 Prism2.5 USB/USB Integrated"), - PRISM_DEV(0x0cde, 0x0005, "Z-Com Xl735 Wireless 802.11b USB Adapter"), - PRISM_DEV(0x413c, 0x8100, "Dell TrueMobile 1180 Wireless USB Adapter"), - PRISM_DEV(0x0b3b, 0x1601, "ALLNET 0193 11Mbps WLAN USB Adapter"), - PRISM_DEV(0x0b3b, 0x1602, "ZyXEL ZyAIR B200 Wireless USB Adapter"), - PRISM_DEV(0x0baf, 0x00eb, "USRobotics USR1120 Wireless USB Adapter"), + PRISM_DEV(0x0cde, 0x0005, "Z-Com Xl735 USB Wireless 802.11b Adapter"), + PRISM_DEV(0x413c, 0x8100, "Dell TrueMobile 1180 USB Wireless Adapter"), + PRISM_DEV(0x0b3b, 0x1601, "ALLNET 0193 11Mbps USB WLAN Adapter"), + PRISM_DEV(0x0b3b, 0x1602, "ZyXEL ZyAIR B200 USB Wireless Adapter"), + PRISM_DEV(0x0baf, 0x00eb, "USRobotics USR1120 USB Wireless Adapter"), PRISM_DEV(0x0411, 0x0027, "Melco WLI-USB-KS11G 11Mbps WLAN Adapter"), PRISM_DEV(0x04f1, 0x3009, "JVC MP-XP7250 Builtin USB WLAN Adapter"), PRISM_DEV(0x0846, 0x4110, "NetGear MA111"), PRISM_DEV(0x03f3, 0x0020, "Adaptec AWN-8020 USB WLAN Adapter"), - PRISM_DEV(0x2821, 0x3300, "ASUS-WL140 / Hawking HighDB Wireless USB Adapter"), - PRISM_DEV(0x2001, 0x3700, "DWL-122 Wireless USB Adapter"), - PRISM_DEV(0x2001, 0x3702, "DWL-120 Rev F Wireless USB Adapter"), + PRISM_DEV(0x2821, 0x3300, "ASUS-WL140 / Hawking HighDB USB Wireless Adapter"), + PRISM_DEV(0x2001, 0x3700, "DWL-122 USB Wireless Adapter"), + PRISM_DEV(0x2001, 0x3702, "DWL-120 Rev F USB Wireless Adapter"), PRISM_DEV(0x50c2, 0x4013, "Averatec USB WLAN Adapter"), - PRISM_DEV(0x2c02, 0x14ea, "Planex GW-US11H WLAN USB Adapter"), - PRISM_DEV(0x124a, 0x168b, "Airvast PRISM3 WLAN USB Adapter"), + PRISM_DEV(0x2c02, 0x14ea, "Planex GW-US11H USB WLAN Adapter"), + PRISM_DEV(0x124a, 0x168b, "Airvast PRISM3 USB WLAN Adapter"), PRISM_DEV(0x083a, 0x3503, "T-Sinus 111 USB WLAN Adapter"), PRISM_DEV(0x0411, 0x0044, "Melco WLI-USB-KB11 11Mbps WLAN Adapter"), - PRISM_DEV(0x1668, 0x6106, "ROPEX FreeLan 802.11b USB Adapter"), - PRISM_DEV(0x124a, 0x4017, "Pheenet WL-503IA 802.11b USB Adapter"), + PRISM_DEV(0x1668, 0x6106, "ROPEX FreeLan USB 802.11b Adapter"), + PRISM_DEV(0x124a, 0x4017, "Pheenet WL-503IA USB 802.11b Adapter"), PRISM_DEV(0x0bb2, 0x0302, "Ambit Microsystems Corp."), - PRISM_DEV(0x9016, 0x182d, "Sitecom WL-022 802.11b USB Adapter"), + PRISM_DEV(0x9016, 0x182d, "Sitecom WL-022 USB 802.11b Adapter"), PRISM_DEV(0x0543, 0x0f01, "ViewSonic Airsync USB Adapter 11Mbps (Prism2.5)"), PRISM_DEV(0x067c, 0x1022, - "Siemens SpeedStream 1022 11Mbps WLAN USB Adapter"), + "Siemens SpeedStream 1022 11Mbps USB WLAN Adapter"), PRISM_DEV(0x049f, 0x0033, "Compaq/Intel W100 PRO/Wireless 11Mbps multiport WLAN Adapter"), { } /* terminator */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/target/iscsi/iscsi_target_configfs.c +++ linux-oracle-6.5-6.5.0/drivers/target/iscsi/iscsi_target_configfs.c @@ -533,102 +533,102 @@ spin_lock_bh(&se_nacl->nacl_sess_lock); se_sess = se_nacl->nacl_sess; if (!se_sess) { - rb += sprintf(page+rb, "No active iSCSI Session for Initiator" + rb += sysfs_emit_at(page, rb, "No active iSCSI Session for Initiator" " Endpoint: %s\n", se_nacl->initiatorname); } else { sess = se_sess->fabric_sess_ptr; - rb += sprintf(page+rb, "InitiatorName: %s\n", + rb += sysfs_emit_at(page, rb, "InitiatorName: %s\n", sess->sess_ops->InitiatorName); - rb += sprintf(page+rb, "InitiatorAlias: %s\n", + rb += sysfs_emit_at(page, rb, "InitiatorAlias: %s\n", sess->sess_ops->InitiatorAlias); - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "LIO Session ID: %u ISID: 0x%6ph TSIH: %hu ", sess->sid, sess->isid, sess->tsih); - rb += sprintf(page+rb, "SessionType: %s\n", + rb += sysfs_emit_at(page, rb, "SessionType: %s\n", (sess->sess_ops->SessionType) ? "Discovery" : "Normal"); - rb += sprintf(page+rb, "Session State: "); + rb += sysfs_emit_at(page, rb, "Session State: "); switch (sess->session_state) { case TARG_SESS_STATE_FREE: - rb += sprintf(page+rb, "TARG_SESS_FREE\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_FREE\n"); break; case TARG_SESS_STATE_ACTIVE: - rb += sprintf(page+rb, "TARG_SESS_STATE_ACTIVE\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_STATE_ACTIVE\n"); break; case TARG_SESS_STATE_LOGGED_IN: - rb += sprintf(page+rb, "TARG_SESS_STATE_LOGGED_IN\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_STATE_LOGGED_IN\n"); break; case TARG_SESS_STATE_FAILED: - rb += sprintf(page+rb, "TARG_SESS_STATE_FAILED\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_STATE_FAILED\n"); break; case TARG_SESS_STATE_IN_CONTINUE: - rb += sprintf(page+rb, "TARG_SESS_STATE_IN_CONTINUE\n"); + rb += sysfs_emit_at(page, rb, "TARG_SESS_STATE_IN_CONTINUE\n"); break; default: - rb += sprintf(page+rb, "ERROR: Unknown Session" + rb += sysfs_emit_at(page, rb, "ERROR: Unknown Session" " State!\n"); break; } - rb += sprintf(page+rb, "---------------------[iSCSI Session" + rb += sysfs_emit_at(page, rb, "---------------------[iSCSI Session" " Values]-----------------------\n"); - rb += sprintf(page+rb, " CmdSN/WR : CmdSN/WC : ExpCmdSN" + rb += sysfs_emit_at(page, rb, " CmdSN/WR : CmdSN/WC : ExpCmdSN" " : MaxCmdSN : ITT : TTT\n"); max_cmd_sn = (u32) atomic_read(&sess->max_cmd_sn); - rb += sprintf(page+rb, " 0x%08x 0x%08x 0x%08x 0x%08x" + rb += sysfs_emit_at(page, rb, " 0x%08x 0x%08x 0x%08x 0x%08x" " 0x%08x 0x%08x\n", sess->cmdsn_window, (max_cmd_sn - sess->exp_cmd_sn) + 1, sess->exp_cmd_sn, max_cmd_sn, sess->init_task_tag, sess->targ_xfer_tag); - rb += sprintf(page+rb, "----------------------[iSCSI" + rb += sysfs_emit_at(page, rb, "----------------------[iSCSI" " Connections]-------------------------\n"); spin_lock(&sess->conn_lock); list_for_each_entry(conn, &sess->sess_conn_list, conn_list) { - rb += sprintf(page+rb, "CID: %hu Connection" + rb += sysfs_emit_at(page, rb, "CID: %hu Connection" " State: ", conn->cid); switch (conn->conn_state) { case TARG_CONN_STATE_FREE: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_FREE\n"); break; case TARG_CONN_STATE_XPT_UP: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_XPT_UP\n"); break; case TARG_CONN_STATE_IN_LOGIN: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_IN_LOGIN\n"); break; case TARG_CONN_STATE_LOGGED_IN: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_LOGGED_IN\n"); break; case TARG_CONN_STATE_IN_LOGOUT: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_IN_LOGOUT\n"); break; case TARG_CONN_STATE_LOGOUT_REQUESTED: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_LOGOUT_REQUESTED\n"); break; case TARG_CONN_STATE_CLEANUP_WAIT: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "TARG_CONN_STATE_CLEANUP_WAIT\n"); break; default: - rb += sprintf(page+rb, + rb += sysfs_emit_at(page, rb, "ERROR: Unknown Connection State!\n"); break; } - rb += sprintf(page+rb, " Address %pISc %s", &conn->login_sockaddr, + rb += sysfs_emit_at(page, rb, " Address %pISc %s", &conn->login_sockaddr, (conn->network_transport == ISCSI_TCP) ? "TCP" : "SCTP"); - rb += sprintf(page+rb, " StatSN: 0x%08x\n", + rb += sysfs_emit_at(page, rb, " StatSN: 0x%08x\n", conn->stat_sn); } spin_unlock(&sess->conn_lock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/target/target_core_device.c +++ linux-oracle-6.5-6.5.0/drivers/target/target_core_device.c @@ -843,7 +843,6 @@ EXPORT_SYMBOL(target_to_linux_sector); struct devices_idr_iter { - struct config_item *prev_item; int (*fn)(struct se_device *dev, void *data); void *data; }; @@ -853,11 +852,9 @@ { struct devices_idr_iter *iter = data; struct se_device *dev = p; + struct config_item *item; int ret; - config_item_put(iter->prev_item); - iter->prev_item = NULL; - /* * We add the device early to the idr, so it can be used * by backend modules during configuration. We do not want @@ -867,12 +864,13 @@ if (!target_dev_configured(dev)) return 0; - iter->prev_item = config_item_get_unless_zero(&dev->dev_group.cg_item); - if (!iter->prev_item) + item = config_item_get_unless_zero(&dev->dev_group.cg_item); + if (!item) return 0; mutex_unlock(&device_mutex); ret = iter->fn(dev, iter->data); + config_item_put(item); mutex_lock(&device_mutex); return ret; @@ -895,7 +893,6 @@ mutex_lock(&device_mutex); ret = idr_for_each(&devices_idr, target_devices_idr_iter, &iter); mutex_unlock(&device_mutex); - config_item_put(iter.prev_item); return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/target/target_core_transport.c +++ linux-oracle-6.5-6.5.0/drivers/target/target_core_transport.c @@ -264,6 +264,7 @@ percpu_ref_put(&cmd_cnt->refcnt); percpu_ref_exit(&cmd_cnt->refcnt); + kfree(cmd_cnt); } EXPORT_SYMBOL_GPL(target_free_cmd_counter); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/tee/amdtee/core.c +++ linux-oracle-6.5-6.5.0/drivers/tee/amdtee/core.c @@ -217,12 +217,12 @@ return rc; } +/* mutex must be held by caller */ static void destroy_session(struct kref *ref) { struct amdtee_session *sess = container_of(ref, struct amdtee_session, refcount); - mutex_lock(&session_list_mutex); list_del(&sess->list_node); mutex_unlock(&session_list_mutex); kfree(sess); @@ -272,7 +272,8 @@ if (arg->ret != TEEC_SUCCESS) { pr_err("open_session failed %d\n", arg->ret); handle_unload_ta(ta_handle); - kref_put(&sess->refcount, destroy_session); + kref_put_mutex(&sess->refcount, destroy_session, + &session_list_mutex); goto out; } @@ -290,7 +291,8 @@ pr_err("reached maximum session count %d\n", TEE_NUM_SESSIONS); handle_close_session(ta_handle, session_info); handle_unload_ta(ta_handle); - kref_put(&sess->refcount, destroy_session); + kref_put_mutex(&sess->refcount, destroy_session, + &session_list_mutex); rc = -ENOMEM; goto out; } @@ -331,7 +333,7 @@ handle_close_session(ta_handle, session_info); handle_unload_ta(ta_handle); - kref_put(&sess->refcount, destroy_session); + kref_put_mutex(&sess->refcount, destroy_session, &session_list_mutex); return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/thermal/thermal_sysfs.c +++ linux-oracle-6.5-6.5.0/drivers/thermal/thermal_sysfs.c @@ -185,9 +185,6 @@ if (sscanf(attr->attr.name, "trip_point_%d_hyst", &trip_id) != 1) return -EINVAL; - if (kstrtoint(buf, 10, &trip.hysteresis)) - return -EINVAL; - mutex_lock(&tz->lock); if (!device_is_registered(dev)) { @@ -198,7 +195,11 @@ ret = __thermal_zone_get_trip(tz, trip_id, &trip); if (ret) goto unlock; - + + ret = kstrtoint(buf, 10, &trip.hysteresis); + if (ret) + goto unlock; + ret = thermal_zone_set_trip(tz, trip_id, &trip); unlock: mutex_unlock(&tz->lock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/thunderbolt/icm.c +++ linux-oracle-6.5-6.5.0/drivers/thunderbolt/icm.c @@ -41,6 +41,7 @@ #define PHY_PORT_CS1_LINK_STATE_SHIFT 26 #define ICM_TIMEOUT 5000 /* ms */ +#define ICM_RETRIES 3 #define ICM_APPROVE_TIMEOUT 10000 /* ms */ #define ICM_MAX_LINK 4 @@ -296,10 +297,9 @@ static int icm_request(struct tb *tb, const void *request, size_t request_size, void *response, size_t response_size, size_t npackets, - unsigned int timeout_msec) + int retries, unsigned int timeout_msec) { struct icm *icm = tb_priv(tb); - int retries = 3; do { struct tb_cfg_request *req; @@ -410,7 +410,7 @@ return -ENOMEM; ret = icm_request(tb, &request, sizeof(request), switches, - sizeof(*switches), npackets, ICM_TIMEOUT); + sizeof(*switches), npackets, ICM_RETRIES, ICM_TIMEOUT); if (ret) goto err_free; @@ -463,7 +463,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -488,7 +488,7 @@ memset(&reply, 0, sizeof(reply)); /* Use larger timeout as establishing tunnels can take some time */ ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_APPROVE_TIMEOUT); + 1, ICM_RETRIES, ICM_APPROVE_TIMEOUT); if (ret) return ret; @@ -515,7 +515,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -543,7 +543,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -577,7 +577,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1020,7 +1020,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, 20000); + 1, 10, 2000); if (ret) return ret; @@ -1053,7 +1053,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_APPROVE_TIMEOUT); + 1, ICM_RETRIES, ICM_APPROVE_TIMEOUT); if (ret) return ret; @@ -1081,7 +1081,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1110,7 +1110,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1144,7 +1144,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1170,7 +1170,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1496,7 +1496,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1522,7 +1522,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1543,7 +1543,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1604,7 +1604,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; @@ -1626,7 +1626,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, 20000); + 1, ICM_RETRIES, 20000); if (ret) return ret; @@ -2298,7 +2298,7 @@ memset(&reply, 0, sizeof(reply)); ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), - 1, ICM_TIMEOUT); + 1, ICM_RETRIES, ICM_TIMEOUT); if (ret) return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/thunderbolt/switch.c +++ linux-oracle-6.5-6.5.0/drivers/thunderbolt/switch.c @@ -2724,6 +2724,13 @@ !tb_port_is_width_supported(down, TB_LINK_WIDTH_DUAL)) return 0; + /* + * Both lanes need to be in CL0. Here we assume lane 0 already be in + * CL0 and check just for lane 1. + */ + if (tb_wait_for_port(down->dual_link_port, false) <= 0) + return -ENOTCONN; + ret = tb_port_lane_bonding_enable(up); if (ret) { tb_port_warn(up, "failed to enable lane bonding\n"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/thunderbolt/tmu.c +++ linux-oracle-6.5-6.5.0/drivers/thunderbolt/tmu.c @@ -382,7 +382,7 @@ } else if (ucap && tb_port_tmu_is_unidirectional(up)) { if (tmu_rates[TB_SWITCH_TMU_MODE_LOWRES] == rate) sw->tmu.mode = TB_SWITCH_TMU_MODE_LOWRES; - else if (tmu_rates[TB_SWITCH_TMU_MODE_LOWRES] == rate) + else if (tmu_rates[TB_SWITCH_TMU_MODE_HIFI_UNI] == rate) sw->tmu.mode = TB_SWITCH_TMU_MODE_HIFI_UNI; } else if (rate) { sw->tmu.mode = TB_SWITCH_TMU_MODE_HIFI_BI; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/thunderbolt/xdomain.c +++ linux-oracle-6.5-6.5.0/drivers/thunderbolt/xdomain.c @@ -703,6 +703,27 @@ mutex_unlock(&xdomain_lock); } +static void start_handshake(struct tb_xdomain *xd) +{ + xd->state = XDOMAIN_STATE_INIT; + queue_delayed_work(xd->tb->wq, &xd->state_work, + msecs_to_jiffies(XDOMAIN_SHORT_TIMEOUT)); +} + +/* Can be called from state_work */ +static void __stop_handshake(struct tb_xdomain *xd) +{ + cancel_delayed_work_sync(&xd->properties_changed_work); + xd->properties_changed_retries = 0; + xd->state_retries = 0; +} + +static void stop_handshake(struct tb_xdomain *xd) +{ + cancel_delayed_work_sync(&xd->state_work); + __stop_handshake(xd); +} + static void tb_xdp_handle_request(struct work_struct *work) { struct xdomain_request_work *xw = container_of(work, typeof(*xw), work); @@ -765,6 +786,15 @@ case UUID_REQUEST: tb_dbg(tb, "%llx: received XDomain UUID request\n", route); ret = tb_xdp_uuid_response(ctl, route, sequence, uuid); + /* + * If we've stopped the discovery with an error such as + * timing out, we will restart the handshake now that we + * received UUID request from the remote host. + */ + if (!ret && xd && xd->state == XDOMAIN_STATE_ERROR) { + dev_dbg(&xd->dev, "restarting handshake\n"); + start_handshake(xd); + } break; case LINK_STATE_STATUS_REQUEST: @@ -1521,6 +1551,13 @@ msecs_to_jiffies(XDOMAIN_SHORT_TIMEOUT)); } +static void tb_xdomain_failed(struct tb_xdomain *xd) +{ + xd->state = XDOMAIN_STATE_ERROR; + queue_delayed_work(xd->tb->wq, &xd->state_work, + msecs_to_jiffies(XDOMAIN_DEFAULT_TIMEOUT)); +} + static void tb_xdomain_state_work(struct work_struct *work) { struct tb_xdomain *xd = container_of(work, typeof(*xd), state_work.work); @@ -1547,7 +1584,7 @@ if (ret) { if (ret == -EAGAIN) goto retry_state; - xd->state = XDOMAIN_STATE_ERROR; + tb_xdomain_failed(xd); } else { tb_xdomain_queue_properties_changed(xd); if (xd->bonding_possible) @@ -1612,7 +1649,7 @@ if (ret) { if (ret == -EAGAIN) goto retry_state; - xd->state = XDOMAIN_STATE_ERROR; + tb_xdomain_failed(xd); } else { xd->state = XDOMAIN_STATE_ENUMERATED; } @@ -1623,6 +1660,8 @@ break; case XDOMAIN_STATE_ERROR: + dev_dbg(&xd->dev, "discovery failed, stopping handshake\n"); + __stop_handshake(xd); break; default: @@ -1833,21 +1872,6 @@ kfree(xd); } -static void start_handshake(struct tb_xdomain *xd) -{ - xd->state = XDOMAIN_STATE_INIT; - queue_delayed_work(xd->tb->wq, &xd->state_work, - msecs_to_jiffies(XDOMAIN_SHORT_TIMEOUT)); -} - -static void stop_handshake(struct tb_xdomain *xd) -{ - cancel_delayed_work_sync(&xd->properties_changed_work); - cancel_delayed_work_sync(&xd->state_work); - xd->properties_changed_retries = 0; - xd->state_retries = 0; -} - static int __maybe_unused tb_xdomain_suspend(struct device *dev) { stop_handshake(tb_to_xdomain(dev)); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/tty/n_gsm.c +++ linux-oracle-6.5-6.5.0/drivers/tty/n_gsm.c @@ -3071,10 +3071,8 @@ gsm->has_devices = false; } for (i = NUM_DLCI - 1; i >= 0; i--) - if (gsm->dlci[i]) { + if (gsm->dlci[i]) gsm_dlci_release(gsm->dlci[i]); - gsm->dlci[i] = NULL; - } mutex_unlock(&gsm->mutex); /* Now wipe the queues */ tty_ldisc_flush(gsm->tty); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/tty/serial/8250/8250_omap.c +++ linux-oracle-6.5-6.5.0/drivers/tty/serial/8250/8250_omap.c @@ -1618,7 +1618,7 @@ { struct omap8250_priv *priv = dev_get_drvdata(dev); struct uart_8250_port *up = serial8250_get_port(priv->line); - int err; + int err = 0; serial8250_suspend_port(priv->line); @@ -1628,7 +1628,8 @@ if (!device_may_wakeup(dev)) priv->wer = 0; serial_out(up, UART_OMAP_WER, priv->wer); - err = pm_runtime_force_suspend(dev); + if (uart_console(&up->port) && console_suspend_enabled) + err = pm_runtime_force_suspend(dev); flush_work(&priv->qos_work); return err; @@ -1637,11 +1638,15 @@ static int omap8250_resume(struct device *dev) { struct omap8250_priv *priv = dev_get_drvdata(dev); + struct uart_8250_port *up = serial8250_get_port(priv->line); int err; - err = pm_runtime_force_resume(dev); - if (err) - return err; + if (uart_console(&up->port) && console_suspend_enabled) { + err = pm_runtime_force_resume(dev); + if (err) + return err; + } + serial8250_resume_port(priv->line); /* Paired with pm_runtime_resume_and_get() in omap8250_suspend() */ pm_runtime_mark_last_busy(dev); @@ -1718,16 +1723,6 @@ if (priv->line >= 0) up = serial8250_get_port(priv->line); - /* - * When using 'no_console_suspend', the console UART must not be - * suspended. Since driver suspend is managed by runtime suspend, - * preventing runtime suspend (by returning error) will keep device - * active during suspend. - */ - if (priv->is_suspending && !console_suspend_enabled) { - if (up && uart_console(&up->port)) - return -EBUSY; - } if (priv->habit & UART_ERRATA_CLOCK_DISABLE) { int ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/tty/serial/8250/8250_port.c +++ linux-oracle-6.5-6.5.0/drivers/tty/serial/8250/8250_port.c @@ -1929,7 +1929,10 @@ skip_rx = true; if (status & (UART_LSR_DR | UART_LSR_BI) && !skip_rx) { - if (irqd_is_wakeup_set(irq_get_irq_data(port->irq))) + struct irq_data *d; + + d = irq_get_irq_data(port->irq); + if (d && irqd_is_wakeup_set(d)) pm_wakeup_event(tport->tty->dev, 0); if (!up->dma || handle_rx_dma(up, iir)) status = serial8250_rx_chars(up, status); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/tty/serial/cpm_uart/cpm_uart_core.c +++ linux-oracle-6.5-6.5.0/drivers/tty/serial/cpm_uart/cpm_uart_core.c @@ -1255,19 +1255,14 @@ { struct uart_cpm_port *pinfo = &cpm_uart_ports[co->index]; unsigned long flags; - int nolock = oops_in_progress; - if (unlikely(nolock)) { + if (unlikely(oops_in_progress)) { local_irq_save(flags); - } else { - spin_lock_irqsave(&pinfo->port.lock, flags); - } - - cpm_uart_early_write(pinfo, s, count, true); - - if (unlikely(nolock)) { + cpm_uart_early_write(pinfo, s, count, true); local_irq_restore(flags); } else { + spin_lock_irqsave(&pinfo->port.lock, flags); + cpm_uart_early_write(pinfo, s, count, true); spin_unlock_irqrestore(&pinfo->port.lock, flags); } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/tty/serial/serial_core.c +++ linux-oracle-6.5-6.5.0/drivers/tty/serial/serial_core.c @@ -157,7 +157,7 @@ * enabled, serial_port_runtime_resume() calls start_tx() again * after enabling the device. */ - if (pm_runtime_active(&port_dev->dev)) + if (!pm_runtime_enabled(port->dev) || pm_runtime_active(port->dev)) port->ops->start_tx(port); pm_runtime_mark_last_busy(&port_dev->dev); pm_runtime_put_autosuspend(&port_dev->dev); @@ -1410,12 +1410,18 @@ static int uart_rs485_config(struct uart_port *port) { struct serial_rs485 *rs485 = &port->rs485; + unsigned long flags; int ret; + if (!(rs485->flags & SER_RS485_ENABLED)) + return 0; + uart_sanitize_serial_rs485(port, rs485); uart_set_rs485_termination(port, rs485); + spin_lock_irqsave(&port->lock, flags); ret = port->rs485_config(port, NULL, rs485); + spin_unlock_irqrestore(&port->lock, flags); if (ret) memset(rs485, 0, sizeof(*rs485)); @@ -2480,11 +2486,10 @@ if (ret == 0) { if (tty) uart_change_line_settings(tty, state, NULL); + uart_rs485_config(uport); spin_lock_irq(&uport->lock); if (!(uport->rs485.flags & SER_RS485_ENABLED)) ops->set_mctrl(uport, uport->mctrl); - else - uart_rs485_config(uport); ops->start_tx(uport); spin_unlock_irq(&uport->lock); tty_port_set_initialized(port, true); @@ -2593,10 +2598,10 @@ port->mctrl &= TIOCM_DTR; if (!(port->rs485.flags & SER_RS485_ENABLED)) port->ops->set_mctrl(port, port->mctrl); - else - uart_rs485_config(port); spin_unlock_irqrestore(&port->lock, flags); + uart_rs485_config(port); + /* * If this driver supports console, and it hasn't been * successfully registered yet, try to re-register it. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/ufs/core/ufs_bsg.c +++ linux-oracle-6.5-6.5.0/drivers/ufs/core/ufs_bsg.c @@ -76,8 +76,7 @@ int ret; int data_len; - if (hba->ufs_version < ufshci_version(4, 0) || !hba->dev_info.b_advanced_rpmb_en || - !(hba->capabilities & MASK_EHSLUTRD_SUPPORTED)) + if (hba->ufs_version < ufshci_version(4, 0) || !hba->dev_info.b_advanced_rpmb_en) return -EINVAL; if (rpmb_request->ehs_req.length != 2 || rpmb_request->ehs_req.ehs_type != 1) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/cdns3/cdns3-plat.c +++ linux-oracle-6.5-6.5.0/drivers/usb/cdns3/cdns3-plat.c @@ -255,9 +255,10 @@ cdns3_set_platform_suspend(cdns->dev, false, false); spin_lock_irqsave(&cdns->lock, flags); - cdns_resume(cdns, !PMSG_IS_AUTO(msg)); + cdns_resume(cdns); cdns->in_lpm = false; spin_unlock_irqrestore(&cdns->lock, flags); + cdns_set_active(cdns, !PMSG_IS_AUTO(msg)); if (cdns->wakeup_pending) { cdns->wakeup_pending = false; enable_irq(cdns->wakeup_irq); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/cdns3/cdnsp-gadget.c +++ linux-oracle-6.5-6.5.0/drivers/usb/cdns3/cdnsp-gadget.c @@ -1125,6 +1125,9 @@ unsigned long flags; int ret; + if (request->status != -EINPROGRESS) + return 0; + if (!pep->endpoint.desc) { dev_err(pdev->dev, "%s: can't dequeue to disabled endpoint\n", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/cdns3/cdnsp-pci.c +++ linux-oracle-6.5-6.5.0/drivers/usb/cdns3/cdnsp-pci.c @@ -208,8 +208,9 @@ int ret; spin_lock_irqsave(&cdns->lock, flags); - ret = cdns_resume(cdns, 1); + ret = cdns_resume(cdns); spin_unlock_irqrestore(&cdns->lock, flags); + cdns_set_active(cdns, 1); return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/cdns3/core.c +++ linux-oracle-6.5-6.5.0/drivers/usb/cdns3/core.c @@ -522,9 +522,8 @@ } EXPORT_SYMBOL_GPL(cdns_suspend); -int cdns_resume(struct cdns *cdns, u8 set_active) +int cdns_resume(struct cdns *cdns) { - struct device *dev = cdns->dev; enum usb_role real_role; bool role_changed = false; int ret = 0; @@ -556,15 +555,23 @@ if (cdns->roles[cdns->role]->resume) cdns->roles[cdns->role]->resume(cdns, cdns_power_is_lost(cdns)); + return 0; +} +EXPORT_SYMBOL_GPL(cdns_resume); + +void cdns_set_active(struct cdns *cdns, u8 set_active) +{ + struct device *dev = cdns->dev; + if (set_active) { pm_runtime_disable(dev); pm_runtime_set_active(dev); pm_runtime_enable(dev); } - return 0; + return; } -EXPORT_SYMBOL_GPL(cdns_resume); +EXPORT_SYMBOL_GPL(cdns_set_active); #endif /* CONFIG_PM_SLEEP */ MODULE_AUTHOR("Peter Chen "); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/cdns3/core.h +++ linux-oracle-6.5-6.5.0/drivers/usb/cdns3/core.h @@ -125,11 +125,13 @@ int cdns_remove(struct cdns *cdns); #ifdef CONFIG_PM_SLEEP -int cdns_resume(struct cdns *cdns, u8 set_active); +int cdns_resume(struct cdns *cdns); int cdns_suspend(struct cdns *cdns); +void cdns_set_active(struct cdns *cdns, u8 set_active); #else /* CONFIG_PM_SLEEP */ -static inline int cdns_resume(struct cdns *cdns, u8 set_active) +static inline int cdns_resume(struct cdns *cdns) { return 0; } +static inline void cdns_set_active(struct cdns *cdns, u8 set_active) { } static inline int cdns_suspend(struct cdns *cdns) { return 0; } #endif /* CONFIG_PM_SLEEP */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/chipidea/ci.h +++ linux-oracle-6.5-6.5.0/drivers/usb/chipidea/ci.h @@ -257,6 +257,7 @@ bool id_event; bool b_sess_valid_event; bool imx28_write_fix; + bool has_portsc_pec_bug; bool supports_runtime_pm; bool in_lpm; bool wakeup_int; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/chipidea/core.c +++ linux-oracle-6.5-6.5.0/drivers/usb/chipidea/core.c @@ -1045,6 +1045,8 @@ CI_HDRC_IMX28_WRITE_FIX); ci->supports_runtime_pm = !!(ci->platdata->flags & CI_HDRC_SUPPORTS_RUNTIME_PM); + ci->has_portsc_pec_bug = !!(ci->platdata->flags & + CI_HDRC_HAS_PORTSC_PEC_MISSED); platform_set_drvdata(pdev, ci); ret = hw_device_init(ci, base); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/chipidea/host.c +++ linux-oracle-6.5-6.5.0/drivers/usb/chipidea/host.c @@ -151,6 +151,7 @@ ehci->has_hostpc = ci->hw_bank.lpm; ehci->has_tdi_phy_lpm = ci->hw_bank.lpm; ehci->imx28_write_fix = ci->imx28_write_fix; + ehci->has_ci_pec_bug = ci->has_portsc_pec_bug; priv = (struct ehci_ci_priv *)ehci->priv; priv->reg_vbus = NULL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/core/hub.h +++ linux-oracle-6.5-6.5.0/drivers/usb/core/hub.h @@ -153,7 +153,7 @@ { return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS && le16_to_cpu(hdev->descriptor.bcdUSB) >= 0x0310 && - hdev->bos->ssp_cap); + hdev->bos && hdev->bos->ssp_cap); } static inline unsigned hub_power_on_good_delay(struct usb_hub *hub) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/dwc3/core.c +++ linux-oracle-6.5-6.5.0/drivers/usb/dwc3/core.c @@ -279,9 +279,46 @@ * XHCI driver will reset the host block. If dwc3 was configured for * host-only mode or current role is host, then we can return early. */ - if (dwc->dr_mode == USB_DR_MODE_HOST || dwc->current_dr_role == DWC3_GCTL_PRTCAP_HOST) + if (dwc->current_dr_role == DWC3_GCTL_PRTCAP_HOST) return 0; + /* + * If the dr_mode is host and the dwc->current_dr_role is not the + * corresponding DWC3_GCTL_PRTCAP_HOST, then the dwc3_core_init_mode + * isn't executed yet. Ensure the phy is ready before the controller + * updates the GCTL.PRTCAPDIR or other settings by soft-resetting + * the phy. + * + * Note: GUSB3PIPECTL[n] and GUSB2PHYCFG[n] are port settings where n + * is port index. If this is a multiport host, then we need to reset + * all active ports. + */ + if (dwc->dr_mode == USB_DR_MODE_HOST) { + u32 usb3_port; + u32 usb2_port; + + usb3_port = dwc3_readl(dwc->regs, DWC3_GUSB3PIPECTL(0)); + usb3_port |= DWC3_GUSB3PIPECTL_PHYSOFTRST; + dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), usb3_port); + + usb2_port = dwc3_readl(dwc->regs, DWC3_GUSB2PHYCFG(0)); + usb2_port |= DWC3_GUSB2PHYCFG_PHYSOFTRST; + dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), usb2_port); + + /* Small delay for phy reset assertion */ + usleep_range(1000, 2000); + + usb3_port &= ~DWC3_GUSB3PIPECTL_PHYSOFTRST; + dwc3_writel(dwc->regs, DWC3_GUSB3PIPECTL(0), usb3_port); + + usb2_port &= ~DWC3_GUSB2PHYCFG_PHYSOFTRST; + dwc3_writel(dwc->regs, DWC3_GUSB2PHYCFG(0), usb2_port); + + /* Wait for clock synchronization */ + msleep(50); + return 0; + } + reg = dwc3_readl(dwc->regs, DWC3_DCTL); reg |= DWC3_DCTL_CSFTRST; reg &= ~DWC3_DCTL_RUN_STOP; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/gadget/function/f_ncm.c +++ linux-oracle-6.5-6.5.0/drivers/usb/gadget/function/f_ncm.c @@ -1171,7 +1171,8 @@ struct sk_buff_head *list) { struct f_ncm *ncm = func_to_ncm(&port->func); - __le16 *tmp = (void *) skb->data; + unsigned char *ntb_ptr = skb->data; + __le16 *tmp; unsigned index, index2; int ndp_index; unsigned dg_len, dg_len2; @@ -1184,6 +1185,10 @@ const struct ndp_parser_opts *opts = ncm->parser_opts; unsigned crc_len = ncm->is_crc ? sizeof(uint32_t) : 0; int dgram_counter; + int to_process = skb->len; + +parse_ntb: + tmp = (__le16 *)ntb_ptr; /* dwSignature */ if (get_unaligned_le32(tmp) != opts->nth_sign) { @@ -1230,7 +1235,7 @@ * walk through NDP * dwSignature */ - tmp = (void *)(skb->data + ndp_index); + tmp = (__le16 *)(ntb_ptr + ndp_index); if (get_unaligned_le32(tmp) != ncm->ndp_sign) { INFO(port->func.config->cdev, "Wrong NDP SIGN\n"); goto err; @@ -1287,11 +1292,11 @@ if (ncm->is_crc) { uint32_t crc, crc2; - crc = get_unaligned_le32(skb->data + + crc = get_unaligned_le32(ntb_ptr + index + dg_len - crc_len); crc2 = ~crc32_le(~0, - skb->data + index, + ntb_ptr + index, dg_len - crc_len); if (crc != crc2) { INFO(port->func.config->cdev, @@ -1318,7 +1323,7 @@ dg_len - crc_len); if (skb2 == NULL) goto err; - skb_put_data(skb2, skb->data + index, + skb_put_data(skb2, ntb_ptr + index, dg_len - crc_len); skb_queue_tail(list, skb2); @@ -1331,10 +1336,17 @@ } while (ndp_len > 2 * (opts->dgram_item_len * 2)); } while (ndp_index); - dev_consume_skb_any(skb); - VDBG(port->func.config->cdev, "Parsed NTB with %d frames\n", dgram_counter); + + to_process -= block_len; + if (to_process != 0) { + ntb_ptr = (unsigned char *)(ntb_ptr + block_len); + goto parse_ntb; + } + + dev_consume_skb_any(skb); + return 0; err: skb_queue_purge(list); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/gadget/udc/fsl_qe_udc.c +++ linux-oracle-6.5-6.5.0/drivers/usb/gadget/udc/fsl_qe_udc.c @@ -1959,6 +1959,8 @@ } else if ((request_type & USB_RECIP_MASK) == USB_RECIP_ENDPOINT) { /* Get endpoint status */ int pipe = index & USB_ENDPOINT_NUMBER_MASK; + if (pipe >= USB_MAX_ENDPOINTS) + goto stall; struct qe_ep *target_ep = &udc->eps[pipe]; u16 usep; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/gadget/udc/udc-xilinx.c +++ linux-oracle-6.5-6.5.0/drivers/usb/gadget/udc/udc-xilinx.c @@ -499,11 +499,13 @@ /* Get the Buffer address and copy the transmit data.*/ eprambase = (u32 __force *)(udc->addr + ep->rambase); if (ep->is_in) { - memcpy(eprambase, bufferptr, bytestosend); + memcpy_toio((void __iomem *)eprambase, bufferptr, + bytestosend); udc->write_fn(udc->addr, ep->offset + XUSB_EP_BUF0COUNT_OFFSET, bufferlen); } else { - memcpy(bufferptr, eprambase, bytestosend); + memcpy_toio((void __iomem *)bufferptr, eprambase, + bytestosend); } /* * Enable the buffer for transmission. @@ -517,11 +519,13 @@ eprambase = (u32 __force *)(udc->addr + ep->rambase + ep->ep_usb.maxpacket); if (ep->is_in) { - memcpy(eprambase, bufferptr, bytestosend); + memcpy_toio((void __iomem *)eprambase, bufferptr, + bytestosend); udc->write_fn(udc->addr, ep->offset + XUSB_EP_BUF1COUNT_OFFSET, bufferlen); } else { - memcpy(bufferptr, eprambase, bytestosend); + memcpy_toio((void __iomem *)bufferptr, eprambase, + bytestosend); } /* * Enable the buffer for transmission. @@ -1023,7 +1027,7 @@ udc->addr); length = req->usb_req.actual = min_t(u32, length, EP0_MAX_PACKET); - memcpy(corebuf, req->usb_req.buf, length); + memcpy_toio((void __iomem *)corebuf, req->usb_req.buf, length); udc->write_fn(udc->addr, XUSB_EP_BUF0COUNT_OFFSET, length); udc->write_fn(udc->addr, XUSB_BUFFREADY_OFFSET, 1); } else { @@ -1752,7 +1756,7 @@ /* Load up the chapter 9 command buffer.*/ ep0rambase = (u32 __force *) (udc->addr + XUSB_SETUP_PKT_ADDR_OFFSET); - memcpy(&setup, ep0rambase, 8); + memcpy_toio((void __iomem *)&setup, ep0rambase, 8); udc->setup = setup; udc->setup.wValue = cpu_to_le16(setup.wValue); @@ -1839,7 +1843,7 @@ (ep0->rambase << 2)); buffer = req->usb_req.buf + req->usb_req.actual; req->usb_req.actual = req->usb_req.actual + bytes_to_rx; - memcpy(buffer, ep0rambase, bytes_to_rx); + memcpy_toio((void __iomem *)buffer, ep0rambase, bytes_to_rx); if (req->usb_req.length == req->usb_req.actual) { /* Data transfer completed get ready for Status stage */ @@ -1915,7 +1919,7 @@ (ep0->rambase << 2)); buffer = req->usb_req.buf + req->usb_req.actual; req->usb_req.actual = req->usb_req.actual + length; - memcpy(ep0rambase, buffer, length); + memcpy_toio((void __iomem *)ep0rambase, buffer, length); } udc->write_fn(udc->addr, XUSB_EP_BUF0COUNT_OFFSET, count); udc->write_fn(udc->addr, XUSB_BUFFREADY_OFFSET, 1); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/host/ehci-hcd.c +++ linux-oracle-6.5-6.5.0/drivers/usb/host/ehci-hcd.c @@ -755,10 +755,14 @@ /* normal [4.15.1.2] or error [4.15.1.1] completion */ if (likely ((status & (STS_INT|STS_ERR)) != 0)) { - if (likely ((status & STS_ERR) == 0)) + if (likely ((status & STS_ERR) == 0)) { INCR(ehci->stats.normal); - else + } else { + /* Force to check port status */ + if (ehci->has_ci_pec_bug) + status |= STS_PCD; INCR(ehci->stats.error); + } bh = 1; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/host/ehci-hub.c +++ linux-oracle-6.5-6.5.0/drivers/usb/host/ehci-hub.c @@ -674,7 +674,8 @@ if ((temp & mask) != 0 || test_bit(i, &ehci->port_c_suspend) || (ehci->reset_done[i] && time_after_eq( - jiffies, ehci->reset_done[i]))) { + jiffies, ehci->reset_done[i])) + || ehci_has_ci_pec_bug(ehci, temp)) { if (i < 7) buf [0] |= 1 << (i + 1); else @@ -875,6 +876,13 @@ if (temp & PORT_PEC) status |= USB_PORT_STAT_C_ENABLE << 16; + if (ehci_has_ci_pec_bug(ehci, temp)) { + status |= USB_PORT_STAT_C_ENABLE << 16; + ehci_info(ehci, + "PE is cleared by HW port:%d PORTSC:%08x\n", + wIndex + 1, temp); + } + if ((temp & PORT_OCC) && (!ignore_oc && !ehci->spurious_oc)){ status |= USB_PORT_STAT_C_OVERCURRENT << 16; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/host/ehci.h +++ linux-oracle-6.5-6.5.0/drivers/usb/host/ehci.h @@ -207,6 +207,7 @@ unsigned has_fsl_port_bug:1; /* FreeScale */ unsigned has_fsl_hs_errata:1; /* Freescale HS quirk */ unsigned has_fsl_susp_errata:1; /* NXP SUSP quirk */ + unsigned has_ci_pec_bug:1; /* ChipIdea PEC bug */ unsigned big_endian_mmio:1; unsigned big_endian_desc:1; unsigned big_endian_capbase:1; @@ -708,6 +709,15 @@ #define ehci_has_fsl_susp_errata(e) ((e)->has_fsl_susp_errata) /* + * Some Freescale/NXP processors using ChipIdea IP have a bug in which + * disabling the port (PE is cleared) does not cause PEC to be asserted + * when frame babble is detected. + */ +#define ehci_has_ci_pec_bug(e, portsc) \ + ((e)->has_ci_pec_bug && ((e)->command & CMD_PSE) \ + && !(portsc & PORT_PEC) && !(portsc & PORT_PE)) + +/* * While most USB host controllers implement their registers in * little-endian format, a minority (celleb companion chip) implement * them in big endian format. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/host/xhci-hub.c +++ linux-oracle-6.5-6.5.0/drivers/usb/host/xhci-hub.c @@ -1062,19 +1062,19 @@ *status |= USB_PORT_STAT_C_CONFIG_ERROR << 16; /* USB3 specific wPortStatus bits */ - if (portsc & PORT_POWER) { + if (portsc & PORT_POWER) *status |= USB_SS_PORT_STAT_POWER; - /* link state handling */ - if (link_state == XDEV_U0) - bus_state->suspended_ports &= ~(1 << portnum); - } - /* remote wake resume signaling complete */ - if (bus_state->port_remote_wakeup & (1 << portnum) && + /* no longer suspended or resuming */ + if (link_state != XDEV_U3 && link_state != XDEV_RESUME && link_state != XDEV_RECOVERY) { - bus_state->port_remote_wakeup &= ~(1 << portnum); - usb_hcd_end_port_resume(&hcd->self, portnum); + /* remote wake resume signaling complete */ + if (bus_state->port_remote_wakeup & (1 << portnum)) { + bus_state->port_remote_wakeup &= ~(1 << portnum); + usb_hcd_end_port_resume(&hcd->self, portnum); + } + bus_state->suspended_ports &= ~(1 << portnum); } xhci_hub_report_usb3_link_state(xhci, status, portsc); @@ -1131,6 +1131,7 @@ usb_hcd_end_port_resume(&port->rhub->hcd->self, portnum); } port->rexit_active = 0; + bus_state->suspended_ports &= ~(1 << portnum); } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/host/xhci-mem.c +++ linux-oracle-6.5-6.5.0/drivers/usb/host/xhci-mem.c @@ -2288,8 +2288,8 @@ writel(erst_size, &ir->ir_set->erst_size); erst_base = xhci_read_64(xhci, &ir->ir_set->erst_base); - erst_base &= ERST_PTR_MASK; - erst_base |= (ir->erst.erst_dma_addr & (u64) ~ERST_PTR_MASK); + erst_base &= ERST_BASE_RSVDP; + erst_base |= ir->erst.erst_dma_addr & ~ERST_BASE_RSVDP; xhci_write_64(xhci, erst_base, &ir->ir_set->erst_base); /* Set the event ring dequeue address of this interrupter */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/host/xhci-ring.c +++ linux-oracle-6.5-6.5.0/drivers/usb/host/xhci-ring.c @@ -798,7 +798,7 @@ static void xhci_unmap_td_bounce_buffer(struct xhci_hcd *xhci, struct xhci_ring *ring, struct xhci_td *td) { - struct device *dev = xhci_to_hcd(xhci)->self.controller; + struct device *dev = xhci_to_hcd(xhci)->self.sysdev; struct xhci_segment *seg = td->bounce_seg; struct urb *urb = td->urb; size_t len; @@ -2996,7 +2996,8 @@ */ static void xhci_update_erst_dequeue(struct xhci_hcd *xhci, struct xhci_interrupter *ir, - union xhci_trb *event_ring_deq) + union xhci_trb *event_ring_deq, + bool clear_ehb) { u64 temp_64; dma_addr_t deq; @@ -3017,12 +3018,13 @@ return; /* Update HC event ring dequeue pointer */ - temp_64 &= ERST_PTR_MASK; + temp_64 &= ERST_DESI_MASK; temp_64 |= ((u64) deq & (u64) ~ERST_PTR_MASK); } /* Clear the event handler busy flag (RW1C) */ - temp_64 |= ERST_EHB; + if (clear_ehb) + temp_64 |= ERST_EHB; xhci_write_64(xhci, temp_64, &ir->ir_set->erst_dequeue); } @@ -3103,7 +3105,7 @@ while (xhci_handle_event(xhci, ir) > 0) { if (event_loop++ < TRBS_PER_SEGMENT / 2) continue; - xhci_update_erst_dequeue(xhci, ir, event_ring_deq); + xhci_update_erst_dequeue(xhci, ir, event_ring_deq, false); event_ring_deq = ir->event_ring->dequeue; /* ring is half-full, force isoc trbs to interrupt more often */ @@ -3113,7 +3115,7 @@ event_loop = 0; } - xhci_update_erst_dequeue(xhci, ir, event_ring_deq); + xhci_update_erst_dequeue(xhci, ir, event_ring_deq, true); ret = IRQ_HANDLED; out: @@ -3469,7 +3471,7 @@ static int xhci_align_td(struct xhci_hcd *xhci, struct urb *urb, u32 enqd_len, u32 *trb_buff_len, struct xhci_segment *seg) { - struct device *dev = xhci_to_hcd(xhci)->self.controller; + struct device *dev = xhci_to_hcd(xhci)->self.sysdev; unsigned int unalign; unsigned int max_pkt; u32 new_buff_len; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/host/xhci.h +++ linux-oracle-6.5-6.5.0/drivers/usb/host/xhci.h @@ -514,7 +514,7 @@ #define ERST_SIZE_MASK (0xffff << 16) /* erst_base bitmasks */ -#define ERST_BASE_RSVDP (0x3f) +#define ERST_BASE_RSVDP (GENMASK_ULL(5, 0)) /* erst_dequeue bitmasks */ /* Dequeue ERST Segment Index (DESI) - Segment number (or alias) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/misc/onboard_usb_hub.c +++ linux-oracle-6.5-6.5.0/drivers/usb/misc/onboard_usb_hub.c @@ -409,6 +409,7 @@ static const struct usb_device_id onboard_hub_id_table[] = { { USB_DEVICE(VENDOR_ID_GENESYS, 0x0608) }, /* Genesys Logic GL850G USB 2.0 */ { USB_DEVICE(VENDOR_ID_GENESYS, 0x0610) }, /* Genesys Logic GL852G USB 2.0 */ + { USB_DEVICE(VENDOR_ID_MICROCHIP, 0x2412) }, /* USB2412 USB 2.0 */ { USB_DEVICE(VENDOR_ID_MICROCHIP, 0x2514) }, /* USB2514B USB 2.0 */ { USB_DEVICE(VENDOR_ID_MICROCHIP, 0x2517) }, /* USB2517 USB 2.0 */ { USB_DEVICE(VENDOR_ID_REALTEK, 0x0411) }, /* RTS5411 USB 3.1 */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/misc/onboard_usb_hub.h +++ linux-oracle-6.5-6.5.0/drivers/usb/misc/onboard_usb_hub.h @@ -35,6 +35,7 @@ }; static const struct of_device_id onboard_hub_match[] = { + { .compatible = "usb424,2412", .data = µchip_usb424_data, }, { .compatible = "usb424,2514", .data = µchip_usb424_data, }, { .compatible = "usb424,2517", .data = µchip_usb424_data, }, { .compatible = "usb451,8140", .data = &ti_tusb8041_data, }, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/musb/musb_debugfs.c +++ linux-oracle-6.5-6.5.0/drivers/usb/musb/musb_debugfs.c @@ -39,7 +39,7 @@ { "IntrUsbE", MUSB_INTRUSBE, 8 }, { "DevCtl", MUSB_DEVCTL, 8 }, { "VControl", 0x68, 32 }, - { "HWVers", 0x69, 16 }, + { "HWVers", MUSB_HWVERS, 16 }, { "LinkInfo", MUSB_LINKINFO, 8 }, { "VPLen", MUSB_VPLEN, 8 }, { "HS_EOF1", MUSB_HS_EOF1, 8 }, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/musb/musb_host.c +++ linux-oracle-6.5-6.5.0/drivers/usb/musb/musb_host.c @@ -321,10 +321,16 @@ musb_giveback(musb, urb, status); qh->is_ready = ready; + /* + * musb->lock had been unlocked in musb_giveback, so qh may + * be freed, need to get it again + */ + qh = musb_ep_get_qh(hw_ep, is_in); + /* reclaim resources (and bandwidth) ASAP; deschedule it, and * invalidate qh as soon as list_empty(&hep->urb_list) */ - if (list_empty(&qh->hep->urb_list)) { + if (qh && list_empty(&qh->hep->urb_list)) { struct list_head *head; struct dma_controller *dma = musb->dma_controller; @@ -2398,6 +2404,7 @@ * and its URB list has emptied, recycle this qh. */ if (ready && list_empty(&qh->hep->urb_list)) { + musb_ep_set_qh(qh->hw_ep, is_in, NULL); qh->hep->hcpriv = NULL; list_del(&qh->ring); kfree(qh); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/typec/altmodes/displayport.c +++ linux-oracle-6.5-6.5.0/drivers/usb/typec/altmodes/displayport.c @@ -304,6 +304,11 @@ typec_altmode_update_active(alt, false); dp->data.status = 0; dp->data.conf = 0; + if (dp->hpd) { + drm_connector_oob_hotplug_event(dp->connector_fwnode); + dp->hpd = false; + sysfs_notify(&dp->alt->dev.kobj, "displayport", "hpd"); + } break; case DP_CMD_STATUS_UPDATE: dp->data.status = *vdo; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/typec/mux/intel_pmc_mux.c +++ linux-oracle-6.5-6.5.0/drivers/usb/typec/mux/intel_pmc_mux.c @@ -117,6 +117,16 @@ IOM_PORT_STATUS_DHPD_HPD_STATUS_SHIFT) & \ IOM_PORT_STATUS_DHPD_HPD_STATUS_ASSERT) +/* IOM port status register */ +#define IOM_PORT_STATUS_REGS(_offset_, _size_) ((_offset_) | (_size_)) +#define IOM_PORT_STATUS_REGS_SZ_MASK BIT(0) +#define IOM_PORT_STATUS_REGS_SZ_4 0 +#define IOM_PORT_STATUS_REGS_SZ_8 1 +#define IOM_PORT_STATUS_REGS_OFFSET(_d_) \ + ((_d_) & ~IOM_PORT_STATUS_REGS_SZ_MASK) +#define IOM_PORT_STATUS_REGS_SIZE(_d_) \ + (4 << ((_d_) & IOM_PORT_STATUS_REGS_SZ_MASK)) + struct pmc_usb; struct pmc_usb_port { @@ -145,6 +155,7 @@ struct acpi_device *iom_adev; void __iomem *iom_base; u32 iom_port_status_offset; + u8 iom_port_status_size; struct dentry *dentry; }; @@ -160,7 +171,7 @@ port->iom_status = readl(port->pmc->iom_base + port->pmc->iom_port_status_offset + - port_num * sizeof(u32)); + port_num * port->pmc->iom_port_status_size); } static int sbu_orientation(struct pmc_usb_port *port) @@ -589,13 +600,16 @@ /* IOM ACPI IDs and IOM_PORT_STATUS_OFFSET */ static const struct acpi_device_id iom_acpi_ids[] = { /* TigerLake */ - { "INTC1072", 0x560, }, + { "INTC1072", IOM_PORT_STATUS_REGS(0x560, IOM_PORT_STATUS_REGS_SZ_4) }, /* AlderLake */ - { "INTC1079", 0x160, }, + { "INTC1079", IOM_PORT_STATUS_REGS(0x160, IOM_PORT_STATUS_REGS_SZ_4) }, /* Meteor Lake */ - { "INTC107A", 0x160, }, + { "INTC107A", IOM_PORT_STATUS_REGS(0x160, IOM_PORT_STATUS_REGS_SZ_4) }, + + /* Lunar Lake */ + { "INTC10EA", IOM_PORT_STATUS_REGS(0x150, IOM_PORT_STATUS_REGS_SZ_8) }, {} }; @@ -615,7 +629,8 @@ if (!adev) return -ENODEV; - pmc->iom_port_status_offset = (u32)dev_id->driver_data; + pmc->iom_port_status_offset = IOM_PORT_STATUS_REGS_OFFSET(dev_id->driver_data); + pmc->iom_port_status_size = IOM_PORT_STATUS_REGS_SIZE(dev_id->driver_data); INIT_LIST_HEAD(&resource_list); ret = acpi_dev_get_memory_resources(adev, &resource_list); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/typec/tcpm/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/usb/typec/tcpm/Kconfig @@ -79,6 +79,7 @@ config TYPEC_QCOM_PMIC tristate "Qualcomm PMIC USB Type-C Port Controller Manager driver" depends on ARCH_QCOM || COMPILE_TEST + depends on DRM || DRM=n help A Type-C port and Power Delivery driver which aggregates two discrete pieces of silicon in the PM8150b PMIC block: the only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/typec/tcpm/qcom/qcom_pmic_typec.c +++ linux-oracle-6.5-6.5.0/drivers/usb/typec/tcpm/qcom/qcom_pmic_typec.c @@ -17,6 +17,9 @@ #include #include #include + +#include + #include "qcom_pmic_typec_pdphy.h" #include "qcom_pmic_typec_port.h" @@ -33,6 +36,7 @@ struct pmic_typec_port *pmic_typec_port; bool vbus_enabled; struct mutex lock; /* VBUS state serialization */ + struct drm_bridge bridge; }; #define tcpc_to_tcpm(_tcpc_) container_of(_tcpc_, struct pmic_typec, tcpc) @@ -146,6 +150,35 @@ return 0; } +#if IS_ENABLED(CONFIG_DRM) +static int qcom_pmic_typec_attach(struct drm_bridge *bridge, + enum drm_bridge_attach_flags flags) +{ + return flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR ? 0 : -EINVAL; +} + +static const struct drm_bridge_funcs qcom_pmic_typec_bridge_funcs = { + .attach = qcom_pmic_typec_attach, +}; + +static int qcom_pmic_typec_init_drm(struct pmic_typec *tcpm) +{ + tcpm->bridge.funcs = &qcom_pmic_typec_bridge_funcs; +#ifdef CONFIG_OF + tcpm->bridge.of_node = of_get_child_by_name(tcpm->dev->of_node, "connector"); +#endif + tcpm->bridge.ops = DRM_BRIDGE_OP_HPD; + tcpm->bridge.type = DRM_MODE_CONNECTOR_DisplayPort; + + return devm_drm_bridge_add(tcpm->dev, &tcpm->bridge); +} +#else +static int qcom_pmic_typec_init_drm(struct pmic_typec *tcpm) +{ + return 0; +} +#endif + static int qcom_pmic_typec_probe(struct platform_device *pdev) { struct pmic_typec *tcpm; @@ -208,6 +241,10 @@ mutex_init(&tcpm->lock); platform_set_drvdata(pdev, tcpm); + ret = qcom_pmic_typec_init_drm(tcpm); + if (ret) + return ret; + tcpm->tcpc.fwnode = device_get_named_child_node(tcpm->dev, "connector"); if (!tcpm->tcpc.fwnode) return -EINVAL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/typec/tcpm/qcom/qcom_pmic_typec_pdphy.c +++ linux-oracle-6.5-6.5.0/drivers/usb/typec/tcpm/qcom/qcom_pmic_typec_pdphy.c @@ -383,10 +383,6 @@ struct device *dev = pmic_typec_pdphy->dev; int ret; - ret = regulator_enable(pmic_typec_pdphy->vdd_pdphy); - if (ret) - return ret; - /* PD 2.0, DR=TYPEC_DEVICE, PR=TYPEC_SINK */ ret = regmap_update_bits(pmic_typec_pdphy->regmap, pmic_typec_pdphy->base + USB_PDPHY_MSG_CONFIG_REG, @@ -424,8 +420,6 @@ ret = regmap_write(pmic_typec_pdphy->regmap, pmic_typec_pdphy->base + USB_PDPHY_EN_CONTROL_REG, 0); - regulator_disable(pmic_typec_pdphy->vdd_pdphy); - return ret; } @@ -449,6 +443,10 @@ int i; int ret; + ret = regulator_enable(pmic_typec_pdphy->vdd_pdphy); + if (ret) + return ret; + pmic_typec_pdphy->tcpm_port = tcpm_port; ret = pmic_typec_pdphy_reset(pmic_typec_pdphy); @@ -469,6 +467,8 @@ disable_irq(pmic_typec_pdphy->irq_data[i].irq); qcom_pmic_typec_pdphy_reset_on(pmic_typec_pdphy); + + regulator_disable(pmic_typec_pdphy->vdd_pdphy); } struct pmic_typec_pdphy *qcom_pmic_typec_pdphy_alloc(struct device *dev) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/typec/ucsi/psy.c +++ linux-oracle-6.5-6.5.0/drivers/usb/typec/ucsi/psy.c @@ -37,6 +37,15 @@ struct device *dev = con->ucsi->dev; device_property_read_u8(dev, "scope", &scope); + if (scope == POWER_SUPPLY_SCOPE_UNKNOWN) { + u32 mask = UCSI_CAP_ATTR_POWER_AC_SUPPLY | + UCSI_CAP_ATTR_BATTERY_CHARGING; + + if (con->ucsi->cap.attributes & mask) + scope = POWER_SUPPLY_SCOPE_SYSTEM; + else + scope = POWER_SUPPLY_SCOPE_DEVICE; + } val->intval = scope; return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/usb/typec/ucsi/ucsi.c +++ linux-oracle-6.5-6.5.0/drivers/usb/typec/ucsi/ucsi.c @@ -787,6 +787,7 @@ typec_set_mode(con->port, TYPEC_STATE_SAFE); + typec_partner_set_usb_power_delivery(con->partner, NULL); ucsi_unregister_partner_pdos(con); ucsi_unregister_altmodes(con, UCSI_RECIPIENT_SOP); typec_unregister_partner(con->partner); @@ -884,6 +885,7 @@ if (ret < 0) { dev_err(ucsi->dev, "%s: GET_CONNECTOR_STATUS failed (%d)\n", __func__, ret); + clear_bit(EVENT_PENDING, &con->ucsi->flags); goto out_unlock; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/vfio/mdev/mdev_sysfs.c +++ linux-oracle-6.5-6.5.0/drivers/vfio/mdev/mdev_sysfs.c @@ -233,7 +233,8 @@ out_err: while (--i >= 0) mdev_type_remove(parent->types[i]); - return 0; + kset_unregister(parent->mdev_types_kset); + return ret; } static ssize_t remove_store(struct device *dev, struct device_attribute *attr, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/video/backlight/lp855x_bl.c +++ linux-oracle-6.5-6.5.0/drivers/video/backlight/lp855x_bl.c @@ -71,6 +71,7 @@ struct device *dev; struct lp855x_platform_data *pdata; struct pwm_device *pwm; + bool needs_pwm_init; struct regulator *supply; /* regulator for VDD input */ struct regulator *enable; /* regulator for EN/VDDIO input */ }; @@ -220,7 +221,15 @@ { struct pwm_state state; - pwm_get_state(lp->pwm, &state); + if (lp->needs_pwm_init) { + pwm_init_state(lp->pwm, &state); + /* Legacy platform data compatibility */ + if (lp->pdata->period_ns > 0) + state.period = lp->pdata->period_ns; + lp->needs_pwm_init = false; + } else { + pwm_get_state(lp->pwm, &state); + } state.duty_cycle = div_u64(br * state.period, max_br); state.enabled = state.duty_cycle; @@ -387,7 +396,6 @@ const struct i2c_device_id *id = i2c_client_get_device_id(cl); const struct acpi_device_id *acpi_id = NULL; struct device *dev = &cl->dev; - struct pwm_state pwmstate; struct lp855x *lp; int ret; @@ -470,15 +478,11 @@ else return dev_err_probe(dev, ret, "getting PWM\n"); + lp->needs_pwm_init = false; lp->mode = REGISTER_BASED; dev_dbg(dev, "mode: register based\n"); } else { - pwm_init_state(lp->pwm, &pwmstate); - /* Legacy platform data compatibility */ - if (lp->pdata->period_ns > 0) - pwmstate.period = lp->pdata->period_ns; - pwm_apply_state(lp->pwm, &pwmstate); - + lp->needs_pwm_init = true; lp->mode = PWM_BASED; dev_dbg(dev, "mode: PWM based\n"); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/video/fbdev/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/video/fbdev/Kconfig @@ -2003,7 +2003,7 @@ config FB_SH7760 bool "SH7760/SH7763/SH7720/SH7721 LCDC support" - depends on FB && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \ + depends on FB=y && (CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7763 \ || CPU_SUBTYPE_SH7720 || CPU_SUBTYPE_SH7721) select FB_CFB_FILLRECT select FB_CFB_COPYAREA only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/video/fbdev/ep93xx-fb.c +++ linux-oracle-6.5-6.5.0/drivers/video/fbdev/ep93xx-fb.c @@ -474,7 +474,6 @@ if (!info) return -ENOMEM; - info->dev = &pdev->dev; platform_set_drvdata(pdev, info); fbi = info->par; fbi->mach_info = mach_info; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/watchdog/Kconfig +++ linux-oracle-6.5-6.5.0/drivers/watchdog/Kconfig @@ -1075,6 +1075,8 @@ config ADVANTECH_EC_WDT tristate "Advantech Embedded Controller Watchdog Timer" depends on X86 + select ISA_BUS_API + select WATCHDOG_CORE help This driver supports Advantech products with ITE based Embedded Controller. It does not support Advantech products with other ECs or without EC. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/watchdog/intel-mid_wdt.c +++ linux-oracle-6.5-6.5.0/drivers/watchdog/intel-mid_wdt.c @@ -203,3 +203,4 @@ MODULE_AUTHOR("David Cohen "); MODULE_DESCRIPTION("Watchdog Driver for Intel MID platform"); MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:intel_mid_wdt"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/drivers/xen/events/events_base.c +++ linux-oracle-6.5-6.5.0/drivers/xen/events/events_base.c @@ -33,6 +33,7 @@ #include #include #include +#include #include #include #include @@ -96,6 +97,7 @@ struct irq_info { struct list_head list; struct list_head eoi_list; + struct rcu_work rwork; short refcnt; u8 spurious_cnt; u8 is_accounted; @@ -147,22 +149,12 @@ static DEFINE_MUTEX(irq_mapping_update_lock); /* - * Lock protecting event handling loop against removing event channels. - * Adding of event channels is no issue as the associated IRQ becomes active - * only after everything is setup (before request_[threaded_]irq() the handler - * can't be entered for an event, as the event channel will be unmasked only - * then). - */ -static DEFINE_RWLOCK(evtchn_rwlock); - -/* * Lock hierarchy: * * irq_mapping_update_lock - * evtchn_rwlock - * IRQ-desc lock - * percpu eoi_list_lock - * irq_info->lock + * IRQ-desc lock + * percpu eoi_list_lock + * irq_info->lock */ static LIST_HEAD(xen_irq_list_head); @@ -306,6 +298,22 @@ info->is_accounted = 1; } +static void delayed_free_irq(struct work_struct *work) +{ + struct irq_info *info = container_of(to_rcu_work(work), struct irq_info, + rwork); + unsigned int irq = info->irq; + + /* Remove the info pointer only now, with no potential users left. */ + set_info_for_irq(irq, NULL); + + kfree(info); + + /* Legacy IRQ descriptors are managed by the arch. */ + if (irq >= nr_legacy_irqs()) + irq_free_desc(irq); +} + /* Constructors for packed IRQ information. */ static int xen_irq_info_common_setup(struct irq_info *info, unsigned irq, @@ -668,33 +676,36 @@ eoi = container_of(to_delayed_work(work), struct lateeoi_work, delayed); - read_lock_irqsave(&evtchn_rwlock, flags); + rcu_read_lock(); while (true) { - spin_lock(&eoi->eoi_list_lock); + spin_lock_irqsave(&eoi->eoi_list_lock, flags); info = list_first_entry_or_null(&eoi->eoi_list, struct irq_info, eoi_list); - if (info == NULL || now < info->eoi_time) { - spin_unlock(&eoi->eoi_list_lock); + if (info == NULL) + break; + + if (now < info->eoi_time) { + mod_delayed_work_on(info->eoi_cpu, system_wq, + &eoi->delayed, + info->eoi_time - now); break; } list_del_init(&info->eoi_list); - spin_unlock(&eoi->eoi_list_lock); + spin_unlock_irqrestore(&eoi->eoi_list_lock, flags); info->eoi_time = 0; xen_irq_lateeoi_locked(info, false); } - if (info) - mod_delayed_work_on(info->eoi_cpu, system_wq, - &eoi->delayed, info->eoi_time - now); + spin_unlock_irqrestore(&eoi->eoi_list_lock, flags); - read_unlock_irqrestore(&evtchn_rwlock, flags); + rcu_read_unlock(); } static void xen_cpu_init_eoi(unsigned int cpu) @@ -709,16 +720,15 @@ void xen_irq_lateeoi(unsigned int irq, unsigned int eoi_flags) { struct irq_info *info; - unsigned long flags; - read_lock_irqsave(&evtchn_rwlock, flags); + rcu_read_lock(); info = info_for_irq(irq); if (info) xen_irq_lateeoi_locked(info, eoi_flags & XEN_EOI_FLAG_SPURIOUS); - read_unlock_irqrestore(&evtchn_rwlock, flags); + rcu_read_unlock(); } EXPORT_SYMBOL_GPL(xen_irq_lateeoi); @@ -732,6 +742,7 @@ info->type = IRQT_UNBOUND; info->refcnt = -1; + INIT_RCU_WORK(&info->rwork, delayed_free_irq); set_info_for_irq(irq, info); /* @@ -789,31 +800,18 @@ static void xen_free_irq(unsigned irq) { struct irq_info *info = info_for_irq(irq); - unsigned long flags; if (WARN_ON(!info)) return; - write_lock_irqsave(&evtchn_rwlock, flags); - if (!list_empty(&info->eoi_list)) lateeoi_list_del(info); list_del(&info->list); - set_info_for_irq(irq, NULL); - WARN_ON(info->refcnt > 0); - write_unlock_irqrestore(&evtchn_rwlock, flags); - - kfree(info); - - /* Legacy IRQ descriptors are managed by the arch. */ - if (irq < nr_legacy_irqs()) - return; - - irq_free_desc(irq); + queue_rcu_work(system_wq, &info->rwork); } /* Not called for lateeoi events. */ @@ -1711,7 +1709,14 @@ int cpu = smp_processor_id(); struct evtchn_loop_ctrl ctrl = { 0 }; - read_lock(&evtchn_rwlock); + /* + * When closing an event channel the associated IRQ must not be freed + * until all cpus have left the event handling loop. This is ensured + * by taking the rcu_read_lock() while handling events, as freeing of + * the IRQ is handled via queue_rcu_work() _after_ closing the event + * channel. + */ + rcu_read_lock(); do { vcpu_info->evtchn_upcall_pending = 0; @@ -1724,7 +1729,7 @@ } while (vcpu_info->evtchn_upcall_pending); - read_unlock(&evtchn_rwlock); + rcu_read_unlock(); /* * Increment irq_epoch only now to defer EOIs only for only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/attr.c +++ linux-oracle-6.5-6.5.0/fs/attr.c @@ -394,9 +394,25 @@ return error; if ((ia_valid & ATTR_MODE)) { - umode_t amode = attr->ia_mode; + /* + * Don't allow changing the mode of symlinks: + * + * (1) The vfs doesn't take the mode of symlinks into account + * during permission checking. + * (2) This has never worked correctly. Most major filesystems + * did return EOPNOTSUPP due to interactions with POSIX ACLs + * but did still updated the mode of the symlink. + * This inconsistency led system call wrapper providers such + * as libc to block changing the mode of symlinks with + * EOPNOTSUPP already. + * (3) To even do this in the first place one would have to use + * specific file descriptors and quite some effort. + */ + if (S_ISLNK(inode->i_mode)) + return -EOPNOTSUPP; + /* Flag setting protected by i_mutex */ - if (is_sxid(amode)) + if (is_sxid(attr->ia_mode)) inode->i_flags &= ~S_NOSEC; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/autofs/waitq.c +++ linux-oracle-6.5-6.5.0/fs/autofs/waitq.c @@ -32,8 +32,9 @@ wq->status = -ENOENT; /* Magic is gone - report failure */ kfree(wq->name.name - wq->offset); wq->name.name = NULL; - wq->wait_ctr--; wake_up_interruptible(&wq->queue); + if (!--wq->wait_ctr) + kfree(wq); wq = nwq; } fput(sbi->pipe); /* Close the pipe */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/binfmt_elf_fdpic.c +++ linux-oracle-6.5-6.5.0/fs/binfmt_elf_fdpic.c @@ -345,10 +345,9 @@ /* there's now no turning back... the old userspace image is dead, * defunct, deceased, etc. */ + SET_PERSONALITY(exec_params.hdr); if (elf_check_fdpic(&exec_params.hdr)) - set_personality(PER_LINUX_FDPIC); - else - set_personality(PER_LINUX); + current->personality |= PER_LINUX_FDPIC; if (elf_read_implies_exec(&exec_params.hdr, executable_stack)) current->personality |= READ_IMPLIES_EXEC; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/block-group.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/block-group.c @@ -3014,8 +3014,16 @@ btrfs_mark_buffer_dirty(leaf); fail: btrfs_release_path(path); - /* We didn't update the block group item, need to revert @commit_used. */ - if (ret < 0) { + /* + * We didn't update the block group item, need to revert commit_used + * unless the block group item didn't exist yet - this is to prevent a + * race with a concurrent insertion of the block group item, with + * insert_block_group_item(), that happened just after we attempted to + * update. In that case we would reset commit_used to 0 just after the + * insertion set it to a value greater than 0 - if the block group later + * becomes with 0 used bytes, we would incorrectly skip its update. + */ + if (ret < 0 && ret != -ENOENT) { spin_lock(&cache->lock); cache->commit_used = old_commit_used; spin_unlock(&cache->lock); @@ -4273,6 +4281,17 @@ struct btrfs_caching_control *caching_ctl; struct rb_node *n; + if (btrfs_is_zoned(info)) { + if (info->active_meta_bg) { + btrfs_put_block_group(info->active_meta_bg); + info->active_meta_bg = NULL; + } + if (info->active_system_bg) { + btrfs_put_block_group(info->active_system_bg); + info->active_system_bg = NULL; + } + } + write_lock(&info->block_group_cache_lock); while (!list_empty(&info->caching_block_groups)) { caching_ctl = list_entry(info->caching_block_groups.next, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/btrfs_inode.h +++ linux-oracle-6.5-6.5.0/fs/btrfs/btrfs_inode.h @@ -501,9 +501,6 @@ u64 start, u64 end, int *page_started, unsigned long *nr_written, struct writeback_control *wbc); int btrfs_writepage_cow_fixup(struct page *page); -void btrfs_writepage_endio_finish_ordered(struct btrfs_inode *inode, - struct page *page, u64 start, - u64 end, bool uptodate); int btrfs_encoded_io_compression_from_extent(struct btrfs_fs_info *fs_info, int compress_type); int btrfs_encoded_read_regular_fill_pages(struct btrfs_inode *inode, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/delayed-inode.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/delayed-inode.c @@ -412,6 +412,7 @@ static void __btrfs_remove_delayed_item(struct btrfs_delayed_item *delayed_item) { + struct btrfs_delayed_node *delayed_node = delayed_item->delayed_node; struct rb_root_cached *root; struct btrfs_delayed_root *delayed_root; @@ -419,18 +420,21 @@ if (RB_EMPTY_NODE(&delayed_item->rb_node)) return; - delayed_root = delayed_item->delayed_node->root->fs_info->delayed_root; + /* If it's in a rbtree, then we need to have delayed node locked. */ + lockdep_assert_held(&delayed_node->mutex); + + delayed_root = delayed_node->root->fs_info->delayed_root; BUG_ON(!delayed_root); if (delayed_item->type == BTRFS_DELAYED_INSERTION_ITEM) - root = &delayed_item->delayed_node->ins_root; + root = &delayed_node->ins_root; else - root = &delayed_item->delayed_node->del_root; + root = &delayed_node->del_root; rb_erase_cached(&delayed_item->rb_node, root); RB_CLEAR_NODE(&delayed_item->rb_node); - delayed_item->delayed_node->count--; + delayed_node->count--; finish_one_item(delayed_root); } @@ -1153,20 +1157,33 @@ ret = __btrfs_commit_inode_delayed_items(trans, path, curr_node); if (ret) { - btrfs_release_delayed_node(curr_node); - curr_node = NULL; btrfs_abort_transaction(trans, ret); break; } prev_node = curr_node; curr_node = btrfs_next_delayed_node(curr_node); + /* + * See the comment below about releasing path before releasing + * node. If the commit of delayed items was successful the path + * should always be released, but in case of an error, it may + * point to locked extent buffers (a leaf at the very least). + */ + ASSERT(path->nodes[0] == NULL); btrfs_release_delayed_node(prev_node); } + /* + * Release the path to avoid a potential deadlock and lockdep splat when + * releasing the delayed node, as that requires taking the delayed node's + * mutex. If another task starts running delayed items before we take + * the mutex, it will first lock the mutex and then it may try to lock + * the same btree path (leaf). + */ + btrfs_free_path(path); + if (curr_node) btrfs_release_delayed_node(curr_node); - btrfs_free_path(path); trans->block_rsv = block_rsv; return ret; @@ -1413,7 +1430,29 @@ btrfs_wq_run_delayed_node(delayed_root, fs_info, BTRFS_DELAYED_BATCH); } -/* Will return 0 or -ENOMEM */ +static void btrfs_release_dir_index_item_space(struct btrfs_trans_handle *trans) +{ + struct btrfs_fs_info *fs_info = trans->fs_info; + const u64 bytes = btrfs_calc_insert_metadata_size(fs_info, 1); + + if (test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) + return; + + /* + * Adding the new dir index item does not require touching another + * leaf, so we can release 1 unit of metadata that was previously + * reserved when starting the transaction. This applies only to + * the case where we had a transaction start and excludes the + * transaction join case (when replaying log trees). + */ + trace_btrfs_space_reservation(fs_info, "transaction", + trans->transid, bytes, 0); + btrfs_block_rsv_release(fs_info, trans->block_rsv, bytes, NULL); + ASSERT(trans->bytes_reserved >= bytes); + trans->bytes_reserved -= bytes; +} + +/* Will return 0, -ENOMEM or -EEXIST (index number collision, unexpected). */ int btrfs_insert_delayed_dir_index(struct btrfs_trans_handle *trans, const char *name, int name_len, struct btrfs_inode *dir, @@ -1455,6 +1494,27 @@ mutex_lock(&delayed_node->mutex); + /* + * First attempt to insert the delayed item. This is to make the error + * handling path simpler in case we fail (-EEXIST). There's no risk of + * any other task coming in and running the delayed item before we do + * the metadata space reservation below, because we are holding the + * delayed node's mutex and that mutex must also be locked before the + * node's delayed items can be run. + */ + ret = __btrfs_add_delayed_item(delayed_node, delayed_item); + if (unlikely(ret)) { + btrfs_err(trans->fs_info, +"error adding delayed dir index item, name: %.*s, index: %llu, root: %llu, dir: %llu, dir->index_cnt: %llu, delayed_node->index_cnt: %llu, error: %d", + name_len, name, index, btrfs_root_id(delayed_node->root), + delayed_node->inode_id, dir->index_cnt, + delayed_node->index_cnt, ret); + btrfs_release_delayed_item(delayed_item); + btrfs_release_dir_index_item_space(trans); + mutex_unlock(&delayed_node->mutex); + goto release_node; + } + if (delayed_node->index_item_leaves == 0 || delayed_node->curr_index_batch_size + data_len > leaf_data_size) { delayed_node->curr_index_batch_size = data_len; @@ -1472,36 +1532,14 @@ * impossible. */ if (WARN_ON(ret)) { - mutex_unlock(&delayed_node->mutex); btrfs_release_delayed_item(delayed_item); + mutex_unlock(&delayed_node->mutex); goto release_node; } delayed_node->index_item_leaves++; - } else if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags)) { - const u64 bytes = btrfs_calc_insert_metadata_size(fs_info, 1); - - /* - * Adding the new dir index item does not require touching another - * leaf, so we can release 1 unit of metadata that was previously - * reserved when starting the transaction. This applies only to - * the case where we had a transaction start and excludes the - * transaction join case (when replaying log trees). - */ - trace_btrfs_space_reservation(fs_info, "transaction", - trans->transid, bytes, 0); - btrfs_block_rsv_release(fs_info, trans->block_rsv, bytes, NULL); - ASSERT(trans->bytes_reserved >= bytes); - trans->bytes_reserved -= bytes; - } - - ret = __btrfs_add_delayed_item(delayed_node, delayed_item); - if (unlikely(ret)) { - btrfs_err(trans->fs_info, - "err add delayed dir index item(name: %.*s) into the insertion tree of the delayed node(root id: %llu, inode id: %llu, errno: %d)", - name_len, name, delayed_node->root->root_key.objectid, - delayed_node->inode_id, ret); - BUG(); + } else { + btrfs_release_dir_index_item_space(trans); } mutex_unlock(&delayed_node->mutex); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/disk-io.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/disk-io.c @@ -525,6 +525,7 @@ struct folio *folio) { struct btrfs_fs_info *fs_info = btrfs_sb(mapping->host->i_sb); + struct btrfs_subpage_info *spi = fs_info->subpage_info; struct btrfs_subpage *subpage; struct extent_buffer *eb; int cur_bit = 0; @@ -538,18 +539,19 @@ btrfs_assert_tree_write_locked(eb); return filemap_dirty_folio(mapping, folio); } + + ASSERT(spi); subpage = folio_get_private(folio); - ASSERT(subpage->dirty_bitmap); - while (cur_bit < BTRFS_SUBPAGE_BITMAP_SIZE) { + for (cur_bit = spi->dirty_offset; + cur_bit < spi->dirty_offset + spi->bitmap_nr_bits; + cur_bit++) { unsigned long flags; u64 cur; - u16 tmp = (1 << cur_bit); spin_lock_irqsave(&subpage->lock, flags); - if (!(tmp & subpage->dirty_bitmap)) { + if (!test_bit(cur_bit, subpage->bitmaps)) { spin_unlock_irqrestore(&subpage->lock, flags); - cur_bit++; continue; } spin_unlock_irqrestore(&subpage->lock, flags); @@ -562,7 +564,7 @@ btrfs_assert_tree_write_locked(eb); free_extent_buffer(eb); - cur_bit += (fs_info->nodesize >> fs_info->sectorsize_bits); + cur_bit += (fs_info->nodesize >> fs_info->sectorsize_bits) - 1; } return filemap_dirty_folio(mapping, folio); } @@ -2384,21 +2386,18 @@ ret = -EINVAL; } - if (memcmp(fs_info->fs_devices->fsid, fs_info->super_copy->fsid, - BTRFS_FSID_SIZE)) { + if (memcmp(fs_info->fs_devices->fsid, sb->fsid, BTRFS_FSID_SIZE) != 0) { btrfs_err(fs_info, "superblock fsid doesn't match fsid of fs_devices: %pU != %pU", - fs_info->super_copy->fsid, fs_info->fs_devices->fsid); + sb->fsid, fs_info->fs_devices->fsid); ret = -EINVAL; } - if (btrfs_fs_incompat(fs_info, METADATA_UUID) && - memcmp(fs_info->fs_devices->metadata_uuid, - fs_info->super_copy->metadata_uuid, BTRFS_FSID_SIZE)) { + if (memcmp(fs_info->fs_devices->metadata_uuid, btrfs_sb_fsid_ptr(sb), + BTRFS_FSID_SIZE) != 0) { btrfs_err(fs_info, "superblock metadata_uuid doesn't match metadata uuid of fs_devices: %pU != %pU", - fs_info->super_copy->metadata_uuid, - fs_info->fs_devices->metadata_uuid); + btrfs_sb_fsid_ptr(sb), fs_info->fs_devices->metadata_uuid); ret = -EINVAL; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/extent-tree.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/extent-tree.c @@ -402,11 +402,11 @@ } } + WARN_ON(1); btrfs_print_leaf(eb); btrfs_err(eb->fs_info, "eb %llu iref 0x%lx invalid extent inline ref type %d", eb->start, (unsigned long)iref, type); - WARN_ON(1); return BTRFS_REF_TYPE_INVALID; } @@ -869,6 +869,11 @@ err = -ENOENT; goto out; } else if (WARN_ON(ret)) { + btrfs_print_leaf(path->nodes[0]); + btrfs_err(fs_info, +"extent item not found for insert, bytenr %llu num_bytes %llu parent %llu root_objectid %llu owner %llu offset %llu", + bytenr, num_bytes, parent, root_objectid, owner, + offset); err = -EIO; goto out; } @@ -1079,13 +1084,13 @@ /* * helper to update/remove inline back ref */ -static noinline_for_stack -void update_inline_extent_backref(struct btrfs_path *path, +static noinline_for_stack int update_inline_extent_backref(struct btrfs_path *path, struct btrfs_extent_inline_ref *iref, int refs_to_mod, struct btrfs_delayed_extent_op *extent_op) { struct extent_buffer *leaf = path->nodes[0]; + struct btrfs_fs_info *fs_info = leaf->fs_info; struct btrfs_extent_item *ei; struct btrfs_extent_data_ref *dref = NULL; struct btrfs_shared_data_ref *sref = NULL; @@ -1098,18 +1103,33 @@ ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item); refs = btrfs_extent_refs(leaf, ei); - WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0); + if (unlikely(refs_to_mod < 0 && refs + refs_to_mod <= 0)) { + struct btrfs_key key; + u32 extent_size; + + btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); + if (key.type == BTRFS_METADATA_ITEM_KEY) + extent_size = fs_info->nodesize; + else + extent_size = key.offset; + btrfs_print_leaf(leaf); + btrfs_err(fs_info, + "invalid refs_to_mod for extent %llu num_bytes %u, has %d expect >= -%llu", + key.objectid, extent_size, refs_to_mod, refs); + return -EUCLEAN; + } refs += refs_to_mod; btrfs_set_extent_refs(leaf, ei, refs); if (extent_op) __run_delayed_extent_op(extent_op, leaf, ei); + type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY); /* - * If type is invalid, we should have bailed out after - * lookup_inline_extent_backref(). + * Function btrfs_get_extent_inline_ref_type() has already printed + * error messages. */ - type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY); - ASSERT(type != BTRFS_REF_TYPE_INVALID); + if (unlikely(type == BTRFS_REF_TYPE_INVALID)) + return -EUCLEAN; if (type == BTRFS_EXTENT_DATA_REF_KEY) { dref = (struct btrfs_extent_data_ref *)(&iref->offset); @@ -1119,10 +1139,43 @@ refs = btrfs_shared_data_ref_count(leaf, sref); } else { refs = 1; - BUG_ON(refs_to_mod != -1); + /* + * For tree blocks we can only drop one ref for it, and tree + * blocks should not have refs > 1. + * + * Furthermore if we're inserting a new inline backref, we + * won't reach this path either. That would be + * setup_inline_extent_backref(). + */ + if (unlikely(refs_to_mod != -1)) { + struct btrfs_key key; + + btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); + + btrfs_print_leaf(leaf); + btrfs_err(fs_info, + "invalid refs_to_mod for tree block %llu, has %d expect -1", + key.objectid, refs_to_mod); + return -EUCLEAN; + } } - BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod); + if (unlikely(refs_to_mod < 0 && refs < -refs_to_mod)) { + struct btrfs_key key; + u32 extent_size; + + btrfs_item_key_to_cpu(leaf, &key, path->slots[0]); + if (key.type == BTRFS_METADATA_ITEM_KEY) + extent_size = fs_info->nodesize; + else + extent_size = key.offset; + btrfs_print_leaf(leaf); + btrfs_err(fs_info, +"invalid refs_to_mod for backref entry, iref %lu extent %llu num_bytes %u, has %d expect >= -%llu", + (unsigned long)iref, key.objectid, extent_size, + refs_to_mod, refs); + return -EUCLEAN; + } refs += refs_to_mod; if (refs > 0) { @@ -1142,6 +1195,7 @@ btrfs_truncate_item(path, item_size, 1); } btrfs_mark_buffer_dirty(leaf); + return 0; } static noinline_for_stack @@ -1170,7 +1224,7 @@ bytenr, num_bytes, root_objectid, path->slots[0]); return -EUCLEAN; } - update_inline_extent_backref(path, iref, refs_to_add, extent_op); + ret = update_inline_extent_backref(path, iref, refs_to_add, extent_op); } else if (ret == -ENOENT) { setup_inline_extent_backref(trans->fs_info, path, iref, parent, root_objectid, owner, offset, @@ -1190,7 +1244,7 @@ BUG_ON(!is_data && refs_to_drop != 1); if (iref) - update_inline_extent_backref(path, iref, -refs_to_drop, NULL); + ret = update_inline_extent_backref(path, iref, -refs_to_drop, NULL); else if (is_data) ret = remove_extent_data_ref(trans, root, path, refs_to_drop); else @@ -3709,7 +3763,8 @@ fs_info->data_reloc_bg == 0); if (block_group->ro || - test_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags)) { + (!ffe_ctl->for_data_reloc && + test_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags))) { ret = 1; goto out; } @@ -3752,8 +3807,26 @@ if (ffe_ctl->for_treelog && !fs_info->treelog_bg) fs_info->treelog_bg = block_group->start; - if (ffe_ctl->for_data_reloc && !fs_info->data_reloc_bg) - fs_info->data_reloc_bg = block_group->start; + if (ffe_ctl->for_data_reloc) { + if (!fs_info->data_reloc_bg) + fs_info->data_reloc_bg = block_group->start; + /* + * Do not allow allocations from this block group, unless it is + * for data relocation. Compared to increasing the ->ro, setting + * the ->zoned_data_reloc_ongoing flag still allows nocow + * writers to come in. See btrfs_inc_nocow_writers(). + * + * We need to disable an allocation to avoid an allocation of + * regular (non-relocation data) extent. With mix of relocation + * extents and regular extents, we can dispatch WRITE commands + * (for relocation extents) and ZONE APPEND commands (for + * regular extents) at the same time to the same zone, which + * easily break the write pointer. + * + * Also, this flag avoids this block group to be zone finished. + */ + set_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags); + } ffe_ctl->found_offset = start + block_group->alloc_offset; block_group->alloc_offset += num_bytes; @@ -3771,24 +3844,8 @@ out: if (ret && ffe_ctl->for_treelog) fs_info->treelog_bg = 0; - if (ret && ffe_ctl->for_data_reloc && - fs_info->data_reloc_bg == block_group->start) { - /* - * Do not allow further allocations from this block group. - * Compared to increasing the ->ro, setting the - * ->zoned_data_reloc_ongoing flag still allows nocow - * writers to come in. See btrfs_inc_nocow_writers(). - * - * We need to disable an allocation to avoid an allocation of - * regular (non-relocation data) extent. With mix of relocation - * extents and regular extents, we can dispatch WRITE commands - * (for relocation extents) and ZONE APPEND commands (for - * regular extents) at the same time to the same zone, which - * easily break the write pointer. - */ - set_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags); + if (ret && ffe_ctl->for_data_reloc) fs_info->data_reloc_bg = 0; - } spin_unlock(&fs_info->relocation_bg_lock); spin_unlock(&fs_info->treelog_bg_lock); spin_unlock(&block_group->lock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/extent_io.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/extent_io.c @@ -497,31 +497,6 @@ btrfs_subpage_end_reader(fs_info, page, start, len); } -/* lots and lots of room for performance fixes in the end_bio funcs */ - -void end_extent_writepage(struct page *page, int err, u64 start, u64 end) -{ - struct btrfs_inode *inode; - const bool uptodate = (err == 0); - int ret = 0; - - ASSERT(page && page->mapping); - inode = BTRFS_I(page->mapping->host); - btrfs_writepage_endio_finish_ordered(inode, page, start, end, uptodate); - - if (!uptodate) { - const struct btrfs_fs_info *fs_info = inode->root->fs_info; - u32 len; - - ASSERT(end + 1 - start <= U32_MAX); - len = end + 1 - start; - - btrfs_page_clear_uptodate(fs_info, page, start, len); - ret = err < 0 ? err : -EIO; - mapping_set_error(page->mapping, ret); - } -} - /* * after a writepage IO is done, we need to: * clear the uptodate bits on error @@ -558,10 +533,8 @@ bvec->bv_offset, bvec->bv_len); btrfs_finish_ordered_extent(bbio->ordered, page, start, len, !error); - if (error) { - btrfs_page_clear_uptodate(fs_info, page, start, len); + if (error) mapping_set_error(page->mapping, error); - } btrfs_page_clear_writeback(fs_info, page, start, len); } @@ -1382,6 +1355,7 @@ bio_ctrl->end_io_func = end_bio_extent_writepage; while (cur <= end) { + u32 len = end - cur + 1; u64 disk_bytenr; u64 em_end; u64 dirty_range_start = cur; @@ -1389,8 +1363,8 @@ u32 iosize; if (cur >= i_size) { - btrfs_writepage_endio_finish_ordered(inode, page, cur, - end, true); + btrfs_mark_ordered_io_finished(inode, page, cur, len, + true); /* * This range is beyond i_size, thus we don't need to * bother writing back. @@ -1399,7 +1373,7 @@ * writeback the sectors with subpage dirty bits, * causing writeback without ordered extent. */ - btrfs_page_clear_dirty(fs_info, page, cur, end + 1 - cur); + btrfs_page_clear_dirty(fs_info, page, cur, len); break; } @@ -1410,7 +1384,7 @@ continue; } - em = btrfs_get_extent(inode, NULL, 0, cur, end - cur + 1); + em = btrfs_get_extent(inode, NULL, 0, cur, len); if (IS_ERR(em)) { ret = PTR_ERR_OR_ZERO(em); goto out_error; @@ -1486,7 +1460,6 @@ struct folio *folio = page_folio(page); struct inode *inode = page->mapping->host; const u64 page_start = page_offset(page); - const u64 page_end = page_start + PAGE_SIZE - 1; int ret; int nr = 0; size_t pg_offset; @@ -1530,8 +1503,11 @@ set_page_writeback(page); end_page_writeback(page); } - if (ret) - end_extent_writepage(page, ret, page_start, page_end); + if (ret) { + btrfs_mark_ordered_io_finished(BTRFS_I(inode), page, page_start, + PAGE_SIZE, !ret); + mapping_set_error(page->mapping, ret); + } unlock_page(page); ASSERT(ret <= 0); return ret; @@ -1696,8 +1672,6 @@ struct page *page = bvec->bv_page; u32 len = bvec->bv_len; - if (!uptodate) - btrfs_page_clear_uptodate(fs_info, page, start, len); btrfs_page_clear_writeback(fs_info, page, start, len); bio_offset += len; } @@ -1877,11 +1851,10 @@ * previous call. * Return <0 for fatal error. */ -static int submit_eb_page(struct page *page, struct writeback_control *wbc, - struct extent_buffer **eb_context) +static int submit_eb_page(struct page *page, struct btrfs_eb_write_context *ctx) { + struct writeback_control *wbc = ctx->wbc; struct address_space *mapping = page->mapping; - struct btrfs_block_group *cache = NULL; struct extent_buffer *eb; int ret; @@ -1908,7 +1881,7 @@ return 0; } - if (eb == *eb_context) { + if (eb == ctx->eb) { spin_unlock(&mapping->private_lock); return 0; } @@ -1917,34 +1890,25 @@ if (!ret) return 0; - if (!btrfs_check_meta_write_pointer(eb->fs_info, eb, &cache)) { - /* - * If for_sync, this hole will be filled with - * trasnsaction commit. - */ - if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) - ret = -EAGAIN; - else + ctx->eb = eb; + + ret = btrfs_check_meta_write_pointer(eb->fs_info, ctx); + if (ret) { + if (ret == -EBUSY) ret = 0; free_extent_buffer(eb); return ret; } - *eb_context = eb; - if (!lock_extent_buffer_for_io(eb, wbc)) { - btrfs_revert_meta_write_pointer(cache, eb); - if (cache) - btrfs_put_block_group(cache); free_extent_buffer(eb); return 0; } - if (cache) { - /* - * Implies write in zoned mode. Mark the last eb in a block group. - */ - btrfs_schedule_zone_finish_bg(cache, eb); - btrfs_put_block_group(cache); + /* Implies write in zoned mode. */ + if (ctx->zoned_bg) { + /* Mark the last eb in the block group. */ + btrfs_schedule_zone_finish_bg(ctx->zoned_bg, eb); + ctx->zoned_bg->meta_write_pointer += eb->len; } write_one_eb(eb, wbc); free_extent_buffer(eb); @@ -1954,7 +1918,7 @@ int btree_write_cache_pages(struct address_space *mapping, struct writeback_control *wbc) { - struct extent_buffer *eb_context = NULL; + struct btrfs_eb_write_context ctx = { .wbc = wbc }; struct btrfs_fs_info *fs_info = BTRFS_I(mapping->host)->root->fs_info; int ret = 0; int done = 0; @@ -1996,7 +1960,7 @@ for (i = 0; i < nr_folios; i++) { struct folio *folio = fbatch.folios[i]; - ret = submit_eb_page(&folio->page, wbc, &eb_context); + ret = submit_eb_page(&folio->page, &ctx); if (ret == 0) continue; if (ret < 0) { @@ -2057,6 +2021,9 @@ ret = 0; if (!ret && BTRFS_FS_ERROR(fs_info)) ret = -EROFS; + + if (ctx.zoned_bg) + btrfs_put_block_group(ctx.zoned_bg); btrfs_zoned_meta_io_unlock(fs_info); return ret; } @@ -2256,6 +2223,7 @@ while (cur <= end) { u64 cur_end = min(round_down(cur, PAGE_SIZE) + PAGE_SIZE - 1, end); + u32 cur_len = cur_end + 1 - cur; struct page *page; int nr = 0; @@ -2279,9 +2247,12 @@ set_page_writeback(page); end_page_writeback(page); } - if (ret) - end_extent_writepage(page, ret, cur, cur_end); - btrfs_page_unlock_writer(fs_info, page, cur, cur_end + 1 - cur); + if (ret) { + btrfs_mark_ordered_io_finished(BTRFS_I(inode), page, + cur, cur_len, !ret); + mapping_set_error(page->mapping, ret); + } + btrfs_page_unlock_writer(fs_info, page, cur, cur_len); if (ret < 0) { found_error = true; first_error = ret; @@ -4090,8 +4061,14 @@ char *dst = (char *)dstv; unsigned long i = get_eb_page_index(start); - if (check_eb_range(eb, start, len)) + if (check_eb_range(eb, start, len)) { + /* + * Invalid range hit, reset the memory, so callers won't get + * some random garbage for their uninitialzed memory. + */ + memset(dstv, 0, len); return; + } offset = get_eb_offset_in_page(eb, start); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/extent_io.h +++ linux-oracle-6.5-6.5.0/fs/btrfs/extent_io.h @@ -94,6 +94,13 @@ #endif }; +struct btrfs_eb_write_context { + struct writeback_control *wbc; + struct extent_buffer *eb; + /* Block group @eb resides in. Only used for zoned mode. */ + struct btrfs_block_group *zoned_bg; +}; + /* * Get the correct offset inside the page of extent buffer. * @@ -277,8 +284,6 @@ int btrfs_alloc_page_array(unsigned int nr_pages, struct page **page_array); -void end_extent_writepage(struct page *page, int err, u64 start, u64 end); - #ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS bool find_lock_delalloc_range(struct inode *inode, struct page *locked_page, u64 *start, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/file-item.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/file-item.c @@ -597,29 +597,37 @@ * Each bit represents a sector. Thus caller should ensure @csum_buf passed * in is large enough to contain all csums. */ -int btrfs_lookup_csums_bitmap(struct btrfs_root *root, u64 start, u64 end, - u8 *csum_buf, unsigned long *csum_bitmap, - bool search_commit) +int btrfs_lookup_csums_bitmap(struct btrfs_root *root, struct btrfs_path *path, + u64 start, u64 end, u8 *csum_buf, + unsigned long *csum_bitmap) { struct btrfs_fs_info *fs_info = root->fs_info; struct btrfs_key key; - struct btrfs_path *path; struct extent_buffer *leaf; struct btrfs_csum_item *item; const u64 orig_start = start; + bool free_path = false; int ret; ASSERT(IS_ALIGNED(start, fs_info->sectorsize) && IS_ALIGNED(end + 1, fs_info->sectorsize)); - path = btrfs_alloc_path(); - if (!path) - return -ENOMEM; - - if (search_commit) { - path->skip_locking = 1; - path->reada = READA_FORWARD; - path->search_commit_root = 1; + if (!path) { + path = btrfs_alloc_path(); + if (!path) + return -ENOMEM; + free_path = true; + } + + /* Check if we can reuse the previous path. */ + if (path->nodes[0]) { + btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]); + + if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID && + key.type == BTRFS_EXTENT_CSUM_KEY && + key.offset <= start) + goto search_forward; + btrfs_release_path(path); } key.objectid = BTRFS_EXTENT_CSUM_OBJECTID; @@ -656,6 +664,7 @@ } } +search_forward: while (start <= end) { u64 csum_end; @@ -712,7 +721,8 @@ } ret = 0; fail: - btrfs_free_path(path); + if (free_path) + btrfs_free_path(path); return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/file-item.h +++ linux-oracle-6.5-6.5.0/fs/btrfs/file-item.h @@ -57,9 +57,9 @@ int btrfs_lookup_csums_list(struct btrfs_root *root, u64 start, u64 end, struct list_head *list, int search_commit, bool nowait); -int btrfs_lookup_csums_bitmap(struct btrfs_root *root, u64 start, u64 end, - u8 *csum_buf, unsigned long *csum_bitmap, - bool search_commit); +int btrfs_lookup_csums_bitmap(struct btrfs_root *root, struct btrfs_path *path, + u64 start, u64 end, u8 *csum_buf, + unsigned long *csum_bitmap); void btrfs_extent_item_to_extent_map(struct btrfs_inode *inode, const struct btrfs_path *path, struct btrfs_file_extent_item *fi, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/file.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/file.c @@ -1466,8 +1466,13 @@ if (iocb->ki_flags & IOCB_NOWAIT) ilock_flags |= BTRFS_ILOCK_TRY; - /* If the write DIO is within EOF, use a shared lock */ - if (iocb->ki_pos + iov_iter_count(from) <= i_size_read(inode)) + /* + * If the write DIO is within EOF, use a shared lock and also only if + * security bits will likely not be dropped by file_remove_privs() called + * from btrfs_write_check(). Either will need to be rechecked after the + * lock was acquired. + */ + if (iocb->ki_pos + iov_iter_count(from) <= i_size_read(inode) && IS_NOSEC(inode)) ilock_flags |= BTRFS_ILOCK_SHARED; relock: @@ -1475,6 +1480,13 @@ if (err < 0) return err; + /* Shared lock cannot be used with security bits set. */ + if ((ilock_flags & BTRFS_ILOCK_SHARED) && !IS_NOSEC(inode)) { + btrfs_inode_unlock(BTRFS_I(inode), ilock_flags); + ilock_flags &= ~BTRFS_ILOCK_SHARED; + goto relock; + } + err = generic_write_checks(iocb, from); if (err <= 0) { btrfs_inode_unlock(BTRFS_I(inode), ilock_flags); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/fs.h +++ linux-oracle-6.5-6.5.0/fs/btrfs/fs.h @@ -766,6 +766,9 @@ u64 data_reloc_bg; struct mutex zoned_data_reloc_io_lock; + struct btrfs_block_group *active_meta_bg; + struct btrfs_block_group *active_system_bg; + u64 nr_global_roots; spinlock_t zone_active_bgs_lock; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/inode.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/inode.c @@ -423,11 +423,10 @@ while (index <= end_index) { /* - * For locked page, we will call end_extent_writepage() on it - * in run_delalloc_range() for the error handling. That - * end_extent_writepage() function will call - * btrfs_mark_ordered_io_finished() to clear page Ordered and - * run the ordered extent accounting. + * For locked page, we will call btrfs_mark_ordered_io_finished + * through btrfs_mark_ordered_io_finished() on it + * in run_delalloc_range() for the error handling, which will + * clear page Ordered and run the ordered extent accounting. * * Here we can't just clear the Ordered bit, or * btrfs_mark_ordered_io_finished() would skip the accounting @@ -1157,11 +1156,13 @@ btrfs_cleanup_ordered_extents(inode, locked_page, start, end - start + 1); if (locked_page) { const u64 page_start = page_offset(locked_page); - const u64 page_end = page_start + PAGE_SIZE - 1; set_page_writeback(locked_page); end_page_writeback(locked_page); - end_extent_writepage(locked_page, ret, page_start, page_end); + btrfs_mark_ordered_io_finished(inode, locked_page, + page_start, PAGE_SIZE, + !ret); + mapping_set_error(locked_page->mapping, ret); unlock_page(locked_page); } return ret; @@ -2840,23 +2841,19 @@ static void btrfs_writepage_fixup_worker(struct btrfs_work *work) { - struct btrfs_writepage_fixup *fixup; + struct btrfs_writepage_fixup *fixup = + container_of(work, struct btrfs_writepage_fixup, work); struct btrfs_ordered_extent *ordered; struct extent_state *cached_state = NULL; struct extent_changeset *data_reserved = NULL; - struct page *page; - struct btrfs_inode *inode; - u64 page_start; - u64 page_end; + struct page *page = fixup->page; + struct btrfs_inode *inode = fixup->inode; + struct btrfs_fs_info *fs_info = inode->root->fs_info; + u64 page_start = page_offset(page); + u64 page_end = page_offset(page) + PAGE_SIZE - 1; int ret = 0; bool free_delalloc_space = true; - fixup = container_of(work, struct btrfs_writepage_fixup, work); - page = fixup->page; - inode = fixup->inode; - page_start = page_offset(page); - page_end = page_offset(page) + PAGE_SIZE - 1; - /* * This is similar to page_mkwrite, we need to reserve the space before * we take the page lock. @@ -2949,10 +2946,11 @@ * to reflect the errors and clean the page. */ mapping_set_error(page->mapping, ret); - end_extent_writepage(page, ret, page_start, page_end); + btrfs_mark_ordered_io_finished(inode, page, page_start, + PAGE_SIZE, !ret); clear_page_dirty_for_io(page); } - btrfs_page_clear_checked(inode->root->fs_info, page, page_start, PAGE_SIZE); + btrfs_page_clear_checked(fs_info, page, page_start, PAGE_SIZE); unlock_page(page); put_page(page); kfree(fixup); @@ -3359,6 +3357,13 @@ btrfs_free_reserved_extent(fs_info, ordered_extent->disk_bytenr, ordered_extent->disk_num_bytes, 1); + /* + * Actually free the qgroup rsv which was released when + * the ordered extent was created. + */ + btrfs_qgroup_free_refroot(fs_info, inode->root->root_key.objectid, + ordered_extent->qgroup_rsv, + BTRFS_QGROUP_RSV_DATA); } } @@ -3384,15 +3389,6 @@ return btrfs_finish_one_ordered(ordered); } -void btrfs_writepage_endio_finish_ordered(struct btrfs_inode *inode, - struct page *page, u64 start, - u64 end, bool uptodate) -{ - trace_btrfs_writepage_end_io_hook(inode, start, end, uptodate); - - btrfs_mark_ordered_io_finished(inode, page, start, end + 1 - start, uptodate); -} - /* * Verify the checksum for a single sector without any extra action that depend * on the type of I/O. @@ -5924,20 +5920,24 @@ static int btrfs_get_dir_last_index(struct btrfs_inode *dir, u64 *index) { - if (dir->index_cnt == (u64)-1) { - int ret; + int ret = 0; + btrfs_inode_lock(dir, 0); + if (dir->index_cnt == (u64)-1) { ret = btrfs_inode_delayed_dir_index_count(dir); if (ret) { ret = btrfs_set_inode_index_count(dir); if (ret) - return ret; + goto out; } } - *index = dir->index_cnt; + /* index_cnt is the index number of next new entry, so decrement it. */ + *index = dir->index_cnt - 1; +out: + btrfs_inode_unlock(dir, 0); - return 0; + return ret; } /* @@ -5972,6 +5972,19 @@ return 0; } +static loff_t btrfs_dir_llseek(struct file *file, loff_t offset, int whence) +{ + struct btrfs_file_private *private = file->private_data; + int ret; + + ret = btrfs_get_dir_last_index(BTRFS_I(file_inode(file)), + &private->last_index); + if (ret) + return ret; + + return generic_file_llseek(file, offset, whence); +} + struct dir_entry { u64 ino; u64 offset; @@ -11052,7 +11065,7 @@ }; static const struct file_operations btrfs_dir_file_operations = { - .llseek = generic_file_llseek, + .llseek = btrfs_dir_llseek, .read = generic_read_dir, .iterate_shared = btrfs_real_readdir, .open = btrfs_opendir, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/ioctl.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/ioctl.c @@ -1958,6 +1958,13 @@ goto out_put; } + /* + * We don't need the path anymore, so release it and + * avoid deadlocks and lockdep warnings in case + * btrfs_iget() needs to lookup the inode from its root + * btree and lock the same leaf. + */ + btrfs_release_path(path); temp_inode = btrfs_iget(sb, key2.objectid, root); if (IS_ERR(temp_inode)) { ret = PTR_ERR(temp_inode); @@ -1978,7 +1985,6 @@ goto out_put; } - btrfs_release_path(path); key.objectid = key.offset; key.offset = (u64)-1; dirid = key.objectid; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/ordered-data.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/ordered-data.c @@ -410,6 +410,10 @@ unsigned long flags; u64 cur = file_offset; + trace_btrfs_writepage_end_io_hook(inode, file_offset, + file_offset + num_bytes - 1, + uptodate); + spin_lock_irqsave(&tree->lock, flags); while (cur < file_offset + num_bytes) { u64 entry_end; @@ -635,7 +639,7 @@ refcount_inc(&trans->use_count); spin_unlock(&fs_info->trans_lock); - ASSERT(trans); + ASSERT(trans || BTRFS_FS_ERROR(fs_info)); if (trans) { if (atomic_dec_and_test(&trans->pending_ordered)) wake_up(&trans->pending_wait); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/raid56.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/raid56.c @@ -2112,8 +2112,8 @@ goto error; } - ret = btrfs_lookup_csums_bitmap(csum_root, start, start + len - 1, - rbio->csum_buf, rbio->csum_bitmap, false); + ret = btrfs_lookup_csums_bitmap(csum_root, NULL, start, start + len - 1, + rbio->csum_buf, rbio->csum_bitmap); if (ret < 0) goto error; if (bitmap_empty(rbio->csum_bitmap, len >> fs_info->sectorsize_bits)) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/relocation.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/relocation.c @@ -3006,9 +3006,6 @@ if (!page) return -ENOMEM; } - ret = set_page_extent_mapped(page); - if (ret < 0) - goto release_page; if (PageReadahead(page)) page_cache_async_readahead(inode->i_mapping, ra, NULL, @@ -3024,6 +3021,15 @@ } } + /* + * We could have lost page private when we dropped the lock to read the + * page above, make sure we set_page_extent_mapped here so we have any + * of the subpage blocksize stuff we need in place. + */ + ret = set_page_extent_mapped(page); + if (ret < 0) + goto release_page; + page_start = page_offset(page); page_end = page_start + PAGE_SIZE - 1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/scrub.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/scrub.c @@ -43,9 +43,20 @@ /* * The following value only influences the performance. * - * This determines the batch size for stripe submitted in one go. + * This detemines how many stripes would be submitted in one go, + * which is 512KiB (BTRFS_STRIPE_LEN * SCRUB_STRIPES_PER_GROUP). */ -#define SCRUB_STRIPES_PER_SCTX 8 /* That would be 8 64K stripe per-device. */ +#define SCRUB_STRIPES_PER_GROUP 8 + +/* + * How many groups we have for each sctx. + * + * This would be 8M per device, the same value as the old scrub in-flight bios + * size limit. + */ +#define SCRUB_GROUPS_PER_SCTX 16 + +#define SCRUB_TOTAL_STRIPES (SCRUB_GROUPS_PER_SCTX * SCRUB_STRIPES_PER_GROUP) /* * The following value times PAGE_SIZE needs to be large enough to match the @@ -172,9 +183,11 @@ }; struct scrub_ctx { - struct scrub_stripe stripes[SCRUB_STRIPES_PER_SCTX]; + struct scrub_stripe stripes[SCRUB_TOTAL_STRIPES]; struct scrub_stripe *raid56_data_stripes; struct btrfs_fs_info *fs_info; + struct btrfs_path extent_path; + struct btrfs_path csum_path; int first_free; int cur_stripe; atomic_t cancel_req; @@ -315,10 +328,10 @@ if (!sctx) return; - for (i = 0; i < SCRUB_STRIPES_PER_SCTX; i++) + for (i = 0; i < SCRUB_TOTAL_STRIPES; i++) release_scrub_stripe(&sctx->stripes[i]); - kfree(sctx); + kvfree(sctx); } static void scrub_put_ctx(struct scrub_ctx *sctx) @@ -333,13 +346,20 @@ struct scrub_ctx *sctx; int i; - sctx = kzalloc(sizeof(*sctx), GFP_KERNEL); + /* Since sctx has inline 128 stripes, it can go beyond 64K easily. Use + * kvzalloc(). + */ + sctx = kvzalloc(sizeof(*sctx), GFP_KERNEL); if (!sctx) goto nomem; refcount_set(&sctx->refs, 1); sctx->is_dev_replace = is_dev_replace; sctx->fs_info = fs_info; - for (i = 0; i < SCRUB_STRIPES_PER_SCTX; i++) { + sctx->extent_path.search_commit_root = 1; + sctx->extent_path.skip_locking = 1; + sctx->csum_path.search_commit_root = 1; + sctx->csum_path.skip_locking = 1; + for (i = 0; i < SCRUB_TOTAL_STRIPES; i++) { int ret; ret = init_scrub_stripe(fs_info, &sctx->stripes[i]); @@ -1468,6 +1488,8 @@ * Return <0 for error. */ static int scrub_find_fill_first_stripe(struct btrfs_block_group *bg, + struct btrfs_path *extent_path, + struct btrfs_path *csum_path, struct btrfs_device *dev, u64 physical, int mirror_num, u64 logical_start, u32 logical_len, @@ -1477,7 +1499,6 @@ struct btrfs_root *extent_root = btrfs_extent_root(fs_info, bg->start); struct btrfs_root *csum_root = btrfs_csum_root(fs_info, bg->start); const u64 logical_end = logical_start + logical_len; - struct btrfs_path path = { 0 }; u64 cur_logical = logical_start; u64 stripe_end; u64 extent_start; @@ -1493,14 +1514,13 @@ /* The range must be inside the bg. */ ASSERT(logical_start >= bg->start && logical_end <= bg->start + bg->length); - path.search_commit_root = 1; - path.skip_locking = 1; - - ret = find_first_extent_item(extent_root, &path, logical_start, logical_len); + ret = find_first_extent_item(extent_root, extent_path, logical_start, + logical_len); /* Either error or not found. */ if (ret) goto out; - get_extent_info(&path, &extent_start, &extent_len, &extent_flags, &extent_gen); + get_extent_info(extent_path, &extent_start, &extent_len, &extent_flags, + &extent_gen); if (extent_flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) stripe->nr_meta_extents++; if (extent_flags & BTRFS_EXTENT_FLAG_DATA) @@ -1528,7 +1548,7 @@ /* Fill the extent info for the remaining sectors. */ while (cur_logical <= stripe_end) { - ret = find_first_extent_item(extent_root, &path, cur_logical, + ret = find_first_extent_item(extent_root, extent_path, cur_logical, stripe_end - cur_logical + 1); if (ret < 0) goto out; @@ -1536,7 +1556,7 @@ ret = 0; break; } - get_extent_info(&path, &extent_start, &extent_len, + get_extent_info(extent_path, &extent_start, &extent_len, &extent_flags, &extent_gen); if (extent_flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) stripe->nr_meta_extents++; @@ -1561,9 +1581,9 @@ */ ASSERT(BITS_PER_LONG >= BTRFS_STRIPE_LEN >> fs_info->sectorsize_bits); - ret = btrfs_lookup_csums_bitmap(csum_root, stripe->logical, - stripe_end, stripe->csums, - &csum_bitmap, true); + ret = btrfs_lookup_csums_bitmap(csum_root, csum_path, + stripe->logical, stripe_end, + stripe->csums, &csum_bitmap); if (ret < 0) goto out; if (ret > 0) @@ -1576,7 +1596,6 @@ } set_bit(SCRUB_STRIPE_FLAG_INITIALIZED, &stripe->state); out: - btrfs_release_path(&path); return ret; } @@ -1654,6 +1673,28 @@ return false; } +static void submit_initial_group_read(struct scrub_ctx *sctx, + unsigned int first_slot, + unsigned int nr_stripes) +{ + struct blk_plug plug; + + ASSERT(first_slot < SCRUB_TOTAL_STRIPES); + ASSERT(first_slot + nr_stripes <= SCRUB_TOTAL_STRIPES); + + scrub_throttle_dev_io(sctx, sctx->stripes[0].dev, + btrfs_stripe_nr_to_offset(nr_stripes)); + blk_start_plug(&plug); + for (int i = 0; i < nr_stripes; i++) { + struct scrub_stripe *stripe = &sctx->stripes[first_slot + i]; + + /* Those stripes should be initialized. */ + ASSERT(test_bit(SCRUB_STRIPE_FLAG_INITIALIZED, &stripe->state)); + scrub_submit_initial_read(sctx, stripe); + } + blk_finish_plug(&plug); +} + static int flush_scrub_stripes(struct scrub_ctx *sctx) { struct btrfs_fs_info *fs_info = sctx->fs_info; @@ -1666,11 +1707,11 @@ ASSERT(test_bit(SCRUB_STRIPE_FLAG_INITIALIZED, &sctx->stripes[0].state)); - scrub_throttle_dev_io(sctx, sctx->stripes[0].dev, - btrfs_stripe_nr_to_offset(nr_stripes)); - for (int i = 0; i < nr_stripes; i++) { - stripe = &sctx->stripes[i]; - scrub_submit_initial_read(sctx, stripe); + /* Submit the stripes which are populated but not submitted. */ + if (nr_stripes % SCRUB_STRIPES_PER_GROUP) { + const int first_slot = round_down(nr_stripes, SCRUB_STRIPES_PER_GROUP); + + submit_initial_group_read(sctx, first_slot, nr_stripes - first_slot); } for (int i = 0; i < nr_stripes; i++) { @@ -1750,28 +1791,40 @@ static int queue_scrub_stripe(struct scrub_ctx *sctx, struct btrfs_block_group *bg, struct btrfs_device *dev, int mirror_num, - u64 logical, u32 length, u64 physical) + u64 logical, u32 length, u64 physical, + u64 *found_logical_ret) { struct scrub_stripe *stripe; int ret; - /* No available slot, submit all stripes and wait for them. */ - if (sctx->cur_stripe >= SCRUB_STRIPES_PER_SCTX) { - ret = flush_scrub_stripes(sctx); - if (ret < 0) - return ret; - } + /* + * There should always be one slot left, as caller filling the last + * slot should flush them all. + */ + ASSERT(sctx->cur_stripe < SCRUB_TOTAL_STRIPES); stripe = &sctx->stripes[sctx->cur_stripe]; - - /* We can queue one stripe using the remaining slot. */ scrub_reset_stripe(stripe); - ret = scrub_find_fill_first_stripe(bg, dev, physical, mirror_num, - logical, length, stripe); + ret = scrub_find_fill_first_stripe(bg, &sctx->extent_path, + &sctx->csum_path, dev, physical, + mirror_num, logical, length, stripe); /* Either >0 as no more extents or <0 for error. */ if (ret) return ret; + if (found_logical_ret) + *found_logical_ret = stripe->logical; sctx->cur_stripe++; + + /* We filled one group, submit it. */ + if (sctx->cur_stripe % SCRUB_STRIPES_PER_GROUP == 0) { + const int first_slot = sctx->cur_stripe - SCRUB_STRIPES_PER_GROUP; + + submit_initial_group_read(sctx, first_slot, SCRUB_STRIPES_PER_GROUP); + } + + /* Last slot used, flush them all. */ + if (sctx->cur_stripe == SCRUB_TOTAL_STRIPES) + return flush_scrub_stripes(sctx); return 0; } @@ -1785,6 +1838,8 @@ struct btrfs_fs_info *fs_info = sctx->fs_info; struct btrfs_raid_bio *rbio; struct btrfs_io_context *bioc = NULL; + struct btrfs_path extent_path = { 0 }; + struct btrfs_path csum_path = { 0 }; struct bio *bio; struct scrub_stripe *stripe; bool all_empty = true; @@ -1795,6 +1850,16 @@ ASSERT(sctx->raid56_data_stripes); + /* + * For data stripe search, we cannot re-use the same extent/csum paths, + * as the data stripe bytenr may be smaller than previous extent. Thus + * we have to use our own extent/csum paths. + */ + extent_path.search_commit_root = 1; + extent_path.skip_locking = 1; + csum_path.search_commit_root = 1; + csum_path.skip_locking = 1; + for (int i = 0; i < data_stripes; i++) { int stripe_index; int rot; @@ -1809,7 +1874,7 @@ scrub_reset_stripe(stripe); set_bit(SCRUB_STRIPE_FLAG_NO_REPORT, &stripe->state); - ret = scrub_find_fill_first_stripe(bg, + ret = scrub_find_fill_first_stripe(bg, &extent_path, &csum_path, map->stripes[stripe_index].dev, physical, 1, full_stripe_start + btrfs_stripe_nr_to_offset(i), BTRFS_STRIPE_LEN, stripe); @@ -1937,6 +2002,8 @@ bio_put(bio); btrfs_bio_counter_dec(fs_info); + btrfs_release_path(&extent_path); + btrfs_release_path(&csum_path); out: return ret; } @@ -1970,6 +2037,7 @@ path.skip_locking = 1; /* Go through each extent items inside the logical range */ while (cur_logical < logical_end) { + u64 found_logical; u64 cur_physical = physical + cur_logical - logical_start; /* Canceled? */ @@ -1994,7 +2062,7 @@ ret = queue_scrub_stripe(sctx, bg, device, mirror_num, cur_logical, logical_end - cur_logical, - cur_physical); + cur_physical, &found_logical); if (ret > 0) { /* No more extent, just update the accounting */ sctx->stat.last_physical = physical + logical_length; @@ -2004,9 +2072,7 @@ if (ret < 0) break; - ASSERT(sctx->cur_stripe > 0); - cur_logical = sctx->stripes[sctx->cur_stripe - 1].logical - + BTRFS_STRIPE_LEN; + cur_logical = found_logical + BTRFS_STRIPE_LEN; /* Don't hold CPU for too long time */ cond_resched(); @@ -2109,6 +2175,9 @@ u64 stripe_logical; int stop_loop = 0; + /* Extent_path should be released by now. */ + ASSERT(sctx->extent_path.nodes[0] == NULL); + scrub_blocked_if_needed(fs_info); if (sctx->is_dev_replace && @@ -2227,6 +2296,9 @@ ret2 = flush_scrub_stripes(sctx); if (!ret) ret = ret2; + btrfs_release_path(&sctx->extent_path); + btrfs_release_path(&sctx->csum_path); + if (sctx->raid56_data_stripes) { for (int i = 0; i < nr_data_stripes(map); i++) release_scrub_stripe(&sctx->raid56_data_stripes[i]); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/space-info.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/space-info.c @@ -389,11 +389,7 @@ return 0; used = btrfs_space_info_used(space_info, true); - if (test_bit(BTRFS_FS_ACTIVE_ZONE_TRACKING, &fs_info->flags) && - (space_info->flags & BTRFS_BLOCK_GROUP_METADATA)) - avail = 0; - else - avail = calc_available_free_space(fs_info, space_info, flush); + avail = calc_available_free_space(fs_info, space_info, flush); if (used + bytes < space_info->total_bytes + avail) return 1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/super.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/super.c @@ -2111,7 +2111,7 @@ * calculated f_bavail. */ if (!mixed && block_rsv->space_info->full && - total_free_meta - thresh < block_rsv->size) + (total_free_meta < thresh || total_free_meta - thresh < block_rsv->size)) buf->f_bavail = 0; buf->f_type = BTRFS_SUPER_MAGIC; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/transaction.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/transaction.c @@ -292,10 +292,11 @@ spin_unlock(&fs_info->trans_lock); /* - * If we are ATTACH, we just want to catch the current transaction, - * and commit it. If there is no transaction, just return ENOENT. + * If we are ATTACH or TRANS_JOIN_NOSTART, we just want to catch the + * current transaction, and commit it. If there is no transaction, just + * return ENOENT. */ - if (type == TRANS_ATTACH) + if (type == TRANS_ATTACH || type == TRANS_JOIN_NOSTART) return -ENOENT; /* @@ -591,8 +592,13 @@ u64 delayed_refs_bytes = 0; qgroup_reserved = num_items * fs_info->nodesize; - ret = btrfs_qgroup_reserve_meta_pertrans(root, qgroup_reserved, - enforce_qgroups); + /* + * Use prealloc for now, as there might be a currently running + * transaction that could free this reserved space prematurely + * by committing. + */ + ret = btrfs_qgroup_reserve_meta_prealloc(root, qgroup_reserved, + enforce_qgroups, false); if (ret) return ERR_PTR(ret); @@ -705,6 +711,14 @@ h->reloc_reserved = reloc_reserved; } + /* + * Now that we have found a transaction to be a part of, convert the + * qgroup reservation from prealloc to pertrans. A different transaction + * can't race in and free our pertrans out from under us. + */ + if (qgroup_reserved) + btrfs_qgroup_convert_reserved_meta(root, qgroup_reserved); + got_it: if (!current->journal_info) current->journal_info = h; @@ -752,7 +766,7 @@ btrfs_block_rsv_release(fs_info, &fs_info->trans_block_rsv, num_bytes, NULL); reserve_fail: - btrfs_qgroup_free_meta_pertrans(root, qgroup_reserved); + btrfs_qgroup_free_meta_prealloc(root, qgroup_reserved); return ERR_PTR(ret); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/transaction.h +++ linux-oracle-6.5-6.5.0/fs/btrfs/transaction.h @@ -218,8 +218,8 @@ (errno))) { \ /* Stack trace printed. */ \ } else { \ - btrfs_debug((trans)->fs_info, \ - "Transaction aborted (error %d)", \ + btrfs_err((trans)->fs_info, \ + "Transaction aborted (error %d)", \ (errno)); \ } \ } \ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/volumes.c +++ linux-oracle-6.5-6.5.0/fs/btrfs/volumes.c @@ -681,6 +681,14 @@ return -EINVAL; } +u8 *btrfs_sb_fsid_ptr(struct btrfs_super_block *sb) +{ + bool has_metadata_uuid = (btrfs_super_incompat_flags(sb) & + BTRFS_FEATURE_INCOMPAT_METADATA_UUID); + + return has_metadata_uuid ? sb->metadata_uuid : sb->fsid; +} + /* * Handle scanned device having its CHANGING_FSID_V2 flag set and the fs_devices * being created with a disk that has already completed its fsid change. Such only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/volumes.h +++ linux-oracle-6.5-6.5.0/fs/btrfs/volumes.h @@ -749,5 +749,6 @@ bool btrfs_repair_one_zone(struct btrfs_fs_info *fs_info, u64 logical); bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr); +u8 *btrfs_sb_fsid_ptr(struct btrfs_super_block *sb); #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/btrfs/zoned.h +++ linux-oracle-6.5-6.5.0/fs/btrfs/zoned.h @@ -58,11 +58,8 @@ struct extent_buffer *eb); bool btrfs_use_zone_append(struct btrfs_bio *bbio); void btrfs_record_physical_zoned(struct btrfs_bio *bbio); -bool btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info, - struct extent_buffer *eb, - struct btrfs_block_group **cache_ret); -void btrfs_revert_meta_write_pointer(struct btrfs_block_group *cache, - struct extent_buffer *eb); +int btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info, + struct btrfs_eb_write_context *ctx); int btrfs_zoned_issue_zeroout(struct btrfs_device *device, u64 physical, u64 length); int btrfs_sync_zone_write_pointer(struct btrfs_device *tgt_dev, u64 logical, u64 physical_start, u64 physical_pos); @@ -189,17 +186,10 @@ { } -static inline bool btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info, - struct extent_buffer *eb, - struct btrfs_block_group **cache_ret) -{ - return true; -} - -static inline void btrfs_revert_meta_write_pointer( - struct btrfs_block_group *cache, - struct extent_buffer *eb) +static inline int btrfs_check_meta_write_pointer(struct btrfs_fs_info *fs_info, + struct btrfs_eb_write_context *ctx) { + return 0; } static inline int btrfs_zoned_issue_zeroout(struct btrfs_device *device, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/efivarfs/super.c +++ linux-oracle-6.5-6.5.0/fs/efivarfs/super.c @@ -32,10 +32,16 @@ u64 storage_space, remaining_space, max_variable_size; efi_status_t status; - status = efivar_query_variable_info(attr, &storage_space, &remaining_space, - &max_variable_size); - if (status != EFI_SUCCESS) - return efi_status_to_err(status); + /* Some UEFI firmware does not implement QueryVariableInfo() */ + storage_space = remaining_space = 0; + if (efi_rt_services_supported(EFI_RT_SUPPORTED_QUERY_VARIABLE_INFO)) { + status = efivar_query_variable_info(attr, &storage_space, + &remaining_space, + &max_variable_size); + if (status != EFI_SUCCESS && status != EFI_UNSUPPORTED) + pr_warn_ratelimited("query_variable_info() failed: 0x%lx\n", + status); + } /* * This is not a normal filesystem, so no point in pretending it has a block only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/erofs/decompressor_lzma.c +++ linux-oracle-6.5-6.5.0/fs/erofs/decompressor_lzma.c @@ -217,9 +217,12 @@ strm->buf.out_size = min_t(u32, outlen, PAGE_SIZE - pageofs); outlen -= strm->buf.out_size; - if (!rq->out[no] && rq->fillgaps) /* deduped */ + if (!rq->out[no] && rq->fillgaps) { /* deduped */ rq->out[no] = erofs_allocpage(pagepool, GFP_KERNEL | __GFP_NOFAIL); + set_page_private(rq->out[no], + Z_EROFS_SHORTLIVED_PAGE); + } if (rq->out[no]) strm->buf.out = kmap(rq->out[no]) + pageofs; pageofs = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/erofs/super.c +++ linux-oracle-6.5-6.5.0/fs/erofs/super.c @@ -238,7 +238,7 @@ return PTR_ERR(ptr); dis = ptr + erofs_blkoff(sb, *pos); - if (!dif->path) { + if (!sbi->devs->flatdev && !dif->path) { if (!dis->tag[0]) { erofs_err(sb, "empty device tag @ pos %llu", *pos); return -EINVAL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/ext2/xattr.c +++ linux-oracle-6.5-6.5.0/fs/ext2/xattr.c @@ -742,10 +742,10 @@ /* We need to allocate a new block */ ext2_fsblk_t goal = ext2_group_first_block_no(sb, EXT2_I(inode)->i_block_group); - int block = ext2_new_block(inode, goal, &error); + ext2_fsblk_t block = ext2_new_block(inode, goal, &error); if (error) goto cleanup; - ea_idebug(inode, "creating block %d", block); + ea_idebug(inode, "creating block %lu", block); new_bh = sb_getblk(sb, block); if (unlikely(!new_bh)) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/ext4/balloc.c +++ linux-oracle-6.5-6.5.0/fs/ext4/balloc.c @@ -913,11 +913,11 @@ } /* - * This function returns the number of file system metadata clusters at + * This function returns the number of file system metadata blocks at * the beginning of a block group, including the reserved gdt blocks. */ -static unsigned ext4_num_base_meta_clusters(struct super_block *sb, - ext4_group_t block_group) +unsigned int ext4_num_base_meta_blocks(struct super_block *sb, + ext4_group_t block_group) { struct ext4_sb_info *sbi = EXT4_SB(sb); unsigned num; @@ -935,8 +935,15 @@ } else { /* For META_BG_BLOCK_GROUPS */ num += ext4_bg_num_gdb_meta(sb, block_group); } - return EXT4_NUM_B2C(sbi, num); + return num; } + +static unsigned int ext4_num_base_meta_clusters(struct super_block *sb, + ext4_group_t block_group) +{ + return EXT4_NUM_B2C(EXT4_SB(sb), ext4_num_base_meta_blocks(sb, block_group)); +} + /** * ext4_inode_to_goal_block - return a hint for block allocation * @inode: inode for block allocation only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/ext4/block_validity.c +++ linux-oracle-6.5-6.5.0/fs/ext4/block_validity.c @@ -215,7 +215,6 @@ struct ext4_system_blocks *system_blks; struct ext4_group_desc *gdp; ext4_group_t i; - int flex_size = ext4_flex_bg_size(sbi); int ret; system_blks = kzalloc(sizeof(*system_blks), GFP_KERNEL); @@ -223,12 +222,13 @@ return -ENOMEM; for (i=0; i < ngroups; i++) { + unsigned int meta_blks = ext4_num_base_meta_blocks(sb, i); + cond_resched(); - if (ext4_bg_has_super(sb, i) && - ((i < 5) || ((i % flex_size) == 0))) { + if (meta_blks != 0) { ret = add_system_zone(system_blks, ext4_group_first_block_no(sb, i), - ext4_bg_num_gdb(sb, i) + 1, 0); + meta_blks, 0); if (ret) goto err; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/ext4/crypto.c +++ linux-oracle-6.5-6.5.0/fs/ext4/crypto.c @@ -33,6 +33,8 @@ #if IS_ENABLED(CONFIG_UNICODE) err = ext4_fname_setup_ci_filename(dir, iname, fname); + if (err) + ext4_fname_free_filename(fname); #endif return err; } @@ -51,6 +53,8 @@ #if IS_ENABLED(CONFIG_UNICODE) err = ext4_fname_setup_ci_filename(dir, &dentry->d_name, fname); + if (err) + ext4_fname_free_filename(fname); #endif return err; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/ext4/ext4.h +++ linux-oracle-6.5-6.5.0/fs/ext4/ext4.h @@ -3084,6 +3084,8 @@ extern void ext4_mark_group_bitmap_corrupted(struct super_block *sb, ext4_group_t block_group, unsigned int flags); +extern unsigned int ext4_num_base_meta_blocks(struct super_block *sb, + ext4_group_t block_group); extern __printf(7, 8) void __ext4_error(struct super_block *, const char *, unsigned int, bool, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/ext4/file.c +++ linux-oracle-6.5-6.5.0/fs/ext4/file.c @@ -476,6 +476,11 @@ * required to change security info in file_modified(), for extending * I/O, any form of non-overwrite I/O, and unaligned I/O to unwritten * extents (as partial block zeroing may be required). + * + * Note that unaligned writes are allowed under shared lock so long as + * they are pure overwrites. Otherwise, concurrent unaligned writes risk + * data corruption due to partial block zeroing in the dio layer, and so + * the I/O must occur exclusively. */ if (*ilock_shared && ((!IS_NOSEC(inode) || *extend || !overwrite || @@ -492,21 +497,12 @@ /* * Now that locking is settled, determine dio flags and exclusivity - * requirements. Unaligned writes are allowed under shared lock so long - * as they are pure overwrites. Set the iomap overwrite only flag as an - * added precaution in this case. Even though this is unnecessary, we - * can detect and warn on unexpected -EAGAIN if an unsafe unaligned - * write is ever submitted. - * - * Otherwise, concurrent unaligned writes risk data corruption due to - * partial block zeroing in the dio layer, and so the I/O must occur - * exclusively. The inode lock is already held exclusive if the write is - * non-overwrite or extending, so drain all outstanding dio and set the - * force wait dio flag. + * requirements. We don't use DIO_OVERWRITE_ONLY because we enforce + * behavior already. The inode lock is already held exclusive if the + * write is non-overwrite or extending, so drain all outstanding dio and + * set the force wait dio flag. */ - if (*ilock_shared && unaligned_io) { - *dio_flags = IOMAP_DIO_OVERWRITE_ONLY; - } else if (!*ilock_shared && (unaligned_io || *extend)) { + if (!*ilock_shared && (unaligned_io || *extend)) { if (iocb->ki_flags & IOCB_NOWAIT) { ret = -EAGAIN; goto out; @@ -608,7 +604,6 @@ iomap_ops = &ext4_iomap_overwrite_ops; ret = iomap_dio_rw(iocb, from, iomap_ops, &ext4_dio_write_ops, dio_flags, NULL, 0); - WARN_ON_ONCE(ret == -EAGAIN && !(iocb->ki_flags & IOCB_NOWAIT)); if (ret == -ENOTBLK) ret = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/ext4/mballoc.h +++ linux-oracle-6.5-6.5.0/fs/ext4/mballoc.h @@ -233,6 +233,20 @@ (fex->fe_start << EXT4_SB(sb)->s_cluster_bits); } +static inline loff_t extent_logical_end(struct ext4_sb_info *sbi, + struct ext4_free_extent *fex) +{ + /* Use loff_t to avoid end exceeding ext4_lblk_t max. */ + return (loff_t)fex->fe_logical + EXT4_C2B(sbi, fex->fe_len); +} + +static inline loff_t pa_logical_end(struct ext4_sb_info *sbi, + struct ext4_prealloc_space *pa) +{ + /* Use loff_t to avoid end exceeding ext4_lblk_t max. */ + return (loff_t)pa->pa_lstart + EXT4_C2B(sbi, pa->pa_len); +} + typedef int (*ext4_mballoc_query_range_fn)( struct super_block *sb, ext4_group_t agno, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/f2fs/data.c +++ linux-oracle-6.5-6.5.0/fs/f2fs/data.c @@ -1389,18 +1389,14 @@ { struct address_space *mapping = inode->i_mapping; struct page *page; -repeat: + page = f2fs_get_read_data_page(inode, index, 0, for_write, NULL); if (IS_ERR(page)) return page; /* wait for read completion */ lock_page(page); - if (unlikely(page->mapping != mapping)) { - f2fs_put_page(page, 1); - goto repeat; - } - if (unlikely(!PageUptodate(page))) { + if (unlikely(page->mapping != mapping || !PageUptodate(page))) { f2fs_put_page(page, 1); return ERR_PTR(-EIO); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/f2fs/inline.c +++ linux-oracle-6.5-6.5.0/fs/f2fs/inline.c @@ -641,7 +641,8 @@ } if (inode) { - f2fs_down_write(&F2FS_I(inode)->i_sem); + f2fs_down_write_nested(&F2FS_I(inode)->i_sem, + SINGLE_DEPTH_NESTING); page = f2fs_init_inode_metadata(inode, dir, fname, ipage); if (IS_ERR(page)) { err = PTR_ERR(page); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/fuse/readdir.c +++ linux-oracle-6.5-6.5.0/fs/fuse/readdir.c @@ -243,8 +243,16 @@ dput(dentry); dentry = alias; } - if (IS_ERR(dentry)) + if (IS_ERR(dentry)) { + if (!IS_ERR(inode)) { + struct fuse_inode *fi = get_fuse_inode(inode); + + spin_lock(&fi->lock); + fi->nlookup--; + spin_unlock(&fi->lock); + } return PTR_ERR(dentry); + } } if (fc->readdirplus_auto) set_bit(FUSE_I_INIT_RDPLUS, &get_fuse_inode(inode)->state); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/gfs2/aops.c +++ linux-oracle-6.5-6.5.0/fs/gfs2/aops.c @@ -183,13 +183,13 @@ int ret; /* - * Even if we didn't write any pages here, we might still be holding + * Even if we didn't write enough pages here, we might still be holding * dirty pages in the ail. We forcibly flush the ail because we don't * want balance_dirty_pages() to loop indefinitely trying to write out * pages held in the ail that it can't find. */ ret = iomap_writepages(mapping, wbc, &wpc, &gfs2_writeback_ops); - if (ret == 0) + if (ret == 0 && wbc->nr_to_write > 0) set_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags); return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/gfs2/glock.c +++ linux-oracle-6.5-6.5.0/fs/gfs2/glock.c @@ -2017,7 +2017,9 @@ if (!test_bit(GLF_LOCK, &gl->gl_flags)) { if (!spin_trylock(&gl->gl_lockref.lock)) continue; - if (!gl->gl_lockref.count) { + if (gl->gl_lockref.count <= 1 && + (gl->gl_state == LM_ST_UNLOCKED || + demote_ok(gl))) { list_move(&gl->gl_lru, &dispose); atomic_dec(&lru_count); freed++; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/gfs2/glops.c +++ linux-oracle-6.5-6.5.0/fs/gfs2/glops.c @@ -567,15 +567,16 @@ struct super_block *sb = sdp->sd_vfs; if (!remote || - gl->gl_state != LM_ST_SHARED || + (gl->gl_state != LM_ST_SHARED && + gl->gl_state != LM_ST_UNLOCKED) || gl->gl_demote_state != LM_ST_UNLOCKED) return; /* * Try to get an active super block reference to prevent racing with - * unmount (see trylock_super()). But note that unmount isn't the only - * place where a write lock on s_umount is taken, and we can fail here - * because of things like remount as well. + * unmount (see super_trylock_shared()). But note that unmount isn't + * the only place where a write lock on s_umount is taken, and we can + * fail here because of things like remount as well. */ if (down_read_trylock(&sb->s_umount)) { atomic_inc(&sb->s_active); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/gfs2/log.c +++ linux-oracle-6.5-6.5.0/fs/gfs2/log.c @@ -1282,9 +1282,6 @@ { unsigned int used_blocks = sdp->sd_jdesc->jd_blocks - atomic_read(&sdp->sd_log_blks_free); - if (test_and_clear_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags)) - return 1; - return used_blocks + atomic_read(&sdp->sd_log_blks_needed) >= atomic_read(&sdp->sd_log_thresh2); } @@ -1301,7 +1298,6 @@ { struct gfs2_sbd *sdp = data; unsigned long t = 1; - DEFINE_WAIT(wait); while (!kthread_should_stop()) { @@ -1326,7 +1322,9 @@ GFS2_LFC_LOGD_JFLUSH_REQD); } - if (gfs2_ail_flush_reqd(sdp)) { + if (test_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags) || + gfs2_ail_flush_reqd(sdp)) { + clear_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags); gfs2_ail1_start(sdp); gfs2_ail1_wait(sdp); gfs2_ail1_empty(sdp, 0); @@ -1338,17 +1336,12 @@ try_to_freeze(); - do { - prepare_to_wait(&sdp->sd_logd_waitq, &wait, - TASK_INTERRUPTIBLE); - if (!gfs2_ail_flush_reqd(sdp) && - !gfs2_jrnl_flush_reqd(sdp) && - !kthread_should_stop()) - t = schedule_timeout(t); - } while(t && !gfs2_ail_flush_reqd(sdp) && - !gfs2_jrnl_flush_reqd(sdp) && - !kthread_should_stop()); - finish_wait(&sdp->sd_logd_waitq, &wait); + t = wait_event_interruptible_timeout(sdp->sd_logd_waitq, + test_bit(SDF_FORCE_AIL_FLUSH, &sdp->sd_flags) || + gfs2_ail_flush_reqd(sdp) || + gfs2_jrnl_flush_reqd(sdp) || + kthread_should_stop(), + t); } return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/ioctl.c +++ linux-oracle-6.5-6.5.0/fs/ioctl.c @@ -109,9 +109,6 @@ * Returns 0 on success, -errno on error, 1 if this was the last * extent that will fit in user array. */ -#define SET_UNKNOWN_FLAGS (FIEMAP_EXTENT_DELALLOC) -#define SET_NO_UNMOUNTED_IO_FLAGS (FIEMAP_EXTENT_DATA_ENCRYPTED) -#define SET_NOT_ALIGNED_FLAGS (FIEMAP_EXTENT_DATA_TAIL|FIEMAP_EXTENT_DATA_INLINE) int fiemap_fill_next_extent(struct fiemap_extent_info *fieinfo, u64 logical, u64 phys, u64 len, u32 flags) { @@ -127,6 +124,10 @@ if (fieinfo->fi_extents_mapped >= fieinfo->fi_extents_max) return 1; +#define SET_UNKNOWN_FLAGS (FIEMAP_EXTENT_DELALLOC) +#define SET_NO_UNMOUNTED_IO_FLAGS (FIEMAP_EXTENT_DATA_ENCRYPTED) +#define SET_NOT_ALIGNED_FLAGS (FIEMAP_EXTENT_DATA_TAIL|FIEMAP_EXTENT_DATA_INLINE) + if (flags & SET_UNKNOWN_FLAGS) flags |= FIEMAP_EXTENT_UNKNOWN; if (flags & SET_NO_UNMOUNTED_IO_FLAGS) @@ -877,6 +878,9 @@ #ifdef CONFIG_COMPAT /** * compat_ptr_ioctl - generic implementation of .compat_ioctl file operation + * @file: The file to operate on. + * @cmd: The ioctl command number. + * @arg: The argument to the ioctl. * * This is not normally called as a function, but instead set in struct * file_operations as only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/jbd2/checkpoint.c +++ linux-oracle-6.5-6.5.0/fs/jbd2/checkpoint.c @@ -349,6 +349,8 @@ /* Checkpoint list management */ +enum shrink_type {SHRINK_DESTROY, SHRINK_BUSY_STOP, SHRINK_BUSY_SKIP}; + /* * journal_shrink_one_cp_list * @@ -360,7 +362,8 @@ * Called with j_list_lock held. */ static unsigned long journal_shrink_one_cp_list(struct journal_head *jh, - bool destroy, bool *released) + enum shrink_type type, + bool *released) { struct journal_head *last_jh; struct journal_head *next_jh = jh; @@ -376,12 +379,15 @@ jh = next_jh; next_jh = jh->b_cpnext; - if (destroy) { + if (type == SHRINK_DESTROY) { ret = __jbd2_journal_remove_checkpoint(jh); } else { ret = jbd2_journal_try_remove_checkpoint(jh); - if (ret < 0) - continue; + if (ret < 0) { + if (type == SHRINK_BUSY_SKIP) + continue; + break; + } } nr_freed++; @@ -445,7 +451,7 @@ tid = transaction->t_tid; freed = journal_shrink_one_cp_list(transaction->t_checkpoint_list, - false, &released); + SHRINK_BUSY_SKIP, &released); nr_freed += freed; (*nr_to_scan) -= min(*nr_to_scan, freed); if (*nr_to_scan == 0) @@ -485,19 +491,21 @@ void __jbd2_journal_clean_checkpoint_list(journal_t *journal, bool destroy) { transaction_t *transaction, *last_transaction, *next_transaction; + enum shrink_type type; bool released; transaction = journal->j_checkpoint_transactions; if (!transaction) return; + type = destroy ? SHRINK_DESTROY : SHRINK_BUSY_STOP; last_transaction = transaction->t_cpprev; next_transaction = transaction; do { transaction = next_transaction; next_transaction = transaction->t_cpnext; journal_shrink_one_cp_list(transaction->t_checkpoint_list, - destroy, &released); + type, &released); /* * This function only frees up some memory if possible so we * dont have an obligation to finish processing. Bail out if @@ -631,6 +639,8 @@ { struct buffer_head *bh = jh2bh(jh); + if (jh->b_transaction) + return -EBUSY; if (!trylock_buffer(bh)) return -EBUSY; if (buffer_dirty(bh)) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/jbd2/recovery.c +++ linux-oracle-6.5-6.5.0/fs/jbd2/recovery.c @@ -230,12 +230,8 @@ /* Make sure we wrap around the log correctly! */ #define wrap(journal, var) \ do { \ - unsigned long _wrap_last = \ - jbd2_has_feature_fast_commit(journal) ? \ - (journal)->j_fc_last : (journal)->j_last; \ - \ - if (var >= _wrap_last) \ - var -= (_wrap_last - (journal)->j_first); \ + if (var >= (journal)->j_last) \ + var -= ((journal)->j_last - (journal)->j_first); \ } while (0) static int fc_do_one_pass(journal_t *journal, @@ -524,9 +520,7 @@ break; jbd2_debug(2, "Scanning for sequence ID %u at %lu/%lu\n", - next_commit_ID, next_log_block, - jbd2_has_feature_fast_commit(journal) ? - journal->j_fc_last : journal->j_last); + next_commit_ID, next_log_block, journal->j_last); /* Skip over each chunk of the transaction looking * either the next descriptor block or the final commit only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/jfs/jfs_dmap.c +++ linux-oracle-6.5-6.5.0/fs/jfs/jfs_dmap.c @@ -269,6 +269,7 @@ /* free the memory for the in-memory bmap. */ kfree(bmp); + JFS_SBI(ipbmap->i_sb)->bmap = NULL; return (0); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/jfs/jfs_imap.c +++ linux-oracle-6.5-6.5.0/fs/jfs/jfs_imap.c @@ -193,6 +193,7 @@ * free in-memory control structure */ kfree(imap); + JFS_IP(ipimap)->i_imap = NULL; return (0); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/kernel_read_file.c +++ linux-oracle-6.5-6.5.0/fs/kernel_read_file.c @@ -8,16 +8,16 @@ /** * kernel_read_file() - read file contents into a kernel buffer * - * @file file to read from - * @offset where to start reading from (see below). - * @buf pointer to a "void *" buffer for reading into (if + * @file: file to read from + * @offset: where to start reading from (see below). + * @buf: pointer to a "void *" buffer for reading into (if * *@buf is NULL, a buffer will be allocated, and * @buf_size will be ignored) - * @buf_size size of buf, if already allocated. If @buf not + * @buf_size: size of buf, if already allocated. If @buf not * allocated, this is the largest size to allocate. - * @file_size if non-NULL, the full size of @file will be + * @file_size: if non-NULL, the full size of @file will be * written here. - * @id the kernel_read_file_id identifying the type of + * @id: the kernel_read_file_id identifying the type of * file contents being read (for LSMs to examine) * * @offset must be 0 unless both @buf and @file_size are non-NULL only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/kernfs/dir.c +++ linux-oracle-6.5-6.5.0/fs/kernfs/dir.c @@ -383,9 +383,11 @@ rb_insert_color(&kn->rb, &kn->parent->dir.children); /* successfully added, account subdir number */ + down_write(&kernfs_root(kn)->kernfs_iattr_rwsem); if (kernfs_type(kn) == KERNFS_DIR) kn->parent->dir.subdirs++; kernfs_inc_rev(kn->parent); + up_write(&kernfs_root(kn)->kernfs_iattr_rwsem); return 0; } @@ -408,9 +410,11 @@ if (RB_EMPTY_NODE(&kn->rb)) return false; + down_write(&kernfs_root(kn)->kernfs_iattr_rwsem); if (kernfs_type(kn) == KERNFS_DIR) kn->parent->dir.subdirs--; kernfs_inc_rev(kn->parent); + up_write(&kernfs_root(kn)->kernfs_iattr_rwsem); rb_erase(&kn->rb, &kn->parent->dir.children); RB_CLEAR_NODE(&kn->rb); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/libfs.c +++ linux-oracle-6.5-6.5.0/fs/libfs.c @@ -1646,6 +1646,7 @@ * We don't know how much we wrote, so just return the number of * bytes which were direct-written */ + iocb->ki_pos -= buffered_written; if (direct_written) return direct_written; return err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/locks.c +++ linux-oracle-6.5-6.5.0/fs/locks.c @@ -1301,6 +1301,7 @@ out: spin_unlock(&ctx->flc_lock); percpu_up_read(&file_rwsem); + trace_posix_lock_inode(inode, request, error); /* * Free any unused locks. */ @@ -1309,7 +1310,6 @@ if (new_fl2) locks_free_lock(new_fl2); locks_dispose_list(&dispose); - trace_posix_lock_inode(inode, request, error); return error; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/netfs/buffered_read.c +++ linux-oracle-6.5-6.5.0/fs/netfs/buffered_read.c @@ -47,12 +47,14 @@ xas_for_each(&xas, folio, last_page) { loff_t pg_end; bool pg_failed = false; + bool folio_started; if (xas_retry(&xas, folio)) continue; pg_end = folio_pos(folio) + folio_size(folio) - 1; + folio_started = false; for (;;) { loff_t sreq_end; @@ -60,8 +62,10 @@ pg_failed = true; break; } - if (test_bit(NETFS_SREQ_COPY_TO_CACHE, &subreq->flags)) + if (!folio_started && test_bit(NETFS_SREQ_COPY_TO_CACHE, &subreq->flags)) { folio_start_fscache(folio); + folio_started = true; + } pg_failed |= subreq_failed; sreq_end = subreq->start + subreq->len - 1; if (pg_end < sreq_end) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/nfs/direct.c +++ linux-oracle-6.5-6.5.0/fs/nfs/direct.c @@ -93,12 +93,10 @@ dreq->max_count = dreq_len; if (dreq->count > dreq_len) dreq->count = dreq_len; - - if (test_bit(NFS_IOHDR_ERROR, &hdr->flags)) - dreq->error = hdr->error; - else /* Clear outstanding error if this is EOF */ - dreq->error = 0; } + + if (test_bit(NFS_IOHDR_ERROR, &hdr->flags) && !dreq->error) + dreq->error = hdr->error; } static void @@ -120,6 +118,18 @@ dreq->count = dreq_len; } +static void nfs_direct_truncate_request(struct nfs_direct_req *dreq, + struct nfs_page *req) +{ + loff_t offs = req_offset(req); + size_t req_start = (size_t)(offs - dreq->io_start); + + if (req_start < dreq->max_count) + dreq->max_count = req_start; + if (req_start < dreq->count) + dreq->count = req_start; +} + /** * nfs_swap_rw - NFS address space operation for swap I/O * @iocb: target I/O control block @@ -472,13 +482,33 @@ return result; } -static void nfs_direct_join_group(struct list_head *list, struct inode *inode) +static void nfs_direct_add_page_head(struct list_head *list, + struct nfs_page *req) +{ + struct nfs_page *head = req->wb_head; + + if (!list_empty(&head->wb_list) || !nfs_lock_request(head)) + return; + if (!list_empty(&head->wb_list)) { + nfs_unlock_request(head); + return; + } + list_add(&head->wb_list, list); + kref_get(&head->wb_kref); + kref_get(&head->wb_kref); +} + +static void nfs_direct_join_group(struct list_head *list, + struct nfs_commit_info *cinfo, + struct inode *inode) { struct nfs_page *req, *subreq; list_for_each_entry(req, list, wb_list) { - if (req->wb_head != req) + if (req->wb_head != req) { + nfs_direct_add_page_head(&req->wb_list, req); continue; + } subreq = req->wb_this_page; if (subreq == req) continue; @@ -492,7 +522,7 @@ nfs_release_request(subreq); } } while ((subreq = subreq->wb_this_page) != req); - nfs_join_page_group(req, inode); + nfs_join_page_group(req, cinfo, inode); } } @@ -510,20 +540,15 @@ static void nfs_direct_write_reschedule(struct nfs_direct_req *dreq) { struct nfs_pageio_descriptor desc; - struct nfs_page *req, *tmp; + struct nfs_page *req; LIST_HEAD(reqs); struct nfs_commit_info cinfo; - LIST_HEAD(failed); nfs_init_cinfo_from_dreq(&cinfo, dreq); nfs_direct_write_scan_commit_list(dreq->inode, &reqs, &cinfo); - nfs_direct_join_group(&reqs, dreq->inode); + nfs_direct_join_group(&reqs, &cinfo, dreq->inode); - dreq->count = 0; - dreq->max_count = 0; - list_for_each_entry(req, &reqs, wb_list) - dreq->max_count += req->wb_bytes; nfs_clear_pnfs_ds_commit_verifiers(&dreq->ds_cinfo); get_dreq(dreq); @@ -531,27 +556,40 @@ &nfs_direct_write_completion_ops); desc.pg_dreq = dreq; - list_for_each_entry_safe(req, tmp, &reqs, wb_list) { + while (!list_empty(&reqs)) { + req = nfs_list_entry(reqs.next); /* Bump the transmission count */ req->wb_nio++; if (!nfs_pageio_add_request(&desc, req)) { - nfs_list_move_request(req, &failed); - spin_lock(&cinfo.inode->i_lock); - dreq->flags = 0; - if (desc.pg_error < 0) + spin_lock(&dreq->lock); + if (dreq->error < 0) { + desc.pg_error = dreq->error; + } else if (desc.pg_error != -EAGAIN) { + dreq->flags = 0; + if (!desc.pg_error) + desc.pg_error = -EIO; dreq->error = desc.pg_error; - else - dreq->error = -EIO; - spin_unlock(&cinfo.inode->i_lock); + } else + dreq->flags = NFS_ODIRECT_RESCHED_WRITES; + spin_unlock(&dreq->lock); + break; } nfs_release_request(req); } nfs_pageio_complete(&desc); - while (!list_empty(&failed)) { - req = nfs_list_entry(failed.next); + while (!list_empty(&reqs)) { + req = nfs_list_entry(reqs.next); nfs_list_remove_request(req); nfs_unlock_and_release_request(req); + if (desc.pg_error == -EAGAIN) { + nfs_mark_request_commit(req, NULL, &cinfo, 0); + } else { + spin_lock(&dreq->lock); + nfs_direct_truncate_request(dreq, req); + spin_unlock(&dreq->lock); + nfs_release_request(req); + } } if (put_dreq(dreq)) @@ -571,8 +609,6 @@ if (status < 0) { /* Errors in commit are fatal */ dreq->error = status; - dreq->max_count = 0; - dreq->count = 0; dreq->flags = NFS_ODIRECT_DONE; } else { status = dreq->error; @@ -583,7 +619,12 @@ while (!list_empty(&data->pages)) { req = nfs_list_entry(data->pages.next); nfs_list_remove_request(req); - if (status >= 0 && !nfs_write_match_verf(verf, req)) { + if (status < 0) { + spin_lock(&dreq->lock); + nfs_direct_truncate_request(dreq, req); + spin_unlock(&dreq->lock); + nfs_release_request(req); + } else if (!nfs_write_match_verf(verf, req)) { dreq->flags = NFS_ODIRECT_RESCHED_WRITES; /* * Despite the reboot, the write was successful, @@ -591,7 +632,7 @@ */ req->wb_nio = 0; nfs_mark_request_commit(req, NULL, &cinfo, 0); - } else /* Error or match */ + } else nfs_release_request(req); nfs_unlock_and_release_request(req); } @@ -644,6 +685,7 @@ while (!list_empty(&reqs)) { req = nfs_list_entry(reqs.next); nfs_list_remove_request(req); + nfs_direct_truncate_request(dreq, req); nfs_release_request(req); nfs_unlock_and_release_request(req); } @@ -693,7 +735,8 @@ } nfs_direct_count_bytes(dreq, hdr); - if (test_bit(NFS_IOHDR_UNSTABLE_WRITES, &hdr->flags)) { + if (test_bit(NFS_IOHDR_UNSTABLE_WRITES, &hdr->flags) && + !test_bit(NFS_IOHDR_ERROR, &hdr->flags)) { if (!dreq->flags) dreq->flags = NFS_ODIRECT_DO_COMMIT; flags = dreq->flags; @@ -737,18 +780,23 @@ static void nfs_direct_write_reschedule_io(struct nfs_pgio_header *hdr) { struct nfs_direct_req *dreq = hdr->dreq; + struct nfs_page *req; + struct nfs_commit_info cinfo; trace_nfs_direct_write_reschedule_io(dreq); + nfs_init_cinfo_from_dreq(&cinfo, dreq); spin_lock(&dreq->lock); - if (dreq->error == 0) { + if (dreq->error == 0) dreq->flags = NFS_ODIRECT_RESCHED_WRITES; - /* fake unstable write to let common nfs resend pages */ - hdr->verf.committed = NFS_UNSTABLE; - hdr->good_bytes = hdr->args.offset + hdr->args.count - - hdr->io_start; - } + set_bit(NFS_IOHDR_REDO, &hdr->flags); spin_unlock(&dreq->lock); + while (!list_empty(&hdr->pages)) { + req = nfs_list_entry(hdr->pages.next); + nfs_list_remove_request(req); + nfs_unlock_request(req); + nfs_mark_request_commit(req, NULL, &cinfo, 0); + } } static const struct nfs_pgio_completion_ops nfs_direct_write_completion_ops = { @@ -776,9 +824,11 @@ { struct nfs_pageio_descriptor desc; struct inode *inode = dreq->inode; + struct nfs_commit_info cinfo; ssize_t result = 0; size_t requested_bytes = 0; size_t wsize = max_t(size_t, NFS_SERVER(inode)->wsize, PAGE_SIZE); + bool defer = false; trace_nfs_direct_write_schedule_iovec(dreq); @@ -819,17 +869,37 @@ break; } - nfs_lock_request(req); - if (!nfs_pageio_add_request(&desc, req)) { - result = desc.pg_error; - nfs_unlock_and_release_request(req); - break; - } pgbase = 0; bytes -= req_len; requested_bytes += req_len; pos += req_len; dreq->bytes_left -= req_len; + + if (defer) { + nfs_mark_request_commit(req, NULL, &cinfo, 0); + continue; + } + + nfs_lock_request(req); + if (nfs_pageio_add_request(&desc, req)) + continue; + + /* Exit on hard errors */ + if (desc.pg_error < 0 && desc.pg_error != -EAGAIN) { + result = desc.pg_error; + nfs_unlock_and_release_request(req); + break; + } + + /* If the error is soft, defer remaining requests */ + nfs_init_cinfo_from_dreq(&cinfo, dreq); + spin_lock(&dreq->lock); + dreq->flags = NFS_ODIRECT_RESCHED_WRITES; + spin_unlock(&dreq->lock); + nfs_unlock_request(req); + nfs_mark_request_commit(req, NULL, &cinfo, 0); + desc.pg_error = 0; + defer = true; } nfs_direct_release_pages(pagevec, npages); kvfree(pagevec); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/nfs/flexfilelayout/flexfilelayout.c +++ linux-oracle-6.5-6.5.0/fs/nfs/flexfilelayout/flexfilelayout.c @@ -1235,6 +1235,7 @@ case -EPFNOSUPPORT: case -EPROTONOSUPPORT: case -EOPNOTSUPP: + case -EINVAL: case -ECONNREFUSED: case -ECONNRESET: case -EHOSTDOWN: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/nfs/nfs4client.c +++ linux-oracle-6.5-6.5.0/fs/nfs/nfs4client.c @@ -232,6 +232,8 @@ __set_bit(NFS_CS_DISCRTRY, &clp->cl_flags); __set_bit(NFS_CS_NO_RETRANS_TIMEOUT, &clp->cl_flags); + if (test_bit(NFS_CS_DS, &cl_init->init_flags)) + __set_bit(NFS_CS_DS, &clp->cl_flags); /* * Set up the connection to the server before we add add to the * global list. @@ -415,6 +417,8 @@ .net = old->cl_net, .servername = old->cl_hostname, }; + int max_connect = test_bit(NFS_CS_PNFS, &clp->cl_flags) ? + clp->cl_max_connect : old->cl_max_connect; if (clp->cl_proto != old->cl_proto) return; @@ -428,7 +432,7 @@ xprt_args.addrlen = clp_salen; rpc_clnt_add_xprt(old->cl_rpcclient, &xprt_args, - rpc_clnt_test_and_add_xprt, NULL); + rpc_clnt_test_and_add_xprt, &max_connect); } /** @@ -1007,6 +1011,9 @@ if (mds_srv->flags & NFS_MOUNT_NORESVPORT) __set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags); + __set_bit(NFS_CS_DS, &cl_init.init_flags); + __set_bit(NFS_CS_PNFS, &cl_init.init_flags); + cl_init.max_connect = NFS_MAX_TRANSPORTS; /* * Set an authflavor equual to the MDS value. Use the MDS nfs_client * cl_ipaddr so as to use the same EXCHANGE_ID co_ownerid as the MDS only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/nfs/nfs4state.c +++ linux-oracle-6.5-6.5.0/fs/nfs/nfs4state.c @@ -1209,16 +1209,26 @@ { struct task_struct *task; char buf[INET6_ADDRSTRLEN + sizeof("-manager") + 1]; + struct rpc_clnt *clnt = clp->cl_rpcclient; + bool swapon = false; - if (clp->cl_rpcclient->cl_shutdown) + if (clnt->cl_shutdown) return; set_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state); - if (test_and_set_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state) != 0) { - wake_up_var(&clp->cl_state); - return; + + if (atomic_read(&clnt->cl_swapper)) { + swapon = !test_and_set_bit(NFS4CLNT_MANAGER_AVAILABLE, + &clp->cl_state); + if (!swapon) { + wake_up_var(&clp->cl_state); + return; + } } - set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state); + + if (test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) != 0) + return; + __module_get(THIS_MODULE); refcount_inc(&clp->cl_count); @@ -1235,8 +1245,9 @@ __func__, PTR_ERR(task)); if (!nfs_client_init_is_complete(clp)) nfs_mark_client_ready(clp, PTR_ERR(task)); + if (swapon) + clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); nfs4_clear_state_manager_bit(clp); - clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); nfs_put_client(clp); module_put(THIS_MODULE); } @@ -2703,6 +2714,13 @@ nfs4_end_drain_session(clp); nfs4_clear_state_manager_bit(clp); + if (test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state) && + !test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, + &clp->cl_state)) { + memflags = memalloc_nofs_save(); + continue; + } + if (!test_and_set_bit(NFS4CLNT_RECALL_RUNNING, &clp->cl_state)) { if (test_and_clear_bit(NFS4CLNT_DELEGRETURN, &clp->cl_state)) { nfs_client_return_marked_delegations(clp); @@ -2741,22 +2759,25 @@ allow_signal(SIGKILL); again: - set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state); nfs4_state_manager(clp); - if (atomic_read(&cl->cl_swapper)) { + + if (test_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state) && + !test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state)) { wait_var_event_interruptible(&clp->cl_state, test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state)); - if (atomic_read(&cl->cl_swapper) && - test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state)) + if (!atomic_read(&cl->cl_swapper)) + clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); + if (refcount_read(&clp->cl_count) > 1 && !signalled() && + !test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state)) goto again; /* Either no longer a swapper, or were signalled */ + clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); } - clear_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state); if (refcount_read(&clp->cl_count) > 1 && !signalled() && test_bit(NFS4CLNT_RUN_MANAGER, &clp->cl_state) && - !test_and_set_bit(NFS4CLNT_MANAGER_AVAILABLE, &clp->cl_state)) + !test_and_set_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state)) goto again; nfs_put_client(clp); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/nfs/pnfs_dev.c +++ linux-oracle-6.5-6.5.0/fs/nfs/pnfs_dev.c @@ -154,7 +154,7 @@ set_bit(NFS_DEVICEID_NOCACHE, &d->flags); out_free_pages: - for (i = 0; i < max_pages; i++) + while (--i >= 0) __free_page(pages[i]); kfree(pages); out_free_pdev: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/nfs/write.c +++ linux-oracle-6.5-6.5.0/fs/nfs/write.c @@ -59,7 +59,8 @@ static const struct nfs_commit_completion_ops nfs_commit_completion_ops; static const struct nfs_rw_ops nfs_rw_write_ops; static void nfs_inode_remove_request(struct nfs_page *req); -static void nfs_clear_request_commit(struct nfs_page *req); +static void nfs_clear_request_commit(struct nfs_commit_info *cinfo, + struct nfs_page *req); static void nfs_init_cinfo_from_inode(struct nfs_commit_info *cinfo, struct inode *inode); static struct nfs_page * @@ -502,8 +503,8 @@ * the (former) group. All subrequests are removed from any write or commit * lists, unlinked from the group and destroyed. */ -void -nfs_join_page_group(struct nfs_page *head, struct inode *inode) +void nfs_join_page_group(struct nfs_page *head, struct nfs_commit_info *cinfo, + struct inode *inode) { struct nfs_page *subreq; struct nfs_page *destroy_list = NULL; @@ -533,7 +534,7 @@ * Commit list removal accounting is done after locks are dropped */ subreq = head; do { - nfs_clear_request_commit(subreq); + nfs_clear_request_commit(cinfo, subreq); subreq = subreq->wb_this_page; } while (subreq != head); @@ -566,8 +567,10 @@ { struct inode *inode = folio_file_mapping(folio)->host; struct nfs_page *head; + struct nfs_commit_info cinfo; int ret; + nfs_init_cinfo_from_inode(&cinfo, inode); /* * A reference is taken only on the head request which acts as a * reference to the whole page group - the group will not be destroyed @@ -584,7 +587,7 @@ return ERR_PTR(ret); } - nfs_join_page_group(head, inode); + nfs_join_page_group(head, &cinfo, inode); return head; } @@ -955,18 +958,16 @@ } /* Called holding the request lock on @req */ -static void -nfs_clear_request_commit(struct nfs_page *req) +static void nfs_clear_request_commit(struct nfs_commit_info *cinfo, + struct nfs_page *req) { if (test_bit(PG_CLEAN, &req->wb_flags)) { struct nfs_open_context *ctx = nfs_req_openctx(req); struct inode *inode = d_inode(ctx->dentry); - struct nfs_commit_info cinfo; - nfs_init_cinfo_from_inode(&cinfo, inode); mutex_lock(&NFS_I(inode)->commit_mutex); - if (!pnfs_clear_request_commit(req, &cinfo)) { - nfs_request_remove_commit_list(req, &cinfo); + if (!pnfs_clear_request_commit(req, cinfo)) { + nfs_request_remove_commit_list(req, cinfo); } mutex_unlock(&NFS_I(inode)->commit_mutex); nfs_folio_clear_commit(nfs_page_to_folio(req)); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/nfsd/nfs4proc.c +++ linux-oracle-6.5-6.5.0/fs/nfsd/nfs4proc.c @@ -1024,8 +1024,8 @@ rename->rn_tname, rename->rn_tnamelen); if (status) return status; - set_change_info(&rename->rn_sinfo, &cstate->current_fh); - set_change_info(&rename->rn_tinfo, &cstate->save_fh); + set_change_info(&rename->rn_sinfo, &cstate->save_fh); + set_change_info(&rename->rn_tinfo, &cstate->current_fh); return nfs_ok; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/nilfs2/gcinode.c +++ linux-oracle-6.5-6.5.0/fs/nilfs2/gcinode.c @@ -73,10 +73,8 @@ struct the_nilfs *nilfs = inode->i_sb->s_fs_info; err = nilfs_dat_translate(nilfs->ns_dat, vbn, &pbn); - if (unlikely(err)) { /* -EIO, -ENOMEM, -ENOENT */ - brelse(bh); + if (unlikely(err)) /* -EIO, -ENOMEM, -ENOENT */ goto failed; - } } lock_buffer(bh); @@ -102,6 +100,8 @@ failed: unlock_page(bh->b_page); put_page(bh->b_page); + if (unlikely(err)) + brelse(bh); return err; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/open.c +++ linux-oracle-6.5-6.5.0/fs/open.c @@ -1150,7 +1150,7 @@ * backing_file_open - open a backing file for kernel internal use * @path: path of the file to open * @flags: open flags - * @path: path of the backing file + * @real_path: path of the backing file * @cred: credentials for open * * Open a backing file for a stackable filesystem (e.g., overlayfs). @@ -1546,7 +1546,7 @@ } /** - * close_range() - Close all file descriptors in a given range. + * sys_close_range() - Close all file descriptors in a given range. * * @fd: starting file descriptor to close * @max_fd: last file descriptor to close only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/overlayfs/copy_up.c +++ linux-oracle-6.5-6.5.0/fs/overlayfs/copy_up.c @@ -617,7 +617,8 @@ if (err) return err; - if (inode->i_flags & OVL_COPY_I_FLAGS_MASK) { + if (inode->i_flags & OVL_COPY_I_FLAGS_MASK && + (S_ISREG(c->stat.mode) || S_ISDIR(c->stat.mode))) { /* * Copy the fileattr inode flags that are the source of already * copied i_flags only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/overlayfs/file.c +++ linux-oracle-6.5-6.5.0/fs/overlayfs/file.c @@ -19,7 +19,6 @@ struct kiocb iocb; refcount_t ref; struct kiocb *orig_iocb; - struct fd fd; }; static struct kmem_cache *ovl_aio_request_cachep; @@ -277,7 +276,7 @@ static inline void ovl_aio_put(struct ovl_aio_req *aio_req) { if (refcount_dec_and_test(&aio_req->ref)) { - fdput(aio_req->fd); + fput(aio_req->iocb.ki_filp); kmem_cache_free(ovl_aio_request_cachep, aio_req); } } @@ -342,10 +341,9 @@ if (!aio_req) goto out; - aio_req->fd = real; real.flags = 0; aio_req->orig_iocb = iocb; - kiocb_clone(&aio_req->iocb, iocb, real.file); + kiocb_clone(&aio_req->iocb, iocb, get_file(real.file)); aio_req->iocb.ki_complete = ovl_aio_rw_complete; refcount_set(&aio_req->ref, 2); ret = vfs_iocb_iter_read(real.file, &aio_req->iocb, iter); @@ -413,10 +411,9 @@ /* Pacify lockdep, same trick as done in aio_write() */ __sb_writers_release(file_inode(real.file)->i_sb, SB_FREEZE_WRITE); - aio_req->fd = real; real.flags = 0; aio_req->orig_iocb = iocb; - kiocb_clone(&aio_req->iocb, iocb, real.file); + kiocb_clone(&aio_req->iocb, iocb, get_file(real.file)); aio_req->iocb.ki_flags = ifl; aio_req->iocb.ki_complete = ovl_aio_rw_complete; refcount_set(&aio_req->ref, 2); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/overlayfs/ovl_entry.h +++ linux-oracle-6.5-6.5.0/fs/overlayfs/ovl_entry.h @@ -8,6 +8,7 @@ struct ovl_config { char *upperdir; char *workdir; + char **lowerdirs; bool default_permissions; int redirect_mode; bool index; @@ -38,17 +39,8 @@ int idx; /* One fsid per unique underlying sb (upper fsid == 0) */ int fsid; - char *name; }; -/* - * ovl_free_fs() relies on @mnt being the first member when unmounting - * the private mounts created for each layer. Let's check both the - * offset and type. - */ -static_assert(offsetof(struct ovl_layer, mnt) == 0); -static_assert(__same_type(typeof_member(struct ovl_layer, mnt), struct vfsmount *)); - struct ovl_path { const struct ovl_layer *layer; struct dentry *dentry; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/overlayfs/super.c +++ linux-oracle-6.5-6.5.0/fs/overlayfs/super.c @@ -101,8 +101,8 @@ static int ovl_dentry_revalidate_common(struct dentry *dentry, unsigned int flags, bool weak) { - struct ovl_entry *oe = OVL_E(dentry); - struct ovl_path *lowerstack = ovl_lowerstack(oe); + struct ovl_entry *oe; + struct ovl_path *lowerstack; struct inode *inode = d_inode_rcu(dentry); struct dentry *upper; unsigned int i; @@ -112,6 +112,8 @@ if (!inode) return -ECHILD; + oe = OVL_I_E(inode); + lowerstack = ovl_lowerstack(oe); upper = ovl_i_dentry_upper(inode); if (upper) ret = ovl_revalidate_real(upper, flags, weak); @@ -164,6 +166,7 @@ struct ovl_inode *oi = OVL_I(inode); kfree(oi->redirect); + kfree(oi->oe); mutex_destroy(&oi->lock); kmem_cache_free(ovl_inode_cachep, oi); } @@ -173,7 +176,7 @@ struct ovl_inode *oi = OVL_I(inode); dput(oi->__upperdentry); - ovl_free_entry(oi->oe); + ovl_stack_put(ovl_lowerstack(oi->oe), ovl_numlower(oi->oe)); if (S_ISDIR(inode->i_mode)) ovl_dir_cache_free(inode); else @@ -562,11 +565,6 @@ upper_layer->idx = 0; upper_layer->fsid = 0; - err = -ENOMEM; - upper_layer->name = kstrdup(ofs->config.upperdir, GFP_KERNEL); - if (!upper_layer->name) - goto out; - /* * Inherit SB_NOSEC flag from upperdir. * @@ -1110,7 +1108,8 @@ layers[ofs->numlayer].idx = ofs->numlayer; layers[ofs->numlayer].fsid = fsid; layers[ofs->numlayer].fs = &ofs->fs[fsid]; - layers[ofs->numlayer].name = l->name; + /* Store for printing lowerdir=... in ovl_show_options() */ + ofs->config.lowerdirs[ofs->numlayer] = l->name; l->name = NULL; ofs->numlayer++; ofs->fs[fsid].is_lower = true; @@ -1355,8 +1354,16 @@ if (!layers) goto out_err; + ofs->config.lowerdirs = kcalloc(ctx->nr + 1, sizeof(char *), GFP_KERNEL); + if (!ofs->config.lowerdirs) { + kfree(layers); + goto out_err; + } ofs->layers = layers; - /* Layer 0 is reserved for upper even if there's no upper */ + /* + * Layer 0 is reserved for upper even if there's no upper. + * For consistency, config.lowerdirs[0] is NULL. + */ ofs->numlayer = 1; sb->s_stack_depth = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/proc/task_nommu.c +++ linux-oracle-6.5-6.5.0/fs/proc/task_nommu.c @@ -188,15 +188,28 @@ return nommu_vma_show(m, _p); } -static void *m_start(struct seq_file *m, loff_t *pos) +static struct vm_area_struct *proc_get_vma(struct proc_maps_private *priv, + loff_t *ppos) +{ + struct vm_area_struct *vma = vma_next(&priv->iter); + + if (vma) { + *ppos = vma->vm_start; + } else { + *ppos = -1UL; + } + + return vma; +} + +static void *m_start(struct seq_file *m, loff_t *ppos) { struct proc_maps_private *priv = m->private; + unsigned long last_addr = *ppos; struct mm_struct *mm; - struct vm_area_struct *vma; - unsigned long addr = *pos; - /* See m_next(). Zero at the start or after lseek. */ - if (addr == -1UL) + /* See proc_get_vma(). Zero at the start or after lseek. */ + if (last_addr == -1UL) return NULL; /* pin the task and mm whilst we play with them */ @@ -205,44 +218,41 @@ return ERR_PTR(-ESRCH); mm = priv->mm; - if (!mm || !mmget_not_zero(mm)) + if (!mm || !mmget_not_zero(mm)) { + put_task_struct(priv->task); + priv->task = NULL; return NULL; + } if (mmap_read_lock_killable(mm)) { mmput(mm); + put_task_struct(priv->task); + priv->task = NULL; return ERR_PTR(-EINTR); } - /* start the next element from addr */ - vma = find_vma(mm, addr); - if (vma) - return vma; + vma_iter_init(&priv->iter, mm, last_addr); - mmap_read_unlock(mm); - mmput(mm); - return NULL; + return proc_get_vma(priv, ppos); } -static void m_stop(struct seq_file *m, void *_vml) +static void m_stop(struct seq_file *m, void *v) { struct proc_maps_private *priv = m->private; + struct mm_struct *mm = priv->mm; - if (!IS_ERR_OR_NULL(_vml)) { - mmap_read_unlock(priv->mm); - mmput(priv->mm); - } - if (priv->task) { - put_task_struct(priv->task); - priv->task = NULL; - } + if (!priv->task) + return; + + mmap_read_unlock(mm); + mmput(mm); + put_task_struct(priv->task); + priv->task = NULL; } -static void *m_next(struct seq_file *m, void *_p, loff_t *pos) +static void *m_next(struct seq_file *m, void *_p, loff_t *ppos) { - struct vm_area_struct *vma = _p; - - *pos = vma->vm_end; - return find_vma(vma->vm_mm, vma->vm_end); + return proc_get_vma(m->private, ppos); } static const struct seq_operations proc_pid_maps_ops = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/cached_dir.c +++ linux-oracle-6.5-6.5.0/fs/smb/client/cached_dir.c @@ -218,7 +218,7 @@ .tcon = tcon, .path = path, .create_options = cifs_create_options(cifs_sb, CREATE_NOT_FILE), - .desired_access = FILE_READ_ATTRIBUTES, + .desired_access = FILE_READ_DATA | FILE_READ_ATTRIBUTES, .disposition = FILE_OPEN, .fid = pfid, }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/cifsglob.h +++ linux-oracle-6.5-6.5.0/fs/smb/client/cifsglob.h @@ -729,6 +729,7 @@ */ #define CIFS_SERVER_IS_CHAN(server) (!!(server)->primary_server) struct TCP_Server_Info *primary_server; + __u16 channel_sequence_num; /* incremented on primary channel on each chan reconnect */ #ifdef CONFIG_CIFS_SWN_UPCALL bool use_swn_dstaddr; @@ -1775,6 +1776,7 @@ #define MID_RETRY_NEEDED 8 /* session closed while this request out */ #define MID_RESPONSE_MALFORMED 0x10 #define MID_SHUTDOWN 0x20 +#define MID_RESPONSE_READY 0x40 /* ready for other process handle the rsp */ /* Flags */ #define MID_WAIT_CANCELLED 1 /* Cancelled while waiting for response */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/connect.c +++ linux-oracle-6.5-6.5.0/fs/smb/client/connect.c @@ -1686,6 +1686,7 @@ ctx->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL); tcp_ses->session_estab = false; tcp_ses->sequence_number = 0; + tcp_ses->channel_sequence_num = 0; /* only tracked for primary channel */ tcp_ses->reconnect_instance = 1; tcp_ses->lstrp = jiffies; tcp_ses->compress_algorithm = cpu_to_le16(ctx->compression); @@ -2889,9 +2890,9 @@ if (server->srcaddr.ss_family != AF_UNSPEC) { /* Bind to the specified local IP address */ struct socket *socket = server->ssocket; - rc = socket->ops->bind(socket, - (struct sockaddr *) &server->srcaddr, - sizeof(server->srcaddr)); + rc = kernel_bind(socket, + (struct sockaddr *) &server->srcaddr, + sizeof(server->srcaddr)); if (rc < 0) { struct sockaddr_in *saddr4; struct sockaddr_in6 *saddr6; @@ -3040,8 +3041,8 @@ socket->sk->sk_sndbuf, socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo); - rc = socket->ops->connect(socket, saddr, slen, - server->noblockcnt ? O_NONBLOCK : 0); + rc = kernel_connect(socket, saddr, slen, + server->noblockcnt ? O_NONBLOCK : 0); /* * When mounting SMB root file systems, we do not want to block in * connect. Otherwise bail out and then let cifs_reconnect() perform only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/fscache.c +++ linux-oracle-6.5-6.5.0/fs/smb/client/fscache.c @@ -48,7 +48,7 @@ sharename = extract_sharename(tcon->tree_name); if (IS_ERR(sharename)) { cifs_dbg(FYI, "%s: couldn't extract sharename\n", __func__); - return -EINVAL; + return PTR_ERR(sharename); } slen = strlen(sharename); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/inode.c +++ linux-oracle-6.5-6.5.0/fs/smb/client/inode.c @@ -2610,7 +2610,7 @@ } cifsFileInfo_put(cfile); - return -ENOTSUPP; + return -EOPNOTSUPP; } int cifs_truncate_page(struct address_space *mapping, loff_t from) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/misc.c +++ linux-oracle-6.5-6.5.0/fs/smb/client/misc.c @@ -359,6 +359,10 @@ cifs_dbg(VFS, "Length less than smb header size\n"); } return -EIO; + } else if (total_read < sizeof(*smb) + 2 * smb->WordCount) { + cifs_dbg(VFS, "%s: can't read BCC due to invalid WordCount(%u)\n", + __func__, smb->WordCount); + return -EIO; } /* otherwise, there is enough to get to the BCC */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/smb2ops.c +++ linux-oracle-6.5-6.5.0/fs/smb/client/smb2ops.c @@ -172,8 +172,17 @@ spin_lock(&server->req_lock); server->credits = val; - if (val == 1) + if (val == 1) { server->reconnect_instance++; + /* + * ChannelSequence updated for all channels in primary channel so that consistent + * across SMB3 requests sent on any channel. See MS-SMB2 3.2.4.1 and 3.2.7.1 + */ + if (CIFS_SERVER_IS_CHAN(server)) + server->primary_server->channel_sequence_num++; + else + server->channel_sequence_num++; + } scredits = server->credits; in_flight = server->in_flight; spin_unlock(&server->req_lock); @@ -288,7 +297,7 @@ cifs_server_dbg(VFS, "request has less credits (%d) than required (%d)", credits->value, new_val); - return -ENOTSUPP; + return -EOPNOTSUPP; } spin_lock(&server->req_lock); @@ -1150,7 +1159,7 @@ /* Use a fudge factor of 256 bytes in case we collide * with a different set_EAs command. */ - if(CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE - + if (CIFSMaxBufSize - MAX_SMB2_CREATE_RESPONSE_SIZE - MAX_SMB2_CLOSE_RESPONSE_SIZE - 256 < used_len + ea_name_len + ea_value_len + 1) { rc = -ENOSPC; @@ -4707,7 +4716,7 @@ if (shdr->Command != SMB2_READ) { cifs_server_dbg(VFS, "only big read responses are supported\n"); - return -ENOTSUPP; + return -EOPNOTSUPP; } if (server->ops->is_session_expired && only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/smb2pdu.c +++ linux-oracle-6.5-6.5.0/fs/smb/client/smb2pdu.c @@ -88,9 +88,20 @@ const struct cifs_tcon *tcon, struct TCP_Server_Info *server) { + struct smb3_hdr_req *smb3_hdr; shdr->ProtocolId = SMB2_PROTO_NUMBER; shdr->StructureSize = cpu_to_le16(64); shdr->Command = smb2_cmd; + if (server->dialect >= SMB30_PROT_ID) { + /* After reconnect SMB3 must set ChannelSequence on subsequent reqs */ + smb3_hdr = (struct smb3_hdr_req *)shdr; + /* if primary channel is not set yet, use default channel for chan sequence num */ + if (CIFS_SERVER_IS_CHAN(server)) + smb3_hdr->ChannelSequence = + cpu_to_le16(server->primary_server->channel_sequence_num); + else + smb3_hdr->ChannelSequence = cpu_to_le16(server->channel_sequence_num); + } if (server) { spin_lock(&server->req_lock); /* Request up to 10 credits but don't go over the limit. */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/client/transport.c +++ linux-oracle-6.5-6.5.0/fs/smb/client/transport.c @@ -35,6 +35,8 @@ void cifs_wake_up_task(struct mid_q_entry *mid) { + if (mid->mid_state == MID_RESPONSE_RECEIVED) + mid->mid_state = MID_RESPONSE_READY; wake_up_process(mid->callback_data); } @@ -87,7 +89,8 @@ struct TCP_Server_Info *server = midEntry->server; if (midEntry->resp_buf && (midEntry->mid_flags & MID_WAIT_CANCELLED) && - midEntry->mid_state == MID_RESPONSE_RECEIVED && + (midEntry->mid_state == MID_RESPONSE_RECEIVED || + midEntry->mid_state == MID_RESPONSE_READY) && server->ops->handle_cancelled_mid) server->ops->handle_cancelled_mid(midEntry, server); @@ -732,7 +735,8 @@ int error; error = wait_event_state(server->response_q, - midQ->mid_state != MID_REQUEST_SUBMITTED, + midQ->mid_state != MID_REQUEST_SUBMITTED && + midQ->mid_state != MID_RESPONSE_RECEIVED, (TASK_KILLABLE|TASK_FREEZABLE_UNSAFE)); if (error < 0) return -ERESTARTSYS; @@ -885,7 +889,7 @@ spin_lock(&server->mid_lock); switch (mid->mid_state) { - case MID_RESPONSE_RECEIVED: + case MID_RESPONSE_READY: spin_unlock(&server->mid_lock); return rc; case MID_RETRY_NEEDED: @@ -984,6 +988,9 @@ credits.instance = server->reconnect_instance; add_credits(server, &credits, mid->optype); + + if (mid->mid_state == MID_RESPONSE_RECEIVED) + mid->mid_state = MID_RESPONSE_READY; } static void @@ -1204,7 +1211,8 @@ send_cancel(server, &rqst[i], midQ[i]); spin_lock(&server->mid_lock); midQ[i]->mid_flags |= MID_WAIT_CANCELLED; - if (midQ[i]->mid_state == MID_REQUEST_SUBMITTED) { + if (midQ[i]->mid_state == MID_REQUEST_SUBMITTED || + midQ[i]->mid_state == MID_RESPONSE_RECEIVED) { midQ[i]->callback = cifs_cancelled_callback; cancelled_mid[i] = true; credits[i].value = 0; @@ -1225,7 +1233,7 @@ } if (!midQ[i]->resp_buf || - midQ[i]->mid_state != MID_RESPONSE_RECEIVED) { + midQ[i]->mid_state != MID_RESPONSE_READY) { rc = -EIO; cifs_dbg(FYI, "Bad MID state?\n"); goto out; @@ -1412,7 +1420,8 @@ if (rc != 0) { send_cancel(server, &rqst, midQ); spin_lock(&server->mid_lock); - if (midQ->mid_state == MID_REQUEST_SUBMITTED) { + if (midQ->mid_state == MID_REQUEST_SUBMITTED || + midQ->mid_state == MID_RESPONSE_RECEIVED) { /* no longer considered to be "in-flight" */ midQ->callback = release_mid; spin_unlock(&server->mid_lock); @@ -1429,7 +1438,7 @@ } if (!midQ->resp_buf || !out_buf || - midQ->mid_state != MID_RESPONSE_RECEIVED) { + midQ->mid_state != MID_RESPONSE_READY) { rc = -EIO; cifs_server_dbg(VFS, "Bad MID state?\n"); goto out; @@ -1553,14 +1562,16 @@ /* Wait for a reply - allow signals to interrupt. */ rc = wait_event_interruptible(server->response_q, - (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) || + (!(midQ->mid_state == MID_REQUEST_SUBMITTED || + midQ->mid_state == MID_RESPONSE_RECEIVED)) || ((server->tcpStatus != CifsGood) && (server->tcpStatus != CifsNew))); /* Were we interrupted by a signal ? */ spin_lock(&server->srv_lock); if ((rc == -ERESTARTSYS) && - (midQ->mid_state == MID_REQUEST_SUBMITTED) && + (midQ->mid_state == MID_REQUEST_SUBMITTED || + midQ->mid_state == MID_RESPONSE_RECEIVED) && ((server->tcpStatus == CifsGood) || (server->tcpStatus == CifsNew))) { spin_unlock(&server->srv_lock); @@ -1591,7 +1602,8 @@ if (rc) { send_cancel(server, &rqst, midQ); spin_lock(&server->mid_lock); - if (midQ->mid_state == MID_REQUEST_SUBMITTED) { + if (midQ->mid_state == MID_REQUEST_SUBMITTED || + midQ->mid_state == MID_RESPONSE_RECEIVED) { /* no longer considered to be "in-flight" */ midQ->callback = release_mid; spin_unlock(&server->mid_lock); @@ -1611,7 +1623,7 @@ return rc; /* rcvd frame is ok */ - if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) { + if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_READY) { rc = -EIO; cifs_tcon_dbg(VFS, "Bad MID state?\n"); goto out; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/common/smb2pdu.h +++ linux-oracle-6.5-6.5.0/fs/smb/common/smb2pdu.h @@ -153,6 +153,28 @@ __u8 Signature[16]; } __packed; +struct smb3_hdr_req { + __le32 ProtocolId; /* 0xFE 'S' 'M' 'B' */ + __le16 StructureSize; /* 64 */ + __le16 CreditCharge; /* MBZ */ + __le16 ChannelSequence; /* See MS-SMB2 3.2.4.1 and 3.2.7.1 */ + __le16 Reserved; + __le16 Command; + __le16 CreditRequest; /* CreditResponse */ + __le32 Flags; + __le32 NextCommand; + __le64 MessageId; + union { + struct { + __le32 ProcessId; + __le32 TreeId; + } __packed SyncId; + __le64 AsyncId; + } __packed Id; + __le64 SessionId; + __u8 Signature[16]; +} __packed; + struct smb2_pdu { struct smb2_hdr hdr; __le16 StructureSize2; /* size of wct area (varies, request specific) */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/server/connection.c +++ linux-oracle-6.5-6.5.0/fs/smb/server/connection.c @@ -84,6 +84,8 @@ spin_lock_init(&conn->llist_lock); INIT_LIST_HEAD(&conn->lock_list); + init_rwsem(&conn->session_lock); + down_write(&conn_list_lock); list_add(&conn->conns_list, &conn_list); up_write(&conn_list_lock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/server/connection.h +++ linux-oracle-6.5-6.5.0/fs/smb/server/connection.h @@ -50,6 +50,7 @@ struct nls_table *local_nls; struct unicode_map *um; struct list_head conns_list; + struct rw_semaphore session_lock; /* smb session 1 per user */ struct xarray sessions; unsigned long last_active; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/server/mgmt/user_session.c +++ linux-oracle-6.5-6.5.0/fs/smb/server/mgmt/user_session.c @@ -174,7 +174,7 @@ unsigned long id; struct ksmbd_session *sess; - down_write(&sessions_table_lock); + down_write(&conn->session_lock); xa_for_each(&conn->sessions, id, sess) { if (sess->state != SMB2_SESSION_VALID || time_after(jiffies, @@ -185,7 +185,7 @@ continue; } } - up_write(&sessions_table_lock); + up_write(&conn->session_lock); } int ksmbd_session_register(struct ksmbd_conn *conn, @@ -227,7 +227,9 @@ } } } + up_write(&sessions_table_lock); + down_write(&conn->session_lock); xa_for_each(&conn->sessions, id, sess) { unsigned long chann_id; struct channel *chann; @@ -244,7 +246,7 @@ ksmbd_session_destroy(sess); } } - up_write(&sessions_table_lock); + up_write(&conn->session_lock); } struct ksmbd_session *ksmbd_session_lookup(struct ksmbd_conn *conn, @@ -252,9 +254,11 @@ { struct ksmbd_session *sess; + down_read(&conn->session_lock); sess = xa_load(&conn->sessions, id); if (sess) sess->last_active = jiffies; + up_read(&conn->session_lock); return sess; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/smb/server/vfs_cache.c +++ linux-oracle-6.5-6.5.0/fs/smb/server/vfs_cache.c @@ -106,7 +106,7 @@ ci = __ksmbd_inode_lookup(inode); if (ci) { ret = KSMBD_INODE_STATUS_OK; - if (ci->m_flags & S_DEL_PENDING) + if (ci->m_flags & (S_DEL_PENDING | S_DEL_ON_CLS)) ret = KSMBD_INODE_STATUS_PENDING_DELETE; atomic_dec(&ci->m_count); } @@ -116,7 +116,7 @@ bool ksmbd_inode_pending_delete(struct ksmbd_file *fp) { - return (fp->f_ci->m_flags & S_DEL_PENDING); + return (fp->f_ci->m_flags & (S_DEL_PENDING | S_DEL_ON_CLS)); } void ksmbd_set_inode_pending_delete(struct ksmbd_file *fp) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/fs/tracefs/inode.c +++ linux-oracle-6.5-6.5.0/fs/tracefs/inode.c @@ -556,6 +556,9 @@ */ struct dentry *tracefs_create_dir(const char *name, struct dentry *parent) { + if (security_locked_down(LOCKDOWN_TRACEFS)) + return NULL; + return __create_dir(name, parent, &simple_dir_inode_operations); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/drm/drm_file.h +++ linux-oracle-6.5-6.5.0/include/drm/drm_file.h @@ -256,8 +256,15 @@ /** @master_lookup_lock: Serializes @master. */ spinlock_t master_lookup_lock; - /** @pid: Process that opened this file. */ - struct pid *pid; + /** + * @pid: Process that is using this file. + * + * Must only be dereferenced under a rcu_read_lock or equivalent. + * + * Updates are guarded with dev->filelist_mutex and reference must be + * dropped after a RCU grace period to accommodate lockless readers. + */ + struct pid __rcu *pid; /** @client_id: A unique id for fdinfo */ u64 client_id; @@ -420,6 +427,8 @@ return file_priv->minor->type == DRM_MINOR_ACCEL; } +void drm_file_update_pid(struct drm_file *); + int drm_open(struct inode *inode, struct file *filp); int drm_open_helper(struct file *filp, struct drm_minor *minor); ssize_t drm_read(struct file *filp, char __user *buffer, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/drm/drm_kunit_helpers.h +++ linux-oracle-6.5-6.5.0/include/drm/drm_kunit_helpers.h @@ -3,6 +3,8 @@ #ifndef DRM_KUNIT_HELPERS_H_ #define DRM_KUNIT_HELPERS_H_ +#include + #include struct drm_device; @@ -51,7 +53,7 @@ { struct drm_driver *driver; - driver = kunit_kzalloc(test, sizeof(*driver), GFP_KERNEL); + driver = devm_kzalloc(dev, sizeof(*driver), GFP_KERNEL); KUNIT_ASSERT_NOT_NULL(test, driver); driver->driver_features = features; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/drm/i915_pciids.h +++ linux-oracle-6.5-6.5.0/include/drm/i915_pciids.h @@ -689,14 +689,18 @@ #define INTEL_RPLU_IDS(info) \ INTEL_VGA_DEVICE(0xA721, info), \ INTEL_VGA_DEVICE(0xA7A1, info), \ - INTEL_VGA_DEVICE(0xA7A9, info) + INTEL_VGA_DEVICE(0xA7A9, info), \ + INTEL_VGA_DEVICE(0xA7AC, info), \ + INTEL_VGA_DEVICE(0xA7AD, info) /* RPL-P */ #define INTEL_RPLP_IDS(info) \ INTEL_RPLU_IDS(info), \ INTEL_VGA_DEVICE(0xA720, info), \ INTEL_VGA_DEVICE(0xA7A0, info), \ - INTEL_VGA_DEVICE(0xA7A8, info) + INTEL_VGA_DEVICE(0xA7A8, info), \ + INTEL_VGA_DEVICE(0xA7AA, info), \ + INTEL_VGA_DEVICE(0xA7AB, info) /* DG2 */ #define INTEL_DG2_G10_IDS(info) \ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/acpi.h +++ linux-oracle-6.5-6.5.0/include/linux/acpi.h @@ -1476,6 +1476,15 @@ } #endif +#ifdef CONFIG_ACPI_PROCESSOR_IDLE +#ifndef arch_get_idle_state_flags +static inline unsigned int arch_get_idle_state_flags(u32 arch_flags) +{ + return 0; +} +#endif +#endif /* CONFIG_ACPI_PROCESSOR_IDLE */ + #ifdef CONFIG_ACPI_PPTT int acpi_pptt_cpu_is_thread(unsigned int cpu); int find_acpi_cpu_topology(unsigned int cpu, int level); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/acpi_iort.h +++ linux-oracle-6.5-6.5.0/include/linux/acpi_iort.h @@ -21,6 +21,7 @@ */ #define IORT_SMMU_V3_PMCG_GENERIC 0x00000000 /* Generic SMMUv3 PMCG */ #define IORT_SMMU_V3_PMCG_HISI_HIP08 0x00000001 /* HiSilicon HIP08 PMCG */ +#define IORT_SMMU_V3_PMCG_HISI_HIP09 0x00000002 /* HiSilicon HIP09 PMCG */ int iort_register_domain_token(int trans_id, phys_addr_t base, struct fwnode_handle *fw_node); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/bpf.h +++ linux-oracle-6.5-6.5.0/include/linux/bpf.h @@ -425,7 +425,7 @@ size /= sizeof(long); while (size--) - *ldst++ = *lsrc++; + data_race(*ldst++ = *lsrc++); } /* copy everything but bpf_spin_lock, bpf_timer, and kptrs. There could be one of each. */ @@ -640,7 +640,8 @@ MEM_RCU = BIT(13 + BPF_BASE_TYPE_BITS), /* Used to tag PTR_TO_BTF_ID | MEM_ALLOC references which are non-owning. - * Currently only valid for linked-list and rbtree nodes. + * Currently only valid for linked-list and rbtree nodes. If the nodes + * have a bpf_refcount_field, they must be tagged MEM_RCU as well. */ NON_OWN_REF = BIT(14 + BPF_BASE_TYPE_BITS), @@ -1293,7 +1294,7 @@ static inline struct bpf_trampoline *bpf_trampoline_get(u64 key, struct bpf_attach_target_info *tgt_info) { - return ERR_PTR(-EOPNOTSUPP); + return NULL; } static inline void bpf_trampoline_put(struct bpf_trampoline *tr) {} #define DEFINE_BPF_DISPATCHER(name) @@ -2619,6 +2620,18 @@ } #endif /* CONFIG_BPF_SYSCALL */ +static __always_inline int +bpf_probe_read_kernel_common(void *dst, u32 size, const void *unsafe_ptr) +{ + int ret = -EFAULT; + + if (IS_ENABLED(CONFIG_BPF_EVENTS)) + ret = copy_from_kernel_nofault(dst, unsafe_ptr, size); + if (unlikely(ret < 0)) + memset(dst, 0, size); + return ret; +} + void __bpf_free_used_btfs(struct bpf_prog_aux *aux, struct btf_mod_pair *used_btfs, u32 len); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/bpf_verifier.h +++ linux-oracle-6.5-6.5.0/include/linux/bpf_verifier.h @@ -745,7 +745,7 @@ } } -#define BPF_REG_TRUSTED_MODIFIERS (MEM_ALLOC | PTR_TRUSTED) +#define BPF_REG_TRUSTED_MODIFIERS (MEM_ALLOC | PTR_TRUSTED | NON_OWN_REF) static inline bool bpf_type_has_unsafe_modifiers(u32 type) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/btf_ids.h +++ linux-oracle-6.5-6.5.0/include/linux/btf_ids.h @@ -49,7 +49,7 @@ ____BTF_ID(symbol, word) #define __ID(prefix) \ - __PASTE(prefix, __COUNTER__) + __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) /* * The BTF_ID defines unique symbol for each ID pointing only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/compiler_attributes.h +++ linux-oracle-6.5-6.5.0/include/linux/compiler_attributes.h @@ -95,6 +95,19 @@ #endif /* + * Optional: only supported since gcc >= 14 + * Optional: only supported since clang >= 18 + * + * gcc: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108896 + * clang: https://reviews.llvm.org/D148381 + */ +#if __has_attribute(__counted_by__) +# define __counted_by(member) __attribute__((__counted_by__(member))) +#else +# define __counted_by(member) +#endif + +/* * Optional: not supported by gcc * Optional: only supported since clang >= 14.0 * @@ -130,19 +143,6 @@ #endif /* - * Optional: only supported since gcc >= 14 - * Optional: only supported since clang >= 17 - * - * gcc: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108896 - * clang: https://reviews.llvm.org/D148381 - */ -#if __has_attribute(__element_count__) -# define __counted_by(member) __attribute__((__element_count__(#member))) -#else -# define __counted_by(member) -#endif - -/* * Optional: only supported since clang >= 14.0 * * gcc: https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html#index-error-function-attribute only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/dma-fence.h +++ linux-oracle-6.5-6.5.0/include/linux/dma-fence.h @@ -568,6 +568,25 @@ fence->error = error; } +/** + * dma_fence_timestamp - helper to get the completion timestamp of a fence + * @fence: fence to get the timestamp from. + * + * After a fence is signaled the timestamp is updated with the signaling time, + * but setting the timestamp can race with tasks waiting for the signaling. This + * helper busy waits for the correct timestamp to appear. + */ +static inline ktime_t dma_fence_timestamp(struct dma_fence *fence) +{ + if (WARN_ON(!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))) + return ktime_get(); + + while (!test_bit(DMA_FENCE_FLAG_TIMESTAMP_BIT, &fence->flags)) + cpu_relax(); + + return fence->timestamp; +} + signed long dma_fence_wait_timeout(struct dma_fence *, bool intr, signed long timeout); signed long dma_fence_wait_any_timeout(struct dma_fence **fences, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/export-internal.h +++ linux-oracle-6.5-6.5.0/include/linux/export-internal.h @@ -52,6 +52,8 @@ #ifdef CONFIG_IA64 #define KSYM_FUNC(name) @fptr(name) +#elif defined(CONFIG_PARISC) && defined(CONFIG_64BIT) +#define KSYM_FUNC(name) P%name #else #define KSYM_FUNC(name) name #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/fs_context.h +++ linux-oracle-6.5-6.5.0/include/linux/fs_context.h @@ -135,6 +135,8 @@ extern int vfs_parse_fs_param(struct fs_context *fc, struct fs_parameter *param); extern int vfs_parse_fs_string(struct fs_context *fc, const char *key, const char *value, size_t v_size); +int vfs_parse_monolithic_sep(struct fs_context *fc, void *data, + char *(*sep)(char **)); extern int generic_parse_monolithic(struct fs_context *fc, void *data); extern int vfs_get_tree(struct fs_context *fc); extern void put_fs_context(struct fs_context *fc); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/if_team.h +++ linux-oracle-6.5-6.5.0/include/linux/if_team.h @@ -189,6 +189,8 @@ struct net_device *dev; /* associated netdevice */ struct team_pcpu_stats __percpu *pcpu_stats; + const struct header_ops *header_ops_cache; + struct mutex lock; /* used for overall locking, e.g. port lists write */ /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/instruction_pointer.h +++ linux-oracle-6.5-6.5.0/include/linux/instruction_pointer.h @@ -2,7 +2,12 @@ #ifndef _LINUX_INSTRUCTION_POINTER_H #define _LINUX_INSTRUCTION_POINTER_H +#include + #define _RET_IP_ (unsigned long)__builtin_return_address(0) + +#ifndef _THIS_IP_ #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) +#endif #endif /* _LINUX_INSTRUCTION_POINTER_H */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/interrupt.h +++ linux-oracle-6.5-6.5.0/include/linux/interrupt.h @@ -569,8 +569,12 @@ * 2) rcu_report_dead() reports the final quiescent states. * * _ IRQ_POLL: irq_poll_cpu_dead() migrates the queue + * + * _ (HR)TIMER_SOFTIRQ: (hr)timers_dead_cpu() migrates the queue */ -#define SOFTIRQ_HOTPLUG_SAFE_MASK (BIT(RCU_SOFTIRQ) | BIT(IRQ_POLL_SOFTIRQ)) +#define SOFTIRQ_HOTPLUG_SAFE_MASK (BIT(TIMER_SOFTIRQ) | BIT(IRQ_POLL_SOFTIRQ) |\ + BIT(HRTIMER_SOFTIRQ) | BIT(RCU_SOFTIRQ)) + /* map softirq index to softirq name. update 'softirq_to_name' in * kernel/softirq.c when adding a new softirq. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/io_uring.h +++ linux-oracle-6.5-6.5.0/include/linux/io_uring.h @@ -81,6 +81,7 @@ if (tsk->io_uring) __io_uring_free(tsk); } +int io_uring_cmd_sock(struct io_uring_cmd *cmd, unsigned int issue_flags); #else static inline int io_uring_cmd_import_fixed(u64 ubuf, unsigned long len, int rw, struct iov_iter *iter, void *ioucmd) @@ -116,6 +117,11 @@ { return ""; } +static inline int io_uring_cmd_sock(struct io_uring_cmd *cmd, + unsigned int issue_flags) +{ + return -EOPNOTSUPP; +} #endif #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/io_uring_types.h +++ linux-oracle-6.5-6.5.0/include/linux/io_uring_types.h @@ -69,8 +69,8 @@ }; struct io_uring { - u32 head ____cacheline_aligned_in_smp; - u32 tail ____cacheline_aligned_in_smp; + u32 head; + u32 tail; }; /* @@ -176,7 +176,6 @@ unsigned short submit_nr; unsigned int cqes_count; struct blk_plug plug; - struct io_uring_cqe cqes[16]; }; struct io_ev_fd { @@ -205,25 +204,17 @@ unsigned int has_evfd: 1; /* all CQEs should be posted only by the submitter task */ unsigned int task_complete: 1; + unsigned int lockless_cq: 1; unsigned int syscall_iopoll: 1; unsigned int poll_activated: 1; unsigned int drain_disabled: 1; unsigned int compat: 1; - enum task_work_notify_mode notify_method; + struct task_struct *submitter_task; + struct io_rings *rings; + struct percpu_ref refs; - /* - * If IORING_SETUP_NO_MMAP is used, then the below holds - * the gup'ed pages for the two rings, and the sqes. - */ - unsigned short n_ring_pages; - unsigned short n_sqe_pages; - struct page **ring_pages; - struct page **sqe_pages; - - struct io_rings *rings; - struct task_struct *submitter_task; - struct percpu_ref refs; + enum task_work_notify_mode notify_method; } ____cacheline_aligned_in_smp; /* submission data */ @@ -261,31 +252,20 @@ struct io_buffer_list *io_bl; struct xarray io_bl_xa; - struct list_head io_buffers_cache; struct io_hash_table cancel_table_locked; - struct list_head cq_overflow_list; struct io_alloc_cache apoll_cache; struct io_alloc_cache netmsg_cache; - } ____cacheline_aligned_in_smp; - - /* IRQ completion list, under ->completion_lock */ - struct io_wq_work_list locked_free_list; - unsigned int locked_free_nr; - - const struct cred *sq_creds; /* cred used for __io_sq_thread() */ - struct io_sq_data *sq_data; /* if using sq thread polling */ - - struct wait_queue_head sqo_sq_wait; - struct list_head sqd_list; - unsigned long check_cq; - - unsigned int file_alloc_start; - unsigned int file_alloc_end; - - struct xarray personalities; - u32 pers_next; + /* + * ->iopoll_list is protected by the ctx->uring_lock for + * io_uring instances that don't use IORING_SETUP_SQPOLL. + * For SQPOLL, only the single threaded io_sq_thread() will + * manipulate the list, hence no extra locking is needed there. + */ + struct io_wq_work_list iopoll_list; + bool poll_multi_queue; + } ____cacheline_aligned_in_smp; struct { /* @@ -298,39 +278,55 @@ unsigned cached_cq_tail; unsigned cq_entries; struct io_ev_fd __rcu *io_ev_fd; - struct wait_queue_head cq_wait; unsigned cq_extra; } ____cacheline_aligned_in_smp; + /* + * task_work and async notification delivery cacheline. Expected to + * regularly bounce b/w CPUs. + */ struct { - spinlock_t completion_lock; - - bool poll_multi_queue; - atomic_t cq_wait_nr; - - /* - * ->iopoll_list is protected by the ctx->uring_lock for - * io_uring instances that don't use IORING_SETUP_SQPOLL. - * For SQPOLL, only the single threaded io_sq_thread() will - * manipulate the list, hence no extra locking is needed there. - */ - struct io_wq_work_list iopoll_list; - struct io_hash_table cancel_table; - struct llist_head work_llist; - - struct list_head io_buffers_comp; + unsigned long check_cq; + atomic_t cq_wait_nr; + atomic_t cq_timeouts; + struct wait_queue_head cq_wait; } ____cacheline_aligned_in_smp; /* timeouts */ struct { spinlock_t timeout_lock; - atomic_t cq_timeouts; struct list_head timeout_list; struct list_head ltimeout_list; unsigned cq_last_tm_flush; } ____cacheline_aligned_in_smp; + struct io_uring_cqe completion_cqes[16]; + + spinlock_t completion_lock; + + /* IRQ completion list, under ->completion_lock */ + struct io_wq_work_list locked_free_list; + unsigned int locked_free_nr; + + struct list_head io_buffers_comp; + struct list_head cq_overflow_list; + struct io_hash_table cancel_table; + + const struct cred *sq_creds; /* cred used for __io_sq_thread() */ + struct io_sq_data *sq_data; /* if using sq thread polling */ + + struct wait_queue_head sqo_sq_wait; + struct list_head sqd_list; + + unsigned int file_alloc_start; + unsigned int file_alloc_end; + + struct xarray personalities; + u32 pers_next; + + struct list_head io_buffers_cache; + /* Keep this last, we don't need it for the fast path */ struct wait_queue_head poll_wq; struct io_restriction restrictions; @@ -374,6 +370,15 @@ unsigned sq_thread_idle; /* protected by ->completion_lock */ unsigned evfd_last_cq_tail; + + /* + * If IORING_SETUP_NO_MMAP is used, then the below holds + * the gup'ed pages for the two rings, and the sqes. + */ + unsigned short n_ring_pages; + unsigned short n_sqe_pages; + struct page **ring_pages; + struct page **sqe_pages; }; struct io_tw_state { @@ -409,7 +414,6 @@ REQ_F_SINGLE_POLL_BIT, REQ_F_DOUBLE_POLL_BIT, REQ_F_PARTIAL_IO_BIT, - REQ_F_CQE32_INIT_BIT, REQ_F_APOLL_MULTISHOT_BIT, REQ_F_CLEAR_POLLIN_BIT, REQ_F_HASH_LOCKED_BIT, @@ -479,8 +483,6 @@ REQ_F_PARTIAL_IO = BIT(REQ_F_PARTIAL_IO_BIT), /* fast poll multishot mode */ REQ_F_APOLL_MULTISHOT = BIT(REQ_F_APOLL_MULTISHOT_BIT), - /* ->extra1 and ->extra2 are initialised */ - REQ_F_CQE32_INIT = BIT(REQ_F_CQE32_INIT_BIT), /* recvmsg special flag, clear EPOLLIN */ REQ_F_CLEAR_POLLIN = BIT(REQ_F_CLEAR_POLLIN_BIT), /* hashed into ->cancel_hash_locked, protected by ->uring_lock */ @@ -579,13 +581,7 @@ struct io_task_work io_task_work; unsigned nr_tw; /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */ - union { - struct hlist_node hash_node; - struct { - u64 extra1; - u64 extra2; - }; - }; + struct hlist_node hash_node; /* internal polling, see IORING_FEAT_FAST_POLL */ struct async_poll *apoll; /* opcode allocated if it needs to store data for async defer */ @@ -595,6 +591,11 @@ /* custom credentials, valid IFF REQ_F_CREDS is set */ const struct cred *creds; struct io_wq_work work; + + struct { + u64 extra1; + u64 extra2; + } big_cqe; }; struct io_overflow_cqe { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/libata.h +++ linux-oracle-6.5-6.5.0/include/linux/libata.h @@ -192,6 +192,7 @@ ATA_PFLAG_UNLOADING = (1 << 9), /* driver is being unloaded */ ATA_PFLAG_UNLOADED = (1 << 10), /* driver is unloaded */ + ATA_PFLAG_RESUMING = (1 << 16), /* port is being resumed */ ATA_PFLAG_SUSPENDED = (1 << 17), /* port is suspended (power) */ ATA_PFLAG_PM_PENDING = (1 << 18), /* PM operation pending */ ATA_PFLAG_INIT_GTM_VALID = (1 << 19), /* initial gtm data valid */ @@ -222,6 +223,10 @@ ATA_HOST_PARALLEL_SCAN = (1 << 2), /* Ports on this host can be scanned in parallel */ ATA_HOST_IGNORE_ATA = (1 << 3), /* Ignore ATA devices on this host. */ + ATA_HOST_NO_PART = (1 << 4), /* Host does not support partial */ + ATA_HOST_NO_SSC = (1 << 5), /* Host does not support slumber */ + ATA_HOST_NO_DEVSLP = (1 << 6), /* Host does not support devslp */ + /* bits 24:31 of host->flags are reserved for LLD specific flags */ /* various lengths of time */ @@ -255,7 +260,7 @@ * advised to wait only for the following duration before * doing SRST. */ - ATA_TMOUT_PMP_SRST_WAIT = 5000, + ATA_TMOUT_PMP_SRST_WAIT = 10000, /* When the LPM policy is set to ATA_LPM_MAX_POWER, there might * be a spurious PHY event, so ignore the first PHY event that @@ -314,9 +319,10 @@ ATA_EH_ENABLE_LINK = (1 << 3), ATA_EH_PARK = (1 << 5), /* unload heads and stop I/O */ ATA_EH_GET_SUCCESS_SENSE = (1 << 6), /* Get sense data for successful cmd */ + ATA_EH_SET_ACTIVE = (1 << 7), /* Set a device to active power mode */ ATA_EH_PERDEV_MASK = ATA_EH_REVALIDATE | ATA_EH_PARK | - ATA_EH_GET_SUCCESS_SENSE, + ATA_EH_GET_SUCCESS_SENSE | ATA_EH_SET_ACTIVE, ATA_EH_ALL_ACTIONS = ATA_EH_REVALIDATE | ATA_EH_RESET | ATA_EH_ENABLE_LINK, @@ -354,7 +360,7 @@ /* This should match the actual table size of * ata_eh_cmd_timeout_table in libata-eh.c. */ - ATA_EH_CMD_TIMEOUT_TABLE_SIZE = 7, + ATA_EH_CMD_TIMEOUT_TABLE_SIZE = 8, /* Horkage types. May be set by libata or controller on drives (some horkage may be drive/controller pair dependent */ @@ -1151,6 +1157,7 @@ struct block_device *bdev, sector_t capacity, int geom[]); extern void ata_scsi_unlock_native_capacity(struct scsi_device *sdev); +extern int ata_scsi_slave_alloc(struct scsi_device *sdev); extern int ata_scsi_slave_config(struct scsi_device *sdev); extern void ata_scsi_slave_destroy(struct scsi_device *sdev); extern int ata_scsi_change_queue_depth(struct scsi_device *sdev, @@ -1404,6 +1411,7 @@ .this_id = ATA_SHT_THIS_ID, \ .emulated = ATA_SHT_EMULATED, \ .proc_name = drv_name, \ + .slave_alloc = ata_scsi_slave_alloc, \ .slave_destroy = ata_scsi_slave_destroy, \ .bios_param = ata_std_bios_param, \ .unlock_native_capacity = ata_scsi_unlock_native_capacity,\ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/maple_tree.h +++ linux-oracle-6.5-6.5.0/include/linux/maple_tree.h @@ -420,6 +420,8 @@ #define MAS_ROOT ((struct maple_enode *)5UL) #define MAS_NONE ((struct maple_enode *)9UL) #define MAS_PAUSE ((struct maple_enode *)17UL) +#define MAS_OVERFLOW ((struct maple_enode *)33UL) +#define MAS_UNDERFLOW ((struct maple_enode *)65UL) #define MA_ERROR(err) \ ((struct maple_enode *)(((unsigned long)err << 2) | 2UL)) @@ -503,6 +505,15 @@ return mas->node == MAS_PAUSE; } +/* Check if the mas is pointing to a node or not */ +static inline bool mas_is_active(struct ma_state *mas) +{ + if ((unsigned long)mas->node >= MAPLE_RESERVED_RANGE) + return true; + + return false; +} + /** * mas_reset() - Reset a Maple Tree operation state. * @mas: Maple Tree operation state. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/mcb.h +++ linux-oracle-6.5-6.5.0/include/linux/mcb.h @@ -63,7 +63,6 @@ struct mcb_device { struct device dev; struct mcb_bus *bus; - bool is_added; struct mcb_driver *driver; u16 id; int inst; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/micrel_phy.h +++ linux-oracle-6.5-6.5.0/include/linux/micrel_phy.h @@ -41,9 +41,10 @@ #define PHY_ID_KSZ9477 0x00221631 /* struct phy_device dev_flags definitions */ -#define MICREL_PHY_50MHZ_CLK 0x00000001 -#define MICREL_PHY_FXEN 0x00000002 -#define MICREL_KSZ8_P1_ERRATA 0x00000003 +#define MICREL_PHY_50MHZ_CLK BIT(0) +#define MICREL_PHY_FXEN BIT(1) +#define MICREL_KSZ8_P1_ERRATA BIT(2) +#define MICREL_NO_EEE BIT(3) #define MICREL_KSZ9021_EXTREG_CTRL 0xB #define MICREL_KSZ9021_EXTREG_DATA_WRITE 0xC only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/netfilter/nf_conntrack_sctp.h +++ linux-oracle-6.5-6.5.0/include/linux/netfilter/nf_conntrack_sctp.h @@ -9,6 +9,7 @@ enum sctp_conntrack state; __be32 vtag[IP_CT_DIR_MAX]; + u8 init[IP_CT_DIR_MAX]; u8 last_dir; u8 flags; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/nfs_fs_sb.h +++ linux-oracle-6.5-6.5.0/include/linux/nfs_fs_sb.h @@ -48,6 +48,7 @@ #define NFS_CS_NOPING 6 /* - don't ping on connect */ #define NFS_CS_DS 7 /* - Server is a DS */ #define NFS_CS_REUSEPORT 8 /* - reuse src port on reconnect */ +#define NFS_CS_PNFS 9 /* - Server used for pnfs */ struct sockaddr_storage cl_addr; /* server identifier */ size_t cl_addrlen; char * cl_hostname; /* hostname of server */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/nfs_page.h +++ linux-oracle-6.5-6.5.0/include/linux/nfs_page.h @@ -157,7 +157,9 @@ extern void nfs_unlock_and_release_request(struct nfs_page *); extern struct nfs_page *nfs_page_group_lock_head(struct nfs_page *req); extern int nfs_page_group_lock_subrequests(struct nfs_page *head); -extern void nfs_join_page_group(struct nfs_page *head, struct inode *inode); +extern void nfs_join_page_group(struct nfs_page *head, + struct nfs_commit_info *cinfo, + struct inode *inode); extern int nfs_page_group_lock(struct nfs_page *); extern void nfs_page_group_unlock(struct nfs_page *); extern bool nfs_page_group_sync_on_bit(struct nfs_page *, unsigned int); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/pci_ids.h +++ linux-oracle-6.5-6.5.0/include/linux/pci_ids.h @@ -576,6 +576,8 @@ #define PCI_DEVICE_ID_AMD_19H_M60H_DF_F3 0x14e3 #define PCI_DEVICE_ID_AMD_19H_M70H_DF_F3 0x14f3 #define PCI_DEVICE_ID_AMD_19H_M78H_DF_F3 0x12fb +#define PCI_DEVICE_ID_AMD_1AH_M00H_DF_F3 0x12c3 +#define PCI_DEVICE_ID_AMD_1AH_M20H_DF_F3 0x16fb #define PCI_DEVICE_ID_AMD_MI200_DF_F3 0x14d3 #define PCI_DEVICE_ID_AMD_CNB17H_F3 0x1703 #define PCI_DEVICE_ID_AMD_LANCE 0x2000 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/phylink.h +++ linux-oracle-6.5-6.5.0/include/linux/phylink.h @@ -615,7 +615,7 @@ * * The %neg_mode argument should be tested via the phylink_mode_*() family of * functions, or for PCS that set pcs->neg_mode true, should be tested - * against the %PHYLINK_PCS_NEG_* definitions. + * against the PHYLINK_PCS_NEG_* definitions. */ int pcs_config(struct phylink_pcs *pcs, unsigned int neg_mode, phy_interface_t interface, const unsigned long *advertising, @@ -645,7 +645,7 @@ * * The %mode argument should be tested via the phylink_mode_*() family of * functions, or for PCS that set pcs->neg_mode true, should be tested - * against the %PHYLINK_PCS_NEG_* definitions. + * against the PHYLINK_PCS_NEG_* definitions. */ void pcs_link_up(struct phylink_pcs *pcs, unsigned int neg_mode, phy_interface_t interface, int speed, int duplex); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/quota.h +++ linux-oracle-6.5-6.5.0/include/linux/quota.h @@ -285,7 +285,9 @@ #define DQ_FAKE_B 3 /* no limits only usage */ #define DQ_READ_B 4 /* dquot was read into memory */ #define DQ_ACTIVE_B 5 /* dquot is active (dquot_release not called) */ -#define DQ_LASTSET_B 6 /* Following 6 bits (see QIF_) are reserved\ +#define DQ_RELEASING_B 6 /* dquot is in releasing_dquots list waiting + * to be cleaned up */ +#define DQ_LASTSET_B 7 /* Following 6 bits (see QIF_) are reserved\ * for the mask of entries set via SETQUOTA\ * quotactl. They are set under dq_data_lock\ * and the quota format handling dquot can\ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/quotaops.h +++ linux-oracle-6.5-6.5.0/include/linux/quotaops.h @@ -57,7 +57,7 @@ { if (test_bit(DQ_MOD_B, &dquot->dq_flags)) return true; - if (atomic_read(&dquot->dq_count) > 1) + if (atomic_read(&dquot->dq_count) > 0) return true; return false; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/resume_user_mode.h +++ linux-oracle-6.5-6.5.0/include/linux/resume_user_mode.h @@ -55,7 +55,7 @@ } #endif - mem_cgroup_handle_over_high(); + mem_cgroup_handle_over_high(GFP_KERNEL); blkcg_maybe_throttle_current(); rseq_handle_notify_resume(NULL, regs); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/sched/task.h +++ linux-oracle-6.5-6.5.0/include/linux/sched/task.h @@ -118,10 +118,36 @@ } extern void __put_task_struct(struct task_struct *t); +extern void __put_task_struct_rcu_cb(struct rcu_head *rhp); static inline void put_task_struct(struct task_struct *t) { - if (refcount_dec_and_test(&t->usage)) + if (!refcount_dec_and_test(&t->usage)) + return; + + /* + * under PREEMPT_RT, we can't call put_task_struct + * in atomic context because it will indirectly + * acquire sleeping locks. + * + * call_rcu() will schedule delayed_put_task_struct_rcu() + * to be called in process context. + * + * __put_task_struct() is called when + * refcount_dec_and_test(&t->usage) succeeds. + * + * This means that it can't "conflict" with + * put_task_struct_rcu_user() which abuses ->rcu the same + * way; rcu_users has a reference so task->usage can't be + * zero after rcu_users 1 -> 0 transition. + * + * delayed_free_task() also uses ->rcu, but it is only called + * when it fails to fork a process. Therefore, there is no + * way it can conflict with put_task_struct(). + */ + if (IS_ENABLED(CONFIG_PREEMPT_RT) && !preemptible()) + call_rcu(&t->rcu, __put_task_struct_rcu_cb); + else __put_task_struct(t); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/seqlock.h +++ linux-oracle-6.5-6.5.0/include/linux/seqlock.h @@ -512,8 +512,8 @@ static inline void do_write_seqcount_begin_nested(seqcount_t *s, int subclass) { - do_raw_write_seqcount_begin(s); seqcount_acquire(&s->dep_map, subclass, 0, _RET_IP_); + do_raw_write_seqcount_begin(s); } /** only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/tca6416_keypad.h +++ linux-oracle-6.5-6.5.0/include/linux/tca6416_keypad.h @@ -25,7 +25,6 @@ unsigned int rep:1; /* enable input subsystem auto repeat */ uint16_t pinmask; uint16_t invert; - int irq_is_gpio; int use_polling; /* use polling if Interrupt is not connected*/ }; #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/linux/usb/chipidea.h +++ linux-oracle-6.5-6.5.0/include/linux/usb/chipidea.h @@ -63,6 +63,7 @@ #define CI_HDRC_IMX_IS_HSIC BIT(14) #define CI_HDRC_PMQOS BIT(15) #define CI_HDRC_PHY_VBUS_CONTROL BIT(16) +#define CI_HDRC_HAS_PORTSC_PEC_MISSED BIT(17) enum usb_dr_mode dr_mode; #define CI_HDRC_CONTROLLER_RESET_EVENT 0 #define CI_HDRC_CONTROLLER_STOPPED_EVENT 1 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/cfg80211.h +++ linux-oracle-6.5-6.5.0/include/net/cfg80211.h @@ -5942,6 +5942,7 @@ * @event_lock: (private) lock for event list * @owner_nlportid: (private) owner socket port ID * @nl_owner_dead: (private) owner socket went away + * @cqm_rssi_work: (private) CQM RSSI reporting work * @cqm_config: (private) nl80211 RSSI monitor state * @pmsr_list: (private) peer measurement requests * @pmsr_lock: (private) peer measurements requests/results lock @@ -6014,7 +6015,8 @@ } wext; #endif - struct cfg80211_cqm_config *cqm_config; + struct wiphy_work cqm_rssi_work; + struct cfg80211_cqm_config __rcu *cqm_config; struct list_head pmsr_list; spinlock_t pmsr_lock; @@ -7232,7 +7234,7 @@ int uapsd_queues; const u8 *ap_mld_addr; struct { - const u8 *addr; + u8 addr[ETH_ALEN] __aligned(2); struct cfg80211_bss *bss; u16 status; } links[IEEE80211_MLD_MAX_NUM_LINKS]; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/ip.h +++ linux-oracle-6.5-6.5.0/include/net/ip.h @@ -57,6 +57,7 @@ #define IPSKB_FRAG_PMTU BIT(6) #define IPSKB_L3SLAVE BIT(7) #define IPSKB_NOPOLICY BIT(8) +#define IPSKB_MULTIPATH BIT(9) u16 frag_max_size; }; @@ -94,7 +95,7 @@ ipcm_init(ipcm); ipcm->sockc.mark = READ_ONCE(inet->sk.sk_mark); - ipcm->sockc.tsflags = inet->sk.sk_tsflags; + ipcm->sockc.tsflags = READ_ONCE(inet->sk.sk_tsflags); ipcm->oif = READ_ONCE(inet->sk.sk_bound_dev_if); ipcm->addr = inet->inet_saddr; ipcm->protocol = inet->inet_num; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/ip6_fib.h +++ linux-oracle-6.5-6.5.0/include/net/ip6_fib.h @@ -604,7 +604,10 @@ if (!net->ipv6.fib6_rules_require_fldissect) return false; - skb_flow_dissect_flow_keys(skb, flkeys, flag); + memset(flkeys, 0, sizeof(*flkeys)); + __skb_flow_dissect(net, skb, &flow_keys_dissector, + flkeys, NULL, 0, 0, 0, flag); + fl6->fl6_sport = flkeys->ports.src; fl6->fl6_dport = flkeys->ports.dst; fl6->flowi6_proto = flkeys->basic.ip_proto; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/ip_fib.h +++ linux-oracle-6.5-6.5.0/include/net/ip_fib.h @@ -418,7 +418,10 @@ if (!net->ipv4.fib_rules_require_fldissect) return false; - skb_flow_dissect_flow_keys(skb, flkeys, flag); + memset(flkeys, 0, sizeof(*flkeys)); + __skb_flow_dissect(net, skb, &flow_keys_dissector, + flkeys, NULL, 0, 0, 0, flag); + fl4->fl4_sport = flkeys->ports.src; fl4->fl4_dport = flkeys->ports.dst; fl4->flowi4_proto = flkeys->basic.ip_proto; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/ipv6.h +++ linux-oracle-6.5-6.5.0/include/net/ipv6.h @@ -784,6 +784,11 @@ cpu_to_be32(0x0000ffff))) == 0UL; } +static inline bool ipv6_addr_v4mapped_any(const struct in6_addr *a) +{ + return ipv6_addr_v4mapped(a) && ipv4_is_zeronet(a->s6_addr32[3]); +} + static inline bool ipv6_addr_v4mapped_loopback(const struct in6_addr *a) { return ipv6_addr_v4mapped(a) && ipv4_is_loopback(a->s6_addr32[3]); @@ -1356,7 +1361,7 @@ return 0; } -static inline int ip6_sock_set_addr_preferences(struct sock *sk, bool val) +static inline int ip6_sock_set_addr_preferences(struct sock *sk, int val) { int ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/macsec.h +++ linux-oracle-6.5-6.5.0/include/net/macsec.h @@ -258,6 +258,7 @@ struct macsec_secy *secy; struct macsec_rx_sc *rx_sc; struct { + bool update_pn; unsigned char assoc_num; u8 key[MACSEC_MAX_KEY_LEN]; union { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/mana/mana.h +++ linux-oracle-6.5-6.5.0/include/net/mana/mana.h @@ -101,9 +101,10 @@ /* skb data and frags dma mappings */ struct mana_skb_head { - dma_addr_t dma_handle[MAX_SKB_FRAGS + 1]; + /* GSO pkts may have 2 SGEs for the linear part*/ + dma_addr_t dma_handle[MAX_SKB_FRAGS + 2]; - u32 size[MAX_SKB_FRAGS + 1]; + u32 size[MAX_SKB_FRAGS + 2]; }; #define MANA_HEADROOM sizeof(struct mana_skb_head) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/neighbour.h +++ linux-oracle-6.5-6.5.0/include/net/neighbour.h @@ -541,7 +541,7 @@ READ_ONCE(hh->hh_len)) return neigh_hh_output(hh, skb); - return n->output(n, skb); + return READ_ONCE(n->output)(n, skb); } static inline struct neighbour * only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/net/netfilter/nf_tables.h +++ linux-oracle-6.5-6.5.0/include/net/netfilter/nf_tables.h @@ -1682,7 +1682,7 @@ struct net *net; struct nft_set *set; u32 seq; - u8 count; + u16 count; void *priv[NFT_TRANS_GC_BATCHCOUNT]; struct rcu_head rcu; }; @@ -1700,8 +1700,9 @@ void nft_trans_gc_elem_add(struct nft_trans_gc *gc, void *priv); -struct nft_trans_gc *nft_trans_gc_catchall(struct nft_trans_gc *gc, - unsigned int gc_seq); +struct nft_trans_gc *nft_trans_gc_catchall_async(struct nft_trans_gc *gc, + unsigned int gc_seq); +struct nft_trans_gc *nft_trans_gc_catchall_sync(struct nft_trans_gc *gc); void nft_setelem_data_deactivate(const struct net *net, const struct nft_set *set, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/scsi/scsi.h +++ linux-oracle-6.5-6.5.0/include/scsi/scsi.h @@ -157,6 +157,9 @@ #define SCSI_3 4 /* SPC */ #define SCSI_SPC_2 5 #define SCSI_SPC_3 6 +#define SCSI_SPC_4 7 +#define SCSI_SPC_5 8 +#define SCSI_SPC_6 14 /* * INQ PERIPHERAL QUALIFIERS only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/scsi/scsi_device.h +++ linux-oracle-6.5-6.5.0/include/scsi/scsi_device.h @@ -161,6 +161,10 @@ * pass settings from slave_alloc to scsi * core. */ unsigned int eh_timeout; /* Error handling timeout */ + + bool manage_system_start_stop; /* Let HLD (sd) manage system start/stop */ + bool manage_runtime_start_stop; /* Let HLD (sd) manage runtime start/stop */ + unsigned removable:1; unsigned changed:1; /* Data invalid due to media change */ unsigned busy:1; /* Used to prevent races */ @@ -193,7 +197,6 @@ unsigned use_192_bytes_for_3f:1; /* ask for 192 bytes from page 0x3f */ unsigned no_start_on_add:1; /* do not issue start on add */ unsigned allow_restart:1; /* issue START_UNIT in error handler */ - unsigned manage_start_stop:1; /* Let HLD (sd) manage start/stop */ unsigned no_start_on_resume:1; /* Do not issue START_STOP_UNIT on resume */ unsigned start_stop_pwr_cond:1; /* Set power cond. in START_STOP_UNIT */ unsigned no_uld_attach:1; /* disable connecting to upper level drivers */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/uapi/linux/bpf.h +++ linux-oracle-6.5-6.5.0/include/uapi/linux/bpf.h @@ -1897,7 +1897,9 @@ * performed again, if the helper is used in combination with * direct packet access. * Return - * 0 on success, or a negative error in case of failure. + * 0 on success, or a negative error in case of failure. Positive + * error indicates a potential drop or congestion in the target + * device. The particular positive error codes are not defined. * * u64 bpf_get_current_pid_tgid(void) * Description only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/uapi/linux/if_packet.h +++ linux-oracle-6.5-6.5.0/include/uapi/linux/if_packet.h @@ -18,11 +18,7 @@ unsigned short sll_hatype; unsigned char sll_pkttype; unsigned char sll_halen; - union { - unsigned char sll_addr[8]; - /* Actual length is in sll_halen. */ - __DECLARE_FLEX_ARRAY(unsigned char, sll_addr_flex); - }; + unsigned char sll_addr[8]; }; /* Packet types */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/uapi/linux/io_uring.h +++ linux-oracle-6.5-6.5.0/include/uapi/linux/io_uring.h @@ -185,6 +185,11 @@ */ #define IORING_SETUP_REGISTERED_FD_ONLY (1U << 15) +/* + * Removes indirection through the SQ index array. + */ +#define IORING_SETUP_NO_SQARRAY (1U << 16) + enum io_uring_op { IORING_OP_NOP, IORING_OP_READV, @@ -299,11 +304,15 @@ * request 'user_data' * IORING_ASYNC_CANCEL_ANY Match any request * IORING_ASYNC_CANCEL_FD_FIXED 'fd' passed in is a fixed descriptor + * IORING_ASYNC_CANCEL_USERDATA Match on user_data, default for no other key + * IORING_ASYNC_CANCEL_OP Match request based on opcode */ #define IORING_ASYNC_CANCEL_ALL (1U << 0) #define IORING_ASYNC_CANCEL_FD (1U << 1) #define IORING_ASYNC_CANCEL_ANY (1U << 2) #define IORING_ASYNC_CANCEL_FD_FIXED (1U << 3) +#define IORING_ASYNC_CANCEL_USERDATA (1U << 4) +#define IORING_ASYNC_CANCEL_OP (1U << 5) /* * send/sendmsg and recv/recvmsg flags (sqe->ioprio) @@ -697,7 +706,9 @@ __s32 fd; __u32 flags; struct __kernel_timespec timeout; - __u64 pad[4]; + __u8 opcode; + __u8 pad[7]; + __u64 pad2[3]; }; /* @@ -717,6 +728,14 @@ __u32 flags; }; +/* + * Argument for IORING_OP_URING_CMD when file is a socket + */ +enum { + SOCKET_URING_OP_SIOCINQ = 0, + SOCKET_URING_OP_SIOCOUTQ, +}; + #ifdef __cplusplus } #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/uapi/linux/ipv6.h +++ linux-oracle-6.5-6.5.0/include/uapi/linux/ipv6.h @@ -198,6 +198,7 @@ DEVCONF_IOAM6_ID_WIDE, DEVCONF_NDISC_EVICT_NOCARRIER, DEVCONF_ACCEPT_UNTRACKED_NA, + DEVCONF_ACCEPT_RA_MIN_LFT, DEVCONF_MAX }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/uapi/linux/netfilter_bridge/ebtables.h +++ linux-oracle-6.5-6.5.0/include/uapi/linux/netfilter_bridge/ebtables.h @@ -182,12 +182,14 @@ unsigned char sourcemsk[ETH_ALEN]; unsigned char destmac[ETH_ALEN]; unsigned char destmsk[ETH_ALEN]; - /* sizeof ebt_entry + matches */ - unsigned int watchers_offset; - /* sizeof ebt_entry + matches + watchers */ - unsigned int target_offset; - /* sizeof ebt_entry + matches + watchers + target */ - unsigned int next_offset; + __struct_group(/* no tag */, offsets, /* no attrs */, + /* sizeof ebt_entry + matches */ + unsigned int watchers_offset; + /* sizeof ebt_entry + matches + watchers */ + unsigned int target_offset; + /* sizeof ebt_entry + matches + watchers + target */ + unsigned int next_offset; + ); unsigned char elems[0] __attribute__ ((aligned (__alignof__(struct ebt_replace)))); }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/include/uapi/linux/stddef.h +++ linux-oracle-6.5-6.5.0/include/uapi/linux/stddef.h @@ -29,6 +29,11 @@ struct TAG { MEMBERS } ATTRS NAME; \ } +#ifdef __cplusplus +/* sizeof(struct{}) is 1 in C++, not 0, can't use C version of the macro. */ +#define __DECLARE_FLEX_ARRAY(T, member) \ + T member[0] +#else /** * __DECLARE_FLEX_ARRAY() - Declare a flexible array usable in a union * @@ -45,3 +50,9 @@ TYPE NAME[]; \ } #endif + +#ifndef __counted_by +#define __counted_by(m) +#endif + +#endif /* _UAPI_LINUX_STDDEF_H */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/cancel.c +++ linux-oracle-6.5-6.5.0/io_uring/cancel.c @@ -22,35 +22,56 @@ u64 addr; u32 flags; s32 fd; + u8 opcode; }; #define CANCEL_FLAGS (IORING_ASYNC_CANCEL_ALL | IORING_ASYNC_CANCEL_FD | \ - IORING_ASYNC_CANCEL_ANY | IORING_ASYNC_CANCEL_FD_FIXED) + IORING_ASYNC_CANCEL_ANY | IORING_ASYNC_CANCEL_FD_FIXED | \ + IORING_ASYNC_CANCEL_USERDATA | IORING_ASYNC_CANCEL_OP) -static bool io_cancel_cb(struct io_wq_work *work, void *data) +/* + * Returns true if the request matches the criteria outlined by 'cd'. + */ +bool io_cancel_req_match(struct io_kiocb *req, struct io_cancel_data *cd) { - struct io_kiocb *req = container_of(work, struct io_kiocb, work); - struct io_cancel_data *cd = data; + bool match_user_data = cd->flags & IORING_ASYNC_CANCEL_USERDATA; if (req->ctx != cd->ctx) return false; - if (cd->flags & IORING_ASYNC_CANCEL_ANY) { - ; - } else if (cd->flags & IORING_ASYNC_CANCEL_FD) { + + if (!(cd->flags & (IORING_ASYNC_CANCEL_FD | IORING_ASYNC_CANCEL_OP))) + match_user_data = true; + + if (cd->flags & IORING_ASYNC_CANCEL_ANY) + goto check_seq; + if (cd->flags & IORING_ASYNC_CANCEL_FD) { if (req->file != cd->file) return false; - } else { - if (req->cqe.user_data != cd->data) + } + if (cd->flags & IORING_ASYNC_CANCEL_OP) { + if (req->opcode != cd->opcode) return false; } - if (cd->flags & (IORING_ASYNC_CANCEL_ALL|IORING_ASYNC_CANCEL_ANY)) { + if (match_user_data && req->cqe.user_data != cd->data) + return false; + if (cd->flags & IORING_ASYNC_CANCEL_ALL) { +check_seq: if (cd->seq == req->work.cancel_seq) return false; req->work.cancel_seq = cd->seq; } + return true; } +static bool io_cancel_cb(struct io_wq_work *work, void *data) +{ + struct io_kiocb *req = container_of(work, struct io_kiocb, work); + struct io_cancel_data *cd = data; + + return io_cancel_req_match(req, cd); +} + static int io_async_cancel_one(struct io_uring_task *tctx, struct io_cancel_data *cd) { @@ -111,7 +132,7 @@ if (unlikely(req->flags & REQ_F_BUFFER_SELECT)) return -EINVAL; - if (sqe->off || sqe->len || sqe->splice_fd_in) + if (sqe->off || sqe->splice_fd_in) return -EINVAL; cancel->addr = READ_ONCE(sqe->addr); @@ -123,6 +144,11 @@ return -EINVAL; cancel->fd = READ_ONCE(sqe->fd); } + if (cancel->flags & IORING_ASYNC_CANCEL_OP) { + if (cancel->flags & IORING_ASYNC_CANCEL_ANY) + return -EINVAL; + cancel->opcode = READ_ONCE(sqe->len); + } return 0; } @@ -169,6 +195,7 @@ .ctx = req->ctx, .data = cancel->addr, .flags = cancel->flags, + .opcode = cancel->opcode, .seq = atomic_inc_return(&req->ctx->cancel_seq), }; struct io_uring_task *tctx = req->task->io_uring; @@ -238,17 +265,22 @@ struct io_uring_sync_cancel_reg sc; struct fd f = { }; DEFINE_WAIT(wait); - int ret; + int ret, i; if (copy_from_user(&sc, arg, sizeof(sc))) return -EFAULT; if (sc.flags & ~CANCEL_FLAGS) return -EINVAL; - if (sc.pad[0] || sc.pad[1] || sc.pad[2] || sc.pad[3]) - return -EINVAL; + for (i = 0; i < ARRAY_SIZE(sc.pad); i++) + if (sc.pad[i]) + return -EINVAL; + for (i = 0; i < ARRAY_SIZE(sc.pad2); i++) + if (sc.pad2[i]) + return -EINVAL; cd.data = sc.addr; cd.flags = sc.flags; + cd.opcode = sc.opcode; /* we can grab a normal file descriptor upfront */ if ((cd.flags & IORING_ASYNC_CANCEL_FD) && only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/cancel.h +++ linux-oracle-6.5-6.5.0/io_uring/cancel.h @@ -8,11 +8,11 @@ u64 data; struct file *file; }; + u8 opcode; u32 flags; int seq; }; - int io_async_cancel_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); int io_async_cancel(struct io_kiocb *req, unsigned int issue_flags); @@ -21,3 +21,4 @@ void init_hash_table(struct io_hash_table *table, unsigned size); int io_sync_cancel(struct io_ring_ctx *ctx, void __user *arg); +bool io_cancel_req_match(struct io_kiocb *req, struct io_cancel_data *cd); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/fdinfo.c +++ linux-oracle-6.5-6.5.0/io_uring/fdinfo.c @@ -46,10 +46,13 @@ return 0; } -static __cold void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, - struct seq_file *m) +/* + * Caller holds a reference to the file already, we don't need to do + * anything else to get an extra reference. + */ +__cold void io_uring_show_fdinfo(struct seq_file *m, struct file *f) { - struct io_sq_data *sq = NULL; + struct io_ring_ctx *ctx = f->private_data; struct io_overflow_cqe *ocqe; struct io_rings *r = ctx->rings; unsigned int sq_mask = ctx->sq_entries - 1, cq_mask = ctx->cq_entries - 1; @@ -60,6 +63,7 @@ unsigned int cq_shift = 0; unsigned int sq_shift = 0; unsigned int sq_entries, cq_entries; + int sq_pid = -1, sq_cpu = -1; bool has_lock; unsigned int i; @@ -89,6 +93,8 @@ struct io_uring_sqe *sqe; unsigned int sq_idx; + if (ctx->flags & IORING_SETUP_NO_SQARRAY) + break; sq_idx = READ_ONCE(ctx->sq_array[entry & sq_mask]); if (sq_idx > sq_mask) continue; @@ -137,13 +143,19 @@ has_lock = mutex_trylock(&ctx->uring_lock); if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL)) { - sq = ctx->sq_data; - if (!sq->thread) - sq = NULL; + struct io_sq_data *sq = ctx->sq_data; + + if (mutex_trylock(&sq->lock)) { + if (sq->thread) { + sq_pid = task_pid_nr(sq->thread); + sq_cpu = task_cpu(sq->thread); + } + mutex_unlock(&sq->lock); + } } - seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1); - seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1); + seq_printf(m, "SqThread:\t%d\n", sq_pid); + seq_printf(m, "SqThreadCpu:\t%d\n", sq_cpu); seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files); for (i = 0; has_lock && i < ctx->nr_user_files; i++) { struct file *f = io_file_from_index(&ctx->file_table, i); @@ -203,14 +215,4 @@ spin_unlock(&ctx->completion_lock); } - -__cold void io_uring_show_fdinfo(struct seq_file *m, struct file *f) -{ - struct io_ring_ctx *ctx = f->private_data; - - if (percpu_ref_tryget(&ctx->refs)) { - __io_uring_show_fdinfo(ctx, m); - percpu_ref_put(&ctx->refs); - } -} #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/fs.c +++ linux-oracle-6.5-6.5.0/io_uring/fs.c @@ -243,7 +243,7 @@ struct io_link *lnk = io_kiocb_to_cmd(req, struct io_link); const char __user *oldf, *newf; - if (sqe->rw_flags || sqe->buf_index || sqe->splice_fd_in) + if (sqe->buf_index || sqe->splice_fd_in) return -EINVAL; if (unlikely(req->flags & REQ_F_FIXED_FILE)) return -EBADF; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/kbuf.c +++ linux-oracle-6.5-6.5.0/io_uring/kbuf.c @@ -218,11 +218,7 @@ if (bl->is_mapped) { i = bl->buf_ring->tail - bl->head; if (bl->is_mmap) { - struct page *page; - - page = virt_to_head_page(bl->buf_ring); - if (put_page_testzero(page)) - free_compound_page(page); + folio_put(virt_to_folio(bl->buf_ring)); bl->buf_ring = NULL; bl->is_mmap = 0; } else if (bl->buf_nr_pages) { @@ -481,7 +477,7 @@ { struct io_uring_buf_ring *br; struct page **pages; - int nr_pages; + int i, nr_pages; pages = io_pin_pages(reg->ring_addr, flex_array_size(br, bufs, reg->ring_entries), @@ -489,6 +485,17 @@ if (IS_ERR(pages)) return PTR_ERR(pages); + /* + * Apparently some 32-bit boxes (ARM) will return highmem pages, + * which then need to be mapped. We could support that, but it'd + * complicate the code and slowdown the common cases quite a bit. + * So just error out, returning -EINVAL just like we did on kernels + * that didn't support mapped buffer rings. + */ + for (i = 0; i < nr_pages; i++) + if (PageHighMem(pages[i])) + goto error_unpin; + br = page_address(pages[0]); #ifdef SHM_COLOUR /* @@ -500,13 +507,8 @@ * should use IOU_PBUF_RING_MMAP instead, and liburing will handle * this transparently. */ - if ((reg->ring_addr | (unsigned long) br) & (SHM_COLOUR - 1)) { - int i; - - for (i = 0; i < nr_pages; i++) - unpin_user_page(pages[i]); - return -EINVAL; - } + if ((reg->ring_addr | (unsigned long) br) & (SHM_COLOUR - 1)) + goto error_unpin; #endif bl->buf_pages = pages; bl->buf_nr_pages = nr_pages; @@ -514,6 +516,11 @@ bl->is_mapped = 1; bl->is_mmap = 0; return 0; +error_unpin: + for (i = 0; i < nr_pages; i++) + unpin_user_page(pages[i]); + kvfree(pages); + return -EINVAL; } static int io_alloc_pbuf_ring(struct io_uring_buf_reg *reg, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/poll.c +++ linux-oracle-6.5-6.5.0/io_uring/poll.c @@ -300,8 +300,8 @@ __poll_t mask = mangle_poll(req->cqe.res & req->apoll_events); - if (!io_aux_cqe(req, ts->locked, mask, - IORING_CQE_F_MORE, false)) { + if (!io_fill_cqe_req_aux(req, ts->locked, mask, + IORING_CQE_F_MORE)) { io_req_set_res(req, mask, 0); return IOU_POLL_REMOVE_POLL_USE_RES; } @@ -824,14 +824,10 @@ spin_lock(&hb->lock); hlist_for_each_entry(req, &hb->list, hash_node) { - if (!(cd->flags & IORING_ASYNC_CANCEL_ANY) && - req->file != cd->file) - continue; - if (cd->seq == req->work.cancel_seq) - continue; - req->work.cancel_seq = cd->seq; - *out_bucket = hb; - return req; + if (io_cancel_req_match(req, cd)) { + *out_bucket = hb; + return req; + } } spin_unlock(&hb->lock); } @@ -855,7 +851,8 @@ struct io_hash_bucket *bucket; struct io_kiocb *req; - if (cd->flags & (IORING_ASYNC_CANCEL_FD|IORING_ASYNC_CANCEL_ANY)) + if (cd->flags & (IORING_ASYNC_CANCEL_FD | IORING_ASYNC_CANCEL_OP | + IORING_ASYNC_CANCEL_ANY)) req = io_poll_file_find(ctx, cd, table, &bucket); else req = io_poll_find(ctx, false, cd, table, &bucket); @@ -972,8 +969,8 @@ int io_poll_remove(struct io_kiocb *req, unsigned int issue_flags) { struct io_poll_update *poll_update = io_kiocb_to_cmd(req, struct io_poll_update); - struct io_cancel_data cd = { .data = poll_update->old_user_data, }; struct io_ring_ctx *ctx = req->ctx; + struct io_cancel_data cd = { .ctx = ctx, .data = poll_update->old_user_data, }; struct io_hash_bucket *bucket; struct io_kiocb *preq; int ret2, ret = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/rsrc.c +++ linux-oracle-6.5-6.5.0/io_uring/rsrc.c @@ -33,6 +33,12 @@ #define IORING_MAX_FIXED_FILES (1U << 20) #define IORING_MAX_REG_BUFFERS (1U << 14) +static const struct io_mapped_ubuf dummy_ubuf = { + /* set invalid range, so io_import_fixed() fails meeting it */ + .ubuf = -1UL, + .ubuf_end = 0, +}; + int __io_account_mem(struct user_struct *user, unsigned long nr_pages) { unsigned long page_limit, cur_pages, new_pages; @@ -132,7 +138,7 @@ struct io_mapped_ubuf *imu = *slot; unsigned int i; - if (imu != ctx->dummy_ubuf) { + if (imu != &dummy_ubuf) { for (i = 0; i < imu->nr_bvecs; i++) unpin_user_page(imu->bvec[i].bv_page); if (imu->acct_pages) @@ -459,14 +465,14 @@ break; i = array_index_nospec(up->offset + done, ctx->nr_user_bufs); - if (ctx->user_bufs[i] != ctx->dummy_ubuf) { + if (ctx->user_bufs[i] != &dummy_ubuf) { err = io_queue_rsrc_removal(ctx->buf_data, i, ctx->user_bufs[i]); if (unlikely(err)) { io_buffer_unmap(ctx, &imu); break; } - ctx->user_bufs[i] = ctx->dummy_ubuf; + ctx->user_bufs[i] = (struct io_mapped_ubuf *)&dummy_ubuf; } ctx->user_bufs[i] = imu; @@ -1077,7 +1083,7 @@ int ret, nr_pages, i; struct folio *folio = NULL; - *pimu = ctx->dummy_ubuf; + *pimu = (struct io_mapped_ubuf *)&dummy_ubuf; if (!iov->iov_base) return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/rsrc.h +++ linux-oracle-6.5-6.5.0/io_uring/rsrc.h @@ -54,10 +54,9 @@ u64 ubuf_end; unsigned int nr_bvecs; unsigned long acct_pages; - struct bio_vec bvec[]; + struct bio_vec bvec[] __counted_by(nr_bvecs); }; -void io_rsrc_put_tw(struct callback_head *cb); void io_rsrc_node_ref_zero(struct io_rsrc_node *node); void io_rsrc_node_destroy(struct io_ring_ctx *ctx, struct io_rsrc_node *ref_node); struct io_rsrc_node *io_rsrc_node_alloc(struct io_ring_ctx *ctx); @@ -78,17 +77,10 @@ int __io_scm_file_account(struct io_ring_ctx *ctx, struct file *file); -#if defined(CONFIG_UNIX) -static inline bool io_file_need_scm(struct file *filp) -{ - return !!unix_get_socket(filp); -} -#else static inline bool io_file_need_scm(struct file *filp) { return false; } -#endif static inline int io_scm_file_account(struct io_ring_ctx *ctx, struct file *file) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/rw.c +++ linux-oracle-6.5-6.5.0/io_uring/rw.c @@ -105,6 +105,7 @@ } else { rw->kiocb.ki_ioprio = get_current_ioprio(); } + rw->kiocb.dio_complete = NULL; rw->addr = READ_ONCE(sqe->addr); rw->len = READ_ONCE(sqe->len); @@ -220,17 +221,12 @@ } #endif -static void kiocb_end_write(struct io_kiocb *req) +static void io_req_end_write(struct io_kiocb *req) { - /* - * Tell lockdep we inherited freeze protection from submission - * thread. - */ if (req->flags & REQ_F_ISREG) { - struct super_block *sb = file_inode(req->file)->i_sb; + struct io_rw *rw = io_kiocb_to_cmd(req, struct io_rw); - __sb_writers_acquired(sb, SB_FREEZE_WRITE); - sb_end_write(sb); + kiocb_end_write(&rw->kiocb); } } @@ -243,7 +239,7 @@ struct io_rw *rw = io_kiocb_to_cmd(req, struct io_rw); if (rw->kiocb.ki_flags & IOCB_WRITE) { - kiocb_end_write(req); + io_req_end_write(req); fsnotify_modify(req->file); } else { fsnotify_access(req->file); @@ -285,6 +281,15 @@ void io_req_rw_complete(struct io_kiocb *req, struct io_tw_state *ts) { + struct io_rw *rw = io_kiocb_to_cmd(req, struct io_rw); + struct kiocb *kiocb = &rw->kiocb; + + if ((kiocb->ki_flags & IOCB_DIO_CALLER_COMP) && kiocb->dio_complete) { + long res = kiocb->dio_complete(rw->kiocb.private); + + io_req_set_res(req, io_fixup_rw_res(req, res), 0); + } + io_req_io_end(req); if (req->flags & (REQ_F_BUFFER_SELECTED|REQ_F_BUFFER_RING)) { @@ -300,9 +305,11 @@ struct io_rw *rw = container_of(kiocb, struct io_rw, kiocb); struct io_kiocb *req = cmd_to_io_kiocb(rw); - if (__io_complete_rw_common(req, res)) - return; - io_req_set_res(req, io_fixup_rw_res(req, res), 0); + if (!kiocb->dio_complete || !(kiocb->ki_flags & IOCB_DIO_CALLER_COMP)) { + if (__io_complete_rw_common(req, res)) + return; + io_req_set_res(req, io_fixup_rw_res(req, res), 0); + } req->io_task_work.func = io_req_rw_complete; __io_req_task_work_add(req, IOU_F_TWQ_LAZY_WAKE); } @@ -313,7 +320,7 @@ struct io_kiocb *req = cmd_to_io_kiocb(rw); if (kiocb->ki_flags & IOCB_WRITE) - kiocb_end_write(req); + io_req_end_write(req); if (unlikely(res != req->cqe.res)) { if (res == -EAGAIN && io_rw_should_reissue(req)) { req->flags |= REQ_F_REISSUE | REQ_F_PARTIAL_IO; @@ -332,7 +339,7 @@ struct io_rw *rw = io_kiocb_to_cmd(req, struct io_rw); unsigned final_ret = io_fixup_rw_res(req, ret); - if (req->flags & REQ_F_CUR_POS) + if (ret >= 0 && req->flags & REQ_F_CUR_POS) req->file->f_pos = rw->kiocb.ki_pos; if (ret >= 0 && (rw->kiocb.ki_complete == io_complete_rw)) { if (!__io_complete_rw_common(req, ret)) { @@ -902,18 +909,8 @@ return ret; } - /* - * Open-code file_start_write here to grab freeze protection, - * which will be released by another thread in - * io_complete_rw(). Fool lockdep by telling it the lock got - * released so that it doesn't complain about the held lock when - * we return to userspace. - */ - if (req->flags & REQ_F_ISREG) { - sb_start_write(file_inode(req->file)->i_sb); - __sb_writers_release(file_inode(req->file)->i_sb, - SB_FREEZE_WRITE); - } + if (req->flags & REQ_F_ISREG) + kiocb_start_write(kiocb); kiocb->ki_flags |= IOCB_WRITE; if (likely(req->file->f_op->write_iter)) @@ -961,7 +958,7 @@ io->bytes_done += ret2; if (kiocb->ki_flags & IOCB_WRITE) - kiocb_end_write(req); + io_req_end_write(req); return ret ? ret : -EAGAIN; } done: @@ -972,7 +969,7 @@ ret = io_setup_async_rw(req, iovec, s, false); if (!ret) { if (kiocb->ki_flags & IOCB_WRITE) - kiocb_end_write(req); + io_req_end_write(req); return -EAGAIN; } return ret; @@ -983,13 +980,6 @@ return ret; } -static void io_cqring_ev_posted_iopoll(struct io_ring_ctx *ctx) -{ - io_commit_cqring_flush(ctx); - if (ctx->flags & IORING_SETUP_SQPOLL) - io_cqring_wake(ctx); -} - void io_rw_fail(struct io_kiocb *req) { int res; @@ -1060,24 +1050,17 @@ if (!smp_load_acquire(&req->iopoll_completed)) break; nr_events++; - if (unlikely(req->flags & REQ_F_CQE_SKIP)) - continue; - req->cqe.flags = io_put_kbuf(req, 0); - if (unlikely(!__io_fill_cqe_req(ctx, req))) { - spin_lock(&ctx->completion_lock); - io_req_cqe_overflow(req); - spin_unlock(&ctx->completion_lock); - } } - if (unlikely(!nr_events)) return 0; - io_commit_cqring(ctx); - io_cqring_ev_posted_iopoll(ctx); pos = start ? start->next : ctx->iopoll_list.first; wq_list_cut(&ctx->iopoll_list, prev, start); - io_free_batch_list(ctx, pos); + + if (WARN_ON_ONCE(!wq_list_empty(&ctx->submit_state.compl_reqs))) + return 0; + ctx->submit_state.compl_reqs.first = pos; + __io_submit_flush_completions(ctx); return nr_events; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/splice.c +++ linux-oracle-6.5-6.5.0/io_uring/splice.c @@ -68,7 +68,7 @@ ret = do_tee(in, out, sp->len, flags); if (!(sp->flags & SPLICE_F_FD_IN_FIXED)) - io_put_file(in); + fput(in); done: if (ret != sp->len) req_set_fail(req); @@ -112,7 +112,7 @@ ret = do_splice(in, poff_in, out, poff_out, sp->len, flags); if (!(sp->flags & SPLICE_F_FD_IN_FIXED)) - io_put_file(in); + fput(in); done: if (ret != sp->len) req_set_fail(req); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/timeout.c +++ linux-oracle-6.5-6.5.0/io_uring/timeout.c @@ -73,8 +73,8 @@ if (!io_timeout_finish(timeout, data)) { bool filled; - filled = io_aux_cqe(req, ts->locked, -ETIME, IORING_CQE_F_MORE, - false); + filled = io_fill_cqe_req_aux(req, ts->locked, -ETIME, + IORING_CQE_F_MORE); if (filled) { /* re-arm timer */ spin_lock_irq(&ctx->timeout_lock); @@ -268,16 +268,10 @@ list_for_each_entry(timeout, &ctx->timeout_list, list) { struct io_kiocb *tmp = cmd_to_io_kiocb(timeout); - if (!(cd->flags & IORING_ASYNC_CANCEL_ANY) && - cd->data != tmp->cqe.user_data) - continue; - if (cd->flags & (IORING_ASYNC_CANCEL_ALL|IORING_ASYNC_CANCEL_ANY)) { - if (cd->seq == tmp->work.cancel_seq) - continue; - tmp->work.cancel_seq = cd->seq; + if (io_cancel_req_match(tmp, cd)) { + req = tmp; + break; } - req = tmp; - break; } if (!req) return ERR_PTR(-ENOENT); @@ -409,7 +403,7 @@ struct timespec64 *ts, enum hrtimer_mode mode) __must_hold(&ctx->timeout_lock) { - struct io_cancel_data cd = { .data = user_data, }; + struct io_cancel_data cd = { .ctx = ctx, .data = user_data, }; struct io_kiocb *req = io_timeout_extract(ctx, &cd); struct io_timeout *timeout = io_kiocb_to_cmd(req, struct io_timeout); struct io_timeout_data *data; @@ -473,7 +467,7 @@ int ret; if (!(tr->flags & IORING_TIMEOUT_UPDATE)) { - struct io_cancel_data cd = { .data = tr->addr, }; + struct io_cancel_data cd = { .ctx = ctx, .data = tr->addr, }; spin_lock(&ctx->completion_lock); ret = io_timeout_cancel(ctx, &cd); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/io_uring/uring_cmd.c +++ linux-oracle-6.5-6.5.0/io_uring/uring_cmd.c @@ -7,6 +7,7 @@ #include #include +#include #include "io_uring.h" #include "rsrc.h" @@ -42,9 +43,8 @@ static inline void io_req_set_cqe32_extra(struct io_kiocb *req, u64 extra1, u64 extra2) { - req->extra1 = extra1; - req->extra2 = extra2; - req->flags |= REQ_F_CQE32_INIT; + req->big_cqe.extra1 = extra1; + req->big_cqe.extra2 = extra2; } /* @@ -164,3 +164,30 @@ return io_import_fixed(rw, iter, req->imu, ubuf, len); } EXPORT_SYMBOL_GPL(io_uring_cmd_import_fixed); + +int io_uring_cmd_sock(struct io_uring_cmd *cmd, unsigned int issue_flags) +{ + struct socket *sock = cmd->file->private_data; + struct sock *sk = sock->sk; + struct proto *prot = READ_ONCE(sk->sk_prot); + int ret, arg = 0; + + if (!prot || !prot->ioctl) + return -EOPNOTSUPP; + + switch (cmd->sqe->cmd_op) { + case SOCKET_URING_OP_SIOCINQ: + ret = prot->ioctl(sk, SIOCINQ, &arg); + if (ret) + return ret; + return arg; + case SOCKET_URING_OP_SIOCOUTQ: + ret = prot->ioctl(sk, SIOCOUTQ, &arg); + if (ret) + return ret; + return arg; + default: + return -EOPNOTSUPP; + } +} +EXPORT_SYMBOL_GPL(io_uring_cmd_sock); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/bpf/bpf_local_storage.c +++ linux-oracle-6.5-6.5.0/kernel/bpf/bpf_local_storage.c @@ -553,7 +553,7 @@ void *value, u64 map_flags, gfp_t gfp_flags) { struct bpf_local_storage_data *old_sdata = NULL; - struct bpf_local_storage_elem *selem = NULL; + struct bpf_local_storage_elem *alloc_selem, *selem = NULL; struct bpf_local_storage *local_storage; unsigned long flags; int err; @@ -607,11 +607,12 @@ } } - if (gfp_flags == GFP_KERNEL) { - selem = bpf_selem_alloc(smap, owner, value, true, gfp_flags); - if (!selem) - return ERR_PTR(-ENOMEM); - } + /* A lookup has just been done before and concluded a new selem is + * needed. The chance of an unnecessary alloc is unlikely. + */ + alloc_selem = selem = bpf_selem_alloc(smap, owner, value, true, gfp_flags); + if (!alloc_selem) + return ERR_PTR(-ENOMEM); raw_spin_lock_irqsave(&local_storage->lock, flags); @@ -623,13 +624,13 @@ * simple. */ err = -EAGAIN; - goto unlock_err; + goto unlock; } old_sdata = bpf_local_storage_lookup(local_storage, smap, false); err = check_flags(old_sdata, map_flags); if (err) - goto unlock_err; + goto unlock; if (old_sdata && (map_flags & BPF_F_LOCK)) { copy_map_value_locked(&smap->map, old_sdata->data, value, @@ -638,23 +639,7 @@ goto unlock; } - if (gfp_flags != GFP_KERNEL) { - /* local_storage->lock is held. Hence, we are sure - * we can unlink and uncharge the old_sdata successfully - * later. Hence, instead of charging the new selem now - * and then uncharge the old selem later (which may cause - * a potential but unnecessary charge failure), avoid taking - * a charge at all here (the "!old_sdata" check) and the - * old_sdata will not be uncharged later during - * bpf_selem_unlink_storage_nolock(). - */ - selem = bpf_selem_alloc(smap, owner, value, !old_sdata, gfp_flags); - if (!selem) { - err = -ENOMEM; - goto unlock_err; - } - } - + alloc_selem = NULL; /* First, link the new selem to the map */ bpf_selem_link_map(smap, selem); @@ -665,20 +650,16 @@ if (old_sdata) { bpf_selem_unlink_map(SELEM(old_sdata)); bpf_selem_unlink_storage_nolock(local_storage, SELEM(old_sdata), - false, false); + true, false); } unlock: raw_spin_unlock_irqrestore(&local_storage->lock, flags); - return SDATA(selem); - -unlock_err: - raw_spin_unlock_irqrestore(&local_storage->lock, flags); - if (selem) { + if (alloc_selem) { mem_uncharge(smap, owner, smap->elem_size); - bpf_selem_free(selem, smap, true); + bpf_selem_free(alloc_selem, smap, true); } - return ERR_PTR(err); + return err ? ERR_PTR(err) : SDATA(selem); } static u16 bpf_local_storage_cache_idx_get(struct bpf_local_storage_cache *cache) @@ -779,7 +760,7 @@ * of the loop will set the free_cgroup_storage to true. */ free_storage = bpf_selem_unlink_storage_nolock( - local_storage, selem, false, true); + local_storage, selem, true, true); } raw_spin_unlock_irqrestore(&local_storage->lock, flags); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/bpf/core.c +++ linux-oracle-6.5-6.5.0/kernel/bpf/core.c @@ -1635,12 +1635,6 @@ } #ifndef CONFIG_BPF_JIT_ALWAYS_ON -u64 __weak bpf_probe_read_kernel(void *dst, u32 size, const void *unsafe_ptr) -{ - memset(dst, 0, size); - return -EFAULT; -} - /** * ___bpf_prog_run - run eBPF program on a given context * @regs: is the array of MAX_BPF_EXT_REG eBPF pseudo-registers @@ -1931,8 +1925,8 @@ DST = *(SIZE *)(unsigned long) (SRC + insn->off); \ CONT; \ LDX_PROBE_MEM_##SIZEOP: \ - bpf_probe_read_kernel(&DST, sizeof(SIZE), \ - (const void *)(long) (SRC + insn->off)); \ + bpf_probe_read_kernel_common(&DST, sizeof(SIZE), \ + (const void *)(long) (SRC + insn->off)); \ DST = *((SIZE *)&DST); \ CONT; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/bpf/offload.c +++ linux-oracle-6.5-6.5.0/kernel/bpf/offload.c @@ -198,12 +198,14 @@ offload->netdev = netdev; ondev = bpf_offload_find_netdev(offload->netdev); + /* When program is offloaded require presence of "true" + * bpf_offload_netdev, avoid the one created for !ondev case below. + */ + if (bpf_prog_is_offloaded(prog->aux) && (!ondev || !ondev->offdev)) { + err = -EINVAL; + goto err_free; + } if (!ondev) { - if (bpf_prog_is_offloaded(prog->aux)) { - err = -EINVAL; - goto err_free; - } - /* When only binding to the device, explicitly * create an entry in the hashtable. */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/bpf/queue_stack_maps.c +++ linux-oracle-6.5-6.5.0/kernel/bpf/queue_stack_maps.c @@ -98,7 +98,12 @@ int err = 0; void *ptr; - raw_spin_lock_irqsave(&qs->lock, flags); + if (in_nmi()) { + if (!raw_spin_trylock_irqsave(&qs->lock, flags)) + return -EBUSY; + } else { + raw_spin_lock_irqsave(&qs->lock, flags); + } if (queue_stack_map_is_empty(qs)) { memset(value, 0, qs->map.value_size); @@ -128,7 +133,12 @@ void *ptr; u32 index; - raw_spin_lock_irqsave(&qs->lock, flags); + if (in_nmi()) { + if (!raw_spin_trylock_irqsave(&qs->lock, flags)) + return -EBUSY; + } else { + raw_spin_lock_irqsave(&qs->lock, flags); + } if (queue_stack_map_is_empty(qs)) { memset(value, 0, qs->map.value_size); @@ -193,7 +203,12 @@ if (flags & BPF_NOEXIST || flags > BPF_EXIST) return -EINVAL; - raw_spin_lock_irqsave(&qs->lock, irq_flags); + if (in_nmi()) { + if (!raw_spin_trylock_irqsave(&qs->lock, irq_flags)) + return -EBUSY; + } else { + raw_spin_lock_irqsave(&qs->lock, irq_flags); + } if (queue_stack_map_is_full(qs)) { if (!replace) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/bpf/syscall.c +++ linux-oracle-6.5-6.5.0/kernel/bpf/syscall.c @@ -5304,9 +5304,9 @@ } run_ctx.bpf_cookie = 0; - run_ctx.saved_run_ctx = NULL; if (!__bpf_prog_enter_sleepable_recur(prog, &run_ctx)) { /* recursion detected */ + __bpf_prog_exit_sleepable_recur(prog, 0, &run_ctx); bpf_prog_put(prog); return -EBUSY; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/bpf/trampoline.c +++ linux-oracle-6.5-6.5.0/kernel/bpf/trampoline.c @@ -926,13 +926,12 @@ migrate_disable(); might_fault(); + run_ctx->saved_run_ctx = bpf_set_run_ctx(&run_ctx->run_ctx); + if (unlikely(this_cpu_inc_return(*(prog->active)) != 1)) { bpf_prog_inc_misses_counter(prog); return 0; } - - run_ctx->saved_run_ctx = bpf_set_run_ctx(&run_ctx->run_ctx); - return bpf_prog_start_time(); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/cgroup/cgroup-v1.c +++ linux-oracle-6.5-6.5.0/kernel/cgroup/cgroup-v1.c @@ -360,10 +360,9 @@ } css_task_iter_end(&it); length = n; - /* now sort & (if procs) strip out duplicates */ + /* now sort & strip out duplicates (tgids or recycled thread PIDs) */ sort(array, length, sizeof(pid_t), cmppid, NULL); - if (type == CGROUP_FILE_PROCS) - length = pidlist_uniq(array, length); + length = pidlist_uniq(array, length); l = cgroup_pidlist_find_create(cgrp, type); if (!l) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/dma/debug.c +++ linux-oracle-6.5-6.5.0/kernel/dma/debug.c @@ -637,15 +637,19 @@ return entry; } -static void __dma_entry_alloc_check_leak(void) +/* + * This should be called outside of free_entries_lock scope to avoid potential + * deadlocks with serial consoles that use DMA. + */ +static void __dma_entry_alloc_check_leak(u32 nr_entries) { - u32 tmp = nr_total_entries % nr_prealloc_entries; + u32 tmp = nr_entries % nr_prealloc_entries; /* Shout each time we tick over some multiple of the initial pool */ if (tmp < DMA_DEBUG_DYNAMIC_ENTRIES) { pr_info("dma_debug_entry pool grown to %u (%u00%%)\n", - nr_total_entries, - (nr_total_entries / nr_prealloc_entries)); + nr_entries, + (nr_entries / nr_prealloc_entries)); } } @@ -656,8 +660,10 @@ */ static struct dma_debug_entry *dma_entry_alloc(void) { + bool alloc_check_leak = false; struct dma_debug_entry *entry; unsigned long flags; + u32 nr_entries; spin_lock_irqsave(&free_entries_lock, flags); if (num_free_entries == 0) { @@ -667,13 +673,17 @@ pr_err("debugging out of memory - disabling\n"); return NULL; } - __dma_entry_alloc_check_leak(); + alloc_check_leak = true; + nr_entries = nr_total_entries; } entry = __dma_entry_alloc(); spin_unlock_irqrestore(&free_entries_lock, flags); + if (alloc_check_leak) + __dma_entry_alloc_check_leak(nr_entries); + #ifdef CONFIG_STACKTRACE entry->stack_len = stack_trace_save(entry->stack_entries, ARRAY_SIZE(entry->stack_entries), only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/dma/swiotlb.c +++ linux-oracle-6.5-6.5.0/kernel/dma/swiotlb.c @@ -350,14 +350,14 @@ } mem->areas = memblock_alloc(array_size(sizeof(struct io_tlb_area), - default_nareas), SMP_CACHE_BYTES); + nareas), SMP_CACHE_BYTES); if (!mem->areas) { pr_warn("%s: Failed to allocate mem->areas.\n", __func__); return; } swiotlb_init_io_tlb_mem(mem, __pa(tlb), nslabs, flags, false, - default_nareas); + nareas); if (flags & SWIOTLB_VERBOSE) swiotlb_print_info(); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/panic.c +++ linux-oracle-6.5-6.5.0/kernel/panic.c @@ -697,6 +697,7 @@ if (!fmt) { __warn(file, line, __builtin_return_address(0), taint, NULL, NULL); + warn_rcu_exit(rcu); return; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/power/hibernate.c +++ linux-oracle-6.5-6.5.0/kernel/power/hibernate.c @@ -786,9 +786,9 @@ unlock_device_hotplug(); if (snapshot_test) { pm_pr_dbg("Checking hibernation image\n"); - error = swsusp_check(snapshot_test); + error = swsusp_check(false); if (!error) - error = load_image_and_restore(snapshot_test); + error = load_image_and_restore(false); } thaw_processes(); @@ -945,14 +945,14 @@ pm_pr_dbg("Looking for hibernation image.\n"); mutex_lock(&system_transition_mutex); - error = swsusp_check(false); + error = swsusp_check(true); if (error) goto Unlock; /* The snapshot device should not be opened while we're running */ if (!hibernate_acquire()) { error = -EBUSY; - swsusp_close(false); + swsusp_close(true); goto Unlock; } @@ -973,7 +973,7 @@ goto Close_Finish; } - error = load_image_and_restore(false); + error = load_image_and_restore(true); thaw_processes(); Finish: pm_notifier_call_chain(PM_POST_RESTORE); @@ -987,7 +987,7 @@ pm_pr_dbg("Hibernation image not present or could not be loaded.\n"); return error; Close_Finish: - swsusp_close(false); + swsusp_close(true); goto Finish; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/printk/internal.h +++ linux-oracle-6.5-6.5.0/kernel/printk/internal.h @@ -103,3 +103,5 @@ u64 seq; unsigned long dropped; }; + +bool other_cpu_in_panic(void); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/printk/printk.c +++ linux-oracle-6.5-6.5.0/kernel/printk/printk.c @@ -2308,7 +2308,11 @@ preempt_enable(); } - wake_up_klogd(); + if (in_sched) + defer_console_output(); + else + wake_up_klogd(); + return printed_len; } EXPORT_SYMBOL(vprintk_emit); @@ -2585,6 +2589,26 @@ return 0; } +/* + * Return true if a panic is in progress on a remote CPU. + * + * On true, the local CPU should immediately release any printing resources + * that may be needed by the panic CPU. + */ +bool other_cpu_in_panic(void) +{ + if (!panic_in_progress()) + return false; + + /* + * We can use raw_smp_processor_id() here because it is impossible for + * the task to be migrated to the panic_cpu, or away from it. If + * panic_cpu has already been set, and we're not currently executing on + * that CPU, then we never will be. + */ + return atomic_read(&panic_cpu) != raw_smp_processor_id(); +} + /** * console_lock - block the console subsystem from printing * @@ -2597,6 +2621,10 @@ { might_sleep(); + /* On panic, the console_lock must be left to the panic cpu. */ + while (other_cpu_in_panic()) + msleep(1000); + down_console_sem(); if (console_suspended) return; @@ -2615,6 +2643,9 @@ */ int console_trylock(void) { + /* On panic, the console_lock must be left to the panic cpu. */ + if (other_cpu_in_panic()) + return 0; if (down_trylock_console_sem()) return 0; if (console_suspended) { @@ -2634,25 +2665,6 @@ EXPORT_SYMBOL(is_console_locked); /* - * Return true when this CPU should unlock console_sem without pushing all - * messages to the console. This reduces the chance that the console is - * locked when the panic CPU tries to use it. - */ -static bool abandon_console_lock_in_panic(void) -{ - if (!panic_in_progress()) - return false; - - /* - * We can use raw_smp_processor_id() here because it is impossible for - * the task to be migrated to the panic_cpu, or away from it. If - * panic_cpu has already been set, and we're not currently executing on - * that CPU, then we never will be. - */ - return atomic_read(&panic_cpu) != raw_smp_processor_id(); -} - -/* * Check if the given console is currently capable and allowed to print * records. * @@ -2948,7 +2960,7 @@ any_progress = true; /* Allow panic_cpu to take over the consoles safely. */ - if (abandon_console_lock_in_panic()) + if (other_cpu_in_panic()) goto abandon; if (do_cond_resched) @@ -3045,10 +3057,28 @@ void console_unblank(void) { + bool found_unblank = false; struct console *c; int cookie; /* + * First check if there are any consoles implementing the unblank() + * callback. If not, there is no reason to continue and take the + * console lock, which in particular can be dangerous if + * @oops_in_progress is set. + */ + cookie = console_srcu_read_lock(); + for_each_console_srcu(c) { + if ((console_srcu_read_flags(c) & CON_ENABLED) && c->unblank) { + found_unblank = true; + break; + } + } + console_srcu_read_unlock(cookie); + if (!found_unblank) + return; + + /* * Stop console printing because the unblank() callback may * assume the console is not within its write() callback. * @@ -3056,6 +3086,16 @@ * In that case, attempt a trylock as best-effort. */ if (oops_in_progress) { + /* Semaphores are not NMI-safe. */ + if (in_nmi()) + return; + + /* + * Attempting to trylock the console lock can deadlock + * if another CPU was stopped while modifying the + * semaphore. "Hope and pray" that this is not the + * current situation. + */ if (down_trylock_console_sem() != 0) return; } else @@ -3085,14 +3125,24 @@ */ void console_flush_on_panic(enum con_flush_mode mode) { + bool handover; + u64 next_seq; + /* - * If someone else is holding the console lock, trylock will fail - * and may_schedule may be set. Ignore and proceed to unlock so - * that messages are flushed out. As this can be called from any - * context and we don't want to get preempted while flushing, - * ensure may_schedule is cleared. + * Ignore the console lock and flush out the messages. Attempting a + * trylock would not be useful because: + * + * - if it is contended, it must be ignored anyway + * - console_lock() and console_trylock() block and fail + * respectively in panic for non-panic CPUs + * - semaphores are not NMI-safe + */ + + /* + * If another context is holding the console lock, + * @console_may_schedule might be set. Clear it so that + * this context does not call cond_resched() while flushing. */ - console_trylock(); console_may_schedule = 0; if (mode == CONSOLE_REPLAY_ALL) { @@ -3105,15 +3155,15 @@ cookie = console_srcu_read_lock(); for_each_console_srcu(c) { /* - * If the above console_trylock() failed, this is an - * unsynchronized assignment. But in that case, the + * This is an unsynchronized assignment, but the * kernel is in "hope and pray" mode anyway. */ c->seq = seq; } console_srcu_read_unlock(cookie); } - console_unlock(); + + console_flush_all(false, &next_seq, &handover); } /* @@ -3798,11 +3848,33 @@ preempt_enable(); } +/** + * wake_up_klogd - Wake kernel logging daemon + * + * Use this function when new records have been added to the ringbuffer + * and the console printing of those records has already occurred or is + * known to be handled by some other context. This function will only + * wake the logging daemon. + * + * Context: Any context. + */ void wake_up_klogd(void) { __wake_up_klogd(PRINTK_PENDING_WAKEUP); } +/** + * defer_console_output - Wake kernel logging daemon and trigger + * console printing in a deferred context + * + * Use this function when new records have been added to the ringbuffer, + * this context is responsible for console printing those records, but + * the current context is not allowed to perform the console printing. + * Trigger an irq_work context to perform the console printing. This + * function also wakes the logging daemon. + * + * Context: Any context. + */ void defer_console_output(void) { /* @@ -3819,12 +3891,7 @@ int vprintk_deferred(const char *fmt, va_list args) { - int r; - - r = vprintk_emit(0, LOGLEVEL_SCHED, NULL, fmt, args); - defer_console_output(); - - return r; + return vprintk_emit(0, LOGLEVEL_SCHED, NULL, fmt, args); } int _printk_deferred(const char *fmt, ...) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/printk/printk_safe.c +++ linux-oracle-6.5-6.5.0/kernel/printk/printk_safe.c @@ -38,13 +38,8 @@ * Use the main logbuf even in NMI. But avoid calling console * drivers that might have their own locks. */ - if (this_cpu_read(printk_context) || in_nmi()) { - int len; - - len = vprintk_store(0, LOGLEVEL_DEFAULT, NULL, fmt, args); - defer_console_output(); - return len; - } + if (this_cpu_read(printk_context) || in_nmi()) + return vprintk_deferred(fmt, args); /* No obstacles. */ return vprintk_default(fmt, args); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/rcu/rcuscale.c +++ linux-oracle-6.5-6.5.0/kernel/rcu/rcuscale.c @@ -424,7 +424,7 @@ sched_set_fifo_low(current); if (holdoff) - schedule_timeout_uninterruptible(holdoff * HZ); + schedule_timeout_idle(holdoff * HZ); /* * Wait until rcu_end_inkernel_boot() is called for normal GP tests only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/scftorture.c +++ linux-oracle-6.5-6.5.0/kernel/scftorture.c @@ -171,7 +171,8 @@ scfs.n_all_wait += scf_stats_p[i].n_all_wait; } if (atomic_read(&n_errs) || atomic_read(&n_mb_in_errs) || - atomic_read(&n_mb_out_errs) || atomic_read(&n_alloc_errs)) + atomic_read(&n_mb_out_errs) || + (!IS_ENABLED(CONFIG_KASAN) && atomic_read(&n_alloc_errs))) bangstr = "!!! "; pr_alert("%s %sscf_invoked_count %s: %lld resched: %lld single: %lld/%lld single_ofl: %lld/%lld single_rpc: %lld single_rpc_ofl: %lld many: %lld/%lld all: %lld/%lld ", SCFTORT_FLAG, bangstr, isdone ? "VER" : "ver", invoked_count, scfs.n_resched, @@ -323,7 +324,8 @@ preempt_disable(); if (scfsp->scfs_prim == SCF_PRIM_SINGLE || scfsp->scfs_wait) { scfcp = kmalloc(sizeof(*scfcp), GFP_ATOMIC); - if (WARN_ON_ONCE(!scfcp)) { + if (!scfcp) { + WARN_ON_ONCE(!IS_ENABLED(CONFIG_KASAN)); atomic_inc(&n_alloc_errs); } else { scfcp->scfc_cpu = -1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/sched/cpupri.c +++ linux-oracle-6.5-6.5.0/kernel/sched/cpupri.c @@ -101,6 +101,7 @@ if (lowest_mask) { cpumask_and(lowest_mask, &p->cpus_mask, vec->mask); + cpumask_and(lowest_mask, lowest_mask, cpu_active_mask); /* * We have to ensure that we have at least one bit only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/sched/idle.c +++ linux-oracle-6.5-6.5.0/kernel/sched/idle.c @@ -373,6 +373,7 @@ void cpu_startup_entry(enum cpuhp_state state) { + current->flags |= PF_IDLE; arch_cpu_idle_prepare(); cpuhp_online_idle(state); while (1) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/trace/ring_buffer.c +++ linux-oracle-6.5-6.5.0/kernel/trace/ring_buffer.c @@ -354,6 +354,11 @@ local_set(&bpage->commit, 0); } +static __always_inline unsigned int rb_page_commit(struct buffer_page *bpage) +{ + return local_read(&bpage->page->commit); +} + static void free_buffer_page(struct buffer_page *bpage) { free_page((unsigned long)bpage->page); @@ -1137,6 +1142,9 @@ if (full) { poll_wait(filp, &work->full_waiters, poll_table); work->full_waiters_pending = true; + if (!cpu_buffer->shortest_full || + cpu_buffer->shortest_full > full) + cpu_buffer->shortest_full = full; } else { poll_wait(filp, &work->waiters, poll_table); work->waiters_pending = true; @@ -2011,7 +2019,7 @@ * Increment overrun to account for the lost events. */ local_add(page_entries, &cpu_buffer->overrun); - local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes); + local_sub(rb_page_commit(to_remove_page), &cpu_buffer->entries_bytes); local_inc(&cpu_buffer->pages_lost); } @@ -2206,6 +2214,8 @@ err = -ENOMEM; goto out_err; } + + cond_resched(); } cpus_read_lock(); @@ -2373,11 +2383,6 @@ cpu_buffer->reader_page->read); } -static __always_inline unsigned rb_page_commit(struct buffer_page *bpage) -{ - return local_read(&bpage->page->commit); -} - static struct ring_buffer_event * rb_iter_head_event(struct ring_buffer_iter *iter) { @@ -2396,6 +2401,11 @@ */ commit = rb_page_commit(iter_head_page); smp_rmb(); + + /* An event needs to be at least 8 bytes in size */ + if (iter->head > commit - 8) + goto reset; + event = __rb_page_index(iter_head_page, iter->head); length = rb_event_length(event); @@ -2518,7 +2528,7 @@ * the counters. */ local_add(entries, &cpu_buffer->overrun); - local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes); + local_sub(rb_page_commit(next_page), &cpu_buffer->entries_bytes); local_inc(&cpu_buffer->pages_lost); /* @@ -2661,9 +2671,6 @@ event = __rb_page_index(tail_page, tail); - /* account for padding bytes */ - local_add(BUF_PAGE_SIZE - tail, &cpu_buffer->entries_bytes); - /* * Save the original length to the meta data. * This will be used by the reader to add lost event @@ -2677,7 +2684,8 @@ * write counter enough to allow another writer to slip * in on this page. * We put in a discarded commit instead, to make sure - * that this space is not used again. + * that this space is not used again, and this space will + * not be accounted into 'entries_bytes'. * * If we are less than the minimum size, we don't need to * worry about it. @@ -2702,6 +2710,9 @@ /* time delta must be non zero */ event->time_delta = 1; + /* account for padding bytes */ + local_add(BUF_PAGE_SIZE - tail, &cpu_buffer->entries_bytes); + /* Make sure the padding is visible before the tail_page->write update */ smp_wmb(); @@ -4216,7 +4227,7 @@ EXPORT_SYMBOL_GPL(ring_buffer_oldest_event_ts); /** - * ring_buffer_bytes_cpu - get the number of bytes consumed in a cpu buffer + * ring_buffer_bytes_cpu - get the number of bytes unconsumed in a cpu buffer * @buffer: The ring buffer * @cpu: The per CPU buffer to read from. */ @@ -4724,6 +4735,7 @@ length = rb_event_length(event); cpu_buffer->reader_page->read += length; + cpu_buffer->read_bytes += length; } static void rb_advance_iter(struct ring_buffer_iter *iter) @@ -5817,7 +5829,7 @@ } else { /* update the entry counter */ cpu_buffer->read += rb_page_entries(reader); - cpu_buffer->read_bytes += BUF_PAGE_SIZE; + cpu_buffer->read_bytes += rb_page_commit(reader); /* swap the pages */ rb_init_page(bpage); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/trace/trace.h +++ linux-oracle-6.5-6.5.0/kernel/trace/trace.h @@ -601,6 +601,8 @@ void tracing_reset_all_online_cpus_unlocked(void); int tracing_open_generic(struct inode *inode, struct file *filp); int tracing_open_generic_tr(struct inode *inode, struct file *filp); +int tracing_open_file_tr(struct inode *inode, struct file *filp); +int tracing_release_file_tr(struct inode *inode, struct file *filp); bool tracing_is_disabled(void); bool tracer_tracing_is_on(struct trace_array *tr); void tracer_tracing_on(struct trace_array *tr); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/trace/trace_events.c +++ linux-oracle-6.5-6.5.0/kernel/trace/trace_events.c @@ -2103,9 +2103,10 @@ }; static const struct file_operations ftrace_enable_fops = { - .open = tracing_open_generic, + .open = tracing_open_file_tr, .read = event_enable_read, .write = event_enable_write, + .release = tracing_release_file_tr, .llseek = default_llseek, }; @@ -2122,9 +2123,10 @@ }; static const struct file_operations ftrace_event_filter_fops = { - .open = tracing_open_generic, + .open = tracing_open_file_tr, .read = event_filter_read, .write = event_filter_write, + .release = tracing_release_file_tr, .llseek = default_llseek, }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/trace/trace_events_inject.c +++ linux-oracle-6.5-6.5.0/kernel/trace/trace_events_inject.c @@ -328,7 +328,8 @@ } const struct file_operations event_inject_fops = { - .open = tracing_open_generic, + .open = tracing_open_file_tr, .read = event_inject_read, .write = event_inject_write, + .release = tracing_release_file_tr, }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/trace/trace_events_synth.c +++ linux-oracle-6.5-6.5.0/kernel/trace/trace_events_synth.c @@ -337,7 +337,7 @@ break; default: - trace_seq_printf(s, print_fmt, name, val, space); + trace_seq_printf(s, print_fmt, name, val->as_u64, space); break; } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/kernel/trace/trace_events_user.c +++ linux-oracle-6.5-6.5.0/kernel/trace/trace_events_user.c @@ -127,8 +127,13 @@ /* Bit 7 is for freeing status of enablement */ #define ENABLE_VAL_FREEING_BIT 7 -/* Only duplicate the bit value */ -#define ENABLE_VAL_DUP_MASK ENABLE_VAL_BIT_MASK +/* Bit 8 is for marking 32-bit on 64-bit */ +#define ENABLE_VAL_32_ON_64_BIT 8 + +#define ENABLE_VAL_COMPAT_MASK (1 << ENABLE_VAL_32_ON_64_BIT) + +/* Only duplicate the bit and compat values */ +#define ENABLE_VAL_DUP_MASK (ENABLE_VAL_BIT_MASK | ENABLE_VAL_COMPAT_MASK) #define ENABLE_BITOPS(e) (&(e)->values) @@ -174,6 +179,30 @@ int flags; }; +static inline void align_addr_bit(unsigned long *addr, int *bit, + unsigned long *flags) +{ + if (IS_ALIGNED(*addr, sizeof(long))) { +#ifdef __BIG_ENDIAN + /* 32 bit on BE 64 bit requires a 32 bit offset when aligned. */ + if (test_bit(ENABLE_VAL_32_ON_64_BIT, flags)) + *bit += 32; +#endif + return; + } + + *addr = ALIGN_DOWN(*addr, sizeof(long)); + + /* + * We only support 32 and 64 bit values. The only time we need + * to align is a 32 bit value on a 64 bit kernel, which on LE + * is always 32 bits, and on BE requires no change when unaligned. + */ +#ifdef __LITTLE_ENDIAN + *bit += 32; +#endif +} + typedef void (*user_event_func_t) (struct user_event *user, struct iov_iter *i, void *tpdata, bool *faulted); @@ -482,6 +511,7 @@ unsigned long *ptr; struct page *page; void *kaddr; + int bit = ENABLE_BIT(enabler); int ret; lockdep_assert_held(&event_mutex); @@ -497,6 +527,8 @@ test_bit(ENABLE_VAL_FREEING_BIT, ENABLE_BITOPS(enabler)))) return -EBUSY; + align_addr_bit(&uaddr, &bit, ENABLE_BITOPS(enabler)); + ret = pin_user_pages_remote(mm->mm, uaddr, 1, FOLL_WRITE | FOLL_NOFAULT, &page, NULL); @@ -515,9 +547,9 @@ /* Update bit atomically, user tracers must be atomic as well */ if (enabler->event && enabler->event->status) - set_bit(ENABLE_BIT(enabler), ptr); + set_bit(bit, ptr); else - clear_bit(ENABLE_BIT(enabler), ptr); + clear_bit(bit, ptr); kunmap_local(kaddr); unpin_user_pages_dirty_lock(&page, 1, true); @@ -849,6 +881,12 @@ enabler->event = user; enabler->addr = uaddr; enabler->values = reg->enable_bit; + +#if BITS_PER_LONG >= 64 + if (reg->enable_size == 4) + set_bit(ENABLE_VAL_32_ON_64_BIT, ENABLE_BITOPS(enabler)); +#endif + retry: /* Prevents state changes from racing with new enablers */ mutex_lock(&event_mutex); @@ -2376,7 +2414,8 @@ } static int user_event_mm_clear_bit(struct user_event_mm *user_mm, - unsigned long uaddr, unsigned char bit) + unsigned long uaddr, unsigned char bit, + unsigned long flags) { struct user_event_enabler enabler; int result; @@ -2384,7 +2423,7 @@ memset(&enabler, 0, sizeof(enabler)); enabler.addr = uaddr; - enabler.values = bit; + enabler.values = bit | flags; retry: /* Prevents state changes from racing with new enablers */ mutex_lock(&event_mutex); @@ -2414,6 +2453,7 @@ struct user_event_mm *mm = current->user_event_mm; struct user_event_enabler *enabler, *next; struct user_unreg reg; + unsigned long flags; long ret; ret = user_unreg_get(ureg, ®); @@ -2424,6 +2464,7 @@ if (!mm) return -ENOENT; + flags = 0; ret = -ENOENT; /* @@ -2440,6 +2481,9 @@ ENABLE_BIT(enabler) == reg.disable_bit) { set_bit(ENABLE_VAL_FREEING_BIT, ENABLE_BITOPS(enabler)); + /* We must keep compat flags for the clear */ + flags |= enabler->values & ENABLE_VAL_COMPAT_MASK; + if (!test_bit(ENABLE_VAL_FAULTING_BIT, ENABLE_BITOPS(enabler))) user_event_enabler_destroy(enabler, true); @@ -2453,7 +2497,7 @@ /* Ensure bit is now cleared for user, regardless of event status */ if (!ret) ret = user_event_mm_clear_bit(mm, reg.disable_addr, - reg.disable_bit); + reg.disable_bit, flags); return ret; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/lib/idr.c +++ linux-oracle-6.5-6.5.0/lib/idr.c @@ -100,7 +100,7 @@ * @end: The maximum ID (exclusive). * @gfp: Memory allocation flags. * - * Allocates an unused ID in the range specified by @nextid and @end. If + * Allocates an unused ID in the range specified by @start and @end. If * @end is <= 0, it is treated as one larger than %INT_MAX. This allows * callers to use @start + N as @end as long as N is within integer range. * The search for an unused ID will start at the last ID allocated and will only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/lib/kobject.c +++ linux-oracle-6.5-6.5.0/lib/kobject.c @@ -854,6 +854,11 @@ if (!k) return -EINVAL; + if (!k->kobj.ktype) { + pr_err("must have a ktype to be initialized properly!\n"); + return -EINVAL; + } + kset_init(k); err = kobject_add_internal(&k->kobj); if (err) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/lib/kunit/test.c +++ linux-oracle-6.5-6.5.0/lib/kunit/test.c @@ -744,12 +744,13 @@ switch (val) { case MODULE_STATE_LIVE: - kunit_module_init(mod); break; case MODULE_STATE_GOING: kunit_module_exit(mod); break; case MODULE_STATE_COMING: + kunit_module_init(mod); + break; case MODULE_STATE_UNFORMED: break; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/lib/maple_tree.c +++ linux-oracle-6.5-6.5.0/lib/maple_tree.c @@ -255,6 +255,22 @@ return xa_is_err(mas->node); } +static __always_inline bool mas_is_overflow(struct ma_state *mas) +{ + if (unlikely(mas->node == MAS_OVERFLOW)) + return true; + + return false; +} + +static __always_inline bool mas_is_underflow(struct ma_state *mas) +{ + if (unlikely(mas->node == MAS_UNDERFLOW)) + return true; + + return false; +} + static inline bool mas_searchable(struct ma_state *mas) { if (mas_is_none(mas)) @@ -4560,10 +4576,13 @@ * * @mas: The maple state * @max: The minimum starting range + * @empty: Can be empty + * @set_underflow: Set the @mas->node to underflow state on limit. * * Return: The entry in the previous slot which is possibly NULL */ -static void *mas_prev_slot(struct ma_state *mas, unsigned long min, bool empty) +static void *mas_prev_slot(struct ma_state *mas, unsigned long min, bool empty, + bool set_underflow) { void *entry; void __rcu **slots; @@ -4580,7 +4599,6 @@ if (unlikely(mas_rewalk_if_dead(mas, node, save_point))) goto retry; -again: if (mas->min <= min) { pivot = mas_safe_min(mas, pivots, mas->offset); @@ -4588,9 +4606,10 @@ goto retry; if (pivot <= min) - return NULL; + goto underflow; } +again: if (likely(mas->offset)) { mas->offset--; mas->last = mas->index - 1; @@ -4602,7 +4621,7 @@ } if (mas_is_none(mas)) - return NULL; + goto underflow; mas->last = mas->max; node = mas_mn(mas); @@ -4619,10 +4638,19 @@ if (likely(entry)) return entry; - if (!empty) + if (!empty) { + if (mas->index <= min) + goto underflow; + goto again; + } return entry; + +underflow: + if (set_underflow) + mas->node = MAS_UNDERFLOW; + return NULL; } /* @@ -4712,10 +4740,13 @@ * @mas: The maple state * @max: The maximum starting range * @empty: Can be empty + * @set_overflow: Should @mas->node be set to overflow when the limit is + * reached. * * Return: The entry in the next slot which is possibly NULL */ -static void *mas_next_slot(struct ma_state *mas, unsigned long max, bool empty) +static void *mas_next_slot(struct ma_state *mas, unsigned long max, bool empty, + bool set_overflow) { void __rcu **slots; unsigned long *pivots; @@ -4734,22 +4765,22 @@ if (unlikely(mas_rewalk_if_dead(mas, node, save_point))) goto retry; -again: if (mas->max >= max) { if (likely(mas->offset < data_end)) pivot = pivots[mas->offset]; else - return NULL; /* must be mas->max */ + goto overflow; if (unlikely(mas_rewalk_if_dead(mas, node, save_point))) goto retry; if (pivot >= max) - return NULL; + goto overflow; } if (likely(mas->offset < data_end)) { mas->index = pivots[mas->offset] + 1; +again: mas->offset++; if (likely(mas->offset < data_end)) mas->last = pivots[mas->offset]; @@ -4761,8 +4792,11 @@ goto retry; } - if (mas_is_none(mas)) + if (WARN_ON_ONCE(mas_is_none(mas))) { + mas->node = MAS_OVERFLOW; return NULL; + goto overflow; + } mas->offset = 0; mas->index = mas->min; @@ -4781,12 +4815,20 @@ return entry; if (!empty) { - if (!mas->offset) - data_end = 2; + if (mas->last >= max) + goto overflow; + + mas->index = mas->last + 1; + /* Node cannot end on NULL, so it's safe to short-cut here */ goto again; } return entry; + +overflow: + if (set_overflow) + mas->node = MAS_OVERFLOW; + return NULL; } /* @@ -4796,17 +4838,20 @@ * * Set the @mas->node to the next entry and the range_start to * the beginning value for the entry. Does not check beyond @limit. - * Sets @mas->index and @mas->last to the limit if it is hit. + * Sets @mas->index and @mas->last to the range, Does not update @mas->index and + * @mas->last on overflow. * Restarts on dead nodes. * * Return: the next entry or %NULL. */ static inline void *mas_next_entry(struct ma_state *mas, unsigned long limit) { - if (mas->last >= limit) + if (mas->last >= limit) { + mas->node = MAS_OVERFLOW; return NULL; + } - return mas_next_slot(mas, limit, false); + return mas_next_slot(mas, limit, false, true); } /* @@ -4982,7 +5027,7 @@ { void *entry; - if (mas_is_none(mas) || mas_is_paused(mas) || mas_is_ptr(mas)) + if (!mas_is_active(mas) || !mas_is_start(mas)) mas->node = MAS_START; retry: entry = mas_state_walk(mas); @@ -5439,19 +5484,42 @@ static void mas_wr_store_setup(struct ma_wr_state *wr_mas) { - if (unlikely(mas_is_paused(wr_mas->mas))) - mas_reset(wr_mas->mas); + if (!mas_is_active(wr_mas->mas)) { + if (mas_is_start(wr_mas->mas)) + return; - if (!mas_is_start(wr_mas->mas)) { - if (mas_is_none(wr_mas->mas)) { - mas_reset(wr_mas->mas); - } else { - wr_mas->r_max = wr_mas->mas->max; - wr_mas->type = mte_node_type(wr_mas->mas->node); - if (mas_is_span_wr(wr_mas)) - mas_reset(wr_mas->mas); - } + if (unlikely(mas_is_paused(wr_mas->mas))) + goto reset; + + if (unlikely(mas_is_none(wr_mas->mas))) + goto reset; + + if (unlikely(mas_is_overflow(wr_mas->mas))) + goto reset; + + if (unlikely(mas_is_underflow(wr_mas->mas))) + goto reset; } + + /* + * A less strict version of mas_is_span_wr() where we allow spanning + * writes within this node. This is to stop partial walks in + * mas_prealloc() from being reset. + */ + if (wr_mas->mas->last > wr_mas->mas->max) + goto reset; + + if (wr_mas->entry) + return; + + if (mte_is_leaf(wr_mas->mas->node) && + wr_mas->mas->last == wr_mas->mas->max) + goto reset; + + return; + +reset: + mas_reset(wr_mas->mas); } /* Interface */ @@ -5682,8 +5750,25 @@ { bool was_none = mas_is_none(mas); - if (mas_is_none(mas) || mas_is_paused(mas)) + if (unlikely(mas->last >= max)) { + mas->node = MAS_OVERFLOW; + return true; + } + + if (mas_is_active(mas)) + return false; + + if (mas_is_none(mas) || mas_is_paused(mas)) { + mas->node = MAS_START; + } else if (mas_is_overflow(mas)) { + /* Overflowed before, but the max changed */ mas->node = MAS_START; + } else if (mas_is_underflow(mas)) { + mas->node = MAS_START; + *entry = mas_walk(mas); + if (*entry) + return true; + } if (mas_is_start(mas)) *entry = mas_walk(mas); /* Retries on dead nodes handled by mas_walk */ @@ -5702,6 +5787,7 @@ if (mas_is_none(mas)) return true; + return false; } @@ -5724,7 +5810,7 @@ return entry; /* Retries on dead nodes handled by mas_next_slot */ - return mas_next_slot(mas, max, false); + return mas_next_slot(mas, max, false, true); } EXPORT_SYMBOL_GPL(mas_next); @@ -5747,7 +5833,7 @@ return entry; /* Retries on dead nodes handled by mas_next_slot */ - return mas_next_slot(mas, max, true); + return mas_next_slot(mas, max, true, true); } EXPORT_SYMBOL_GPL(mas_next_range); @@ -5774,18 +5860,31 @@ static inline bool mas_prev_setup(struct ma_state *mas, unsigned long min, void **entry) { - if (mas->index <= min) - goto none; + if (unlikely(mas->index <= min)) { + mas->node = MAS_UNDERFLOW; + return true; + } + + if (mas_is_active(mas)) + return false; - if (mas_is_none(mas) || mas_is_paused(mas)) + if (mas_is_overflow(mas)) { mas->node = MAS_START; + *entry = mas_walk(mas); + if (*entry) + return true; + } - if (mas_is_start(mas)) { - mas_walk(mas); - if (!mas->index) - goto none; + if (mas_is_none(mas) || mas_is_paused(mas)) { + mas->node = MAS_START; + } else if (mas_is_underflow(mas)) { + /* underflowed before but the min changed */ + mas->node = MAS_START; } + if (mas_is_start(mas)) + mas_walk(mas); + if (unlikely(mas_is_ptr(mas))) { if (!mas->index) goto none; @@ -5830,7 +5929,7 @@ if (mas_prev_setup(mas, min, &entry)) return entry; - return mas_prev_slot(mas, min, false); + return mas_prev_slot(mas, min, false, true); } EXPORT_SYMBOL_GPL(mas_prev); @@ -5853,7 +5952,7 @@ if (mas_prev_setup(mas, min, &entry)) return entry; - return mas_prev_slot(mas, min, true); + return mas_prev_slot(mas, min, true, true); } EXPORT_SYMBOL_GPL(mas_prev_range); @@ -5907,24 +6006,35 @@ static inline bool mas_find_setup(struct ma_state *mas, unsigned long max, void **entry) { - *entry = NULL; + if (mas_is_active(mas)) { + if (mas->last < max) + return false; + + return true; + } - if (unlikely(mas_is_none(mas))) { + if (mas_is_paused(mas)) { if (unlikely(mas->last >= max)) return true; - mas->index = mas->last; + mas->index = ++mas->last; mas->node = MAS_START; - } else if (unlikely(mas_is_paused(mas))) { + } else if (mas_is_none(mas)) { if (unlikely(mas->last >= max)) return true; + mas->index = mas->last; mas->node = MAS_START; - mas->index = ++mas->last; - } else if (unlikely(mas_is_ptr(mas))) - goto ptr_out_of_range; + } else if (mas_is_overflow(mas) || mas_is_underflow(mas)) { + if (mas->index > max) { + mas->node = MAS_OVERFLOW; + return true; + } - if (unlikely(mas_is_start(mas))) { + mas->node = MAS_START; + } + + if (mas_is_start(mas)) { /* First run or continue */ if (mas->index > max) return true; @@ -5974,7 +6084,7 @@ return entry; /* Retries on dead nodes handled by mas_next_slot */ - return mas_next_slot(mas, max, false); + return mas_next_slot(mas, max, false, false); } EXPORT_SYMBOL_GPL(mas_find); @@ -5992,13 +6102,13 @@ */ void *mas_find_range(struct ma_state *mas, unsigned long max) { - void *entry; + void *entry = NULL; if (mas_find_setup(mas, max, &entry)) return entry; /* Retries on dead nodes handled by mas_next_slot */ - return mas_next_slot(mas, max, true); + return mas_next_slot(mas, max, true, false); } EXPORT_SYMBOL_GPL(mas_find_range); @@ -6013,26 +6123,36 @@ static inline bool mas_find_rev_setup(struct ma_state *mas, unsigned long min, void **entry) { - *entry = NULL; - - if (unlikely(mas_is_none(mas))) { - if (mas->index <= min) - goto none; + if (mas_is_active(mas)) { + if (mas->index > min) + return false; - mas->last = mas->index; - mas->node = MAS_START; + return true; } - if (unlikely(mas_is_paused(mas))) { + if (mas_is_paused(mas)) { if (unlikely(mas->index <= min)) { mas->node = MAS_NONE; return true; } mas->node = MAS_START; mas->last = --mas->index; + } else if (mas_is_none(mas)) { + if (mas->index <= min) + goto none; + + mas->last = mas->index; + mas->node = MAS_START; + } else if (mas_is_underflow(mas) || mas_is_overflow(mas)) { + if (mas->last <= min) { + mas->node = MAS_UNDERFLOW; + return true; + } + + mas->node = MAS_START; } - if (unlikely(mas_is_start(mas))) { + if (mas_is_start(mas)) { /* First run or continue */ if (mas->index < min) return true; @@ -6083,13 +6203,13 @@ */ void *mas_find_rev(struct ma_state *mas, unsigned long min) { - void *entry; + void *entry = NULL; if (mas_find_rev_setup(mas, min, &entry)) return entry; /* Retries on dead nodes handled by mas_prev_slot */ - return mas_prev_slot(mas, min, false); + return mas_prev_slot(mas, min, false, false); } EXPORT_SYMBOL_GPL(mas_find_rev); @@ -6109,13 +6229,13 @@ */ void *mas_find_range_rev(struct ma_state *mas, unsigned long min) { - void *entry; + void *entry = NULL; if (mas_find_rev_setup(mas, min, &entry)) return entry; /* Retries on dead nodes handled by mas_prev_slot */ - return mas_prev_slot(mas, min, true); + return mas_prev_slot(mas, min, true, false); } EXPORT_SYMBOL_GPL(mas_find_range_rev); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/lib/mpi/mpi-cmp.c +++ linux-oracle-6.5-6.5.0/lib/mpi/mpi-cmp.c @@ -25,8 +25,12 @@ mpi_limb_t limb = v; mpi_normalize(u); - if (!u->nlimbs && !limb) - return 0; + if (u->nlimbs == 0) { + if (v == 0) + return 0; + else + return -1; + } if (u->sign) return -1; if (u->nlimbs > 1) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/lib/test_maple_tree.c +++ linux-oracle-6.5-6.5.0/lib/test_maple_tree.c @@ -2039,7 +2039,7 @@ MT_BUG_ON(mt, val != NULL); MT_BUG_ON(mt, mas.index != 0); MT_BUG_ON(mt, mas.last != 5); - MT_BUG_ON(mt, mas.node != MAS_NONE); + MT_BUG_ON(mt, mas.node != MAS_UNDERFLOW); mas.index = 0; mas.last = 5; @@ -2790,6 +2790,7 @@ * exists MAS_NONE active range * exists active active range * DNE active active set to last range + * ERANGE active MAS_OVERFLOW last range * * Function ENTRY Start Result index & last * mas_prev() @@ -2818,6 +2819,7 @@ * any MAS_ROOT MAS_NONE 0 * exists active active range * DNE active active last range + * ERANGE active MAS_UNDERFLOW last range * * Function ENTRY Start Result index & last * mas_find() @@ -2828,7 +2830,7 @@ * DNE MAS_START MAS_NONE 0 * DNE MAS_PAUSE MAS_NONE 0 * DNE MAS_ROOT MAS_NONE 0 - * DNE MAS_NONE MAS_NONE 0 + * DNE MAS_NONE MAS_NONE 1 * if index == 0 * exists MAS_START MAS_ROOT 0 * exists MAS_PAUSE MAS_ROOT 0 @@ -2840,7 +2842,7 @@ * DNE MAS_START active set to max * exists MAS_PAUSE active range * DNE MAS_PAUSE active set to max - * exists MAS_NONE active range + * exists MAS_NONE active range (start at last) * exists active active range * DNE active active last range (max < last) * @@ -2865,7 +2867,7 @@ * DNE MAS_START active set to min * exists MAS_PAUSE active range * DNE MAS_PAUSE active set to min - * exists MAS_NONE active range + * exists MAS_NONE active range (start at index) * exists active active range * DNE active active last range (min > index) * @@ -2912,10 +2914,10 @@ mtree_store_range(mt, 0, 0, ptr, GFP_KERNEL); mas_lock(&mas); - /* prev: Start -> none */ + /* prev: Start -> underflow*/ entry = mas_prev(&mas, 0); MT_BUG_ON(mt, entry != NULL); - MT_BUG_ON(mt, mas.node != MAS_NONE); + MT_BUG_ON(mt, mas.node != MAS_UNDERFLOW); /* prev: Start -> root */ mas_set(&mas, 10); @@ -2942,7 +2944,7 @@ MT_BUG_ON(mt, entry != NULL); MT_BUG_ON(mt, mas.node != MAS_NONE); - /* next: start -> none */ + /* next: start -> none*/ mas_set(&mas, 10); entry = mas_next(&mas, ULONG_MAX); MT_BUG_ON(mt, mas.index != 1); @@ -3141,25 +3143,46 @@ MT_BUG_ON(mt, mas.last != 0x2500); MT_BUG_ON(mt, !mas_active(mas)); - /* next:active -> active out of range*/ + /* next:active -> active beyond data */ entry = mas_next(&mas, 0x2999); MT_BUG_ON(mt, entry != NULL); MT_BUG_ON(mt, mas.index != 0x2501); MT_BUG_ON(mt, mas.last != 0x2fff); MT_BUG_ON(mt, !mas_active(mas)); - /* Continue after out of range*/ + /* Continue after last range ends after max */ entry = mas_next(&mas, ULONG_MAX); MT_BUG_ON(mt, entry != ptr3); MT_BUG_ON(mt, mas.index != 0x3000); MT_BUG_ON(mt, mas.last != 0x3500); MT_BUG_ON(mt, !mas_active(mas)); - /* next:active -> active out of range*/ + /* next:active -> active continued */ + entry = mas_next(&mas, ULONG_MAX); + MT_BUG_ON(mt, entry != NULL); + MT_BUG_ON(mt, mas.index != 0x3501); + MT_BUG_ON(mt, mas.last != ULONG_MAX); + MT_BUG_ON(mt, !mas_active(mas)); + + /* next:active -> overflow */ entry = mas_next(&mas, ULONG_MAX); MT_BUG_ON(mt, entry != NULL); MT_BUG_ON(mt, mas.index != 0x3501); MT_BUG_ON(mt, mas.last != ULONG_MAX); + MT_BUG_ON(mt, mas.node != MAS_OVERFLOW); + + /* next:overflow -> overflow */ + entry = mas_next(&mas, ULONG_MAX); + MT_BUG_ON(mt, entry != NULL); + MT_BUG_ON(mt, mas.index != 0x3501); + MT_BUG_ON(mt, mas.last != ULONG_MAX); + MT_BUG_ON(mt, mas.node != MAS_OVERFLOW); + + /* prev:overflow -> active */ + entry = mas_prev(&mas, 0); + MT_BUG_ON(mt, entry != ptr3); + MT_BUG_ON(mt, mas.index != 0x3000); + MT_BUG_ON(mt, mas.last != 0x3500); MT_BUG_ON(mt, !mas_active(mas)); /* next: none -> active, skip value at location */ @@ -3180,11 +3203,46 @@ MT_BUG_ON(mt, mas.last != 0x1500); MT_BUG_ON(mt, !mas_active(mas)); - /* prev:active -> active out of range*/ + /* prev:active -> active spanning end range */ + entry = mas_prev(&mas, 0x0100); + MT_BUG_ON(mt, entry != NULL); + MT_BUG_ON(mt, mas.index != 0); + MT_BUG_ON(mt, mas.last != 0x0FFF); + MT_BUG_ON(mt, !mas_active(mas)); + + /* prev:active -> underflow */ + entry = mas_prev(&mas, 0); + MT_BUG_ON(mt, entry != NULL); + MT_BUG_ON(mt, mas.index != 0); + MT_BUG_ON(mt, mas.last != 0x0FFF); + MT_BUG_ON(mt, mas.node != MAS_UNDERFLOW); + + /* prev:underflow -> underflow */ entry = mas_prev(&mas, 0); MT_BUG_ON(mt, entry != NULL); MT_BUG_ON(mt, mas.index != 0); MT_BUG_ON(mt, mas.last != 0x0FFF); + MT_BUG_ON(mt, mas.node != MAS_UNDERFLOW); + + /* next:underflow -> active */ + entry = mas_next(&mas, ULONG_MAX); + MT_BUG_ON(mt, entry != ptr); + MT_BUG_ON(mt, mas.index != 0x1000); + MT_BUG_ON(mt, mas.last != 0x1500); + MT_BUG_ON(mt, !mas_active(mas)); + + /* prev:first value -> underflow */ + entry = mas_prev(&mas, 0x1000); + MT_BUG_ON(mt, entry != NULL); + MT_BUG_ON(mt, mas.index != 0x1000); + MT_BUG_ON(mt, mas.last != 0x1500); + MT_BUG_ON(mt, mas.node != MAS_UNDERFLOW); + + /* find:underflow -> first value */ + entry = mas_find(&mas, ULONG_MAX); + MT_BUG_ON(mt, entry != ptr); + MT_BUG_ON(mt, mas.index != 0x1000); + MT_BUG_ON(mt, mas.last != 0x1500); MT_BUG_ON(mt, !mas_active(mas)); /* prev: pause ->active */ @@ -3198,14 +3256,14 @@ MT_BUG_ON(mt, mas.last != 0x2500); MT_BUG_ON(mt, !mas_active(mas)); - /* prev:active -> active out of range*/ + /* prev:active -> active spanning min */ entry = mas_prev(&mas, 0x1600); MT_BUG_ON(mt, entry != NULL); MT_BUG_ON(mt, mas.index != 0x1501); MT_BUG_ON(mt, mas.last != 0x1FFF); MT_BUG_ON(mt, !mas_active(mas)); - /* prev: active ->active, continue*/ + /* prev: active ->active, continue */ entry = mas_prev(&mas, 0); MT_BUG_ON(mt, entry != ptr); MT_BUG_ON(mt, mas.index != 0x1000); @@ -3252,7 +3310,7 @@ MT_BUG_ON(mt, mas.last != 0x2FFF); MT_BUG_ON(mt, !mas_active(mas)); - /* find: none ->active */ + /* find: overflow ->active */ entry = mas_find(&mas, 0x5000); MT_BUG_ON(mt, entry != ptr3); MT_BUG_ON(mt, mas.index != 0x3000); @@ -3637,7 +3695,6 @@ check_empty_area_fill(&tree); mtree_destroy(&tree); - mt_init_flags(&tree, MT_FLAGS_ALLOC_RANGE); check_state_handling(&tree); mtree_destroy(&tree); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/lib/test_meminit.c +++ linux-oracle-6.5-6.5.0/lib/test_meminit.c @@ -93,7 +93,7 @@ int failures = 0, num_tests = 0; int i; - for (i = 0; i < 10; i++) + for (i = 0; i <= MAX_ORDER; i++) num_tests += do_alloc_pages_order(i, &failures); REPORT_FAILURES_IN_FN(); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/lib/test_scanf.c +++ linux-oracle-6.5-6.5.0/lib/test_scanf.c @@ -606,7 +606,7 @@ #define test_number_prefix(T, str, scan_fmt, expect0, expect1, n_args, fn) \ do { \ const T expect[2] = { expect0, expect1 }; \ - T result[2] = {~expect[0], ~expect[1]}; \ + T result[2] = { (T)~expect[0], (T)~expect[1] }; \ \ _test(fn, &expect, str, scan_fmt, n_args, &result[0], &result[1]); \ } while (0) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/mm/damon/vaddr-test.h +++ linux-oracle-6.5-6.5.0/mm/damon/vaddr-test.h @@ -148,6 +148,8 @@ KUNIT_EXPECT_EQ(test, r->ar.start, expected[i * 2]); KUNIT_EXPECT_EQ(test, r->ar.end, expected[i * 2 + 1]); } + + damon_destroy_target(t); } /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/mm/hugetlb_vmemmap.c +++ linux-oracle-6.5-6.5.0/mm/hugetlb_vmemmap.c @@ -36,14 +36,22 @@ struct list_head *vmemmap_pages; }; -static int __split_vmemmap_huge_pmd(pmd_t *pmd, unsigned long start) +static int split_vmemmap_huge_pmd(pmd_t *pmd, unsigned long start) { pmd_t __pmd; int i; unsigned long addr = start; - struct page *page = pmd_page(*pmd); - pte_t *pgtable = pte_alloc_one_kernel(&init_mm); + struct page *head; + pte_t *pgtable; + + spin_lock(&init_mm.page_table_lock); + head = pmd_leaf(*pmd) ? pmd_page(*pmd) : NULL; + spin_unlock(&init_mm.page_table_lock); + if (!head) + return 0; + + pgtable = pte_alloc_one_kernel(&init_mm); if (!pgtable) return -ENOMEM; @@ -53,7 +61,7 @@ pte_t entry, *pte; pgprot_t pgprot = PAGE_KERNEL; - entry = mk_pte(page + i, pgprot); + entry = mk_pte(head + i, pgprot); pte = pte_offset_kernel(&__pmd, addr); set_pte_at(&init_mm, addr, pte, entry); } @@ -65,8 +73,8 @@ * be treated as indepdenent small pages (as they can be freed * individually). */ - if (!PageReserved(page)) - split_page(page, get_order(PMD_SIZE)); + if (!PageReserved(head)) + split_page(head, get_order(PMD_SIZE)); /* Make pte visible before pmd. See comment in pmd_install(). */ smp_wmb(); @@ -80,20 +88,6 @@ return 0; } -static int split_vmemmap_huge_pmd(pmd_t *pmd, unsigned long start) -{ - int leaf; - - spin_lock(&init_mm.page_table_lock); - leaf = pmd_leaf(*pmd); - spin_unlock(&init_mm.page_table_lock); - - if (!leaf) - return 0; - - return __split_vmemmap_huge_pmd(pmd, start); -} - static void vmemmap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end, struct vmemmap_remap_walk *walk) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/mm/memcontrol.c +++ linux-oracle-6.5-6.5.0/mm/memcontrol.c @@ -2559,7 +2559,7 @@ * Scheduled by try_charge() to be executed from the userland return path * and reclaims memory over the high limit. */ -void mem_cgroup_handle_over_high(void) +void mem_cgroup_handle_over_high(gfp_t gfp_mask) { unsigned long penalty_jiffies; unsigned long pflags; @@ -2587,7 +2587,7 @@ */ nr_reclaimed = reclaim_high(memcg, in_retry ? SWAP_CLUSTER_MAX : nr_pages, - GFP_KERNEL); + gfp_mask); /* * memory.high is breached and reclaim is unable to keep up. Throttle @@ -2823,7 +2823,7 @@ if (current->memcg_nr_pages_over_high > MEMCG_CHARGE_BATCH && !(current->flags & PF_MEMALLOC) && gfpflags_allow_blocking(gfp_mask)) { - mem_cgroup_handle_over_high(); + mem_cgroup_handle_over_high(gfp_mask); } return 0; } @@ -3872,8 +3872,11 @@ ret = mem_cgroup_resize_max(memcg, nr_pages, true); break; case _KMEM: - /* kmem.limit_in_bytes is deprecated. */ - ret = -EOPNOTSUPP; + pr_warn_once("kmem.limit_in_bytes is deprecated and will be removed. " + "Writing any value to this file has no effect. " + "Please report your usecase to linux-mm@kvack.org if you " + "depend on this functionality.\n"); + ret = 0; break; case _TCP: ret = memcg_update_tcp_max(memcg, nr_pages); @@ -5339,7 +5342,6 @@ INIT_LIST_HEAD(&memcg->deferred_split_queue.split_queue); memcg->deferred_split_queue.split_queue_len = 0; #endif - idr_replace(&mem_cgroup_idr, memcg, memcg->id.id); lru_gen_init_memcg(memcg); return memcg; fail: @@ -5411,14 +5413,27 @@ if (alloc_shrinker_info(memcg)) goto offline_kmem; - /* Online state pins memcg ID, memcg ID pins CSS */ - refcount_set(&memcg->id.ref, 1); - css_get(css); - if (unlikely(mem_cgroup_is_root(memcg))) queue_delayed_work(system_unbound_wq, &stats_flush_dwork, FLUSH_TIME); lru_gen_online_memcg(memcg); + + /* Online state pins memcg ID, memcg ID pins CSS */ + refcount_set(&memcg->id.ref, 1); + css_get(css); + + /* + * Ensure mem_cgroup_from_id() works once we're fully online. + * + * We could do this earlier and require callers to filter with + * css_tryget_online(). But right now there are no users that + * need earlier access, and the workingset code relies on the + * cgroup tree linkage (mem_cgroup_get_nr_swap_pages()). So + * publish it here at the end of onlining. This matches the + * regular ID destruction during offlining. + */ + idr_replace(&mem_cgroup_idr, memcg, memcg->id.id); + return 0; offline_kmem: memcg_offline_kmem(memcg); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/mm/mempolicy.c +++ linux-oracle-6.5-6.5.0/mm/mempolicy.c @@ -426,6 +426,7 @@ unsigned long start; unsigned long end; struct vm_area_struct *first; + bool has_unmovable; }; /* @@ -446,9 +447,8 @@ /* * queue_folios_pmd() has three possible return values: * 0 - folios are placed on the right node or queued successfully, or - * special page is met, i.e. huge zero page. - * 1 - there is unmovable folio, and MPOL_MF_MOVE* & MPOL_MF_STRICT were - * specified. + * special page is met, i.e. zero page, or unmovable page is found + * but continue walking (indicated by queue_pages.has_unmovable). * -EIO - is migration entry or only MPOL_MF_STRICT was specified and an * existing folio was already on a node that does not follow the * policy. @@ -479,7 +479,7 @@ if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) { if (!vma_migratable(walk->vma) || migrate_folio_add(folio, qp->pagelist, flags)) { - ret = 1; + qp->has_unmovable = true; goto unlock; } } else @@ -495,9 +495,8 @@ * * queue_folios_pte_range() has three possible return values: * 0 - folios are placed on the right node or queued successfully, or - * special page is met, i.e. zero page. - * 1 - there is unmovable folio, and MPOL_MF_MOVE* & MPOL_MF_STRICT were - * specified. + * special page is met, i.e. zero page, or unmovable page is found + * but continue walking (indicated by queue_pages.has_unmovable). * -EIO - only MPOL_MF_STRICT was specified and an existing folio was already * on a node that does not follow the policy. */ @@ -508,7 +507,6 @@ struct folio *folio; struct queue_pages *qp = walk->private; unsigned long flags = qp->flags; - bool has_unmovable = false; pte_t *pte, *mapped_pte; pte_t ptent; spinlock_t *ptl; @@ -538,11 +536,12 @@ if (!queue_folio_required(folio, qp)) continue; if (flags & (MPOL_MF_MOVE | MPOL_MF_MOVE_ALL)) { - /* MPOL_MF_STRICT must be specified if we get here */ - if (!vma_migratable(vma)) { - has_unmovable = true; - break; - } + /* + * MPOL_MF_STRICT must be specified if we get here. + * Continue walking vmas due to MPOL_MF_MOVE* flags. + */ + if (!vma_migratable(vma)) + qp->has_unmovable = true; /* * Do not abort immediately since there may be @@ -550,16 +549,13 @@ * need migrate other LRU pages. */ if (migrate_folio_add(folio, qp->pagelist, flags)) - has_unmovable = true; + qp->has_unmovable = true; } else break; } pte_unmap_unlock(mapped_pte, ptl); cond_resched(); - if (has_unmovable) - return 1; - return addr != end ? -EIO : 0; } @@ -599,7 +595,7 @@ * Detecting misplaced folio but allow migrating folios which * have been queued. */ - ret = 1; + qp->has_unmovable = true; goto unlock; } @@ -620,7 +616,7 @@ * Failed to isolate folio but allow migrating pages * which have been queued. */ - ret = 1; + qp->has_unmovable = true; } unlock: spin_unlock(ptl); @@ -756,12 +752,15 @@ .start = start, .end = end, .first = NULL, + .has_unmovable = false, }; const struct mm_walk_ops *ops = lock_vma ? &queue_pages_lock_vma_walk_ops : &queue_pages_walk_ops; err = walk_page_range(mm, start, end, ops, &qp); + if (qp.has_unmovable) + err = 1; if (!qp.first) /* whole range in hole */ err = -EFAULT; @@ -1358,7 +1357,7 @@ putback_movable_pages(&pagelist); } - if ((ret > 0) || (nr_failed && (flags & MPOL_MF_STRICT))) + if (((ret > 0) || nr_failed) && (flags & MPOL_MF_STRICT)) err = -EIO; } else { up_out: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/mm/mremap.c +++ linux-oracle-6.5-6.5.0/mm/mremap.c @@ -715,7 +715,7 @@ } vma_iter_init(&vmi, mm, old_addr); - if (!do_vmi_munmap(&vmi, mm, old_addr, old_len, uf_unmap, false)) { + if (do_vmi_munmap(&vmi, mm, old_addr, old_len, uf_unmap, false) < 0) { /* OOM: unable to split vma, just get accounts right */ if (vm_flags & VM_ACCOUNT && !(flags & MREMAP_DONTUNMAP)) vm_acct_memory(old_len >> PAGE_SHIFT); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/mm/page_alloc.c +++ linux-oracle-6.5-6.5.0/mm/page_alloc.c @@ -2438,7 +2438,7 @@ struct per_cpu_pages *pcp; struct zone *zone; unsigned long pfn = page_to_pfn(page); - int migratetype; + int migratetype, pcpmigratetype; if (!free_unref_page_prepare(page, pfn, order)) return; @@ -2446,24 +2446,24 @@ /* * We only track unmovable, reclaimable and movable on pcp lists. * Place ISOLATE pages on the isolated list because they are being - * offlined but treat HIGHATOMIC as movable pages so we can get those - * areas back if necessary. Otherwise, we may have to free + * offlined but treat HIGHATOMIC and CMA as movable pages so we can + * get those areas back if necessary. Otherwise, we may have to free * excessively into the page allocator */ - migratetype = get_pcppage_migratetype(page); + migratetype = pcpmigratetype = get_pcppage_migratetype(page); if (unlikely(migratetype >= MIGRATE_PCPTYPES)) { if (unlikely(is_migrate_isolate(migratetype))) { free_one_page(page_zone(page), page, pfn, order, migratetype, FPI_NONE); return; } - migratetype = MIGRATE_MOVABLE; + pcpmigratetype = MIGRATE_MOVABLE; } zone = page_zone(page); pcp_trylock_prepare(UP_flags); pcp = pcp_spin_trylock(zone->per_cpu_pageset); if (pcp) { - free_unref_page_commit(zone, pcp, page, migratetype, order); + free_unref_page_commit(zone, pcp, page, pcpmigratetype, order); pcp_spin_unlock(pcp); } else { free_one_page(zone, page, pfn, order, migratetype, FPI_NONE); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/mm/slab_common.c +++ linux-oracle-6.5-6.5.0/mm/slab_common.c @@ -479,7 +479,7 @@ void kmem_cache_destroy(struct kmem_cache *s) { - int refcnt; + int err = -EBUSY; bool rcu_set; if (unlikely(!s) || !kasan_check_byte(s)) @@ -490,17 +490,17 @@ rcu_set = s->flags & SLAB_TYPESAFE_BY_RCU; - refcnt = --s->refcount; - if (refcnt) + s->refcount--; + if (s->refcount) goto out_unlock; - WARN(shutdown_cache(s), - "%s %s: Slab cache still has objects when called from %pS", + err = shutdown_cache(s); + WARN(err, "%s %s: Slab cache still has objects when called from %pS", __func__, s->name, (void *)_RET_IP_); out_unlock: mutex_unlock(&slab_mutex); cpus_read_unlock(); - if (!refcnt && !rcu_set) + if (!err && !rcu_set) kmem_cache_release(s); } EXPORT_SYMBOL(kmem_cache_destroy); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/bluetooth/hci_request.h +++ linux-oracle-6.5-6.5.0/net/bluetooth/hci_request.h @@ -71,7 +71,5 @@ void hci_req_add_le_scan_disable(struct hci_request *req, bool rpa_le_conn); void hci_req_add_le_passive_scan(struct hci_request *req); -void hci_req_prepare_suspend(struct hci_dev *hdev, enum suspended_state next); - void hci_request_setup(struct hci_dev *hdev); void hci_request_cancel_all(struct hci_dev *hdev); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/bridge/br_forward.c +++ linux-oracle-6.5-6.5.0/net/bridge/br_forward.c @@ -124,7 +124,7 @@ skb = skb_clone(skb, GFP_ATOMIC); if (!skb) { - dev->stats.tx_dropped++; + DEV_STATS_INC(dev, tx_dropped); return -ENOMEM; } @@ -267,7 +267,7 @@ skb = skb_copy(skb, GFP_ATOMIC); if (!skb) { - dev->stats.tx_dropped++; + DEV_STATS_INC(dev, tx_dropped); return; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/bridge/br_input.c +++ linux-oracle-6.5-6.5.0/net/bridge/br_input.c @@ -181,12 +181,12 @@ if ((mdst && mdst->host_joined) || br_multicast_is_router(brmctx, skb)) { local_rcv = true; - br->dev->stats.multicast++; + DEV_STATS_INC(br->dev, multicast); } mcast_hit = true; } else { local_rcv = true; - br->dev->stats.multicast++; + DEV_STATS_INC(br->dev, multicast); } break; case BR_PKT_UNICAST: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/bridge/br_netfilter_hooks.c +++ linux-oracle-6.5-6.5.0/net/bridge/br_netfilter_hooks.c @@ -294,7 +294,7 @@ /* tell br_dev_xmit to continue with forwarding */ nf_bridge->bridged_dnat = 1; /* FIXME Need to refragment */ - ret = neigh->output(neigh, skb); + ret = READ_ONCE(neigh->output)(neigh, skb); } neigh_release(neigh); return ret; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/bridge/netfilter/ebtables.c +++ linux-oracle-6.5-6.5.0/net/bridge/netfilter/ebtables.c @@ -2115,8 +2115,7 @@ return ret; offsets[0] = sizeof(struct ebt_entry); /* matches come first */ - memcpy(&offsets[1], &entry->watchers_offset, - sizeof(offsets) - sizeof(offsets[0])); + memcpy(&offsets[1], &entry->offsets, sizeof(entry->offsets)); if (state->buf_kern_start) { buf_start = state->buf_kern_start + state->buf_kern_offset; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/can/isotp.c +++ linux-oracle-6.5-6.5.0/net/can/isotp.c @@ -948,21 +948,18 @@ if (!so->bound || so->tx.state == ISOTP_SHUTDOWN) return -EADDRNOTAVAIL; -wait_free_buffer: - /* we do not support multiple buffers - for now */ - if (wq_has_sleeper(&so->wait) && (msg->msg_flags & MSG_DONTWAIT)) - return -EAGAIN; + while (cmpxchg(&so->tx.state, ISOTP_IDLE, ISOTP_SENDING) != ISOTP_IDLE) { + /* we do not support multiple buffers - for now */ + if (msg->msg_flags & MSG_DONTWAIT) + return -EAGAIN; - /* wait for complete transmission of current pdu */ - err = wait_event_interruptible(so->wait, so->tx.state == ISOTP_IDLE); - if (err) - goto err_event_drop; - - if (cmpxchg(&so->tx.state, ISOTP_IDLE, ISOTP_SENDING) != ISOTP_IDLE) { if (so->tx.state == ISOTP_SHUTDOWN) return -EADDRNOTAVAIL; - goto wait_free_buffer; + /* wait for complete transmission of current pdu */ + err = wait_event_interruptible(so->wait, so->tx.state == ISOTP_IDLE); + if (err) + goto err_event_drop; } /* PDU size > default => try max_pdu_size */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/can/j1939/socket.c +++ linux-oracle-6.5-6.5.0/net/can/j1939/socket.c @@ -974,6 +974,7 @@ struct sock_exterr_skb *serr; struct sk_buff *skb; char *state = "UNK"; + u32 tsflags; int err; jsk = j1939_sk(sk); @@ -981,13 +982,14 @@ if (!(jsk->state & J1939_SOCK_ERRQUEUE)) return; + tsflags = READ_ONCE(sk->sk_tsflags); switch (type) { case J1939_ERRQUEUE_TX_ACK: - if (!(sk->sk_tsflags & SOF_TIMESTAMPING_TX_ACK)) + if (!(tsflags & SOF_TIMESTAMPING_TX_ACK)) return; break; case J1939_ERRQUEUE_TX_SCHED: - if (!(sk->sk_tsflags & SOF_TIMESTAMPING_TX_SCHED)) + if (!(tsflags & SOF_TIMESTAMPING_TX_SCHED)) return; break; case J1939_ERRQUEUE_TX_ABORT: @@ -997,7 +999,7 @@ case J1939_ERRQUEUE_RX_DPO: fallthrough; case J1939_ERRQUEUE_RX_ABORT: - if (!(sk->sk_tsflags & SOF_TIMESTAMPING_RX_SOFTWARE)) + if (!(tsflags & SOF_TIMESTAMPING_RX_SOFTWARE)) return; break; default: @@ -1054,7 +1056,7 @@ } serr->opt_stats = true; - if (sk->sk_tsflags & SOF_TIMESTAMPING_OPT_ID) + if (tsflags & SOF_TIMESTAMPING_OPT_ID) serr->ee.ee_data = session->tskey; netdev_dbg(session->priv->ndev, "%s: 0x%p tskey: %i, state: %s\n", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/core/dev.c +++ linux-oracle-6.5-6.5.0/net/core/dev.c @@ -3285,15 +3285,19 @@ offset = skb_checksum_start_offset(skb); ret = -EINVAL; - if (WARN_ON_ONCE(offset >= skb_headlen(skb))) { + if (unlikely(offset >= skb_headlen(skb))) { DO_ONCE_LITE(skb_dump, KERN_ERR, skb, false); + WARN_ONCE(true, "offset (%d) >= skb_headlen() (%u)\n", + offset, skb_headlen(skb)); goto out; } csum = skb_checksum(skb, offset, skb->len - offset, 0); offset += skb->csum_offset; - if (WARN_ON_ONCE(offset + sizeof(__sum16) > skb_headlen(skb))) { + if (unlikely(offset + sizeof(__sum16) > skb_headlen(skb))) { DO_ONCE_LITE(skb_dump, KERN_ERR, skb, false); + WARN_ONCE(true, "offset+2 (%zu) > skb_headlen() (%u)\n", + offset + sizeof(__sum16), skb_headlen(skb)); goto out; } ret = skb_ensure_writable(skb, offset + sizeof(__sum16)); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/core/flow_dissector.c +++ linux-oracle-6.5-6.5.0/net/core/flow_dissector.c @@ -1402,7 +1402,7 @@ break; } - nhoff += ntohs(hdr->message_length); + nhoff += sizeof(struct ptp_header); fdret = FLOW_DISSECT_RET_OUT_GOOD; break; } @@ -1780,8 +1780,7 @@ memset(&keys, 0, sizeof(keys)); __skb_flow_dissect(NULL, skb, &flow_keys_dissector_symmetric, - &keys, NULL, 0, 0, 0, - FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL); + &keys, NULL, 0, 0, 0, 0); return __flow_hash_from_keys(&keys, &hashrnd); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/core/neighbour.c +++ linux-oracle-6.5-6.5.0/net/core/neighbour.c @@ -410,7 +410,7 @@ */ __skb_queue_purge(&n->arp_queue); n->arp_queue_len_bytes = 0; - n->output = neigh_blackhole; + WRITE_ONCE(n->output, neigh_blackhole); if (n->nud_state & NUD_VALID) n->nud_state = NUD_NOARP; else @@ -920,7 +920,7 @@ { neigh_dbg(2, "neigh %p is suspected\n", neigh); - neigh->output = neigh->ops->output; + WRITE_ONCE(neigh->output, neigh->ops->output); } /* Neighbour state is OK; @@ -932,7 +932,7 @@ { neigh_dbg(2, "neigh %p is connected\n", neigh); - neigh->output = neigh->ops->connected_output; + WRITE_ONCE(neigh->output, neigh->ops->connected_output); } static void neigh_periodic_work(struct work_struct *work) @@ -988,7 +988,9 @@ (state == NUD_FAILED || !time_in_range_open(jiffies, n->used, n->used + NEIGH_VAR(n->parms, GC_STALETIME)))) { - *np = n->next; + rcu_assign_pointer(*np, + rcu_dereference_protected(n->next, + lockdep_is_held(&tbl->lock))); neigh_mark_dead(n); write_unlock(&n->lock); neigh_cleanup_and_release(n); @@ -1447,7 +1449,7 @@ if (n2) n1 = n2; } - n1->output(n1, skb); + READ_ONCE(n1->output)(n1, skb); if (n2) neigh_release(n2); rcu_read_unlock(); @@ -3153,7 +3155,7 @@ rcu_read_unlock(); goto out_kfree_skb; } - err = neigh->output(neigh, skb); + err = READ_ONCE(neigh->output)(neigh, skb); rcu_read_unlock(); } else if (index == NEIGH_LINK_TABLE) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/core/sock_map.c +++ linux-oracle-6.5-6.5.0/net/core/sock_map.c @@ -668,6 +668,8 @@ sk = __sock_map_lookup_elem(map, key); if (unlikely(!sk || !sock_map_redirect_allowed(sk))) return SK_DROP; + if (!(flags & BPF_F_INGRESS) && !sk_is_tcp(sk)) + return SK_DROP; msg->flags = flags; msg->sk_redir = sk; @@ -1267,6 +1269,8 @@ sk = __sock_hash_lookup_elem(map, key); if (unlikely(!sk || !sock_map_redirect_allowed(sk))) return SK_DROP; + if (!(flags & BPF_F_INGRESS) && !sk_is_tcp(sk)) + return SK_DROP; msg->flags = flags; msg->sk_redir = sk; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/devlink/health.c +++ linux-oracle-6.5-6.5.0/net/devlink/health.c @@ -58,7 +58,6 @@ struct devlink *devlink; struct devlink_port *devlink_port; struct devlink_fmsg *dump_fmsg; - struct mutex dump_lock; /* lock parallel read/write from dump buffers */ u64 graceful_period; bool auto_recover; bool auto_dump; @@ -125,7 +124,6 @@ reporter->graceful_period = graceful_period; reporter->auto_recover = !!ops->recover; reporter->auto_dump = !!ops->dump; - mutex_init(&reporter->dump_lock); return reporter; } @@ -226,7 +224,6 @@ static void devlink_health_reporter_free(struct devlink_health_reporter *reporter) { - mutex_destroy(&reporter->dump_lock); if (reporter->dump_fmsg) devlink_fmsg_free(reporter->dump_fmsg); kfree(reporter); @@ -609,10 +606,10 @@ } if (reporter->auto_dump) { - mutex_lock(&reporter->dump_lock); + devl_lock(devlink); /* store current dump of current error, for later analysis */ devlink_health_do_dump(reporter, priv_ctx, NULL); - mutex_unlock(&reporter->dump_lock); + devl_unlock(devlink); } if (!reporter->auto_recover) @@ -1246,7 +1243,7 @@ } static struct devlink_health_reporter * -devlink_health_reporter_get_from_cb(struct netlink_callback *cb) +devlink_health_reporter_get_from_cb_lock(struct netlink_callback *cb) { const struct genl_dumpit_info *info = genl_dumpit_info(cb); struct devlink_health_reporter *reporter; @@ -1256,10 +1253,12 @@ devlink = devlink_get_from_attrs_lock(sock_net(cb->skb->sk), attrs); if (IS_ERR(devlink)) return NULL; - devl_unlock(devlink); reporter = devlink_health_reporter_get_from_attrs(devlink, attrs); - devlink_put(devlink); + if (!reporter) { + devl_unlock(devlink); + devlink_put(devlink); + } return reporter; } @@ -1268,16 +1267,20 @@ { struct devlink_nl_dump_state *state = devlink_dump_state(cb); struct devlink_health_reporter *reporter; + struct devlink *devlink; int err; - reporter = devlink_health_reporter_get_from_cb(cb); + reporter = devlink_health_reporter_get_from_cb_lock(cb); if (!reporter) return -EINVAL; - if (!reporter->ops->dump) + devlink = reporter->devlink; + if (!reporter->ops->dump) { + devl_unlock(devlink); + devlink_put(devlink); return -EOPNOTSUPP; + } - mutex_lock(&reporter->dump_lock); if (!state->idx) { err = devlink_health_do_dump(reporter, NULL, cb->extack); if (err) @@ -1293,7 +1296,8 @@ err = devlink_fmsg_dumpit(reporter->dump_fmsg, skb, cb, DEVLINK_CMD_HEALTH_REPORTER_DUMP_GET); unlock: - mutex_unlock(&reporter->dump_lock); + devl_unlock(devlink); + devlink_put(devlink); return err; } @@ -1310,9 +1314,7 @@ if (!reporter->ops->dump) return -EOPNOTSUPP; - mutex_lock(&reporter->dump_lock); devlink_health_dump_clear(reporter); - mutex_unlock(&reporter->dump_lock); return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/devlink/leftover.c +++ linux-oracle-6.5-6.5.0/net/devlink/leftover.c @@ -3946,7 +3946,7 @@ const struct devlink_param *param, struct devlink_param_gset_ctx *ctx) { - if (!param->get || devlink->reload_failed) + if (!param->get) return -EOPNOTSUPP; return param->get(devlink, param->id, ctx); } @@ -3955,7 +3955,7 @@ const struct devlink_param *param, struct devlink_param_gset_ctx *ctx) { - if (!param->set || devlink->reload_failed) + if (!param->set) return -EOPNOTSUPP; return param->set(devlink, param->id, ctx); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ethtool/plca.c +++ linux-oracle-6.5-6.5.0/net/ethtool/plca.c @@ -21,16 +21,6 @@ #define PLCA_REPDATA(__reply_base) \ container_of(__reply_base, struct plca_reply_data, base) -static void plca_update_sint(int *dst, const struct nlattr *attr, - bool *mod) -{ - if (!attr) - return; - - *dst = nla_get_u32(attr); - *mod = true; -} - // PLCA get configuration message ------------------------------------------- // const struct nla_policy ethnl_plca_get_cfg_policy[] = { @@ -38,6 +28,29 @@ NLA_POLICY_NESTED(ethnl_header_policy), }; +static void plca_update_sint(int *dst, struct nlattr **tb, u32 attrid, + bool *mod) +{ + const struct nlattr *attr = tb[attrid]; + + if (!attr || + WARN_ON_ONCE(attrid >= ARRAY_SIZE(ethnl_plca_set_cfg_policy))) + return; + + switch (ethnl_plca_set_cfg_policy[attrid].type) { + case NLA_U8: + *dst = nla_get_u8(attr); + break; + case NLA_U32: + *dst = nla_get_u32(attr); + break; + default: + WARN_ON_ONCE(1); + } + + *mod = true; +} + static int plca_get_cfg_prepare_data(const struct ethnl_req_info *req_base, struct ethnl_reply_data *reply_base, struct genl_info *info) @@ -144,13 +157,13 @@ return -EOPNOTSUPP; memset(&plca_cfg, 0xff, sizeof(plca_cfg)); - plca_update_sint(&plca_cfg.enabled, tb[ETHTOOL_A_PLCA_ENABLED], &mod); - plca_update_sint(&plca_cfg.node_id, tb[ETHTOOL_A_PLCA_NODE_ID], &mod); - plca_update_sint(&plca_cfg.node_cnt, tb[ETHTOOL_A_PLCA_NODE_CNT], &mod); - plca_update_sint(&plca_cfg.to_tmr, tb[ETHTOOL_A_PLCA_TO_TMR], &mod); - plca_update_sint(&plca_cfg.burst_cnt, tb[ETHTOOL_A_PLCA_BURST_CNT], + plca_update_sint(&plca_cfg.enabled, tb, ETHTOOL_A_PLCA_ENABLED, &mod); + plca_update_sint(&plca_cfg.node_id, tb, ETHTOOL_A_PLCA_NODE_ID, &mod); + plca_update_sint(&plca_cfg.node_cnt, tb, ETHTOOL_A_PLCA_NODE_CNT, &mod); + plca_update_sint(&plca_cfg.to_tmr, tb, ETHTOOL_A_PLCA_TO_TMR, &mod); + plca_update_sint(&plca_cfg.burst_cnt, tb, ETHTOOL_A_PLCA_BURST_CNT, &mod); - plca_update_sint(&plca_cfg.burst_tmr, tb[ETHTOOL_A_PLCA_BURST_TMR], + plca_update_sint(&plca_cfg.burst_tmr, tb, ETHTOOL_A_PLCA_BURST_TMR, &mod); if (!mod) return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/handshake/handshake-test.c +++ linux-oracle-6.5-6.5.0/net/handshake/handshake-test.c @@ -235,7 +235,7 @@ KUNIT_EXPECT_PTR_EQ(test, req, result); handshake_req_cancel(sock->sk); - sock_release(sock); + fput(filp); } static void handshake_req_submit_test5(struct kunit *test) @@ -272,7 +272,7 @@ /* Assert */ KUNIT_EXPECT_EQ(test, err, -EAGAIN); - sock_release(sock); + fput(filp); hn->hn_pending = saved; } @@ -306,7 +306,7 @@ KUNIT_EXPECT_EQ(test, err, -EBUSY); handshake_req_cancel(sock->sk); - sock_release(sock); + fput(filp); } static void handshake_req_cancel_test1(struct kunit *test) @@ -340,7 +340,7 @@ /* Assert */ KUNIT_EXPECT_TRUE(test, result); - sock_release(sock); + fput(filp); } static void handshake_req_cancel_test2(struct kunit *test) @@ -382,7 +382,7 @@ /* Assert */ KUNIT_EXPECT_TRUE(test, result); - sock_release(sock); + fput(filp); } static void handshake_req_cancel_test3(struct kunit *test) @@ -427,7 +427,7 @@ /* Assert */ KUNIT_EXPECT_FALSE(test, result); - sock_release(sock); + fput(filp); } static struct handshake_req *handshake_req_destroy_test; @@ -471,7 +471,7 @@ handshake_req_cancel(sock->sk); /* Act */ - sock_release(sock); + fput(filp); /* Assert */ KUNIT_EXPECT_PTR_EQ(test, handshake_req_destroy_test, req); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/handshake/netlink.c +++ linux-oracle-6.5-6.5.0/net/handshake/netlink.c @@ -157,26 +157,24 @@ int handshake_nl_done_doit(struct sk_buff *skb, struct genl_info *info) { struct net *net = sock_net(skb->sk); - struct handshake_req *req = NULL; - struct socket *sock = NULL; + struct handshake_req *req; + struct socket *sock; int fd, status, err; if (GENL_REQ_ATTR_CHECK(info, HANDSHAKE_A_DONE_SOCKFD)) return -EINVAL; fd = nla_get_u32(info->attrs[HANDSHAKE_A_DONE_SOCKFD]); - err = 0; sock = sockfd_lookup(fd, &err); - if (err) { - err = -EBADF; - goto out_status; - } + if (!sock) + return err; req = handshake_req_hash_lookup(sock->sk); if (!req) { err = -EBUSY; + trace_handshake_cmd_done_err(net, req, sock->sk, err); fput(sock->file); - goto out_status; + return err; } trace_handshake_cmd_done(net, req, sock->sk, fd); @@ -188,10 +186,6 @@ handshake_complete(req, status, info); fput(sock->file); return 0; - -out_status: - trace_handshake_cmd_done_err(net, req, sock->sk, err); - return err; } static unsigned int handshake_net_id; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/hsr/hsr_forward.c +++ linux-oracle-6.5-6.5.0/net/hsr/hsr_forward.c @@ -594,6 +594,7 @@ proto = vlan_hdr->vlanhdr.h_vlan_encapsulated_proto; /* FIXME: */ netdev_warn_once(skb->dev, "VLAN not yet supported"); + return -EINVAL; } frame->is_from_san = false; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/hsr/hsr_framereg.c +++ linux-oracle-6.5-6.5.0/net/hsr/hsr_framereg.c @@ -288,13 +288,13 @@ /* And leave the HSR tag. */ if (ethhdr->h_proto == htons(ETH_P_HSR)) { - pull_size = sizeof(struct ethhdr); + pull_size = sizeof(struct hsr_tag); skb_pull(skb, pull_size); total_pull_size += pull_size; } /* And leave the HSR sup tag. */ - pull_size = sizeof(struct hsr_tag); + pull_size = sizeof(struct hsr_sup_tag); skb_pull(skb, pull_size); total_pull_size += pull_size; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/hsr/hsr_main.h +++ linux-oracle-6.5-6.5.0/net/hsr/hsr_main.h @@ -83,7 +83,7 @@ struct hsr_sup_tlv { u8 HSR_TLV_type; u8 HSR_TLV_length; -}; +} __packed; /* HSR/PRP Supervision Frame data types. * Field names as defined in the IEC:2010 standard for HSR. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv4/devinet.c +++ linux-oracle-6.5-6.5.0/net/ipv4/devinet.c @@ -355,14 +355,14 @@ { struct in_ifaddr *promote = NULL; struct in_ifaddr *ifa, *ifa1; - struct in_ifaddr *last_prim; + struct in_ifaddr __rcu **last_prim; struct in_ifaddr *prev_prom = NULL; int do_promote = IN_DEV_PROMOTE_SECONDARIES(in_dev); ASSERT_RTNL(); ifa1 = rtnl_dereference(*ifap); - last_prim = rtnl_dereference(in_dev->ifa_list); + last_prim = ifap; if (in_dev->dead) goto no_promotions; @@ -376,7 +376,7 @@ while ((ifa = rtnl_dereference(*ifap1)) != NULL) { if (!(ifa->ifa_flags & IFA_F_SECONDARY) && ifa1->ifa_scope <= ifa->ifa_scope) - last_prim = ifa; + last_prim = &ifa->ifa_next; if (!(ifa->ifa_flags & IFA_F_SECONDARY) || ifa1->ifa_mask != ifa->ifa_mask || @@ -440,9 +440,9 @@ rcu_assign_pointer(prev_prom->ifa_next, next_sec); - last_sec = rtnl_dereference(last_prim->ifa_next); + last_sec = rtnl_dereference(*last_prim); rcu_assign_pointer(promote->ifa_next, last_sec); - rcu_assign_pointer(last_prim->ifa_next, promote); + rcu_assign_pointer(*last_prim, promote); } promote->ifa_flags &= ~IFA_F_SECONDARY; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv4/fib_semantics.c +++ linux-oracle-6.5-6.5.0/net/ipv4/fib_semantics.c @@ -278,7 +278,8 @@ hlist_del(&nexthop_nh->nh_hash); } endfor_nexthops(fi) } - fi->fib_dead = 1; + /* Paired with READ_ONCE() from fib_table_lookup() */ + WRITE_ONCE(fi->fib_dead, 1); fib_info_put(fi); } spin_unlock_bh(&fib_info_lock); @@ -1581,6 +1582,7 @@ link_it: ofi = fib_find_info(fi); if (ofi) { + /* fib_table_lookup() should not see @fi yet. */ fi->fib_dead = 1; free_fib_info(fi); refcount_inc(&ofi->fib_treeref); @@ -1619,6 +1621,7 @@ failure: if (fi) { + /* fib_table_lookup() should not see @fi yet. */ fi->fib_dead = 1; free_fib_info(fi); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv4/fib_trie.c +++ linux-oracle-6.5-6.5.0/net/ipv4/fib_trie.c @@ -1582,7 +1582,8 @@ if (fa->fa_dscp && inet_dscp_to_dsfield(fa->fa_dscp) != flp->flowi4_tos) continue; - if (fi->fib_dead) + /* Paired with WRITE_ONCE() in fib_release_info() */ + if (READ_ONCE(fi->fib_dead)) continue; if (fa->fa_info->fib_scope < flp->flowi4_scope) continue; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv4/inet_hashtables.c +++ linux-oracle-6.5-6.5.0/net/ipv4/inet_hashtables.c @@ -795,41 +795,45 @@ const struct net *net, unsigned short port, int l3mdev, const struct sock *sk) { + if (!net_eq(ib2_net(tb), net) || tb->port != port || + tb->l3mdev != l3mdev) + return false; + #if IS_ENABLED(CONFIG_IPV6) - if (sk->sk_family != tb->family) + if (sk->sk_family != tb->family) { + if (sk->sk_family == AF_INET) + return ipv6_addr_v4mapped(&tb->v6_rcv_saddr) && + tb->v6_rcv_saddr.s6_addr32[3] == sk->sk_rcv_saddr; + return false; + } if (sk->sk_family == AF_INET6) - return net_eq(ib2_net(tb), net) && tb->port == port && - tb->l3mdev == l3mdev && - ipv6_addr_equal(&tb->v6_rcv_saddr, &sk->sk_v6_rcv_saddr); - else + return ipv6_addr_equal(&tb->v6_rcv_saddr, &sk->sk_v6_rcv_saddr); #endif - return net_eq(ib2_net(tb), net) && tb->port == port && - tb->l3mdev == l3mdev && tb->rcv_saddr == sk->sk_rcv_saddr; + return tb->rcv_saddr == sk->sk_rcv_saddr; } bool inet_bind2_bucket_match_addr_any(const struct inet_bind2_bucket *tb, const struct net *net, unsigned short port, int l3mdev, const struct sock *sk) { + if (!net_eq(ib2_net(tb), net) || tb->port != port || + tb->l3mdev != l3mdev) + return false; + #if IS_ENABLED(CONFIG_IPV6) if (sk->sk_family != tb->family) { if (sk->sk_family == AF_INET) - return net_eq(ib2_net(tb), net) && tb->port == port && - tb->l3mdev == l3mdev && - ipv6_addr_any(&tb->v6_rcv_saddr); + return ipv6_addr_any(&tb->v6_rcv_saddr) || + ipv6_addr_v4mapped_any(&tb->v6_rcv_saddr); return false; } if (sk->sk_family == AF_INET6) - return net_eq(ib2_net(tb), net) && tb->port == port && - tb->l3mdev == l3mdev && - ipv6_addr_any(&tb->v6_rcv_saddr); - else + return ipv6_addr_any(&tb->v6_rcv_saddr); #endif - return net_eq(ib2_net(tb), net) && tb->port == port && - tb->l3mdev == l3mdev && tb->rcv_saddr == 0; + return tb->rcv_saddr == 0; } /* The socket's bhash2 hashbucket spinlock must be held when this is called */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv4/ip_input.c +++ linux-oracle-6.5-6.5.0/net/ipv4/ip_input.c @@ -584,7 +584,8 @@ static struct sk_buff *ip_extract_route_hint(const struct net *net, struct sk_buff *skb, int rt_type) { - if (fib4_has_custom_rules(net) || rt_type == RTN_BROADCAST) + if (fib4_has_custom_rules(net) || rt_type == RTN_BROADCAST || + IPCB(skb)->flags & IPSKB_MULTIPATH) return NULL; return skb; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv4/tcp.c +++ linux-oracle-6.5-6.5.0/net/ipv4/tcp.c @@ -1618,16 +1618,13 @@ int tcp_read_skb(struct sock *sk, skb_read_actor_t recv_actor) { - struct tcp_sock *tp = tcp_sk(sk); - u32 seq = tp->copied_seq; struct sk_buff *skb; int copied = 0; - u32 offset; if (sk->sk_state == TCP_LISTEN) return -ENOTCONN; - while ((skb = tcp_recv_skb(sk, seq, &offset)) != NULL) { + while ((skb = skb_peek(&sk->sk_receive_queue)) != NULL) { u8 tcp_flags; int used; @@ -1640,13 +1637,10 @@ copied = used; break; } - seq += used; copied += used; - if (tcp_flags & TCPHDR_FIN) { - ++seq; + if (tcp_flags & TCPHDR_FIN) break; - } } return copied; } @@ -2256,14 +2250,14 @@ } } - if (sk->sk_tsflags & SOF_TIMESTAMPING_SOFTWARE) + if (READ_ONCE(sk->sk_tsflags) & SOF_TIMESTAMPING_SOFTWARE) has_timestamping = true; else tss->ts[0] = (struct timespec64) {0}; } if (tss->ts[2].tv_sec || tss->ts[2].tv_nsec) { - if (sk->sk_tsflags & SOF_TIMESTAMPING_RAW_HARDWARE) + if (READ_ONCE(sk->sk_tsflags) & SOF_TIMESTAMPING_RAW_HARDWARE) has_timestamping = true; else tss->ts[2] = (struct timespec64) {0}; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv4/tcp_bpf.c +++ linux-oracle-6.5-6.5.0/net/ipv4/tcp_bpf.c @@ -222,6 +222,7 @@ int *addr_len) { struct tcp_sock *tcp = tcp_sk(sk); + int peek = flags & MSG_PEEK; u32 seq = tcp->copied_seq; struct sk_psock *psock; int copied = 0; @@ -311,7 +312,8 @@ copied = -EAGAIN; } out: - WRITE_ONCE(tcp->copied_seq, seq); + if (!peek) + WRITE_ONCE(tcp->copied_seq, seq); tcp_rcv_space_adjust(sk); if (copied > 0) __tcp_cleanup_rbuf(sk, copied); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv4/tcp_output.c +++ linux-oracle-6.5-6.5.0/net/ipv4/tcp_output.c @@ -177,8 +177,7 @@ } /* Account for an ACK we sent. */ -static inline void tcp_event_ack_sent(struct sock *sk, unsigned int pkts, - u32 rcv_nxt) +static inline void tcp_event_ack_sent(struct sock *sk, u32 rcv_nxt) { struct tcp_sock *tp = tcp_sk(sk); @@ -192,7 +191,7 @@ if (unlikely(rcv_nxt != tp->rcv_nxt)) return; /* Special ACK sent by DCTCP to reflect ECN */ - tcp_dec_quickack_mode(sk, pkts); + tcp_dec_quickack_mode(sk); inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK); } @@ -1372,7 +1371,7 @@ sk, skb); if (likely(tcb->tcp_flags & TCPHDR_ACK)) - tcp_event_ack_sent(sk, tcp_skb_pcount(skb), rcv_nxt); + tcp_event_ack_sent(sk, rcv_nxt); if (skb->len != tcp_header_size) { tcp_event_data_sent(tp, sk); @@ -2442,6 +2441,7 @@ /* build the payload, and be prepared to abort if this fails. */ if (tcp_clone_payload(sk, nskb, probe_size)) { + tcp_skb_tsorted_anchor_cleanup(nskb); consume_skb(nskb); return -1; } @@ -3459,7 +3459,7 @@ if (delta <= 0) return; amt = sk_mem_pages(delta); - sk->sk_forward_alloc += amt << PAGE_SHIFT; + sk_forward_alloc_add(sk, amt << PAGE_SHIFT); sk_memory_allocated_add(sk, amt); if (mem_cgroup_sockets_enabled && sk->sk_memcg) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv6/addrconf.c +++ linux-oracle-6.5-6.5.0/net/ipv6/addrconf.c @@ -202,6 +202,7 @@ .ra_defrtr_metric = IP6_RT_PRIO_USER, .accept_ra_from_local = 0, .accept_ra_min_hop_limit= 1, + .accept_ra_min_lft = 0, .accept_ra_pinfo = 1, #ifdef CONFIG_IPV6_ROUTER_PREF .accept_ra_rtr_pref = 1, @@ -262,6 +263,7 @@ .ra_defrtr_metric = IP6_RT_PRIO_USER, .accept_ra_from_local = 0, .accept_ra_min_hop_limit= 1, + .accept_ra_min_lft = 0, .accept_ra_pinfo = 1, #ifdef CONFIG_IPV6_ROUTER_PREF .accept_ra_rtr_pref = 1, @@ -1368,7 +1370,7 @@ * idev->desync_factor if it's larger */ cnf_temp_preferred_lft = READ_ONCE(idev->cnf.temp_prefered_lft); - max_desync_factor = min_t(__u32, + max_desync_factor = min_t(long, idev->cnf.max_desync_factor, cnf_temp_preferred_lft - regen_advance); @@ -2731,6 +2733,9 @@ return; } + if (valid_lft != 0 && valid_lft < in6_dev->cnf.accept_ra_min_lft) + goto put; + /* * Two things going on here: * 1) Add routes for on-link prefixes @@ -5602,6 +5607,7 @@ array[DEVCONF_IOAM6_ID_WIDE] = cnf->ioam6_id_wide; array[DEVCONF_NDISC_EVICT_NOCARRIER] = cnf->ndisc_evict_nocarrier; array[DEVCONF_ACCEPT_UNTRACKED_NA] = cnf->accept_untracked_na; + array[DEVCONF_ACCEPT_RA_MIN_LFT] = cnf->accept_ra_min_lft; } static inline size_t inet6_ifla6_size(void) @@ -6794,6 +6800,13 @@ .maxlen = sizeof(int), .mode = 0644, .proc_handler = proc_dointvec, + }, + { + .procname = "accept_ra_min_lft", + .data = &ipv6_devconf.accept_ra_min_lft, + .maxlen = sizeof(int), + .mode = 0644, + .proc_handler = proc_dointvec, }, { .procname = "accept_ra_pinfo", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv6/ip6_input.c +++ linux-oracle-6.5-6.5.0/net/ipv6/ip6_input.c @@ -99,7 +99,8 @@ static struct sk_buff *ip6_extract_route_hint(const struct net *net, struct sk_buff *skb) { - if (fib6_routes_require_src(net) || fib6_has_custom_rules(net)) + if (fib6_routes_require_src(net) || fib6_has_custom_rules(net) || + IP6CB(skb)->flags & IP6SKB_MULTIPATH) return NULL; return skb; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv6/ndisc.c +++ linux-oracle-6.5-6.5.0/net/ipv6/ndisc.c @@ -1328,6 +1328,14 @@ goto skip_defrtr; } + lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime); + if (lifetime != 0 && lifetime < in6_dev->cnf.accept_ra_min_lft) { + ND_PRINTK(2, info, + "RA: router lifetime (%ds) is too short: %s\n", + lifetime, skb->dev->name); + goto skip_defrtr; + } + /* Do not accept RA with source-addr found on local machine unless * accept_ra_from_local is set to true. */ @@ -1340,8 +1348,6 @@ goto skip_defrtr; } - lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime); - #ifdef CONFIG_IPV6_ROUTER_PREF pref = ra_msg->icmph.icmp6_router_pref; /* 10b is handled as if it were 00b (medium) */ @@ -1517,6 +1523,9 @@ if (ri->prefix_len == 0 && !in6_dev->cnf.accept_ra_defrtr) continue; + if (ri->lifetime != 0 && + ntohl(ri->lifetime) < in6_dev->cnf.accept_ra_min_lft) + continue; if (ri->prefix_len < in6_dev->cnf.accept_ra_rt_info_min_plen) continue; if (ri->prefix_len > in6_dev->cnf.accept_ra_rt_info_max_plen) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ipv6/route.c +++ linux-oracle-6.5-6.5.0/net/ipv6/route.c @@ -424,6 +424,9 @@ if (match->nh && have_oif_match && res->nh) return; + if (skb) + IP6CB(skb)->flags |= IP6SKB_MULTIPATH; + /* We might have already computed the hash for ICMPv6 errors. In such * case it will always be non-zero. Otherwise now is the time to do it. */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/kcm/kcmsock.c +++ linux-oracle-6.5-6.5.0/net/kcm/kcmsock.c @@ -930,15 +930,18 @@ out_error: kcm_push(kcm); - if (copied && sock->type == SOCK_SEQPACKET) { + if (sock->type == SOCK_SEQPACKET) { /* Wrote some bytes before encountering an * error, return partial success. */ - goto partial_message; - } - - if (head != kcm->seq_skb) + if (copied) + goto partial_message; + if (head != kcm->seq_skb) + kfree_skb(head); + } else { kfree_skb(head); + kcm->seq_skb = NULL; + } err = sk_stream_error(sk, msg->msg_flags, err); @@ -1859,6 +1862,8 @@ * that all multiplexors and psocks have been destroyed. */ WARN_ON(!list_empty(&knet->mux_list)); + + mutex_destroy(&knet->mutex); } static struct pernet_operations kcm_net_ops = { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mac80211/ieee80211_i.h +++ linux-oracle-6.5-6.5.0/net/mac80211/ieee80211_i.h @@ -676,7 +676,7 @@ struct timer_list mesh_path_root_timer; unsigned long wrkq_flags; - unsigned long mbss_changed; + unsigned long mbss_changed[64 / BITS_PER_LONG]; bool userspace_handles_dfs; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mac80211/key.c +++ linux-oracle-6.5-6.5.0/net/mac80211/key.c @@ -905,7 +905,7 @@ */ if (ieee80211_key_identical(sdata, old_key, key)) { ieee80211_key_free_unused(key); - ret = 0; + ret = -EALREADY; goto out; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mac80211/mesh.c +++ linux-oracle-6.5-6.5.0/net/mac80211/mesh.c @@ -1175,7 +1175,7 @@ /* if we race with running work, worst case this work becomes a noop */ for_each_set_bit(bit, &bits, sizeof(changed) * BITS_PER_BYTE) - set_bit(bit, &ifmsh->mbss_changed); + set_bit(bit, ifmsh->mbss_changed); set_bit(MESH_WORK_MBSS_CHANGED, &ifmsh->wrkq_flags); wiphy_work_queue(sdata->local->hw.wiphy, &sdata->work); } @@ -1257,7 +1257,7 @@ /* clear any mesh work (for next join) we may have accrued */ ifmsh->wrkq_flags = 0; - ifmsh->mbss_changed = 0; + memset(ifmsh->mbss_changed, 0, sizeof(ifmsh->mbss_changed)); local->fif_other_bss--; atomic_dec(&local->iff_allmultis); @@ -1724,9 +1724,9 @@ u32 bit; u64 changed = 0; - for_each_set_bit(bit, &ifmsh->mbss_changed, + for_each_set_bit(bit, ifmsh->mbss_changed, sizeof(changed) * BITS_PER_BYTE) { - clear_bit(bit, &ifmsh->mbss_changed); + clear_bit(bit, ifmsh->mbss_changed); changed |= BIT(bit); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mac80211/mlme.c +++ linux-oracle-6.5-6.5.0/net/mac80211/mlme.c @@ -5107,9 +5107,10 @@ continue; valid_links |= BIT(link_id); - if (assoc_data->link[link_id].disabled) { + if (assoc_data->link[link_id].disabled) dormant_links |= BIT(link_id); - } else if (link_id != assoc_data->assoc_link_id) { + + if (link_id != assoc_data->assoc_link_id) { err = ieee80211_sta_allocate_link(sta, link_id); if (err) goto out_err; @@ -5124,7 +5125,7 @@ struct ieee80211_link_data *link; struct link_sta_info *link_sta; - if (!cbss || assoc_data->link[link_id].disabled) + if (!cbss) continue; link = sdata_dereference(sdata->link[link_id], sdata); @@ -5429,17 +5430,18 @@ for (link_id = 0; link_id < IEEE80211_MLD_MAX_NUM_LINKS; link_id++) { struct ieee80211_link_data *link; - link = sdata_dereference(sdata->link[link_id], sdata); - if (!link) - continue; - if (!assoc_data->link[link_id].bss) continue; resp.links[link_id].bss = assoc_data->link[link_id].bss; - resp.links[link_id].addr = link->conf->addr; + ether_addr_copy(resp.links[link_id].addr, + assoc_data->link[link_id].addr); resp.links[link_id].status = assoc_data->link[link_id].status; + link = sdata_dereference(sdata->link[link_id], sdata); + if (!link) + continue; + /* get uapsd queues configuration - same for all links */ resp.uapsd_queues = 0; for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mac80211/rx.c +++ linux-oracle-6.5-6.5.0/net/mac80211/rx.c @@ -3734,6 +3734,10 @@ break; goto queue; case WLAN_CATEGORY_S1G: + if (len < offsetofend(typeof(*mgmt), + u.action.u.s1g.action_code)) + break; + switch (mgmt->u.action.u.s1g.action_code) { case WLAN_S1G_TWT_SETUP: case WLAN_S1G_TWT_TEARDOWN: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mctp/route.c +++ linux-oracle-6.5-6.5.0/net/mctp/route.c @@ -737,6 +737,8 @@ { struct mctp_route *tmp, *rt = NULL; + rcu_read_lock(); + list_for_each_entry_rcu(tmp, &net->mctp.routes, list) { /* TODO: add metrics */ if (mctp_rt_match_eid(tmp, dnet, daddr)) { @@ -747,21 +749,29 @@ } } + rcu_read_unlock(); + return rt; } static struct mctp_route *mctp_route_lookup_null(struct net *net, struct net_device *dev) { - struct mctp_route *rt; + struct mctp_route *tmp, *rt = NULL; + + rcu_read_lock(); - list_for_each_entry_rcu(rt, &net->mctp.routes, list) { - if (rt->dev->dev == dev && rt->type == RTN_LOCAL && - refcount_inc_not_zero(&rt->refs)) - return rt; + list_for_each_entry_rcu(tmp, &net->mctp.routes, list) { + if (tmp->dev->dev == dev && tmp->type == RTN_LOCAL && + refcount_inc_not_zero(&tmp->refs)) { + rt = tmp; + break; + } } - return NULL; + rcu_read_unlock(); + + return rt; } static int mctp_do_fragment_route(struct mctp_route *rt, struct sk_buff *skb, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mptcp/options.c +++ linux-oracle-6.5-6.5.0/net/mptcp/options.c @@ -1269,12 +1269,13 @@ if (rcv_wnd == rcv_wnd_old) break; - if (before64(rcv_wnd_new, rcv_wnd)) { + + rcv_wnd_old = rcv_wnd; + if (before64(rcv_wnd_new, rcv_wnd_old)) { MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_RCVWNDCONFLICTUPDATE); goto raise_win; } MPTCP_INC_STATS(sock_net(ssk), MPTCP_MIB_RCVWNDCONFLICT); - rcv_wnd_old = rcv_wnd; } return; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mptcp/pm_userspace.c +++ linux-oracle-6.5-6.5.0/net/mptcp/pm_userspace.c @@ -307,12 +307,6 @@ goto create_err; } - if (addr_l.id == 0) { - NL_SET_ERR_MSG_ATTR(info->extack, laddr, "missing local addr id"); - err = -EINVAL; - goto create_err; - } - err = mptcp_pm_parse_addr(raddr, info, &addr_r); if (err < 0) { NL_SET_ERR_MSG_ATTR(info->extack, raddr, "error parsing remote addr"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mptcp/protocol.h +++ linux-oracle-6.5-6.5.0/net/mptcp/protocol.h @@ -440,9 +440,11 @@ DECLARE_PER_CPU(struct mptcp_delegated_action, mptcp_delegated_actions); -#define MPTCP_DELEGATE_SEND 0 -#define MPTCP_DELEGATE_ACK 1 +#define MPTCP_DELEGATE_SCHEDULED 0 +#define MPTCP_DELEGATE_SEND 1 +#define MPTCP_DELEGATE_ACK 2 +#define MPTCP_DELEGATE_ACTIONS_MASK (~BIT(MPTCP_DELEGATE_SCHEDULED)) /* MPTCP subflow context */ struct mptcp_subflow_context { struct list_head node;/* conn_list of subflows */ @@ -559,23 +561,24 @@ return subflow->map_seq + mptcp_subflow_get_map_offset(subflow); } -void mptcp_subflow_process_delegated(struct sock *ssk); +void mptcp_subflow_process_delegated(struct sock *ssk, long actions); static inline void mptcp_subflow_delegate(struct mptcp_subflow_context *subflow, int action) { + long old, set_bits = BIT(MPTCP_DELEGATE_SCHEDULED) | BIT(action); struct mptcp_delegated_action *delegated; bool schedule; /* the caller held the subflow bh socket lock */ lockdep_assert_in_softirq(); - /* The implied barrier pairs with mptcp_subflow_delegated_done(), and - * ensures the below list check sees list updates done prior to status - * bit changes + /* The implied barrier pairs with tcp_release_cb_override() + * mptcp_napi_poll(), and ensures the below list check sees list + * updates done prior to delegated status bits changes */ - if (!test_and_set_bit(action, &subflow->delegated_status)) { - /* still on delegated list from previous scheduling */ - if (!list_empty(&subflow->delegated_node)) + old = set_mask_bits(&subflow->delegated_status, 0, set_bits); + if (!(old & BIT(MPTCP_DELEGATE_SCHEDULED))) { + if (WARN_ON_ONCE(!list_empty(&subflow->delegated_node))) return; delegated = this_cpu_ptr(&mptcp_delegated_actions); @@ -600,20 +603,6 @@ return ret; } -static inline bool mptcp_subflow_has_delegated_action(const struct mptcp_subflow_context *subflow) -{ - return !!READ_ONCE(subflow->delegated_status); -} - -static inline void mptcp_subflow_delegated_done(struct mptcp_subflow_context *subflow, int action) -{ - /* pairs with mptcp_subflow_delegate, ensures delegate_node is updated before - * touching the status bit - */ - smp_wmb(); - clear_bit(action, &subflow->delegated_status); -} - int mptcp_is_enabled(const struct net *net); unsigned int mptcp_get_add_addr_timeout(const struct net *net); int mptcp_is_checksum_enabled(const struct net *net); @@ -699,7 +688,29 @@ void mptcp_finish_connect(struct sock *sk); void __mptcp_set_connected(struct sock *sk); -void mptcp_reset_timeout(struct mptcp_sock *msk, unsigned long fail_tout); +void mptcp_reset_tout_timer(struct mptcp_sock *msk, unsigned long fail_tout); + +static inline void mptcp_stop_tout_timer(struct sock *sk) +{ + if (!inet_csk(sk)->icsk_mtup.probe_timestamp) + return; + + sk_stop_timer(sk, &sk->sk_timer); + inet_csk(sk)->icsk_mtup.probe_timestamp = 0; +} + +static inline void mptcp_set_close_tout(struct sock *sk, unsigned long tout) +{ + /* avoid 0 timestamp, as that means no close timeout */ + inet_csk(sk)->icsk_mtup.probe_timestamp = tout ? : 1; +} + +static inline void mptcp_start_tout_timer(struct sock *sk) +{ + mptcp_set_close_tout(sk, tcp_jiffies32); + mptcp_reset_tout_timer(mptcp_sk(sk), 0); +} + static inline bool mptcp_is_fully_established(struct sock *sk) { return inet_sk_state_load(sk) == TCP_ESTABLISHED && only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/mptcp/subflow.c +++ linux-oracle-6.5-6.5.0/net/mptcp/subflow.c @@ -1226,7 +1226,7 @@ WRITE_ONCE(subflow->fail_tout, fail_tout); tcp_send_ack(ssk); - mptcp_reset_timeout(msk, subflow->fail_tout); + mptcp_reset_tout_timer(msk, subflow->fail_tout); } static bool subflow_check_data_avail(struct sock *ssk) @@ -1362,42 +1362,6 @@ *full_space = tcp_full_space(sk); } -void __mptcp_error_report(struct sock *sk) -{ - struct mptcp_subflow_context *subflow; - struct mptcp_sock *msk = mptcp_sk(sk); - - mptcp_for_each_subflow(msk, subflow) { - struct sock *ssk = mptcp_subflow_tcp_sock(subflow); - int err = sock_error(ssk); - int ssk_state; - - if (!err) - continue; - - /* only propagate errors on fallen-back sockets or - * on MPC connect - */ - if (sk->sk_state != TCP_SYN_SENT && !__mptcp_check_fallback(msk)) - continue; - - /* We need to propagate only transition to CLOSE state. - * Orphaned socket will see such state change via - * subflow_sched_work_if_closed() and that path will properly - * destroy the msk as needed. - */ - ssk_state = inet_sk_state_load(ssk); - if (ssk_state == TCP_CLOSE && !sock_flag(sk, SOCK_DEAD)) - inet_sk_state_store(sk, ssk_state); - WRITE_ONCE(sk->sk_err, -err); - - /* This barrier is coupled with smp_rmb() in mptcp_poll() */ - smp_wmb(); - sk_error_report(sk); - break; - } -} - static void subflow_error_report(struct sock *ssk) { struct sock *sk = mptcp_subflow_ctx(ssk)->conn; @@ -1588,6 +1552,7 @@ mptcp_sock_graft(ssk, sk->sk_socket); iput(SOCK_INODE(sf)); WRITE_ONCE(msk->allow_infinite_fallback, false); + mptcp_stop_tout_timer(sk); return 0; failed_unlink: @@ -1991,9 +1956,15 @@ static void tcp_release_cb_override(struct sock *ssk) { struct mptcp_subflow_context *subflow = mptcp_subflow_ctx(ssk); + long status; - if (mptcp_subflow_has_delegated_action(subflow)) - mptcp_subflow_process_delegated(ssk); + /* process and clear all the pending actions, but leave the subflow into + * the napi queue. To respect locking, only the same CPU that originated + * the action can touch the list. mptcp_napi_poll will take care of it. + */ + status = set_mask_bits(&subflow->delegated_status, MPTCP_DELEGATE_ACTIONS_MASK, 0); + if (status) + mptcp_subflow_process_delegated(ssk, status); tcp_release_cb(ssk); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/ncsi/ncsi-aen.c +++ linux-oracle-6.5-6.5.0/net/ncsi/ncsi-aen.c @@ -89,6 +89,11 @@ if ((had_link == has_link) || chained) return 0; + if (had_link) + netif_carrier_off(ndp->ndev.dev); + else + netif_carrier_on(ndp->ndev.dev); + if (!ndp->multi_package && !nc->package->multi_channel) { if (had_link) { ndp->flags |= NCSI_DEV_RESHUFFLE; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/ipvs/ip_vs_sync.c +++ linux-oracle-6.5-6.5.0/net/netfilter/ipvs/ip_vs_sync.c @@ -1441,7 +1441,7 @@ sin.sin_addr.s_addr = addr; sin.sin_port = 0; - return sock->ops->bind(sock, (struct sockaddr*)&sin, sizeof(sin)); + return kernel_bind(sock, (struct sockaddr *)&sin, sizeof(sin)); } static void get_mcast_sockaddr(union ipvs_sockaddr *sa, int *salen, @@ -1507,8 +1507,8 @@ } get_mcast_sockaddr(&mcast_addr, &salen, &ipvs->mcfg, id); - result = sock->ops->connect(sock, (struct sockaddr *) &mcast_addr, - salen, 0); + result = kernel_connect(sock, (struct sockaddr *)&mcast_addr, + salen, 0); if (result < 0) { pr_err("Error connecting to the multicast addr\n"); goto error; @@ -1548,7 +1548,7 @@ get_mcast_sockaddr(&mcast_addr, &salen, &ipvs->bcfg, id); sock->sk->sk_bound_dev_if = dev->ifindex; - result = sock->ops->bind(sock, (struct sockaddr *)&mcast_addr, salen); + result = kernel_bind(sock, (struct sockaddr *)&mcast_addr, salen); if (result < 0) { pr_err("Error binding to the multicast addr\n"); goto error; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/nf_conntrack_bpf.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nf_conntrack_bpf.c @@ -380,6 +380,8 @@ struct nf_conn *nfct = (struct nf_conn *)nfct_i; int err; + if (!nf_ct_is_confirmed(nfct)) + nfct->timeout += nfct_time_stamp; nfct->status |= IPS_CONFIRMED; err = nf_conntrack_hash_check_insert(nfct); if (err < 0) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/nf_conntrack_extend.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nf_conntrack_extend.c @@ -40,10 +40,10 @@ [NF_CT_EXT_ECACHE] = sizeof(struct nf_conntrack_ecache), #endif #ifdef CONFIG_NF_CONNTRACK_TIMESTAMP - [NF_CT_EXT_TSTAMP] = sizeof(struct nf_conn_acct), + [NF_CT_EXT_TSTAMP] = sizeof(struct nf_conn_tstamp), #endif #ifdef CONFIG_NF_CONNTRACK_TIMEOUT - [NF_CT_EXT_TIMEOUT] = sizeof(struct nf_conn_tstamp), + [NF_CT_EXT_TIMEOUT] = sizeof(struct nf_conn_timeout), #endif #ifdef CONFIG_NF_CONNTRACK_LABELS [NF_CT_EXT_LABELS] = sizeof(struct nf_conn_labels), only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/nf_conntrack_proto_sctp.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nf_conntrack_proto_sctp.c @@ -112,7 +112,7 @@ /* shutdown_ack */ {sSA, sCL, sCW, sCE, sES, sSA, sSA, sSA, sSA}, /* error */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sCL},/* Can't have Stale cookie*/ /* cookie_echo */ {sCL, sCL, sCE, sCE, sES, sSS, sSR, sSA, sCL},/* 5.2.4 - Big TODO */ -/* cookie_ack */ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sCL},/* Can't come in orig dir */ +/* cookie_ack */ {sCL, sCL, sCW, sES, sES, sSS, sSR, sSA, sCL},/* Can't come in orig dir */ /* shutdown_comp*/ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sCL, sCL}, /* heartbeat */ {sHS, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS}, /* heartbeat_ack*/ {sCL, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS}, @@ -126,7 +126,7 @@ /* shutdown */ {sIV, sCL, sCW, sCE, sSR, sSS, sSR, sSA, sIV}, /* shutdown_ack */ {sIV, sCL, sCW, sCE, sES, sSA, sSA, sSA, sIV}, /* error */ {sIV, sCL, sCW, sCL, sES, sSS, sSR, sSA, sIV}, -/* cookie_echo */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sIV},/* Can't come in reply dir */ +/* cookie_echo */ {sIV, sCL, sCE, sCE, sES, sSS, sSR, sSA, sIV},/* Can't come in reply dir */ /* cookie_ack */ {sIV, sCL, sCW, sES, sES, sSS, sSR, sSA, sIV}, /* shutdown_comp*/ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sCL, sIV}, /* heartbeat */ {sIV, sCL, sCW, sCE, sES, sSS, sSR, sSA, sHS}, @@ -412,6 +412,9 @@ /* (D) vtag must be same as init_vtag as found in INIT_ACK */ if (sh->vtag != ct->proto.sctp.vtag[dir]) goto out_unlock; + } else if (sch->type == SCTP_CID_COOKIE_ACK) { + ct->proto.sctp.init[dir] = 0; + ct->proto.sctp.init[!dir] = 0; } else if (sch->type == SCTP_CID_HEARTBEAT) { if (ct->proto.sctp.vtag[dir] == 0) { pr_debug("Setting %d vtag %x for dir %d\n", sch->type, sh->vtag, dir); @@ -461,16 +464,18 @@ } /* If it is an INIT or an INIT ACK note down the vtag */ - if (sch->type == SCTP_CID_INIT || - sch->type == SCTP_CID_INIT_ACK) { - struct sctp_inithdr _inithdr, *ih; + if (sch->type == SCTP_CID_INIT) { + struct sctp_inithdr _ih, *ih; - ih = skb_header_pointer(skb, offset + sizeof(_sch), - sizeof(_inithdr), &_inithdr); - if (ih == NULL) + ih = skb_header_pointer(skb, offset + sizeof(_sch), sizeof(*ih), &_ih); + if (!ih) goto out_unlock; - pr_debug("Setting vtag %x for dir %d\n", - ih->init_tag, !dir); + + if (ct->proto.sctp.init[dir] && ct->proto.sctp.init[!dir]) + ct->proto.sctp.init[!dir] = 0; + ct->proto.sctp.init[dir] = 1; + + pr_debug("Setting vtag %x for dir %d\n", ih->init_tag, !dir); ct->proto.sctp.vtag[!dir] = ih->init_tag; /* don't renew timeout on init retransmit so @@ -481,6 +486,24 @@ old_state == SCTP_CONNTRACK_CLOSED && nf_ct_is_confirmed(ct)) ignore = true; + } else if (sch->type == SCTP_CID_INIT_ACK) { + struct sctp_inithdr _ih, *ih; + __be32 vtag; + + ih = skb_header_pointer(skb, offset + sizeof(_sch), sizeof(*ih), &_ih); + if (!ih) + goto out_unlock; + + vtag = ct->proto.sctp.vtag[!dir]; + if (!ct->proto.sctp.init[!dir] && vtag && vtag != ih->init_tag) + goto out_unlock; + /* collision */ + if (ct->proto.sctp.init[dir] && ct->proto.sctp.init[!dir] && + vtag != ih->init_tag) + goto out_unlock; + + pr_debug("Setting vtag %x for dir %d\n", ih->init_tag, !dir); + ct->proto.sctp.vtag[!dir] = ih->init_tag; } ct->proto.sctp.state = new_state; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/nft_dynset.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nft_dynset.c @@ -279,10 +279,15 @@ priv->expr_array[i] = dynset_expr; priv->num_exprs++; - if (set->num_exprs && - dynset_expr->ops != set->exprs[i]->ops) { - err = -EOPNOTSUPP; - goto err_expr_free; + if (set->num_exprs) { + if (i >= set->num_exprs) { + err = -EINVAL; + goto err_expr_free; + } + if (dynset_expr->ops != set->exprs[i]->ops) { + err = -EOPNOTSUPP; + goto err_expr_free; + } } i++; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/nft_inner.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nft_inner.c @@ -298,6 +298,7 @@ int err; if (!tb[NFTA_INNER_FLAGS] || + !tb[NFTA_INNER_NUM] || !tb[NFTA_INNER_HDRSIZE] || !tb[NFTA_INNER_TYPE] || !tb[NFTA_INNER_EXPR]) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/nft_payload.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nft_payload.c @@ -154,6 +154,17 @@ return pkt->inneroff; } +static bool nft_payload_need_vlan_copy(const struct nft_payload *priv) +{ + unsigned int len = priv->offset + priv->len; + + /* data past ether src/dst requested, copy needed */ + if (len > offsetof(struct ethhdr, h_proto)) + return true; + + return false; +} + void nft_payload_eval(const struct nft_expr *expr, struct nft_regs *regs, const struct nft_pktinfo *pkt) @@ -172,7 +183,7 @@ goto err; if (skb_vlan_tag_present(skb) && - priv->offset >= offsetof(struct ethhdr, h_proto)) { + nft_payload_need_vlan_copy(priv)) { if (!nft_payload_copy_vlan(dest, skb, priv->offset, priv->len)) goto err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/nft_set_hash.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nft_set_hash.c @@ -338,12 +338,9 @@ while ((he = rhashtable_walk_next(&hti))) { if (IS_ERR(he)) { - if (PTR_ERR(he) != -EAGAIN) { - nft_trans_gc_destroy(gc); - gc = NULL; - goto try_later; - } - continue; + nft_trans_gc_destroy(gc); + gc = NULL; + goto try_later; } /* Ruleset has been updated, try later. */ @@ -372,7 +369,7 @@ nft_trans_gc_elem_add(gc, he); } - gc = nft_trans_gc_catchall(gc, gc_seq); + gc = nft_trans_gc_catchall_async(gc, gc_seq); try_later: /* catchall list iteration requires rcu read side lock. */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netfilter/nft_set_pipapo.c +++ linux-oracle-6.5-6.5.0/net/netfilter/nft_set_pipapo.c @@ -1596,7 +1596,7 @@ gc = nft_trans_gc_queue_sync(gc, GFP_ATOMIC); if (!gc) - break; + return; nft_pipapo_gc_deactivate(net, set, e); pipapo_drop(m, rulemap); @@ -1610,7 +1610,7 @@ } } - gc = nft_trans_gc_catchall(gc, 0); + gc = nft_trans_gc_catchall_sync(gc); if (gc) { nft_trans_gc_queue_sync_done(gc); priv->last_gc = jiffies; @@ -2041,6 +2041,9 @@ e = f->mt[r].e; + if (!nft_set_elem_active(&e->ext, iter->genmask)) + goto cont; + elem.priv = e; iter->err = iter->fn(ctx, set, iter, &elem); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netlink/af_netlink.c +++ linux-oracle-6.5-6.5.0/net/netlink/af_netlink.c @@ -84,7 +84,7 @@ static inline int netlink_is_kernel(struct sock *sk) { - return nlk_sk(sk)->flags & NETLINK_F_KERNEL_SOCKET; + return nlk_test_bit(KERNEL_SOCKET, sk); } struct netlink_table *nl_table __read_mostly; @@ -349,12 +349,10 @@ static void netlink_overrun(struct sock *sk) { - struct netlink_sock *nlk = nlk_sk(sk); - - if (!(nlk->flags & NETLINK_F_RECV_NO_ENOBUFS)) { + if (!nlk_test_bit(RECV_NO_ENOBUFS, sk)) { if (!test_and_set_bit(NETLINK_S_CONGESTED, &nlk_sk(sk)->state)) { - sk->sk_err = ENOBUFS; + WRITE_ONCE(sk->sk_err, ENOBUFS); sk_error_report(sk); } } @@ -1402,9 +1400,7 @@ bool netlink_strict_get_check(struct sk_buff *skb) { - const struct netlink_sock *nlk = nlk_sk(NETLINK_CB(skb).sk); - - return nlk->flags & NETLINK_F_STRICT_CHK; + return nlk_test_bit(STRICT_CHK, NETLINK_CB(skb).sk); } EXPORT_SYMBOL_GPL(netlink_strict_get_check); @@ -1448,7 +1444,7 @@ return; if (!net_eq(sock_net(sk), p->net)) { - if (!(nlk->flags & NETLINK_F_LISTEN_ALL_NSID)) + if (!nlk_test_bit(LISTEN_ALL_NSID, sk)) return; if (!peernet_has_id(sock_net(sk), p->net)) @@ -1481,7 +1477,7 @@ netlink_overrun(sk); /* Clone failed. Notify ALL listeners. */ p->failure = 1; - if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR) + if (nlk_test_bit(BROADCAST_SEND_ERROR, sk)) p->delivery_failure = 1; goto out; } @@ -1496,7 +1492,7 @@ val = netlink_broadcast_deliver(sk, p->skb2); if (val < 0) { netlink_overrun(sk); - if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR) + if (nlk_test_bit(BROADCAST_SEND_ERROR, sk)) p->delivery_failure = 1; } else { p->congested |= val; @@ -1576,12 +1572,12 @@ !test_bit(p->group - 1, nlk->groups)) goto out; - if (p->code == ENOBUFS && nlk->flags & NETLINK_F_RECV_NO_ENOBUFS) { + if (p->code == ENOBUFS && nlk_test_bit(RECV_NO_ENOBUFS, sk)) { ret = 1; goto out; } - sk->sk_err = p->code; + WRITE_ONCE(sk->sk_err, p->code); sk_error_report(sk); out: return ret; @@ -1643,7 +1639,7 @@ struct sock *sk = sock->sk; struct netlink_sock *nlk = nlk_sk(sk); unsigned int val = 0; - int err; + int nr = -1; if (level != SOL_NETLINK) return -ENOPROTOOPT; @@ -1654,14 +1650,12 @@ switch (optname) { case NETLINK_PKTINFO: - if (val) - nlk->flags |= NETLINK_F_RECV_PKTINFO; - else - nlk->flags &= ~NETLINK_F_RECV_PKTINFO; - err = 0; + nr = NETLINK_F_RECV_PKTINFO; break; case NETLINK_ADD_MEMBERSHIP: case NETLINK_DROP_MEMBERSHIP: { + int err; + if (!netlink_allowed(sock, NL_CFG_F_NONROOT_RECV)) return -EPERM; err = netlink_realloc_groups(sk); @@ -1681,61 +1675,38 @@ if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind) nlk->netlink_unbind(sock_net(sk), val); - err = 0; break; } case NETLINK_BROADCAST_ERROR: - if (val) - nlk->flags |= NETLINK_F_BROADCAST_SEND_ERROR; - else - nlk->flags &= ~NETLINK_F_BROADCAST_SEND_ERROR; - err = 0; + nr = NETLINK_F_BROADCAST_SEND_ERROR; break; case NETLINK_NO_ENOBUFS: + assign_bit(NETLINK_F_RECV_NO_ENOBUFS, &nlk->flags, val); if (val) { - nlk->flags |= NETLINK_F_RECV_NO_ENOBUFS; clear_bit(NETLINK_S_CONGESTED, &nlk->state); wake_up_interruptible(&nlk->wait); - } else { - nlk->flags &= ~NETLINK_F_RECV_NO_ENOBUFS; } - err = 0; break; case NETLINK_LISTEN_ALL_NSID: if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_BROADCAST)) return -EPERM; - - if (val) - nlk->flags |= NETLINK_F_LISTEN_ALL_NSID; - else - nlk->flags &= ~NETLINK_F_LISTEN_ALL_NSID; - err = 0; + nr = NETLINK_F_LISTEN_ALL_NSID; break; case NETLINK_CAP_ACK: - if (val) - nlk->flags |= NETLINK_F_CAP_ACK; - else - nlk->flags &= ~NETLINK_F_CAP_ACK; - err = 0; + nr = NETLINK_F_CAP_ACK; break; case NETLINK_EXT_ACK: - if (val) - nlk->flags |= NETLINK_F_EXT_ACK; - else - nlk->flags &= ~NETLINK_F_EXT_ACK; - err = 0; + nr = NETLINK_F_EXT_ACK; break; case NETLINK_GET_STRICT_CHK: - if (val) - nlk->flags |= NETLINK_F_STRICT_CHK; - else - nlk->flags &= ~NETLINK_F_STRICT_CHK; - err = 0; + nr = NETLINK_F_STRICT_CHK; break; default: - err = -ENOPROTOOPT; + return -ENOPROTOOPT; } - return err; + if (nr >= 0) + assign_bit(nr, &nlk->flags, val); + return 0; } static int netlink_getsockopt(struct socket *sock, int level, int optname, @@ -1802,7 +1773,7 @@ return -EINVAL; len = sizeof(int); - val = nlk->flags & flag ? 1 : 0; + val = test_bit(flag, &nlk->flags); if (put_user(len, optlen) || copy_to_user(optval, &val, len)) @@ -1979,9 +1950,9 @@ msg->msg_namelen = sizeof(*addr); } - if (nlk->flags & NETLINK_F_RECV_PKTINFO) + if (nlk_test_bit(RECV_PKTINFO, sk)) netlink_cmsg_recv_pktinfo(msg, skb); - if (nlk->flags & NETLINK_F_LISTEN_ALL_NSID) + if (nlk_test_bit(LISTEN_ALL_NSID, sk)) netlink_cmsg_listen_all_nsid(sk, msg, skb); memset(&scm, 0, sizeof(scm)); @@ -1995,7 +1966,7 @@ atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) { ret = netlink_dump(sk); if (ret) { - sk->sk_err = -ret; + WRITE_ONCE(sk->sk_err, -ret); sk_error_report(sk); } } @@ -2058,7 +2029,7 @@ goto out_sock_release; nlk = nlk_sk(sk); - nlk->flags |= NETLINK_F_KERNEL_SOCKET; + set_bit(NETLINK_F_KERNEL_SOCKET, &nlk->flags); netlink_table_grab(); if (!nl_table[unit].registered) { @@ -2192,7 +2163,7 @@ nl_dump_check_consistent(cb, nlh); memcpy(nlmsg_data(nlh), &nlk->dump_done_errno, sizeof(nlk->dump_done_errno)); - if (extack->_msg && nlk->flags & NETLINK_F_EXT_ACK) { + if (extack->_msg && test_bit(NETLINK_F_EXT_ACK, &nlk->flags)) { nlh->nlmsg_flags |= NLM_F_ACK_TLVS; if (!nla_put_string(skb, NLMSGERR_ATTR_MSG, extack->_msg)) nlmsg_end(skb, nlh); @@ -2321,8 +2292,8 @@ const struct nlmsghdr *nlh, struct netlink_dump_control *control) { - struct netlink_sock *nlk, *nlk2; struct netlink_callback *cb; + struct netlink_sock *nlk; struct sock *sk; int ret; @@ -2357,8 +2328,7 @@ cb->min_dump_alloc = control->min_dump_alloc; cb->skb = skb; - nlk2 = nlk_sk(NETLINK_CB(skb).sk); - cb->strict_check = !!(nlk2->flags & NETLINK_F_STRICT_CHK); + cb->strict_check = nlk_test_bit(STRICT_CHK, NETLINK_CB(skb).sk); if (control->start) { cb->extack = control->extack; @@ -2402,7 +2372,7 @@ { size_t tlvlen; - if (!extack || !(nlk->flags & NETLINK_F_EXT_ACK)) + if (!extack || !test_bit(NETLINK_F_EXT_ACK, &nlk->flags)) return 0; tlvlen = 0; @@ -2474,7 +2444,7 @@ * requests to cap the error message, and get extra error data if * requested. */ - if (err && !(nlk->flags & NETLINK_F_CAP_ACK)) + if (err && !test_bit(NETLINK_F_CAP_ACK, &nlk->flags)) payload += nlmsg_len(nlh); else flags |= NLM_F_CAPPED; @@ -2515,7 +2485,7 @@ err_bad_put: nlmsg_free(skb); err_skb: - NETLINK_CB(in_skb).sk->sk_err = ENOBUFS; + WRITE_ONCE(NETLINK_CB(in_skb).sk->sk_err, ENOBUFS); sk_error_report(NETLINK_CB(in_skb).sk); } EXPORT_SYMBOL(netlink_ack); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netlink/af_netlink.h +++ linux-oracle-6.5-6.5.0/net/netlink/af_netlink.h @@ -8,14 +8,16 @@ #include /* flags */ -#define NETLINK_F_KERNEL_SOCKET 0x1 -#define NETLINK_F_RECV_PKTINFO 0x2 -#define NETLINK_F_BROADCAST_SEND_ERROR 0x4 -#define NETLINK_F_RECV_NO_ENOBUFS 0x8 -#define NETLINK_F_LISTEN_ALL_NSID 0x10 -#define NETLINK_F_CAP_ACK 0x20 -#define NETLINK_F_EXT_ACK 0x40 -#define NETLINK_F_STRICT_CHK 0x80 +enum { + NETLINK_F_KERNEL_SOCKET, + NETLINK_F_RECV_PKTINFO, + NETLINK_F_BROADCAST_SEND_ERROR, + NETLINK_F_RECV_NO_ENOBUFS, + NETLINK_F_LISTEN_ALL_NSID, + NETLINK_F_CAP_ACK, + NETLINK_F_EXT_ACK, + NETLINK_F_STRICT_CHK, +}; #define NLGRPSZ(x) (ALIGN(x, sizeof(unsigned long) * 8) / 8) #define NLGRPLONGS(x) (NLGRPSZ(x)/sizeof(unsigned long)) @@ -23,10 +25,10 @@ struct netlink_sock { /* struct sock has to be the first member of netlink_sock */ struct sock sk; + unsigned long flags; u32 portid; u32 dst_portid; u32 dst_group; - u32 flags; u32 subscriptions; u32 ngroups; unsigned long *groups; @@ -54,6 +56,8 @@ return container_of(sk, struct netlink_sock, sk); } +#define nlk_test_bit(nr, sk) test_bit(NETLINK_F_##nr, &nlk_sk(sk)->flags) + struct netlink_table { struct rhashtable hash; struct hlist_head mc_list; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/netlink/diag.c +++ linux-oracle-6.5-6.5.0/net/netlink/diag.c @@ -27,15 +27,15 @@ if (nlk->cb_running) flags |= NDIAG_FLAG_CB_RUNNING; - if (nlk->flags & NETLINK_F_RECV_PKTINFO) + if (nlk_test_bit(RECV_PKTINFO, sk)) flags |= NDIAG_FLAG_PKTINFO; - if (nlk->flags & NETLINK_F_BROADCAST_SEND_ERROR) + if (nlk_test_bit(BROADCAST_SEND_ERROR, sk)) flags |= NDIAG_FLAG_BROADCAST_ERROR; - if (nlk->flags & NETLINK_F_RECV_NO_ENOBUFS) + if (nlk_test_bit(RECV_NO_ENOBUFS, sk)) flags |= NDIAG_FLAG_NO_ENOBUFS; - if (nlk->flags & NETLINK_F_LISTEN_ALL_NSID) + if (nlk_test_bit(LISTEN_ALL_NSID, sk)) flags |= NDIAG_FLAG_LISTEN_ALL_NSID; - if (nlk->flags & NETLINK_F_CAP_ACK) + if (nlk_test_bit(CAP_ACK, sk)) flags |= NDIAG_FLAG_CAP_ACK; return nla_put_u32(skb, NETLINK_DIAG_FLAGS, flags); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/nfc/llcp_core.c +++ linux-oracle-6.5-6.5.0/net/nfc/llcp_core.c @@ -203,17 +203,13 @@ if (tmp_sock->ssap == ssap && tmp_sock->dsap == dsap) { llcp_sock = tmp_sock; + sock_hold(&llcp_sock->sk); break; } } read_unlock(&local->sockets.lock); - if (llcp_sock == NULL) - return NULL; - - sock_hold(&llcp_sock->sk); - return llcp_sock; } @@ -346,7 +342,8 @@ static struct nfc_llcp_sock *nfc_llcp_sock_from_sn(struct nfc_llcp_local *local, - const u8 *sn, size_t sn_len) + const u8 *sn, size_t sn_len, + bool needref) { struct sock *sk; struct nfc_llcp_sock *llcp_sock, *tmp_sock; @@ -382,6 +379,8 @@ if (memcmp(sn, tmp_sock->service_name, sn_len) == 0) { llcp_sock = tmp_sock; + if (needref) + sock_hold(&llcp_sock->sk); break; } } @@ -423,7 +422,8 @@ * to this service name. */ if (nfc_llcp_sock_from_sn(local, sock->service_name, - sock->service_name_len) != NULL) { + sock->service_name_len, + false) != NULL) { mutex_unlock(&local->sdp_lock); return LLCP_SAP_MAX; @@ -824,16 +824,7 @@ static struct nfc_llcp_sock *nfc_llcp_sock_get_sn(struct nfc_llcp_local *local, const u8 *sn, size_t sn_len) { - struct nfc_llcp_sock *llcp_sock; - - llcp_sock = nfc_llcp_sock_from_sn(local, sn, sn_len); - - if (llcp_sock == NULL) - return NULL; - - sock_hold(&llcp_sock->sk); - - return llcp_sock; + return nfc_llcp_sock_from_sn(local, sn, sn_len, true); } static const u8 *nfc_llcp_connect_sn(const struct sk_buff *skb, size_t *sn_len) @@ -1298,7 +1289,8 @@ } llcp_sock = nfc_llcp_sock_from_sn(local, service_name, - service_name_len); + service_name_len, + true); if (!llcp_sock) { sap = 0; goto add_snl; @@ -1318,6 +1310,7 @@ if (sap == LLCP_SAP_MAX) { sap = 0; + nfc_llcp_sock_put(llcp_sock); goto add_snl; } @@ -1335,6 +1328,7 @@ pr_debug("%p %d\n", llcp_sock, sap); + nfc_llcp_sock_put(llcp_sock); add_snl: sdp = nfc_llcp_build_sdres_tlv(tid, sap); if (sdp == NULL) @@ -1636,7 +1630,9 @@ timer_setup(&local->sdreq_timer, nfc_llcp_sdreq_timer, 0); INIT_WORK(&local->sdreq_timeout_work, nfc_llcp_sdreq_timeout_work); + spin_lock(&llcp_devices_lock); list_add(&local->list, &llcp_devices); + spin_unlock(&llcp_devices_lock); return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/nfc/nci/core.c +++ linux-oracle-6.5-6.5.0/net/nfc/nci/core.c @@ -909,6 +909,11 @@ return -EINVAL; } + if (protocol >= NFC_PROTO_MAX) { + pr_err("the requested nfc protocol is invalid\n"); + return -EINVAL; + } + if (!(nci_target->supported_protocols & (1 << protocol))) { pr_err("target does not support the requested protocol 0x%x\n", protocol); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/packet/af_packet.c +++ linux-oracle-6.5-6.5.0/net/packet/af_packet.c @@ -3605,7 +3605,12 @@ if (dev) { sll->sll_hatype = dev->type; sll->sll_halen = dev->addr_len; - memcpy(sll->sll_addr_flex, dev->dev_addr, dev->addr_len); + + /* Let __fortify_memcpy_chk() know the actual buffer size. */ + memcpy(((struct sockaddr_storage *)sll)->__data + + offsetof(struct sockaddr_ll, sll_addr) - + offsetofend(struct sockaddr_ll, sll_family), + dev->dev_addr, dev->addr_len); } else { sll->sll_hatype = 0; /* Bad: we have no ARPHRD_UNSPEC */ sll->sll_halen = 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/rds/rdma_transport.c +++ linux-oracle-6.5-6.5.0/net/rds/rdma_transport.c @@ -86,11 +86,13 @@ break; case RDMA_CM_EVENT_ADDR_RESOLVED: - rdma_set_service_type(cm_id, conn->c_tos); - rdma_set_min_rnr_timer(cm_id, IB_RNR_TIMER_000_32); - /* XXX do we need to clean up if this fails? */ - ret = rdma_resolve_route(cm_id, - RDS_RDMA_RESOLVE_TIMEOUT_MS); + if (conn) { + rdma_set_service_type(cm_id, conn->c_tos); + rdma_set_min_rnr_timer(cm_id, IB_RNR_TIMER_000_32); + /* XXX do we need to clean up if this fails? */ + ret = rdma_resolve_route(cm_id, + RDS_RDMA_RESOLVE_TIMEOUT_MS); + } break; case RDMA_CM_EVENT_ROUTE_RESOLVED: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/rds/tcp_connect.c +++ linux-oracle-6.5-6.5.0/net/rds/tcp_connect.c @@ -145,7 +145,7 @@ addrlen = sizeof(sin); } - ret = sock->ops->bind(sock, addr, addrlen); + ret = kernel_bind(sock, addr, addrlen); if (ret) { rdsdebug("bind failed with %d at address %pI6c\n", ret, &conn->c_laddr); @@ -173,7 +173,7 @@ * own the socket */ rds_tcp_set_callbacks(sock, cp); - ret = sock->ops->connect(sock, addr, addrlen, O_NONBLOCK); + ret = kernel_connect(sock, addr, addrlen, O_NONBLOCK); rdsdebug("connect to address %pI6c returned %d\n", &conn->c_faddr, ret); if (ret == -EINPROGRESS) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/rds/tcp_listen.c +++ linux-oracle-6.5-6.5.0/net/rds/tcp_listen.c @@ -306,7 +306,7 @@ addr_len = sizeof(*sin); } - ret = sock->ops->bind(sock, (struct sockaddr *)&ss, addr_len); + ret = kernel_bind(sock, (struct sockaddr *)&ss, addr_len); if (ret < 0) { rdsdebug("could not bind %s listener socket: %d\n", isv6 ? "IPv6" : "IPv4", ret); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/sched/sch_fq_pie.c +++ linux-oracle-6.5-6.5.0/net/sched/sch_fq_pie.c @@ -61,6 +61,7 @@ struct pie_params p_params; u32 ecn_prob; u32 flows_cnt; + u32 flows_cursor; u32 quantum; u32 memory_limit; u32 new_flow_count; @@ -375,22 +376,32 @@ static void fq_pie_timer(struct timer_list *t) { struct fq_pie_sched_data *q = from_timer(q, t, adapt_timer); + unsigned long next, tupdate; struct Qdisc *sch = q->sch; spinlock_t *root_lock; /* to lock qdisc for probability calculations */ - u32 idx; + int max_cnt, i; rcu_read_lock(); root_lock = qdisc_lock(qdisc_root_sleeping(sch)); spin_lock(root_lock); - for (idx = 0; idx < q->flows_cnt; idx++) - pie_calculate_probability(&q->p_params, &q->flows[idx].vars, - q->flows[idx].backlog); - - /* reset the timer to fire after 'tupdate' jiffies. */ - if (q->p_params.tupdate) - mod_timer(&q->adapt_timer, jiffies + q->p_params.tupdate); - + /* Limit this expensive loop to 2048 flows per round. */ + max_cnt = min_t(int, q->flows_cnt - q->flows_cursor, 2048); + for (i = 0; i < max_cnt; i++) { + pie_calculate_probability(&q->p_params, + &q->flows[q->flows_cursor].vars, + q->flows[q->flows_cursor].backlog); + q->flows_cursor++; + } + + tupdate = q->p_params.tupdate; + next = 0; + if (q->flows_cursor >= q->flows_cnt) { + q->flows_cursor = 0; + next = tupdate; + } + if (tupdate) + mod_timer(&q->adapt_timer, jiffies + next); spin_unlock(root_lock); rcu_read_unlock(); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/sctp/associola.c +++ linux-oracle-6.5-6.5.0/net/sctp/associola.c @@ -1159,8 +1159,7 @@ /* Add any peer addresses from the new association. */ list_for_each_entry(trans, &new->peer.transport_addr_list, transports) - if (!sctp_assoc_lookup_paddr(asoc, &trans->ipaddr) && - !sctp_assoc_add_peer(asoc, &trans->ipaddr, + if (!sctp_assoc_add_peer(asoc, &trans->ipaddr, GFP_ATOMIC, trans->state)) return -ENOMEM; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/sctp/proc.c +++ linux-oracle-6.5-6.5.0/net/sctp/proc.c @@ -282,7 +282,7 @@ assoc->init_retries, assoc->shutdown_retries, assoc->rtx_data_chunks, refcount_read(&sk->sk_wmem_alloc), - sk->sk_wmem_queued, + READ_ONCE(sk->sk_wmem_queued), sk->sk_sndbuf, sk->sk_rcvbuf); seq_printf(seq, "\n"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/smc/Kconfig +++ linux-oracle-6.5-6.5.0/net/smc/Kconfig @@ -2,6 +2,7 @@ config SMC tristate "SMC socket protocol family" depends on INET && INFINIBAND + depends on m || ISM != m help SMC-R provides a "sockets over RDMA" solution making use of RDMA over Converged Ethernet (RoCE) technology to upgrade only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/smc/smc_core.c +++ linux-oracle-6.5-6.5.0/net/smc/smc_core.c @@ -1654,6 +1654,7 @@ { struct smc_link_group *lgr, *n; + spin_lock_bh(&smc_lgr_list.lock); list_for_each_entry_safe(lgr, n, &smc_lgr_list.list, list) { struct smc_link *link; @@ -1669,6 +1670,7 @@ if (link) smc_llc_add_link_local(link); } + spin_unlock_bh(&smc_lgr_list.lock); } /* link is down - switch connections to alternate link, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/sunrpc/clnt.c +++ linux-oracle-6.5-6.5.0/net/sunrpc/clnt.c @@ -2474,8 +2474,7 @@ goto out_exit; } task->tk_action = call_encode; - if (status != -ECONNRESET && status != -ECONNABORTED) - rpc_check_timeout(task); + rpc_check_timeout(task); return; out_exit: rpc_call_rpcerror(task, status); @@ -2722,7 +2721,7 @@ out_verifier: trace_rpc_bad_verifier(task); - goto out_err; + goto out_garbage; out_msg_denied: error = -EACCES; @@ -2748,6 +2747,7 @@ case rpc_autherr_rejectedverf: case rpcsec_gsserr_credproblem: case rpcsec_gsserr_ctxproblem: + rpcauth_invalcred(task); if (!task->tk_cred_retry) break; task->tk_cred_retry--; @@ -2904,19 +2904,22 @@ * @clnt: pointer to struct rpc_clnt * @xps: pointer to struct rpc_xprt_switch, * @xprt: pointer struct rpc_xprt - * @dummy: unused + * @in_max_connect: pointer to the max_connect value for the passed in xprt transport */ int rpc_clnt_test_and_add_xprt(struct rpc_clnt *clnt, struct rpc_xprt_switch *xps, struct rpc_xprt *xprt, - void *dummy) + void *in_max_connect) { struct rpc_cb_add_xprt_calldata *data; struct rpc_task *task; + int max_connect = clnt->cl_max_connect; - if (xps->xps_nunique_destaddr_xprts + 1 > clnt->cl_max_connect) { + if (in_max_connect) + max_connect = *(int *)in_max_connect; + if (xps->xps_nunique_destaddr_xprts + 1 > max_connect) { rcu_read_lock(); pr_warn("SUNRPC: reached max allowed number (%d) did not add " - "transport to server: %s\n", clnt->cl_max_connect, + "transport to server: %s\n", max_connect, rpc_peeraddr2str(clnt, RPC_DISPLAY_ADDR)); rcu_read_unlock(); return -EINVAL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/tipc/crypto.c +++ linux-oracle-6.5-6.5.0/net/tipc/crypto.c @@ -1441,14 +1441,14 @@ struct tipc_crypto *tx = tipc_net(net)->crypto_tx; struct tipc_key key; - spin_lock(&tx->lock); + spin_lock_bh(&tx->lock); key = tx->key; WARN_ON(!key.active || tx_key != key.active); /* Free the active key */ tipc_crypto_key_set_state(tx, key.passive, 0, key.pending); tipc_crypto_key_detach(tx->aead[key.active], &tx->lock); - spin_unlock(&tx->lock); + spin_unlock_bh(&tx->lock); pr_warn("%s: key is revoked\n", tx->name); return -EKEYREVOKED; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/tls/tls_sw.c +++ linux-oracle-6.5-6.5.0/net/tls/tls_sw.c @@ -817,7 +817,7 @@ psock = sk_psock_get(sk); if (!psock || !policy) { err = tls_push_record(sk, flags, record_type); - if (err && sk->sk_err == EBADMSG) { + if (err && err != -EINPROGRESS && sk->sk_err == EBADMSG) { *copied -= sk_msg_free(sk, msg); tls_free_open_rec(sk); err = -sk->sk_err; @@ -846,7 +846,7 @@ switch (psock->eval) { case __SK_PASS: err = tls_push_record(sk, flags, record_type); - if (err && sk->sk_err == EBADMSG) { + if (err && err != -EINPROGRESS && sk->sk_err == EBADMSG) { *copied -= sk_msg_free(sk, msg); tls_free_open_rec(sk); err = -sk->sk_err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/unix/af_unix.c +++ linux-oracle-6.5-6.5.0/net/unix/af_unix.c @@ -680,7 +680,7 @@ * What the above comment does talk about? --ANK(980817) */ - if (unix_tot_inflight) + if (READ_ONCE(unix_tot_inflight)) unix_gc(); /* Garbage collect fds */ } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/wireless/core.c +++ linux-oracle-6.5-6.5.0/net/wireless/core.c @@ -1181,16 +1181,11 @@ } EXPORT_SYMBOL(wiphy_rfkill_set_hw_state_reason); -void cfg80211_cqm_config_free(struct wireless_dev *wdev) -{ - kfree(wdev->cqm_config); - wdev->cqm_config = NULL; -} - static void _cfg80211_unregister_wdev(struct wireless_dev *wdev, bool unregister_netdev) { struct cfg80211_registered_device *rdev = wiphy_to_rdev(wdev->wiphy); + struct cfg80211_cqm_config *cqm_config; unsigned int link_id; ASSERT_RTNL(); @@ -1227,7 +1222,10 @@ kfree_sensitive(wdev->wext.keys); wdev->wext.keys = NULL; #endif - cfg80211_cqm_config_free(wdev); + wiphy_work_cancel(wdev->wiphy, &wdev->cqm_rssi_work); + /* deleted from the list, so can't be found from nl80211 any more */ + cqm_config = rcu_access_pointer(wdev->cqm_config); + kfree_rcu(cqm_config, rcu_head); /* * Ensure that all events have been processed and @@ -1379,6 +1377,8 @@ wdev->wext.connect.auth_type = NL80211_AUTHTYPE_AUTOMATIC; #endif + wiphy_work_init(&wdev->cqm_rssi_work, cfg80211_cqm_rssi_notify_work); + if (wdev->wiphy->flags & WIPHY_FLAG_PS_ON_BY_DEFAULT) wdev->ps = true; else only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/wireless/core.h +++ linux-oracle-6.5-6.5.0/net/wireless/core.h @@ -295,12 +295,17 @@ }; struct cfg80211_cqm_config { + struct rcu_head rcu_head; u32 rssi_hyst; s32 last_rssi_event_value; + enum nl80211_cqm_rssi_threshold_event last_rssi_event_type; int n_rssi_thresholds; s32 rssi_thresholds[]; }; +void cfg80211_cqm_rssi_notify_work(struct wiphy *wiphy, + struct wiphy_work *work); + void cfg80211_destroy_ifaces(struct cfg80211_registered_device *rdev); /* free object */ @@ -566,8 +571,6 @@ #define CFG80211_DEV_WARN_ON(cond) ({bool __r = (cond); __r; }) #endif -void cfg80211_cqm_config_free(struct wireless_dev *wdev); - void cfg80211_release_pmsr(struct wireless_dev *wdev, u32 portid); void cfg80211_pmsr_wdev_down(struct wireless_dev *wdev); void cfg80211_pmsr_free_wk(struct work_struct *work); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/wireless/mlme.c +++ linux-oracle-6.5-6.5.0/net/wireless/mlme.c @@ -52,7 +52,8 @@ cr.links[link_id].bssid = data->links[link_id].bss->bssid; cr.links[link_id].addr = data->links[link_id].addr; /* need to have local link addresses for MLO connections */ - WARN_ON(cr.ap_mld_addr && !cr.links[link_id].addr); + WARN_ON(cr.ap_mld_addr && + !is_valid_ether_addr(cr.links[link_id].addr)); BUG_ON(!cr.links[link_id].bss->channel); @@ -281,6 +282,11 @@ ether_addr_equal(req->bss->bssid, wdev->u.client.connected_addr)) return -EALREADY; + if (ether_addr_equal(req->bss->bssid, dev->dev_addr) || + (req->link_id >= 0 && + ether_addr_equal(req->ap_mld_addr, dev->dev_addr))) + return -EINVAL; + return rdev_auth(rdev, dev, req); } @@ -335,6 +341,9 @@ if (req->links[i].bss == req->links[j].bss) return -EINVAL; } + + if (ether_addr_equal(req->links[i].bss->bssid, dev->dev_addr)) + return -EINVAL; } if (wdev->connected && @@ -342,6 +351,11 @@ !ether_addr_equal(wdev->u.client.connected_addr, req->prev_bssid))) return -EALREADY; + if ((req->bss && ether_addr_equal(req->bss->bssid, dev->dev_addr)) || + (req->link_id >= 0 && + ether_addr_equal(req->ap_mld_addr, dev->dev_addr))) + return -EINVAL; + cfg80211_oper_and_ht_capa(&req->ht_capa_mask, rdev->wiphy.ht_capa_mod_mask); cfg80211_oper_and_vht_capa(&req->vht_capa_mask, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/wireless/ocb.c +++ linux-oracle-6.5-6.5.0/net/wireless/ocb.c @@ -68,6 +68,9 @@ if (!rdev->ops->leave_ocb) return -EOPNOTSUPP; + if (!wdev->u.ocb.chandef.chan) + return -ENOTCONN; + err = rdev_leave_ocb(rdev, dev); if (!err) memset(&wdev->u.ocb.chandef, 0, sizeof(wdev->u.ocb.chandef)); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/xdp/xsk_diag.c +++ linux-oracle-6.5-6.5.0/net/xdp/xsk_diag.c @@ -111,6 +111,9 @@ sock_diag_save_cookie(sk, msg->xdiag_cookie); mutex_lock(&xs->mutex); + if (READ_ONCE(xs->state) == XSK_UNBOUND) + goto out_nlmsg_trim; + if ((req->xdiag_show & XDP_SHOW_INFO) && xsk_diag_put_info(xs, nlskb)) goto out_nlmsg_trim; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/net/xdp/xsk_queue.c +++ linux-oracle-6.5-6.5.0/net/xdp/xsk_queue.c @@ -34,6 +34,16 @@ q->ring_mask = nentries - 1; size = xskq_get_ring_size(q, umem_queue); + + /* size which is overflowing or close to SIZE_MAX will become 0 in + * PAGE_ALIGN(), checking SIZE_MAX is enough due to the previous + * is_power_of_2(), the rest will be handled by vmalloc_user() + */ + if (unlikely(size == SIZE_MAX)) { + kfree(q); + return NULL; + } + size = PAGE_ALIGN(size); q->ring = vmalloc_user(size); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/samples/hw_breakpoint/data_breakpoint.c +++ linux-oracle-6.5-6.5.0/samples/hw_breakpoint/data_breakpoint.c @@ -70,7 +70,9 @@ static void __exit hw_break_module_exit(void) { unregister_wide_hw_breakpoint(sample_hbp); - symbol_put(ksym_name); +#ifdef CONFIG_MODULE_UNLOAD + __symbol_put(ksym_name); +#endif printk(KERN_INFO "HW Breakpoint for %s write uninstalled\n", ksym_name); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/scripts/dummy-tools/gcc +++ linux-oracle-6.5-6.5.0/scripts/dummy-tools/gcc @@ -85,8 +85,7 @@ fi # For arch/powerpc/tools/gcc-check-mprofile-kernel.sh - if arg_contain -m64 "$@" && arg_contain -mlittle-endian "$@" && - arg_contain -mprofile-kernel "$@"; then + if arg_contain -m64 "$@" && arg_contain -mprofile-kernel "$@"; then if ! test -t 0 && ! grep -q notrace; then echo "_mcount" fi only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/scripts/kconfig/preprocess.c +++ linux-oracle-6.5-6.5.0/scripts/kconfig/preprocess.c @@ -396,6 +396,9 @@ p++; } + + if (new_argc >= FUNCTION_MAX_ARGS) + pperror("too many function arguments"); new_argv[new_argc++] = prev; /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/scripts/mod/file2alias.c +++ linux-oracle-6.5-6.5.0/scripts/mod/file2alias.c @@ -1604,7 +1604,7 @@ /* First handle the "special" cases */ if (sym_is(name, namelen, "usb")) do_usb_table(symval, sym->st_size, mod); - if (sym_is(name, namelen, "of")) + else if (sym_is(name, namelen, "of")) do_of_table(symval, sym->st_size, mod); else if (sym_is(name, namelen, "pnp")) do_pnp_device_entry(symval, sym->st_size, mod); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/scripts/mod/modpost.c +++ linux-oracle-6.5-6.5.0/scripts/mod/modpost.c @@ -1226,6 +1226,15 @@ */ s->is_func = (ELF_ST_TYPE(sym->st_info) == STT_FUNC); + /* + * For parisc64, symbols prefixed $$ from the library have the symbol type + * STT_LOPROC. They should be handled as functions too. + */ + if (elf->hdr->e_ident[EI_CLASS] == ELFCLASS64 && + elf->hdr->e_machine == EM_PARISC && + ELF_ST_TYPE(sym->st_info) == STT_LOPROC) + s->is_func = true; + if (match(secname, PATTERNS(INIT_SECTIONS))) warn("%s: %s: EXPORT_SYMBOL used for init symbol. Remove __init or EXPORT_SYMBOL.\n", mod->name, name); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/scripts/package/mkspec +++ linux-oracle-6.5-6.5.0/scripts/package/mkspec @@ -57,7 +57,7 @@ # $UTS_MACHINE as a fallback of _arch in case # /usr/lib/rpm/platform/*/macros was not included. - %define _arch %{?_arch:$UTS_MACHINE} + %{!?_arch: %define _arch $UTS_MACHINE} %define __spec_install_post /usr/lib/rpm/brp-compress || : %define debug_package %{nil} only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/security/keys/trusted-keys/trusted_core.c +++ linux-oracle-6.5-6.5.0/security/keys/trusted-keys/trusted_core.c @@ -44,13 +44,12 @@ #endif }; -DEFINE_STATIC_CALL_NULL(trusted_key_init, *trusted_key_sources[0].ops->init); DEFINE_STATIC_CALL_NULL(trusted_key_seal, *trusted_key_sources[0].ops->seal); DEFINE_STATIC_CALL_NULL(trusted_key_unseal, *trusted_key_sources[0].ops->unseal); DEFINE_STATIC_CALL_NULL(trusted_key_get_random, *trusted_key_sources[0].ops->get_random); -DEFINE_STATIC_CALL_NULL(trusted_key_exit, *trusted_key_sources[0].ops->exit); +static void (*trusted_key_exit)(void); static unsigned char migratable; enum { @@ -359,19 +358,16 @@ if (!get_random) get_random = kernel_get_random; - static_call_update(trusted_key_init, - trusted_key_sources[i].ops->init); static_call_update(trusted_key_seal, trusted_key_sources[i].ops->seal); static_call_update(trusted_key_unseal, trusted_key_sources[i].ops->unseal); static_call_update(trusted_key_get_random, get_random); - static_call_update(trusted_key_exit, - trusted_key_sources[i].ops->exit); + trusted_key_exit = trusted_key_sources[i].ops->exit; migratable = trusted_key_sources[i].ops->migratable; - ret = static_call(trusted_key_init)(); + ret = trusted_key_sources[i].ops->init(); if (!ret) break; } @@ -388,7 +384,8 @@ static void __exit cleanup_trusted(void) { - static_call_cond(trusted_key_exit)(); + if (trusted_key_exit) + (*trusted_key_exit)(); } late_initcall(init_trusted); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/core/rawmidi.c +++ linux-oracle-6.5-6.5.0/sound/core/rawmidi.c @@ -1770,7 +1770,7 @@ if (IS_ENABLED(CONFIG_SND_UMP)) snd_iprintf(buffer, "Type: %s\n", rawmidi_is_ump(rmidi) ? "UMP" : "Legacy"); - if (rmidi->ops->proc_read) + if (rmidi->ops && rmidi->ops->proc_read) rmidi->ops->proc_read(entry, buffer); mutex_lock(&rmidi->open_mutex); if (rmidi->info_flags & SNDRV_RAWMIDI_INFO_OUTPUT) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/core/seq/seq_ump_client.c +++ linux-oracle-6.5-6.5.0/sound/core/seq/seq_ump_client.c @@ -207,7 +207,7 @@ SNDRV_SEQ_PORT_TYPE_PORT; port->midi_channels = 16; if (*group->name) - snprintf(port->name, sizeof(port->name), "Group %d (%s)", + snprintf(port->name, sizeof(port->name), "Group %d (%.53s)", group->group + 1, group->name); else sprintf(port->name, "Group %d", group->group + 1); @@ -416,6 +416,25 @@ snd_seq_kernel_client_put(cptr); } +/* set up client's group_filter bitmap */ +static void setup_client_group_filter(struct seq_ump_client *client) +{ + struct snd_seq_client *cptr; + unsigned int filter; + int p; + + cptr = snd_seq_kernel_client_get(client->seq_client); + if (!cptr) + return; + filter = ~(1U << 0); /* always allow groupless messages */ + for (p = 0; p < SNDRV_UMP_MAX_GROUPS; p++) { + if (client->groups[p].active) + filter &= ~(1U << (p + 1)); + } + cptr->group_filter = filter; + snd_seq_kernel_client_put(cptr); +} + /* UMP group change notification */ static void handle_group_notify(struct work_struct *work) { @@ -424,6 +443,7 @@ update_group_attrs(client); update_port_infos(client); + setup_client_group_filter(client); } /* UMP FB change notification */ @@ -492,6 +512,8 @@ goto error; } + setup_client_group_filter(client); + err = create_ump_endpoint_port(client); if (err < 0) goto error; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/core/seq/seq_ump_convert.c +++ linux-oracle-6.5-6.5.0/sound/core/seq/seq_ump_convert.c @@ -1197,6 +1197,8 @@ struct snd_seq_event *event, int atomic, int hop) { + if (dest->group_filter & (1U << dest_port->ump_group)) + return 0; /* group filtered - skip the event */ if (event->type == SNDRV_SEQ_EVENT_SYSEX) return cvt_sysex_to_ump(dest, dest_port, event, atomic, hop); else if (snd_seq_client_is_midi2(dest)) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/hda/intel-dsp-config.c +++ linux-oracle-6.5-6.5.0/sound/hda/intel-dsp-config.c @@ -481,6 +481,14 @@ }, #endif +/* Lunar Lake */ +#if IS_ENABLED(CONFIG_SND_SOC_SOF_LUNARLAKE) + /* Lunarlake-P */ + { + .flags = FLAG_SOF | FLAG_SOF_ONLY_IF_DMIC_OR_SOUNDWIRE, + .device = PCI_DEVICE_ID_INTEL_HDA_LNL_P, + }, +#endif }; static const struct config_entry *snd_intel_dsp_find_config only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/hda/intel-nhlt.c +++ linux-oracle-6.5-6.5.0/sound/hda/intel-nhlt.c @@ -238,7 +238,7 @@ static struct nhlt_specific_cfg * nhlt_get_specific_cfg(struct device *dev, struct nhlt_fmt *fmt, u8 num_ch, - u32 rate, u8 vbps, u8 bps) + u32 rate, u8 vbps, u8 bps, bool ignore_vbps) { struct nhlt_fmt_cfg *cfg = fmt->fmt_config; struct wav_fmt *wfmt; @@ -255,8 +255,12 @@ dev_dbg(dev, "Endpoint format: ch=%d fmt=%d/%d rate=%d\n", wfmt->channels, _vbps, _bps, wfmt->samples_per_sec); + /* + * When looking for exact match of configuration ignore the vbps + * from NHLT table when ignore_vbps is true + */ if (wfmt->channels == num_ch && wfmt->samples_per_sec == rate && - vbps == _vbps && bps == _bps) + (ignore_vbps || vbps == _vbps) && bps == _bps) return &cfg->config; cfg = (struct nhlt_fmt_cfg *)(cfg->config.caps + cfg->config.size); @@ -289,6 +293,7 @@ { struct nhlt_specific_cfg *cfg; struct nhlt_endpoint *epnt; + bool ignore_vbps = false; struct nhlt_fmt *fmt; int i; @@ -298,7 +303,26 @@ dev_dbg(dev, "Looking for configuration:\n"); dev_dbg(dev, " vbus_id=%d link_type=%d dir=%d, dev_type=%d\n", bus_id, link_type, dir, dev_type); - dev_dbg(dev, " ch=%d fmt=%d/%d rate=%d\n", num_ch, vbps, bps, rate); + if (link_type == NHLT_LINK_DMIC && bps == 32 && (vbps == 24 || vbps == 32)) { + /* + * The DMIC hardware supports only one type of 32 bits sample + * size, which is 24 bit sampling on the MSB side and bits[1:0] + * are used for indicating the channel number. + * It has been observed that some NHLT tables have the vbps + * specified as 32 while some uses 24. + * The format these variations describe are identical, the + * hardware is configured and behaves the same way. + * Note: when the samples assumed to be vbps=32 then the 'noise' + * introduced by the lower two bits (channel number) have no + * real life implication on audio quality. + */ + dev_dbg(dev, + " ch=%d fmt=%d rate=%d (vbps is ignored for DMIC 32bit format)\n", + num_ch, bps, rate); + ignore_vbps = true; + } else { + dev_dbg(dev, " ch=%d fmt=%d/%d rate=%d\n", num_ch, vbps, bps, rate); + } dev_dbg(dev, "Endpoint count=%d\n", nhlt->endpoint_count); epnt = (struct nhlt_endpoint *)nhlt->desc; @@ -307,7 +331,8 @@ if (nhlt_check_ep_match(dev, epnt, bus_id, link_type, dir, dev_type)) { fmt = (struct nhlt_fmt *)(epnt->config.caps + epnt->config.size); - cfg = nhlt_get_specific_cfg(dev, fmt, num_ch, rate, vbps, bps); + cfg = nhlt_get_specific_cfg(dev, fmt, num_ch, rate, + vbps, bps, ignore_vbps); if (cfg) return cfg; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/hda/intel-sdw-acpi.c +++ linux-oracle-6.5-6.5.0/sound/hda/intel-sdw-acpi.c @@ -23,7 +23,7 @@ module_param_named(sdw_link_mask, ctrl_link_mask, int, 0444); MODULE_PARM_DESC(sdw_link_mask, "Intel link mask (one bit per link)"); -static bool is_link_enabled(struct fwnode_handle *fw_node, int i) +static bool is_link_enabled(struct fwnode_handle *fw_node, u8 idx) { struct fwnode_handle *link; char name[32]; @@ -31,7 +31,7 @@ /* Find master handle */ snprintf(name, sizeof(name), - "mipi-sdw-link-%d-subproperties", i); + "mipi-sdw-link-%hhu-subproperties", idx); link = fwnode_get_named_child_node(fw_node, name); if (!link) @@ -51,8 +51,8 @@ sdw_intel_scan_controller(struct sdw_intel_acpi_info *info) { struct acpi_device *adev = acpi_fetch_acpi_dev(info->handle); - int ret, i; - u8 count; + u8 count, i; + int ret; if (!adev) return -EINVAL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/pci/hda/Makefile +++ linux-oracle-6.5-6.5.0/sound/pci/hda/Makefile @@ -28,7 +28,7 @@ snd-hda-codec-hdmi-objs := patch_hdmi.o hda_eld.o # side codecs -snd-hda-scodec-cs35l41-objs := cs35l41_hda.o +snd-hda-scodec-cs35l41-objs := cs35l41_hda.o cs35l41_hda_property.o snd-hda-scodec-cs35l41-i2c-objs := cs35l41_hda_i2c.o snd-hda-scodec-cs35l41-spi-objs := cs35l41_hda_spi.o snd-hda-cs-dsp-ctls-objs := hda_cs_dsp_ctl.o only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/pci/hda/cs35l41_hda.h +++ linux-oracle-6.5-6.5.0/sound/pci/hda/cs35l41_hda.h @@ -10,6 +10,7 @@ #ifndef __CS35L41_HDA_H__ #define __CS35L41_HDA_H__ +#include #include #include #include @@ -70,6 +71,8 @@ bool halo_initialized; bool playback_started; struct cs_dsp cs_dsp; + struct acpi_device *dacpi; + bool mute_override; }; enum halo_state { @@ -83,5 +86,6 @@ int cs35l41_hda_probe(struct device *dev, const char *device_name, int id, int irq, struct regmap *regmap); void cs35l41_hda_remove(struct device *dev); +int cs35l41_get_speaker_id(struct device *dev, int amp_index, int num_amps, int fixed_gpio_id); #endif /*__CS35L41_HDA_H__*/ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/pci/hda/cs35l41_hda_property.c +++ linux-oracle-6.5-6.5.0/sound/pci/hda/cs35l41_hda_property.c @@ -0,0 +1,112 @@ +// SPDX-License-Identifier: GPL-2.0 +// +// CS35L41 ALSA HDA Property driver +// +// Copyright 2023 Cirrus Logic, Inc. +// +// Author: Stefan Binding + +#include +#include +#include "cs35l41_hda_property.h" + +/* + * Device CLSA010(0/1) doesn't have _DSD so a gpiod_get by the label reset won't work. + * And devices created by serial-multi-instantiate don't have their device struct + * pointing to the correct fwnode, so acpi_dev must be used here. + * And devm functions expect that the device requesting the resource has the correct + * fwnode. + */ +static int lenovo_legion_no_acpi(struct cs35l41_hda *cs35l41, struct device *physdev, int id, + const char *hid) +{ + struct cs35l41_hw_cfg *hw_cfg = &cs35l41->hw_cfg; + + /* check I2C address to assign the index */ + cs35l41->index = id == 0x40 ? 0 : 1; + cs35l41->channel_index = 0; + cs35l41->reset_gpio = gpiod_get_index(physdev, NULL, 0, GPIOD_OUT_HIGH); + cs35l41->speaker_id = cs35l41_get_speaker_id(physdev, 0, 0, 2); + hw_cfg->spk_pos = cs35l41->index; + hw_cfg->gpio2.func = CS35L41_INTERRUPT; + hw_cfg->gpio2.valid = true; + hw_cfg->valid = true; + + if (strcmp(hid, "CLSA0100") == 0) { + hw_cfg->bst_type = CS35L41_EXT_BOOST_NO_VSPK_SWITCH; + } else if (strcmp(hid, "CLSA0101") == 0) { + hw_cfg->bst_type = CS35L41_EXT_BOOST; + hw_cfg->gpio1.func = CS35l41_VSPK_SWITCH; + hw_cfg->gpio1.valid = true; + } + + return 0; +} + +/* + * Device 103C89C6 does have _DSD, however it is setup to use the wrong boost type. + * We can override the _DSD to correct the boost type here. + * Since this laptop has valid ACPI, we do not need to handle cs-gpios, since that already exists + * in the ACPI. + */ +static int hp_vision_acpi_fix(struct cs35l41_hda *cs35l41, struct device *physdev, int id, + const char *hid) +{ + struct cs35l41_hw_cfg *hw_cfg = &cs35l41->hw_cfg; + + dev_info(cs35l41->dev, "Adding DSD properties for %s\n", cs35l41->acpi_subsystem_id); + + cs35l41->index = id; + cs35l41->channel_index = 0; + + /* + * This system has _DSD, it just contains an error, so we can still get the reset using + * the "reset" label. + */ + cs35l41->reset_gpio = fwnode_gpiod_get_index(acpi_fwnode_handle(cs35l41->dacpi), "reset", + cs35l41->index, GPIOD_OUT_LOW, + "cs35l41-reset"); + cs35l41->speaker_id = -ENOENT; + hw_cfg->spk_pos = cs35l41->index ? 0 : 1; // right:left + hw_cfg->gpio1.func = CS35L41_NOT_USED; + hw_cfg->gpio1.valid = true; + hw_cfg->gpio2.func = CS35L41_INTERRUPT; + hw_cfg->gpio2.valid = true; + hw_cfg->bst_type = CS35L41_INT_BOOST; + hw_cfg->bst_ind = 1000; + hw_cfg->bst_ipk = 4500; + hw_cfg->bst_cap = 24; + hw_cfg->valid = true; + + return 0; +} + +struct cs35l41_prop_model { + const char *hid; + const char *ssid; + int (*add_prop)(struct cs35l41_hda *cs35l41, struct device *physdev, int id, + const char *hid); +}; + +const struct cs35l41_prop_model cs35l41_prop_model_table[] = { + { "CLSA0100", NULL, lenovo_legion_no_acpi }, + { "CLSA0101", NULL, lenovo_legion_no_acpi }, + { "CSC3551", "103C89C6", hp_vision_acpi_fix }, + {} +}; + +int cs35l41_add_dsd_properties(struct cs35l41_hda *cs35l41, struct device *physdev, int id, + const char *hid) +{ + const struct cs35l41_prop_model *model; + + for (model = cs35l41_prop_model_table; model->hid; model++) { + if (!strcmp(model->hid, hid) && + (!model->ssid || + (cs35l41->acpi_subsystem_id && + !strcmp(model->ssid, cs35l41->acpi_subsystem_id)))) + return model->add_prop(cs35l41, physdev, id, hid); + } + + return -ENOENT; +} only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/pci/hda/cs35l41_hda_property.h +++ linux-oracle-6.5-6.5.0/sound/pci/hda/cs35l41_hda_property.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0 + * + * CS35L41 ALSA HDA Property driver + * + * Copyright 2023 Cirrus Logic, Inc. + * + * Author: Stefan Binding + */ + +#ifndef CS35L41_HDA_PROP_H +#define CS35L41_HDA_PROP_H + +#include +#include "cs35l41_hda.h" + +int cs35l41_add_dsd_properties(struct cs35l41_hda *cs35l41, struct device *physdev, int id, + const char *hid); +#endif /* CS35L41_HDA_PROP_H */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/pci/hda/hda_intel.c +++ linux-oracle-6.5-6.5.0/sound/pci/hda/hda_intel.c @@ -2223,6 +2223,7 @@ SND_PCI_QUIRK(0x8086, 0x2068, "Intel NUC7i3BNB", 0), /* https://bugzilla.kernel.org/show_bug.cgi?id=198611 */ SND_PCI_QUIRK(0x17aa, 0x2227, "Lenovo X1 Carbon 3rd Gen", 0), + SND_PCI_QUIRK(0x17aa, 0x316e, "Lenovo ThinkCentre M70q", 0), /* https://bugzilla.redhat.com/show_bug.cgi?id=1689623 */ SND_PCI_QUIRK(0x17aa, 0x367b, "Lenovo IdeaCentre B550", 0), /* https://bugzilla.redhat.com/show_bug.cgi?id=1572975 */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/amd/yc/acp6x-mach.c +++ linux-oracle-6.5-6.5.0/sound/soc/amd/yc/acp6x-mach.c @@ -217,12 +217,40 @@ .driver_data = &acp6x_card, .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "82TL"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "82QF"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), DMI_MATCH(DMI_PRODUCT_NAME, "82V2"), } }, { .driver_data = &acp6x_card, .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "82YM"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "82UG"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK COMPUTER INC."), DMI_MATCH(DMI_PRODUCT_NAME, "UM5302TA"), } @@ -258,6 +286,13 @@ { .driver_data = &acp6x_card, .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "Micro-Star International Co., Ltd."), + DMI_MATCH(DMI_PRODUCT_NAME, "Bravo 15 B7ED"), + } + }, + { + .driver_data = &acp6x_card, + .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "Alienware"), DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m17 R5 AMD"), } @@ -326,6 +361,13 @@ } }, { + .driver_data = &acp6x_card, + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "HP"), + DMI_MATCH(DMI_BOARD_NAME, "8A3E"), + } + }, + { .driver_data = &acp6x_card, .matches = { DMI_MATCH(DMI_BOARD_VENDOR, "MECHREVO"), only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/codecs/cs35l56-i2c.c +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/cs35l56-i2c.c @@ -27,7 +27,6 @@ return -ENOMEM; cs35l56->dev = dev; - cs35l56->can_hibernate = true; i2c_set_clientdata(client, cs35l56); cs35l56->regmap = devm_regmap_init_i2c(client, regmap_config); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/codecs/cs35l56.c +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/cs35l56.c @@ -1594,6 +1594,7 @@ flush_workqueue(cs35l56->dsp_wq); destroy_workqueue(cs35l56->dsp_wq); + pm_runtime_dont_use_autosuspend(cs35l56->dev); pm_runtime_suspend(cs35l56->dev); pm_runtime_disable(cs35l56->dev); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/codecs/cs42l42-sdw.c +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/cs42l42-sdw.c @@ -344,6 +344,16 @@ switch (status) { case SDW_SLAVE_ATTACHED: dev_dbg(cs42l42->dev, "ATTACHED\n"); + + /* + * The SoundWire core can report stale ATTACH notifications + * if we hard-reset CS42L42 in probe() but it had already been + * enumerated. Reject the ATTACH if we haven't yet seen an + * UNATTACH report for the device being in reset. + */ + if (cs42l42->sdw_waiting_first_unattach) + break; + /* * Initialise codec, this only needs to be done once. * When resuming from suspend, resume callback will handle re-init of codec, @@ -354,6 +364,16 @@ break; case SDW_SLAVE_UNATTACHED: dev_dbg(cs42l42->dev, "UNATTACHED\n"); + + if (cs42l42->sdw_waiting_first_unattach) { + /* + * SoundWire core has seen that CS42L42 is not on + * the bus so release RESET and wait for ATTACH. + */ + cs42l42->sdw_waiting_first_unattach = false; + gpiod_set_value_cansleep(cs42l42->reset_gpio, 1); + } + break; default: break; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/codecs/cs42l42.c +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/cs42l42.c @@ -2320,7 +2320,26 @@ if (cs42l42->reset_gpio) { dev_dbg(cs42l42->dev, "Found reset GPIO\n"); - gpiod_set_value_cansleep(cs42l42->reset_gpio, 1); + + /* + * ACPI can override the default GPIO state we requested + * so ensure that we start with RESET low. + */ + gpiod_set_value_cansleep(cs42l42->reset_gpio, 0); + + /* Ensure minimum reset pulse width */ + usleep_range(10, 500); + + /* + * On SoundWire keep the chip in reset until we get an UNATTACH + * notification from the SoundWire core. This acts as a + * synchronization point to reject stale ATTACH notifications + * if the chip was already enumerated before we reset it. + */ + if (cs42l42->sdw_peripheral) + cs42l42->sdw_waiting_first_unattach = true; + else + gpiod_set_value_cansleep(cs42l42->reset_gpio, 1); } usleep_range(CS42L42_BOOT_TIME_US, CS42L42_BOOT_TIME_US * 2); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/codecs/cs42l42.h +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/cs42l42.h @@ -53,6 +53,7 @@ u8 stream_use; bool hp_adc_up_pending; bool suspended; + bool sdw_waiting_first_unattach; bool init_done; }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/codecs/hdmi-codec.c +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/hdmi-codec.c @@ -531,7 +531,10 @@ hp->sample_rate = sample_rate; hp->channels = channels; - hcp->chmap_idx = idx; + if (pcm_audio) + hcp->chmap_idx = ca_id; + else + hcp->chmap_idx = HDMI_CODEC_CHMAP_IDX_UNKNOWN; return 0; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/codecs/rt5640.c +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/rt5640.c @@ -2404,13 +2404,11 @@ struct rt5640_priv *rt5640 = data; int delay = 0; - if (rt5640->jd_src == RT5640_JD_SRC_HDA_HEADER) { - cancel_delayed_work_sync(&rt5640->jack_work); + if (rt5640->jd_src == RT5640_JD_SRC_HDA_HEADER) delay = 100; - } if (rt5640->jack) - queue_delayed_work(system_long_wq, &rt5640->jack_work, delay); + mod_delayed_work(system_long_wq, &rt5640->jack_work, delay); return IRQ_HANDLED; } @@ -2566,12 +2564,11 @@ if (jack_data && jack_data->use_platform_clock) rt5640->use_platform_clock = jack_data->use_platform_clock; - ret = devm_request_threaded_irq(component->dev, rt5640->irq, - NULL, rt5640_irq, - IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, - "rt5640", rt5640); + ret = request_irq(rt5640->irq, rt5640_irq, + IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, + "rt5640", rt5640); if (ret) { - dev_warn(component->dev, "Failed to reguest IRQ %d: %d\n", rt5640->irq, ret); + dev_warn(component->dev, "Failed to request IRQ %d: %d\n", rt5640->irq, ret); rt5640_disable_jack_detect(component); return; } @@ -2622,14 +2619,14 @@ rt5640->jack = jack; - ret = devm_request_threaded_irq(component->dev, rt5640->irq, - NULL, rt5640_irq, IRQF_TRIGGER_RISING | IRQF_ONESHOT, - "rt5640", rt5640); + ret = request_irq(rt5640->irq, rt5640_irq, + IRQF_TRIGGER_RISING | IRQF_ONESHOT, "rt5640", rt5640); if (ret) { - dev_warn(component->dev, "Failed to reguest IRQ %d: %d\n", rt5640->irq, ret); - rt5640->irq = -ENXIO; + dev_warn(component->dev, "Failed to request IRQ %d: %d\n", rt5640->irq, ret); + rt5640->jack = NULL; return; } + rt5640->irq_requested = true; /* sync initial jack state */ queue_delayed_work(system_long_wq, &rt5640->jack_work, 0); @@ -2802,12 +2799,12 @@ { struct rt5640_priv *rt5640 = snd_soc_component_get_drvdata(component); - if (rt5640->irq) { + if (rt5640->jack) { /* disable jack interrupts during system suspend */ disable_irq(rt5640->irq); + rt5640_cancel_work(rt5640); } - rt5640_cancel_work(rt5640); snd_soc_component_force_bias_level(component, SND_SOC_BIAS_OFF); rt5640_reset(component); regcache_cache_only(rt5640->regmap, true); @@ -2830,9 +2827,6 @@ regcache_cache_only(rt5640->regmap, false); regcache_sync(rt5640->regmap); - if (rt5640->irq) - enable_irq(rt5640->irq); - if (rt5640->jack) { if (rt5640->jd_src == RT5640_JD_SRC_HDA_HEADER) { snd_soc_component_update_bits(component, @@ -2860,6 +2854,7 @@ } } + enable_irq(rt5640->irq); queue_delayed_work(system_long_wq, &rt5640->jack_work, 0); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/codecs/wm_adsp.c +++ linux-oracle-6.5-6.5.0/sound/soc/codecs/wm_adsp.c @@ -687,7 +687,10 @@ struct wm_coeff_ctl *ctl; int ret; + mutex_lock(&dsp->cs_dsp.pwr_lock); ret = cs_dsp_coeff_write_ctrl(cs_ctl, 0, buf, len); + mutex_unlock(&dsp->cs_dsp.pwr_lock); + if (ret < 0) return ret; @@ -703,8 +706,14 @@ int wm_adsp_read_ctl(struct wm_adsp *dsp, const char *name, int type, unsigned int alg, void *buf, size_t len) { - return cs_dsp_coeff_read_ctrl(cs_dsp_get_ctl(&dsp->cs_dsp, name, type, alg), - 0, buf, len); + int ret; + + mutex_lock(&dsp->cs_dsp.pwr_lock); + ret = cs_dsp_coeff_read_ctrl(cs_dsp_get_ctl(&dsp->cs_dsp, name, type, alg), + 0, buf, len); + mutex_unlock(&dsp->cs_dsp.pwr_lock); + + return ret; } EXPORT_SYMBOL_GPL(wm_adsp_read_ctl); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/fsl/fsl_sai.c +++ linux-oracle-6.5-6.5.0/sound/soc/fsl/fsl_sai.c @@ -710,10 +710,15 @@ { unsigned int ofs = sai->soc_data->reg_offset; bool tx = dir == TX; - u32 xcsr, count = 100; + u32 xcsr, count = 100, mask; + + if (sai->soc_data->mclk_with_tere && sai->mclk_direction_output) + mask = FSL_SAI_CSR_TERE; + else + mask = FSL_SAI_CSR_TERE | FSL_SAI_CSR_BCE; regmap_update_bits(sai->regmap, FSL_SAI_xCSR(tx, ofs), - FSL_SAI_CSR_TERE | FSL_SAI_CSR_BCE, 0); + mask, 0); /* TERE will remain set till the end of current frame */ do { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/fsl/imx-audmix.c +++ linux-oracle-6.5-6.5.0/sound/soc/fsl/imx-audmix.c @@ -315,7 +315,7 @@ if (IS_ERR(priv->cpu_mclk)) { ret = PTR_ERR(priv->cpu_mclk); dev_err(&cpu_pdev->dev, "failed to get DAI mclk1: %d\n", ret); - return -EINVAL; + return ret; } priv->audmix_pdev = audmix_pdev; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/fsl/imx-pcm-rpmsg.c +++ linux-oracle-6.5-6.5.0/sound/soc/fsl/imx-pcm-rpmsg.c @@ -19,6 +19,7 @@ static struct snd_pcm_hardware imx_rpmsg_pcm_hardware = { .info = SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER | + SNDRV_PCM_INFO_BATCH | SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_NO_PERIOD_WAKEUP | only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/fsl/imx-rpmsg.c +++ linux-oracle-6.5-6.5.0/sound/soc/fsl/imx-rpmsg.c @@ -89,6 +89,14 @@ SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBC_CFC; + /* + * i.MX rpmsg sound cards work on codec slave mode. MCLK will be + * disabled by CPU DAI driver in hw_free(). Some codec requires MCLK + * present at power up/down sequence. So need to set ignore_pmdown_time + * to power down codec immediately before MCLK is turned off. + */ + data->dai.ignore_pmdown_time = 1; + /* Optional codec node */ ret = of_parse_phandle_with_fixed_args(np, "audio-codec", 0, 0, &args); if (ret) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/generic/simple-card-utils.c +++ linux-oracle-6.5-6.5.0/sound/soc/generic/simple-card-utils.c @@ -310,7 +310,8 @@ if (fixed_sysclk % props->mclk_fs) { dev_err(rtd->dev, "fixed sysclk %u not divisible by mclk_fs %u\n", fixed_sysclk, props->mclk_fs); - return -EINVAL; + ret = -EINVAL; + goto codec_err; } ret = snd_pcm_hw_constraint_minmax(substream->runtime, SNDRV_PCM_HW_PARAM_RATE, fixed_rate, fixed_rate); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/intel/avs/boards/hdaudio.c +++ linux-oracle-6.5-6.5.0/sound/soc/intel/avs/boards/hdaudio.c @@ -55,6 +55,9 @@ return -ENOMEM; dl[i].codecs->name = devm_kstrdup(dev, cname, GFP_KERNEL); + if (!dl[i].codecs->name) + return -ENOMEM; + dl[i].codecs->dai_name = pcm->name; dl[i].num_codecs = 1; dl[i].num_cpus = 1; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/intel/boards/sof_es8336.c +++ linux-oracle-6.5-6.5.0/sound/soc/intel/boards/sof_es8336.c @@ -798,6 +798,16 @@ SOF_ES8336_SPEAKERS_EN_GPIO1_QUIRK | SOF_ES8336_JD_INVERTED), }, + { + .name = "mtl_es83x6_c1_h02", + .driver_data = (kernel_ulong_t)(SOF_ES8336_SSP_CODEC(1) | + SOF_NO_OF_HDMI_CAPTURE_SSP(2) | + SOF_HDMI_CAPTURE_1_SSP(0) | + SOF_HDMI_CAPTURE_2_SSP(2) | + SOF_SSP_HDMI_CAPTURE_PRESENT | + SOF_ES8336_SPEAKERS_EN_GPIO1_QUIRK | + SOF_ES8336_JD_INVERTED), + }, { } }; MODULE_DEVICE_TABLE(platform, board_ids); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/intel/boards/sof_sdw.c +++ linux-oracle-6.5-6.5.0/sound/soc/intel/boards/sof_sdw.c @@ -388,6 +388,16 @@ { .callback = sof_sdw_quirk_cb, .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc"), + DMI_EXACT_MATCH(DMI_PRODUCT_SKU, "0B14"), + }, + /* No Jack */ + .driver_data = (void *)SOF_SDW_TGL_HDMI, + }, + + { + .callback = sof_sdw_quirk_cb, + .matches = { DMI_MATCH(DMI_SYS_VENDOR, "HP"), DMI_MATCH(DMI_PRODUCT_NAME, "OMEN by HP Gaming Laptop 16-k0xxx"), }, @@ -467,7 +477,9 @@ DMI_MATCH(DMI_SYS_VENDOR, "Google"), DMI_MATCH(DMI_PRODUCT_NAME, "Rex"), }, - .driver_data = (void *)(SOF_SDW_PCH_DMIC), + .driver_data = (void *)(SOF_SDW_PCH_DMIC | + SOF_BT_OFFLOAD_SSP(1) | + SOF_SSP_BT_OFFLOAD_PRESENT), }, /* LunarLake devices */ { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/intel/boards/sof_sdw_rt712_sdca.c +++ linux-oracle-6.5-6.5.0/sound/soc/intel/boards/sof_sdw_rt712_sdca.c @@ -80,10 +80,12 @@ static int rt712_sdca_dmic_rtd_init(struct snd_soc_pcm_runtime *rtd) { struct snd_soc_card *card = rtd->card; + struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0); + struct snd_soc_component *component = codec_dai->component; card->components = devm_kasprintf(card->dev, GFP_KERNEL, - "%s mic:rt712-sdca-dmic", - card->components); + "%s mic:%s", + card->components, component->name_prefix); if (!card->components) return -ENOMEM; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/intel/boards/sof_sdw_rt_sdca_jack_common.c +++ linux-oracle-6.5-6.5.0/sound/soc/intel/boards/sof_sdw_rt_sdca_jack_common.c @@ -58,6 +58,11 @@ { "rt712 MIC2", NULL, "Headset Mic" }, }; +static const struct snd_soc_dapm_route rt713_sdca_map[] = { + { "Headphone", NULL, "rt713 HP" }, + { "rt713 MIC2", NULL, "Headset Mic" }, +}; + static const struct snd_kcontrol_new rt_sdca_jack_controls[] = { SOC_DAPM_PIN_SWITCH("Headphone"), SOC_DAPM_PIN_SWITCH("Headset Mic"), @@ -109,6 +114,9 @@ } else if (strstr(component->name_prefix, "rt712")) { ret = snd_soc_dapm_add_routes(&card->dapm, rt712_sdca_map, ARRAY_SIZE(rt712_sdca_map)); + } else if (strstr(component->name_prefix, "rt713")) { + ret = snd_soc_dapm_add_routes(&card->dapm, rt713_sdca_map, + ARRAY_SIZE(rt713_sdca_map)); } else { dev_err(card->dev, "%s is not supported\n", component->name_prefix); return -EINVAL; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/intel/common/soc-acpi-intel-adl-match.c +++ linux-oracle-6.5-6.5.0/sound/soc/intel/common/soc-acpi-intel-adl-match.c @@ -649,18 +649,18 @@ .sof_tplg_filename = "sof-adl-rt1316-l2-mono-rt714-l3.tplg", }, { - .link_mask = 0x3, /* rt1316 on link1 & rt714 on link0 */ - .links = adl_sdw_rt1316_link1_rt714_link0, - .drv_name = "sof_sdw", - .sof_tplg_filename = "sof-adl-rt1316-l1-mono-rt714-l0.tplg", - }, - { .link_mask = 0x7, /* rt714 on link0 & two rt1316s on link1 and link2 */ .links = adl_sdw_rt1316_link12_rt714_link0, .drv_name = "sof_sdw", .sof_tplg_filename = "sof-adl-rt1316-l12-rt714-l0.tplg", }, { + .link_mask = 0x3, /* rt1316 on link1 & rt714 on link0 */ + .links = adl_sdw_rt1316_link1_rt714_link0, + .drv_name = "sof_sdw", + .sof_tplg_filename = "sof-adl-rt1316-l1-mono-rt714-l0.tplg", + }, + { .link_mask = 0x5, /* 2 active links required */ .links = adl_sdw_rt1316_link2_rt714_link0, .drv_name = "sof_sdw", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/intel/common/soc-acpi-intel-rpl-match.c +++ linux-oracle-6.5-6.5.0/sound/soc/intel/common/soc-acpi-intel-rpl-match.c @@ -246,6 +246,25 @@ {} }; +static const struct snd_soc_acpi_link_adr rpl_sdw_rt711_link0_rt1316_link12[] = { + { + .mask = BIT(0), + .num_adr = ARRAY_SIZE(rt711_sdca_0_adr), + .adr_d = rt711_sdca_0_adr, + }, + { + .mask = BIT(1), + .num_adr = ARRAY_SIZE(rt1316_1_group1_adr), + .adr_d = rt1316_1_group1_adr, + }, + { + .mask = BIT(2), + .num_adr = ARRAY_SIZE(rt1316_2_group1_adr), + .adr_d = rt1316_2_group1_adr, + }, + {} +}; + static const struct snd_soc_acpi_link_adr rpl_sdw_rt711_link0_rt1318_link12_rt714_link3[] = { { .mask = BIT(0), @@ -390,6 +409,12 @@ .sof_tplg_filename = "sof-rpl-rt711-l0-rt1318-l12-rt714-l3.tplg", }, { + .link_mask = 0x7, /* rt711 on link0 & two rt1316s on link1 and link2 */ + .links = rpl_sdw_rt711_link0_rt1316_link12, + .drv_name = "sof_sdw", + .sof_tplg_filename = "sof-rpl-rt711-l0-rt1316-l12.tplg", + }, + { .link_mask = 0x7, /* rt711 on link0 & two rt1318s on link1 and link2 */ .links = rpl_sdw_rt711_link0_rt1318_link12, .drv_name = "sof_sdw", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/meson/axg-spdifin.c +++ linux-oracle-6.5-6.5.0/sound/soc/meson/axg-spdifin.c @@ -112,34 +112,6 @@ return 0; } -static int axg_spdifin_startup(struct snd_pcm_substream *substream, - struct snd_soc_dai *dai) -{ - struct axg_spdifin *priv = snd_soc_dai_get_drvdata(dai); - int ret; - - ret = clk_prepare_enable(priv->refclk); - if (ret) { - dev_err(dai->dev, - "failed to enable spdifin reference clock\n"); - return ret; - } - - regmap_update_bits(priv->map, SPDIFIN_CTRL0, SPDIFIN_CTRL0_EN, - SPDIFIN_CTRL0_EN); - - return 0; -} - -static void axg_spdifin_shutdown(struct snd_pcm_substream *substream, - struct snd_soc_dai *dai) -{ - struct axg_spdifin *priv = snd_soc_dai_get_drvdata(dai); - - regmap_update_bits(priv->map, SPDIFIN_CTRL0, SPDIFIN_CTRL0_EN, 0); - clk_disable_unprepare(priv->refclk); -} - static void axg_spdifin_write_mode_param(struct regmap *map, int mode, unsigned int val, unsigned int num_per_reg, @@ -251,25 +223,38 @@ ret = axg_spdifin_sample_mode_config(dai, priv); if (ret) { dev_err(dai->dev, "mode configuration failed\n"); - clk_disable_unprepare(priv->pclk); - return ret; + goto pclk_err; } + ret = clk_prepare_enable(priv->refclk); + if (ret) { + dev_err(dai->dev, + "failed to enable spdifin reference clock\n"); + goto pclk_err; + } + + regmap_update_bits(priv->map, SPDIFIN_CTRL0, SPDIFIN_CTRL0_EN, + SPDIFIN_CTRL0_EN); + return 0; + +pclk_err: + clk_disable_unprepare(priv->pclk); + return ret; } static int axg_spdifin_dai_remove(struct snd_soc_dai *dai) { struct axg_spdifin *priv = snd_soc_dai_get_drvdata(dai); + regmap_update_bits(priv->map, SPDIFIN_CTRL0, SPDIFIN_CTRL0_EN, 0); + clk_disable_unprepare(priv->refclk); clk_disable_unprepare(priv->pclk); return 0; } static const struct snd_soc_dai_ops axg_spdifin_ops = { .prepare = axg_spdifin_prepare, - .startup = axg_spdifin_startup, - .shutdown = axg_spdifin_shutdown, }; static int axg_spdifin_iec958_info(struct snd_kcontrol *kcontrol, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/soc-utils.c +++ linux-oracle-6.5-6.5.0/sound/soc/soc-utils.c @@ -217,6 +217,7 @@ return 1; return 0; } +EXPORT_SYMBOL_GPL(snd_soc_dai_is_dummy); int snd_soc_component_is_dummy(struct snd_soc_component *component) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/sof/amd/acp-ipc.c +++ linux-oracle-6.5-6.5.0/sound/soc/sof/amd/acp-ipc.c @@ -168,6 +168,8 @@ if ((status & SOF_IPC_PANIC_MAGIC_MASK) == SOF_IPC_PANIC_MAGIC) { snd_sof_dsp_panic(sdev, sdev->dsp_box.offset + sizeof(status), true); + status = 0; + acp_mailbox_write(sdev, sdev->dsp_box.offset, &status, sizeof(status)); return IRQ_HANDLED; } snd_sof_ipc_msgs_rx(sdev); @@ -197,6 +199,8 @@ acp_mailbox_read(sdev, sdev->debug_box.offset, &status, sizeof(u32)); if ((status & SOF_IPC_PANIC_MAGIC_MASK) == SOF_IPC_PANIC_MAGIC) { snd_sof_dsp_panic(sdev, sdev->dsp_oops_offset, true); + status = 0; + acp_mailbox_write(sdev, sdev->debug_box.offset, &status, sizeof(status)); return IRQ_HANDLED; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/sof/amd/pci-rmb.c +++ linux-oracle-6.5-6.5.0/sound/soc/sof/amd/pci-rmb.c @@ -34,7 +34,6 @@ .dsp_intr_base = ACP6X_DSP_SW_INTR_BASE, .sram_pte_offset = ACP6X_SRAM_PTE_OFFSET, .hw_semaphore_offset = ACP6X_AXI2DAGB_SEM_0, - .acp_clkmux_sel = ACP6X_CLKMUX_SEL, .fusion_dsp_offset = ACP6X_DSP_FUSION_RUNSTALL, }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/sof/core.c +++ linux-oracle-6.5-6.5.0/sound/soc/sof/core.c @@ -486,10 +486,9 @@ snd_sof_ipc_free(sdev); snd_sof_free_debug(sdev); snd_sof_remove(sdev); + sof_ops_free(sdev); } - sof_ops_free(sdev); - /* release firmware */ snd_sof_fw_unload(sdev); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/sof/intel/mtl.c +++ linux-oracle-6.5-6.5.0/sound/soc/sof/intel/mtl.c @@ -460,7 +460,7 @@ /* step 3: wait for IPC DONE bit from ROM */ ret = snd_sof_dsp_read_poll_timeout(sdev, HDA_DSP_BAR, chip->ipc_ack, status, ((status & chip->ipc_ack_mask) == chip->ipc_ack_mask), - HDA_DSP_REG_POLL_INTERVAL_US, MTL_DSP_PURGE_TIMEOUT_US); + HDA_DSP_REG_POLL_INTERVAL_US, HDA_DSP_INIT_TIMEOUT_US); if (ret < 0) { if (hda->boot_iteration == HDA_FW_BOOT_ATTEMPTS) dev_err(sdev->dev, "timeout waiting for purge IPC done\n"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/sof/intel/mtl.h +++ linux-oracle-6.5-6.5.0/sound/soc/sof/intel/mtl.h @@ -62,7 +62,6 @@ #define MTL_DSP_IRQSTS_IPC BIT(0) #define MTL_DSP_IRQSTS_SDW BIT(6) -#define MTL_DSP_PURGE_TIMEOUT_US 20000000 /* 20s */ #define MTL_DSP_REG_POLL_INTERVAL_US 10 /* 10 us */ /* Memory windows */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/sof/sof-audio.c +++ linux-oracle-6.5-6.5.0/sound/soc/sof/sof-audio.c @@ -212,7 +212,8 @@ sof_widget_free_unlocked(sdev, swidget); use_count_decremented = true; core_put: - snd_sof_dsp_core_put(sdev, swidget->core); + if (!use_count_decremented) + snd_sof_dsp_core_put(sdev, swidget->core); pipe_widget_free: if (swidget->id != snd_soc_dapm_scheduler) sof_widget_free_unlocked(sdev, swidget->spipe->pipe_widget); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/sof/topology.c +++ linux-oracle-6.5-6.5.0/sound/soc/sof/topology.c @@ -1117,10 +1117,11 @@ { struct snd_soc_card *card = scomp->card; struct snd_soc_pcm_runtime *rtd; + const char *sname = w->sname; struct snd_soc_dai *cpu_dai; int i, stream; - if (!w->sname) + if (!sname) return; if (w->id == snd_soc_dapm_dai_out) @@ -1133,7 +1134,7 @@ list_for_each_entry(rtd, &card->rtd_list, list) { /* does stream match DAI link ? */ if (!rtd->dai_link->stream_name || - strcmp(w->sname, rtd->dai_link->stream_name)) + strcmp(sname, rtd->dai_link->stream_name)) continue; for_each_rtd_cpu_dais(rtd, i, cpu_dai) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/tegra/tegra210_sfc.c +++ linux-oracle-6.5-6.5.0/sound/soc/tegra/tegra210_sfc.c @@ -2,7 +2,7 @@ // // tegra210_sfc.c - Tegra210 SFC driver // -// Copyright (c) 2021 NVIDIA CORPORATION. All rights reserved. +// Copyright (c) 2021-2023 NVIDIA CORPORATION. All rights reserved. #include #include @@ -42,6 +42,7 @@ 32000, 44100, 48000, + 64000, 88200, 96000, 176400, @@ -2857,6 +2858,7 @@ coef_8to32, coef_8to44, coef_8to48, + UNSUPP_CONV, coef_8to88, coef_8to96, UNSUPP_CONV, @@ -2872,6 +2874,7 @@ coef_11to32, coef_11to44, coef_11to48, + UNSUPP_CONV, coef_11to88, coef_11to96, UNSUPP_CONV, @@ -2887,6 +2890,7 @@ coef_16to32, coef_16to44, coef_16to48, + UNSUPP_CONV, coef_16to88, coef_16to96, coef_16to176, @@ -2902,6 +2906,7 @@ coef_22to32, coef_22to44, coef_22to48, + UNSUPP_CONV, coef_22to88, coef_22to96, coef_22to176, @@ -2917,6 +2922,7 @@ coef_24to32, coef_24to44, coef_24to48, + UNSUPP_CONV, coef_24to88, coef_24to96, coef_24to176, @@ -2932,6 +2938,7 @@ BYPASS_CONV, coef_32to44, coef_32to48, + UNSUPP_CONV, coef_32to88, coef_32to96, coef_32to176, @@ -2947,6 +2954,7 @@ coef_44to32, BYPASS_CONV, coef_44to48, + UNSUPP_CONV, coef_44to88, coef_44to96, coef_44to176, @@ -2962,11 +2970,28 @@ coef_48to32, coef_48to44, BYPASS_CONV, + UNSUPP_CONV, coef_48to88, coef_48to96, coef_48to176, coef_48to192, }, + /* Convertions from 64 kHz */ + { + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + UNSUPP_CONV, + }, /* Convertions from 88.2 kHz */ { coef_88to8, @@ -2977,6 +3002,7 @@ coef_88to32, coef_88to44, coef_88to48, + UNSUPP_CONV, BYPASS_CONV, coef_88to96, coef_88to176, @@ -2991,6 +3017,7 @@ coef_96to32, coef_96to44, coef_96to48, + UNSUPP_CONV, coef_96to88, BYPASS_CONV, coef_96to176, @@ -3006,6 +3033,7 @@ coef_176to32, coef_176to44, coef_176to48, + UNSUPP_CONV, coef_176to88, coef_176to96, BYPASS_CONV, @@ -3021,6 +3049,7 @@ coef_192to32, coef_192to44, coef_192to48, + UNSUPP_CONV, coef_192to88, coef_192to96, coef_192to176, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/tegra/tegra210_sfc.h +++ linux-oracle-6.5-6.5.0/sound/soc/tegra/tegra210_sfc.h @@ -2,7 +2,7 @@ /* * tegra210_sfc.h - Definitions for Tegra210 SFC driver * - * Copyright (c) 2021 NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2021-2023 NVIDIA CORPORATION. All rights reserved. * */ @@ -47,7 +47,7 @@ #define TEGRA210_SFC_EN_SHIFT 0 #define TEGRA210_SFC_EN (1 << TEGRA210_SFC_EN_SHIFT) -#define TEGRA210_SFC_NUM_RATES 12 +#define TEGRA210_SFC_NUM_RATES 13 /* Fields in TEGRA210_SFC_COEF_RAM */ #define TEGRA210_SFC_COEF_RAM_EN BIT(0) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/soc/tegra/tegra_audio_graph_card.c +++ linux-oracle-6.5-6.5.0/sound/soc/tegra/tegra_audio_graph_card.c @@ -10,6 +10,7 @@ #include #include #include +#include #define MAX_PLLA_OUT0_DIV 128 @@ -44,6 +45,21 @@ unsigned int plla_out0_rates[NUM_RATE_TYPE]; }; +static bool need_clk_update(struct snd_soc_dai *dai) +{ + if (snd_soc_dai_is_dummy(dai) || + !dai->driver->ops || + !dai->driver->name) + return false; + + if (strstr(dai->driver->name, "I2S") || + strstr(dai->driver->name, "DMIC") || + strstr(dai->driver->name, "DSPK")) + return true; + + return false; +} + /* Setup PLL clock as per the given sample rate */ static int tegra_audio_graph_update_pll(struct snd_pcm_substream *substream, struct snd_pcm_hw_params *params) @@ -140,19 +156,7 @@ struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); int err; - /* - * This gets called for each DAI link (FE or BE) when DPCM is used. - * We may not want to update PLLA rate for each call. So PLLA update - * must be restricted to external I/O links (I2S, DMIC or DSPK) since - * they actually depend on it. I/O modules update their clocks in - * hw_param() of their respective component driver and PLLA rate - * update here helps them to derive appropriate rates. - * - * TODO: When more HW accelerators get added (like sample rate - * converter, volume gain controller etc., which don't really - * depend on PLLA) we need a better way to filter here. - */ - if (cpu_dai->driver->ops && rtd->dai_link->no_pcm) { + if (need_clk_update(cpu_dai)) { err = tegra_audio_graph_update_pll(substream, params); if (err) return err; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/usb/mixer.c +++ linux-oracle-6.5-6.5.0/sound/usb/mixer.c @@ -1204,6 +1204,13 @@ cval->res = 16; } break; + case USB_ID(0x1bcf, 0x2283): /* NexiGo N930AF FHD Webcam */ + if (!strcmp(kctl->id.name, "Mic Capture Volume")) { + usb_audio_info(chip, + "set resolution quirk: cval->res = 16\n"); + cval->res = 16; + } + break; } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/sound/usb/quirks.c +++ linux-oracle-6.5-6.5.0/sound/usb/quirks.c @@ -1994,7 +1994,11 @@ /* mic works only when ep packet size is set to wMaxPacketSize */ fp->attributes |= UAC_EP_CS_ATTR_FILL_MAX; break; - + case USB_ID(0x3511, 0x2b1e): /* Opencomm2 UC USB Bluetooth dongle */ + /* mic works only when ep pitch control is not set */ + if (stream == SNDRV_PCM_STREAM_CAPTURE) + fp->attributes &= ~UAC_EP_CS_ATTR_PITCH_CONTROL; + break; } } @@ -2173,6 +2177,8 @@ QUIRK_FLAG_FIXED_RATE), DEVICE_FLG(0x0ecb, 0x2069, /* JBL Quantum810 Wireless */ QUIRK_FLAG_FIXED_RATE), + DEVICE_FLG(0x1bcf, 0x2283, /* NexiGo N930AF FHD Webcam */ + QUIRK_FLAG_GET_SAMPLE_RATE), /* Vendor matches */ VENDOR_FLG(0x045e, /* MS Lifecam */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/build/Makefile.build +++ linux-oracle-6.5-6.5.0/tools/build/Makefile.build @@ -117,6 +117,16 @@ $(call rule_mkdir) $(call if_changed_dep,cc_s_c) +# bison and flex files are generated in the OUTPUT directory +# so it needs a separate rule to depend on them properly +$(OUTPUT)%-bison.o: $(OUTPUT)%-bison.c FORCE + $(call rule_mkdir) + $(call if_changed_dep,$(host)cc_o_c) + +$(OUTPUT)%-flex.o: $(OUTPUT)%-flex.c FORCE + $(call rule_mkdir) + $(call if_changed_dep,$(host)cc_o_c) + # Gather build data: # obj-y - list of build objects # subdir-y - list of directories to nest only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/iio/iio_generic_buffer.c +++ linux-oracle-6.5-6.5.0/tools/iio/iio_generic_buffer.c @@ -51,9 +51,9 @@ * Has the side effect of filling the channels[i].location values used * in processing the buffer output. **/ -static int size_from_channelarray(struct iio_channel_info *channels, int num_channels) +static unsigned int size_from_channelarray(struct iio_channel_info *channels, int num_channels) { - int bytes = 0; + unsigned int bytes = 0; int i = 0; while (i < num_channels) { @@ -348,7 +348,7 @@ ssize_t read_size; int dev_num = -1, trig_num = -1; char *buffer_access = NULL; - int scan_size; + unsigned int scan_size; int noevents = 0; int notrigger = 0; char *dummy; @@ -674,7 +674,16 @@ } scan_size = size_from_channelarray(channels, num_channels); - data = malloc(scan_size * buf_len); + + size_t total_buf_len = scan_size * buf_len; + + if (scan_size > 0 && total_buf_len / scan_size != buf_len) { + ret = -EFAULT; + perror("Integer overflow happened when calculate scan_size * buf_len"); + goto error; + } + + data = malloc(total_buf_len); if (!data) { ret = -ENOMEM; goto error; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/include/linux/btf_ids.h +++ linux-oracle-6.5-6.5.0/tools/include/linux/btf_ids.h @@ -38,7 +38,7 @@ ____BTF_ID(symbol) #define __ID(prefix) \ - __PASTE(prefix, __COUNTER__) + __PASTE(__PASTE(prefix, __COUNTER__), __LINE__) /* * The BTF_ID defines unique symbol for each ID pointing only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/include/linux/mm.h +++ linux-oracle-6.5-6.5.0/tools/include/linux/mm.h @@ -11,8 +11,6 @@ #define PHYS_ADDR_MAX (~(phys_addr_t)0) -#define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1) -#define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask)) #define ALIGN(x, a) __ALIGN_KERNEL((x), (a)) #define ALIGN_DOWN(x, a) __ALIGN_KERNEL((x) - ((a) - 1), (a)) @@ -29,7 +27,7 @@ return __va(address); } -void reserve_bootmem_region(phys_addr_t start, phys_addr_t end); +void reserve_bootmem_region(phys_addr_t start, phys_addr_t end, int nid); static inline void totalram_pages_inc(void) { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/include/linux/seq_file.h +++ linux-oracle-6.5-6.5.0/tools/include/linux/seq_file.h @@ -1,4 +1,6 @@ #ifndef _TOOLS_INCLUDE_LINUX_SEQ_FILE_H #define _TOOLS_INCLUDE_LINUX_SEQ_FILE_H +struct seq_file; + #endif /* _TOOLS_INCLUDE_LINUX_SEQ_FILE_H */ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/include/uapi/linux/bpf.h +++ linux-oracle-6.5-6.5.0/tools/include/uapi/linux/bpf.h @@ -1897,7 +1897,9 @@ * performed again, if the helper is used in combination with * direct packet access. * Return - * 0 on success, or a negative error in case of failure. + * 0 on success, or a negative error in case of failure. Positive + * error indicates a potential drop or congestion in the target + * device. The particular positive error codes are not defined. * * u64 bpf_get_current_pid_tgid(void) * Description only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/mm/Makefile +++ linux-oracle-6.5-6.5.0/tools/mm/Makefile @@ -8,8 +8,8 @@ LIB_DIR = ../lib/api LIBS = $(LIB_DIR)/libapi.a -CFLAGS += -Wall -Wextra -I../lib/ -LDFLAGS += $(LIBS) +CFLAGS += -Wall -Wextra -I../lib/ -pthread +LDFLAGS += $(LIBS) -pthread all: $(TARGETS) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/objtool/check.c +++ linux-oracle-6.5-6.5.0/tools/objtool/check.c @@ -4333,7 +4333,8 @@ continue; } - if (insn_func(dest) && insn_func(dest) == insn_func(insn)) { + if (insn_func(dest) && insn_func(insn) && + insn_func(dest)->pfunc == insn_func(insn)->pfunc) { /* * Anything from->to self is either _THIS_IP_ or * IRET-to-self. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/Documentation/perf-dlfilter.txt +++ linux-oracle-6.5-6.5.0/tools/perf/Documentation/perf-dlfilter.txt @@ -64,6 +64,12 @@ If implemented, 'filter_description' should return a one-line description of the filter, and optionally a longer description. +Do not assume the 'sample' argument is valid (dereferenceable) +after 'filter_event' and 'filter_event_early' return. + +Do not assume data referenced by pointers in struct perf_dlfilter_sample +is valid (dereferenceable) after 'filter_event' and 'filter_event_early' return. + The perf_dlfilter_sample structure ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -150,7 +156,8 @@ const char *(*srcline)(void *ctx, __u32 *line_number); struct perf_event_attr *(*attr)(void *ctx); __s32 (*object_code)(void *ctx, __u64 ip, void *buf, __u32 len); - void *(*reserved[120])(void *); + void (*al_cleanup)(void *ctx, struct perf_dlfilter_al *al); + void *(*reserved[119])(void *); }; ---- @@ -161,7 +168,8 @@ 'args' returns arguments from --dlarg options. 'resolve_address' provides information about 'address'. al->size must be set -before calling. Returns 0 on success, -1 otherwise. +before calling. Returns 0 on success, -1 otherwise. Call al_cleanup() (if present, +see below) when 'al' data is no longer needed. 'insn' returns instruction bytes and length. @@ -171,6 +179,12 @@ 'object_code' reads object code and returns the number of bytes read. +'al_cleanup' must be called (if present, so check perf_dlfilter_fns.al_cleanup != NULL) +after resolve_address() to free any associated resources. + +Do not assume pointers obtained via perf_dlfilter_fns are valid (dereferenceable) +after 'filter_event' and 'filter_event_early' return. + The perf_dlfilter_al structure ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -197,9 +211,13 @@ /* Below members are only populated by resolve_ip() */ __u8 filtered; /* true if this sample event will be filtered out */ const char *comm; + void *priv; /* Private data. Do not change */ }; ---- +Do not assume data referenced by pointers in struct perf_dlfilter_al +is valid (dereferenceable) after 'filter_event' and 'filter_event_early' return. + perf_dlfilter_sample flags ~~~~~~~~~~~~~~~~~~~~~~~~~~ only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/Makefile.perf +++ linux-oracle-6.5-6.5.0/tools/perf/Makefile.perf @@ -381,7 +381,7 @@ PROGRAMS += $(OUTPUT)$(LIBJVMTI) endif -DLFILTERS := dlfilter-test-api-v0.so dlfilter-show-cycles.so +DLFILTERS := dlfilter-test-api-v0.so dlfilter-test-api-v2.so dlfilter-show-cycles.so DLFILTERS := $(patsubst %,$(OUTPUT)dlfilters/%,$(DLFILTERS)) # what 'all' will build and 'install' will install, in perfexecdir only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/builtin-lock.c +++ linux-oracle-6.5-6.5.0/tools/perf/builtin-lock.c @@ -2052,6 +2052,7 @@ if (IS_ERR(session)) { pr_err("Initializing perf session failed\n"); err = PTR_ERR(session); + session = NULL; goto out_delete; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/builtin-script.c +++ linux-oracle-6.5-6.5.0/tools/perf/builtin-script.c @@ -2199,6 +2199,17 @@ if (PRINT_FIELD(RETIRE_LAT)) fprintf(fp, "%16" PRIu16, sample->retire_lat); + if (PRINT_FIELD(CGROUP)) { + const char *cgrp_name; + struct cgroup *cgrp = cgroup__find(machine->env, + sample->cgroup); + if (cgrp != NULL) + cgrp_name = cgrp->name; + else + cgrp_name = "unknown"; + fprintf(fp, " %s", cgrp_name); + } + if (PRINT_FIELD(IP)) { struct callchain_cursor *cursor = NULL; @@ -2243,17 +2254,6 @@ if (PRINT_FIELD(CODE_PAGE_SIZE)) fprintf(fp, " %s", get_page_size_name(sample->code_page_size, str)); - if (PRINT_FIELD(CGROUP)) { - const char *cgrp_name; - struct cgroup *cgrp = cgroup__find(machine->env, - sample->cgroup); - if (cgrp != NULL) - cgrp_name = cgrp->name; - else - cgrp_name = "unknown"; - fprintf(fp, " %s", cgrp_name); - } - perf_sample__fprintf_ipc(sample, attr, fp); fprintf(fp, "\n"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/builtin-top.c +++ linux-oracle-6.5-6.5.0/tools/perf/builtin-top.c @@ -1805,6 +1805,7 @@ top.session = perf_session__new(NULL, NULL); if (IS_ERR(top.session)) { status = PTR_ERR(top.session); + top.session = NULL; goto out_delete_evlist; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/builtin-trace.c +++ linux-oracle-6.5-6.5.0/tools/perf/builtin-trace.c @@ -3136,13 +3136,8 @@ struct evsel *evsel; evlist__for_each_entry(evlist, evsel) { - struct evsel_trace *et = evsel->priv; - - if (!et || !evsel->tp_format || strcmp(evsel->tp_format->system, "syscalls")) - continue; - - zfree(&et->fmt); - free(et); + evsel_trace__delete(evsel->priv); + evsel->priv = NULL; } } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/dlfilters/dlfilter-test-api-v2.c +++ linux-oracle-6.5-6.5.0/tools/perf/dlfilters/dlfilter-test-api-v2.c @@ -0,0 +1,377 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Test v2 API for perf --dlfilter shared object + * Copyright (c) 2023, Intel Corporation. + */ +#include +#include +#include +#include + +/* + * Copy v2 API instead of including current API + */ +#include +#include + +/* + * The following macro can be used to determine if this header defines + * perf_dlfilter_sample machine_pid and vcpu. + */ +#define PERF_DLFILTER_HAS_MACHINE_PID + +/* Definitions for perf_dlfilter_sample flags */ +enum { + PERF_DLFILTER_FLAG_BRANCH = 1ULL << 0, + PERF_DLFILTER_FLAG_CALL = 1ULL << 1, + PERF_DLFILTER_FLAG_RETURN = 1ULL << 2, + PERF_DLFILTER_FLAG_CONDITIONAL = 1ULL << 3, + PERF_DLFILTER_FLAG_SYSCALLRET = 1ULL << 4, + PERF_DLFILTER_FLAG_ASYNC = 1ULL << 5, + PERF_DLFILTER_FLAG_INTERRUPT = 1ULL << 6, + PERF_DLFILTER_FLAG_TX_ABORT = 1ULL << 7, + PERF_DLFILTER_FLAG_TRACE_BEGIN = 1ULL << 8, + PERF_DLFILTER_FLAG_TRACE_END = 1ULL << 9, + PERF_DLFILTER_FLAG_IN_TX = 1ULL << 10, + PERF_DLFILTER_FLAG_VMENTRY = 1ULL << 11, + PERF_DLFILTER_FLAG_VMEXIT = 1ULL << 12, +}; + +/* + * perf sample event information (as per perf script and ) + */ +struct perf_dlfilter_sample { + __u32 size; /* Size of this structure (for compatibility checking) */ + __u16 ins_lat; /* Refer PERF_SAMPLE_WEIGHT_TYPE in */ + __u16 p_stage_cyc; /* Refer PERF_SAMPLE_WEIGHT_TYPE in */ + __u64 ip; + __s32 pid; + __s32 tid; + __u64 time; + __u64 addr; + __u64 id; + __u64 stream_id; + __u64 period; + __u64 weight; /* Refer PERF_SAMPLE_WEIGHT_TYPE in */ + __u64 transaction; /* Refer PERF_SAMPLE_TRANSACTION in */ + __u64 insn_cnt; /* For instructions-per-cycle (IPC) */ + __u64 cyc_cnt; /* For instructions-per-cycle (IPC) */ + __s32 cpu; + __u32 flags; /* Refer PERF_DLFILTER_FLAG_* above */ + __u64 data_src; /* Refer PERF_SAMPLE_DATA_SRC in */ + __u64 phys_addr; /* Refer PERF_SAMPLE_PHYS_ADDR in */ + __u64 data_page_size; /* Refer PERF_SAMPLE_DATA_PAGE_SIZE in */ + __u64 code_page_size; /* Refer PERF_SAMPLE_CODE_PAGE_SIZE in */ + __u64 cgroup; /* Refer PERF_SAMPLE_CGROUP in */ + __u8 cpumode; /* Refer CPUMODE_MASK etc in */ + __u8 addr_correlates_sym; /* True => resolve_addr() can be called */ + __u16 misc; /* Refer perf_event_header in */ + __u32 raw_size; /* Refer PERF_SAMPLE_RAW in */ + const void *raw_data; /* Refer PERF_SAMPLE_RAW in */ + __u64 brstack_nr; /* Number of brstack entries */ + const struct perf_branch_entry *brstack; /* Refer */ + __u64 raw_callchain_nr; /* Number of raw_callchain entries */ + const __u64 *raw_callchain; /* Refer */ + const char *event; + __s32 machine_pid; + __s32 vcpu; +}; + +/* + * Address location (as per perf script) + */ +struct perf_dlfilter_al { + __u32 size; /* Size of this structure (for compatibility checking) */ + __u32 symoff; + const char *sym; + __u64 addr; /* Mapped address (from dso) */ + __u64 sym_start; + __u64 sym_end; + const char *dso; + __u8 sym_binding; /* STB_LOCAL, STB_GLOBAL or STB_WEAK, refer */ + __u8 is_64_bit; /* Only valid if dso is not NULL */ + __u8 is_kernel_ip; /* True if in kernel space */ + __u32 buildid_size; + __u8 *buildid; + /* Below members are only populated by resolve_ip() */ + __u8 filtered; /* True if this sample event will be filtered out */ + const char *comm; + void *priv; /* Private data (v2 API) */ +}; + +struct perf_dlfilter_fns { + /* Return information about ip */ + const struct perf_dlfilter_al *(*resolve_ip)(void *ctx); + /* Return information about addr (if addr_correlates_sym) */ + const struct perf_dlfilter_al *(*resolve_addr)(void *ctx); + /* Return arguments from --dlarg option */ + char **(*args)(void *ctx, int *dlargc); + /* + * Return information about address (al->size must be set before + * calling). Returns 0 on success, -1 otherwise. Call al_cleanup() + * when 'al' data is no longer needed. + */ + __s32 (*resolve_address)(void *ctx, __u64 address, struct perf_dlfilter_al *al); + /* Return instruction bytes and length */ + const __u8 *(*insn)(void *ctx, __u32 *length); + /* Return source file name and line number */ + const char *(*srcline)(void *ctx, __u32 *line_number); + /* Return perf_event_attr, refer */ + struct perf_event_attr *(*attr)(void *ctx); + /* Read object code, return numbers of bytes read */ + __s32 (*object_code)(void *ctx, __u64 ip, void *buf, __u32 len); + /* + * If present (i.e. must check al_cleanup != NULL), call after + * resolve_address() to free any associated resources. (v2 API) + */ + void (*al_cleanup)(void *ctx, struct perf_dlfilter_al *al); + /* Reserved */ + void *(*reserved[119])(void *); +}; + +struct perf_dlfilter_fns perf_dlfilter_fns; + +static int verbose; + +#define pr_debug(fmt, ...) do { \ + if (verbose > 0) \ + fprintf(stderr, fmt, ##__VA_ARGS__); \ + } while (0) + +static int test_fail(const char *msg) +{ + pr_debug("%s\n", msg); + return -1; +} + +#define CHECK(x) do { \ + if (!(x)) \ + return test_fail("Check '" #x "' failed\n"); \ + } while (0) + +struct filter_data { + __u64 ip; + __u64 addr; + int do_early; + int early_filter_cnt; + int filter_cnt; +}; + +static struct filter_data *filt_dat; + +int start(void **data, void *ctx) +{ + int dlargc; + char **dlargv; + struct filter_data *d; + static bool called; + + verbose = 1; + + CHECK(!filt_dat && !called); + called = true; + + d = calloc(1, sizeof(*d)); + if (!d) + test_fail("Failed to allocate memory"); + filt_dat = d; + *data = d; + + dlargv = perf_dlfilter_fns.args(ctx, &dlargc); + + CHECK(dlargc == 6); + CHECK(!strcmp(dlargv[0], "first")); + verbose = strtol(dlargv[1], NULL, 0); + d->ip = strtoull(dlargv[2], NULL, 0); + d->addr = strtoull(dlargv[3], NULL, 0); + d->do_early = strtol(dlargv[4], NULL, 0); + CHECK(!strcmp(dlargv[5], "last")); + + pr_debug("%s API\n", __func__); + + return 0; +} + +#define CHECK_SAMPLE(x) do { \ + if (sample->x != expected.x) \ + return test_fail("'" #x "' not expected value\n"); \ + } while (0) + +static int check_sample(struct filter_data *d, const struct perf_dlfilter_sample *sample) +{ + struct perf_dlfilter_sample expected = { + .ip = d->ip, + .pid = 12345, + .tid = 12346, + .time = 1234567890, + .addr = d->addr, + .id = 99, + .stream_id = 101, + .period = 543212345, + .cpu = 31, + .cpumode = PERF_RECORD_MISC_USER, + .addr_correlates_sym = 1, + .misc = PERF_RECORD_MISC_USER, + }; + + CHECK(sample->size >= sizeof(struct perf_dlfilter_sample)); + + CHECK_SAMPLE(ip); + CHECK_SAMPLE(pid); + CHECK_SAMPLE(tid); + CHECK_SAMPLE(time); + CHECK_SAMPLE(addr); + CHECK_SAMPLE(id); + CHECK_SAMPLE(stream_id); + CHECK_SAMPLE(period); + CHECK_SAMPLE(cpu); + CHECK_SAMPLE(cpumode); + CHECK_SAMPLE(addr_correlates_sym); + CHECK_SAMPLE(misc); + + CHECK(!sample->raw_data); + CHECK_SAMPLE(brstack_nr); + CHECK(!sample->brstack); + CHECK_SAMPLE(raw_callchain_nr); + CHECK(!sample->raw_callchain); + +#define EVENT_NAME "branches:" + CHECK(!strncmp(sample->event, EVENT_NAME, strlen(EVENT_NAME))); + + return 0; +} + +static int check_al(void *ctx) +{ + const struct perf_dlfilter_al *al; + + al = perf_dlfilter_fns.resolve_ip(ctx); + if (!al) + return test_fail("resolve_ip() failed"); + + CHECK(al->sym && !strcmp("foo", al->sym)); + CHECK(!al->symoff); + + return 0; +} + +static int check_addr_al(void *ctx) +{ + const struct perf_dlfilter_al *addr_al; + + addr_al = perf_dlfilter_fns.resolve_addr(ctx); + if (!addr_al) + return test_fail("resolve_addr() failed"); + + CHECK(addr_al->sym && !strcmp("bar", addr_al->sym)); + CHECK(!addr_al->symoff); + + return 0; +} + +static int check_address_al(void *ctx, const struct perf_dlfilter_sample *sample) +{ + struct perf_dlfilter_al address_al; + const struct perf_dlfilter_al *al; + + al = perf_dlfilter_fns.resolve_ip(ctx); + if (!al) + return test_fail("resolve_ip() failed"); + + address_al.size = sizeof(address_al); + if (perf_dlfilter_fns.resolve_address(ctx, sample->ip, &address_al)) + return test_fail("resolve_address() failed"); + + CHECK(address_al.sym && al->sym); + CHECK(!strcmp(address_al.sym, al->sym)); + CHECK(address_al.addr == al->addr); + CHECK(address_al.sym_start == al->sym_start); + CHECK(address_al.sym_end == al->sym_end); + CHECK(address_al.dso && al->dso); + CHECK(!strcmp(address_al.dso, al->dso)); + + /* al_cleanup() is v2 API so may not be present */ + if (perf_dlfilter_fns.al_cleanup) + perf_dlfilter_fns.al_cleanup(ctx, &address_al); + + return 0; +} + +static int check_attr(void *ctx) +{ + struct perf_event_attr *attr = perf_dlfilter_fns.attr(ctx); + + CHECK(attr); + CHECK(attr->type == PERF_TYPE_HARDWARE); + CHECK(attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS); + + return 0; +} + +static int do_checks(void *data, const struct perf_dlfilter_sample *sample, void *ctx, bool early) +{ + struct filter_data *d = data; + + CHECK(data && filt_dat == data); + + if (early) { + CHECK(!d->early_filter_cnt); + d->early_filter_cnt += 1; + } else { + CHECK(!d->filter_cnt); + CHECK(d->early_filter_cnt); + CHECK(d->do_early != 2); + d->filter_cnt += 1; + } + + if (check_sample(data, sample)) + return -1; + + if (check_attr(ctx)) + return -1; + + if (early && !d->do_early) + return 0; + + if (check_al(ctx) || check_addr_al(ctx) || check_address_al(ctx, sample)) + return -1; + + if (early) + return d->do_early == 2; + + return 1; +} + +int filter_event_early(void *data, const struct perf_dlfilter_sample *sample, void *ctx) +{ + pr_debug("%s API\n", __func__); + + return do_checks(data, sample, ctx, true); +} + +int filter_event(void *data, const struct perf_dlfilter_sample *sample, void *ctx) +{ + pr_debug("%s API\n", __func__); + + return do_checks(data, sample, ctx, false); +} + +int stop(void *data, void *ctx) +{ + static bool called; + + pr_debug("%s API\n", __func__); + + CHECK(data && filt_dat == data && !called); + called = true; + + free(data); + filt_dat = NULL; + return 0; +} + +const char *filter_description(const char **long_description) +{ + *long_description = "Filter used by the 'dlfilter C API' perf test"; + return "dlfilter to test v2 C API"; +} only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/include/perf/perf_dlfilter.h +++ linux-oracle-6.5-6.5.0/tools/perf/include/perf/perf_dlfilter.h @@ -91,6 +91,7 @@ /* Below members are only populated by resolve_ip() */ __u8 filtered; /* True if this sample event will be filtered out */ const char *comm; + void *priv; /* Private data. Do not change */ }; struct perf_dlfilter_fns { @@ -102,7 +103,8 @@ char **(*args)(void *ctx, int *dlargc); /* * Return information about address (al->size must be set before - * calling). Returns 0 on success, -1 otherwise. + * calling). Returns 0 on success, -1 otherwise. Call al_cleanup() + * when 'al' data is no longer needed. */ __s32 (*resolve_address)(void *ctx, __u64 address, struct perf_dlfilter_al *al); /* Return instruction bytes and length */ @@ -113,8 +115,13 @@ struct perf_event_attr *(*attr)(void *ctx); /* Read object code, return numbers of bytes read */ __s32 (*object_code)(void *ctx, __u64 ip, void *buf, __u32 len); + /* + * If present (i.e. must check al_cleanup != NULL), call after + * resolve_address() to free any associated resources. + */ + void (*al_cleanup)(void *ctx, struct perf_dlfilter_al *al); /* Reserved */ - void *(*reserved[120])(void *); + void *(*reserved[119])(void *); }; /* only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/Build +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/Build @@ -35,3 +35,9 @@ $(call rule_mkdir) $(Q)$(call echo-cmd,gen)$(PYTHON) $(JEVENTS_PY) $(JEVENTS_ARCH) $(JEVENTS_MODEL) pmu-events/arch $@ endif + +# pmu-events.c file is generated in the OUTPUT directory so it needs a +# separate rule to depend on it properly +$(OUTPUT)pmu-events/pmu-events.o: $(PMU_EVENTS_C) + $(call rule_mkdir) + $(call if_changed_dep,cc_o_c) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/arm64/ampere/ampereone/cache.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/arm64/ampere/ampereone/cache.json @@ -93,9 +93,6 @@ "ArchStdEvent": "L1D_CACHE_LMISS_RD" }, { - "ArchStdEvent": "L1D_CACHE_LMISS" - }, - { "ArchStdEvent": "L1I_CACHE_LMISS" }, { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/cache.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/cache.json @@ -1,53 +1,8 @@ [ { - "EventCode": "0x1003C", - "EventName": "PM_EXEC_STALL_DMISS_L2L3", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from either the local L2 or local L3." - }, - { - "EventCode": "0x1E054", - "EventName": "PM_EXEC_STALL_DMISS_L21_L31", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from another core's L2 or L3 on the same chip." - }, - { - "EventCode": "0x34054", - "EventName": "PM_EXEC_STALL_DMISS_L2L3_NOCONFLICT", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from the local L2 or local L3, without a dispatch conflict." - }, - { - "EventCode": "0x34056", - "EventName": "PM_EXEC_STALL_LOAD_FINISH", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was finishing a load after its data was reloaded from a data source beyond the local L1; cycles in which the LSU was processing an L1-hit; cycles in which the NTF instruction merged with another load in the LMQ; cycles in which the NTF instruction is waiting for a data reload for a load miss, but the data comes back with a non-NTF instruction." - }, - { - "EventCode": "0x3006C", - "EventName": "PM_RUN_CYC_SMT2_MODE", - "BriefDescription": "Cycles when this thread's run latch is set and the core is in SMT2 mode." - }, - { "EventCode": "0x300F4", "EventName": "PM_RUN_INST_CMPL_CONC", - "BriefDescription": "PowerPC instructions completed by this thread when all threads in the core had the run-latch set." - }, - { - "EventCode": "0x4C016", - "EventName": "PM_EXEC_STALL_DMISS_L2L3_CONFLICT", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from the local L2 or local L3, with a dispatch conflict." - }, - { - "EventCode": "0x4D014", - "EventName": "PM_EXEC_STALL_LOAD", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a load instruction executing in the Load Store Unit." - }, - { - "EventCode": "0x4D016", - "EventName": "PM_EXEC_STALL_PTESYNC", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a PTESYNC instruction executing in the Load Store Unit." - }, - { - "EventCode": "0x401EA", - "EventName": "PM_THRESH_EXC_128", - "BriefDescription": "Threshold counter exceeded a value of 128." + "BriefDescription": "PowerPC instruction completed by this thread when all threads in the core had the run-latch set." }, { "EventCode": "0x400F6", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/floating_point.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/floating_point.json @@ -1,7 +1,67 @@ [ { - "EventCode": "0x4016E", - "EventName": "PM_THRESH_NOT_MET", - "BriefDescription": "Threshold counter did not meet threshold." + "EventCode": "0x100F4", + "EventName": "PM_FLOP_CMPL", + "BriefDescription": "Floating Point Operations Completed. Includes any type. It counts once for each 1, 2, 4 or 8 flop instruction. Use PM_1|2|4|8_FLOP_CMPL events to count flops." + }, + { + "EventCode": "0x45050", + "EventName": "PM_1FLOP_CMPL", + "BriefDescription": "One floating point instruction completed (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg)." + }, + { + "EventCode": "0x45052", + "EventName": "PM_4FLOP_CMPL", + "BriefDescription": "Four floating point instruction completed (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg)." + }, + { + "EventCode": "0x45054", + "EventName": "PM_FMA_CMPL", + "BriefDescription": "Two floating point instruction completed (FMA class of instructions: fmadd, fnmadd, fmsub, fnmsub). Scalar instructions only." + }, + { + "EventCode": "0x45056", + "EventName": "PM_SCALAR_FLOP_CMPL", + "BriefDescription": "Scalar floating point instruction completed." + }, + { + "EventCode": "0x4505A", + "EventName": "PM_SP_FLOP_CMPL", + "BriefDescription": "Single Precision floating point instruction completed." + }, + { + "EventCode": "0x4505C", + "EventName": "PM_MATH_FLOP_CMPL", + "BriefDescription": "Math floating point instruction completed." + }, + { + "EventCode": "0x4D052", + "EventName": "PM_2FLOP_CMPL", + "BriefDescription": "Double Precision vector version of fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg completed." + }, + { + "EventCode": "0x4D054", + "EventName": "PM_8FLOP_CMPL", + "BriefDescription": "Four Double Precision vector instruction completed." + }, + { + "EventCode": "0x4D056", + "EventName": "PM_NON_FMA_FLOP_CMPL", + "BriefDescription": "Non FMA instruction completed." + }, + { + "EventCode": "0x4D058", + "EventName": "PM_VECTOR_FLOP_CMPL", + "BriefDescription": "Vector floating point instruction completed." + }, + { + "EventCode": "0x4D05A", + "EventName": "PM_NON_MATH_FLOP_CMPL", + "BriefDescription": "Non Math instruction completed." + }, + { + "EventCode": "0x4D05C", + "EventName": "PM_DPP_FLOP_CMPL", + "BriefDescription": "Double-Precision or Quad-Precision instruction completed." } ] only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/frontend.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/frontend.json @@ -1,65 +1,10 @@ [ { - "EventCode": "0x10004", - "EventName": "PM_EXEC_STALL_TRANSLATION", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline suffered a TLB miss or ERAT miss and waited for it to resolve." - }, - { - "EventCode": "0x10006", - "EventName": "PM_DISP_STALL_HELD_OTHER_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch for any other reason." - }, - { - "EventCode": "0x10010", - "EventName": "PM_PMC4_OVERFLOW", - "BriefDescription": "The event selected for PMC4 caused the event counter to overflow." - }, - { - "EventCode": "0x10020", - "EventName": "PM_PMC4_REWIND", - "BriefDescription": "The speculative event selected for PMC4 rewinds and the counter for PMC4 is not charged." - }, - { - "EventCode": "0x10038", - "EventName": "PM_DISP_STALL_TRANSLATION", - "BriefDescription": "Cycles when dispatch was stalled for this thread because the MMU was handling a translation miss." - }, - { - "EventCode": "0x1003A", - "EventName": "PM_DISP_STALL_BR_MPRED_IC_L2", - "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from the local L2 after suffering a branch mispredict." - }, - { - "EventCode": "0x1D05E", - "EventName": "PM_DISP_STALL_HELD_HALT_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because of power management." - }, - { - "EventCode": "0x1E050", - "EventName": "PM_DISP_STALL_HELD_STF_MAPPER_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the STF mapper/SRB was full. Includes GPR (count, link, tar), VSR, VMR, FPR." - }, - { "EventCode": "0x1F054", "EventName": "PM_DTLB_HIT", "BriefDescription": "The PTE required by the instruction was resident in the TLB (data TLB access). When MMCR1[16]=0 this event counts only demand hits. When MMCR1[16]=1 this event includes demand and prefetch. Applies to both HPT and RPT." }, { - "EventCode": "0x10064", - "EventName": "PM_DISP_STALL_IC_L2", - "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from the local L2." - }, - { - "EventCode": "0x101E8", - "EventName": "PM_THRESH_EXC_256", - "BriefDescription": "Threshold counter exceeded a count of 256." - }, - { - "EventCode": "0x101EC", - "EventName": "PM_THRESH_MET", - "BriefDescription": "Threshold exceeded." - }, - { "EventCode": "0x100F2", "EventName": "PM_1PLUS_PPC_CMPL", "BriefDescription": "Cycles in which at least one instruction is completed by this thread." @@ -67,57 +12,7 @@ { "EventCode": "0x100F6", "EventName": "PM_IERAT_MISS", - "BriefDescription": "IERAT Reloaded to satisfy an IERAT miss. All page sizes are counted by this event." - }, - { - "EventCode": "0x100F8", - "EventName": "PM_DISP_STALL_CYC", - "BriefDescription": "Cycles the ICT has no itags assigned to this thread (no instructions were dispatched during these cycles)." - }, - { - "EventCode": "0x20006", - "EventName": "PM_DISP_STALL_HELD_ISSQ_FULL_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch due to Issue queue full. Includes issue queue and branch queue." - }, - { - "EventCode": "0x20114", - "EventName": "PM_MRK_L2_RC_DISP", - "BriefDescription": "Marked instruction RC dispatched in L2." - }, - { - "EventCode": "0x2C010", - "EventName": "PM_EXEC_STALL_LSU", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in the Load Store Unit. This does not include simple fixed point instructions." - }, - { - "EventCode": "0x2C016", - "EventName": "PM_DISP_STALL_IERAT_ONLY_MISS", - "BriefDescription": "Cycles when dispatch was stalled while waiting to resolve an instruction ERAT miss." - }, - { - "EventCode": "0x2C01E", - "EventName": "PM_DISP_STALL_BR_MPRED_IC_L3", - "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from the local L3 after suffering a branch mispredict." - }, - { - "EventCode": "0x2D01A", - "EventName": "PM_DISP_STALL_IC_MISS", - "BriefDescription": "Cycles when dispatch was stalled for this thread due to an Icache Miss." - }, - { - "EventCode": "0x2E018", - "EventName": "PM_DISP_STALL_FETCH", - "BriefDescription": "Cycles when dispatch was stalled for this thread because Fetch was being held." - }, - { - "EventCode": "0x2E01A", - "EventName": "PM_DISP_STALL_HELD_XVFC_MAPPER_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the XVFC mapper/SRB was full." - }, - { - "EventCode": "0x2C142", - "EventName": "PM_MRK_XFER_FROM_SRC_PMC2", - "BriefDescription": "For a marked data transfer instruction, the processor's L1 data cache was reloaded from the source specified in MMCR3[15:27]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." + "BriefDescription": "IERAT Reloaded to satisfy an IERAT miss. All page sizes are counted by this event. This event only counts instruction demand access." }, { "EventCode": "0x24050", @@ -135,11 +30,6 @@ "BriefDescription": "Branch Taken instruction completed." }, { - "EventCode": "0x30004", - "EventName": "PM_DISP_STALL_FLUSH", - "BriefDescription": "Cycles when dispatch was stalled because of a flush that happened to an instruction(s) that was not yet NTC. PM_EXEC_STALL_NTC_FLUSH only includes instructions that were flushed after becoming NTC." - }, - { "EventCode": "0x3000A", "EventName": "PM_DISP_STALL_ITLB_MISS", "BriefDescription": "Cycles when dispatch was stalled while waiting to resolve an instruction TLB miss." @@ -150,59 +40,19 @@ "BriefDescription": "The instruction that was next to complete (oldest in the pipeline) did not complete because it suffered a flush." }, { - "EventCode": "0x30014", - "EventName": "PM_EXEC_STALL_STORE", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a store instruction executing in the Load Store Unit." - }, - { - "EventCode": "0x30018", - "EventName": "PM_DISP_STALL_HELD_SCOREBOARD_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch while waiting on the Scoreboard. This event combines VSCR and FPSCR together." - }, - { - "EventCode": "0x30026", - "EventName": "PM_EXEC_STALL_STORE_MISS", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a store whose cache line was not resident in the L1 and was waiting for allocation of the missing line into the L1." - }, - { - "EventCode": "0x3012A", - "EventName": "PM_MRK_L2_RC_DONE", - "BriefDescription": "L2 RC machine completed the transaction for the marked instruction." - }, - { "EventCode": "0x3F046", "EventName": "PM_ITLB_HIT_1G", "BriefDescription": "Instruction TLB hit (IERAT reload) page size 1G, which implies Radix Page Table translation is in use. When MMCR1[17]=0 this event counts only for demand misses. When MMCR1[17]=1 this event includes demand misses and prefetches." }, { - "EventCode": "0x34058", - "EventName": "PM_DISP_STALL_BR_MPRED_ICMISS", - "BriefDescription": "Cycles when dispatch was stalled after a mispredicted branch resulted in an instruction cache miss." - }, - { - "EventCode": "0x3D05C", - "EventName": "PM_DISP_STALL_HELD_RENAME_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because the mapper/SRB was full. Includes GPR (count, link, tar), VSR, VMR, FPR and XVFC." - }, - { - "EventCode": "0x3E052", - "EventName": "PM_DISP_STALL_IC_L3", - "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from the local L3." - }, - { "EventCode": "0x3E054", "EventName": "PM_LD_MISS_L1", - "BriefDescription": "Load Missed L1, counted at execution time (can be greater than loads finished). LMQ merges are not included in this count. i.e. if a load instruction misses on an address that is already allocated on the LMQ, this event will not increment for that load). Note that this count is per slice, so if a load spans multiple slices this event will increment multiple times for a single load." - }, - { - "EventCode": "0x301EA", - "EventName": "PM_THRESH_EXC_1024", - "BriefDescription": "Threshold counter exceeded a value of 1024." + "BriefDescription": "Load missed L1, counted at finish time. LMQ merges are not included in this count. i.e. if a load instruction misses on an address that is already allocated on the LMQ, this event will not increment for that load). Note that this count is per slice, so if a load spans multiple slices this event will increment multiple times for a single load." }, { "EventCode": "0x300FA", "EventName": "PM_INST_FROM_L3MISS", - "BriefDescription": "The processor's instruction cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss." + "BriefDescription": "The processor's instruction cache was reloaded from beyond the local core's L3 due to a demand miss." }, { "EventCode": "0x40006", @@ -210,38 +60,8 @@ "BriefDescription": "Cycles in which an instruction or group of instructions were cancelled after being issued. This event increments once per occurrence, regardless of how many instructions are included in the issue group." }, { - "EventCode": "0x40116", - "EventName": "PM_MRK_LARX_FIN", - "BriefDescription": "Marked load and reserve instruction (LARX) finished. LARX and STCX are instructions used to acquire a lock." - }, - { - "EventCode": "0x4C010", - "EventName": "PM_DISP_STALL_BR_MPRED_IC_L3MISS", - "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from sources beyond the local L3 after suffering a mispredicted branch." - }, - { - "EventCode": "0x4D01E", - "EventName": "PM_DISP_STALL_BR_MPRED", - "BriefDescription": "Cycles when dispatch was stalled for this thread due to a mispredicted branch." - }, - { - "EventCode": "0x4E010", - "EventName": "PM_DISP_STALL_IC_L3MISS", - "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from any source beyond the local L3." - }, - { - "EventCode": "0x4E01A", - "EventName": "PM_DISP_STALL_HELD_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch for any reason." - }, - { - "EventCode": "0x4003C", - "EventName": "PM_DISP_STALL_HELD_SYNC_CYC", - "BriefDescription": "Cycles in which the NTC instruction is held at dispatch because of a synchronizing instruction that requires the ICT to be empty before dispatch." - }, - { "EventCode": "0x44056", "EventName": "PM_VECTOR_ST_CMPL", - "BriefDescription": "Vector store instructions completed." + "BriefDescription": "Vector store instruction completed." } ] only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/marked.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/marked.json @@ -1,15 +1,30 @@ [ { - "EventCode": "0x1002C", - "EventName": "PM_LD_PREFETCH_CACHE_LINE_MISS", - "BriefDescription": "The L1 cache was reloaded with a line that fulfills a prefetch request." - }, - { "EventCode": "0x10132", "EventName": "PM_MRK_INST_ISSUED", "BriefDescription": "Marked instruction issued. Note that stores always get issued twice, the address gets issued to the LSU and the data gets issued to the VSU. Also, issues can sometimes get killed/cancelled and cause multiple sequential issues for the same instruction." }, { + "EventCode": "0x10134", + "EventName": "PM_MRK_ST_DONE_L2", + "BriefDescription": "Marked store completed in L2." + }, + { + "EventCode": "0x1C142", + "EventName": "PM_MRK_XFER_FROM_SRC_PMC1", + "BriefDescription": "For a marked data transfer instruction, the processor's L1 data cache was reloaded from the source specified in MMCR3[0:12]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." + }, + { + "EventCode": "0x1C144", + "EventName": "PM_MRK_XFER_FROM_SRC_CYC_PMC1", + "BriefDescription": "Cycles taken for a marked demand miss to reload a line from the source specified in MMCR3[0:12]." + }, + { + "EventCode": "0x1F150", + "EventName": "PM_MRK_ST_L2_CYC", + "BriefDescription": "Cycles from L2 RC dispatch to L2 RC completion." + }, + { "EventCode": "0x101E0", "EventName": "PM_MRK_INST_DISP", "BriefDescription": "The thread has dispatched a randomly sampled marked instruction." @@ -20,14 +35,39 @@ "BriefDescription": "Marked Branch Taken instruction completed." }, { - "EventCode": "0x20112", - "EventName": "PM_MRK_NTF_FIN", - "BriefDescription": "The marked instruction became the oldest in the pipeline before it finished. It excludes instructions that finish at dispatch." + "EventCode": "0x101E4", + "EventName": "PM_MRK_L1_ICACHE_MISS", + "BriefDescription": "Marked instruction suffered an instruction cache miss." + }, + { + "EventCode": "0x101EA", + "EventName": "PM_MRK_L1_RELOAD_VALID", + "BriefDescription": "Marked demand reload." + }, + { + "EventCode": "0x20114", + "EventName": "PM_MRK_L2_RC_DISP", + "BriefDescription": "Marked instruction RC dispatched in L2." }, { - "EventCode": "0x2C01C", - "EventName": "PM_EXEC_STALL_DMISS_OFF_CHIP", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from a remote chip." + "EventCode": "0x2011C", + "EventName": "PM_MRK_NTF_CYC", + "BriefDescription": "Cycles in which the marked instruction is the oldest in the pipeline (next-to-finish or next-to-complete)." + }, + { + "EventCode": "0x20130", + "EventName": "PM_MRK_INST_DECODED", + "BriefDescription": "An instruction was marked at decode time. Random Instruction Sampling (RIS) only." + }, + { + "EventCode": "0x20132", + "EventName": "PM_MRK_DFU_ISSUE", + "BriefDescription": "The marked instruction was a decimal floating point operation issued to the VSU. Measured at issue time." + }, + { + "EventCode": "0x20134", + "EventName": "PM_MRK_FXU_ISSUE", + "BriefDescription": "The marked instruction was a fixed point operation issued to the VSU. Measured at issue time." }, { "EventCode": "0x20138", @@ -40,6 +80,16 @@ "BriefDescription": "Marked Branch instruction finished." }, { + "EventCode": "0x2013C", + "EventName": "PM_MRK_FX_LSU_FIN", + "BriefDescription": "The marked instruction was simple fixed point that was issued to the store unit. Measured at finish time." + }, + { + "EventCode": "0x2C142", + "EventName": "PM_MRK_XFER_FROM_SRC_PMC2", + "BriefDescription": "For a marked data transfer instruction, the processor's L1 data cache was reloaded from the source specified in MMCR3[15:27]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." + }, + { "EventCode": "0x2C144", "EventName": "PM_MRK_XFER_FROM_SRC_CYC_PMC2", "BriefDescription": "Cycles taken for a marked demand miss to reload a line from the source specified in MMCR3[15:27]." @@ -60,19 +110,49 @@ "BriefDescription": "A marked branch completed. All branches are included." }, { - "EventCode": "0x200FD", - "EventName": "PM_L1_ICACHE_MISS", - "BriefDescription": "Demand iCache Miss." + "EventCode": "0x2D154", + "EventName": "PM_MRK_DERAT_MISS_64K", + "BriefDescription": "Data ERAT Miss (Data TLB Access) page size 64K for a marked instruction. When MMCR1[16]=0 this event counts only DERAT reloads for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." + }, + { + "EventCode": "0x201E0", + "EventName": "PM_MRK_DATA_FROM_MEMORY", + "BriefDescription": "The processor's data cache was reloaded from local, remote, or distant memory due to a demand miss for a marked load." + }, + { + "EventCode": "0x201E2", + "EventName": "PM_MRK_LD_MISS_L1", + "BriefDescription": "Marked demand data load miss counted at finish time." }, { - "EventCode": "0x30130", - "EventName": "PM_MRK_INST_FIN", - "BriefDescription": "marked instruction finished. Excludes instructions that finish at dispatch. Note that stores always finish twice since the address gets issued to the LSU and the data gets issued to the VSU." + "EventCode": "0x201E4", + "EventName": "PM_MRK_DATA_FROM_L3MISS", + "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss for a marked load." + }, + { + "EventCode": "0x3012A", + "EventName": "PM_MRK_L2_RC_DONE", + "BriefDescription": "L2 RC machine completed the transaction for the marked instruction." + }, + { + "EventCode": "0x30132", + "EventName": "PM_MRK_VSU_FIN", + "BriefDescription": "VSU marked instruction finished. Excludes simple FX instructions issued to the Store Unit." }, { "EventCode": "0x34146", "EventName": "PM_MRK_LD_CMPL", - "BriefDescription": "Marked loads completed." + "BriefDescription": "Marked load instruction completed." + }, + { + "EventCode": "0x3C142", + "EventName": "PM_MRK_XFER_FROM_SRC_PMC3", + "BriefDescription": "For a marked data transfer instruction, the processor's L1 data cache was reloaded from the source specified in MMCR3[30:42]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." + }, + { + "EventCode": "0x3C144", + "EventName": "PM_MRK_XFER_FROM_SRC_CYC_PMC3", + "BriefDescription": "Cycles taken for a marked demand miss to reload a line from the source specified in MMCR3[30:42]." }, { "EventCode": "0x3E158", @@ -82,12 +162,22 @@ { "EventCode": "0x3E15A", "EventName": "PM_MRK_ST_FIN", - "BriefDescription": "The marked instruction was a store of any kind." + "BriefDescription": "Marked store instruction finished." }, { - "EventCode": "0x30068", - "EventName": "PM_L1_ICACHE_RELOADED_PREF", - "BriefDescription": "Counts all Icache prefetch reloads ( includes demand turned into prefetch)." + "EventCode": "0x3F150", + "EventName": "PM_MRK_ST_DRAIN_CYC", + "BriefDescription": "Cycles in which the marked store drained from the core to the L2." + }, + { + "EventCode": "0x30162", + "EventName": "PM_MRK_ISSUE_DEPENDENT_LOAD", + "BriefDescription": "The marked instruction was dependent on a load. It is eligible for issue kill." + }, + { + "EventCode": "0x301E2", + "EventName": "PM_MRK_ST_CMPL", + "BriefDescription": "Marked store completed and sent to nest. Note that this count excludes cache-inhibited stores." }, { "EventCode": "0x301E4", @@ -95,48 +185,58 @@ "BriefDescription": "Marked Branch Mispredicted. Includes direction and target." }, { - "EventCode": "0x300F6", - "EventName": "PM_LD_DEMAND_MISS_L1", - "BriefDescription": "The L1 cache was reloaded with a line that fulfills a demand miss request. Counted at reload time, before finish." + "EventCode": "0x40116", + "EventName": "PM_MRK_LARX_FIN", + "BriefDescription": "Marked load and reserve instruction (LARX) finished. LARX and STCX are instructions used to acquire a lock." + }, + { + "EventCode": "0x40132", + "EventName": "PM_MRK_LSU_FIN", + "BriefDescription": "LSU marked instruction finish." }, { - "EventCode": "0x300FE", - "EventName": "PM_DATA_FROM_L3MISS", - "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss." + "EventCode": "0x44146", + "EventName": "PM_MRK_STCX_CORE_CYC", + "BriefDescription": "Cycles spent in the core portion of a marked STCX instruction. It starts counting when the instruction is decoded and stops counting when it drains into the L2." }, { - "EventCode": "0x40012", - "EventName": "PM_L1_ICACHE_RELOADED_ALL", - "BriefDescription": "Counts all Icache reloads includes demand, prefetch, prefetch turned into demand and demand turned into prefetch." + "EventCode": "0x4C142", + "EventName": "PM_MRK_XFER_FROM_SRC_PMC4", + "BriefDescription": "For a marked data transfer instruction, the processor's L1 data cache was reloaded from the source specified in MMCR3[45:57]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." }, { - "EventCode": "0x40134", - "EventName": "PM_MRK_INST_TIMEO", - "BriefDescription": "Marked instruction finish timeout (instruction was lost)." + "EventCode": "0x4C144", + "EventName": "PM_MRK_XFER_FROM_SRC_CYC_PMC4", + "BriefDescription": "Cycles taken for a marked demand miss to reload a line from the source specified in MMCR3[45:57]." }, { - "EventCode": "0x4505A", - "EventName": "PM_SP_FLOP_CMPL", - "BriefDescription": "Single Precision floating point instructions completed." + "EventCode": "0x4C15E", + "EventName": "PM_MRK_DTLB_MISS_64K", + "BriefDescription": "Marked Data TLB reload (after a miss) page size 64K. When MMCR1[16]=0 this event counts only for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." }, { - "EventCode": "0x4D058", - "EventName": "PM_VECTOR_FLOP_CMPL", - "BriefDescription": "Vector floating point instructions completed." + "EventCode": "0x4E15E", + "EventName": "PM_MRK_INST_FLUSHED", + "BriefDescription": "The marked instruction was flushed." }, { - "EventCode": "0x4D05A", - "EventName": "PM_NON_MATH_FLOP_CMPL", - "BriefDescription": "Non Math instructions completed." + "EventCode": "0x40164", + "EventName": "PM_MRK_DERAT_MISS_2M", + "BriefDescription": "Data ERAT Miss (Data TLB Access) page size 2M for a marked instruction. When MMCR1[16]=0 this event counts only DERAT reloads for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." }, { "EventCode": "0x401E0", "EventName": "PM_MRK_INST_CMPL", - "BriefDescription": "marked instruction completed." + "BriefDescription": "Marked instruction completed." + }, + { + "EventCode": "0x401E6", + "EventName": "PM_MRK_INST_FROM_L3MISS", + "BriefDescription": "The processor's instruction cache was reloaded from beyond the local core's L3 due to a demand miss for a marked instruction." }, { - "EventCode": "0x400FE", - "EventName": "PM_DATA_FROM_MEMORY", - "BriefDescription": "The processor's data cache was reloaded from local, remote, or distant memory due to a demand miss." + "EventCode": "0x401E8", + "EventName": "PM_MRK_DATA_FROM_L2MISS", + "BriefDescription": "The processor's L1 data cache was reloaded from a source beyond the local core's L2 due to a demand miss for a marked instruction." } ] only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/memory.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/memory.json @@ -1,25 +1,10 @@ [ { - "EventCode": "0x1000A", - "EventName": "PM_PMC3_REWIND", - "BriefDescription": "The speculative event selected for PMC3 rewinds and the counter for PMC3 is not charged." - }, - { "EventCode": "0x1C040", "EventName": "PM_XFER_FROM_SRC_PMC1", "BriefDescription": "The processor's L1 data cache was reloaded from the source specified in MMCR3[0:12]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." }, { - "EventCode": "0x1C142", - "EventName": "PM_MRK_XFER_FROM_SRC_PMC1", - "BriefDescription": "For a marked data transfer instruction, the processor's L1 data cache was reloaded from the source specified in MMCR3[0:12]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." - }, - { - "EventCode": "0x1C144", - "EventName": "PM_MRK_XFER_FROM_SRC_CYC_PMC1", - "BriefDescription": "Cycles taken for a marked demand miss to reload a line from the source specified in MMCR3[0:12]." - }, - { "EventCode": "0x1C056", "EventName": "PM_DERAT_MISS_4K", "BriefDescription": "Data ERAT Miss (Data TLB Access) page size 4K. When MMCR1[16]=0 this event counts only DERAT reloads for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." @@ -35,24 +20,9 @@ "BriefDescription": "Data TLB reload (after a miss) page size 2M. Implies radix translation was used. When MMCR1[16]=0 this event counts only for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." }, { - "EventCode": "0x1E056", - "EventName": "PM_EXEC_STALL_STORE_PIPE", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in the store unit. This does not include cycles spent handling store misses, PTESYNC instructions or TLBIE instructions." - }, - { - "EventCode": "0x1F150", - "EventName": "PM_MRK_ST_L2_CYC", - "BriefDescription": "Cycles from L2 RC dispatch to L2 RC completion." - }, - { "EventCode": "0x10062", "EventName": "PM_LD_L3MISS_PEND_CYC", - "BriefDescription": "Cycles L3 miss was pending for this thread." - }, - { - "EventCode": "0x20010", - "EventName": "PM_PMC1_OVERFLOW", - "BriefDescription": "The event selected for PMC1 caused the event counter to overflow." + "BriefDescription": "Cycles in which an L3 miss was pending for this thread." }, { "EventCode": "0x2001A", @@ -80,36 +50,16 @@ "BriefDescription": "Data TLB reload (after a miss) page size 4K. When MMCR1[16]=0 this event counts only for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." }, { - "EventCode": "0x2D154", - "EventName": "PM_MRK_DERAT_MISS_64K", - "BriefDescription": "Data ERAT Miss (Data TLB Access) page size 64K for a marked instruction. When MMCR1[16]=0 this event counts only DERAT reloads for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." - }, - { "EventCode": "0x200F6", "EventName": "PM_DERAT_MISS", "BriefDescription": "DERAT Reloaded to satisfy a DERAT miss. All page sizes are counted by this event. When MMCR1[16]=0 this event counts only DERAT reloads for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." }, { - "EventCode": "0x30016", - "EventName": "PM_EXEC_STALL_DERAT_DTLB_MISS", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline suffered a TLB miss and waited for it resolve." - }, - { "EventCode": "0x3C040", "EventName": "PM_XFER_FROM_SRC_PMC3", "BriefDescription": "The processor's L1 data cache was reloaded from the source specified in MMCR3[30:42]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." }, { - "EventCode": "0x3C142", - "EventName": "PM_MRK_XFER_FROM_SRC_PMC3", - "BriefDescription": "For a marked data transfer instruction, the processor's L1 data cache was reloaded from the source specified in MMCR3[30:42]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." - }, - { - "EventCode": "0x3C144", - "EventName": "PM_MRK_XFER_FROM_SRC_CYC_PMC3", - "BriefDescription": "Cycles taken for a marked demand miss to reload a line from the source specified in MMCR3[30:42]." - }, - { "EventCode": "0x3C054", "EventName": "PM_DERAT_MISS_16M", "BriefDescription": "Data ERAT Miss (Data TLB Access) page size 16M. When MMCR1[16]=0 this event counts only DERAT reloads for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." @@ -125,24 +75,14 @@ "BriefDescription": "Load and reserve instruction (LARX) finished. LARX and STCX are instructions used to acquire a lock." }, { - "EventCode": "0x301E2", - "EventName": "PM_MRK_ST_CMPL", - "BriefDescription": "Marked store completed and sent to nest. Note that this count excludes cache-inhibited stores." - }, - { "EventCode": "0x300FC", "EventName": "PM_DTLB_MISS", - "BriefDescription": "The DPTEG required for the load/store instruction in execution was missing from the TLB. It includes pages of all sizes for demand and prefetch activity." - }, - { - "EventCode": "0x4D02C", - "EventName": "PM_PMC1_REWIND", - "BriefDescription": "The speculative event selected for PMC1 rewinds and the counter for PMC1 is not charged." + "BriefDescription": "The DPTEG required for the load/store instruction in execution was missing from the TLB. This event only counts for demand misses." }, { "EventCode": "0x4003E", "EventName": "PM_LD_CMPL", - "BriefDescription": "Loads completed." + "BriefDescription": "Load instruction completed." }, { "EventCode": "0x4C040", @@ -150,16 +90,6 @@ "BriefDescription": "The processor's L1 data cache was reloaded from the source specified in MMCR3[45:57]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." }, { - "EventCode": "0x4C142", - "EventName": "PM_MRK_XFER_FROM_SRC_PMC4", - "BriefDescription": "For a marked data transfer instruction, the processor's L1 data cache was reloaded from the source specified in MMCR3[45:57]. If MMCR1[16|17] is 0 (default), this count includes only lines that were reloaded to satisfy a demand miss. If MMCR1[16|17] is 1, this count includes both demand misses and prefetch reloads." - }, - { - "EventCode": "0x4C144", - "EventName": "PM_MRK_XFER_FROM_SRC_CYC_PMC4", - "BriefDescription": "Cycles taken for a marked demand miss to reload a line from the source specified in MMCR3[45:57]." - }, - { "EventCode": "0x4C056", "EventName": "PM_DTLB_MISS_16M", "BriefDescription": "Data TLB reload (after a miss) page size 16M. When MMCR1[16]=0 this event counts only for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." @@ -168,20 +98,5 @@ "EventCode": "0x4C05A", "EventName": "PM_DTLB_MISS_1G", "BriefDescription": "Data TLB reload (after a miss) page size 1G. Implies radix translation was used. When MMCR1[16]=0 this event counts only for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." - }, - { - "EventCode": "0x4C15E", - "EventName": "PM_MRK_DTLB_MISS_64K", - "BriefDescription": "Marked Data TLB reload (after a miss) page size 64K. When MMCR1[16]=0 this event counts only for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." - }, - { - "EventCode": "0x4D056", - "EventName": "PM_NON_FMA_FLOP_CMPL", - "BriefDescription": "Non FMA instruction completed." - }, - { - "EventCode": "0x40164", - "EventName": "PM_MRK_DERAT_MISS_2M", - "BriefDescription": "Data ERAT Miss (Data TLB Access) page size 2M for a marked instruction. When MMCR1[16]=0 this event counts only DERAT reloads for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." } ] only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/metrics.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/metrics.json @@ -16,133 +16,133 @@ "BriefDescription": "Average cycles per completed instruction when dispatch was stalled for any reason", "MetricExpr": "PM_DISP_STALL_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI;CPI_STALL_RATIO", - "MetricName": "DISPATCHED_CPI" + "MetricName": "DISPATCH_STALL_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled because there was a flush", "MetricExpr": "PM_DISP_STALL_FLUSH / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_FLUSH_CPI" + "MetricName": "DISPATCH_STALL_FLUSH_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled because the MMU was handling a translation miss", "MetricExpr": "PM_DISP_STALL_TRANSLATION / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_TRANSLATION_CPI" + "MetricName": "DISPATCH_STALL_TRANSLATION_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled waiting to resolve an instruction ERAT miss", "MetricExpr": "PM_DISP_STALL_IERAT_ONLY_MISS / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_IERAT_ONLY_MISS_CPI" + "MetricName": "DISPATCH_STALL_IERAT_ONLY_MISS_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled waiting to resolve an instruction TLB miss", "MetricExpr": "PM_DISP_STALL_ITLB_MISS / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_ITLB_MISS_CPI" + "MetricName": "DISPATCH_STALL_ITLB_MISS_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled due to an icache miss", "MetricExpr": "PM_DISP_STALL_IC_MISS / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_IC_MISS_CPI" + "MetricName": "DISPATCH_STALL_IC_MISS_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled while the instruction was fetched from the local L2", "MetricExpr": "PM_DISP_STALL_IC_L2 / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_IC_L2_CPI" + "MetricName": "DISPATCH_STALL_IC_L2_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled while the instruction was fetched from the local L3", "MetricExpr": "PM_DISP_STALL_IC_L3 / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_IC_L3_CPI" + "MetricName": "DISPATCH_STALL_IC_L3_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled while the instruction was fetched from any source beyond the local L3", "MetricExpr": "PM_DISP_STALL_IC_L3MISS / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_IC_L3MISS_CPI" + "MetricName": "DISPATCH_STALL_IC_L3MISS_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled due to an icache miss after a branch mispredict", "MetricExpr": "PM_DISP_STALL_BR_MPRED_ICMISS / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_BR_MPRED_ICMISS_CPI" + "MetricName": "DISPATCH_STALL_BR_MPRED_ICMISS_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled while instruction was fetched from the local L2 after suffering a branch mispredict", "MetricExpr": "PM_DISP_STALL_BR_MPRED_IC_L2 / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_BR_MPRED_IC_L2_CPI" + "MetricName": "DISPATCH_STALL_BR_MPRED_IC_L2_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled while instruction was fetched from the local L3 after suffering a branch mispredict", "MetricExpr": "PM_DISP_STALL_BR_MPRED_IC_L3 / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_BR_MPRED_IC_L3_CPI" + "MetricName": "DISPATCH_STALL_BR_MPRED_IC_L3_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled while instruction was fetched from any source beyond the local L3 after suffering a branch mispredict", "MetricExpr": "PM_DISP_STALL_BR_MPRED_IC_L3MISS / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_BR_MPRED_IC_L3MISS_CPI" + "MetricName": "DISPATCH_STALL_BR_MPRED_IC_L3MISS_CPI" }, { "BriefDescription": "Average cycles per completed instruction when dispatch was stalled due to a branch mispredict", "MetricExpr": "PM_DISP_STALL_BR_MPRED / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_BR_MPRED_CPI" + "MetricName": "DISPATCH_STALL_BR_MPRED_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch for any reason", "MetricExpr": "PM_DISP_STALL_HELD_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_HELD_CPI" + "MetricName": "DISPATCH_STALL_HELD_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch because of a synchronizing instruction that requires the ICT to be empty before dispatch", "MetricExpr": "PM_DISP_STALL_HELD_SYNC_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISP_HELD_STALL_SYNC_CPI" + "MetricName": "DISPATCH_STALL_HELD_SYNC_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch while waiting on the scoreboard", "MetricExpr": "PM_DISP_STALL_HELD_SCOREBOARD_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISP_HELD_STALL_SCOREBOARD_CPI" + "MetricName": "DISPATCH_STALL_HELD_SCOREBOARD_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch due to issue queue full", "MetricExpr": "PM_DISP_STALL_HELD_ISSQ_FULL_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISP_HELD_STALL_ISSQ_FULL_CPI" + "MetricName": "DISPATCH_STALL_HELD_ISSQ_FULL_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch because the mapper/SRB was full", "MetricExpr": "PM_DISP_STALL_HELD_RENAME_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_HELD_RENAME_CPI" + "MetricName": "DISPATCH_STALL_HELD_RENAME_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch because the STF mapper/SRB was full", "MetricExpr": "PM_DISP_STALL_HELD_STF_MAPPER_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_HELD_STF_MAPPER_CPI" + "MetricName": "DISPATCH_STALL_HELD_STF_MAPPER_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch because the XVFC mapper/SRB was full", "MetricExpr": "PM_DISP_STALL_HELD_XVFC_MAPPER_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_HELD_XVFC_MAPPER_CPI" + "MetricName": "DISPATCH_STALL_HELD_XVFC_MAPPER_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch for any other reason", "MetricExpr": "PM_DISP_STALL_HELD_OTHER_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_HELD_OTHER_CPI" + "MetricName": "DISPATCH_STALL_HELD_OTHER_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction has been dispatched but not issued for any reason", @@ -352,13 +352,13 @@ "BriefDescription": "Average cycles per completed instruction when dispatch was stalled because fetch was being held, so there was nothing in the pipeline for this thread", "MetricExpr": "PM_DISP_STALL_FETCH / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_FETCH_CPI" + "MetricName": "DISPATCH_STALL_FETCH_CPI" }, { "BriefDescription": "Average cycles per completed instruction when the NTC instruction was held at dispatch because of power management", "MetricExpr": "PM_DISP_STALL_HELD_HALT_CYC / PM_RUN_INST_CMPL", "MetricGroup": "CPI", - "MetricName": "DISPATCHED_HELD_HALT_CPI" + "MetricName": "DISPATCH_STALL_HELD_HALT_CPI" }, { "BriefDescription": "Percentage of flushes per completed instruction", @@ -454,12 +454,6 @@ "MetricName": "LOADS_PER_INST" }, { - "BriefDescription": "Average number of finished stores per completed instruction", - "MetricExpr": "PM_ST_FIN / PM_RUN_INST_CMPL", - "MetricGroup": "General", - "MetricName": "STORES_PER_INST" - }, - { "BriefDescription": "Percentage of demand loads that reloaded from beyond the L2 per completed instruction", "MetricExpr": "PM_DATA_FROM_L2MISS / PM_RUN_INST_CMPL * 100", "MetricGroup": "dL1_Reloads", @@ -566,7 +560,7 @@ "BriefDescription": "Average number of STCX instructions finshed per completed instruction", "MetricExpr": "PM_STCX_FIN / PM_RUN_INST_CMPL", "MetricGroup": "General", - "MetricName": "STXC_PER_INST" + "MetricName": "STCX_PER_INST" }, { "BriefDescription": "Average number of LARX instructions finshed per completed instruction", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/others.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/others.json @@ -1,28 +1,13 @@ [ { - "EventCode": "0x10016", - "EventName": "PM_VSU0_ISSUE", - "BriefDescription": "VSU instructions issued to VSU pipe 0." - }, - { - "EventCode": "0x1001C", - "EventName": "PM_ULTRAVISOR_INST_CMPL", - "BriefDescription": "PowerPC instructions that completed while the thread was in ultravisor state." - }, - { - "EventCode": "0x100F0", - "EventName": "PM_CYC", - "BriefDescription": "Processor cycles." - }, - { - "EventCode": "0x10134", - "EventName": "PM_MRK_ST_DONE_L2", - "BriefDescription": "Marked stores completed in L2 (RC machine done)." + "EventCode": "0x1002C", + "EventName": "PM_LD_PREFETCH_CACHE_LINE_MISS", + "BriefDescription": "The L1 cache was reloaded with a line that fulfills a prefetch request." }, { "EventCode": "0x1505E", "EventName": "PM_LD_HIT_L1", - "BriefDescription": "Loads that finished without experiencing an L1 miss." + "BriefDescription": "Load finished without experiencing an L1 miss." }, { "EventCode": "0x1F056", @@ -30,49 +15,19 @@ "BriefDescription": "Cycles in which Superslice 0 dispatches either 1 or 2 instructions." }, { - "EventCode": "0x1F15C", - "EventName": "PM_MRK_STCX_L2_CYC", - "BriefDescription": "Cycles spent in the nest portion of a marked Stcx instruction. It starts counting when the operation starts to drain to the L2 and it stops counting when the instruction retires from the Instruction Completion Table (ICT) in the Instruction Sequencing Unit (ISU)." - }, - { "EventCode": "0x10066", "EventName": "PM_ADJUNCT_CYC", "BriefDescription": "Cycles in which the thread is in Adjunct state. MSR[S HV PR] bits = 011." }, { - "EventCode": "0x101E4", - "EventName": "PM_MRK_L1_ICACHE_MISS", - "BriefDescription": "Marked Instruction suffered an icache Miss." - }, - { - "EventCode": "0x101EA", - "EventName": "PM_MRK_L1_RELOAD_VALID", - "BriefDescription": "Marked demand reload." - }, - { - "EventCode": "0x100F4", - "EventName": "PM_FLOP_CMPL", - "BriefDescription": "Floating Point Operations Completed. Includes any type. It counts once for each 1, 2, 4 or 8 flop instruction. Use PM_1|2|4|8_FLOP_CMPL events to count flops." - }, - { - "EventCode": "0x100FA", - "EventName": "PM_RUN_LATCH_ANY_THREAD_CYC", - "BriefDescription": "Cycles when at least one thread has the run latch set." - }, - { "EventCode": "0x100FC", "EventName": "PM_LD_REF_L1", "BriefDescription": "All L1 D cache load references counted at finish, gated by reject. In P9 and earlier this event counted only cacheable loads but in P10 both cacheable and non-cacheable loads are included." }, { - "EventCode": "0x2000C", - "EventName": "PM_RUN_LATCH_ALL_THREADS_CYC", - "BriefDescription": "Cycles when the run latch is set for all threads." - }, - { "EventCode": "0x2E010", "EventName": "PM_ADJUNCT_INST_CMPL", - "BriefDescription": "PowerPC instructions that completed while the thread is in Adjunct state." + "BriefDescription": "PowerPC instruction completed while the thread was in Adjunct state." }, { "EventCode": "0x2E014", @@ -80,26 +35,6 @@ "BriefDescription": "Conditional store instruction (STCX) finished. LARX and STCX are instructions used to acquire a lock." }, { - "EventCode": "0x20130", - "EventName": "PM_MRK_INST_DECODED", - "BriefDescription": "An instruction was marked at decode time. Random Instruction Sampling (RIS) only." - }, - { - "EventCode": "0x20132", - "EventName": "PM_MRK_DFU_ISSUE", - "BriefDescription": "The marked instruction was a decimal floating point operation issued to the VSU. Measured at issue time." - }, - { - "EventCode": "0x20134", - "EventName": "PM_MRK_FXU_ISSUE", - "BriefDescription": "The marked instruction was a fixed point operation issued to the VSU. Measured at issue time." - }, - { - "EventCode": "0x2505C", - "EventName": "PM_VSU_ISSUE", - "BriefDescription": "At least one VSU instruction was issued to one of the VSU pipes. Up to 4 per cycle. Includes fixed point operations." - }, - { "EventCode": "0x2F054", "EventName": "PM_DISP_SS1_2_INSTR_CYC", "BriefDescription": "Cycles in which Superslice 1 dispatches either 1 or 2 instructions." @@ -110,39 +45,14 @@ "BriefDescription": "Cycles in which Superslice 1 dispatches either 3 or 4 instructions." }, { - "EventCode": "0x2006C", - "EventName": "PM_RUN_CYC_SMT4_MODE", - "BriefDescription": "Cycles when this thread's run latch is set and the core is in SMT4 mode." - }, - { - "EventCode": "0x201E0", - "EventName": "PM_MRK_DATA_FROM_MEMORY", - "BriefDescription": "The processor's data cache was reloaded from local, remote, or distant memory due to a demand miss for a marked load." - }, - { - "EventCode": "0x201E4", - "EventName": "PM_MRK_DATA_FROM_L3MISS", - "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss for a marked load." - }, - { - "EventCode": "0x201E8", - "EventName": "PM_THRESH_EXC_512", - "BriefDescription": "Threshold counter exceeded a value of 512." - }, - { "EventCode": "0x200F2", "EventName": "PM_INST_DISP", - "BriefDescription": "PowerPC instructions dispatched." - }, - { - "EventCode": "0x30132", - "EventName": "PM_MRK_VSU_FIN", - "BriefDescription": "VSU marked instructions finished. Excludes simple FX instructions issued to the Store Unit." + "BriefDescription": "PowerPC instruction dispatched." }, { - "EventCode": "0x30038", - "EventName": "PM_EXEC_STALL_DMISS_LMEM", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from the local memory, local OpenCapp cache, or local OpenCapp memory." + "EventCode": "0x200FD", + "EventName": "PM_L1_ICACHE_MISS", + "BriefDescription": "Demand instruction cache miss." }, { "EventCode": "0x3F04A", @@ -152,12 +62,7 @@ { "EventCode": "0x3405A", "EventName": "PM_PRIVILEGED_INST_CMPL", - "BriefDescription": "PowerPC Instructions that completed while the thread is in Privileged state." - }, - { - "EventCode": "0x3F150", - "EventName": "PM_MRK_ST_DRAIN_CYC", - "BriefDescription": "cycles to drain st from core to L2." + "BriefDescription": "PowerPC instruction completed while the thread was in Privileged state." }, { "EventCode": "0x3F054", @@ -170,74 +75,29 @@ "BriefDescription": "Cycles in which Superslice 0 dispatches either 5, 6, 7 or 8 instructions." }, { - "EventCode": "0x30162", - "EventName": "PM_MRK_ISSUE_DEPENDENT_LOAD", - "BriefDescription": "The marked instruction was dependent on a load. It is eligible for issue kill." - }, - { - "EventCode": "0x40114", - "EventName": "PM_MRK_START_PROBE_NOP_DISP", - "BriefDescription": "Marked Start probe nop dispatched. Instruction AND R0,R0,R0." - }, - { - "EventCode": "0x4001C", - "EventName": "PM_VSU_FIN", - "BriefDescription": "VSU instructions finished." - }, - { - "EventCode": "0x4C01A", - "EventName": "PM_EXEC_STALL_DMISS_OFF_NODE", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from a distant chip." - }, - { - "EventCode": "0x4D012", - "EventName": "PM_PMC3_SAVED", - "BriefDescription": "The conditions for the speculative event selected for PMC3 are met and PMC3 is charged." + "EventCode": "0x30068", + "EventName": "PM_L1_ICACHE_RELOADED_PREF", + "BriefDescription": "Counts all instruction cache prefetch reloads (includes demand turned into prefetch)." }, { - "EventCode": "0x4D022", - "EventName": "PM_HYPERVISOR_INST_CMPL", - "BriefDescription": "PowerPC instructions that completed while the thread is in hypervisor state." + "EventCode": "0x300F6", + "EventName": "PM_LD_DEMAND_MISS_L1", + "BriefDescription": "The L1 cache was reloaded with a line that fulfills a demand miss request. Counted at reload time, before finish." }, { - "EventCode": "0x4D026", - "EventName": "PM_ULTRAVISOR_CYC", - "BriefDescription": "Cycles when the thread is in Ultravisor state. MSR[S HV PR]=110." + "EventCode": "0x300FE", + "EventName": "PM_DATA_FROM_L3MISS", + "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss." }, { - "EventCode": "0x4D028", - "EventName": "PM_PRIVILEGED_CYC", - "BriefDescription": "Cycles when the thread is in Privileged state. MSR[S HV PR]=x00." - }, - { - "EventCode": "0x40030", - "EventName": "PM_INST_FIN", - "BriefDescription": "Instructions finished." - }, - { - "EventCode": "0x44146", - "EventName": "PM_MRK_STCX_CORE_CYC", - "BriefDescription": "Cycles spent in the core portion of a marked Stcx instruction. It starts counting when the instruction is decoded and stops counting when it drains into the L2." + "EventCode": "0x40012", + "EventName": "PM_L1_ICACHE_RELOADED_ALL", + "BriefDescription": "Counts all instruction cache reloads includes demand, prefetch, prefetch turned into demand and demand turned into prefetch." }, { "EventCode": "0x44054", "EventName": "PM_VECTOR_LD_CMPL", - "BriefDescription": "Vector load instructions completed." - }, - { - "EventCode": "0x45054", - "EventName": "PM_FMA_CMPL", - "BriefDescription": "Two floating point instructions completed (FMA class of instructions: fmadd, fnmadd, fmsub, fnmsub). Scalar instructions only." - }, - { - "EventCode": "0x45056", - "EventName": "PM_SCALAR_FLOP_CMPL", - "BriefDescription": "Scalar floating point instructions completed." - }, - { - "EventCode": "0x4505C", - "EventName": "PM_MATH_FLOP_CMPL", - "BriefDescription": "Math floating point instructions completed." + "BriefDescription": "Vector load instruction completed." }, { "EventCode": "0x4D05E", @@ -245,28 +105,13 @@ "BriefDescription": "A branch completed. All branches are included." }, { - "EventCode": "0x4E15E", - "EventName": "PM_MRK_INST_FLUSHED", - "BriefDescription": "The marked instruction was flushed." - }, - { - "EventCode": "0x401E6", - "EventName": "PM_MRK_INST_FROM_L3MISS", - "BriefDescription": "The processor's instruction cache was reloaded from a source other than the local core's L1, L2, or L3 due to a demand miss for a marked instruction." - }, - { - "EventCode": "0x401E8", - "EventName": "PM_MRK_DATA_FROM_L2MISS", - "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1 or L2 due to a demand miss for a marked load." - }, - { "EventCode": "0x400F0", "EventName": "PM_LD_DEMAND_MISS_L1_FIN", - "BriefDescription": "Load Missed L1, counted at finish time." + "BriefDescription": "Load missed L1, counted at finish time." }, { - "EventCode": "0x500FA", - "EventName": "PM_RUN_INST_CMPL", - "BriefDescription": "Completed PowerPC instructions gated by the run latch." + "EventCode": "0x400FE", + "EventName": "PM_DATA_FROM_MEMORY", + "BriefDescription": "The processor's data cache was reloaded from local, remote, or distant memory due to a demand miss." } ] only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/pipeline.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/pipeline.json @@ -1,8 +1,13 @@ [ { - "EventCode": "0x100FE", - "EventName": "PM_INST_CMPL", - "BriefDescription": "PowerPC instructions completed." + "EventCode": "0x10004", + "EventName": "PM_EXEC_STALL_TRANSLATION", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline suffered a TLB miss or ERAT miss and waited for it to resolve." + }, + { + "EventCode": "0x10006", + "EventName": "PM_DISP_STALL_HELD_OTHER_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch for any other reason." }, { "EventCode": "0x1000C", @@ -12,7 +17,7 @@ { "EventCode": "0x1000E", "EventName": "PM_MMA_ISSUED", - "BriefDescription": "MMA instructions issued." + "BriefDescription": "MMA instruction issued." }, { "EventCode": "0x10012", @@ -30,14 +35,19 @@ "BriefDescription": "Cycles in which an instruction reload is pending to satisfy a demand miss." }, { - "EventCode": "0x10022", - "EventName": "PM_PMC2_SAVED", - "BriefDescription": "The conditions for the speculative event selected for PMC2 are met and PMC2 is charged." + "EventCode": "0x10038", + "EventName": "PM_DISP_STALL_TRANSLATION", + "BriefDescription": "Cycles when dispatch was stalled for this thread because the MMU was handling a translation miss." }, { - "EventCode": "0x10024", - "EventName": "PM_PMC5_OVERFLOW", - "BriefDescription": "The event selected for PMC5 caused the event counter to overflow." + "EventCode": "0x1003A", + "EventName": "PM_DISP_STALL_BR_MPRED_IC_L2", + "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from the local L2 after suffering a branch mispredict." + }, + { + "EventCode": "0x1003C", + "EventName": "PM_EXEC_STALL_DMISS_L2L3", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from either the local L2 or local L3." }, { "EventCode": "0x10058", @@ -55,11 +65,36 @@ "BriefDescription": "Data ERAT Miss (Data TLB Access) page size 2M. Implies radix translation. When MMCR1[16]=0 this event counts only DERAT reloads for demand misses. When MMCR1[16]=1 this event includes demand misses and prefetches." }, { + "EventCode": "0x1D05E", + "EventName": "PM_DISP_STALL_HELD_HALT_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because of power management." + }, + { + "EventCode": "0x1E050", + "EventName": "PM_DISP_STALL_HELD_STF_MAPPER_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because the STF mapper/SRB was full. Includes GPR (count, link, tar), VSR, VMR, FPR." + }, + { + "EventCode": "0x1E054", + "EventName": "PM_EXEC_STALL_DMISS_L21_L31", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from another core's L2 or L3 on the same chip." + }, + { + "EventCode": "0x1E056", + "EventName": "PM_EXEC_STALL_STORE_PIPE", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in the store unit. This does not include cycles spent handling store misses, PTESYNC instructions or TLBIE instructions." + }, + { "EventCode": "0x1E05A", "EventName": "PM_CMPL_STALL_LWSYNC", "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a lwsync waiting to complete." }, { + "EventCode": "0x10064", + "EventName": "PM_DISP_STALL_IC_L2", + "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from the local L2." + }, + { "EventCode": "0x10068", "EventName": "PM_BR_FIN", "BriefDescription": "A branch instruction finished. Includes predicted/mispredicted/unconditional." @@ -70,9 +105,9 @@ "BriefDescription": "Simple fixed point instruction issued to the store unit. Measured at finish time." }, { - "EventCode": "0x1006C", - "EventName": "PM_RUN_CYC_ST_MODE", - "BriefDescription": "Cycles when the run latch is set and the core is in ST mode." + "EventCode": "0x100F8", + "EventName": "PM_DISP_STALL_CYC", + "BriefDescription": "Cycles the ICT has no itags assigned to this thread (no instructions were dispatched during these cycles)." }, { "EventCode": "0x20004", @@ -80,9 +115,9 @@ "BriefDescription": "Cycles in which the oldest instruction in the pipeline was dispatched but not issued yet." }, { - "EventCode": "0x2000A", - "EventName": "PM_HYPERVISOR_CYC", - "BriefDescription": "Cycles when the thread is in Hypervisor state. MSR[S HV PR]=010." + "EventCode": "0x20006", + "EventName": "PM_DISP_STALL_HELD_ISSQ_FULL_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch due to Issue queue full. Includes issue queue and branch queue." }, { "EventCode": "0x2000E", @@ -90,24 +125,59 @@ "BriefDescription": "LSU Finished an internal operation in LD1 port." }, { + "EventCode": "0x2C010", + "EventName": "PM_EXEC_STALL_LSU", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in the Load Store Unit. This does not include simple fixed point instructions." + }, + { "EventCode": "0x2C014", "EventName": "PM_CMPL_STALL_SPECIAL", "BriefDescription": "Cycles in which the oldest instruction in the pipeline required special handling before completing." }, { + "EventCode": "0x2C016", + "EventName": "PM_DISP_STALL_IERAT_ONLY_MISS", + "BriefDescription": "Cycles when dispatch was stalled while waiting to resolve an instruction ERAT miss." + }, + { "EventCode": "0x2C018", "EventName": "PM_EXEC_STALL_DMISS_L3MISS", "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from a source beyond the local L2 or local L3." }, { + "EventCode": "0x2C01C", + "EventName": "PM_EXEC_STALL_DMISS_OFF_CHIP", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from a remote chip." + }, + { + "EventCode": "0x2C01E", + "EventName": "PM_DISP_STALL_BR_MPRED_IC_L3", + "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from the local L3 after suffering a branch mispredict." + }, + { "EventCode": "0x2D010", "EventName": "PM_LSU_ST1_FIN", "BriefDescription": "LSU Finished an internal operation in ST1 port." }, { + "EventCode": "0x10016", + "EventName": "PM_VSU0_ISSUE", + "BriefDescription": "VSU instruction issued to VSU pipe 0." + }, + { "EventCode": "0x2D012", "EventName": "PM_VSU1_ISSUE", - "BriefDescription": "VSU instructions issued to VSU pipe 1." + "BriefDescription": "VSU instruction issued to VSU pipe 1." + }, + { + "EventCode": "0x2505C", + "EventName": "PM_VSU_ISSUE", + "BriefDescription": "At least one VSU instruction was issued to one of the VSU pipes. Up to 4 per cycle. Includes fixed point operations." + }, + { + "EventCode": "0x4001C", + "EventName": "PM_VSU_FIN", + "BriefDescription": "VSU instruction finished." }, { "EventCode": "0x2D018", @@ -115,19 +185,34 @@ "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in the VSU (includes FXU, VSU, CRU)." }, { + "EventCode": "0x2D01A", + "EventName": "PM_DISP_STALL_IC_MISS", + "BriefDescription": "Cycles when dispatch was stalled for this thread due to an instruction cache miss." + }, + { "EventCode": "0x2D01C", "EventName": "PM_CMPL_STALL_STCX", "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a stcx waiting for resolution from the nest before completing." }, { - "EventCode": "0x2E01E", - "EventName": "PM_EXEC_STALL_NTC_FLUSH", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in any unit before it was flushed. Note that if the flush of the oldest instruction happens after finish, the cycles from dispatch to issue will be included in PM_DISP_STALL and the cycles from issue to finish will be included in PM_EXEC_STALL and its corresponding children. This event will also count cycles when the previous NTF instruction is still completing and the new NTF instruction is stalled at dispatch." + "EventCode": "0x2E018", + "EventName": "PM_DISP_STALL_FETCH", + "BriefDescription": "Cycles when dispatch was stalled for this thread because Fetch was being held." + }, + { + "EventCode": "0x2E01A", + "EventName": "PM_DISP_STALL_HELD_XVFC_MAPPER_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because the XVFC mapper/SRB was full." }, { - "EventCode": "0x2013C", - "EventName": "PM_MRK_FX_LSU_FIN", - "BriefDescription": "The marked instruction was simple fixed point that was issued to the store unit. Measured at finish time." + "EventCode": "0x2E01C", + "EventName": "PM_EXEC_STALL_TLBIE", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a TLBIE instruction executing in the Load Store Unit." + }, + { + "EventCode": "0x2E01E", + "EventName": "PM_EXEC_STALL_NTC_FLUSH", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in any unit before it was flushed. Note that if the flush of the oldest instruction happens after finish, the cycles from dispatch to issue will be included in PM_DISP_STALL and the cycles from issue to finish will be included in PM_EXEC_STALL and its corresponding children. This event will also count cycles when the previous next-to-finish (NTF) instruction is still completing and the new NTF instruction is stalled at dispatch." }, { "EventCode": "0x2405A", @@ -135,14 +220,9 @@ "BriefDescription": "Cycles in which the oldest instruction in the pipeline (NTC) finishes. Note that instructions can finish out of order, therefore not all the instructions that finish have a Next-to-complete status." }, { - "EventCode": "0x201E2", - "EventName": "PM_MRK_LD_MISS_L1", - "BriefDescription": "Marked DL1 Demand Miss counted at finish time." - }, - { - "EventCode": "0x200F4", - "EventName": "PM_RUN_CYC", - "BriefDescription": "Processor cycles gated by the run latch." + "EventCode": "0x30004", + "EventName": "PM_DISP_STALL_FLUSH", + "BriefDescription": "Cycles when dispatch was stalled because of a flush that happened to an instruction(s) that was not yet next-to-complete (NTC). PM_EXEC_STALL_NTC_FLUSH only includes instructions that were flushed after becoming NTC." }, { "EventCode": "0x30008", @@ -150,29 +230,34 @@ "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting to finish in one of the execution units (BRU, LSU, VSU). Only cycles between issue and finish are counted in this category." }, { - "EventCode": "0x3001A", - "EventName": "PM_LSU_ST2_FIN", - "BriefDescription": "LSU Finished an internal operation in ST2 port." + "EventCode": "0x30014", + "EventName": "PM_EXEC_STALL_STORE", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a store instruction executing in the Load Store Unit." }, { - "EventCode": "0x30020", - "EventName": "PM_PMC2_REWIND", - "BriefDescription": "The speculative event selected for PMC2 rewinds and the counter for PMC2 is not charged." + "EventCode": "0x30016", + "EventName": "PM_EXEC_STALL_DERAT_DTLB_MISS", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline suffered a TLB miss and waited for it resolve." }, { - "EventCode": "0x30022", - "EventName": "PM_PMC4_SAVED", - "BriefDescription": "The conditions for the speculative event selected for PMC4 are met and PMC4 is charged." + "EventCode": "0x30018", + "EventName": "PM_DISP_STALL_HELD_SCOREBOARD_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch while waiting on the Scoreboard. This event combines VSCR and FPSCR together." + }, + { + "EventCode": "0x3001A", + "EventName": "PM_LSU_ST2_FIN", + "BriefDescription": "LSU Finished an internal operation in ST2 port." }, { - "EventCode": "0x30024", - "EventName": "PM_PMC6_OVERFLOW", - "BriefDescription": "The event selected for PMC6 caused the event counter to overflow." + "EventCode": "0x30026", + "EventName": "PM_EXEC_STALL_STORE_MISS", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a store whose cache line was not resident in the L1 and was waiting for allocation of the missing line into the L1." }, { "EventCode": "0x30028", "EventName": "PM_CMPL_STALL_MEM_ECC", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for the non-speculative finish of either a stcx waiting for its result or a load waiting for non-critical sectors of data and ECC." + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for the non-speculative finish of either a STCX waiting for its result or a load waiting for non-critical sectors of data and ECC." }, { "EventCode": "0x30036", @@ -180,6 +265,11 @@ "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a simple fixed point instruction executing in the Load Store Unit." }, { + "EventCode": "0x30038", + "EventName": "PM_EXEC_STALL_DMISS_LMEM", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from the local memory, local OpenCAPI cache, or local OpenCAPI memory." + }, + { "EventCode": "0x3003A", "EventName": "PM_CMPL_STALL_EXCEPTION", "BriefDescription": "Cycles in which the oldest instruction in the pipeline was not allowed to complete because it was interrupted by ANY exception, which has to be serviced before the instruction can complete." @@ -187,17 +277,37 @@ { "EventCode": "0x3F044", "EventName": "PM_VSU2_ISSUE", - "BriefDescription": "VSU instructions issued to VSU pipe 2." + "BriefDescription": "VSU instruction issued to VSU pipe 2." }, { "EventCode": "0x30058", "EventName": "PM_TLBIE_FIN", - "BriefDescription": "TLBIE instructions finished in the LSU. Two TLBIEs can finish each cycle. All will be counted." + "BriefDescription": "TLBIE instruction finished in the LSU. Two TLBIEs can finish each cycle. All will be counted." + }, + { + "EventCode": "0x34054", + "EventName": "PM_EXEC_STALL_DMISS_L2L3_NOCONFLICT", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from the local L2 or local L3, without a dispatch conflict." + }, + { + "EventCode": "0x34056", + "EventName": "PM_EXEC_STALL_LOAD_FINISH", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was finishing a load after its data was reloaded from a data source beyond the local L1; cycles in which the LSU was processing an L1-hit; cycles in which the next-to-finish (NTF) instruction merged with another load in the LMQ; cycles in which the NTF instruction is waiting for a data reload for a load miss, but the data comes back with a non-NTF instruction." + }, + { + "EventCode": "0x34058", + "EventName": "PM_DISP_STALL_BR_MPRED_ICMISS", + "BriefDescription": "Cycles when dispatch was stalled after a mispredicted branch resulted in an instruction cache miss." + }, + { + "EventCode": "0x3D05C", + "EventName": "PM_DISP_STALL_HELD_RENAME_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because the mapper/SRB was full. Includes GPR (count, link, tar), VSR, VMR, FPR and XVFC." }, { - "EventCode": "0x3D058", - "EventName": "PM_SCALAR_FSQRT_FDIV_ISSUE", - "BriefDescription": "Scalar versions of four floating point operations: fdiv,fsqrt (xvdivdp, xvdivsp, xvsqrtdp, xvsqrtsp)." + "EventCode": "0x3E052", + "EventName": "PM_DISP_STALL_IC_L3", + "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from the local L3." }, { "EventCode": "0x30066", @@ -215,9 +325,9 @@ "BriefDescription": "Cycles in which both instructions in the ICT entry pair show as finished. These are the cycles between finish and completion for the oldest pair of instructions in the pipeline." }, { - "EventCode": "0x40010", - "EventName": "PM_PMC3_OVERFLOW", - "BriefDescription": "The event selected for PMC3 caused the event counter to overflow." + "EventCode": "0x4C010", + "EventName": "PM_DISP_STALL_BR_MPRED_IC_L3MISS", + "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from sources beyond the local L3 after suffering a mispredicted branch." }, { "EventCode": "0x4C012", @@ -225,16 +335,36 @@ "BriefDescription": "Cycles in which the oldest instruction in the pipeline suffered an ERAT miss and waited for it resolve." }, { + "EventCode": "0x4C016", + "EventName": "PM_EXEC_STALL_DMISS_L2L3_CONFLICT", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from the local L2 or local L3, with a dispatch conflict." + }, + { "EventCode": "0x4C018", "EventName": "PM_CMPL_STALL", "BriefDescription": "Cycles in which the oldest instruction in the pipeline cannot complete because the thread was blocked for any reason." }, { + "EventCode": "0x4C01A", + "EventName": "PM_EXEC_STALL_DMISS_OFF_NODE", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was waiting for a load miss to resolve from a distant chip." + }, + { "EventCode": "0x4C01E", "EventName": "PM_LSU_ST3_FIN", "BriefDescription": "LSU Finished an internal operation in ST3 port." }, { + "EventCode": "0x4D014", + "EventName": "PM_EXEC_STALL_LOAD", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a load instruction executing in the Load Store Unit." + }, + { + "EventCode": "0x4D016", + "EventName": "PM_EXEC_STALL_PTESYNC", + "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a PTESYNC instruction executing in the Load Store Unit." + }, + { "EventCode": "0x4D018", "EventName": "PM_EXEC_STALL_BRU", "BriefDescription": "Cycles in which the oldest instruction in the pipeline was executing in the Branch unit." @@ -250,9 +380,24 @@ "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a TLBIEL instruction executing in the Load Store Unit. TLBIEL instructions have lower overhead than TLBIE instructions because they don't get set to the nest." }, { + "EventCode": "0x4D01E", + "EventName": "PM_DISP_STALL_BR_MPRED", + "BriefDescription": "Cycles when dispatch was stalled for this thread due to a mispredicted branch." + }, + { + "EventCode": "0x4E010", + "EventName": "PM_DISP_STALL_IC_L3MISS", + "BriefDescription": "Cycles when dispatch was stalled while the instruction was fetched from any source beyond the local L3." + }, + { "EventCode": "0x4E012", "EventName": "PM_EXEC_STALL_UNKNOWN", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline completed without an ntf_type pulse. The ntf_pulse was missed by the ISU because the NTF finishes and completions came too close together." + "BriefDescription": "Cycles in which the oldest instruction in the pipeline completed without an ntf_type pulse. The ntf_pulse was missed by the ISU because the next-to-finish (NTF) instruction finishes and completions came too close together." + }, + { + "EventCode": "0x4E01A", + "EventName": "PM_DISP_STALL_HELD_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch for any reason." }, { "EventCode": "0x4D020", @@ -260,24 +405,14 @@ "BriefDescription": "VSU instruction was issued to VSU pipe 3." }, { - "EventCode": "0x40132", - "EventName": "PM_MRK_LSU_FIN", - "BriefDescription": "LSU marked instruction finish." + "EventCode": "0x4003C", + "EventName": "PM_DISP_STALL_HELD_SYNC_CYC", + "BriefDescription": "Cycles in which the next-to-complete (NTC) instruction is held at dispatch because of a synchronizing instruction that requires the ICT to be empty before dispatch." }, { "EventCode": "0x45058", "EventName": "PM_IC_MISS_CMPL", - "BriefDescription": "Non-speculative icache miss, counted at completion." - }, - { - "EventCode": "0x4D050", - "EventName": "PM_VSU_NON_FLOP_CMPL", - "BriefDescription": "Non-floating point VSU instructions completed." - }, - { - "EventCode": "0x4D052", - "EventName": "PM_2FLOP_CMPL", - "BriefDescription": "Double Precision vector version of fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg completed." + "BriefDescription": "Non-speculative instruction cache miss, counted at completion." }, { "EventCode": "0x400F2", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/pmc.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/pmc.json @@ -1,22 +1,197 @@ [ { + "EventCode": "0x100FE", + "EventName": "PM_INST_CMPL", + "BriefDescription": "PowerPC instruction completed." + }, + { + "EventCode": "0x1000A", + "EventName": "PM_PMC3_REWIND", + "BriefDescription": "The speculative event selected for PMC3 rewinds and the counter for PMC3 is not charged." + }, + { + "EventCode": "0x10010", + "EventName": "PM_PMC4_OVERFLOW", + "BriefDescription": "The event selected for PMC4 caused the event counter to overflow." + }, + { + "EventCode": "0x1001C", + "EventName": "PM_ULTRAVISOR_INST_CMPL", + "BriefDescription": "PowerPC instruction completed while the thread was in ultravisor state." + }, + { + "EventCode": "0x100F0", + "EventName": "PM_CYC", + "BriefDescription": "Processor cycles." + }, + { + "EventCode": "0x10020", + "EventName": "PM_PMC4_REWIND", + "BriefDescription": "The speculative event selected for PMC4 rewinds and the counter for PMC4 is not charged." + }, + { + "EventCode": "0x10022", + "EventName": "PM_PMC2_SAVED", + "BriefDescription": "The conditions for the speculative event selected for PMC2 are met and PMC2 is charged." + }, + { + "EventCode": "0x10024", + "EventName": "PM_PMC5_OVERFLOW", + "BriefDescription": "The event selected for PMC5 caused the event counter to overflow." + }, + { + "EventCode": "0x1F15E", + "EventName": "PM_MRK_START_PROBE_NOP_CMPL", + "BriefDescription": "Marked Start probe nop (AND R0,R0,R0) completed." + }, + { + "EventCode": "0x1006C", + "EventName": "PM_RUN_CYC_ST_MODE", + "BriefDescription": "Cycles when the run latch is set and the core is in ST mode." + }, + { + "EventCode": "0x101E8", + "EventName": "PM_THRESH_EXC_256", + "BriefDescription": "Threshold counter exceeded a count of 256." + }, + { + "EventCode": "0x101EC", + "EventName": "PM_THRESH_MET", + "BriefDescription": "Threshold exceeded." + }, + { + "EventCode": "0x100FA", + "EventName": "PM_RUN_LATCH_ANY_THREAD_CYC", + "BriefDescription": "Cycles when at least one thread has the run latch set." + }, + { + "EventCode": "0x2000A", + "EventName": "PM_HYPERVISOR_CYC", + "BriefDescription": "Cycles when the thread is in Hypervisor state. MSR[S HV PR]=010." + }, + { + "EventCode": "0x2000C", + "EventName": "PM_RUN_LATCH_ALL_THREADS_CYC", + "BriefDescription": "Cycles when the run latch is set for all threads." + }, + { + "EventCode": "0x20010", + "EventName": "PM_PMC1_OVERFLOW", + "BriefDescription": "The event selected for PMC1 caused the event counter to overflow." + }, + { + "EventCode": "0x2006C", + "EventName": "PM_RUN_CYC_SMT4_MODE", + "BriefDescription": "Cycles when this thread's run latch is set and the core is in SMT4 mode." + }, + { + "EventCode": "0x201E6", + "EventName": "PM_THRESH_EXC_32", + "BriefDescription": "Threshold counter exceeded a value of 32." + }, + { + "EventCode": "0x201E8", + "EventName": "PM_THRESH_EXC_512", + "BriefDescription": "Threshold counter exceeded a value of 512." + }, + { + "EventCode": "0x200F4", + "EventName": "PM_RUN_CYC", + "BriefDescription": "Processor cycles gated by the run latch." + }, + { + "EventCode": "0x30010", + "EventName": "PM_PMC2_OVERFLOW", + "BriefDescription": "The event selected for PMC2 caused the event counter to overflow." + }, + { + "EventCode": "0x30020", + "EventName": "PM_PMC2_REWIND", + "BriefDescription": "The speculative event selected for PMC2 rewinds and the counter for PMC2 is not charged." + }, + { + "EventCode": "0x30022", + "EventName": "PM_PMC4_SAVED", + "BriefDescription": "The conditions for the speculative event selected for PMC4 are met and PMC4 is charged." + }, + { + "EventCode": "0x30024", + "EventName": "PM_PMC6_OVERFLOW", + "BriefDescription": "The event selected for PMC6 caused the event counter to overflow." + }, + { + "EventCode": "0x3006C", + "EventName": "PM_RUN_CYC_SMT2_MODE", + "BriefDescription": "Cycles when this thread's run latch is set and the core is in SMT2 mode." + }, + { "EventCode": "0x301E8", "EventName": "PM_THRESH_EXC_64", "BriefDescription": "Threshold counter exceeded a value of 64." }, { - "EventCode": "0x45050", - "EventName": "PM_1FLOP_CMPL", - "BriefDescription": "One floating point instruction completed (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg)." + "EventCode": "0x301EA", + "EventName": "PM_THRESH_EXC_1024", + "BriefDescription": "Threshold counter exceeded a value of 1024." + }, + { + "EventCode": "0x40010", + "EventName": "PM_PMC3_OVERFLOW", + "BriefDescription": "The event selected for PMC3 caused the event counter to overflow." + }, + { + "EventCode": "0x40114", + "EventName": "PM_MRK_START_PROBE_NOP_DISP", + "BriefDescription": "Marked Start probe nop dispatched. Instruction AND R0,R0,R0." + }, + { + "EventCode": "0x4D010", + "EventName": "PM_PMC1_SAVED", + "BriefDescription": "The conditions for the speculative event selected for PMC1 are met and PMC1 is charged." + }, + { + "EventCode": "0x4D012", + "EventName": "PM_PMC3_SAVED", + "BriefDescription": "The conditions for the speculative event selected for PMC3 are met and PMC3 is charged." + }, + { + "EventCode": "0x4D022", + "EventName": "PM_HYPERVISOR_INST_CMPL", + "BriefDescription": "PowerPC instruction completed while the thread was in hypervisor state." + }, + { + "EventCode": "0x4D026", + "EventName": "PM_ULTRAVISOR_CYC", + "BriefDescription": "Cycles when the thread is in Ultravisor state. MSR[S HV PR]=110." + }, + { + "EventCode": "0x4D028", + "EventName": "PM_PRIVILEGED_CYC", + "BriefDescription": "Cycles when the thread is in Privileged state. MSR[S HV PR]=x00." + }, + { + "EventCode": "0x4D02C", + "EventName": "PM_PMC1_REWIND", + "BriefDescription": "The speculative event selected for PMC1 rewinds and the counter for PMC1 is not charged." + }, + { + "EventCode": "0x40030", + "EventName": "PM_INST_FIN", + "BriefDescription": "Instruction finished." + }, + { + "EventCode": "0x40134", + "EventName": "PM_MRK_INST_TIMEO", + "BriefDescription": "Marked instruction finish timeout (instruction was lost)." }, { - "EventCode": "0x45052", - "EventName": "PM_4FLOP_CMPL", - "BriefDescription": "Four floating point instructions completed (fadd, fmul, fsub, fcmp, fsel, fabs, fnabs, fres, fsqrte, fneg)." + "EventCode": "0x401EA", + "EventName": "PM_THRESH_EXC_128", + "BriefDescription": "Threshold counter exceeded a value of 128." }, { - "EventCode": "0x4D054", - "EventName": "PM_8FLOP_CMPL", - "BriefDescription": "Four Double Precision vector instructions completed." + "EventCode": "0x400FA", + "EventName": "PM_RUN_INST_CMPL", + "BriefDescription": "PowerPC instruction completed while the run latch is set." } ] only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/arch/powerpc/power10/translation.json +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/arch/powerpc/power10/translation.json @@ -1,35 +1,10 @@ [ { - "EventCode": "0x1F15E", - "EventName": "PM_MRK_START_PROBE_NOP_CMPL", - "BriefDescription": "Marked Start probe nop (AND R0,R0,R0) completed." - }, - { - "EventCode": "0x20016", - "EventName": "PM_ST_FIN", - "BriefDescription": "Store finish count. Includes speculative activity." - }, - { "EventCode": "0x20018", "EventName": "PM_ST_FWD", "BriefDescription": "Store forwards that finished." }, { - "EventCode": "0x2011C", - "EventName": "PM_MRK_NTF_CYC", - "BriefDescription": "Cycles during which the marked instruction is the oldest in the pipeline (NTF or NTC)." - }, - { - "EventCode": "0x2E01C", - "EventName": "PM_EXEC_STALL_TLBIE", - "BriefDescription": "Cycles in which the oldest instruction in the pipeline was a TLBIE instruction executing in the Load Store Unit." - }, - { - "EventCode": "0x201E6", - "EventName": "PM_THRESH_EXC_32", - "BriefDescription": "Threshold counter exceeded a value of 32." - }, - { "EventCode": "0x200F0", "EventName": "PM_ST_CMPL", "BriefDescription": "Stores completed from S2Q (2nd-level store queue). This event includes regular stores, stcx and cache inhibited stores. The following operations are excluded (pteupdate, snoop tlbie complete, store atomics, miso, load atomic payloads, tlbie, tlbsync, slbieg, isync, msgsnd, slbiag, cpabort, copy, tcheck, tend, stsync, dcbst, icbi, dcbf, hwsync, lwsync, ptesync, eieio, msgsync)." @@ -37,21 +12,6 @@ { "EventCode": "0x200FE", "EventName": "PM_DATA_FROM_L2MISS", - "BriefDescription": "The processor's data cache was reloaded from a source other than the local core's L1 or L2 due to a demand miss." - }, - { - "EventCode": "0x30010", - "EventName": "PM_PMC2_OVERFLOW", - "BriefDescription": "The event selected for PMC2 caused the event counter to overflow." - }, - { - "EventCode": "0x4D010", - "EventName": "PM_PMC1_SAVED", - "BriefDescription": "The conditions for the speculative event selected for PMC1 are met and PMC1 is charged." - }, - { - "EventCode": "0x4D05C", - "EventName": "PM_DPP_FLOP_CMPL", - "BriefDescription": "Double-Precision or Quad-Precision instructions completed." + "BriefDescription": "The processor's L1 data cache was reloaded from a source beyond the local core's L2 due to a demand miss." } ] only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/pmu-events/jevents.py +++ linux-oracle-6.5-6.5.0/tools/perf/pmu-events/jevents.py @@ -999,7 +999,7 @@ _args = ap.parse_args() _args.output_file.write(""" -#include "pmu-events/pmu-events.h" +#include #include "util/header.h" #include "util/pmu.h" #include only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/tests/dlfilter-test.c +++ linux-oracle-6.5-6.5.0/tools/perf/tests/dlfilter-test.c @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-2.0 /* * Test dlfilter C API. A perf.data file is synthesized and then processed - * by perf script with a dlfilter named dlfilter-test-api-v0.so. Also a C file + * by perf script with dlfilters named dlfilter-test-api-v*.so. Also a C file * is compiled to provide a dso to match the synthesized perf.data file. */ @@ -37,6 +37,8 @@ #define MAP_START 0x400000 +#define DLFILTER_TEST_NAME_MAX 128 + struct test_data { struct perf_tool tool; struct machine *machine; @@ -45,6 +47,8 @@ u64 bar; u64 ip; u64 addr; + char name[DLFILTER_TEST_NAME_MAX]; + char desc[DLFILTER_TEST_NAME_MAX]; char perf[PATH_MAX]; char perf_data_file_name[PATH_MAX]; char c_file_name[PATH_MAX]; @@ -215,7 +219,7 @@ return err ? -1 : 0; } -static int get_dlfilters_path(char *buf, size_t sz) +static int get_dlfilters_path(const char *name, char *buf, size_t sz) { char perf[PATH_MAX]; char path[PATH_MAX]; @@ -224,12 +228,12 @@ perf_exe(perf, sizeof(perf)); perf_path = dirname(perf); - snprintf(path, sizeof(path), "%s/dlfilters/dlfilter-test-api-v0.so", perf_path); + snprintf(path, sizeof(path), "%s/dlfilters/%s", perf_path, name); if (access(path, R_OK)) { exec_path = get_argv_exec_path(); if (!exec_path) return -1; - snprintf(path, sizeof(path), "%s/dlfilters/dlfilter-test-api-v0.so", exec_path); + snprintf(path, sizeof(path), "%s/dlfilters/%s", exec_path, name); free(exec_path); if (access(path, R_OK)) return -1; @@ -244,9 +248,9 @@ char *desc = NULL; int ret; - if (get_filter_desc(td->dlfilters, "dlfilter-test-api-v0.so", &desc, &long_desc) && + if (get_filter_desc(td->dlfilters, td->name, &desc, &long_desc) && long_desc && !strcmp(long_desc, "Filter used by the 'dlfilter C API' perf test") && - desc && !strcmp(desc, "dlfilter to test v0 C API")) + desc && !strcmp(desc, td->desc)) ret = 0; else ret = -1; @@ -284,7 +288,7 @@ static int do_run_perf_script(struct test_data *td, int do_early) { return system_cmd("%s script -i %s " - "--dlfilter %s/dlfilter-test-api-v0.so " + "--dlfilter %s/%s " "--dlarg first " "--dlarg %d " "--dlarg %" PRIu64 " " @@ -292,7 +296,7 @@ "--dlarg %d " "--dlarg last", td->perf, td->perf_data_file_name, td->dlfilters, - verbose, td->ip, td->addr, do_early); + td->name, verbose, td->ip, td->addr, do_early); } static int run_perf_script(struct test_data *td) @@ -321,7 +325,7 @@ u64 id = 99; int err; - if (get_dlfilters_path(td->dlfilters, PATH_MAX)) + if (get_dlfilters_path(td->name, td->dlfilters, PATH_MAX)) return test_result("dlfilters not found", TEST_SKIP); if (check_filter_desc(td)) @@ -399,14 +403,18 @@ } } -static int test__dlfilter(struct test_suite *test __maybe_unused, int subtest __maybe_unused) +static int test__dlfilter_ver(int ver) { struct test_data td = {.fd = -1}; int pid = getpid(); int err; + pr_debug("\n-- Testing version %d API --\n", ver); + perf_exe(td.perf, sizeof(td.perf)); + snprintf(td.name, sizeof(td.name), "dlfilter-test-api-v%d.so", ver); + snprintf(td.desc, sizeof(td.desc), "dlfilter to test v%d C API", ver); snprintf(td.perf_data_file_name, PATH_MAX, "/tmp/dlfilter-test-%u-perf-data", pid); snprintf(td.c_file_name, PATH_MAX, "/tmp/dlfilter-test-%u-prog.c", pid); snprintf(td.prog_file_name, PATH_MAX, "/tmp/dlfilter-test-%u-prog", pid); @@ -416,4 +424,14 @@ return err; } +static int test__dlfilter(struct test_suite *test __maybe_unused, int subtest __maybe_unused) +{ + int err = test__dlfilter_ver(0); + + if (err) + return err; + /* No test for version 1 */ + return test__dlfilter_ver(2); +} + DEFINE_SUITE("dlfilter C API", dlfilter); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/tests/shell/stat_bpf_counters.sh +++ linux-oracle-6.5-6.5.0/tools/perf/tests/shell/stat_bpf_counters.sh @@ -22,10 +22,10 @@ } # skip if --bpf-counters is not supported -if ! perf stat --bpf-counters true > /dev/null 2>&1; then +if ! perf stat -e cycles --bpf-counters true > /dev/null 2>&1; then if [ "$1" = "-v" ]; then echo "Skipping: --bpf-counters not supported" - perf --no-pager stat --bpf-counters true || true + perf --no-pager stat -e cycles --bpf-counters true || true fi exit 2 fi only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/tests/shell/stat_bpf_counters_cgrp.sh +++ linux-oracle-6.5-6.5.0/tools/perf/tests/shell/stat_bpf_counters_cgrp.sh @@ -25,22 +25,22 @@ find_cgroups() { # try usual systemd slices first - if [ -d /sys/fs/cgroup/system.slice -a -d /sys/fs/cgroup/user.slice ]; then + if [ -d /sys/fs/cgroup/system.slice ] && [ -d /sys/fs/cgroup/user.slice ]; then test_cgroups="system.slice,user.slice" return fi # try root and self cgroups - local self_cgrp=$(grep perf_event /proc/self/cgroup | cut -d: -f3) - if [ -z ${self_cgrp} ]; then + find_cgroups_self_cgrp=$(grep perf_event /proc/self/cgroup | cut -d: -f3) + if [ -z ${find_cgroups_self_cgrp} ]; then # cgroup v2 doesn't specify perf_event - self_cgrp=$(grep ^0: /proc/self/cgroup | cut -d: -f3) + find_cgroups_self_cgrp=$(grep ^0: /proc/self/cgroup | cut -d: -f3) fi - if [ -z ${self_cgrp} ]; then + if [ -z ${find_cgroups_self_cgrp} ]; then test_cgroups="/" else - test_cgroups="/,${self_cgrp}" + test_cgroups="/,${find_cgroups_self_cgrp}" fi } @@ -48,13 +48,11 @@ # Just check if it runs without failure and has non-zero results. check_system_wide_counted() { - local output - - output=$(perf stat -a --bpf-counters --for-each-cgroup ${test_cgroups} -e cpu-clock -x, sleep 1 2>&1) - if echo ${output} | grep -q -F "&1) + if echo ${check_system_wide_counted_output} | grep -q -F "&1) - if echo ${output} | grep -q -F "&1) + if echo ${check_cpu_list_counted_output} | grep -q -F "has_children; } -static bool hist_browser__he_selection_unfolded(struct hist_browser *browser) -{ - return browser->he_selection ? browser->he_selection->unfolded : false; -} - static bool hist_browser__selection_unfolded(struct hist_browser *browser) { struct hist_entry *he = browser->he_selection; @@ -584,8 +579,8 @@ return n; } -static void __hist_entry__set_folding(struct hist_entry *he, - struct hist_browser *hb, bool unfold) +static void hist_entry__set_folding(struct hist_entry *he, + struct hist_browser *hb, bool unfold) { hist_entry__init_have_children(he); he->unfolded = unfold ? he->has_children : false; @@ -603,34 +598,12 @@ he->nr_rows = 0; } -static void hist_entry__set_folding(struct hist_entry *he, - struct hist_browser *browser, bool unfold) -{ - double percent; - - percent = hist_entry__get_percent_limit(he); - if (he->filtered || percent < browser->min_pcnt) - return; - - __hist_entry__set_folding(he, browser, unfold); - - if (!he->depth || unfold) - browser->nr_hierarchy_entries++; - if (he->leaf) - browser->nr_callchain_rows += he->nr_rows; - else if (unfold && !hist_entry__has_hierarchy_children(he, browser->min_pcnt)) { - browser->nr_hierarchy_entries++; - he->has_no_entry = true; - he->nr_rows = 1; - } else - he->has_no_entry = false; -} - static void __hist_browser__set_folding(struct hist_browser *browser, bool unfold) { struct rb_node *nd; struct hist_entry *he; + double percent; nd = rb_first_cached(&browser->hists->entries); while (nd) { @@ -640,6 +613,21 @@ nd = __rb_hierarchy_next(nd, HMD_FORCE_CHILD); hist_entry__set_folding(he, browser, unfold); + + percent = hist_entry__get_percent_limit(he); + if (he->filtered || percent < browser->min_pcnt) + continue; + + if (!he->depth || unfold) + browser->nr_hierarchy_entries++; + if (he->leaf) + browser->nr_callchain_rows += he->nr_rows; + else if (unfold && !hist_entry__has_hierarchy_children(he, browser->min_pcnt)) { + browser->nr_hierarchy_entries++; + he->has_no_entry = true; + he->nr_rows = 1; + } else + he->has_no_entry = false; } } @@ -659,8 +647,10 @@ if (!browser->he_selection) return; - hist_entry__set_folding(browser->he_selection, browser, unfold); - browser->b.nr_entries = hist_browser__nr_entries(browser); + if (unfold == browser->he_selection->unfolded) + return; + + hist_browser__toggle_fold(browser); } static void ui_browser__warn_lost_events(struct ui_browser *browser) @@ -732,8 +722,8 @@ hist_browser__set_folding(browser, true); break; case 'e': - /* Expand the selected entry. */ - hist_browser__set_folding_selected(browser, !hist_browser__he_selection_unfolded(browser)); + /* Toggle expand/collapse the selected entry. */ + hist_browser__toggle_fold(browser); break; case 'H': browser->show_headers = !browser->show_headers; @@ -1779,7 +1769,7 @@ hists_browser__scnprintf_hierarchy_headers(browser, headers, sizeof(headers)); - ui_browser__gotorc(&browser->b, 0, 0); + ui_browser__gotorc_title(&browser->b, 0, 0); ui_browser__set_color(&browser->b, HE_COLORSET_ROOT); ui_browser__write_nstring(&browser->b, headers, browser->b.width + 1); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/Build +++ linux-oracle-6.5-6.5.0/tools/perf/util/Build @@ -301,6 +301,12 @@ else bison_flags += -w endif + +BISON_LT_381 := $(shell expr $(shell $(BISON) --version | grep bison | sed -e 's/.\+ \([0-9]\+\).\([0-9]\+\).\([0-9]\+\)/\1\2\3/g') \< 381) +ifeq ($(BISON_LT_381),1) + bison_flags += -DYYNOMEM=YYABORT +endif + CFLAGS_parse-events-bison.o += $(bison_flags) CFLAGS_pmu-bison.o += -DYYLTYPE_IS_TRIVIAL=0 $(bison_flags) CFLAGS_expr-bison.o += -DYYLTYPE_IS_TRIVIAL=0 $(bison_flags) only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/annotate.c +++ linux-oracle-6.5-6.5.0/tools/perf/util/annotate.c @@ -1846,8 +1846,11 @@ perf_exe(tpath, sizeof(tpath)); bfdf = bfd_openr(tpath, NULL); - assert(bfdf); - assert(bfd_check_format(bfdf, bfd_object)); + if (bfdf == NULL) + abort(); + + if (!bfd_check_format(bfdf, bfd_object)) + abort(); s = open_memstream(&buf, &buf_size); if (!s) { @@ -1895,7 +1898,8 @@ #else disassemble = disassembler(bfdf); #endif - assert(disassemble); + if (disassemble == NULL) + abort(); fflush(s); do { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/bpf-filter.c +++ linux-oracle-6.5-6.5.0/tools/perf/util/bpf-filter.c @@ -9,8 +9,8 @@ #include "util/evsel.h" #include "util/bpf-filter.h" -#include "util/bpf-filter-flex.h" -#include "util/bpf-filter-bison.h" +#include +#include #include "bpf_skel/sample-filter.h" #include "bpf_skel/sample_filter.skel.h" @@ -62,6 +62,16 @@ if (evsel->core.attr.sample_type & expr->sample_flags) return 0; + if (expr->op == PBF_OP_GROUP_BEGIN) { + struct perf_bpf_filter_expr *group; + + list_for_each_entry(group, &expr->groups, list) { + if (check_sample_flags(evsel, group) < 0) + return -1; + } + return 0; + } + info = get_sample_info(expr->sample_flags); if (info == NULL) { pr_err("Error: %s event does not have sample flags %lx\n", only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/dlfilter.c +++ linux-oracle-6.5-6.5.0/tools/perf/util/dlfilter.c @@ -10,6 +10,8 @@ #include #include #include +#include +#include #include "debug.h" #include "event.h" @@ -63,6 +65,7 @@ d_al->addr = al->addr; d_al->comm = NULL; d_al->filtered = 0; + d_al->priv = NULL; } static struct addr_location *get_al(struct dlfilter *d) @@ -151,6 +154,11 @@ return d->dlargv; } +static bool has_priv(struct perf_dlfilter_al *d_al_p) +{ + return d_al_p->size >= offsetof(struct perf_dlfilter_al, priv) + sizeof(d_al_p->priv); +} + static __s32 dlfilter__resolve_address(void *ctx, __u64 address, struct perf_dlfilter_al *d_al_p) { struct dlfilter *d = (struct dlfilter *)ctx; @@ -166,6 +174,7 @@ if (!thread) return -1; + addr_location__init(&al); thread__find_symbol_fb(thread, d->sample->cpumode, address, &al); al_to_d_al(&al, &d_al); @@ -176,9 +185,29 @@ memcpy(d_al_p, &d_al, min((size_t)sz, sizeof(d_al))); d_al_p->size = sz; + if (has_priv(d_al_p)) + d_al_p->priv = memdup(&al, sizeof(al)); + return 0; } +static void dlfilter__al_cleanup(void *ctx __maybe_unused, struct perf_dlfilter_al *d_al_p) +{ + struct addr_location *al; + + /* Ensure backward compatibility */ + if (!has_priv(d_al_p) || !d_al_p->priv) + return; + + al = d_al_p->priv; + + d_al_p->priv = NULL; + + addr_location__exit(al); + + free(al); +} + static const __u8 *dlfilter__insn(void *ctx, __u32 *len) { struct dlfilter *d = (struct dlfilter *)ctx; @@ -296,6 +325,7 @@ .resolve_addr = dlfilter__resolve_addr, .args = dlfilter__args, .resolve_address = dlfilter__resolve_address, + .al_cleanup = dlfilter__al_cleanup, .insn = dlfilter__insn, .srcline = dlfilter__srcline, .attr = dlfilter__attr, only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/expr.c +++ linux-oracle-6.5-6.5.0/tools/perf/util/expr.c @@ -10,8 +10,8 @@ #include "debug.h" #include "evlist.h" #include "expr.h" -#include "expr-bison.h" -#include "expr-flex.h" +#include +#include #include "util/hashmap.h" #include "smt.h" #include "tsc.h" only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/header.c +++ linux-oracle-6.5-6.5.0/tools/perf/util/header.c @@ -1605,8 +1605,15 @@ int ret; while ((pmu = perf_pmus__scan(pmu))) { - if (!pmu->name || !strcmp(pmu->name, "cpu") || - perf_pmu__caps_parse(pmu) <= 0) + if (!strcmp(pmu->name, "cpu")) { + /* + * The "cpu" PMU is special and covered by + * HEADER_CPU_PMU_CAPS. Note, core PMUs are + * counted/written here for ARM, s390 and Intel hybrid. + */ + continue; + } + if (perf_pmu__caps_parse(pmu) <= 0) continue; nr_pmu++; } @@ -1619,23 +1626,17 @@ return 0; /* - * Write hybrid pmu caps first to maintain compatibility with - * older perf tool. + * Note older perf tools assume core PMUs come first, this is a property + * of perf_pmus__scan. */ - if (perf_pmus__num_core_pmus() > 1) { - pmu = NULL; - while ((pmu = perf_pmus__scan_core(pmu))) { - ret = __write_pmu_caps(ff, pmu, true); - if (ret < 0) - return ret; - } - } - pmu = NULL; while ((pmu = perf_pmus__scan(pmu))) { - if (pmu->is_core || !pmu->nr_caps) + if (!strcmp(pmu->name, "cpu")) { + /* Skip as above. */ + continue; + } + if (perf_pmu__caps_parse(pmu) <= 0) continue; - ret = __write_pmu_caps(ff, pmu, true); if (ret < 0) return ret; @@ -4381,7 +4382,8 @@ union perf_event *event, struct evlist **pevlist) { - u32 i, ids, n_ids; + u32 i, n_ids; + u64 *ids; struct evsel *evsel; struct evlist *evlist = *pevlist; @@ -4397,9 +4399,8 @@ evlist__add(evlist, evsel); - ids = event->header.size; - ids -= (void *)&event->attr.id - (void *)event; - n_ids = ids / sizeof(u64); + n_ids = event->header.size - sizeof(event->header) - event->attr.attr.size; + n_ids = n_ids / sizeof(u64); /* * We don't have the cpu and thread maps on the header, so * for allocating the perf_sample_id table we fake 1 cpu and @@ -4408,8 +4409,9 @@ if (perf_evsel__alloc_id(&evsel->core, 1, n_ids)) return -ENOMEM; + ids = (void *)&event->attr.attr + event->attr.attr.size; for (i = 0; i < n_ids; i++) { - perf_evlist__id_add(&evlist->core, &evsel->core, 0, i, event->attr.id[i]); + perf_evlist__id_add(&evlist->core, &evsel->core, 0, i, ids[i]); } return 0; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/parse-events.c +++ linux-oracle-6.5-6.5.0/tools/perf/util/parse-events.c @@ -18,8 +18,8 @@ #include "debug.h" #include #include -#include "parse-events-bison.h" -#include "parse-events-flex.h" +#include +#include #include "pmu.h" #include "pmus.h" #include "asm/bug.h" only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/parse-events.y +++ linux-oracle-6.5-6.5.0/tools/perf/util/parse-events.y @@ -28,6 +28,13 @@ YYABORT; \ } while (0) +#define PE_ABORT(val) \ +do { \ + if (val == -ENOMEM) \ + YYNOMEM; \ + YYABORT; \ +} while (0) + static struct list_head* alloc_list(void) { struct list_head *list; @@ -285,37 +292,38 @@ PE_NAME opt_pmu_config { struct parse_events_state *parse_state = _parse_state; - struct parse_events_error *error = parse_state->error; struct list_head *list = NULL, *orig_terms = NULL, *terms= NULL; char *pattern = NULL; -#define CLEANUP_YYABORT \ +#define CLEANUP \ do { \ parse_events_terms__delete($2); \ parse_events_terms__delete(orig_terms); \ free(list); \ free($1); \ free(pattern); \ - YYABORT; \ } while(0) - if (parse_events_copy_term_list($2, &orig_terms)) - CLEANUP_YYABORT; - - if (error) - error->idx = @1.first_column; + if (parse_events_copy_term_list($2, &orig_terms)) { + CLEANUP; + YYNOMEM; + } list = alloc_list(); - if (!list) - CLEANUP_YYABORT; + if (!list) { + CLEANUP; + YYNOMEM; + } /* Attempt to add to list assuming $1 is a PMU name. */ if (parse_events_add_pmu(parse_state, list, $1, $2, /*auto_merge_stats=*/false)) { struct perf_pmu *pmu = NULL; int ok = 0; /* Failure to add, try wildcard expansion of $1 as a PMU name. */ - if (asprintf(&pattern, "%s*", $1) < 0) - CLEANUP_YYABORT; + if (asprintf(&pattern, "%s*", $1) < 0) { + CLEANUP; + YYNOMEM; + } while ((pmu = perf_pmus__scan(pmu)) != NULL) { char *name = pmu->name; @@ -330,8 +338,10 @@ !perf_pmu__match(pattern, pmu->alias_name, $1)) { bool auto_merge_stats = perf_pmu__auto_merge_stats(pmu); - if (parse_events_copy_term_list(orig_terms, &terms)) - CLEANUP_YYABORT; + if (parse_events_copy_term_list(orig_terms, &terms)) { + CLEANUP; + YYNOMEM; + } if (!parse_events_add_pmu(parse_state, list, pmu->name, terms, auto_merge_stats)) { ok++; @@ -347,15 +357,23 @@ ok = !parse_events_multi_pmu_add(parse_state, $1, $2, &list); $2 = NULL; } - if (!ok) - CLEANUP_YYABORT; + if (!ok) { + struct parse_events_error *error = parse_state->error; + char *help; + + if (asprintf(&help, "Unabled to find PMU or event on a PMU of '%s'", $1) < 0) + help = NULL; + parse_events_error__handle(error, @1.first_column, + strdup("Bad event or PMU"), + help); + CLEANUP; + YYABORT; + } } - parse_events_terms__delete($2); - parse_events_terms__delete(orig_terms); - free(pattern); - free($1); $$ = list; -#undef CLEANUP_YYABORT + list = NULL; + CLEANUP; +#undef CLEANUP } | PE_KERNEL_PMU_EVENT sep_dc @@ -376,9 +394,18 @@ int err; err = parse_events_multi_pmu_add(_parse_state, $1, NULL, &list); + if (err < 0) { + struct parse_events_state *parse_state = _parse_state; + struct parse_events_error *error = parse_state->error; + char *help; + + if (asprintf(&help, "Unabled to find PMU or event on a PMU of '%s'", $1) < 0) + help = NULL; + parse_events_error__handle(error, @1.first_column, strdup("Bad event name"), help); + free($1); + PE_ABORT(err); + } free($1); - if (err < 0) - YYABORT; $$ = list; } | @@ -448,12 +475,13 @@ bool wildcard = (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE); list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; err = parse_events_add_numeric(_parse_state, list, type, config, $3, wildcard); parse_events_terms__delete($3); if (err) { free_list_evsel(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -464,21 +492,28 @@ int type = $1 >> 16; int config = $1 & 255; bool wildcard = (type == PERF_TYPE_HARDWARE || type == PERF_TYPE_HW_CACHE); + int err; list = alloc_list(); - ABORT_ON(!list); - ABORT_ON(parse_events_add_numeric(_parse_state, list, type, config, - /*head_config=*/NULL, wildcard)); + if (!list) + YYNOMEM; + err = parse_events_add_numeric(_parse_state, list, type, config, /*head_config=*/NULL, wildcard); + if (err) + PE_ABORT(err); $$ = list; } | PE_VALUE_SYM_TOOL sep_slash_slash_dc { struct list_head *list; + int err; list = alloc_list(); - ABORT_ON(!list); - ABORT_ON(parse_events_add_tool(_parse_state, list, $1)); + if (!list) + YYNOMEM; + err = parse_events_add_tool(_parse_state, list, $1); + if (err) + YYNOMEM; $$ = list; } @@ -490,14 +525,16 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; + err = parse_events_add_cache(list, &parse_state->idx, $1, parse_state, $2); parse_events_terms__delete($2); free($1); if (err) { free_list_evsel(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -509,14 +546,16 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; + err = parse_events_add_breakpoint(_parse_state, list, $2, $6, $4, $7); parse_events_terms__delete($7); free($6); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -527,13 +566,15 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; + err = parse_events_add_breakpoint(_parse_state, list, $2, NULL, $4, $5); parse_events_terms__delete($5); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -544,14 +585,16 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; + err = parse_events_add_breakpoint(_parse_state, list, $2, $4, 0, $5); parse_events_terms__delete($5); free($4); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -562,13 +605,14 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; err = parse_events_add_breakpoint(_parse_state, list, $2, NULL, 0, $3); parse_events_terms__delete($3); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -582,7 +626,8 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; if (error) error->idx = @1.first_column; @@ -594,7 +639,7 @@ free($1.event); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -614,13 +659,14 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; err = parse_events_add_numeric(_parse_state, list, (u32)$1, $3, $4, /*wildcard=*/false); parse_events_terms__delete($4); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -633,7 +679,8 @@ u64 num; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; errno = 0; num = strtoull($1 + 1, NULL, 16); ABORT_ON(errno); @@ -643,7 +690,7 @@ parse_events_terms__delete($2); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -656,13 +703,14 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; err = parse_events_load_bpf(parse_state, list, $1, false, $2); parse_events_terms__delete($2); free($1); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -673,12 +721,13 @@ int err; list = alloc_list(); - ABORT_ON(!list); + if (!list) + YYNOMEM; err = parse_events_load_bpf(_parse_state, list, $1, true, $2); parse_events_terms__delete($2); if (err) { free(list); - YYABORT; + PE_ABORT(err); } $$ = list; } @@ -738,7 +787,8 @@ struct list_head *head = malloc(sizeof(*head)); struct parse_events_term *term = $1; - ABORT_ON(!head); + if (!head) + YYNOMEM; INIT_LIST_HEAD(head); list_add_tail(&term->list, head); $$ = head; @@ -752,11 +802,12 @@ PE_RAW { struct parse_events_term *term; + int err = parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_RAW, + strdup("raw"), $1, &@1, &@1); - if (parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_RAW, - strdup("raw"), $1, &@1, &@1)) { + if (err) { free($1); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -764,12 +815,12 @@ name_or_raw '=' name_or_legacy { struct parse_events_term *term; + int err = parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER, $1, $3, &@1, &@3); - if (parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER, - $1, $3, &@1, &@3)) { + if (err) { free($1); free($3); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -777,11 +828,12 @@ name_or_raw '=' PE_VALUE { struct parse_events_term *term; + int err = parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER, + $1, $3, false, &@1, &@3); - if (parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER, - $1, $3, false, &@1, &@3)) { + if (err) { free($1); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -789,12 +841,13 @@ name_or_raw '=' PE_TERM_HW { struct parse_events_term *term; + int err = parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER, + $1, $3.str, &@1, &@3); - if (parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER, - $1, $3.str, &@1, &@3)) { + if (err) { free($1); free($3.str); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -802,11 +855,12 @@ PE_LEGACY_CACHE { struct parse_events_term *term; + int err = parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_LEGACY_CACHE, + $1, 1, true, &@1, NULL); - if (parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_LEGACY_CACHE, - $1, 1, true, &@1, NULL)) { + if (err) { free($1); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -814,11 +868,12 @@ PE_NAME { struct parse_events_term *term; + int err = parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER, + $1, 1, true, &@1, NULL); - if (parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER, - $1, 1, true, &@1, NULL)) { + if (err) { free($1); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -826,11 +881,12 @@ PE_TERM_HW { struct parse_events_term *term; + int err = parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_HARDWARE, + $1.str, $1.num & 255, false, &@1, NULL); - if (parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_HARDWARE, - $1.str, $1.num & 255, false, &@1, NULL)) { + if (err) { free($1.str); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -838,10 +894,11 @@ PE_TERM '=' name_or_legacy { struct parse_events_term *term; + int err = parse_events_term__str(&term, (int)$1, NULL, $3, &@1, &@3); - if (parse_events_term__str(&term, (int)$1, NULL, $3, &@1, &@3)) { + if (err) { free($3); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -849,10 +906,11 @@ PE_TERM '=' PE_TERM_HW { struct parse_events_term *term; + int err = parse_events_term__str(&term, (int)$1, NULL, $3.str, &@1, &@3); - if (parse_events_term__str(&term, (int)$1, NULL, $3.str, &@1, &@3)) { + if (err) { free($3.str); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -860,37 +918,46 @@ PE_TERM '=' PE_TERM { struct parse_events_term *term; + int err = parse_events_term__term(&term, (int)$1, (int)$3, &@1, &@3); + + if (err) + PE_ABORT(err); - ABORT_ON(parse_events_term__term(&term, (int)$1, (int)$3, &@1, &@3)); $$ = term; } | PE_TERM '=' PE_VALUE { struct parse_events_term *term; + int err = parse_events_term__num(&term, (int)$1, NULL, $3, false, &@1, &@3); + + if (err) + PE_ABORT(err); - ABORT_ON(parse_events_term__num(&term, (int)$1, NULL, $3, false, &@1, &@3)); $$ = term; } | PE_TERM { struct parse_events_term *term; + int err = parse_events_term__num(&term, (int)$1, NULL, 1, true, &@1, NULL); + + if (err) + PE_ABORT(err); - ABORT_ON(parse_events_term__num(&term, (int)$1, NULL, 1, true, &@1, NULL)); $$ = term; } | name_or_raw array '=' name_or_legacy { struct parse_events_term *term; + int err = parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER, $1, $4, &@1, &@4); - if (parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_USER, - $1, $4, &@1, &@4)) { + if (err) { free($1); free($4); free($2.ranges); - YYABORT; + PE_ABORT(err); } term->array = $2; $$ = term; @@ -899,12 +966,12 @@ name_or_raw array '=' PE_VALUE { struct parse_events_term *term; + int err = parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER, $1, $4, false, &@1, &@4); - if (parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_USER, - $1, $4, false, &@1, &@4)) { + if (err) { free($1); free($2.ranges); - YYABORT; + PE_ABORT(err); } term->array = $2; $$ = term; @@ -914,13 +981,15 @@ { struct parse_events_term *term; char *config = strdup($1); + int err; - ABORT_ON(!config); - if (parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_DRV_CFG, - config, $1, &@1, NULL)) { + if (!config) + YYNOMEM; + err = parse_events_term__str(&term, PARSE_EVENTS__TERM_TYPE_DRV_CFG, config, $1, &@1, NULL); + if (err) { free($1); free(config); - YYABORT; + PE_ABORT(err); } $$ = term; } @@ -946,7 +1015,8 @@ new_array.ranges = realloc($1.ranges, sizeof(new_array.ranges[0]) * new_array.nr_ranges); - ABORT_ON(!new_array.ranges); + if (!new_array.ranges) + YYNOMEM; memcpy(&new_array.ranges[$1.nr_ranges], $3.ranges, $3.nr_ranges * sizeof(new_array.ranges[0])); free($3.ranges); @@ -962,7 +1032,8 @@ array.nr_ranges = 1; array.ranges = malloc(sizeof(array.ranges[0])); - ABORT_ON(!array.ranges); + if (!array.ranges) + YYNOMEM; array.ranges[0].start = $1; array.ranges[0].length = 1; $$ = array; @@ -975,7 +1046,8 @@ ABORT_ON($3 < $1); array.nr_ranges = 1; array.ranges = malloc(sizeof(array.ranges[0])); - ABORT_ON(!array.ranges); + if (!array.ranges) + YYNOMEM; array.ranges[0].start = $1; array.ranges[0].length = $3 - $1 + 1; $$ = array; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/perf/util/pmu.c +++ linux-oracle-6.5-6.5.0/tools/perf/util/pmu.c @@ -19,8 +19,8 @@ #include "evsel.h" #include "pmu.h" #include "pmus.h" -#include "pmu-bison.h" -#include "pmu-flex.h" +#include +#include #include "parse-events.h" #include "print-events.h" #include "header.h" only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/memblock/internal.h +++ linux-oracle-6.5-6.5.0/tools/testing/memblock/internal.h @@ -20,4 +20,8 @@ { } +static inline void accept_memory(phys_addr_t start, phys_addr_t end) +{ +} + #endif only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/memblock/mmzone.c +++ linux-oracle-6.5-6.5.0/tools/testing/memblock/mmzone.c @@ -11,7 +11,7 @@ return NULL; } -void reserve_bootmem_region(phys_addr_t start, phys_addr_t end) +void reserve_bootmem_region(phys_addr_t start, phys_addr_t end, int nid) { } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/memblock/tests/basic_api.c +++ linux-oracle-6.5-6.5.0/tools/testing/memblock/tests/basic_api.c @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later +#include "basic_api.h" #include #include -#include "basic_api.h" #define EXPECTED_MEMBLOCK_REGIONS 128 #define FUNC_ADD "memblock_add" only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/memblock/tests/common.h +++ linux-oracle-6.5-6.5.0/tools/testing/memblock/tests/common.h @@ -5,6 +5,7 @@ #include #include #include +#include #include #include #include only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/arm64/signal/testcases/zt_regs.c +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/arm64/signal/testcases/zt_regs.c @@ -65,6 +65,7 @@ if (memcmp(zeros, (char *)zt + ZT_SIG_REGS_OFFSET, ZT_SIG_REGS_SIZE(zt->nregs)) != 0) { fprintf(stderr, "ZT data invalid\n"); + free(zeros); return 1; } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/bpf/prog_tests/bpf_obj_pinning.c +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/bpf/prog_tests/bpf_obj_pinning.c @@ -8,6 +8,7 @@ #include #include #include +#include "bpf/libbpf_internal.h" static inline int sys_fsopen(const char *fsname, unsigned flags) { @@ -155,7 +156,7 @@ ASSERT_OK(err, "obj_pin"); /* cleanup */ - if (pin_opts.path_fd >= 0) + if (path_kind == PATH_FD_REL && pin_opts.path_fd >= 0) close(pin_opts.path_fd); if (old_cwd[0]) ASSERT_OK(chdir(old_cwd), "restore_cwd"); @@ -220,7 +221,7 @@ goto cleanup; /* cleanup */ - if (get_opts.path_fd >= 0) + if (path_kind == PATH_FD_REL && get_opts.path_fd >= 0) close(get_opts.path_fd); if (old_cwd[0]) ASSERT_OK(chdir(old_cwd), "restore_cwd"); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/bpf/prog_tests/sockmap_helpers.h +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/bpf/prog_tests/sockmap_helpers.h @@ -179,6 +179,32 @@ __ret; \ }) +static inline int poll_connect(int fd, unsigned int timeout_sec) +{ + struct timeval timeout = { .tv_sec = timeout_sec }; + fd_set wfds; + int r, eval; + socklen_t esize = sizeof(eval); + + FD_ZERO(&wfds); + FD_SET(fd, &wfds); + + r = select(fd + 1, NULL, &wfds, NULL, &timeout); + if (r == 0) + errno = ETIME; + if (r != 1) + return -1; + + if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &eval, &esize) < 0) + return -1; + if (eval != 0) { + errno = eval; + return -1; + } + + return 0; +} + static inline int poll_read(int fd, unsigned int timeout_sec) { struct timeval timeout = { .tv_sec = timeout_sec }; only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/bpf/prog_tests/sockmap_listen.c +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/bpf/prog_tests/sockmap_listen.c @@ -1452,11 +1452,18 @@ if (p < 0) goto close_cli; + if (poll_connect(c, IO_TIMEOUT_SEC) < 0) { + FAIL_ERRNO("poll_connect"); + goto close_acc; + } + *v0 = p; *v1 = c; return 0; +close_acc: + close(p); close_cli: close(c); close_srv: only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/bpf/test_verifier.c +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/bpf/test_verifier.c @@ -1880,7 +1880,7 @@ } } - get_unpriv_disabled(); + unpriv_disabled = get_unpriv_disabled(); if (unpriv && unpriv_disabled) { printf("Cannot run as unprivileged user with sysctl %s.\n", UNPRIV_SYSCTL); only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/ftrace/ftracetest +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/ftrace/ftracetest @@ -31,6 +31,9 @@ # kselftest skip code is 4 err_skip=4 +# umount required +UMOUNT_DIR="" + # cgroup RT scheduling prevents chrt commands from succeeding, which # induces failures in test wakeup tests. Disable for the duration of # the tests. @@ -45,6 +48,9 @@ cleanup() { echo $sched_rt_runtime_orig > $sched_rt_runtime + if [ -n "${UMOUNT_DIR}" ]; then + umount ${UMOUNT_DIR} ||: + fi } errexit() { # message @@ -160,11 +166,13 @@ mount -t tracefs nodev /sys/kernel/tracing || errexit "Failed to mount /sys/kernel/tracing" TRACING_DIR="/sys/kernel/tracing" + UMOUNT_DIR=${TRACING_DIR} # If debugfs exists, then so does /sys/kernel/debug elif [ -d "/sys/kernel/debug" ]; then mount -t debugfs nodev /sys/kernel/debug || errexit "Failed to mount /sys/kernel/debug" TRACING_DIR="/sys/kernel/debug/tracing" + UMOUNT_DIR=${TRACING_DIR} else err_ret=$err_skip errexit "debugfs and tracefs are not configured in this kernel" only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/ftrace/test.d/instances/instance-event.tc +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/ftrace/test.d/instances/instance-event.tc @@ -39,7 +39,7 @@ instance_set() { while :; do - echo 1 > foo/events/sched/sched_switch + echo 1 > foo/events/sched/sched_switch/enable done 2> /dev/null } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic-event-dynstring.tc +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic-event-dynstring.tc @@ -1,7 +1,7 @@ #!/bin/sh # SPDX-License-Identifier: GPL-2.0 # description: event trigger - test inter-event histogram trigger trace action with dynamic string param -# requires: set_event synthetic_events events/sched/sched_process_exec/hist "char name[]' >> synthetic_events":README ping:program +# requires: set_event synthetic_events events/sched/sched_process_exec/hist "' >> synthetic_events":README ping:program fail() { #msg echo $1 only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic_event_syntax_errors.tc +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/ftrace/test.d/trigger/inter-event/trigger-synthetic_event_syntax_errors.tc @@ -1,7 +1,7 @@ #!/bin/sh # SPDX-License-Identifier: GPL-2.0 # description: event trigger - test synthetic_events syntax parser errors -# requires: synthetic_events error_log "char name[]' >> synthetic_events":README +# requires: synthetic_events error_log "' >> synthetic_events":README check_error() { # command-with-error-pos-by-^ ftrace_errlog_check 'synthetic_events' "$1" 'synthetic_events' only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/kselftest_deps.sh +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/kselftest_deps.sh @@ -46,11 +46,11 @@ print_targets=0 while getopts "p" arg; do - case $arg in - p) + case $arg in + p) print_targets=1 shift;; - esac + esac done if [ $# -eq 0 ] @@ -92,6 +92,10 @@ # Get all TARGETS from selftests Makefile targets=$(grep -E "^TARGETS +|^TARGETS =" Makefile | cut -d "=" -f2) +# Initially, in LDLIBS related lines, the dep checker needs +# to ignore lines containing the following strings: +filter="\$(VAR_LDLIBS)\|pkg-config\|PKG_CONFIG\|IOURING_EXTRA_LIBS" + # Single test case if [ $# -eq 2 ] then @@ -100,6 +104,8 @@ l1_test $test l2_test $test l3_test $test + l4_test $test + l5_test $test print_results $1 $2 exit $? @@ -113,7 +119,7 @@ # Append space at the end of the list to append more tests. l1_tests=$(grep -r --include=Makefile "^LDLIBS" | \ - grep -v "VAR_LDLIBS" | awk -F: '{print $1}') + grep -v "$filter" | awk -F: '{print $1}' | uniq) # Level 2: LDLIBS set dynamically. # @@ -126,7 +132,7 @@ # Append space at the end of the list to append more tests. l2_tests=$(grep -r --include=Makefile ": LDLIBS" | \ - grep -v "VAR_LDLIBS" | awk -F: '{print $1}') + grep -v "$filter" | awk -F: '{print $1}' | uniq) # Level 3 # memfd and others use pkg-config to find mount and fuse libs @@ -138,11 +144,32 @@ # VAR_LDLIBS := $(shell pkg-config fuse --libs 2>/dev/null) l3_tests=$(grep -r --include=Makefile "^VAR_LDLIBS" | \ - grep -v "pkg-config" | awk -F: '{print $1}') + grep -v "pkg-config\|PKG_CONFIG" | awk -F: '{print $1}' | uniq) -#echo $l1_tests -#echo $l2_1_tests -#echo $l3_tests +# Level 4 +# some tests may fall back to default using `|| echo -l` +# if pkg-config doesn't find the libs, instead of using VAR_LDLIBS +# as per level 3 checks. +# e.g: +# netfilter/Makefile +# LDLIBS += $(shell $(HOSTPKG_CONFIG) --libs libmnl 2>/dev/null || echo -lmnl) +l4_tests=$(grep -r --include=Makefile "^LDLIBS" | \ + grep "pkg-config\|PKG_CONFIG" | awk -F: '{print $1}' | uniq) + +# Level 5 +# some tests may use IOURING_EXTRA_LIBS to add extra libs to LDLIBS, +# which in turn may be defined in a sub-Makefile +# e.g.: +# mm/Makefile +# $(OUTPUT)/gup_longterm: LDLIBS += $(IOURING_EXTRA_LIBS) +l5_tests=$(grep -r --include=Makefile "LDLIBS +=.*\$(IOURING_EXTRA_LIBS)" | \ + awk -F: '{print $1}' | uniq) + +#echo l1_tests $l1_tests +#echo l2_tests $l2_tests +#echo l3_tests $l3_tests +#echo l4_tests $l4_tests +#echo l5_tests $l5_tests all_tests print_results $1 $2 @@ -164,24 +191,32 @@ for test in $l3_tests; do l3_test $test done + + for test in $l4_tests; do + l4_test $test + done + + for test in $l5_tests; do + l5_test $test + done } # Use same parsing used for l1_tests and pick libraries this time. l1_test() { test_libs=$(grep --include=Makefile "^LDLIBS" $test | \ - grep -v "VAR_LDLIBS" | \ + grep -v "$filter" | \ sed -e 's/\:/ /' | \ sed -e 's/+/ /' | cut -d "=" -f 2) check_libs $test $test_libs } -# Use same parsing used for l2__tests and pick libraries this time. +# Use same parsing used for l2_tests and pick libraries this time. l2_test() { test_libs=$(grep --include=Makefile ": LDLIBS" $test | \ - grep -v "VAR_LDLIBS" | \ + grep -v "$filter" | \ sed -e 's/\:/ /' | sed -e 's/+/ /' | \ cut -d "=" -f 2) @@ -196,6 +231,24 @@ check_libs $test $test_libs } + +l4_test() +{ + test_libs=$(grep --include=Makefile "^VAR_LDLIBS\|^LDLIBS" $test | \ + grep "\(pkg-config\|PKG_CONFIG\).*|| echo " | \ + sed -e 's/.*|| echo //' | sed -e 's/)$//') + + check_libs $test $test_libs +} + +l5_test() +{ + tests=$(find $(dirname "$test") -type f -name "*.mk") + test_libs=$(grep "^IOURING_EXTRA_LIBS +\?=" $tests | \ + cut -d "=" -f 2) + + check_libs $test $test_libs +} check_libs() { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/lib.mk +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/lib.mk @@ -106,7 +106,7 @@ run_tests: all ifdef building_out_of_srctree @if [ "X$(TEST_PROGS)$(TEST_PROGS_EXTENDED)$(TEST_FILES)" != "X" ]; then \ - rsync -aLq $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(OUTPUT); \ + rsync -aq --copy-unsafe-links $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(OUTPUT); \ fi @if [ "X$(TEST_PROGS)" != "X" ]; then \ $(call RUN_TESTS, $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) \ @@ -120,7 +120,7 @@ define INSTALL_SINGLE_RULE $(if $(INSTALL_LIST),@mkdir -p $(INSTALL_PATH)) - $(if $(INSTALL_LIST),rsync -aL $(INSTALL_LIST) $(INSTALL_PATH)/) + $(if $(INSTALL_LIST),rsync -a --copy-unsafe-links $(INSTALL_LIST) $(INSTALL_PATH)/) endef define INSTALL_RULE only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/mm/charge_reserved_hugetlb.sh +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/mm/charge_reserved_hugetlb.sh @@ -25,7 +25,7 @@ fi if [[ $cgroup2 ]]; then - cgroup_path=$(mount -t cgroup2 | head -1 | awk -e '{print $3}') + cgroup_path=$(mount -t cgroup2 | head -1 | awk '{print $3}') if [[ -z "$cgroup_path" ]]; then cgroup_path=/dev/cgroup/memory mount -t cgroup2 none $cgroup_path @@ -33,7 +33,7 @@ fi echo "+hugetlb" >$cgroup_path/cgroup.subtree_control else - cgroup_path=$(mount -t cgroup | grep ",hugetlb" | awk -e '{print $3}') + cgroup_path=$(mount -t cgroup | grep ",hugetlb" | awk '{print $3}') if [[ -z "$cgroup_path" ]]; then cgroup_path=/dev/cgroup/memory mount -t cgroup memory,hugetlb $cgroup_path only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/mm/hugetlb_reparenting_test.sh +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/mm/hugetlb_reparenting_test.sh @@ -20,7 +20,7 @@ if [[ $cgroup2 ]]; then - CGROUP_ROOT=$(mount -t cgroup2 | head -1 | awk -e '{print $3}') + CGROUP_ROOT=$(mount -t cgroup2 | head -1 | awk '{print $3}') if [[ -z "$CGROUP_ROOT" ]]; then CGROUP_ROOT=/dev/cgroup/memory mount -t cgroup2 none $CGROUP_ROOT @@ -28,7 +28,7 @@ fi echo "+hugetlb +memory" >$CGROUP_ROOT/cgroup.subtree_control else - CGROUP_ROOT=$(mount -t cgroup | grep ",hugetlb" | awk -e '{print $3}') + CGROUP_ROOT=$(mount -t cgroup | grep ",hugetlb" | awk '{print $3}') if [[ -z "$CGROUP_ROOT" ]]; then CGROUP_ROOT=/dev/cgroup/memory mount -t cgroup memory,hugetlb $CGROUP_ROOT only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/net/bind_wildcard.c +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/net/bind_wildcard.c @@ -100,7 +100,7 @@ TEST_F(bind_wildcard, v4_v6) { bind_sockets(_metadata, self, - (struct sockaddr *)&self->addr4, sizeof(self->addr6), + (struct sockaddr *)&self->addr4, sizeof(self->addr4), (struct sockaddr *)&self->addr6, sizeof(self->addr6)); } only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/netfilter/Makefile +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/netfilter/Makefile @@ -6,13 +6,13 @@ nft_concat_range.sh nft_conntrack_helper.sh \ nft_queue.sh nft_meta.sh nf_nat_edemux.sh \ ipip-conntrack-mtu.sh conntrack_tcp_unreplied.sh \ - conntrack_vrf.sh nft_synproxy.sh rpath.sh + conntrack_vrf.sh nft_synproxy.sh rpath.sh nft_audit.sh HOSTPKG_CONFIG := pkg-config CFLAGS += $(shell $(HOSTPKG_CONFIG) --cflags libmnl 2>/dev/null) LDLIBS += $(shell $(HOSTPKG_CONFIG) --libs libmnl 2>/dev/null || echo -lmnl) -TEST_GEN_FILES = nf-queue connect_close +TEST_GEN_FILES = nf-queue connect_close audit_logread include ../lib.mk only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/netfilter/audit_logread.c +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/netfilter/audit_logread.c @@ -0,0 +1,165 @@ +// SPDX-License-Identifier: GPL-2.0 + +#define _GNU_SOURCE +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static int fd; + +#define MAX_AUDIT_MESSAGE_LENGTH 8970 +struct audit_message { + struct nlmsghdr nlh; + union { + struct audit_status s; + char data[MAX_AUDIT_MESSAGE_LENGTH]; + } u; +}; + +int audit_recv(int fd, struct audit_message *rep) +{ + struct sockaddr_nl addr; + socklen_t addrlen = sizeof(addr); + int ret; + + do { + ret = recvfrom(fd, rep, sizeof(*rep), 0, + (struct sockaddr *)&addr, &addrlen); + } while (ret < 0 && errno == EINTR); + + if (ret < 0 || + addrlen != sizeof(addr) || + addr.nl_pid != 0 || + rep->nlh.nlmsg_type == NLMSG_ERROR) /* short-cut for now */ + return -1; + + return ret; +} + +int audit_send(int fd, uint16_t type, uint32_t key, uint32_t val) +{ + static int seq = 0; + struct audit_message msg = { + .nlh = { + .nlmsg_len = NLMSG_SPACE(sizeof(msg.u.s)), + .nlmsg_type = type, + .nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK, + .nlmsg_seq = ++seq, + }, + .u.s = { + .mask = key, + .enabled = key == AUDIT_STATUS_ENABLED ? val : 0, + .pid = key == AUDIT_STATUS_PID ? val : 0, + } + }; + struct sockaddr_nl addr = { + .nl_family = AF_NETLINK, + }; + int ret; + + do { + ret = sendto(fd, &msg, msg.nlh.nlmsg_len, 0, + (struct sockaddr *)&addr, sizeof(addr)); + } while (ret < 0 && errno == EINTR); + + if (ret != (int)msg.nlh.nlmsg_len) + return -1; + return 0; +} + +int audit_set(int fd, uint32_t key, uint32_t val) +{ + struct audit_message rep = { 0 }; + int ret; + + ret = audit_send(fd, AUDIT_SET, key, val); + if (ret) + return ret; + + ret = audit_recv(fd, &rep); + if (ret < 0) + return ret; + return 0; +} + +int readlog(int fd) +{ + struct audit_message rep = { 0 }; + int ret = audit_recv(fd, &rep); + const char *sep = ""; + char *k, *v; + + if (ret < 0) + return ret; + + if (rep.nlh.nlmsg_type != AUDIT_NETFILTER_CFG) + return 0; + + /* skip the initial "audit(...): " part */ + strtok(rep.u.data, " "); + + while ((k = strtok(NULL, "="))) { + v = strtok(NULL, " "); + + /* these vary and/or are uninteresting, ignore */ + if (!strcmp(k, "pid") || + !strcmp(k, "comm") || + !strcmp(k, "subj")) + continue; + + /* strip the varying sequence number */ + if (!strcmp(k, "table")) + *strchrnul(v, ':') = '\0'; + + printf("%s%s=%s", sep, k, v); + sep = " "; + } + if (*sep) { + printf("\n"); + fflush(stdout); + } + return 0; +} + +void cleanup(int sig) +{ + audit_set(fd, AUDIT_STATUS_ENABLED, 0); + close(fd); + if (sig) + exit(0); +} + +int main(int argc, char **argv) +{ + struct sigaction act = { + .sa_handler = cleanup, + }; + + fd = socket(PF_NETLINK, SOCK_RAW, NETLINK_AUDIT); + if (fd < 0) { + perror("Can't open netlink socket"); + return -1; + } + + if (sigaction(SIGTERM, &act, NULL) < 0 || + sigaction(SIGINT, &act, NULL) < 0) { + perror("Can't set signal handler"); + close(fd); + return -1; + } + + audit_set(fd, AUDIT_STATUS_ENABLED, 1); + audit_set(fd, AUDIT_STATUS_PID, getpid()); + + while (1) + readlog(fd); +} only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/netfilter/config +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/netfilter/config @@ -6,3 +6,4 @@ CONFIG_NFT_MASQ=m CONFIG_NFT_FLOW_OFFLOAD=m CONFIG_NF_CT_NETLINK=m +CONFIG_AUDIT=y only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/netfilter/nft_audit.sh +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/netfilter/nft_audit.sh @@ -0,0 +1,193 @@ +#!/bin/bash +# SPDX-License-Identifier: GPL-2.0 +# +# Check that audit logs generated for nft commands are as expected. + +SKIP_RC=4 +RC=0 + +nft --version >/dev/null 2>&1 || { + echo "SKIP: missing nft tool" + exit $SKIP_RC +} + +logfile=$(mktemp) +rulefile=$(mktemp) +echo "logging into $logfile" +./audit_logread >"$logfile" & +logread_pid=$! +trap 'kill $logread_pid; rm -f $logfile $rulefile' EXIT +exec 3<"$logfile" + +do_test() { # (cmd, log) + echo -n "testing for cmd: $1 ... " + cat <&3 >/dev/null + $1 >/dev/null || exit 1 + sleep 0.1 + res=$(diff -a -u <(echo "$2") - <&3) + [ $? -eq 0 ] && { echo "OK"; return; } + echo "FAIL" + grep -v '^\(---\|+++\|@@\)' <<< "$res" + ((RC--)) +} + +nft flush ruleset + +# adding tables, chains and rules + +for table in t1 t2; do + do_test "nft add table $table" \ + "table=$table family=2 entries=1 op=nft_register_table" + + do_test "nft add chain $table c1" \ + "table=$table family=2 entries=1 op=nft_register_chain" + + do_test "nft add chain $table c2; add chain $table c3" \ + "table=$table family=2 entries=2 op=nft_register_chain" + + cmd="add rule $table c1 counter" + + do_test "nft $cmd" \ + "table=$table family=2 entries=1 op=nft_register_rule" + + do_test "nft $cmd; $cmd" \ + "table=$table family=2 entries=2 op=nft_register_rule" + + cmd="" + sep="" + for chain in c2 c3; do + for i in {1..3}; do + cmd+="$sep add rule $table $chain counter" + sep=";" + done + done + do_test "nft $cmd" \ + "table=$table family=2 entries=6 op=nft_register_rule" +done + +for ((i = 0; i < 500; i++)); do + echo "add rule t2 c3 counter accept comment \"rule $i\"" +done >$rulefile +do_test "nft -f $rulefile" \ +'table=t2 family=2 entries=500 op=nft_register_rule' + +# adding sets and elements + +settype='type inet_service; counter' +setelem='{ 22, 80, 443 }' +setblock="{ $settype; elements = $setelem; }" +do_test "nft add set t1 s $setblock" \ +"table=t1 family=2 entries=4 op=nft_register_set" + +do_test "nft add set t1 s2 $setblock; add set t1 s3 { $settype; }" \ +"table=t1 family=2 entries=5 op=nft_register_set" + +do_test "nft add element t1 s3 $setelem" \ +"table=t1 family=2 entries=3 op=nft_register_setelem" + +# adding counters + +do_test 'nft add counter t1 c1' \ +'table=t1 family=2 entries=1 op=nft_register_obj' + +do_test 'nft add counter t2 c1; add counter t2 c2' \ +'table=t2 family=2 entries=2 op=nft_register_obj' + +# adding/updating quotas + +do_test 'nft add quota t1 q1 { 10 bytes }' \ +'table=t1 family=2 entries=1 op=nft_register_obj' + +do_test 'nft add quota t2 q1 { 10 bytes }; add quota t2 q2 { 10 bytes }' \ +'table=t2 family=2 entries=2 op=nft_register_obj' + +# changing the quota value triggers obj update path +do_test 'nft add quota t1 q1 { 20 bytes }' \ +'table=t1 family=2 entries=1 op=nft_register_obj' + +# resetting rules + +do_test 'nft reset rules t1 c2' \ +'table=t1 family=2 entries=3 op=nft_reset_rule' + +do_test 'nft reset rules table t1' \ +'table=t1 family=2 entries=3 op=nft_reset_rule +table=t1 family=2 entries=3 op=nft_reset_rule +table=t1 family=2 entries=3 op=nft_reset_rule' + +do_test 'nft reset rules t2 c3' \ +'table=t2 family=2 entries=189 op=nft_reset_rule +table=t2 family=2 entries=188 op=nft_reset_rule +table=t2 family=2 entries=126 op=nft_reset_rule' + +do_test 'nft reset rules t2' \ +'table=t2 family=2 entries=3 op=nft_reset_rule +table=t2 family=2 entries=3 op=nft_reset_rule +table=t2 family=2 entries=186 op=nft_reset_rule +table=t2 family=2 entries=188 op=nft_reset_rule +table=t2 family=2 entries=129 op=nft_reset_rule' + +do_test 'nft reset rules' \ +'table=t1 family=2 entries=3 op=nft_reset_rule +table=t1 family=2 entries=3 op=nft_reset_rule +table=t1 family=2 entries=3 op=nft_reset_rule +table=t2 family=2 entries=3 op=nft_reset_rule +table=t2 family=2 entries=3 op=nft_reset_rule +table=t2 family=2 entries=180 op=nft_reset_rule +table=t2 family=2 entries=188 op=nft_reset_rule +table=t2 family=2 entries=135 op=nft_reset_rule' + +# resetting sets and elements + +elem=(22 ,80 ,443) +relem="" +for i in {1..3}; do + relem+="${elem[((i - 1))]}" + do_test "nft reset element t1 s { $relem }" \ + "table=t1 family=2 entries=$i op=nft_reset_setelem" +done + +do_test 'nft reset set t1 s' \ +'table=t1 family=2 entries=3 op=nft_reset_setelem' + +# deleting rules + +readarray -t handles < <(nft -a list chain t1 c1 | \ + sed -n 's/.*counter.* handle \(.*\)$/\1/p') + +do_test "nft delete rule t1 c1 handle ${handles[0]}" \ +'table=t1 family=2 entries=1 op=nft_unregister_rule' + +cmd='delete rule t1 c1 handle' +do_test "nft $cmd ${handles[1]}; $cmd ${handles[2]}" \ +'table=t1 family=2 entries=2 op=nft_unregister_rule' + +do_test 'nft flush chain t1 c2' \ +'table=t1 family=2 entries=3 op=nft_unregister_rule' + +do_test 'nft flush table t2' \ +'table=t2 family=2 entries=509 op=nft_unregister_rule' + +# deleting chains + +do_test 'nft delete chain t2 c2' \ +'table=t2 family=2 entries=1 op=nft_unregister_chain' + +# deleting sets and elements + +do_test 'nft delete element t1 s { 22 }' \ +'table=t1 family=2 entries=1 op=nft_unregister_setelem' + +do_test 'nft delete element t1 s { 80, 443 }' \ +'table=t1 family=2 entries=2 op=nft_unregister_setelem' + +do_test 'nft flush set t1 s2' \ +'table=t1 family=2 entries=3 op=nft_unregister_setelem' + +do_test 'nft delete set t1 s2' \ +'table=t1 family=2 entries=1 op=nft_unregister_set' + +do_test 'nft delete set t1 s3' \ +'table=t1 family=2 entries=1 op=nft_unregister_set' + +exit $RC only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/nolibc/nolibc-test.c +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/nolibc/nolibc-test.c @@ -769,7 +769,6 @@ lseek(fd, 0, SEEK_SET); r = read(fd, buf, sizeof(buf) - 1); - buf[r] = '\0'; fclose(memfile); @@ -779,6 +778,7 @@ return 1; } + buf[r] = '\0'; llen += printf(" \"%s\" = \"%s\"", expected, buf); ret = strncmp(expected, buf, c); @@ -939,6 +939,35 @@ { 0 } }; +int is_setting_valid(char *test) +{ + int idx, len, test_len, valid = 0; + char delimiter; + + if (!test) + return valid; + + test_len = strlen(test); + + for (idx = 0; test_names[idx].name; idx++) { + len = strlen(test_names[idx].name); + if (test_len < len) + continue; + + if (strncmp(test, test_names[idx].name, len) != 0) + continue; + + delimiter = test[len]; + if (delimiter != ':' && delimiter != ',' && delimiter != '\0') + continue; + + valid = 1; + break; + } + + return valid; +} + int main(int argc, char **argv, char **envp) { int min = 0; @@ -964,10 +993,10 @@ * syscall:5-15[:.*],stdlib:8-10 */ test = argv[1]; - if (!test) + if (!is_setting_valid(test)) test = getenv("NOLIBC_TEST"); - if (test) { + if (is_setting_valid(test)) { char *comma, *colon, *dash, *value; do { only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/powerpc/Makefile +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/powerpc/Makefile @@ -59,12 +59,11 @@ done; endef -override define EMIT_TESTS +emit_tests: +@for TARGET in $(SUB_DIRS); do \ BUILD_TARGET=$(OUTPUT)/$$TARGET; \ - $(MAKE) OUTPUT=$$BUILD_TARGET -s -C $$TARGET emit_tests;\ + $(MAKE) OUTPUT=$$BUILD_TARGET -s -C $$TARGET $@;\ done; -endef override define CLEAN +@for TARGET in $(SUB_DIRS); do \ @@ -77,4 +76,4 @@ tags: find . -name '*.c' -o -name '*.h' | xargs ctags -.PHONY: tags $(SUB_DIRS) +.PHONY: tags $(SUB_DIRS) emit_tests only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/testing/selftests/powerpc/pmu/Makefile +++ linux-oracle-6.5-6.5.0/tools/testing/selftests/powerpc/pmu/Makefile @@ -30,13 +30,14 @@ +TARGET=event_code_tests; BUILD_TARGET=$$OUTPUT/$$TARGET; $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET run_tests endef -DEFAULT_EMIT_TESTS := $(EMIT_TESTS) -override define EMIT_TESTS - $(DEFAULT_EMIT_TESTS) +emit_tests: + for TEST in $(TEST_GEN_PROGS); do \ + BASENAME_TEST=`basename $$TEST`; \ + echo "$(COLLECTION):$$BASENAME_TEST"; \ + done +TARGET=ebb; BUILD_TARGET=$$OUTPUT/$$TARGET; $(MAKE) OUTPUT=$$BUILD_TARGET -s -C $$TARGET emit_tests +TARGET=sampling_tests; BUILD_TARGET=$$OUTPUT/$$TARGET; $(MAKE) OUTPUT=$$BUILD_TARGET -s -C $$TARGET emit_tests +TARGET=event_code_tests; BUILD_TARGET=$$OUTPUT/$$TARGET; $(MAKE) OUTPUT=$$BUILD_TARGET -s -C $$TARGET emit_tests -endef DEFAULT_INSTALL_RULE := $(INSTALL_RULE) override define INSTALL_RULE @@ -64,4 +65,4 @@ event_code_tests: TARGET=$@; BUILD_TARGET=$$OUTPUT/$$TARGET; mkdir -p $$BUILD_TARGET; $(MAKE) OUTPUT=$$BUILD_TARGET -k -C $$TARGET all -.PHONY: all run_tests ebb sampling_tests event_code_tests +.PHONY: all run_tests ebb sampling_tests event_code_tests emit_tests only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/tracing/rtla/src/timerlat_aa.c +++ linux-oracle-6.5-6.5.0/tools/tracing/rtla/src/timerlat_aa.c @@ -159,6 +159,7 @@ taa_data->thread_nmi_sum = 0; taa_data->thread_irq_sum = 0; taa_data->thread_softirq_sum = 0; + taa_data->thread_thread_sum = 0; taa_data->thread_blocking_duration = 0; taa_data->timer_irq_start_time = 0; taa_data->timer_irq_duration = 0; @@ -337,7 +338,23 @@ taa_data->timer_irq_start_time = start; taa_data->timer_irq_duration = duration; - taa_data->timer_irq_start_delay = taa_data->timer_irq_start_time - expected_start; + /* + * We are dealing with two different clock sources: the + * external clock source that timerlat uses as a reference + * and the clock used by the tracer. There are also two + * moments: the time reading the clock and the timer in + * which the event is placed in the buffer (the trace + * event timestamp). If the processor is slow or there + * is some hardware noise, the difference between the + * timestamp and the external clock read can be longer + * than the IRQ handler delay, resulting in a negative + * time. If so, set IRQ start delay as 0. In the end, + * it is less relevant than the noise. + */ + if (expected_start < taa_data->timer_irq_start_time) + taa_data->timer_irq_start_delay = taa_data->timer_irq_start_time - expected_start; + else + taa_data->timer_irq_start_delay = 0; /* * not exit from idle. @@ -528,7 +545,7 @@ static void timerlat_thread_analysis(struct timerlat_aa_data *taa_data, int cpu, int irq_thresh, int thread_thresh) { - unsigned long long exp_irq_ts; + long long exp_irq_ts; int total; int irq; @@ -545,12 +562,15 @@ /* * Expected IRQ arrival time using the trace clock as the base. + * + * TODO: Add a list of previous IRQ, and then run the list backwards. */ exp_irq_ts = taa_data->timer_irq_start_time - taa_data->timer_irq_start_delay; - - if (exp_irq_ts < taa_data->prev_irq_timstamp + taa_data->prev_irq_duration) - printf(" Previous IRQ interference: \t\t up to %9.2f us\n", - ns_to_usf(taa_data->prev_irq_duration)); + if (exp_irq_ts < taa_data->prev_irq_timstamp + taa_data->prev_irq_duration) { + if (taa_data->prev_irq_timstamp < taa_data->timer_irq_start_time) + printf(" Previous IRQ interference: \t\t up to %9.2f us\n", + ns_to_usf(taa_data->prev_irq_duration)); + } /* * The delay that the IRQ suffered before starting. only in patch2: unchanged: --- linux-oracle-6.5-6.5.0.orig/tools/tracing/rtla/src/timerlat_u.c +++ linux-oracle-6.5-6.5.0/tools/tracing/rtla/src/timerlat_u.c @@ -45,7 +45,7 @@ retval = sched_setaffinity(gettid(), sizeof(set), &set); if (retval == -1) { - err_msg("Error setting user thread affinity\n"); + debug_msg("Error setting user thread affinity %d, is the CPU online?\n", cpu); exit(1); } @@ -193,7 +193,9 @@ procs_count--; } } - break; + + if (!procs_count) + break; } sleep(1);